summaryrefslogtreecommitdiff
path: root/data/extensions/https-everywhere-eff@eff.org/chrome/content
diff options
context:
space:
mode:
Diffstat (limited to 'data/extensions/https-everywhere-eff@eff.org/chrome/content')
-rw-r--r--data/extensions/https-everywhere-eff@eff.org/chrome/content/about.xul4
-rw-r--r--data/extensions/https-everywhere-eff@eff.org/chrome/content/code/AndroidUI.jsm122
-rw-r--r--data/extensions/https-everywhere-eff@eff.org/chrome/content/code/HTTPS.js4
-rw-r--r--data/extensions/https-everywhere-eff@eff.org/chrome/content/code/HTTPSRules.js33
-rw-r--r--data/extensions/https-everywhere-eff@eff.org/chrome/content/code/IOUtil.js2
-rw-r--r--data/extensions/https-everywhere-eff@eff.org/chrome/content/code/NSS.js14
-rw-r--r--data/extensions/https-everywhere-eff@eff.org/chrome/content/code/X509ChainWhitelist.js532
-rw-r--r--data/extensions/https-everywhere-eff@eff.org/chrome/content/observatory-popup.xul6
-rw-r--r--data/extensions/https-everywhere-eff@eff.org/chrome/content/observatory-preferences.xul2
-rw-r--r--data/extensions/https-everywhere-eff@eff.org/chrome/content/observatory-warning.xul2
-rw-r--r--data/extensions/https-everywhere-eff@eff.org/chrome/content/rulesets.json2
-rw-r--r--data/extensions/https-everywhere-eff@eff.org/chrome/content/toolbar_button.js64
-rw-r--r--data/extensions/https-everywhere-eff@eff.org/chrome/content/toolbar_button.xul3
13 files changed, 418 insertions, 372 deletions
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
index f22e086..0c5e1b8 100644
--- a/data/extensions/https-everywhere-eff@eff.org/chrome/content/about.xul
+++ b/data/extensions/https-everywhere-eff@eff.org/chrome/content/about.xul
@@ -33,12 +33,12 @@
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')"/>
+ onclick="window_opener('https://supporters.eff.org/donate/support-https-everywhere')"/>.
</label>
<groupbox>
<caption label="&https-everywhere.about.version;" />
- <label>5.1.6</label>
+ <label>5.2.7</label>
</groupbox>
<groupbox>
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
index 1a4936d..a269e04 100644
--- 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
@@ -7,8 +7,10 @@ var HTTPSEverywhere = CC["@eff.org/https-everywhere;1"]
CU.import("resource://gre/modules/Prompt.jsm");
-var menuId;
-var urlbarId;
+var menuToggleId;
+var menuParentId;
+var menuRulesId;
+var menuDefaultsId;
var aWindow = getWindow();
@@ -21,12 +23,7 @@ function loadIntoWindow() {
return;
}
var enabled = HTTPSEverywhere.prefs.getBoolPref("globalEnabled");
- addToggleItemToMenu(enabled);
- if (enabled) {
- urlbarId = aWindow.NativeWindow.pageactions.add(urlbarOptions);
- } else if (urlbarId) {
- aWindow.NativeWindow.pageactions.remove(urlbarId);
- }
+ 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
@@ -43,8 +40,7 @@ function unloadFromWindow() {
if (!aWindow) {
return;
}
- aWindow.NativeWindow.menu.remove(menuId);
- aWindow.NativeWindow.pageactions.remove(urlbarId);
+ aWindow.NativeWindow.menu.remove(menuParentId);
}
@@ -53,13 +49,72 @@ function unloadFromWindow() {
*/
function addToggleItemToMenu(enabled) {
- if (menuId) { aWindow.NativeWindow.menu.remove(menuId); }
- var menuLabel = enabled ? "HTTPS Everywhere on" : "HTTPS Everywhere off";
- menuId = aWindow.NativeWindow.menu.add(menuLabel, null, function() {
- popupToggleMenu(aWindow, 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 = [
{
@@ -69,7 +124,8 @@ function popupToggleMenu(aWindow, enabled) {
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; }
@@ -134,39 +190,6 @@ var popupInfo = {
}
};
-var urlbarOptions = {
-
- title: "HTTPS Everywhere",
-
- icon: "chrome://https-everywhere/skin/https-everywhere-128.png",
-
- clickCallback: 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
- if (popupInfo.rules.length !== db.length) {
- // Why does db sometimes have an extra entry that doesn't correspond
- // to any of the ruleItems? No idea, but let's log it.
- HTTPSEverywhere.log(5,"Got length mismatch between popupInfo.ruleItems and data.button");
- HTTPSEverywhere.log(4,"Applicable rules: "+JSON.stringify(popupInfo.rules));
- HTTPSEverywhere.log(4, "data.button: "+JSON.stringify(db));
- }
- for (var i=0; i<popupInfo.rules.length; i++) {
- if (popupInfo.ruleStatus[i] !== db[i]) {
- HTTPSEverywhere.log(4, "toggling: "+JSON.stringify(popupInfo.rules[i]));
- popupInfo.rules[i].toggle();
- }
- }
- reloadTab();
- return null;
- });
- },
-
- longClickCallback: function() { popupResetDefaultsMenu(aWindow); }
-};
-
var rulesPrompt = new Prompt({
window: aWindow,
title: "Enable/disable rules",
@@ -182,7 +205,8 @@ function popupResetDefaultsMenu(aWindow) {
var msg = "Default rules reset.";
aWindow.NativeWindow.toast.show(msg, "short");
return true;
- }
+ },
+ positive: true
}, {
label: "No",
callback: function() { return false; }
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
index c5834dd..1ba27b4 100644
--- 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
@@ -43,8 +43,8 @@ const HTTPS = {
var isSTS = securityService.isSecureURI(
CI.nsISiteSecurityService.HEADER_HSTS, channel.URI, 0);
if (blob === null) {
- // Abort insecure requests if HTTP Nowhere is on
- if (httpNowhereEnabled && channel.URI.schemeIs("http") && !isSTS) {
+ // Abort insecure non-onion requests if HTTP Nowhere is on
+ if (httpNowhereEnabled && channel.URI.schemeIs("http") && !isSTS && !/\.onion$/.test(channel.URI.host)) {
IOUtil.abort(channel);
}
return false; // no rewrite
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
index 78536de..b3818bf 100644
--- 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
@@ -246,7 +246,31 @@ const RuleWriter = {
return rv;
},
- read: function(file) {
+ 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 = "";
@@ -285,7 +309,7 @@ const RuleWriter = {
rulesetFromFile: function(file, rule_store, ruleset_id) {
if ((rule_store.targets == null) && (rule_store.targets != {}))
this.log(WARN, "TARGETS IS NULL");
- var data = this.read(file);
+ var data = this.readFromFile(file);
if (!data) return null;
return this.readFromString(data, rule_store, ruleset_id);
},
@@ -409,8 +433,9 @@ const HTTPSRules = {
* XML string, which will be parsed on an as-needed basis.
*/
loadTargets: function() {
- var file = new FileUtils.File(RuleWriter.chromeToPath("chrome://https-everywhere/content/rulesets.json"));
- var rules = JSON.parse(RuleWriter.read(file));
+ 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;
},
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
index 325407c..b7b43f4 100644
--- 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
@@ -248,7 +248,7 @@ const IOUtil = {
if ((hasCookies = !!cookie)) cookieNames = cookie.split(/\s*;\s*/).map(this._splitName);
let parms = qs.split("&");
- for (j = parms.length; j-- > 0;) {
+ 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)
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
index 9e03135..089ae38 100644
--- 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
@@ -25,17 +25,13 @@ function NSS() {
}
-NSS.initialize = function(nssPath) {
+NSS.initialize = function() {
var sharedLib;
- try {
- sharedLib = tcypes.open(nssPath);
- } catch (e) {
- 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);
- }
+ 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();
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
index cbb9396..7961338 100644
--- 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
@@ -6,29 +6,30 @@
const X509ChainWhitelist = {
'000AA4E99FE86D84F762DFB2DC29323D0614B95AA335A270AF204EBA2F2240AF' : true,
'002F83BE1562B658A7BA747EEE36FFBA25A7D6C66E263B2901184058802D9A43' : true,
- '0048BB7ED7A65D615D2CA0D74B4B67E3285132CDA4FD22493977AC1662D72869' : true,
+ '0061F7422DFE6198AD03858E318E018DAE931B87DB34D0EAEDAC2959A8F129A6' : true,
'007FDDA43F8F2C275CF3AE1D742A0DE86CFE1287B6FAE08F9676A8743E677255' : true,
'00AD891EBED89D8B1DE5893D32B98655479B79FAAF02D40BB933BBF726699446' : true,
'00DBEAA57891E7972D7AE5F00425E309B1A08B8EE4218B24AE3FB50EA98AA864' : true,
'00E60060B345194127FA895551ACA9CB12D5C31CBCE286D1CBEFA26D0BF22CBF' : true,
- '0103FD294CAF0DEBB13910E3C115E9037007F6BF1650B704CACC653366AD013B' : true,
- '013470D100AFBBA6D4E03735C1D924EFA6E25E66F781E9DBB6155EF713336307' : true,
+ '0116774D8E17A678C4865D21049258EF547ADE1E84E48F91692CF41731C10657' : true,
'016BBB29A76DA59A20C5E9909D8D0A9CD25824D7462BD51B022D61B503569936' : true,
'018BCB77EB89BD658CFB6388F57F22E40942E08FD6BF3A26DE05A2F992F6E5A2' : true,
'028CD123ABEA12F150435947299419928DC5E80E94E9148841265B64344C3DBC' : true,
'0299AD4101A95EA006706582B2E55A35DFD2224EB9A8F8AA822D2354BAC4C640' : true,
- '02B269E607C16E29304FF5A10E7B95FBA18B8131D647334007CBBDAE891F92A6' : true,
'02E266B8D011CF92708D0DD0D9D840BB8EF54B4A4670BF700AE90EE6F7E445A8' : true,
- '02EE88738EA513E191ED7197DA80736330AAC72CD846B866683ECA283945113E' : true,
'0333E05678F411BCFDAEFB069DDAC8BE1B3B7E45376AE4C3827771C10A53D294' : true,
'03693B464434A9683B54121395F0655F77D80A64D36AC7083A2923C3FB6EFC00' : true,
+ '037E1FDC6DBFFDCD1523AA8D44DCD04993025D13CA1545B6CC33138ADC14D47C' : true,
+ '03986F7123FD11870C6EEEFC9F40E6B8FA6FA8C7FD58C3B62E04F350D6B9D625' : true,
+ '03BD2F6C0E68327F7077FC5F5B0335F8FDC8AAE97CC920C602D7B29DF6329D88' : true,
'03E2027D68B6F8792C5E99FFA9221CE628E98F0D61346B99E8A2710BD29E1DE0' : true,
'041E24ED00997AAF1D78BB5A002A3ABCFC654CF09E38017EBD3BE031F05E8FEF' : true,
+ '0433078EDEDF19DCFEB7848FD9D17DACA1AB16D68BFEFC6ABE122CEC2DAA381D' : true,
'049E2533BBDE9D2DA0BDD71FB463A0D7D2908706999C63FDCEB4B812864E3091' : true,
'05C5F3A4C0C5F676DFCA32690BBCE8A7F41D7D6C2438D9AA1F94F886E3015CB9' : true,
'05DDFDA20ECE2375B55CD05F5205E2608B75FF4D40078A4ABC2FD4EB7C7F4410' : true,
+ '05FD9F4842FECB37EBB192331AFFFECC9098FE276B8FC915F73B5086ED7320A6' : true,
'061B58EED7864DD73B40146FB4EB9656CBD256F6C10A07C3AC47860150B14948' : true,
- '06354AFD85075A5BDE2D84F8408B185CCFD354C2D75988D8FC67948AA6F60562' : true,
'064A8AF7F078CF04C63643298C3DA278EECA283CE11E3F34F3AB851AB89B5237' : true,
'06A8BAEDC838105FBEB3AF6C20B5E3EA3B98B82069246F1A5A096E8CD0FD3047' : true,
'06EA4798A8B6B73ACB72B15DD8D71D6D6541975EA01B6CCE95B92DDE7C0312F7' : true,
@@ -36,23 +37,26 @@ const X509ChainWhitelist = {
'06F3DCA5B295481A6B1A0ED50541CB67C20B4B6BEE7435F06F5FCBAADC27A40F' : true,
'06FB76F31639CCDDF599ADEB5E7CE9A475468C68B305442E99A067D09A89DDD0' : true,
'0742E85FE9C68350E070039897F5B790BDA92D92229D74BA9C6906D958A5C510' : true,
- '0780AB0F9801F169F4E7DE6F6F40F9575707D4561E4EFEBBADE71279825E0CE6' : true,
+ '07A3D328AC9A7ABA69A8AFE71D2FC7EEB93448F494E0E36F41CEE5C856BB2BC2' : true,
+ '07B914BF17C15B57AFE6430B785396D1952956B87C3936204337D63CBDEBBDAD' : true,
+ '07BFEFC4765397C94A348CE52AB2C7A01CC6257512A595DFDDE797429934B5F4' : true,
'07CF2A06F1718D6E476B98C2B42E370A35FAFE4C1F41CF7A1DE115CDB6222FAC' : true,
'08522737DBEF2F7400033E866B61B3F9E19066EC71294DC9CE2138231921AFAB' : true,
'088B1B9C85C5237A785E56C277962D8901D994350403FCA667645A0321EE1754' : true,
- '093314E52E8CC862C2C0C8A1C57DB5CA4BED8824A3DC7C40B8675DAE1781DC05' : true,
'095FB0FC3CC67539621E292205E758437D94D3B651714049E6F99130BD5ADB6D' : true,
- '097D2DB6895EA5C53529BC38C1258E1461BE15135A9543BDDF5918EF5B5464C9' : true,
'099E4D986B0D8639C59AA04B56C3E45819DE1898E813D55B0879779C47913268' : true,
- '0AD7BEAF898E621703921886F7EA20EB4B337D03CF968EC45E3B1A234B2D707E' : true,
+ '09E55E37A7D241C61FF28A026F9D6E78B5F44DFECE82592B6BC19D0575B2DE9A' : true,
+ '0A96A08A2E42D95647355C089F7DF09731BC28449EDA336776F944250A265233' : true,
'0B1C1033250F6DED11E4C0A7E43138AD3D52F5661FEC896519BEBCBEFDC16E41' : true,
'0B1D9276FF6C18184DDF7409CB6C0916D24320DEC0505096AC79C0D3FFA9C1CD' : true,
+ '0B2F810BBEB072D82C51CC774A6C831CDA8EE9F9994C8DD167F2187BE9F8F38A' : true,
'0B7A5B8BB72BC1897664EC39A1E712A515DA1B3907D8681F0151BB6A8AD364D4' : true,
'0BDA7253AB35BDF6471CE2B8ABCCBBE39780D7A96B58EF2D770B488F3A14D592' : true,
+ '0BDF3458A9B18415635FA90A62440432B3E40DD3D6C795068E1BAED868CAA8E7' : true,
'0C2154A365A0DE7DC5BD0AE6EE05A8E06EE782AC5C41F1D3823E2F95C61E0D2C' : true,
- '0C5C73A428C4601BF261EE2C36DF0D2259CBF2471E25A7B43F52F06C63059195' : true,
'0C956E47F2CF8AADB345DBC858E3AB4AA37E48B7930B84BF7AA1A0C1B19A1C8F' : true,
'0C9D6EF00C60807C04A1BF61E8C1E28DF2A628CB7CCA3E15593266682736588D' : true,
+ '0CCE7A78F794EC314AB50D5A4C40835418681A8E0B3EC84461E470CB1F766FCE' : true,
'0D8D1B9E2F81D60A99B58380F37E9F8F744E205AC778EAE66810224BF0FF9EEC' : true,
'0D98DAB031428D38C96C714C90F0E2ACC9A1767FDC6A953D590928683E8BF8C4' : true,
'0DAB05854E84AABD75D30CE09246103436A4C41E931374E16CC374596C8DBB94' : true,
@@ -60,66 +64,67 @@ const X509ChainWhitelist = {
'0DB6221BC96F9758356209EFB138285A19A72FE5B898511143A0751BA600CC1F' : true,
'0DC21B5C66F7A421406E2FF43676B6D7013C6115232AEE0CFD25D70E7D4C2625' : true,
'0E8071ED091D6F502E2649CEF26818C0D1DE8F752632B670395E916F1BE748FE' : true,
- '0ECB53FDA2349AB6008BBC0E5CD361EEC5B6BD769281800FF4B1C9764A925277' : true,
'0F0B2EAF8B0C4FBF1A47C048E13196C163ED9D8628AFA4AA264A4624B1CBCF3D' : true,
'0F2BD48DD412D479C8A61E31993A4545FA703253C2A70D901087A7F5B8843998' : true,
'0F820CFB486D8564C83E968049AD119FD838B2CD21C0B342A0D9B5D22C445C25' : true,
'0F8A4084830557DD278CE7C3C6977853A4202E89B5F5F61164D1052F05D67B12' : true,
'0FBBC11F4627D5AA5F7A7847E0F8DE298021E175EC69ECA90A62740A71DC9B1F' : true,
+ '0FEBD7B880368302F17E5ABC416528A49CD717B96FCF7A21AD5DF6C4A6E6F792' : true,
'1030FABD87581CC2360917E4B4D94B88AF59A0E4FBFBC796F36DEA520198CD28' : true,
'103A6A4F018518AA6454CF8C8D18D7DA301A3F3C9E4C3C7FC2C3EC23E9D4443E' : true,
- '10620CC592779120114EB611657851E4859BBA59E0895E2D12A6BB5A69103A23' : true,
'10F22412D1CFAFDEBCF5BCF13FD251853DD98736450E36D989F880901DC4EB20' : true,
- '1129CEBCB9F0237509FFE00D10AB5A4B9F9C29C1E22777DC621F7B7C94B4EFAC' : true,
+ '117EB50DE540555ECEE1F8BFBF26EC6A99F44CFD71F21183BCB5ED47CF7F70C7' : true,
'12160CB58782201AF8F946F3911DF89177566E67C2AD7A2CF33107C89C65DF5F' : true,
'1243C75D0F805DA54E780D0D9C55247B1ABB31FC09EB65A7017695945F2A0D4A' : true,
- '1260F631D1FBC3640BE637469748889E23A2EA907F33F78286408AB56F450A66' : true,
- '12826065A034136FFC2258AA1A65F9E550A582B4017E396077917C775D42E553' : true,
'12C674B54921107861CA3EF8660E814B8B4D9913D0C7867A4787E3546F8642E7' : true,
'12F18371A507D5861569D0AEA4A8E66E551FFE7F312721E9122243EE006D8C46' : true,
+ '12F7E82D3406C5CEDA8CFD369DCB78374E1F37D312CFC7FB0ED422BDFDF47B7E' : true,
'13033A2EA4BC988F6079128723671DE679D332B41D5043BA058FC76F7E5DDDB9' : true,
'1306A4D21476D28D3E2F7D6E4385686E1BCB6D7EEBB1A5217346A6E5855DF944' : true,
'130F0A3C4B9E9132D1676B4EBBAB2B17AFD2AF39E291C983A696D8BF0DD379BD' : true,
'131F59EC4994BCECEC4BFDA4DD4153463E50830B1EF8629AB6A31DC1BE2F0F39' : true,
'13E77B97AFD7D4712B5BE975257B045E3A0FF8EA08910E1DBD5A64D0DCB95720' : true,
- '142BA9FFCEF5D09FF3DE4BBF8110156D52FEF1C8C707E4B916692D7DDB335A6D' : true,
'14919EA335FB4C65A5314A820ED289B0C8697E0124E6FC92DFCA84FBD56B2D35' : true,
- '14CF0BEC6B8811A81FF5AD015C62BC85AF172E86B7504D40E9F27F0E0A6F9BDC' : true,
+ '14F6CC3EA57AE2656212AB521EA53739211382F1D8FC429AD02A0D6F6A1C43CE' : true,
+ '14FC4B733B50025484FAF2617C4C857FA37BD37E6B5785CB007DA63758749E0A' : true,
'15178AD6DD39B91835771E8C2193D0A96CFE82F913A2C10C03144B37DDF45CA0' : true,
- '15508FBCC229C8D8917DFF5951FBC2BF0840866D4BCA8B406A63EEAC21221D79' : true,
'15DDBE5ABC768035989DD30C6A2BC696AA7E5AB2ADDF1F3AA8FEEA35D319B47E' : true,
'15ECBA98523C315922CFC13469827BC118123E02D1ADF24C3BF8305769869181' : true,
'161AAA4D4A25BB68199DBE8BDDA1E8FBC52E9C7B299EC5BFAA7B36040B3916E5' : true,
'1624DBB95D0B9786B98A4D7F0B7CDD8FF28754C5EB6673CAD7305B1B5B8F8826' : true,
'162735074DC673F1ADBAFC8A4202BC1C25549EAA743063B9DCB39B37206C642E' : true,
'163227E6A01ADF06502730FF25F39D8F52B79F9AE61D5AA2876980A21985A211' : true,
+ '16583259A8715263D55C505FD1DFF51D3925AB6E38FC81417BB52A534D767F3E' : true,
'16A2F0D309D7E5CC00E5DFBDE3DC5DB21532F7E5ECF93E18554698374A5B5C2A' : true,
'16C84150B3F3733B9D898ED4F57B4204E8ED00ED1147C06335670DA94CA2E2D7' : true,
- '16E2B54FD0674D40BFAD5C38803F7563CECDB022DBDCE1F282E1CD5DFDA5B35A' : true,
+ '17094402A4BDFBFA5780FEE086E2D0DA5F4D5EE3107A1E934F9023A1F7E1163B' : true,
'1715E347E92C85ADCEFCA2ED0C4B56DF7D7A3FA9C834B1F2DFA7CE115DC8DBC4' : true,
'17494B14BCE332EADB033DBD6012FD359936E0183EB22AD02C95604EEB9E4B7C' : true,
- '1765ACDC57A9EEDE87E6573443C7EBC42B17E012FE153D6D7158402D5CF9365C' : true,
+ '177CF252B8F289F84D70CF0C5F3BF4DC2F4B14019D777F62628BA1C74ADB567E' : true,
'178437C1DC169BA86687755E982E2CAEADE216ADD8A163157614A66F34325FDE' : true,
- '18072A06AA04215C18A6DDEF2B57BBFC054A4B3A50CBC2648515BB715B582F23' : true,
'1882C2D8D817DD1078933D244E379CFC5BA8EAAE302BCF9FA22636B08FAC86CE' : true,
'19230A5E183CB5DD90409C54F01075BB43D5608CE9C322EA3CA3724144FE03B6' : true,
'196603FAE474F910E61B7CFC9A735167422C230CC3917D4F0B1349A8AE18EC81' : true,
'197B67187392F9D4653EC70C8BB277DD7DA843E62BA1A47B0BD95B89CB2C1735' : true,
+ '1980AB9A47AE57C49A608D8DA4D1DA1B911F39FB199C9A483972FAC911F8B193' : true,
'1985D79429E03A4B25EF4195F04D0D6E770B36E8AB4369232CF3A1C1E40886D3' : true,
'198719FE25A84786A0C2BD4053E93940AF864498D6071994E09A5335B675A73D' : true,
'1A20D558B752D443D16F9B806ADFFFFA0B15F9A6BF15C4DD9B0127A3BF140BC2' : true,
- '1A30713C34D901235DF30605AFB82AF55EE4D3940B86E60B50692145013AFBB5' : true,
'1AA2692979DFDFEFD4854EC9EAB4CC323BE159529C3E85799E2C3C51350FB9C2' : true,
- '1AAC19B1D8BBA8A33D43E739B1112E89A5E041BCA24ABCE4B13E0B1CFDEF6DFD' : true,
+ '1AC3A4111AA231A03A5457B4143FA2302D977AC7666C84D504283EB828152B90' : true,
'1B53976D26A5F691CEFCF098279AAEADDE2651B698FC3F7088F5C2A5B9CB2C5A' : true,
'1BCC11E5459BEF3D48BCCFB10F57B0D640EC74C4BFAA3F0AA221B777170A5B6D' : true,
'1BDD0D8B130AB4FE89DB814276912F04405F2D202CE9DA8B89C4420740517437' : true,
'1C0A6732DDADEA7031C3AB577D185BA0908FC8CFC68925973F5D8D1EF314A0C4' : true,
+ '1C2A7980E99904650F707BD8FFE193EF77B98BF02C594F668E2CD8FEAFB87D34' : true,
+ '1C5101CF6E51596C08A2A9D05E7FD15977361F9397921F1E007190F7E161A57B' : true,
+ '1C84E802619ED9A0AC26289D6FD23589DBD71355453CA3A330C67875541314DD' : true,
'1CCFC1F41255B860F2231D11672FFC1AE32D9CEAA341139C2B472A0EA9CB426E' : true,
- '1CE75CF38E7A5BB9C7C18202C97BFD74E79B3073B1FB6B2BBDB33E78BD22E6B5' : true,
'1D16AA433A5042924AE1BB07FC1B53E8549BB93D0F3E40723DE9CF95720D593A' : true,
'1D2A6A876B8C8A835206E337529E6C222E272D4AB79E2224E23A5B6414039D50' : true,
+ '1D5A459E02A0790B2082A875474C6B795D9DB88FBF88F5F71A6A0E1D7F0A793B' : true,
'1D968E8C9F5C1FAFE516D2B719A765DFC83AE7AB11BB461C696DFE8051E68C04' : true,
+ '1D9814B49CC077ABB5F8BA2FD6CEE094538866B595A4B5C5B96B8CD60342D7F3' : true,
'1D9D0031DF904A27E15FB3AF4E004B0A7350788FFEE1C7FC17F0E6118C678AEC' : true,
'1DA6DEBFCC0A4BADEB9672E523C95F42B2D16B168759F75FD03EFBD2CD482032' : true,
'1E07BA293C78E14CDFC629A797E8046A33F21981334BF6BFF9B4DD2D3C148CF4' : true,
@@ -127,156 +132,158 @@ const X509ChainWhitelist = {
'1F0A95E93B1068A37FC1D05FCF5FA845CB7D6514F10DD5E69985F622F750D8C3' : true,
'1F4C963A9BA39CE44E46F135EFEAD5B30D6A0A3A43545E18CBE59DE452A6468B' : true,
'1F50A8F65E8256363E2710E05BBADE0FD84882DF8D7C5B12A92FC51B4643E4DC' : true,
+ '1FA7FFC35183479611091C22AA548F2807088FFC09EFC171596A26B228EB3951' : true,
'1FCEEF2FFF50C9A455ADF1A2FB3A2D150777EE49A0F333F746479D677E3283A3' : true,
- '200F113FB8BE9CD93DCF38AF69F714D686AE4D227572F482F774574A5CCFA6DB' : true,
+ '1FF0698D58F68707B69BC895A69FC1F7E6A645C6BAECDB82CECFD7F424BD60D3' : true,
'20226C095C430BD6AE483B9806E0C32296B0819273076F35F65B6A52FDFEE19B' : true,
'2088FE71BC64663BEA0FB04CF93E3053228D41914681A3F17DA61CA996D453AF' : true,
+ '208D546555F7C8FB765630D817A53D96B3BDA2C42C82DDFDFD025E0D9FBD5512' : true,
'20C2806DEA7B729E29F7B7BB8B2653B8D71805605AD46394473D1B1F81103664' : true,
- '20C6290C0D7F1DC37BE540410CE80976FDC523C201D3BAF204454EF851F721E9' : true,
'20E0911E2A528C3DC143646F9369D844E82CDA53C48549125DD690ED1047D8FF' : true,
'2128E4E9D372E50A94E43591AAA7C8B6BCDD8BF303C0B22F923B1DCD596E79B6' : true,
'2156D89DFDE0B0676EBDE6CC82DF46DA81467DF96F9B8DC4A8B62F71DDA5DF95' : true,
- '215D8B74267F138F2936F74E6B2029CD8991DD6AAA1CC001ADF88B0202F637F9' : true,
'21773CA8E35B39C05F62E4EC902D512E19BF1249D303EDED85AB5A724D491B44' : true,
+ '217928469E2299DB33E82C901CD9BC5B3FAFFBAA9D980ECC601413C9FEF5F1C8' : true,
'218E1D545DF5578EFDEAEDECD87F3FD80C7DD8D925A529F1BCC6E2D72FF03FFD' : true,
'21B2E2C095E47F4762069BA39AAD86802201AC4ED5B6DDBC20D1C7863AE511ED' : true,
- '21C612A4E2CD066893391249E3C4DF22613E9DA5FF37690E3F806AA708B0401F' : true,
'21CA97793B165187383669364CEFC96F19BAF3F8987F7260CC46F3852721BA5C' : true,
'220A91D48D7994F2C122A3E75527F1C29C57C0FBC60E645E02958217AE7BC759' : true,
'223264A2EEB01CD24524FB9273B38688A0AA8E3A2E7D63ECB76012B060039760' : true,
- '2234133DD7FCAE5D199EB31E1ED8A798554B29A355A895066FA6AE445386D9ED' : true,
- '225C19F21F4CC5241C15ACC6007060605DDF10817681F676CB8BD1B72014D52E' : true,
- '23980A7B935B10CA69315CDA05E61B4ABAE7876724C0E0C3CC7BE9748E41ACCC' : true,
- '23E080919FCBCDBCA08FBA3968559D1D3A5E785802976E27126A25BB7D9958B6' : true,
+ '22ED7C0B17C1C5FF175340CA20704B18A745E496F41B36515A5936E80F400F6A' : true,
'23F00AC8958BF1466784068A5CC7E2179988F1E73446955136DCBBF756CC2171' : true,
+ '241D89D07F380A6AFCBD4379AC49FB2EF6B82E7D9D3F155DFA4275A02B9ECE9C' : true,
'244EE1B87977A42E7CA64725F7DD82F337A432744853EFA58C9F386DD4E0283D' : true,
- '2486367AC0F68DAA6E2BAB0B01CC6B3EEA3496023B3618DA73DC303B520AED8B' : true,
- '24DFBC07031235121BEBA97AB5A061AAFCD8AAEB2145820A78EB0980E5111E02' : true,
- '25534DB97A159FDAD476E801A40B0BCDEFE50CA858D2BF923FC51756AB5BA637' : true,
+ '24E10AC42500C086F78D008D164BC4899A932140B71A9D96CBAD9FB4C8968027' : true,
+ '25104DEC49F5E26A63CD9B1DFA2B4FA82F2C73E4AE18CC7050E0E0EC7946CAF4' : true,
'258A578A6BF92E1A60553F2A17EFDD2C3267E585FB64020225502A19C6A015BF' : true,
+ '25B1D037851DAB7E74114857E6ACEE603F0E41D7B6A89A58A2CEE23CA92D9135' : true,
'2677470F2FBD067904B7014B88988BB94F72403C014240B9843AE5A5FA21661D' : true,
'268343ADC21A53E71BD790E19507760E1F7F09B7C51E088E39DD0079C65AAAF7' : true,
'26A15E073F71406D8AFF4A4A623F956FA8E3ED70F0C04CB4B28031EA103DB975' : true,
- '26CFAA69F0B2C35461B8F80F2A0537AE95C677F900E1B13CA977D79C06820254' : true,
'26D106DF3FE6E9C99924142C9DA27551E012C72C71FDE6EDD3CF4B5C87D59A26' : true,
'2741D5D511257BAB37E2DD48559D3FE3998CB3A5BA4FC1EA9C8656D5694D7BFD' : true,
'274C93C8441ED469C7B7E01B5A4DB6D9923C3947C87CA4B71D09F34D13F37D47' : true,
+ '276E05B404AF299D94034EC66A188571F2889D6BF76BFED48FFEF62BBAD8882C' : true,
+ '277DF8ECA2C7455A847D9C1F3B87D0FEB37C0D7FE1EA6B795718513BA73F71F7' : true,
+ '278688C47E3A183BB27A4FD418EBD2E408A09395047C896E3757F2D5BB50324F' : true,
'27E83ECCF1CAB639F44A2B74BF9A3D463B18BE6D600C1186C336421DF0A8B752' : true,
+ '2823094C667C47C71749F7A97F6D215B234F086780B61B5AACF27BFD65C6AE4B' : true,
'2855C813E2F7369732C35656DD791928668591AC6AB3F9C73061B80AA7713920' : true,
- '286FFB01258C4196768C7C4F9824410C9B5DC80DEB91F4AB0DA89D43BD49FCDE' : true,
- '28B49BD8083286E1E01C3B94D6358697FE6827CCE71D7C1D0892941B49D83416' : true,
+ '286C62823B119606F33D5761CF39C86D4DFBC1531AC399969455CA227344D5C7' : true,
+ '289395C86A0D1E03CF23E70D9FBB322F1988E1C89ECDDAF13B79DE45880C7295' : true,
'28C725A83ABDD4F961356B2B5583C1F165094C5BC820CF15A4FE18086272107E' : true,
'28F5E2863DA83BD5F283E9598D3E8D71817B97BA813C2329DFB2A61814BF56C0' : true,
- '296C5D3A18B056644774C03385700A24690EB9CD1114CD9E643E4813B69363ED' : true,
'2A66B5579421025EC719858E2D80DDBBE02243073DE27DFC7AECC676B0899589' : true,
- '2ADD4406064A5EBBD98A9D53051A0FB086A5D032655C12F503EA73C8179C783D' : true,
'2B059B135DC85869AFA0F2BB76122D71B97DF5EF2C87669085646D98CF08213B' : true,
- '2B1B6843B33770E84785D0FACA5AA6EAB6C480AFA07E95F7A282534BEB69B065' : true,
'2B7C7CAEDD6611BE472B7BE0EDF5907E0F2DEFF89561E09F389343E095DFB90D' : true,
- '2BE6A67777765CE8EB868416D68CA6AEA8C57D31523F4A683957DF560C152066' : true,
'2C01A7027A6FCCB3EF0B70F134229605465295EE1249F5A582D04CD82689BFC9' : true,
- '2C31ACD6B2A6C70625CEBA16E104193524C129E9EB52DB35704B5E5E32F77E9F' : true,
+ '2C610F90EE3EEA88B4CF39A44659B8B5F74454A5973A9D787794F15867177C3C' : true,
'2CAB9683916ADE98D778D3394221D8D07E07353E546771D507232A26FA577902' : true,
'2CB5C98C4A0D8A9EE15CC49CB83490CE552677BF353A0FE7AAF1482A8BF8C012' : true,
'2CCE7C6E6F1C405C82DBC09B890BBC8F205F503A010210A67428FC8048DBEA1A' : true,
'2CD5E37B2C388FECDF839EE16998A0F0850B5A6BB39AA5A507AE676622001CB0' : true,
'2CDCECA60D7F0E4700411340E6CBFE1B3C8FAFA9081E219462D25A14B61F9AB5' : true,
- '2CF8647F049667F93FC50EBEED00FE30965114437763C339393FA19E306E9CD5' : true,
'2CFB60CBA71ED8ED0B81BBF029CD02B2B025FB4859FCA999DCD96A5D54AB6C93' : true,
'2D375C90CC502EA17D4FCBE8EF35BF7E07A84B6B94EC7AC78613C623DD765E74' : true,
- '2DAE8835F42B7AE9A44C8CC72F12D750EDD8C5AA678D98CEAAE334BC602F0C58' : true,
'2DBAF94C053FCCFA1EC09CBB22F54DAFF2DB4ABE1B3C61CFF1BEBC31260F4821' : true,
- '2DE3B602EC7847028D2EA59A8E241EDE63CEFAE7456802CAFFFAA8433CE9D885' : true,
- '2DEC053F97460AAAFB67EAB8C769B34049E9D44286F199A8D776D2FBC4A8A41C' : true,
+ '2E7F1DBDCA2839FA5A49A6477FC9E09205393FC4A21BA2F5B04F58833DFB7304' : true,
'2E936472C0CBE755C72128EECCF5BB8AE91AF188CB2F3277B205E27904A9EF20' : true,
'2E9AA94F913F869B027272668BCA46D5076503EB9550737482C337950749E946' : true,
'2F3A46F3C2FC1EBB5FB46B3135B7B4ED88CB515C2DB9A508716102340AC3583B' : true,
'2F56C46CCFDB3A3F0192313C4801F02FFB1738F328CCF0F33F44C0731D340DD5' : true,
- '2F95B5E7F929043B7B2C14546F4E0452A216CC921BBB236C9D8F5DBE30D169A3' : true,
'2FABB733337C02FC7D79E61202EC0FF7115DCEE66134F5F8823EE61CB7000005' : true,
'2FB44A33A5795F520D20CB4ABC4AE4E239FC193CC2E3D3A85056685ABDA9E0A5' : true,
'2FC3524D85A62187238D399692A116C52E4640DD29204B12F991441B7F01E4E6' : true,
+ '301AB20AB753F09B1A1DFF526D3D5DC6ABFF5D796C6900392391D48C2AD850CF' : true,
'30547BCD70F47CABBDE76FDF5538C39D1894B49CC72B0A8BD07250A65E2437F9' : true,
'30664111831B947406CEAFC2E660230B307F401DD060852E0E5281C95D9F526E' : true,
- '3074E85BD8520085B6E6AE099964DEF737BF95AF53A0A8F3C5F4B4D714CA2824' : true,
'308F0B0CF08358D501CB807667A31FEE7FDBF7539E1AE74945DD9245AB9F2CF6' : true,
'311646C51E3AA0B2E8022B6B1D95E83814131B16921B3B38DA1ACA9518AD4602' : true,
'311F6B428C4994F2677A56588DA04B704926D737669A76B1B3C8504EECCE4A61' : true,
'31409761DAABE788EA289CD56CF4B7C2BAD543D7FD4347E2F567264195F5EA37' : true,
'317B7685779DAFF1AD898FA790781D54D3EDC11621D1EAA3F4A9BA3262462557' : true,
- '31D38D516353CF47DF9A73CF8500D63FCBD9CD963AC8FDD9BB722B287B9C2880' : true,
+ '31E1681F2BFF6FEDAB9643A60CEDFB2315E62408EC8AF54CA9252895E34B61A8' : true,
+ '321EB0C04DEBB24086B738BE5831A4D968DBF3FA26E610C367B7F6B241AC2B6B' : true,
'322EC261687A3829C2C0F1FF70B3E6956F5EC01497F58A422A099521BC236D24' : true,
'323C8E2033ADE1E8793BFDB767213691270543CF88FD6356194E5A8E87A755E6' : true,
- '32D398E73D053561EC78257EB01F0945C2A38D9F80674F6F2B4B10BA35A2B4E4' : true,
+ '3247CA2A4D20116F5513937011CB89834D690D5FC864C788061B13AC826B0A64' : true,
'32ED76AE2E09C58605B9C2BF6A27080DB8C7EEB70889BCCCEA72104C7F33F95D' : true,
- '33512B5F197ED2B530575C71046268C4E2F5724B645B8DF1C689EC535C0FC791' : true,
+ '3324199E8208DE00D12FC927DC434DF39C54E591EE8CA42B31B505FDF344E5F7' : true,
+ '333EA87B9503B4199BC1CEBC617DE7A5E500DB05DA5761B7B4C95093201F6200' : true,
'3361788E20F935BE971D4A9B9F49BCF9951C7B30E8E1B00E18130777401E634D' : true,
- '3379517964657D6F875971C1ED6218D9F890BEFC7390CA654C79A666D1989A18' : true,
'338CC51C8910ACF7DC6CBC3AB6F2E288D38A7656CD78BF22C57745EE3146BDF0' : true,
- '3394F2FF8A20D115C929711B75D89260AB3798B93A559CC8BFFBB6A2F0463D12' : true,
- '33AF2CA60F79D526019EDEA838ADAD51FE541F589F09B0C69A0AA288363D3C72' : true,
+ '3422E68D29A6E40872B4B94E0758602613A6E2CE2CF3B5CA67E4EE4DC097C6D5' : true,
+ '347AB921E9D6CAABC0DD3A083393C143012536D13816FFE40C02F3E79008041A' : true,
+ '347DB54EC154BC63A4DFBE7698F064254EB89FE7B534161AB6A5D282C87E2CC0' : true,
'34B1CD29AECA7639010C4082C4609B8EC6EFC5DF272CC90D2650D01ADEEA8A53' : true,
'350123506BA002EA62350E82CFEC1DA7BF24B405C4160EF1BF4C445F7DC31757' : true,
'3551069D5774095145A9731885485CE10FBF3FB46144F33A4E48C03CF2E475E0' : true,
'3572DCF086FCEFED230B4D1B47E73DF410A5C775BA3BC9DC2681204F2E980BC4' : true,
'35A0FA13220E762AF04C6148BA44189D2264555AD2FC34601434778390FA5D92' : true,
'35CE5363F4A107CF1BDE8CFA1F3636AC081B94188FD008395A1D8895B5AD2A27' : true,
- '36267B2A60E0B5997DEEE17CDBE6AC7F7D54D279C6AB4F06CD469919F442E6AE' : true,
+ '35FF7D237FE10EEEA04358CE725A8D43DE0D041729577BF817BF549B3CC1ABFF' : true,
+ '365497AFA23330EDC3FF27DFF49CDDDCFDD680C3843BBCC719674A9FE6AC1E4C' : true,
+ '366810DE62E39878588C7AE621C28816F67DD25F3E76BA4843FCA93A680BA6F1' : true,
+ '367CD6CDFD0A98DF1D69EEFA8A8D5C79B4149F28188943BD32D042648021B458' : true,
'36C766FC49EDF0C95C068E89E5AFE604B86770D48FF3CF6284A579B200355C09' : true,
'36E58C6DDB5038020FC61F17D2728311DEA600AD9FBFBEBAE2EFBB7B5071D884' : true,
+ '3708509A206C9C6C5788597400D7C505859483753AD8CC0F99A5D2DDA9C76AEF' : true,
'375A5FEFE06518B0BFD2CE02034E185A44118CA92BEC6FE2D5809762C89E8C67' : true,
'376690DCA49A37377D699141D59A549953B2A0B730729BC6FF8BFDA67433F763' : true,
- '37DFE2D5440429C8D48258C7E68500C526C81FA4606E45B6611E68C6AF2917B1' : true,
- '381FB3EE49812423C2F3CA943350617377D0E36E0D7FAE21159F648DA79FD32F' : true,
+ '37D9AF8274E2D58FDC78EAD2CEDA12B1F68C04A0F2758EA29CF0AEFE9342B525' : true,
+ '37F78563BBCCFD52A5A8E02FBC3AFCF8C60FCD15F9B7D011279497FB89B3018C' : true,
+ '387A2F5DD4AD9C5E0847B235EF6DFF8EBB8B786025B4317124DECA6E08DDED32' : true,
'388FDEE7D1F4001D828D2092BBEACF16E5D50375BC16FBF1BA058917BFA03C1F' : true,
- '38C737C9B8240CCA0A28FD58D0C0C697B8D1DDDCF895D3F3256D1DAC8C08F513' : true,
'38D12483160C6E3AC330EDC1DE173382B4C2AD79A298155181CCBC9A10CF6495' : true,
- '3917E4EF55DFBA1A48DF46B693E2E72D708B7B6146C8686C5B3F94FF8B3704FC' : true,
'392944F5A1C82284C698C6BB512CB5ABA48445376D54BDDF0A53C66B832D1BB2' : true,
'3955C196410B13A2BE4CE66E7CA1238F139DB5F00E2DF2997CD83903BA064B4F' : true,
'397B9EB5957CE4F48570ECB1A512AC0CB669DA638AEB298B95C9F155E2D0A841' : true,
+ '3980DC35B3F055E561CB3AEA700F226E35C1ED91C66B2CAF6E186E10A319BB29' : true,
'39BF13F759A9161866C6DC6898A5E6D71FDDAEB9EC5925FFED274FA8E5FE34D4' : true,
'3A260A20CB6DC9BCEE25A21284C2304A9744F494B37359F5F0AFB46A1D0DABA6' : true,
'3A2AC86801E185B3B8A189C42AF1574721D452DA425CEDEC6FA0CCD44894BBF2' : true,
+ '3A6E84F6C3500A3C756D21172CFB91798DF0EE8CEC9690609D9240018B1986B9' : true,
'3AA33F69018FDFEE33875D0690C26D0CBDBED363252891E02592E0F2E2E1EC93' : true,
'3ACDE8B9E6B1100535007AC7316F4587DEA84EE0DF1B344DECEFFA952AEEDF96' : true,
'3B1CE26F0C0E4393AEAD1BEFD39546A60E52ED5E52727AFEA827E27CA20453F6' : true,
'3B209B5718F54F113C557AB8D670B1501B05A16B92E6E16BC97D026087B90C3E' : true,
- '3B98E076AAEB1E46BA5DAFF4914C9E279EFDB41A348AD849756FC33CB6A4881D' : true,
- '3BB4AB8E09B6EFC71B2B292A489372337E48085BCC4C08431D090D63C8920C78' : true,
- '3C96E89F8B86936DC4FFF044FF1AE0F5C26BBB357356C47EB977C5E5620EE434' : true,
+ '3BA68BADFED2C2A37E94A335FB77A9E633752A9BC037C2B387F89AFE76DC0C4D' : true,
'3C9E6298F6FC43F504BBBDD12ECC94B4BF47947775FB629D1E1683D8D5AA6A8A' : true,
'3CB171EFB062C3F0AC1CBF88CCF28B562B382A5EE096BB48394B16AEE1623F82' : true,
'3CBAC1646A082FD6EB8B9F2A844C1E6314F80DEA301385ED296DB13C3C37BE91' : true,
'3CC56DD89816FE295CF8990750308F966BDCBA97C5A46F6DBD5B781686D2434B' : true,
+ '3D0D68FB06AFA2D8D333AAC270310C45E9D6D79D18219B7C029A78CCC43DFFC8' : true,
'3D1C44AA234496D76A6BAC3434418253903B3C5019FF91F78348AC7C14E39CB6' : true,
- '3D666AC8FDB8483D6006C9E22E5E9539E27B322D5BCD0AF264DC8878F9476DB0' : true,
'3D76435F7EA7583AD6F474333B7F8AC6368ACB53FAF4AFF9E8644765025ED427' : true,
'3DB253A22F1FBD071CBAB9E97294CD6534BC74430123B82198F7A29ECF800D64' : true,
'3E08AEB4D01EEE9C19968EDE2D5FEE0E974E6B7FD65769E767C28CCDADD85D46' : true,
- '3E09F448ED5A72584FA305F82A25706D2AE756083530B4E18665DA2AE46C1410' : true,
- '3E14ABD512B796887AD5DE7791E098E11B9661C969801944C5F9D9CC2E65A216' : true,
'3E5558CB92AEDC7E01DB0FBCD0825CC0F51AA7B683ABFD01D1E5E04C8A4D716B' : true,
'3EFF635571ED85551721F01985D1B2C62613C2B7DE25C8DAF17A8767ECFCC39F' : true,
'3F1F9323436BD390A2355115CC333592B4B5AE3F3BA2755D342CD863371EAB1E' : true,
+ '3F56CDF75403392B96E7DA06DEB55C70E8D9166ED6FF6B84D7EC4C176157E6B0' : true,
'3FC92874F07DB0DEE11CCB2CA7BDF187641DC78ECE4C76E71B2253FBBC17E3FE' : true,
'3FE67F5B06535FC13DE42FBF82AB1238C7C899491A460D62CD2FC08DC87DCB73' : true,
+ '401560EF31EC01360E48BD4CC8C2B67B55C0004712A3C08E22A01F933C60CA67' : true,
'411ABA7575AC3548FE6E02AF1E192B80ADA7FD957D2FDC1360B747598D1327F4' : true,
+ '41690876FF9DD5DE1694FE83F2D708A5D86222271E05F2D76AD63D981501985B' : true,
'4181BB2178C564FEA4F0F5C87337921A1DB4C1CB1264B1E2168FFAF334C7DA55' : true,
'41CD7602C418FD0831F1F207DD50A19A0A03679113F8508F43DE863AFD32FF45' : true,
'421255699474B76638EBF0F0B09FB1D5DA870483D1F6572913EF411B384DE3E2' : true,
+ '4226423E038140296172814E39889C6B35471796A12F91E450FA5E59341F571A' : true,
'423D0D4DD3D4B507C4115C46321A9B0BE3B9D7224DF626D2027A30FE682099DE' : true,
'4245AEAD44ABC8177230DB36491E58FE885773DB0D043E24412A8BF6262D506A' : true,
'42A2B7BAFC9E81A94112C062E15EC8017861988A458D8C52A686702633559BEF' : true,
- '42D891E625A2FE563C10EC705A036928A9EED088915D480F5DDEDBC4BB35A557' : true,
+ '42DD0632CD639ADAD014D4C2E28BEA543E3989FDADFF9DC360676BF07C200A1B' : true,
'42F0C6BD144E105B3D14A68E267DDFCAAF76C95CFA265B187480EAB83FAB9215' : true,
'436A3291C05BB22CBED875AF7642839CC42E7C0BD534AA6698AF162F790F90BA' : true,
'437B07B7934374CFEB2F61FB1B9A764548A53C9255F053C59E236CDC6B89B839' : true,
'438F971859A8E9513FF0A066A2DAB7A7605BA447CC82183DC88B53CAF49D1A37' : true,
+ '43D2BFAE896F4791DF545D91764AFD74DE470C6B26787A553E70176925AAAAC3' : true,
'440D00F6A763CEAF241756BFC150BABBB724D3AD48D6739ADEBC84004E24FB7A' : true,
+ '44406F5E316D195EF83153B0E45380F529943062FC692EA5C202A897A013E95C' : true,
+ '446E31D583B00384BB2D1D48C8960DE3C852F2DC4FA3BB738867CF5FE64EEB5A' : true,
'44C748D62020862C698F3A1BE86A0261BEEF4337B6E28B3597F7FA0E4A01E49A' : true,
- '450608B6DCC297A7FC00DACC4455E165091B8A4B56873B61C4ACD495A32AA2B7' : true,
- '452F8C17E67135B1FF58F58BC411FA165E80838C8705B1F6BAF1C90F287BBDC9' : true,
+ '44CABD03127B290D755547D264FEB34F4D906826A149B64DDDA514F549FB52D1' : true,
'454B18F6DAEAF7047D5B6CBE2639B39B2FD036870978048A5076DC8D50244365' : true,
'459F25329680CC7589904EFE8F94F17880AA9DF2BA9408645BC9370DAA937471' : true,
'45A2CDAA5DFAFF670425706B6543FBE161BAB6843A156A1D54F340BD8CB87970' : true,
@@ -286,7 +293,6 @@ const X509ChainWhitelist = {
'4603C35A8304F6057C253381D39404E8B40AE0958B4EB2CEAB7777CD85802C0C' : true,
'460D4CA817FB242D2263900689B3CBA7261A390B018391C7E1716991BE8ECAA0' : true,
'46236B9468DB40FAF467AFB0C35B517E514251530785695F54440E6730AAE44A' : true,
- '464CC49DD9D781670D5B24D203D45F2CD011F63C8775862C2D7FAF4B23C64EEC' : true,
'46565A05B815225FB600CF1CF1EE4BDBA5A7D39A7ECF45210FEF3C1FCC2B8B1A' : true,
'471B0944B33214226AC225854FE158436A278A750C082A48D9E7A5E2A0E1715F' : true,
'47C5156F5664D1535C58F11AEBE349CBAEF19728907EBBD794D95E275E5201BD' : true,
@@ -295,102 +301,96 @@ const X509ChainWhitelist = {
'48544D794B99D6942B8C3B2CF051782C2F6CE051860BECDE2736C2CD6A429893' : true,
'48E8ED415FD8EFB4407D0C67F3A4EBF15286569D29D566DEFA8B7AD8F135A5CD' : true,
'49558145AB82E7F795C2E45402260F1AD1ED43D4DF145CF2577BA1615CD00843' : true,
- '4A25089DCED84BE3DB1816DA1A2619E2D39D037A7561AB7859949D1401BB6C39' : true,
- '4A80A015BEC13BF13BF90A093212BC7E939DF1F5F535730273342AE942769A2A' : true,
+ '4A69353F89397B7FBF7B34B298BBA87342EE33C9F5B75660195F8B308FC892E9' : true,
'4A978057E01B2F443BFC218B48E7D00D2542DBA58ABD2609ECE7E152A8F86292' : true,
'4AE85007A69D54CCEA04A3FF18B66CA5AAAC43342506963BF910E2C2C3AC8816' : true,
'4AF86DB451BCBBB3BD8BB3D5982DBF4451CD96394540DE9FE6210E69F7C2F8D3' : true,
- '4B14ADF4E6015B7F5E4EBBEAE635E5FCA547B1885B9386DFD76A25B8D2A2A63C' : true,
- '4B1887A5BF5071B7F9EF164F10C4D3B4DADCC0144CC3C4BA26707AB1D336E0B7' : true,
'4B29F275C3803C8B4E50951895FE2A4C94442F4A7D14922D54EADBCAAABF4056' : true,
'4B50DC7F1BFC4867D02B551EBF66F63645DD5BC27681BA715154809449F381E4' : true,
+ '4B7969CEDC5D49D2FD71A2BB9292ADDE46AA34B2F8291163708F0039DD950618' : true,
'4BA794C124A33334A880DFDA09E7CE5B10552C8301447ACA77FD53CD4CE9E725' : true,
'4C30D24EA7A5914CCCA63E3EA35BC8FB1235F5DCF380DD8A62A01EF15009668B' : true,
+ '4C3777C55B3DE718A1A48D7903656A81E9CE315333E2B6C3A1554F8B5C193BB4' : true,
'4C5B87AF5F835DFEBF4FBDA9585178998AF6C7E8681DF65E46494A8F6BEC6EA8' : true,
- '4C71A0F5907EDCF7950980BCC1B7B6E00141C1FDD4A50D445BB43E1E054B59C5' : true,
'4D112C44F7DBE6E0A55667E639E192515C54B00CE5E964EF696B13AA049BA656' : true,
'4D26A014A4C4007564C743D9BBF9C2DC9A5A881C05E549DFFDAFCD3814F3966C' : true,
'4D6CCD149A9BF9FA30CD78345F827ADB4A51553FCCDE1811FA39872E293EFE59' : true,
+ '4D8B64624279CF7D51601735841CBB361AF0B7391064C39EE82B7BD99F633599' : true,
'4D8C4D5D0326174F4268C67B81010F65F2DDF58CE700989FFFEEA379269B0AB2' : true,
- '4D934EEB8A02C8031AB9A12A52416AAEEDB4B2EE58FDAA767FAAE917AAF8B645' : true,
'4DA82555F55AC2CB08AC556D75E6C96E1E7CBA6080B1C9F50330ABA393550D18' : true,
'4DAD9C6A183D4E385824B6026E226BA5F220BD838F827C2063831B5998504253' : true,
'4DC761701AB68524A6BACAD94CAF1D8480229B66D8B9B9C0CDA3D3B233A6B785' : true,
'4E49086BA0B8B96D1C31415D8A1464F19B93CF45B46D04AE4C21672279ECEFFB' : true,
+ '4E896A7D43F19E4E9586661BE2C642A13C1A6276BEC67EE05D73AAAD7009E723' : true,
'4E9BD8EE95C95E2F30BC2874E73252CD5F1E93ED8044F8BDB007117ED14E2959' : true,
'4EA0560BBF74EF86493F2C828377068522430AFFC664B1D8E1AB3A2B7AA54FA4' : true,
'4EC463F17C54EFF037FFAC18326F5C8D86F5AC295149408499042DC4F8A96B73' : true,
'4EEC544B64210519ACB153834E7AFE21867AA949946FEB78CE5A254D12A0934A' : true,
+ '4F109E78AEF1C633256A8D142E1BB4634CA4DD28D45C9121F8AC34EAA2CA8D61' : true,
'4F2585D48325C6EFDF76B91358BCEA97A428B95E575ABDD83028DF3C7AA10FB0' : true,
'505707224B14F1FFF2F5937865DE662C85B0C21D090C59658E24B53CA635EFEA' : true,
- '5067207C8A7AD4B7C06290052B7A6395CB34AA598FCBF2811ED504AEA1619C9E' : true,
'50CC4D1AE164F66EC09AA6B7D5931074094FA1BB6788AFF3525D7711449CEA81' : true,
'50D807568742476BDDFB2B2DD7532ADF770BC0A5D8CCF0710AA8EDA90AC1BF4E' : true,
'50DB534A27B601C2268FB45FC5F496F4457DC030EBCDFD6221A85B1D6F612837' : true,
+ '50E9896B78F1F7518FF47BA049FB637E9EE670EDC54AE3611164EDB0C77005FE' : true,
'513B3B0E023E7013AD1D77E77AFDAC7D99627F8EE3C8FB291064D6D56C3CDFE4' : true,
- '518B663FE089FF3E12F169F8EB5DE2EDC6635A11F14B7FD4207B307BDF2DAED5' : true,
'51951278BE011B8562F6F9F629855BCFC7F28856755EA274F29109E2489CCAC4' : true,
- '51D06F5BD10CCE82EF993587A687822C99C3D8F3DD2F04408E99A5388C07333B' : true,
- '51F3918557C9F6EED321444D170BB23E4A558FDDE7B966D11FC6B426C51D1676' : true,
+ '51BCC26F962807CF0E8DBAB22F10EC07C964A23ABCB3F54CF247590433E81955' : true,
+ '51D55D35DC31E9E37668C1D7722B6F9C09F044B5BA6AC7E4292E6B2ECEF92535' : true,
'51F5AC607BCB1882F792585357C63B23D08267F717AAC5BE2AF557123EB19446' : true,
'52064B1A1610B2374CC7319E51B4ABFAD46FA995B9447DF18ECBFC68382A9ACF' : true,
- '5208CCACD74C6B569607B3AAB6639B318FD5CEB9E3A3C763F11D6C4BD603ED5A' : true,
'521C2A94F68FD0E4A39D62EDD2F980BA51A70DE79312605479C49E9BD633B854' : true,
'527E1D8CBE4936132EB16202101509A3A0535CEF78476DD9317AE7A31C097327' : true,
'52AFEFBC93919093868483354CF11C747FB38F946CDEFDCFA6E5117FB0F5039B' : true,
'52D622E1A7705A08FC599381FD67871611748B8EE9BD235E6C2A91E315C251D0' : true,
- '52E62F52537E672C499E0902B25BC800C87BD8C45BAB7B9683811A7D09C4559F' : true,
'52FB96DD74E66D3AAD9362B58E44731D388E0B0E17DE700E2FF3A7ACB2FC1BE2' : true,
'5322CEB4048FC373C5BBCCCA48985E2C72A380ECB490D143DA16482383C74B2B' : true,
'53A96B8A54585360591C2CD5A84E299962FAD97F6C1FF0D55484D3F56B2FB87F' : true,
'53BC74DCB0A19B859F3FC60A2C6410D22F86321E2AA4D03B08C53181A0FDA996' : true,
'549714E49A3540F72DBFAD7836857D6566333DBA4645F3C4F349E5FDE00D4302' : true,
- '54B2BBDF93C79A91B1DC96B4534B8745690C5EBA5FD21A24462ABCE7E869D178' : true,
+ '54F36E09737DAF689E5E4639E147A532A852983FD88F7D26234EA7C9BEACF0B2' : true,
'55360AB9E4626C6A5CABE53D4DC3FFE3339671F040B96E93C3B8ACB6CB1AD4D1' : true,
- '5572DFAD00443E9C4B0107CBC9FC381C41F3BD44497E4142E63C1E5645ADE8F9' : true,
'557AE25211574C66868033236E50981E6DD3AAC09C9A7916CE3A26D03420E774' : true,
- '55DB7B0ADB76D9C23CFF1CE64083074EAEFFB1F83642E1AEC2A7FBD365A9E962' : true,
+ '5588811DFD0F3670F7E1A16786678388365EB5024E756A724F3E270874A0C307' : true,
+ '55F0CAEFDB22085143FA9BB68EBF0180C12EA3D524327C26D18DE8D214C5964B' : true,
'560643E22142CFB43DC9055CE558A62AA7102F75F6D42E3CA314920016A5779D' : true,
'562245CF8A84D1D3C1D6B93E913E3B22E5EB561788981CD666125C21EBF44D88' : true,
'563A36F203C4A0D86BC2ADC38B1006499E3CD3D651B5C97AA848494CBC5582AC' : true,
'56471B223E05275BE6DC106B9104B5205CE2E6FE11115C5BE564B51B965B5F09' : true,
'566B4401F65B5C29AAB831E836536E791FDCCCE98184D62C0A26E6842F55D303' : true,
- '56A2C00BEDBCD3A014C22A89A1E887CB0F9A2095FED90ECF196F6719EFA35A5E' : true,
'56C3C0B8AFAC13E7ADBC449142D6782CC3C31A5E19DADEDF1CC01A1C80FD6D4B' : true,
'56E517CBA2C7389F835B1BA349D636309FEFF05323957D8E64D6A2EC78F22883' : true,
- '572F317B14A0D117BA2B0F352841D9AA5DB609C9C5F9A9CB837D56533C983302' : true,
'575B7E593AA02701C1596A6A45E1FF458D4626BB2A31F5D3031B2023956FE5B7' : true,
+ '5763D92A93E32A742A173821970D56891B3874753DECF5DFFF2BC7D2D95B82B8' : true,
'57A0A93A8193B5CC90AEED1D0B92696C9516F2C3A6FAF86F7BB8126B5A691311' : true,
'57B2958E7031793509E2EB58DE05C460E0791C4F78A43244640F7926FA3BD7D6' : true,
'581247229E9E4F0D67498BD22646654479F5E0E21C96DF47CF84EC94218EFAA6' : true,
'585568A4010D0650BF0F0C2F78402F25FBF6D0B8C82879E5B475708DA6617E35' : true,
'58B590F006C3B293A57D41FF491EDACB580EBBF8AB20A91D6F8F0ACC3D3C19EC' : true,
- '590F7D88D52E1E705632486F4CB869B519331ABADB9B139951F8705F33E42C55' : true,
- '59148BECF90A7738D4915EE2C70C38F7789A26131E0FDC0240A76CA7153EAC00' : true,
+ '58D9F0EA223A00FFF59D34A5C07E1F2ADEE43CDBE908334E1153830DBE463D91' : true,
'592C1FA32CB66B17E0ADC3B3C6C65DB7A7B8863D0302D5E51C53416DB637BE6B' : true,
'592E6A566E519805F81D7C487817C94208B9EA356C03D1A69A3D1702265873E0' : true,
'59473282262DBA200C960F2938F0683168E8316CCBCA3FEE394F0F0D54A4029C' : true,
'59AF4358506C0A2318F28B90E799634921C869C5FD8B624C9D76756E2A9FDF6D' : true,
'59BA7AAEA0B865D4463836C24AB3BBE6D77AA72177831208B2B6A34C8C1DB307' : true,
- '5A4A5D3D8F496476A5004C4964B6D4DE0DBD10410CC2346010753DE073A4A315' : true,
+ '5AE9D9A57C2C534BFF3EEA5BA91F7456910808227C9D3075409C010D69B35DD2' : true,
+ '5AEA8446AEF2B9BE8984ACDBA8D42A71D3A8D0AE31372342710B67E8F5A43BF9' : true,
'5B3B3DEBC9899E074F2AFFE1A660013CDFD66E4F70948B72AAA20DF84433A80C' : true,
+ '5B9DE184B19CB095ECE56743A43B16ABDEB3063CD37F0E20E985C9E65D71D311' : true,
'5C1AF4338F1854843A251AFCCBFB2F626FA70E1DE41D2C941F34D15230BB56C9' : true,
- '5C1BDEA6E4051D2FE99D2502AC86707BD008636200DBEE30816399996D796DD0' : true,
'5C3F4C823A953A561E8D0787CE7AD8FAC7434EF57CDEFA4520C18A5667C82003' : true,
'5CDDF1DF7B5333F1B4C0FAA66297AD72ACA5258C5E9FDE4B9ACD9EAE832C7A02' : true,
'5CF1D1896FCEF8E0B72BF6E617D8210ACE7DC6393E38FD4BD4C68E2EFE2EDC03' : true,
+ '5D64C4C9EDDD06639D193853EC96E2965F6B25D267B77C6B4215DD267F8ED96B' : true,
+ '5D68D02C6166F138C5CDF38DBEE7D4554849D48923FD4002319655F3625DB8A5' : true,
'5D93064489EF0EFC4896A08CAFC0E39631930121F724A3D1CDFB83C96EABBE9E' : true,
'5D9A9954AA2FBF6B426E2D08BCB18387123B6E2CE67BE2FB9F60F8D4B405CD20' : true,
- '5DBEE57E22D11886178D1B5DCB4CB55C90C1C035B7914BD887A3BF87734A3806' : true,
- '5DCDD41A1C6B5EC3D7442090754B58FF81C2BD410EE5F730233F5C46B0E541BD' : true,
'5DE0EE469B7D133584FC7B15F067761A0A18D73CFCC973EDE76DF596C4F7C9A7' : true,
'5E650BBA8E8037D6BBEE78A730F740DDDCDD7EC828120AD912F4BBD72794070C' : true,
'5EA41BBE7505A57EBB3603AB14050A284390BDB6E72B39D918232A5D13E702E1' : true,
'5F24DC1AC032BB0FFEC76D35C0091D9B658E94D953C8F7576A7C1613ECD728B2' : true,
- '5F5B785C935A6757DC0031E7B064C8C456F41CD84F59ADBF9AC22BE75E9442C0' : true,
- '5F61E01E88738DB91B4328949BC927A80DE24814DFE2B54F9F832FB7871D6926' : true,
+ '5F6CADF774ECAB5E763C99E911D31B7CE7A470AC7A91DDB8A0DFB092079CB0D6' : true,
'5F85D6DF2EFBA0438EA4283D734CFAA8B3C43E22BCF7F6CFC24DBE82232ECD3F' : true,
- '5FA6BB08BD3C5B8DEE211E5A08EF52E35079546ED797587E78751D36B31E09D6' : true,
'5FB6ECAF5FD5CA42241B12521D7BB6F06B7D804C60C84D7BBA7B7A7543FE754E' : true,
'5FEA0DFD20247FA12D63859439FF9F4D5D0207D6E1134820CAA9CFE4A1B08FEF' : true,
'60E9F3B150DCF1BD90562DEDD083FD783E2CA9A982C08BCA2C455F50BF977B98' : true,
@@ -398,36 +398,38 @@ const X509ChainWhitelist = {
'6129C7157898F2D29FDF04A78AC6730FFB248F7467858C9F3441A5D4D6B88C8D' : true,
'615745882CBA2C8B9875198E3FB62A6831207B74A21330847BA9AD01DC9D5586' : true,
'618F1FA3F38C857898847A865AE73D87B0071C8DCFD4EBB7E80828B11862151A' : true,
+ '61987C4865081BB1C9CFF8E555A2B73DC6C88CAABE6BCA06950D3821A1F9E407' : true,
'61BA185CD2FAB39562813CDCDDFCD75184A1572E2B2B87667728C2EE8596AC65' : true,
- '61FDD344421DEEB7314FAA2A6C1A5CD97720CB90B48C801EC4AE74C7D88F1E39' : true,
+ '626A46879F664F1EFC638A217EEA9AF538608E03B7496D5D11CF4E285F1FB2E0' : true,
'626D3DAAE3451C750616F520086766043D22C2E2C34F483D6C7EB06E76ABF206' : true,
- '62B59DE2632C2A03669FF060A2C2047B9A95F49050C64B6BF5A782806AC10E99' : true,
+ '628B608326DFE57DF84B8289702D0510AF97D93EE30499B0CB5140921EC87DFD' : true,
'62C9A052080F8EBA5E8FEB9615B5CDDFFF1D74F8467653030CB1BA12337EB5D7' : true,
- '63448627F20BDD4F11B278941D82DE56AD3A689CC06064D867FF060FCFE29A49' : true,
+ '6359C58181A724613C613A6C4BDF358B7AFC4F5E0B229F8877190FD3E71B9803' : true,
'63A4A98B9778705A9CD9A0F1A40827B0A6C86E2A520DEFFB1AD8F815D760D992' : true,
+ '64034D52E2C298EBEFB8DBE9B29A28732103B368215EECDDE114D22B2D7B2EEB' : true,
'640ABE7DD00142C0BC18A62F0DF54284DC89AA1BA000DBCD992F719A4B9D2887' : true,
- '640AD0B7F4803223887EAE106DDD628BED925569AB309C01E1C8B640FF05B2B5' : true,
+ '647BF8B75837D8245F6BD412B2618136176D68395FFA83FC4E3A1473B0F5CC3B' : true,
'64D1D9522071A54B43A6C43A759223AEA7AE209FEAB423EA24E3E95FD83BDFCC' : true,
'64FA303A129E23C91B42F1C76DBEC8089307AFE11E5C937704D88B919BA60B45' : true,
'651F8FBEC4C5909A0FDC3B8E8D557574FAF01B33981B5B725311B57DEBB47B24' : true,
- '6581498408FD7D10902F7D56704A23B3278D6EE675FBA214F305D43C1B620CE9' : true,
'65ACF48C5CF24783794CB8D5AFC30737273D3DDF93F62EF803EDCD05650D775F' : true,
- '663A06084041682DEE8C4F8C41BB7C829E5946E2A83D28BECD5E62756502825C' : true,
'6640103D01C44839CC471424756C6CEEFE090B3BB98534B35675BC524D2FDA50' : true,
'664EF517A09AAC31503712482FAD76860E0376164400E67A96177EDC25CC4CE2' : true,
- '6688912D47D0A49A3BF7EBA09AFCEA36E0D4DDF4BB571B383C134B763B17DF7A' : true,
'66B10F427AD63DB6544E9E20191BDE4F827A7C96F1DB17E01E0B254D67BE282E' : true,
'66D67EC6407BBAA2F4A0EAF49D81F223332DEAADC96292827CD749DB07A82C02' : true,
'67118345997FE5257EB55439485C3BE019B32F1235E050EA2769A7DD80E6BBF3' : true,
'673739D407C00E1F449A4F9846B8453C09BA0D0F46442053DD5339F93A2B0065' : true,
+ '67EC9245E211B5D1725811DDD82CE19F1E44F3478BE3B2E42B049A41AD44EB84' : true,
+ '68382918F5505DA3670FA53F90A4F583D648B55CF05044CEE68B290D68279AA5' : true,
'6860622481E0AB0EAD93B771290792279985D4989D072D5C1E376F451FFB1360' : true,
- '68DCC59DAF7A9F7BD72A11A0027A02AD2A4015C4D3351E331FFF7DF81C41F6D8' : true,
+ '68F4D48C069E0E2FE572EF492CF6682A03AB7350D9CB3E57EDA19EDCC558151E' : true,
'68F575FF9F2EE5CBBE2975DB80B0D2E8582B2B5A1624A70EE6470FD562D59E93' : true,
'692C0A28DE13EBB75674023CC105A5F663CF5C67153225EF1193209E985CB1D4' : true,
+ '696DF754F89F8B927A273EAFAF6B85C38F1D07E3EB99C4458188B443BC352D48' : true,
'69CE183BD9B04AD76F8FEBE25095D92D95888AA7D8735400158CD60B836FCF05' : true,
'69EC7BB154853BCCDC5C5646ED659F54B957152BDF1799B2BD48D4EF52DD9A85' : true,
+ '69F71F4F07365D7F684EC748F9CE61559DA33FBE1C9772F836664D656F51A5F6' : true,
'6A7D32C4F099C8D7ECA61CECDFCE82C5D241F33F6A02B3A00D89802D4689DCBC' : true,
- '6AAC975279BDCCFB9D64F96F258D116ECDC41E526DE6B14FB10A8EEFA550A784' : true,
'6AC112C1828538894A1FAC7CECE0ACFEE75658118041513498E880274BD2B7C9' : true,
'6AD39077DC61A2347F25E34A809107D3F11E18B1E197A88A9A39F5FDBB0A3861' : true,
'6B079CEE0C61F7DEEFC419FBABA5A734BEB22AB794791A0B6247E61EB4493B78' : true,
@@ -436,67 +438,75 @@ const X509ChainWhitelist = {
'6BC4B8F5756C6E11852DEAF28C2208733B463931BC5413937F897D4735CC2F01' : true,
'6BF2234F99577BEF099F5A651C125E660A765202F83A7FF24C82FFC87F87C3FB' : true,
'6BF93E269F6A628136F482392804350AED624D75C68CA78D744CC06CF68EE1D4' : true,
+ '6BFB1661BA15D7A0A8CA1B9B4198D9A6C4ADB15245006CC59A60939AA10903D3' : true,
'6C2FD820535D5A821A1D96C86B45519B751F141CEE8E1DFE6E52EA5370E1E7F5' : true,
- '6CF13EB678D9631F8E425073339FF5B4FC020969732BBE54ED0D3087FA774303' : true,
'6D1A6A751BC763F5027ADCB9DD5D2FDD2B3BF82A755B3013851D2C8BB98342B1' : true,
'6D2E55B7B10EC7E3F82F060350C9BB7DAEED8B6ACB8E79B4B088D9B711A9CC6E' : true,
'6D53AA3328CC9AC46F2872113922BC105CC4A5C2B3EB7F45C331A93BBE4ADE3E' : true,
'6D9C7D48EBEC4A7D808E0A45C6ADB9A6CC5E61551DDF1A24A3A74846039208AF' : true,
- '6DB177AE67C272A729818F26A5DC8A327236919BDF09E43961204BD9538CB09F' : true,
- '6DB3ED8E913F7236F1691473EB370D7FD9DA84FB1D8E07438E128878840EEEE5' : true,
'6DC6A2951DC967373452FB4E9A95DEEBCAC70945DDE09BDA398F74161060EEC7' : true,
'6DCF946587948A63E73023A5F33AAEC7EACE0525DA389B15F1F8AF1AF80F51CF' : true,
'6DD13D5385101A3323ECC27F7548813E240A1D58E37DF8D820CD2E2998BBB8C1' : true,
+ '6DD80C2FC91323D55EE9802BB3D0B8532383450610A54F1818EA67BE12DE0F6A' : true,
+ '6DF077999FC9CF42DBA6A53792BC94D44D0A7EB834DE9F8BEC2D973ABF5DD1FA' : true,
'6E1EBDACC8C14CBC6635F612329AA11C13C8C13BF612858C392A3B8C472AD059' : true,
'6E2E497FB005ECE46395535FD0DDFB0D25109D1BDA9D1933F522706D8D79E179' : true,
- '6EAC221C01F1C4E158E51B8AA15965260D186BDF22A579C9CE8D89E787A36FB3' : true,
+ '6E4717FF9379E997C167282DAD35030DCB397B5407EC9A25EFF535824449FB70' : true,
+ '6E5129A0D68D66F16303D10A033F33DA6D6E69C0F8524FF4385D3469B987F9BF' : true,
+ '6E6DA0FA0E408041742AF46AFC9DF9C2B0C3FC42337FA1AC04A91F4C89726F10' : true,
'6EB7B7B5944AE125A6CB7A1E47F94EEB2707DB51DDA0A74B6DC73A9EA683F963' : true,
'6EC6D27D2BE121B49CCDB7866F4FFCC3C2091AF00405CED481AD072FE4BC2307' : true,
+ '6EE1C6CE7C12DC2137FBAF7D8F23D3D39384C7486A22BD9DC5DFA7BD8864A0E7' : true,
'6F45127FE064F0BBB5EAF17D7A4D9EA3A47175AEF7CAB5C98F2B6D11F28A4BB7' : true,
+ '6F6AD0836CA59A26AAF84CB1E1909CE44F427C1A5AA2C26C77D0893C0404873C' : true,
'6FFF24F5CF69ACA10DFEBDCEA8B5A56990728D9EADA33D0CD316BF042E79068C' : true,
'704172C04EB3CE46ADA086772ABDD4DEE208909ABA10D59D1815E9533107CE5C' : true,
'707966CCAEC5908E84C5AE646566426234491D2F78CC00BA7C7B9E5F009924B0' : true,
- '70A137BA9CBC1043B06D08AF2800FC09F4D3334ACDC0915124CDC834A77564A1' : true,
+ '70A67B74C0989BE98A1EEE5FC657E903C09A82E81E9C921EAA995DCCF790EB82' : true,
'711280787458F0E54B0C9294A54270FA83E8CAB29E212ADAF665D7F6345C4DF9' : true,
'711C387F2C7A8AD850D98BB2D145DA6F0240960AC5563A50CC6251C28D659503' : true,
'712DFCF0FDE6A19BB956670492E1C39956012537416F6B0F90EFDF093ECE2D88' : true,
'716121E1DA67D3A82CC8116139F78C34C30E6DC96F647B7F474CE569B38D0F3F' : true,
'7177E89F5B3033D51F000533ACEA71FDEAEC93E4C3CEA1E0FF68F78BF35C8B21' : true,
'71C96A7294C59E44C257A0BDA7578AC44118DE25DEE425F73E0A211066FE6AD4' : true,
- '71CBA0C7ADFA0E0688BBE75D856278A477C4041C6F0895AB384BAD02B9D951BA' : true,
'7231ADFE0CF97B4891B54A4F17EC2104C2A732D06878323D7585801DC8883E6E' : true,
'72438F5523C4516DEF379EA7206A883EA5876DDAEA39EC848A5C456E9215A1D3' : true,
+ '725D6786E7D84AD1620F2C3C26F74F188EC71F0955877FF57060E2943972C1FC' : true,
'727EB1C33A66E7DC0768741432204682504B8D4302D3B097181090064DB99F53' : true,
+ '72B3E7A98A999A30F431233EA370E5C4FF0F4DC6C14EF976823F7D1E715D78C9' : true,
+ '72DA08B04A02C6951EBFBB53503A49B8449ACCE5F0DC3D0539FCF72C0BAC8C2F' : true,
'72F3DB1BB2B0B3D65683F62D927E20C95303A00E8C845E0088E4DACD4F3B19FE' : true,
'730C9CFC51120B6E5C66F07772ECB96F2933EB184A397BAF90453D2BB43BB600' : true,
+ '731365F0467B856B049E1DA2E48507BED14DAC7F850DB92517B78FAD19C3AD50' : true,
'7334856F73A23C5F0A60FD1EB2DD14EDB444B1B8B62516FFFC38589D1200B09D' : true,
- '739A4410178E7D1D310A8120651655322CCBA6F84D3F566FE9A9F1C268578DD1' : true,
+ '734B6A2AAFD05E66A9C2D72EDB67EEB5611E1FC44F4611602DE3CEDC166F2CC3' : true,
'739BAFCDED267B356D90B89CEB40EF6C9C77DC768025EC662EDFE035A816DDDE' : true,
'73A621FFE0ABD75757F5C92C8EF20E63EC8F4A279A450BACC7E4FA9D75E0EE5A' : true,
- '74711F9774C66CEC41DE4FD32197132B13A40A6758A106DC95BCADB9298A6241' : true,
+ '745525C231C9DF8BE6CCB47D13C76E48309B978C8307B00D4AC43F5E8E94C719' : true,
+ '74A9F7B27B38326F64792AAF791E5A5969071CD05C8ECB1E068035AF9AEAF482' : true,
+ '74DD81E119FA195E9D174DE01F5EAEDB33DB2947E8B14103A68BD6C048EA491B' : true,
'757071EF34F3CA907D7D29C6420EC14B6953F433FA03F2049636F55265E456B0' : true,
- '7572D3C2860E9D28159C0337E8DC7C693F307AE0F1F02E0C35E091AC1C1571F6' : true,
- '757BFE2C52AE03FF39624F9AB6449135C4499CD5BD4839C1204EAD50D589CAB8' : true,
- '75893F8249D9326D2316BFA87F7DE3062EA1E00116C921C6876AFF322B636664' : true,
+ '75A6F19FAB17B6F9369BE788451392B4297CEF7CF8CDE5885466DD3027567B48' : true,
'75A9264209E9CFFCF8C4D74F1988A6AD0F509269A5DDA3DAEFC0068EDBE6AB26' : true,
- '75B83054C471114D4A2839FB6B0FF55FE147D4968770A78F469ABEE5DE3E07E6' : true,
- '760650CA663BAF50AB023FB340DC4316998A7E66FE226C3A66E7D31CAACC9330' : true,
+ '75BA937083A01BD2E40BAF99E67BE6A5DA4091DB23E1180D476A4F29E3B85F2A' : true,
+ '76158E2FDAF1F6E79D74A36BB2DE03AB8F5A4D7BE13550662A53ED88EA7FA494' : true,
'7645E014C8465F11596B1B7093FCE41313B51FCAC1FBADD409033F63F5475CC6' : true,
- '76CFE101ED5A3770EEFE332008D40852C8F01E9030C06A024117BDA1CCA7AC2F' : true,
- '76F8713E43FCFFDC282532FD58B8474C514D432CE8C85734923D96450A6623E3' : true,
- '76F92D711D9E8BB1F3210C9CDEE23CA1DCCA929595CA0F5D0C3150DA56B2618B' : true,
+ '76A3EB6F8C1F3036DB2CDD46425DDAB17A5896602C21D537C750D56539D609B4' : true,
'77011CEBCD8791962FB34FA78597897A9CD8757BD10F4A3A595359986F6022AB' : true,
'770784FC2B1A52F110194800E972006E868F055C52A8BE467F3AD7BCD7E441CC' : true,
+ '7792187AA52C5BF5D6962B492FA6A9CCE23C2AAC15A97385EB19409E3C27C307' : true,
'7871679EEF661F72EE1CCD043F1B7C597E8F23196B653B42634C37F2B6619B00' : true,
'78EA89695196A279F7B44D8F1AA15080C91C3BB240F1D1878A88F2B27228D430' : true,
'792EE0B202E6A45AAA85E918497D9C9F16FEAC99500A7940C0FC812ECC42120C' : true,
'79506C5663C38F43902B55BE2FFABE0757A806105C2A18473770E9DEE5322E40' : true,
- '79F3CF8BED0EEB720C3411D03257BB351FF5824181EFA725214AD60C11E7DE2A' : true,
- '7AE7C2EA08D84EB5EE0F978D061FC9D6DDFB57C1382D5215977205894898E0EF' : true,
- '7B90E5B537B13743AC7B5B9F3EA28B3F5F5E95A6D9F4AA0904DE22858F38C780' : true,
- '7B91BB0669DCF091D0C042FD14F1CA6B8718A4E1798A4BE8957DE6EEF186AB83' : true,
+ '796C57ECE8BDA296B3D99CF733FB6416DA911E5C88B9A3F4D666AB35C15BB68B' : true,
+ '79C23A183F34B74C5E27A98B7639F49A05DA497FE8DA09BB3009E1347E749164' : true,
+ '7A25BD2F891D7C049CED17BE56848CB2C398B23FF5BBC6E0B483D7C0EEC38004' : true,
+ '7A9E192C2E40C868BC0712625F76BF4017E503E5F115AF842F089A23FEE14F1F' : true,
+ '7AA535C0D9A800DB2CF104B369AD51EA6030237E857EF61EE4412335F83649DA' : true,
'7BDE39A76CE550ABEBE58E8195C5D2635A04B6362CEC665EADB76E8807C0A39B' : true,
'7C63B78CCB8DE59051349EFBA4A9E34EB627F65855F3C754312DCFCDBFDC270C' : true,
+ '7CE292E89FE576958102FD62E37D0932577DF71B88F116498212E5ABAA662A9D' : true,
'7D0D5D92F1A6306F7161413B8E086383A6A37A1AEB5E91FC39373464CB9FB217' : true,
'7D4642DEBC7CF346EC7846E9B0314B73B6B9C23F8016E23E8BD49ED247D2BEBC' : true,
'7E01E1EBA9D9E46D3DEBEC868180199AE64DB3BC878F66066E91CB4C060B55D0' : true,
@@ -504,14 +514,10 @@ const X509ChainWhitelist = {
'7E0AB095FE17F430AAE0B4AB7490366DF97BADF13AC223D96AF0913D6919BE7D' : true,
'7E723113D07305D5E9843032E474637331F1567CF33EDD8316059148AA2E3ED8' : true,
'7E73DC62FF77BE88149C85444C4066E0657AADB72716230EBC073848DBD7F59A' : true,
- '7EAF183A91E8DA3866531C499039CEF3AEC4F214BEE293F268A28616B67D0474' : true,
'7EB86A40F92731EBBE58C26A9ABE78C3C1D2E2406EA2CBB6FC5908EF852253D3' : true,
'7F1566D05D1E3A90A9D5D551AEF51D2F1827FC9E82922F2BB32A08CDC5BDEC7F' : true,
- '7F7453584CDB1B6048A5508FD8FE1FB7009FB225E754CA38FDFFC28206BD2640' : true,
'7FFDBE3A1A423CCC6EC3C9FCE2D51B91D70EB1A122BD7FB53875F4BB08E3E966' : true,
- '802B6D5941983A1F76B514028EDEAC33214B4F27AA490345BCE94DF9B1494516' : true,
'806791E1F1BCA3B3AFECAB7D1EC6FD66C2616C6CF13A3256AF0D53AB0A759BCF' : true,
- '807849BBCF3FC901816BD5C23E0EFD51FFD9485FC34A5A086174A7E91DAD175D' : true,
'80BCFC1145A7F287ABB29FD26F6FF09F2F9299D43DBFC2214B15BC346D1A7EE5' : true,
'81041B22B3F6B997CF39557DA4E384FA0D8FFDC59F790CAC512D966297380E90' : true,
'8117437E2D53CBAF96B03A772D719EA4783D32C4401D6C590BA9F941C52E54FF' : true,
@@ -519,49 +525,56 @@ const X509ChainWhitelist = {
'814328B3A40AA4F30950FF66E5DF4304428357F2C5AEA8C1E397723C751651C6' : true,
'817085684B201068835A0E3E8A3B0B8CFC31CB0F8CD5E451DF94997E1A958CAF' : true,
'8179173BEEC9E5175036B790F2CED009213A8FF7D62CDED95DE000BE2B03B068' : true,
+ '81978F89C67611A83F0BF14A51B0E10B80BE74B659A922AEB49A53E652030AAB' : true,
'820CD9756E7EC92E85459F6F260007CD5EB8CEDCF0A7EDEF61271196CFB946E4' : true,
'82362F61201C87FE00EC65651619A9328FD56E81135F03ACC3D4B366F7F772EB' : true,
- '826F129EED33C26A96D2FA3EA71B7897E065E2A68280A77C03E948C9EAD80945' : true,
- '829124925C3F7AB9329A17C8329D55F04DE8C98994845083D9293F2546CFEED3' : true,
'82F25208D7357EE223C6715E802CD0F8D019E3004DEFD76A90BFAB18D2DF07CE' : true,
+ '83596674713CAB21FE42B21B3B20A84E3B5FF47B8C7A53FA7A83E6A909780003' : true,
'839596D68CDA901FE0D021E3F9AAA8D2163FD2B41F233D90159E656D7C7C534E' : true,
- '843DE3411DE65A522709898B3CF9AD8A6CD1011BAE6F9DE0FE7DF2496F95C84B' : true,
+ '83F0C62AB48C67C34442495BC6747183E5FA7B128AC0978746F693D2F4A37F1C' : true,
+ '8429A60996289DE8FB13E507080F79DDC85415E7BD78B07AB9A20AE8CFEF692A' : true,
'84A093B67AC79FA09CC2E40B54BE4027DE363B86EDF64B623BC346188B877ACF' : true,
'84A8C623C4304D57CE03893ACBF4E51FC9975C58658B89127508E5C33BE992A7' : true,
'84B91F7D19D03A64195173E28A98C6A24AD166106B5AC14B36A404C45608B2D6' : true,
'8502DA6C4457ACBF635D8B3719166A351ACB8F2EAE0F9756EC1636B90CF6068C' : true,
+ '852E459CB1D06493912BE1BC7073CC188379CD530C4C5F637029E31C5BF136C4' : true,
'8540F78EF676D50879CFF30B3CAFCDCDB1287CE9472D0E39AD221AC0B049BF5C' : true,
'8565CBCC3E3484929C4C2D7408530788E83FF8CE2B8502125176AA2F89D3C350' : true,
- '856D54922C6DB9C5747A1EE5ADB099907C63E0BB928B1D00BEFBF81E6B0E83A6' : true,
'857EB3AE3D76F7A86260D7DF2583D65053D7DBC30558CF41078A51A841A15408' : true,
- '85CFBF3F71BABAFF31DBBAE3EE6615A269748572AACEC462E501B017A4B58C2F' : true,
- '8620FBF8F4B3D858B8AE9A6EF3423068026CEAD38ED1B70B12E65A66EBE62845' : true,
'8627217D9525127A4161D0F1809492211C4105596A011CCD2F10968D3C3307CD' : true,
'8632291EE6C74182159207F88A43B60EDD3715D9B23CB51B878C7DFA413AEBAC' : true,
+ '867622FECA6ADC5366B8B7EB239748F8BD90435258DD86FD700ED1C7D8D5D48B' : true,
+ '87266B5DC867A1E06E5C35060EBEBEA4C01F784A1081E93B18AC20B8F9719E1F' : true,
'87505A19F4BF8A251C9F7EEC090BB5F91FF1FBF950EFCC6BFB9B513EBB62AEE9' : true,
+ '87676E5A79E6109B7C7D671E94CD66D181B0D8A1FEFE73FB4485EDBFDA886D26' : true,
+ '877B00258FBC7D02FB4ACEC3DF73B1F62E6507DEA0C8F12512EB10FAA3FB7F86' : true,
'878F9A1345B5F3F76831E0AA2CEC43E51FD88455FD70FF0C671DDB8D8646BECF' : true,
'8798A29F91634076CE7FFE713E075C4A9E231DB4113DEEFE4FF052C73E900069' : true,
- '88A9F13EF3721A05CD57C6E13E4B2D6F699C00312E92C24E04D86990177BFD3D' : true,
- '88C3951EA08F6218D53C848FD0745408A54B8588AD3728B9634AFF9280055838' : true,
- '88DA049C5A0F1F2FF5C8D53A9763C6E53B5E653753AEBD8C1A7227F5CA83995D' : true,
+ '88309337C547D8D229017278F74A626BAE5E796E3209733D4DB626300C8E7527' : true,
+ '88E384C8D565A472AC171FE6EF8B5E7CE909CCF207710A6CD96FE4B110EB5267' : true,
'891419933107B0EC0222BF502DB271240F352C825D2E32776842C40D13C2F8C1' : true,
'8A0BD2A91793B98A002F45011E47B8B81C1F11CF4F10550B39861B709A22A8B0' : true,
- '8AA440E22415685F4A009BA8F14D9B8251614D78159C926A712542B0E9FCA143' : true,
+ '8B263AB07FF99A5799F92D421AD4E1194C6137FCD96E6E27EC440EF4D1421788' : true,
'8B41B56DC76B41CBEF93FD4F1F74525CF5B11723140CB81A7DD29AA3D95703BD' : true,
- '8B83806B610FF233FDE11E892A0023140E5CAD1500847E29F5E5C6CC21BF33C5' : true,
+ '8B9A4D566E925173442D3DC26FFCE9C4F64EC63A10312AD5EE279BEADFD2538C' : true,
'8BD1BB8CD29EBAEB36A58AFE2BA070CBB92EC003064B71AEC49E812E39C2874E' : true,
'8BD3D0A64D73FCD8450DF0224F56F2B44F88D2B89B94EBBA3B5CB7E905DFCB74' : true,
'8BF51CFA32BD64F3D54AF63295B5F890FF439D7FDF854D43F25F4D72E396021F' : true,
- '8C2DDBA5CA9E4CF79937A5A3AFCA79F371B6F235B37308EB53ADF12C319A7EC9' : true,
'8C4AA99089DE2B772FA47DE3D9901FE175AA49A46B9D056BD8211B53848276AF' : true,
'8C742B891F670721F4F8E1D4DADEC74C9E9256E0C7D132578973823FE27C3A33' : true,
+ '8CB5F19E2297781F0BE655C983127A501F5DF9C2414E34E6534F9109EEFC2110' : true,
'8D0CF6F0B227BE9394DA0DADABAB81A44900D104A915645ABF030220F3AE187C' : true,
'8D1399FC7382FB9F29574FADD5757DD9213F6A13D8A318ED9F60B9936F46C548' : true,
+ '8DC7006EF66CF140FB5DF85CD6876D305F4CD69E49F42503E283FDFD978866AD' : true,
'8E778C2C00AEB79E3C3BD5B071E2102021DA3E343A2F39E18B0F114682974D9C' : true,
- '8E8FBD2654D291051FC080C47960747B4191C58D85765C77CAC1C239FF3DDD1C' : true,
+ '8E795D5F2117043F8EBC55A114E169A460FBC05FDA6E32CA66684A3F8C9D9BAD' : true,
+ '8E7B767A2628C52A105B12B793B74B95DD2A1FA5F1F0924675AD9DEBCF77186F' : true,
'8EFFA0588BA33DBD060A3822B4486504342BEDB7E0D6F04D642DE2FF89F07758' : true,
'9055AB7512901D1134842CD2E96FA6A7ACD149ECB71088495948DB65D70C5377' : true,
+ '90B043789B50C7E4AF14615A1DFA5F0794C919B38F8924BD109CD3A33FADE0AC' : true,
'90C2F31A64343BA4CBEEAC90A43FCBDB46932CC21CC58095FB6D6CDA7B33F362' : true,
+ '90C90EFA3BCA09204457ABBDB583EFE2FD5550877B0D61FC3CA6D4176DEC7916' : true,
+ '90DBCC78B8F09351F0FFA7930D8CD187302A623703E9ED7F5F9DCCCA5644F32D' : true,
'90E09E115ADE38DD414CC283D49DC3B42D7CD5A45E7501F60CCBF8A0264D3FCE' : true,
'90E64A0F26C4DB9ADC398C779A5E526DC969AAFEDD0E93CC3D8E8409EE0A14E5' : true,
'91045740421F423B4863813FDA01E15F2DBFFF49AD80C9B732B0921980734999' : true,
@@ -569,9 +582,7 @@ const X509ChainWhitelist = {
'912C3FC6899CD7AF6EB7639C9522EBF7E41B91DC47C167AAABB3695E61486538' : true,
'91490F346E9CE34F77126105D7CB01AD7C58E0891B398289095613F1D1162F6C' : true,
'9155BD4E0154F175C67770CD7B10B714A7AD41BA78252254DC0AF2DECEAADE32' : true,
- '91728081A414570C9CFDDB6A7F70CE56010D44F4E165762B73F4B05436D85351' : true,
'918B02B75417DE289310E10FC77AF7041D1F380F02939D64F063776F121AD61E' : true,
- '91EE28B14AB2C7571BE6CDE2D75FD4C05C960FB033DA819EDD463D5D3C494591' : true,
'92059CF4A0175D14DDA7D7EC71DFC76A7A91A75F4B9BD886E5595413920885FC' : true,
'924BC74FE59554AEA09046C36D47000CC6DF8D06D63D4C21E7A11D7B3FE6DD92' : true,
'926B2CC74A86E6919298CF1B5D43A44E70214CC94C416E9DA227701666BBEE6C' : true,
@@ -579,34 +590,40 @@ const X509ChainWhitelist = {
'92BF7C35E4A9C241A5D5C74AB7723187BE0D0AA544447BEC0EC3AC45BAC91A8D' : true,
'92E91A15A0542407788FCD78EF9287724B2B25A27F703C9FBF2F5BEE709A68F3' : true,
'92FC5C28899C60D64BE77DDC8D6F746182A5C5CAED5A3CA093E6A6FC8070B64B' : true,
- '92FD30739B92B5509945785B19CA286449968DDF5EF7B8F44C6C8556711DD3B5' : true,
- '93671EC41A75DADCAD2454D2D9951DA643ADD6C899C6F4EDF6E8806217949732' : true,
- '9446A5F64DFA26478AFBF6D0F3A0773ACDD46F1A4F7691A72BF24A58A411B340' : true,
+ '9360AA88AB130BC33B6A59487B3C78262E210EE98A69A28758C47B7A9F1FEC10' : true,
+ '93CF7CB34FFC1835E250AEB5503591EB1BDAA9377A48484F57AFE07006E966B4' : true,
+ '93EA9238869ECEAB7081D1B925AC899BA4AEAF8C838D08B0583526D924EE5663' : true,
+ '93FAF638AE932CA9041AD738D265C4A3A5E80ED99C8DCBF40717C0772AFE479A' : true,
'9452917F8C5F6F630305312187EA4858EC07A829CC74DAD74BA24EFE7F4F883D' : true,
+ '948FEECECF512A9AD8200FB07E9330ACFF0D53D8C67068A9367225131840200B' : true,
+ '94914F5DC57650D56AA2A25D6BEA5610F1E167C05274CBCC1A235FDF399B1C7E' : true,
+ '94E94CDC7BF2592B3403AAC8ABDC98EEFE04298078B2FAF8DEC490B30309E542' : true,
'94F858E57AC5AA1A13209E8D6DB28141036EDF3AE160BE93AE79A7CEB0CA33B9' : true,
'95130BCD7669BD1B1F2FF94AF3096312509FE7FDC95A535D73F7883CAFB18DE5' : true,
- '951A1AEC1EFF82FA3366E4569838AC37BCE65385B88CF81B0D96B6A552258690' : true,
- '95344A65172BBC66E7F20CBBED554FC6A745542212A0E3A782C26BE16ABDA783' : true,
+ '95A4DD514D4B5F9B29118B3CE20FD8D4996F40424D7D64BF678A252262608C70' : true,
'95A80082CCA2E52DFF16CA0E49B9FFE32F7ECB93770D20913605BBD47A2C65A6' : true,
+ '95F4DD2172DA363A17D9A230EA3385F277EFC74D1044C6C6D7F78BCC95987E9B' : true,
'960B5A0740783B428A6F0A86DD6BB5AB90A0FD0A43C237F941E64D8ED8417998' : true,
+ '96325E2201BF96695DC1378E91147E8AD4ED26C7D65049436FCC365BDF45C75D' : true,
'9663C730BE3E8838AF256662B79C2EEC10D7AB2595D9712EAD7BB4C8F5454837' : true,
'9668363E5A4509F63E66C774CC7374E8D7654D0D63E833131665F65BB0116D90' : true,
'9703B5D60B49A69534FA129729FE3176EA17E03C53BC90BF11280C050F776E73' : true,
+ '970B1C70C6B3BEF76B0C23BC02D38D50DCC90C1383B4B45525691213F0439310' : true,
'970D20E6919A2FACA4E42CDD5E94B6F26ABB2AC051278F10E746CFD897996249' : true,
- '9728534E56087F5D0E34881BF62834B32DBE8EC7629A7EE04F52878A9A61E36C' : true,
'976ECEBA965B747F498F8E4D26E3BABEFC48A6DD2645210168D7D82BB97C15C5' : true,
- '977C77EDC0AE3D98F2FE87B8C309DACC9306DC575D2D8FC358973DC716EAD715' : true,
'9787C483E07B0D1A0251A93D9F86495C6E39D25375C395E9939145D6C1E818D6' : true,
+ '978A11502BA1AFF09010E88EA0735B0DF403F36294566EE8DB01CCD036525893' : true,
+ '97B6986F21E5CA4BCB2B337C1B03AE1F2DE4B69D972E06DC882514831472E6B0' : true,
'9874E435B3A12419DA88FE7AE98EEFA9DE47D098DC95AA6204B499202AB1A0CB' : true,
- '990A30FD404D16728C9D91297777C31FFCD460CCB2E940DEFDB037EE791604B9' : true,
+ '997FEE57A95C9A7D469F9055CE8547F9585677BBC655D67C05CC30D0AFAB35EF' : true,
'99BD9F4C25AF74058C9E443467C9FBA76EB37661CBEF5A1E1244D8077200A250' : true,
'99CBBF6AFBFF1BD3AC24402B5F4D3CBD7B6984131B6B0A6955AA3295B92891F0' : true,
'99CC71A07B4304B5F9392B1D2AE627E33EC83F527206B3C1D0E6EDB41A93EC07' : true,
+ '99D555755AF5BD6B75B7151D7B70EF10912AA159589F47DA50C4C3C623044666' : true,
'99DDDA7A8D6D222C3111DDF5E85A45261AE9A7CAE2972567996A7729D0FD6E68' : true,
'99E2609E0CDCFD36015CC659568D5C5B01CE4F7FA0C5671738D525FD8C518B44' : true,
'99F02B4F32B9993CB7656021DA511B31A2944585B6B9C6DD5BC1F4A41681C5DD' : true,
'9A01E5759613554A5FAEB7E8889F18EEE16568073CCEDEFA0485F01969535C43' : true,
- '9A2ABE7CC70A0E4C5938A7AF3CB4C165872C3387BFC4653F48A68F39C13F3899' : true,
'9ADA51307C3FA225DB6F8E1FA3A218E477F775FA3D3DBE839232E3C385310902' : true,
'9B128E182D224AE31F63FA92892A8A322AE42BF2D4723D62F5A6744973C82F6C' : true,
'9B37ABC1012C67357E1B828C3F70EF7584EA128D20968DA23969B0BE939CB83B' : true,
@@ -615,148 +632,146 @@ const X509ChainWhitelist = {
'9BAE8B30BBFA182D0BC3DCE5BADF78381980EE69F15884A0B93F291EA09A7EB9' : true,
'9BEB9D4CF88A648ACC9CFFA48A687370D76E9F8188AB3BD638D9BFABD2D6AB24' : true,
'9C052D1467B80EC3013D5641910680BFFE3616095B7F3FE61338C31A4E08A6A5' : true,
- '9C5435D416BDB4EAE642E2A66B8382BC848B362E3937069725DEFD9282772612' : true,
- '9CBBB47E211DC5C8FB0613F90EF2828B4C14945D15C27A6F16BA4F90B02D066F' : true,
+ '9C07BE98C75118CC9B3EAD57210BBADE61461FBE9215CBB340BBC5F04823FCE1' : true,
+ '9C07E1B1AD0D395C4E1DE4CA35F84D0D09FB5FE48A22221A0CEA433D47C5CE39' : true,
'9CFB4802809B54253FD655390678454D0AFFE4E5B0239AF6E4D5CFD90FEF6931' : true,
+ '9D00AADBE77F1BB0DE4602AFBDFF9B202A7E4B696836AF7C5186F4A26ADB5157' : true,
'9D10CB4207766E66BF3482393E13D3E3BB23AEC361470B6693597632FDAEB302' : true,
'9D28BF964F6C820DD26D42FFC18689C1D2FD43F4C4DA9B35F11CEB8FA24F2073' : true,
'9D98952A99B9FF1B2B7A86D21F50E311B3147CD9475830A856A4C63798B05630' : true,
- '9DF8866928CE72889BC13E7A31F716B17E4DBC40AD610615B10AD25629A1E0A9' : true,
'9E1FEA6617DEB24D7E3DCCACDCE1C98337E581262A08D42EB3F912333E977D39' : true,
'9E418F784C18C79930946ED9BC408D8E2F694BE1E3DBAE4BB20917F8E1B277A7' : true,
+ '9E7B765C4D2E62EB9F8D0CA3126FDBC518E9AD62449A3BD25B849697A6898257' : true,
'9EBA1808D31F89FD26CA580E6FD37B15D0261A807154FBAF11A7DA4B0C9A5E06' : true,
'9EE2376792A6437F098A3DA7A2CA9AB54D9E9138051FB201CF84A91653C9C32B' : true,
+ '9F1B06851A22B5D02399C278BEC2F6A977B918C4E924497066C8126CB8CEF0AD' : true,
'9F31E8A729CDBA0C25E4D73181264776E6DC12F264ACDE58F047382B0326E463' : true,
'9FB66B76C9B0AB6ED5DA3188A3DC6FCBC369AB273DCA99468C1EE4604A1E9E99' : true,
+ '9FCBC4D11F68EA0BC0AD58F9E775C871625E869C9C6ED647E538EEB55BC2EDEF' : true,
+ 'A024128989862D72CA20143420C8437F2E91D063A2D85E3B44C0E9F125DC7E59' : true,
+ 'A039ECC540EAB00B2B41960B77171CB8B451230566C595F4631651A389C49A7F' : true,
'A03F32B0A7677B8D7102BCE24F121EE6CC503FF173C43CDD6B914BC69D954ACA' : true,
+ 'A0516DBC87026108B694F794B6C040585995F9C7BB00D08BF9F817D4F54069B6' : true,
'A08110BB7D0D5F694D791F82071E44B4C968D4990C73A402B25E0E0ACA5EA6E7' : true,
+ 'A09F67FB2E70E4BAD3197A8CF7273531D0125CBD5BB05BE09E53CF582CA90E41' : true,
'A0B9ADCD27CD63E8842BAE80188453C09DEC27270C32748A4EC2508372AD36A5' : true,
+ 'A0F446334524E5041F49446FB7D9167B98C6A908B1736E35511D1F08AA6545A6' : true,
+ 'A104D175F29C91C63501E04A7B0DD6015874BE41506805FC13112E885C7E5235' : true,
+ 'A10BD98A012649F9DD627093BEC6687C8954955E251534D016E4022BA66040A0' : true,
'A1359CA553460934748962D75921CFB51E3298EFD3FB1ECF5823BAF599E56136' : true,
'A13EAF82F0814BE5FA12BFB4D2FFBB75FC6375DF19E16B8490D140CFEB54AEE3' : true,
'A1434249C4B9832F01BE03643639D862CD66EA988BB1297822D5ED9A9D0B86D0' : true,
- 'A15455BAF823A9C2A7B971C6F11D799D4C6E5B59D274150AE67294035C94ADC0' : true,
'A15BB49CD56693B9881AD43F6366FD2966AF816643BB107E8A249E07227F67EA' : true,
+ 'A16AFE3B66D38B2B59EB35AE36A050AF2BEADCA90BF1C705B14E1E16A9469543' : true,
'A16BC03AE3E35E7C39B45D339A22BEB39CEC134D6B9CCA289E873F91A384DCBF' : true,
- 'A1C8AEB8D3097DE429CEA435BE063B3E16447F24132E1F1AE459C5855BC4DAB3' : true,
'A20571EB3FCEFA102CE99C087F9217BD081AAA8DBB618558D49EC7364AE2CA72' : true,
'A2263FF0D63F93183AF81B16964F4C8A3AB8A02E836CDFEE2CBE32C3E09EB486' : true,
+ 'A26D92B7715B8596D30E12443B6B7C64F7AC41F4A020FE3FEDE8F52DFB4D9AA6' : true,
'A277B893194AE7687EBBCFA344178B3578AA6228D2B430BBE2FC8D5EAEE43135' : true,
'A278FEDD023B6A1BE29917353E38320B8D8EBED9ADB0F88A8D00434D9B1A0851' : true,
- 'A29725F7446E6A2AD03DF0B7D77B72F9CF0249733B42F48DA80AE41C6B206C49' : true,
'A2C85895E192F69BFF3BD6CE420B8C84A6FC87B3A999F84701F0230887DD3344' : true,
'A300C56C8CB909C4F6ABAD6A7FCACC5E621BE17D5209717912B3F3BF2F7D6CAF' : true,
- 'A3BD2DB1D95E67D4A20301B41F1E797421E259948072A2E4B9DF9158D8FA9143' : true,
+ 'A3CDDDCD6C81AEFEC436E5ABF463775F26FB7050A51372C1AD3515626FABF6FF' : true,
'A3D68A1A93E75E8250BE2851500FADA3A3F3A0FB073197DF59ADCF9569C22B4D' : true,
+ 'A3F3E71EAE7D9B913059174B39113F3EC7A119F514AF8364983A4A5548298427' : true,
'A41920689CEE150BF8CDA57D32B36D32985FE08AD4F0E52D150D1CE5C7096810' : true,
+ 'A50296CC1D9C76EBA1C32829FA4D1674846913D61D2B27F3896CDFF8091D34F5' : true,
'A503E853F535F69CB099A247D5FA9D2F656CA1992C65C050CC5A36FF11DD47FB' : true,
'A57EE515604253DDBB4FFB6C1FEF243E6F680910808147AE52318A02699220FB' : true,
+ 'A5DDC8B597C05D597C4B2FA0C2C4C39C7FD384E039D15BD205023A47FCD78CC0' : true,
'A5DF74566E059491858A87805B36E5060095F7963D35877692C2951C1D649E22' : true,
- 'A6120E041C5F648F18FFFFD6D79C3A4EB29F8E88FDE41308F28D4A52511B5BC1' : true,
'A66BDA4B1FB0A132F118520414B7C2FE89EB9CAEA7E599743F0DDB2F5DA36294' : true,
- 'A67D1D9EAD7E9D1CDCD3070F40B96C88A6214EDCDEE36E84305DFAD4BBFFE78F' : true,
'A686BB3EA8129BEA261D5B99357BDD2BC22DE15F0140AFA2D7CA3ADBCB64DE14' : true,
- 'A7636BE0A08F56D7F05A8D69AF0B7199FA7C05AAC123DCE71AB57C538A4D910A' : true,
- 'A768C6ECF2758D2070C72BB5C554F89AF332DBE52464482100C703CB7B01AC81' : true,
+ 'A6BFA26366333691E7F2B419D0FD8536949D5F1A533D69CE8E64F7795CEFF72B' : true,
+ 'A6CFE13A11E87665A1E66FE984B4F6F723CFBC22311FE89CDBEF719A62C91539' : true,
'A7BBF060D6455FAC1B40C3C14FDC8DCAB6B032A3C636F78EFF0035E035D2A289' : true,
'A85EC0692236ED65D5C36943B771F81FA013E93A887264C8870599C858456241' : true,
'A8FFD3DCAC35478A6187DB3E317D7A9BA8D9823BDDA70440B8FCD5D83F49B836' : true,
'A905FD2FCB5494E9126BFD0372D166EA641B4FB9E0162E56FC70085392036974' : true,
- 'A91F446F5E2FF93B1FA514B3CECA23118E1000AD358CFE04DFD5E6E25E7AB292' : true,
- 'A9869713F6E5332E3F4902E82E81EACF34994042C411A28C8AAC116131EE90E9' : true,
'A9913780644EF0A55C80B8BBFFA76A7453DF7F9FC04E9BB09FB9434240D03961' : true,
'A9C3D776062E86182D7BFAD9005B716E1189EBD051D477078341EBA83F602DC7' : true,
- 'AA0F48D748A88A3DF4392B0AF891FB99981D3D66D213B261AF14863E44F66870' : true,
- 'AA6A6EB3A263EC4DD20257BAD1C1A94F80FD17E51BB03DF1BF0332AF48FDA5EF' : true,
- 'AA70F6E381B7B7BE508E8D5EB062186FB323FE00A75B264F43B771B731FE96AB' : true,
+ 'A9DC93714FC4909043621557714D90CD0FCEC20AB7B8D4D96C2A5CC357599837' : true,
'AAA0B610FC8267716C7703C164E8E8A47B0DB68F821405F83AFBF5F4D7BB5219' : true,
- 'AB33CA8B659481B0120C5A227487E4F99D28106362B530D054FD812F7278CA51' : true,
- 'AB5608534365B885795A5E3D004C5F29613BA05E2C9CABE0FE00C99067318A36' : true,
+ 'AB21EC1EF6132DBC69161985F4364C39C1F3F4F2F26C920EAF9741C5057CA6C9' : true,
'ABE32C06C939CB27C5B7744697B92399AB712132074139162FD988DD108C1061' : true,
- 'ABEAC0745A8B282D5BB1DB3044B94C07D11F414A514894CCE62C067DF99382A5' : true,
- 'ABFD6DB878DBD4D664B3449C4F307DDB328C10414164F58492BE73195579B2BA' : true,
'AC1199A88C3BB6564557B6BA422B776E8032D9457EE1099D0BD3E53DC44F73F5' : true,
'AC3DBED034C44698984D68EA44B0B3D74C0DE3B7615C3240A71C1709958DC3BF' : true,
- 'AC523C58EEF332E2FA0491FD81659997FE32F1EEA4F7694D9C149ADF4B18BF2F' : true,
'AC523FD08C897CD327DE0751BB2C5DD6AFF7A6948D7561478E300AE758F9BE77' : true,
'AC72106DE06D4C1A17E641546E6DC5C53A1F48FCED34B9BD09368429F828CD70' : true,
'ACA129E9ABBBC9473A45F1F0688C8FB4BB9E7B9965D8BA382DB371575A2100FC' : true,
+ 'AD38118018119E7607C26A4009331772532E32D5514CB6099FFD0AA2DBC55912' : true,
'AD56E6AD659C808689220F5959DECE86001E37EEB88F452E2111BBAD634B4AFC' : true,
- 'AD5A935C6684CDB2459FA1D67250E8F9B6A6CB6455BC628750F9633FCF6EBF62' : true,
+ 'AD678FA6695065389D8B0C4E8995AE0A598A6E6BFA5CE1E016725D396651419B' : true,
+ 'ADEE2E350B52CF5BF6A5E4670B0F6BDA48C23D331F0E9B18FD3EB4A45E503FC1' : true,
'AE3359DA4CEE82D978C3C7B4954AD6E0A80E53D1CEDB3A6262996F9CA0B77D83' : true,
'AE387E179AFCB2F919BA3BD839B2350E9EF48A03A5B5AAC0B87517502456F051' : true,
- 'AE4C57D65E9308A4658AE987C0A10AE56939D0578E22D0CE6E5A6E400D492335' : true,
- 'AE51B75FD36BE0B6CF478F2441E57E91C216179A93BC05E35983D5FCD582CA91' : 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,
- 'B2B46BCF24DBED9CB8A829DEDB3536B95774AE8223A8B160C2B097154A3EB8E0' : true,
+ 'B2AA11D7E16E0A583868904825CE9F856AB1620E0EEE95218985C6817DCAF38B' : true,
'B2CB5A2A69339A575A4198D5B76822E6A0F90871A45C8348F2A060CEE67EC98D' : true,
'B31C07387E56AA457F17CA3D3A4C485683253CF387E6DCE37469B6A8E51CBF29' : true,
'B3251BB9A1B4F219400E69789FB08CA2BBA396C6D2FD3C4B69F4B7E1C0DDB615' : true,
'B33419AF991DF06128CC6A1EF6CAD190F68C1903CFB16B5346D0653C9C5139CA' : true,
+ 'B36285188019C24567BCD0F0FD9C0AFC1EDBC6494F401A6214496118519C8AEE' : true,
'B38307BF753F924511125E6FE9542C79A8541FCC780FF6905BA237A4C7FCBB13' : true,
'B394D63292D829C96CB346802B997C42285D8DB94292166AB984F5264BBF8C96' : true,
- 'B3A416E4B0C7F99B72761D34E3362F92D0F59EED1EA412FBC54F1699A79A1951' : true,
'B3B278DD571DDC491FD26D3B0942C78EC4A1AE3D9A5D07C1E317CE901E6B8979' : true,
+ 'B40348577B02967F8EA86C645C6FFE8746DBE860F8D04B1584E9365F85115FCC' : true,
'B4130785116E5A84BF7B191696B213BA8877228388B18C2DA38DCB9EE14AC8CA' : true,
'B43A735BA55D1C7D255F8E14DE97ED2FC89DEEF492BF38E871556FE7FF1712E4' : true,
'B470B24D87A479A33017E9EF00405D50EF5A22BB7D4DBEB6217DD71BB6463D62' : true,
'B478303C0A26FF8A262C29BA3A9683FFC4CF075735E637F6A958640C5EC33669' : true,
- 'B4A68B8D5855C4F4D988F2E0BED73417308B1681EAF5A2C2338E4783091E6824' : true,
'B50AADEEA7AEA0CC344AFC4BDC81C75292E1F52374DC4E405CA9376CBA5594BF' : true,
'B54B1776D34DF92E8E090FBF0C927D9852E6F18F98E6F306AE0369229A4AE2E6' : true,
'B5826AF547B2C4FBB118246774B8C027E7E18255F864395300F07B03E43571CE' : true,
- 'B5E58034813A6D2A70A162E5C9469EA7D31FE15F7478564E5698A388F201A646' : true,
'B5F50267B0042B154B8529FCD98F5E01C986F7D23628B49B63011A3C90398CEC' : true,
- 'B613D69F10DE096E664C3B4AA083E0BC9F50A98D0F9B682C496FDABB2E4AC9D2' : true,
- 'B663B6C8C60A5969BEE4F6844813AAB8945EE2CE2253CFBA67500B991CD8A07F' : true,
- 'B7193D3E26C14AB91AB1C2AB9728C7F9D832A6C4EDBBD2953385E3F1D2B9BB91' : true,
'B75601AB7AE44FB2C77FF1E9C6FBC4B4D9ECB548009BF40C46CDDBBA8C0FE493' : true,
+ 'B76A1B985E6C2B027BBD67B29109789DC4E2EF90CC65315E164B88ECDD64FD7E' : true,
+ 'B84E356014F669D463F72970212816B4F70CEADA86B8FC08F71EB4B9975404AC' : true,
+ 'B8560406CEDD4A4721BBEA6B155D62C62BD3CB0B379F6D6420A464DCD5973FEC' : true,
'B87A6FAC22CF54752FF918799C09D2D582F3621A35F1AA5751AB86E5A56EEBBA' : true,
- 'B89D499E25ABC593F9B29B3C7364EF7196146DC810443334895D99BD15A5846E' : true,
'B9891F4ABEA7FE5802FA2C07E596905422C39B16E36612B37FFABB81F49A0BCA' : true,
- 'B9AE7FDCA7B2FF24247A2E0F5B56AD0F1DC900F238C45BF40D8A852257218298' : true,
'B9B8984BD73419077A912955DEF673CCB572907E2C494256D627DCCAF86226A0' : true,
+ 'B9EC2202B3D25F6C2CFEEC96ECB1967C1171197A121F6278682988D68C9CCB6B' : true,
'BA4C966939F1680966D9B9BC85E5E7B011F51BCF1F41FB01142D603F9A45EE3D' : true,
+ 'BA5B818BCA65AC78BB2F0B33879F721058892D0F5260266ABAD93045D4A3E1E8' : true,
'BA74E086962745CB5EDA606276E3FCE2220C2EDEF5824FC5D67EBFD1A94A0685' : true,
+ 'BA7828CB29D5F67285C2E1A6F2F5982FDD674E57609970BF9540802335E9D39C' : true,
'BACEEA64658C6E86E126219A40FCBEE7B3A0C7687503114E59B3EF28E0C06A19' : true,
'BB6970E212CBF8325822B968387F263BA8D6CC479F448CF712381A36C92965DB' : true,
'BB998A2EEB4ED3C4251EB69296AE91EAE7360B0CBAF690FD250C38A710ACB38A' : true,
'BBABDCCD647C247047D39ECC57EECD8174CA5A8CF00349B1DAA1DEE75AEB84E9' : true,
+ 'BC0C5DBC1020476F067127D89E5C9A2AA88F141312919D7C0BF1B964D4820FF7' : true,
'BC51725047DF86083608C9849E05C1A6C1FFBA6991A6FC781543C906BA479450' : true,
'BC7FCB90CF245804DAF432637A53FDEF6B5F88BAF87EB23245AF20C668CA74EA' : true,
'BC86367AF49A238438C89460780C94DE2C1E49021437B3DFC590A63F46332888' : true,
- 'BC9B66EC1AF4106896624836D64B109922DA4163B83288E2131FD9A012CC95AC' : true,
- 'BCB6468D80641046B9B1D3A9A24FB092B76603F256FFEF183D0EB6A9218DF2C3' : true,
- 'BCCC1893C98C4BD177A414C7B3D5EBD74893F964FB9A62B96B48A84F1FE64B53' : true,
'BCEAEC2D8B8C18B58BD320D77850EC38285F419ACA8A9E939DAE7DFDF26696D0' : true,
'BCF2EE107D285BD0BCB864C39BEB0171DD94657D761DB1EED17DA1D5F8E7D576' : true,
'BD273332A459B8980589FD5B8D03967EA78809CFB4F77AF25F578EA77CE9C785' : true,
'BD2B6A9DA30AAB3D39906793DB2C9C238C7260EC5B8835CCF8D9C58558B4A945' : true,
- 'BDB42DE005453117D2B60263504B9B58E9AB64B57A7385279CA0323D7246F02A' : true,
+ 'BD3379DFECF46E7BF128D0C1BA77D7179ADFAEF6BE7259A47E026ADB7C91975E' : true,
'BE6E70EB169369668EF9523107E95867B1B9C0320C750180303720B35CF09798' : true,
'BEA63BBA0D4C8E462D0FE2722B9ECC23A8E6E89905E19C15362BC33458D47CFA' : true,
'BEA7ED0A4C77505CFF6FAEA9F1B399C41324C52804D35EE4D9076F726C8D2C4E' : true,
- 'BED1A9D1A4414F4D465F04F9D8C8EC331F89388E19419D0371D0D177FA60287C' : true,
'BEEA29655F2F0DE938C7460012B5265BDF623C09F11529CDC33A4B6BEAF96616' : true,
'BEEB38B82A906102D7CD92E5FD98661DAB5D3C9B7DCA9DE3533565EA9607C5EA' : true,
- 'BF209FFCABFF17D3ED4987EC0FB5AAC5C0D961546AF52CF873B560BA4BA48A8A' : true,
'BF46BAD48562C88CA9B110FD99D88DF43EAB728810C78F12A062C292876612B6' : true,
- 'BF7EAFFAA2647F47D816A83ADD1D7579F0CDDA690CBA00F75BC6ABD564987346' : true,
'C0144D1B67F2AB403DD08B73E5F1772F050E9713D8F2FD98BE999FCEE51D2792' : true,
- 'C03976BCBA4A9A4ADD099CE8F878A6DFF9B066179EC7DCF932EC4AA737FE415A' : true,
'C0AB8B4E884A20E51AB9325567115F185D18654803E08E2C2C6A4632D7ACC2D0' : true,
'C0F030365B0F33FE3624CCAE4EB7A81BC7B9127966953E82DEA179DD1AE66458' : true,
'C1529D3D2B287392E5CFF924DE47B904B2BE179468929FB61D10D5B8F02FC8CD' : true,
@@ -764,12 +779,12 @@ const X509ChainWhitelist = {
'C1E47B7AE65AB520DC18A03F063101FD14AB70E868F16DB2C42ECCBEEEE5A6D9' : true,
'C1EB50953EE0D16410A5DDFD97F5C05060B39F2902807F139EF6B015D0C66729' : true,
'C2118D84846AAB7DE521B0379672EC639CFD745D82E3D504EF68CA723725C5F6' : true,
- 'C2126EE4AAC4400E18D80ED8195C1A28517EBB3920244FD66D9F67BE89247FF7' : true,
- 'C2295D7C0FD4FC4DC7681FAF3CE851F6B416405554781C77FC8212DA169C258D' : true,
- 'C23E48B97775B7A76C994A4F0A83C2DAA05C5D741043B84E63840A700031E44F' : true,
+ 'C24539CAB91F915751D6D0DC8B96C0EDEC32C8244F388DBBED97C03080227B9D' : true,
'C2B9C5E5C1B36BDC9D85E9B5883C4E71F0C9CDD45B8691F628480F1EAEA4A8CB' : true,
'C2C9A263D5F88D7064870FD13AB8633A10CD97E8281F0ECC49C2C1C3F54327A6' : true,
'C2EC6DD4A6B571933F5DE0F94508D629FAA849B1A31A8AB979DAAECFED2AD253' : true,
+ 'C2F50D73D45CFC1B6EED268BF85650F9FC709E3E60900A52F8FFB32B955BF0E8' : true,
+ 'C3045E5B6AF9BF030A6A7113CD3303D23962DEB88E15EA62BA53D0523362AC26' : true,
'C3107C690BA5007E11C076B2FEB58BF88E67D1ADA15DF1B8280D226177AB6A13' : true,
'C31135D0EE5E0B74D6A39E1FC67E9DB5CEAAE9F1D15338359CE02643C198634F' : true,
'C33DB47CE54F64CE33394E20A96D122EFB6F8DAB2584CF26120D8A8C5C380245' : true,
@@ -778,13 +793,14 @@ const X509ChainWhitelist = {
'C34CDEA10E72069587970C7033095864B6F069B6637C6263A1E7A7A5187923BB' : true,
'C35CD8ADD8FF80A9CEFC31D3E0DB613D725FDB0BE52B9ECBB730E970A59E7E98' : true,
'C3DCE474FB44F22E6497A1FCE2C45DEE167853134C6F1C21C13F1707B0BC7FBC' : true,
+ 'C3E16A5C58334D5CF450AD26F45BA93651A8FA036170B7D6A76DDFA0EB52EC07' : true,
'C41706089A520406BBBDFB4ECABC4FAC33920CCEE6731CD703B502612E316E54' : true,
- 'C4BDB4AF6E9CEE6017D3FB7ADD286E4B6348088E14D994CF698095DC86C939EB' : true,
+ 'C4C5E3161080AAEAF488DD97BF7C5BD5527EC28370BB83EEE9C979F03638145E' : true,
+ 'C4D6F5EE0EF714732BA04504333775AA8535825F8BCE4DF3FB6B44C3633B8BF7' : true,
'C58563CE93B0DF900E0681376244F32977F577D130320226D3BD9CF82863402E' : true,
- 'C586979CC69441D6717388E137E2B01FD04BF3C7C4F6E5006D71B45B81A7C04E' : true,
'C5C58D7B5A145FD684B3A5A6D12468617BE9DF323D37015420BAEFAFC086EBA1' : true,
'C5FCA59FE803B0F5B7BDD9387C65A1A5B9CDC8D0C76B79C2954CB769506DD1F7' : true,
- 'C677F67FCA735BCF6AFB51031697A967AD09FB8ED0A9EE9A1F532F1CB5F6AF59' : true,
+ 'C62633FCB5854BC091CDEDB3B7B6C6FD8C1403DC0E2ABE789DEB717F724BB8DE' : true,
'C689F3B9238DB156A7D563E76DF45FCA607B4B5F6CD62BDDC1AD1AC720E67952' : true,
'C6F63ACDAA452E008A1DCC711CAD36D00AFE55F958F2CC82A139BB53E27D11EB' : true,
'C6F893D20A417841D7584A029E6E6A2A44B044D858ADFBAD4B11F35B7199309A' : true,
@@ -792,84 +808,75 @@ const X509ChainWhitelist = {
'C7056A5FFEA8A4751271C17CAA9EF3BBDB7142A08ACA673522EDFD9AD18AFE66' : true,
'C71294A0124420512711C918C36F77192D2B45CDF8C99824B4BC862D0B31C3B0' : true,
'C7C3A02A4A1C71C54C37BE7889E60467E9C6A48A64FDC85289598188F4D2D839' : true,
- 'C82AE26EBA1954BC778047DF9684F330C424E9FF778033485305AE0C87E57D68' : true,
- 'C84E5F64496198370D4E53DD6FD1828388E878759375F498A8670C035275D6C1' : true,
+ 'C80317E42E46F8B391A27CE8A30DB43B8982BE7350749D6530131711D4CCB28A' : true,
'C936FEC68191D7AF75334834906C8CFB18F91FD53BDE7C2F0B2ACF8100ED3855' : true,
'C9462B9099A574DBBB9E2BB9B87C4AEA825DA388EE8153AB74414555420AA6DC' : true,
- 'C95235BA613C42AEEBE5B2CD04707B323083EF4BAF4B11C633288AAA7CF98AD7' : true,
'C959CD326D9F3AA21FDEDD42A5AF0B7A2FAA5E9B92907654F29F1ACDC691DBE6' : true,
'C97F815DB2FE0895632311CBE80C5A8F99A025201CDD3F70939D5C1E1BADC94C' : true,
'C9A9B118F63E40C8F5F73E89E580626EDEE028DF8ABE5D3374CDA69459207CDB' : true,
- 'C9D7767021698AB5CFE3F43AB281F424E1515A52A0868C8752018CB292DE3190' : true,
- 'CA157632863D3E7B499F141741724FA84DBA48AEB51B04A53A9D3DFEA7F70BF1' : true,
'CA46DA728E76E97AD214DBB6AC9CB1EA2DC87202C88C35E87CE574FC1F2E0438' : true,
'CA529AC5A7489D57CEC2D6BA5881213C5A163409BD6946558DACFE899A977009' : true,
'CAAF21212D1AFB10BA4844150A49541967BC1C9879801E43064429A632DFD941' : true,
- 'CAF98B60B1CE36971AD2DA67A18E72E53345EFCA16382827BD1C2022D009E751' : true,
'CB133229997821E418467CC3A72F77A7B9E31CC62B41032D6A82577B7AF1C6A2' : true,
- 'CBBF31DA8CB7BF399EFEA030057004346FD5D8BD07CEBCE934E28609BB6AFF14' : true,
'CC2E477D4A2640BCF70F232C040954DFC4878E536A4B03E788173E673A2D31FD' : true,
- 'CC6267D34E7EFF2C8BA692C3F96B2FDA39BD351D2B8E280E9D81DECAFEFE7233' : true,
'CC73DEDCFB8EC2BD78A979BAA47FB8D1697C38BD286E0F4A716619939D6F495F' : true,
- 'CC99A37B34F4914C3E3B8B8D6236CE0E8F92DC77CEBEB09D50C6004D51C8D4CC' : true,
'CC9DE9ACA31709D03188E3FE36B902288F56A3AD1510AAEBCE0881A363CB8B66' : true,
'CCD4C850054C2E89024A8E78E337518B9137528B9190B9417E182E6CFA0180B9' : true,
'CCDD0AD541F322CED13EB7E00654FD567B39EAC71E146760EBC9D5C736329993' : true,
+ 'CD2F8D3520116EC6F56491855CA3F0794A0DA8AECFAC5022026E7DD844F35047' : true,
'CD35C7ABA0839C0D865DEA4C1DB624F709E5EA041A68DB55842E2C189F38BAC1' : true,
'CE77D1F5ED11C8CA34DA5DBB0E999CAB0469D215552BCAE775B1AE6ED072F01B' : true,
'CEACC5425237EED1F7736E13A92AE0A70A94F15EB08B564D0CDEA3EB042D1BF2' : true,
'CEB1ADB71C3CBA6FD012A778BF70CC93BEAB621B4DA4A464934C5440868E58C7' : true,
- 'CED6501D3B06CDB7033EE79351EC3080BBC2993D0991AB91325DFC0550689AA7' : true,
- 'CF099A3A9DBE3D79F3E420A47A8447A50A2F87ACF2874CA86D49F271B82A68C5' : true,
+ 'CF16F6A03813485A44746BAC08788ECF1BDDA70E60A03EA6E8598798CD2DB75A' : true,
'CF19B1004488D5D9C882E2C4D0A47789618E0BCD6475F6D9C6B5591C2BF333C9' : true,
'CF2A79710CABB0EB440EE621B37934C249C50612DB4FF926EDDE5B8A30686BED' : true,
'CF41907FD2550A0AAFF0E09AF82423DCFDFE470F225A003D607C19F709A591CC' : true,
'CFDC25BD3A406CC65DF19685CB300D33E13AB2F2064BE7071ECA3A6F76AA3215' : true,
- 'CFE1E4D56E0D95E238F3317CC981740011F0D3E4DE08ECD27313F83378F150BA' : true,
- 'D004BA3611B7EE32714173A1C1C5EDF071902F49D67542EB4310D6BA34B33DC8' : true,
'D03547E78303C9FBD70A38BEAFE87AA9F266A92275D818D1A8758DCB9D08DAE0' : true,
- 'D0F0E41EA07E5EDF9E9241B0FB6FE08AC2F623F2F596406CEA34B73EEF6C5BEC' : true,
'D103ECB2B7F74BEFD44109C1CA30EA92D9016C0F9347F1DF3E5467C3AC20221B' : true,
- 'D2785F7C48F180342D70978EEABFFC424D33A495A07D04F32C08B771BC4E43A4' : true,
+ 'D182B5FCA42FF996EFC43E57CA3FA6B6723F9BEBBEE8E718BB017C719FA10275' : true,
+ 'D27084DE959A5900DF81A94F79A92293B11E0CBAC666D43784A28ED4C0D42F00' : true,
'D3676F00560CED41E28BE263ADFC10B602DEA2026CAD2C7E77E9AA585E085DFA' : true,
'D368841DDBBC15C7CDA82090EB95511736C97FDE82BA9AF5F95114653EB5234A' : true,
'D3946220D26CD68E238632CD7AD63FD62669D9F60770C62788747C7552AEFC8B' : true,
'D39BD0C1656F99A47DA9D2957E2D7A49FC9EDD92CC6BE729C29299ECECFC42E7' : true,
- 'D3D5C3556B8724C6601E217415EA7E89740A9F1B2523D6421ED2BD2E3044145C' : true,
+ 'D3A74C371854206A5756470274FB16A3D7280E959FF93F265650A3002030B78D' : true,
+ 'D3ED8391B1F4FB1151D105C9E7EB6D66B0A588D9A8BF7AC93CF38DA44B99979B' : true,
'D44DF644880E56596405F1364D8C3E5301F05ACBF82FD66B671D895288C75360' : true,
'D462D57028E10CB7A7C87ADA83EBD7FE9B4DA384D2971BD7A708816C4EA8711F' : true,
'D46D29E4176A93E3DCD80BA5861A87E84FB7866B784488A977E7E4E4076DD2BD' : true,
- 'D472AA6946ED45E5746D88E98DF7711E828987ABA8A5D64D466F5C1C5B4EEDA0' : true,
'D4CB5B06AF9ABEBF5639377BF36B289CA95A3205A84537D36B4506DF51430669' : true,
+ 'D4D6C947FDD2599121B7F10FF6F1892CA98D3E07D6B34D29BB74B24AC34EEB3B' : true,
'D53A4E1FB44B5C282566F8AC28D68A76E12B76EFEF719AED86F11D15BCE9A0B5' : true,
- 'D5EDEAF240AD74C81017160821DE0FF6470839A2F8AB998D84E7392E90280D0D' : true,
+ 'D5B0165C0F4C8F14A2E0C2310AE4A51B6EA08D2FD9790DFD49BCF3FD78AD5198' : true,
+ 'D5D5E4B278DB8BEE14CB48FEB3172C48DB575E96730449A30A35EE589E252C2E' : true,
'D652650A3DE79A5C0DFEC1925007DA094925533D13F14094722A80F936FC9A8B' : true,
'D7198C80471105D95103DB11B6BD2F6CDC8E7A7E67DB8329F1FA75C5F5D5E8CE' : true,
- 'D74E275CC5800C7DA6D65C11F4FDF07B81EAC91D412D05EA64C928E035F1C129' : true,
+ 'D76E8E1051EE6E7F951F42F6E342112B30DB14169B5081E55D280CE44BDF85BF' : true,
'D844DEE1597B654C0E645C787DB52F6EA5C855C6C35626BD7787E71E873CAF8F' : true,
+ 'D89779E2C6899073B88547C48EB71C93D56B021E33D3BA390255E6D104B4D349' : true,
+ 'D8B59B698E3702C610DE464F210086F776442C9F21698AF779BC04BC5F3D09E7' : true,
'D8B6CC82BEA51A5BDEBA5B3B046B0D1965528CCF70B8F7D27E57A99CDD87D226' : true,
'D8B8F53177C1E04D93746C8460A7296707654094814772BFAD31F79C03802240' : true,
'D8EB3A26B3132739539EEF2B7E3EB472578112D5D8AE470B0F2CD4EE99250ADC' : true,
+ 'D904379306D37F489337D71508E1CA3FE9FDC8188286D24265D3437BC069EA15' : true,
'D942963C31649F76D7F96313922A7B163B631AF72FF9962767D6E4DB84026B62' : true,
+ 'D94B7AB7DEF1CC5FB954D52BC32A388CFCD2A3B8E3DC131C4487319C22852F8F' : true,
'D97CF453986570998A9B529709574C7A2EC1E7D43CC42A659A5CD908CA3CED89' : true,
+ 'D97D72D7A8F796A1A27E0DA0A08C075DE294F373E2480A76EB9D93F89EC58B2D' : true,
'D9D5FFCAD69421840F7A7159B3F8641F050A53EBF2B91D909C2CD7455FCC5C7D' : true,
'D9DD6D21944C5623DA765567EF61919B1F6BF2B1E8E79137B5BD48F4AF75C405' : true,
'D9E191EC52F4ECE1E0C43968EAD53E421ED62A7A7DBC0C39ECB2B8FF7962F01C' : true,
- 'D9FF33B827DE9E502ED5380068CEBB6E7855849A8680B49BD2EA11441A7F1E01' : true,
'DA0D9391992825F7A10312F7E85568086F18DB901838A303E721E58239158EA0' : true,
'DA5110BB1526CBA9E86FBC66B91A8A2880E85440765C9208A1FF4D3DF2E8AD65' : true,
- 'DA5D20F1A6CF6CEC3AA7028A6E17D8F2E1A60069E497758B0CC938C08F4E76BC' : true,
+ 'DA675CC41023A78B1E4B2DB4B5E43B0BB6BAD64327E0A1B70C9350FFDEBABB4B' : true,
'DAA9CED5BA817CED9942DB9CFAD0210505937A9DB2214298E0BEB831BFC8A31B' : true,
'DAF6B7470355545FF9FF41E11016056CBD9537558F503D7F9C049C8ACC446112' : true,
- 'DB301590A7DE580916559C6DE948B95A3F7FC50A7AB8678BC365595A4DCE4E4B' : true,
- 'DB7B1361B066EC2F777AE104F88A846DC163200AEB05B47D5BFEC91B6F13AC53' : true,
- 'DBB0C3CC436B5E592960BE7E8836AE58D8D632D435365ED2EA3CFAA86681E272' : true,
'DBBF2D4498ED91C779C81FED5E96F9B5210CE86EA463712268BCAF098FE2E285' : true,
'DC04E4E5B03D875F796835B599AE226470B9ACDAF0DC79AB2F766B77AC59F3E5' : true,
- 'DC31F2640E8AF9887C05C44C34A999030A6D245A36EE45EB48966E8EB6665F9C' : true,
- 'DC8D710118FF258F27ED436F585756252FDB30F42DBB58B23B8CD3B2140E13B8' : true,
+ 'DC7FCD5741DC383619A2CFFC85E1CB100CA9E20FC499E37FBD8CF954559F1421' : true,
'DCA17501D12F98C84EE99DF4BC8EFC1FFFA9B65E2BC5A92B20C9296EC61C96CA' : true,
- 'DCF33FB3953551E4B5F06060A7EC211432C30FEF86FA7B45EE76A8F9F3473C86' : true,
'DCFF47F0DCA2B78BCEC9D6F35E84BAD6803DEC85A888028C9DBA44A9B69C5BC2' : true,
'DD55F1E1BEBA4CF9F582CBEEF4A35E1C1DE36750A3403489C1C98955FCE9950E' : true,
'DD64C7D9E60AE6748B449ACE8CF9C21B5551BC6427EDDCE1D77B7C7720FD21E4' : true,
@@ -879,104 +886,97 @@ const X509ChainWhitelist = {
'DDF758753965C89E747CA6799902A045B22F473F654CEDB51B3C0CA0EA01BB51' : true,
'DE327172F9BCDA3DBD4E6EEFC759F3EE88FBC635BAD34D76E360541420CDC8BC' : true,
'DE411E4537133A4D436E0D730AE192277792AA1D0584E60B1CECCDC736F53407' : true,
+ 'DE42BF95E642DC5BE2F27F125A1AC28F34C0DF9A925D53392C9CFA05706BCDE7' : true,
'DEA472B5BED8DA9F6F5539F8DC66FB5340010F7316FB28055E14EA76E03BBE41' : true,
- 'DEB6A31937F3D2822CFA6C563F00F107DB6A445596E8B775D989500FF2E09F0F' : true,
'DEC7DC8AB8ED70C1D2FB2875F0F99FA99FB53E6BED70CD47B244ABA2104DA5AD' : true,
'DEEB105F77ED36DAECBE1AEC896736B7925F56C86BA06FC1A43AD5F35E9E914E' : true,
'DEF20D4F0C0D98AE8C9786C364182CCD8990A834C96C1F0989AAE9ECAF33720F' : true,
'DF03F73A71A568E6A05A7E9FCE240EC0254EE86E24790D6DFCCDC71A5763C27C' : true,
'DF0525A7807F3709BAD2DEC2ECC569A1D473F97F0C382C932DF726C79926DA0E' : true,
- 'DF533C33DB800394971D608B89269426D3A2F58B76F190229C0573985E4F7CB8' : true,
- 'DFB9975C6CB5E5E0A555789055A543460C93C34378BD0565339A0194D56CE58B' : true,
'DFD291C1074E972A9FE6261BE6FFDDA85472A8AA7F543C867F53B7D8946478DB' : true,
- 'DFE29EDC6A77622D4963EAF8CEEAD0ED5DE393DD069425FE30175AD008D609DE' : true,
'DFE3CB9DB34E3CDE7E6B641C90D116F906DB0C916C5B437308CA502C756C6331' : true,
- 'DFF00B8DF7748E81750E0302A10B9160B3BD3F56967E854C4F8D7B3C008757D8' : true,
- 'E01A5251FAC16C537237EE4249874187E3BE3AF9B0F1D472E6C69E6C8B8832ED' : true,
'E09CD94E0A501BB4D25D5BBB02CCAE95A24D0BAF8CABADEC9D55A74B7D2C5BD8' : true,
- 'E0D373C9758BB237C4E5C616A072F192E0D11EC0E48ECE22A326ACE69E3CF771' : true,
'E0D7FA4702E25E7F51F94DD0D12C39A352DF48DE10A5249AE2687CBC15020CB3' : true,
'E0E11F4703CA92B8F0837DDE262F347B3EE57238914F7AC07BBF332636B4CCD7' : true,
- 'E0FBE92538CF16C3940552932766472A0821D1539BAC597F5C87F818296D8E14' : true,
- 'E1117A0AB7E1A80334C1C56891A4306CB553C100424773BB0F10C7574CF44ED5' : true,
- 'E1176E46C4FA7841D94FC724013E3D192E7B414933F92CD50EA36C51617A2C60' : true,
+ 'E0E75FCABD59C24DDEF932396FC86801979D2DD3BE05BE7CA211B4661A5897B7' : true,
'E1595A9AA15B24610100AEB57ED619460CA1D976B769B856398EADA5A01F952B' : true,
- 'E1A55E7ABA746B4A053359D13C91DCD7415F2CEECB7E87292DFD697213986946' : true,
- 'E1C97EFF3C246073604F341DBB3CEC9683EB6692463D85C1D23FA5269D9F3FFD' : true,
- 'E1CB2358E3FB5CE1135999465778BB5E6691353751FE577C1B032DF832532A8A' : true,
'E1DBBD569E797BC58D21935695EB6EF34DAD0C82FCBB4F4A1C5E644EF161F190' : true,
'E22F7A2669FF7B9F9C89B3BB1B0A5FA485C26A697CF2418869394A0710AA5EAF' : true,
+ 'E246BBDD2C2C4AE987C41CE0185AB7669DE3F9C9ACB7453145234A9CD143A1E8' : true,
'E297439120E6E2701069440EC321BA98A5CFF9EA3F407FF16185671E466B87F0' : true,
'E2D55EAADCF87AD1BD50E53B7168CCC08561F0172004C1EC4DC13D8166D1A313' : true,
'E321AD541727DAEC0801A774095546FDD0642CDB597A7AD431C6BFA5C7F447E1' : true,
'E32ECC9EEA662085C10C003A5C910D77A6DCC1E99BD187576EFDD1BFA84591C4' : true,
'E335D8CABE2F4940CA80CA10A6BE55A138A163E1C56C281165FBA3FA601C61A9' : true,
- 'E3570B254ED1BFACE2C2CFB35A3AF277C8F26A81D1212BEC92CFD84A35FCB53B' : true,
'E37314E72C7304D32336940ABB576DBD7BE3190CD9A5E8F87413CEEB7579D502' : true,
'E381DF6792973BFE322D23C6CF2A6C24A4ECFC77F43F03D2FC04EE39FAD7C683' : true,
'E4866B48A6E45C4B11326D3FC5409D4AC595DB81D59075FF1AF4815ADD15B54A' : true,
+ 'E4C5A51B3B2DCD2472B1FF0693DB5E0FD6FD2F3F3A6CE0164AC1521B9EAF38D4' : true,
'E549DACF42BED70415999CB677AD037F972087B39E6B2C20BBF2E3473AC8BB49' : true,
- 'E5E61E81BD6BDB914235B1C227E3FEB83091ED8F453F0897035EA775A7DD9334' : true,
+ 'E586C4E5A9238BD1734FF71658C8054309968EB94188660D70EA0E2511F49D7C' : true,
'E5F65E0B9FA619FB212BA4DE4AD7166DF37C0690AF8AAF30DD68E2B53802DACB' : true,
'E5FA7806C1E6122EE6F7B008711DAF068DC6FDE60B2A5877DDEECA8A23F96586' : true,
- 'E606BBBB4E98E5F9BC9A2DCF767A1D8B5E95AE7E35D5E14C554778BA1890C79D' : true,
- 'E692108B3683F3C6362DF92476D62BAE60687035B70B9119F962190C9C215B04' : true,
+ 'E600D8689E99AEA0C40D363CD164494D463AAF3763797D6F9FD8EB1EFB9DFBA4' : true,
+ 'E647F0EC7153DFB3D17ED1F82ED36B4D21B5EBA39940BDD88B41AEE7620D90D8' : true,
+ 'E66C27C6E02A21FB8D6CEF881E5BBDCEBF6CA94DE15E22BA1C80A7F2DDDFCB99' : true,
'E696A05D698717888181DFB7B903B380E42454076BA429EC8AB0FB58206AB166' : true,
+ 'E7D6E1EE5088D460A94D5E16D305D1F575BF0895237E4F79A483538CB12903FC' : true,
'E7EB8B4D5DE598BED2B9C817AB7D42F1EC99F16640B8C673AF2152D42F5344C4' : true,
+ 'E853498E9A3091B0AF8641A0B62970AB613371CA3631D1C97D70F79042BB00D0' : true,
+ 'E855A1B90A017AC7A8C20639AA316048160973669FD0058C9237B5FED85F34B7' : true,
+ 'E8CEBFAFE4D31D8F110DF0D61793BFC32B10492A2840D7DF99922E78000030BF' : true,
+ 'E928047ACF80352DE21C59864D3DD5C34E7325E52821D7D30A0F112677EB660F' : true,
+ 'E98FAFA6B8EE0C53407805C761D80684215776CE5F4085CCAC91B876E92B3307' : true,
+ 'E9C07A0196B2C73344FAFBE8488F0B4E048FC4112B8EEDDDF74F949340255E44' : true,
'E9CFA5E0C69E623B15F54AF73644E6FD5B0F86F24826F378F7C903D50A1AAA28' : true,
+ 'EA028E45F54FEFEE8D14D2E848A20950C7CB1F8532D70D01646A5B93497AC1C5' : true,
'EA7AD4DE86B47BEC726BFE21172676F92E0C0BB86888417916CB3123086E84A1' : true,
'EACDBC29504EE8E44559D3FCF154E1CF632CBBB4065734CB5C6C1B16D42352B5' : true,
- 'EAE734ABC9AB7F65DF19ABE693F0C1AA6AF5E9C76561F0779D523FA5ABC6A3B4' : true,
+ 'EB479C3872B58B510211798256705A8C59D2602125CF4B53219AA9CCFB175E1F' : true,
'EB59182D7ACE742ED7D7AEE751763EF9F09EDF68D1DDF765E80BE40A53AD0E10' : true,
'EB6B1F16F70E3080F38E7ADDC7E3AB69164ECD068F5E8F15931575FDD62B0A64' : true,
'EB6D34EFBF063DCACDFB823734B9788D9FB5E22A48372B7EA8AAFED8046652E1' : true,
'EB907252FF62CCF97B16796B9106686C4260E682878EFCA7721D37D6B8C83319' : true,
- 'EC3A708B75908F8EA0660EF8A9C14B07DAB3AECB71E96E87EB06BB317790A118' : true,
'EC521C3B04AF772AF812B63555A7C24BDA282C06EC619E1766CC346780EC6E04' : true,
+ 'EC9E1FA91BBEA7C9B4EE73E8DD1CDDB8A2038E1CF61CA11A41A9372B634CF37C' : true,
+ 'ED0908FC61ADB97F583F8CBC9629E4AB369B6141A16B682E8F9076826A373E6D' : true,
'ED4BB615EA54DAB9EDC94BA434DC0B194FA5EB91BCA7E1B05CA9C21ACE3E4A43' : true,
'ED4D737C0BBE1DC2CD305D8A912D1C1D923C1C4325401D66349541F754233B53' : true,
- 'ED918BDFDFCB9E4E679BC7C1938F9CE412AA85500BA3531FC550AD5213D5BDC7' : true,
- 'EDD929C40001C1ACDABD51797B63D689A0B80434FA323B4F7AD213AB8A530B8C' : true,
'EE3B7480B691828ABEBECA3DB0EE96619F01E886FC959942F6AB7EB3D263A237' : true,
'EE49B2B0E38A16743525D6CEE70CB71038D43094BC71BE2EEE861E4602B6D891' : true,
- 'EE5B8C42532363A48222B1493803B14EC2C98366CD0C5BA4126F468BA19C559D' : true,
'EEEAC8F1C70F20FDF05D777140A4A5F72AA9FEABFA9699F9B0F5120147A26486' : true,
'EF0EE2FBF54D87B6AC02AEB88050155A27E1A60A5A8C4AC46FF24B529D912B04' : true,
- 'F08A2008114880DE65D1C1A47D55DB0B1EC6029562BA7B8976A78507F4EB80B2' : true,
'F094E7890A2B177AB1517C2EAA8D1DF0F69DB94633C4A510BC02CA8D71B36403' : true,
- 'F096047E3E971271396DB89324E82438A446B4E85F86EDE684AD7DBB14B3C93A' : true,
'F09ECA7EC8BF7B582C42AEB4A0733A0D40FDFD28CEA2C70DA1BBCF1FF85E29FF' : true,
'F0BF33EE5C1D9A83A7BBDCDE95426DCD201D1C071CF1FB58CA4FE3776996A99F' : true,
- 'F0DC85D554A245F0146851FB8FCAB6CE5F955E65ACCAAC92E875F8B8E1E2495A' : true,
'F0EDB0C989C20672BAFC51FA2710F3841BA5793BE379FC212D7ACC3AD4743455' : true,
'F1147FBF98A54E12693453EC571CE8B86C05D7FDF3995D775DFF135E10B9C520' : true,
+ 'F1161FFAB7AD2257CC0ACA0147C47FE17DAA44BA9E998AD59E063871EF95C8C1' : true,
'F15E12419E936A907F201FD9D6D3DE2E01E5F8465AC4D8EDDCE1E58262183223' : true,
'F1A9F7B5F76EC4E234A078662581DE91E76B1CF83C219986D1BEA3717E4513A6' : true,
'F1B73AEECC6698895051EE69179C3897A1DC398C2D72DDD720A29F9C9520457C' : true,
'F1EC4F6CADD8B97B55AEF8AFDF69AA2261D10B641023C4F8CC895E5F26301D3E' : true,
- 'F205928C933AFF1F1A6411AB779CFAE3FAAF43754AB86735DB52F74DB1DA81D2' : true,
'F22F96FB88C9D96104167D95B3AD8B5888C92680B0AD13DC785FD5AD3E19EDB7' : true,
'F234FBFD807A0302CBF855175C73ABF27C94915B95135E3146C0ED73662DE3F5' : true,
+ 'F2F02451FAEE938066E557577740D09ABE2A499CCF08504BF3BB1633EBAAF559' : true,
'F35B9D7C54418022E6FD4FDFE88C3261FD138329A11C013AD640145D40BE934A' : true,
'F39D175463288D9639AE5C852B945D89ED858548F8621E5DDC29853E8C84BE36' : true,
'F3D480D69675A57DC2061544BF7F52B631BB02716680C0E5605413C9B2A6183F' : true,
- 'F402A9D58A73C40B396B5CE756EDFCA68257AC6D8DE80AA8217F16C97512C51B' : true,
'F4F3D03488B8B699725AEBCF9033B73C8997AED2D4504891EE4FFAC3E7CB4272' : true,
- 'F501FC68C9AF9E476349B8E40ABBC7B4C371B328A9CFEE397004D7166BEA2EBB' : true,
'F513DC8D7F8B425FCF55E74BDCF2675EF2ABF98523E5226CF8A2391B0A36A919' : true,
'F55617B92584757BB516B19BFCBDA9B4A71237075487651831CD9C5F9C6F5F29' : true,
- 'F5CACF11F3673BFE76BC638692B907E7E1407AD77F3C8943CF4F4BF22A2D5137' : true,
'F5D715B6BE56D1A677ECBF7C26B4D79716F5EC2D2E2EC323ABDFE3442F40BD31' : true,
'F5E43F516D61A0329F78A2560454B8346732A9420C172AC9983C0BEFFD8DEA0A' : true,
- 'F605AA2BD611765748A88F933BCBCEC70272F6C6A1A4AC614C2D02D17DAC6CEC' : true,
+ 'F5EFB0566F96DBFC58848E1F101457F6F2D05904C1F91A4D22B1192787B0FBD1' : true,
+ 'F62CA149D43A56F24345F70DD17EAC3E6232068AD7E06251AEB42ACAE23BA120' : true,
'F6620F848AB3CFC1695D2AF5399FD8FDD8F2FEC43F73F2924DF78C1A26C22653' : true,
+ 'F6719127E9730A196DF5D961354756211240F34C5279D39351C3DBBBB2896244' : true,
'F6D424B2B0304F80F9F57E9A501576769B75304FFB569A1118B9B0D5E72561C6' : true,
- 'F7120F4A84D6392A786CDE2F29377B267154621AA4DF7D9F4AEEA8461F8F504E' : true,
'F74D9E23F4CB53775CA60178347F2A029F77579000B21AA08EC62A1C2932348A' : true,
'F754352E819D0C33E6CFC06EECBB4356DB5D8BD1FD2591C7C817CCE662BE2BC4' : true,
'F7835EBD5236BECAB435AE25E9D79BB389DFA8462D552965A2B901ED70B4FF79' : true,
'F805AE1FEDB2D94096F0D341B703ECD4975D773A179555DDC83D424F85578571' : true,
- 'F99371163EC08FF74F0742422AC3108264DCCAAD1A731A5CD5CDCA9FAE8EAEE0' : true,
+ 'F894E6B109C27D8C32BFE2A88BACC5DD8BEFEA514661B0509643E02A68A107CD' : true,
'F9AA3378654B8DAE243713E502260C71E88F8AD2B7021072A02574D09E34D1A0' : true,
'F9B011926D3405A3B902B76FD7DB90E8A62429A5A34ADAD21B9870446D425130' : true,
'F9E220AC82D672997DC20E9EE89BF0713BC4153FB5F2EBC8D9AC9EE35A6E494D' : true,
@@ -986,19 +986,19 @@ const X509ChainWhitelist = {
'FAD57B1698DDD7EEDC68ACA2B91FFC327696BA682F8B1DC7CC18D058EDB48632' : true,
'FAEDB6948B44BBBEB18CC3DE18788AD31CE938A2BA36BD84765BF47728C415E9' : true,
'FB26AD0A3ADB010EB9B8C70998BA5AF151F8CCF1B31312A9AE5CCC3B8E4F709B' : true,
- 'FB3A5B27D3488E28ABA3F303A726C2F0440133025981816FEDF798E45B9B1751' : true,
- 'FB7EF701469F77B6412100BB2D6399B1A574BB9610186FFFCC0119E14CB2021F' : true,
'FB81BF294DB8EDE0C4DFFB7F5528EB3EB406FE435A6D62E6894482D8B42CCC48' : true,
+ 'FB8410F5AB21257DC1971CC27F60A1BD1F7DA0962DC5FB97C240135C3BB6DCD8' : true,
+ 'FBB453D761BD4F27BCD9C664C4F4B0FE25B9DFCE0806A12FE21B2B996C72E34E' : true,
'FC072A7AD4E6E41680493AF4BEB98215D4D2F7CE040C95004BB3A1621A9DD513' : true,
+ 'FC7B49DBE7843EA61C2BE33A5EED8CB6E7B23605FFB783948AA4B57608A20DDC' : true,
'FCA9C3A036EA797D58CA26F793C98A9952E59D37C35E352B67A30D4F8F49FC7D' : true,
- 'FD347806B062972B566135DB8D7F2773BACDCD90C0143866EAF386BCFB09AF86' : true,
- 'FDB416F216D943190D8CADA2EB8F138F77A99CB1BC1334246697D37D8C04AB38' : true,
'FDF0D11B28F98D542D2D0B2658C0CB0CB46E5E155398B8739AD968944B4C41FB' : true,
'FE075A2C82D9FA253B59B401A7A31C4AD5D17FD66FE393D8EE5ACD7FA478743D' : true,
- 'FE0F03CC43B6AA47FF82C4D6CFDD4E696EEE91F2904ACDE87FAC4FF35F511709' : true,
'FE2ACBE26A3ACFBA15C9C3425A9A06EED0006E94A82669BFE3BE705D578021D6' : true,
- 'FE739A748FB17DAFB6CBA0DA5B2164B8E0435E8DA7FB85E7970BBE731B428631' : true,
+ 'FEB76D3D961661D830CDE04D78FAD83736F60E3D9473688418FB1DE7AE942663' : true,
+ 'FEC9F5C500456C61F90439F04F3E1B8884AEDF07BD5A35E6DA8A8FC61731F053' : true,
'FF3E77DFF8C24FE2DC89CE8757B6AE9ACBB838D35AEBDBD9A29D099E211380BB' : true,
+ 'FF4B63FB97FBFD55B9173F648FA145576AEEB91D0166D79F1A0087A8235538E4' : true,
'FF8C4E466EBCD5BD1A16F83E6096501479D74D077F84F2EDEA264781DFD82270' : true,
'FFA2F572D6F89A48043006E117D0B7B7F1D8FC7AC8C264EFD491422A38AEBDE8' : true,
'FFAE947BA6D3D7E8D31D04F02EEEE60601B0200ACDEBCB12AA5D617F650D5FD0' : true,
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
index 60da68f..2b02e53 100644
--- 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
@@ -5,13 +5,13 @@
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="500"
- height="440"
+ 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/ssl-observatory-messy.jpg" />
+ <image src="chrome://https-everywhere/skin/https-everywhere-banner.png" />
<label style="padding:25px;">&ssl-observatory.popup.text;</label>
<commandgroup>
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
index e686107..8086fce 100644
--- 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
@@ -20,7 +20,7 @@
<hbox flex="1">
<spacer flex="1" />
<image id="obs-title-logo"
- src="chrome://https-everywhere/skin/ssl-observatory-messy.jpg" />
+ src="chrome://https-everywhere/skin/https-everywhere-banner.png" />
<spacer flex="1" />
</hbox>
<spacer flex="2" />
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
index 1f64e12..5237de4 100644
--- 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
@@ -11,7 +11,7 @@
onload="warning_populate(window.arguments[0])"
>
<script type="application/x-javascript" src="observatory-xul.js" />
- <image src="chrome://https-everywhere/skin/ssl-observatory-messy.jpg" />
+ <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>
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
index 6d2c1f3..8f245ec 100644
--- a/data/extensions/https-everywhere-eff@eff.org/chrome/content/rulesets.json
+++ b/data/extensions/https-everywhere-eff@eff.org/chrome/content/rulesets.json
@@ -1 +1 @@
-{"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=\"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=\"100-gute-gruende.de\" f=\"100-Gute-Gruende.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"100R.org\" 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\" f=\"101domain.com-falsemixed.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"101domain.com (partial)\" 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=\"10 Minute Mail.com\" f=\"10_Minute_Mail.com.xml\"><securecookie host=\"^\\.?10minutemail\\.com$\" 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 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=\"1177.se\" f=\"1177.se.xml\"><rule from=\"^http://(?:www\\.)?1177\\.se/\" to=\"https://www.1177.se/\"/></ruleset>", "<ruleset name=\"118 Information (partial)\" default_off=\"mismatch\" 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\" f=\"11footballclub.xml\"><securecookie host=\"^\\.11footballclub\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"123-reg\" default_off=\"failed ruleset test\" 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=\"12 Foot Hedgehog.com\" default_off=\"expired, self-signed\" platform=\"mixedcontent\" f=\"12_Foot_Hedgehog.com.xml\"><rule from=\"^http://(?:www\\.)?12foothedgehog\\.com/\" to=\"https://www.12foothedgehog.com/\"/></ruleset>", "<ruleset name=\"131002.net\" f=\"131002.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"1337x.org\" 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=\"Wiki.15m.cc\" f=\"15Mcc.xml\"><rule from=\"^http://wiki\\.15m\\.cc/+\" to=\"https://15mpedia.org/\"/></ruleset>", "<ruleset name=\"15Mpedia\" f=\"15Mpedia.xml\"><securecookie host=\"^(www\\.)?15mpedia\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"163.com (MCB)\" platform=\"mixedcontent\" f=\"163.com-mixedcontent.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"163.com (partial)\" f=\"163.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"1688.com (partial)\" f=\"1688.com.xml\"><securecookie host=\"^\\.1688\\.com$\" name=\"^(?:ad_prefer|ali_ab|ali_beacon_id)$\"/><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=\"16personalities.com\" default_off=\"failed ruleset test\" 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://(?:www\\.)?17track\\.net/\" to=\"https://www.17track.net/\"/></ruleset>", "<ruleset name=\"1984.is\" 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 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\" default_off=\"failed ruleset test\" 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\" f=\"1LotSTP.com.xml\"><securecookie host=\"^\\.1lotstp\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"1PipFix\" f=\"1PipFix.xml\"><securecookie host=\"^(?:w*\\.)?1pipfix\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"1ShoppingCart.com (partial)\" 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\" 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\" f=\"1_Deg.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"1and1.com\" 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)\" 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&amp;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\" 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\" f=\"1d4.us.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"1f0.de (partial)\" platform=\"cacert\" f=\"1f0.de.xml\"><rule from=\"^http://(?:www\\.)?1f0\\.de/wp-content/\" to=\"https://www.1f0.de/wp-content/\"/></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)\" 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=\"1s and 0s.nl\" f=\"1s_and_0s.nl.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"1st ART Studio\" default_off=\"mismatch\" f=\"1st-ART-Studio.xml\"><rule from=\"^http://(?:www\\.)?1art\\.cz/\" to=\"https://www.1art.cz/\"/></ruleset>", "<ruleset name=\"1stWarning.com\" f=\"1stWarning.com.xml\"><securecookie host=\"^(?:.*\\.)?1stwarning\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"1time.co.za (Expired)\" default_off=\"Expired\" f=\"1time.co.za.xml\"><rule from=\"^http://(?:www\\.)?1time\\.aero/\" to=\"https://www.1time.aero/\"/></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)\" 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=\"21.co\" f=\"21.co.xml\"><securecookie host=\"^(www\\.)?21\\.co$\" 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=\"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\" default_off=\"failed ruleset test\" 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 (partial)\" f=\"24-ways.xml\"><rule from=\"^http://cloud\\.24ways\\.org/\" to=\"https://d3dtvigi7xxd4v.cloudfront.net/\"/><rule from=\"^http://media\\.24ways\\.org/\" to=\"https://s3.amazonaws.com/media.24ways.org/\"/></ruleset>", "<ruleset name=\"247filmz\" f=\"247filmz.xml\"><securecookie host=\"^(?:www\\.)?247filmz\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"254a.com\" f=\"254a.com.xml\"><securecookie host=\"^d\\.254a\\.com$\" name=\".+\"/><rule from=\"^http://d\\.254a\\.com/\" to=\"https://d.254a.com/\"/></ruleset>", "<ruleset name=\"256.com\" default_off=\"expired\" f=\"256.com.xml\"><rule from=\"^http://www\\.256\\.com/\" to=\"https://256.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"2Checkout (mismatches)\" default_off=\"mismatch\" f=\"2Checkout-mismatches.xml\"><rule from=\"^http://developers\\.2checkout\\.com/\" to=\"https://developers.2checkout.com/\"/></ruleset>", "<ruleset name=\"2Checkout (partial)\" f=\"2Checkout.xml\"><securecookie host=\"^shopping\\.2co\\.com$\" name=\".*\"/><securecookie host=\"^\\.2checkout\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?2checkout\\.com/\" to=\"https://www.2checkout.com/\"/><rule from=\"^http://(shopping|www)\\.2co\\.com/\" to=\"https://$1.2co.com/\"/></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)\" f=\"2K_Games.xml\"><securecookie host=\".+\\.2kgames\\.com\" name=\".+\"/><rule from=\"^http://2kgames\\.com/\" to=\"https://www.2kgames.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"2K Sports.com\" f=\"2K_Sports.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"2 Ton.com.au\" 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\" f=\"2ch.cm.xml\"><securecookie host=\"^(?:\\.|www\\.)?2ch\\.cm$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"2ch.hk\" f=\"2ch.hk.xml\"><securecookie host=\"^\\.?2ch\\.hk$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?2ch\\.hk/\" to=\"https://2ch.hk/\"/></ruleset>", "<ruleset name=\"2cnt.net\" f=\"2cnt.net.xml\"><securecookie host=\"^ssl-fromcs\\.2cnt\\.net$\" name=\".+\"/><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=\"connection refused\" f=\"2shared.xml\"><securecookie host=\"^(?:.*\\.)?2shared\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?2shared\\.com/\" to=\"https://www.2shared.com/\"/></ruleset>", "<ruleset name=\"30 Boxes.com\" default_off=\"expired\" f=\"30_Boxes.com.xml\"><securecookie host=\"^\\.30boxes\\.com$\" name=\".+\"/><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\" f=\"33option.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"350 (partial)\" f=\"350.xml\"><securecookie host=\"^act\\.350\\.org$\" name=\".+\"/><rule from=\"^http://act\\.350\\.org/\" to=\"https://act.350.org/\"/><rule from=\"^http://pacific\\.350\\.org/(bundl|imag)es/\" to=\"https://posterous.com/$1es/\"/></ruleset>", "<ruleset name=\"350zEvolution.com\" default_off=\"connection refused\" f=\"350zEvolution.com.xml\"><securecookie host=\"^(?:.*\\.)?350zevolution\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"360.cn (partial)\" f=\"360.cn.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></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\" f=\"360_Yield.xml\"><securecookie host=\".*\\.360yield\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?360yield\\.com/\" to=\"https://admin.360yield.com/\"/><rule from=\"^http://ad(min)?\\.360yield\\.com/\" to=\"https://ad$1.360yield.com/\"/></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=\"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://(?:www\\.)?39dollarglasses\\.com/\" to=\"https://www.39dollarglasses.com/\"/></ruleset>", "<ruleset name=\"3DCenter.org (cacert)\" platform=\"cacert\" f=\"3DCenter.org.xml\"><securecookie host=\"^(www|m)?\\.3dcenter\\.org$\" name=\".+\"/><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)\" 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://account\\.3playmedia\\.com/\" to=\"https://account.3playmedia.com/\"/></ruleset>", "<ruleset name=\"3 News\" f=\"3_News.xml\"><securecookie host=\"^(?:www\\.)?3news\\.co\\.nz$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?3news\\.co\\.nz/\" to=\"https://www.3news.co.nz/\"/><rule from=\"^http://cdn\\.3news\\.co\\.nz/\" to=\"https://cdn.mediaworks.co.nz/\"/></ruleset>", "<ruleset name=\"3bbwifi.com\" f=\"3bbwifi.com.xml\"><rule from=\"^http://(?:www\\.)?3bbwifi\\.com/\" to=\"https://www.3bbwifi.com/\"/></ruleset>", "<ruleset name=\"3cdn\" f=\"3cdn.xml\"><rule from=\"^http://(\\w+)\\.3cdn\\.net/\" to=\"https://$1.3cdn.net/\"/></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=\"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\" default_off=\"failed ruleset test\" f=\"3scale.xml\"><securecookie host=\".+\\.3scale\\.net$\" name=\".+\"/><rule from=\"^http://([\\w-]+\\.)?3scale\\.net/\" to=\"https://$13scale.net/\"/></ruleset>", "<ruleset name=\"3suisses.de\" f=\"3suisses.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"3taps\" f=\"3taps.xml\"><securecookie host=\"^developer\\.3taps\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"3v4l.org\" f=\"3v4l.org.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://forum\\.419eater\\.com/\" to=\"https://forum.419eater.com/\"/></ruleset>", "<ruleset name=\"42.ie\" f=\"42.ie.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://www\\.42\\.ie/\" to=\"https://42.ie/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"42Floors.com (partial)\" f=\"42Floors.com.xml\"><securecookie host=\"^(?:www\\.)?42floors\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"435 by MJC.com\" f=\"435_by_MJC.com.xml\"><securecookie host=\"^(?:www)?\\.435bymjc\\.com$\" name=\".+\"/><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=\"451 Unavailable.org\" default_off=\"mismatched\" f=\"451_Unavailable.org.xml\"><securecookie host=\"^(?:www\\.)?451unavailable\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"45 Million Voices\" default_off=\"mismatched\" f=\"45_Million_Voices.xml\"><rule from=\"^http://(?:www\\.)?45millionvoices\\.org/\" to=\"https://45millionvoices.org/\"/></ruleset>", "<ruleset name=\"48months.ie\" default_off=\"failed ruleset test\" f=\"48months.ie.xml\"><securecookie host=\"^community\\.48months\\.ie$\" name=\".+\"/><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=\"mismatch\" 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=\"4RX.com\" default_off=\"failed ruleset test\" f=\"4RX.com.xml\"><securecookie host=\"^\\.4rx\\.com$\" name=\".+\"/><rule from=\"^http://(?:secure\\.|www\\.)?4rx\\.com/\" to=\"https://secure.4rx.com/\"/></ruleset>", "<ruleset name=\"4RunnerForex.com\" default_off=\"failed ruleset test\" f=\"4RunnerForex.com.xml\"><securecookie host=\"^(?:w*\\.)?4runnerforex\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"4Shared (experimental)\" f=\"4Shared.xml\"><exclusion pattern=\"^http://(?:blog|forum)\\.4shared\\.com/\"/><securecookie host=\"^(?:.*\\.)?4shared\\.com$\" name=\".*\"/><rule from=\"^http://([^/:@]*\\.)?4shared\\.com/\" to=\"https://$14shared.com/\"/></ruleset>", "<ruleset name=\"4Tulemar\" platform=\"mixedcontent\" 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=\"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\"><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=\"508surveys.com\" default_off=\"expired\" f=\"508surveys.com.xml\"><securecookie host=\"^508surveys\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?508surveys\\.com/\" to=\"https://508surveys.com/\"/></ruleset>", "<ruleset name=\"511tactical.com\" f=\"511tactical.com.xml\"><rule from=\"^http://(www\\.)?511tactical\\.com/\" to=\"https://www.511tactical.com/\"/></ruleset>", "<ruleset name=\"512 Pixels.net\" default_off=\"mismatched\" f=\"512_Pixels.xml\"><securecookie host=\"^\\.512pixels\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"51 Fanli.net (partial)\" f=\"51_Fanli.net.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://l[1-4]\\.51fanli\\.net/\" to=\"https://l0.51fanli.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"55ch.org\" 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=\"5NINES (partial)\" 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=\"5apps (mismatches)\" default_off=\"tender certificate\" f=\"5apps.com-mismatches.xml\"><securecookie host=\"^help\\.5apps\\.com$\" name=\".*\"/><rule from=\"^http://help\\.5apps\\.com/\" to=\"https://help.5apps.com/\"/></ruleset>", "<ruleset name=\"5apps (partial)\" f=\"5apps.com.xml\"><securecookie host=\"^5apps\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?5apps\\.com/\" to=\"https://5apps.com/\"/><rule from=\"^http://(develop|libs)\\.5apps\\.com/\" to=\"https://$1.5apps.com/\"/></ruleset>", "<ruleset name=\"5min.com (partial)\" 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=\"connection refused\" f=\"6Scan.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"6Wunderkinder (partial)\" default_off=\"mismatch\" 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=\"6xq.net (CAcert)\" platform=\"cacert\" default_off=\"failed ruleset test\" f=\"6xq.net.xml\"><rule from=\"^http://(?:www\\.)?6xq\\.net/\" to=\"https://6xq.net/\"/></ruleset>", "<ruleset name=\"7-Eleven.com (partial)\" 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=\"777coin.com\" f=\"777coin.com.xml\"><securecookie host=\"^(?:\\.|www\\.)?777coin\\.com$\" name=\".+\"/><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\" f=\"7_Elements.co.uk.xml\"><securecookie host=\"^(?:www\\.)?7elements\\.co\\.uk$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"7 Springs.com\" default_off=\"failed ruleset test\" 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=\"80s Purple.com\" default_off=\"failed ruleset test\" 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\" 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\" 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\" f=\"8tracks.xml\"><rule from=\"^http://imgix\\.8tracks\\.com/\" to=\"https://8tracks.imgix.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"8win88win.com\" default_off=\"failed ruleset test\" f=\"8win88win.com.xml\"><securecookie host=\"^\\.8win88win\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"911.gov (partial)\" f=\"911.gov.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"918autoloans.com\" default_off=\"failed ruleset test\" f=\"918autoloans.com.xml\"><securecookie host=\"^\\.918autoloans\\.com$\" name=\".+\"/><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 (partial)\" f=\"9gag.xml\"><exclusion pattern=\"^http://(?:m\\.|www\\.)?9gag\\.com/+(?!(?:about|advertise|faq|login|privacy|recover|signup|tos)(?:$|[?/])|favicon\\.ico|img/)\"/><securecookie host=\"^admin\\.9gag\\.com$\" name=\".+\"/><rule from=\"^http://((?:admin|api|comment|m|www)\\.)?9gag\\.com/\" to=\"https://$19gag.com/\"/><rule from=\"^http://images-cdn\\.9gag\\.com/\" to=\"https://d24w6bsrhbeh9d.cloudfront.net/\"/><rule from=\"^http://assets-9gag-lol\\.9cache\\.com/\" to=\"https://assets-9gag-lol.9cache.com/\"/></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=\"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=\"FSDN.com\" f=\"A.fsdn.com.xml\"><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\" 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\" default_off=\"failed ruleset test\" 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=\"mismatch\" 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=\"a4apphack (partial)\" f=\"A4apphack.xml\"><rule from=\"^http://img\\.a4apphack\\.com/\" to=\"https://s3.amazonaws.com/img.a4apphack.com/\"/></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=\"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\" f=\"AA.xml\"><securecookie host=\"^(?:.*\\.)aa\\.com$\" 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\" f=\"AACQA.xml\"><rule from=\"^http://(?:www\\.)?aacqa\\.gov\\.au/\" to=\"https://www.aacqa.gov.au/\"/></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)\" 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)\" 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://pervasive\\.aau\\.at/\" to=\"https://pervasive.aau.at/\"/></ruleset>", "<ruleset name=\"AB9IL.net\" f=\"AB9IL.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ABC Music Publishing\" default_off=\"mismatch\" 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\" 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)\" 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\" default_off=\"failed ruleset test\" 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\" 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 Louisiana\" f=\"ACLU-of-Louisiana.xml\"><rule from=\"^http://(?:www\\.)?laaclu\\.org/\" to=\"https://www.laaclu.org/\"/></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 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\" f=\"ACLU.xml\"><securecookie host=\"^secure\\.aclu\\.org$\" name=\".+\"/><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=\"^(?:www\\.)?aclunc\\.org$\" 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\" 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://track\\.adcocktail\\.com/\" to=\"https://track.adcocktail.com/\"/></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=\"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\" default_off=\"failed ruleset test\" 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=\"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\" 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://afnic\\.fr/[^?]*(\\?.*)?\" to=\"https://www.afnic.fr/$1\"/><rule from=\"^http://www\\.(sandbox\\.)?afnic\\.fr/\" to=\"https://www.$1afnic.fr/\"/></ruleset>", "<ruleset name=\"AFP548.com (false MCB)\" platform=\"mixedcontent\" f=\"AFP548.com-falsemixed.xml\"><securecookie host=\"^afp548\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AFP548.com (partial)\" f=\"AFP548.com.xml\"><rule from=\"^http://(www\\.)?afp548\\.com/(?=favicon\\.ico|wp-content/|wp-includes/)\" to=\"https://$1afp548.com/\"/></ruleset>", "<ruleset name=\"AFRA-Berlin.de\" f=\"AFRA-Berlin.de.xml\"><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\" 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=\"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)\" 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)\" default_off=\"mismatched\" f=\"AJC.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AJ's Ski &amp; 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\" 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)\" default_off=\"failed ruleset test\" f=\"AK_Vorrat.org.xml\"><rule from=\"^http://listen\\.akvorrat\\.org/\" to=\"https://listen.akvorrat.org/\"/></ruleset>", "<ruleset name=\"ALA.org (partial)\" 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\" 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\" 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=\"A.M. Best Company (partial)\" default_off=\"failed ruleset test\" f=\"AM-Best-Company.xml\"><securecookie host=\"^www3\\.ambest\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?ambest\\.com/(CSS|SpryAssets)/\" to=\"https://www3.ambest.com/$1/\"/><rule from=\"^http://(?:www\\.)?ambest\\.com/images/\" to=\"https://www3.ambest.com/simages/\"/><rule from=\"^http://www3\\.ambest\\.com/\" to=\"https://www3.ambest.com/\"/><rule from=\"^http://dev-www3/\" to=\"https://www3.ambest.com/\"/></ruleset>", "<ruleset name=\"AMC TV.com (partial)\" platform=\"mixedcontent\" 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 (partial)\" f=\"AMS.org.xml\"><rule from=\"^http://(www\\.)?ams\\.org/(?=animated_favicon1\\.gif|css/|favicon\\.ico|images/)\" to=\"https://$1ams.org/\"/></ruleset>", "<ruleset name=\"AMSl.com\" f=\"AMSl.com.xml\"><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=\"ANB\" default_off=\"failed ruleset test\" 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\" 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\" f=\"AOL-Advertising.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AOL (mismatches)\" default_off=\"mismatch\" 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)\" f=\"AOL.co.uk.xml\"><exclusion pattern=\"^http://uktools\\.aol\\.co\\.uk/(?!media/)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AOL.com (partial)\" f=\"AOL.xml\"><exclusion pattern=\"^http://my\\.screenname\\.aol\\.com/_cqr/logout/\"/><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\"><exclusion pattern=\"^http://o\\.aolcdn\\.com/(?:hss/storage(?!/adam/|/midas/)|mars|myfeeds|portaleu|winamp/dp)/\"/><rule from=\"^http://o3?\\.aolcdn\\.com/\" to=\"https://s.aolcdn.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AOL On Network.com (partial)\" 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\"><rule from=\"^http://my\\.apa\\.org/\" to=\"https://my.apa.org/\"/><securecookie host=\"^my\\.apa\\.org$\" name=\".*\"/></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)\" f=\"APAN.org.xml\"><securecookie host=\"^(?:\\w+\\.)?apan\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"APC Magazine\" default_off=\"connection 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\" f=\"APM.com.xml\"><securecookie host=\"^(?:myapm|www)\\.apm\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"APN News &amp; Media (partial)\" default_off=\"failed ruleset test\" f=\"APN_News_and_Media.xml.xml\"><rule from=\"^http://media2\\.apnonline\\.com\\.au/\" to=\"https://d159yll7hxyh2o.cloudfront.net/\"/></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)\" 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=\"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\" default_off=\"failed ruleset test\" 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 (partial)\" f=\"ASDA.xml\"><securecookie host=\"^.+\\.asda\\.com$\" name=\".+\"/><rule from=\"^http://credit-card\\.asda\\.com/$\" to=\"https://apply.creation.co.uk/apply/index.html?brandCode=asda_colleague\"/><rule from=\"^http://credit-card\\.asda\\.com/(?!$)\" to=\"https://apply.creation.co.uk/\"/><rule from=\"^http://(cards|(?:ipadkiosk\\.)?direct|email|i(?:\\.|\\d-)groceries|grocieries-qa2|money|online-account-manager|pulse|tradein)\\.asda\\.com/\" to=\"https://$1.asda.com/\"/><rule from=\"^http://omniture\\.groceries\\.asda\\.com/\" to=\"https://groceries.asda.com.d2.sc.omtrdc.net/\"/><rule from=\"^http://survey\\.asda\\.com/(?:\\?.*)?$\" to=\"https://www.emailvision.com/\"/></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/)\"/><exclusion pattern=\"^http://www\\.asus\\.com/zenbook(?:$|[?/])\"/><securecookie host=\"^\\.asus\\.com$\" name=\"^frontend$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://autodiscover\\.asus\\.com/.*\" to=\"https://mymail.asus.com/owa/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ATBank\" default_off=\"failed ruleset test\" 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&amp;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://ssl\\.atbar\\.org/\" to=\"https://ssl.atbar.org/\"/></ruleset>", "<ruleset name=\"aTech.io\" 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\" 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=\"AVM.de (missing certificate chain)\" default_off=\"missing certificate chain\" f=\"AVM.de-problematic.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AVON.cz\" f=\"AVON.cz.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AWEmpire.com (expired)\" default_off=\"expired\" f=\"AWEmpire.com-problematic.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\" default_off=\"failed ruleset test\" 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\" 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\" default_off=\"failed ruleset test\" 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=\"AAAI.org\" f=\"Aaai.org.xml\"><rule from=\"^http://aaai\\.org/\" to=\"https://www.aaai.org/\"/><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)\" 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\" 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://aaronparecki\\.com/\" to=\"https://aaronparecki.com/\"/></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=\"Aaulan.dk\" 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=\"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)\" default_off=\"failed ruleset test\" f=\"AbenteuerLand.at.xml\"><rule from=\"^http://psara\\.abenteuerland\\.at/\" to=\"https://psara.abenteuerland.at/\"/></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)\" 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 (mismatches)\" default_off=\"expired, self-signed\" f=\"Aberystwyth-University-mismatches.xml\"><securecookie host=\"^connect\\.aber\\.ac\\.uk$\" name=\".+\"/><rule from=\"^http://connect\\.aber\\.ac\\.uk/\" to=\"https://connect.aber.ac.uk/\"/></ruleset>", "<ruleset name=\"Aberystwyth University (partial)\" f=\"Aberystwyth-University.xml\"><exclusion pattern=\"^http://cadair\\.aber\\.ac\\.uk/(?!dspace/ldap-login)\"/><exclusion pattern=\"^http://(?:connect|www\\.inf|jump|nexus|users)\\.\"/><exclusion pattern=\"^http://primo\\.aber\\.ac\\.uk(?:80)?/primo_library/libweb/\"/><securecookie host=\"^[^cp][\\w\\.]+\\.aber\\.ac\\.uk$\" name=\".+\"/><rule from=\"^http://(?:beta\\.)?aber\\.ac\\.uk/\" to=\"https://www.aber.ac.uk/\"/><rule from=\"^http://([\\w\\.]+)\\.aber\\.ac\\.uk/\" to=\"https://$1.aber.ac.uk/\"/></ruleset>", "<ruleset name=\"abftracker.com\" f=\"Abftracker.com.xml\"><rule from=\"^http://affiliate\\.abftracker\\.com/\" to=\"https://affiliate.abftracker.com/\"/></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\" f=\"Abila.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Abiliba\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Abiliba.xml\"><securecookie host=\"^secure\\.abiliba\\.net$\" name=\".*\"/><rule from=\"^http://(?:secure\\.|www\\.)?abiliba\\.net/\" to=\"https://secure.abiliba.net/\"/></ruleset>", "<ruleset name=\"Abine.com\" f=\"Abine.xml\"><securecookie host=\"^(?:w*\\.)?abine\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AbleGamers\" default_off=\"failed ruleset test\" f=\"AbleGamers.xml\"><securecookie host=\"^www\\.ablegamers\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"abma.de\" default_off=\"self-signed\" f=\"Abma.de.xml\"><rule from=\"^http://(?:ssl|www)\\.abma\\.de/\" to=\"https://abma.de/\"/><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)\" f=\"About-Ads.xml\"><exclusion pattern=\"^http://(?:www\\.)?aboutads\\.info/(?:choices)/\"/><rule from=\"^http://(?:www\\.)?aboutads\\.info/\" to=\"https://www.aboutads.info/\"/></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=\"^www\\.aboutmyvote\\.co\\.uk$\" 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\" 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=\"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\" 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://a\\.academia-assets\\.com/\" to=\"https://a.academia-assets.com/\"/></ruleset>", "<ruleset name=\"Academia.edu (partial)\" f=\"Academia.edu.xml\"><rule from=\"^http://(assets|images|photos)\\.academia\\.edu/\" to=\"https://s3.amazonaws.com/academia.edu.$1/\"/><rule from=\"^http://(independent\\.|www\\.)?academia\\.edu/\" to=\"https://$1academia.edu/\"/></ruleset>", "<ruleset name=\"academics.de\" 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=\"Accela Communications (partial)\" default_off=\"failed ruleset test\" f=\"Accela-Communications.xml\"><securecookie host=\"^.*\\.accelacomm\\.com$\" name=\".*\"/><securecookie host=\"^(?:.*\\.)?accelaworks\\.com$\" name=\".*\"/><rule from=\"^http://accelacomm\\.com/\" to=\"https://www.accelacomm.com/\"/><rule from=\"^http://(reg|www)\\.accelacomm\\.com/\" to=\"https://$1.accelacomm.com/\"/><rule from=\"^http://(www\\.)?accelaworks\\.com/\" to=\"https://$1accelaworks.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://secure\\.acceptiva\\.com/\" to=\"https://secure.acceptiva.com/\"/></ruleset>", "<ruleset name=\"access-kaiseki-tools.com\" f=\"Access-kaiseki-tools.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AccessGuardian.com\" f=\"AccessGuardian.com.xml\"><securecookie host=\"^(?:www\\.)?accessguardian\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AccessLabs\" default_off=\"failed ruleset test\" f=\"AccessLabs.xml\"><securecookie host=\"^(?:www\\.)?accesslabs\\.(?:net|org)$\" 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\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AccessPrivacy.ca\" 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)\" 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=\"Access to Justice.gov.au\" default_off=\"expired\" f=\"AccesstoJustice.xml\"><rule from=\"^http://accesstojustice\\.gov\\.au/\" to=\"https://www.accesstojustice.gov.au/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"accesstrade.net (partial)\" f=\"Accesstrade.net.xml\"><securecookie host=\"^member\\.accesstrade\\.net$\" name=\".+\"/><rule from=\"^http://member\\.accesstrade\\.net/\" to=\"https://member.accesstrade.net/\"/></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)\" f=\"AccuWeather.xml\"><securecookie host=\"^enterpriseportal\\.accuweather\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Accuen (problematic)\" default_off=\"connection refused\" f=\"Accuen-problematic.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Accuen (partial)\" default_off=\"connection dropped\" f=\"Accuen.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Accuvant.com\" 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=\"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=\"Achelem.org (partial)\" default_off=\"self-signed\" f=\"Achelem.org.xml\"><securecookie host=\"^mail\\.achelem\\.org$\" name=\".+\"/><rule from=\"^http://mail\\.achelem\\.org/\" to=\"https://mail.achelem.org/\"/></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\" 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\" 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=\"acrocomcontent.com\" f=\"Acrocomcontent.com.xml\"><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=\"Act.demandprogress.org\" f=\"Act.demandprogress.org.xml\"><rule from=\"^http://act\\.demandprogress\\.org/\" to=\"https://act.demandprogress.org/\"/></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=\"actionallocator.com\" default_off=\"failed ruleset test\" f=\"Actionallocator.com.xml\"><securecookie host=\"^(?:www)?\\.actionallocator\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?actionallocator\\.com/\" to=\"https://www.actionallocator.com/\"/></ruleset>", "<ruleset name=\"activatejavascript.org\" default_off=\"mismatch\" 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\" f=\"Active_static.net.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://cloud\\.aculab\\.com/\" to=\"https://cloud.aculab.com/\"/></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\" default_off=\"failed ruleset test\" f=\"Acxiom-online.com.xml\"><rule from=\"^http://p\\.acxiom-online\\.com/\" to=\"https://p.acxiom-online.com/\"/></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://ads\\.ad-center\\.com/\" to=\"https://ads.ad-center.com/\"/></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://r\\.ad6media\\.fr/\" to=\"https://r.ad6media.fr/\"/></ruleset>", "<ruleset name=\"AdBit.co\" f=\"AdBit.co.xml\"><securecookie host=\"^\\.?adbit\\.co$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AdBlock\" f=\"AdBlock.xml\"><rule from=\"^http://(www\\.)?getadblock\\.com/\" to=\"https://$1getadblock.com/\"/><rule from=\"^http://support\\.getadblock\\.com/(?=favicon\\.ico|help/theme\\.css|pkg/|stylesheets/)\" to=\"https://help.tenderapp.com/\"/><rule from=\"^http://(?:www\\.)?chromeadblock\\.com/\" to=\"https://chromeadblock.com/\"/></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)\" 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 (buggy)\" default_off=\"trips on its own referrers\" f=\"AdF.ly.xml\"><securecookie host=\"^adf\\.ly$\" name=\".+\"/><securecookie host=\"^\\.adf\\.ly$\" name=\"^(?:adf[12]|__cfduid|FLYSESSID)$\"/><rule from=\"^http://(www\\.)?adf\\.ly/\" to=\"https://$1adf.ly/\"/><rule from=\"^http://cdn\\.adf\\.ly/\" to=\"https://adf.ly/\"/></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)\" 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)\" 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=\"^(?:www\\.)?admatrix\\.jp$\" 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://adserver\\.adreactor\\.com/\" to=\"https://adserver.adreactor.com/\"/></ruleset>", "<ruleset name=\"AdRiver.ru (partial)\" 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\" 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\" 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)\" 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)\" default_off=\"failed ruleset test\" 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)\" 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)\" f=\"Adaptec.com.xml\"><rule from=\"^http://(?:www\\.)?adaptec\\.com/\" to=\"https://www.adaptec.com/\"/></ruleset>", "<ruleset name=\"Adapteva.com (partial)\" f=\"Adapteva.com.xml\"><rule from=\"^http://shop\\.adapteva\\.com/\" to=\"https://adapteva.myshopify.com/\"/></ruleset>", "<ruleset name=\"Adaptive Computing (partial)\" 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=\"Adblade.com (partial)\" f=\"Adblade.xml\"><exclusion pattern=\"^http://(?:www\\.)?adblade\\.com/+(?!css/|favicon\\.ico|images/|img/|registration/)\"/><securecookie host=\"^\\.adblade\\.com$\" name=\"^__sgs$\"/><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\" 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=\"mismatch\" 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\" 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 (partial)\" f=\"AddThis.xml\"><exclusion pattern=\"^http://(?:www\\.)?addthis\\.com/(?!bookmark\\.php|blog(?:$|\\?|/)|download/|images/|(?:get(?:/just-analytics|/sharing|/trending)?|landing|login|press|register)(?:$|\\?))\"/><securecookie host=\"^\\.addthis.com$\" name=\"^(?:__atuvc|di|uid|xtc)$\"/><rule from=\"^http://(www\\.)?addthis\\.com/get($|\\?)\" to=\"https://$1addthis.com/get/sharing$2\"/><rule from=\"^http://((?:api|cache|cf|ct\\d|ds|m|s[3579u]|secure|www)\\.)?addthis\\.com/\" to=\"https://$1addthis.com/\"/><rule from=\"^http://cache\\.addthiscdn\\.com/\" to=\"https://cache.addthiscdn.com/\"/></ruleset>", "<ruleset name=\"AddThisedge.com\" f=\"AddThisedge.com.xml\"><rule from=\"^http://m\\.addthisedge\\.com/\" to=\"https://m.addthisedge.com/\"/></ruleset>", "<ruleset name=\"AddToAny.com\" f=\"AddToAny.xml\"><securecookie host=\"^(?:\\.static)?\\.addtoany\\.com$\" name=\".+\"/><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\" default_off=\"failed ruleset test\" 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=\"addy.co\" f=\"Addy.co.xml\"><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=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"adentifi.com\" f=\"Adentifi.com.xml\"><securecookie host=\"^(?:www\\.)?adentifi\\.com$\" 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\" f=\"Adform.xml\"><securecookie host=\"^www\\.adform\\.com$\" name=\".+\"/><securecookie host=\"^\\.adform\\.net$\" name=\".+\"/><securecookie host=\"^track\\.adform\\.net$\" name=\".+\"/><securecookie host=\"^\\.adformdsp\\.net$\" name=\".+\"/><securecookie host=\"^server\\.adformdsp\\.net$\" name=\".+\"/><rule from=\"^http://adform\\.com/\" to=\"https://www.adform.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Adgenie.co.uk (partial)\" f=\"Adgenie.co.uk.xml\"><rule from=\"^http://adverts\\.adgenie\\.co\\.uk/\" to=\"https://adverts.adgenie.co.uk/\"/></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://ad\\.afy11\\.net/\" to=\"https://ad.afy11.net/\"/></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 (partial)\" f=\"Adingo.xml\"><securecookie host=\"^product\\.adingo\\.jp$\" name=\".+\"/><rule from=\"^http://www\\.adingo\\.jp/\" to=\"https://adingo.jp/\"/><rule from=\"^http://product\\.adingo\\.jp\\.eimg\\.jp/\" to=\"https://product.adingo.jp/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"adis.ws\" f=\"Adis.ws.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"adition.com (partial)\" f=\"Adition.com.xml\"><exclusion pattern=\"^http://(?:en|www)\\.adition\\.com/\"/><securecookie host=\"^(?:ad1)?\\.adfarm1\\.adition\\.com$\" name=\".+\"/><rule from=\"^http://([\\w+\\.-]+)\\.adition\\.com/\" to=\"https://$1.adition.com/\"/></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\" 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\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://cdn\\.adnxs\\.com/\" to=\"https://secure.adnxs.com/\"/><rule from=\"^http://(\\w+|cdn\\.oas-c18)\\.adnxs\\.com/\" to=\"https://$1.adnxs.com/\"/></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\" 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\" 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\" 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\" 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=\"adshostnet.com\" default_off=\"failed ruleset test\" f=\"Adshostnet.com.xml\"><rule from=\"^http://n5\\.adshostnet\\.com/\" to=\"https://n5.adshostnet.com/\"/></ruleset>", "<ruleset name=\"Adsimilis\" platform=\"mixedcontent\" 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)\" 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 (partial)\" f=\"Adult-FriendFinder.xml\"><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\" f=\"AdultShopping.com.xml\"><securecookie host=\"^(?:admin|affiliates|checkout|secure|www)\\.adultshopping\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AdultWork.com (partial)\" default_off=\"failed ruleset test\" f=\"AdultWork.com.xml\"><securecookie host=\"^(?:www\\.)?adultwork\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Adult Toys 4 U.com\" f=\"Adult_Toys_4_U.com.xml\"><securecookie host=\"^\\.www\\.adulttoys4u\\.com\\.au$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AWEmpire.com (partial)\" f=\"Adult_Webmaster_Empire.xml\"><securecookie host=\"^\\.awempire\\.com$\" name=\"^awesec_session$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"adultcineporn.com\" default_off=\"connection refused\" f=\"Adultcineporn.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Advance Digital (partial)\" f=\"Advance_Digital.xml\"><rule from=\"^http://blog\\.advance\\.net/\" to=\"https://blog.advance.net/\"/></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)\" 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=\"Adversary\" default_off=\"self-signed\" f=\"Adversary.org.xml\"><rule from=\"^http://(?:www\\.)?adversary\\.org/\" to=\"https://www.adversary.org/\"/></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\" 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://r\\.advg\\.jp/\" to=\"https://r.advg.jp/\"/></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\" 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=\"mismatch\" 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)\" 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://metrics\\.adzip\\.co/\" to=\"https://metrics.adzip.co/\"/></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=\"Aeolus\" default_off=\"failed ruleset test\" f=\"Aeolus.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Aeon.co (partial)\" default_off=\"expired, self-signed\" platform=\"mixedcontent\" f=\"Aeon.co.xml\"><rule from=\"^http://(?:www\\.)?aeon\\.co/\" to=\"https://aeon.co/\"/></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=\"aerio.biz\" f=\"Aerio.biz.xml\"><rule from=\"^http://www\\.aerio\\.biz/\" to=\"https://www.aerio.biz/\"/></ruleset>", "<ruleset name=\"AeroFS.com\" 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&#233;roports de Montr&#233;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=\"Aesload.de\" default_off=\"failed ruleset test\" f=\"Aesload.de.xml\"><rule from=\"^http://(?:www\\.)?aesload\\.de/\" to=\"https://www.aesload.de/\"/></ruleset>", "<ruleset name=\"Aether Flyff.com (false MCB)\" platform=\"mixedcontent\" f=\"AetherFlyff.com-falsemixed.xml\"><exclusion pattern=\"^http://basilisk\\.aetherflyff\\.com/+(?!forums(?!/favicon\\.ico|/index\\.php\\?app=core&amp;module=task|/public/|/uploads/))\"/><exclusion pattern=\"^http://support\\.aetherflyff\\.com/+(?:cron/index\\.php\\?/Base/|favicon\\.ico|index\\.php\\?/Core/|__swift/)\"/><securecookie host=\"^(?:\\.basilisk|support)?\\.aetherflyff\\.com$\" name=\".+\"/><rule from=\"^http://(basilisk|support)\\.aetherflyff\\.com/\" to=\"https://$1.aetherflyff.com/\"/></ruleset>", "<ruleset name=\"Aether Flyff.com (partial)\" default_off=\"failed ruleset test\" f=\"AetherFlyff.com.xml\"><exclusion pattern=\"^http://basilisk\\.aetherflyff\\.com/+forums(?!/favicon\\.ico|/index\\.php\\?app=core&amp;module=task|/public/|/uploads/)\"/><exclusion pattern=\"^http://support\\.aetherflyff\\.com/+(?!cron/index\\.php\\?/Base/|favicon\\.ico|index\\.php\\?/Core/|__swift/)\"/><rule from=\"^http://((?:basilisk|support|www)\\.)?aetherflyff\\.com/\" to=\"https://$1aetherflyff.com/\"/></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=\"Affair-Guide.com (false MCB)\" platform=\"mixedcontent\" f=\"Affair-Guide.com-falsemixed.xml\"><securecookie host=\"^\\.?affair-guide\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Affair-Guide.com (partial)\" f=\"Affair-Guide.com.xml\"><rule from=\"^http://(www\\.)?affair-guide\\.com/(?=favicon\\.ico|wp-content/|wp-includes/)\" to=\"https://$1affair-guide.com/\"/></ruleset>", "<ruleset name=\"Affec.tv (partial)\" f=\"Affec.tv.xml\"><securecookie host=\"^\\.go\\.affec\\.tv$\" name=\".+\"/><rule from=\"^http://go\\.affec\\.tv/\" to=\"https://go.affec.tv/\"/></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=\"^\\.affiliatetracking\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?affiliatetracking\\.com/\" to=\"https://affiliatetracking.com/\"/></ruleset>", "<ruleset name=\"affility.com (partial)\" f=\"Affility.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Affinix.com (partial)\" default_off=\"expired\" f=\"Affinix.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\" 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\" 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\" default_off=\"failed ruleset test\" f=\"Aftonbladet-CDN.se.xml\"><rule from=\"^http://gfx2?\\.aftonbladet-cdn\\.se/\" to=\"https://www.aftonbladet.se/\"/></ruleset>", "<ruleset name=\"Aftonbladet.se (partial)\" default_off=\"failed ruleset test\" 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\" 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\" default_off=\"failed ruleset test\" 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=\"Age of Mine.com\" 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=\"mismatch\" 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\" 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=\"AgileBits\" f=\"AgileBits.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://(?:www\\.)?agilewebsolutions\\.com/\" to=\"https://agilebits.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=\"Agnitum\" default_off=\"failed ruleset test\" f=\"Agnitum.com.xml\"><rule from=\"^http://www\\.agnitum\\.com/\" to=\"https://www.agnitum.com/\"/><rule from=\"^http://agnitum\\.com/\" to=\"https://www.agnitum.com/\"/></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\" default_off=\"failed ruleset test\" f=\"Agora_Voting.com.xml\"><securecookie host=\"^\\.agoravoting\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"agra-net.com (partial)\" 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\" 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=\"aidsmap.com\" 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\" default_off=\"expired\" f=\"Aioe.org.xml\"><rule from=\"^http://(?:www\\.)?aioe\\.org/\" to=\"https://aioe.org/\"/></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=\"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=\"^\\.airbnb\\.(?:ca|co\\.kr|co\\.uk|com|com\\.au|com\\.br|de|es|fr|it|jp|ru)$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?airbnb\\.(ca|co\\.kr|co\\.uk|com|com\\.au|com\\.br|de|es|fr|it|jp|ru)/\" to=\"https://www.airbnb.$1/\"/><rule from=\"^http://(m\\.|www\\.)?airbnb\\.com/\" to=\"https://$1airbnb.com/\"/><rule from=\"^http://a(0|1)\\.muscache\\.com/\" to=\"https://a$1.muscache.com/\"/></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\" default_off=\"expired, self-signed\" f=\"Airs.xml\"><rule from=\"^http://(?:www\\.)?airs\\.com/\" to=\"https://airs.com/\"/></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=\"mismatch\" f=\"Airshow-Journal.xml\"><rule from=\"^http://(\\w+)\\.airshowjournal\\.com/\" to=\"https://$1.airshowjournal.com/\"/></ruleset>", "<ruleset name=\"AirsoftGI.com\" 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=\"AkademikerF&#246;rs&#228;kring.se\" default_off=\"failed ruleset test\" f=\"AkademikerForsakring.se.xml\"><rule from=\"^http://(?:www\\.)?akademikerf[o&#246;]rs[a&#228;]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=\"mismatch\" f=\"Akamai-mismatches.xml\"><rule from=\"^http://(\\w+\\.\\w+)\\.edgesuite\\.net/\" to=\"https://$1.edgesuite.net/\"/></ruleset>", "<ruleset name=\"Akamai.com (partial)\" f=\"Akamai.com.xml\"><securecookie host=\"^\\.\" name=\"^_(?:_qca|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/\"/><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=\"Aktien Check.de (partial)\" default_off=\"expired, self-signed\" f=\"Aktien_Check.de.xml\"><rule from=\"^http://partner\\.aktiencheck\\.de/\" to=\"https://partner.aktiencheck.de/\"/></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\" 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-akhbar\" f=\"Al-akhbar.xml\"><securecookie host=\"^(?:english)?\\.al-akhbar\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Alain Wolf.ch\" f=\"Alain_Wolf.ch.xml\"><securecookie host=\"^\\.alainwolf\\.ch$\" 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=\"mismatch\" 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&#8217;s Place\" platform=\"mixedcontent\" f=\"Alastairs-Place.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"albinoloverats\" f=\"Albinoloverats.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AlbumArsiv.com\" 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)\" 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=\"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\" f=\"Alecomm.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AlertBot\" f=\"AlertBot.xml\"><securecookie host=\"^w*\\.alertbot\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?alertbot\\.com/\" to=\"https://www.alertbot.com/\"/></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=\"Alexhaydock.co.uk\" f=\"Alexhaydock.co.uk.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"alfa Media Partner (partial)\" default_off=\"failed ruleset test\" 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=\"Alfresco.com\" f=\"Alfresco.com.xml\"><securecookie host=\"^my\\.alfresco\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Algolia.com\" f=\"Algolia.com.xml\"><securecookie host=\"^www\\.algolia\\.com$\" name=\".+\"/><rule from=\"^http://((?:blog|hn|status|www)\\.)?algolia\\.com/\" to=\"https://$1algolia.com/\"/></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=\"AliCDN.com (partial)\" f=\"AliCDN.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AliExpress.com (partial)\" f=\"AliExpress.com.xml\"><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\" default_off=\"failed ruleset test\" f=\"Alias.io.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Alibaba.com (partial)\" f=\"Alibaba.xml\"><securecookie host=\"^\\.alibaba\\.com$\" name=\"^ali_beacon_id$\"/><securecookie host=\"^(?:102|escrow|job|security)\\.alibaba\\.com$\" name=\".+\"/><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\" 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)\" default_off=\"mismatched\" f=\"Aliimg.com.xml\"><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 (javascript loop)\" default_off=\"js redirect to http\" f=\"Alipay.com-noscript.xml\"><securecookie host=\"^fun\\.alipay\\.com$\" name=\".+\"/><rule from=\"^http://fun\\.alipay\\.com/\" to=\"https://fun.alipay.com/\"/></ruleset>", "<ruleset name=\"Alipay.com (partial)\" f=\"Alipay.com.xml\"><securecookie host=\"^(?!fun\\.).*\\.alipay\\.com$\" name=\".+\"/><rule from=\"^http://alipay\\.com/\" to=\"https://www.alipay.com/\"/><rule from=\"^http://job\\.alipay\\.com/\" to=\"https://job.alibaba.com/\"/><rule from=\"^http://static\\.alipayobjects\\.com/\" to=\"https://a.alipayobjects.com/\"/><rule from=\"^http://pic\\.alipayobjects\\.com/\" to=\"https://i.alipayobjects.com/\"/><rule from=\"^http://fun\\.alipay\\.com/favicon.ico$\" to=\"https://fun.alipay.com/favicon.ico\"/><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=\"^(?:account|buy|(?:bsn|workorder)\\.console|finance|workorder)\\.aliyun\\.com$\" 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)\" default_off=\"failed ruleset test\" f=\"AllDebrid.com.xml\"><securecookie host=\"^(?:w*\\.)?alldebrid\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AllDebrid.fr\" f=\"AllDebrid.fr.xml\"><securecookie host=\"^(?:www\\.)?alldebrid\\.fr$\" 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\" 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\"><securecookie host=\"^.*\\.allshareplay\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?allshareplay\\.com/\" to=\"https://www.allshareplay.com/\"/><rule from=\"^http://(fwk|m)\\.allshareplay\\.com/\" to=\"https://$1.allshareplay.com/\"/></ruleset>", "<ruleset name=\"AllThingsD.com (mismatched)\" default_off=\"mismatched\" f=\"AllThingsD.com-problematic.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AllThingsD (partial)\" default_off=\"failed ruleset test\" 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\" default_off=\"failed ruleset test\" 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=\"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&#252;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\" default_off=\"failed ruleset test\" 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)\" 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=\"allmyvideos.net (partial)\" f=\"Allmyvideos.net.xml\"><securecookie host=\"^(?:api|cacti)?\\.allmyvideos\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Alloscomp.com\" platform=\"cacert\" default_off=\"expired\" f=\"Alloscomp.com.xml\"><rule from=\"^http://(?:www\\.)?alloscomp\\.com/\" to=\"https://www.alloscomp.com/\"/></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\" default_off=\"expired, self-signed\" f=\"Alltop.xml\"><rule from=\"^http://(?:www\\.)?alltop\\.com/\" to=\"https://alltop.com/\"/></ruleset>", "<ruleset name=\"AllTube Download\" f=\"AlltubeDownload.xml\"><rule from=\"^http://(www\\.)?alltubedownload\\.net/\" to=\"https://alltube.herokuapp.com/\"/></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)\" platform=\"mixedcontent\" f=\"Alpine_Linux.org.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AlreadyHosting.com (partial)\" default_off=\"connection 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 (partial)\" f=\"AlterNet.xml\"><exclusion pattern=\"^http://(?:www\\.)?alternet\\.org/(?!images/)\"/><exclusion pattern=\"^http://beta\\.alternet\\.org/+(?!sandbox/)\"/><rule from=\"^http://blogs\\.alternet\\.org/speakeasy/wp-content/avatars/\" to=\"https://images.alternet.org/images/avatars/\"/><rule from=\"^http://((?:beta|donate|files|images|www)\\.)?alternet\\.org/\" to=\"https://$1alternet.org/\"/></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)\" f=\"AlternC.xml\"><securecookie host=\"^(?:www\\.)?alternc\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AlternaLabs (partial)\" f=\"AlternaLabs.xml\"><rule from=\"^http://(www\\.)?alternalabs\\.com/(assets/|favicon\\.ico|wp-content/)\" to=\"https://$1alternalabs.com/$2\"/></ruleset>", "<ruleset name=\"Alternate\" platform=\"mixedcontent\" 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\" default_off=\"failed ruleset test\" f=\"Alternatif_Bilisim.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\" 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 (mismatches)\" default_off=\"Akamai certificate, expired\" f=\"Alticore-mismatches.xml\"><securecookie host=\"^(?:.*\\.)?amwaygrand\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?amwaygrand\\.com/\" to=\"https://www.amwaygrand.com/\"/><rule from=\"^http://lauramercier\\.ugc\\.bazaarvoice\\.com/\" to=\"https://lauramercier.ugc.bazaarvoice.com/\"/></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://(www\\.)?altmetric.com/blog/\"/><rule from=\"^https://(www\\.)?altmetric\\.com/blog/\" to=\"http://$1altmetric.com/blog/\" downgrade=\"1\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AltonTowers (broken)\" default_off=\"broken\" f=\"AltonTowers.xml\"><securecookie host=\"^(?:.+\\.)?altontowers\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?altontowers\\.com/\" to=\"https://www.altontowers.com/\"/></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\" 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)\" default_off=\"failed ruleset test\" 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://cdnsecureservep1\\.amexserve-static\\.com/\" to=\"https://cdnsecureservep1.amexserve-static.com/\"/></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)\" 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 (false MCB)\" platform=\"mixedcontent\" f=\"Amara.xml\"><securecookie host=\"^www\\.amara\\.org$\" name=\".+\"/><rule from=\"^https?://(www\\.)?amara\\.org/\" to=\"https://www.amara.org/\"/></ruleset>", "<ruleset name=\"amazingweb\" f=\"Amazingweb.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Amazon-Adsystem.com (partial)\" 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 Associates\" f=\"Amazon-Associates.xml\"><securecookie host=\"^widgets\\.amazon\\.com$\" name=\".+\"/><rule from=\"^http://rcm-images\\.amazon\\.com/\" to=\"https://images-na.ssl-images-amazon.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"astore.Amazon.com\" default_off=\"sometimes returns 500\" f=\"Amazon.com.astore.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Amazon.jobs\" f=\"Amazon.jobs.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Amazon (needs feedback)\" default_off=\"needs testing and feedback\" f=\"Amazon.xml\"><exclusion pattern=\"^http://askville\\.amazon\\.com/(?!css/)\"/><exclusion pattern=\"^http://www\\.amazon\\.[^/]+/+(?!|$|\\?|(?:.+/)?(?:b|business|gp/(?:browse\\.html|search)|mn/search|s)(?:$|[?/]))\"/><securecookie host=\"^local\\.amazon\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?amazon\\.c(a|n|om)/mn/search/uedata/\" to=\"https://www.amazon.c$1/uedata/\"/><rule from=\"^http://(?:www\\.)?amazon\\.c(a|n|om)/\" to=\"https://www.amazon.c$1/\"/><rule from=\"^http://(askville|developer|local)\\.amazon\\.com/\" to=\"https://$1.amazon.com/\"/></ruleset>", "<ruleset name=\"Amazon Web Services (break zoom)\" default_off=\"breaks image zoom\" f=\"AmazonAWS-breakzoom.xml\"><rule from=\"^http://ecx\\.images-amazon\\.com/\" to=\"https://images-na.ssl-images-amazon.com/\"/></ruleset>", "<ruleset name=\"Amazon Web Services\" f=\"AmazonAWS.xml\"><exclusion pattern=\"^http://webservices\\.amazon\\.com/scratchpad/\"/><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://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|payments|sis|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=\"AmazonSupply.com\" f=\"AmazonSupply.com.xml\"><securecookie host=\"^(?:staging|www)?\\.amazonsupply\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Amazon EU (we need feedback)\" default_off=\"needs testing and feedback\" f=\"Amazon_EU.xml\"><exclusion pattern=\"^http://www\\.amazon\\.[\\w.]+/+(?!$|\\?|(?:ap|(?:[\\w-]+/)?b/|gp/(?:BIT/InternetBasedAds|cart|css|help|prime|primecentral|registry/wishlist)|s)(?:$|[?/]))\"/><securecookie host=\"^local\\.amazon\\.co\\.uk$\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Amazon Japan (partial)\" f=\"Amazon_JP.xml\"><rule from=\"^http://(?:www\\.)?amazon\\.co\\.jp/(ap|gp/(?:bestsellers|cart|cobrandcard|registry|uedata))/\" to=\"https://www.amazon.co.jp/$1/\"/></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\" 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://amblin\\.io/\" to=\"https://amblin.io/\"/></ruleset>", "<ruleset name=\"Ambx.com\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Ambx.com.xml\"><rule from=\"^http://(?:www\\.)?ambx\\.com/\" to=\"https://www.ambx.com/\"/></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\"><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)\" 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=\"American Epilepsy Society (partial)\" default_off=\"failed ruleset test\" f=\"American-Epilepsy-Society.xml\"><rule from=\"^http://(?:www\\.)?aesnet\\.org/erc/\" to=\"https://www.aesnet.org/erc/\"/></ruleset>", "<ruleset name=\"American Foundation for Suicide Prevention\" f=\"American-Foundation-Suicide-Prevention.xml\"><exclusion pattern=\"^http://(?:www\\.)?afsp\\.org/indiana$\"/><rule from=\"^(?:http://(?:www\\.)?|https://)afsp\\.org/\" to=\"https://www.afsp.org/\"/></ruleset>", "<ruleset name=\"American Physical Society (partial)\" platform=\"mixedcontent\" f=\"American-Physical-Society.xml\"><exclusion pattern=\"^http://(?:counter|feeds|physics|pr[bel]|prola)\\.\"/><exclusion pattern=\"^http://publish\\.aps\\.org/(?:image|stylesheet)s/\"/><securecookie host=\"^journals\\.aps\\.org$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?aps\\.org/(?=commonspot/|elementadmin/|[\\w/-]+images/|style/|templates/)\" to=\"https://www.aps.org/\"/><rule from=\"^http://(\\w+)\\.aps\\.org/((?:files|images|misc|sites/[\\w.-]+themes|style(?:sheets)?)/)\" to=\"https://$1.aps.org/\"/><rule from=\"^http://(author|journal|referee|tesseract-asset)s\\.aps\\.org/\" to=\"https://$1s.aps.org/\"/><rule from=\"^http://publish\\.aps\\.org/(?=login|signup)\" to=\"https://publish.aps.org/\"/><rule from=\"^http://publish\\.aps\\.org/favicon\\.ico\" to=\"https://www.aps.org/favicon.ico/\"/></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=\"ACS.org (problematic)\" default_off=\"mismatched\" f=\"American_Chemical_Society-problematic.xml\"><rule from=\"^http://chemistryjobs\\.acs\\.org/\" to=\"https://chemistryjobs.acs.org/\"/></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\" default_off=\"failed ruleset test\" f=\"American_Future_Fund.xml\"><securecookie host=\"^(?:www\\.)?americanfuturefund\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"American Heart.org (partial)\" default_off=\"failed ruleset test\" 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\" 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 Charities\" default_off=\"failed ruleset test\" f=\"Americas-Charities.xml\"><securecookie host=\"^www\\.charities\\.org$\" name=\".+\"/><rule from=\"^(?:http://(?:www\\.)?|https://)charities\\.org/\" to=\"https://www.charities.org/\"/></ruleset>", "<ruleset name=\"America's Longest War\" default_off=\"failed ruleset test\" 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=\"^\\.amgdgt\\.com$\" 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=\"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=\"Amnesty.org (partial)\" 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 (partial)\" f=\"Amnesty.fr.xml\"><securecookie host=\"^\\w\" name=\".\"/><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\" 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\" 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=\"ampatico.com\" default_off=\"mismatched\" f=\"Ampatico.com.xml\"><rule from=\"^http://(?:www\\.)?ampatico\\.com/\" to=\"https://ampatico.com/\"/></ruleset>", "<ruleset name=\"Ampersandjs.com (partial)\" f=\"Ampersandjs.com.xml\"><rule from=\"^http://ampersandjs\\.com/\" to=\"https://ampersandjs.com/\"/></ruleset>", "<ruleset name=\"Ampush.com\" default_off=\"failed ruleset test\" f=\"Ampush.com.xml\"><securecookie host=\"^(?:w*\\.)?ampush\\.com$\" name=\".+\"/><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=\"mismatch\" 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=\"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\" default_off=\"self-signed\" f=\"AnarchistNews.xml\"><securecookie host=\"^anarchistnews.org$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?anarchistnews\\.org/\" to=\"https://anarchistnews.org/\"/></ruleset>", "<ruleset name=\"Anarplex.net\" f=\"Anarplex.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ancestry.com (partial)\" f=\"Ancestry.xml\"><securecookie host=\"^secure\\.ancestry\\.co\\.uk$\" name=\".+\"/><securecookie host=\"^dna\\.ancestry\\.com$\" name=\".+\"/><rule from=\"^http://secure\\.ancestry\\.co\\.uk/\" to=\"https://secure.ancestry.co.uk/\"/><rule from=\"^http://dna\\.ancestry\\.com/\" to=\"https://dna.ancestry.com/\"/><rule from=\"^http://(?:secure\\.)?store\\.ancestry\\.com/\" to=\"https://secure.store.ancestry.com/\"/><rule from=\"^http://c\\.(?:ancestry|mfcreative)\\.com/\" to=\"https://c.mfcreative.com/\"/></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://rpt\\.anchorfree\\.net/\" to=\"https://rpt.anchorfree.net/\"/></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\" 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=\"mismatch\" 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=\"Androidfilehost.com\" f=\"Androidfilehost.com.xml\"><rule from=\"^http://(?:www\\.)?androidfilehost\\.com/\" to=\"https://www.androidfilehost.com/\"/></ruleset>", "<ruleset name=\"Androidpit\" f=\"Androidpit.xml\"><securecookie host=\"^(www\\.)?androidpit\\.de\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Andy Tyson.com\" 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=\"Angola 3.org\" default_off=\"expired, self-signed\" f=\"Angola_3.org.xml\"><rule from=\"^http:\" to=\"https:\"/></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=\"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://(www\\.)?anidb\\.net/\" to=\"https://anidb.net/\"/></ruleset>", "<ruleset name=\"Animal Law.info\" f=\"Animal_Law.info.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=\"Anker\" default_off=\"expired\" f=\"Anker.xml\"><securecookie host=\"^anker\\.to$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ann Summers.com (partial)\" 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=\"Anne van Kesteren.nl\" f=\"Anne_van_Kesteren.nl.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.co\" f=\"Anon-IB.co.xml\"><securecookie host=\"^\\.anon-ib\\.co$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Anon-IB.com\" f=\"Anon-IB.com.xml\"><securecookie host=\"^\\.anon-ib\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Anon-IB.la\" f=\"Anon-IB.la.xml\"><securecookie host=\"^\\.anon-ib\\.la$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Anon-IB.net\" f=\"Anon-IB.net.xml\"><securecookie host=\"^\\.anon-ib\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Anon-IB.ru\" f=\"Anon-IB.ru.xml\"><securecookie host=\"^\\.anon-ib\\.ru$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Anon-IB.su\" f=\"Anon-IB.su.xml\"><securecookie host=\"^\\.anon-ib\\.su$\" 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\" 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\" f=\"Anonabox.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"anonbox.net\" platform=\"cacert\" f=\"Anonbox.net.xml\"><rule from=\"^http://www\\.anonbox\\.net/\" to=\"https://anonbox.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Anonine.com\" f=\"Anonine.com.xml\"><securecookie host=\"^(?:www\\.)?anonine\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?anonine\\.com/\" to=\"https://anonine.com/\"/></ruleset>", "<ruleset name=\"AnonySurfer.com\" 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=\"connection dropped\" 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=\"Anquanbao.com\" f=\"Anquanbao.com.xml\"><rule from=\"^http://(?:www\\.)?anquanbao\\.com/\" to=\"https://www.anquanbao.com/\"/></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 (mismatched)\" default_off=\"mismatched\" f=\"Ansible.com-problematic.xml\"><rule from=\"^http://ansible\\.com/\" to=\"https://www.ansible.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ansible.com (partial)\" f=\"Ansible.com.xml\"><securecookie host=\"^\\.ansible\\.com$\" name=\"^__cfduid$\"/><securecookie host=\"^galaxy\\.ansible\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ansible works.com (partial)\" f=\"Ansible_works.com.xml\"><securecookie host=\"^\\.ansibleworks\\.com$\" 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=\"AntiPolygraph.org\" f=\"AntiPolygraph.org.xml\"><rule from=\"^http:\" to=\"https:\"/></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=\"Antok.co\" default_off=\"missing certificate chain\" f=\"Antok.co.xml\"><securecookie host=\"^\\.antok\\.co$\" name=\".+\"/><rule from=\"^http://www\\.antok\\.co/\" to=\"https://antok.co/\"/><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)\" f=\"AnubisNetworks.com.xml\"><rule from=\"^http://anubisnetworks\\.com/\" to=\"https://www.anubisnetworks.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Anunciou.com (false MCB)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Anunciou.com-falsemixed.xml\"><securecookie host=\"^\\.anunciou\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Anunciou.com (partial)\" f=\"Anunciou.com.xml\"><rule from=\"^http://(www\\.)?anunciou\\.com/(?=componentes/|estilo\\.css|favicon\\.ico|images/)\" to=\"https://$1anunciou.com/\"/></ruleset>", "<ruleset name=\"anxpro.com (partial)\" f=\"Anxpro.com.xml\"><securecookie host=\"^\\.?anxpro\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Anybeat\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Anybeat.com.xml\"><rule from=\"^http://(?:www\\.)?anybeat\\.com/\" to=\"https://www.anybeat.com/\"/></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\" f=\"Anyproz.xml\"><securecookie host=\"^www\\.anonyproz\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Anzen.org.uk\" default_off=\"failed ruleset test\" f=\"Anzen.org.uk.xml\"><securecookie host=\"^(?:w*\\.)?anzen\\.org\\.uk$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ao2.it (CAcert)\" platform=\"cacert\" default_off=\"failed ruleset test\" f=\"Ao2.it.xml\"><securecookie host=\"(?:.*\\.)ao2\\.it$\" name=\".*\"/><rule from=\"^http://(www\\.)?ao2\\.it/\" to=\"https://$1.ao2.it/\"/></ruleset>", "<ruleset name=\"OpenOffice.org (partial)\" f=\"Apache-OpenOffice.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Apache-SSL.org\" default_off=\"expired\" f=\"Apache-SSL.org.xml\"><securecookie host=\".+\\.apache-ssl\\.org$\" name=\".*\"/><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://(?:ci|feathercast|git|ooo-forums|vmgump)\\.apache\\.org/\"/><exclusion pattern=\"^http://(?:activemq|aries|attic|geronimo|helix|jackrabbit|lucy|oodt|santuario|tuscany)\\.apache\\.org/+(?!css/|favicon\\.ico|images/|oodt\\.css|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\" f=\"Aphyr.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"api.sh\" default_off=\"failed ruleset test\" f=\"Api.sh.xml\"><securecookie host=\"^\\.?api\\.sh$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?api\\.sh/\" to=\"https://api.sh/\"/></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\" f=\"Apkmirror.com.xml\"><securecookie host=\"^(www\\.)?apkmirror\\.com\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Apna India\" 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=\"App.net\" f=\"App.net.xml\"><securecookie host=\"^(?:(?:account|alpha|\\.?join|www)\\.)?app\\.net$\" name=\".+\"/><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\" 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=\"AppHarbor.com\" f=\"AppHarbor.com.xml\"><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=\"AppNexus.com (partial)\" 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)\" default_off=\"failed ruleset test\" 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=\"Appcelerator.com (partial)\" 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\" f=\"Appie_Hein.com.xml\"><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 (false MCB)\" platform=\"mixedcontent\" f=\"Apple-falsemixed.xml\"><securecookie host=\"^support\\.apple\\.com$\" name=\".+\"/><rule from=\"^http://support\\.apple\\.com/\" to=\"https://support.apple.com/\"/></ruleset>", "<ruleset name=\"Apple (mismatches)\" default_off=\"Akamai certificate\" f=\"Apple-mismatches.xml\"><rule from=\"^http://a\\d+\\.phobos\\.apple\\.com/\" to=\"https://a1.mzstatic.com/\"/><rule from=\"^http://(adcdownload|www\\.info|static-mynews|trailers)\\.apple\\.com/\" to=\"https://$1.apple.com/\"/><rule from=\"^http://(r\\d|store)\\.mzstatic\\.com/\" to=\"https://$1.mzstatic.com/\"/></ruleset>", "<ruleset name=\"Apple.com (partial)\" f=\"Apple.xml\"><exclusion pattern=\"^http://concierge\\.apple\\.com/(?!resources/)\"/><exclusion pattern=\"^http://store\\.apple\\.com/(?!$|Catalog/|[\\w/]+/css/|rs/)\"/><exclusion pattern=\"^http://trailers\\.apple\\.com/(?!(?:app/*|.+\\.(?:css|gif|jpg|png|svg))(?:$|\\?))\"/><exclusion pattern=\"^https://trailers\\.apple\\.com/(?:app/*|.+\\.(?:css|gif|jpg|png|svg|xml))(?:$|\\?)\"/><exclusion pattern=\"^http://www\\.apple\\.com/(?:\\w\\w/)?shop(?:$|[?/])\"/><exclusion pattern=\"^http://www\\.apple\\.com/apple-events/\"/><securecookie host=\"^\\.apple\\.com$\" name=\"^s_.+$\"/><securecookie host=\"^(?!\\.?(?:concierge|store|www)\\.apple\\.com).+\\.apple\\.com$\" name=\".+\"/><rule from=\"^http://devimages\\.apple\\.com/\" to=\"https://devimages.apple.com.edgekey.net/\"/><rule from=\"^http://images\\.apple\\.com/\" to=\"https://ssl.apple.com/\"/><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://www\\.opensource\\.apple\\.com/\" to=\"https://opensource.apple.com/\"/><rule from=\"^http://storeimages\\.apple\\.com/\" to=\"https://storeimages.apple.com.edgekey.net/\"/><rule from=\"^http:\" to=\"https:\"/><rule from=\"^https://trailers\\.apple\\.com/\" to=\"http://trailers.apple.com/\" downgrade=\"1\"/></ruleset>", "<ruleset name=\"Apple CDN buckets\" f=\"Apple_CDN_buckets.xml\"><exclusion pattern=\"^http://a772\\.g\\.akamai\\.net/(?!7/772/51/ef865529940b9e/www\\.apple\\.com/)\"/><rule from=\"^http://ax\\.phobos\\.apple\\.com\\.edgesuite\\.net/\" to=\"https://s.mzstatic.com/\"/></ruleset>", "<ruleset name=\"Apple.com.cn\" default_off=\"mismatched\" f=\"Apple_China.xml\"><rule from=\"^http://apple\\.com\\.cn/\" to=\"https://www.apple.com.cn/\"/><rule from=\"^http:\" to=\"https:\"/></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://app\\.applyyourself\\.com/\" to=\"https://app.applyyourself.com/\"/></ruleset>", "<ruleset name=\"AppsFlyer.com (partial)\" f=\"AppsFlyer.com.xml\"><securecookie host=\"^(?:hq|partners)\\.appsflyer\\.com$\" 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\" 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=\"Apress.com\" 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\" platform=\"mixedcontent\" f=\"April.org.xml\"><securecookie host=\"^.*\\.april\\.org$\" name=\".+\"/><rule from=\"^http://([^/:@]+\\.)?april\\.org/\" to=\"https://$1april.org/\"/></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\" 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\" 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 (partial) (default off)\" default_off=\"default off by site request\" f=\"ArXiv.xml\"><rule from=\"^http://www\\.arxiv\\.org/\" to=\"https://arxiv.org/\"/><rule from=\"^http://arxiv\\.org/(css/|favicon\\.ico)\" to=\"https://arxiv.org/$1\"/><rule from=\"^http://arxiv\\.org/icons/\" to=\"https://s3.amazonaws.com/arxiv-web-static1/icons/\"/><rule from=\"^http://static\\.arxiv\\.org/\" to=\"https://s3.amazonaws.com/arxiv-web-static1/\"/></ruleset>", "<ruleset name=\"Arachnys\" default_off=\"failed ruleset test\" f=\"Arachnys.xml\"><securecookie host=\"^(?:app)?\\.arachnys\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Aral Balkan.com\" 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=\"Arbitrary.ch\" f=\"Arbitrary.ch.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Arbor Networks\" 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=\"Arch Linux.org\" f=\"Arch.xml\"><securecookie host=\".\" 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:\" to=\"https:\"/></ruleset>", "<ruleset name=\"archive.moe\" f=\"Archive.moe.xml\"><securecookie host=\"^archive\\.moe$\" name=\".+\"/><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:\" 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=\"archlinux.de\" f=\"Archlinux.de.xml\"><rule from=\"^http:\" to=\"https:\"/></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=\"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://id\\.arduino\\.cc/\" to=\"https://id.arduino.cc/\"/></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\" 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://webmail\\.argewebhosting\\.nl/\" to=\"https://webmail.argewebhosting.nl/\"/></ruleset>", "<ruleset name=\"Argonit.cz\" default_off=\"mismatched\" f=\"Argonit.cz.xml\"><securecookie host=\"(?:.+\\.)?argonit\\.cz$\" name=\".+\"/><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=\"mismatch\" 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=\"Arguggi.co.uk\" f=\"Arguggi.co.uk.xml\"><rule from=\"^http://www\\.arguggi\\.co\\.uk/\" to=\"https://arguggi.co.uk/\"/><rule from=\"^http:\" to=\"https:\"/></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\" default_off=\"failed ruleset test\" 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=\"mismatch\" f=\"Argyle-Social-mismatches.xml\"><rule from=\"^http://www2\\.argylesocial\\.com/\" to=\"https://www2.argylesocial.com/\"/></ruleset>", "<ruleset name=\"Argyle Social (partial)\" default_off=\"failed ruleset test\" f=\"Argyle-Social.xml\"><rule from=\"^http://goals\\.ar\\.gy/\" to=\"https://goals.ar.gy/\"/></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=\"connection refused\" f=\"Arisebitcoin.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Arizona State University (partial)\" 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\" f=\"ArkOS.io.xml\"><securecookie host=\"^bbs\\.arkos\\.io$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Arkane Studios\" default_off=\"mismatch\" 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=\"Arlen.io\" f=\"Arlen.io.xml\"><securecookie host=\"^\\.arlen\\.io$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Arlt.com\" f=\"Arlt.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ArmA 3 (Partial)\" default_off=\"Bad Cert\" f=\"Arma3.com.xml\"><rule from=\"^http://(?:www\\.)?arma3\\.com/\" to=\"https://www.arma3.com/\"/><rule from=\"^http://(?:www\\.)?(?:feedback\\.|dev\\.)?arma3\\.com/\" to=\"https://feedback.arma3.com/\"/></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\" 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://content\\.azorus\\.com/\" to=\"https://content.azorus.com/\"/></ruleset>", "<ruleset name=\"arpxs.com\" 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\" 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=\"^\\.arranca\\.org$\" name=\".+\"/><rule from=\"^http://(?:(?:www\\.)?arranca|arranca\\.nadir)\\.org/\" to=\"https://arranca.org/\"/></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)\" f=\"Ars-Technica.xml\"><exclusion pattern=\"^http://(?:www\\.)?arstechnica\\.com/(?!ads/|civis/ucp\\.php|favicon\\.ico|public-shared/|services/incr\\.php|subscriptions(?:$|[?/])|wp-content/)\"/><securecookie host=\"^\\.arstechnica\\.com$\" name=\"^(?:mbox|s_\\w+|timeSpent|__utm\\w)$\"/><rule from=\"^http://ars\\.to/\" to=\"https://bit.ly/\"/><rule from=\"^http://((?:cms|coins|hq|www)\\.)?arstechnica\\.com/\" to=\"https://$1arstechnica.com/\"/><rule from=\"^http://feeds\\.arstechnica\\.com/(?:\\?.*)?$\" to=\"https://feedburner.google.com/fb/a/home\"/><rule from=\"^http://stats2\\.arstechnica\\.com/\" to=\"https://condenast.112.2o7.net/\"/><rule from=\"^http://api\\.arstechnica\\.net/\" to=\"https://api.arstechnica.net/\"/><rule from=\"^http://(?:(?:media|origin)\\.arstechnica\\.com|(?:cdn|static)\\.arstechnica\\.net)/\" to=\"https://cdn.arstechnica.net/\"/></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)\" 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=\"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\" 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\" 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=\"Artizone (partial)\" f=\"Artizone.xml\"><exclusion pattern=\"^http://(?:www\\.)?artizone\\.com/(?!Content/|favicon\\.ico|Scripts/|Shipping/(?:Account/LogOn|Help/ContactUs))\"/><securecookie host=\"^\\.artizone\\.com$\" name=\"^__utm\\w$\"/><securecookie host=\"^www\\.artizone\\.com$\" name=\"^artizoneStat$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Artsy.net\" f=\"Artsy.net.xml\"><securecookie host=\"^(?:admin|www)\\.artsy\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ArturKim (partial)\" default_off=\"mismatch\" f=\"ArturKim.xml\"><rule from=\"^http://(?:www\\.)?arturkim\\.com/wp-content/\" to=\"https://arturkim.com/wp-content/\"/></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=\"arvm.de\" default_off=\"failed ruleset test\" f=\"Arvm.de.xml\"><rule from=\"^http://i\\.arvm\\.de/\" to=\"https://i.arvm.de/\"/></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 (partial)\" f=\"Asana.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://connect\\.asana\\.com/\" to=\"https://t.trackedlink.net/\"/><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)\" default_off=\"failed ruleset test\" 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)\" 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://portal\\.ascio\\.com/\" to=\"https://portal.ascio.com/\"/></ruleset>", "<ruleset name=\"Asecus\" f=\"Asecus.xml\"><securecookie host=\"^asecus\\.ch$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ashampoo.com (partial)\" f=\"Ashampoo.com.xml\"><securecookie host=\"^(?:.+\\.)?ashampoo\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Asheville Citizen-Times\" default_off=\"failed ruleset test\" 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)\" default_off=\"failed ruleset test\" 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=\"mismatch\" 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\" f=\"Ask.fm.xml\"><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\" default_off=\"failed ruleset test\" 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=\"connection dropped\" 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)\" 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 for Psychological Science\" f=\"Association_for_Psychological_Science.xml\"><securecookie host=\"^.+\\.psychologicalscience\\.org$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?psychologicalscience\\.org/\" to=\"https://www.psychologicalscience.org/\"/><rule from=\"^http://aps\\.psychologicalscience\\.org/\" to=\"https://aps.psychologicalscience.org/\"/></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\" 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://tienda\\.astrocentro\\.com/\" to=\"https://tienda.astrocentro.com/\"/></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)\" 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=\"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=\"atipso.com\" default_off=\"failed ruleset test\" 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 (partial)\" default_off=\"failed ruleset test\" f=\"Ativismo.org.br.xml\"><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 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)\\.atlassian\\.com/\"/><exclusion pattern=\"^http://(?:.+\\.(?:ams|dyn\\.syd|inf|internal|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)\" default_off=\"md5, self-signed\" f=\"Atlatszo.hu.xml\"><securecookie host=\"^www\\.atlatszo\\.hu$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?atlatszo\\.hu/\" to=\"https://www.atlatszo.hu/\"/></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\" default_off=\"self-signed\" f=\"Atomic-Insights.xml\"><securecookie host=\"^atomicinsights\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?atomicinsights\\.com/\" to=\"https://atomicinsights.com/\"/></ruleset>", "<ruleset name=\"Atomic Object.com (partial)\" 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\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Atomicorp.xml\"><rule from=\"^http://(?:www\\.)?atomicorp\\.com/\" to=\"https://www.atomicorp.com/\"/></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)\" f=\"Attachmate-Group.xml\"><securecookie host=\"^(?:esp|login)\\.attachmategroup\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Attachmate.com (partial)\" 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\" 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=\"Aucklandairport.co.nz\" f=\"Aucklandairport.co.nz.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Auctionbunker\" f=\"Auctionbunker.xml\"><securecookie host=\"^(?:w*\\.)?auctionbunker\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"auctionthing.net\" default_off=\"failed ruleset test\" 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\" default_off=\"failed ruleset test\" 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\" default_off=\"failed ruleset test\" 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\" 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=\"Audience-Discovery.com\" default_off=\"failed ruleset test\" f=\"Audience-Discovery.com.xml\"><securecookie host=\"^(?:w*\\.)?audience-discovery\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></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=\"mismatch\" 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\" 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)\" 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=\"Auditorius.ru\" default_off=\"expired, mismatched\" f=\"Auditorius.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Audtd.com (partial)\" f=\"Audtd.com.xml\"><securecookie host=\"^\\.audtd\\.com$\" name=\".+\"/><rule from=\"^http://audtd\\.com/\" to=\"https://auditorius.ru/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Audubon.org\" 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)\" default_off=\"failed ruleset test\" f=\"Aufbix.org.xml\"><securecookie host=\"^hydra\\.aufbix\\.org$\" name=\".+\"/><rule from=\"^http://hydra\\.aufbix\\.org/\" to=\"https://hydra.aufbix.org/\"/></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=\"aunggo.com\" default_off=\"failed ruleset test\" f=\"Aunggo.com.xml\"><rule from=\"^http://tracking\\.aunggo\\.com/\" to=\"https://gunggo.go2cloud.org/\"/></ruleset>", "<ruleset name=\"Auphonic.com\" f=\"Auphonic.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Aurous.me (partial)\" 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\" f=\"AustraliaUNSC.xml\"><rule from=\"^http://(?:www\\.)?australia-unsc\\.gov\\.au/\" to=\"https://australia-unsc.gov.au/\"/></ruleset>", "<ruleset name=\"Australian Koala Foundation\" default_off=\"failed ruleset test\" f=\"Australian-Koala-Foundation.xml\"><rule from=\"^http://(?:www\\.)?savethekoala\\.com/\" to=\"https://www.savethekoala.com/\"/></ruleset>", "<ruleset name=\"Australian Antarctic Data Centre\" default_off=\"failed ruleset test\" 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\" f=\"AustralianCrimeCommission.xml\"><rule from=\"^http://(?:www\\.)?crimecommission\\.gov\\.au/\" to=\"https://www.crimecommission.gov.au/\"/></ruleset>", "<ruleset name=\"Australian Data Archive\" 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\" 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\" default_off=\"failed ruleset test\" 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\" 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\" default_off=\"failed ruleset test\" 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\" default_off=\"self-signed\" f=\"Autistici-Inventati.xml\"><securecookie host=\"^www\\.autistici\\.org$\" name=\".+\"/><securecookie host=\"^\\.noblogs\\.org$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?(?:autistic|inventat)i\\.org/\" to=\"https://www.autistici.org/\"/><rule from=\"^http://([^/:@\\.]+)\\.(autistici|inventati)\\.org/\" to=\"https://$1.$2.org/\"/></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=\"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\" 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)\" default_off=\"failed ruleset test\" 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\" 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 &amp; Accessories\" default_off=\"failed ruleset test\" f=\"Auto_Rims_and_Accessories.xml\"><securecookie host=\"^(?:.*\\.)?autorimsandaccessories\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Auto VPS.net\" default_off=\"failed ruleset test\" f=\"Auto_VPS.net.xml\"><securecookie host=\"^\\.www\\.autovps\\.net$\" 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=\"Automatak.net\" default_off=\"failed ruleset test\" f=\"Automatak.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Automatic Data Processing (partial)\" default_off=\"failed ruleset test\" 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&amp;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=\"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=\"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://(?:www\\.)?autotools\\.io/\" to=\"https://autotools.io/\"/></ruleset>", "<ruleset name=\"av18mov.com\" default_off=\"failed ruleset test\" f=\"Av18mov.com.xml\"><securecookie host=\"^(?:w*\\.)?av18mov\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AvaDomains.com\" default_off=\"expired\" f=\"AvaDomains.com.xml\"><rule from=\"^http://(?:www\\.)?avadomains\\.com/\" to=\"https://www.avadomains.com/\"/></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=\"Avaaz.org\" f=\"Avaaz.xml\"><securecookie host=\"^\\.avaaz\\.org$\" 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=\"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\"><securecookie host=\"^\\.\" name=\"^s_vi$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://an\\.avast\\.com/\" to=\"https://avast-co-jp-ldc.d3.sc.omtrdc.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AvatarPicker.com\" f=\"AvatarPicker.com.xml\"><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=\"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\" 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&#228;&#246;nv&#228;lineet\" default_off=\"failed ruleset test\" 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\"><exclusion pattern=\"^http://(en\\.)?avm\\.de/+(?!favicon\\.ico|fileadmin/|typo3conf/|typo3temp/)\"/><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\" f=\"Avonmaquiagem.com.br.xml\"><securecookie host=\"^(?:w*\\.)?avonmaquiagem\\.com\\.br$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Avropa.se\" default_off=\"failed ruleset test\" f=\"Avropa.se.xml\"><rule from=\"^http://www\\.avropa\\.se/\" to=\"https://www.avropa.se/\"/><rule from=\"^http://avropa\\.se/\" to=\"https://avropa.se/\"/></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=\"awe.sm (partial)\" 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=\"mismatch\" 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\" default_off=\"self-signed\" f=\"Axel_Simon.net.xml\"><securecookie host=\"^axelsimon\\.net$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?axelsimon\\.net/\" to=\"https://axelsimon.net/\"/></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)\" default_off=\"failed ruleset test\" 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 (partial)\" f=\"Axonify.xml\"><rule from=\"^http://cdn\\.axonify\\.com/\" to=\"https://cdn.axonify.com/\"/></ruleset>", "<ruleset name=\"Axonix.com (partial)\" f=\"Axonix.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Axosoft.com\" 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=\"Azabani.com\" f=\"Azabani.com.xml\"><rule from=\"^http:\" to=\"https:\"/></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=\"Azingsport.se\" default_off=\"failed ruleset test\" f=\"Azingsport.se.xml\"><rule from=\"^http://www\\.azingsport\\.se/\" to=\"https://www.azingsport.se/\"/><rule from=\"^http://azingsport\\.se/\" to=\"https://azingsport.se/\"/></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=\"BritishAirways\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"BA.xml\"><securecookie host=\"^(?:.*\\.)?britishairways.com$\" name=\".*\"/><rule from=\"^http://shopping\\.ba\\.com/\" to=\"https://www.britishairways.com/\"/><rule from=\"^http://(?:www\\.)?britishairways\\.com/\" to=\"https://www.britishairways.com/\"/></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)\" default_off=\"failed ruleset test\" 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 (self-signed)\" default_off=\"mismatch, self-signed\" f=\"BBC-mismatches.xml\"><rule from=\"^http://electradl\\.iplayer\\.bbc\\.co\\.uk/\" to=\"https://electradl.iplayer.bbc.co.uk/\"/></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://ssl\\.bbc\\.com/\" to=\"https://ssl.bbc.com/\"/></ruleset>", "<ruleset name=\"BBC (broken)\" default_off=\"Breaks videos\" f=\"BBC.xml\"><exclusion pattern=\"^http://www\\.bbc\\.co\\.uk/iplayer/episode/\\w+/(?:hd/)?\\w+/?(?:$|\\?)\"/><exclusion pattern=\"^http://(?:www\\.)?bbc\\.co\\.uk/iplayer(?:/?\\?|/?$|/radio(?:$|[?/]))\"/><exclusion pattern=\"^http://www\\.bbc\\.co\\.uk/iplayer/playlist/\\w+$\"/><exclusion pattern=\"^http://open\\.live\\.bbc\\.co\\.uk/(?!mediaselector/|wurfldemi/(?:network|useragent)\\.jsonp|weather/feeds/\\w\\w/maps/forecast\\.json)\"/><securecookie host=\"^\\.bbc\\.co\\.uk$\" name=\"^s1$\"/><securecookie host=\"^(?:iplayerhelp\\.external|ssl)\\.bbc\\.co\\.uk$\" name=\".+\"/><rule from=\"^http://(?:www(?:img)?\\.)?bbc\\.co\\.uk/(aboutthebbc/override\\.css|a-z/style|cbbc/(?:all/homepage-background|img|structure)|help/404_img|help/style|inc|nfp/holepunched/api|news/special/shared|player/emp|survey/pulse|tv/js|view/1_0_\\d\\d/wide|weather/locales)/\" to=\"https://beta.bbc.co.uk/$1/\"/><rule from=\"^http://feeds\\.bbc\\.co\\.uk/modules/comments/\" to=\"https://www.bbc.co.uk/modules/comments/\"/><rule from=\"^http://(ichef|www\\.live|sa|static)\\.bbci?\\.co\\.uk/\" to=\"https://$1.bbc.co.uk/\"/><rule from=\"^http://(?:www\\.)?bbc\\.co\\.uk/(?=emp/|favicon\\.ico$|glow/|guidance/|iplayer/|podcasts/assets/)\" to=\"https://www.bbc.co.uk/\"/><rule from=\"^http://(?:www\\.)?bbc\\.co\\.uk/(?=programmes/branding/)\" to=\"https://ssl.bbc.co.uk/\"/><rule from=\"^http://www\\.bbc\\.co\\.uk/webwise/static/\" to=\"https://static.bbc.co.uk/webwise/\"/><rule from=\"^http://(beta|careers|downloads|iplayerhelp\\.external|id|ssl)\\.bbc\\.co\\.uk/\" to=\"https://$1.bbc.co.uk/\"/><rule from=\"^http://open\\.live\\.bbc\\.co\\.uk/\" to=\"https://open.live.bbc.co.uk/\"/><rule from=\"^http://news\\.bbc\\.co\\.uk/(?=css/|furniture/|stylesheets/|js/app/av/emp/)\" to=\"https://beta.bbc.co.uk/\"/><rule from=\"^http://newsimg\\.bbc\\.co\\.uk/(?=media/images/|shared/img/)\" to=\"https://beta.bbc.co.uk/\"/><rule from=\"^http://a-ssl\\.files\\.bbci\\.co\\.uk/\" to=\"https://a-ssl.files.bbci.co.uk/\"/><rule from=\"^http://news\\.bbcimg\\.co\\.uk/media/images/\" to=\"https://ssl.bbc.co.uk/media/images/\"/><rule from=\"^http://node[12]\\.bbcimg\\.co\\.uk/(?=crossdomain\\.xml$|glow/|iplayer/)\" to=\"https://www.bbc.co.uk/\"/><rule from=\"^http://node\\d\\.bbcimg\\.co\\.uk/(?=podcasts/|tv/p2/)\" to=\"https://beta.bbc.co.uk/\"/><rule from=\"^http://polling\\.bbc\\.co\\.uk/(?=modules/onairpanel/include/)\" to=\"https://ssl.bbc.co.uk/\"/><rule from=\"^http://emp\\.bbci\\.co\\.uk/emp/(?=bump/|releases/)\" to=\"https://www.bbc.co.uk/emp/\"/><rule from=\"^http://news\\.bbcimg\\.co\\.uk/\" to=\"https://beta.bbc.co.uk/\"/><rule from=\"^http://tile\\d\\.bbcimg\\.co\\.uk/\" to=\"https://static.bbc.co.uk/\"/></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=\"mismatch\" 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=\"BEL Solution\" default_off=\"self-signed\" f=\"BEL-Solutions.xml\"><rule from=\"^http://(?:www\\.|zeus\\.)?bel\\.fi/\" to=\"https://zeus.bel.fi/\"/></ruleset>", "<ruleset name=\"BEM.info\" 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\" 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)\" 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\" default_off=\"failed ruleset test\" 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=\"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=\"BMW China Custom Login\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"BMW-China-Custom-Login.xml\"><securecookie host=\"^.*\\.cardealerstudy\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?cardealerstudy\\.com/\" to=\"https://www.cardealerstudy.com/\"/></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\" default_off=\"failed ruleset test\" f=\"BOE.xml\"><rule from=\"^http://boe\\.es/\" to=\"https://www.boe.es/\"/><rule from=\"^http://([^/:@\\.]+)\\.boe\\.es/\" to=\"https://$1.boe.es/\"/></ruleset>", "<ruleset name=\"BoF.nl\" f=\"BOF.nl.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BPS (partial)\" default_off=\"failed ruleset test\" f=\"BPS.xml\"><rule from=\"^http://(?:www\\.)?bps\\.org\\.uk/sites/default/(files/cs|theme)s/\" to=\"https://www.bps.org.uk/sites/default/$1s/\"/><rule from=\"^http://login\\.bps\\.org\\.uk/\" to=\"https://login.bps.org.uk/\"/><rule from=\"^http://(?:www\\.)?bpsshop\\.org\\.uk/((?:App_Theme|Asset|image)s/|login\\.aspx)\" to=\"https://www.bpsshop.org.uk/$1\"/></ruleset>", "<ruleset name=\"Bayrischer Rundfunk\" f=\"BR.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"B.R.S.M.\" default_off=\"mismatch\" 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\" 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\" 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.com (RC4)\" f=\"BT.com-RC4.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://shop\\.bt\\.com/.*\" to=\"https://www.shop.bt.com/\"/><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)\" f=\"BT.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://globalservices\\.bt\\.com/\" to=\"https://www.globalservices.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=\"BTC-E.com\" f=\"BTC-E.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BTC-Trade.ru\" default_off=\"failed ruleset test\" f=\"BTC-Trade.ru.xml\"><securecookie host=\"^\\.btc-trade\\.ru$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?btc-trade\\.ru/\" to=\"https://www.btc-trade.ru/\"/></ruleset>", "<ruleset name=\"BTC.Diet\" f=\"BTC.Diet.xml\"><securecookie host=\"^\\.btc\\.diet$\" name=\".+\"/><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\"><securecookie host=\"^(?:\\.|www\\.)?btcchina\\.com$\" name=\"\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BTCGreece.com\" f=\"BTCGreece.com.xml\"><securecookie host=\"^\\.(?:www\\.)?btcgreece\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BTCGuild.com\" platform=\"mixedcontent\" f=\"BTCGuild.xml\"><rule from=\"^http://(?:www\\.)?btcguild\\.com/\" to=\"https://www.btcguild.com/\"/></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\" 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\" default_off=\"failed ruleset test\" 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\" f=\"BTunnel.xml\"><securecookie host=\"^(?:.+\\.)?btunnel\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?btunnel\\.com/\" to=\"https://btunnel.com/\"/></ruleset>", "<ruleset name=\"BVG.de\" 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=\"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\" default_off=\"failed ruleset test\" 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\" default_off=\"expired\" f=\"BabelZilla.xml\"><securecookie host=\"^\\.?babelzilla\\.org$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?babelzilla\\.org/\" to=\"https://babelzilla.org/\"/></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\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" 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=\"Backed.io\" f=\"Backed.io.xml\"><securecookie host=\"^www\\.backed\\.io$\" name=\".+\"/><rule from=\"^http://backed\\.io/\" to=\"https://www.backed.io/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Backlift.com\" default_off=\"failed ruleset test\" f=\"Backlift.com.xml\"><securecookie host=\"^(?:\\w+\\.)?backlift\\.com$\" name=\".+\"/><rule from=\"^http://((?:blog|docs|www)\\.)?backlift\\.com/\" to=\"https://$1backlift.com/\"/></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\" 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=\"Badongo (partial)\" default_off=\"failed ruleset test\" f=\"Badongo.xml\"><rule from=\"^http://(?:www\\.)?badongo\\.com/(inc/|(?:imag|styl)es/|login)\" to=\"https://www.badongo.com/$1\"/><rule from=\"^http://cdn\\d\\w\\.badongo\\.com/\\w{1,6}/(imag|styl)es/\" to=\"https://www.badongo.com/$1es/\"/></ruleset>", "<ruleset name=\"Badoo.com\" f=\"Badoo.com.xml\"><rule from=\"^http://www\\.badoo\\.com/\" to=\"https://www.badoo.com/\"/><rule from=\"^http://badoo\\.com/\" to=\"https://www.badoo.com/\"/></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)\" 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\" f=\"Bahn.de.xml\"><rule from=\"^http://bahn\\.de/\" to=\"https://www.bahn.de/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Baidu.com (breaks logged-in downloads)\" default_off=\"apparently breaks downloads for logged-in users\" f=\"Baidu.com-problematic.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Baidu.com (partial)\" f=\"Baidu.xml\"><exclusion pattern=\"^http://8\\.baidu\\.com/+(?!(?:ask|[bg]f_index|finance91)(?:$|[?/])|content/|gf_index/detail\\?)\"/><exclusion pattern=\"^http://developer\\.baidu\\.com/+(?!static/)\"/><securecookie host=\"^\\.m\\.baidu\\.com$\" name=\"^__bsi$\"/><securecookie host=\"^zhanzhang\\.baidu\\.com$\" name=\"^SITEMAPSESSID$\"/><securecookie host=\"^(?:open2\\.|openapi|\\.?www|zhanzhang)\\.baidu\\.com$\" name=\".+\"/><rule from=\"^http://baidu\\.com/\" to=\"https://www.baidu.com/\"/><rule from=\"^http://developer\\.baidu\\.com/\" to=\"https://openapi.baidu.com/\"/><rule from=\"^http://financestatic\\.baidu\\.com/\" to=\"https://8.baidu.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Baidupcs.com\" f=\"Baidupcs.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Baifubao.com (partial)\" f=\"Baifubao.com.xml\"><rule from=\"^http://baifubao\\.com/\" to=\"https://www.baifubao.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bakabt.me\" f=\"Bakabt.me.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Baker &amp; Taylor (minimal)\" f=\"Baker-and-Taylor.xml\"><securecookie host=\"^(?:contentcafe2|images[abc])\\.btol\\.com$\" name=\".+\"/><rule from=\"^http://(contentcafe2|images[abc])\\.btol\\.com/\" to=\"https://$1.btol.com/\"/></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\" 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\" default_off=\"failed ruleset test\" 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=\"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=\"BandPass.me\" default_off=\"connection dropped\" f=\"BandPass.me.xml\"><rule from=\"^http://(?:www\\.)?bandpass\\.me/\" to=\"https://bandpass.me/\"/></ruleset>", "<ruleset name=\"Bandcamp\" f=\"Bandcamp.xml\"><exclusion pattern=\"^http://blog\\.\"/><securecookie host=\"^\\.bandcamp\\.com$\" name=\".+\"/><rule from=\"^http://([\\w-]+\\.)?bandcamp\\.com/\" to=\"https://$1bandcamp.com/\"/><rule from=\"^http://(www\\.)?bandcamp\\.mu/\" to=\"https://$1bandcamp.com/\"/><rule from=\"^http://(f|s)0\\.bcbits\\.com/\" to=\"https://$10.bcbits.com/\"/></ruleset>", "<ruleset name=\"Bandinelli.net\" f=\"Bandinelli.net.xml\"><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 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://(?:www\\.)?banki\\.ru/\" to=\"https://www.banki.ru/\"/></ruleset>", "<ruleset name=\"Banking.co.at\" f=\"Banking.co.at.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BankofAmerica.com (buggy)\" default_off=\"breaks some URLs\" f=\"BankofAmerica.com-problematic.xml\"><rule from=\"^http://(?:www\\.)?bankofamerica\\.com/\" to=\"https://www.bankofamerica.com/\"/></ruleset>", "<ruleset name=\"BankofAmerica.com (partial)\" f=\"BankofAmerica.xml\"><rule from=\"^http://webmedia\\.bankofamerica\\.com/\" to=\"https://webmedia.bankofamerica.com/\"/></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=\"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\" default_off=\"failed ruleset test\" 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\" 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\" 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\" 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)\" default_off=\"failed ruleset test\" 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=\"Bargains 4 Business\" default_off=\"connection 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\" 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)\" 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\" default_off=\"failed ruleset test\" 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\" default_off=\"failed ruleset test\" 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\" f=\"Bart.gov.xml\"><rule from=\"^http://(www\\.)?bart\\.gov/\" to=\"https://www.bart.gov/\"/></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\" default_off=\"untrusted root\" f=\"Barvaux.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Base INC!\" default_off=\"failed ruleset test\" f=\"Base_INC.xml\"><securecookie host=\"^(?:www)?\\.base-valid\\.com$\" name=\".+\"/><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)\" 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\" 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\" default_off=\"failed ruleset test\" 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\" default_off=\"failed ruleset test\" 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\" f=\"BayLeaks.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BayLibre.com\" 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\" 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=\"Bayden.com\" f=\"Bayden.com.xml\"><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=\"Bazaarvoice.com (problematic)\" default_off=\"mismatch\" f=\"Bazaarvoice-problematic.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bazaarvoice.com (partial)\" 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=\"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\" default_off=\"failed ruleset test\" 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://www\\.bbcshop\\.com/\" to=\"https://www.bbcshop.com/\"/></ruleset>", "<ruleset name=\"bbelements.com (partial)\" 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)\" default_off=\"failed ruleset test\" 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=\"Bcash.com.br (partial)\" f=\"Bcash.com.br.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"bcobandits.com\" default_off=\"failed ruleset test\" f=\"Bcobandits.com.xml\"><securecookie host=\"^\\.bcobandits\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bcove.me\" f=\"Bcove.me.xml\"><rule from=\"^http://bcove\\.me/\" to=\"https://bcove.me/\"/></ruleset>", "<ruleset name=\"Bdimg.com (partial)\" f=\"Bdimg.com.xml\"><rule from=\"^http://apps\\d?\\.bdimg\\.com/\" to=\"https://openapi.baidu.com/\"/></ruleset>", "<ruleset name=\"Bdone.hu\" default_off=\"failed ruleset test\" f=\"Bdone.hu.xml\"><rule from=\"^http://(?:www\\.)?bdone\\.hu/\" to=\"https://www.bdone.hu/\"/></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\" 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=\"Beacon Reader.com\" f=\"Beacon_Reader.com.xml\"><securecookie host=\"^www\\.beaconreader\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?beaconreader\\.com/\" to=\"https://www.beaconreader.com/\"/></ruleset>", "<ruleset name=\"Beagle Street (partial)\" f=\"Beagle_Street.xml\"><securecookie host=\"^quotes\\.beaglestreet\\.com$\" name=\".+\"/><rule from=\"^http://quotes\\.beaglestreet\\.com/\" to=\"https://quotes.beaglestreet.com/\"/></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://app\\.beanstalkdata\\.com/\" to=\"https://app.beanstalkdata.com/\"/></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\" 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)\" f=\"BeautifulDecay.com.xml\"><securecookie host=\"^\\.beautifuldecay\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BeautyBar.com (partial)\" f=\"BeautyBar.com.xml\"><rule from=\"^http://(?:c\\d\\.)?beautybar\\.com/\" to=\"https://www.beautybar.com/\"/><rule from=\"^http://www\\.beautybar\\.com/(app/|(?:checkout|login)\\.qs|[iI]mages/|giftcertificate/|helpcenter/|myaccount/|SampleSociety/|(?:App_)?Themes/|[\\w\\-]+\\.aspx)\" to=\"https://www.beautybar.com/$1\"/></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=\"Beeld en Geluid.nl (partial)\" f=\"Beeld_en_Geluid.nl.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\" 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=\"Beijing Qianfendian (partial)\" f=\"Beijing_Qianfendian.xml\"><rule from=\"^http://baifendian\\.com/\" to=\"https://www.baifendian.com/\"/><rule from=\"^http://(\\w+\\.api|ssl-[\\w\\-]+|www)\\.baifendian\\.com/\" to=\"https://$1.baifendian.com/\"/></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://www\\.belspo\\.be/\" to=\"https://www.belspo.be/\"/></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\" default_off=\"failed ruleset test\" 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)\" default_off=\"failed ruleset test\" 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\" default_off=\"failed ruleset test\" 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=\"Berkeley Chess School (partial)\" default_off=\"404\" f=\"Berkely-Chess-School.xml\"><securecookie host=\"^(?:.*\\.)?berkeleychessschool\\.org$\" name=\".*\"/><rule from=\"^http://(www\\.)?berkeleychessschool\\.org/(imgs|images|stylesheets)/\" to=\"https://$1berkeleychessschool.org/$2/\"/></ruleset>", "<ruleset name=\"Berklee College of Music\" f=\"Berklee.edu.xml\"><rule from=\"^http://apply\\.berklee\\.edu/\" to=\"https://apply.berklee.edu/\"/></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&amp;=]+wizardName=userreg)))\" to=\"https://www.businesswire.com/$1\"/><rule from=\"^http://(connect|secure)\\.businesswire\\.com/\" to=\"https://$1.businesswire.com/\"/><rule from=\"^http://cts\\.businesswire\\.com/ct/CT\\?id=\" to=\"https://www.businesswire.com/images/spacer.gif\"/><rule from=\"^http://mms\\.businesswire\\.com/bwapps/mediaserver/\" to=\"https://connect.businesswire.com/bwapps/mediaserver/\"/></ruleset>", "<ruleset name=\"BerliOS\" default_off=\"self-signed\" f=\"BerliOS.xml\"><securecookie host=\"^.+\\.berlios\\.de$\" name=\".*\"/><rule from=\"^http://([^/:@\\.]+)\\.berlios\\.de/\" to=\"https://$1.berlios.de/\"/></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\" default_off=\"http redirect\" f=\"Berlin.de.xml\"><exclusion pattern=\"^http://action\\.berlin\\.de/\"/><exclusion pattern=\"^http://daten\\.berlin\\.de/\"/><rule from=\"^http://berlin\\.de/\" to=\"https://www.berlin.de/\"/><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://(www|boss)\\.berlinonline\\.de/\" to=\"https://$1.berlinonline.de/\"/><rule from=\"^http://berlinonline\\.de/\" to=\"https://www.berlinonline.de/\"/><securecookie host=\"^boss\\.berlinonline\\.de\" name=\".*\"/><securecookie host=\"www\\.berlinonline\\.de\" 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=\"berniw.org\" default_off=\"mismatch\" 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\" default_off=\"failed ruleset test\" 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=\"mismatch\" 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=\"bestmx.ru (partial)\" default_off=\"self-signed\" f=\"Bestmx.ru.xml\"><rule from=\"^http://mail\\.bestmx\\.ru/\" to=\"https://mail.bestmx.ru/\"/></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\" f=\"BetCoin.tm.xml\"><securecookie host=\"^(?:luck|www)?\\.betcoin\\.tm$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Beta &amp; Cie (mismatches)\" default_off=\"mismatch\" f=\"Beta-and-Cie-mismatches.xml\"><rule from=\"^http://img\\.tweetimag\\.es/\" to=\"https://img.tweetimag.es/\"/></ruleset>", "<ruleset name=\"Beta &amp; 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=\"Betabeat.com\" default_off=\"failed ruleset test\" f=\"Betabeat.com.xml\"><securecookie host=\"^\\.betabeat\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></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=\"Bethsoft.com (false MCB)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" 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=\"Betram Trading (partial)\" f=\"Betram-Trading.xml\"><rule from=\"^http://images\\.bertrams\\.com/\" to=\"https://images.bertrams.com/\"/></ruleset>", "<ruleset name=\"Better Business Bureau (mismatches)\" default_off=\"mismatches\" 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=\"BetterCrypto.org\" f=\"BetterCrypto.org.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\" default_off=\"failed ruleset test\" 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\" f=\"Betts.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Beyond Security.com\" f=\"Beyond-Security.xml\"><exclusion pattern=\"^http://www\\.beyondsecurity\\.com/(?:.+\\.html)?(?:$|\\?)\"/><securecookie host=\"^(?:cloud[23]|sp-us)\\.beyondsecurity\\.com$\" name=\".\"/><rule from=\"^http://([\\w-]+\\.)?beyondsecurity\\.com/\" to=\"https://$1beyondsecurity.com/\"/></ruleset>", "<ruleset name=\"Bezeq International (partial)\" default_off=\"failed ruleset test\" f=\"Bezeq_International.xml\"><securecookie host=\"^online\\.bezeqint\\.net$\" name=\".+\"/><rule from=\"^http://online\\.bezeqint\\.net/\" to=\"https://online.bezeqint.net/\"/></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=\"BhodiSoft.com\" f=\"BhodiSoft.com.xml\"><securecookie host=\"^\\.bhodisoft\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></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\" default_off=\"failed ruleset test\" 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\" 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\" 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\" f=\"Bidtellect.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bidz.com (partial)\" default_off=\"connection 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\" f=\"BigV.io.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Big Brother.se (partial)\" 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\" 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://api\\.sso\\.biglobe\\.ne\\.jp/\" to=\"https://api.sso.biglobe.ne.jp/\"/></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)\" 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 (partial)\" f=\"Bigstock.xml\"><exclusion pattern=\"^http://(?:www\\.)?bigstockphoto\\.com/(?!(?:cart|login|subscribe)(?:$|\\?|/)|css/|files/|images/|javascript/|js_translation/|serverside/login\\.php|thumbs/)\"/><securecookie host=\"^\\.bigstockimages\\.com$\" name=\".+\"/><rule from=\"^http://(www\\.)?bigstockimages\\.com/\" to=\"https://$1bigstockimages.com/\"/><rule from=\"^http://(?:static\\d*\\.|(www\\.))?bigstockphoto\\.com/\" to=\"https://$1bigstockphoto.com/\"/><rule from=\"^http://help\\.bigstockphoto\\.com/(generated|system)/\" to=\"https://assets.zendesk.com/$1/\"/></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\" 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://www\\.bike24\\.com/\" to=\"https://www.bike24.com/\"/></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\" 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=\"Bilio.com (partial)\" 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\" 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)\" 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\" f=\"Billund.dk.xml\"><securecookie host=\"^\\.?billund\\.dk$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Billy Creative\" default_off=\"mismatch\" 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=\"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\" default_off=\"Breaks startpage image search\" f=\"Bing.net.xml\"><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\" default_off=\"expired, mismatched, self-signed\" f=\"BioInfo.pl.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BioInfoBank.com\" default_off=\"mismatched, self-signed\" f=\"BioInfoBank.com.xml\"><rule from=\"^http://(?:www\\.)?bioinfobank\\.com/\" to=\"https://bioinfo.pl/\"/></ruleset>", "<ruleset name=\"BioMed Central (false MCB)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"BioMed-Central.xml\"><securecookie host=\"^(?:.*\\.)?biomedcentral\\.com$\" name=\".+\"/><rule from=\"^http://(?:w\\d\\d\\.|(www\\.))?biomedcentral\\.com/\" to=\"https://$1biomedcentral.com/\"/><rule from=\"^http://oas\\.biomedcentral\\.com/\" to=\"https://oasc-eu1.247realmedia.com/\"/></ruleset>", "<ruleset name=\"BioShock Infinite\" default_off=\"failed ruleset test\" f=\"BioShock_Infinite.xml\"><securecookie host=\"^www\\.bioshockinfinite\\.com$\" name=\".+\"/><securecookie host=\"^(?:www\\.)?finkmanufacturing\\.com$\" name=\".+\"/><rule from=\"^http://(www\\.)?bioshockinfinite\\.com/\" to=\"https://$1bioshockinfinite.com/\"/><rule from=\"^http://(?:www\\.)?finkmanufacturing\\.com/+([^?/]*).*\" to=\"https://www.bioshockinfinite.com/faq$1\"/></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\" default_off=\"failed ruleset test\" f=\"Biotrim_Labs.com.xml\"><securecookie host=\"^(?:w*\\.)?biotrimlabs\\.com$\" name=\".+\"/><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=\"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=\"mismatches\" 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=\"Bit-Sentinel.com\" f=\"Bit-Sentinel.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"bit.ly vanity domains\" default_off=\"Breaks many redirectors\" f=\"Bit.ly_vanity_domains.xml\"><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=\"BitBucket.org (mismatches)\" default_off=\"mismatched\" f=\"BitBucket-mismatches.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BitBucket.org (partial)\" f=\"BitBucket.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://status\\.bitbucket\\.org/\" to=\"https://bitbucket.statuspage.io/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BitCalm.com\" 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=\"Bitcoin.org\" f=\"BitCoin.xml\"><rule from=\"^http://forum\\.bitcoin\\.org/\" to=\"https://bitcointalk.org/\"/><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://dashboard\\.bitgravity\\.com/\" to=\"https://dashboard.bitgravity.com/\"/></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=\"BitMinter.com\" f=\"BitMinter.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BitMissile (mismatches)\" default_off=\"mismatch\" 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\" 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\" 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)\" f=\"BitTorrent.xml\"><exclusion pattern=\"^http://live\\.bittorrent\\.com/(?!create|css/|img/|js/|login|styles/)\"/><securecookie host=\"^forum\\.bittorrent\\.com$\" name=\".+\"/><rule from=\"^http://(forum|live|remote|torque)\\.bittorrent\\.com/\" to=\"https://$1.bittorrent.com/\"/></ruleset>", "<ruleset name=\"BitVC.com\" f=\"BitVC.com.xml\"><securecookie host=\"^\\.?www\\.bitvc\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BitVisor.org\" default_off=\"failed ruleset test\" 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\" f=\"BitYes.com.xml\"><securecookie host=\"^\\.bityes\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bit Stampede.com\" default_off=\"failed ruleset test\" 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=\"Bitch Magazine.org (partial)\" 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&#246;rse\" default_off=\"connection 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=\"expired\" platform=\"cacert\" f=\"Bitcoin-Contact.org.xml\"><securecookie host=\"^bitcoin-contact\\.org$\" name=\".+\"/><rule from=\"^http://www\\.bitcoin-contact\\.org/\" to=\"https://bitcoin-contact.org/\"/><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.com\" default_off=\"mismatched\" platform=\"mixedcontent\" f=\"Bitcoin.com.xml\"><securecookie host=\"^(?:www)?\\.bitcoin\\.com$\" name=\".+\"/><rule from=\"^http://bitcoin\\.com/\" to=\"https://www.bitcoin.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bitcoin.de\" f=\"Bitcoin.de.xml\"><securecookie host=\"^.*\\.bitcoin\\.de$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bitcoin.pl (partial)\" 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 (CAcert)\" platform=\"cacert\" f=\"Bitcoin_Charts.com-cacert.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bitcoin Charts.com (partial)\" f=\"Bitcoin_Charts.xml\"><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\" 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=\"Bitcoins il.co.il (false MCB)\" platform=\"mixedcontent\" f=\"Bitcoinsil.co.il.xml\"><securecookie host=\"^\\.bitcoinsil\\.co\\.il$\" 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\" 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=\"^\\.bitdefender\\.com$\" name=\"^__qca$\"/><rule from=\"^http://my\\.bitdefender\\.com/\" to=\"https://my.bitdefender.com/\"/></ruleset>", "<ruleset name=\"Bitdeli.com\" 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=\"mismatch\" 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=\"Bitex.la\" f=\"Bitex.la.xml\"><securecookie host=\"^\\.?bitex\\.la$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"bitfetch\" default_off=\"mismatch\" f=\"Bitfetch.xml\"><securecookie host=\"^(?:www\\.)?bitfetch\\.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=\"bitGamer\" default_off=\"failed ruleset test\" f=\"Bitgamer.xml\"><rule from=\"^http://(?:www\\.)?bitgamer\\.su/\" to=\"https://bitgamer.su/\"/><rule from=\"^http://(?:www\\.)?bitgamer\\.com/\" to=\"https://bitgamer.su/\"/></ruleset>", "<ruleset name=\"Bitin.io\" f=\"Bitin.io.xml\"><securecookie host=\"^\\.bitin\\.io$\" name=\"^__cfduid$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bitinvest.com.br (partial)\" 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=\"^(?:.*\\.)?bit\\.ly$\" name=\".+\"/><rule from=\"^http://s\\.bit\\.ly/\" to=\"https://s3.amazonaws.com/s.bit.ly/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bitmain.com (partial)\" 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 (partial)\" f=\"Bitmask.net.xml\"><exclusion pattern=\"^http://deb\\.bitmask\\.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bitmazk.com\" f=\"Bitmazk.com.xml\"><securecookie host=\"^bitmazk\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bitme.com\" f=\"Bitme.com.xml\"><securecookie host=\"^\\.bitme\\.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://getaddr\\.bitnodes\\.io/\" to=\"https://getaddr.bitnodes.io/\"/></ruleset>", "<ruleset name=\"Bitrig\" f=\"Bitrig.xml\"><securecookie host=\"^(?:www\\.)?bitrig\\.org$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"bits.media (partial)\" 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=\"Bitso.com\" 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://bittit\\.info/\" to=\"https://bittit.info/\"/></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=\"Bittylicious.com\" f=\"Bittylicious.com.xml\"><securecookie host=\"^\\.bittylicious\\.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=\"mismatch\" 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=\"^\\.bizographics\\.com$\" name=\".+\"/><rule from=\"^http://js\\.bizographics\\.com/\" to=\"https://sjs.bizographics.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bizrate.com (partial)\" 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\\.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=\"BlaBlaCar.fr\" f=\"BlaBlaCar.fr.xml\"><securecookie host=\"^\\w\" name=\".\"/><securecookie host=\"^\\.\" name=\"^_gat?$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BlackArch.org\" default_off=\"self-signed\" f=\"BlackArch.org.xml\"><rule from=\"^http://www\\.blackarch\\.org/\" to=\"https://blackarch.org/\"/><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\" default_off=\"failed ruleset test\" 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\" f=\"BlackPearl_PDM.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BlackSuit IT.com\" default_off=\"failed ruleset test\" f=\"BlackSuit_IT.com.xml\"><securecookie host=\"^\\.blacksuitit\\.com$\" 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 Iron Beast.com\" f=\"Black_Iron_Beast.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Black Lotus\" f=\"Black_Lotus.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Black Phone.ch\" 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)\" 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\" 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=\"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/\"/><securecookie host=\"^\\.?blendle\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Blesk.sk (partial)\" default_off=\"failed ruleset test\" f=\"Blesk.sk.xml\"><rule from=\"^http://((?:horoskopy|img|isport|pocasi|prozeny|tv|tvprogram|wiki|www)\\.)?blesk\\.sk/\" to=\"https://$1blesk.sk/\"/></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=\"Blicko.com (partial)\" default_off=\"expired\" f=\"Blicko.com.xml\"><exclusion pattern=\"^http://(?:cdn|www)\\.blicko\\.com/+(?![Cc]ontent/|favicon\\.ico)\"/><rule from=\"^http://cdn\\.blicko\\.com/\" to=\"https://www.blicko.com/\"/><rule from=\"^http:\" to=\"https:\"/></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=\"connection 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\" 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=\"BlockBuster UK\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"BlockBuster.xml\"><rule from=\"^http://(?:www\\.)?blockbuster\\.co\\.uk/\" to=\"https://www.blockbuster.co.uk/\"/></ruleset>", "<ruleset name=\"BlockExplorer.com\" f=\"BlockExplorer.com.xml\"><securecookie host=\"^\\.blockexplorer\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BlockExplorer.nu\" 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 Metrics.com\" default_off=\"shows another domain\" f=\"Block_Metrics.xml\"><securecookie host=\"^(?:www\\.)?blockmetrics\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Block Together.com\" default_off=\"failed ruleset test\" f=\"Block_Together.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Block Together.org\" f=\"Block_Together.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Blockchain.info\" default_off=\"failed ruleset test\" f=\"Blockchain.info.xml\"><securecookie host=\"^(?:markets)?\\.blockchain\\.info$\" name=\".+\"/><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\" f=\"Blockstream.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BlogCatalog\" default_off=\"failed ruleset test\" 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\" 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\" f=\"Blog_Top_Sites.xml\"><securecookie host=\"^\\.blogtopsites\\.com$\" 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 (partial)\" f=\"Blogger.xml\"><exclusion pattern=\"^http://(?:www\\.)?blogger\\.co\\.uk/\"/><securecookie host=\"^www2?\\.blogger\\.com$\" name=\".+\"/><rule from=\"^http://(img\\d\\.|www\\.)?blogblog\\.com/\" to=\"https://$1blogblog.com/\"/><rule from=\"^http://((?:buttons|help|photos1|www2?)\\.)?blogger\\.com/\" to=\"https://$1blogger.com/\"/><rule from=\"^http://(\\w+\\.)?blog(?:ger|spot)\\.([\\w.]{2,5})/favicon\\.ico\" to=\"https://$1blogger.$2/favicon.ico\"/><rule from=\"^http://(\\d\\.bp|bp\\d)\\.blogspot\\.com/\" to=\"https://$1.blogspot.com/\"/></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=\"Blogmark.me\" default_off=\"failed ruleset test\" f=\"Blogmark.me.xml\"><securecookie host=\"^(?:www\\.)?blogmark\\.me$\" name=\".+\"/><rule from=\"^http://(www\\.)?blogmark\\.me/\" to=\"https://$1blogmark.me/\"/><rule from=\"^http://blog\\.blogmark\\.me/\" to=\"https://blogmark.me/blog/\"/></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\" 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\" 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://cdn\\.videos\\.bloomberg\\.com/\" to=\"https://cdn.videos.bloomberg.com/\"/></ruleset>", "<ruleset name=\"Bloomberg.net (partial)\" f=\"Bloomberg.net.xml\"><securecookie host=\"^bba\\.bloomberg\\.net$\" name=\".+\"/><rule from=\"^http://(bba|n[jy]bba2csg)\\.bloomberg\\.net/\" to=\"https://$1.bloomberg.net/\"/></ruleset>", "<ruleset name=\"Bloomberg.com (partial)\" f=\"Bloomberg.xml\"><exclusion pattern=\"^http://(?:origin-www\\.|www\\.)?bloomberg\\.com/+(?!favicon\\.ico|images?/|styles/)\"/><securecookie host=\"^(?:careers|service)\\.bloomberg\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?bloomberg\\.com/\" to=\"https://www.bloomberg.com/\"/><rule from=\"^http://(careers|origin-www|service)\\.bloomberg\\.com/\" to=\"https://$1.bloomberg.com/\"/></ruleset>", "<ruleset name=\"Bloomberg Sports.com\" 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=\"blosxom.com\" default_off=\"Certificate mismatch\" f=\"Blosxom.com.xml\"><rule from=\"^http://(?:www\\.)?blosxom\\.com/\" to=\"https://blosxom.com/\"/></ruleset>", "<ruleset name=\"Blot.im\" 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)\" 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\" f=\"BlueCoat.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BlueGenio.com\" default_off=\"shows default page\" f=\"BlueGenio.com.xml\"><securecookie host=\"^(?:www)?\\.bluegenio\\.com$\" name=\".+\"/><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 (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=\"blueSSL.com\" f=\"BlueSSL.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><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)\" 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)\" 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\" 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=\"Bluenote.io\" f=\"Bluenote.io.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bluepoint.com.ph\" default_off=\"expired\" platform=\"cacert\" f=\"Bluepoint.com.ph.xml\"><securecookie host=\"^(?:mail|www)\\.bluepoint\\.com\\.ph$\" name=\".+\"/><rule from=\"^http://bluepoint\\.com\\.ph/\" to=\"https://www.bluepoint.com.ph/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bluetooth.org (partial)\" f=\"Bluetooth.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"HostCenter.com\" f=\"Bluewin-HostCenter.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bluewin.ch (partial)\" 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\" default_off=\"failed ruleset test\" 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=\"Bmibaby.com\" default_off=\"failed ruleset test\" f=\"Bmibaby.com.xml\"><rule from=\"^http://www\\.bmibaby\\.com/\" to=\"https://www.bmibaby.com/\"/></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\" f=\"Bnc4free.com-falsemixed.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"bnc4free.com (partial)\" f=\"Bnc4free.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BoCA.gov.tw\" 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=\"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\" 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)\" 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=\"Boeing Employees Credit Union (partial)\" default_off=\"failed ruleset test\" f=\"Boeing-Employees-Credit-Union.xml\"><securecookie host=\"^\\.becu\\.org$\" name=\"^(?:becuhome|s_\\w+)$\"/><securecookie host=\"^accessassistant\\.becu\\.org$\" name=\".*\"/><securecookie host=\"^.*\\.becuonlinebanking\\.org$\" name=\".*\"/><rule from=\"^http://becu\\.org/\" to=\"https://www.becu.org/\"/><rule from=\"^http://www\\.becu\\.org/($|contact-us\\.aspx|css/|Default\\.aspx|flash/|images/|js/|mobile-online-banking/|pdfsource/|who-is/becu-is-you\\.aspx)\" to=\"https://www.becu.org/$1\"/><rule from=\"^http://accessassistant\\.becu\\.org/\" to=\"https://accessassistant.becu.org/\"/><rule from=\"^http://(?:www\\.)?becuonlinebanking\\.org/\" to=\"https://www.becuonlinebanking.org/\"/></ruleset>", "<ruleset name=\"Boell.de\" default_off=\"failed ruleset test\" f=\"Boell.de.xml\"><rule from=\"^http://groupwise\\.boell\\.de/\" to=\"https://groupwise.boell.de/\"/></ruleset>", "<ruleset name=\"B&#246;rse Frankfurt\" default_off=\"failed ruleset test\" 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\" default_off=\"failed ruleset test\" 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=\"^(?:.*\\.)?boldchat\\.com$\" 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\" 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=\"BoneBlast.com (false MCB)\" platform=\"mixedcontent\" f=\"BoneBlast.com-falsemixed.xml\"><securecookie host=\"^\\.boneblast\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BoneBlast.com (partial)\" f=\"BoneBlast.com.xml\"><rule from=\"^http://(www\\.)?boneblast\\.com/(?=images/|landpage/img/|wp-content/|wp-includes/)\" to=\"https://$1boneblast.com/\"/></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=\"BookMyName\" f=\"BookMyName.xml\"><rule from=\"^http://(?:www\\.)?bookmyname\\.com/\" to=\"https://www.bookmyname.com/\"/></ruleset>", "<ruleset name=\"Bookacourse (partial)\" default_off=\"failed ruleset test\" f=\"Bookacourse.xml\"><rule from=\"^http://(www\\.)?bookacourse\\.com/(?!content)\" to=\"https://$1bookacourse.com/\"/></ruleset>", "<ruleset name=\"Bookie.io\" f=\"Bookie.io.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Booking.com\" f=\"Booking.com.xml\"><securecookie host=\"^(\\.[\\w\\-]+)?\\.booking\\.com$\" name=\".+\"/><exclusion pattern=\"^http://blog\\.booking\\.com\"/><rule from=\"^http://([\\w\\-]+\\.)?booking\\.com/\" to=\"https://$1booking.com/\"/><rule from=\"^http://([\\w\\-]+)\\.bstatic\\.com/\" to=\"https://$1.bstatic.com/\"/></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=\"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\" default_off=\"failed ruleset test\" f=\"Bookworm.xml\"><securecookie host=\"^bookworm\\.oreilly\\.com$\" name=\".*\"/><rule from=\"^http://bookworm\\.oreilly\\.com/\" to=\"https://bookworm.oreilly.com/\"/></ruleset>", "<ruleset name=\"Boomads\" f=\"BoomAds.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Boomerang (partial)\" 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=\"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&#225;rsas&#225;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=\"mismatch\" 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 (false MCB)\" platform=\"mixedcontent\" f=\"Boston.com-falsemixed.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Boston.com (partial)\" f=\"Boston.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://deals\\.boston\\.com/+\" to=\"https://finds.boston.com/\"/><rule from=\"^http://weather\\.boston\\.com/\" to=\"https://www.boston.com/weather/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Boston Globe Media.com (false MCB)\" platform=\"mixedcontent\" f=\"Boston_Globe_Media.com-falsemixed.xml\"><rule from=\"^http://bostonglobemedia\\.com/\" to=\"https://www.bostonglobemedia.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Boston Globe Media.com (partial)\" f=\"Boston_Globe_Media.com.xml\"><exclusion pattern=\"^http://go\\.bostonglobemedia\\.com/+(?!l/)\"/><rule from=\"^http://go\\.bostonglobemedia\\.com/\" to=\"https://pi.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\" 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://boum\\.org/\" to=\"https://boum.org/\"/><rule from=\"^http://([^/:@\\.]+)\\.boum\\.org/\" to=\"https://$1.boum.org/\"/></ruleset>", "<ruleset name=\"Bounce.io\" 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://bouncebidder\\.com/\" to=\"https://bouncebidder.com/\"/></ruleset>", "<ruleset name=\"Bouncer Station.com\" default_off=\"failed ruleset test\" f=\"Bouncer_Station.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bouncy Balls.org\" f=\"Bouncy_Balls.org.xml\"><securecookie host=\"^\\.bouncyballs\\.org$\" name=\".+\"/><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)\" 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 (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\" default_off=\"failed ruleset test\" 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\" 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://bpaste\\.net/\" to=\"https://bpaste.net/\"/></ruleset>", "<ruleset name=\"Brabysads.com (partial)\" default_off=\"failed ruleset test\" f=\"Brabysads.com.xml\"><securecookie host=\"^(?:www\\.)?brabysads\\.com$\" 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://bradleyf\\.id\\.au/\" to=\"https://bradleyf.id.au/\"/></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\" 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\" default_off=\"failed ruleset test\" f=\"BrainyQuote.com.xml\"><securecookie host=\"^(?:www)?\\.brainyquote\\.com$\" name=\".+\"/><rule from=\"^http://((?:i|mobile|www)\\.)?brainyquote\\.com/\" to=\"https://$1brainyquote.com/\"/></ruleset>", "<ruleset name=\"Branch\" 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=\"mismatch\" 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=\"Brands.com.tw\" f=\"Brands.xml\"><securecookie host=\"^mall\\.brands\\.com\\.tw$\" name=\".+\"/><rule from=\"^http://mall\\.brands\\.com\\.tw/\" to=\"https://mall.brands.com.tw/\"/></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=\"Brashear.me\" f=\"Brashear.me.xml\"><rule from=\"^http://(www\\.)?brashear\\.me/\" to=\"https://brashear.me/\"/></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=\"mismatch\" 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=\"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)\" default_off=\"failed ruleset test\" 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://media1\\.break\\.com/\" to=\"https://media1.break.com/\"/></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=\"Bremer Bank\" 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\" 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=\"brevado\" default_off=\"failed ruleset test\" f=\"Brevado.xml\"><securecookie host=\"^\\.brevado\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Brew Your Own\" platform=\"mixedcontent\" f=\"Brew-Your-Own.xml\"><securecookie host=\"^(?:www\\.)?byo\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Brewtourism.com.ua\" default_off=\"failed ruleset test\" f=\"Brewtourism.com.ua.xml\"><securecookie host=\"^(?:www\\.)?brewtourism\\.com\\.ua$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></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\" default_off=\"failed ruleset test\" 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)\" 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=\"^(?:\\.?control|\\.s)\\.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)\" 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\" 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=\"connection 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\"><exclusion pattern=\"^http://www\\.britac\\.ac\\.uk/+(?!cmsfiles/|images/|styles/)\"/><securecookie host=\"^ols\\.britac\\.ac\\.uk$\" name=\".+\"/><rule from=\"^http://britac\\.ac\\.uk/\" to=\"https://www.britac.ac.uk/\"/><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 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 Gas (partial)\" f=\"British_Gas.xml\"><rule from=\"^http://88\\.208\\.232\\.88/wp-content/\" to=\"https://www.britishgas.co.uk/business/blog/wp-content/\"/><rule from=\"^http://(?:www\\.)?britishgas\\.co\\.uk/GetAQuote(\\?.*)?$\" to=\"https://www.britishgas.co.uk/GetAQuote/$1\"/><rule from=\"^http://(?:www\\.)?britishgas\\.co\\.uk/(apps/|content/|etc/|(?:BGBOnline|business/(?:blog/(?:scripts|wp-content)/|ManageAccount||manage-account|QuerryManageMent)|GetAQuote|HelpAndAdvice|HomeMove|Login|Registration|ViewQuoteDetails|Your_Account)(?:$|\\?|/)|images/|libs/|script/|style/)\" to=\"https://www.britishgas.co.uk/$1\"/></ruleset>", "<ruleset name=\"British Library (partial)\" f=\"British_Library.xml\"><securecookie host=\"^pressandpolicy\\.bl\\.uk$\" name=\".+\"/><rule from=\"^http://pressandpolicy\\.bl\\.uk/\" to=\"https://pressandpolicy.bl.uk/\"/></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\" default_off=\"failed ruleset test\" 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\" f=\"Broadband-Forum.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Broadband Convergent\" default_off=\"failed ruleset test\" 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://rs\\.broadcastjobs\\.co\\.uk/\" to=\"https://rs.broadcastjobs.co.uk/\"/></ruleset>", "<ruleset name=\"BroadcasTheNet\" f=\"Broadcasthe.net.xml\"><securecookie host=\"^(?:.*\\.)?broadcastthe\\.net$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Broadcom.com (partial)\" f=\"Broadcom.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Broadcom Foundation.org\" 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)\" platform=\"mixedcontent\" f=\"Broadland.gov.uk.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=\"Brockman\" f=\"Brockman.xml\"><rule from=\"^http://(?:www\\.)?brockman\\.com/\" to=\"https://www.brockman.com/\"/></ruleset>", "<ruleset name=\"Brokentoaster\" default_off=\"mismatch\" 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)\" f=\"Brookings_Institution.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Brookline College.edu\" 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)\" 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)\" default_off=\"failed ruleset test\" 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)\" 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\" 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\" 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\" 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=\"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=\"btc.to\" default_off=\"timeout\" f=\"Btc.to.xml\"><securecookie host=\"^btc\\.to$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?btc\\.to/\" to=\"https://btc.to/\"/></ruleset>", "<ruleset name=\"BtcTrade.com\" f=\"BtcTrade.com.xml\"><securecookie host=\"^www\\.btctrade\\.com$\" name=\".+\"/><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\" f=\"Btp.police.uk.xml\"><rule from=\"^http://(www\\.)?btp\\.police\\.uk/\" to=\"https://www.btp.police.uk/\"/></ruleset>", "<ruleset name=\"Bttrack.com\" f=\"Bttrack.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BucketListly.com (partial)\" default_off=\"failed ruleset test\" 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 (problematic)\" default_off=\"mismatched, self-signed\" f=\"Bucknell_University-problematic.xml\"><rule from=\"^http://(?:www\\.)?b-link\\.bucknell\\.edu/\" to=\"https://www.b-link.bucknell.edu/\"/></ruleset>", "<ruleset name=\"Bucknell University (partial)\" f=\"Bucknell_University.xml\"><securecookie host=\"^(?:www\\.)?bucknell\\.edu$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bucyrus Telegraph Forum\" default_off=\"failed ruleset test\" 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=\"BuddyCube.com\" f=\"BuddyCube.com.xml\"><securecookie host=\"^(?:www\\.)?buddycube\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></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&#252;rger-CERT\" default_off=\"failed ruleset test\" 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=\"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 (problematic)\" default_off=\"mismatched, self-signed\" f=\"Buffalo_State_College-problematic.xml\"><rule from=\"^http://alumni\\.buffalostate\\.edu/\" to=\"https://alumni.buffalostate.edu/\"/></ruleset>", "<ruleset name=\"Buffalo State College (partial)\" default_off=\"failed ruleset test\" f=\"Buffalo_State_College.xml\"><securecookie host=\"^.+\\.buffalostate\\.edu$\" name=\".+\"/><rule from=\"^http://((?:bscintra|bsclib01|catalog|chngpwd|giving|newsandevents|owa|president|sharepoint|www|wwwprod)\\.)?buffalostate\\.edu/\" to=\"https://$1buffalostate.edu/\"/><rule from=\"^http://email\\.buffalostate\\.edu/(?:.*)\" to=\"https://owa.buffalostate.edu/owa/\"/></ruleset>", "<ruleset name=\"Buffer app.com (partial)\" 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=\"Cacert signed\" f=\"BufferedIO.xml\"><securecookie host=\"^(?:.+\\.)?buffered\\.io$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?buffered\\.io/\" to=\"https://buffered.io/\"/></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.com\" f=\"Bugcrowd.com.xml\"><securecookie host=\".\" 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=\"bugzil.la\" f=\"Bugzil.la.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\" f=\"Build_Better.Software.xml\"><securecookie host=\"^\\.buildbetter\\.software$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Build it Break it.org\" f=\"Build_it_Break_it.org.xml\"><securecookie host=\"^www\\.builditbreakit\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BuiltWith.com\" f=\"BuiltWith.com.xml\"><rule from=\"^http://((?:api|blog|kb|s-orig|trends|trendspro|www)\\.)?builtwith\\.com/\" to=\"https://$1builtwith.com/\"/></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\" 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)\" f=\"Bunadformenn.info.xml\"><rule from=\"^http://cdn\\.bunadformenn\\.info/\" to=\"https://dml5atgx9m0j8.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Bunchball.com (partial)\" 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\" 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&#252;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://([^/:@]+)?\\.bmi\\.bund\\.de/\" to=\"https://$1.bmi.bund.de/\"/></ruleset>", "<ruleset name=\"Bundesnachrichtendienst\" f=\"Bundesnachrichtendienst.xml\"><rule from=\"^http://bnd\\.bund\\.de/\" to=\"https://www.bnd.bund.de/\"/><rule from=\"^http://([^/:@]+)?\\.bnd\\.bund\\.de/\" to=\"https://$1.bnd.bund.de/\"/></ruleset>", "<ruleset name=\"Bundesnetzagentur\" default_off=\"failed ruleset test\" f=\"Bundesnetzagentur.xml\"><securecookie host=\"^www\\.bundesnetzagentur\\.de$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?bundesnetzagentur\\.de/\" to=\"https://www.bundesnetzagentur.de/\"/></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=\"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=\"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\" default_off=\"failed ruleset test\" 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=\"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=\"mismatch\" 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://m\\.burt\\.io/\" to=\"https://m.burt.io/\"/></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\" f=\"Burt_hub.com.xml\"><securecookie host=\"^\\.burthub\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Buscap&#233; (mismatches)\" default_off=\"mismatch\" 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://www\\.businessinsider\\.com/(?!account|assets/|favicon\\.ico|login|register)\"/><exclusion pattern=\"^http://jobs\\.businessinsider\\.com/(?!c/)\"/><securecookie host=\"^\\.businessinsider\\.com$\" name=\"^OAX$\"/><securecookie host=\"^(?:intelligence|oascentral)\\.businessinsider\\.com$\" name=\".+\"/><rule from=\"^http://jobs\\.businessinsider\\.com/\" to=\"https://businessinsider.jobamatic.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BusinessWeek.com (partial)\" default_off=\"failed ruleset test\" f=\"BusinessWeek.com.xml\"><rule from=\"^http://bx\\.businessweek\\.com/\" to=\"https://bx.businessweek.com/\"/></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\" 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=\"busybox.net (partial)\" default_off=\"self-signed\" f=\"Busybox.net.xml\"><securecookie host=\"^bugs\\.busybox\\.net$\" name=\".+\"/><rule from=\"^http://bugs\\.busybox\\.net/\" to=\"https://bugs.busybox.net/\"/></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 (broken)\" default_off=\"Redirect loops\" f=\"BuzzFeed.xml\"><securecookie host=\"^www\\.buzzfeed\\.com$\" name=\".+\"/><rule from=\"^http://(www\\.)?buzzfeed\\.com/\" to=\"https://$1buzzfeed.com/\"/><rule from=\"^http://s(?:3-ak|3-ec)?\\.buzzfee?d\\.com/\" to=\"https://buzzfeed-static.s3.amazonaws.com/\"/></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=\"connection refused\" f=\"Buzz_VPN.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Buzzbytes.net\" default_off=\"failed ruleset test\" f=\"Buzzbytes.net.xml\"><securecookie host=\"^\\.buzzbytes\\.net$\" name=\".+\"/><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=\"mismatch\" 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/\"/></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=\"Bynum Law.net\" f=\"Bynum_Law.net.xml\"><securecookie host=\"^\\w\" name=\".\"/><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=\"Bytejail.com\" f=\"Bytejail.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bytemark.co.uk (partial)\" 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\" platform=\"cacert\" f=\"C-Base.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=\"C3PB.net\" default_off=\"failed ruleset test\" f=\"C3PB.de.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\" 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)\" f=\"C4tw.net.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://(?:www\\.)?ca-pca\\.fr/\" to=\"https://www.ca-pca.fr/\"/></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://cloudmonitor\\.nimsoft\\.com/\" to=\"https://cloudmonitor.nimsoft.com/\"/></ruleset>", "<ruleset name=\"CA-mpr.jp\" f=\"CA-mpr.jp.xml\"><rule from=\"^http://ot\\.ca-mpr\\.jp/\" to=\"https://ot.ca-mpr.jp/\"/></ruleset>", "<ruleset name=\"CA.com (partial)\" 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\" default_off=\"failed ruleset test\" 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 (partial)\" f=\"CAIR.com.xml\"><securecookie host=\"^(?:w*\\.)?cair\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CANNEX\" f=\"CANNEX.xml\"><rule from=\"^http://(?:www\\.)?cannex\\.com/\" to=\"https://www.cannex.com/\"/></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)\" 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\" 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\" default_off=\"failed ruleset test\" 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\" 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)\" default_off=\"failed ruleset test\" 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://dw\\.cbsi\\.com/\" to=\"https://dw.cbsi.com/\"/></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=\"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\" 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\" 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)\" 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://(?:www\\.)?ccedk\\.com/\" to=\"https://www.ccedk.com/\"/></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=\"CCH Information Solutions\" default_off=\"failed ruleset test\" f=\"CCH_Information_Solutions.xml\"><securecookie host=\"^(?:w*\\.)?cchcatalog\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></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)\" 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\" 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\" 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=\"mismatch\" 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=\"CDN WP.com\" f=\"CDN_WP.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CDNetworks (partial)\" default_off=\"failed ruleset test\" f=\"CDNetworks.xml\"><securecookie host=\"^pantherportal\\.cdnetworks\\.com$\" name=\".*\"/><rule from=\"^http://ssl(2)?\\.cdngc\\.net/\" to=\"https://ssl$1.cdngc.net/\"/><rule from=\"^http://cdnetworks\\.co\\.jp/$\" to=\"https://www.cdnetworks.co.jp/\"/><rule from=\"^http://pantherportal\\.cdnetworks\\.com/\" to=\"https://pantherportal.cdnetworks.com/\"/><rule from=\"^http://([\\w-]+)\\.sslcs\\.cdngc\\.net/\" to=\"https://$1.sslcs.cdngc.net/\"/><rule from=\"^http://(www\\.)?pantherexpress\\.net/\" to=\"https://$1pantherexpress.net/\"/><rule from=\"^http://([\\w\\-]+)\\.pantherssl\\.com/\" to=\"https://$1.pantherssl.com/\"/></ruleset>", "<ruleset name=\"CDNpark.com\" default_off=\"mismatched\" 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=\"mismatch\" f=\"CDS-Global-mismatches.xml\"><securecookie host=\"^buysub\\.com$\" name=\".*\"/><rule from=\"^http://buysub\\.com/\" to=\"https://buysub.com/\"/></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://w1\\.buysub\\.com/\" to=\"https://w1.buysub.com/\"/><rule from=\"^http://mycdsglobal\\.com/\" to=\"https://www.mycdsglobal.com//\"/><rule from=\"^http://(sso|www)\\.mycdsglobal\\.com/\" to=\"https://$1.mycdsglobal.com/\"/></ruleset>", "<ruleset name=\"CDT.org\" f=\"CDT.xml\"><securecookie host=\"^\\.cdt\\.org$\" 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\" f=\"CERIT-SC.cz.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CERIT.cz\" 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.ch (partial)\" f=\"CERN.xml\"><exclusion pattern=\"http://directory\\.web\\.cern\\.ch/+(?!directory/(?:cern_toolbar/css|css|img|jquery-ui)/)\"/><securecookie host=\".\" name=\".\"/><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=\"^https://home\\.web\\.cern\\.ch/\" to=\"http://home.web.cern.ch/\" downgrade=\"1\"/><exclusion pattern=\"^http://home\\.web\\.cern\\.ch/\"/><rule from=\"^http://st\\.web\\.cern\\.ch/\" to=\"https://st-div.web.cern.ch/\"/><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\" default_off=\"failed ruleset test\" f=\"CERT-Polska.xml\"><securecookie host=\"^(?:.*\\.)?cert\\.pl$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CERT-UK\" default_off=\"failed ruleset test\" 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&amp;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=\"CGRAN.org\" default_off=\"connection refused\" f=\"CGRAN.org.xml\"><rule from=\"^http://(?:www\\.)?cgran\\.org/\" to=\"https://www.cgran.org/\"/></ruleset>", "<ruleset name=\"CHDK\" default_off=\"mismatch\" platform=\"cacert\" f=\"CHDK.xml\"><rule from=\"^http://(?:www\\.)?mighty-hoernsche\\.de/\" to=\"https://mighty-hoernsche.de/\"/></ruleset>", "<ruleset name=\"CHES 15 Challenge.com\" f=\"CHES_15_Challenge.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CHIP-Digital.de\" f=\"CHIP-Digital.de.xml\"><securecookie host=\"^www\\.chip-digital\\.de$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?chip-digital\\.de/\" to=\"https://www.chip-digital.de/\"/></ruleset>", "<ruleset name=\"CHIP-Kiosk.de\" default_off=\"failed ruleset test\" 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)\" default_off=\"failed ruleset test\" 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=\"CIA Cybersurf\" default_off=\"failed ruleset test\" f=\"CIA.com.xml\"><rule from=\"^http://([^/:@\\.]+)\\.cia\\.com/\" to=\"https://$1.cia.com/\"/></ruleset>", "<ruleset name=\"Central Intelligence Agency\" f=\"CIA.xml\"><rule from=\"^http://(?:www\\.)?cia\\.gov/\" to=\"https://www.cia.gov/\"/></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\" 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\" 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\" 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://www\\.cines\\.fr/\" to=\"https://www.cines.fr/\"/></ruleset>", "<ruleset name=\"CIO.com.au\" platform=\"mixedcontent\" f=\"CIO.com.au.xml\"><rule from=\"^http://(?:www\\.)?cio\\.com\\.au/\" to=\"https://www.cio.com.au/\"/></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=\"CIO.gov (partial)\" f=\"CIO.gov.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CIRT.net\" f=\"CIRT.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CIR Online.org (partial)\" 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\" 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\" 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\" f=\"CJS-CDKeys.com.xml\"><securecookie host=\"^\\.cjs-cdkeys\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CKEditor.com (partial)\" f=\"CKEditor.com.xml\"><rule from=\"^http://s1\\.ckeditor\\.com/\" to=\"https://d3j1vh5wu7c1yu.cloudfront.net/\"/><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=\"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\" f=\"CMAS_Center.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CMBChina.com\" f=\"CMBChina.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CMPnet.com\" 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\" f=\"CM_Dev.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CNBC (mixed content)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"CNBC-mixed.xml\"><rule from=\"^http://data\\.cnbc\\.com/\" to=\"https://data.cnbc.com/\"/></ruleset>", "<ruleset name=\"CNBC (partial)\" default_off=\"failed ruleset test\" f=\"CNBC.xml\"><securecookie host=\"^(?:login|pro|register|www)\\.cnbc\\.com$\" name=\".+\"/><rule from=\"^http://((?:fm|login|pro|register|www)\\.)?cnbc\\.com/\" to=\"https://$1cnbc.com/\"/></ruleset>", "<ruleset name=\"CNDP.fr (partial)\" f=\"CNDP.fr.xml\"><rule from=\"^http://cas\\.edutheque\\.cndp\\.fr/\" to=\"https://cas.edutheque.cndp.fr/\"/></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://ws\\.cnetcontent\\.com/\" to=\"https://ws.cnetcontent.com/\"/></ruleset>", "<ruleset name=\"CNN.com (partial)\" f=\"CNN.com.xml\"><securecookie host=\"^(?:audience|markets\\.money)\\.cnn\\.com$\" name=\".+\"/><rule from=\"^http://(audience|(?:markets|portfolio)\\.money)\\.cnn\\.com/\" to=\"https://$1.cnn.com/\"/><rule from=\"^http://jobsearch\\.money\\.cnn\\.com/(c/|favicon\\.ico)\" to=\"https://cnnmoney.jobamatic.com/$1\"/></ruleset>", "<ruleset name=\"COLLADA\" f=\"COLLADA.xml\"><securecookie host=\"^collada\\.org$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?collada\\.org/\" to=\"https://collada.org/\"/></ruleset>", "<ruleset name=\"COLLEGEclubLIFE.com\" default_off=\"failed ruleset test\" f=\"COLLEGEclubLIFE.com.xml\"><securecookie host=\"^(?:.*\\.)?collegeclublife\\.com$\" 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\" f=\"COTC.edu.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"COUNTER\" default_off=\"mismatch\" 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\" f=\"CPMStar.xml\"><securecookie host=\"^\\.server\\.cpmstar\\.com$\" name=\".+\"/><rule from=\"^http://cdn\\.cpmstar\\.com/\" to=\"https://server.cpmstar.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CPM Rocket.com (partial)\" 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)\" 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)\" 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=\"CRU-Inc.com\" default_off=\"self-signed\" f=\"CRU-Inc.com.xml\"><securecookie host=\"^www\\.cru-inc\\.com$\" name=\".+\"/><rule from=\"^http://cru-inc\\.com/\" to=\"https://www.cru-inc.com/\"/><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=\"CSAF\" default_off=\"self-signed\" f=\"CSAF.cz.xml\"><rule from=\"^http://(?:www\\.)?csaf\\.cz/\" to=\"https://csaf.cz/\"/></ruleset>", "<ruleset name=\"CSBA Academy.com (partial)\" 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\" f=\"CSIAC.org.xml\"><securecookie host=\"^\\.csiac\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CSIE.org\" default_off=\"self-signed\" f=\"CSIE.org.xml\"><rule from=\"^http://(?:www\\.)?csie\\.org/\" to=\"https://csie.org/\"/></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=\"^\\.csis\\.dk$\" 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\" 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://www\\.csrsupport\\.com/\" to=\"https://www.csrsupport.com/\"/><rule from=\"^http://csrsupport\\.com/\" to=\"https://www.csrsupport.com/\"/></ruleset>", "<ruleset name=\"CSS-Tricks.com\" f=\"CSS-Tricks.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CSdata1.com\" f=\"CSdata1.com.xml\"><rule from=\"^http://dsa\\.csdata1\\.com/\" to=\"https://dsa.csdata1.com/\"/></ruleset>", "<ruleset name=\"CT.gov (partial)\" 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\" 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\" 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=\"CUP.org\" f=\"CUP.org.xml\"><rule from=\"^http://jnls\\.cup\\.org/\" to=\"https://jnls.cup.org/\"/></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\" default_off=\"failed ruleset test\" 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 (partial)\" f=\"CXense.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\" default_off=\"failed ruleset test\" f=\"CYBERsitter.xml\"><securecookie host=\"^(?:www\\.)?cybersitter\\.com$\" 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://(?:www\\.)?cfmueller\\.de/\" to=\"https://www.cfmueller.de/\"/></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)\" 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=\"Cachet HQ.io\" f=\"Cachet_HQ.io.xml\"><securecookie host=\"^(?:demo|docs)?\\.cachethq\\.io$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cactus Complete Commerce (partial)\" 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\" default_off=\"failed ruleset test\" 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)\" 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\" f=\"Cafemakers.xml\"><securecookie host=\"^\\.cafemakers\\.com$\" name=\".+\"/><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=\"mismatch\" 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://sdsu-dspace\\.calstate\\.edu/\" to=\"https://sdsu-dspace.calstate.edu/\"/></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=\"Calazan.com\" 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 (partial)\" f=\"Calendars.com.xml\"><rule from=\"^http://(www\\.)?calendars\\.com/(css/|img/|user)\" to=\"https://$1calendars.com/$1\"/></ruleset>", "<ruleset name=\"Calguns Foundation.org\" f=\"Calguns_Foundation.org.xml\"><securecookie host=\"^(?:store\\.|www\\.)?calgunsfoundation\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"calibre-ebook.com\" default_off=\"untrusted root\" f=\"Calibre.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"California Department of Motor Vehicles\" f=\"California-Department-of-Motor-Vehicles.xml\"><rule from=\"^http://(?:www\\.)?dmv\\.ca\\.gov/\" to=\"https://www.dmv.ca.gov/\"/></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)\" 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://leginfo\\.legislature\\.ca\\.gov/\" to=\"https://leginfo.legislature.ca.gov/\"/></ruleset>", "<ruleset name=\"Cal Poly.edu (partial)\" 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=\"California Walk In Tub Company.com\" f=\"California_Walk_In_Tub_Company.com.xml\"><securecookie host=\"^(?:\\.|www\\.)?californiawalkintubcompany\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Calispora\" default_off=\"failed ruleset test\" f=\"Calispora.xml\"><rule from=\"^http://(www\\.)?calispora\\.org/\" to=\"https://calispora.org/\"/></ruleset>", "<ruleset name=\"Caller.com (partial)\" default_off=\"failed ruleset test\" 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=\"Calomel.org\" f=\"Calomel.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Caltech (mismatches)\" default_off=\"mismatched, self-signed\" f=\"Caltech-mismatches.xml\"><securecookie host=\"^(?:.*\\.)?imss\\.caltech\\.edu$\" name=\".+\"/><rule from=\"^http://(?:(cliara|courses\\.hss|dabney)|(?:www\\.)?(imss))\\.caltech\\.edu/\" to=\"https://$1$2.caltech.edu/\"/></ruleset>", "<ruleset name=\"Caltech.edu\" f=\"Caltech.xml\"><exclusion pattern=\"^http://(?:www\\.)?gps\\.caltech\\.edu/(?!pics/|stylesheets/|uploads/)\"/><securecookie host=\"^.+\\.caltech\\.edu$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?caltech\\.edu/\" to=\"https://www.caltech.edu/\"/><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://business-query\\.caltech\\.edu:8181/\" to=\"https://business-query.caltech.edu:8181/\"/><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://(?:courses|moodle)\\.caltech\\.edu/\" to=\"https://courses.caltech.edu/\"/><rule from=\"^http://(?:www\\.)?gps\\.caltech\\.edu/\" to=\"https://www.gps.caltech.edu/\"/><rule from=\"^http://nassau\\.caltech\\.edu:4444/\" to=\"https://nassau.caltech.edu:4444/\"/><rule from=\"^http://(odb\\.acs|mail\\.alumni|www\\.cco|(?:www\\.)?imss|insecure|(?:irsa|koa|ned)\\.ipac|(?:utils\\.|www\\.)?its|pcard|scriptor|techne1|x-tmt-web1\\.tmt|tqfr|web|webmail|webvpn)\\.caltech\\.edu/\" to=\"https://$1.caltech.edu/\"/></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://ulysses\\.calvin\\.edu/\" to=\"https://ulysses.calvin.edu/\"/></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=\"camaya.net\" f=\"Camaya.net.xml\"><securecookie host=\"^camaya\\.net$\" 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://journals\\.cambridge\\.org/\" to=\"https://journals.cambridge.org/\"/></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://mobile\\.journals\\.cambridge\\.org/+\" to=\"https://jnls.cup.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)\" 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)\" 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=\"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 (partial)\" f=\"Campuslabs.com.xml\"><securecookie host=\"^\\.campuslabs\\.com$\" name=\"^(?:__cfduid|cf_clearance)$\"/><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)\" default_off=\"failed ruleset test\" 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\" default_off=\"failed ruleset test\" f=\"Canadian-Lung-Assoc.xml\"><rule from=\"^http://(?:www\\.)?lung\\.ca/\" to=\"https://www.lung.ca/\"/></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\" 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://user\\.lightsource\\.ca/\" to=\"https://user.lightsource.ca/\"/></ruleset>", "<ruleset name=\"The Canadian Press\" default_off=\"failed ruleset test\" 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\" 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&#305; Alem\" f=\"Canli_Alem.xml\"><securecookie host=\"^\\.?canlialem\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Intl Cannagraphic Magazine\" f=\"Cannagraphic.xml\"><rule from=\"^http://(?:www\\.)?icmag\\.com/\" to=\"https://www.icmag.com/\"/><rule from=\"^http://(?:www\\.)?icmag\\.com/ic/\" to=\"https://www.icmag.com/ic/\"/></ruleset>", "<ruleset name=\"Canon (partial)\" 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)\" 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\" default_off=\"failed ruleset test\" f=\"Canvas.xml\"><securecookie host=\"^(?:.*\\.)?canv\\.as\" name=\".+\"/><rule from=\"^http://(www\\.)?canv\\.as/\" to=\"https://$1canv.as/\"/><rule from=\"^http://i\\.canvasugc\\.com/\" to=\"https://i.canvasugc.com/\"/><rule from=\"^http://rt_(\\d)\\.canv\\.as/\" to=\"https://rt_$1.canv.as/\"/></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\" default_off=\"failed ruleset test\" 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=\"Capitalone360.com\" 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\" default_off=\"failed ruleset test\" 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\" default_off=\"failed ruleset test\" 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\" 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 (mismatches)\" default_off=\"mismatched, self-signed\" f=\"Cardiff-University-mismatches.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cardiff University (partial)\" f=\"Cardiff-University.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://(www\\.astro|learningcentral)\\.cardiff\\.ac\\.uk/\" to=\"https://$1.cf.ac.uk/\"/><rule from=\"^http://surveys\\.cardiff\\.ac\\.uk/\" to=\"https://www.surveys.cardiff.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\" default_off=\"failed ruleset test\" 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\" 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)\" 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 (partial)\" platform=\"mixedcontent\" f=\"CareerBuilder.xml\"><securecookie host=\"^\\.careerbuilder\\.co\\.uk$\" name=\".+\"/><rule from=\"^http://(www\\.)?careerbuilder\\.com/\" to=\"https://$1careerbuilder.com/\"/><rule from=\"^http://(\\w+)\\.careerbuilder\\.co\\.uk/\" to=\"https://$1.careerbuilder.co.uk/\"/><rule from=\"^http://(?:img|secure)\\.icbdr\\.com/\" to=\"https://secure.icbdr.com/\"/></ruleset>", "<ruleset name=\"CareerDean.com\" 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=\"Carekris.com\" f=\"Carekris.com.xml\"><securecookie host=\"^\\.carekris\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"caremad.io\" f=\"Caremad.io.xml\"><rule from=\"^http:\" to=\"https:\"/></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=\"mismatch\" f=\"Carlosprioglio.com.xml\"><rule from=\"^http://(?:www\\.)?carlosprioglio\\.com/\" to=\"https://carlosprioglio.com/\"/></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)\" 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\" default_off=\"failed ruleset test\" 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=\"mismatch\" 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=\"CarterCenter.org\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"CarterCenter.org.xml\"><securecookie host=\"^(?:www\\.)?cartercenter\\.org$\" name=\".+\"/><rule from=\"^http://(www\\.)?cartercenter\\.org/\" to=\"https://$1cartercenter.org/\"/><rule from=\"^http://donate\\.cartercenter\\.org/(?:site/PageServer)?(?:\\?.*)?$\" to=\"https://cartercenter.org/\"/></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\" 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)\" f=\"Casale-Media.xml\"><securecookie host=\".*\\.casalemedia\\.com$\" 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=\"^\\.casper\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Casper og Frank.de (false MCB)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" 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=\"CastRoller (partial)\" default_off=\"failed ruleset test\" f=\"CastRoller.xml\"><rule from=\"^http://s\\.cstrlr\\.com/\" to=\"https://d231qji2e2hste.cloudfront.net/\"/></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://wrms\\.catalyst\\.net\\.nz/\" to=\"https://wrms.catalyst.net.nz/\"/><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\" 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)\" 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)\" 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\" 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)\" 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://(?:www\\.)?cbb\\.dk/\" to=\"https://www.cbb.dk/\"/></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=\"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\" default_off=\"failed ruleset test\" f=\"Cdn-net.com.xml\"><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\" 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=\"cdnjs.com\" f=\"Cdnjs.xml\"><rule from=\"^http:\" to=\"https:\"/></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://cdnpi\\.pe/\" to=\"https://cdnpi.pe/\"/></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://portal\\.cedexis\\.com/\" to=\"https://portal.cedexis.com/\"/></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=\"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\" default_off=\"failed ruleset test\" f=\"Celartem.xml\"><rule from=\"^http://(?:www\\.)?lizardtech\\.com/\" to=\"https://lizardtech.com/\"/></ruleset>", "<ruleset name=\"Celiac Disease Foundation\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Celiac-Foundation.xml\"><rule from=\"^http://(?:www\\.)?celiac\\.org/\" to=\"https://www.celiac.org/\"/></ruleset>", "<ruleset name=\"Cell (partial)\" default_off=\"all infinite loops\" f=\"Cell.xml\"><securecookie host=\"^www\\.cell\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?cell\\.com/\" to=\"https://www.cell.com/\"/></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\" default_off=\"mismatched\" f=\"Census.xml\"><securecookie host=\"^census-labs.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?census-labs\\.com/\" to=\"https://census-labs.com/\"/></ruleset>", "<ruleset name=\"Censys.io\" f=\"Censys.io.xml\"><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 American Progress (partial)\" default_off=\"breaks site\" f=\"Center-for-American-Progress.xml\"><exclusion pattern=\"^http://thinkprogress\\.com/+(?!wp-content/|wp-includes/)\"/><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 Rights\" f=\"Center-for-Rights.xml\"><rule from=\"^http://(?:www\\.)?thecenterforrights\\.org/\" to=\"https://centerforrights.heroku.com/\"/><rule from=\"^http://(?:www\\.)?internetvotes\\.org/\" to=\"https://internetvotes.herokuapp.com/\"/></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)\" 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=\"failed ruleset test\" 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://community\\.centminmod\\.com/\" to=\"https://community.centminmod.com/\"/></ruleset>", "<ruleset name=\"Central Computers.com\" f=\"Central_Computers.com.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)\" default_off=\"failed ruleset test\" 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)\" f=\"Centreon.com.xml\"><securecookie host=\"^(?:.+\\.)?centreon\\.com$\" name=\".+\"/><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=\"Centrum Holdings (partial)\" f=\"Centrum_Holdings.xml\"><rule from=\"^http://(mail|reg|user|heslo)\\.atlas\\.sk/\" to=\"https://$1.atlas.sk/\"/><rule from=\"^http://(reg|user|heslo)\\.centrum\\.(cz|sk)/\" to=\"https://$1.centrum.$2/\"/><rule from=\"^http://(areg|auser|mail)\\.centrum\\.cz/\" to=\"https://$1.centrum.cz/\"/></ruleset>", "<ruleset name=\"Centzy\" default_off=\"failed ruleset test\" f=\"Centzy.xml\"><securecookie host=\"^(?:m\\.)?centzy\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></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)\" default_off=\"failed ruleset test\" f=\"CertiVox.com.xml\"><securecookie host=\"^m-pindemo\\.certivox\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Certible\" f=\"Certible.xml\"><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\" 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)\" default_off=\"failed ruleset test\" f=\"Certigna.fr.xml\"><securecookie host=\"^www\\.certigna\\.fr$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?certigna\\.fr/\" to=\"https://www.certigna.fr/\"/><rule from=\"^http://v1\\.certigna\\.fr/\" to=\"https://v1.certigna.fr/\"/></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=\"&#268;esk&#225; po&#353;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=\"cf-example.com\" default_off=\"failed ruleset test\" f=\"Cf-example.com.xml\"><securecookie host=\"^\\.cf-example\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?cf-example\\.com/\" to=\"https://www.cf-example.com/\"/></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)\" f=\"Chain.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Chainlove.com\" 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\" default_off=\"failed ruleset test\" f=\"Chais_dOeuvre.fr.xml\"><rule from=\"^http://invitation\\.chaisdoeuvre\\.fr/\" to=\"https://invitation.chaisdoeuvre.fr/\"/></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\" f=\"ChakraOS.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Challenge.gov\" 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=\"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://(?:www\\.)?championsofregnum\\.com/\" to=\"https://www.championsofregnum.com/\"/></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://(www\\.)?changeip\\.com/\" to=\"https://www.changeip.com/\"/></ruleset>", "<ruleset name=\"ChangeTip.com\" f=\"ChangeTip.com.xml\"><securecookie host=\"^\\.changetip\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?changetip\\.com/\" to=\"https://www.changetip.com/\"/></ruleset>", "<ruleset name=\"Changemakers\" f=\"Changemakers.xml\"><rule from=\"^http://(?:cdn\\.|www\\.)?changemakers\\.com/\" to=\"https://www.changemakers.com/\"/></ruleset>", "<ruleset name=\"Chango\" f=\"Chango.xml\"><securecookie host=\"^\\.chango\\.com$\" name=\"^(?:_i_cw|_i_lj|_t|_v?t)$\"/><securecookie host=\"^dashboard\\.chango\\.com$\" name=\".*\"/><rule from=\"^http://ads\\.chango\\.ca/\" to=\"https://as.chango.com/\"/><rule from=\"^http://(?:www\\.)?chango\\.com/\" to=\"https://www.chango.com/\"/><rule from=\"^http://(as|cc|dashboard|z)\\.chango\\.com/\" to=\"https://$1.chango.com/\"/></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://t\\.channeladvisor\\.com/\" to=\"https://t.channeladvisor.com/\"/></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\" 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=\"chaox.net\" platform=\"cacert\" f=\"Chaox.net.xml\"><rule from=\"^http:\" to=\"https:\"/></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=\"Charity Navigator (false MCB)\" platform=\"mixedcontent\" f=\"Charity-Navigator.xml\"><securecookie host=\"^(?:w*\\.)?charitynavigator\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Charity Wings\" default_off=\"connection 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=\"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=\"charity water.org\" f=\"Charity_Water.org.xml\"><securecookie host=\"^(?:www\\.)?charitywater\\.org$\" name=\".+\"/><rule from=\"^http://((?:d2p|f01|my|www)\\.)?charitywater\\.org/\" to=\"https://$1charitywater.org/\"/><rule from=\"^http://store\\.charitywater\\.com/\" to=\"https://charitywater.myshopify.com/\"/></ruleset>", "<ruleset name=\"charlie.bz\" f=\"Charlie.bz.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Charlotte Nature Museum\" default_off=\"failed ruleset test\" f=\"CharlotteNatureMuseum.xml\"><rule from=\"^http://(?:www\\.)?charlottenaturemuseum\\.org/\" to=\"https://www.charlottenaturemuseum.org/\"/></ruleset>", "<ruleset name=\"Charnwood.gov.uk (partial)\" f=\"Charnwood.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><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)\" 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\" f=\"Charter-Business.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Charter.com\" 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\" f=\"CharterBusiness.com.xml\"><securecookie host=\"^(?:\\.|www2?\\.)?charterbusiness\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Charter our Community.com\" 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://(?:www\\.)?chasepaymentech\\.com/\" to=\"https://www.chasepaymentech.com/\"/></ruleset>", "<ruleset name=\"Chat Place\" default_off=\"mismatch\" 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)\" default_off=\"failed ruleset test\" 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=\"ChatON\" default_off=\"failed ruleset test\" f=\"ChatON.xml\"><securecookie host=\"^web\\.samsungchaton\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?chaton\\.com/\" to=\"https://web.samsungchaton.com/\"/><rule from=\"^http://(?:adminfront|mobileweb)\\.chaton\\.com/\" to=\"https://smm.samsung.com/\"/><rule from=\"^http://(i|s)0\\.chatoncdn\\.com/\" to=\"https://$10.chatoncdn.com/\"/><rule from=\"^http://(livemw|web)\\.samsungchaton\\.com/\" to=\"https://$1.samsungchaton.com/\"/></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 (partial)\" f=\"Chaturbate.com.xml\"><securecookie host=\"^(?:\\w\\w\\.)?chaturbate\\.com$\" name=\".+\"/><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=\"chdir.org (partial)\" f=\"Chdir.org.xml\"><rule from=\"^http://(?:(nico\\.)|www\\.)?chdir\\.org/\" to=\"https://$1chdir.org/\"/></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&amp;\"/><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)\" 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\" 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\" f=\"Cheezburger.xml\"><exclusion pattern=\"^http://(?:advertising|blog|corp|feedback|jobs|sites)\\.cheezburger\\.com/\"/><exclusion pattern=\"^https://corp\\.cheezburger\\.com/(?!(?:copyright-infringement-notification|privacy-policy|terms-of-service)/$)\"/><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://chzb\\.gr/\" to=\"https://bit.ly/\"/><rule from=\"^http://(i|s|t)\\.chzbgr\\.com/\" to=\"https://$1.chzbgr.com/\"/><rule from=\"^https://(advertising|blog|corp|feedback|jobs|sites)\\.cheezburger\\.com/?$\" to=\"http://$1.cheezburger.com/\" downgrade=\"1\"/></ruleset>", "<ruleset name=\"Chef.io (partial)\" 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)\" 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\" default_off=\"failed ruleset test\" f=\"Cherry.de.xml\"><securecookie host=\"^(?:www\\.)?cherry\\.de$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cherwell.gov.uk (partial)\" f=\"Cherwell.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><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)\" default_off=\"self-signed\" f=\"ChessBase.com.xml\"><rule from=\"^http://(?:\\w\\w\\.|www\\.)?chessbase\\.com/(?=adv/|bundle/|content/|favicon\\.ico|thumb/)\" to=\"https://chessbase.com/\"/></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 (problematic)\" default_off=\"akamai certificate\" platform=\"mixedcontent\" f=\"Chicago_Tribune-problematic.xml\"><rule from=\"^http://(?:www\\.)?chicagotribune\\.com/\" to=\"https://www.chicagotribune.com/\"/></ruleset>", "<ruleset name=\"Chicago Tribune (partial)\" f=\"Chicago_Tribune.xml\"><securecookie host=\"^myaccount2\\.chicagotribune\\.com$\" name=\".+\"/><rule from=\"^http://((?:www\\.)?advertise|members|myaccount2)\\.chicagotribune\\.com/\" to=\"https://$1.chicagotribune.com/\"/></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\" default_off=\"failed ruleset test\" 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\" default_off=\"failed ruleset test\" f=\"Chime.in.xml\"><securecookie host=\"^(?:www\\.)?chime\\.in$\" name=\".*\"/><rule from=\"^http://(www\\.)?chime\\.in/\" to=\"https://$1chime.in/\"/><rule from=\"^http://support\\.chime\\.in/(assets|external|generated|images|registration|system)/\" to=\"https://chime.zendesk.com/$2/\"/></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=\"China Payment Services\" f=\"China-Payment-Services.xml\"><securecookie host=\"^(?:.*\\.)?chinapaymentservices\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?chinapaymentservices\\.com/\" to=\"https://chinapaymentservices.com/\"/><rule from=\"^http://sales\\.chinapaymentservices\\.com/\" to=\"https://sales.chinapaymentservices.com/\"/></ruleset>", "<ruleset name=\"China Labor Watch\" default_off=\"failed ruleset test\" f=\"China_Labor_Watch.xml\"><rule from=\"^http://(?:www\\.)?chinalaborwatch\\.org/\" to=\"https://www.chinalaborwatch.org/\"/></ruleset>", "<ruleset name=\"Chinabank.com.cn (partial)\" f=\"Chinabank.com.cn.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"chinadialogue.net\" f=\"Chinadialogue.net.xml\"><securecookie host=\"^\\.chinadialogue\\.net$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?chinadialogue\\.net/\" to=\"https://www.chinadialogue.net/\"/></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)\" default_off=\"failed ruleset test\" 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=\"Chocolatey.org\" f=\"Chocolatey.org.xml\"><securecookie host=\"^chocolatey\\.org$\" name=\".+\"/><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)\" 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=\"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\" 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 Jean.com\" f=\"Chris_Jean.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\" 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\" f=\"Christian-Prayer-Center.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=\"Christopher Truncer.com\" f=\"Christopher_Truncer.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Chrome.com (partial)\" f=\"Chrome.com.xml\"><rule from=\"^http://developer\\.chrome\\.com/\" to=\"https://developer.chrome.com/\"/></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\" f=\"Chronicle-Store.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Chronicle.com (partial)\" 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=\"mismatch\" 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=\"Cia.vc\" default_off=\"Cert expired in 2009\" f=\"Cia.vc.xml\"><rule from=\"^http://(?:www\\.)?cia\\.vc/\" to=\"https://cia.vc/\"/></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\" 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\" 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://forum\\.libcinder\\.org/\" to=\"https://forum.libcinder.org/\"/></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=\"CineMovies.fr (partial)\" default_off=\"missing certificate chain\" f=\"CineMovies.xml\"><securecookie host=\"^(?:www)?\\.cinemovies\\.fr$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CineSport.com (partial)\" default_off=\"mismatched\" f=\"CineSport.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CineStar.de (partial)\" 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\" default_off=\"failed ruleset test\" 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://static\\.cineclick\\.com\\.br/\" to=\"https://static.cineclick.com.br/\"/></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=\"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=\"Cipherli.st\" f=\"Cipherli.st.xml\"><rule from=\"^http://cipherli\\.st/\" to=\"https://cipherli.st/\"/></ruleset>", "<ruleset name=\"Cir.ca\" 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\" 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\" default_off=\"failed ruleset test\" 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\" default_off=\"failed ruleset test\" 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)\" f=\"Cisco.mobi.xml\"><securecookie host=\"^(?:cln)?\\.cisco\\.mobi$\" name=\".+\"/><rule from=\"^http://cln\\.cisco\\.mobi/\" to=\"https://cln.cisco.mobi/\"/></ruleset>", "<ruleset name=\"Cisco.com (partial)\" 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=\"^(?:_gat?$|s_v)\"/><securecookie host=\"^[bhjlst]\" 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\" 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=\"CitizenWeb.io\" f=\"CitizenWeb.io.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Citizenfour Film.com\" default_off=\"failed ruleset test\" f=\"Citizenfour_Film.com.xml\"><securecookie host=\"^citizenfourfilm\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Citizens for Science\" default_off=\"mismatch, self-signed\" f=\"Citizens-for-Science.xml\"><rule from=\"^http://(?:www\\.)?citizensforscience\\.org/\" to=\"https://citizensforscience.org/\"/></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)\" 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\" default_off=\"failed ruleset test\" f=\"City.com.ua.xml\"><securecookie host=\"^\\.?city\\.com\\.ua$\" 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\" default_off=\"failed ruleset test\" 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\" 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=\"ClaimYourName.io\" f=\"ClaimYourName.io.xml\"><securecookie host=\"^(?:www\\.)?claimyourname\\.io$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></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 (partial)\" f=\"ClamAV.net.xml\"><rule from=\"^http://bugzilla\\.clamav\\.net/\" to=\"https://bugzilla.clamav.net/\"/></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\" default_off=\"failed ruleset test\" 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=\"connection 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.org\" platform=\"cacert\" f=\"Clear-Code.org.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=\"Clear.com\" f=\"Clear.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ClearCenter.com (partial)\" default_off=\"failed ruleset test\" f=\"ClearCenter.com.xml\"><securecookie host=\"^secure\\.clearcenter\\.com$\" name=\".+\"/><rule from=\"^http://secure\\.clearcenter\\.com/\" to=\"https://secure.clearcenter.com/\"/></ruleset>", "<ruleset name=\"ClearChain\" platform=\"cacert\" default_off=\"failed ruleset test\" f=\"ClearChain.xml\"><securecookie host=\"^www\\.clearchain\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?clearchain\\.com/\" to=\"https://www.clearchain.com/\"/></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=\"Clearlink.com\" f=\"Clearlink.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Clergy Project\" default_off=\"mismatch\" f=\"Clergy-Project.xml\"><rule from=\"^http://(?:www\\.)?clergyproject\\.org/\" to=\"https://clergyproject.org/\"/></ruleset>", "<ruleset name=\"ClevelandClinic (partial)\" default_off=\"failed ruleset test\" 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)\" 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\" 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\" f=\"ClickDimensions.xml\"><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)\" 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=\"Clickberry\" default_off=\"failed ruleset test\" f=\"Clickberry.xml\"><securecookie host=\"^clickberry\\.tv$\" name=\".+\"/><rule from=\"^http://(www\\.)?(\\w+\\.)?clickberry\\.tv/\" to=\"https://$2clickberry.tv/\"/><rule from=\"^http://(www\\.)?(\\w+\\.)?clbr\\.tv/\" to=\"https://$2clbr.tv/\"/></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\" 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=\"ClinicalTrials.gov\" f=\"ClinicalTrials.gov.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Clinkle.com\" 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\" 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://(?:www\\.)?cloudns\\.net/\" to=\"https://www.cloudns.net/\"/></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\" 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)\" f=\"CloudControl.com.xml\"><rule from=\"^http://cloudcontrol\\.com/\" to=\"https://www.cloudcontrol.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CloudCracker\" 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=\"^(?:.*\\.)?cloudflare\\.com$\" 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 (problematic)\" default_off=\"mismatch\" f=\"CloudForge-problematic.xml\"><rule from=\"^http://(?:www\\.)?codesion\\.com/\" to=\"https://www.cloudforge.com/codesion/\"/><rule from=\"^http://info\\.codesion\\.com/\" to=\"https://www.cloudforge.com/\"/></ruleset>", "<ruleset name=\"CloudForge.com (partial)\" 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\" 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://(?:www\\.)?cloudsponge\\.com/(image|javascript|stylesheet)s/\" to=\"https://www.cloudsponge.com/$1s/\"/><rule from=\"^http://api\\.cloudsponge\\.com/\" to=\"https://api.cloudponge.com/\"/></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)\" 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)\" 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\" 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=\"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\"><exclusion pattern=\"^http://d2i3r43q6ffvz8\\.cloudfront\\.net/.+\\.js\"/><rule from=\"^http://([^/:@\\.]+)\\.cloudfront\\.net/\" to=\"https://$1.cloudfront.net/\"/><exclusion pattern=\"^http://(\\w+)\\.cloudfront\\.net/crossdomain\\.xml\"/><exclusion pattern=\"^http:\\/\\/d3aef1qbbv7i5v\\.cloudfront\\.net\\/\"/><exclusion pattern=\"^http:\\/\\/(?:d3bn78kc7qbjb6|d1nawi9f7y8zrl)\\.cloudfront\\.net\\/\"/><exclusion pattern=\"&amp;Signature=\"/></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=\"Cloudup.com\" f=\"Cloudup.com.xml\"><securecookie host=\"^\\.cloudup\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cloudwear.com\" 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=\"clssl.org\" default_off=\"failed ruleset test\" f=\"Clssl.org.xml\"><securecookie host=\"^\\.clssl\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ClubCompy\" default_off=\"failed ruleset test\" f=\"ClubCompy.xml\"><securecookie host=\"^clubcompy\\.com$\" name=\".*\"/><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=\"connection dropped\" f=\"Club_Red_Gaming.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ClusterHQ.com\" 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\" 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=\"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://s25\\.cnzz\\.com/\" to=\"https://s25.cnzz.com/\"/></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)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"CoGen-Media.xml\"><securecookie host=\"^\\.?[\\w-]+-cart\\.degica\\.com$\" name=\".+\"/><rule from=\"^http://degica\\.com/\" to=\"https://degica.com/\"/><rule from=\"^http://([\\w-]+-cart|dl)\\.degica\\.com/\" to=\"https://$1.degica.com/\"/></ruleset>", "<ruleset name=\"CoNetrix\" f=\"CoNetrix.xml\"><securecookie host=\"^(?:www)?\\.conetrix\\.com$\" 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 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.io\" f=\"Cobalt.io.xml\"><securecookie host=\"^\\.cobalt\\.io$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cobalt Mania.com\" 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\" default_off=\"failed ruleset test\" f=\"CodeHS.com.xml\"><rule from=\"^http://(www\\.)?codehs\\.com/\" to=\"https://$1codehs/\"/></ruleset>", "<ruleset name=\"CodePen.io (partial)\" f=\"CodePen.io.xml\"><exclusion pattern=\"^http://(?:assets|s)\\.codepen\\.io/+(?:$|\\?)\"/><exclusion pattern=\"^http://(?:www\\.)?codepen\\.io/+(?!favicon\\.ico|(?:login|signup)(?:$|[?/]))\"/><rule from=\"^http://((?:assets|s|www)\\.)?codepen\\.io/\" to=\"https://$1codepen.io/\"/></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)\" f=\"Code_for_America.org.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Codebase HQ.com\" 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=\"Codecoon.com\" 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\" f=\"Codecov.xml\"><rule from=\"^http://(?:www\\.)?codecov\\.io/\" to=\"https://codecov.io/\"/></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)\" 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=\"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)\" f=\"Coderbits.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Coderouge.co\" 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\" 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=\"Codesion (partial)\" default_off=\"failed ruleset test\" f=\"Codesion.xml\"><securecookie host=\"^(?:ap|hel)p\\.codesion\\.com$\" name=\".+\"/><rule from=\"^http://(ap|hel)p\\.codesion\\.com/\" to=\"https://$1p.codesion.com/\"/><rule from=\"^http://blog\\.codesion\\.com/\" to=\"https://blog.collab.net/\"/></ruleset>", "<ruleset name=\"codespeak\" default_off=\"failed ruleset test\" f=\"Codespeak.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Codethink\" default_off=\"mismatch\" f=\"Codethink.xml\"><rule from=\"^http://(?:www\\.)?codethink\\.co\\.uk/\" to=\"https://www.codethink.co.uk/\"/></ruleset>", "<ruleset name=\"Codeux.com\" f=\"Codeux.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Codex NS.io (partial)\" f=\"Codex_NS.io.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CodingTeam.net\" f=\"CodingTeam.net.xml\"><rule from=\"^http://(?:www\\.)?codingteam\\.net/\" to=\"https://codingteam.net/\"/></ruleset>", "<ruleset name=\"Coding Horror\" f=\"Codinghorror.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\" 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\" default_off=\"500\" f=\"CoinDL.xml\"><securecookie host=\"^\\.?www\\.coindl\\.com$\" 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\" 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\" default_off=\"self-signed\" f=\"CoinJabber.com.xml\"><securecookie host=\"^(?:www\\.)?coinjabber\\.com$\" 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\" 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=\"Coinbase.com\" f=\"Coinbase.xml\"><securecookie host=\"^(?:\\.|(?:docs\\.)?exchange\\.)?coinbase\\.com$\" 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\" 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\" 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)\" f=\"Colchester.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"coldhak.ca\" f=\"Coldhak.ca.xml\"><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\" default_off=\"failed ruleset test\" 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)\" default_off=\"failed ruleset test\" 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=\"Collegiate Peaks Bank\" f=\"Collegiate-Peaks-Bank.xml\"><securecookie host=\"(?:^|\\.)collegiatepeaksbank\\.com$\" name=\".+\"/><securecookie host=\"(?:^|\\.)cpbonlinebanking\\.com$\" name=\".+\"/><rule from=\"^http://12\\.191\\.21\\.228/\" to=\"https://www.collegiatepeaksbank.com/\"/><rule from=\"^http://cpbonlinebanking\\.com/\" to=\"https://www.cpbonlinebanking.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CollegiateLink (partial)\" f=\"CollegiateLink.xml\"><exclusion pattern=\"^http://(?:(?:www[0-9]?)\\.)?collegiatelink\\.net/\"/><rule from=\"^http://([a-zA-Z0-9\\-]+)\\.collegiatelink\\.net/\" to=\"https://$1.collegiatelink.net/\"/></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=\"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\" 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\" default_off=\"failed ruleset test\" f=\"Coloman.nl.xml\"><securecookie host=\"^www\\.coloman\\.nl$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Colorado State Attorney General\" 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://(?:www\\.)?coloradonocall\\.com/\" to=\"https://www.coloradonocall.com/\"/></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 (partial)\" f=\"Colorado_Secretary_of_State.xml\"><rule from=\"^http://(?:www\\.)sos\\.state\\.co\\.us/pubs/\" to=\"https://$1sos.state.co.us/pubs/\"/></ruleset>", "<ruleset name=\"The Coloradoan\" default_off=\"failed ruleset test\" 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=\"mismatch\" 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)\" f=\"Comcast.net.xml\"><securecookie host=\"^\\.\" name=\"^(?:NXCLICK2|OAX)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Comcast.com (partial)\" 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\" default_off=\"failed ruleset test\" 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=\"Comingolstadt\" f=\"Comingolstadt.xml\"><rule from=\"^http://(www\\.)?comingolstadt\\.de/\" to=\"https://comingolstadt.de/\"/></ruleset>", "<ruleset name=\"Comkort.com\" 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://chatserver\\.comm100\\.com/\" to=\"https://chatserver.comm100.com/\"/></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=\"Commando.io (partial)\" f=\"Commando.io.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Commando Boxing.com\" 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\"><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)\" default_off=\"failed ruleset test\" f=\"Commindo-media.xml\"><rule from=\"^http://auslieferung\\.commindo-media-ressourcen\\.de/\" to=\"https://auslieferung.commindo-media-ressourcen.de/\"/></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)\" 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 (partial)\" f=\"CommonDreams.xml\"><securecookie host=\"^commondreams\\.org$\" name=\".*\"/><rule from=\"^http://commondreams\\.org/\" to=\"https://commondreams.org/\"/></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=\"Commonwealth Superannuation Scheme\" f=\"CommonwealthSuperannuationScheme.xml\"><rule from=\"^http://(?:www\\.)?css\\.gov\\.au/\" to=\"https://www.css.gov.au/\"/></ruleset>", "<ruleset name=\"Commotionwireless.net\" 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.elgg.org\" f=\"Community.elgg.org.xml\"><rule from=\"^http://community\\.elgg\\.org/\" to=\"https://community.elgg.org/\"/></ruleset>", "<ruleset name=\"WB Games.com (partial)\" f=\"Community.wbgames.com.xml\"><securecookie host=\"community\\.wbgames\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Community Matters (partial)\" 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\" f=\"CompaniesHouse.xml\"><securecookie host=\"^(?:direct|ebilling|ewf)\\.companieshouse\\.gov\\.uk$\" name=\".*\"/><rule from=\"^http://(direct|ebilling|ewf)\\.companieshouse\\.gov\\.uk/\" to=\"https://$1.companieshouse.gov.uk/\"/></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=\"Companies House (partial)\" f=\"Companies_House.xml\"><rule from=\"^http://wck2\\.companieshouse\\.gov\\.uk/(?!/?wcframe)\" to=\"https://wck2.companieshouse.gov.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)\" 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=\"TransLink Compass Card\" f=\"Compasscard.ca.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Compendium.com (partial)\" 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=\"connection dropped\" f=\"Compete.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Compete (partial)\" 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\" 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=\"connection 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\" platform=\"cacert\" f=\"Comprehensive-C-Archive-Network.xml\"><rule from=\"^http://www\\.ccodearchive\\.net/\" to=\"https://ccodearchive.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Compteur.fr\" default_off=\"failed ruleset test\" f=\"Compteur.fr.xml\"><securecookie host=\"^\\.(?:www\\.)?compteur\\.fr$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?compteur\\.fr/\" to=\"https://www.compteur.fr/\"/></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=\"Computational Infrastructure for Operations Research (partial)\" default_off=\"failed ruleset test\" f=\"Computational-Infrastructure-for-Operations-Research.xml\"><securecookie host=\"^projects\\.coin-or\\.org$\" name=\".*\"/><rule from=\"^http://projects\\.coin-or\\.org/\" to=\"https://projects.coin-or.org/\"/></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=\"Computerbase.de (partial)\" f=\"Computerbase.de.xml\"><rule from=\"^http://www\\.computerbase\\.de/(abo|api/stats|clientscripts|css|design|img|login|push)/\" to=\"https://www.computerbase.de/$1/\"/><exclusion pattern=\"^http://www\\.computerbase\\.de/$\"/><rule from=\"^http://pics\\.computerbase\\.de/\" to=\"https://pics.computerbase.de/\"/></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\" default_off=\"failed ruleset test\" 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=\"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\" default_off=\"failed ruleset test\" f=\"ConSecur.xml\"><securecookie host=\"^www\\.consecur\\.de$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?consecur\\.de/\" to=\"https://www.consecur.de/\"/></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&#233; 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)\" 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&#233; 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&#233; 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\" 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)\" default_off=\"failed ruleset test\" f=\"Condesa.xml\"><rule from=\"^http://secure\\.prleap\\.com/\" to=\"https://secure.prleap.com/\"/></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=\"mismatch\" 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)\" 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\" 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\" 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\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Connexity.net\" 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=\"Conseil National du Num&#233;rique\" default_off=\"failed ruleset test\" f=\"Conseil_National_du_Numerique.xml\"><rule from=\"^http://contribuez\\.cnnumerique\\.fr/\" to=\"https://contribuez.cnnumerique.fr/\"/></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)\" 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=\"Consul.io (partial)\" f=\"Consul.io.xml\"><securecookie host=\"^\\.consul\\.io$\" name=\".+\"/><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.gov\" f=\"Consumer.gov.xml\"><rule from=\"^http://(?:www\\.)?consum(e|ido)r\\.gov/\" to=\"https://www.consum$1r.gov/\"/></ruleset>", "<ruleset name=\"ConsumerAffairs.com (partial)\" f=\"ConsumerAffairs.com.xml\"><securecookie host=\"^(?:.*\\.)?consumeraffairs\\.com$\" 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=\"connection 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\" default_off=\"failed ruleset test\" f=\"Consumers_Win.com.xml\"><securecookie host=\"^(?:www\\.)?consumerswin\\.com$\" name=\".+\"/><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://applications\\.contactatonce\\.com/\" to=\"https://applications.contactatonce.com/\"/></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\" f=\"Content_Watch.xml\"><securecookie host=\"^(?:www\\.)?contentwatch\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"contentabc.com\" f=\"Contentabc.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"contentdn.net\" f=\"Contentdn.net.xml\"><rule from=\"^http://contentdn\\.net/\" to=\"https://contentdn.net/\"/></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 (partial)\" f=\"Contextly.xml\"><exclusion pattern=\"^http://(?:www\\.)?contextly\\.com/+blog\"/><securecookie host=\"^dev\\.contextly\\.com$\" name=\".+\"/><rule from=\"^http://(?:((?:app|dev|rest)\\.)|www\\.)?contextly\\.com/\" to=\"https://$1contextly.com/\"/><rule from=\"^http://contextlysitescripts\\.contextly\\.com/\" to=\"https://c714015.ssl.cf2.rackcdn.com/\"/><rule from=\"^https://contextly\\.com/blog\" to=\"http://contextly.com/blog\" downgrade=\"1\"/></ruleset>", "<ruleset name=\"contextweb.com (partial)\" f=\"Contextweb.com.xml\"><exclusion pattern=\"http://blog\\.contextweb\\.com/(?!sellingdesk$)\"/><securecookie host=\"^\\.contextweb\\.com$\" name=\".+\"/><rule from=\"^http://blog\\.contextweb\\.com/sellingdesk$\" to=\"https://getsatisfaction.com/contextweb\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Contiki\" default_off=\"mismatched\" f=\"Contiki.xml\"><rule from=\"^http://(?:www\\.)?contiki-os\\.org/\" to=\"https://contiki-os.org/\"/></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=\"Contributoria.com\" f=\"Contributoria.com.xml\"><securecookie host=\"^\\.contributoria\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ControlScan.com\" default_off=\"failed ruleset test\" 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=\"ControllerMAX.com (false MCB)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"ControllerMAX.com-falsemixed.xml\"><securecookie host=\"^(?:www\\.)?controllermax\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ControllerMAX.com (partial)\" default_off=\"failed ruleset test\" f=\"ControllerMAX.com.xml\"><securecookie host=\"^(?:www\\.)?controllermax\\.com$\" name=\"^PHPSESSID$\"/><rule from=\"^http://(www\\.)?controllermax\\.com/(?!forums(?!/clientscript/|/css\\.php|/customavatars/|/favicon\\.ico|/images/))\" to=\"https://$1controllermax.com/\"/></ruleset>", "<ruleset name=\"Controller Plus\" f=\"Controller_Plus.xml\"><securecookie host=\"^\\.(?:www\\.)?pluscontrollers\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CONVAR (partial)\" platform=\"mixedcontent\" 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=\"Conversejs.org\" 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\" 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://livepass(?:dl)?\\.conviva\\.com/\" to=\"https://livepass.conviva.com/\"/><rule from=\"^http://pulse\\.conviva\\.com/\" to=\"https://pulse.conviva.com/\"/></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://policy\\.cookiereports\\.com/\" to=\"https://policy.cookiereports.com/\"/></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://(?:www\\.)?|https://)coolcart\\.net/\" to=\"https://www.coolcart.net/\"/></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\" 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\" default_off=\"failed ruleset test\" 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\" platform=\"mixedcontent\" f=\"Coop.ch-falsemixed.xml\"><rule from=\"^http://jamadu\\.ch/\" to=\"https://www.jamadu.ch/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Coop\" f=\"Coop.ch.xml\"><rule from=\"^http://onlinebanking\\.bankcoop\\.ch/\" to=\"https://onlinebanking.bankcoop.ch/\"/><rule from=\"^http://(?:www\\.)?supercard\\.ch/\" to=\"https://www.supercard.ch/\"/><rule from=\"^http://(?:www\\.)?coopzeitung\\.ch/\" to=\"https://www.coopzeitung.ch/\"/><rule from=\"^http://(?:www\\.)?cooperazione\\.ch/\" to=\"https://www.cooperazione.ch/\"/><rule from=\"^http://(?:www\\.)?coopathome\\.ch/\" to=\"https://www.coopathome.ch/\"/><rule from=\"^http://(?:www\\.)?interdiscount\\.ch/\" to=\"https://www.interdiscount.ch/\"/><rule from=\"^http://(?:www\\.)?microspot\\.ch/\" to=\"https://www.microspot.ch/\"/><rule from=\"^http://(?:www\\.)?toptip\\.ch/\" to=\"https://www.toptip.ch/\"/><rule from=\"^http://(?:www\\.)?lumimart\\.ch/\" to=\"https://www.lumimart.ch/\"/><rule from=\"^http://(?:www\\.)?impo\\.ch/\" to=\"https://www.impo.ch/\"/><rule from=\"^http://(?:www\\.)?christ-swiss\\.ch/\" to=\"https://www.christ-swiss.ch/\"/><rule from=\"^http://(?:www\\.)?fust\\.ch/\" to=\"https://www.fust.ch/\"/><rule from=\"^http://([\\w-]+)\\.fust\\.ch/\" to=\"https://$1.fust.ch/\"/><rule from=\"^http://(?:www\\.)?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.no\" f=\"Coop.no.xml\"><rule from=\"^http://(?:www\\.)?coop\\.no/\" to=\"https://coop.no/\"/><rule from=\"^http://(?:www\\.)?coophotellkupp\\.com/\" to=\"https://www.coophotellkupp.com/\"/></ruleset>", "<ruleset name=\"Cooperating-Objects.eu\" f=\"Cooperating-Objects.eu.xml\"><securecookie host=\"^www\\.cooperating-objects\\.eu$\" name=\".+\"/><rule from=\"^http://www\\.cooperating-objects\\.eu/\" to=\"https://www.cooperating-objects.eu/\"/></ruleset>", "<ruleset name=\"Cope-IT\" f=\"Cope-IT.xml\"><securecookie host=\"^www\\.cope-it\\.at$\" name=\".+\"/><rule from=\"^http://www\\.cope-it\\.at/\" to=\"https://www.cope-it.at/\"/></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\" 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=\"Copperhead.co\" f=\"Copperhead.co.xml\"><securecookie host=\"^\\.copperhead\\.co$\" 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-Watch.org\" f=\"Copyright-Watch.org.xml\"><securecookie host=\"^\\.copyright-watch\\.org$\" name=\".+\"/><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://(?:www\\.)?corbinfisher\\.com/\" to=\"https://www.corbinfisher.com/\"/></ruleset>", "<ruleset name=\"CoreCode\" default_off=\"mismatch\" 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)\" f=\"CoreMetrics.xml\"><securecookie host=\"^testdata\\.coremetrics\\.com$\" name=\".+\"/><securecookie host=\"^\\.surfaid\\.ihost\\.com$\" name=\".+\"/><rule from=\"^http://data\\.cmcore\\.com/\" to=\"https://data.cmcore.com/\"/><rule from=\"^http://www\\.coremetrics\\.com/\" to=\"https://www.ibm.com/software/marketing-solutions/coremetrics/www.redirects/\"/><rule from=\"^http://(data|libs|testdata)\\.coremetrics\\.com/\" to=\"https://$1.coremetrics.com/\"/><rule from=\"^http://stats\\.surfaid\\.ihost\\.com/\" to=\"https://stats.surfaid.ihost.com/\"/></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://mycoresite\\.coresite\\.com/\" to=\"https://mycoresite.coresite.com/\"/></ruleset>", "<ruleset name=\"Core Infrastructure.org\" f=\"Core_Infrastructure.org.xml\"><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=\"coredump.gr\" f=\"Coredump.gr.xml\"><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\" 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 Team\" f=\"Corlan-Team.xml\"><securecookie host=\"^(?:w*\\.)?corelan\\.be$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cornell.edu (partial)\" 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:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cornify\" default_off=\"mismatch\" 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\" default_off=\"failed ruleset test\" 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\" 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\" 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=\"mismatch\" 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://www\\.cosmote\\.gr/\" to=\"https://www.cosmote.gr/\"/></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)\" 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\" f=\"CouchPota.to.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Couchbase (partial)\" default_off=\"failed ruleset test\" 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=\"Couchsurfing\" f=\"Couchsurfing.xml\"><rule from=\"^http://www\\.couchsurfing\\.org/login\\.html$\" to=\"https://www.couchsurfing.org/login.html\"/></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=\"CounterMail.com\" f=\"CounterMail.com.xml\"><securecookie host=\"^support\\.countermail\\.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\" 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\" default_off=\"self-signed\" f=\"CourageCampaign.xml\"><securecookie host=\"^(?:main|www)\\.couragecampaign\\.org\" name=\".+\"/><rule from=\"^http://(?:main\\.|www\\.)?couragecampaign\\.org/\" to=\"https://www.couragecampaign.org/\"/><rule from=\"^http://act\\.couragecampaign\\.org/\" to=\"https://couragecampaign.actionkit.com/\"/></ruleset>", "<ruleset name=\"Courage Found.org\" f=\"Courage_Found.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Courier Post Online.com (partial)\" 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=\"Cours Crypto.org\" f=\"Cours_Crypto.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CourseFinder.io\" 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=\"Coursera.org\" f=\"Coursera.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CourtListener.com\" default_off=\"failed ruleset test\" f=\"CourtListener.com.xml\"><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)\" 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\" 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)\" default_off=\"failed ruleset test\" 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)\" 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\" default_off=\"failed ruleset test\" 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)\" default_off=\"failed ruleset test\" 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\" default_off=\"failed ruleset test\" f=\"Coxnewsweb.com.xml\"><rule from=\"^http://img\\.coxnewsweb\\.com/\" to=\"https://img.coxnewsweb.com/\"/><rule from=\"^http://alt\\.coxnewsweb\\.com/\" to=\"https://alt.coxnewsweb.com/\"/></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\" 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\" f=\"Cpunk.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cpunks.org\" 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=\"CrackStation.net\" f=\"CrackStation.net.xml\"><rule from=\"^http://(?:www\\.)?crackstation\\.net/\" to=\"https://crackstation.net/\"/></ruleset>", "<ruleset name=\"crackedconsole.com\" 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.org (partial)\" f=\"Craigslist.org.xml\"><exclusion pattern=\"^http://blog\\.craigslist\\.org/\"/><exclusion pattern=\"^http://www\\.craigslist\\.org/$\"/><rule from=\"^http://craigslist\\.org/\" to=\"https://www.craigslist.org/\"/><rule from=\"^http://([^/:@.]+)\\.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 (partial)\" default_off=\"failed ruleset test\" f=\"Crazy-Egg.xml\"><exclusion pattern=\"^http://www\\.crazyegg\\.com/(?:$|\\?)\"/><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=\"Crazybates.com\" default_off=\"expired, self-signed\" f=\"Crazybates.com.xml\"><securecookie host=\"^crazybates\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?crazybates\\.com/\" to=\"https://crazybates.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=\"Crbug.com\" f=\"Crbug.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Creare.co.uk\" 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=\"connection refused\" f=\"Create.xml\"><securecookie host=\"^create-dmgmedia\\.co\\.uk$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CreateSpace.com\" 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\" default_off=\"failed ruleset test\" f=\"Creation.xml\"><securecookie host=\"^.+\\.creation\\.co\\.uk$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?creation\\.co\\.uk/\" to=\"https://www.creation.co.uk/\"/><rule from=\"^http://(apply|credit-card-asda-payments|(?:manage)?myaccount)\\.creation\\.co\\.uk/\" to=\"https://$1.creation.co.uk/\"/></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://ads\\.creative-serving\\.com/\" to=\"https://ads.creative-serving.com/\"/></ruleset>", "<ruleset name=\"Creative Commons (partial)\" f=\"CreativeCommons.xml\"><securecookie host=\"(\\.|^)(api|blog|donate|i|login|search|stateof|stats|wiki)\\.creativecommons\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Creative COW\" 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=\"\\.creativecdn\\.com$\" 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\" default_off=\"failed ruleset test\" f=\"Creativeskills.be-falsemixed.xml\"><securecookie host=\"^\\.creativeskills\\.be$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Creativeskills.be (partial)\" default_off=\"failed ruleset test\" 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\" 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\" f=\"Credit_Repair_Trust.com.xml\"><securecookie host=\"^(?:[w.]*\\.)?creditrepairtrust\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Credit Report Nation\" 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://(?:www\\.)?cricketwireless\\.com/\" to=\"https://www.cricketwireless.com/\"/></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=\"CrimethInk.com (partial)\" f=\"CrimethInc.com.xml\"><rule from=\"^http://cloudfront\\.crimethinc\\.com/\" to=\"https://d33bhpqk8nwto8.cloudfront.net/\"/><rule from=\"^http://thecloud\\.crimethinc\\.com/\" to=\"https://s3.amazonaws.com/thecloud.crimethinc.com/\"/></ruleset>", "<ruleset name=\"Criminal Justice Inspectorates\" default_off=\"failed ruleset test\" 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=\"Crisis.org.uk (partial)\" f=\"Crisis.org.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Criteo.com (partial)\" 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://cm1\\.criticalmass\\.com/\" to=\"https://cm1.criticalmass.com/\"/></ruleset>", "<ruleset name=\"Critical Path Internet Services\" f=\"Critical-Path-Internet-Services.xml\"><rule from=\"^http://secure\\.critpath\\.org/\" to=\"https://secure.critpath.org/\"/></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\" 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=\"mismatch\" 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 (partial)\" f=\"CrossRef.org.xml\"><rule from=\"^http://(api|crossmark)\\.crossref\\.org/\" to=\"https://$1.crossref.org/\"/><rule from=\"^http://help\\.crossref\\.com/(?=docs-view-\\d+\\.css|favicon\\.ico|favicon-\\d+-\\d+\\.gif|resources/|userfiles/)\" to=\"https://crossref.helpdocsonline.com/\"/></ruleset>", "<ruleset name=\"CrossWire.org\" default_off=\"self-signed\" f=\"CrossWire.org.xml\"><securecookie host=\"^www\\.crosswire\\.org$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?crosswire\\.org/\" to=\"https://www.crosswire.org/\"/></ruleset>", "<ruleset name=\"Crossdresser-Forum.de\" f=\"Crossdresser-Forum.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Crossrider (partial)\" 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 (partial)\" f=\"Crowdin.com.xml\"><securecookie host=\"^crowdin\\.com$\" 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 (partial)\" f=\"Crowdrise.com.xml\"><securecookie host=\"^\\.crowdrise\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Crrev.com\" f=\"Crrev.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"cru.fr (partial)\" 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\" default_off=\"failed ruleset test\" 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\"><exclusion pattern=\"^http://(?:www\\.)?crucial\\.com/(?!favicon\\.png|images\\d{0,2}/|js/|css/|reviews/)\"/><rule from=\"^http://crucial\\.com/\" to=\"https://crucial.com/\"/><rule from=\"^http://(?:images|scripts|www)\\.crucial\\.com/\" to=\"https://www.crucial.com/\"/><rule from=\"^http://forum\\.crucial\\.com/\" to=\"https://crucial.i.lithium.com/\"/></ruleset>", "<ruleset name=\"CruisersForum.com\" default_off=\"failed ruleset test\" 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)\" 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\" f=\"Crux.nu.xml\"><rule from=\"^http://www\\.crux\\.nu/\" to=\"https://crux.nu/\"/><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\" 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)\" default_off=\"failed ruleset test\" 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\" f=\"Cryptanalysis.xml\"><securecookie host=\"^cryptanalysis\\.eu$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cryptbin.com\" f=\"Cryptbin.com.xml\"><securecookie host=\"^cryptbin\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CryptedMemo.com\" 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.graphics\" f=\"Crypto.graphics.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Crypto.is (partial)\" f=\"Crypto.is.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CryptoBin.org\" f=\"CryptoBin.org.xml\"><securecookie host=\"^cryptobin\\.org$\" name=\".+\"/><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=\"CryptoCon.org\" f=\"CryptoCon.org.xml\"><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\" 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=\"CryptoSMS.org (CAcert)\" platform=\"cacert\" default_off=\"expired\" f=\"CryptoSMS.org.xml\"><rule from=\"^http://www\\.cryptosms\\.org/\" to=\"https://cryptosms.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CryptoSeal.com\" 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\" f=\"Crypto_Santa.xyz.xml\"><securecookie host=\"^\\.cryptosanta\\.xyz$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cryptocloud.ca\" default_off=\"mismatched\" f=\"Cryptocloud.ca.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cryptocloud (partial)\" default_off=\"failed ruleset test\" f=\"Cryptocloud.xml\"><securecookie host=\"^(?:billing)?\\.cryptocloud\\.com$\" name=\".+\"/><securecookie host=\"^\\.cryptocloud\\.org$\" name=\".+\"/><rule from=\"^http://(billing\\.|www\\.)?cryptocloud\\.com/\" to=\"https://$1cryptocloud.com/\"/><rule from=\"^http://forum\\.cryptocloud\\.com/\" to=\"https://cryptocloud.org/\"/><rule from=\"^http://support\\.cryptocloud\\.com/\" to=\"https://cryptocloud.kayako.com/\"/><rule from=\"^http://(www\\.)?cryptocloud\\.org/\" to=\"https://$1cryptocloud.org/\"/></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=\"connection 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=\"Cryptomaths.com\" default_off=\"mismatched\" f=\"Cryptomaths.com.xml\"><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\" 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\"><securecookie host=\"^crypton\\.io$\" name=\".+\"/><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=\"mismatch\" f=\"Cryptonomicon.xml\"><rule from=\"^http://(?:www\\.)?cryptonomicon\\.com/\" to=\"https://cryptonomicon.com/\"/></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\" 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)\" 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\" f=\"Crytography.com.xml\"><securecookie host=\"^(?:www\\.)?cryptography\\.com$\" name=\".+\"/><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\" f=\"CspBuilder.info.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"css Zen Garden\" default_off=\"mismatch\" f=\"Css-Zen-Garden.xml\"><rule from=\"^http://(?:www\\.)?csszengarden\\.com/\" to=\"https://csszengarden.com/\"/></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\" 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\" default_off=\"failed ruleset test\" f=\"Cts-strasbourg.eu.xml\"><rule from=\"^http://(?:www\\.)?cts-strasbourg\\.eu/\" to=\"https://www.cts-strasbourg.eu/\"/></ruleset>", "<ruleset name=\"CtsCDN.com (partial)\" f=\"CtsCDN.com.xml\"><rule from=\"^http://jscsecmat\\.ctscdn\\.com/\" to=\"https://jscsecmat.ctscdn.com/\"/></ruleset>", "<ruleset name=\"ctt.org\" 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=\"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://(?:www\\.)?|https://)cuidadodesalud\\.gov/\" to=\"https://www.cuidadodesalud.gov/\"/></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=\"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=\"Curate.Us (partial)\" default_off=\"failed ruleset test\" f=\"Curate.Us.xml\"><securecookie host=\"^\\.(?:secure\\.)?curate\\.us$\" name=\".+\"/><rule from=\"^http://(?:clp\\.ly|curate\\.us)/\" to=\"https://secure.curate.us/\"/><rule from=\"^http://(secure|www)\\.curate\\.us/\" to=\"https://$1.curate.us/\"/></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\" 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)\" 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=\"curiosity-driven.org\" f=\"Curiosity-driven.org.xml\"><rule from=\"^http://(?:www\\.)?curiosity-driven\\.org/\" to=\"https://curiosity-driven.org/\"/></ruleset>", "<ruleset name=\"Curling World.com\" default_off=\"failed ruleset test\" f=\"Curling_World.com.xml\"><securecookie host=\"^\\.curlingworld\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></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://secure\\.currys\\.co\\.uk/\" to=\"https://secure.currys.co.uk/\"/></ruleset>", "<ruleset name=\"Curse\" 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/\"/><rule from=\"^http://(?:www\\.)?custhelp\\.com/[^?]*\" to=\"https://www.rightnow.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\" f=\"CuteDigi.xml\"><securecookie host=\"^\\.www\\.cutedigi\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cuttlefish.com\" default_off=\"connection refused\" f=\"Cuttlefish.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cuusoo.com (partial)\" 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\"><securecookie host=\"^(?:shworldwide)?\\.cvent\\.com$\" name=\".+\"/><rule from=\"^http://((?:app|custom|shworldwide|www)\\.)?cvent\\.com/\" to=\"https://$1cvent.com/\"/></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\" f=\"CyanogenMod.org-falsemixed.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CyanogenMod.org (partial)\" 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\" default_off=\"failed ruleset test\" 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=\"CyberGuerrilla.info\" f=\"CyberGuerilla.info.xml\"><securecookie host=\"^\\.cyberguerrilla\\.info$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CyberGuerrilla.org\" f=\"CyberGuerrilla.org.xml\"><securecookie host=\"^(?:\\w+\\.)?cyberguerrilla\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CyberPatrol (partial)\" default_off=\"failed ruleset test\" f=\"CyberPatrol.xml\"><securecookie host=\"^(?:www\\.)?cyberpatrol\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CyberPhoto AB\" 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=\"CyberShambles.com\" default_off=\"failed ruleset test\" f=\"CyberShambles.com.xml\"><securecookie host=\"^(?:www\\.)?cybershambles\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></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\" default_off=\"Bad Cert\" f=\"Cybercompex.org.xml\"><rule from=\"^http://(?:www\\.)?cybercompex\\.org/\" to=\"https://www.cybercompex.org/\"/></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=\"Cybermill\" default_off=\"expired\" f=\"Cybermill.xml\"><rule from=\"^http://(?:www\\.)?cybermill\\.com/\" to=\"https://cybermill.com/\"/></ruleset>", "<ruleset name=\"Cyberquests (Partial)\" f=\"Cyberquests.org.xml\"><rule from=\"^http://quiz-uscc\\.cyberquests\\.org/\" to=\"https://quiz-uscc.cyberquests.org/\"/></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\" f=\"Cyngn.com.xml\"><rule from=\"^http://builds\\.cyngn\\.com/\" to=\"https://d199yez36w5w8l.cloudfront.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"cyon.ch\" f=\"Cyon.ch.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cyph.com\" f=\"Cyph.com.xml\"><securecookie host=\"^\\.cyph\\.com$\" name=\".+\"/><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://(?:(lists\\.|otr\\.)|www\\.)?cypherpunks\\.ca/\" to=\"https://$1cypherpunks.ca/\"/></ruleset>", "<ruleset name=\"Cyphertite.com\" f=\"Cyphertite.com.xml\"><securecookie host=\"^(?:.*\\.)?cyphertite\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"cypouz.com\" platform=\"cacert\" f=\"Cypouz.com.xml\"><securecookie host=\"^photo\\.cypouz\\.com$\" 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\" f=\"Cyrus.Foundation.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"cyscon.net (partial)\" f=\"Cyscon.net.xml\"><rule from=\"^http://stats\\.cyscon\\.net/\" to=\"https://stats.cyscon.net/\"/></ruleset>", "<ruleset name=\"Cysec Labs.com\" f=\"Cysec_Labs.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Czech Technical University in Prague\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" 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=\"mismatch\" f=\"D-Technology-Weblog.xml\"><rule from=\"^http://(?:www\\.)?ditii\\.com/\" to=\"https://www.ditii.com/\"/></ruleset>", "<ruleset name=\"D.me\" 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\" 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=\"D66.nl\" f=\"D66.nl.xml\"><rule from=\"^http:\" to=\"https:\"/></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://www\\.dac\\.co\\.jp/\" to=\"https://www.dac.co.jp/\"/></ruleset>", "<ruleset name=\"DALnet\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" 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-analytics.net\" default_off=\"failed ruleset test\" f=\"DANTE-analytics.net.xml\"><securecookie host=\"^(?:www\\.)?dante-analytics\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></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=\"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 (false MCB)\" platform=\"mixedcontent\" f=\"DC_Power.eu.xml\"><securecookie host=\"^(?:w*\\.)?dcpower\\.eu$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DC Vote.org\" 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\" 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\" 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=\"mismatch\" 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\" default_off=\"failed ruleset test\" 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\" 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=\"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)\" 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=\"DL-rms.com\" f=\"DL-rms.com.xml\"><rule from=\"^http://content\\.dl-rms\\.com/\" to=\"https://content.dl-rms.com/\"/></ruleset>", "<ruleset name=\"DLitz.net\" f=\"DLitz.net.xml\"><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=\"DN.com\" f=\"DN.com.xml\"><securecookie host=\"^www\\.dn\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DN.dk (partial)\" 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=\"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=\"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 History.org\" f=\"DNS_History.org.xml\"><securecookie host=\"^dnshistory\\.org$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?dnshistory\\.org/\" to=\"https://dnshistory.org/\"/></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)\" 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://exchange\\.dnv\\.com/\" to=\"https://exchange.dnv.com/\"/></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=\"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\"><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)\" f=\"DTInt.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DTunnel\" platform=\"mixedcontent\" 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\" default_off=\"TLS error\" f=\"DVDFab.xml\"><rule from=\"^http://(?:www\\.)?dvdfab\\.(com|net)/\" to=\"https://www.dvdfab.$1/\"/></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://social\\.dw\\.de/\" to=\"https://social.dw.de/\"/></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 (partial)\" default_off=\"expired, self-signed\" f=\"DYC.edu.xml\"><securecookie host=\"^\\.opensource\\.dyc\\.edu$\" name=\".+\"/><rule from=\"^http://(opensource|virtual)\\.dyc\\.edu/\" to=\"https://$1.dyc.edu/\"/></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=\"D Vatril.cz\" platform=\"cacert\" f=\"D_Vatril.cz.xml\"><securecookie host=\"^\\w\" 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)\" default_off=\"expired\" f=\"Dafont.com.xml\"><exclusion pattern=\"^http://(?:www\\.)?dafont\\.com/(?:[\\w\\-]+\\.font$|css/|favicon\\.ico|forum/(?:$|read/)|img/|theme\\.php)\"/><rule from=\"^http://(?:img\\.|(www\\.))?dafont\\.com/\" to=\"https://$1dafont.com/\"/><rule from=\"^https://(www\\.)?dafont\\.com/([\\w\\-]+\\.font$|forum/(?:$|read/))\" to=\"http://$1dafont.com/$2\" downgrade=\"1\"/></ruleset>", "<ruleset name=\"Daft.ie\" default_off=\"causes image problems\" 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\" f=\"Dagbladet.no-falsemixed.xml\"><securecookie host=\"^livebeta\\.dagbladet\\.no$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Dagbladet.no (partial)\" f=\"Dagbladet.no.xml\"><exclusion pattern=\"^http://www\\.dagbladet\\.no/+(?!favicon\\.ico|.+(?:css|jpg|png)(?:$|\\?))\"/><rule from=\"^http://(gfx|www)\\.dagbladet\\.no/\" to=\"https://$1.dagbladet.no/\"/></ruleset>", "<ruleset name=\"Dagens Bedste.de (partial)\" 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=\"Dagensgetaway.dk\" default_off=\"handshake fails\" f=\"Dagensgetaway.dk.xml\"><securecookie host=\"^(?:www)?\\.dagensgetaway\\.dk$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Daily Express (partial)\" default_off=\"Breaks site\" f=\"Daily-Express.xml\"><securecookie host=\"^www\\.express\\.co\\.uk$\" name=\".+\"/><rule from=\"^http://images\\.dailyexpress\\.co\\.uk/\" to=\"https://s3.amazonaws.com/images.dailyexpress.co.uk/\"/><rule from=\"^http://(?:www\\.)?express\\.co\\.uk/\" to=\"https://www.express.co.uk/\"/><rule from=\"^http://cdn\\.images\\.express\\.co\\.uk/\" to=\"https://d2gsbqw9zf5tyw.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Daily Herald\" 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)\" 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)\" 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=\"mismatch\" f=\"Dan-Bull.xml\"><securecookie host=\"^itsdanbull\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?itsdanbull\\.com/\" to=\"https://itsdanbull.com/\"/></ruleset>", "<ruleset name=\"Dan.me.uk\" f=\"Dan.me.uk.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DanID.dk\" f=\"DanID.dk.xml\"><securecookie host=\"^applet\\.danid\\.dk$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"dan blah.com (false MCB)\" platform=\"mixedcontent\" f=\"Dan_blah.com-falsemixed.xml\"><securecookie host=\"^\\.danblah\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"dan blah.com (partial)\" f=\"Dan_blah.com.xml\"><rule from=\"^http://(www\\.)?danblah\\.com/(?=modules/|sites/)\" to=\"https://$1danblah.com/\"/></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\" f=\"DandB.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"D&amp;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=\"dangpu.com\" 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\" f=\"Darjeelin.fr.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DarkMoney.cc\" default_off=\"failed ruleset test\" f=\"DarkMoney.cc.xml\"><securecookie host=\"^(?:w*\\.)?darkmoney\\.cc$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Dark Reading.com\" default_off=\"mismatched, self-signed\" f=\"Dark_Reading.com.xml\"><securecookie host=\"^\\.darkreading\\.com$\" name=\"^s_\\w+$\"/><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\" platform=\"cacert\" f=\"Darkfasel.net.xml\"><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\" 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)\" f=\"Das_Parlament.xml\"><rule from=\"^http://www\\.das-parlament\\.de/\" to=\"https://www.das-parlament.de/\"/></ruleset>", "<ruleset name=\"bitmovin GmbH\" 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=\"^www\\.dashlane\\.com$\" name=\".+\"/><rule from=\"^http://dashlane\\.com/\" to=\"https://www.dashlane.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Dashpay.io (partial)\" 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&#232;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=\"mismatch\" 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://secure\\.webmercs\\.com/\" to=\"https://secure.webmercs.com/\"/></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\" 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=\"Data.gov (partial)\" f=\"Data.gov.xml\"><exclusion pattern=\"^http://labs\\.data\\.gov/+(?!$|\\?)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://labs\\.data\\.gov/.*\" to=\"https://www.data.gov/labs\"/><rule from=\"^http:\" to=\"https:\"/></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\" default_off=\"failed ruleset test\" 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\" default_off=\"failed ruleset test\" 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\" 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\" default_off=\"failed ruleset test\" 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\" 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\" default_off=\"failed ruleset test\" 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)\" 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\" 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=\"failed ruleset test\" f=\"Datamonitor.com.xml\"><securecookie host=\"^\\.datamonitor\\.com$\" name=\"^__utm\\w+$\"/><rule from=\"^http://datamonitor\\.com/.*\" to=\"https://www.datamonitor.com/\"/><rule from=\"^http://www\\.datamonitor\\.com/(?!store/(?!css/|images/|skins/))\" to=\"https://www.datamonitor.com/\"/></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=\"Dataopedia.com (partial)\" default_off=\"failed ruleset test\" f=\"Dataopedia.com.xml\"><rule from=\"^http://cdn\\.dataopedia\\.com/\" to=\"https://d2hb7m70lgc5kn.cloudfront.net/\"/></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\" 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=\"dataskydd.net\" f=\"Dataskydd.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Datatilsynet\" default_off=\"failed ruleset test\" 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)\" default_off=\"failed ruleset test\" f=\"Datemas.de.xml\"><securecookie host=\"^web\\.datemas\\.de$\" name=\".+\"/><rule from=\"^http://web\\.datemas\\.de/\" to=\"https://web.datemas.de/\"/></ruleset>", "<ruleset name=\"Datenschutz-ist-Buergerrecht.de\" default_off=\"connection dropped\" 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=\"Dave Cross\" default_off=\"self-siged\" f=\"Dave_Cross.xml\"><rule from=\"^http://(?:www\\.)?dave\\.org\\.uk/\" to=\"https://dave.org.uk/\"/></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=\"mismatch\" f=\"David-Tisch.xml\"><rule from=\"^http://(?:www\\.)?davidtisch\\.com/\" to=\"https://www.davidtisch.com/\"/></ruleset>", "<ruleset name=\"David Adrian.org\" f=\"David_Adrian.org.xml\"><rule from=\"^http:\" to=\"https:\"/></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\" 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\" default_off=\"failed ruleset test\" 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=\"Dawsonera (partial)\" f=\"Dawsonera.xml\"><rule from=\"^http://(?:www\\.)?dawsonera\\.com/(guard/protected/|Shibboleth\\.sso)\" to=\"https://wwwdawsonera.com/$1\"/></ruleset>", "<ruleset name=\"DayZ (Partial)\" default_off=\"Bad Cert\" f=\"DayZ.com.xml\"><rule from=\"^http://(?:www\\.)?dayz\\.com/\" to=\"https://www.dayz.com/\"/></ruleset>", "<ruleset name=\"DbackPolice.com\" default_off=\"connection 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\" 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\" default_off=\"failed ruleset test\" 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\" default_off=\"failed ruleset test\" f=\"Deaconess-Health-System.xml\"><exclusion pattern=\"^http://(?:www\\.)?deaconess\\.com/mobile(?:/|$)\"/><securecookie host=\"^(?:(?:www)?\\.)?deaconess\\.com$\" name=\".+\"/><rule from=\"^(?:http://(?:www\\.)?|https://)deaconess\\.com/\" to=\"https://www.deaconess.com/\"/></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\" default_off=\"mismatched\" f=\"Deadspin.com.xml\"><securecookie host=\"^\\.?deadspin\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?deadspin\\.com/\" to=\"https://deadspin.com/\"/></ruleset>", "<ruleset name=\"Deakin University (partial)\" platform=\"mixedcontent\" f=\"Deakin-University.xml\"><rule from=\"^http://deakin\\.edu\\.au/\" to=\"https://deakin.edu.au/\"/></ruleset>", "<ruleset name=\"Deal Extreme\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" 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://sc\\.dealtime\\.com/\" to=\"https://sc.dealtime.com/\"/></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://cdn\\.dealerfire\\.com/\" to=\"https://cdn.dealerfire.com/\"/></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\" f=\"Dean-Evans-and-Associates.xml\"><securecookie host=\"^www\\.dea\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?dea\\.com/\" to=\"https://www.dea.com/\"/></ruleset>", "<ruleset name=\"DearBytes.com\" f=\"DearBytes.com.xml\"><securecookie host=\"^\\.(?:www\\.)?dearbytes\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Dear FCC.org\" f=\"Dear_FCC.org.xml\"><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.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Debian-Administration.org (partial)\" 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 (self-signed)\" default_off=\"self-signed\" f=\"Debian-self-signed.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Debian.net (partial)\" f=\"Debian.net.xml\"><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\" 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\" 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=\"Decision Neuroscience Laboratory\" default_off=\"mismatch\" f=\"Decision-Neuroscience-Laboratory.xml\"><rule from=\"^http://(?:www\\.)?decisionneurosciencelab\\.org/\" to=\"https://decisionneurosciencelab.org/\"/></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\" default_off=\"failed ruleset test\" f=\"Deco.proteste.pt.xml\"><rule from=\"^http://(?:www\\.)?deco\\.proteste\\.pt/\" to=\"https://www.deco.proteste.pt/\"/></ruleset>", "<ruleset name=\"Decrypt CryptoLocker.com\" 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=\"Dee.su (partial)\" default_off=\"mismatched\" f=\"Dee.su.xml\"><securecookie host=\"^forum\\.dee\\.su$\" name=\".+\"/><rule from=\"^http://forum\\.dee\\.su/\" to=\"https://forum.dee.su/\"/></ruleset>", "<ruleset name=\"deekayen.net\" 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=\"mismatch\" 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=\"Deepbit.net\" default_off=\"missing certificate chain\" f=\"Deepbit.net.xml\"><rule from=\"^http://www\\.deepbit\\.net/\" to=\"https://deepbit.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Deepin (partial)\" f=\"Deepin.xml\"><rule from=\"^http://(packages|cdimage)\\.deepin\\.com/\" to=\"https://$1.linuxdeepin.com/\"/><rule from=\"^http://(packages)\\.deepin\\.org/\" to=\"https://$1.linuxdeepin.com/\"/><rule from=\"^http://deepin\\.(org|com)/\" to=\"https://www.deepin.$1/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Deezer.com\" 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=\"Defcon.org\" f=\"Defcon.xml\"><securecookie host=\".\" name=\".\"/><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=\"connection refused\" f=\"Defsounds.xml\"><securecookie host=\"^\\.defsounds\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Defuse.ca\" f=\"Defuse.ca.xml\"><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\" 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=\"Dejure.org\" f=\"Dejure.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Delaware Online (partial)\" default_off=\"failed ruleset test\" 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)\" default_off=\"failed ruleset test\" 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=\"mismatch\" 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.com\" f=\"Delicious.xml\"><securecookie host=\"^(?:.+\\.)?delicious\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Delicious Green Coffee.com\" 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=\"mismatch\" 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=\"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://(?:\\w\\w|media)\\.community\\.dell\\.com/(?!cfs-file\\.ashx/|cfs-file/|cfs-filesystemfile/|resized-image/|[Tt]hemes/)\"/><exclusion pattern=\"^http://partnerdirect\\.dell\\.com/(?!sites/channel/(?:Documents/|Style\\ Library/|\\w\\w_\\w\\w/pages/loginpage\\.aspx))\"/><securecookie host=\"^\\.dell\\.com$\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\"^(?:accessories|deals|ecomm|support\\.euro|m|marketing|premier|signin|support(?:apj|\\.software)?|channels\\.us)\\.dell\\.com$\" name=\".\"/><rule from=\"^http://(?:www-cdn\\.)?dell\\.com/\" to=\"https://www.dell.com/\"/><rule from=\"^https?://accessories-cdn\\.dell\\.com/\" to=\"https://accessories.dell.com/\"/><rule from=\"^http://media\\.community\\.dell\\.com/\" to=\"https://en.community.dell.com/\"/><rule from=\"^http://i\\.dell\\.com/\" to=\"https://si.cdn.dell.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Delta.com\" 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\" default_off=\"expired, mismatch\" f=\"Deluge.xml\"><securecookie host=\"^(?:.*\\.)?deluge-torrent\\.org$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?deluge-torrent\\.org/\" to=\"https://deluge-torrent.org/\"/><rule from=\"^http://(dev|forum)\\.deluge-torrent\\.org/\" to=\"https://$1.deluge-torrent.org/\"/></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)\" 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=\"mismatch\" 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)\" f=\"Demand-Media.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Demand Progress\" f=\"Demand-Progress.xml\"><securecookie host=\"^(?:act)?\\.demandprogress\\.org$\" name=\".*\"/><rule from=\"^http://(act\\.|www\\.)?demandprogress\\.org/\" to=\"https://$1demandprogress.org/\"/><rule from=\"^http://s3\\.demandprogress\\.org/\" to=\"https://s3.amazonaws.com/s3.demandprogress.org/\"/></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=\"Demandware.com (mismatches)\" default_off=\"mismatch\" 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)\" f=\"Demandware.xml\"><exclusion pattern=\"^http://investors\\.demandware\\.com/+(?!client/|media_files/)\"/><securecookie host=\"^(?:.*\\.)?demandware\\.com$\" 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=\"Demisto.com\" f=\"Demisto.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Democracy.io\" f=\"Democracy.io.xml\"><securecookie host=\"^democracy\\.io$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DemocracyInAction\" default_off=\"failed ruleset test\" f=\"DemocracyInAction.xml\"><securecookie host=\"^(?:.*\\.)?democracyinaction\\.org$\" name=\".+\"/><rule from=\"^http://((?:caf|hq-org2|hq-salsa|org2|salsa|secure|www2?)\\.)?democracyinaction\\.org/\" to=\"https://$1democracyinaction.org/\"/></ruleset>", "<ruleset name=\"DemocracyNow (partial)\" f=\"DemocracyNow.xml\"><rule from=\"^http://(www\\.)?democracynow\\.org/(?=(?:donate|images|resources|stylesheets)(?:$|[?/]))\" to=\"https://$1democracynow.org/\"/></ruleset>", "<ruleset name=\"Democrat and Chronicle (partial)\" default_off=\"failed ruleset test\" 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=\"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=\"Denfri.dk\" f=\"Denfri.dk.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\" 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://g\\.denik\\.cz/\" to=\"https://g.denik.cz/\"/></ruleset>", "<ruleset name=\"Denis Matsuev\" 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://(www\\.)?dennikn\\.sk/\" to=\"https://dennikn.sk/\"/></ruleset>", "<ruleset name=\"denpa.moe\" f=\"Denpa.moe.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DENSO WAVE\" default_off=\"failed ruleset test\" 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=\"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\" 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\" default_off=\"failed ruleset test\" f=\"DepositProtection.xml\"><securecookie host=\"^(?:.+\\.)?depositprotection\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?depositprotection\\.com/\" to=\"https://www.depositprotection.com/\"/></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=\"Der S&#228;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)\" f=\"Derby.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Derpibooru\" 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\" f=\"Designova.net.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Desire2learn.com\" default_off=\"failed ruleset test\" 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)\" default_off=\"failed ruleset test\" 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 (partial)\" default_off=\"expired\" f=\"Destructoid.xml\"><rule from=\"^http://bulk\\d\\.destructoid\\.com/\" to=\"https://bulk2.destructoid.com/\"/><rule from=\"^http://(?:www\\.)?destructoid\\.com/elephant/ul/\" to=\"https://bulk2.destructoid.com/ul/\"/></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)\" 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=\"mismatch\" 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 (partial)\" default_off=\"failed ruleset test\" f=\"DeusM.xml\"><securecookie host=\"^.*\\.deusm\\.com$\" name=\".*\"/><rule from=\"^http://(payment\\.)?deusm\\.com/\" to=\"https://$1deusm.com/\"/><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\" 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&#246;rse Group\" 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\" 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=\"mismatch\" 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\" default_off=\"mismatched, self-signed\" f=\"DevConf.cz.xml\"><securecookie host=\"^openshift\\.devconf\\.cz$\" name=\".+\"/><rule from=\"^http://(?:(openshift\\.)|www\\.)?devconf\\.cz/\" to=\"https://$1devconf.cz/\"/></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 (pending)\" default_off=\"waiting for webmasters to indicate site is ready\" 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=\"Devimperium.com\" default_off=\"needs clearnet testing\" f=\"Devimperium.com.xml\"><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=\"Devon.gov.uk (partial)\" 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\" f=\"DevonandCornwallPolice.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)\" default_off=\"cert warning\" f=\"Dezeen.com.xml\"><rule from=\"^http://static\\.dezeen\\.com/\" to=\"https://static.dezeen.com/\"/></ruleset>", "<ruleset name=\"Dezert Depot\" 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\" default_off=\"failed ruleset test\" 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)\" 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\" f=\"Diasp.eu.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Diasp.org (partial)\" f=\"Diasp.org.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\" 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\"><exclusion pattern=\"^http://[\\w-]+\\.dict\\.cc/dict/options\\.php\"/><rule from=\"^https://([\\w-]+)\\.dict\\.cc/dict/options\\.php\" to=\"http://$1.dict.cc/dict/options.php\" downgrade=\"1\"/><rule from=\"^http://dict\\.cc/\" to=\"https://www.dict.cc/\"/><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\" f=\"Die.net.xml\"><rule from=\"^http://(?:www\\.)?die\\.net/\" to=\"https://www.die.net/\"/></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=\"Diffuse.ca\" default_off=\"failed ruleset test\" f=\"Diffuse.ca.xml\"><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\" 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)\" 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\" 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\" 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=\"Digitab Portals\" default_off=\"failed ruleset test\" f=\"Digitab-Portals.xml\"><securecookie host=\"^www\\.digitabportals\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?digitabportals\\.com/\" to=\"https://www.digitabportals.com/\"/></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=\"Digital-Future.it\" default_off=\"521\" f=\"Digital-Future.it.xml\"><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/)\"/><exclusion pattern=\"^http://info\\.digitalriver\\.com/(?!css/|images/|js/|rs/)\"/><securecookie host=\"^\\.digitalriver\\.com$\" name=\"^utag_\\w+$\"/><securecookie host=\"^(?:\\.?developers|gc|store)\\.digitalriver\\.com$\" name=\".+\"/><rule from=\"^http://info\\.digitalriver\\.com/\" to=\"https://na-sj03.marketo.com/\"/><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=\"mismatch\" 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:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DigitalGov.gov (partial)\" f=\"DigitalGov.gov.xml\"><securecookie host=\"^\\w\" name=\".\"/><securecookie host=\"^\\.summit\\.digitalgov\\.gov$\" 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\" 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 (partial)\" f=\"Digital_Point_Solutions.xml\"><securecookie host=\"^\\.digitalpoint\\.com$\" 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)\" 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)\" 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\" f=\"Digitalfreedom.io.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Digitaria (partial)\" default_off=\"failed ruleset test\" 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.xml\"><securecookie host=\"^(?:.*\\.)?digitec\\.ch$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?digitec\\.ch/\" to=\"https://www.digitec.ch/\"/></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\" 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://a\\.dilcdn\\.com/\" to=\"https://a.dilcdn.com/\"/></ruleset>", "<ruleset name=\"dinahosting.com\" f=\"Dinahosting.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"dinahosting.pt\" 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\" default_off=\"failed ruleset test\" 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=\"DirectAdvert.ru (partial)\" 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)\" 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)\" 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=\"^ad\\.directrev\\.com$\" name=\".+\"/><rule from=\"^http://ad\\.directrev\\.com/\" to=\"https://ad.directrev.com/\"/><rule from=\"^http://cdn\\.directrev\\.com/\" to=\"https://d2wxwu28a4m0zf.cloudfront.net/\"/></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=\"Disability.gov\" f=\"Disability.gov.xml\"><securecookie host=\"^(?:(?:www)?\\.)?disability\\.gov$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?disability\\.gov/\" to=\"https://www.disability.gov/\"/></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)\" default_off=\"failed ruleset test\" 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=\"Discogs (partial)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Discogs.xml\"><rule from=\"^http://(?:www\\.)?discogs\\.com/((?:css|developers|users|images?)/|help$)\" to=\"https://www.discogs.com/$1\"/><rule from=\"^http://images\\.discogsmp3\\.com/\" to=\"https://images.juno.co.uk/\"/><rule from=\"^http://s\\.dsimg\\.com/\" to=\"https://www.discogs.com/\"/><rule from=\"^http://s\\.pixogs\\.com/\" to=\"https://s.pixogs.com/\"/></ruleset>", "<ruleset name=\"discojuice.org (partial)\" f=\"Discojuice.org.xml\"><rule from=\"^http://(engine|static|store)\\.discojuice\\.org/\" to=\"https://$1.discojuice.org/\"/></ruleset>", "<ruleset name=\"Disconnect.me\" 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=\"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&amp;cds_mag_code=DSD&amp;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\" 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\" f=\"Discover_Signage.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Discovery.com (partial)\" 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\" 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\" 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)\" 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://secure\\.disney\\.co\\.jp/\" to=\"https://secure.disney.co.jp/\"/></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.com.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)\" 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 (partial)\" default_off=\"self-signed\" f=\"Distributed.net.xml\"><rule from=\"^http://(?:www\\.)?distributed\\.net/\" to=\"https://www.distributed.net/\"/><rule from=\"^http://blogs\\.distributed\\.net/\" to=\"https://blogs.distributed.net/\"/></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=\"diygadget.com (partial)\" default_off=\"self-signed\" f=\"Diygadget.com.xml\"><rule from=\"^http://(?:www\\.)?diygadget\\.com/(?=media/|skin/)\" to=\"https://www.diygadget.com/\"/></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=\"Django Project.com\" f=\"Django.xml\"><securecookie host=\"^\\w\" name=\".\"/><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://panel\\.djangoeurope\\.com/\" to=\"https://panel.djangoeurope.com/\"/></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=\"dlvr.it\" f=\"Dlvr.it.xml\"><rule from=\"^http://(?:(static\\.)|www\\.)?dlvr\\.it/\" to=\"https://$1dlvr.it/\"/></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\" 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=\"^\\.dmtry\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DnB Nor.no\" 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=\"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\" 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\" 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://www\\.doclerholding\\.com/\" to=\"https://www.doclerholding.com/\"/></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\" f=\"Docstorepro.com.xml\"><securecookie host=\"^\\.docstorepro\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Doctor Trusted.org\" 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=\"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)\" default_off=\"failed ruleset test\" f=\"Dods_People.com.xml\"><rule from=\"^http://(?:photos\\.|www\\.)?dodspeople\\.com/\" to=\"https://photos.dodspeople.com/\"/></ruleset>", "<ruleset name=\"DoesNotWork.eu\" f=\"DoesNotWork.eu.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Dof.dk\" 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=\"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=\"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&amp;cof=FORID:1&amp;\"/><rule from=\"^http://search\\.dokuwiki\\.org/+\" to=\"https://www.google.com/cse?cx=009387785156597221763:mxrsu3_lmbs&amp;cof=FORID:1&amp;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\" 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\" default_off=\"failed ruleset test\" 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)\" 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\" 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\" 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=\"^(?:partner\\.|www\\.)?domaining\\.com$\" name=\".+\"/><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\" default_off=\"failed ruleset test\" 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\" 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=\"Domestic Abuse Helpline for Men and Women\" default_off=\"mismatch\" f=\"Domestic-Abuse-Hotline-for-Men-and-Women.xml\"><rule from=\"^http://(?:www\\.)?dahmw\\.org/\" to=\"https://dahmw.org/\"/></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\" default_off=\"missing certificate chain\" 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=\"DonationCoder.com\" f=\"DonationCoder.com.xml\"><securecookie host=\"^www\\.donationcoder\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Doncaster.gov.uk (partial)\" 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 (partial)\" default_off=\"expired, mismatched, self-signed\" f=\"Doom9.xml\"><securecookie host=\"^forum\\.doom9\\.org$\" name=\".+\"/><rule from=\"^http://forum\\.doom9\\.org/\" to=\"https://forum.doom9.org/\"/></ruleset>", "<ruleset name=\"Doomworld.com\" f=\"Doomworld.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Dopplr.com\" default_off=\"200 error page\" f=\"Dopplr.xml\"><rule from=\"^http://(?:www\\.)?dopplr\\.com/\" to=\"https://www.dopplr.com/\"/></ruleset>", "<ruleset name=\"Dorian Color\" default_off=\"failed ruleset test\" f=\"Dorian-Color.xml\"><securecookie host=\"^(?:.*\\.)?doriancolor\\.com$\" name=\".*\"/><rule from=\"^http://65\\.181\\.183\\.157/\" to=\"https://doriancolor.com/\"/><rule from=\"^http://(www\\.)?doriancolor\\.com/\" to=\"https://$1doriancolor.com/\"/></ruleset>", "<ruleset name=\"dormproject.ch\" f=\"Dormproject.ch.xml\"><rule from=\"^http://secure\\.dormproject\\.ch/\" to=\"https://secure.dormproject.ch/\"/></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)\" 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=\"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\" 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://(?:www\\.)?dotomi\\.com/(display|storage|universal)/\" to=\"https://dotomi.squarespace.com/$1/\"/><rule from=\"^http://(ams-login|login)\\.dotomi\\.com/\" to=\"https://$1.dotomi.com/\"/></ruleset>", "<ruleset name=\"dotplex.de\" f=\"Dotplex.de.xml\"><securecookie host=\"^(www\\.|secure\\.)?dotplex\\.de$\" name=\".+\"/><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=\"dotultima.com\" default_off=\"failed ruleset test\" f=\"Dotultima.com.xml\"><securecookie host=\"^\\.dotultima\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Douban (partial)\" f=\"Douban.com.xml\"><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)\" default_off=\"Breaks video content, probably best to block doubleclick instead\" f=\"Doubleclick.net.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://([^/:@.]+)\\.(?:es|nl|no)\\.doubleclick\\.net/\" to=\"https://$1.doubleclick.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Doublepimp.com (partial)\" f=\"Doublepimp.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://cdn\\.engine\\.phn\\.doublepimp\\.com/\" to=\"https://engine.phn.doublepimp.com/\"/><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=\"mismatch\" f=\"Dovetail_Services-problematic.xml\"><rule from=\"^http://(?:www\\.)?dovetailservices\\.com/\" to=\"https://www.dovetailservices.com/\"/></ruleset>", "<ruleset name=\"Dovetail Services (partial)\" 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=\"Downloadster\" default_off=\"failed ruleset test\" f=\"Downloadster.xml\"><securecookie host=\"^(?:w*\\.)?downloadster\\.net$\" name=\".+\"/><rule from=\"^http://(www\\.)?downloadster\\.net/\" to=\"https://$1downloadster.net/\"/><rule from=\"^http://media\\.downloadster\\.net/\" to=\"https://d227ccvjlkns26.cloudfront.net/\"/></ruleset>", "<ruleset name=\"DownstreamToday.com\" 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=\"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\" default_off=\"expired\" 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)\" 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=\"Draugr.de\" f=\"Draugr.de.xml\"><securecookie host=\"^\\.draugr\\.de$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></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\" f=\"Drchrono.com.xml\"><securecookie host=\"^(?:www\\.)?drchrono\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DreamHost.com (partial)\" f=\"DreamHost.xml\"><exclusion pattern=\"^http://(?:blog|wiki|transferapproval)\\.dreamhost\\.com/\"/><exclusion pattern=\"\\.crl$\"/><exclusion pattern=\"ocsp\\.dreamhost\"/><securecookie host=\"^(?:.*\\.)?dreamhost\\.com$\" name=\".+\"/><rule from=\"^http://([\\w-]+\\.(?:objects\\.)?)?dreamhost\\.com/\" to=\"https://$1dreamhost.com/\"/></ruleset>", "<ruleset name=\"DreamSpark.com\" 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\" default_off=\"failed ruleset test\" 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=\"mismatch\" 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)\" 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\" default_off=\"failed ruleset test\" f=\"Drinkaware.xml\"><securecookie host=\"^(?:.*\\.)?drinkaware\\.co\\.uk$\" name=\".+\"/><rule from=\"^http://drinkaware\\.co\\.uk/\" to=\"https://www.drinkaware.co.uk/\"/><rule from=\"^http://([^/:@]+)?\\.drinkaware\\.co\\.uk/\" to=\"https://$1.drinkaware.co.uk/\"/></ruleset>", "<ruleset name=\"Drive2.ru\" f=\"Drive2.ru.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DriveStyle Insure\" f=\"DriveStyle_Insure.xml\"><securecookie host=\"^(?:www\\.)?drivestyle.co.uk$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"drivee (partial)\" 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://([\\w-]+\\.)?dropbox\\.com/\" to=\"https://$1dropbox.com/\"/><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=\"Dropdeadpaper.com\" f=\"Dropdeadpaper.com.xml\"><securecookie host=\"^(www\\.)?dropdeadpaper\\.com\" 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\" 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 Forum\" platform=\"mixedcontent\" f=\"Drug_Forum.xml\"><securecookie host=\"^(?:www\\.)?drugs-forum\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Drug Science.org.uk\" default_off=\"mismatched\" f=\"Drug_Science.org.uk.xml\"><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.org (partial)\" f=\"Drupal.xml\"><rule from=\"^http:\" to=\"https:\"/></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\" 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\"><exclusion pattern=\"^http://(?:help|meme)\\.duckduckgo\\.com/\"/><securecookie host=\"^duck\\.co$\" name=\".*\"/><rule from=\"^http://duckduckgo\\.com/\" to=\"https://duckduckgo.com/\"/><rule from=\"^http://([^/:@\\.]+)\\.duckduckgo\\.com/\" to=\"https://$1.duckduckgo.com/\"/><rule from=\"^http://ddg\\.gg/$\" to=\"https://duckduckgo.com/\"/><rule from=\"^http://duck\\.co/\" to=\"https://duck.co/\"/><rule from=\"^http://i\\.duck\\.co/\" to=\"https://duckduckgo.com/\"/><rule from=\"^http://(?:www\\.)?dukgo\\.com/\" to=\"https://dukgo.com/\"/></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\" 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\" 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=\"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)\" default_off=\"failed ruleset test\" 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=\"dustri.org\" f=\"Dustri.org.xml\"><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\" default_off=\"failed ruleset test\" 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)\" 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=\"dxw.com\" f=\"Dxw.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Dyankov.eu\" default_off=\"failed ruleset test\" 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\" 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=\"connection 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 (partial)\" f=\"Dynamic_Yield.com.xml\"><rule from=\"^http://(adm|s1a|st)\\.dynamicyield\\.com/\" to=\"https://$1.dynamicyield.com/\"/></ruleset>", "<ruleset name=\"Dynamics.com\" 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)\" 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\" default_off=\"failed ruleset test\" 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\" default_off=\"failed ruleset test\" 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\"><securecookie host=\"^\\w\" name=\".\"/><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\" default_off=\"failed ruleset test\" f=\"E-cegjegyzek.hu.xml\"><rule from=\"^http://(?:www\\.)?e-cegjegyzek\\.hu/\" to=\"https://www.e-cegjegyzek.hu/\"/></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://www\\.e-magin\\.se/\" to=\"https://www.e-magin.se/\"/></ruleset>", "<ruleset name=\"E-mielenterveys\" 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\" default_off=\"failed ruleset test\" 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)\" 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=\"E14N\" default_off=\"failed ruleset test\" f=\"E14N.xml\"><securecookie host=\"^e14n\\.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://shopping\\.e2enetworks\\.com/\" to=\"https://shopping.e2enetworks.com/\"/></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=\"EAM-GmbH.com\" f=\"EAM-GmbH.com.xml\"><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\" default_off=\"failed ruleset test\" 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=\"eBanking - aber sicher!\" f=\"EBAS.ch.xml\"><securecookie host=\"^(?:.*\\.)?ebas\\.ch$\" name=\".+\"/><securecookie host=\"^(?:.*\\.)?ebankingabersicher\\.ch$\" name=\".+\"/><securecookie host=\"^(?:.*\\.)?ebankingmasicuro\\.ch$\" name=\".+\"/><securecookie host=\"^(?:.*\\.)?ebankingentoutesecurite\\.ch$\" name=\".+\"/><securecookie host=\"^(?:.*\\.)?ebankingbutsecure\\.ch$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"EBSCO-content.com\" default_off=\"failed ruleset test\" f=\"EBSCO-content.com.xml\"><rule from=\"^http://global\\.ebsco-content\\.com/\" to=\"https://global.ebsco-content.com/\"/></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=\"mismatch\" 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://(?:www\\.)?ebayclassifieds\\.com/\" to=\"https://www.ebayclassifieds.com/\"/><rule from=\"^http://static(\\d)?\\.ebayclassifieds\\.com/\" to=\"https://static$1.ebayclassifieds.com/\"/><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://login\\.ec21\\.com/\" to=\"https://login.ec21.com/\"/></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\" 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://((?:blog|support|www)\\.)?ecampus\\.no/\" to=\"https://$1ecampus.no/\"/></ruleset>", "<ruleset name=\"eCash.io\" default_off=\"failed ruleset test\" f=\"ECash.io.xml\"><securecookie host=\"^(?:w*\\.)?ecash\\.io$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?bitservicex\\.com/\" to=\"https://ecash.io/\"/><rule from=\"^http://(www\\.)?ecash\\.io/\" to=\"https://$1ecash.io/\"/></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\" default_off=\"failed ruleset test\" 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\" 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\" f=\"EDG.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"EDGAR Online\" default_off=\"failed ruleset test\" f=\"EDGAR-Online.xml\"><securecookie host=\"^(?:.*\\.)edgar-online\\.com$\" name=\".*\"/><rule from=\"^http://edgar-online\\.com/\" to=\"https://www.edgar-online.com/\"/><rule from=\"^http://(\\w+)\\.edgar-online\\.com/\" to=\"https://$1.edgar-online.com/\"/></ruleset>", "<ruleset name=\"EDI Health Group (mismatches)\" default_off=\"mismatches\" 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)\" f=\"EDI7.lu.xml\"><securecookie host=\"^www2\\.edi7\\.lu$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Edp.pt\" 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=\"eDigitalResearch.com (partial)\" 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)\" 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\" 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\"><securecookie host=\"^.*\\.eff\\.org$\" name=\".*\"/><rule from=\"^http://([^/:@\\.]+\\.)?eff\\.org/\" to=\"https://$1eff.org/\"/><rule from=\"^https://www\\.eff\\.org/sites/all/themes/frontier/images/get-https-e(-chrome)?.png\" to=\"https://www.eff.org/sites/all/themes/frontier/images/got-https-e$1.png\"/><rule from=\"^http://(www\\.)?(defendinnovation|globalchokepoints|httpsnow|ripmixmake)\\.org/\" to=\"https://$1$2.org/\"/></ruleset>", "<ruleset name=\"EFTPlus.asia\" default_off=\"failed ruleset test\" f=\"EFTPlus.asia.xml\"><securecookie host=\"^(?:w*\\.)?eftplus\\.asia$\" name=\".+\"/><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)\" 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\" 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)\" default_off=\"failed ruleset test\" f=\"ELabor.xml\"><securecookie host=\"^workforceportal\\.elabor\\.com$\" name=\".+\"/><rule from=\"^http://workforceportal\\.elabor\\.com/\" to=\"https://workforceportal.elabor.com/\"/></ruleset>", "<ruleset name=\"eLatinos.com\" 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=\"^members\\.elearnsecurity\\.com$\" name=\".+\"/><rule from=\"^http://((?:blog|members|www)\\.)?elearnsecurity\\.com/\" to=\"https://$1elearnsecurity.com/\"/></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=\"mismatch\" 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)/\"/><exclusion pattern=\"^http://support\\.optimizely\\.com/(?:help|pkg|stylesheets)/\"/><exclusion pattern=\"^http://support\\.preyproject\\.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/\"/><rule from=\"^http://support\\.optimizely\\.com/\" to=\"https://support.optimizely.com/\"/><rule from=\"^http://support\\.preyproject\\.com/\" to=\"https://support.preyproject.com/\"/></ruleset>", "<ruleset name=\"Lighthouse app.com (mismatches)\" default_off=\"Certificate mismatch\" f=\"ENTP-mismatches.xml\"><securecookie host=\"^help\\.lighthouseapp\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></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://billing\\.eoreality\\.net/\" to=\"https://billing.eoreality.net/\"/></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=\"ERA.int\" f=\"ERA.int.xml\"><rule from=\"^http://(?:www\\.)?era\\.int/\" to=\"https://www.era.int/\"/></ruleset>", "<ruleset name=\"ERC.edu\" 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\" 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\" default_off=\"failed ruleset test\" 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\" f=\"ESTA_Visas.org.uk.xml\"><securecookie host=\"^(?:www\\.|\\.)?estavisas\\.org\\.uk$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ESTA Visas.org\" 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://secure\\.esupport\\.com/\" to=\"https://secure.esupport.com/\"/></ruleset>", "<ruleset name=\"ETAO.com (partial)\" f=\"ETAO.com.xml\"><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)\" 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 (partial)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"EToro.xml\"><securecookie host=\"^\\.copy\\.me$\" name=\".+\"/><securecookie host=\"^.*\\.etoro\\.com$\" name=\".+\"/><rule from=\"^http://(www\\.)?copy\\.me/\" to=\"https://$1copy.me/\"/><rule from=\"^http://(?:www\\.)?etoro\\.com/\" to=\"https://www.etoro.com/\"/><rule from=\"^http://(openbook|s3)\\.etoro\\.com/\" to=\"https://$1.etoro.com/\"/></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=\"mismatch\" 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)\" default_off=\"failed ruleset test\" 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=\"mismatch\" 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\" 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://(load(?:eu|m|r|us|xl)?|sandbox)\\.exelator\\.com/\" to=\"https://$1.exelator.com/\"/><rule from=\"^http://loadan\\.exelator\\.com/\" to=\"https://load.exelator.com/\"/></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-Download\" default_off=\"failed ruleset test\" f=\"EZ-Download.xml\"><securecookie host=\"^(?:www)?\\.ez-download\\.com$\" name=\".+\"/><rule from=\"^http://(downloader\\.|www\\.)?ez-download\\.com/\" to=\"https://$1ez-download.com/\"/><rule from=\"^http://media\\.ez-download\\.com/\" to=\"https://d227ccvjlkns26.cloudfront.net/\"/></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=\"EZCrypt\" f=\"EZCrypt.xml\"><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 &quot;Find Internet access numbers&quot; 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 &amp; 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=\"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)\" 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)\" 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:\" 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)\" default_off=\"failed ruleset test\" 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\" 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=\"Eastern Collegiate Taekwondo Conference\" default_off=\"mismatch\" 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)\" 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)\" 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)\" 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=\"easyPDF Cloud\" default_off=\"failed ruleset test\" f=\"EasyPDF_Cloud.xml\"><securecookie host=\"^(?:www)?\\.easypdfonline\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></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&#233;bergement\" 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\" default_off=\"failed ruleset test\" 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://img\\.ebyrcdn\\.net/\" to=\"https://img.ebyrcdn.net/\"/></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\" default_off=\"failed ruleset test\" 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)\" f=\"Ecm74.com.xml\"><rule from=\"^http://(?:www\\.)?ecm74\\.com/(?!rp/\\d+/ContestForm\\.clsp)\" to=\"https://ecm74.com/\"/></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\" default_off=\"failed ruleset test\" f=\"Econda-monitor.de.xml\"><rule from=\"^http://www\\.econda-monitor\\.de/\" to=\"https://www.econda-monitor.de/\"/></ruleset>", "<ruleset name=\"Econda\" f=\"Econda.de.xml\"><rule from=\"^http://www\\.econda\\.de/\" to=\"https://www.econda.de/\"/><rule from=\"^http://ww1\\.econda-monitor\\.de/\" to=\"https://ww1.econda-monitor.de/\"/></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)\" 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\" default_off=\"failed ruleset test\" f=\"EdUbuntu.xml\"><securecookie host=\"^wiki\\.edubuntu\\.org$\" 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\" f=\"Ed_Uncovered.com.xml\"><securecookie host=\"^\\.eduncovered\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Edarabia.com\" 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\" f=\"Ederdrom.de.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Edfil.es\" default_off=\"failed ruleset test\" f=\"Edfil.es.xml\"><rule from=\"^http://(?:www\\.)?edfil\\.es/\" to=\"https://www.edfil.es/\"/></ruleset>", "<ruleset name=\"Edge.org\" f=\"Edge.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"EdgeCast Networks (partial)\" default_off=\"It remains to be determined which URLs indicate SSL support\" f=\"EdgeCast-networks.xml\"><rule from=\"^http://wac\\.edgecastcdn\\.net/\" to=\"https://wac.edgecastcdn.net/\"/><rule from=\"^http://ne\\.edgecastcdn\\.net/\" to=\"https://ne.edgecastcdn.net/\"/><rule from=\"^http://g(p|s)1\\.wac\\.edgecastcdn\\.net/\" to=\"https://g$11.wac.edgecastcdn.net/\"/><rule from=\"^http://ne1\\.wpc\\.edgecastcdn\\.net/\" to=\"https://ne1.wpc.edgecastcdn.net/\"/><rule from=\"^http://(?:ne\\.wa|gs1\\.wp)c\\.edgecastcdn\\.net/\" to=\"https://ne.wac.edgecastcdn.net/\"/></ruleset>", "<ruleset name=\"Edge Snapbacks.com\" default_off=\"failed ruleset test\" f=\"Edge_Snapbacks.com.xml\"><securecookie host=\"^(?:w*\\.)?edgesnapbacks\\.com$\" name=\".+\"/><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://store\\.edgerunner\\.com/\" to=\"https://store.edgerunner.com/\"/></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\" 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\" 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.no\" f=\"Eduroam.no.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"eduroam.org\" f=\"Eduroam.org.xml\"><rule from=\"^http://(?:www\\.)?eduroam\\.org/\" to=\"https://www.eduroam.org/\"/></ruleset>", "<ruleset name=\"eduroam ES\" f=\"Eduroam_ES.xml\"><rule from=\"^http://www\\.eduroam\\.es/\" to=\"https://www.eduroam.es/\"/></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 Snowden.com\" f=\"Edward_Snowden.com.xml\"><rule from=\"^http://edwardsnowden\\.com/\" to=\"https://www.edwardsnowden.com/\"/><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=\"ef.gy\" default_off=\"failed ruleset test\" f=\"Ef.gy.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"efax.co.uk (partial)\" default_off=\"failed ruleset test\" 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=\"mismatch\" 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\" 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://(?:www\\.)?effi\\.org/\" to=\"https://effi.org/\"/></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://track\\.effiliation\\.com/\" to=\"https://track.effiliation.com/\"/></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=\"connection dropped\" f=\"EgoPay.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Egypt Independent\" default_off=\"expired, mismatch, self-signed\" f=\"Egypt-Independent.xml\"><rule from=\"^http://(?:www\\.)?egyptindependent\\.com/\" to=\"https://www.egyptindependent.com/\"/></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\" 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\" 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=\"El-Tramo.be\" f=\"El-Tramo.be.xml\"><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\" 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://secure\\.elcomsoft\\.com/\" to=\"https://secure.elcomsoft.com/\"/></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=\"^wtsdc\\.electoralcommission\\.org\\.uk$\" name=\".+\"/><rule from=\"^http://(pefonline|wtsdc)\\.electoralcommission\\.org\\.uk/\" to=\"https://$1.electoralcommission.org.uk/\"/></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\" default_off=\"failed ruleset test\" 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)\" 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=\"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\" 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\" default_off=\"failed ruleset test\" 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=\"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\" 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 (false 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://elmbridge\\.gov\\.uk/\" to=\"https://www.elmbridge.gov.uk/\"/><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=\"mismatch\" 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)\" 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=\"Elq.to\" f=\"Elq.to.xml\"><rule from=\"^http://elq\\.to/\" to=\"https://bit.ly/\"/></ruleset>", "<ruleset name=\"Els-CDN.com (partial)\" f=\"Els-CDN.com.xml\"><securecookie host=\"^origin-ars\\.els-cdn\\.com$\" name=\".*\"/><rule from=\"^http://(ars|cdn)\\.els-cdn\\.com/\" to=\"https://origin-$1.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)\" 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\" default_off=\"failed ruleset test\" 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=\"Emanuel Duss.ch\" f=\"Emanuel_Duss.ch.xml\"><rule from=\"^http://(?:www\\.)?emanuelduss\\.ch/\" to=\"https://emanuelduss.ch/\"/></ruleset>", "<ruleset name=\"Emap Awards\" f=\"Emap_Awards.xml\"><securecookie host=\"^(?:www\\.)?emapawards\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Embed.ly (partial)\" 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)\" 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\" 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=\"^ad1\\.emediate\\.dk$\" name=\".+\"/><rule from=\"^http://(?:ad|cdn)1\\.emediate\\.dk/\" to=\"https://ad1.emediate.dk/\"/></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=\"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=\"Emilstahl.dk\" f=\"Emilstahl.dk.xml\"><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=\"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\" 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=\"EnmuNewz Network\" default_off=\"mismatch\" 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://a320\\.emulate\\.su/\" to=\"https://a320.emulate.su/\"/></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\" 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\" f=\"Encosia.xml\"><securecookie host=\"^(?:.+\\.)?encosia\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Encrypt.Today\" default_off=\"shows another domain\" f=\"Encrypt.Today.xml\"><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 All the Things.net\" f=\"Encrypt_All_the_Things.net.xml\"><securecookie host=\"^(?:www\\.)?encryptallthethings\\.net$\" name=\".+\"/><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\" f=\"Encryptmas.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Encryptr.org\" 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\" default_off=\"failed ruleset test\" 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\" default_off=\"failed ruleset test\" 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=\"EnderUNIX (partial)\" default_off=\"expired, mismatch, self-signed\" f=\"EnderUNIX.xml\"><rule from=\"^http://(?:www\\.)?enderunix\\.org/\" to=\"https://enderunix.org/\"/></ruleset>", "<ruleset name=\"Endesa.pt\" f=\"Endesa.pt.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Endora.cz (partial)\" default_off=\"failed ruleset test\" f=\"Endora.cz.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Endrift.com\" 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)\" 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.net\" f=\"Energinet.dk.xml\"><securecookie host=\"^www\\.energinet\\.dk\" name=\".*\"/><rule from=\"^http://(?:www\\.)?energinet\\.dk/\" to=\"https://www.energinet.dk/\"/></ruleset>", "<ruleset name=\"Energy.gov (partial)\" f=\"Energy.gov.xml\"><securecookie host=\"^$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?afdc\\.energy\\.gov/(?=(?:\\w+/)?(?:asset|image)s/)\" to=\"https://www.afdc.energy.gov/\"/><rule from=\"^http://www(1|3)\\.eere\\.energy\\.gov/\" to=\"https://www$1.eere.energy.gov/\"/></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:\" 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=\"^www\\.engagemedia\\.org$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?engagemedia\\.org/\" to=\"https://www.engagemedia.org/\"/></ruleset>", "<ruleset name=\"Engaged Doncaster.co.uk\" 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=\"http redirect\" f=\"English-Heritage.org.uk.xml\"><securecookie host=\"^www\\.english-heritage\\.org\\.uk$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"English-Heritage shop.org.uk\" f=\"English-Heritage_shop.org.uk.xml\"><securecookie host=\"^\\.english-heritageshop\\.org\\.uk$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"English Defence League.net (false MCB)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"English_Defence_League.net-falsemixed.xml\"><securecookie host=\"^(?:w*\\.)?englishdefenceleague\\.net$\" name=\".+\"/><rule from=\"^http://(www\\.)?englishdefenceleague\\.net/(?!ezportal/icons/|favicon\\.ico|gallery/thumb_|Themes/)\" to=\"https://$1englishdefenceleague.net/\"/></ruleset>", "<ruleset name=\"English Defence League.net (partial)\" f=\"English_Defence_League.net.xml\"><rule from=\"^http://(www\\.)?englishdefenceleague\\.net/(?=ezportal/icons/|favicon\\.ico|gallery/thumb_|Themes/)\" to=\"https://$1englishdefenceleague.net/\"/></ruleset>", "<ruleset name=\"EnhanceIE.com\" default_off=\"mismatch\" 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://(?:www\\.)?enigmail\\.net/\" to=\"https://www.enigmail.net/\"/></ruleset>", "<ruleset name=\"Eniro (partial)\" default_off=\"failed ruleset test\" 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\" 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://members\\.enlightenedperl\\.org/\" to=\"https://members.enlightenedperl.org/\"/></ruleset>", "<ruleset name=\"Enlightenment.org\" f=\"Enlightenment.xml\"><securecookie host=\".\" name=\".\"/><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\" platform=\"cacert\" f=\"Ens-lyon.org.xml\"><rule from=\"^http://((?:blog|cvs|git|svn|toccata|web|wiki|www)\\.)?ens-lyon\\.org/\" to=\"https://$1ens-lyon.org/\"/></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=\"mismatch\" 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=\"Entanet (partial)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Entanet.xml\"><securecookie host=\"^(?:.*\\.)?enta\\.net$\" name=\".*\"/><securecookie host=\"^(?:.*\\.)?voipuserportal\\.co\\.uk$\" name=\".*\"/><rule from=\"^http://enta\\.net/\" to=\"https://www.enta.net/\"/><rule from=\"^http://(billing|synergi|www)\\.enta\\.net/\" to=\"https://$1.enta.net/\"/><rule from=\"^http://(www\\.)?voipuserportal\\.co\\.uk/\" to=\"https://$1voipuserportal.co.uk/\"/></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=\"mismatch\" 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://shop\\.entheogene\\.de/\" to=\"https://shop.entheogene.de/\"/></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)\" 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=\"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=\"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=\"Epls.gov\" default_off=\"failed ruleset test\" f=\"Epls.gov.xml\"><securecookie host=\"(?:^|\\.)epls\\.gov$\" name=\".+\"/><rule from=\"^(?:http://(?:www\\.)?|https://)epls\\.gov/\" to=\"https://www.epls.gov/\"/></ruleset>", "<ruleset name=\"Epoch.com\" f=\"Epoch.com.xml\"><securecookie host=\"^(?:(?:billing|reports|www)\\.)?epoch\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"EpochStats.com\" 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\" 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=\"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\" f=\"Erinn.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Erlang (partial)\" default_off=\"expired, mismatched\" f=\"Erlang.xml\"><rule from=\"^http://(?:www\\.)?erlang\\.org/(?=\\w+\\.css$|doc/|images/|upload/)\" to=\"https://www.erlang.org/\"/></ruleset>", "<ruleset name=\"Ernst &amp; 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 (partial)\" f=\"Ero-advertising.com.xml\"><rule from=\"^http://(banners|data|userpanel)\\.ero-advertising\\.com/\" to=\"https://$1.ero-advertising.com/\"/></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=\"^erooups\\.com$\" 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=\"es.gy (expired)\" default_off=\"expired\" f=\"Es.gy-problematic.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"es.gy (partial)\" 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\" 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=\"mismatch\" 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\" default_off=\"failed ruleset test\" f=\"Estonia_Evoting.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Estonian Public Broadcasting (partial)\" f=\"Estonian_Public_Broadcasting.xml\"><securecookie host=\"^(?:.+\\.)?err\\.ee$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"etapestry.com\" 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=\"^(?:www\\.)?etarget\\.hu$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Etarget.ro\" default_off=\"expired\" f=\"Etarget.ro.xml\"><securecookie host=\"^(?:www\\.)?etarget\\.ro$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Etarget.sk\" f=\"Etarget.sk.xml\"><securecookie host=\"^(?:www\\.)?etarget\\.sk$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Etarget.cz\" default_off=\"missing certificate chain\" 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\" f=\"Eth0.nl.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"EthACK.org\" f=\"EthACK.org.xml\"><securecookie host=\"^(?:www\\.)?ethack\\.org$\" name=\".+\"/><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)\" f=\"Ethereum.org.xml\"><securecookie host=\"^(?:www)?\\.ethereum\\.org$\" name=\".+\"/><rule from=\"^http://((?:code|forum|www)\\.)?ethereum\\.org/\" to=\"https://$1ethereum.org/\"/><rule from=\"^http://wiki\\.ethereum\\.org/(?:$|\\?.*)\" to=\"https://github.com/ethereum/wiki/wiki\"/></ruleset>", "<ruleset name=\"Ethersheet.org\" default_off=\"expired\" f=\"Ethersheet.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ethical Data\" f=\"Ethical_Data.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://www\\.ethnologue\\.com/\" to=\"https://www.ethnologue.com/\"/></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\" 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=\"etouches\" f=\"Etouches.xml\"><securecookie host=\"^(?:www\\.)?e(?:iseverywhere|touches)\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"etracker (partial)\" 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\" default_off=\"failed ruleset test\" 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=\"failed ruleset test\" f=\"Etravelway.com.xml\"><rule from=\"^http://(?:www\\.)?etravelway\\.com/\" to=\"https://www.etravelway.com/\"/></ruleset>", "<ruleset name=\"Etre Shop.com (partial)\" platform=\"mixedcontent\" 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=\"Etsy (partial)\" f=\"Etsy.xml\"><exclusion pattern=\"^http://(?:de\\.|fr\\.|www\\.)?etsy\\.com/(?:\\w\\w/)?(?:apps|browse|error\\.php|forums(?:_user_threads\\.php)?|listing/\\d+|people|reopen_account\\.php|teams|treasury)(?:$|\\?|/)\"/><rule from=\"^http://((?:blog|de|fr|ny-image\\d|system|www)\\.)?etsy\\.com/\" to=\"https://$1etsy.com/\"/><rule from=\"^http://(img\\d|site|www)\\.etsystatic\\.com/\" to=\"https://$1.etsystatic.com/\"/></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=\"mismatch\" 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\" 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=\"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://banner\\.euroads\\.se/\" to=\"https://banner.euroads.se/\"/></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\" 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://forum\\.eurofurence\\.org/\" to=\"https://forum.eurofurence.org/\"/></ruleset>", "<ruleset name=\"Eurogamer (expired)\" default_off=\"expired\" f=\"Eurogamer-problematic.xml\"><securecookie host=\"^ads\\.eurogamer\\.net$\" name=\".+\"/><rule from=\"^http://ads\\.eurogamer\\.net/\" to=\"https://ads.eurogamer.net/\"/></ruleset>", "<ruleset name=\"Eurogamer (partial)\" f=\"Eurogamer.xml\"><rule from=\"^http://images\\.eurogamer\\.net/\" to=\"https://images.eurogamer.net/\"/><rule from=\"^http://images\\.vg247\\.com/\" to=\"https://d2f23iedlijwim.cloudfront.net/\"/></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|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 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\" default_off=\"failed ruleset test\" f=\"European-Bioinformatics-Institute.xml\"><rule from=\"^http://www\\.ebi\\.co\\.uk/\" to=\"https://www.ebi.co.uk/\"/></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=\"mismatch\" 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)\" default_off=\"failed ruleset test\" 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=\"EuropeanCensorship.eu (partial)\" default_off=\"failed ruleset test\" f=\"EuropeanCensorshop.eu.xml\"><rule from=\"^http:\" to=\"https:\"/></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)\" 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\" f=\"Evanced.info.xml\"><securecookie host=\"^(?:ca\\.)?evanced\\.info$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Evaske.com\" 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://eventbookingonline\\.com/\" to=\"https://eventbookingonline.com/\"/></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)\" f=\"Eventpoint.com.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\" f=\"Evermeet.cx.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Evernote.com (problematic)\" default_off=\"mismatched\" f=\"Evernote-problematic.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Evernote.com (partial)\" f=\"Evernote.xml\"><securecookie host=\"^(?:.*\\.)?evernote\\.com$\" 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=\"mismatch\" 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=\"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=\"everything4bet\" default_off=\"failed ruleset test\" f=\"Everything4bet.xml\"><securecookie host=\"^(?:w*\\.)?everything4bet\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></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)\" 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=\"connection 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 (partial)\" default_off=\"failed ruleset test\" f=\"EvoTronix.xml\"><rule from=\"^http://(?:www\\.)?evotronix(?:\\.netdna-cdn)?\\.com/\" to=\"https://evotronix.com/\"/><rule from=\"^https://f(aq|orum)\\.evotronix\\.com/\" to=\"http://f$1.evotronix.com/\" downgrade=\"1\"/></ruleset>", "<ruleset name=\"EvolMed.com\" f=\"EvolMed.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Evoliatis (partial)\" default_off=\"mismatch, self-signed\" f=\"Evoliatis.xml\"><rule from=\"^http://ref\\.evoliatis\\.com/\" to=\"https://ref.evoliatis.com/\"/></ruleset>", "<ruleset name=\"Evoluted.net\" default_off=\"failed ruleset test\" f=\"Evoluted.net.xml\"><securecookie host=\"^(?:www\\.)?evoluted\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Evolve Socially.org (false MCB)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Evolve_Socially.org-falsemixed.xml\"><securecookie host=\"^(?:w*\\.)?evolvesocially\\.org$\" name=\".+\"/><rule from=\"^http://(www\\.)?evolvesocially\\.org/(?!favicon\\.ico|wp-content/|wp-includes/)\" to=\"https://$1evolvesocially.org/\"/></ruleset>", "<ruleset name=\"Evolve Socially.org (partial)\" default_off=\"failed ruleset test\" f=\"Evolve_Socially.org.xml\"><rule from=\"^http://(www\\.)?evolvesocially\\.org/(?=favicon\\.ico|wp-content/|wp-includes/)\" to=\"https://$1evolvesocially.org/\"/></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=\"mismatches\" 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)\" 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=\"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\" 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)\" 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://www\\.executiveinterviews\\.com/\" to=\"https://www.executiveinterviews.com/\"/></ruleset>", "<ruleset name=\"Exede (partial)\" f=\"Exede.xml\"><securecookie host=\"^order\\.exede\\.com$\" name=\".+\"/><rule from=\"^http://order\\.exede\\.com/\" to=\"https://order.exede.com/\"/></ruleset>", "<ruleset name=\"Exeter Friendly Society\" 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 Linux (CAcert, partial)\" platform=\"cacert\" default_off=\"failed ruleset test\" f=\"Exherbo-Linux.xml\"><securecookie host=\"^bugs\\.exherbo\\.org$\" name=\".*\"/><rule from=\"^http://bugs\\.exherbo\\.org/\" to=\"https://bugs.exherbo.org/\"/></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://traq\\.exitec\\.com/\" to=\"https://traq.exitec.com/\"/></ruleset>", "<ruleset name=\"Exmasters.com (partial)\" default_off=\"failed ruleset test\" f=\"Exmasters.com.xml\"><securecookie host=\"^admin\\.exmasters\\.com$\" name=\".+\"/><rule from=\"^http://admin\\.exmasters\\.com/\" to=\"https://admin.exmasters.com/\"/></ruleset>", "<ruleset name=\"Exmo.com\" 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=\"ExoticAds.com (partial)\" f=\"ExoticAds.com.xml\"><securecookie host=\"^(?:adserver\\.)?exoticads\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Expanded Support.com\" default_off=\"connection dropped\" 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=\"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=\"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://(?:changes|gettingstarted|support)\\.exposure\\.co/\"/><securecookie host=\"^\\.exposure\\.co$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Express-VPN.com\" f=\"Express-VPN.xml\"><rule from=\"^http://(?:www\\.)express-vpn\\.com/\" to=\"https://www.express-vpn.com/\"/></ruleset>", "<ruleset name=\"expresscoin.com (partial)\" 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 (partial)\" f=\"Extatic.org.xml\"><rule from=\"^http://(?:secure|www)\\.extatic\\.org/\" to=\"https://secure.extatic.org/\"/></ruleset>", "<ruleset name=\"Extensible Web Manifesto.org\" f=\"Extensible_Web_Manifesto.org.xml\"><rule from=\"^http://www\\.extensiblewebmanifesto\\.org/\" to=\"https://extensiblewebmanifesto.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Extension Defender.com\" f=\"Extension_Defender.com.xml\"><securecookie host=\"^\\.extensiondefender\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Extensis.com (mismatched)\" default_off=\"mimatched\" f=\"Extensis.com-problematic.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Extensis.com (partial)\" 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=\"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\" default_off=\"failed ruleset test\" f=\"Extreme_Digital.xml\"><securecookie host=\"^www\\.edigital\\.hu$\" name=\".+\"/><rule from=\"^http://www\\.edigital\\.hu/\" to=\"https://www.edigital.hu/\"/></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://reports\\.eyereturn\\.com/\" to=\"https://reports.eyereturn.com/\"/></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=\"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)\" f=\"F-Secure.xml\"><securecookie host=\"^(?:.*\\.)?f-secure\\.com$\" 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=\"f3mimages.com\" default_off=\"failed ruleset test\" f=\"F3mimages.com.xml\"><securecookie host=\"^\\.f3mimages\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"F5 (mismatches)\" default_off=\"mismatch\" 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) (CAcert)\" platform=\"cacert mixedcontent\" f=\"FAU.org.xml\"><rule from=\"^http://(?:www\\.)?fau\\.org/\" to=\"https://www.fau.org/\"/></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://fazschule\\.net/\" to=\"https://www.fazschule.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FB18_Forum\" default_off=\"failed ruleset test\" f=\"FB18.de.xml\"><rule from=\"^http://(?:www\\.)?fb18\\.de/\" to=\"https://www.fb18.de/\"/></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=\"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\" f=\"FFSG.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FFTLive.org\" 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=\"FHI.se\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"FHI.se.xml\"><rule from=\"^http://www\\.fhi\\.se/\" to=\"https://www.fhi.se/\"/><rule from=\"^http://fhi\\.se/\" to=\"https://fhi.se/\"/></ruleset>", "<ruleset name=\"FHNW.ch (partial)\" f=\"FHNW.ch.xml\"><rule from=\"^http://aai-logon\\.fhnw\\.ch/\" to=\"https://aai-logon.fhnw.ch/\"/></ruleset>", "<ruleset name=\"FHS.se\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" 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\" 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)\" 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=\"FSF (self-signed)\" default_off=\"self-signed\" f=\"FSF-mismatches.xml\"><rule from=\"^http://(?:www\\.)?fsfla\\.org/\" to=\"https://www.fsfla.org/\"/></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)\" f=\"FSFE.org.xml\"><securecookie host=\"^(?:fellowship|vote)\\.fsfe\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FSFEurope.org (partial)\" f=\"FSFEurope.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\" default_off=\"failed ruleset test\" f=\"FS_CDN.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FS Data.se (partial)\" f=\"FS_Data.xml\"><securecookie host=\"^(?:webmail\\.)?fsdata\\.se$\" 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=\"FTC Complaint Assistant.gov\" f=\"FTC_Complaint_Assistant.gov.xml\"><securecookie host=\".\" name=\".\"/><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\" f=\"FVEYdocs.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FX Prime.com\" 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\" default_off=\"failed ruleset test\" 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 Franke.de\" f=\"Fabian_Franke.de.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\" 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://static\\.ak\\.facebook\\.com/\" to=\"https://s-static.ak.facebook.com/\"/><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\" 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\" f=\"Facepunch.com.xml\"><securecookie host=\"^\\.facepunch\\.com$\" 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=\"mismatch\" 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=\"^(?:forum\\.|www\\.)?fairphone\\.com$\" name=\".+\"/><rule from=\"^http://((?:forum|shop|www)\\.)?fairphone\\.com/\" to=\"https://$1fairphone.com/\"/></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)\" 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=\"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\" 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\" 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\" default_off=\"mixedcontent\" f=\"Fanli.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Fanoe.dk\" f=\"Fanoe.dk.xml\"><securecookie host=\"^(www\\.)?fanoe\\.dk$\" name=\".+\"/><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=\"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=\"Breaks form submission\" f=\"Fark.xml\"><securecookie host=\"^(?:gw|shop)\\.fark\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?fark\\.com/(blog|comments/|feedback|forgotpassword|ll$|newuser|psbrowser|quiz|submit/|users)\" to=\"https://www.fark.com/$1\"/><rule from=\"^http://(app|beta|gw|m|shop|ssl|(?:m\\.)?total)\\.fark\\.com/\" to=\"https://$1.fark.com/\"/><rule from=\"^http://img\\.fark\\.net/\" to=\"https://img.fark.net/\"/></ruleset>", "<ruleset name=\"FarmLogs.com\" f=\"FarmLogs.com.xml\"><securecookie host=\"^\\.farmlogs\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Farmaciforbundet.se\" default_off=\"failed ruleset test\" f=\"Farmaciforbundet.se.xml\"><rule from=\"^http://farmaciforbundet\\.se/\" to=\"https://www.farmaciforbundet.se/\"/><rule from=\"^http://www\\.farmaciforbundet\\.se/\" to=\"https://www.farmaciforbundet.se/\"/></ruleset>", "<ruleset name=\"Farmers Development Organization (partial)\" default_off=\"expired, self-signed\" f=\"Farmers_Development_Organization.xml\"><rule from=\"^http://(?:www\\.)?fdopk\\.org/\" to=\"https://fdopk.org/\"/></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=\"Fashionara.com (false MCB)\" platform=\"mixedcontent\" f=\"Fashionara.com-falsemixed.xml\"><securecookie host=\"^\\.fashionara\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Fashionara.com (partial)\" f=\"Fashionara.com.xml\"><rule from=\"^http://(www\\.)?fashionara\\.com/(?=favicon\\.ico|customer/|media/|skin/)\" to=\"https://$1fashionara.com/\"/><rule from=\"^http://static\\.fashionara\\.com/\" to=\"https://d1x2ae5wsotp3k.cloudfront.net/\"/><rule from=\"^http://staticassets\\.fashionara\\.com/\" to=\"https://s3-ap-southeast-1.amazonaws.com/staticassets.fashionara.com/\"/></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=\"mismatch\" 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=\"mismatch\" 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)\" default_off=\"failed ruleset test\" 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://favstar\\.fm/\" to=\"https://favstar.fm/\"/></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=\"^\\.faxbigbrother\\.com$\" name=\"\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Fax Robot.com\" f=\"Fax_Robot.com.xml\"><securecookie host=\"^\\.faxrobot\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Fazekas\" 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\"><rule from=\"^http://(www\\.)?fb\\.me/\" to=\"https://$1fb.me/\"/><rule from=\"^http://on\\.fb\\.me/\" to=\"https://bit.ly/\"/></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=\"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://forum\\.feathercoin\\.com/\" to=\"https://forum.feathercoin.com/\"/></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\" default_off=\"failed ruleset test\" 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)\" 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\" f=\"Federation-of-American-Scientists.xml\"><securecookie host=\".*\\.fas\\.org$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Federation of Small Businesses (partial)\" default_off=\"failed ruleset test\" 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\" f=\"Fedora.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Fedora Hosted.org\" f=\"Fedora_Hosted.org.xml\"><securecookie host=\"^(?:www\\.)?fedorahosted\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Fedora Magazine.org\" f=\"Fedora_Magazine.org.xml\"><securecookie host=\"^(www\\.)?fedoramagazine\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Fedora People.org\" f=\"Fedora_People.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Fedora Project.org (problematic)\" default_off=\"mismatched, self-signed, untrusted root\" f=\"Fedora_Project-problematic.xml\"><exclusion pattern=\"^http://koji\\.fedoraproject\\.org/packages/\"/><securecookie host=\"^\\w\" 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\" 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 (partial)\" f=\"Feedly.com.xml\"><securecookie host=\"^\\.feedly\\.com$\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\"^(?:www\\.)?feedly\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FeedMyInbox\" 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)\" 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\" f=\"Feide.xml\"><securecookie host=\".*\\.feide\\.no$\" name=\".+\"/><rule from=\"^http://((?:api|crawler|(?:idp\\.|sp\\d\\.)?demo|docs|foodle|fwtest|idp|idp-dev|innsyn|kunde|logout|metadata|openidp|openwiki|ow|rnd|(?:beta|translation)\\.rnd|sp-test|tools|wiki|www)\\.)?feide\\.no/\" to=\"https://$1feide.no/\"/></ruleset>", "<ruleset name=\"Feisty Duck.com\" f=\"Feisty_Duck.com.xml\"><rule from=\"^http://store\\.feistyduck\\.com/\" to=\"https://feistyduck.myshopify.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Feit Electric Company (partial)\" platform=\"mixedcontent\" 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\" 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=\"Fermi National Accelerator Laboratory (partial)\" f=\"Fermi_National_Accelerator_Laboratory.xml\"><securecookie host=\"^(?:.*\\.)?fnal\\.gov$\" name=\".+\"/><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=\"FetchBack.com (partial)\" f=\"FetchBack.xml\"><exclusion pattern=\"^http://imp\\.fetchback\\.com/serve/optout/pt-out\\.html\"/><exclusion pattern=\"^http://www\\.fetchback\\.com/\"/><securecookie host=\"^\\.fetchback\\.com$\" name=\"^(act|afl|apd|bpd|clk|cmp|cre|fbid|eng|kwd|ppd|scg|sit|uat|uid)$\"/><rule from=\"^http:\" to=\"https:\"/></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)\" 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/\"/><rule from=\"^http://(?:static\\.fiercemarkets\\.com|assets\\.fiercemarkets\\.net)/\" to=\"https://d2pkycnpovhofp.cloudfront.net/\"/></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=\"FierceWireless (partial)\" f=\"FierceWireless.xml\"><rule from=\"^http://(?:www\\.)?fiercewireless\\.com/(?=favicon\\.ico|files/|sites/)\" to=\"https://d2pkycnpovhofp.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Fife Direct.org.uk\" 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://dkg\\.fifthhorseman\\.net/\" to=\"https://dkg.fifthhorseman.net/\"/></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=\"^(?:\\w.*\\.)?fightforthefuture\\.org$\" name=\".+\"/><rule from=\"^http://s3\\.fightforthefuture\\.org/\" to=\"https://s3.amazonaws.com/s3.fightforthefuture.org/\"/><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\" default_off=\"failed ruleset test\" 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)\" f=\"FileFactory.xml\"><securecookie host=\"^(?:.*\\.)?filefactory\\.com$\" 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\" 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\" 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 (partial)\" 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=\"Filippo.io\" f=\"Filippo.io.xml\"><securecookie host=\"^\\.filippo\\.io$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></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)\" 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)\" default_off=\"failed ruleset test\" 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)\" 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 Cryptography\" platform=\"cacert\" default_off=\"failed ruleset test\" f=\"Financial-Cryptography.xml\"><rule from=\"^http:\" to=\"https:\"/></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)\" f=\"Financial_Times.xml\"><exclusion pattern=\"^http://markets\\.ft\\.com/(?!favicon\\.ico|RESEARCH/uploadhandler/)\"/><securecookie host=\"^\\.ft\\.com$\" name=\"^(?:AYSC|AYSC_C|FTUserTrack)$\"/><rule from=\"^http://s4\\.media\\.ft\\.com/\" to=\"https://s4.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\" f=\"FinansWatch.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Finansportalen.no\" f=\"Finansportalen.no.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Finanssialan Keskusliitto\" 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)\" 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://connectssl\\.find\\.ly/\" to=\"https://connectssl.find.ly/\"/></ruleset>", "<ruleset name=\"FindLegalForms.com (partial)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"FindLegalForms.com.xml\"><rule from=\"^http://(?:www\\.)?findlegalforms\\.com/\" to=\"https://www.findlegalforms.com/\"/></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\" 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\" 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=\"FireFart.at\" f=\"FireFart.at.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FireHost (partial)\" 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)\" 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\" 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)\" 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 (false MCB)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"First_Class_Magazine.se-falsemixed.xml\"><securecookie host=\"^(?:w*\\.)?firstclassmagazine\\.se$\" name=\".+\"/><rule from=\"^http://(www\\.)?firstclassmagazine\\.se/(?!favicon\\.ico|wp-content/|wp-includes/)\" to=\"https://$1firstclassmagazine.se/\"/></ruleset>", "<ruleset name=\"First Class Magazine.se (partial)\" f=\"First_Class_Magazine.se.xml\"><exclusion pattern=\"^http://(?:www\\.)?firstclassmagazine\\.se/(?!favicon\\.ico|wp-content/|wp-includes/)\"/><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=\"First Look.org\" f=\"First_Look.org.xml\"><securecookie host=\"^\\.firstlook\\.org$\" 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\" f=\"Firsts.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FishBase.us\" default_off=\"handshake failure\" f=\"FishBase.us.xml\"><securecookie host=\"^www\\.fishbase\\.us$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?fishbase\\.us/\" to=\"https://www.fishbase.us/\"/></ruleset>", "<ruleset name=\"FishNet Security.com\" 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\" 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=\"Fiskeriverket.se\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Fiskeriverket.se.xml\"><rule from=\"^http://fiskeriverket\\.se/\" to=\"https://www.fiskeriverket.se/\"/><rule from=\"^http://www\\.fiskeriverket\\.se/\" to=\"https://www.fiskeriverket.se/\"/></ruleset>", "<ruleset name=\"FitBit\" f=\"FitBit.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FitStudio.com (partial)\" 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 (false MCB)\" platform=\"mixedcontent\" f=\"FiveThirtyEight.com-falsemixed.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FiveThirtyEight.com (partial)\" 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)\" 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=\"Fixing_Tao.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\" 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=\"mismatch\" 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=\"Flashback.org\" f=\"Flashback.org.xml\"><rule from=\"^http://flashback\\.org/\" to=\"https://www.flashback.org/\"/><rule from=\"^http://www\\.flashback\\.org/\" to=\"https://www.flashback.org/\"/><rule from=\"^http://static\\.flashback\\.org/\" to=\"https://static.flashback.org/\"/></ruleset>", "<ruleset name=\"flashrom.org\" default_off=\"mismatch\" platform=\"cacert\" f=\"Flashrom.xml\"><securecookie host=\"^flashrom\\.org$\" 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)\" 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://flavors\\.me/\" to=\"https://flavors.me/\"/></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=\"connection 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=\"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\"><securecookie host=\".*\\.flickr\\.com$\" name=\"^(?!current_identity$).+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Flightaware\" f=\"Flightaware.xml\"><rule from=\"^http://((?:[A-Za-z][A-Za-z]|photos|www)\\.)?flightaware\\.com/\" to=\"https://$1flightaware.com/\"/></ruleset>", "<ruleset name=\"Flightglobal (mismatches)\" default_off=\"mismatch\" 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 (redirects)\" default_off=\"redirect loops\" f=\"Flinq.de.xml\"><rule from=\"^http://(?:www\\.)?flinq\\.de/\" to=\"https://www.flinq.de/\"/></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\" f=\"FlixDen.xml\"><securecookie host=\"^(?:www\\.)?flixden\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Flixster (partial)\" f=\"Flixster.xml\"><securecookie host=\"^community\\.flixster\\.com$\" 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\" default_off=\"failed ruleset test\" 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=\"mismatch\" 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 (false MCB)\" platform=\"mixedcontent\" f=\"FlowingData.com-falsemixed.xml\"><securecookie host=\"^\\.flowingdata\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FlowingData.com (partial)\" default_off=\"failed ruleset test\" f=\"FlowingData.com.xml\"><exclusion pattern=\"^http://(?:www\\.)?flowingdata\\.com/+(?!\\?custom-css=|wp-content/|wp-includes/)\"/><rule from=\"^http://((?:jobs|media|www)\\.)?flowingdata\\.com/\" to=\"https://$1flowingdata.com/\"/></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://releases\\.flowplayer\\.org/\" to=\"https://releases.flowplayer.org/\"/></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 Cameras\" f=\"Flying_Cameras.xml\"><securecookie host=\"^\\.(?:www\\.)?flyingcameras\\.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=\"mismatch\" f=\"Fmod.xml\"><securecookie host=\"^(?:www\\.)?fmod\\.org$\" name=\".+\"/><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)\" default_off=\"failed ruleset test\" f=\"Fnfismd.com.xml\"><rule from=\"^http://carenet\\.fnfismd\\.com/\" to=\"https://carenet.fnfismd.com/\"/></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)\" f=\"Focus.de.xml\"><exclusion pattern=\"^http://m\\.focus\\.de/+(?!favicon\\.ico|resources/)\"/><exclusion pattern=\"^http://www\\.focus\\.de/+(?!resources/)\"/><rule from=\"^http://p4\\.focus\\.de/\" to=\"https://p0.focus.de/\"/><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\" 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)\" 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)\" 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\" default_off=\"failed ruleset test\" 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=\"FoodSafety.gov\" default_off=\"Akamai\" f=\"FoodSafety.gov.xml\"><rule from=\"^http://(?:www\\.)?foodsafety\\.gov/\" to=\"https://www.foodsafety.gov/\"/></ruleset>", "<ruleset name=\"Food Hub\" default_off=\"failed ruleset test\" f=\"Food_Hub.xml\"><securecookie host=\"^(?:www\\.)?foodhub\\.co\\.nz$\" 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 &amp; Water Watch (partial)\" f=\"Food_and_Water_Watch.xml\"><securecookie host=\"^(?:w*\\.)?foodandwaterwatch\\.org$\" name=\".+\"/><rule from=\"^http://act\\.foodandwaterwatch\\.org/site/Donation\" to=\"https://secure3.convio.net/fww/site/Donation\"/><rule from=\"^http://(www\\.)?foodandwaterwatch\\.org/\" to=\"https://$1foodandwaterwatch.org/\"/></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=\"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://((?:archive|blog|www)\\.)?foolz\\.us/\" to=\"https://$1foolz.us/\"/></ruleset>", "<ruleset name=\"Foot Locker (partial)\" default_off=\"failed ruleset test\" f=\"Foot_Locker.xml\"><securecookie host=\"^.*\\.footlocker\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?footlocker\\.com/\" to=\"https://www.footlocker.com/\"/><rule from=\"^http://(images|m)\\.footlocker\\.com/\" to=\"https://$1.footlocker.com/\"/></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://secure\\.footprint\\.net/\" to=\"https://secure.footprint.net/\"/></ruleset>", "<ruleset name=\"Forbes.com (partial)\" f=\"Forbes.com.xml\"><securecookie host=\"^www\\.newsletters\\.forbes\\.com$\" name=\"^fc\\w+$\"/><rule from=\"^http://(?:www\\.)?newsletters\\.forbes\\.com/(?=DRHM/|favicon\\.ico|store\\?Action=(?:AddItemToRequisition|DisplayPage)(?:$|[?/]))\" to=\"https://www.newsletters.forbes.com/\"/><rule from=\"^http://(e-subscriptions|safesource|secureads)\\.forbes\\.com/\" to=\"https://$1.forbes.com/\"/></ruleset>", "<ruleset name=\"Forbes.com (expired)\" default_off=\"expired\" f=\"Forbes_Magazine-mixed.xml\"><rule from=\"^http://blogs\\.forbes\\.com/\" to=\"https://blogs.forbes.com/\"/></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\" f=\"Forecast.io.xml\"><securecookie host=\"^developer\\.forecast\\.io$\" name=\"\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ForeignPolicy.com (partial)\" f=\"ForeignPolicy.com.xml\"><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://cookie\\.fdih\\.dk/\" to=\"https://cookie.fdih.dk/\"/></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\" f=\"ForestSangha.org.xml\"><securecookie host=\"^(?:www)?(?:\\.)?forestsangha\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Foresters\" default_off=\"failed ruleset test\" 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\" 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)\" 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\" 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\" 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=\"Formspring (broken)\" default_off=\"invalid certificates\" f=\"Formspring.xml\"><rule from=\"^http://(?:www\\.)?formspring\\.me/\" to=\"https://www.formspring.me/\"/><rule from=\"^http://([\\w\\-]+)\\.formspring\\.me/\" to=\"https://$1.formspring.me/\"/></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)\" default_off=\"failed ruleset test\" 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\" default_off=\"failed ruleset test\" 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\" f=\"FortiGuard.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Fortinet.com (partial)\" f=\"Fortinet.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Fortnite.com\" 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\" default_off=\"failed ruleset test\" f=\"Fortum.xml\"><securecookie host=\"^(?:.*\\.)?fortum\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?fortum\\.com/\" to=\"https://www.fortum.com/\"/></ruleset>", "<ruleset name=\"Fortumo\" 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\" 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)\" f=\"Forumatic.xml\"><securecookie host=\"^\\.forumatic\\.com$\" name=\"^PHPSESSID$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Forums.nexusmods.com\" f=\"Forums.nexusmods.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Forums f&#252;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=\"FotoPigeon.com\" f=\"FotoPigeon.xml\"><securecookie host=\"^(?:www\\.)?fotopigeon\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Fotoblur\" 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=\"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\" f=\"Fourecks.de.xml\"><rule from=\"^http://www\\.fourecks\\.de/\" to=\"https://fourecks.de/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Fourmilab (partial)\" f=\"Fourmilab.xml\"><exclusion pattern=\"^http://(?:www\\.)?fourmilab\\.ch/(?:cgi-bin/(?:uncgi/)?Earth\\?|images/(?:c1995o1/$|flash/g-audio-player\\.swf))\"/><securecookie host=\"^www\\.fourmilab\\.ch$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?fourmilab\\.ch/\" to=\"https://www.fourmilab.ch/\"/><rule from=\"^https://www\\.fourmilab\\.ch/images/c1995o1/$\" to=\"http://www.fourmilab.ch/images/c1995o1/\" downgrade=\"1\"/><rule from=\"^https://www\\.fourmilab\\.ch/cship/figures/Gdoppler1\\.html\" to=\"http://www.fourmilab.ch/cship/figures/Gdoppler1.html\" downgrade=\"1\"/><rule from=\"^https://(?:www\\.)?fourmilab\\.ch/cgi-bin/(?:uncgi/)?Earth\\?\" to=\"http://www.fourmilab.ch/cgi-bin/Earth?\" downgrade=\"1\"/></ruleset>", "<ruleset name=\"Foursquare.com (partial)\" 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)\" 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\" 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)\" 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\" f=\"Fr33tux.org.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\" f=\"Fraglive.xml\"><securecookie host=\"^(?:w*\\.)?fraglive\\.cl$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Framalab.org\" f=\"Framalab.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Framasphere.org\" f=\"Framasphere.org.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\" default_off=\"failed ruleset test\" 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=\"frcanalytics.com\" f=\"Frcanalytics.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Fred and Pickles\" f=\"Fred_and_Pickles.xml\"><securecookie host=\"^\\.fredandpickles\\.co\\.uk$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Fredericia.dk\" f=\"Fredericia.dk.xml\"><securecookie host=\"^(www\\.)?fredericia\\.dk\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Frederik-Braun.com\" f=\"Frederik-Braun.com.xml\"><securecookie host=\".\" 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\" 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=\"^(?:admbug|\\.bug|forum)s\\.freebsd\\.org$\" name=\".+\"/><rule from=\"^http://svn\\.freebsd\\.org/\" to=\"https://svnweb.freebsd.org/\"/><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=\"FreeBin\" default_off=\"Certificate mismatch\" f=\"FreeBin.xml\"><rule from=\"^http://(?:www\\.)?freebin\\.org/\" to=\"https://freebin.org/\"/></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\" 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\" 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=\"FreeUnlocks.com\" f=\"FreeUnlocks.com.xml\"><securecookie host=\"^(?:www)?\\.freeunlocks\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FreeVPS.us\" f=\"FreeVPS.us.xml\"><securecookie host=\"^freevps\\.us$\" name=\".+\"/><rule from=\"^http://www\\.freevps\\.us/\" to=\"https://freevps.us/\"/><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\" 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:\" 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\" 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\" 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\" 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)\" 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\" f=\"Freebaselibs.com.xml\"><rule from=\"^http://freebaselibs\\.com/\" to=\"https://static.freebase.com/\"/></ruleset>", "<ruleset name=\"Freecause.com\" 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=\"connection 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=\"Freedom.Press\" f=\"Freedom.Press.xml\"><securecookie host=\"^\\.freedom\\.press$\" name=\".+\"/><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\" 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=\"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\" 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)\" 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=\"Freenet Project.org\" f=\"Freenet.xml\"><securecookie host=\"^.*\\.freenetproject\\.org$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Freepik.com (partial)\" f=\"Freepik.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Freescale.com (partial)\" 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)\" 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\" 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\" 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:\" 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)\" 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)\" default_off=\"failed ruleset test\" 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=\"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=\"fri-Gate.org (partial)\" default_off=\"failed ruleset test\" f=\"Fri-Gate.org.xml\"><rule from=\"^http://api2\\.fri-gate\\.org/\" to=\"https://api2.fri-gate.org/\"/></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\" f=\"FriendFinder.xml\"><securecookie host=\"^\\.friendfinder\\.com$\" 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 of WikiLeaks\" default_off=\"failed ruleset test\" f=\"Friends-of-WikiLeaks.xml\"><securecookie host=\"^wlfriends\\.org$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?wlfriends\\.org/\" to=\"https://wlfriends.org/\"/></ruleset>", "<ruleset name=\"Friendster (partial)\" 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\" default_off=\"failed ruleset test\" f=\"Fromorbit.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Frontier Network and Computing Systems\" 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 Linux\" default_off=\"mismatched, self-signed\" f=\"Frugalware_Linux.xml\"><securecookie host=\"^.+\\.frugalware\\.org$\" name=\".+\"/><rule from=\"^http://(?:((?:bugs|forums|webmail|wiki)\\.)|www\\.)?frugalware\\.org/\" to=\"https://$1frugalware.org/\"/></ruleset>", "<ruleset name=\"Fruit Ninja (partial)\" default_off=\"failed ruleset test\" f=\"Fruit_Ninja.xml\"><securecookie host=\"^store\\.fruitninja\\.com$\" name=\".+\"/><rule from=\"^http://store\\.fruitninja\\.com/\" to=\"https://store.fruitninja.com/\"/></ruleset>", "<ruleset name=\"Frys (mismatches)\" default_off=\"mismatch\" 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=\"fteproxy.org\" f=\"Fteproxy.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Fuck You Cash\" default_off=\"mismatch\" f=\"Fuck-You-Cash.xml\"><rule from=\"^http://join\\.fuckyoucash\\.com/\" to=\"https://join.fuckyoucash.com/\"/></ruleset>", "<ruleset name=\"Fuel Economy\" f=\"Fuel_Economy.xml\"><securecookie host=\"^www\\.fueleconomy\\.gov$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?fueleconomy\\.gov/\" to=\"https://www.fueleconomy.gov/\"/></ruleset>", "<ruleset name=\"fuelcdn.com\" f=\"Fuelcdn.com.xml\"><securecookie host=\"^\\.fuelcdn\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Fuerza Popular (partial)\" 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)\" default_off=\"failed ruleset test\" 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\" 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\" default_off=\"failed ruleset test\" 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://about\\.fundinfo\\.com/\" to=\"https://about.fundinfo.com/\"/></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://bugs\\.funtoo\\.org/\" to=\"https://bugs.funtoo.org/\"/></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\" default_off=\"failed ruleset test\" 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\" 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\" 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\" default_off=\"failed ruleset test\" 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=\"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)\" 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=\"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=\"Fuzzing-Project.org\" f=\"Fuzzing-Project.org.xml\"><securecookie host=\"^blog\\.fuzzing-project\\.org$\" name=\".+\"/><rule from=\"^http://((?:blog|crashes|www)\\.)?fuzzing-project\\.org/\" to=\"https://$1fuzzing-project.org/\"/></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=\"connection refused\" f=\"G-Central.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"G DATA Software (partial)\" 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=\"g10 Code (partial)\" default_off=\"mismatched, self-signed\" f=\"G10_Code.xml\"><rule from=\"^http://(?:www\\.)?g10code\\.com/\" to=\"https://g10code.com/\"/><rule from=\"^http://(bugs|kerckhoffs)\\.g10code\\.com/\" to=\"https://$1.g10code.com/\"/></ruleset>", "<ruleset name=\"G2 Crowd.com (partial)\" f=\"G2_Crowd.com.xml\"><securecookie host=\"^www\\.g2crowd\\.com$$\" 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\" default_off=\"failed ruleset test\" 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\" 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\" 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)\" 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)\" 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)\" f=\"GEANT.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GE Money\" f=\"GEMoney.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GENEVI.org (false MCB)\" platform=\"mixedcontent\" f=\"GENEVI.org-falsemixed.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GENEVI.org (partial)\" 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=\"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\" 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://kb\\.gfi\\.com/(?!resource/)\"/><securecookie host=\"^\\w\" name=\".\"/><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 (partial)\" default_off=\"broken\" f=\"GHacks.net.xml\"><rule from=\"^http://cdn\\.ghacks\\.net/\" to=\"https://ghacks-ghacks.netdna-ssl.com/\"/></ruleset>", "<ruleset name=\"GHash.IO\" 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)\" 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=\"GLAD (Gay &amp; Lesbian Advocates &amp; Defenders)\" platform=\"mixedcontent\" f=\"GLAD.xml\"><rule from=\"^http://(?:www\\.)?glad\\.org/\" to=\"https://www.glad.org/\"/><rule from=\"^http://([a-zA-Z0-9\\-]+)\\.glad\\.org/\" to=\"https://$1.glad.org/\"/></ruleset>", "<ruleset name=\"GLS Bank\" default_off=\"failed ruleset test\" f=\"GLS.de.xml\"><rule from=\"^http://(?:www\\.)?gls\\.de/\" to=\"https://www.gls.de/\"/><rule from=\"^http://gls\\.gls-service\\.de/\" to=\"https://gls.gls-service.de/\"/></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)\" 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)\"/><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\" f=\"GNU.io.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GNU.org (partial)\" f=\"GNU.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://(?:www\\.)?classpath\\.org/$\" to=\"https://www.gnu.org/software/classpath/\"/><rule from=\"^http://mail\\.gnu\\.org/\" to=\"https://lists.gnu.org/\"/><rule from=\"^http://sv\\.gnu\\.org/+\" to=\"https://savannah.gnu.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GNU.pl\" f=\"GNU.pl.xml\"><rule from=\"^http://gnu\\.pl/\" to=\"https://www.gnu.pl/\"/><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=\"GNUnet.org\" f=\"GNUnet.xml\"><securecookie host=\"^(?:.*\\.)?gnunet\\.org$\" name=\".+\"/><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\" 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)\" 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=\"GP2X.de (partial)\" default_off=\"Certificate mismatch\" f=\"GP2X.de.xml\"><rule from=\"^http://(?:www\\.)?gp2x\\.de/shop\" to=\"https://gp2x.de/shop\"/></ruleset>", "<ruleset name=\"GPFI\" default_off=\"failed ruleset test\" f=\"GPFI.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GPGTools.org (partial)\" f=\"GPGTools.xml\"><exclusion pattern=\"http://support\\.gpgtools\\.org/\"/><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)\" 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\"><rule from=\"^http://(?:www\\.)?(cvsweb\\.|forums\\.|pax\\.)?grsecurity\\.net/\" to=\"https://$1grsecurity.net/\"/><securecookie host=\"^\\.forums\\.grsecurity\\.net$\" name=\".*\"/></ruleset>", "<ruleset name=\"GR&#220;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)\" f=\"GSA.gov.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GSFC.org\" default_off=\"failed ruleset test\" f=\"GSFC.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GSI Commerce\" default_off=\"mismatch\" 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=\"GStreamer (partial)\" f=\"GStreamer.xml\"><rule from=\"^http://cdn\\.gstreamer\\.com/\" to=\"https://d2688lj8lursqz.cloudfront.net/\"/></ruleset>", "<ruleset name=\"GTC's Online\" 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=\"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=\"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\" 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=\"Galaxy Project.org (partial)\" f=\"Galaxy_Project.org.xml\"><rule from=\"^http://wiki\\.galaxyproject\\.org/\" to=\"https://wiki.galaxyproject.org/\"/></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\" 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\" 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://secure\\.gamblingcommission\\.gov\\.uk/\" to=\"https://secure.gamblingcommission.gov.uk/\"/></ruleset>", "<ruleset name=\"Gambling Portal Webmasters Association (partial)\" f=\"Gambling_Portal_Webmasters_Association.xml\"><rule from=\"^http://certify\\.gpwa\\.org/\" to=\"https://certify.gpwa.org/\"/></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://www\\.gamespot\\.com/\" to=\"https://www.gamespot.com/\"/></ruleset>", "<ruleset name=\"GameSpot (partial)\" f=\"GameSpot.xml\"><securecookie host=\"^\\.gamespot\\.com$\" name=\"^(?:AD_SESSION|ads_firstpg)$\"/><securecookie host=\"^(?:auth|us)\\.gamespot\\.com$\" 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\" 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=\"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=\"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 (partial)\" default_off=\"failed ruleset test\" f=\"Gametracker.com.xml\"><rule from=\"^http://(?:www\\.)?gametracker\\.com/\" to=\"https://www.gametracker.com/\"/><rule from=\"^http://image\\.www\\.gametracker\\.com/\" to=\"https://image.www.gametracker.com/\"/></ruleset>", "<ruleset name=\"Gamezebo\" default_off=\"failed ruleset test\" 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)\" 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\" default_off=\"failed ruleset test\" 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\" 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&amp;$3$4\"/><rule from=\"^http://uk\\.gandi\\.net/([^?#]*)(?:\\?([^#]+))?(#.*)?$\" to=\"https://www.gandi.net/$1?lang=en&amp;$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\" 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=\"Garoa.net\" default_off=\"failed ruleset test\" f=\"Garoa.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Garron.me\" f=\"Garron.me.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Garron.net\" f=\"Garron.net.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\\?(?:.+&amp;)?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)\" 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=\"mismatch\" 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=\"gavinhungry.com\" default_off=\"failed ruleset test\" f=\"Gavinhungry.com.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\" default_off=\"mismatched\" f=\"Gawker.xml\"><exclusion pattern=\"^http://help\\.gawker\\.com/(?!images/)\"/><securecookie host=\"^(?:.*\\.)?gawker\\.com$\" name=\".+\"/><rule from=\"^http://help\\.gawker\\.com/\" to=\"https://d3jyn100am7dxp.cloudfront.net/\"/><rule from=\"^http://cache\\.gawkerassets\\.com/\" to=\"https://cache.gawkerassets.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Gawkerassets.com (partial)\" f=\"Gawkerassets.com.xml\"><rule from=\"^http://img\\.gawkerassets\\.com/\" to=\"https://s3.amazonaws.com/img.gawkerassets.com/\"/></ruleset>", "<ruleset name=\"Gay180\" f=\"Gay180.xml\"><securecookie host=\"^\\.gay180\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GaySwap.com\" default_off=\"failed ruleset test\" f=\"GaySwap.com.xml\"><securecookie host=\"^(?:www\\.)?gayswap\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GayTorrents\" default_off=\"failed ruleset test\" 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=\"mismatch\" f=\"Gayakuman.xml\"><rule from=\"^http://(?:www\\.)?gayakuman\\.com/\" to=\"https://www.gayakuman.com/\"/></ruleset>", "<ruleset name=\"GeForce.com (partial)\" f=\"GeForce.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Geany.org (false MCB)\" platform=\"cacert mixedcontent\" 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 (mismatched)\" default_off=\"Certificate mismatch\" f=\"Geek.com-problematic.xml\"><securecookie host=\"^(?:.*\\.)?geek\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?geek\\.com/\" to=\"https://www.geek.com/\"/></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=\"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=\"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\" 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)\" 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=\"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=\"^hydra\\.geht\\.net$\" name=\".+\"/><rule from=\"^http://hydra\\.geht\\.net/\" to=\"https://hydra.geht.net/\"/></ruleset>", "<ruleset name=\"Geizhals.at\" f=\"Geizhals.at.xml\"><rule from=\"^http://(?:www\\.)?geizhals\\.at/\" to=\"https://geizhals.at/\"/><rule from=\"^http://(forum|gewinnspiel|unternehmen)\\.geizhals\\.at/\" to=\"https://$1.geizhals.at/\"/></ruleset>", "<ruleset name=\"Geizhals.de\" f=\"Geizhals.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Gem.co (partial)\" 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)\" f=\"Gemalto.com.xml\"><securecookie host=\"^(?:boutique|webstore)\\.gemalto\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Gemini.com\" f=\"Gemini.com.xml\"><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=\"^(?:\\.hit|www)\\.gemius\\.pl$\" name=\".+\"/><rule from=\"^http://gemius\\.pl/\" to=\"https://www.gemius.pl/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"G&#233;mklub\" 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\" f=\"GenGes.com.xml\"><securecookie host=\"^\\.genges\\.com$\" name=\".+\"/><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=\"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\" default_off=\"failed ruleset test\" f=\"Genesee_Photo_Systems.xml\"><securecookie host=\"^\\.(?:geneseephoto|okpartypix)\\.com$\" name=\".+\"/><rule from=\"^http://(www\\.)?(?:geneseephoto|okpartypix)\\.com/\" to=\"https://$1geneseephotos.com/\"/></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\" 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)\" f=\"Gentoo.xml\"><exclusion pattern=\"^http://(?:distfiles|forums-web1)\\.gentoo\\.org/\"/><securecookie host=\".*\\.gentoo\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GentooQuebec.org\" default_off=\"expired\" f=\"GentooQuebec.org.xml\"><securecookie host=\"^\\.?gentooquebec\\.org$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?gentooquebec\\.org/\" to=\"https://gentooquebec.org/\"/></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\" default_off=\"failed ruleset test\" f=\"GeoAmigo.xml\"><securecookie host=\"^(?:www\\.)?geoamigo\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GeoCoder.ca\" 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://(?:www\\.)?geoclub\\.de/+\" to=\"https://forum.geoclub.de/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GMU.edu (partial)\" 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)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Georgetown_University.xml\"><securecookie host=\"^(?:secure\\.alumni|campus|commons|eaplus|gle|gquads|gucms-mgmt|guevents|gushare|hoyalink|(?:mail|schedule|www)\\.law|(?:\\.?catalog|repository)\\.library|m|msb|myaccess|mydante-public|wiki\\.uis|uis-bboard-\\d|www[134])\\.georgetown\\.edu$\" name=\".+\"/><rule from=\"^http://((?:(?:secure\\.)?alumni|apps|campus|(?:media\\.|pilot\\.)?cndls|(?:blogs\\.|digital)?commons|eaplus|gdc|gle|gquads|gucms-(?:mgmt|ui)|guevents|gusa|gushare|hoyalink|itel|(?:autodiscover|legacy|mail|msb|schedule|www)\\.law|(?:(?:catalog|illiad|(?:login|www)\\.proxy|repository|resources|www)\\.)?library|m|mail|mobile|myaccess|mydante-public|netid-mgmt|pegasus|blog\\.provost|blog\\.sfs|signin|sites|wiki\\.uis|uis-bboard-\\d|www\\d?|www1[1235-9])\\.)?georgetown\\.edu/\" to=\"https://$1georgetown.edu/\"/><rule from=\"^http://www\\.(catalog\\.library|msb)\\.georgetown\\.edu/\" to=\"https://$1.georgetown.edu/\"/><rule from=\"^http://dante\\.georgetown\\.edu/\" to=\"https://blogs.commons.georgetown.edu/mydante/\"/><rule from=\"^http://digital\\.georgetown\\.edu/\" to=\"https://www.library.georgetown.edu/digital/\"/><rule from=\"^http://(?:researchguides\\.dml|guides\\.library)\\.georgetown\\.edu/(css\\d*|data|js)/\" to=\"https://libguides.com/$1/\"/><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/$1\"/><rule from=\"^http://www\\.ll\\.georgetown\\.edu/services/(\\?.*)?$\" to=\"https://www.law.georgetown.edu/library/about/services-policies/$1\"/><rule from=\"^http://www\\.ll\\.georgetown\\.edu/services/ill/(\\?.*)?$\" to=\"https://www.law.georgetown.edu/library/about/services-policies/interlibrary-loan.cfm$1\"/><rule from=\"^http://preparedness\\.georgetown\\.edu/[^\\?]*(\\?.*)?\" to=\"https://www.georgetown.edu/campus-life/safety-and-emergency-preparedness/$1\"/></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)\" 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\" f=\"Gephi.xml\"><securecookie host=\"^.+\\.gephi\\.org$\" name=\".+\"/><rule from=\"^http://((?:consortium|forum|marketplace|wiki|www)\\.)?gephi\\.org/\" to=\"https://$1gephi.org/\"/></ruleset>", "<ruleset name=\"Geraspora\" default_off=\"failed ruleset test\" f=\"Geraspora.xml\"><rule from=\"^http://(?:www\\.)?pod\\.geraspora\\.de/\" to=\"https://pod.geraspora.de/\"/></ruleset>", "<ruleset name=\"German Academic Exchange Service\" default_off=\"failed ruleset test\" 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\" default_off=\"failed ruleset test\" 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\" default_off=\"failed ruleset test\" f=\"German_Privacy_Foundation.xml\"><securecookie host=\"^(?:www\\.)?privacyfoundation\\.de$\" name=\".+\"/><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\" 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\" default_off=\"failed ruleset test\" 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=\"GetPersonas.com\" f=\"GetPersonas.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\" 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)\" 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 Fedora.org\" f=\"Get_Fedora.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 HTTPS for free.com\" f=\"Get_HTTPS_for_free.com.xml\"><securecookie host=\".\" name=\".\"/><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 Mango.com\" f=\"Get_Mango.com.xml\"><rule from=\"^http://((?:blog|developers|panel|status|www)\\.)?getmango\\.com/\" to=\"https://$1getmango.com/\"/></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 Pelican.com\" default_off=\"expired, mismatched\" platform=\"cacert mixedcontent\" f=\"Get_Pelican.com.xml\"><rule from=\"^http://((?:blog|docs|www)\\.)?getpelican\\.com/\" to=\"https://$1getpelican.com/\"/></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\" 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\" 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\"><securecookie host=\"^(www\\.|expo\\.|blog\\.|themes\\.)?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\" 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\" 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)\" 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=\"Getprice (partial)\" f=\"Getprice.xml\"><rule from=\"^http://secure\\.getprice\\.com\\.au/\" to=\"https://secure.getprice.com.au/\"/></ruleset>", "<ruleset name=\"Getsatisfaction.com (mismatches)\" default_off=\"expired, mismatched\" f=\"Getsatisfaction.com-mismatches.xml\"><rule from=\"^http://(blog|product)\\.getsatisfaction\\.com/\" to=\"https://$1.getsatisfaction.com/\"/></ruleset>", "<ruleset name=\"Getsatisfaction.com (partial)\" f=\"Getsatisfaction.com.xml\"><securecookie host=\"^\\.getsatisfaction\\.com$\" name=\".+\"/><rule from=\"^http://((?:assets\\d|education|info|www)\\.)?getsatisfaction\\.com/\" to=\"https://$1getsatisfaction.com/\"/></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://(contributors|e)\\.gettyimages\\.com/\" to=\"https://$1.gettyimages.com/\"/></ruleset>", "<ruleset name=\"Getty Images (partial)\" f=\"Getty_Images.xml\"><exclusion pattern=\"^http://www\\.gettyimages\\.(?:ae|at|be|ca|ch|co\\.(?:jp|nz|uk)|com\\.au|de|dk|es|fi|fr|i[ent]|nl|no|pt|se)/(?!cms/|CMS/|favicon\\.ico|[iI]mages/|jQuery/|scripts/|style/)\"/><securecookie host=\"^.+\\.gettyimages\\.com$\" name=\".+\"/><rule from=\"^http://(?:secure\\.|www\\.)?(stage-)?gettyimages\\.(ae|at|be|ca|ch|co\\.(?:jp|nz|uk)|com\\.au|de|dk|es|fi|fr|i[ent]|nl|no|pt|se)/\" to=\"https://secure.$1gettyimages.$2/\"/><rule from=\"^http://(?:cache|delivery)\\.gettyimages\\.com/\" to=\"https://delivery.gettyimages.com/\"/><rule from=\"^http://(api|assignments|autodiscover|callawaygolf|contribute|contributorsystems|developer|licensecompliance|mail|maildr|mixer|mm|remote|secure|upload)\\.gettyimages\\.com/\" to=\"https://$1.gettyimages.com/\"/></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://content\\.etilize\\.com/\" to=\"https://content.etilize.com/\"/></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=\"Ghostery.com\" f=\"Ghostery.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ghostery Enterprise.com\" 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\" default_off=\"self-signed\" f=\"GiNaC.de.xml\"><rule from=\"^http://www\\.ginac\\.de/\" to=\"https://www.ginac.de/\"/></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=\"Gifsauce\" default_off=\"Certificate mismatch\" f=\"Gifsauce.xml\"><rule from=\"^http://(?:www\\.)?gifsauce\\.us/\" to=\"https://gifsauce.us/\"/></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=\"gifyo.com (partial)\" default_off=\"400, expired, missing certificate chain\" f=\"Gifyo.xml\"><securecookie host=\"^(?:www\\.)?gifyo\\.com$\" 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\" f=\"GigaSize.xml\"><securecookie host=\"^(?:.*\\.)?gigasize\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Gigabyte.com (partial)\" f=\"Gigabyte.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><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://www\\.gigantti\\.fi/\" to=\"https://www.gigantti.fi/\"/></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\" default_off=\"failed ruleset test\" 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)\" 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\" 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=\"Ginkel.com (partial)\" f=\"Ginkel.com.xml\"><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://media10\\.giphy\\.com/\" to=\"https://giphygifs.s3.amazonaws.com/\"/><rule from=\"^http://www\\.giphy\\.com/\" to=\"https://giphy.com/\"/><rule from=\"^http://((?:api|i|media\\d*)\\.)?giphy\\.com/\" to=\"https://$1giphy.com/\"/></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\" 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://status\\.gitbook\\.io/\" to=\"https://githubio.statuspage.io/\"/></ruleset>", "<ruleset name=\"GitCafe.com (partial)\" f=\"GitCafe.xml\"><securecookie host=\"^www\\.gitcafe\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GitCop.com\" f=\"GitCop.com.xml\"><securecookie host=\"^gitcop\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GitLab.com (partial)\" f=\"GitLab.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GitHub Pages\" f=\"Github-Pages.xml\"><rule from=\"^http://([^/@:\\.]+)\\.github\\.io/\" to=\"https://$1.github.io/\"/></ruleset>", "<ruleset name=\"GitHub\" f=\"Github.xml\"><securecookie host=\"^(?:.*\\.)?github\\.com$\" name=\".+\"/><rule from=\"^http://github\\.io/\" to=\"https://pages.github.com/\"/><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\"><exclusion pattern=\"^http://(?:blog|en)\\.gitorious\\.org/\"/><exclusion pattern=\"^http://issues\\.gitorious\\.org/+(?!$|\\?)\"/><securecookie host=\".*\\.gitorious\\.org$\" name=\".+\"/><rule from=\"^http://issues\\.gitorious\\.org/+(?=$|\\?)\" to=\"https://gitorious.org/projects/gitorious/issues\"/><rule from=\"^http://status\\.gitorious\\.org/\" to=\"https://gitorious-status.herokuapp.com/\"/><rule from=\"^http://([^/:@\\.]+\\.)?gitorious\\.org/\" to=\"https://$1gitorious.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=\"^(?:billing|developer|irc)\\.gitter\\.im$\" 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\" 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\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Gizmag (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/\"/></ruleset>", "<ruleset name=\"Gizmodo.com\" default_off=\"mismatched\" f=\"Gizmodo.com.xml\"><securecookie host=\"^(?:\\.|www\\.)?gizmodo\\.com$\" name=\".+\"/><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)\" 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)\" f=\"Glasgow.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Glass Craft &amp; Bead Expo\" f=\"Glass-Craft-and-Bead-Expo.xml\"><rule from=\"^http://(?:www\\.)?glasscraftexpo\\.com/\" to=\"https://www.glasscraftexpo.com/\"/></ruleset>", "<ruleset name=\"Glassdoor (partial)\" f=\"Glassdoor.xml\"><exclusion pattern=\"^http://(?:www\\.)?glassdoor\\.c(?:a|om|om\\.au|o\\.in|o\\.uk)/(?!images/|profile/)\"/><securecookie host=\"^static\\.glassdoor\\.com$\" name=\".+\"/><rule from=\"^http://(media\\.|static\\.|www\\.)?glassdoor\\.com/\" to=\"https://$1glassdoor.com/\"/><rule from=\"^http://ads\\.glassdoor\\.com/\" to=\"https://d3uryx0fdgatve.cloudfront.net/\"/><rule from=\"^http://glassdoor\\.c(a|om\\.au|o\\.in|o\\.uk)/\" to=\"https://www.glassdoor.c$1/\"/><rule from=\"^http://(static|www)\\.glassdoor\\.c(a|om\\.au|o\\.in|o\\.uk)/\" to=\"https://$1.glassdoor.c$2/\"/></ruleset>", "<ruleset name=\"Glasses.com (partial)\" 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://s\\.glbimg\\.com/\" to=\"https://s.glbimg.com/\"/></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://ads\\.glispa\\.com/\" to=\"https://ads.glispa.com/\"/></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)\" 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=\"connection dropped\" 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\" default_off=\"failed ruleset test\" f=\"GlobalTestSupply.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 Amici\" default_off=\"expired\" f=\"Global_Amici.xml\"><securecookie host=\"^\\.globalamicistore\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?globalamicistore\\.com/\" to=\"https://www.globalamicistore.com/\"/></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)\" 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\" 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\" 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://store\\.globalresearch\\.ca/\" to=\"https://store.globalresearch.ca/\"/></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\" 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\" 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\" default_off=\"failed ruleset test\" 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=\"TheGlobeAndMail (cert warning)\" default_off=\"akamai\" f=\"GlobeAndMail.xml\"><rule from=\"^http://(?:www\\.)?theglobeandmail\\.com/\" to=\"https://www.theglobeandmail.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=\"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)\" 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=\"Gluster.org\" 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\" 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&#225;zium Maty&#225;&#353;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=\"failed ruleset test\" 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=\"Gnosis Software\" default_off=\"Certificate mismatch\" f=\"Gnosis-Software.xml\"><rule from=\"^http://(?:www\\.)?gnosis\\.cx/\" to=\"https://gnosis.cx/\"/></ruleset>", "<ruleset name=\"GnuPG.org (self-signed)\" default_off=\"self-signed\" f=\"GnuPG.org-problematic.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GnuPG.org (partial)\" 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=\"connection 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)\" f=\"GoDaddy.xml\"><securecookie host=\"^(?:.*\\.)?godaddy\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GoDaddy mobile.com (partial)\" 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\" default_off=\"failed ruleset test\" f=\"GoEmerchant.xml\"><securecookie host=\"^(?:secure)\\.gomerchant\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GoExplore.net\" 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\" default_off=\"failed ruleset test\" 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\" 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=\"GodPraksis.no\" 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\" 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://gbot\\.me/\" to=\"https://bit.ly/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"gogoyoko.com (partial)\" default_off=\"connection dropped\" 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=\"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)\" f=\"Golden_Frog.com.xml\"><securecookie host=\"^www\\.goldenfrog\\.com$\" name=\".+\"/><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\" 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\" f=\"Golem.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GolfLink.com (partial)\" default_off=\"failed ruleset test\" 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=\"Golf Digest (partial)\" f=\"Golf_Digest.xml\"><exclusion pattern=\"^http://(?:www\\.)?golfdigest\\.com/(?!css/|images/|favicon\\.ico$|sandbox/)\"/><securecookie host=\"^www\\.golfdigestinsiders\\.com$\" name=\".+\"/><rule from=\"^http://(?:secure\\.|www\\.)?golfdigest\\.com/\" to=\"https://secure.golfdigest.com/\"/><rule from=\"^http://subscribe\\.golfdigest\\.com/\" to=\"https://subscribe.golfdigest.com/\"/><rule from=\"^http://(www\\.)?golfdigestinsiders\\.com/\" to=\"https://$1golfdigestinsiders.com/\"/></ruleset>", "<ruleset name=\"Gondor\" f=\"Gondor.xml\"><securecookie host=\".+\\.gondor\\.co$\" name=\".+\"/><securecookie host=\"^gondor\\.io$\" name=\".+\"/><rule from=\"^http://([\\w-]+)\\.gondor\\.co/\" to=\"https://$1.gondor.co/\"/><rule from=\"^http://(www\\.)?gondor\\.io/\" to=\"https://$1gondor.io/\"/></ruleset>", "<ruleset name=\"Goo.im\" default_off=\"expired\" f=\"Goo.im.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Good.net\" default_off=\"failed ruleset test\" f=\"Good.net.xml\"><exclusion pattern=\"^http://www\\.good\\.net/\"/><rule from=\"^http://([^/]+)/\" to=\"https://$1/\"/></ruleset>", "<ruleset name=\"GoodCrypto.com\" f=\"GoodCrypto.com.xml\"><securecookie host=\"^(?:www\\.)?goodcrypto\\.com$\" name=\".+\"/><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=\"mismatches\" 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\" 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[0-9]\\.google\\.com/ocsp\"/><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)\\.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)\\.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\"/><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/\"/><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\" 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/\"/><rule from=\"^http://([\\w-]+\\.)?googlesource\\.com/\" to=\"https://$1googlesource.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 Translate (broken)\" default_off=\"redirect loops\" f=\"GoogleTranslate.xml\"><rule from=\"^http://translate\\.googleapis\\.com/\" to=\"https://translate.googleapis.com/\"/><rule from=\"^http://translate\\.google\\.com/\" to=\"https://translate.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&amp;\"/><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&amp;\"/><rule from=\"^http://(?:www\\.)?google\\.(?:at|ch|de)/videohp\\?\" to=\"https://www.google.com/videohp?hl=de&amp;\"/><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&amp;\"/><rule from=\"^http://(?:www\\.)?google\\.com?\\.(id|th|tr)/videohp\\?\" to=\"https://www.google.com/videohp?hl=$1&amp;\"/><rule from=\"^http://(?:www\\.)?google\\.com\\.il/videohp\\?\" to=\"https://www.google.com/videohp?hl=he&amp;\"/><rule from=\"^http://(?:www\\.)?google\\.com\\.kr/videohp\\?\" to=\"https://www.google.com/videohp?hl=ko&amp;\"/><rule from=\"^http://(?:www\\.)?google\\.com\\.kz/videohp\\?\" to=\"https://www.google.com/videohp?hl=kk&amp;\"/><rule from=\"^http://(?:www\\.)?google\\.com\\.jp/videohp\\?\" to=\"https://www.google.com/videohp?hl=ja&amp;\"/><rule from=\"^http://(?:www\\.)?google\\.com\\.vn/videohp\\?\" to=\"https://www.google.com/videohp?hl=vi&amp;\"/><rule from=\"^http://(?:www\\.)?google\\.com\\.br/videohp\\?\" to=\"https://www.google.com/videohp?hl=pt-BR&amp;\"/><rule from=\"^http://(?:www\\.)?google\\.se/videohp\\?\" to=\"https://www.google.com/videohp?hl=sv&amp;\"/><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/\"/><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\" default_off=\"failed ruleset test\" 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=\"mismatch\" 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=\"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\" f=\"Gov_Waste.co.uk.xml\"><securecookie host=\"^\\.govwaste\\.co\\.uk$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GSN Magazine.com (partial)\" default_off=\"failed ruleset test\" f=\"Government-Security-News.xml\"><exclusion pattern=\"^http://www\\.gsnmagazine\\.com/user/register(?:$|\\?)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GCHQ.gov.uk\" default_off=\"broken\" f=\"Government_Communications_Headquarters.xml\"><rule from=\"^http://gchq\\.gov\\.uk/\" to=\"https://www.gchq.gov.uk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Governmentattic.org\" default_off=\"mismatch\" f=\"Governmentattic.org.xml\"><rule from=\"^http://(?:www\\.)?governmentattic\\.org/\" to=\"https://governmentattic.org/\"/></ruleset>", "<ruleset name=\"Governo Portugu&#234;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\" default_off=\"self-signed\" 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\" 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=\"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=\"Grams flow.com\" f=\"Grams_flow.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></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\" default_off=\"failed ruleset test\" 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\" 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\" f=\"Graphene-lda.com.xml\"><securecookie host=\"^\\.graphene-lda\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Grassroots.org (mismatches)\" default_off=\"mismatch\" 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\" default_off=\"mismatch, self-signed\" f=\"GratiSoft.us.xml\"><rule from=\"^http://(?:www\\.)?courtesan\\.com/\" to=\"https://www.courtesan.com/\"/><rule from=\"^http://(?:www\\.)?gratisoft\\.us/\" to=\"https://www.gratisoft.us/\"/><rule from=\"^http://(?:www\\.)?(mktemp|newsyslog)\\.org/\" to=\"https://www.gratisoft.us/$1/\"/><rule from=\"^http://(?:www\\.)?sudo\\.ws/pipermail/\" to=\"https://www.gratisoft.us/pipermail/\"/><rule from=\"^http://(?:www\\.)?sudo\\.ws/\" to=\"https://www.gratisoft.us/sudo/\"/></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 (mismatches)\" default_off=\"expired, mismatched\" f=\"Gravity-mismatches.xml\"><rule from=\"^http://gravity\\.com/\" to=\"https://www.gravity.com/\"/><rule from=\"^http://cdn\\.insights\\.gravity\\.com/\" to=\"https://cdn.insights.gravity.com/\"/><rule from=\"^http://i\\.grvcdn\\.com/gravity\\.com/\" to=\"https://www.gravity.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Gravity.com (partial)\" f=\"Gravity.xml\"><securecookie host=\"^(?:analytics)?\\.gravity\\.com$\" name=\".+\"/><rule from=\"^http://insights\\.gravity\\.com/\" to=\"https://analytics.gravity.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Gravity4.com (partial)\" 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=\"GreatFire.org\" f=\"GreatFire.org.xml\"><securecookie host=\"^(?:(?:en|www|zh)?\\.)?greatfire\\.org$\" name=\".*\"/><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)\" default_off=\"failed ruleset test\" f=\"Greatnet.de.xml\"><securecookie host=\"^www\\.greatnet\\.de$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Greatnonprofits.org (partial)\" f=\"Greatnonprofits.org.xml\"><exclusion pattern=\"^http://api\\.greatnonprofits\\.org/+(?!whitelabel/reviews/[\\w-]+(?:$|\\?))\"/><securecookie host=\"^greatnonprofits\\.org$\" name=\".+\"/><rule from=\"^http://(?:api\\.|(www\\.))?greatnonprofits\\.org/\" to=\"https://$1greatnonprofits.org/\"/><rule from=\"^http://(?:cdn|static)\\.greatnonprofits\\.org/\" to=\"https://static.greatnonprofits.org/\"/></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\"><securecookie host=\"^(?:.*\\.)?aegeanair\\.com$\" name=\".*\"/><rule from=\"^http://(\\w+\\.)?aegeanair\\.com/\" to=\"https://$1aegeanair.com/\"/></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\\.)?pirateparty\\.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\\.)?skytal\\.es$\" 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\\.)?pirateparty\\.gr/\" to=\"https://$1pirateparty.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\\.)?skytal\\.es/\" to=\"https://$1skytal.es/\"/><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=\"GreenIT-BB (mismatches)\" default_off=\"mismatch\" 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\" 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)\" default_off=\"failed ruleset test\" 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=\"^(?:.*\\.)?greenparty\\.org\\.uk$\" 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)\" default_off=\"failed ruleset test\" f=\"Greenbone.xml\"><rule from=\"^http://support\\.greenbone\\.net/\" to=\"https://support.greenbone.net/\"/></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)\" 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\" default_off=\"failed ruleset test\" 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=\"Grepular.com\" f=\"Grepular.xml\"><rule from=\"^http://secure\\.grepular\\.com/\" to=\"https://grepular.com/\"/><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)\" 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=\"Grilling is Happiness.com\" default_off=\"failed ruleset test\" f=\"Grilling_is_Happiness.com.xml\"><securecookie host=\"^(?:w*\\.)?grillingishappiness\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></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.io\" default_off=\"expired\" f=\"Grit.io.xml\"><rule from=\"^http:\" to=\"https:\"/></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\" default_off=\"failed ruleset test\" f=\"GroupLogic.xml\"><securecookie host=\"^www\\.grouplogic\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?grouplogic\\.com/\" to=\"https://www.grouplogic.com/\"/></ruleset>", "<ruleset name=\"GroupMe.com (partial)\" f=\"GroupMe.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Groupees.com\" f=\"Groupees.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Grouper Social Club.com\" 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\" f=\"Groupon.com.br.xml\"><securecookie host=\"^(?:www)?\\.groupon\\.com\\.br$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Groupon.com (partial)\" f=\"Groupon.com.xml\"><securecookie host=\"^(?:merchants|touch|www)\\.groupon\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Groupon.gr\" f=\"Groupon.gr.xml\"><securecookie host=\"^(?:.*\\.)?groupon\\.gr$\" name=\".*\"/><rule from=\"^http://(\\w+\\.)?groupon\\.gr/\" to=\"https://$1groupon.gr/\"/></ruleset>", "<ruleset name=\"Groupon.se\" 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\" 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\" 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\" f=\"Grove.io.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Grow HQ.com\" 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&#243;n\" default_off=\"mismatch\" 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 (partial)\" f=\"GrvCDN.com.xml\"><rule from=\"^http://i\\.api\\.grvcdn\\.com/\" to=\"https://api.gravity.com/\"/><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=\"Gsmhosting.com\" f=\"Gsmhosting.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"gtimg.cn (partial)\" f=\"Gtimg.cn.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://i\\.gtimg\\.cn/\" to=\"https://imgcache.gtimg.cn/\"/><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=\"failed ruleset test\" 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)\" 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)\" 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\" 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)\" 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=\"connection dropped\" 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)\" 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)\" 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\" f=\"Guldencoin.com.xml\"><securecookie host=\"^\\.guldencoin\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Gulesider\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" 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=\"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\" default_off=\"failed ruleset test\" 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=\"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=\"^(?:w*\\.)?guttmacher\\.org$\" name=\".+\"/><rule from=\"^http://gu\\.tt/\" to=\"https://bit.ly/\"/><rule from=\"^http://(www\\.)?guttmacher\\.org/\" to=\"https://$1guttmacher.org/\"/></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\" 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\"><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\" 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\" 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)\" 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=\"HBoeck.de\" f=\"HBoeck.xml\"><securecookie host=\"^(?:blog\\.)?hboeck\\.de$\" name=\".+\"/><rule from=\"^http://((?:blog|ssl|[\\w-]+\\.ssl|svn|www)\\.)?hboeck\\.de/\" to=\"https://$1hboeck.de/\"/></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\" default_off=\"failed ruleset test\" 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\" 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://www\\.hdserviceproviders\\.com/\" to=\"https://www.hdserviceproviders.com/\"/></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=\"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 (partial)\" f=\"HH.ru.xml\"><exclusion pattern=\"^http://(?:www\\.)?hh\\.ru/+(?!favicon\\.ico|file/|icms/)\"/><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=\"HHS.gov (partial)\" f=\"HHS.gov.xml\"><securecookie host=\"^\\.\" name=\"^_gat?$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://thinkculturalhealth\\.hhs\\.gov/\" to=\"https://www.thinkculturalhealth.hhs.gov/\"/><rule from=\"^http:\" to=\"https:\"/></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\" f=\"HHid.ru.xml\"><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\" 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=\"HKEdCity (partial)\" f=\"HKEdCity.xml\"><rule from=\"^http://(?:www\\.)?hkedcity\\.net/\" to=\"https://www.hkedcity.net/\"/></ruleset>", "<ruleset name=\"Agriculture, Fisheries and Conservation Department\" f=\"HKGov-AFCD.xml\"><rule from=\"^http://(?:www\\.)?afcd\\.gov\\.hk/\" to=\"https://www.afcd.gov.hk/\"/></ruleset>", "<ruleset name=\"Architectural Services Department\" f=\"HKGov-ArchSD.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=\"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)\" 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)\" 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)\" 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\" 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\" 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://js\\.hs-analytics\\.net/\" to=\"https://js.hs-analytics.net/\"/></ruleset>", "<ruleset name=\"HSBC\" default_off=\"failed ruleset test\" f=\"HSBC.xml\"><securecookie host=\"^(?:.*\\.)?hsbc\\..*$\" name=\".+\"/><securecookie host=\"^(?:.*\\.)?firstdirect\\.com$\" name=\".+\"/><exclusion pattern=\"^http://www\\.hangseng\\.com/\"/><exclusion pattern=\"^http://www\\.hfcbank\\.co\\.uk/\"/><exclusion pattern=\"^http://www\\.hsbc\\.cz/\"/><exclusion pattern=\"^http://www\\.hsbc\\.ge/\"/><exclusion pattern=\"^http://www\\.hsbc\\.ie/\"/><exclusion pattern=\"^http://www\\.hsbc\\.co\\.id/\"/><exclusion pattern=\"^http://www\\.hsbc\\.co\\.pa/\"/><exclusion pattern=\"^http://www\\.hsbc\\.co\\.za/\"/><exclusion pattern=\"^http://www\\.kuwait\\.hsbc\\.com/\"/><exclusion pattern=\"^http://www\\.hsbc\\.co\\.nz/\"/><exclusion pattern=\"^http://www\\.hsbc\\.com\\.tr/\"/><exclusion pattern=\"^http://www\\.hsbc\\.com\\.uy/\"/><rule from=\"^http://(?:www\\.)?hsbc\\.([^/:@]+)/\" to=\"https://www.hsbc.$1/\"/><rule from=\"^http://([^/:@]+)?\\.hsbc\\.co\\.uk/\" to=\"https://$1.hsbc.co.uk/\"/><rule from=\"^http://firstdirect\\.com/\" to=\"https://www.firstdirect.com/\"/><rule from=\"^http://([^/:@]+)?\\.firstdirect\\.com/\" to=\"https://$1.firstdirect.com/\"/><rule from=\"^http://(?:www\\.)?hsbctrinkaus\\.de/\" to=\"https://www.hsbctrinkaus.de/\"/><rule from=\"^http://(?:www\\.)?sabb\\.com/\" to=\"https://www.sabb.com/\"/><rule from=\"^http://(?:www\\.)?firstdirect\\.com/\" to=\"https://www.firstdirect.com/\"/><rule from=\"^http://www\\.business\\.hsbc\\.co\\.uk/\" to=\"https://www.business.hsbc.co.uk/\"/><rule from=\"^http://(?:www\\.)?us\\.hsbc\\.com/\" to=\"https://www.us.hsbc.com/\"/></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://static\\.hsstatic\\.net/\" to=\"https://static.hsstatic.net/\"/></ruleset>", "<ruleset name=\"HTC\" default_off=\"displays error message\" f=\"HTC.xml\"><rule from=\"^http://(?:www\\.)?htc\\.com/\" to=\"https://www.htc.com/\"/></ruleset>", "<ruleset name=\"HTML5 Rocks\" default_off=\"handshake failure\" f=\"HTML5-Rocks.xml\"><rule from=\"^http://(?:www\\.)?html5rocks\\.com/\" to=\"https://www.html5rocks.com/\"/></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 (false MCB)\" platform=\"mixedcontent\" f=\"HTML5Video.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"HTML5test.com\" f=\"HTML5test.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"HTTPSWatch.com\" f=\"HTTPSWatch.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"HTTPSWatch.nz\" f=\"HTTPSWatch.nz.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"HTTP Security Report.com\" f=\"HTTP_Security_Report.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"HTTPwatch.com\" f=\"HTTPwatch.com.xml\"><rule from=\"^http://httpwatch\\.com/\" to=\"https://www.httpwatch.com/\"/><rule from=\"^http://(blog|www)\\.httpwatch\\.com/\" to=\"https://$1.httpwatch.com/\"/></ruleset>", "<ruleset name=\"HTW-Berlin.de (partial)\" 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=\"HTWK-Leipzig\" f=\"HTWK-Leipzig.xml\"><rule from=\"^http://htwk-leipzig\\.de/\" to=\"https://www.htwk-leipzig.de/\"/><rule from=\"^http:\" to=\"https:\"/></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=\"HVG Kiad&#243; Zrt.\" f=\"HVGKonyvek.xml\"><securecookie host=\"^www\\.hvgkonyvek\\.hu$\" name=\".*\"/><rule from=\"^http://www\\.hvgkonyvek\\.hu/\" to=\"https://www.hvgkonyvek.hu/\"/></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=\"H Sivonen.fi\" f=\"H_Sivonen.fi.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"HaCoder.com (false MCB)\" platform=\"mixedcontent\" 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.se (mismatches)\" default_off=\"mismatch\" platform=\"cacert\" f=\"Habets.se-mismatches.xml\"><rule from=\"^http://(?:www\\.)?habets(\\.pp)?\\.se/\" to=\"https://habets$1.se/\"/></ruleset>", "<ruleset name=\"habets.se (partial)\" platform=\"cacert\" f=\"Habets.se.xml\"><securecookie host=\"^blog\\.habets(?:\\.pp)?\\.se$\" name=\".*\"/><rule from=\"^http://(blog|cdn)\\.habets(\\.pp)?\\.se/\" to=\"https://$1.habets$2.se/\"/></ruleset>", "<ruleset name=\"habpl.us\" 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)\" 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\" default_off=\"self-signed\" f=\"HackLab.to.xml\"><rule from=\"^http://(?:www\\.)?hacklab\\.to/\" to=\"https://hacklab.to/\"/></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=\"hackable-devices.org\" f=\"Hackable-devices.org.xml\"><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\" f=\"Hackademix.net.xml\"><securecookie host=\"^www\\.hackademix\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hacker Factor (partial)\" default_off=\"self-signed\" f=\"Hacker-Factor.xml\"><rule from=\"^http://(?:www\\.)?fotoforensics\\.com/\" to=\"https://fotoforensics.com/\"/></ruleset>", "<ruleset name=\"Y Combinator.com\" f=\"HackerNews.xml\"><securecookie host=\"^(?:.*\\.)?ycombinator\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"HackerOne.com\" f=\"HackerOne.com.xml\"><securecookie host=\"^\\.hackerone(?:-user-content)?\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"HackerRank.com\" default_off=\"failed ruleset test\" 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\" 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\" f=\"Hackerspace.pl.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"hackerspaces.nl (false MCB)\" default_off=\"expired\" platform=\"mixedcontent\" f=\"Hackerspaces.nl.xml\"><rule from=\"^http://(?:www\\.)?hackerspaces\\.nl/\" to=\"https://hackerspaces.nl/\"/></ruleset>", "<ruleset name=\"Hackerspaces\" default_off=\"self-signed\" f=\"Hackerspaces.xml\"><securecookie host=\"^hackerspaces\\.org$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?hackerspaces\\.org/\" to=\"https://hackerspaces.org/\"/></ruleset>", "<ruleset name=\"Hackforums.net (mixed content)\" platform=\"mixedcontent\" f=\"Hackforums.net.xml\"><rule from=\"^http://(?:www\\.)?hackforums\\.net/\" to=\"https://www.hackforums.net/\"/></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\" platform=\"cacert\" f=\"Hackover.de.xml\"><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\" f=\"Hackthe.computer.xml\"><rule from=\"^http://www\\.hackthe\\.computer/\" to=\"https://hackthe.computer/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"HacktionLab.org\" f=\"HacktionLab.org.xml\"><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\" 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\" default_off=\"failed ruleset test\" 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\" default_off=\"failed ruleset test\" 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=\"halo123 (partial)\" f=\"Halo123.xml\"><rule from=\"^http://user\\.hao123\\.com/\" to=\"https://user.hao123.com/\"/></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=\"mismatch\" f=\"Hamppu.net.xml\"><rule from=\"^http://(?:www\\.)?hamppu\\.net/\" to=\"https://hamppu.net/\"/></ruleset>", "<ruleset name=\"Hamradio.com\" 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=\"^trac\\.handbrake\\.fr$\" name=\".+\"/><rule from=\"^http://((?:forum|trac|www)\\.)?handbrake\\.fr/\" to=\"https://$1handbrake.fr/\"/></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://(?:www\\.)?handelsblatt\\.com/images/\" to=\"https://www.handelsblatt.com/images/\"/><rule from=\"^http://abo\\.handelsblatt\\.com/\" to=\"https://abo.handelsblatt.com/\"/><rule from=\"^http://staticef[12]\\.handelsblatt\\.com/\" to=\"https://d21rxpf5vn0rru.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Handelsregister.de\" 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\" platform=\"cacert\" f=\"Hands.com.xml\"><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&amp;url=http://www.mondiamedia.com%3FL%3D0%26redirect_from%3Dhandy.de&amp;lnkname=handy&amp;$1\"/><rule from=\"^http://(?:www\\.)?handy\\.de/.*\" to=\"https://www.etracker.de/lnkcnt.php?et=kbglnx&amp;url=http://www.mondiamedia.com%3FL%3D0%26redirect_from%3Dhandy.de&amp;lnkname=handy\"/><rule from=\"^http://img\\.handy\\.de/\" to=\"https://i.arvm.de/\"/></ruleset>", "<ruleset name=\"Hanford.gov\" default_off=\"connection dropped\" f=\"Hanford_Site.xml\"><securecookie host=\"^(?:www\\.)?hanford\\.gov$\" name=\".+\"/><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)\" f=\"Hants.gov.uk.xml\"><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 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\" f=\"Happyassassin.net.xml\"><securecookie host=\"^(?:mail\\.|www\\.)?happyassassin\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Harakahdaily (partial)\" default_off=\"failed ruleset test\" 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)\" 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)\" default_off=\"failed ruleset test\" f=\"Harris-Interactive.xml\"><rule from=\"^http://www1\\.pollg\\.com/\" to=\"https://www1.pollg.com/\"/></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\" default_off=\"failed ruleset test\" 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=\"expired, missing certificate chain, self-signed\" 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\\.pin1|secure\\.post|www\\.seas)\\.harvard\\.edu$\" name=\".+\"/><rule from=\"^http://(berkman|hsph|pin|saas)\\.harvard\\.edu/\" to=\"https://www.$1.harvard.edu/\"/><rule from=\"^http://media\\.campaign\\.harvard\\.edu/\" to=\"https://dlv9ibhjf3gu3.cloudfront.net/\"/><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://www\\.pin\\.harvard\\.edu/(?:$|\\?.*)\" to=\"https://www.pin.harvard.edu/home.shtml\"/><rule from=\"^http://media\\.www\\.harvard\\.edu/\" to=\"https://d2i28rwvea3z9u.cloudfront.net/\"/><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=\"^signup\\.hasoffers\\.com$\" name=\".+\"/><rule from=\"^http://media\\.go2app\\.org/\" to=\"https://media.go2app.org/\"/><rule from=\"^http://signup\\.hasoffers\\.com/\" to=\"https://signup.hasoffers.com/\"/></ruleset>", "<ruleset name=\"Haschek.at (partial)\" f=\"Haschek.at.xml\"><rule from=\"^http://blog\\.haschek\\.at/\" to=\"https://blog.haschek.at/\"/></ruleset>", "<ruleset name=\"HashTalk.org\" default_off=\"connection refused\" f=\"HashTalk.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hashbang.ca\" 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=\"HashiCorp.com\" f=\"HashiCorp.com.xml\"><securecookie host=\"^\\.hashicorp\\.com$\" 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/\"/></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\" 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)\" f=\"Havering.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hawaii.gov (partial)\" default_off=\"failed ruleset test\" 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)\" f=\"Hbz.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\" default_off=\"failed ruleset test\" 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=\"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\" f=\"Healthcare.gov.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Healthcare Staff Benefits\" default_off=\"failed ruleset test\" 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=\"^heapanalytics\\.com$\" 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 2 Heart\" default_off=\"expired, mismatch, self-signed\" f=\"Heart-2-Heart.xml\"><rule from=\"^http://(?:www\\.)?heart-2-heart\\.ca/\" to=\"https://heart-2-heart.ca/\"/></ruleset>", "<ruleset name=\"Heart.org (partial)\" default_off=\"failed ruleset test\" 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=\"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\" 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=\"Heidelberg.de\" f=\"Heidelberg.de.xml\"><rule from=\"^http://heidelberg\\.de/\" to=\"https://www.heidelberg.de/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Heifer.org\" 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=\"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 (partial)\" f=\"Heise.de.xml\"><exclusion pattern=\"^http://(?:www\\.)?heise\\.de/(?![ai]vw-bin/|favicon\\.ico|foto/icons/|icons/|ix/images/|imgs/|js/|security/icons/|software/screenshots/|stil/|security/dienste/portscan/test/go\\.shtml|support/lib/)\"/><exclusion pattern=\"^http://www\\.heise\\.de/js/foto/galerie/angularjs/partials/ngDialog.inc\"/><exclusion pattern=\"^http://www\\.heise\\.de/js/foto/galerie/angularjs/partials/photo/diashow.html\"/><exclusion pattern=\"^http://www\\.heise\\.de/js/ho/jwplayer-6.10/skin/\"/><rule from=\"^http://m\\.heise\\.de/(js/|icons/|[ai]vw-bin/|security/icons/|stil/|fonts/)\" to=\"https://m.heise.de/$1\"/><rule from=\"^http://heise\\.de/\" to=\"https://www.heise.de/\"/><rule from=\"^http://www\\.shop\\.heise\\.de/\" to=\"https://shop.heise.de/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Heise shop.de (partial)\" f=\"Heise_shop.de.xml\"><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)\" 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\" 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)\" default_off=\"failed ruleset test\" f=\"Helsinki.xml\"><rule from=\"^http://asiointi\\.hel\\.fi/\" to=\"https://asiointi.hel.fi/\"/></ruleset>", "<ruleset name=\"Hemk.es (partial)\" default_off=\"untrusted root\" f=\"Hemk.es.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Heml.is\" 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\" 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\" 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 (partial)\" f=\"Here.com.xml\"><securecookie host=\"^(?:.*\\.)?here\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Herefordshire.gov.uk (partial)\" 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\" f=\"HeroX.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hero Up.com\" 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\" f=\"Hertsdirect.org-falsemixed.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"hertsdirect.org (partial)\" 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\" f=\"Hertz-Australia.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hertz Austria\" 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\" 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\" f=\"Hertz-Canada.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hertz China\" f=\"Hertz-China.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hertz Croatia\" f=\"Hertz-Croatia.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hertz Finland\" 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\" f=\"Hertz-Germany.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hertz Hong Kong\" 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\" f=\"Hertz-Indonesia.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hertz Ireland\" f=\"Hertz-Ireland.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hertz Italy\" 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\" f=\"Hertz-Kuwait.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hertz Netherlands\" f=\"Hertz-Netherlands.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hertz New Zealand\" f=\"Hertz-New-Zealand.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hertz Norway\" 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\" f=\"Hertz-Portugal.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hertz Qatar\" 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\" f=\"Hertz-South-Korea.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hertz Spain\" f=\"Hertz-Spain.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hertz Sweden\" f=\"Hertz-Sweden.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hertz Switzerland\" f=\"Hertz-Switzerland.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hertz Taiwan\" 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\" f=\"Hertz-UAE.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hertz UK\" f=\"Hertz-UK.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hertz US\" f=\"Hertz-US.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hesapla Bakalim.com\" 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=\"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=\"Hewlett-Packard Company (mismatches)\" default_off=\"mismatch\" 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&amp;LOGIN_PASSWORD=test.passw0rd\"/></ruleset>", "<ruleset name=\"Hexplo.it\" 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=\"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)\" 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\" default_off=\"failed ruleset test\" f=\"Hiawatha-webserver.org.xml\"><rule from=\"^http://(www\\.)?hiawatha-webserver\\.org/\" to=\"https://$1hiawatah-webserver.org/\"/></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\" 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://shibboleth\\.highwire\\.org/\" to=\"https://shibboleth.highwire.org/\"/></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\"><exclusion pattern=\"^http://code\\.highcharts\\.com/+(?![\\d.]+/modules/)\"/><securecookie host=\"^\\.highcharts\\.com$\" name=\"^__cfduid$\"/><securecookie host=\"^(?:cloud|\\.shop)\\.highcharts\\.com$\" name=\".+\"/><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\" f=\"Highwebmedia.com.xml\"><exclusion pattern=\"^http://ssl-ccstatic\\.highwebmedia\\.com/$\"/><securecookie host=\"^\\.highwebmedia\\.com$\" 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)\" 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=\"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\" default_off=\"failed ruleset test\" f=\"Hipmunk.com.xml\"><securecookie host=\"^(?:www)?\\.hipmunk\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"History.com (mismatches)\" default_off=\"mismatch\" f=\"History.com-mismatches.xml\"><rule from=\"^http://(?:www\\.)?history\\.com/\" to=\"https://www.history.com/\"/></ruleset>", "<ruleset name=\"History.com (partial)\" f=\"History.com.xml\"><securecookie host=\"^.*\\.history\\.com$\" name=\".*\"/><rule from=\"^http://s(?:ecure|shop)\\.history\\.com/\" to=\"https://secure.history.com/\"/></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\" default_off=\"failed ruleset test\" 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=\"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\" 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\" f=\"Hivos.org.xml\"><rule from=\"^http://m\\.hivos\\.org/\" to=\"https://hivos.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"H&#305;zl&#305; Saat\" f=\"Hizli_Saat.xml\"><securecookie host=\"^(?:.*\\.)?hizlisaat\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hizliresim.com\" f=\"Hizliresim.com.xml\"><securecookie host=\"^\\.hizliresim\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"hizook.com\" default_off=\"mismatch\" 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://hjv\\.kursuslogin\\.dk/\" to=\"https://hjv.kursuslogin.dk/\"/></ruleset>", "<ruleset name=\"hmapps.net\" f=\"Hmapps.net.xml\"><securecookie host=\"^(?:www\\.)?hmapps\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hobbyking\" default_off=\"failed ruleset test\" 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\" 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\" f=\"HolidayBullshit.com.xml\"><rule from=\"^http://(?:www\\.)?holidaybullshit\\.com/\" to=\"https://www.holidaybullshit.com/\"/></ruleset>", "<ruleset name=\"Holiday Break (mismathes)\" default_off=\"mismatch\" 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\"><exclusion pattern=\"^http://www\\.weekendjeweg\\.nl/$\"/><securecookie host=\"^(?:.*\\.)(?:bookit|weekendjeweg)\\.nl$\" name=\".*\"/><securecookie host=\"^(?:.*\\.)pgl\\.co\\.uk$\" name=\".*\"/><securecookie host=\"^(?:.*\\.)superbreak\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?bookit\\.nl/\" to=\"https://www.bookit.nl/\"/><rule from=\"^http://(?:www\\.)?djoser\\.nl/assets/\" to=\"https://djoser.nl/assets/\"/><rule from=\"^http://cache[12]\\.djoser\\.nl/assets/djoser_2012-1\\.0\\.56/\" to=\"https://djoser.nl/assets/djoser_2012/\"/><rule from=\"^http://(?:www\\.)?djoser(?:junior|wandelenfiets)\\.nl/(asset|cs|image)s/\" to=\"https://djoser.nl/assets/$1s/\"/><rule from=\"^http://(www\\.)?explore\\.co\\.uk/(images/|media/|templates/)\" to=\"https://$1explore.co.uk/$2\"/><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://(www\\.)?superbreak\\.com/\" to=\"https://$1superbreak.com/\"/><rule from=\"^http://(?:img1|static)\\.superbreak\\.(?:com|net)/\" to=\"https://www.superbreak.com/\"/><rule from=\"^http://(?:www\\.)?weekendjeweg\\.nl/(favicon\\.ico|resources/)\" to=\"https://www.weekendjeweg.nl/$1\"/></ruleset>", "<ruleset name=\"Hollywood Reporter (mismatches)\" default_off=\"mismatch\" f=\"Hollywood-Reporter-mismatches.xml\"><rule from=\"^http://thr\\d\\.pgmcdn\\.net/\" to=\"https://www.hollywoodreporter.com/\"/></ruleset>", "<ruleset name=\"Hollywood Reporter (partial)\" 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)\" default_off=\"failed ruleset test\" 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\" 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\" default_off=\"failed ruleset test\" 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\" default_off=\"self-signed\" f=\"Homecomputing.fr.xml\"><rule from=\"^http://homecomputing\\.fr/\" to=\"https://www.homecomputing.fr/\"/><rule from=\"^http://([^@/:]*)\\.homecomputing\\.fr/\" to=\"https://$1.homecomputing.fr/\"/></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)\" 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\" f=\"HoneyBeeLoans.com.xml\"><securecookie host=\"^(?:w*\\.)?honeybeeloans\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hong Kong Stock Exchange (partial)\" f=\"Hong_Kong_Stock_Exchange.xml\"><securecookie host=\"^www\\.hkex\\.com\\.hk$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?hkex\\.com\\.hk/\" to=\"https://www.hkex.com.hk/\"/></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 (false MCB)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Hope.net-falsemixed.xml\"><rule from=\"^http://wiki\\.hope\\.net/\" to=\"https://wiki.hope.net/\"/></ruleset>", "<ruleset name=\"hope.net (partial)\" default_off=\"missing certificate chain\" f=\"Hope.net.xml\"><exclusion pattern=\"^http://wiki\\.hope\\.net/+(?!w/)\"/><rule from=\"^http://www\\.hope\\.net/\" to=\"https://hope.net/\"/><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)\" 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 \" 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\" 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\" f=\"Host.co.id.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Host1Plus\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Host1Plus.xml\"><securecookie host=\"^(?:.*\\.)?host1plus\\.com$\" name=\".*\"/><rule from=\"^http://(\\w+\\.)?host1plus\\.com/\" to=\"https://$1host1plus.com/\"/></ruleset>", "<ruleset name=\"host2.bg\" 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)\" 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)\" f=\"HostSearch.xml\"><rule from=\"^http://secure\\.hostsearch\\.com/\" to=\"https://secure.hostsearch.com/\"/></ruleset>", "<ruleset name=\"Host Analytics.com (partial)\" 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\" 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=\"hosted-oswa.org\" f=\"Hosted-oswa.org.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=\"connection dropped\" f=\"Hostican.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hosting Reviews (partial)\" default_off=\"mismatch\" 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\" 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.\" f=\"HostingSolutions.cz.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"HostingXtreme.com (partial)\" 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\" default_off=\"failed ruleset test\" 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=\"HotUKDeals (mismatches)\" default_off=\"mismatch\" f=\"HotUKDeals-mismatches.xml\"><rule from=\"^http://(?:www\\.)?bitterwallet\\.com/\" to=\"https://www.bitterwallet.com/\"/></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=\"Hotels.com (partial)\" f=\"Hotels.com.xml\"><securecookie host=\"^\\.cdn-hotels\\.com$\" name=\".+\"/><securecookie host=\"^\\.hotels\\.com$\" name=\"^s_\\w+$\"/><securecookie host=\"^(?:customercare|(?:\\w\\w\\.)?service)\\.hotels\\.com$\" name=\".+\"/><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=\"Hoteltotravel.com\" default_off=\"shows incontri5stelle.com\" f=\"Hoteltotravel.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hotfile\" default_off=\"failed ruleset test\" f=\"Hotfile.xml\"><rule from=\"^http://(?:www\\.)?hotfile\\.com/\" to=\"https://hotfile.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)\" default_off=\"failed ruleset test\" 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=\"HousingWire.com\" default_off=\"failed ruleset test\" 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 Secure Is My Password.net\" f=\"How_Secure_Is_My_Password.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"How To Geek.com (partial)\" default_off=\"breaks images\" f=\"How_To_Geek.com.xml\"><rule from=\"^http://(www\\.)?howtogeek\\.com/(?=favicon\\.ico|pagespeed_static/|public/|thumbcache/|wp-content/|wp-includes/)\" to=\"https://$1howtogeek.com/\"/><rule from=\"^http://cdn8\\.howtogeek\\.com/\" to=\"https://www.howtogeek.com/\"/></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=\"Hows My SSL.com\" f=\"Hows_My_SSL.com.xml\"><rule from=\"^http://(www\\.)?howsmy(ssl|tls)\\.com/\" to=\"https://$1howsmy$2.com/\"/></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)\" 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:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hslu\" f=\"Hslu.ch.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"hsmr.cc\" f=\"Hsmr.cc.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\" f=\"Hstor.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ht.vc\" f=\"Ht.vc.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"htaccessbook.com\" f=\"Htaccessbook.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"html5.org\" f=\"Html5.org.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=\"Huawei.com (partial)\" 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=\"^(?:.*\\.)?hubspot\\.com$\" name=\".*\"/><rule from=\"^http://hubspot\\.com/\" to=\"https://www.hubspot.com/\"/><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://hubspot3.vanillaforums.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=\"Hubble (partial)\" f=\"Hubble.xml\"><exclusion pattern=\"^http://www\\.spacetelescope\\.org/(?:kidsandteachers/(?:drawings|education)|press/kits)/\"/><rule from=\"^http://(?:www\\.)?spacetelescope\\.org/(about|contact|kidsandteachers|press|projects|science|static|subscribe)/\" to=\"https://www.spacetelescope.org/$1/\"/></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=\"mismatch\" 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)\" f=\"HughesNet.xml\"><rule from=\"^http://s1\\.hughesnet\\.com/\" to=\"https://s1.hughesnet.com/\"/></ruleset>", "<ruleset name=\"Human Rights Campaign (partial)\" platform=\"mixedcontent\" f=\"Human-Rights-Campaign.xml\"><securecookie host=\"^www\\.hrc\\.org$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?hrc\\.org/\" to=\"https://www.hrc.org/\"/></ruleset>", "<ruleset name=\"HumanKode.com\" f=\"HumanKode.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Human Research Ethics Portal\" 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)\" 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)\" 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=\"Humpi.at\" f=\"Humpi.at.xml\"><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=\"mismatch\" 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\" f=\"Hunting_Bears.nl.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"huobi.com\" 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\" default_off=\"failed ruleset test\" f=\"Hushmail.xml\"><securecookie host=\"^www\\.hushmail\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?hush(mail)?\\.com/\" to=\"https://www.hush$1.com/\"/></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=\"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=\"^\\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\" default_off=\"failed ruleset test\" 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=\"^i\\.materialise\\.com$\" 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)\" 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 (false MCB)\" platform=\"mixedcontent\" f=\"IAB.org-falsemixed.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"IAB.org (partial)\" f=\"IAB.org.xml\"><exclusion pattern=\"^http://(?:www\\.)?iab\\.org/+(?!favicon\\.ico|wp-content/|wp-includes/)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"IABM\" default_off=\"connection reset\" f=\"IABM.xml\"><securecookie host=\"^www\\.theiabm\\.org$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?theiabm\\.org/\" to=\"https://www.theiabm.org/\"/></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\" default_off=\"failed ruleset test\" f=\"IAR.com.xml\"><securecookie host=\"^www\\.iar\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?iar\\.com/\" to=\"https://www.iar.com/\"/></ruleset>", "<ruleset name=\"IAS.edu (partial)\" 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)\" 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=\"^PrefID$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://(research\\.)?ibm\\.com/\" to=\"https://www.$1ibm.com/\"/><rule from=\"^http://domino\\.watson\\.ibm\\.com/\" to=\"https://domino.research.ibm.com/\"/><rule from=\"^http://researchweb\\.watson\\.ibm\\.com/\" to=\"https://www.research.ibm.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"IBPhoenix.com\" 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\" platform=\"mixedcontent\" f=\"IBTimes.co.uk.xml\"><exclusion pattern=\"^http://[dg]\\.ibtimes\\.co\\.uk/\"/><rule from=\"^http:\" to=\"https:\"/><rule from=\"^https://(d|g)\\.ibtimes\\.co\\.uk/\" to=\"http://$1.ibtimes.co.uk/\" downgrade=\"1\"/></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\" 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=\"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\" 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://accounts\\.icharts\\.net/\" to=\"https://accounts.icharts.net/\"/></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=\"iCloud.com\" f=\"ICloud.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"iCommons (mismatches)\" default_off=\"mismatch\" 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\" 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\" default_off=\"failed ruleset test\" 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://media\\.idownloadblog\\.com/\" to=\"https://idownloadblog.plssl.com/\"/></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\" 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\" 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 (partial)\" f=\"IETF.xml\"><securecookie host=\"^\\.ietf\\.org$\" name=\"^(?:__cfduid|cf_clearance)$\"/><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)\" default_off=\"failed ruleset test\" 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\" f=\"IIPVV.nl.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"IIS.net\" 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\" default_off=\"failed ruleset test\" 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)\" default_off=\"failed ruleset test\" f=\"ILX_Group.com.xml\"><rule from=\"^http://(?:www\\.)?ilxgroup\\.com/(?=consulting/images/|css/|favicon\\.ico|images/|js/)\" to=\"https://www.ilxgroup.com/\"/></ruleset>", "<ruleset name=\"iLivid (partial)\" f=\"ILivid.xml\"><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=\"IMDB (partial)\" f=\"IMDB.xml\"><exclusion pattern=\"^http://(?:[^/:@]+\\.)?imdb\\.com/images/(?:jwplayer|a/ifb/doubleclick/expand\\.html)\"/><rule from=\"^http://(?:www\\.)?imdb\\.com/(images|rg)/\" to=\"https://secure.imdb.com/$1/\"/><rule from=\"^http://(?:secure\\.|(?:i|www)\\.media-)imdb\\.com/\" to=\"https://secure.imdb.com/\"/></ruleset>", "<ruleset name=\"IMF.org\" f=\"IMF.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"IMGrind.com\" 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\" default_off=\"failed ruleset test\" 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\" default_off=\"failed ruleset test\" f=\"IModules.xml\"><securecookie host=\"^(?:iuaa|securelb)\\.imodules\\.com$\" name=\".+\"/><rule from=\"^http://((?:admin(?:lb)?|clients|culinary|iuaa|niu|securelb|ucsb|www)\\.)?imodules\\.com/\" to=\"https://$1imodules.com/\"/></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=\"mismatch\" f=\"IN.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"INDURE\" 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)\" 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\" 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\"><exclusion pattern=\"^http://(?:www\\.)?inyt\\.com/+(?!$|\\?)\"/><securecookie host=\"^\\.\" name=\"^(?:__utm|_ga$)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://(?:www\\.)?inyt\\.com/+\" to=\"https://global.nytimes.com/\"/><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)\" 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=\"IOSPP\" default_off=\"failed ruleset test\" f=\"IOSPP.xml\"><securecookie host=\"^(?:www)?\\.iospp\\.org$\" 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=\"iOS Dev Weekly.ly\" f=\"IOS_Dev_Weekly.ly.xml\"><securecookie host=\"^iosdevweekly\\.ly$\" 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://support\\.iopus\\.com/\" to=\"https://support.iopus.com/\"/></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)\" 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\" platform=\"mixedcontent\" f=\"IPCC.ch.xml\"><rule from=\"^http://ipcc\\.ch/\" to=\"https://ipcc.ch/\"/><rule from=\"^http://www\\.ipcc\\.ch/\" to=\"https://www.ipcc.ch/\"/></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.xml\"><securecookie host=\"^.*\\.ipower\\.com$\" name=\".*\"/><rule from=\"^http://images\\.ipower\\.com/\" to=\"https://secure.ipower.com/images/\"/><rule from=\"^http://([\\w\\-]+\\.)?ipower\\.com/\" to=\"https://$1ipower.com/\"/></ruleset>", "<ruleset name=\"IPQualityScore.com\" default_off=\"failed ruleset test\" f=\"IPQualityScore.com.xml\"><securecookie host=\"^(?:www\\.)?ipqualityscore\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"iPR Software.com (partial)\" 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\" 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)\" f=\"IPredator.xml\"><securecookie host=\"^(?:.*\\.)?ipredator\\.se$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"IProduction\" f=\"IProduction.xml\"><securecookie host=\"^(?:www)?\\.iproduction\\.com$\" name=\".+\"/><rule from=\"^http://(?:cdn\\.|www\\.)?iproduction\\.com/\" to=\"https://www.iproduction.com/\"/></ruleset>", "<ruleset name=\"IPsec.pl\" f=\"IPsec.pl.xml\"><securecookie host=\"^\\.ipsec\\.pl$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"IPv6-adresse.dk\" f=\"IPv6-adresse.dk.xml\"><rule from=\"^http:\" to=\"https:\"/></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://(?: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\" default_off=\"expired, mismatched, self-signed\" f=\"IRC_Reviews.xml\"><rule from=\"^http://(?:www\\.)?ircreviews\\.org/\" to=\"https://ircreviews.org/\"/></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\" f=\"IRILL.org.xml\"><rule from=\"^http://www\\.irill\\.org/\" to=\"https://www.irill.org/\"/></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://images\\.ironsolutions\\.com/\" to=\"https://images.ironsolutions.com/\"/></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\" 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\" 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\" 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://connect\\.iso\\.org/\" to=\"https://connect.iso.org/\"/></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\" 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)\" default_off=\"failed ruleset test\" f=\"ISPsystem.xml\"><rule from=\"^http://my\\.ispsystem\\.com/\" to=\"https://my.ispsystem.com/\"/></ruleset>", "<ruleset name=\"ISS World (partial)\" f=\"ISS-World.xml\"><rule from=\"^http://portal\\.issworld\\.com/\" to=\"https://portal.issworld.com/\"/></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\" 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\" default_off=\"failed ruleset test\" 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=\"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\" 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://secure\\.itweb\\.co\\.za/\" to=\"https://secure.itweb.co.za/\"/></ruleset>", "<ruleset name=\"ITX.com\" default_off=\"self-signed\" f=\"ITX.com.xml\"><securecookie host=\"^(?:www\\.)?itx\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"IT Dashboard.gov\" f=\"IT_Dashboard.gov.xml\"><securecookie host=\"^\\.my.itdashboard\\.gov$\" 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=\"ITalian Network Operators Group (partial)\" platform=\"cacert\" default_off=\"failed ruleset test\" f=\"ITalian_Network_Operators_Group.xml\"><rule from=\"^http://lists\\.itnog\\.it/\" to=\"https://lists.itnog.it/\"/></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=\"iTerm2.org\" default_off=\"failed ruleset test\" f=\"ITerm2.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"iTunes.com\" f=\"ITunes.com.xml\"><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\" 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://heft\\.ivw\\.eu/\" to=\"https://heft.ivw.eu/\"/></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=\"iWork.com\" f=\"IWork.com.xml\"><rule from=\"^http://iwork\\.com/\" to=\"https://www.iwork.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"IWouldDo.It (partial)\" 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=\"mismatch\" f=\"IXI-mismatches.xml\"><rule from=\"^http://(?:www\\.)?ixicorp\\.com/wp-content/\" to=\"https://www.ixicorp.com/wp-content/\"/></ruleset>", "<ruleset name=\"IXI (partial)\" 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\" 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)\" f=\"I_Want_U.xml\"><rule from=\"^http://cdn\\.keepstat\\.com/(?!(?:\\?.*)?$)\" to=\"https://cdn.keepstat.com/\"/></ruleset>", "<ruleset name=\"I love Freegle.org (partial)\" 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)\" f=\"Ibibo.com.xml\"><rule from=\"^http://ads\\.ibibo\\.com/\" to=\"https://ads.ibibo.com/\"/></ruleset>", "<ruleset name=\"Ibiza Rocks (partial)\" 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\" default_off=\"failed ruleset test\" 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\" default_off=\"failed ruleset test\" f=\"Ibs.sberbank.sk.xml\"><rule from=\"^http://ibs\\.sberbank\\.sk/\" to=\"https://ibs.sberbank.sk/\"/></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:\" to=\"https:\"/></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)\" 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)\" 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=\"^(?:.*\\.)?ichkoche.at$\" name=\".+\"/><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\" f=\"Icio.us.xml\"><securecookie host=\"^\\.api\\.del\\.icio\\.us$\" name=\".*\"/><rule from=\"^http://(?:www\\.|del\\.)?icio\\.us/\" to=\"https://delicious.com/\"/><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=\"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=\"id Software\" default_off=\"mismatch\" f=\"Id-Software.xml\"><rule from=\"^http://(?:www\\.)?idsoftware\\.com/\" to=\"https://www.idsoftware.com/\"/></ruleset>", "<ruleset name=\"idQQimg.com\" f=\"IdQQimg.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><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)\" 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)\" 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\" 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.gov\" f=\"IdentityTheft.gov.xml\"><securecookie host=\"^\\w\" name=\".\"/><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\" f=\"Identity_Workshop.eu.xml\"><securecookie host=\"^(?:www\\.)?identityworkshop\\.eu$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Idenyt.dk\" f=\"Idenyt.dk.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"IdeoClick.com\" f=\"IdeoClick.com.xml\"><securecookie host=\"^(?:www\\.)?ideoclick\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ideone.com\" 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=\"iesnare.com\" f=\"Iesnare.com.xml\"><securecookie host=\"^\\.iesnare\\.com$\" name=\"^token$\"/><rule from=\"^http://mpsnare\\.iesnare\\.com/\" to=\"https://mpsnare.iesnare.com/\"/></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)\" f=\"Igalia.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"igcdn.com\" 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=\"Igolder.com\" f=\"Igolder.com.xml\"><rule from=\"^http://(?:www\\.)?igolder\\.com/\" to=\"https://www.igolder.com/\"/></ruleset>", "<ruleset name=\"igowild.com\" 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\" default_off=\"failed ruleset test\" 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=\"^\\.ikea\\.com$\" name=\"^s_\\w+$\"/><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://www\\.ikgalekkerslapen\\.nl/\" to=\"https://www.ikgalekkerslapen.nl/\"/></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\" f=\"Ikoula.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Iljmp.com\" 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 &amp; 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=\"mismatch\" 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=\"ImQuQu.com\" f=\"ImQuQu.com.xml\"><rule from=\"^http://(?:www\\.)?imququ\\.com/\" to=\"https://www.imququ.com/\"/></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 (partial)\" f=\"ImageShack.us.xml\"><exclusion pattern=\"^http://imageshack\\.us/f/.*\"/><exclusion pattern=\"^http://iload\\d\\.imageshack\\.us/$\"/><exclusion pattern=\"^http://kb\\.imageshack\\.us/(?!img/favicon\\.ico$)\"/><securecookie host=\"^(?:.*\\.)?imageshack\\.us$\" name=\".+\"/><rule from=\"^http://(www\\.)?imageshack\\.com/\" to=\"https://$1imageshack.com/\"/><rule from=\"^http://kb\\.imageshack\\.us/img/favicon\\.ico$\" to=\"https://imageshack.us/favicon.ico\"/><rule from=\"^http://stream\\.imageshack\\.us/favicon\\.ico$\" to=\"https://imageshack.us/favicon.ico\"/><rule from=\"^http://img(\\d{1,3})\\.imageshack\\.us/\" to=\"https://img$1.imageshack.us/\"/><rule from=\"^http://(?:www\\.)?([ac-r]\\w+\\.)?imageshack\\.us/\" to=\"https://$1imageshack.us/\"/><rule from=\"^https://iload(\\d)\\.imageshack\\.us/\" to=\"http://iload$1.imageshack.us/\" downgrade=\"1\"/></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\" f=\"Imagestash.xml\"><securecookie host=\"^(?:www\\.)?imagestash\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Imation.com (partial)\" 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\" 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=\"Img.shields.io\" f=\"Img.shields.io.xml\"><rule from=\"^http://img\\.shields\\.io/\" to=\"https://img.shields.io/\"/></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 (partial)\" f=\"Imgbox.xml\"><rule from=\"^http://(www\\.)?imgbox\\.com/(assets/|(?:dmca|help|login|register|tos)(?:$|\\?))\" to=\"https://$1imgbox.com/$2\"/></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\" 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\"><securecookie host=\"^\\.?imgur\\.com\" name=\".+\"/><rule from=\"^http://img\\.imgur\\.com/\" to=\"https://i.imgur.com/\"/><rule from=\"^http://store\\.imgur\\.com/\" to=\"https://imgur-store.myshopify.com/\"/><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://adserver\\.iminent\\.com/\" to=\"https://adserver.iminent.com/\"/></ruleset>", "<ruleset name=\"Immunicity.org\" default_off=\"failed ruleset test\" 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\" 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\" default_off=\"self-signed\" f=\"Imperial-College-London-Union.xml\"><securecookie host=\"^www\\.imperialcollegeunion\\.org$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?imperialcollegeunion\\.org/\" to=\"https://www.imperialcollegeunion.org/\"/></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\" 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=\"Imrworldwide.com\" f=\"ImrWorldwide.com.xml\"><securecookie host=\"^\\.imrworldwide\\.com$\" name=\".*\"/><rule from=\"^http://secure-(\\w\\w)\\.imrworldwide\\.com/\" to=\"https://secure-$1.imrworldwide.com/\"/></ruleset>", "<ruleset name=\"in-Disguise.com\" 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\" f=\"In-Q-Tel.xml\"><rule from=\"^http://(?:www\\.)?iqt\\.org/\" to=\"https://www.iqt.org/\"/></ruleset>", "<ruleset name=\"In Stat.com\" default_off=\"connection 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\" 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)\" 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\" 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)\" 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\" 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://www\\.indacoin\\.com/\" to=\"https://indacoin.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Indeed.com (partial)\" f=\"Indeed.xml\"><securecookie host=\"^(?:ads|employers|secure)\\.indeed\\.com$\" 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 (partial)\" default_off=\"mismatched\" f=\"Independent.co.uk.xml\"><securecookie host=\"^\\.\" name=\"^s_v\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://independent\\.co\\.uk/\" to=\"https://www.independent.co.uk/\"/><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)\" default_off=\"failed ruleset test\" 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)\" 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\" 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=\"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=\"Indiana.edu (self-signed)\" default_off=\"expired, self-signed\" f=\"Indiana-University-self-signed.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"IU.edu (partial)\" 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=\"Indianna.edu (partial)\" f=\"Indiana.edu.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://soic\\.indiana\\.edu/\" to=\"https://www.soic.indiana.edu/\"/><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=\"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://soc\\.indusguard\\.com/\" to=\"https://soc.indusguard.com/\"/></ruleset>", "<ruleset name=\"Industry Botnet Group.org\" default_off=\"connection dropped\" f=\"Industry-Botnet-Group.xml\"><securecookie host=\"^(?:www\\.)?industrybotnetgroup\\.org$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Industry Mailout.com (partial)\" 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 (false MCB)\" platform=\"mixedcontent\" f=\"Indymedia.org-falsemixed.xml\"><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)\" f=\"Indymedia.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://netherlands\\.indymedia\\.org/\" to=\"https://www.indymedia.nl/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Inertianetworks.com\" f=\"Inertianetworks.com.xml\"><securecookie host=\"^inertianetworks\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Inet.se\" f=\"Inet.se.xml\"><rule from=\"^http://(?:www\\.)?inet\\.se/\" to=\"https://www.inet.se/\"/></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=\"connection dropped\" 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)\" default_off=\"failed ruleset test\" f=\"Infinet.com.au.xml\"><exclusion pattern=\"^http://(?:www\\.)?shop\\.infinet\\.com\\.au/+(?!epages/shop\\.sf/en_AU/\\?ObjectPath=/Shops/infinet&amp;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\" default_off=\"failed ruleset test\" f=\"Influencers_Conference.xml\"><securecookie host=\"^\\.influencersconference\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Info.iet.unipi.it\" default_off=\"HTTPS and HTTP content differ\" f=\"Info.iet.unipi.it.xml\"><rule from=\"^http://info\\.iet\\.unipi\\.it/\" to=\"https://info.iet.unipi.it/\"/></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\" 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=\"^\\w\" name=\".\"/><securecookie host=\"^\\.\" name=\"^_gat?$\"/><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\"><exclusion pattern=\"^http://e\\.infogr\\.am/js/embed\\.js\\?\"/><exclusion pattern=\"^http://e.infogr.am/top_tarffic_violations\\?\"/><securecookie host=\"^\\.infogr\\.am$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Infogroup (partial)\" 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&#225;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)\" 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\" default_off=\"failed ruleset test\" f=\"InformationWeek.xml\"><securecookie host=\"^www\\.informationweek\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?byte\\.com/\" to=\"https://www.informationweek.com/byte/\"/><rule from=\"^http://(www\\.)?informationweek\\.com/\" to=\"https://$1informationweek.com/\"/></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=\"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&#252;rth\" f=\"Infra-Furth.xml\"><rule from=\"^http://www\\.infra-fuerth\\.de/\" to=\"https://www.infra-fuerth.de/\"/></ruleset>", "<ruleset name=\"infradead.org (partial)\" platform=\"cacert\" f=\"Infradead.xml\"><rule from=\"^http://(?:www\\.)?infradead\\.org/\" to=\"https://casper.infradead.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Infragard.net\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" 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://secure\\.innocenceproject\\.org/\" to=\"https://secure.innocenceproject.org/\"/></ruleset>", "<ruleset name=\"Innometrics.com (partial)\" 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=\"Innovative Interfaces (partial)\" f=\"Innovative_Interfaces.xml\"><exclusion pattern=\"^http://(?:linkplusaccess|sierra|www)\\.\"/><securecookie host=\"^.+\\.iii\\.com$\" name=\".+\"/><rule from=\"^http://(\\w+)\\.iii\\.com/\" to=\"https://$1.iii.com/\"/></ruleset>", "<ruleset name=\"InoReader\" f=\"InoReader.xml\"><securecookie host=\"^www\\.inoreader\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?inoreader\\.com/\" to=\"https://www.inoreader.com/\"/></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)\" 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://planete\\.inrialpes\\.fr/\" to=\"https://planete.inrialpes.fr/\"/></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=\"InsideHW.com\" default_off=\"self-signed\" f=\"InsideHW.com.xml\"><rule from=\"^http://(?:www\\.)?insidehw\\.com/\" to=\"https://www.insidehw.com/\"/><securecookie host=\"^www\\.insidehw\\.com$\" name=\".*\"/></ruleset>", "<ruleset name=\"Inside Illinois.info\" 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\" 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\" 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://assets\\.insnw\\.net/\" to=\"https://assets.insnw.net/\"/></ruleset>", "<ruleset name=\"Insouciant.org\" f=\"Insouciant.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Inspectlet.com\" f=\"Inspectlet.com.xml\"><securecookie host=\"^(?:.*\\.)?inspectlet\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?inspectlet\\.com/\" to=\"https://www.inspectlet.com/\"/></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://distilleryimage1\\.instagram\\.com/\" to=\"https://d1ae3bdqlkjebx.cloudfront.net/\"/><rule from=\"^http://distilleryimage2\\.instagram\\.com/\" to=\"https://d2vdurooumowqn.cloudfront.net/\"/><rule from=\"^http://distilleryimage3\\.instagram\\.com/\" to=\"https://doa9ijhk46qwf.cloudfront.net/\"/><rule from=\"^http://distilleryimage4\\.instagram\\.com/\" to=\"https://d24elmu442q75h.cloudfront.net/\"/><rule from=\"^http://distilleryimage5\\.instagram\\.com/\" to=\"https://d1uysd8m4iv3h8.cloudfront.net/\"/><rule from=\"^http://distilleryimage6\\.instagram\\.com/\" to=\"https://d2aqnk7wh4vqhb.cloudfront.net/\"/><rule from=\"^http://distilleryimage7\\.instagram\\.com/\" to=\"https://d17c70w5wkxq2m.cloudfront.net/\"/><rule from=\"^http://distilleryimage8\\.instagram\\.com/\" to=\"https://d2nms3640z5x8l.cloudfront.net/\"/><rule from=\"^http://distilleryimage9\\.instagram\\.com/\" to=\"https://d2x3khweh61zds.cloudfront.net/\"/><rule from=\"^http://distilleryimage10\\.instagram\\.com/\" to=\"https://d34sa3fuqtuf2w.cloudfront.net/\"/><rule from=\"^http://distilleryimage11\\.instagram\\.com/\" to=\"https://d1z5wd2gcq19yd.cloudfront.net/\"/><rule from=\"^http://images\\.instagram\\.com/\" to=\"https://d18txuuu339yuz.cloudfront.net/\"/><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)\" 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&#233;es (partial)\" default_off=\"failed ruleset test\" 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&#252;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)\" 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\" default_off=\"mismatch\" f=\"Instructables.xml\"><rule from=\"^http://instructables\\.com/\" to=\"https://www.instructables.com/\"/><rule from=\"^http://cdn\\.instructables\\.com/\" to=\"https://s3.amazonaws.com/instruct-deriv/\"/><rule from=\"^http://(img|www)\\.instructables\\.com/\" to=\"https://$1.instructables.com/\"/><securecookie host=\"^\\.instructables\\.com$\" name=\".*\"/></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=\"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=\"mismatch\" 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 (partial)\" default_off=\"failed ruleset test\" f=\"Intel.co.jp.xml\"><securecookie host=\"^newsroom\\.intel\\.co\\.jp$\" name=\".+\"/><rule from=\"^http://newsroom\\.intel\\.co\\.jp/\" to=\"https://newsroom.intel.co.jp/\"/></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://newsroom\\.intel\\.com/\" to=\"https://newsroom.intel.com/\"/></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://inside\\.intel\\.com/\" to=\"https://secure-inside.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 Fellowships.com\" f=\"Intel_Fellowships.com.xml\"><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=\"Intency.com (partial)\" f=\"Intency.com.xml\"><securecookie host=\"^my\\.intencysrv\\.com$\" name=\".+\"/><rule from=\"^http://my\\.intencysrv\\.com/\" to=\"https://my.intencysrv.com/\"/></ruleset>", "<ruleset name=\"Intencysrv.com (partial)\" f=\"Intencysrv.com.xml\"><securecookie host=\"^\\.intencysrv\\.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 (mismatches)\" default_off=\"Certificate mismatch\" f=\"Intent-Media-mismatches.xml\"><rule from=\"^http://(www\\.)?(audioprointernational|develop100|licensing|mcvpacific|mi-pro|toynews-online)\\.(biz|com|co\\.uk)/\" to=\"https://www.$2.$3/\"/></ruleset>", "<ruleset name=\"Intent Media (partial)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Intent-Media.xml\"><rule from=\"^http://(www\\.)?(bikebiz|develop-online|intentmedia|mcvuk|mobile-ent|pcr-online)\\.(biz|com|co\\.uk|net)/\" to=\"https://www.$2.$3/\"/></ruleset>", "<ruleset name=\"intentmedia.net (partial)\" f=\"Intentmedia.xml\"><rule from=\"^http://a\\.intentmedia\\.net/\" to=\"https://a.intentmedia.net/\"/></ruleset>", "<ruleset name=\"Inter.net (partial)\" platform=\"mixedcontent\" 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\" 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://interacposcentre\\.ca/\" to=\"https://interacposcentre.ca/\"/></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\" default_off=\"failed ruleset test\" 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\" default_off=\"failed ruleset test\" 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=\"Interc.pt\" f=\"Interc.pt.xml\"><rule from=\"^http://interc\\.pt/\" to=\"https://bit.ly/\"/></ruleset>", "<ruleset name=\"Intercom.io (mismatched)\" default_off=\"mismatched\" f=\"Intercom.io-problematic.xml\"><securecookie host=\"^webinars\\.intercom\\.io$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Intercom.io\" f=\"Intercom.io.xml\"><securecookie host=\"^(?:api\\.|www\\.)?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=\"mismatch\" 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\" default_off=\"failed ruleset test\" f=\"Interference.cc.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Intergi.com (partial)\" f=\"Intergi.xml\"><securecookie host=\"^\\.intergi\\.com$\" name=\"^CfP$\"/><securecookie host=\"^app\\.intergi\\.com$\" name=\".+\"/><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=\"Interkassa.com\" f=\"Interkassa.xml\"><securecookie host=\"^(?:.+\\.)?interkassa\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Interlan.se\" default_off=\"failed ruleset test\" 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\" 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\" f=\"International_Association_of_Privacy_Professionals.xml\"><securecookie host=\"^(?:www\\.)?privacyassociation\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"International Consortium of Investigative Journalists\" default_off=\"failed ruleset test\" f=\"International_Consortium_of_Investigative_Journalists.xml\"><securecookie host=\"^\\.icij\\.org$\" name=\".+\"/><rule from=\"^http://(www\\.)?icij\\.org/\" to=\"https://$1icij.org/\"/><rule from=\"^http://cloudfront-\\d\\.icij\\.org/\" to=\"https://d2i83gre49b1s9.cloudfront.net/\"/></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\" default_off=\"failed ruleset test\" 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\" 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\"><exclusion pattern=\"^http://(?:graphite|pgdp01|s3|lending)\\.us\\.archive\\.org/\"/><securecookie host=\"^\\.archive\\.org$\" name=\".+\"/><rule from=\"^http://blog\\.openlibrary\\.archive\\.org/\" to=\"https://blog.openlibrary.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\" 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)\" 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 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=\"^(?:members)?\\.internetdefenseleague\\.org$\" 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 Staff.com\" f=\"Internet_Staff.com.xml\"><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\" 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=\"Interns.org\" default_off=\"self-signed\" f=\"Interns.org.xml\"><rule from=\"^http://(?:www\\.)?interns\\.org/\" to=\"https://www.interns.org/\"/></ruleset>", "<ruleset name=\"Interpol\" default_off=\"No longer supports HTTPS\" f=\"Interpol.xml\"><rule from=\"^http://(?:www\\.)?interpol\\.int/\" to=\"https://www.interpol.int/\"/></ruleset>", "<ruleset name=\"Intersango.com\" default_off=\"failed ruleset test\" f=\"Intersango.com.xml\"><securecookie host=\"^\\.intersango\\.com$\" name=\".+\"/><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 (partial)\" f=\"Intevation-GmbH.xml\"><securecookie host=\"^(ssl\\.|www\\.)?intevation\\.de$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Into Higher.com\" 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\" 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\" default_off=\"failed ruleset test\" 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=\"Invasion.com\" f=\"Invasion.com.xml\"><securecookie host=\"^(?:book)?\\.invasion\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"InvenSense.com (partial)\" f=\"InvenSense.com.xml\"><securecookie host=\"^store\\.invensense\\.com$\" name=\".+\"/><rule from=\"^http://store\\.invensense\\.com/\" to=\"https://store.invensense.com/\"/></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\" 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=\"mismatch\" 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|hsprod\\.investis)\\.com/\" to=\"https://hsprod.investis.com/\"/></ruleset>", "<ruleset name=\"Investor.gov\" default_off=\"failed ruleset test\" f=\"Investor.gov.xml\"><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\" default_off=\"mismatched\" f=\"Io9.com.xml\"><securecookie host=\"^(?:\\.|www\\.)?io9\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></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\" 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)\" 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\" f=\"Ipfs.pics.xml\"><securecookie host=\"^(www\\.)?ipfs\\.pics\" name=\".+\"/><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://ad\\.ipredictive\\.com/\" to=\"https://ad.ipredictive.com/\"/></ruleset>", "<ruleset name=\"ipsidixit.net\" 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=\"^irccloud\\.com$\" name=\".+\"/><securecookie host=\"^www\\.irccloud\\.com$\" name=\".+\"/><securecookie host=\"^alpha\\.irccloud\\.com$\" name=\".+\"/><securecookie host=\"^api\\.irccloud\\.com$\" name=\".+\"/><securecookie host=\"^blog\\.irccloud\\.com$\" 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=\"Iridium Browser.de\" f=\"Iridium_Browser.de.xml\"><securecookie host=\"^\\w\" 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)\" f=\"Isalo.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Iseclab.org (partial)\" f=\"Iseclab.org.xml\"><securecookie host=\"^anubis\\.iseclab\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"isen.com\" default_off=\"mismatch\" 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=\"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\" 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://ml01\\.ispgateway\\.de/\" to=\"https://ml01.ispgateway.de/\"/></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\" 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)\" default_off=\"failed ruleset test\" 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=\"Linux.it\" platform=\"cacert\" f=\"Italian-Linux-Society.xml\"><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\" f=\"Itch.io.xml\"><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\" f=\"Ix.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ixquick\" f=\"Ixquick.xml\"><rule from=\"^http://ixquick\\.com/\" to=\"https://ixquick.com/\"/><rule from=\"^http://([^@/:]*)\\.ixquick\\.com/\" to=\"https://$1.ixquick.com/\"/><rule from=\"^http://ixquick-proxy\\.com/\" to=\"https://ixquick-proxy.com/\"/><rule from=\"^http://([^@/:]*)\\.ixquick-proxy\\.com/\" to=\"https://$1.ixquick-proxy.com/\"/><rule from=\"^http://startpage\\.com/\" to=\"https://startpage.com/\"/><rule from=\"^http://([^@/:]*)\\.startpage\\.com/\" to=\"https://$1.startpage.com/\"/><rule from=\"^http://startingpage\\.com/\" to=\"https://startingpage.com/\"/><rule from=\"^http://([^@/:]*)\\.startingpage\\.com/\" to=\"https://$1.startingpage.com/\"/><securecookie host=\"^\\.ixquick\\.com$\" name=\".*\"/></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 (partial)\" default_off=\"failed ruleset test\" f=\"Izvestia.ru.xml\"><rule from=\"^http://fb\\.izvestia\\.ru/\" to=\"https://fb.izvestia.ru/\"/></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://sassets\\.j2global\\.com/\" to=\"https://sassets.j2global.com/\"/></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://www\\.jamstec\\.go\\.jp/\" to=\"https://www.jamstec.go.jp/\"/></ruleset>", "<ruleset name=\"JA.NET (partial)\" default_off=\"failed ruleset test\" 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\" 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 (false MCB)\" platform=\"mixedcontent\" f=\"JD.com-mixedcontent.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"JD.com (partial)\" f=\"JD.com.xml\"><securecookie host=\"^\\.\" name=\"^_gat?$\"/><securecookie host=\"^\\w\" name=\".\"/><securecookie host=\"^\\.search\\.jd\\.com$\" name=\".\"/><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 (mismatches)\" default_off=\"mismatch\" f=\"JDI-Dating-mismatches.xml\"><rule from=\"^http://static\\.(?:just(?:hookup|romeo)|rudefinder)\\.com/\" to=\"https://static.justhookup.com/\"/></ruleset>", "<ruleset name=\"JDI Dating (partial)\" default_off=\"failed ruleset test\" f=\"JDI-Dating.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"JD Kasten.com\" f=\"JD_Kasten.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"JD Supra\" default_off=\"failed ruleset test\" 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\" 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://store\\.jfklibrary\\.org/\" to=\"https://store.jfklibrary.org/\"/></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\" f=\"JIDE.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"JISCMail.ac.uk\" 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)\" 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\" 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://www\\.jpcert\\.or\\.jp/\" to=\"https://www.jpcert.or.jp/\"/></ruleset>", "<ruleset name=\"JPG Magazine (self-signed)\" default_off=\"self-signed\" f=\"JPGmag.xml\"><rule from=\"^http://(?:www\\.)?jpgmag\\.com/\" to=\"https://jpgmag.com/\"/></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\" 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.xml\"><rule from=\"^http://(?:www\\.)?jstor\\.org/((?:abs|betasearch/static|jawr|jawrcss|literatum|sda|stable|templates|userimages)/|action/(?:myJstorSettings|registration|show(?:Login|RegistrationUpdate))|rx(?:$|\\?))\" to=\"https://www.jstor.org/$1\"/><rule from=\"^http://about\\.jstor\\.org/(modul|sit)es/\" to=\"https://about.jstor.org/$1es/\"/></ruleset>", "<ruleset name=\"JSaO.io\" f=\"JSaO.io.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"JUA.com\" 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\" 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://www\\.juki\\.co\\.jp/\" to=\"https://www.juki.co.jp/\"/></ruleset>", "<ruleset name=\"JVN.jp\" f=\"JVN.jp.xml\"><rule from=\"^http://jvn\\.jp/\" to=\"https://jvn.jp/\"/></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/)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"JXT.net.au (partial)\" default_off=\"failed ruleset test\" f=\"JXT.net.au.xml\"><rule from=\"^http://images\\.jxt\\.net\\.au/\" to=\"https://images.jxt.net.au/\"/></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=\"J Halderm.com\" f=\"J_Halderm.com.xml\"><rule from=\"^http:\" to=\"https:\"/></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\" f=\"JabbR.net.xml\"><securecookie host=\"^\\.?jabbr\\.net$\" name=\".+\"/><rule from=\"^http://jabbr\\.net/\" to=\"https://jabbr.net/\"/></ruleset>", "<ruleset name=\"Jabber.at\" f=\"Jabber.at.xml\"><securecookie host=\"^list\\.jabber\\.at$\" name=\".+\"/><rule from=\"^http://www\\.jabber\\.at/\" to=\"https://jabber.at/\"/><rule from=\"^http:\" to=\"https:\"/></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\" 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\" 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\" default_off=\"failed ruleset test\" 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)\" default_off=\"failed ruleset test\" 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\" 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\" default_off=\"mismatched\" f=\"Jalopnik.com.xml\"><securecookie host=\"^\\.?jalopnik\\.com$\" name=\".+\"/><rule from=\"^http://(?:(cache\\.)|www\\.)?jalopnik\\.com/\" to=\"https://$1jalopnik.com/\"/></ruleset>", "<ruleset name=\"JamPlay\" f=\"JamPlay.xml\"><rule from=\"^http://account\\.jamplay\\.com/\" to=\"https://account.jamplay.com/\"/></ruleset>", "<ruleset name=\"Jamtrackcentral\" default_off=\"failed ruleset test\" f=\"JamTrackCentral.xml\"><rule from=\"^http://(?:www\\.)?jamtrackcentral\\.com/\" to=\"https://jamtrackcentral.com/\"/></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=\"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/\"/><rule from=\"^http://(\\d+)\\.myopenid\\.com/\" to=\"https://$1.myopenid.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=\"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=\"Japias.jp (partial)\" f=\"Japias.jp.xml\"><rule from=\"^http://webcon\\.japias\\.jp/\" to=\"https://webcon.japias.jp/\"/></ruleset>", "<ruleset name=\"Jappix.org\" f=\"Jappix.org.xml\"><securecookie host=\"^jappix\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Jappix (partial)\" 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)\" 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)\" 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://(?:www\\.)?java\\.com(?::80)?/\" to=\"https://www.java.com/\"/></ruleset>", "<ruleset name=\"JavaScriptKicks.com\" f=\"JavaScriptKicks.com.xml\"><rule from=\"^http://(?:www\\.)?javascriptkicks\\.com/\" to=\"https://javascriptkicks.com/\"/></ruleset>", "<ruleset name=\"JavaScriptMVC (partial)\" default_off=\"failed ruleset test\" 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=\"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)\" f=\"Jcloud.com.xml\"><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\" 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)\" default_off=\"failed ruleset test\" f=\"Jeff_Reifman.com.xml\"><rule from=\"^http://cloud\\.jeffreifman\\.com/\" to=\"https://d34gmh9gge3473.cloudfront.net/\"/></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=\"^www\\.jellynote\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Jenkins-CI.org\" 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\" default_off=\"missing certificate chain\" f=\"Jenner.ac.uk.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"jensge.org\" platform=\"cacert\" 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\" 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\" 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)\" 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\" default_off=\"mismatched\" f=\"Jezebel.com.xml\"><securecookie host=\"^(?:.*\\.)?jezebel\\.com$\" 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=\"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=\"^\\.jifo\\.co$\" 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 Shaver.net\" f=\"Jim_Shaver.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Jim static.com\" f=\"Jim_static.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Jimdo.com (partial)\" f=\"Jimdo.xml\"><securecookie host=\"^(?:a|webmail|www51)\\.jimdo\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Jimg.dk\" 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=\"Jira.com\" f=\"Jira.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Jisc.ac.uk\" f=\"Jisc.ac.uk.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"jit.su\" 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=\"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=\"mismatch\" 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\" 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 (buggy)\" default_off=\"Certificate for tv.jobindex.dk is only valid for *.23video.com (ssl_error_bad_cert_domain)\" f=\"Jobindex.dk.xml\"><rule from=\"^http://(?:www\\.)?jobindex\\.dk/\" to=\"https://www.jobindex.dk/\"/><rule from=\"^http://tv\\.jobindex\\.dk/\" to=\"https://tv.jobindex.dk/\"/><rule from=\"^http://it\\.jobindex\\.dk/\" to=\"https://it.jobindex.dk/\"/></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\" f=\"Jobsite.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Jobvite (partial)\" f=\"Jobvite.xml\"><exclusion pattern=\"^http://www\\.jobvite\\.com/(?!favicon\\.ico|wp-content/|wp-includes/)\"/><securecookie host=\"^(?:.+\\.)?jobvite\\.com$\" name=\".*\"/><rule from=\"^http://((?:careers|demo|hire|hire-stg|recruiting|search|source|source-stg|www|www-stg)\\.)?jobvite\\.com/\" to=\"https://$1jobvite.com/\"/><rule from=\"^http://web\\.jobvite\\.com/(?=css/|images/|js/|rs/)\" to=\"https://na-a.marketo.com/\"/></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\" 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://joeyh\\.name/\" to=\"https://joeyh.name/\"/></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=\"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=\"mismatch\" 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\" 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\" 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 (CAcert)\" platform=\"cacert\" default_off=\"mismatched\" f=\"Jolexa.net-cacert.xml\"><securecookie host=\"^(?:.*\\.)?jolexa\\.net$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"jolexa.net (partial)\" f=\"Jolexa.net.xml\"><securecookie host=\"^(?:www\\.)?blog\\.jolexa\\.net$\" name=\".*\"/><rule from=\"^http://www\\.blog\\.jolexa\\.net/\" to=\"https://blog.jolexa.net/\"/><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=\"joppix.com\" default_off=\"failed ruleset test\" f=\"Joppix.com.xml\"><securecookie host=\"^(?:www\\.)?joppix\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Josefsson.org\" platform=\"cacert\" default_off=\"failed ruleset test\" f=\"Josefsson.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Joseph Rowntree Reform Trust (mismatches)\" default_off=\"mismatch\" 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=\"Josh Triplett.org\" f=\"Josh_Triplett.org.xml\"><rule from=\"^http://(?:www\\.)?joshtriplett\\.org/\" to=\"https://joshtriplett.org/\"/></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.xml\"><rule from=\"^http://(?:www\\.)?jottit\\.com/\" to=\"https://www.jottit.com/\"/><rule from=\"^http://([^/:@\\.]+)\\.jottit\\.com/\" to=\"https://$1.jottit.com/\"/></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=\"mismatch\" 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)\" 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=\"Jpost.com (partial)\" f=\"Jpost.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"jsDelivr.net\" 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=\"jtlebi.fr\" f=\"Jtlebi.fr.xml\"><securecookie host=\"^(?:blog\\.|www\\.)?jtlebi\\.fr$\" name=\".+\"/><rule from=\"^http://(?:blog\\.|www\\.)?jtlebi\\.fr/\" to=\"https://blog.jtlebi.fr/\"/></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=\"mismatch\" 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\" 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\" 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=\"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\" 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&amp;channel=SECURITY_ADVISORIES\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"JunoDownload\" default_off=\"failed ruleset test\" 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\" f=\"Jupiter_Artland.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=\"^(?:.*\\.)?(?:just|zip)cloud\\.com$\" name=\".*\"/><rule from=\"^http://(\\w+\\.)?intellichat\\.com/\" to=\"https://$1intellchat.com/\"/><rule from=\"^http://(\\w+\\.)?(just|zip)cloud\\.com/\" to=\"https://$1$2cloud.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=\"JustGive\" f=\"JustGive.xml\"><securecookie host=\"^amex\\.justgive\\.org$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?justgive\\.org/\" to=\"https://www.justgive.org/\"/><rule from=\"^http://(amex|ido)\\.justgive\\.org/\" to=\"https://$1.justgive.org/\"/></ruleset>", "<ruleset name=\"JustGiving (partial)\" f=\"JustGiving.xml\"><securecookie host=\"^(?:apimanagement|www)?\\.justgiving\\.com$\" name=\".+\"/><rule from=\"^http://((?:api|apimanagement|images|www)\\.)?justgiving\\.com/\" to=\"https://$1justgiving.com/\"/><rule from=\"^http://marketo\\.justgiving\\.com/(?!css/marketo-2\\.css)\" to=\"https://s3-eu-west-1.amazonaws.com/marketo.justgiving.com/\"/><rule from=\"^http://pages\\.justgiving\\.com/(?=css/|images/|js/|rs/)\" to=\"https://na-lon02.marketo.com/\"/></ruleset>", "<ruleset name=\"JustPaste.it\" f=\"JustPaste.it.xml\"><securecookie host=\"^justpaste\\.it$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"JustTomatoes.com\" platform=\"mixedcontent\" f=\"JustTomatoes.com.xml\"><rule from=\"^http://(?:www\\.)?justtomatoes\\.com/\" to=\"https://www.justtomatoes.com/\"/></ruleset>", "<ruleset name=\"Just Apple.com (false MCB)\" platform=\"mixedcontent\" f=\"Just_Apple.com.xml\"><securecookie host=\"^\\.justapple\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?justapple\\.com/\" to=\"https://www.justapple.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\" 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=\"Justice 4 Assange.com\" f=\"Justice_4_Assange.com.xml\"><rule from=\"^http:\" to=\"https:\"/></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\" default_off=\"failed ruleset test\" 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=\"KB IT.dk\" f=\"KB_IT.dk.xml\"><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\" f=\"KCVids.xml\"><securecookie host=\"^\\.?kcvids\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"KD2.us\" 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.org (partial)\" 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\" 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\" default_off=\"failed ruleset test\" f=\"KGNB.am.xml\"><securecookie host=\"^\\.kgnb\\.am$\" name=\".+\"/><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)\" 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\" 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\" f=\"KLDP.net.xml\"><rule from=\"^http://([\\w-]+\\.)?kldp\\.net/\" to=\"https://$1kldp.net/\"/></ruleset>", "<ruleset name=\"KLDP.org\" f=\"KLDP.org.xml\"><rule from=\"^http://([\\w-]+\\.)?kldp\\.org/\" to=\"https://$1kldp.org/\"/></ruleset>", "<ruleset name=\"KLM\" platform=\"mixedcontent\" 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)\" f=\"KNET.cn.xml\"><securecookie host=\"^ss\\.knet\\.cn$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"KOMO News (partial)\" default_off=\"failed ruleset test\" f=\"KOMO_News.xml\"><rule from=\"^http://cf\\.komo\\.com/\" to=\"https://d27odwwbded9xq.cloudfront.net/\"/></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)\" 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=\"KSA Glass.com\" default_off=\"502\" f=\"KSA_Glass.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"K&#246;zponti Statisztikai Hivatal\" default_off=\"failed ruleset test\" 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=\"mismatched\" f=\"KUTV.com.xml\"><rule from=\"^http://(?:www\\.)?kutv\\.com/\" to=\"https://kutv.com/\"/></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=\"K P Dyer.com\" f=\"K_P_Dyer.com.xml\"><securecookie host=\"^\\.kpdyer\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></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)\" f=\"Kaazing.com.xml\"><exclusion pattern=\"^http://developer\\.kaazing\\.com/+(?!wordpress/wp-content/)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Kabel Deutschland\" 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\" default_off=\"failed ruleset test\" 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)\" 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 (partial)\" 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_Linux.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://publishing\\.kalooga\\.com/\" to=\"https://publishing.kalooga.com/\"/></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\" default_off=\"self-signed\" f=\"Kanotix.xml\"><securecookie host=\"^(?:.*\\.)?kanotix\\.(?:com|de|net|org)$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?kanotix\\.(?:com|de|net|org)/\" to=\"https://kanotix.com/\"/></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\" f=\"Kapiton.se.xml\"><securecookie host=\"^\\.?kapiton\\.se$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Kaply.com (partial)\" f=\"Kaply.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Kapsi.fi (very partial)\" 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 (problematic)\" default_off=\"self-signed\" f=\"Karlsruhe_Institute_of_Technology-problematic.xml\"><rule from=\"^http://blog\\.bibliothek\\.kit\\.edu/\" to=\"https://blog.bibliothek.kit.edu/\"/><rule from=\"^http://(?:www\\.)?studiumundbehinderung\\.kit\\.edu/\" to=\"https://studiumundbehinderung.kit.edu/\"/></ruleset>", "<ruleset name=\"Karlsruhe Institute of Technology (partial)\" default_off=\"failed ruleset test\" f=\"Karlsruhe_Institute_of_Technology.xml\"><exclusion pattern=\"^http://blog\\.bibliothek\\.kit\\.edu/+(?!\\w+/wp-(?:content|includes)/)\"/><securecookie host=\"^.+\\.kit\\.edu$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?alumni\\.kit\\.edu/\" to=\"https://www.rsm.kit.edu/\"/><rule from=\"^http://(?:www\\.)?((?:bibliothek|informatik|innovation|lists|pst|ptka|radio|rsm|scc)\\.)?kit\\.edu/\" to=\"https://www.$1kit.edu/\"/><rule from=\"^http://(blog\\.bibliothek|campus|(?:jplag|svn)\\.ipd|intranet|owa|(?:idp|wsm10)\\.scc|(?:ilias\\.)?stadium|www\\.stiftung)\\.kit\\.edu/\" to=\"https://$1.kit.edu/\"/><rule from=\"^http://(?:www\\.)?cs\\.kit\\.edu/+\" to=\"https://www.informatik.kit.edu/\"/><rule from=\"^http://www\\.zib\\.kit\\.edu/(?:.*)\" to=\"https://www.kit.edu/studieren/3052.php\"/><rule from=\"^http://(?:www\\.)?(zvw\\.)?uni-karlsruhe\\.de/\" to=\"https://www.$1uni-karlsruhe.de/\"/><rule from=\"^http://(mensa\\.akk|www\\.ubka)\\.uni-karlsruhe\\.de/\" to=\"https://$1.uni-karlsruhe.de/\"/><rule from=\"^http://www\\.rz\\.uni-karlsruhe\\.de/+\" to=\"https://www.scc.kit.edu/\"/></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)\" 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)\" 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\" f=\"Kaspersky-cyberstat.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Kaspersky.com (partial)\" 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\" f=\"Kasperskycontenthub.com.xml\"><securecookie host=\"^kasperskycontenthub\\.com$\" name=\".+\"/><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)\" 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://sueddeutsche\\.kaufdown\\.de/\" to=\"https://sueddeutsche.kaufdown.de/\"/></ruleset>", "<ruleset name=\"Kaufland.cz\" 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=\"mismatch\" 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=\"self-signed\" f=\"Kaywa-problematic.xml\"><rule from=\"^http://photo\\.kaywa\\.(?:biz|com)/\" to=\"https://photo.kaywa.biz/\"/></ruleset>", "<ruleset name=\"Kaywa.com (partial)\" f=\"Kaywa.xml\"><securecookie host=\"^\\w.*\\.kaywa\\.com$\" name=\".+\"/><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\" 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 (partial)\" f=\"Keen.IO.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Keenot.es (partial)\" default_off=\"failed ruleset test\" f=\"Keenot.es.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"keepTempo.com (partial)\" f=\"KeepTempo.com.xml\"><securecookie host=\"^app\\.keeptempo\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Keep all the things.com\" 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)\" default_off=\"failed ruleset test\" 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)\" 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=\"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=\"mismatch\" 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)\" f=\"Kent.gov.uk.xml\"><exclusion pattern=\"^http://(?:www\\.)?kent\\.gov\\.uk/+(?!__data/|jobs/jobs-at-kent-county-council$)\"/><securecookie host=\"^(?!www\\.)\\w\" name=\".\"/><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)\" 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\" 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 (partial)\" f=\"Kettering.gov.uk.xml\"><securecookie host=\"^\\.\" name=\"^TestCookie$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://kettering\\.gov\\.uk/\" to=\"https://www.kettering.gov.uk/\"/><rule from=\"^https?://www\\.kettering\\.gov\\.uk/\" to=\"https://www.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=\"mismatch\" f=\"Kevinajacobs.com.xml\"><rule from=\"^http://(?:www\\.)?kevinajacobs\\.com/\" to=\"https://kevinajacobs.com/\"/></ruleset>", "<ruleset name=\"KeyDrive (mismatches)\" default_off=\"mismatch\" f=\"KeyDrive-mismatches.xml\"><securecookie host=\"^news\\.moniker\\.com$\" name=\".*\"/><rule from=\"^http://news\\.moniker\\.com/\" to=\"https://news.moniker.com/\"/></ruleset>", "<ruleset name=\"KeyDrive (partial)\" f=\"KeyDrive.xml\"><rule from=\"^http://help\\.moniker\\.com/\" to=\"https://support.snapnames.com/\"/><rule from=\"^http://(domainauctions\\.|www\\.)?moniker\\.com/\" to=\"https://$1moniker.com/\"/><rule from=\"^http://(?:moniker\\.|www\\.)?snapnames\\.com/\" to=\"https://moniker.snapnames.com/\"/></ruleset>", "<ruleset name=\"KeyGhost.com (expired)\" default_off=\"expired, md5 signed\" f=\"KeyGhost.com-problematic.xml\"><rule from=\"^http://(?:www\\.)?keyghost\\.com/\" to=\"https://www.keyghost.com/\"/></ruleset>", "<ruleset name=\"KeyGhost.com (partial)\" f=\"KeyGhost.com.xml\"><rule from=\"^http://secure\\.keyghost\\.com/\" to=\"https://secure.keyghost.com/\"/></ruleset>", "<ruleset name=\"Keybase.io\" f=\"Keybase.io.xml\"><rule from=\"^http://(?:www\\.)?keybase\\.io/\" to=\"https://keybase.io/\"/></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://i\\.kfs\\.io/\" to=\"https://i.kfs.io/\"/></ruleset>", "<ruleset name=\"Khan Academy\" f=\"Khan-Academy.xml\"><securecookie host=\"^www\\.khanacademy\\.org$\" name=\".*\"/><rule from=\"^http://(www\\.)?k(asandbox|astatic|hanacademy)\\.org/\" to=\"https://$1k$2.org/\"/></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=\"^\\.?kickassapp\\.com$\" 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\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"KickAssVPS.com.xml\"><securecookie host=\"^manage\\.kickassvps\\.com$\" 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=\"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\" 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\" default_off=\"failed ruleset test\" f=\"Kikatek.xml\"><securecookie host=\"^.*\\.kikatek\\.com$\" name=\".*\"/><rule from=\"^http://(?:(?:www)\\.)?kikatek\\.com/\" to=\"https://www.kikatek.com/\"/></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\" 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 (false MCB)\" platform=\"mixedcontent\" f=\"Kinfolk.com-falsemixed.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Kinfolk.com (partial)\" f=\"Kinfolk.com.xml\"><exclusion pattern=\"^http://www\\.kinfolk\\.com/+(?!favicon\\.ico|(?:join|my-account)($|[?/])|wp-content/|wp-includes/)\"/><securecookie host=\"^kinfolk\\.com$\" 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)\" default_off=\"failed ruleset test\" 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.com (problematic)\" default_off=\"mismatched\" f=\"Kinja-problematic.xml\"><securecookie host=\"^\\.kinja\\.com$\" name=\".+\"/><rule from=\"^http://gawker\\.kinja\\.com/\" to=\"https://gawker.com/\"/><rule from=\"^http://([\\w-]+)\\.kinja\\.com/\" to=\"https://$1.kinja.com/\"/></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\"><securecookie host=\"^kinja\\.com$\" name=\".+\"/><rule from=\"^http://www\\.kinja\\.com/\" to=\"https://kinja.com/\"/><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=\"kirei.se\" f=\"Kirei.se.xml\"><securecookie host=\"^\\.www\\.kirei\\.se$\" 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=\"^_gat?$\"/><securecookie host=\"^\\w\" name=\".\"/><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\" 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=\"Kitchen Riddles.com\" f=\"Kitchen_Riddles.com.xml\"><securecookie host=\"^\\.kitchenriddles\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?kitchenriddles\\.com/\" to=\"https://kitchenriddles.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://kitenet\\.net/\" to=\"https://kitenet.net/\"/></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\" f=\"Kivo.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Kiwi FM\" default_off=\"mismatch\" 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\" f=\"Kiwiirc.com.xml\"><securecookie host=\"^\\.?kiwiirc\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Kkk.com\" 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\" 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)\" 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)\" 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\" 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.io\" f=\"Koen.io.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Koen Rouwhorst.nl\" f=\"Koen_Rouwhorst.nl.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Kohls.com\" default_off=\"failed ruleset test\" 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\" f=\"Koinify.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Kokousalusta\" default_off=\"failed ruleset test\" f=\"Kokousalusta.xml\"><securecookie host=\"^(?:www\\.)?kokousalusta\\.fi$\" name=\".+\"/><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\" 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\" 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://www\\.komro\\.net/\" to=\"https://www.komro.net/\"/></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=\"konklone.com\" f=\"Konklone.com.xml\"><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)\" 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=\"Kopiosto\" default_off=\"failed ruleset test\" 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=\"mismatch\" 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\" 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\" default_off=\"mismatched\" f=\"Kotaku.com.xml\"><securecookie host=\"^\\.?kotaku\\.com$\" name=\".+\"/><rule from=\"^http://(?:(cache\\.)|www\\.)?kotaku\\.com/\" to=\"https://$1kotaku.com/\"/></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\" 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\" 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=\"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://secure\\.kreativmedia\\.ch/\" to=\"https://secure.kreativmedia.ch/\"/></ruleset>", "<ruleset name=\"Kreat&#237;v Vonalak\" f=\"Kreativvonalak.xml\"><rule from=\"^http://www\\.kreativvonalak\\.hu/\" to=\"https://www.kreativvonalak.hu/\"/></ruleset>", "<ruleset name=\"Krebs on Security.com (partial, broken MCB)\" platform=\"mixedcontent\" f=\"KrebsOnSecurity.com.xml\"><securecookie host=\"^(?:www\\.)?krebsonsecurity\\.com$\" 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\" 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\" 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=\"mismatch\" 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.co.uk\" f=\"Krystal_Hosting.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ksi&#281;garniaWarszawa.pl\" f=\"KsiegarniaWarszawa.pl.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ksplice (partial)\" default_off=\"failed ruleset test\" 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\" platform=\"cacert\" f=\"Kubieziel.de.xml\"><securecookie host=\"^(?:www\\.)?kubieziel\\.de$$\" 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=\"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=\"kuonamaoni.com\" default_off=\"expired\" f=\"Kuonamaoni.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"KuppingerCole.com\" f=\"KuppingerCole.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Kura.io\" default_off=\"connection dropped\" f=\"Kura.io.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Kurly.fr\" default_off=\"failed ruleset test\" f=\"Kurly.fr.xml\"><securecookie host=\"^(?:www)?\\.kurly\\.fr$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"kuro5hin.org\" 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=\"KwikSurveys\" f=\"KwikSurveys.xml\"><securecookie host=\"^www\\.kwiksurveys\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Kyani.net\" default_off=\"failed ruleset test\" 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\" f=\"Kyiv_Post.com.xml\"><securecookie host=\"^www\\.kyivpost\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Kyle Isom.net\" f=\"Kyle_Isom.net.xml\"><securecookie host=\"^\\.kyleisom\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Kyn.me\" f=\"Kyn.me.xml\"><rule from=\"^http://www\\.kyn\\.me/.*\" to=\"https://kyn.me/\"/><rule from=\"^http://kyn\\.me/\" to=\"https://kyn.me/\"/></ruleset>", "<ruleset name=\"Kyoto-U.ac.jp (partial)\" f=\"Kyoto-U.ac.jp.xml\"><rule from=\"^http://www\\.cira\\.kyoto-u\\.ac\\.jp/\" to=\"https://www.cira.kyoto-u.ac.jp/\"/></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\\.)?l\\.de\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"l0cal.com (CAcert)\" platform=\"cacert\" f=\"L0cal.com-cacert.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"l0cal.com (partial)\" f=\"L0cal.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"l0g.us\" 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)\" 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\" 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)\" 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=\"mismatch\" f=\"LESS.xml\"><rule from=\"^http://(?:www\\.)?lesscss\\.org/\" to=\"https://lesscss.org/\"/></ruleset>", "<ruleset name=\"LEspace client.fr\" 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\" default_off=\"failed ruleset test\" 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=\"LFGSS.com\" f=\"LFGSS.com.xml\"><securecookie host=\"^www\\.lfgss\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></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\" 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\" 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)\" f=\"LIU.se.xml\"><securecookie host=\"^\\.\" name=\"^_gat?$\"/><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=\"^lkml\\.org$\" 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)\" 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\"><exclusion pattern=\"^http://(?:www\\.)?llvm\\.org/+(?!bugs/|svn/)\"/><rule from=\"^http://(?:www\\.)?llvm\\.org/\" to=\"https://llvm.org/\"/></ruleset>", "<ruleset name=\"LM Uni Muenchen\" f=\"LMU-Muenchen.xml\"><securecookie host=\".*\\.uni-muenchen\\.de$\" name=\".+\"/><rule from=\"^http://(cms-static|www\\.en|(?:login|www)\\.portal|www)\\.uni-muenchen\\.de/\" to=\"https://$1.uni-muenchen.de/\"/></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\" platform=\"cacert\" f=\"LPICE.eu.xml\"><securecookie host=\"^www\\.lpice\\.eu$\" 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)\" 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\" default_off=\"failed ruleset test\" 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)\" 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\" 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=\"LaPatilla.com\" default_off=\"failed ruleset test\" 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=\"LaTeX project\" f=\"LaTeX.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"La Cie.com\" 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\" 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\" 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\" 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=\"Laffster\" default_off=\"failed ruleset test\" f=\"Laffster.xml\"><securecookie host=\"^(?:www)?\\.nextstudioapps\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?nextstudioapps\\.com/\" to=\"https://www.nextstudioapps.com/\"/></ruleset>", "<ruleset name=\"Lagard&#232;re Publicit&#233; (partial)\" 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=\"lainchan.org\" f=\"Lainchan.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"LakeBTC.com\" f=\"LakeBTC.com.xml\"><securecookie host=\"^(?:www)?\\.lakebtc\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Lakome.com\" default_off=\"521\" f=\"Lakome.com.xml\"><securecookie host=\"^\\.lakome\\.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=\"Land of Bitcoin.com\" f=\"Land_of_Bitcoin.com.xml\"><securecookie host=\"^(?:www)?\\.landofbitcoin\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Lands End.com\" f=\"Lands_End.com.xml\"><securecookie host=\"^\\.landsend\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?landsend\\.com/\" to=\"https://www.landsend.com/\"/><rule from=\"^http://ocs\\.landsend\\.com/\" to=\"https://ocs.landsend.com/\"/></ruleset>", "<ruleset name=\"Landscape.io (partial)\" default_off=\"failed ruleset test\" 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\" 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://dan\\.langille\\.org/\" to=\"https://dan.langille.org/\"/></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\" 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+)&amp;SiteID=(\\w+)&amp;Zone=(\\w+)$\" to=\"https://ads.lanistaads.com/$2/$2_$1_$3.html\"/></ruleset>", "<ruleset name=\"LankyLife\" f=\"LankyLife.xml\"><securecookie host=\"^\\.lankylife\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Lansforsakringar.se\" platform=\"mixedcontent\" 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=\"Laprox Sites\" default_off=\"failed ruleset test\" f=\"Laprox_Sites.xml\"><securecookie host=\"^support\\.laprox.com$\" name=\".+\"/><securecookie host=\"^laproxsites\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?laprox(?:sites)?\\.com/\" to=\"https://laproxsites.com/\"/><rule from=\"^http://support\\.laprox\\.com/\" to=\"https://support.laprox.com/\"/></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 (buggy)\" default_off=\"breaks streaming\" f=\"Last.fm.xml\"><rule from=\"^http://last\\.fm/\" to=\"https://www.last.fm/\"/><rule from=\"^http://www\\.last\\.fm/(?=join|login|settings/lost(?:password|username))\" to=\"https://www.last.fm/\"/><rule from=\"^http://cdn\\.la?st\\.fm/\" to=\"https://www.last.fm/static/\"/></ruleset>", "<ruleset name=\"LastPass.com\" f=\"LastPass.xml\"><securecookie host=\"^(?:.+\\.)?lastpass\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"lastlog.de\" f=\"Lastlog.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Lastminute.com (partial)\" 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=\"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\" default_off=\"failed ruleset test\" f=\"Laup.xml\"><securecookie host=\"^\\.laup\\.nu$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Lautre.net admin and webmail area\" default_off=\"failed ruleset test\" f=\"Lautre.net.xml\"><rule from=\"^http://admin\\.lautre\\.net/(admin|rc)/\" to=\"https://admin.lautre.net/$1/\"/></ruleset>", "<ruleset name=\"Lavabit\" default_off=\"revoked\" f=\"Lavabit.xml\"><securecookie host=\"^(?:.+\\.)?lavabit\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Lavaboom.com\" f=\"Lavaboom.com.xml\"><securecookie host=\"^technical\\.lavaboom\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Lavasoft (broken)\" default_off=\"https gone\" f=\"Lavasoft.com.xml\"><rule from=\"^http://lavasoft\\.com/\" to=\"https://secure.lavasoft.com/\"/><rule from=\"^http://www\\.lavasoft\\.com/\" to=\"https://secure.lavasoft.com/\"/></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 &amp; 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\" 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\" default_off=\"failed ruleset test\" f=\"Layne_Publications.xml\"><securecookie host=\"^\\.www\\.laynepublications\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"LazyCoins.com\" 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-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\" f=\"LeFebvre.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Le Loop.org\" platform=\"cacert\" f=\"Le_Loop.org.xml\"><securecookie host=\"^(?:git|links)\\.leloop\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Le Monde.fr (partial)\" f=\"Le_Monde.fr.xml\"><securecookie host=\"^\\.?(?:abo|boutique|monabo)\\.lemonde\\.fr$\" 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=\"^my\\.leadpages\\.net$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?leadpages\\.net/\" to=\"https://www.leadpages.net/\"/><rule from=\"^http://(blog|lp|marketplace|my|podcast|support)\\.leadpages\\.net/\" to=\"https://$1.leadpages.net/\"/></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=\"^new\\.leadforensics\\.com$\" name=\".+\"/><rule from=\"^http://tracker\\.leadforensics\\.com/\" to=\"https://secure.leadforensics.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Leader-Manager.com\" default_off=\"failed ruleset test\" 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=\"mismatch\" 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:\" 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=\"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\" default_off=\"failed ruleset test\" 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=\"Learning Biz Package.com\" default_off=\"failed ruleset test\" f=\"Learning_Biz_Package.com.xml\"><securecookie host=\"^(?:w*\\.)?learningbizpackage\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"LeaseRig.net\" 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\" 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=\"Legacy.com (partial)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Legacy.com.xml\"><exclusion pattern=\"^http://(?:www\\.)?legacy\\.com/(?!$|favicon\\.ico|globalscripts/tracking/AIMWrapper\\.js|Images/|(?:[\\w/-]+/)?(?:images/|ObitsTileCorner\\.axd|scripts/|Styles/)|ns/|NS/|OBITUARIES/AffiliateArtwork\\.axd)\"/><exclusion pattern=\"^http://memorialwebsites\\.legacy\\.com/(?!create(?:account|memorial)\\.aspx|images/|styles/)\"/><securecookie host=\"^static\\.legacy\\.com$\" name=\".+\"/><securecookie host=\"^\\.legacyconnect\\.ning\\.com$\" name=\".+\"/><rule from=\"^http://(www\\.)?legacy\\.com/obituaries/Images/\" to=\"https://$1legacy.com/obituaries/images/\"/><rule from=\"^http://((?:cache|mi|static|memorialwebsites|www)\\.)?legacy\\.com/\" to=\"https://$1legacy.com/\"/><rule from=\"^http://connect\\.legacy\\.com/\" to=\"https://legacyconnect.ning.com/\"/><rule from=\"^http://mi-(cache|static)\\.legacy\\.com/\" to=\"https://$1.legacy.com/\"/></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\" f=\"LegiScan.com.xml\"><securecookie host=\"^\\.legiscan\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"legislationsurveys.com\" default_off=\"failed ruleset test\" 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=\"Legolas Media (mismatches)\" default_off=\"mismatch\" 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=\"Legtux (cacert)\" platform=\"cacert\" default_off=\"failed ruleset test\" f=\"Legtux.xml\"><securecookie host=\"^(?:faq|www)\\.legtux\\.org$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?legtux\\.org/\" to=\"https://www.legtux.org/\"/><rule from=\"^http://(davask|faq)\\.legtux\\.org/\" to=\"https://$1.legtux.org/\"/></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\" 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=\"Leicestershire Police\" f=\"LeicestershirePolice.xml\"><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\"><rule from=\"^http://lelo\\.com/\" to=\"https://lelo.com/\"/><rule from=\"^http://([^/:@\\.]+)\\.lelo\\.com/\" to=\"https://$1.lelo.com/\"/></ruleset>", "<ruleset name=\"Lemde.fr (mixed content)\" platform=\"mixedcontent\" 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=\"lennier.info\" f=\"Lennier.info.xml\"><securecookie host=\".\" 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://secure\\.lenos\\.com/\" to=\"https://secure.lenos.com/\"/></ruleset>", "<ruleset name=\"Lenovo (partial)\" f=\"Lenovo.xml\"><exclusion pattern=\"^http://www\\.lenovo\\.com/(?:support|training)/\"/><exclusion pattern=\"http://shop\\.lenovo\\.com/\\w\\w/\\w\\w/services-warranty(?:$|\\?|/)\"/><exclusion pattern=\"^http://outlet\\.lenovo\\.com/(?!.+/images/|.+/js/|.+/seutil\\.workflow:LoadCombinedResource|ISS_Static/|SEUILibrary/)\"/><exclusion pattern=\"http://support\\.lenovo\\.com/+(?!(?:App|~)/.+\\.(?:(?:css|png)(?:$|[?/])|ashx\\?w=\\d)|~/media/images/system/icon/rss\\.ashx)\"/><exclusion pattern=\"^http://(?:www\\.)?lenovo\\.co\\.uk/(?!$)\"/><exclusion pattern=\"^http://(?:blog|consumersupport|news|ovp|www\\.partnerinfo|social)\\.lenovo\\.com/\"/><securecookie host=\"\\.lenovo\\.com$\" name=\"VISITORID\"/><securecookie host=\"(?:forums|\\.?support)\\.lenovo\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?lenovo\\.co\\.uk/$\" to=\"https://www.lenovo.com/uk/en/\"/><rule from=\"^http://(?:www\\.)?lenovo\\.com/depotstatus/?$\" to=\"https://download.lenovo.com/lenovo/content/vru/depotstatus.html\"/><rule from=\"^http://(?:www\\.)?lenovo\\.com/friendsandfamily/?$\" to=\"https://shop.lenovo.com/SEUILibrary/controller/Lenovo:EnterStdAffinity?affinity=lenovofamily&amp;ConfigContext=StdAffinityPortal\"/><rule from=\"^http://(?:(?:www\\.)?lenovo\\.com/link/redirect\\.www\\.lenovo\\.com/)?(?:www\\.)?thinkpad\\.com/.*\" to=\"https://www.lenovo.com/us/en/?cid=SEO-thinkpadcom\"/><rule from=\"^http://lenovo\\.com/\" to=\"https://www.lenovo.com/\"/><rule from=\"^http://forum\\.lenovo\\.com/\" to=\"https://forums.lenovo.com/\"/><rule from=\"^http:///shop\\.lenovo\\.com/us/en/?(?:\\?redir=y&amp;redirsrc=1)?$\" to=\"https://www.lenovo.com/us/en/?redir=y&amp;redirsrc=1\"/><rule from=\"^http://(?:www\\.)?lenovovision\\.com/.*\" to=\"https://www.lenovo.com/\"/><rule from=\"^http:\" to=\"https:\"/><rule from=\"^https://www\\.lenovo\\.com/training/\" to=\"http://www.lenovo.com/training/\" downgrade=\"1\"/><rule from=\"^https://(blog|consumersupport|news|ovp|www\\.partnerinfo|social)\\.lenovo\\.com/\" to=\"http://$1.lenovo.com/\" downgrade=\"1\"/></ruleset>", "<ruleset name=\"Lenovo Orders.com\" default_off=\"missing certificate chain\" f=\"Lenovo_Orders.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Lenovo Picks.com\" default_off=\"missing certificate chain\" f=\"Lenovo_Picks.com.xml\"><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\"><exclusion pattern=\"http://bar\\.leo\\.org/\"/><rule from=\"^http://(?:www\\.)?leo\\.org/\" to=\"https://www.leo.org/\"/><rule from=\"^http://([^/:@]+)\\.leo\\.org/\" to=\"https://$1.leo.org/\"/></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=\"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\" 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)\" default_off=\"failed ruleset test\" 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\" f=\"Lets_Talk_Bitcoin.com.xml\"><securecookie host=\"^\\.letstalkbitcoin\\.com$\" name=\".+\"/><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://account\\.level3\\.com/\" to=\"https://account.level3.com/\"/></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 (partial)\" f=\"Levexis.xml\"><securecookie host=\"^pfa\\.levexis\\.com$\" name=\".+\"/><rule from=\"^http://pfa\\.levexis\\.com/\" to=\"https://pfa.levexis.com/\"/><rule from=\"^http://(?:res|sec)\\.levexis\\.com/\" to=\"https://sec.levexis.com/\"/></ruleset>", "<ruleset name=\"Leviathan Security.com (false MCB)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Leviathan_Security.com-falsemixed.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Leviathan Security.com (partial)\" default_off=\"failed ruleset test\" f=\"Leviathan_Security.com.xml\"><exclusion pattern=\"^http://(?:www\\.)?leviathansecurity\\.com/+blog(?:$|[?/])\"/><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\" 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)\" f=\"Liberty_Flail_Mowers.com.xml\"><rule from=\"^http://(www\\.)?libertyflailmowers\\.com/(?!/*(?:$|\\?))\" to=\"https://$1libertyflailmowers.com/\"/></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\" 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=\"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 (mixedcontent)\" platform=\"mixedcontent\" f=\"LibreOffice-mixedcontent.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"LibreOffice\" f=\"LibreOffice.xml\"><securecookie host=\"^(?:donate|help|www)\\.libreoffice\\.org$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"LibreOffice-Box\" default_off=\"failed ruleset test\" 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=\"^(?:www\\.)?libreplanet\\.org$\" name=\".+\"/><rule from=\"^http://(?:(media\\.)|www\\.)?libreplanet\\.org/\" to=\"https://$1libreplanet.org/\"/></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=\"Libreboot.org\" f=\"Libreboot.org.xml\"><rule from=\"^http:\" to=\"https:\"/></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=\"libsodium.org (partial)\" f=\"Libsodium.org.xml\"><rule from=\"^http://download\\.libsodium\\.org/\" to=\"https://download.libsodium.org/\"/></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)\" 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&#233;.cz\" f=\"Lide.cz.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Lidl (partial)\" default_off=\"failed ruleset test\" f=\"Lidl.xml\"><rule from=\"^http://webforms\\.lidl\\.com/\" to=\"https://webforms.lidl.com/\"/><securecookie host=\"^webforms\\.lidl\\.com$\" name=\".*\"/></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)\" default_off=\"failed ruleset test\" 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\" default_off=\"mismatched\" f=\"Lifehacker.com.xml\"><securecookie host=\"^\\.?lifehacker\\.com$\" name=\".+\"/><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://(d|ms|ads-(?:de|fr|nl)\\.ret01|x)\\.ligatus\\.com/\" to=\"https://$1.ligatus.com/\"/></ruleset>", "<ruleset name=\"Light-Paint.com\" default_off=\"failed ruleset test\" f=\"Light-Paint.com.xml\"><securecookie host=\"^light-paint\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?light-paint\\.com/\" to=\"https://light-paint.com/\"/><rule from=\"^http://secure\\.light-paint\\.com/\" to=\"https://secure.light-paint.com/\"/></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/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"lighttpd.net\" platform=\"cacert\" default_off=\"missing certificate chain\" 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\" platform=\"mixedcontent\" f=\"Lijit.com.xml\"><securecookie host=\"^\\.lijit\\.com$\" name=\".+\"/><securecookie host=\"^\\.secure\\.lijit\\.com$\" name=\".+\"/><rule from=\"^http://(ap\\.|ce\\.)?lijit\\.com/\" to=\"https://$1lijit.com/\"/><rule from=\"^http://(?:secure|www)\\.lijit\\.com/\" to=\"https://secure.lijit.com/\"/></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\" default_off=\"failed ruleset test\" f=\"Likeyed.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Liliani\" default_off=\"failed ruleset test\" 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\" default_off=\"failed ruleset test\" f=\"Lilliputti.com.xml\"><rule from=\"^http://(?:www\\.)?lilliputti\\.com/\" to=\"https://lilliputti.com/\"/></ruleset>", "<ruleset name=\"limango\" 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\" 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=\"^_gat?$\"/><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=\"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=\"mismatch\" 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)\" f=\"Lingospot.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Linguee\" default_off=\"failed ruleset test\" f=\"Linguee.xml\"><rule from=\"^http://(?:www\\.)?linguee\\.(com|de)/\" to=\"https://www.linguee.$1/\"/><rule from=\"^http://tool\\.linguee\\.com/\" to=\"https://tool.linguee.com/\"/></ruleset>", "<ruleset name=\"Link+ Catalog\" f=\"Link-Plus-Catalog.xml\"><exclusion pattern=\"^https://csul\\.iii\\.com/search~S0\\?/(?:[^/]+/){3}bibimage(:$|[^a-zA-Z])\"/><rule from=\"^https://csul\\.iii\\.com/(?=search~S0\\?/(?:[^/]+/){3}/bibimage(?:$|[^a-zA-Z]))\" to=\"http://csul.iii.com/\" downgrade=\"1\"/><rule from=\"^http://csul\\.iii\\.com/\" to=\"https://csul.iii.com/\"/></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://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)\" 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=\"LinksFU.com\" default_off=\"mismatched, self-signed\" f=\"LinksFU.com.xml\"><rule from=\"^http://(?:www\\.)?linksfu\\.com/\" to=\"https://linksfu.com/\"/></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)\" 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=\"Linksys Smart WiFi.com\" f=\"Linksys_Smart_WiFi.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Linksysbycisco.com\" default_off=\"handshake fails\" f=\"Linksysbycisco.com.xml\"><rule from=\"^http://(?:www\\.)?linksysbycisco\\.com/\" to=\"https://www.linksysbycisco.com/\"/></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\" f=\"Linode.xml\"><securecookie host=\"^(?:.*\\.)?linode\\.com$\" name=\".+\"/><rule from=\"^http://status\\.linode\\.com/\" to=\"https://linode.statuspage.io/\"/><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\" default_off=\"failed ruleset test\" 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=\"mismatch\" 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-dev.org\" platform=\"cacert\" default_off=\"failed ruleset test\" f=\"Linux-dev.org.xml\"><securecookie host=\"^www\\.linux-dev\\.org$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?linux-dev\\.org/\" to=\"https://www.linux-dev.org/\"/></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.cn\" f=\"Linux.cn.xml\"><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.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)\" f=\"LinuxFoundation.xml\"><exclusion pattern=\"^http://collabprojects\\.linuxfoundation\\.org/+(?!sites/)\"/><exclusion pattern=\"^http://events(?:stg)?\\.linuxfoundation\\.org/+(?!sites/)\"/><exclusion pattern=\"^http://www\\.linuxfoundation\\.org/(?!about/join/individual(?:$|[?/])|cas\\?|misc/|sites/|user(?:$|\\?))\"/><securecookie host=\"^(?!collabprojects\\.|events\\.).\" name=\".\"/><rule from=\"^http://go\\.linuxfoundation\\.org/+(?:\\?.*)?$\" to=\"https://www.linuxfoundation.org/\"/><rule from=\"^http://go\\.linuxfoundation\\.org/\" to=\"https://pi.pardot.com/\"/><rule from=\"^http:\" to=\"https:\"/></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\" 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\" 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 (partial)\" default_off=\"mismatched, self-signed\" f=\"Linux_Voice.com.xml\"><rule from=\"^http://(?:www\\.)?linuxvoice\\.com/\" to=\"https://www.linuxvoice.com/\"/></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=\"linuxhostsupport.com\" f=\"Linuxhostsupport.com.xml\"><securecookie host=\"^linuxhostsupport\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></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)\" 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 &amp; 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 &amp; Wilkins (problematic)\" default_off=\"mismatch\" 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\" default_off=\"failed ruleset test\" 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=\"connection 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=\"LiteTree.com\" default_off=\"failed ruleset test\" f=\"LiteTree.com.xml\"><securecookie host=\"^\\.litetree\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></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=\"Litecoin24.nl\" f=\"Litecoin24.nl.xml\"><securecookie host=\"^(?:\\.|www\\.)?litecoin24\\.nl$\" 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://((?:api|signup|status|www)\\.)?litmus\\.com/\" to=\"https://$1litmus.com/\"/></ruleset>", "<ruleset name=\"LitmusCDN.com\" f=\"LitmusCDN.com.xml\"><rule from=\"^http://(img|style)\\.litmuscdn\\.com/\" to=\"https://$1.litmuscdn.com/\"/></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\" 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\" f=\"Live.net.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Live.com\" f=\"Live.xml\"><securecookie host=\"^\\.?(?:account|consent|people\\.directory|(?:login\\.)?domains|login|mail|messenger|postmaster|profile|signup)\\.live\\.com$\" name=\".+\"/><rule from=\"^http://live\\.com/\" to=\"https://www.live.com/\"/><rule from=\"^http://[^@:/.]+\\.([^@:/.]+)\\.mail\\.live\\.com/\" to=\"https://$1.mail.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)\" 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=\"^(?:g|www)\\.liveinternet\\.ru$\" name=\".+\"/><rule from=\"^http://liveinternet\\.ru/\" to=\"https://www.liveinternet.ru/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"LiveJasmin (partial)\" f=\"LiveJasmin.xml\"><rule from=\"^http://new\\.livejasmin\\.com/en/auth/([\\w\\-]+)($|\\?)\" to=\"https://new.livejasmin.com/en/auth/$1$2\"/><rule from=\"^http://static\\d\\.new\\.livejasmincdn\\.com/\" to=\"https://new.livejasmin.com/\"/></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)\" f=\"LiveMeme.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"LivePerson.net\" f=\"LivePerson.net.xml\"><securecookie host=\".*\\.liveperson\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"LivePerson (partial)\" platform=\"mixedcontent\" 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=\"mismatch\" f=\"LiveRail-problematic.xml\"><rule from=\"^http://(?:cdn-)?static\\.liverail\\.com/\" to=\"https://cdn-static.liverail.com/\"/></ruleset>", "<ruleset name=\"LiveRail.com (partial) \" 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=\"LiveWyer.com\" f=\"LiveWyer.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"LiveZilla.net (partial)\" 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://www\\.livebusinesschat\\.com/\" to=\"https://www.livebusinesschat.com/\"/></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 Strong.com (partial)\" platform=\"mixedcontent\" f=\"Live_Strong.com.xml\"><securecookie host=\"^(?:.*\\.)?livestrong\\.org$\" name=\".+\"/><rule from=\"^http://(?:livestrong\\.com|i\\.lsimg\\.net)/\" to=\"https://www.livestrong.com/\"/><rule from=\"^http://www\\.livestrong\\.com/(login/|remind/|register/|shop(?:$|\\?))\" to=\"https://www.livestrong.com/$1\"/></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://ecdn\\.liveclicker\\.net/\" to=\"https://ecdn.liveclicker.net/\"/></ruleset>", "<ruleset name=\"Livecoding.tv (partial)\" f=\"Livecoding.tv.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Livefyre (mismatches)\" default_off=\"mismatch\" 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=\"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=\"^.*\\.livestream\\.com$\" 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\" f=\"LivingSocial.co.uk.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"LivingSocial.com (partial)\" 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\" default_off=\"failed ruleset test\" f=\"Lj.Rossia.Org.xml\"><rule from=\"^http://lj\\.rossia\\.org/\" to=\"https://lj.rossia.org/\"/></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\" f=\"Lloydsbank.com.xml\"><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\" default_off=\"failed ruleset test\" 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\" default_off=\"failed ruleset test\" f=\"Lob.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Lobste.rs\" f=\"Lobste.rs.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Locaid (partial)\" default_off=\"failed ruleset test\" f=\"Locaid.xml\"><securecookie host=\"^instantlocatedemo\\.loc-aid\\.com$\" name=\".+\"/><rule from=\"^http://instantlocatedemo\\.loc-aid\\.com/\" to=\"https://instantlocatedemo.loc-aid.com/\"/></ruleset>", "<ruleset name=\"Local.ch\" f=\"Local.ch.xml\"><securecookie host=\"^\\.local\\.ch$\" name=\"^l(?:ang|cl_session_1_production)$\"/><rule from=\"^http://static\\.blog\\.local\\.ch/\" to=\"https://s3-eu-west-1.amazonaws.com/static.blog.local.ch/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"The Local (partial)\" f=\"Local.xml\"><rule from=\"^http://sifomedia\\.thelocal\\.se/\" to=\"https://oasc16.247realmedia.com/\"/><rule from=\"^http://d\\.thelocal\\.com/\" to=\"https://thelocal-d3.openxenterprise.com/\"/></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=\"Local Media.org\" f=\"Local_Media.org.xml\"><securecookie host=\"^www\\.localmedia\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"localbitcoins.com\" f=\"Localbitcoins.com.xml\"><securecookie host=\"^(?:w*\\.)?localbitcoins\\.com$\" 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=\"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=\"Lockbox.com\" default_off=\"failed ruleset test\" f=\"Lockbox.com.xml\"><rule from=\"^http://(support\\.|www\\.)?lockbox\\.com/\" to=\"https://$1lockbox.com/\"/><rule from=\"^http://client\\.lock-box\\.net/\" to=\"https://client.lock-box.net/\"/></ruleset>", "<ruleset name=\"LockerDome.com\" f=\"LockerDome.com.xml\"><rule from=\"^http://(cdn2?\\.|www\\.)?lockerdome\\.com/\" to=\"https://$1lockerdome.com/\"/></ruleset>", "<ruleset name=\"Lockerz (partial)\" default_off=\"failed ruleset test\" f=\"Lockerz.xml\"><rule from=\"^http://shop\\.lockerz\\.com/\" to=\"https://shop.lockerz.com/\"/><rule from=\"^http://static\\.lockerz\\.com/\" to=\"https://d8o6wu1tc2zf3.cloudfront.net/\"/><rule from=\"^http://support\\.lockerz\\.com/generated/\" to=\"https://generated.zendesk.com/generated/\"/><rule from=\"^http://api\\.plixi\\.com/\" to=\"https://api.plixi.com/\"/></ruleset>", "<ruleset name=\"Loctudy\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Loctudy.xml\"><securecookie host=\"^www\\.loctudy\\.fr$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?loctudy\\.fr/\" to=\"https://www.loctudy.fr/\"/></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 (self-signed)\" default_off=\"self-signed\" f=\"Logilab-self-signed.xml\"><rule from=\"^http://(?:www\\.)?logilab\\.org/data/\" to=\"https://www.logilab.org/data/\"/></ruleset>", "<ruleset name=\"Logilab (partial)\" f=\"Logilab.xml\"><securecookie host=\"^(?:.*\\.)?logilab\\.fr$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?logilab\\.fr/data/\" to=\"https://www.logilab.fr/data/\"/><rule from=\"^http://piwik\\.logilab\\.fr/\" to=\"https://piwik.logilab.fr/\"/></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=\"lohud.com (partial)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" 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\" 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://lolagrove\\.com/\" to=\"https://www.lolagrove.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"lolnet.org\" platform=\"cacert\" 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://manager\\.londit\\.com/\" to=\"https://manager.londit.com/\"/></ruleset>", "<ruleset name=\"London 2012 (mismatches)\" default_off=\"mismatch\" 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-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 &amp; 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)\" 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\" 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)\" f=\"LongDate.pl.xml\"><securecookie host=\"^(?:www\\.)?longdate\\.pl$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"LongTail (partial)\" 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)\" 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=\"^\\.longform\\.org$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?longform\\.org/\" to=\"https://longform.org/\"/></ruleset>", "<ruleset name=\"Look.co.uk (mixed content)\" platform=\"mixedcontent\" 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=\"Look to the Stars.org\" f=\"Look_to_the_Stars.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Lookback.io\" f=\"Lookback.io.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"LookingGlass.email\" 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\" f=\"Looloo.com.xml\"><securecookie host=\"^\\.?looloo\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Loomio.org (partial)\" f=\"Loomio.org.xml\"><securecookie host=\"^(?:www)?\\.loomio\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"LoopFuse (partial)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"LoopFuse.xml\"><exclusion pattern=\"^http://(?:www\\.)?loopfuse\\.net/webrecorder/js/listen\\.js\"/><securecookie host=\"^(?:.*\\.)?loopfuse\\.(?:com|net)$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?loopfuse\\.(com|net)/\" to=\"https://www.loopfuse.$1/\"/><rule from=\"^http://(blog|community|help)\\.loopfuse\\.com/\" to=\"https://$1.loopfuse.com/\"/></ruleset>", "<ruleset name=\"LoopPay\" 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\" default_off=\"failed ruleset test\" 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=\"Lorea\" default_off=\"expired\" f=\"Lorea.xml\"><rule from=\"^http:\" to=\"https:\"/></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=\"mismatch\" f=\"Lotus-Cars-mismatches.xml\"><rule from=\"^http://(?:www\\.)?lotuscars\\.com/\" to=\"https://lotuscars.com/\"/></ruleset>", "<ruleset name=\"Lotus Cars (partial)\" default_off=\"connection 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=\"Louis Milan\" default_off=\"failed ruleset test\" f=\"Louis_Milan.xml\"><securecookie host=\"^(?:.*\\.)?louismilan\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Louise Harrison Couture.com\" 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)\" default_off=\"failed ruleset test\" 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\" 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)\" 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\" 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=\"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\" 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)\" 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\" f=\"Loyal_Forex.xml\"><securecookie host=\"^\\.loyalforex\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"lp0.eu (CAcert)\" platform=\"cacert\" f=\"Lp0.xml\"><rule from=\"^http://(\\w+\\.)?lp0\\.eu/\" to=\"https://$1lp0.eu/\"/></ruleset>", "<ruleset name=\"Lubin 1982\" default_off=\"mismatch\" 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\" 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\" 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&#229; Municipality\" f=\"Lulea_Municipality.xml\"><securecookie host=\"^(?:www\\.)?lulea\\.se$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Lule&#229; 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 (partial)\" f=\"LulzBot.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)\" default_off=\"failed ruleset test\" 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.to\" f=\"Lurkmore.to.xml\"><securecookie host=\"^\\.?lurkmo(?:\\.re|re\\.[st]o)$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?lurkmore\\.to/\" to=\"https://lurkmore.to/\"/><rule from=\"^http://(www\\.)?lurkmo(\\.re|re\\.so)/\" to=\"https://$1lurkmo$2/\"/></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://(?:(securesend\\.|webmail\\.|xpress\\.)|www\\.)?luxsci\\.com/\" to=\"https://$1luxsci.com/\"/><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\" 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)\" 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=\"mismatch\" 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-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\" f=\"M-W.co.uk.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"M&amp;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=\"M2fjob.com\" default_off=\"Breaks login functionality\" f=\"M2fjob.com.xml\"><rule from=\"^http://(?:www\\.)?m2fjob\\.com/\" to=\"https://www.m2fjob.com/\"/></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 &amp; Related Disorders Program\" f=\"MA-General-Hospital-OCD.xml\"><rule from=\"^http://(?:www\\.)?mghocd\\.org/\" to=\"https://mghocd.org/\"/></ruleset>", "<ruleset name=\"MAAWG\" default_off=\"failed ruleset test\" f=\"MAAWG.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MAC Paper.com (partial)\" 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\" 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\" 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\" 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=\"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\" 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)\" f=\"MBank.xml\"><securecookie host=\"^(?:cz|sk)\\.mbank\\.eu$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MBnet.fi (partial)\" 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)\" 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://mdts\\.uk\\.com/\" to=\"https://mdts.uk.com/\"/></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=\"MESO-Rx\" 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\" default_off=\"failed ruleset test\" f=\"MFi.re.xml\"><rule from=\"^http:\" to=\"https:\"/></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://www\\.mi5\\.gov\\.uk/\" to=\"https://www.mi5.gov.uk/\"/></ruleset>", "<ruleset name=\"MI6.ua\" default_off=\"connection 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\" f=\"MIMS.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MIN_Commsy\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"MIN-Commsy.xml\"><rule from=\"^http://(?:www\\.)?mincommsy\\.uni-hamburg\\.de/\" to=\"https://www.mincommsy.uni-hamburg.de/\"/></ruleset>", "<ruleset name=\"MIPS Technologies\" default_off=\"failed ruleset test\" f=\"MIPS-Technologies.xml\"><securecookie host=\"^(?:.*\\.)?mips\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></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)\" 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=\"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=\"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=\"^(?:\\.|www\\.)?mkssoftware\\.com$\" 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=\"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)\" 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=\"MMonit.com\" f=\"MMonit.com.xml\"><securecookie host=\"^mmonit\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?mmonit\\.com/\" to=\"https://mmonit.com/\"/></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=\"MNGinteractive.com\" f=\"MNGinteractive.com.xml\"><rule from=\"^http://(?:secure\\.)?extras\\.mnginteractive\\.com/\" to=\"https://secure.extras.mnginteractive.com/\"/></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 (mismatches)\" default_off=\"mismatch\" f=\"MOG-mismatches.xml\"><securecookie host=\"^blog\\.mog\\.com$\" name=\".*\"/><rule from=\"^http://blog\\.mog\\.com/\" to=\"https://blog.mog.com/\"/></ruleset>", "<ruleset name=\"MOG\" f=\"MOG.xml\"><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=\"MP3Skull\" f=\"MP3Skull.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http://(?:www\\.)?mp3skull\\.is/\" to=\"https://mp3skull.wtf/\"/><rule from=\"^http://(?:www\\.)?mp3skull\\.wtf/\" to=\"https://mp3skull.wtf/\"/></ruleset>", "<ruleset name=\"MPG.de\" default_off=\"failed ruleset test\" f=\"MPG.de.xml\"><securecookie host=\"^www\\.(?:cbs\\.)?mpg\\.de$\" name=\".+\"/><rule from=\"^http://((?:www\\.cbs|(?:www\\.)?dsb|www)\\.)?mpg\\.de/\" to=\"https://$1mpg.de/\"/></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\" f=\"MPlayer.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MPort.ua\" default_off=\"connection 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\" 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)\" 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\" default_off=\"expired, mismatch, self-signed\" f=\"MSFN.xml\"><securecookie host=\"^\\.msfn\\.org$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?msfn\\.org/\" to=\"https://www.msfn.org/\"/></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|sg)\\.msn\\.com/\" to=\"https://c.msn.co.jp/\"/><rule from=\"^http://h\\.msn\\.com/\" to=\"https://h.live.com/\"/><rule from=\"^http://imgs1-video\\.msn\\.com/\" to=\"https://imgs1-video.ssl.catalog.video.msn.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)\" 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\" default_off=\"failed ruleset test\" f=\"MTAC.xml\"><rule from=\"^http://(?:www\\.)?mtac\\.org/\" to=\"https://www.mtac.org/\"/></ruleset>", "<ruleset name=\"MTNA\" default_off=\"mismatch\" 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.mtur.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=\"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\" 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&amp;\"/><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&amp;O=SM&amp;\"/><rule from=\"^http://links\\.maas360\\.com/getStartedNow/*$\" to=\"https://trials.maas360.com/forms/register_service_m.php?A=YouTube&amp;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&amp;value=webinar&amp;type=1&amp;include=4&amp;search=1\"/></ruleset>", "<ruleset name=\"MacFound.org (partial)\" 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\" default_off=\"self-signed\" f=\"MacWorld.com.au.xml\"><securecookie host=\"^www\\.macworld\\.com\\.au$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?macworld\\.com\\.au/\" to=\"https://www.macworld.com.au/\"/></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\" default_off=\"failed ruleset test\" 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\" 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\" 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=\"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=\"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\" 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)\" 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\" f=\"Magazin.io.xml\"><rule from=\"^http://www\\.magazin\\.io/\" to=\"https://magazin.io/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"magazinesdirect.com\" default_off=\"failed ruleset test\" f=\"Magazinesdirect.com.xml\"><securecookie host=\"^www\\.magazinesdirect\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mageia.org\" 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 (false MCB)\" platform=\"mixedcontent\" 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 (partial)\" f=\"Magento.xml\"><rule from=\"^http://www\\.magento\\.com/\" to=\"https://magento.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Magento Commerce.com (buggy)\" default_off=\"breaks downloads\" f=\"Magento_Commerce.com.xml\"><exclusion pattern=\"^http://(?:www\\.)?magentocommerce\\.com/download\"/><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)\" 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=\"Mahones Home Decor\" default_off=\"failed ruleset test\" f=\"Mahones_Home_Decor.xml\"><securecookie host=\"^(?:.*\\.)?mahoneshomedecor\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></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=\"^_gat?$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://consult\\.maidstone\\.gov\\.uk/+(?:\\?.*)?$\" to=\"https://maidstone.objective.co.uk/portal\"/><rule from=\"^http://consult\\.maidstone\\.gov\\.uk/\" to=\"https://maidstone.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.com\" f=\"Mail.com.xml\"><securecookie host=\".*\\.mail\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"mail.de\" f=\"Mail.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mail.ru (partial)\" f=\"Mail.ru.xml\"><exclusion pattern=\"^http://go\\.mail\\.ru/+(?!favicon\\.ico|static/)\"/><exclusion pattern=\"^http://ad\\.mail\\.ru/crossdomain.xml\"/><securecookie host=\"^\\.mail\\.ru$\" name=\"^(?:FTID|VID|searchuid)$\"/><securecookie host=\"^(?:1link|allods|\\.bb|cfire|\\.dn|hi-tech|\\.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=\"MailChimp (mismatches)\" default_off=\"mismatch\" f=\"MailChimp-mismatches.xml\"><securecookie host=\"^status\\.mailchimp\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MailChimp (partial)\" f=\"MailChimp.xml\"><exclusion pattern=\"^http://mailchimp\\.com/+(?!(?:blog|login|signup)(?:$|[?/])|assets/)\"/><securecookie host=\"^.+\\.mailchimp\\.com$\" name=\".+\"/><rule from=\"^http://((?:(?:\\w+\\.)?admin|blog|cdn-images|connect|gallery|login|sfbloghost|www)\\.)?mailchimp\\.com/\" to=\"https://$1mailchimp.com/\"/><rule from=\"^http://downloads\\.mailchimp\\.com/\" to=\"https://d1zgderxoe1a.cloudfront.net/\"/><rule from=\"^http://experts\\.mailchimp\\.com/\" to=\"https://mc-experts.herokuapp.com/\"/><rule from=\"^http://static\\.mailchimp\\.com/\" to=\"https://dbfv8p2wljo34.cloudfront.net/\"/></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=\"Mail in a Box.email\" f=\"Mail_in_a_Box.email.xml\"><securecookie host=\"^discourse\\.mailinabox\\.email$\" name=\".+\"/><rule from=\"^http://www\\.mailinabox\\.email/\" to=\"https://box.occams.info/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mailbox.org\" f=\"Mailbox.org.xml\"><securecookie host=\"^mailbox\\.org$\" name=\".+\"/><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=\"^mailgun\\.com$\" 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)\" 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://(www\\.)?mailinator\\.com/\" to=\"https://$1mailinator.com/\"/><rule from=\"^http://([\\w-]+)\\.mailinator\\.com/\" to=\"https://www.mailinator.com/inbox.jsp?to=$1\"/></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)\" 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 (partial)\" f=\"Mailvelope.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"main-host.de\" default_off=\"failed ruleset test\" f=\"Main-host.de.xml\"><rule from=\"^http://(?:www\\.)?main-host\\.de/\" to=\"https://www.main-host.de/\"/><rule from=\"^http://kunden\\.main-host\\.de/\" to=\"https://kunden.main-host.de/\"/></ruleset>", "<ruleset name=\"Maine.gov (partial)\" 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 Designs Doll Fashions\" default_off=\"failed ruleset test\" f=\"Major-Designs-Doll-Fashions.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"major.io\" f=\"Major.io.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Majordomo.ru (false MCB)\" platform=\"mixedcontent\" f=\"Majordomo.ru-falsemixed.xml\"><securecookie host=\"^book\\.majordomo\\.ru$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Majordomo.ru (partial)\" 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=\"Make a Gif.com (false MCB)\" platform=\"mixedcontent\" f=\"Make_a_Gif.com-falsemixed.xml\"><securecookie host=\"^\\.makeagif\\.com$\" name=\".+\"/><rule from=\"^http://makeagif\\.com/\" to=\"https://makeagif.com/\"/></ruleset>", "<ruleset name=\"Make a Gif.com (partial)\" f=\"Make_a_Gif.com.xml\"><exclusion pattern=\"^http://makeagif\\.com/+(?!css/|favicon\\.ico|js/|s/)\"/><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\" default_off=\"failed ruleset test\" 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\" f=\"Makes.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Makewebeasy.com\" default_off=\"connection 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)\" 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=\"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\" default_off=\"failed ruleset test\" f=\"Malvern_Diabetic_Foot.org.xml\"><securecookie host=\"^www\\.malverndiabeticfoot\\.org$\" name=\".+\"/><rule from=\"^http://www\\.malverndiabeticfoot\\.org/\" to=\"https://www.malverndiabeticfoot.org/\"/></ruleset>", "<ruleset name=\"malware-research.org\" f=\"Malware-research.org.xml\"><securecookie host=\"^\\.malware-research\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MalwareTech.net\" 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 (partial)\" 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\" f=\"Malwaredomainlist.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Malwr.com (partial)\" f=\"Malwr.com.xml\"><rule from=\"^http://malwr\\.com/\" to=\"https://malwr.com/\"/></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\" 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=\"manage.cm\" f=\"Manage.cm.xml\"><securecookie host=\"^\\.manage\\.cm$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></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=\"ManageWP.org\" f=\"ManageWP.org.xml\"><securecookie host=\"^\\.managewp\\.org$\" name=\"^(?:__cfduid|cf_clearance)$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Managed Forex Program.com (false MCB)\" platform=\"mixedcontent\" 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)\" f=\"Manchester.gov.uk.xml\"><exclusion pattern=\"http://open\\.manchester\\.gov\\.uk/+(?!favicon\\.ico|open(?:$|[?/]))\"/><securecookie host=\"^\\.\" name=\"^_gat?$\"/><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.objective.co.uk/portal\"/><rule from=\"^http://consult\\.manchester\\.gov\\.uk/\" to=\"https://manchester.objective.co.uk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Marks &amp; 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=\"Mandriva.com (false MCB)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Mandriva.com-falsemixed.xml\"><rule from=\"^http://(blog|forum)\\.mandriva\\.com/(?!cron\\.php|favicon\\.ico|style\\.php|\\w\\w/(?:styles|wp-content)/)\" to=\"https://$1.mandriva.com/\"/></ruleset>", "<ruleset name=\"Mandriva.com\" default_off=\"failed ruleset test\" f=\"Mandriva.com.xml\"><exclusion pattern=\"^http://(?:blog|forum)\\.mandriva\\.com/(?!cron\\.php|favicon\\.ico|style\\.php|\\w\\w/(?:styles|wp-content)/)\"/><securecookie host=\".+\\.mandriva\\.com$\" name=\".+\"/><rule from=\"^http://((?:blog|expert|forum|git|lists|my|qa|serviceplace|svn|webapps|www2?)\\.)?mandriva\\.com/\" to=\"https://$1mandriva.com/\"/><rule from=\"^http://store\\.mandriva\\.com/[^?]*\" to=\"https://serviceplace.mandriva.com/\"/></ruleset>", "<ruleset name=\"Manga (partial)\" 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\" default_off=\"missing certificate chain\" f=\"Manhattan-Institute.xml\"><rule from=\"^http://manhattan-institute\\.org/\" to=\"https://www.manhattan-institute.org/\"/><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=\"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\" f=\"Manx_Computer_Bureau.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ManyVids.com (partial)\" f=\"ManyVids.com.xml\"><securecookie host=\"^(?:www)?\\.manyvids\\.com$\" 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\" default_off=\"expired\" f=\"MapLight.xml\"><rule from=\"^http://(?:www\\.)?maplight\\.org/\" to=\"https://maplight.org/\"/></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\" 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=\"Marhaba Brighton\" default_off=\"failed ruleset test\" f=\"Marhaba_Brighton.xml\"><securecookie host=\"^\\.marhababrighton\\.co\\.uk$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></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 &amp; Associates\" default_off=\"mismatch\" 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\" default_off=\"failed ruleset test\" 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)\" 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\" default_off=\"failed ruleset test\" f=\"Marion_Star.xml\"><rule from=\"^http://(?:cmsimg\\.|www\\.)?marionstar\\.com/\" to=\"https://www.marionstar.com/\"/></ruleset>", "<ruleset name=\"Mark Meyer Photography\" default_off=\"mismatch\" 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\" 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=\"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\" 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://na-abk.marketo.com/\"/><rule from=\"^http://((?:app|app-\\w+|b2c-mlm|community|fr|launchpoint|micro|na-\\w+|nation|(?:app-)?www\\.nation|summit|support|www)\\.)?marketo\\.com/\" to=\"https://$1marketo.com/\"/></ruleset>", "<ruleset name=\"Marketplace.org (problematic)\" default_off=\"cert mismatches\" f=\"Marketplace.org-problematic.xml\"><exclusion pattern=\"^http://(?:www\\.)?marketplace\\.org/(?:favicon\\.ico|misc/|modules/|sites/)\"/><securecookie host=\"^origin-www\\.marketplace\\.org$\" name=\".+\"/><rule from=\"^http://(?:(?:origin-)?www\\.)?marketplace\\.org/\" to=\"https://origin-www.marketplace.org/\"/></ruleset>", "<ruleset name=\"Marketplace.org (partial)\" f=\"Marketplace.org.xml\"><exclusion pattern=\"^http://(?:www\\.)?marketplace\\.org/(?!favicon\\.ico|misc/|modules/|sites/)\"/><securecookie host=\"^\\.marketplace\\.org$\" name=\"^WT_FPC$\"/><rule from=\"^http://thenumbers\\.marketplace\\.org/\" to=\"https://markets.financialcontent.com/\"/><rule from=\"^http://tracker\\.financialcontent\\.com/\" to=\"https://tracker.financialcontent.com/\"/></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\" platform=\"mixedcontent\" f=\"Marketwatch.com.xml\"><securecookie host=\"^\\.marketwatch\\.com$\" name=\".*\"/><rule from=\"^http://(www\\.)?marketwatch\\.com/\" to=\"https://secure.marketwatch.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Marketwire\" default_off=\"failed ruleset test\" 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=\"Markup\" default_off=\"mismatch\" f=\"Markup.xml\"><rule from=\"^http://(?:www\\.)?markup\\.io/\" to=\"https://markup.io/\"/></ruleset>", "<ruleset name=\"marmotte.net (partial)\" platform=\"cacert\" 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\" default_off=\"failed ruleset test\" 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=\"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 (false MCB)\" platform=\"mixedcontent\" f=\"Marvel.com-falsemixed.xml\"><rule from=\"^http://marvel\\.com:81/\" to=\"https://marvel.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Marvel.com (partial)\" f=\"Marvel.com.xml\"><exclusion pattern=\"^http://(?:www\\.)?marvel\\.com(?::81/|/+universe(?:$|[?/]))\"/><exclusion pattern=\"^http://marvel\\.com/universe3zx/index\\.php\"/><exclusion pattern=\"^http://secure\\.marvel\\.com/(?:\\?.*)?$\"/><exclusion pattern=\"^http://subscriptions\\.marvel\\.com/(?!$|css/|i/|images/|(?:login|store/shippingr)\\.asp|script/)\"/><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\" 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\\.)?marxists\\.org/\" to=\"https://www.marxists.org/\"/><rule from=\"^http://(?:www\\.)?marx\\.org/\" to=\"https://www.marxists.org/\"/></ruleset>", "<ruleset name=\"Maryland Shooters\" default_off=\"failed ruleset test\" f=\"Maryland_Shooters.xml\"><securecookie host=\"^(?:www\\.)?mdshooters\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mashape.com (partial)\" f=\"Mashape.com.xml\"><securecookie host=\"^(?:id|www)\\.mashape\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mashery clients\" default_off=\"failed ruleset test\" 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)\" 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)\" 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=\"Massdrop.com\" f=\"Massdrop.com.xml\"><securecookie host=\"^www\\.massdrop\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></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://(?:www\\.)?mastercard\\.com/\" to=\"https://www.mastercard.com/\"/><rule from=\"^http://newsroom\\.mastercard\\.com/\" to=\"https://newsroom.mastercard.com/\"/><rule from=\"^http://smetrics\\.mastercardintl\\.com/\" to=\"https://smetrics.mastercardintl.com/\"/><rule from=\"^http://(?:www\\.)?securecode\\.com/\" to=\"https://www.securecode.com/\"/></ruleset>", "<ruleset name=\"MasterChan.org\" 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\" 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=\"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)\" 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=\"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=\"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://(www\\.)?mathjobs\\.org/\" to=\"https://www.mathjobs.org/\"/></ruleset>", "<ruleset name=\"Mathtag.com\" f=\"Mathtag.com.xml\"><securecookie host=\"^\\.mathtag\\.com$\" 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\" default_off=\"failed ruleset test\" 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=\"Matthew Petroff\" default_off=\"self-signed\" f=\"Matthew_Petroff.xml\"><securecookie host=\"^www\\.mpetroff\\.net$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?mpetroff\\.net/\" to=\"https://www.mpetroff.net/\"/></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)\" 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=\"^\\.(?:[\\w-]\\.)?maxcdn\\.com$\" name=\"^optimizely\\w+$\"/><securecookie host=\"^secure(?:-cdn)?\\.maxcdn\\.com$\" name=\".+\"/><rule from=\"^http://maxcdn\\.com/\" to=\"https://www.maxcdn.com/\"/><rule from=\"^http://blog\\.maxcdn\\.com/+\" to=\"https://www.maxcdn.com/blog/\"/><rule from=\"^http://support\\.maxcdn\\.com/+\" to=\"https://www.maxcdn.com/one/\"/><rule from=\"^http://status\\.maxcdn\\.com/\" to=\"https://maxcdn.statuspage.io/\"/><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=\"Maxim-IC.com\" 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)\" 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=\"Maxymiser (partial)\" 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=\"mismatch\" 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=\"mismatch\" 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\" 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\" f=\"MazaCoin.org.xml\"><securecookie host=\"^(?:www\\.)?mazacoin\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"mazacha.in\" 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\"><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=\"McAfee MX Logic\" f=\"McAfee-MX-Logic.xml\"><securecookie host=\"^(?:.*\\.)?mxlogic\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?mxlogic\\.com/\" to=\"https://www.mxlogic.com/\"/><rule from=\"^http://([^\\.]\\.)?(console|portal)\\.mxlogic\\.com/\" to=\"https://$1$2.mxlogic.com/\"/></ruleset>", "<ruleset name=\"McAfee.com (partial)\" f=\"McAfee.xml\"><exclusion pattern=\"^http://service\\.mcafee\\.com/(?!CSS/|css/|images/|locale/|(?:Script|Web)Resource\\.axd)\"/><exclusion pattern=\"^http://www\\.mcafee\\.com/+(?!favicon\\.ico|img/|static/|\\w\\w/img/)\"/><securecookie host=\".+\\.mcafee\\.com$\" name=\".+\"/><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=\"McAfee SECURE.com\" f=\"McAfee_SECURE.xml\"><securecookie host=\"^(?:www\\.)?mcafeesecure\\.com$\" 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)\" default_off=\"failed ruleset test\" f=\"McClatchy_Interactive.com.xml\"><rule from=\"^http://media\\.mcclatchyinteractive\\.com/\" to=\"https://media.mcclatchyinteractive.com/\"/></ruleset>", "<ruleset name=\"McDelivery Malaysia\" f=\"McDelivery-Malaysia.xml\"><securecookie host=\"^(www\\.)?mcdelivery\\.com\\.my$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"McEvoy Group (partial)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" 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\" 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\" 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\" default_off=\"failed ruleset test\" 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=\"connection 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=\"mdosche.de\" 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\" 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\" 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)\" 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\" default_off=\"failed ruleset test\" f=\"Medgadget.xml\"><rule from=\"^http://(www\\.)?medgadget\\.com/\" to=\"https://$1medgadget.com/\"/><rule from=\"^http://cdn\\.medgadget\\.com/\" to=\"https://dsuktxmmtzwrn.cloudfront.net/\"/></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=\"mismatch\" 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)\" default_off=\"failed ruleset test\" 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=\"MediaEd.org\" 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 (buggy)\" default_off=\"https://www.eff.org/r.2arJ\" f=\"MediaFire.xml\"><rule from=\"^http://(?:www\\.)?mediafire\\.com/(?=blank\\.html|images/|js/|s(?:elect_account_type|sl_login)\\.php)\" to=\"https://www.mediafire.com/\"/><rule from=\"^http://(?:orig-|static)?cdn\\.mediafire\\.com/\" to=\"https://origin-cdn.mediafire.com/\"/><rule from=\"^http://(download\\d+|cdnssl)\\.mediafire\\.com/\" to=\"https://$1.mediafire.com/\"/></ruleset>", "<ruleset name=\"MediaGoblin.org\" default_off=\"expired, self-signed\" f=\"MediaGoblin.org.xml\"><securecookie host=\"^(?:issues|wiki)\\.mediagoblin\\.org$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?mediagoblin\\.org/\" to=\"https://www.mediagoblin.org/\"/><rule from=\"^http://(docs|issues|wiki)\\.mediagoblin\\.org/\" to=\"https://$1.mediagoblin.org/\"/></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=\"MediaInfo\" f=\"MediaInfo.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MediaLayer.com (mismatches)\" default_off=\"Certificate mismatch\" f=\"MediaLayer.com-mismatches.xml\"><rule from=\"^http://(?:www\\.)?medialayer\\.com/\" to=\"https://www.medialayer.com/\"/></ruleset>", "<ruleset name=\"MediaLayer.com (partial)\" default_off=\"failed ruleset test\" f=\"MediaLayer.com.xml\"><rule from=\"^http://(clients|support)\\.medialayer\\.com/\" to=\"https://$1.medialayer.com/\"/><rule from=\"^http://(?:www\\.)?medialayer\\.net/\" to=\"https://www.medialayer.net/\"/></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\" 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|static)\\.mediaworks\\.co\\.nz/\" to=\"https://$1.mediaworks.co.nz/\"/></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=\"Mediabistro.com\" 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=\"mismatch\" f=\"Mediaite.xml\"><rule from=\"^http://(media|videos)\\.mediaite\\.com/\" to=\"https://$1.mediaite.com/\"/></ruleset>", "<ruleset name=\"Medialand.ru (partial)\" 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.se\" f=\"Mediamarkt.se.xml\"><rule from=\"^http://(?:www\\.)?mediamarkt\\.se/\" to=\"https://www.mediamarkt.se/\"/></ruleset>", "<ruleset name=\"M&#233;diam&#233;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)\" 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\" 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 Express\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Medical_Express.xml\"><rule from=\"^http://(www\\.)?medicalxpress\\.com/\" to=\"https://$1medicalxpress.com/\"/><rule from=\"^http://m\\.ph-cdn\\.com/tmpl/\" to=\"https://medicalxpress.com/tmpl/\"/></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\" default_off=\"failed ruleset test\" 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\" default_off=\"failed ruleset test\" f=\"MediciGlobal.com-falsemixed.xml\"><securecookie host=\"^mediciglobal\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MediciGlobal.com (partial)\" f=\"MediciGlobal.com.xml\"><exclusion pattern=\"^http://mediciglobal\\.com/+(?!css/|favicon\\.ico|images/|js/)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MedicineNet.com (broken)\" default_off=\"Bad redirects\" f=\"MedicineNet.com.xml\"><exclusion pattern=\"^http://images\\.medicinenet\\.com/css/\"/><exclusion pattern=\"^http://(?:www\\.)?medicinenet\\.com/(?!images/)\"/><rule from=\"^http://(?:images\\.|(www\\.))?medicinenet\\.com/\" to=\"https://$1medicinenet.com/\"/></ruleset>", "<ruleset name=\"MedicinesComplete.com\" f=\"MedicinesComplete.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mediekompaniet.com (partial)\" 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\" default_off=\"failed ruleset test\" 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=\"Medium.com\" f=\"Medium.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Medius Corp.com (partial)\" default_off=\"failed ruleset test\" f=\"Medius_Corp.com.xml\"><rule from=\"^http://services-sj\\.mediuscorp\\.com/\" to=\"https://services-sj.mediuscorp.com/\"/></ruleset>", "<ruleset name=\"Medius Viewer.com\" default_off=\"failed ruleset test\" 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\" 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\" f=\"MeetMe.xml\"><securecookie host=\"^m?\\.meetme\\.com$\" name=\".+\"/><rule from=\"^http://((?:api|blinddate|canvas|causes|cpa|feed|friends|games|help|home|live|m|match|messages|nerve|photos|platform|profile|ssl|vip|www)\\.)?meetme\\.com/\" to=\"https://$1meetme.com/\"/><rule from=\"^http://en\\.mtmei18n\\.com/\" to=\"https://en.mtmei18n.com/\"/></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=\"Meetey.com\" default_off=\"failed ruleset test\" f=\"Meetey.com.xml\"><securecookie host=\"^(?:w*\\.)?meetey\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></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)\" 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 (partial)\" f=\"Meetup.xml\"><securecookie host=\"^\\.meetup\\.com$\" name=\"^MEETUP_(?:AFFIL|TRACK)$\"/><rule from=\"^http://(www\\.)?meetup\\.com/(?=favicon\\.ico)\" to=\"https://$1meetup.com/\"/><rule from=\"^http://(?:secure|static[12])\\.meetup\\.com/\" to=\"https://secure.meetup.com/\"/></ruleset>", "<ruleset name=\"MegWorld\" 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://community\\.mega\\.com/\" to=\"https://community.mega.com/\"/></ruleset>", "<ruleset name=\"Mega\" f=\"Mega.xml\"><securecookie host=\"^mega\\.(co\\.)?nz$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MegaBigPower.com\" f=\"MegaBigPower.com.xml\"><securecookie host=\"^(?:www\\.)?megabigpower\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MegaFiles.se\" default_off=\"self-signed\" f=\"MegaFiles.se.xml\"><securecookie host=\"^\\.megafiles\\.se$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?megafiles\\.se/\" to=\"https://megafiles.se/\"/></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)\" 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\" 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=\"Mega Youtube Views\" default_off=\"failed ruleset test\" f=\"Mega_Youtube_Views.xml\"><securecookie host=\"^(?:www\\.)?megayoutubeviews\\.com$\" name=\".+\"/><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=\"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\" f=\"Mekanist.xml\"><securecookie host=\"^www\\.mekanist\\.net$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?mekanist\\.net/\" to=\"https://www.mekanist.net/\"/></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=\"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=\"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=\"Memberful.com\" 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=\"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\" f=\"Memorial-University.xml\"><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=\"mismatch\" 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=\"MemphisCourtside.com\" default_off=\"expired, self-signed\" f=\"MemphisCourtside.xml\"><securecookie host=\"^memphiscourtside.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?memphiscourtside\\.com/\" to=\"https://memphiscourtside.com/\"/></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=\"needs clearnet testing\" f=\"Mencap.org.uk.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mendeley.com (partial)\" 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=\"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=\"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)\" 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://bugs\\.merproject\\.org/\" to=\"https://bugs.merproject.org/\"/></ruleset>", "<ruleset name=\"mer.io\" f=\"Mer.io.xml\"><securecookie host=\"^(?:w*\\.)?mer\\.io$\" name=\".+\"/><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=\"Mercado Bitcoin.net\" f=\"Mercado_Bitcoin.net.xml\"><securecookie host=\"^(?:www\\.)?mercadobitcoin\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mercatus Center\" default_off=\"expired, self-signed\" f=\"Mercatus-Center.xml\"><rule from=\"^http://(?:www\\.)?mercatus\\.org/sites/\" to=\"https://mercatus.org/sites/\"/></ruleset>", "<ruleset name=\"MerchDirect (partial)\" 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\" 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)\" 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=\"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\" default_off=\"self-signed\" f=\"Mersenne.org.xml\"><securecookie host=\"^\\.mersenne\\.org$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?mersenne\\.org/\" to=\"https://www.mersenne.org/\"/></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=\"mismatch\" 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=\"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=\"MetaPress (partial)\" default_off=\"failed ruleset test\" f=\"MetaPress.org.xml\"><rule from=\"^http://(www\\.)?metapress\\.org/(dynamic-file\\.axd|images/)\" to=\"https://www.metapress.org/$2\"/></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=\"Metal-Detector-Town.com\" 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\" 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=\"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\" 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\" 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://ctrack\\.metrics34\\.com/\" to=\"https://ctrack.metrics34.com/\"/></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=\"mismatch\" 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=\"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\" default_off=\"failed ruleset test\" 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\" 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=\"Mi4urinsk.ru\" default_off=\"self-signed\" f=\"Mi4urinsk.ru.xml\"><rule from=\"^http://(?:www\\.)?mi4urinsk\\.ru/\" to=\"https://mi4urinsk.ru/\"/></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\" default_off=\"missing certificate chain\" 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://collect\\.cn\\.miaozhen\\.com/\" to=\"https://collect.cn.miaozhen.com/\"/></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=\"Michael W Lucas.com\" f=\"Michael_W_Lucas.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Michal Hru&#353;eck&#253;\" 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.jp\" f=\"MicroAd.jp.xml\"><securecookie host=\"^\\.(?:send\\.)?microad\\.jp$\" name=\".+\"/><rule from=\"^http://((?:d-track\\.)?send\\.|www\\.)?microad\\.jp/\" to=\"https://$1microad.jp/\"/><rule from=\"^http://d-cache\\.microad\\.jp/\" to=\"https://d-track.send.microad.jp/\"/></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)\" default_off=\"failed ruleset test\" 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\" 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=\"Microca.st\" default_off=\"failed ruleset test\" f=\"Microca.st.xml\"><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://www\\.tickerassist\\.co\\.uk/\" to=\"https://www.tickerassist.co.uk/\"/></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\" 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 (mixed content)\" platform=\"mixedcontent\" f=\"Microsoft-mixedcontent.xml\"><exclusion pattern=\"^http://blogs\\.msdn\\.com/.*\\?Redirected=true\"/><rule from=\"^http://blogs\\.msdn\\.com/(.*(?:\\.aspx|\\.xml|/))?$\" to=\"https://blogs.msdn.com/$1?Redirected=true\"/></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://answers\\.microsoft\\.com/(?!\\w\\w-\\w\\w/\\w+/forum/[\\w-]+/[\\w-]+/|static/)\"/><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://tag\\.microsoft\\.com/+(?![Aa]pp_[Tt]hemes/|favicon\\.ico|Images/|[Ll]ibraries/|[Ww]eb[Rr]esource\\.axd)\"/><exclusion pattern=\"http://social\\.technet\\.microsoft\\.com/+wiki(?!/CustomWidgets/|/themes/|/Utility/)\"/><exclusion pattern=\"^http://go\\.microsoft\\.com/fwlink/\\?LinkID=219472&amp;clcid=0x409$\"/><securecookie host=\"^\\.microsoft\\.com$\" name=\"^(?:A|GsfxStatsLog|MC1|MS0|OnlineTrackingV2\\.0|R|RioTracking\\..+|s_.+)$\"/><securecookie host=\"^(?:account|advertising|advertise\\.bingads|choice|commerce|connect|curah|ieonline|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://i\\d\\.connect\\.microsoft\\.com/\" to=\"https://services.connect.microsoft.com/\"/><rule from=\"^http://events\\.microsoft\\.com/.*\" to=\"https://msevents.microsoft.com/cui/default.aspx?culture=en-US&amp;community=1\"/><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\" 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 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=\"Midas Green Tech.com (false MCB)\" platform=\"mixedcontent\" f=\"Midas_Green_Tech.com-falsemixed.xml\"><securecookie host=\"^(?:www\\.)?midasgreentech\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Midas Green Tech.com (partial)\" f=\"Midas_Green_Tech.com.xml\"><exclusion pattern=\"^http://(?:www\\.)?midasgreentech\\.com/+(?!data/|favicon\\.ico|images/|plugins/|theme/)\"/><rule from=\"^http:\" to=\"https:\"/></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\" default_off=\"failed ruleset test\" f=\"Midnight-Commander.xml\"><securecookie host=\"^(?:www\\.)?midnight-commander\\.org$\" 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=\"mightyupload.com\" f=\"Mightyupload.com.xml\"><securecookie host=\"^\\.?mightyupload\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mijn D66.nl\" f=\"Mijn_D66.nl.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mikaela.info\" f=\"Mikaela.info.xml\"><securecookie host=\"^(?:.*\\.)?mikaela\\.info\" name=\".*\"/><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\" default_off=\"expired\" 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=\"Mikel Olasagasti Uranga (partial)\" platform=\"cacert\" default_off=\"failed ruleset test\" f=\"Mikel-Olasagasti-Uranga.xml\"><rule from=\"^http:\" to=\"https:\"/></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=\"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=\"milodev.com\" default_off=\"failed ruleset test\" f=\"Milodev.com.xml\"><securecookie host=\"^\\.milodev\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Milonic (partial)\" default_off=\"failed ruleset test\" 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://clientchat\\.minacs\\.com/\" to=\"https://clientchat.minacs.com/\"/></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=\"Minaterm.com\" default_off=\"missing certificate chain\" f=\"Minaterm.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mind.org.uk (partial)\" f=\"Mind.xml\"><exclusion pattern=\"^http://shop\\.mind\\.org\\.uk/+(?!assets/|favicon\\.ico|images/|stylesheets/)\"/><exclusion pattern=\"^http://www\\.mind\\.org\\.uk/+(?!assets/|favicon\\.ico|images/|javascripts/|login(?:$|\\?|/)|shop/|stylesheets/)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MindModeling.org\" f=\"MindModeling.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MindTouch.com\" f=\"MindTouch.com.xml\"><securecookie host=\"^\\.mindtouch\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MindTouch.us\" 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=\"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=\"^www\\.minecraft\\.net$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?minecraft\\.net/\" to=\"https://www.minecraft.net/\"/></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)\" 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\" f=\"MiniLock.io.xml\"><securecookie host=\"^\\.minilock\\.io$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MiniMundos online.com\" 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)\" 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 CDN.com\" default_off=\"Breaks functionality\" 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=\"Ministry of Justice\" f=\"Ministry_of_Justice.xml\"><securecookie host=\"^\\.www\\.justice\\.gov\\.uk$\" 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\" 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=\"Minus.com (mismatches)\" default_off=\"mismatched\" f=\"Minus.com-mismatches.xml\"><securecookie host=\"^\\.?feedback\\.minus\\.com$\" name=\".+\"/><rule from=\"^http://feedback\\.minus\\.com/\" to=\"https://feedback.minus.com/\"/></ruleset>", "<ruleset name=\"Minus.com (partial)\" platform=\"mixedcontent\" f=\"Minus.com.xml\"><exclusion pattern=\"^http://(?:blog|feedback)\\.\"/><securecookie host=\"^\\.?minus\\.com$\" name=\".+\"/><rule from=\"^http://([^/:@\\.]+\\.)?min(?:\\.us|us\\.com)/\" to=\"https://$1minus.com/\"/></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\" default_off=\"failed ruleset test\" 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\" default_off=\"self-signed\" f=\"Mirt.net.xml\"><rule from=\"^http://(?:www\\.)?mirt\\.net/\" to=\"https://www.mirt.net/\"/></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=\"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)\" f=\"Mitre.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mitro.co\" 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\" 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&#233;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\" default_off=\"failed ruleset test\" 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=\"Mjanja.ch\" f=\"Mjanja.ch.xml\"><rule from=\"^http://www\\.mjanja\\.ch/\" to=\"https://mjanja.ch/\"/><rule from=\"^http:\" to=\"https:\"/></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=\"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\"><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=\"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=\"moar.so\" f=\"Moar.so.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></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\" f=\"MobiGum.com.xml\"><securecookie host=\"^\\.mobigum\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MobiHand clients\" default_off=\"failed ruleset test\" f=\"MobiHand-clients.xml\"><rule from=\"^http://store\\.androidguys\\.com/common_files/\" to=\"https://www.mobihand.com/common_files/\"/></ruleset>", "<ruleset name=\"MobiHand\" default_off=\"failed ruleset test\" f=\"MobiHand.xml\"><securecookie host=\"^(?:www\\.)?mobi(?:hand|reach)\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?mobihand\\.com/\" to=\"https://www.mobihand.com/\"/><rule from=\"^http://(www\\.)?mobireach\\.com/\" to=\"https://$1mobireach.com/\"/></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\" f=\"Mobile01.com.xml\"><exclusion pattern=\"^http://www\\.mobile01\\.com/(?!login\\.php)\"/><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=\"MobileRead (partial)\" default_off=\"failed ruleset test\" f=\"MobileRead.xml\"><securecookie host=\"^dev.mobileread.com$\" name=\".+\"/><rule from=\"^http://dev\\.mobileread\\.com/\" to=\"https://dev.mobileread.com/\"/></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\" 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\" 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\" 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\" f=\"Modern.IE.xml\"><securecookie host=\"^(?:\\.devchannel|\\.?remote|\\.status|\\.www)?\\.modern\\.ie$\" name=\".+\"/><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\" default_off=\"failed ruleset test\" 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\" 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=\"Modlife\" default_off=\"failed ruleset test\" f=\"Modlife.xml\"><rule from=\"^http://(?:www\\.)?modlife\\.com/\" to=\"https://modlife.com/\"/><rule from=\"^http://images\\.modlife\\.com/\" to=\"https://d1gy20lpqgjyb5.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Modulus.io (partial)\" 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=\"Moechel.com\" f=\"Moechel.com.xml\"><securecookie host=\"^moechel\\.com$\" name=\".+\"/><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://moja\\.tatrabanka\\.sk/\" to=\"https://moja.tatrabanka.sk/\"/></ruleset>", "<ruleset name=\"Mojandroid.sk\" f=\"Mojandroid.sk.xml\"><rule from=\"^http://(?:www\\.)?mojandroid\\.sk/\" to=\"https://www.mojandroid.sk/\"/></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\" f=\"Monarch.co.uk.xml\"><rule from=\"^http://(?:www\\.)?monarch\\.co\\.uk/\" to=\"https://www.monarch.co.uk/\"/></ruleset>", "<ruleset name=\"Monash.edu (partial)\" 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:\" 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=\"mismatch\" 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=\"Money.pl (false MCB)\" platform=\"mixedcontent\" f=\"Money.pl-falsemixed.xml\"><securecookie host=\".\\.money\\.pl$\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Money.pl (partial)\" 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=\"mismatch\" 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&#8217;s Audio\" default_off=\"mismatch\" 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)\" 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\" f=\"Monster_WoW.xml\"><securecookie host=\"^(?:.*\\.)?monster-wow\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Monterey Bay Aquarium\" default_off=\"failed ruleset test\" f=\"Monterey_Bay_Aquarium.xml\"><securecookie host=\"^www\\.montereybayaquarium\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Monthly Review.org\" f=\"Monthly_Review.org.xml\"><securecookie host=\"^monthlyreview\\.org$\" name=\".+\"/><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\" 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\" default_off=\"failed ruleset test\" 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=\"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=\"connection dropped\" f=\"Moreinterop.com.xml\"><rule from=\"^http://moreinterop\\.com/\" to=\"https://www.moreinterop.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Morello.se\" default_off=\"failed ruleset test\" f=\"Morello.se.xml\"><securecookie host=\"^\\.morello\\.se$\" name=\".+\"/><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=\"Mork Namnelag\" default_off=\"self-signed\" f=\"Mork_Namnelag.xml\"><rule from=\"^http://(?:www\\.)?mork\\.no/\" to=\"https://www.mork.no/\"/></ruleset>", "<ruleset name=\"Morning Star Online.co.uk\" 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\" 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\" default_off=\"failed ruleset test\" 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&amp;$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=\"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://www\\.motesplatsen\\.se/\" to=\"https://www.motesplatsen.se/\"/></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\" f=\"Motherpipe.co.uk.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Motherpipe.com (partial)\" 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)\" 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=\"MountainCode.eu\" f=\"MountainCode.eu.xml\"><securecookie host=\"^\\.mountaincode\\.eu$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></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\" 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=\"Mousematrix.com\" default_off=\"expired\" f=\"Mousematrix.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mov.ad\" 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\" default_off=\"failed ruleset test\" 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\" default_off=\"failed ruleset test\" f=\"MoveOn.xml\"><rule from=\"^http://(?:www\\.)?moveon\\.org/([a-z0-9]+)$\" to=\"https://www.moveon.org/$1/\"/><rule from=\"^http://(pol|civic|civ)\\.moveon\\.org/([a-z0-9]+)$\" to=\"https://$1.moveon.org/$2/\"/><rule from=\"^https?://civic\\.moveon\\.org/([a-z0-9]+){1}/{2,}\" to=\"https://civic.moveon.org/$1/\"/><rule from=\"^http://(?:www\\.)?moveon\\.org/r\\?\" to=\"https://www.moveon.org/r/?\"/><rule from=\"^http://(?:www\\.)?moveon\\.org/((?:[^a-z0-9]+)|(?:[a-z0-9]{2,}\\?)|(?:[a-qs-z0-9]\\?)|(?:[a-z0-9]+[^a-z0-9?]+)){1}\" to=\"https://www.moveon.org/$1\"/><rule from=\"^http://(pol|civ)\\.moveon\\.org/([^a-z0-9]+|(?:[a-z0-9]+[^a-z0-9]+)|$){1}\" to=\"https://$1.moveon.org/$2\"/><rule from=\"^http://civic\\.moveon\\.org/((?:[^a-z0-9]+)|(?:[a-z0-9]+[^a-z0-9/]+)|(?:[a-z0-9]+/(?:$|[^/]+))|$){1}\" to=\"https://civic.moveon.org/$1\"/><rule from=\"^https?://static\\.petitions\\.moveon\\.org/\" to=\"https://d83190g0d3lhr.cloudfront.net/\"/><rule from=\"^http://(?:www\\.)?moveonpac\\.org/\" to=\"https://www.moveonpac.org/\"/></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\" 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\" 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\" 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\" default_off=\"failed ruleset test\" 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=\"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\" default_off=\"mismatched, self-signed\" f=\"Movim.xml\"><securecookie host=\"^wiki\\.movim\\.eu$\" name=\".+\"/><rule from=\"^http://(?:((?:blog|planet|pod|wiki)\\.)|www\\.)?movim\\.eu/\" to=\"https://$1movim.eu/\"/></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=\"mismatch\" 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=\"Mozest\" default_off=\"expired\" f=\"Mozest.xml\"><rule from=\"^http:\" to=\"https:\"/></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 (partial)\" f=\"Mozilla.com.tw.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mozilla.com (partial)\" 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)\" 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://(?:cdn|getpersonas-cdn|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|(?!image)\\w+\\.e|graphs|krakenbenchmark|mig|releases|sfx-images|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://labs\\.mozilla\\.org/+\" to=\"https://mozillalabs.com/\"/><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)\" 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=\"Persona.org\" f=\"Mozilla_Persona.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Webmaker.org\" 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 (false MCB)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Mozo.com.au-falsemixed.xml\"><rule from=\"^http://(www\\.mozo\\.co|(?:www\\.)?mozo\\.com\\.au)/\" to=\"https://$1/\"/></ruleset>", "<ruleset name=\"Mozo.com.au (partial)\" f=\"Mozo.com.au.xml\"><rule from=\"^http://(www\\.mozo\\.co|(?:www\\.)?mozo\\.com\\.au)/(?=favicon\\.ico|images/|mozo_favicon\\.ico)\" to=\"https://$1/\"/><rule from=\"^http://mozo4-assets\\.mozo\\.co/\" to=\"https://d2z6hwhdmvwrl2.cloudfront.net/\"/><rule from=\"^http://news-assets\\.mozo\\.com\\.au/\" to=\"https://d3ce7u6cfep64i.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Mozy\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" 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\" default_off=\"mismatched, self-signed\" f=\"Mpagano.com.xml\"><rule from=\"^http://(?:www\\.)?mpagano\\.com/\" to=\"https://www.mpagano.com/\"/></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\" 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)\" default_off=\"failed ruleset test\" f=\"Mstar.com.xml\"><rule from=\"^http://euim\\.mstar\\.com/\" to=\"https://euim.mstar.com/\"/></ruleset>", "<ruleset name=\"Mt.Gox\" 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\" 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=\"mthode.org\" f=\"Mthode.org.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\" default_off=\"failed ruleset test\" f=\"MugenMonkey.com.xml\"><securecookie host=\"^\\.?mugenmonkey\\.com$\" 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=\"Mullberry\" default_off=\"expired, mismatch, self-signed\" f=\"Mullberry.xml\"><securecookie host=\"^trac\\.mulberrymail\\.com$\" name=\".*\"/><rule from=\"^http://(?:(trac\\.)|www\\.)?mulberrymail\\.com/\" to=\"https://$1mulberrymail.com/\"/></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\" 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)\" 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\" default_off=\"failed ruleset test\" 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&amp;profile=eds&amp;groupid=infolib&amp;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)\" f=\"Muse.mu.xml\"><exclusion pattern=\"^http://(?:www\\.)?muse\\.mu/+(?!(?:_handlers|_iiwm|_popup|_static|_widgets|ugc_1)/|(?:Script|Web)Resource\\.axd(?:$|\\?))\"/><rule from=\"^http://(?:www\\.)?muse\\.mu/\" to=\"https://muse-cdn.warnerartists.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Muselive.com (partial)\" f=\"Muselive.com.xml\"><securecookie host=\"^community\\.muselive\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MuseoDelPrado.es\" 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://client\\.museter\\.com/\" to=\"https://client.museter.com/\"/></ruleset>", "<ruleset name=\"Museum of Science (problematic)\" default_off=\"expired, mismatched, self-signed\" f=\"Museum_of_Science-problematic.xml\"><exclusion pattern=\"^http://(?:www\\.)?mos\\.org/sites/dev-elvis\\.mos\\.org/themes/.*\\.(?:jp|pn)g$\"/><rule from=\"^http://(?:www\\.)?mos\\.org/\" to=\"https://mos.org/\"/></ruleset>", "<ruleset name=\"Museum of Science (partial)\" f=\"Museum_of_Science.xml\"><exclusion pattern=\"http://legacy\\.mos\\.org/(?!media/)\"/><securecookie host=\"^\\.mos\\.org$\" name=\"^MOS_store$\"/><rule from=\"^http://(?:www\\.)?mos\\.org/sites/dev-elvis\\.mos\\.org/themes/(.*)\\.(jp|pn)g$\" to=\"https://store.mos.org/common/themes/$1.$2g\"/><rule from=\"^http://(legacy|store)\\.mos\\.org/\" to=\"https://$1.mos.org/\"/></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)\" 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)\" 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=\".*\\.musixmatch\\.com$\" 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=\"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 (partial)\" default_off=\"self-signed\" f=\"Mutt.xml\"><securecookie host=\"^dev\\.mutt\\.org$\" name=\".*\"/><rule from=\"^http://bugs\\.mutt\\.org/\" to=\"https://dev.mutt.org/trac/\"/><rule from=\"^http://dev\\.mutt\\.org/\" to=\"https://dev.mutt.org/\"/></ruleset>", "<ruleset name=\"Mutterschaftsgeld.de\" 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\" default_off=\"failed ruleset test\" 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=\"Muusikoiden.net\" f=\"Muusikoiden.net.xml\"><securecookie host=\"^muusikoiden\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Muut.com\" f=\"Muut.com.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=\"^\\.mxmcdn\\.net$\" 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=\"MyBB Central\" f=\"MyBB_Central.xml\"><securecookie host=\"^\\.mybbcentral\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MyBenefits CalWIN\" default_off=\"failed ruleset test\" 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 (false MCB)\" platform=\"mixedcontent\" f=\"MyCanvas.com-falsemixed.xml\"><securecookie host=\"^(?:.*\\.)?mycanvas\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?mycanvas\\.com/\" to=\"https://secure.mycanvas.com/\"/></ruleset>", "<ruleset name=\"MyCanvas.com (partial)\" f=\"MyCanvas.com.xml\"><exclusion pattern=\"^http://(?:www\\.)?mycanvas\\.com/+(?!App_Themes/|favicon\\.ico)\"/><rule from=\"^http://(?:secure\\.|www\\.)?mycanvas\\.com/\" to=\"https://secure.mycanvas.com/\"/></ruleset>", "<ruleset name=\"MyCharity.ie\" 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=\"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\" default_off=\"failed ruleset test\" 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=\"MyGNU.de\" default_off=\"expired\" f=\"MyGNU.de.xml\"><securecookie host=\"^www\\.mygnu\\.de$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MyGurlFund\" f=\"MyGirlFund.xml\"><securecookie host=\"^\\.mygirlfund\\.com$\" 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)\" 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=\"MyOpenID (buggy)\" default_off=\"https://www.eff.org/r.1apH\" f=\"MyOpenID.xml\"><exclusion pattern=\"http://www\\.myopenid\\.com/server\"/><rule from=\"^http://(?:www\\.)?myopenid\\.com/\" to=\"https://myopenid.com/\"/></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\" f=\"MyPlayDirect.xml\"><securecookie host=\"^(?:.+\\.)?myplaydirect\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?myplaydirect\\.com/\" to=\"https://www.myplaydirect.com/\"/></ruleset>", "<ruleset name=\"MyPoints\" f=\"MyPoints.xml\"><rule from=\"^http://(?:www\\.)?mypoints\\.com/\" to=\"https://www.mypoints.com/\"/></ruleset>", "<ruleset name=\"myPortal.im\" default_off=\"failed ruleset test\" f=\"MyPortal.im.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MyPreferences.com (partial)\" f=\"MyPreferences.com.xml\"><securecookie host=\"^pc2\\.mypreferences\\.com$\" name=\".+\"/><rule from=\"^http://pc2\\.mypreferences\\.com/\" to=\"https://pc2.mypreferences.com/\"/></ruleset>", "<ruleset name=\"myRA.gov\" f=\"MyRA.gov.xml\"><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\" default_off=\"failed ruleset test\" 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)\" 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\" f=\"MySociety.org.xml\"><securecookie host=\"^www\\.mysociety\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"myStockOptions.com\" default_off=\"failed ruleset test\" f=\"MyStockOptions.com.xml\"><securecookie host=\"^(?:www)?\\.mystockoptions\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?mystockoptions\\.com/\" to=\"https://www.mystockoptions.com/\"/></ruleset>", "<ruleset name=\"mySweetIQ.com\" default_off=\"failed ruleset test\" f=\"MySweetIQ.com.xml\"><securecookie host=\"^mysweetiq\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MyTUM.de\" f=\"MyTUM.de.xml\"><securecookie host=\"portal.mytum\\.de$\" name=\".*\"/><rule from=\"^http://portal\\.mytum\\.de/\" to=\"https://portal.mytum.de/\"/></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 (problematic)\" default_off=\"breaks MyWOT extension\" f=\"MyWOT-problematic.xml\"><rule from=\"^http://api\\.mywot\\.com/\" to=\"https://api.mywot.com/\"/></ruleset>", "<ruleset name=\"MyWOT (partial)\" 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\" default_off=\"failed ruleset test\" 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\" f=\"My_LiveChat.xml\"><securecookie host=\"^\\.mylivechat\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"My Media Magnet\" default_off=\"expired, self-signed\" f=\"My_Media_Magnet.xml\"><securecookie host=\"^mymediamagnet\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?mymediamagnet\\.com/\" to=\"https://mymediamagnet.com/\"/></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\" 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\" 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://secure\\.admin\\.myvirtualpaper\\.com/\" to=\"https://secure.admin.myvirtualpaper.com/\"/></ruleset>", "<ruleset name=\"My Year Book (partial)\" default_off=\"failed ruleset test\" f=\"My_Year_Book.xml\"><rule from=\"^http://live\\.assets\\.mybcdna\\.com/\" to=\"https://live.assets.mybcdna.com/\"/><rule from=\"^http://(assets|content1)\\.myyearbook\\.com/\" to=\"https://$1.myyearbook.com/\"/></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=\"Mybb.com\" f=\"Mybb.com.xml\"><securecookie host=\"^(www\\.|blog\\.|mods\\.)?mybb\\.com\" name=\".+\"/><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://mycliplister\\.com/\" to=\"https://mycliplister.com/\"/></ruleset>", "<ruleset name=\"myconan.net\" f=\"Myconan.net.xml\"><rule from=\"^http://(?:www\\.)?myconan\\.net/\" to=\"https://myconan.net/\"/><rule from=\"^http://blog\\.myconan\\.net/\" to=\"https://blog.myconan.net/\"/></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)\" 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=\"connection 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\" 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://mylevel3\\.net/\" to=\"https://mylevel3.net/\"/></ruleset>", "<ruleset name=\"Mynaweb.com (partial)\" 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)\" f=\"Mynewsdesk.com.xml\"><securecookie host=\"^\\.mynewsdesk.com$\" name=\".+\"/><rule from=\"^http://get\\.mynewsdesk\\.com/(?=assets/|favicon\\.ico)\" to=\"https://get-mynewsdesk.herokuapp.com/\"/><rule from=\"^http://((?:insight|publish|www)\\.)?mynewsdesk\\.com/\" to=\"https://$1mynewsdesk.com/\"/></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\" f=\"Myricom.com.xml\"><securecookie host=\"^(?:www\\.)?myricom\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MyrtleBeachShows.com (partial)\" default_off=\"failed ruleset test\" f=\"MyrtleBeachShows.com.xml\"><securecookie host=\"^secure\\.myrtlebeachshows\\.com$\" name=\".+\"/><rule from=\"^http://secure\\.myrtlebeachshows\\.com/\" to=\"https://secure.myrtlebeachshows.com/\"/></ruleset>", "<ruleset name=\"Mysitemyway\" default_off=\"failed ruleset test\" f=\"Mysitemyway.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=\"^\\.myspace\\.com$\" 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://(?:www\\.)?mzstatic\\.com/\" to=\"https://www.apple.com/\"/><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\" 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\" 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://secure\\.n-able\\.com/\" to=\"https://secure.n-able.com/\"/></ruleset>", "<ruleset name=\"n.runs\" default_off=\"failed ruleset test\" f=\"N.runs.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"n0where.org\" f=\"N0where.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NAACP\" f=\"NAACP.xml\"><securecookie host=\"^\\.?donate\\.naacp\\.org$\" name=\".+\"/><rule from=\"^http://(?:donate\\.|www\\.)?naacp\\.org/\" to=\"https://donate.naacp.org/\"/></ruleset>", "<ruleset name=\"NAACP Company Store\" default_off=\"failed ruleset test\" f=\"NAACP_Company_Store.xml\"><securecookie host=\"^(?:www\\.)?naacpcompanystore\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NAACP Image Awards\" default_off=\"failed ruleset test\" f=\"NAACP_Image_Awards.xml\"><rule from=\"^http://www\\.naacpimageawards\\.net/\" to=\"https://www.naacpimageawards.net/\"/></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\" 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\" default_off=\"failed ruleset test\" 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\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://mars\\.nasa\\.gov/\" to=\"https://mars.jpl.nasa.gov/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NASA.gov (partial)\" f=\"NASA.gov.xml\"><exclusion pattern=\"^http://reverb\\.echo\\.nasa\\.gov/+(?!reverb/(?:(?:orders|shopping_cart)(?:$|[?/])|assets/))\"/><exclusion pattern=\"^http://mars(?:\\.jpl)?\\.nasa\\.gov/+(?!favicon\\.ico|images/|layout/)\"/><exclusion pattern=\"^http://rosetta\\.jpl\\.nasa\\.gov/+(?!favicon\\.ico|modules/|sites/)\"/><exclusion pattern=\"^http://smap\\.jpl\\.nasa\\.gov/+(?!assets/|system/)\"/><securecookie host=\"^(?!reverb\\.echo\\.|smap\\.jpl\\.).\" name=\".\"/><rule from=\"^http://www\\.data\\.nasa\\.gov/\" to=\"https://data.nasa.gov/\"/><rule from=\"^http://heasarc\\.nasa\\.gov/\" to=\"https://heasarc.gsfc.nasa.gov/\"/><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://nccs\\.nasa\\.gov/\" to=\"https://www.nccs.nasa.gov/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NASASpaceFlight.com (partial)\" f=\"NASASpaceFlight.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NASDAQ (partial)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" 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=\"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=\"NBC News (partial)\" default_off=\"mismatch\" 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)\" 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\" f=\"NCISF.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NCJS.gov\" f=\"NCJRS.gov.xml\"><securecookie host=\"^(?:puborder\\.|www\\.)?ncjrs\\.gov$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NCL.ac.uk (partial)\" 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\" default_off=\"failed ruleset test\" 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=\"NElhage.com\" f=\"NElhage.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NFrance (partial)\" f=\"NFrance.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NFsec.pl\" f=\"NFsec.pl.xml\"><securecookie host=\"^\\w\" name=\".\"/><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\" default_off=\"failed ruleset test\" 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)\" f=\"NHS.xml\"><exclusion pattern=\"http://(?:www\\.)?bhamcommunity\\.nhs\\.uk/+(?![Ee]asy[Ss]ite[Ww]eb/)\"/><exclusion pattern=\"^http://(?:www\\.)?nhs\\.uk/+(?!(?:10-minute-shake-up|change4life-beta/campaigns/sugar-smart/home|[Ss]ervice-[Ss]earch/performance/search|start4life/signups/new)(?:$|\\?)|Personalisation/(?:Login|Registration|ResetPassword)\\.aspx|[Ss]ervice-[Ss]earch/[Cc]ontent/(?:css|img)/|css/|img/)\"/><securecookie host=\"^\\.\" name=\"^_gat?$\"/><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://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)\" 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&#233;zet (partial)\" 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)\" 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)\" platform=\"mixedcontent\" f=\"NK_News.org.xml\"><securecookie host=\"^(?:\\.|shop\\.|www\\.)?nknews\\.org$\" 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 CACert\" platform=\"cacert\" f=\"NLnet-Labs-cacert.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NLnet Labs\" f=\"NLnet-Labs.xml\"><securecookie host=\"^wiki\\.opendnssec\\.org$\" name=\".*\"/><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\" f=\"NNM-Club.xml\"><securecookie host=\"^(?:.*\\.)?nnm-club\\.me$\" name=\".+\"/><rule from=\"^http://(?:[\\w\\W]+\\.)?nnm-club\\.me/\" to=\"https://nnm-club.me/\"/></ruleset>", "<ruleset name=\"NOO.org.uk\" 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)\" default_off=\"failed ruleset test\" 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://www\\.npted\\.org/\" to=\"https://www.npted.org/\"/></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://storefront\\.nr-assets\\.net/\" to=\"https://storefront.nr-assets.net/\"/></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=\"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\" 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\" 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)\" platform=\"cacert\" f=\"NTP.org.xml\"><securecookie host=\"^(?:support|lists)\\.ntp\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NTT.com\" 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=\"Nttdocomo.com\" default_off=\"400\" f=\"NTTDocomo.com.xml\"><rule from=\"^http://nttdocomo\\.com/\" to=\"https://www.nttdocomo.com/\"/><rule from=\"^http:\" to=\"https:\"/></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)\" 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\" 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\" 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 (false MCB)\" platform=\"cacert mixedcontent\" f=\"NUUG.no-falsemixed.xml\"><rule from=\"^http://memberdb\\.nuug\\.no/(?=favicon\\.ico|/*global\\.css)\" to=\"https://memberdb.nuug.no/\"/></ruleset>", "<ruleset name=\"NUUG.no (problematic)\" default_off=\"mismatched\" platform=\"cacert\" f=\"NUUG.no-problematic.xml\"><rule from=\"^http://(planet|wiki)\\.nuug\\.no/\" to=\"https://$1.nuug.no/\"/></ruleset>", "<ruleset name=\"NUUG.no (partial)\" platform=\"cacert\" f=\"NUUG.no.xml\"><exclusion pattern=\"^http://memberdb\\.nuug\\.no/+(?!favicon\\.ico|global\\.css)\"/><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)\" 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)\" f=\"NVidia.eu.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"nVidia.com (partial)\" f=\"NVidia.xml\"><exclusion pattern=\"^http://store\\.nvidia\\.com/(?!DRHM/|store\\?Action=(?:DisplayEditProfilePage|DisplayHelpPage)(?:$|&amp;)|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\" 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=\"mismatch\" f=\"NY-Tech-Meetup.xml\"><rule from=\"^http://(?:www\\.)?nytm\\.org/made/\" to=\"https://nytm.org/made/\"/></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)\" default_off=\"failed ruleset test\" 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\" f=\"NYI.net-falsemixed.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NYI.net (partial)\" 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 (partial)\" default_off=\"needs testing\" f=\"NYT.com.xml\"><rule from=\"^http://(?:www\\.)?nyt\\.com/\" to=\"https://www.nytimes.com/\"/><rule from=\"^http://a1\\.nyt\\.com/\" to=\"https://assets-origin.nytimes.com/\"/><rule from=\"^http://(?:css|i1|static01)\\.nyt\\.com/\" to=\"https://static.nytimes.com/\"/><rule from=\"^http://js\\.nyt\\.com/\" to=\"https://www.nytimes.com/\"/></ruleset>", "<ruleset name=\"NYT Co.com (partial)\" f=\"NYT_Co.com.xml\"><securecookie host=\"^\\.nytco\\.com$\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NYT eXaminer.com\" f=\"NYT_eXaminer.com.xml\"><securecookie host=\"^(?:www)?\\.nytexaminer\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NYTimes.com (needs ruleset tests)\" default_off=\"Needs ruleset tests\" f=\"NYTimes.xml\"><exclusion pattern=\"^http://www\\.nytimes\\.com/+(?!adx/|favicon\\.ico|(?:books|membercenter|store)(?:$|[?/]))\"/><exclusion pattern=\"^http://(?:www\\.)?nytimes\\.com/svc/community/V3/requestHandler\"/><exclusion pattern=\"^http://.+\\.blogs\\.nytimes\\.com/(?!favicon\\.ico)\"/><exclusion pattern=\"^http://graphics8\\.nytimes\\.com/bi/js/tagx/tagx\\.js\"/><exclusion pattern=\"^http://graphics8\\.nytimes\\.com/packages/flash/multimedia/\"/><exclusion pattern=\"^http://jobmarket\\.nytimes\\.com/(?!adx/|images/)\"/><exclusion pattern=\"^http://travel\\.nytimes\\.com/(?!\\d{4}/\\d\\d/\\d\\d/|adx/|js/)\"/><securecookie host=\"^\\.nytimes\\.com$\" name=\"^(?:___utm\\w+|adxc\\w|_chartbeat2|incap_ses_\\d+_\\d+|visid_incap_\\d+)$\"/><securecookie host=\"^(?:homedelivery|markets\\.on|wt\\.o)\\.nytimes\\.com$\" name=\".\"/><rule from=\"^http://\\w+\\.blogs\\.nytimes\\.com/\" to=\"https://www.nytimes.com/\"/><rule from=\"^http://(?:graphics\\d?|json8)\\.nytimes\\.com/\" to=\"https://static.nytimes.com/\"/><rule from=\"^http://pimage\\.timespeople\\.nytimes\\.com/\" to=\"https://s3.amazonaws.com/pimage.timespeople.nytimes.com/\"/><rule from=\"^http://travel\\.nytimes\\.com/\" to=\"https://www.nytimes.com/\"/><rule from=\"^http:\" to=\"https:\"/><rule from=\"^https://www\\.nytimes\\.com/svc/community/V3/requestHandler(?=$|\\?)\" to=\"http://www.nytimes.com/svc/community/V3/requestHandler\" downgrade=\"1\"/></ruleset>", "<ruleset name=\"NY Times at Home.com\" f=\"NYTimes_at_Home.com.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\" default_off=\"failed ruleset test\" 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=\"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\" f=\"Nadim.computer.xml\"><securecookie host=\"^\\.nadim\\.computer$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"nadir.org (partial)\" platform=\"cacert\" default_off=\"failed ruleset test\" f=\"Nadir.org.xml\"><securecookie host=\"^(?:23b|wiki)\\.nadir\\.org$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?nadir\\.org/\" to=\"https://www.nadir.org/\"/><rule from=\"^http://(23b|code|deb|webschleuder|wiki)\\.nadir\\.org/\" to=\"https://$1.nadir.org/\"/><rule from=\"^http://schleuder2?\\.nadir\\.org/\" to=\"https://schleuder2.nadir.org/\"/></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=\"Naked citizens.eu\" default_off=\"expired\" f=\"Naked_citizens.xml\"><securecookie host=\"^(?:www\\.)?nakedcitizens\\.eu$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"N&#228;k&#246;vammaisten keskusliitto\" default_off=\"failed ruleset test\" 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\" 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=\"^(?:\\.community|support|\\.?www|manage\\.www)\\.namecheap\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NameID.org\" f=\"NameID.org.xml\"><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=\"NamePros.com\" f=\"NamePros.com.xml\"><securecookie host=\"^\\.namepros\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NameSpace.us\" default_off=\"expired\" f=\"NameSpace.us.xml\"><securecookie host=\"^(?:www\\.)?namespace\\.us$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></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 (partial)\" default_off=\"mismatched, self-signed\" f=\"Namei.org.xml\"><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=\"Nametiles.co\" f=\"Nametiles.co.xml\"><securecookie host=\".\" 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)\" f=\"Nanigans.xml\"><securecookie host=\"^lp\\.nanigans\\.com$\" 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=\"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)\" default_off=\"failed ruleset test\" 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\" 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=\"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\" 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://secure\\.arb-forum\\.com/\" to=\"https://secure.arb-forum.com/\"/></ruleset>", "<ruleset name=\"National Association of Theatre Owners (partial)\" default_off=\"mismatch\" f=\"National-Association-of-Theatre-Owners.xml\"><exclusion pattern=\"^http://(?:www\\.)?natoonline\\.org/blog(?:/?$|/(?:\\d{4}|about|author|category|comments|disclaimer|feed|tag)/)\"/><exclusion pattern=\"^http://(?:www\\.)?natoonline\\.org/images/(?:\\w+\\.(?:gif|jpg))$\"/><exclusion pattern=\"^http://(?:www\\.)?natoonline\\.org/infocus/(?:\\d\\d\\w+|infocusimages)/\"/><rule from=\"^http://(?:www\\.)?natoonline\\.org/(?:~natoonli/)?\" to=\"https://natoonline.org/~natoonli/\"/><rule from=\"^https://(?:www\\.)?natoonline\\.org/(?:~natoonli/)?images/(\\w+\\.(gif|jpg))$\" to=\"http://natoonline.org/images/$1\" downgrade=\"1\"/><rule from=\"^https://(?:www\\.)?natoonline\\.org/~natoonli/infocus/(\\d\\d\\w+)/\" to=\"http://natoonline.org/infocus/$1/\" downgrade=\"1\"/></ruleset>", "<ruleset name=\"National Broadcasting Company\" default_off=\"mismatch\" 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)\" default_off=\"failed ruleset test\" 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)\" 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\\.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=\"mismatch\" 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\" platform=\"mixedcontent\" 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\"><rule from=\"^http://(?:((?:staging\\.)?extranet\\.|(?:integration\\.|qa\\.|staging\\.)?igloo\\.|integration\\.|monitor\\.|qa\\.|staging\\.)|www\\.)?nsidc\\.org/\" to=\"https://$1nsidc.org/\"/></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)\" 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)\" 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 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 Consumer Protection Week\" f=\"National_Consumer_Protection_Week.xml\"><rule from=\"^http://((?:military\\.)?ncpw|protecciondelconsumidor)\\.gov/\" to=\"https://www.$1.gov/\"/><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)\" default_off=\"failed ruleset test\" 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)\" 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=\"National Park Service (partial)\" f=\"National_Park_Service.xml\"><securecookie host=\"^.+\\.nps\\.gov$\" name=\".+\"/><rule from=\"^http://(irma|science\\.nature|ncptt|npssa|parkplanning|pepc|zionpermits)\\.nps\\.gov/\" to=\"https://$1.nps.gov/\"/></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=\"National Transport Safety Board\" default_off=\"failed ruleset test\" f=\"National_Transport_Safety_Board.xml\"><rule from=\"^http://(?:www\\.)?ntsb\\.gov/\" to=\"https://www.ntsb.gov/\"/></ruleset>", "<ruleset name=\"National Travel Health Network and Centre (NaTHNaC)\" 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 (partial)\" default_off=\"failed ruleset test\" f=\"National_Wildlife_Foundation.xml\"><securecookie host=\"^www\\.nwf\\.org$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?nwf\\.org/\" to=\"https://www.nwf.org/\"/><rule from=\"^http://online\\.nwf\\.org/(?!site/PageServer)\" to=\"https://online.nwf.org/\"/></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)\" 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 Eating Disorders Association\" f=\"Natl-Eating-Disorders-Assoc.xml\"><exclusion pattern=\"^http://(?:www.)?nationaleatingdisorders\\.org/photo-gallery/\"/><exclusion pattern=\"^http://(?:www.)?nationaleatingdisorders\\.org/cmtadmin/\"/><rule from=\"^(?:http://(?:www\\.)?|https://)nationaleatingdisorders\\.org/\" to=\"https://www.nationaleatingdisorders.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 Suicide Prevention Lifeline\" platform=\"mixedcontent\" f=\"Natl-Suicide-Prevention-Lifeline.xml\"><rule from=\"^http://(?:www\\.)?suicidepreventionlifeline\\.org/\" to=\"https://www.suicidepreventionlifeline.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\" 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)\" default_off=\"failed ruleset test\" f=\"Natural-Environment-Research-Council.xml\"><securecookie host=\"^hds\\.nerc\\.ac\\.uk$\" name=\".*\"/><rule from=\"^http://hds\\.nerc\\.ac\\.uk/\" to=\"https://hds.nerc.ac.uk/\"/></ruleset>", "<ruleset name=\"Natural Message.com\" 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\" f=\"Natural_Skin_Shop.xml\"><securecookie host=\"^.*\\.naturalskinshop\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Nature (partial)\" f=\"Nature.xml\"><securecookie host=\"^secure\\.nature\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?nature\\.com/(cimages/|common/|favicon\\.ico|info/|myaccount|(?:view/(?:\\w+/)?)?(?:imag|styl)es/)\" to=\"https://secure.nature.com/$1\"/><rule from=\"^http://s(ecure|tatus)\\.nature\\.com/\" to=\"https://s$1.nature.com/\"/></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\" default_off=\"failed ruleset test\" f=\"Naughty_Dog.xml\"><securecookie host=\"^(?:w*\\.)?naughtydog\\.com$\" name=\".+\"/><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\" f=\"Naukri.xml\"><rule from=\"^http://login\\.naukri\\.com/\" to=\"https://login.naukri.com/\"/></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=\"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=\"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\" 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=\"Neave.tv\" default_off=\"redirects to http\" f=\"Neave.tv.xml\"><securecookie host=\"^\\.neave\\.tv$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Nebelwelt.net\" f=\"Nebelwelt.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Neb&#283;&#382;&#237;.cz\" f=\"Nebezi.cz.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Nebula\" 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://(\\w\\w\\.|www\\.)?necessaryandproportionate\\.(net|org)/\" to=\"https://$1necessaryandproportionate.$2/\"/></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=\"Neko.im\" f=\"Neko.im.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Nelly.com\" default_off=\"failed ruleset test\" 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\" 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\" 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:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NemLog-in.dk\" f=\"NemLog-in.dk.xml\"><securecookie host=\"^nemlog-in\\.dk$\" 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)\" 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=\"NeoCities.org\" f=\"NeoCities.org.xml\"><rule from=\"^http:\" to=\"https:\"/></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 (partial)\" f=\"NeoOffice.org.xml\"><exclusion pattern=\"^http://(?:www\\.)?neooffice\\.org/(?!default\\.css|favicon\\.png|images/|neojava/\\w\\w/(?:contact|download|(?:old)?langpackdownload|mirrors)\\.php)\"/><exclusion pattern=\"^http://neowiki\\.neooffice\\.org/(?!index\\.php/Special:Userlogin|skins/)\"/><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=\"^(?:w*\\.)?neomailbox\\.(?:com|net)$\" name=\".+\"/><rule from=\"^http://(www\\.)?neomailbox\\.(com|net)/\" to=\"https://$1neomailbox.$2/\"/></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)\" 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\" 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.net (partial)\" f=\"Neowin.net.xml\"><rule from=\"^http://(?:www\\.)?neowin\\.net/(?=css/|favicon\\.ico|forum(?:$|[?/])|images/|js/)\" to=\"https://www.neowin.net/\"/></ruleset>", "<ruleset name=\"nerdpol.ch\" f=\"Nerdpol.ch.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Nerds Nook.com\" 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)\" 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://discussions\\.nessus\\.org/\" to=\"https://discussions.nessus.org/\"/></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&#233; (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&#233; Sch&#246;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)\" f=\"Net-A-Porter.com.xml\"><securecookie host=\".*\\.net-a-porter\\.com$\" 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\" f=\"Net-Backup.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Net Communities (partial)\" default_off=\"failed ruleset test\" f=\"Net-Communities.xml\"><rule from=\"^http://cdn\\.itproportal\\.com/\" to=\"https://itpp.s3.amazonaws.com/\"/><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=\"missing certificate chain\" f=\"Net-Dynamics.xml\"><securecookie host=\"^(?:.*\\.)?p3pwiz.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Net-Housting.de (partial)\" 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-Safe\" f=\"Net-Safe.xml\"><securecookie host=\"^\\.net-safe\\.info$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></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)\" 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\" 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)\" f=\"NetClean.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NetCologne.de (partial)\" f=\"NetCologne.xml\"><securecookie host=\"^tracking\\.netcologne\\.de$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NetEase.com\" f=\"NetEase.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"netFORUMpro.com\" default_off=\"failed ruleset test\" f=\"NetFORUMpro.com.xml\"><securecookie host=\"^(?:prous01\\.|www\\.)?netforumpro\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NetFronts (mismatches)\" default_off=\"mismatch\" 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://www\\.netgo\\.hu/\" to=\"https://www.netgo.hu/\"/></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://secure\\.netpr\\.pl/\" to=\"https://secure.netpr.pl/\"/></ruleset>", "<ruleset name=\"NetPivotal\" default_off=\"failed ruleset test\" f=\"NetPivotal.xml\"><securecookie host=\"^www\\.netpivotal\\.(?:co\\.uk|com|eu)$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?netpivotal\\.(co\\.uk|com|eu)/\" to=\"https://www.netpivotal.$1/\"/><rule from=\"^http://alpha\\.netpivotal\\.com/\" to=\"https://alpha.netpivotal.com/\"/></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)\" 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://ssl\\.net-m\\.net/\" to=\"https://ssl.net-m.net/\"/></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\" f=\"Net_Nanny.xml\"><securecookie host=\"^(?:www\\.)?netnanny\\.com$\" 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=\"Netcloude.cz\" 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)\" platform=\"mixedcontent\" f=\"Netdoktor.se.xml\"><securecookie host=\"^(?:www\\.)?netdoktor\\.se$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Netelligent.ca (partial)\" f=\"Netelligent.xml\"><securecookie host=\"^(?:\\w+\\.)?netelligent\\.ca$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Netfilter.org (partial)\" platform=\"cacert\" 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\" 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\"><exclusion pattern=\"^http://(?:blog|ca|developer|ir|techblog|ukirelandblog)\\.netflix\\.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Netflix.com (partial)\" default_off=\"Breaks site\" f=\"Netflix.xml\"><securecookie host=\"^\\w\" name=\".\"/><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=\"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://puck\\.nether\\.net/\" to=\"https://puck.nether.net/\"/></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)\" 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&amp;auid=(\\d+)&amp;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\" 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\" 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\" 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\" 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\" default_off=\"expired, self-signed\" f=\"Netveano.xml\"><rule from=\"^http://(?:www\\.)?netveano\\.com/\" to=\"https://netveano.com/\"/></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\" 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 Science Center blog\" default_off=\"mismatch\" f=\"Network-Science-Center-blog.xml\"><rule from=\"^http://(?:blog\\.|www\\.)?netsciwestpoint\\.org/\" to=\"https://blog.netsciwestpoint.org/\"/></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&amp;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=\"NetworkWorld (mismatches)\" default_off=\"mismatch\" 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://signup\\.network-maker\\.com/\" to=\"https://signup.network-maker.com/\"/></ruleset>", "<ruleset name=\"Network Time Foundation.org (partial)\" platform=\"cacert\" default_off=\"failed ruleset test\" f=\"Network_Time_Foundation.org.xml\"><securecookie host=\"^rt\\.nwtime\\.org$\" name=\".+\"/><rule from=\"^http://((?:ic|imap|shop|www)\\.)?networktimefoundation\\.org/\" to=\"https://$1networktimefoundation.org/\"/><rule from=\"^http://((?:ic|lists|rt|www)\\.)?nwtime\\.org/\" to=\"https://$1nwtime.org/\"/></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=\"^(?:(?:www\\.)?kundenserver42|stu)\\.kundenserver42\\.de$\" name=\".+\"/><rule from=\"^http://((?:www\\.)?kundenserver42|stu)\\.kundenserver42\\.de/\" to=\"https://$1.kundenserver42.de/\"/></ruleset>", "<ruleset name=\"Neustar.biz (partial)\" 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\" 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\" 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\"/><securecookie host=\"^(?:.*\\.)?newrelic\\.com$\" name=\".+\"/><rule from=\"^http://blog-assets\\.newrelic\\.com/\" to=\"https://blog.newrelic.com/\"/><rule from=\"^http://([\\w-]+\\.)?newrelic\\.com/\" to=\"https://$1newrelic.com/\"/></ruleset>", "<ruleset name=\"NYC.gov (partial)\" 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=\"mismatch\" 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\" f=\"NewScientist_Subscriptions.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NewYorkVocalCoaching\" 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\" f=\"New_York_Needs_You.com.xml\"><securecookie host=\"^www\\.newyorkneedsyou\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"New York Times.com\" f=\"New_York_Times.com.xml\"><rule from=\"^http://(?:www\\.)?newyorktimes\\.com/\" to=\"https://www.nytimes.com/\"/></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)\" 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 (partial, broken)\" default_off=\"breaks shopping cart\" f=\"Newegg.xml\"><exclusion pattern=\"^http://(?:images10\\.newegg|c1\\.neweggimages)\\.com/WebResource/Themes/2005/Nest/\\w+.html(?:$|\\?)\"/><securecookie host=\"^content\\.newegg\\.com$\" name=\".+\"/><rule from=\"^http://(?:(?:images10|ssl-images)\\.newegg|c1\\.neweggimages)\\.com/\" to=\"https://ssl-images.newegg.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Newgrounds (partial, broken)\" default_off=\"reported broken\" f=\"Newgrounds.xml\"><rule from=\"^http://(?:www\\.)?newgrounds\\.com/\" to=\"https://www.newgrounds.com/\"/></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=\"mismatch\" 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\"><exclusion pattern=\"^http://barrons\\.wsj\\.net/css/barronsDependencies/\"/><exclusion pattern=\"^http://si?\\.wsj\\.net/\"/><securecookie host=\"^.*\\.factiva\\.com$\" name=\".*\"/><securecookie host=\"^secure\\.nypost\\.com$\" name=\".*\"/><securecookie host=\"^secure\\.smartmoney\\.com$\" name=\".*\"/><securecookie host=\"^(?:classifieds|customerceter)\\.wsj\\.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://secure\\.nypost\\.com/\" to=\"https://secure.nypost.com/\"/><rule from=\"^http://j(?:tools|secure)?\\.smartmoney\\.com/\" to=\"https://jsecure.smartmoney.com/\"/><rule from=\"^http://(?:classifieds|customercenter)\\.wsj\\.com/\" to=\"https://buy.wsj.com/\"/><rule from=\"^http://id\\.wsj\\.com/\" to=\"https://id.wsj.com/\"/><rule from=\"^http://services\\.wsj(e)?\\.com/\" to=\"https://services.wsj$1.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://news\\.dk/\" to=\"https://news.dk/\"/><rule from=\"^http://www\\.news\\.dk/.*\" to=\"https://news.dk/\"/></ruleset>", "<ruleset name=\"news9daily.org\" f=\"News9daily.org.xml\"><securecookie host=\"^(?:w*\\.)?news9daily\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NewsBlur\" f=\"NewsBlur.xml\"><exclusion pattern=\"^http://blog\\.newsblur\\.com/\"/><rule from=\"^http://(icons|pages)\\.newsblur\\.com/\" to=\"https://s3.amazonaws.com/$1.newsblur.com/\"/><rule from=\"^http://newsblur\\.com/\" to=\"https://www.newsblur.com/\"/><rule from=\"^http://([^/:@.]*)\\.newsblur\\.com/\" to=\"https://$1.newsblur.com/\"/><rule from=\"^https://popular\\.global\\.newsblur\\.com/\" to=\"http://popular.global.newsblur.com/\" downgrade=\"1\"/><securecookie host=\"^(?:www)?\\.newsblur\\.com$\" name=\".*\"/></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\" 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=\"NewsNow (partial)\" f=\"NewsNow.xml\"><securecookie host=\"^delivery\\.ad\\.newsnow\\.net$\" name=\".+\"/><rule from=\"^http://delivery\\.ad\\.newsnow\\.net/\" to=\"https://delivery.ad.newsnow.net/\"/></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)\" 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://(player|static)\\.video\\.news\\.com\\.au/\" to=\"https://$1.video.news.com.au/\"/></ruleset>", "<ruleset name=\"News Limited (partial)\" 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\" 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=\"mismatch\" f=\"NewspaperDirect-mismatches.xml\"><exclusion pattern=\"^http://(?:www\\.)?pressdisplay/viewer\\.aspx\"/><rule from=\"^http://(?:www\\.)?pressreader\\.com/\" to=\"https://pressreader.com/\"/><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=\"^(?:www\\.)?newspaperdirect\\.com$\" name=\".*\"/><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=\"newtention.net\" f=\"Newtention.net.xml\"><securecookie host=\"^\\.newtention\\.net$\" name=\".+\"/><rule from=\"^http://(ads|www)\\.newtention\\.net/\" to=\"https://$1.newtention.net/\"/></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\" f=\"Newzsec.com.xml\"><securecookie host=\"^newzsec\\.com$\" name=\".+\"/><rule from=\"^http://www\\.newzsec\\.com/\" to=\"https://newzsec.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"nex.sx\" f=\"Nex.sx.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"nexac.com (partial)\" 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\" default_off=\"Breaks cart\" f=\"Next.xml\"><securecookie host=\"^(?:.+\\.)?next\\.co\\.uk$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?next\\.co\\.uk/\" to=\"https://www.next.co.uk/\"/></ruleset>", "<ruleset name=\"NextBus\" f=\"NextBus.xml\"><rule from=\"^http://(?:www\\.)?nextbus\\.com/\" to=\"https://www.nextbus.com/\"/></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 (self-signed)\" default_off=\"self-signed\" f=\"Nextag-self-signed.xml\"><exclusion pattern=\"^http://nextagnews\\.nextag\\.com/\\d{4}/\\d\\d/\\d\\d/\"/><rule from=\"^http://nextagnews\\.nextag\\.com/\" to=\"https://nextagnews.nextag.com/\"/><rule from=\"^https://nextagnews\\.nextag\\.com/(\\d{4}/\\d\\d/\\d\\d/)\" to=\"http://nextagnews.nextag.com/$1\" downgrade=\"1\"/></ruleset>", "<ruleset name=\"Nextag (partial)\" f=\"Nextag.xml\"><securecookie host=\"^.*\\.nextag\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?nextag\\.(ca|com|de|fr|it)/\" to=\"https://www.nextag.$1/\"/><rule from=\"^http://img(?:srv)?\\.nextag\\.com/\" to=\"https://imgsrv.nextag.com/\"/><rule from=\"^http://(merchants|stores|travel)\\.nextag\\.com/\" to=\"https://$1.nextag.com/\"/><rule from=\"^http://tickets\\.nextag\\.com/la/\" to=\"https://www.fansnap.com/la/\"/><rule from=\"^http://www42\\.nextag\\.com/\" to=\"https://www.nextag.com/\"/><rule from=\"^http://img\\d\\d\\.static-nextag\\.com/\" to=\"https://imgsrv.nextag.com/\"/></ruleset>", "<ruleset name=\"Nextbit.com\" f=\"Nextbit.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Nexternal clients\" default_off=\"mismatch\" 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 (partial)\" f=\"Nginx.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ngrok.com\" f=\"Ngrok.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ngx.cc\" 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=\"^(?:(?:www|labs|git|blog)?\\.)?nic\\.cz$\" name=\".+\"/><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=\"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\" f=\"Nicereply.com.xml\"><securecookie host=\"^(www\\.)?nicereply\\.com\" 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\" 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=\"nieman.de\" f=\"Nieman.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Nieuwsblad.be (mismatches)\" default_off=\"cert warning\" f=\"Nieuwsblad.be.xml\"><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\" f=\"Nik_Cub.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Nik Software (partial)\" 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)\" 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\" f=\"Nikhef.nl.xml\"><securecookie host=\".\" name=\".\"/><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\" 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=\"nimzone.com\" default_off=\"mismatch\" f=\"Nimzone.com.xml\"><rule from=\"^http://server1\\.nimzone\\.com/\" to=\"https://server1.nimzone.com/\"/></ruleset>", "<ruleset name=\"nine-2-one\" default_off=\"failed ruleset test\" f=\"Nine-2-one.xml\"><securecookie host=\"^(?:www\\.)?nine-2-one\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></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) \" default_off=\"failed ruleset test\" 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\" default_off=\"failed ruleset test\" 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\" 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\" default_off=\"failed ruleset test\" f=\"Nitro_Cloud.com.xml\"><securecookie host=\"^\\.nitrocloud\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Nitrokey.com\" f=\"Nitrokey.com.xml\"><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\" f=\"Nixsrv.com.xml\"><securecookie host=\"^\\.nixsrv\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"nlgcdn.com\" 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://sw\\.nohold\\.net/\" to=\"https://sw.nohold.net/\"/></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\" 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 Hats.ca\" f=\"No_Hats.ca.xml\"><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\" 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\" 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\" f=\"Noelia.xml\"><securecookie host=\"^noelia\\.fi$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Noembed.com\" 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=\"Noiseless Vault.org\" default_off=\"failed ruleset test\" f=\"Noiseless_Vault.org.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)\" default_off=\"failed ruleset test\" 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=\"Nomura Research Institute\" default_off=\"failed ruleset test\" f=\"Nomura_Research_Institute.xml\"><rule from=\"^http://www\\.nri\\.co\\.jp/\" to=\"https://www.nri.co.jp/\"/></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=\"Noncombatant.org\" f=\"Noncombatant.org.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></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=\"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=\"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 (partial)\" f=\"Normalesup.org.xml\"><rule from=\"^http://www\\.normalesup\\.org/\" to=\"https://www.normalesup.org/\"/></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)\" 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)\" 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)\" 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=\"NorthClicks\" default_off=\"failed ruleset test\" 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.org.uk\" default_off=\"expired, self-signed\" f=\"North_Devon_Theatres.org.uk.xml\"><securecookie host=\"^northdevontheatres\\.org\\.uk$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?northdevontheatres\\.org\\.uk/\" to=\"https://northdevontheatres.org.uk/\"/></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\" default_off=\"failed ruleset test\" 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\" platform=\"mixedcontent\" f=\"Norwegian.com.xml\"><rule from=\"^http://www\\.norwegian\\.com/\" to=\"https://www.norwegian.com/\"/><rule from=\"^http://norwegian\\.com/\" to=\"https://www.norwegian.com/\"/></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://(?:www\\.)?nos-oignons\\.(?:fr|org)/\" to=\"https://nos-oignons.net/\"/><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=\"NotABug.org\" f=\"NotABug.org.xml\"><securecookie host=\"^(?:www\\.)?notabug\\.org$\" name=\".+\"/><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=\"Not Without a Warrant.com\" default_off=\"expired\" f=\"Not_Without_a_Warrant.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NotaNet.com.br\" 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=\"Notebook Italia\" default_off=\"expired, self-signed\" 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++\" f=\"Notepad++.xml\"><securecookie host=\"^notepad-plus-plus\\.org$\" name=\".+\"/><rule from=\"^http://www\\.notepad-plus-plus\\.org/\" to=\"https://notepad-plus-plus.org/\"/><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\" 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\" f=\"Novosoft.net.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://npmawesome\\.com/\" to=\"https://npmawesome.com/\"/></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)\" f=\"Nrk.no.xml\"><exclusion pattern=\"^http://(?:www\\.)?nrk\\.no/+(?!03030(?:$|[?/])|serum/)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"nsa-observer.net\" default_off=\"failed ruleset test\" f=\"Nsa-observer.net.xml\"><rule from=\"^http://(?:www\\.)?nsa-observer\\.net/\" to=\"https://www.nsa-observer.net/\"/></ruleset>", "<ruleset name=\"Nserver.Ru\" 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 (partial)\" f=\"Nsnam.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"nsupdate.info\" f=\"Nsupdate.info.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ntacdn1.net\" f=\"Ntacdn1.net.xml\"><securecookie host=\"^\\.ntacdn1\\.net$\" name=\".+\"/><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\" 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\" 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)\" 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 (partial)\" f=\"NuGet.xml\"><securecookie host=\"^\\.docs\\.nuget\\.org$\" 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\" 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)\" 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://nro\\.net/\" to=\"https://www.nro.net/\"/><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\" 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=\"nuseek.com (partial)\" default_off=\"Akamai certificate\" f=\"Nuseek.com.xml\"><rule from=\"^http://i\\.nuseek\\.com/\" to=\"https://i.nuseek.com/\"/></ruleset>", "<ruleset name=\"NutriCentre\" 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\" 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\" 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=\"nventio.com\" default_off=\"failed ruleset test\" f=\"Nventio.com.xml\"><securecookie host=\"^\\.?nventio\\.com$\" name=\".+\"/><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://nxtck\\.com/\" to=\"https://nxtck.com/\"/></ruleset>", "<ruleset name=\"Nxtgn.org\" f=\"Nxtgn.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Nyaa.eu\" f=\"Nyaa.eu.xml\"><securecookie host=\"^\\.nyaa\\.eu$\" name=\"^(?:__cfduid|cf_clearance)$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Nyaa.se (partial)\" f=\"Nyaa.se.xml\"><securecookie host=\"^\\.nyaa\\.se$\" name=\"^(?:__cfduid|cf_clearance)$\"/><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://(?:www\\.)?nyx\\.cz/\" to=\"https://www.nyx.cz/\"/></ruleset>", "<ruleset name=\"Nzbplanet.net\" f=\"Nzbplanet.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"o0bc.com\" f=\"O0bc.com.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\" default_off=\"failed ruleset test\" 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)\" f=\"OASIS_Open.org.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OAuth\" default_off=\"mismatch\" f=\"OAuth.xml\"><rule from=\"^http://(?:www\\.)?oauth\\.net/\" to=\"https://oauth.net/\"/></ruleset>", "<ruleset name=\"OBLIC.com\" f=\"OBLIC.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OBS project.com\" f=\"OBS_project.com.xml\"><securecookie host=\"^\\.\" name=\"^__qca$\"/><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)\" f=\"OCaml.xml\"><rule from=\"^http://www\\.ocaml\\.org/\" to=\"https://ocaml.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OCamlCore.org (partial)\" 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://www\\.oecd\\.org/\" to=\"https://www.oecd.org/\"/></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://oftc\\.net/\" to=\"https://www.oftc.net/\"/><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&#8217;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\" 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\" 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=\"OLMN.org\" default_off=\"failed ruleset test\" f=\"OLMN.org.xml\"><securecookie host=\"^www\\.olmn\\.org$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?olmn\\.org/\" to=\"https://www.olmn.org/\"/></ruleset>", "<ruleset name=\"OLPC (partial)\" 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)\" default_off=\"failed ruleset test\" 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\" f=\"OMS.eu.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ON24 (mismatches)\" default_off=\"mismatch\" 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\" 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\" f=\"OPM.gov.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://servicesonline\\.opm\\.gov/\" to=\"https://www.servicesonline.opm.gov/\"/><rule from=\"^http://www\\.leadership\\.opm\\.gov/\" to=\"https://leadership.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\" 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=\"O&#8217;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&#8217;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=\"OSDC.com.au\" 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\" f=\"OSHA.gov.xml\"><rule from=\"^http://(?:www\\.)?osha\\.gov/\" to=\"https://www.osha.gov/\"/></ruleset>", "<ruleset name=\"OSI Codes\" 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\" 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\" 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://projetos\\.ossystems\\.com\\.br/\" to=\"https://projetos.ossystems.com.br/\"/></ruleset>", "<ruleset name=\"OSwatch.net\" 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\" 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\" 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=\"O SysAdmin.net (partial)\" f=\"O_SysAdmin.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ORNL.gov (partial)\" 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\" default_off=\"failed ruleset test\" 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://secure\\.omg\\.org/\" to=\"https://secure.omg.org/\"/></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\" 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\" f=\"Ocelot.li.xml\"><securecookie host=\"^\\.ocelot\\.li$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"oclaserver.com\" default_off=\"failed ruleset test\" f=\"Oclaserver.com.xml\"><rule from=\"^http://oclaserver\\.com/\" to=\"https://www.onclickads.net/\"/><rule from=\"^http://go\\.oclaserver\\.com/\" to=\"https://go.oclaserver.com/\"/></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=\"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\" f=\"Oculus.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Oculus VR\" 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\" default_off=\"failed ruleset test\" f=\"Oderland.se.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"odesk.by\" 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)\" 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)\" 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=\"^(?:licensing|styles)\\.ofcom\\.org\\.uk$\" name=\".+\"/><rule from=\"^http://(licensing|styles)\\.ofcom\\.org\\.uk/\" to=\"https://$1.ofcom.org.uk/\"/></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/+(?!favicon\\.ico|html5/|images/|styles/)\"/><rule from=\"^http://(licensing|stakeholders|styles)\\.ofcom\\.org\\.uk/\" to=\"https://$1.ofcom.org.uk/\"/></ruleset>", "<ruleset name=\"Off-the-Record Messaging\" f=\"Off-the-Record_Messaging.xml\"><rule from=\"^http://otr\\.cypherpunks\\.ca/\" to=\"https://otr.cypherpunks.ca/\"/></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\" 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\" 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\" 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\" 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)\" 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)\" 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\" default_off=\"failed ruleset test\" f=\"OfficeofNationalAssessments.xml\"><rule from=\"^http://(?:www\\.)?ona\\.gov\\.au/\" to=\"https://www.ona.gov.au/\"/></ruleset>", "<ruleset name=\"Office of Parliamentary Counsel\" 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\" default_off=\"self-signed\" f=\"Offog.org.xml\"><rule from=\"^http://(?:www\\.)?offog\\.org/\" to=\"https://offog.org/\"/></ruleset>", "<ruleset name=\"Ogone.com (partial)\" f=\"Ogone.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Oh So Cool.org\" f=\"Oh-So-Cool.xml\"><rule from=\"^http://www\\.ohsocool\\.org/\" to=\"https://ohsocool.org/\"/><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)\" 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)\" 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)\" 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)\" 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 (partial)\" platform=\"mixedcontent\" f=\"Ok.ru.xml\"><securecookie host=\"^v\\.ok\\.ru$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OkC CDN.com\" default_off=\"breaks images on the OKC blog\" f=\"OkCDN.com.xml\"><securecookie host=\"^\\.okccdn\\.com$\" name=\".+\"/><rule from=\"^http://akincludes\\.okccdn\\.com/\" to=\"https://www.okcupid.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OkCimg.com (partial)\" 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)\" default_off=\"Redirects to HTTP\" f=\"OkCupid.xml\"><exclusion pattern=\"^http://blog\\.okcupid\\.com/+(?!wp-content/)\"/><securecookie host=\"^\\.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=\"connection refused\" f=\"Okopnik.xml\"><rule from=\"^http://(?:www\\.)?okopnik\\.com/\" to=\"https://okopnik.com/\"/></ruleset>", "<ruleset name=\"Okta.com (partial)\" 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&#225;si Hivatal\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" 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=\"Old Pirate Bay.org\" f=\"Old_Pirate_Bay.org.xml\"><securecookie host=\"^\\.oldpiratebay\\.org$\" name=\"^__cfduid$\"/><rule from=\"^http://oldpiratebay\\.org/\" to=\"https://www.oldpiratebay.org/\"/><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=\"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\" 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://www\\.omniture-static\\.com/\" to=\"https://www.omniture-static.com/\"/></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\" default_off=\"failed ruleset test\" 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\" default_off=\"failed ruleset test\" 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\" default_off=\"failed ruleset test\" f=\"OnBeing.org.xml\"><rule from=\"^http://(?:ssl\\.|www\\.)?onbeing\\.org/\" to=\"https://ssl.onbeing.org/\"/></ruleset>", "<ruleset name=\"OnGuard Online\" f=\"OnGuard_Online.xml\"><rule from=\"^http://(?:www\\.)?(alertaenlinea|onguardonline)\\.gov/\" to=\"https://www.$1.gov/\"/></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\"><rule from=\"^http://((?:games|support|www)\\.)?onlive\\.com/\" to=\"https://$1onlive.com/\"/></ruleset>", "<ruleset name=\"OnScroll.com (partial)\" f=\"OnScroll.com.xml\"><rule from=\"^http://cdn\\.onscroll\\.com/\" to=\"https://do4jjo8w6mmm0.cloudfront.net/\"/></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\" 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=\"^onclickads\\.net$\" name=\".+\"/><rule from=\"^http://onclickads\\.net/\" to=\"https://onclickads.net/\"/></ruleset>", "<ruleset name=\"OndaRossa.info\" platform=\"cacert\" f=\"Ondarossa.info.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"One Good Driver\" default_off=\"failed ruleset test\" f=\"One-Good-Driver.xml\"><securecookie host=\"^www\\.onegooddriver\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?onegooddriver\\.com/\" to=\"https://www.onegooddriver.com/\"/></ruleset>", "<ruleset name=\"One-Tab.com\" f=\"One-Tab.com.xml\"><securecookie host=\"^\\.one-tab\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></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=\"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=\"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 (partial)\" 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=\"mismatch\" 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 Green Planet.org\" default_off=\"failed ruleset test\" f=\"One_Green_Planet.org.xml\"><securecookie host=\"^\\.onegreenplanet\\.org$\" name=\".+\"/><rule from=\"^http://(www\\.)?onegreenplanet\\.org/\" to=\"https://$1onegreenplanet.org/\"/><rule from=\"^http://cdn\\.onegreenplanet\\.org/\" to=\"https://www.onegreenplanet.org/\"/></ruleset>", "<ruleset name=\"One Health Talk.org (partial)\" default_off=\"failed ruleset test\" f=\"One_Health_Talk.org.xml\"><rule from=\"^http://(www\\.)?onehealthtalk\\.org/(1/(?:assets|cache|css|includes|js)/|favicon\\.ico|images/|_Incapsula_Resource(?:$|\\?)|member(?:$|[?/]))\" to=\"https://$1onehealthtalk.org/$2\"/></ruleset>", "<ruleset name=\"One Man Can\" f=\"One_Man_Can.xml\"><securecookie host=\"^(?:\\.?www\\.)?\\.onemancan\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"One Month.com (partial)\" 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\" f=\"Onebillion.org.uk.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"onebitbug.me\" f=\"Onebitbug.me.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Onefeed.co.uk (partial)\" f=\"Onefeed.co.uk.xml\"><rule from=\"^http://tracking\\.onefeed\\.co\\.uk/\" to=\"https://tracking.onefeed.co.uk/\"/></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=\"onforb.es (partial)\" f=\"Onforb.es.xml\"><exclusion pattern=\"^http://onforb\\.es/$\"/><rule from=\"^http://onforb\\.es/\" to=\"https://bit.ly/\"/></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://store\\.theonion\\.com/\" to=\"https://store.theonion.com/\"/></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\" f=\"OnionTip.com.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\" 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\" 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 Censorship.org\" f=\"Online_Censorship.org.xml\"><rule from=\"^http:\" to=\"https:\"/></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=\"onpatient.com\" f=\"Onpatient.com.xml\"><securecookie host=\"^\\.onpatient\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></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=\"mismatch\" 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\" 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=\"mismatch\" 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=\"connection refused\" f=\"Oomphme.xml\"><rule from=\"^http://(?:www\\.)?oomphme\\.com/\" to=\"https://www.oomphme.com/\"/></ruleset>", "<ruleset name=\"Oops.org\" f=\"Oops.org.xml\"><rule from=\"^http://([\\w-]+\\.)?oops\\.org/\" to=\"https://$1oops.org/\"/></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=\"mismatch\" platform=\"mixedcontent\" f=\"Ooyala-mismatches.xml\"><rule from=\"^http://(support|videomind)\\.ooyala\\.com/\" to=\"https://$1.ooyala.com/\"/><rule from=\"^http://(?:www\\.)?ooyala\\.jp/\" to=\"https://www.ooyala.jp/\"/></ruleset>", "<ruleset name=\"Ooyala.com (partial)\" platform=\"mixedcontent\" f=\"Ooyala.xml\"><exclusion pattern=\"crossdomain\\.xml$\"/><securecookie host=\"^(?:.*\\.)?ooyala\\.com$\" name=\".+\"/><rule from=\"^http://ooyala\\.com/\" to=\"https://www.ooyala.com/\"/><rule from=\"^http://(?:ak\\.)?c\\.ooyala\\.com/\" to=\"https://ak-c.ooyala.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"op-co.de\" platform=\"cacert\" f=\"Op-co.de.xml\"><rule from=\"^http://www\\.op-co\\.de/\" to=\"https://op-co.de/\"/><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 Clipart.org\" f=\"Open-Clipart-Library.xml\"><securecookie host=\"^\\.openclipart\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></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=\"ORCID.org (partial)\" f=\"Open-Researcher-and-Contributor-ID.xml\"><exclusion pattern=\"^http://orcid\\.org/+(?!misc/|(?:register|reset-password|signin)(?:$|[?/])|sites/|static/)\"/><securecookie host=\"^(?:about|members|www)\\.orcid\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Open Society Foundations\" default_off=\"mismatch\" 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 WebMail\" default_off=\"self-signed\" f=\"Open-WebMail.xml\"><rule from=\"^http://(?:www\\.)?openwebmail\\.org/\" to=\"https://openwebmail.org/\"/></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=\"OpenAdultDirectory.com (partial)\" default_off=\"failed ruleset test\" 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=\"OpenBSD.org (partial)\" default_off=\"connection refusd\" 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=\"OpenBlox\" f=\"OpenBlox.xml\"><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)\" 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=\"OpenContrail.org (partial)\" f=\"OpenContrail.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OpenCores.org (partial)\" default_off=\"expired\" f=\"OpenCores.xml\"><securecookie host=\"^opencores\\.org$\" name=\".+\"/><rule from=\"^http://www\\.opencores\\.org/\" to=\"https://opencores.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OpenCorporates.com (partial)\" 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=\"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=\"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=\"OpenEZX.org (CAcert, partial)\" platform=\"cacert\" default_off=\"failed ruleset test\" f=\"OpenEZX.org.xml\"><rule from=\"^http://svn\\.openezx\\.(?:com|net|org)/\" to=\"https://svn.openezx.org/\"/></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)\" default_off=\"failed ruleset test\" f=\"OpenHatch.org.xml\"><securecookie host=\"^\\.?openhatch\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OpenID.net\" f=\"OpenID.xml\"><securecookie host=\"^openid\\.net$\" 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\" 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)\" f=\"OpenITC.co.uk.xml\"><securecookie host=\"^forums\\.openitc\\.co\\.uk$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OpenITP.org (partial)\" f=\"OpenITP.org.xml\"><securecookie host=\"^(?:.+\\.)?openitp\\.org$\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OpenLDAP.org\" default_off=\"expired, self-signed\" f=\"OpenLDAP.org.xml\"><rule from=\"^http://(?:www\\.)?openldap\\.org/\" to=\"https://www.openldap.org/\"/></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\" platform=\"cacert\" f=\"OpenMandriva.xml\"><securecookie host=\"^(?:\\.?blog|doc|\\.ftp|issues|\\.?wiki|\\.www)?\\.openmandriva\\.org$\" 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\" default_off=\"mismatched, self-signed\" 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=\"OpenSSL.org (partial)\" f=\"OpenSSL.xml\"><securecookie host=\"^rt\\.openssl\\.org$\" name=\".+\"/><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\" 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://shop\\.openstreetmap\\.org/.*\" to=\"https://wiki.openstreetmap.org/wiki/Merchandise\"/><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=\"The Open University (buggy)\" default_off=\"https://www.eff.org/r.5E5\" f=\"OpenUniversity.xml\"><rule from=\"^http://([^@:/]+)\\.open\\.ac\\.uk/\" to=\"https://$1.open.ac.uk/\"/><rule from=\"^http://www\\.openuniversity\\.ac\\.uk/\" to=\"https://www.open.ac.uk/\"/><rule from=\"^http://www\\.ouw\\.co\\.uk/\" to=\"https://www.ouw.co.uk/\"/><rule from=\"^http://www\\.ousa\\.org\\.uk/\" to=\"https://www.ousa.org.uk/\"/></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=\"OpenVZ.org (missing certificate chain)\" default_off=\"missing certificate chain\" f=\"OpenVZ.org-falsemixed.xml\"><securecookie host=\"^\\.forum\\.openvz\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OpenVZ.org (partial)\" f=\"OpenVZ.org.xml\"><exclusion pattern=\"^http://static\\.openvz\\.org/+(?:$|\\?|supported_by_parallels_88x31\\.gif)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OpenWRT.org (partial)\" f=\"OpenWRT.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OpenX.net (partial)\" f=\"OpenX.net.xml\"><securecookie host=\"^(?:us-ads)?\\.openx\\.net$\" 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)\" f=\"OpenX.xml\"><securecookie host=\"^(?:i-cdn|lift|sso|d\\.tradex)?\\.openx\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OpenXMPP.com\" f=\"OpenXMPP.com.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=\"^ox-d\\.openxadexchange\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Open Access Button.org\" f=\"Open_Access_Button.org.xml\"><securecookie host=\"^(?:www\\.)?openaccessbutton\\.org$\" 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 Farm Game.com\" default_off=\"expired\" f=\"Open_Farm_Game.xml\"><securecookie host=\"^openfarmgame\\.com$\" name=\".+\"/><rule from=\"^http://www\\.openfarmgame\\.com/\" to=\"https://openfarmgame.com/\"/><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\" 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-Mesh.org\" platform=\"cacert\" f=\"Open_Mesh.xml\"><securecookie host=\"^www\\.open-mesh\\.org$\" name=\".+\"/><rule from=\"^http://open-mesh\\.org/\" to=\"https://www.open-mesh.org/\"/><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)\" 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 Wireless.org\" f=\"Open_Wireless_Movement.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Openas.org\" 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=\"^(?:\\.|www\\.)?opendemocracy\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OpenfMRI.org\" 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)\" f=\"Opengarden.com.xml\"><rule from=\"^http://www\\.opengarden\\.com/\" to=\"https://opengarden.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Openhost\" 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=\"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\" 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=\"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=\"^(www\\.|qa\\.)?openresty\\.org$\" name=\".+\"/><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\" 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=\"mismatch\" 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=\"Opera (partial)\" f=\"Opera.xml\"><exclusion pattern=\"^http://apps\\.opera\\.com/+(?!$|\\?)\"/><securecookie host=\"^(?:addons|bugs|idp|mail|\\.micropage|ssl)\\.opera\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Operating Systems.io\" default_off=\"connection dropped\" 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\"><rule from=\"^http://s\\.ophan\\.co\\.uk/\" to=\"https://d2n6o0n31iqeta.cloudfront.net/\"/></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\" f=\"Oppelt.com.xml\"><securecookie host=\"^piwik\\.oppelt\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Oppo.com (partial)\" default_off=\"failed ruleset test\" 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://cdn-sec\\.optmd\\.com/\" to=\"https://cdn-sec.optmd.com/\"/></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=\"Optify\" default_off=\"failed ruleset test\" f=\"Optify.xml\"><securecookie host=\"^service\\.optify\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></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=\"optimize-it (partial)\" default_off=\"failed ruleset test\" f=\"Optimize-it.xml\"><rule from=\"^http://realperson300\\.net/\" to=\"https://realperson300.net/\"/></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\" f=\"Optimizely.xml\"><securecookie host=\"^(?:.*\\.)?optimizely\\.com$\" name=\".*\"/><rule from=\"^http://optimizely\\.com/\" to=\"https://www.optimizely.com/\"/><rule from=\"^http://(cdn\\d?|\\d+\\.log|log3|www)\\.optimizely\\.com/\" to=\"https://$1.optimizely.com/\"/><rule from=\"^http://support\\.optimizely\\.com/(help|pkg|stylesheets)/\" to=\"https://asset-2.tenderapp.com/$1/\"/></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\" 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=\"mismatch\" 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)\" 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\" default_off=\"failed ruleset test\" f=\"Orange.sk.xml\"><rule from=\"^http://(?:www\\.)?orange\\.sk/\" to=\"https://www.orange.sk/\"/></ruleset>", "<ruleset name=\"Orange\" 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 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\" 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=\"mismatch\" f=\"Oregon-State-University-mismatches.xml\"><rule from=\"^http://(?:www\\.)?campaignforosu\\.org/\" to=\"https://campaignforosu.org/\"/></ruleset>", "<ruleset name=\"Oregon State University (partial)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Oregon-State-University.xml\"><securecookie host=\"^\\.osuosl\\.org$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?oregonstate\\.edu/(favicon\\.ico$|u_central/images/)\" to=\"https://secure.oregonstate.edu/$1\"/><rule from=\"^http://(drupalweb\\.forestry|osulibrary|secure)\\.oregonstate\\.edu/\" to=\"https://$1.oregonstate.edu/\"/><rule from=\"^http://(?:www\\.)?osufoundation\\.org/\" to=\"https://osufoundation.org/\"/><rule from=\"^http://(www\\.)?osuosl\\.org/\" to=\"https://$1osuosl.org/\"/></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\" platform=\"cacert\" f=\"Orez_Praw.com.xml\"><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\" 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\" f=\"Orion_Systems_Integrators.xml\"><securecookie host=\"^(?:time)?\\.orioninc\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Orkut (partial)\" 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://www\\.orxrdr\\.com/\" to=\"https://www.orxrdr.com/\"/></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=\"oschina (partial)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Oschina.xml\"><securecookie host=\"^\\.oschina\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"osdimg.com\" f=\"Osdimg.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Oseems.com\" 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=\"oskuro.net\" f=\"Oskuro.net.xml\"><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 (mismatched)\" default_off=\"mismatched\" f=\"Osmocom.org-problematic.xml\"><securecookie host=\".+\\.osmocom\\.org$\" name=\".+\"/><rule from=\"^http://(openbsc|tetra)\\.osmocom\\.org/\" to=\"https://$1.osmocom.org/\"/></ruleset>", "<ruleset name=\"Osmocom.org (partial)\" platform=\"cacert\" f=\"Osmocom.org.xml\"><securecookie host=\"^(?:bb|gmr|sdr)\\.osmocom\\.org$\" name=\".+\"/><rule from=\"^http://(bb|gmr|lists|sdr|security|simtrace)\\.osmocom\\.org/\" to=\"https://$1.osmocom.org/\"/></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=\"Otalk.im\" f=\"Otalk.im.xml\"><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=\"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=\"Otumm.com\" 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=\"Otumm Store.se\" default_off=\"failed ruleset test\" f=\"Otumm_Store.se.xml\"><securecookie host=\"^\\.otummstore\\.se$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ouaza.com\" f=\"Ouaza.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ou&#239; FM (partial)\" f=\"Oui-FM.xml\"><securecookie host=\"^www\\.ouifm\\.fr$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?ouifm\\.fr/\" to=\"https://www.ouifm.fr/\"/></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\" 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\" default_off=\"Certificate mismatch\" f=\"Ourlocality.org.xml\"><rule from=\"^http://(www\\.)?(support\\.)?ourlocality\\.org/\" to=\"https://$2ourlocality.org/\"/></ruleset>", "<ruleset name=\"ourneighborhoodmilf.com\" f=\"Ourneighborhoodmilf.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Out-Law.com\" default_off=\"failed ruleset test\" 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=\"Out Campaign.org\" default_off=\"mismatched\" f=\"Out_Campaign.org.xml\"><securecookie host=\"^outcampaign\\.org$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?outcampaign\\.org/\" to=\"https://outcampaign.org/\"/></ruleset>", "<ruleset name=\"Outbrain.com (partial)\" f=\"Outbrain.xml\"><exclusion pattern=\"^http://www\\.outbrain\\.com/+(?!assets/|favicon\\.ico|images/|wp-content/|wp-includes/)\"/><securecookie host=\"^\\.outbrain\\.com$\" name=\"^ubvt$\"/><securecookie host=\"^\\w+\\.outbrain\\.com$\" name=\".+\"/><rule from=\"^http://(?:wp\\.)?outbrain\\.com/\" to=\"https://www.outbrain.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Outernet\" default_off=\"failed ruleset test\" 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=\"connection dropped\" 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://www\\.over-yonder\\.net/\" to=\"https://www.over-yonder.net/\"/></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?$|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\" 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\" 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\" 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=\"Own-Mailbox.com\" f=\"Own-Mailbox.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ownCloud.com\" 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\" 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\" 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\" f=\"Oxfam.org.uk.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Oxfam Unwrapped\" default_off=\"failed ruleset test\" f=\"OxfamIrelandUnwrapped.xml\"><rule from=\"^http://(?:www\\.)?oxfamirelandunwrapped\\.com/\" to=\"https://www.oxfamirelandunwrapped.com/\"/><rule from=\"^http://netbel\\.oxfamireland\\.org/\" to=\"https://netbel.oxfamireland.org/\"/></ruleset>", "<ruleset name=\"Oxford Journals (partial)\" f=\"Oxford-Journals.xml\"><securecookie host=\"^\\w+\\.oxfordjournals\\.org$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?oxfordjournals\\.org/resource/image/\" to=\"https://secure.oxfordjournals.org/resource/image/\"/><rule from=\"^http://(access|secure|services)\\.oxfordjournals\\.org/\" to=\"https://$1.oxfordjournals.org/\"/></ruleset>", "<ruleset name=\"Oxford Dictionaries\" f=\"Oxford_Dictionaries.xml\"><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\" f=\"OzBargain.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OzLabs.org (CAcert)\" platform=\"cacert\" f=\"OzLabs.org-cacert.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OzLabs.org (partial)\" f=\"OzLabs.xml\"><exclusion pattern=\"^http://(?:ccontrol|jk|librtas|powerpc-utils|rusty|yaboot)\\.ozlabs\\.org/\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ozon.Travel\" default_off=\"failed ruleset test\" f=\"Ozon.Travel.xml\"><securecookie host=\"^www\\.ozon\\.travel$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ozon.ru (partial)\" 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://blog\\.p2pfoundation\\.net/\" to=\"https://blog.p2pfoundation.net/\"/></ruleset>", "<ruleset name=\"P6R.com\" f=\"P6R.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PACTF.com\" f=\"PACTF.xml\"><securecookie host=\".+\" name=\".+\"/><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\" default_off=\"failed ruleset test\" f=\"PAPPP.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PBA Galleries (mismatches)\" default_off=\"mismatch\" 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)\" f=\"PC-BSD.xml\"><securecookie host=\"^\\w\" 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=\"PC Users Group (ACT) (partial)\" platform=\"cacert mixedcontent\" f=\"PC-Users-Group-ACT.xml\"><securecookie host=\"^members\\.tip\\.net\\.au$\" name=\".*\"/><rule from=\"^http://(www\\.)?pcug\\.org\\.au/\" to=\"https://$1pcug.org.au/\"/><rule from=\"^http://members\\.tip\\.net\\.au/\" to=\"https://members.tip.net.au/\"/></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=\"PCEL\" f=\"PCEL.xml\"><securecookie host=\"^(?:w*\\.)?pcel\\.com$\" name=\".+\"/><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=\"PCLOB.gov\" f=\"PCLOB.gov.xml\"><securecookie host=\"^\\.(?:www\\.)?pclob\\.gov$\" 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=\"PC World (broken)\" default_off=\"Doesn't support HTTPS anymore\" f=\"PCWorld.xml\"><rule from=\"^http://(www\\.)?pcworld\\.com/\" to=\"https://$1pcworld.com/\"/><rule from=\"^http://jobs\\.pcworld\\.com/c/\" to=\"https://jobs.pcworld.com/c/\"/></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=\"PDDOC.com\" default_off=\"mismatch\" f=\"PDDOC.com.xml\"><rule from=\"^http://(?:www\\.)?pddoc\\.com/\" to=\"https://pddoc.com/\"/></ruleset>", "<ruleset name=\"PDF.yt\" f=\"PDF.yt.xml\"><securecookie host=\"^pdf\\.yt$\" name=\".+\"/><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=\"mismatch\" 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, &amp; 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)\" 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)\" 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)\" 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\" 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 s.r.o.\" f=\"PIPNI.cz.xml\"><securecookie host=\"^pipni\\.cz$\" name=\".+\"/><securecookie host=\"^\\.pipni\\.cz$\" name=\".+\"/><securecookie host=\"^webftp\\.pipni\\.cz$\" name=\"^PHPSESSID$\"/><securecookie host=\"^pgsql\\.pipni\\.cz$\" name=\".+\"/><securecookie host=\"^fbsql\\.pipni\\.cz$\" name=\".+\"/><securecookie host=\"^manual\\.pipni\\.cz$\" name=\"^PHPSESSID$\"/><securecookie host=\"^support\\.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\" f=\"PJ_Media.xml\"><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)\" default_off=\"failed ruleset test\" 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=\"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://(src\\.ac|cri|ep09|docs|lists)\\.pld-linux\\.org/\" to=\"https://$1.pld-linux.org/\"/></ruleset>", "<ruleset name=\"PLD-Linux.org (partial)\" f=\"PLD-Linux.org.xml\"><securecookie host=\"^www\\.pld-linux\\.org$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?pld-linux\\.org/\" to=\"https://www.pld-linux.org/\"/><rule from=\"^http://(cvs|git|svn)\\.pld-linux\\.org/\" to=\"https://$1.pld-linux.org/\"/><rule from=\"^http://docs\\.pld-linux\\.org/\" to=\"https://www.pld-linux.org/Docs/man\"/></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=\"PLoS.org (false MCB)\" platform=\"mixedcontent\" f=\"PLoS.org-falsemixed.xml\"><securecookie host=\"^(?:.*\\.)?plos\\.org$\" name=\".*\"/><rule from=\"^http://((?:blogs|currents|www)\\.)?plos\\.org/\" to=\"https://$1plos.org/\"/></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\" 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\" 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\" 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\" f=\"PPS.xml\"><exclusion pattern=\"^http://projects\\.partipirate\\.ch/\"/><exclusion pattern=\"^http://projects\\.pirateparty\\.ch/\"/><exclusion pattern=\"^http://projects\\.partitopirata\\.ch/\"/><exclusion pattern=\"^http://info\\.partipirate\\.ch/\"/><exclusion pattern=\"^http://info\\.partitopirata\\.ch/\"/><exclusion pattern=\"^http://info\\.pirateparty\\.ch/\"/><exclusion pattern=\"^http://stadt\\.zh\\.piratenpartei\\.ch/\"/><rule from=\"^http://([^/:@]*)\\.piratenpartei\\.ch/\" to=\"https://$1.piratenpartei.ch/\"/><rule from=\"^http://piratenpartei\\.ch/\" to=\"https://piratenpartei.ch/\"/><rule from=\"^http://([^/:@]*)\\.pirateparty\\.ch/\" to=\"https://$1.pirateparty.ch/\"/><rule from=\"^http://pirateparty\\.ch/\" to=\"https://pirateparty.ch/\"/><rule from=\"^http://([^/:@]*)\\.partipirate\\.ch/\" to=\"https://$1.partipirate.ch/\"/><rule from=\"^http://partipirate\\.ch/\" to=\"https://partipirate.ch/\"/><rule from=\"^http://([^/:@]*)\\.partitopirata\\.ch/\" to=\"https://$1.partitopirata.ch/\"/><rule from=\"^http://partitopirata\\.ch/\" to=\"https://partitopirata.ch/\"/><rule from=\"^http://([^/:@]*)\\.piraten-partei\\.ch/\" to=\"https://$1.piratenpartei.ch/\"/><rule from=\"^http://piraten-partei\\.ch/\" to=\"https://piratenpartei.ch/\"/><rule from=\"^http://([^/:@]*)\\.parti-pirate\\.ch/\" to=\"https://$1.partipirate.ch/\"/><rule from=\"^http://parti-pirate\\.ch/\" to=\"https://partipirate.ch/\"/><rule from=\"^http://([^/:@]*)\\.partito-pirata\\.ch/\" to=\"https://$1.partitopirata.ch/\"/><rule from=\"^http://partito-pirata\\.ch/\" to=\"https://partitopirata.ch/\"/><rule from=\"^http://([^/:@]*)\\.pirate-party\\.ch/\" to=\"https://$1.pirateparty.ch/\"/><rule from=\"^http://pirate-party\\.ch/\" to=\"https://pirateparty.ch/\"/><rule from=\"^http://(?:www\\.)?piraten-aargau\\.ch/\" to=\"https://www.piraten-aargau.ch/\"/><rule from=\"^http://(?:www\\.)?piraten-basel\\.ch/\" to=\"https://piraten-basel.ch/\"/><rule from=\"^http://winterthur\\.zh\\.piratenpartei\\.ch/\" to=\"https://winterthur.zh.piratenpartei.ch/\"/><rule from=\"^http://winterthur\\.zh\\.partipirate\\.ch/\" to=\"https://winterthur.zh.piratenpartei.ch/\"/><rule from=\"^http://winterthur\\.zh\\.partitopirata\\.ch/\" to=\"https://winterthur.zh.piratenpartei.ch/\"/><rule from=\"^http://winterthur\\.zh\\.pirateparty\\.ch/\" to=\"https://winterthur.zh.piratenpartei.ch/\"/></ruleset>", "<ruleset name=\"PQ Archiver.com\" f=\"PQ_Archiver.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PR Newswire (partial)\" 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=\"^(?:www\\.)?prism-break\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></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://webmail\\.planet-school\\.de/\" to=\"https://webmail.planet-school.de/\"/></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\" 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&#193;F\" f=\"PSZAF.xml\"><rule from=\"^http://([^/:@]*)\\.pszaf\\.hu/\" to=\"https://$1.pszaf.hu/\"/></ruleset>", "<ruleset name=\"P&#233;csi Tudom&#225;nyegyetem\" default_off=\"failed ruleset test\" f=\"PTE.xml\"><rule from=\"^http://www\\.pte\\.hu/\" to=\"https://www.pte.hu/\"/></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=\"connection refused\" f=\"PULP.xml\"><securecookie host=\"^ssl\\.pulpcentral\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"P Kimber.net\" default_off=\"failed ruleset test\" f=\"P_Kimber.net.xml\"><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\" f=\"PacBSD.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PacSec.jp\" default_off=\"failed ruleset test\" 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)\" default_off=\"failed ruleset test\" 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://api\\.pachube\\.com/\" to=\"https://api.pachube.com/\"/></ruleset>", "<ruleset name=\"Package Control.io\" f=\"Package_Control.io.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Package Lab.com\" f=\"Package_Lab.com.xml\"><securecookie host=\"^www\\.packagelab\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Packer.io\" f=\"Packer.io.xml\"><securecookie host=\"^\\.packer\\.io$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Packet.net\" f=\"Packet.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Packet Storm Security.com\" 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\" default_off=\"failed ruleset test\" 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://wm4\\.pacific\\.net\\.au/\" to=\"https://wm4.pacific.net.au/\"/></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\" f=\"PageKite.xml\"><securecookie host=\"^pagekite\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Pagely (partial)\" f=\"Pagely.xml\"><rule from=\"^http://(www\\.)?page\\.ly/(favicon\\.ico|public/|signup/|wp-content/)\" to=\"https://$1page.ly/$2\"/><rule from=\"^http://pagely\\.presscdn\\.com/wp-content/\" to=\"https://page.ly/wp-content/\"/></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\" default_off=\"failed ruleset test\" f=\"Pages05.net.xml\"><rule from=\"^http://www\\.sc\\.pages05\\.net/\" to=\"https://www.sc.pages05.net/\"/></ruleset>", "<ruleset name=\"P&#225;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\" 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://www\\.palantir\\.com/\" to=\"https://www.palantir.com/\"/></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)\" f=\"Palm_Coast_Data.xml\"><securecookie host=\"^\\.palmcoastd\\.com$\" name=\"^:xCOOKIEx:$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Palmetto.com\" default_off=\"failed ruleset test\" f=\"Palmetto.com.xml\"><securecookie host=\"^www\\.palmetto\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Palms Casino Resort (partial)\" default_off=\"failed ruleset test\" f=\"Palms_Casino_Resort.xml\"><exclusion pattern=\"^http://(?:www\\.)?palms\\.com/(?!$|\\?|casino-resort\\.html|content/|etc/|libs/)\"/><rule from=\"^http://(?:res2\\.|www\\.)?palms\\.com/\" to=\"https://res2.palms.com/\"/></ruleset>", "<ruleset name=\"Palo Alto Networks.com (partial)\" 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\" default_off=\"failed ruleset test\" 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=\"PandaWhale\" 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 (broken)\" default_off=\"https://trac.torproject.org/projects/tor/ticket/5804\" f=\"Pandora.xml\"><rule from=\"^http://(?:www\\.)?pandora\\.com/\" to=\"https://www.pandora.com/\"/></ruleset>", "<ruleset name=\"Pangora (partial)\" f=\"Pangora.xml\"><rule from=\"^http://images\\.pangora\\.com/\" to=\"https://images.pangora.com/\"/></ruleset>", "<ruleset name=\"Panic.com\" f=\"Panic.xml\"><securecookie host=\"^(?:.+\\.)?panic\\.com$\" 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\" f=\"Panopticlick.com.xml\"><securecookie host=\"^www\\.panopticlick\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Panopto.com (partial)\" 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\" f=\"Panoptykon.org.xml\"><rule from=\"^http://www\\.panoptykon\\.org/\" to=\"https://panoptykon.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Panoramio (problematic)\" default_off=\"mismatched\" f=\"Panoramio-problematic.xml\"><rule from=\"^http://(?:www\\.)?panoramio\\.com/\" to=\"https://www.panoramio.com/\"/></ruleset>", "<ruleset name=\"Panoramio (partial)\" f=\"Panoramio.xml\"><rule from=\"^http://ssl\\.panoramio\\.com/\" to=\"https://ssl.panoramio.com/\"/></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=\"connection 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\" f=\"Pao-pao.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"P&#227;oDel&#237;cia.com\" 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 (mismatched)\" default_off=\"mismatched\" f=\"Paperspace.io-problematic.xml\"><securecookie host=\"^\\.paperspace\\.io$\" name=\"^(?:__cfduid|cf_clearance)$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Paperspace.io (partial)\" f=\"Paperspace.io.xml\"><securecookie host=\"^(?:www\\.)?paperspace\\.io$\" 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\" platform=\"cacert\" f=\"Parabola.nu.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Parabola GNULinux.org\" platform=\"cacert\" f=\"Parabola_GNULinux.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Paradox Plaza.com (partial)\" f=\"Paradox-Interactive.xml\"><securecookie host=\".+\\.paradoxplaza\\.com$\" name=\".+\"/><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\" 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://i3\\.parallels\\.com/\" to=\"https://www.parallels.com/\"/><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=\"parastorage.com\" f=\"Parastorage.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Parature.com (partial)\" f=\"Parature.com.xml\"><securecookie host=\"^(?:s3|success)\\.parature\\.com$\" 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\" 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 Diderot University (partial)\" f=\"Paris_Diderot_University.xml\"><securecookie host=\"^auth\\.univ-paris-diderot\\.fr$\" name=\".+\"/><rule from=\"^http://auth\\.univ-paris-diderot\\.fr/\" to=\"https://auth.univ-paris-diderot.fr/\"/></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=\"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.org.uk\" f=\"Parkrun.org.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><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)\" 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=\"mismatch\" 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\" f=\"ParseCDN.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Parship.nl\" f=\"Parship.nl.xml\"><rule from=\"^http://www\\.parship\\.nl/\" to=\"https://www.parship.nl/\"/></ruleset>", "<ruleset name=\"Part Spider.com\" 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=\"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=\"Pashm.com\" 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=\"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=\"PassThePopcorn\" f=\"PassThePopcorn.xml\"><rule from=\"^http://(?:tls\\.|www\\.)?passthepopcorn\\.me/\" to=\"https://tls.passthepopcorn.me/\"/><rule from=\"^http://static\\.passthepopcorn\\.me/\" to=\"https://static.passthepopcorn.me/\"/></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\" 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)\" 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=\"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.xml\"><rule from=\"^http://(?:www\\.)?passwordcard\\.org/\" to=\"https://www.passwordcard.org/\"/></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\" 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 (false MCB)\" platform=\"mixedcontent\" f=\"Paste2.org-falsemixed.xml\"><securecookie host=\"^\\.paste2\\.org$\" name=\"^(?:__cfduid|__qca)$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Paste2.org (partial)\" f=\"Paste2.org.xml\"><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\" default_off=\"No HTTPS support anymore\" f=\"Pastebin.ca.xml\"><rule from=\"^http://(?:www\\.)?pastebin\\.ca/\" to=\"https://pastebin.ca/\"/></ruleset>", "<ruleset name=\"Pastebin.com (buggy)\" default_off=\"breaks CSS on pastes\" f=\"Pastebin.com.xml\"><rule from=\"^http://(www\\.)?pastebin\\.com/(?=adserver/|cache/|etc/|favicon\\.ico|i/|raw\\.php)\" to=\"https://$1pastebin.com/\"/></ruleset>", "<ruleset name=\"Pastee.org\" f=\"Pastee.org.xml\"><rule from=\"^http://(?:www\\.)?pastee\\.org/\" to=\"https://pastee.org/\"/></ruleset>", "<ruleset name=\"Pastemarkdown.com\" f=\"Pastemarkdown.com.xml\"><securecookie host=\"^pastemarkdown\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></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=\"mismatch\" 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\" 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=\"patrickbateman.biz\" default_off=\"failed ruleset test\" f=\"Patrickbateman.biz.xml\"><rule from=\"^http:\" to=\"https:\"/></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=\"Patterns in the Void.net\" default_off=\"self-signed\" f=\"Patterns_in_the_Void.net.xml\"><securecookie host=\"^(?:blog|code|www)\\.patternsinthevoid\\.net$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?patternsinthevoid\\.net/\" to=\"https://www.patternsinthevoid.net/\"/><rule from=\"^http://(blog|code)\\.patternsinthevoid\\.net/\" to=\"https://$1.patternsinthevoid.net/\"/></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=\"paul schreiber.com\" f=\"Paul_schreiber.com.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=\"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\" 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=\"PaymentAccuracy.gov\" f=\"PaymentAccuracy.gov.xml\"><securecookie host=\".\" name=\".\"/><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\" f=\"Payoneer.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Paypal Giving Fund.org (false MCB)\" platform=\"mixedcontent\" f=\"Paypal_Giving_Fund.org.xml\"><securecookie host=\"^www\\.paypalgivingfund\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"payrollapp.com\" default_off=\"failed ruleset test\" f=\"Payrollapp.com.xml\"><securecookie host=\"^payrollapp\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?payrollapp\\.com/\" to=\"https://payrollapp.com/\"/></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\" 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\"><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\" platform=\"mixedcontent\" f=\"Pcpartpicker.com.xml\"><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=\"PrettyEasyPrivacy\" 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=\"mismatch\" f=\"Pearson-mismatches.xml\"><rule from=\"^http://ptgmedia\\.pearsoncmg\\.com/\" to=\"https://ptgmedia.pearsoncmg.com/\"/></ruleset>", "<ruleset name=\"Pearson (partial)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" 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)\" default_off=\"failed ruleset test\" 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=\"mismatch\" 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)\" 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)\" 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=\"Peercraft\" f=\"Peercraft.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=\"peertech.org\" 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://secure\\.pegazhosting\\.com/\" to=\"https://secure.pegazhosting.com/\"/></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=\"pekwm.org\" platform=\"cacert\" f=\"Pekwm.org.xml\"><securecookie host=\"^www\\.pekwm\\.org$\" name=\".+\"/><rule from=\"^http://pekwm\\.org/\" to=\"https://www.pekwm.org/\"/><rule from=\"^http:\" to=\"https:\"/></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=\"connection refused\" f=\"PengPod.com.xml\"><securecookie host=\"^(?:.*\\.)?pengpod\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PenguinWebHosting (partial)\" platform=\"mixedcontent\" 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 &amp; Dentistry (partial)\" default_off=\"connection 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\" default_off=\"failed ruleset test\" 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\" 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=\"Pentabarf\" default_off=\"expired\" platform=\"cacert\" f=\"Pentabarf.xml\"><securecookie host=\"^pentabarf\\.org$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?pentabarf\\.org/\" to=\"https://pentabarf.org/\"/></ruleset>", "<ruleset name=\"Pentest Geek.com\" 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)\" default_off=\"failed ruleset test\" 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=\"mismatch\" 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)\" 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 &amp; 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://pmetrics\\.performancing\\.com/\" to=\"https://pmetrics.performancing.com/\"/></ruleset>", "<ruleset name=\"Periscope.io\" f=\"Periscope.io.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Periscope.tv\" f=\"Periscope.tv.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Perishable Press.com\" f=\"Perishable_Press.com.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://donate\\.perlfoundation\\.org/\" to=\"https://donate.perlfoundation.org/\"/></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=\"Perot.me\" f=\"Perot.me.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Perry Ellis.com (partial)\" default_off=\"failed ruleset test\" 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=\"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\" 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=\"mismatch\" 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=\"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=\"mismatch\" 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\" 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)\" 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 (problematic)\" default_off=\"missing certificate chain, untrusted root\" f=\"Petfinder.com-problematic.xml\"><securecookie host=\"^profiles\\.petfinder\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Petfinder.com (partial)\" f=\"Petfinder.com.xml\"><rule from=\"^http://petfinder\\.com/+\" to=\"https://www.petfinder.com/\"/><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=\"mismatch\" 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\" 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&#228;ty (mismatches)\" default_off=\"mismatch\" f=\"Petteri-Raty-mismatches.xml\"><rule from=\"^http://gentoo\\.petteriraty\\.eu/\" to=\"https://gentoo.petteriraty.eu/\"/></ruleset>", "<ruleset name=\"Petteri R&#228;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)\" f=\"PfSense.org.xml\"><securecookie host=\".+\\.pfsense\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"pfefferkoerner.de\" 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://pform\\.net/\" to=\"https://pform.net/\"/></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 (partial)\" f=\"Phaser.io.xml\"><exclusion pattern=\"^http://phaser\\.io/+(?!content/|css/|favicon\\.ico|images/)\"/><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\" f=\"Philanthropedia.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Phillips Academy\" 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)\" default_off=\"failed ruleset test\" 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)\" f=\"Philosophy-Documentation-Center.xml\"><securecookie host=\".*\\.pdcnet\\.org$\" 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=\"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)\" default_off=\"failed ruleset test\" 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.com\" 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\" default_off=\"failed ruleset test\" 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\" default_off=\"failed ruleset test\" 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\" 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=\"phpMyAdmin.net (partial)\" f=\"PhpMyAdmin.net.xml\"><securecookie host=\"^wiki\\.phpmyadmin\\.net$\" name=\".+\"/><rule from=\"^http://wiki\\.phpmyadmin\\.net/\" to=\"https://wiki.phpmyadmin.net/\"/></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=\"PhpDocumentor\" 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=\"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://piatnik\\.de/\" to=\"https://piatnik.de/\"/></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)\" 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=\"Pico-app.com\" f=\"Pico-app.com.xml\"><securecookie host=\"^\\.pico-app\\.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\" default_off=\"mismatched, self-signed\" f=\"PicoStocks.com.xml\"><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 (partial)\" f=\"Pictos.xml\"><securecookie host=\"^my\\.pictos\\.cc$\" name=\".+\"/><rule from=\"^http://(get|www\\.get|my)\\.pictos\\.cc/\" to=\"https://$1.pictos.cc/\"/></ruleset>", "<ruleset name=\"Pictshare.net\" f=\"Pictshare.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Pidg.in\" f=\"Pidg.in.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Pidgin.im\" 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=\"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://(imageproxy|pic|s\\d*)\\.pimg\\.tw/\" to=\"https://$1.pimg.tw/\"/></ruleset>", "<ruleset name=\"Pinboard.in\" f=\"Pinboard.xml\"><securecookie host=\"^(?:www\\.)?pinboard\\.in$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PineGram.com\" default_off=\"failed ruleset test\" f=\"PineGram.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.fm (expired)\" default_off=\"cert expired\" f=\"Ping.fm.xml\"><rule from=\"^http://(?:www\\.)?ping\\.fm/\" to=\"https://ping.fm/\"/></ruleset>", "<ruleset name=\"ping.gg\" f=\"Ping.gg.xml\"><rule from=\"^http://ping\\.gg/\" to=\"https://ping.gg/\"/></ruleset>", "<ruleset name=\"PingOne.com\" default_off=\"failed ruleset test\" 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\" default_off=\"failed ruleset test\" f=\"Pingability.com.xml\"><securecookie host=\"^(?:www\\.)?pingability\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?pingability\\.com/\" to=\"https://pingability.com/\"/></ruleset>", "<ruleset name=\"Pingdom.net\" f=\"Pingdom.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Pingdom.com (partial)\" 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:\" 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\" 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=\"Pinkbike (partial)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Pinkbike.xml\"><securecookie host=\"^\\.pinkbike\\.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)\" 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)\" f=\"Pinsent_Masons.xml\"><rule from=\"^http://extranets\\.pinsentmasons\\.com/\" to=\"https://extranets.pinsentmasons.com/\"/></ruleset>", "<ruleset name=\"Pinta-Outlet.fi\" 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://blog-assets\\.pinterest\\.com/\" to=\"https://d5eppwnwxs8d9.cloudfront.net/\"/><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\" 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=\"PirateHD.com\" 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=\"Pirate Linux.org\" default_off=\"expired\" f=\"Pirate_Linux.org.xml\"><securecookie host=\"^(?:www\\.)?piratelinux\\.org$\" 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=\"^\\.pirateparty\\.org\\.au$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Pirate Party.org.uk\" f=\"Pirate_Party.org.uk.xml\"><securecookie host=\"^(?:.*\\.)?pirateparty\\.org\\.uk$\" name=\".+\"/><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\" 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\" f=\"Piratenpartei.at.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Piratenpartei.de (partial)\" 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\" f=\"Pirati.cz.xml\"><securecookie host=\".+\\.pirati\\.cz$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Piratpartiet.se (false MCB)\" platform=\"mixedcontent\" f=\"Piratpartiet.se.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Piratpartiet\" 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://d3dsdp2n8y8ktk.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 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://(?:www\\.)?pixelexit\\.com/\" to=\"https://pixelexit.com/\"/></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=\"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\" f=\"Pizza_Charts.com.xml\"><securecookie host=\"^\\.?pizzacharts\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Pizzahut UK\" platform=\"mixedcontent\" 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=\"Pkr.com\" 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\" default_off=\"failed ruleset test\" 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\" default_off=\"failed ruleset test\" f=\"Planet-Source-Code.com.xml\"><securecookie host=\"^(?:www\\.)?planet-source-code\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Planet-Work\" default_off=\"failed ruleset test\" 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=\"mismatch\" f=\"PlanetLab-mismatches.org.xml\"><rule from=\"^http://monitor\\.planet-lab\\.org/\" to=\"https://monitor.planet-lab.org/\"/></ruleset>", "<ruleset name=\"PlanetLab (partial)\" 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 Discover\" default_off=\"failed ruleset test\" f=\"Planet_Discover.xml\"><securecookie host=\"^(?:.*\\.)?planetdiscover\\.com$\" name=\".+\"/><rule from=\"^http://([\\w\\-]\\.)?planetdiscover\\.com/\" to=\"https://$1planetdiscover.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://static\\.planetminecraft\\.com/\" to=\"https://static.planetminecraft.com/\"/></ruleset>", "<ruleset name=\"planetlan.com (partial)\" f=\"Planetlan.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Planned Parenthood\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Planned-Parenthood.xml\"><rule from=\"^http://(?:www\\.)?plannedparenthood\\.org/\" to=\"https://www.plannedparenthood.org/\"/></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=\"failed ruleset test\" f=\"PlantSolution.de-falsemixed.xml\"><securecookie host=\"^(?:www)?\\.plantsolution\\.de$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?plantsolution\\.de/\" to=\"https://www.plantsolution.de/\"/></ruleset>", "<ruleset name=\"PlantSolution.de (partial)\" default_off=\"failed ruleset test\" f=\"PlantSolution.de.xml\"><rule from=\"^http://(?:www\\.)?plantsolution\\.de/(?=favicon\\.ico|images/|libraries/|media/|modules/|/?plugins/|templates/)\" to=\"https://www.plantsolution.de/\"/></ruleset>", "<ruleset name=\"plantappstore.com (false MCB)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Plantappstore.com-falsemixed.xml\"><securecookie host=\"^(?:\\.|www\\.)?plantappstore\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"plantappstore.com (partial)\" f=\"Plantappstore.com.xml\"><rule from=\"^http://(www\\.)?plantappstore\\.com/(?=catalog/|favicon\\.ico|images/)\" to=\"https://$1plantappstore.com/\"/></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=\"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://images\\.plattstatic\\.com/\" to=\"https://images.plattstatic.com/\"/></ruleset>", "<ruleset name=\"Plausible.coop\" f=\"Plausible.coop.xml\"><securecookie host=\"^(?:www\\.)?plausible\\.coop$\" 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://(?:www\\.)?playonlinux\\.com/\" to=\"https://www.playonlinux.com/\"/></ruleset>", "<ruleset name=\"PlayStation.net\" f=\"PlayStation.net.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PlayStation.com (partial)\" 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\" f=\"PlayerAuctions.com.xml\"><securecookie host=\"^www\\.playerauctions\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PlayerIO.com\" default_off=\"failed ruleset test\" 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=\"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)\" 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=\"Pledgie.com (partial)\" f=\"Pledgie.xml\"><rule from=\"^http://(?:www\\.)?pledgie\\.com/\" to=\"https://pledgie.com/\"/><securecookie host=\"^pledgie\\.com$\" name=\".*\"/></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\" 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 (partial)\" 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)\" 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=\"Plugin-Planet.com\" f=\"Plugin-Planet.com.xml\"><securecookie host=\"^(?:www\\.)?plugin-planet\\.com$\" name=\".+\"/><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\" default_off=\"failed ruleset test\" 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\" 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=\"plusme.net (false MCB)\" platform=\"mixedcontent\" f=\"Plusme.net-falsemixed.xml\"><securecookie host=\"^(?:w*\\.)?plusme\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"plusme.net (partial)\" 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)\" 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=\"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=\"PodOmatic.com\" platform=\"mixedcontent\" f=\"PodOmatic.com.xml\"><rule from=\"^http://enterprise\\.podomatic\\.com/\" to=\"https://enterprise.podomatic.com/\"/></ruleset>", "<ruleset name=\"PodVertise\" default_off=\"mismatch, self-signed\" f=\"PodVertise.xml\"><securecookie host=\"^www\\.podvertiseonline\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?podvertiseonline\\.com/\" to=\"https://www.podvertiseonline.com/\"/></ruleset>", "<ruleset name=\"Pod Upti.me\" f=\"Pod_Upti.me.xml\"><securecookie host=\"^\\.podupti\\.me$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Podbean.com\" f=\"Podbean.com.xml\"><securecookie host=\"^(?:\\.|www\\.)?podbean\\.com$\" name=\".+\"/><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\" 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\" f=\"Podnapisi.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"poets.org\" f=\"Poets.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Pogamay.ru (partial)\" default_off=\"expired\" f=\"Pogamay.ru.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=\"Pointroll\" 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://(?:www\\.)?poivy\\.com/\" to=\"https://www.poivy.com/\"/></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&#233;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&#233;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=\"Connection 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\" default_off=\"failed ruleset test\" 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=\"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 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 (partial)\" default_off=\"mismatch\" f=\"Politico.xml\"><exclusion pattern=\"^http://(?:avatar|dyn|find|www2)\\.\"/><securecookie host=\"^(?:jobs)?\\.politico\\.com$\" name=\".*\"/><rule from=\"^http://politico\\.com/\" to=\"https://www.politico.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Politico Pro.com\" f=\"Politico_Pro.com.xml\"><securecookie host=\"^(?:www)?\\.politicopro\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PoliticsHome.com\" f=\"PoliticsHome.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Politiken.dk (mixed content)\" 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=\"politisktinkorrekt.info\" default_off=\"failed ruleset test\" f=\"Politisktinkorrekt.info.xml\"><rule from=\"^http://politisktinkorrekt\\.info/\" to=\"https://politisktinkorrekt.info/\"/><rule from=\"^http://www\\.politisktinkorrekt\\.info/\" to=\"https://politisktinkorrekt.info/\"/></ruleset>", "<ruleset name=\"Polity.co.uk\" 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\" 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\" f=\"PolyBrowser.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PolyGrant.com\" 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-]\"/><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=\"mismatch\" 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)\" 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\" 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=\"poopl.org\" f=\"Poolp.org.xml\"><securecookie host=\"^\\.poolp\\.org$\" name=\".+\"/><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/\"/></ruleset>", "<ruleset name=\"PopAds.net\" f=\"PopAds.xml\"><securecookie host=\".*\\.popads\\.net$\" name=\".+\"/><rule from=\"^http://c[12]\\.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\" default_off=\"failed ruleset test\" f=\"PopAtomic.xml\"><securecookie host=\"^(?:www\\.)?popatomic\\.org$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PopCash.net\" 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://(api|js|search)\\.popin\\.cc/\" to=\"https://$1.popin.cc/\"/><rule from=\"^http://(?:r|sync)\\.popin\\.cc/\" to=\"https://sync.popin.cc/\"/></ruleset>", "<ruleset name=\"PopSci.com (false MCB)\" platform=\"mixedcontent\" default_off=\"missing certificate chain, needs clearnet testing\" f=\"PopSci.com-falsemixed.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PopSci.com (partial)\" default_off=\"missing certificate chain, needs clearnet testing\" f=\"PopSci.com.xml\"><exclusion pattern=\"http://(?:www\\.)?popsci\\.com/+(?!sites/)\"/><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=\"PopcornTime.io\" f=\"PopcornTime.io.xml\"><securecookie host=\"^\\.popcorntime\\.io$\" name=\"^(?:__cfduid|cf_clearance)$\"/><rule from=\"^http://status\\.popcorntime\\.io/\" to=\"https://popcorntime.statuspage.io/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Popehat.com (broken)\" default_off=\"SSL error\" f=\"Popehat.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Poppy Sports\" platform=\"mixedcontent\" 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\" default_off=\"failed ruleset test\" 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=\"mismatch\" 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 (partial)\" f=\"PornHub.xml\"><exclusion pattern=\"http://www\\.pornhub\\.com/+(?!favicon\\.ico|insights(?:/wp-content|/wp-includes/))\"/><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\" 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)\" 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)\" default_off=\"failed ruleset test\" 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\" 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)\" 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.ch\" 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=\"PostNord.se\" 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)\" default_off=\"failed ruleset test\" 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)\" 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\" 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)\" f=\"Poste.it.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PosteShop.it\" 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=\"Posten.se\" f=\"Posten.se.xml\"><rule from=\"^http://posten\\.se/\" to=\"https://www.posten.se/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Posteo.de\" 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=\"connection refused\" f=\"Poster_Store_UK.xml\"><securecookie host=\"^\\.(?:www\\.)?posterstoreuk\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Posterous clients\" default_off=\"mismatch\" 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=\"Postimg.com (partial)\" f=\"Postimg.com.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"postimg.org\" f=\"Postimg.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><rule from=\"^http://(s\\d+\\.|www\\.)?postimg\\.org/\" to=\"https://$1postimg.org/\"/></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\" 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\" platform=\"mixedcontent\" f=\"Postscapes.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)\" 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\" 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\" 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\" 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\" default_off=\"failed ruleset test\" 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\" 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=\"Ppy.sh (partial)\" f=\"Ppy.sh.xml\"><securecookie host=\"(osu|jizz|store)\\.ppy.sh\" name=\".*\"/><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\" 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/\"/></ruleset>", "<ruleset name=\"preCharge.com\" 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=\"mismatch\" 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\" 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\" f=\"Prediction.IO.xml\"><securecookie host=\"^(?:templates)?\\.prediction\\.io$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Preferred Reservations (partial)\" 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=\"mismatch\" f=\"Preisvergleich-Internet-Services-mismatches.xml\"><rule from=\"^http://s\\.gzhls\\.at/\" to=\"https://s.gzhls.at/\"/></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://(www\\.)?metashop\\.at/\" to=\"https://$1metashop.at/\"/></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=\"^secure\\.premiumize\\.me$\" name=\".*\"/><rule from=\"^http://(?:secure\\.|www\\.)?premiumize\\.me/\" to=\"https://secure.premiumize.me/\"/></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\" f=\"PressLabs_SSL.xml\"><rule from=\"^http://([\\w-]+\\.)?plssl\\.com/\" to=\"https://$1plssl.com/\"/></ruleset>", "<ruleset name=\"PressPage.com (partial)\" 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)\" f=\"PressReader.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Pressable.com (partial)\" 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)\" f=\"Pressflex.xml\"><rule from=\"^http://(?:web\\.|www\\.)?blogads\\.com/\" to=\"https://web.blogads.com/\"/></ruleset>", "<ruleset name=\"Pretty in Cash (mismatches)\" default_off=\"mismatch\" 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)\" f=\"Pretty-in-Cash.xml\"><rule from=\"^http://exgf\\.teenbff\\.com/\" to=\"https://exgf.teenbff.com/\"/></ruleset>", "<ruleset name=\"Pretty Lights Music\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" 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=\"Prey (partial)\" f=\"Prey.xml\"><securecookie host=\"^.+\\.preyproject\\.com$\" name=\".+\"/><rule from=\"^http://(?:(panel\\.)|www\\.)?preyproject\\.com/\" to=\"https://$1preyproject.com/\"/><rule from=\"^http://support\\.preyproject\\.com/(help|pkg|stylesheets)/\" to=\"https://asset-1.tenderapp.com/$1/\"/></ruleset>", "<ruleset name=\"PreyProject\" default_off=\"failed ruleset test\" f=\"PreyProject.xml\"><securecookie host=\"^(?:control|panel)\\.preyproject\\.com$\" name=\".*\"/><rule from=\"^http://(control|panel)\\.preyproject\\.com/\" to=\"https://$1.preyproject.com/\"/></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.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\" 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=\"Primabanka.sk\" default_off=\"failed ruleset test\" 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=\"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\"><rule from=\"^http://vws3\\.primus\\.ca/\" to=\"https://vws3.primus.ca/\"/></ruleset>", "<ruleset name=\"Princeton.edu (partial)\" f=\"Princeton.edu.xml\"><securecookie host=\"^(?:alumnicas|blogs|fed|tigernet)\\.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\" 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 International.org\" f=\"Privacy-International.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\" 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\" 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\" 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=\"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\" 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 (partial)\" platform=\"cacert\" f=\"Pro-Linux.de.xml\"><securecookie host=\"\\.www\\.pro-linux\\.de$\" name=\"^phpbb2bkHas_(?:data|sid)$\"/><rule from=\"^http://(?:www\\.)?pro-linux\\.de/(?=css/|favicon\\.ico|forum(?:$|[?/])|images/)\" to=\"https://www.pro-linux.de/\"/></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=\"mismatched\" f=\"Pro-market.net.xml\"><rule from=\"^http://ads\\.pro-market\\.net/\" to=\"https://ads.pro-market.net/\"/></ruleset>", "<ruleset name=\"pro186.com (partial)\" default_off=\"failed ruleset test\" f=\"Pro186.com.xml\"><rule from=\"^http://cdn\\.pro186\\.com/\" to=\"https://d31p8cbsm4vlum.cloudfront.net/\"/></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)\" 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&#381;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=\"Pro Ultra Trim\" default_off=\"failed ruleset test\" f=\"Pro_Ultra_Trim.xml\"><securecookie host=\"^(?:w*\\.)?proultratrim\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></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 &amp; 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=\"Productvisio\" default_off=\"failed ruleset test\" f=\"Productvisio.xml\"><securecookie host=\"^\\.?productvisio\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Professional Security Testers.org\" default_off=\"expired, self-signed\" f=\"Professional_Security_Testers.org.xml\"><rule from=\"^http://(?:www\\.)?professionalsecuritytesters\\.org/\" to=\"https://professionalsecuritytesters.org/\"/></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\" default_off=\"failed ruleset test\" f=\"ProgrammableWeb.xml\"><securecookie host=\".*\\.programmableweb\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Progreso Webhosting (partial)\" f=\"Progreso_Webhosting.xml\"><exclusion pattern=\"^http://webmail\\.\"/><securecookie host=\"^(?:.*\\.)?progreso\\.pl$\" name=\".+\"/><rule from=\"^http://(\\w+\\.)?progreso\\.pl/\" to=\"https://$1progreso.pl/\"/></ruleset>", "<ruleset name=\"Progress.com (partial)\" 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://www\\.progressive\\.hu/\" to=\"https://www.progressive.hu/\"/></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:\" to=\"https:\"/></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)\" f=\"Project_Meshnet.xml\"><securecookie host=\"^(?:wiki)?\\.projectmeshnet\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Project Secret Identity.org\" f=\"Project_Secret_Identity.org.xml\"><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)\" default_off=\"failed ruleset test\" f=\"Prometheus_Global.xml\"><rule from=\"^http://(?:www\\.)?progllc\\.com/\" to=\"https://www.progllc.com/\"/></ruleset>", "<ruleset name=\"Prometric\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Prometric.xml\"><securecookie host=\"^(?:.*\\.)?prometric.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?prometric\\.com/\" to=\"https://www.prometric.com/\"/></ruleset>", "<ruleset name=\"ProofWiki.org\" f=\"ProofWiki.org.xml\"><rule from=\"^http:\" to=\"https:\"/></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 (partial)\" f=\"PropellerAds.xml\"><securecookie host=\"^ad\\.propellerads\\.com$\" name=\".+\"/><rule from=\"^http://(?:ad|img)\\.propellerads\\.com/\" to=\"https://ad.propellerads.com/\"/></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=\"PropertyDeals.com.pk\" default_off=\"failed ruleset test\" f=\"PropertyDeals.com.pk.xml\"><securecookie host=\"^www\\.propertydeals\\.com\\.pk$\" 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)\" default_off=\"failed ruleset test\" 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\" f=\"ProspectEye.com.xml\"><securecookie host=\"^tr\\.prospecteye\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"prosystemfx.com\" default_off=\"failed ruleset test\" 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\" 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.com\" f=\"ProtonMail.com.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=\"mismatch\" 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=\"^\\.providesupport\\.com$\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\"^image\\.providesupport\\.com$\" name=\".*\"/><rule from=\"^http://((?:admin\\d|image|messenger\\d|www)\\.)?providesupport\\.com/\" to=\"https://$1providesupport.com/\"/></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\" 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\" default_off=\"failed ruleset test\" 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\" 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=\"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=\"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\" default_off=\"failed ruleset test\" f=\"Pstatic.net.xml\"><rule from=\"^http://ssl\\.pstatic\\.net/\" to=\"https://ssl.pstatic.net/\"/></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://js\\.ptengine\\.jp/\" to=\"https://js.ptengine.jp/\"/></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://ox-d\\.pubgears\\.com/\" to=\"https://ox-d.pubgears.com/\"/></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://analytics\\.pubnxt\\.net/\" to=\"https://analytics.pubnxt.net/\"/></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 (partial)\" f=\"PubPeer.com.xml\"><securecookie host=\"^\\w\" 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=\"Pubkey.is\" f=\"Pubkey.is.xml\"><securecookie host=\"^(?:www\\.)?pubkey\\.is$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></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&#233;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\"><exclusion pattern=\"^http://(?:blogs\\.|currents\\.|www\\.)?plos\\.org/+(?!favicon\\.ico|wp-content/|wp-includes/)\"/><securecookie host=\"^(?:(?!(?:blogs|currents|www)\\.).+\\.)?plos\\.org$\" 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://fax\\.org/\" to=\"https://bit.ly/\"/><rule from=\"^http://(?:www\\.)?(?:public\\.)?resource\\.org/\" to=\"https://public.resource.org/\"/><rule from=\"^http://bulk\\.resource\\.org/\" to=\"https://bulk.resource.org/\"/><rule from=\"^http://(www\\.)?(house|law|patent)\\.resource\\.org/\" to=\"https://$2.resource.org/\"/><rule from=\"^http://(?:www\\.)?yeswecan\\.org/\" to=\"https://yeswecan.org/\"/></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 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=\"Public Suffix.org\" f=\"Public_Suffix.org.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=\"Publons\" f=\"Publons.xml\"><securecookie host=\"^publons\\.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=\"puckey.org\" f=\"Puckey.org.xml\"><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\" 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\" f=\"Pulse.me.xml\"><rule from=\"^http://(?:www\\.)?pulse\\.me/\" to=\"https://www.pulse.me/\"/></ruleset>", "<ruleset name=\"PulsePoint (mismatches)\" default_off=\"mismatch\" 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=\"^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\" 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\" f=\"Pure-privacy.org.xml\"><rule from=\"^http://(?:www\\.)?pure-privacy\\.org/\" to=\"https://pure-privacy.org/\"/></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=\"Purecine.fr (partial)\" default_off=\"missing certificate chain\" f=\"Purecine.fr.xml\"><rule from=\"^http://(?:www\\.)?purecine\\.fr/\" to=\"https://www.cinemovies.fr/\"/></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)\" 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=\"PyPA.io\" f=\"PyPA.io.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PyPIP.in (partial)\" default_off=\"connection dropped\" f=\"PyPIP.in.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PyWeek.org\" 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\" f=\"Pyneo.org.xml\"><securecookie host=\"^pyneo\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Pypi\" f=\"Pypi.xml\"><securecookie host=\"^pypi.python.org$\" name=\".*\"/><rule from=\"^http://pypi\\.python\\.org/\" to=\"https://pypi.python.org/\"/></ruleset>", "<ruleset name=\"Python.org (partial)\" f=\"Python.org.xml\"><securecookie host=\"^bugs\\.python\\.org$\" name=\".+\"/><securecookie host=\"^wiki\\.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=\"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\" 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)\" 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\" 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&amp;\"/></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\"><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=\"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\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Qbrick.com (partial)\" f=\"Qbrick.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Qcloud.com (partial)\" f=\"Qcloud.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Qh img.com\" f=\"Qh_img.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://p([0-4])\\.qhimg\\.com/\" to=\"https://p$1.ssl.qhimg.com/\"/><rule from=\"^http://p\\d+\\.qhimg\\.com/\" to=\"https://p0.ssl.qhimg.com/\"/><rule from=\"^http://s(\\d)\\.qhimg\\.com/\" to=\"https://s$1.ssl.qhimg.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Qihu CDN.com\" f=\"Qihu_CDN.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Qlogo.cn\" f=\"Qlogo.cn.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"qnetp.net (partial)\" 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=\"QRpedia.org\" default_off=\"missing chain cert\" platform=\"mixedcontent\" f=\"Qrpedia.org.xml\"><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\" 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\" 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\" 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)\" 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=\"connection 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)\" 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=\"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=\"Questionmarket.com\" f=\"Questionmarket.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"QuickHash.com\" f=\"QuickHash.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Fast Shopping Cart.com\" 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=\"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=\"Quotes and Sayings.com\" default_off=\"redirects to another domain\" f=\"Quotes_and_Sayings.com.xml\"><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\" default_off=\"self-signed\" f=\"QupZilla.xml\"><securecookie host=\".\" name=\".\"/><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\" 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=\"Qwant.com\" f=\"Qwant.com.xml\"><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\" f=\"R-HPC.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"R-kom.de\" default_off=\"failed ruleset test\" 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=\"R00tshell.lighthouseapp.com\" default_off=\"Cert wildcard depth mismatch\" f=\"R00tshell.lighthouseapp.com.xml\"><rule from=\"^http://r00tshell\\.lighthouseapp\\.com/\" to=\"https://www.r00tshell.lighthouseapp.com/\"/></ruleset>", "<ruleset name=\"r00tz.org (partial)\" f=\"R00tz.org.xml\"><rule from=\"^http://(?:www\\.)?r00tz(?:-org\\.theidentityproject\\.com|\\.org)/wp-content/\" to=\"https://secure.bluehost.com/~theiden1/r00tz/wp-content/\"/></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://barra\\.r7\\.com/\" to=\"https://barra.r7.com/\"/></ruleset>", "<ruleset name=\"r7ls.net\" f=\"R7ls.net.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"RAC\" default_off=\"failed ruleset test\" 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)\" 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\" 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=\"connection dropped\" 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://je-s\\.rcuk\\.ac\\.uk/\" to=\"https://je-s.rcuk.ac.uk/\"/></ruleset>", "<ruleset name=\"RDO project.org\" f=\"RDO_project.org.xml\"><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\" default_off=\"self-signed\" f=\"RDot.org.xml\"><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=\"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=\"mismatch\" 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\" f=\"RFC_Express.xml\"><securecookie host=\"^(?:www\\.)?rfcexpress\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"RF Parts.com\" default_off=\"failed ruleset test\" 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)\" 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\" 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 &amp; 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://secure2\\.roisolutions\\.net/\" to=\"https://secure2.roisolutions.net/\"/></ruleset>", "<ruleset name=\"ROMDashboard.com\" f=\"ROMDashboard.xml\"><securecookie host=\"^(?:w*\\.)?romdashboard\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"RPM Fusion.org (partial)\" f=\"RPM_Fusion.org.xml\"><securecookie host=\"^bugzilla\\.rpmfusion\\.org$\" name=\".+\"/><rule from=\"^http://(bugzilla|lists)\\.rpmfusion\\.org/\" to=\"https://$1.rpmfusion.org/\"/></ruleset>", "<ruleset name=\"RPXNow.com (partial)\" f=\"RPXNow.com.xml\"><securecookie host=\"^(?:.*\\.)?rpxnow\\.com$\" name=\".+\"/><rule from=\"^http://(?:cdn|static)\\.rpxnow\\.com/\" to=\"https://s3.amazonaws.com/static.rpxnow.com/\"/><rule from=\"^http://widget-cdn\\.rpxnow\\.com/\" to=\"https://d29usylhdk1xyu.cloudfront.net/\"/><rule from=\"^http://(\\w+\\.)?rpxnow\\.com/\" to=\"https://$1rpxnow.com/\"/></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)\" default_off=\"failed ruleset test\" f=\"RSA-Security.xml\"><rule from=\"^http://www\\.securesuite\\.co\\.uk/\" to=\"https://www.securesuite.co.uk/\"/></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)\" 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\" 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&amp;vd=autodiscover\"/><rule from=\"^http://autodiscover\\.rsc\\.org\\.uk/+([^?]+)$\" to=\"https://outlook.office365.com/$1?realm=rsc.org.uk&amp;vd=autodiscover\"/><rule from=\"^http://autodiscover\\.rsc\\.org\\.uk/+(.+)\" to=\"https://outlook.office365.com/$1&amp;realm=rsc.org.uk&amp;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\" 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 (partial)\" default_off=\"failed ruleset test\" f=\"RStudio.com.xml\"><rule from=\"^http://(?:www\\.)?rstudio\\.com/\" to=\"https://www.rstudio.com/\"/></ruleset>", "<ruleset name=\"RT.com (partial)\" f=\"RT.com.xml\"><securecookie host=\".\" name=\".\"/><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\" default_off=\"failed ruleset test\" f=\"RTP.vc.xml\"><securecookie host=\"^\\.rtp\\.vc$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?rtp\\.vc/\" to=\"https://www.rtp.vc/\"/></ruleset>", "<ruleset name=\"RT Tire\" 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\" default_off=\"failed ruleset test\" f=\"RYL_Warfare.xml\"><securecookie host=\"^(?:w*\\.)?rylwarfare\\.net$\" name=\".+\"/><rule from=\"^http://(www\\.)?rylwarfare\\.net/\" to=\"https://$1rylwarefare.net/\"/></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\" 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=\"Rabotilnica.com.mk\" default_off=\"mismatched, self-signed, some pages 404\" f=\"Rabotilnica.com.mk.xml\"><rule from=\"^http://(?:www\\.)?rabotilnica\\.com\\.mk/\" to=\"https://rabotilnica.com.mk/\"/></ruleset>", "<ruleset name=\"Race Forward.org\" 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\" f=\"Racked.com.xml\"><rule from=\"^http://racked\\.com/\" to=\"https://www.racked.com/\"/><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)\" f=\"Rackspace.co.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Rackspace.co.nz\" 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\" f=\"Rackspace.dk.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Rackspace.hk\" 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)\" 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://php\\.radford\\.edu/\" to=\"https://php.radford.edu/\"/></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\" default_off=\"missing certificate chain\" f=\"Radioeins.de.xml\"><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://(?:www\\.)?radioplayer\\.co\\.uk/\" to=\"https://www.radioplayer.co.uk/\"/></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://account\\.radiusnetworks\\.com/\" to=\"https://account.radiusnetworks.com/\"/></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.ch\" 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=\"Railscloud.de\" default_off=\"expired\" f=\"Railscloud.de.xml\"><rule from=\"^http://www\\.railscloud\\.de/\" to=\"https://railscloud.de/\"/><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 (partial)\" f=\"Rakuten.co.jp.xml\"><rule from=\"^http://image\\.rakuten\\.co\\.jp/\" to=\"https://image.rakuten.co.jp/\"/><rule from=\"^http://a\\.ichiba\\.jp\\.rakuten-static\\.com/\" to=\"https://a.ichiba.jp.rakuten-static.com/\"/></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)\" f=\"Rally_Congress.xml\"><rule from=\"^http://secure\\.rallycongress\\.com/\" to=\"https://secure.rallycongress.com/\"/></ruleset>", "<ruleset name=\"Rally Dev.com\" 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.su\" f=\"Rambler.su.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Rambler.ru (partial)\" f=\"Rambler.xml\"><exclusion pattern=\"^http://kassa\\.rambler\\.ru/(?:cinemapartnership|concerts|partners|refund|sport|theatre|unsubscribe)?(?:$|\\?)\"/><securecookie host=\"^\\.rambler\\.ru$\" name=\"^(?:_gat?|lvr?|realty_session|ruid|top100rb|top100vr)$\"/><securecookie host=\"^(?:id|\\.?news|travel)\\.rambler\\.ru$\" name=\".\"/><rule from=\"^http://((?:assist|cnt|cntcerber|counter|id|images|kassa|m\\.kassa|widget\\.kassa|mail|mail-pda|news|api\\.news|pgc|realty|[\\w-]+-realty|scounter|soft|sync|topline|travel|update)\\.)?rambler\\.ru/\" to=\"https://$1rambler.ru/\"/></ruleset>", "<ruleset name=\"Randischumann\" 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=\"randombit.net\" default_off=\"expired\" platform=\"cacert\" f=\"Randombit.net.xml\"><rule from=\"^http://((?:botan|lists|www)\\.)?randombit\\.net/\" to=\"https://$1randombit.net/\"/></ruleset>", "<ruleset name=\"Rands in Repose\" default_off=\"mismatch\" f=\"Rands-in-Repose.xml\"><rule from=\"^http://(?:www\\.)?randsinrepose\\.com/\" to=\"https://randsinrepose.com/\"/></ruleset>", "<ruleset name=\"Range Networks.com\" 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\" f=\"Raphael-Hertzog.xml\"><securecookie host=\"^raphaelhertzog\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Rapid7 (partial)\" platform=\"mixedcontent\" 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=\"RapidShare.com (partial)\" default_off=\"expired\" f=\"RapidShare.xml\"><rule from=\"^http://rapidshare\\.com/\" to=\"https://www.rapidshare.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"RapidSite.jp\" f=\"RapidSite.jp.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Rapidgator.net (partial)\" f=\"Rapidgator.net.xml\"><rule from=\"^http://(www\\.)?rapidgator\\.net/(article/premium|assets/|auth/(?:captcha|login)|account/registration|css/|images/)\" to=\"https://$1rapidgator.net/$2\"/></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\" 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=\"Rateip.com\" 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=\"^secure\\.rating-widget\\.com$\" name=\".+\"/><rule from=\"^http://rating-widget\\.com/\" to=\"https://secure.rating-widget.com/\"/><rule from=\"^http://(?:secure|www)\\.rating-widget\\.com/\" to=\"https://secure.rating-widget.com/\"/><rule from=\"^http://(css|img|js)\\.rating-widget\\.com/\" to=\"https://secure.rating-widget.com/$1/\"/></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\" default_off=\"failed ruleset test\" 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\" 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=\"connection dropped\" f=\"Rawstudio.org.xml\"><securecookie host=\"^\\.rawstudio\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Raymii.org\" f=\"Raymii.org.xml\"><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=\"mismatch\" 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\" platform=\"cacert\" default_off=\"failed ruleset test\" f=\"Rbu.sh.xml\"><securecookie host=\"^goodpoint\\.de$\" name=\".*\"/><securecookie host=\"^(?:.*\\.)?rbu\\.sh$\" name=\".*\"/><rule from=\"^http://goodpoint\\.de/\" to=\"https://goodpoint.de/\"/><rule from=\"^http://(www\\.)?rbu\\.sh/\" to=\"https://$1rbu.sh/\"/></ruleset>", "<ruleset name=\"Rdio (partial)\" 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)\" 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=\"mismatch\" f=\"ReTargeter-mismatches.xml\"><rule from=\"^http://ub\\.retargeter\\.com/\" to=\"https://ub.retargeter.com/\"/></ruleset>", "<ruleset name=\"ReTargeter.com (partial)\" 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=\"mismatch\" f=\"Read-Comics-in-Public.xml\"><rule from=\"^http://(?:www\\.)?readcomicsinpublic\\.com/\" to=\"https://readcomicsinpublic.com/\"/></ruleset>", "<ruleset name=\"ReadCube.com (partial)\" f=\"ReadCube.com.xml\"><securecookie host=\"^(?:support)?\\.readcube\\.com$\" name=\".+\"/><rule from=\"^http://((?:green\\d-assets|support|www)\\.)?readcube\\.com/\" to=\"https://$1readcube.com/\"/></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\" platform=\"mixedcontent\" f=\"ReadSpeaker.xml\"><rule from=\"^http://(?:www\\.)?readspeaker\\.com/\" to=\"https://www.readspeaker.com/\"/><rule from=\"^http://(app|media|vttts|lqttswr|docreader)\\.readspeaker\\.com/\" to=\"https://$1.readspeaker.com/\"/><rule from=\"^http://asp\\.readspeaker\\.net/\" to=\"https://asp.readspeaker.net/\"/></ruleset>", "<ruleset name=\"Read the Docs\" f=\"ReadTheDocs.xml\"><securecookie host=\"^readthedocs\\.org$\" name=\".+\"/><securecookie host=\"^readthedocs\\.com$\" name=\".+\"/><rule from=\"^https?://(.+\\.)?rtfd\\.org/\" to=\"https://$1readthedocs.org/\"/><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:\" to=\"https:\"/></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=\"^\\.real-debrid\\.com$\" 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\" 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\" 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=\"connection 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\" default_off=\"failed ruleset test\" 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=\"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\" default_off=\"expired, self-signed\" f=\"Reasons.to.xml\"><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\" 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\" f=\"Recode.net.xml\"><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=\"Recurly\" f=\"Recurly.xml\"><securecookie host=\"^app\\.recurly\\.com$\" name=\".+\"/><securecookie host=\"^api\\.recurly\\.com$\" name=\".+\"/><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 (No HTTPS)\" default_off=\"Site does not support HTTPS currently\" f=\"RecycleNow.xml\"><rule from=\"^http://(?:www\\.)?recyclenow\\.com/\" to=\"https://www.recyclenow.com/\"/><securecookie host=\"^www\\.recyclenow\\.com$\" name=\".*\"/></ruleset>", "<ruleset name=\"RAasnet.com (partial)\" 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=\"RedTeam-Pentesting.de\" f=\"RedTeam-Pentesting.de.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></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\" default_off=\"failed ruleset test\" 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)\" 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)\" f=\"Red_Flush_Casino.xml\"><rule from=\"^http://secure\\.redflush\\.com/\" to=\"https://secure.redflush.com/\"/></ruleset>", "<ruleset name=\"Red Hat.com (partial)\" f=\"Red_Hat.xml\"><exclusion pattern=\"^http://investors\\.redhat\\.com/(?!common/)\"/><securecookie host=\".\" name=\".\"/><rule from=\"^http://www\\.cz\\.redhat\\.com/\" to=\"https://cz.redhat.com/\"/><rule from=\"^http://et\\.redhat\\.com/[^?]*\" to=\"https://community.redhat.com/software/\"/><rule from=\"^http://investors\\.redhat\\.com/\" to=\"https://investor.shareholder.com/\"/><rule from=\"^http://jobs\\.redhat\\.com/\" to=\"https://redhat.sc.hodesdigital.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Red Letter.link\" f=\"Red_Letter.link.xml\"><securecookie host=\".\" name=\".\"/><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\" f=\"Red_Matrix.me.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Red Team.net (partial)\" default_off=\"connection 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)\" 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\" f=\"Redcoon.pt.xml\"><rule from=\"^http://redcoon\\.pt/\" to=\"https://www.redcoon.pt/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Redd.it\" f=\"Redd.it.xml\"><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=\".*\\.reddit\\.com$\" 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=\"redditmade.com\" f=\"Redditmade.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\" 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\" default_off=\"failed ruleset test\" 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)\" default_off=\"failed ruleset test\" 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\" default_off=\"failed ruleset test\" 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)\" default_off=\"failed ruleset test\" 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://((?:[ct]\\.|de\\.)?mark\\.|shopping\\.|www\\.)?reevoo\\.com/\" to=\"https://$1reevoo.com/\"/><rule from=\"^http://cdn\\.images\\.reevoo\\.com/\" to=\"https://d1jyr02lmd46xp.cloudfront.net/\"/><rule from=\"^http://mark\\.reevoo\\.(es|fr|it|nl)/\" to=\"https://mark.reevoo.$1/\"/></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=\"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=\"ReformaBTL\" default_off=\"self-signed\" f=\"ReformaBTL.xml\"><securecookie host=\"^www\\.informabtl\\.com$\" name=\".+\"/><rule from=\"^http://(?:cdn\\.|www\\.)?informabtl\\.com/\" to=\"https://www.informabtl.com/\"/></ruleset>", "<ruleset name=\"Reformal (partial)\" default_off=\"failed ruleset test\" 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=\"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=\"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=\"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=\"^(csr|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://home\\.regit\\.org/\" to=\"https://home.regit.org/\"/></ruleset>", "<ruleset name=\"Regjeringen.no (partial)\" f=\"Regjeringen.no.xml\"><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=\"regruhosting.ru\" f=\"Regruhosting.ru.xml\"><securecookie host=\"^\\.security\\.pp\\.regruhosting\\.ru$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Regularish.com\" default_off=\"failed ruleset test\" f=\"Regularish.com.xml\"><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\" 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 (broken)\" default_off=\"wrong host in certificates\" f=\"Rejseplanen.dk.xml\"><rule from=\"^http://rejseplanen\\.dk/\" to=\"https://www.rejseplanen.dk/\"/><rule from=\"^http://(www|info|xajax-prod|euspirit|ptt)\\.rejseplanen\\.dk/\" to=\"https://$1.rejseplanen.dk/\"/></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\" default_off=\"failed ruleset test\" 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=\"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)\" default_off=\"failed ruleset test\" 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://community\\.remedygames\\.com/\" to=\"https://community.remedygames.com/\"/></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\" f=\"RemoteCoder.io.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"remoteStorage.io\" 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\" f=\"RenderFarming.net.xml\"><securecookie host=\"^burp\\.renderfarming\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Renewable Freedom.org\" f=\"Renewable_Freedom.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Reno Gazette-Journal (partial)\" default_off=\"failed ruleset test\" 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\" f=\"Renrencaopan.com.xml\"><securecookie host=\"^(?:www\\.)?renrencaopan\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Rensselaer Polytechnic Institute\" default_off=\"failed ruleset test\" 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\" 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\" platform=\"cacert\" default_off=\"missing certificate chain\" f=\"Replicant.us.xml\"><securecookie host=\"^redmine\\.replicant\\.us$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Reporo (partial)\" f=\"Reporo.xml\"><securecookie host=\"^www\\.reporo\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?reporo\\.com/\" to=\"https://www.reporo.com/\"/><rule from=\"^http://static\\.reporo\\.com/\" to=\"https://static.reporo.com/\"/></ruleset>", "<ruleset name=\"Report-uri.io\" f=\"Report-uri.io.xml\"><securecookie host=\"^(www\\.)?report-uri\\.io\" name=\".+\"/><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)\" 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=\"Repost.Us\" default_off=\"failed ruleset test\" f=\"Repost.Us.xml\"><securecookie host=\"^.*\\.repost\\.us$\" name=\".+\"/><rule from=\"^http://(secure\\.|www\\.)?repost\\.us/\" to=\"https://$1repost.us/\"/><rule from=\"^http://1\\.rp-api\\.com/\" to=\"https://1.rp-api.com/\"/><rule from=\"^http://(?:img|static)\\.1\\.rp-api\\.com/\" to=\"https://d2q1vna75dc892.cloudfront.net/\"/></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)\" default_off=\"failed ruleset test\" 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 &amp; 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=\"ResearchGate.net\" f=\"ResearchGate.net.xml\"><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)\" 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)\" default_off=\"failed ruleset test\" 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\" 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=\"Respawn Security\" default_off=\"failed ruleset test\" f=\"Respawn_Security.xml\"><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\" 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\" 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\"><exclusion pattern=\"^http://www\\.\"/><securecookie host=\"^.+\\.resultspage\\.com$\" name=\".+\"/><rule from=\"^http://([\\w-]+)\\.resultspage\\.com/\" to=\"https://$1.resultspage.com/\"/></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 (partial)\" f=\"RetailMeNot.com.xml\"><rule from=\"^http://(?:www\\.)?retailmenot\\.com/favicon\\.ico\" to=\"https://www.retailmenot.com/favicon.ico\"/></ruleset>", "<ruleset name=\"Retail Sails\" 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\" f=\"Rettighedsalliancen.dk.xml\"><rule from=\"^http://(www\\.)?rettighedsalliancen\\.dk/\" to=\"https://www.rettighedsalliancen.dk/\"/></ruleset>", "<ruleset name=\"Siedler 25.org\" 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\" 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, broken)\" default_off=\"breaks www.reuters.com\" f=\"Reuters.com.xml\"><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=\"reverseheartbleed.com\" default_off=\"expired\" f=\"Reverse_Heartbleed.com.xml\"><rule from=\"^http://reverseheartbleed\\.com/\" to=\"https://reverseheartbleed.com/\"/></ruleset>", "<ruleset name=\"Review Board.org (partial)\" f=\"Review_Board.org.xml\"><securecookie host=\"^reviews\\.reviewboard\\.org$\" name=\".+\"/><rule from=\"^http://reviews\\.reviewboard\\.org/\" to=\"https://reviews.reviewboard.org/\"/></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=\"revosec\" f=\"Revosec.xml\"><securecookie host=\"^www\\.revosec\\.ch$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?revosec\\.ch/\" to=\"https://www.revosec.ch/\"/></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\" default_off=\"failed ruleset test\" 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\" f=\"RhB.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Rhapsody\" default_off=\"mismatch\" 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)\" 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=\"mismatch\" 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)\" f=\"Ricardo.ch.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ricardoshops.ch\" f=\"Ricardoshops.ch.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Rice University (mismatches)\" default_off=\"mismatch\" 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 (partial)\" f=\"RichRelevance.xml\"><securecookie host=\"^www\\.richrelevance\\.com$\" name=\".+\"/><rule from=\"^http://((?:confluence|demo|e4b-2|jira|media|portal|www)\\.)?richrelevance\\.com/\" to=\"https://$1richrelevance.com/\"/></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://www\\.richardandjudy\\.co\\.uk/\" to=\"https://www.richardandjudy.co.uk/\"/></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=\"Ricochet.im\" f=\"Ricochet.im.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\" 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=\"mismatch\" f=\"RightNow-clients.xml\"><securecookie host=\"^en\\.support\\.guildwars2\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"RightNow.com (partial)\" 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)\"/><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=\"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=\"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\" 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=\"Riseup.net\" f=\"Riseup.xml\"><securecookie host=\"^(?:.*\\.)?riseup\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Risk.io (partial)\" f=\"Risk.io.xml\"><securecookie host=\".*\\.risk\\.io$\" name=\".+\"/><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\" 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=\"Rki.de\" f=\"Rki.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Rkn.gov.ru\" default_off=\"missing certificate chain\" f=\"Rkn.gov.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Rl0.ru (partial)\" f=\"Rl0.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"rms.sexy\" f=\"Rms.sexy.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"RoadRunner\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"RoadRunner.xml\"><rule from=\"^http://(?:www\\.)?rr\\.com/\" to=\"https://www.rr.com/\"/></ruleset>", "<ruleset name=\"Roadtrippers\" f=\"Roadtrippers.xml\"><securecookie host=\"^(?:www\\.)?roadtrippers\\.com$\" 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=\"RobTex\" f=\"RobTex.xml\"><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\" f=\"Roberts_Space_Industries.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Robin Rabard (partial)\" default_off=\"failed ruleset test\" 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 (partial)\" f=\"RoboForm.com.xml\"><exclusion pattern=\"^http://(?:www\\.)?roboform\\.com/(?!dist/)\"/><securecookie host=\"^secure\\.roboform\\.com$\" name=\".+\"/><rule from=\"^http://(?:secure\\.|www\\.)?roboform\\.com/\" to=\"https://secure.roboform.com/\"/></ruleset>", "<ruleset name=\"RoboHash\" f=\"RoboHash.xml\"><rule from=\"^http://(\\w+\\.)?robohash\\.org/\" to=\"https://$1robohash.org/\"/></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=\"Robtex.net\" f=\"Robtex.net.xml\"><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\" 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=\"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 (partial)\" f=\"Rockstar-Games.xml\"><exclusion pattern=\"^http://socialclub\\.rockstargames\\.com/(?!profile/support-signin-en\\.html|registration/createaccount|signup)\"/><securecookie host=\"^cdn\\.sc\\.rockstargames\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?rockstargames\\.com/(?!img/)(.+\\.(?:css|gif|jpe?g|png))\" to=\"https://www.rockstargames.com/$1\"/><rule from=\"^http://(media|cdn\\.sc|socialclub|support|supportfiles)\\.rockstargames\\.com/\" to=\"https://$1.rockstargames.com/\"/></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=\"Roffey.org\" platform=\"cacert\" f=\"Roffey.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Roger Federer\" 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=\"^roia\\.biz$\" 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=\"RoketFiyat.com\" default_off=\"failed ruleset test\" f=\"RoketFiyat.com.xml\"><securecookie host=\"^[.w]*\\.rocketfiyat\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></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\" f=\"RolePlayChat.org.xml\"><securecookie host=\"^(?:w*\\.)?roleplaychat\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Roll Call.com (partial)\" platform=\"mixedcontent\" 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)\" default_off=\"failed ruleset test\" 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.com\" f=\"Romab.com.xml\"><rule from=\"^http://(?:www\\.)?romab\\.se/\" to=\"https://romab.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Rondavu\" f=\"Rondavu.xml\"><securecookie host=\"^\\.rondavu\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></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=\"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=\"Rosetta Code.org (false MCB)\" platform=\"mixedcontent\" f=\"Rosetta_Code.org-falsemixed.xml\"><securecookie host=\"^\\.?rosettacode\\.org$\" name=\".+\"/><rule from=\"^http://rosettacode\\.org/\" to=\"https://rosettacode.org/\"/></ruleset>", "<ruleset name=\"Rosetta Code.org (partial)\" f=\"Rosetta_Code.org.xml\"><exclusion pattern=\"^http://rosettacode\\.org/+(?!favicon\\.ico|mw/(?:extensions/|load\\.php|skins/|title\\.png))\"/><securecookie host=\"^www\\.rosettacode\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Roskilde University (partial)\" 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=\"Rotesource.com\" default_off=\"failed ruleset test\" f=\"Rotesource.com.xml\"><securecookie host=\"^(?:w*\\.)?rotesource\\.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)\" 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 (partial)\" f=\"RottenTomatoes.xml\"><rule from=\"^http://static\\.rottentomatoes\\.com/\" to=\"https://d1rjibvava1hwe.cloudfront.net/\"/></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 (partial)\" 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://cps-static\\.rovicorp\\.com/\" to=\"https://cps-static.rovicorp.com/\"/></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\" default_off=\"failed ruleset test\" 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 Institution of Great Britain (mismatches)\" default_off=\"broken\" f=\"Royal-Institution-of-Great-Britain-mismatches.xml\"><rule from=\"^http://(?:www\\.)?richannel\\.org/\" to=\"https://richannel.org/\"/></ruleset>", "<ruleset name=\"Royal Institution of Great Britain (partial)\" default_off=\"broken\" f=\"Royal-Institution-of-Great-Britain.xml\"><securecookie host=\"^www\\.rigb\\.org$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?rigb\\.org/\" to=\"https://www.rigb.org/\"/></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\" 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=\"Rpgmakerweb.com\" f=\"Rpgmakerweb.com.xml\"><rule from=\"^http://(?:www\\.)?rpgmakerweb\\.com/\" to=\"https://www.rpgmakerweb.com/\"/></ruleset>", "<ruleset name=\"Rpmfind.net\" f=\"Rpmfind.net.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"rpmfusion.org (partial)\" platform=\"cacert\" f=\"Rpmfusion.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"rpw.sh\" f=\"Rpw.sh.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Rspamd.com\" f=\"Rspamd.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"rsshog\" default_off=\"failed ruleset test\" f=\"Rsshog.xml\"><securecookie host=\"^(?:\\.?www)?\\.rsshog\\.com$\" name=\".+\"/><rule from=\"^http://(img\\.|static\\d\\.|www\\.)?rsshog\\.com/\" to=\"https://$1rsshog.com/\"/></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\" 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=\"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-lang.org (partial)\" f=\"Ruby-lang.org.xml\"><securecookie host=\"^bugs\\.ruby-lang\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"RubyForge.org (partial)\" default_off=\"connection 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=\"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=\"RugsHD.com\" default_off=\"failed ruleset test\" f=\"RugsHD.com.xml\"><securecookie host=\"^\\.?rugshd\\.com$\" name=\".+\"/><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)\" 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=\"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\" 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\" 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=\"RushBucks.com\" default_off=\"failed ruleset test\" f=\"RushBucks.com.xml\"><securecookie host=\"^(?:www\\.|\\.)?rushbucks\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"RushMyPassport.com\" default_off=\"failed ruleset test\" 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=\"Russia Beyond the Headlines\" default_off=\"expired, self-signed\" f=\"Russia-Beyond-the-Headlines.xml\"><securecookie host=\"^rbth\\.ru$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?rbth\\.ru/\" to=\"https://rbth.ru/\"/></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=\"Ruxcon.org.au\" f=\"Ruxcon.org.au.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ruxcon Breakpoint.com\" f=\"Ruxcon_Breakpoint.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"rxpharmacyusa.com\" 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\" 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)\" 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=\"mismatch\" 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)\" 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=\"^_gat?$\"/><securecookie host=\"^\\w\" name=\".\"/><securecookie host=\"^\\.secure\\.\" name=\".\"/><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\" default_off=\"failed ruleset test\" 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\" 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=\"SAS.com\" f=\"SAS_Institute.xml\"><securecookie host=\"^(?:.*\\.)?sas\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SATA-IO.org\" f=\"SATA-IO.org.xml\"><rule from=\"^http://(?:www\\.)?sata-io\\.org/\" to=\"https://www.sata-io.org/\"/></ruleset>", "<ruleset name=\"SAT symposium.org\" f=\"SAT_symposium.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SAnet.me\" 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://sbnation\\.com/\" to=\"https://www.sbnation.com/\"/><rule from=\"^http://assets\\.sbnation\\.com/\" to=\"https://s3.amazonaws.com/assets.sbnation.com/\"/><rule from=\"^http://cdn\\d\\.sbnation\\.com/\" to=\"https://ddrgqsxlcy7wq.cloudfront.net/\"/><rule from=\"^http://fonts\\.sbnation\\.com/\" to=\"https://d1jcofl6pfjesh.cloudfront.net/\"/><rule from=\"^http://ox-d\\.sbnation\\.com/\" to=\"https://sbnation-d3.openxenterprise.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\" default_off=\"failed ruleset test\" f=\"SBForge.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"StateBankOfIndia\" 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\" 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=\"SCAP Sync.com\" 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\" f=\"SCEA.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://(?:www\\.)?scea\\.com/\" to=\"https://us.playstation.com/\"/><rule from=\"^http://webassets\\w?\\.scea\\.com/\" to=\"https://secure.cdn.us.playstation.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SCSK.jp\" default_off=\"failed ruleset test\" 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)\" 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://static\\.seagm\\.com/\" to=\"https://static.seagm.com/\"/></ruleset>", "<ruleset name=\"SEC-Consult.com (partial)\" f=\"SEC-Consult.com.xml\"><rule from=\"^http://www\\.sec-consult\\.com/\" to=\"https://www.sec-consult.com/\"/></ruleset>", "<ruleset name=\"SEL Inc.com\" f=\"SEL_Inc.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SELinux Project.org\" default_off=\"expired, self-signed\" f=\"SELinux_Project.org.xml\"><securecookie host=\"^selinuxproject\\.org$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?selinuxproject\\.org/\" to=\"https://selinuxproject.org/\"/></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\" default_off=\"failed ruleset test\" 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\" f=\"SF-Mail.de.xml\"><securecookie host=\"^webmail\\.sf-mail\\.de$\" name=\".+\"/><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)\" default_off=\"failed ruleset test\" 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\" platform=\"cacert\" f=\"SIP-Solutions.xml\"><securecookie host=\"^www\\.sipsolutions\\.net$\" 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.xml\"><exclusion pattern=\"^http://sitesearch\\.sli-systems\\.com/(?!css/|rs/)\"/><securecookie host=\"^tools\\.sli-systems\\.com$\" name=\".+\"/><rule from=\"^http://sitesearch\\.sli-systems\\.com/\" to=\"https://na-sj01.marketo.com/\"/><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\" default_off=\"failed ruleset test\" f=\"SLU.se.xml\"><rule from=\"^http://slu\\.se/\" to=\"https://www.slu.se/\"/><rule from=\"^http://www\\.slu\\.se/\" to=\"https://www.slu.se/\"/><rule from=\"^http://internt\\.slu\\.se/\" to=\"https://internet.slu.se/\"/></ruleset>", "<ruleset name=\"SMACK TLS.com\" f=\"SMACK_TLS.com.xml\"><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\" 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=\"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\" f=\"SNstatic.fi.xml\"><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=\"mismatch\" 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=\"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=\"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)\" default_off=\"failed ruleset test\" 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=\"mismatch\" 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=\"SSAFA (partial)\" default_off=\"failed ruleset test\" f=\"SSAFA.xml\"><rule from=\"^http:\" to=\"https:\"/><securecookie host=\"^(?:www\\.)?ssafastore\\.co\\.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\" 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=\"SSLMate.com\" f=\"SSLMate.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SSL Decoder.org\" f=\"SSL_Decoder.org.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SSLlabs.com\" f=\"SSLlabs.xml\"><securecookie host=\"^\\.ssllabs\\.com$\" 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=\"SSLshopper.com\" f=\"SSLshopper.xml\"><securecookie host=\"^(?:www\\.)?sslshopper\\.com$\" 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://my\\.st\\.com/\" to=\"https://my.st.com/\"/></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\" 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\" 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=\"Python.org SVN\" platform=\"cacert\" default_off=\"broken\" f=\"SVN.Python.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SVT.se (partial)\" f=\"SVT.se.xml\"><securecookie host=\"^ld\\.svt\\.se$\" name=\".*\"/><rule from=\"^http://ld\\.svt\\.se/\" to=\"https://ld.svt.se/\"/></ruleset>", "<ruleset name=\"SWCA.org\" default_off=\"handshake fails\" f=\"SWCA.org.xml\"><securecookie host=\"^\\.swca\\.org$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?swca\\.org/\" to=\"https://www.swca.org/\"/></ruleset>", "<ruleset name=\"SWISSCEX.com\" default_off=\"connection refused\" f=\"SWISSCEX.com.xml\"><securecookie host=\"^www\\.swisscex\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Stadtwerke M&#252;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\" default_off=\"failed ruleset test\" 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)\" 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\" default_off=\"failed ruleset test\" 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=\"The Sacramento Bee (partial)\" 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\" 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)\" 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)\" 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=\"safecharge247.com\" default_off=\"failed ruleset test\" f=\"Safecharge247.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Safecount\" 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\" default_off=\"failed ruleset test\" 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\" default_off=\"failed ruleset test\" 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\" 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=\"Salesforce.com clients\" default_off=\"mismatch\" 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\" 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://donate\\.salvationarmyusa\\.org/\" to=\"https://donate.salvationarmyusa.org/\"/></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\" default_off=\"failed ruleset test\" f=\"Sam_Whited.com.xml\"><rule from=\"^http://(?:(blog\\.)|www\\.)?samwhited\\.com/\" to=\"https://$1samwhited.com/\"/></ruleset>", "<ruleset name=\"Samba.org\" f=\"Samba.org.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sam's Software &amp; Consulting (partial)\" 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.com (false MCB)\" platform=\"mixedcontent\" f=\"Samsung-falsemixed.xml\"><rule from=\"^http://link\\.samsung\\.com/\" to=\"https://link.samsung.com/\"/></ruleset>", "<ruleset name=\"Samsung (partial)\" default_off=\"failed ruleset test\" f=\"Samsung.xml\"><exclusion pattern=\"^http://opensource\\.samsung\\.com/(?!community/(?:css/|images/|img2?/|img_model/|js2?/|org\\.ditchnet\\.taglib/|repository/|scmShowFileRevision(?:$|\\?)|stylesheet/|usageStatistics\\.do|wikiTreeMessage(?:$|\\?))|css/|img/|js/)\"/><exclusion pattern=\"^http://shop\\.us\\.samsung\\.com/store\\?[aA]ction=[dD]isplay[dD][rR][cC]art[sS]ummary\"/><exclusion pattern=\"^http://www\\.samsung\\.com/us/(?:support/|function/)\"/><securecookie host=\"^\\.samsung\\.cn$\" name=\".+\"/><securecookie host=\"^(?!shop\\.us\\.).*\\.samsung\\.com$\" name=\".+\"/><rule from=\"^http://(img\\.|pub\\.)?content\\.samsumg\\.cn/\" to=\"https://$1content.samsung.cn/\"/><rule from=\"^http://(?:www\\.)?samsung\\.com/\" to=\"https://www.samsung.com/\"/><rule from=\"^http://chaton\\.samsung\\.com/\" to=\"https://web.samsungchaton.com/\"/><rule from=\"^http://nmetrics\\.samsung\\.com/\" to=\"https://samsung-com.112.2o7.net/\"/><rule from=\"^http://((?:stg-)?account|allshareplay|apps|(?:img\\.|pub\\.)?content|findmymobile2?|images|opensource|secureus|smetrics|smm|support-cn|us|shop\\.us)\\.samsung\\.com/\" to=\"https://$1.samsung.com/\"/><rule from=\"^http://(www\\.)?samsung\\.(?:com\\.)?cn/\" to=\"https://$1samsung.com.cn/\"/></ruleset>", "<ruleset name=\"Samsung Apps.com (partial)\" f=\"Samsung_Apps.xml\"><securecookie host=\"^(?:.*\\.)?samsungapps\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?samsungapps\\.com/\" to=\"https://www.samsungapps.com/\"/><rule from=\"^http://(\\w\\w-odc|mkt-odc|tv)\\.samsungapps\\.com/\" to=\"https://$1.samsungapps.com/\"/></ruleset>", "<ruleset name=\"Samsung Direct.com (partial)\" default_off=\"failed ruleset test\" f=\"Samsung_Direct.xml\"><rule from=\"^http://www\\.samsungdirect\\.com/(?=\\w\\w/(?:cart|create_account|login)(?:$|[?/])|css/|favicon\\.ico|images/|js/|media/)\" to=\"https://www.samsungdirect.com/\"/></ruleset>", "<ruleset name=\"Samsung Knox.com (partial)\" f=\"Samsung_Knox.com.xml\"><rule from=\"^http://(?:www\\.)?samsungknox\\.com/\" to=\"https://www.samsungknox.com/\"/><rule from=\"^http://cdn\\.samsungknox\\.com/\" to=\"https://cdn.samsungknox.com/\"/></ruleset>", "<ruleset name=\"Samsung LFD\" default_off=\"failed ruleset test\" f=\"Samsung_LFD.xml\"><securecookie host=\"^www\\.samsunglfd\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?samsunglfd\\.com/\" to=\"https://www.samsunglfd.com/\"/></ruleset>", "<ruleset name=\"Samsung Techwin\" f=\"Samsung_Techwin.xml\"><securecookie host=\"^www\\.samsungtechwin\\.co\\.kr$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?samsungtechwin\\.co\\.kr/\" to=\"https://www.samsungtechwin.co.kr/\"/></ruleset>", "<ruleset name=\"Samsung.net\" 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\" f=\"Sanoma.fi.xml\"><securecookie host=\"^\\.sanoma\\.fi$\" name=\"^(?:evid|evid-synced|v1st)$\"/><securecookie host=\"^sat\\.sanoma\\.fi$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?sanoma\\.fi/.*\" to=\"https://www.sanoma.com/fi\"/><rule from=\"^http://(admp-tc|analytics|cts|sat)\\.sanoma\\.fi/\" to=\"https://$1.sanoma.fi/\"/></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=\"Sapo.pt\" default_off=\"no response\" f=\"Sapo.pt.xml\"><securecookie host=\"^(?:login|pub)\\.sapo\\.pt$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?sapo\\.pt/(css/|imgs/|pub/|widgets/)\" to=\"https://www.sapo.pt/$1\"/><rule from=\"^http://(login|pub|pubimgs)\\.sapo\\.pt/\" to=\"https://$1.sapo.pt/\"/><rule from=\"^http://h\\.s\\.sl\\.pt/css-pt-2011/\" to=\"https://www.sapo.pt/css/\"/><rule from=\"^http://h\\.s\\.sl\\.pt/imgs/(?:v12/)?\" to=\"https://www.sapo.pt/imgs/\"/></ruleset>", "<ruleset name=\"Sapphire Forum.com\" f=\"Sapphire_Forum.com.xml\"><securecookie host=\"^www\\.sapphireforum\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sarava.org (partial)\" 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\" default_off=\"failed ruleset test\" f=\"SatoshiDice.xml\"><rule from=\"^http://(?:www\\.)?satoshidice\\.com/\" to=\"https://d2r33zdvjxn4mg.cloudfront.net/\"/></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)\" 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)\" 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=\"mismatch\" f=\"Savannah-Fund.xml\"><securecookie host=\"^www\\.savannah\\.vc$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?savannah\\.vc/\" to=\"https://www.savannah.vc/\"/></ruleset>", "<ruleset name=\"Save-Notes.com\" default_off=\"breaks background\" f=\"Save-Notes.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SaveCrypto.org\" f=\"SaveCrypto.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SaveDeo.com\" f=\"SaveDeo.com.xml\"><securecookie host=\"^(?:\\.|www\\.)?savedeo\\.com$\" name=\".+\"/><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=\"Save the Internet.eu\" f=\"Save_the_Internet.eu.xml\"><rule from=\"^http:\" to=\"https:\"/></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=\"mismatch\" f=\"Say-Media-mismatches.xml\"><rule from=\"^http://(?:www\\.)?blogs\\.com/\" to=\"https://blogs.com/\"/></ruleset>", "<ruleset name=\"Say Media\" default_off=\"failed ruleset test\" 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\" 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)\" 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\" f=\"Scaling_Bitcoin.org.xml\"><securecookie host=\"^(?:www)?\\.scalingbitcoin\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"scamFRAUDalert\" default_off=\"self-signed\" f=\"ScamFRAUDalert.xml\"><securecookie host=\"^www\\.scamfraudalert\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?scamfraudalert\\.com/\" to=\"https://www.scamfraudalert.com/\"/></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\" default_off=\"failed ruleset test\" 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\" 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=\"Scene7\" f=\"Scene7.xml\"><securecookie host=\"^www1\\.scene7\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?scene7\\.com/[^\\?]*(\\?.*)?\" to=\"https://www.adobe.com/products/scene7.html$1\"/><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=\"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)\" default_off=\"failed ruleset test\" 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 (partial)\" platform=\"cacert\" f=\"Schmidtcom.de.xml\"><securecookie host=\"^config\\.schmidtcom\\.de$\" 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=\"SchnellNo.de (partial)\" f=\"SchnellNo.de.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ScholarOne (partial)\" 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=\"connection 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://na\\.schottenland\\.de/\" to=\"https://na.schottenland.de/\"/></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\" 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=\"SciPy.org\" f=\"SciPy.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SciVerse (partial)\" platform=\"mixedcontent\" f=\"SciVerse.xml\"><exclusion pattern=\"^http://(?:www\\.)?sciencedirect\\.com/(?:$|gadgetservices/)\"/><exclusion pattern=\"^http://www\\.(?:applications|hub)\\.sciverse\\.com/(?:$|action|gadgetservices)\"/><securecookie host=\"^.*\\.sciencedirect\\.com$\" name=\".*\"/><securecookie host=\"^\\.sciverse\\.com$\" name=\".*\"/><rule from=\"^http://sciencedirect\\.com/\" to=\"https://www.sciencedirect.com/\"/><rule from=\"^http://(binary-services|pdn|sdauth|www)\\.sciencedirect\\.com/\" to=\"https://$1.sciencedirect.com/\"/><rule from=\"^http://acw\\.sciverse\\.com/\" to=\"https://acw.sciverse.com/\"/><rule from=\"^http://(?:www\\.)?(applications|hub)\\.sciverse\\.com/\" to=\"https://www.$1.sciverse.com/\"/></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=\"SciendeDaily.com (problematic)\" default_off=\"mismatched, self-signed\" f=\"ScienceDaily.com-problematic.xml\"><rule from=\"^http://(?:www\\.)?sciencedaily\\.com/\" to=\"https://www.sciencedaily.com/\"/></ruleset>", "<ruleset name=\"ScienceDaily.com (partial)\" default_off=\"Breaks some images\" f=\"ScienceDaily.com.xml\"><rule from=\"^http://images\\.sciencedaily\\.com/\" to=\"https://d18c4k1slw9ka5.cloudfront.net/\"/></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=\"Sciencemag.org (partial)\" default_off=\"missing certificate chain\" 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\" 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 (partial)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Scientific-American.xml\"><exclusion pattern=\"^http://www\\.scientificamerican\\.com/article/\"/><securecookie host=\"subscribe\\.scientificamerican.com$\" name=\".*\"/><rule from=\"^http://www\\.scientificamerican\\.com/(.+)\\.pagespeed\\..*$\" to=\"https://www.scientificamerican.com/$1\"/><rule from=\"^http://(www\\.)?sciamdigital\\.com/(ax/|(cover)?images/|index\\.cfm\\?fa=Account\\.ViewLogin)/\" to=\"https://$1sciamdigital.com/$2/\"/><rule from=\"^http://www\\.scientificamerican\\.com/assets/css/screen/I\\.([\\w\\-\\.]+)\\.css\\.pagespeed\\.cf\\.\\w+\\.css$\" to=\"https://www.scientificamerican.com/assets/css/screen/$1.css\"/><rule from=\"^http://(?:www\\.)?scientificamerican\\.com/\" to=\"https://www.scientificamerican.com/\"/><rule from=\"^http://subscribe\\.scientificamerican\\.com/\" to=\"https://subscribe.scientificamerican.com/\"/></ruleset>", "<ruleset name=\"Scientific.Net\" default_off=\"mismatch\" 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://newsagent\\.scoop\\.co\\.nz/\" to=\"https://newsagent.scoop.co.nz/\"/></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)\" 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=\"^(?:.*\\.)?scorecardresearch\\.com$\" name=\".+\"/><rule from=\"^http://b\\.scorecardresearch\\.com/\" to=\"https://sb.scorecardresearch.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Scot Borders.gov.uk\" 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\" 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=\"Scotthelme.co.uk\" f=\"Scotthelme.co.uk.xml\"><securecookie host=\"^(www\\.)?scotthelme\\.co\\.uk\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></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://www\\.scottishpowerpipeband\\.com/\" to=\"https://www.scottishpowerpipeband.com/\"/></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\" 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\" 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=\"Screenshot.ru (partial)\" default_off=\"mismatched, self-signed\" f=\"Screenshot.ru.xml\"><rule from=\"^http://(?:www\\.)?screenshot\\.ru/(?=favicon\\.ico|images/|public/)\" to=\"https://screenshot.ru/\"/></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\" 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)\" 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\" default_off=\"self-signed\" f=\"Scribus.xml\"><exclusion pattern=\"^http://lists\\.\"/><securecookie host=\".*\\.scribus\\.net$\" name=\".*\"/><rule from=\"^http://scribus\\.net/\" to=\"https://www.scribus.net/\"/><rule from=\"^http://(\\w+)\\.scribus\\.net/\" to=\"https://$1.scribus.net/\"/></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\" 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\" 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=\"scriptjunkie.us (partial)\" f=\"Scriptjunkie.us.xml\"><rule from=\"^http:\" to=\"https:\"/></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\" 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=\"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=\"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)\" 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)\" 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=\"connection dropped\" 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\" f=\"Seanmckaybeck.com.xml\"><rule from=\"^http://(?:www\\.)?seanmckaybeck\\.com/\" to=\"https://seanmckaybeck.com/\"/></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=\"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=\"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\" 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)\" 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\" 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=\"Seconfig.sytes.net\" f=\"Seconfig.sytes.net.xml\"><securecookie host=\"^\\.seconfig\\.sytes\\.net$\" name=\".+\"/><rule from=\"^http://seconfig\\.sytes\\.net/\" to=\"https://seconfig.sytes.net/\"/></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\" 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://www\\.sis\\.gov\\.uk/\" to=\"https://www.sis.gov.uk/\"/></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)\" 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\" 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\" 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\" 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=\"SecureDrop.org\" f=\"SecureDrop.org.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SecureList.com\" f=\"SecureList.xml\"><securecookie host=\"^(?:.+\\.)?securelist\\.com$\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SecureNet.com\" 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\" 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)\" 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)\" f=\"Secureserver.net.xml\"><securecookie host=\".+\\.secureserver\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"securetrust.com (partial)\" 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=\"Securify.nl\" f=\"Securify.nl.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Securing the Human.org\" f=\"Securing_the_Human.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Securities.com (partial)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Securities.com.xml\"><rule from=\"^http://www\\.securities\\.com/\" to=\"https://www.securities.com/\"/></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\" 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\" 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)\" 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=\"Securityheaders.io\" f=\"Securityheaders.io.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=\"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\" 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)\" 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)\" default_off=\"failed ruleset test\" 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\" 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=\"Seedrs\" f=\"Seedrs.xml\"><securecookie host=\"^.*\\.seedrs\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Seeed Studio.com\" default_off=\"failed ruleset test\" f=\"Seeed_Studio.com.xml\"><securecookie host=\"^\\.seeedstudio\\.com$\" 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=\"seethisinaction.com\" default_off=\"failed ruleset test\" f=\"Seethisinaction.com.xml\"><rule from=\"^http:\" to=\"https:\"/></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\" f=\"Segger.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Segment.com\" f=\"Segment.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 Fault\" f=\"Segmentfault.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Seguros Universales\" default_off=\"failed ruleset test\" 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\" 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=\"Selectel.ru (partial)\" f=\"Selectel.ru.xml\"><exclusion pattern=\"^http://startups\\.selectel\\.ru/\"/><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Selectricity (partial)\" default_off=\"expired, self-signed\" f=\"Selectricity.xml\"><securecookie host=\"^selectricity\\.org$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?selectricity\\.org/\" to=\"https://selectricity.org/\"/></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)\" 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.gov\" f=\"Senate.gov.xml\"><exclusion pattern=\"^http://(?:www.)?(?:intelligence|rules)\\.senate\\.gov/\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://((?:efd|efdsearch|outreach|sdc1|sopr|www)\\.)?senate\\.gov/\" to=\"https://$1senate.gov/\"/><rule from=\"^http://(?:www\\.)?(\\w+)\\.senate\\.gov/\" to=\"https://www.$1.senate.gov/\"/></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)\" 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)\" f=\"SendGrid.com.xml\"><securecookie host=\".\" 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://secure\\.sendyourfiles\\.com/\" to=\"https://secure.sendyourfiles.com/\"/></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\" 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=\"^\\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\" default_off=\"failed ruleset test\" 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=\"ServerTastic\" f=\"ServerTastic.xml\"><securecookie host=\"^(?:.*\\.)?servertastic\\.com$\" name=\".+\"/><rule from=\"^http://((?:api|blog|my|reseller|support|tickets|www)\\.)?servertastic\\.com/\" to=\"https://$1servertastic.com/\"/></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\" 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\" 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)\" 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=\"Service.gov.uk\" f=\"Service.gov.uk.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ServiceNow.com\" f=\"ServiceNow.com.xml\"><securecookie host=\"^\\.servicenow\\.com$\" name=\"^wikidb_session$\"/><securecookie host=\"^(?:community|developer|express|(?:www\\.)?partners|share|store)\\.servicenow\\.com$\" name=\".+\"/><rule from=\"^http://knowledge\\.servicenow\\.com/\" to=\"https://community.servicenow.com/community/knowledge-user-conference/\"/><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\" f=\"Service_by_Air.xml\"><securecookie host=\"^community\\.sbaglobal\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Services-prefecture.com\" f=\"Services-prefecture.com.xml\"><securecookie host=\"^(?:www)?\\.services-prefecture\\.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://robert\\.sesek\\.com/\" to=\"https://robert.sesek.com/\"/></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\" 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\" default_off=\"failed ruleset test\" 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=\"Seurinternacional.com\" default_off=\"failed ruleset test\" f=\"Seurinternacional.com.xml\"><rule from=\"^http://(?:www\\.)?seurinternacional\\.com/\" to=\"https://www.seurinternacional.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=\"connection 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=\"Sex8\" f=\"Sex8.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\" 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=\"^admin\\.sextoyfun\\.com$\" 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=\"Sexy Site Hosting.com\" default_off=\"failed ruleset test\" f=\"Sexy_Site_Hosting.com.xml\"><securecookie host=\"^\\.sexysitehosting\\.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=\"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=\"sfx.ms\" f=\"Sfx.ms.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"shaaaaaaaaaaaaa.com\" f=\"Shaaaaaaaaaaaaa.com.xml\"><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\" 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=\"Shannon Health\" 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=\"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)\" 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\" default_off=\"self-signed\" f=\"Sharethefiles.com.xml\"><securecookie host=\"^\\.sharethefiles\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sharethrough (partial)\" default_off=\"failed ruleset test\" f=\"Sharethrough.xml\"><securecookie host=\"^(?:.*\\.)?sharethrough\\.com$\" name=\".+\"/><rule from=\"^http://strlabs\\.wpengine\\.netdna-cdn\\.com/\" to=\"https://strlabs.wpengine.com/\"/><rule from=\"^http://ads\\.shareth\\.ru/\" to=\"https://ib.adnxs.com/\"/><rule from=\"^http://((?:(?:apis|assets|content|hq|static)(?:-acceptance|-staging)?|native(?:-staging)?|www)\\.)?sharethrough\\.com/\" to=\"https://$1sharethrough.com/\"/><rule from=\"^http://marketing\\.sharethrough\\.com/(?:\\?.*)?$\" to=\"https://sharethrough.com/?ao=1\"/><rule from=\"^http://marketing\\.sharethrough\\.com/acton/\" to=\"https://ci33.actonsoftware.com/acton/\"/></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\" f=\"Sharpmen.xml\"><securecookie host=\"^\\.sharpmen\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Shaun.net\" f=\"Shaun.net.xml\"><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)\" f=\"Sheffield.gov.uk.xml\"><securecookie host=\"^\\.\" name=\"^_gat?$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"shellfish.io\" 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)\" default_off=\"failed ruleset test\" 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\" default_off=\"expired, mismatched, self-signed\" f=\"SheppyWare.xml\"><rule from=\"^http://(?:(bugzilla\\.)|www\\.)?sheppyware\\.net/\" to=\"https://$1sheppyware.net/\"/></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\" f=\"Shipment.xml\"><securecookie host=\"^\\.(?:www\\.)?ship-ment\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ShippingWatch (mixed content)\" platform=\"mixedcontent\" 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\" default_off=\"failed ruleset test\" 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)\" 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\" default_off=\"failed ruleset test\" 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\" default_off=\"expired\" f=\"ShopSite.xml\"><rule from=\"^http://(?:www\\.)?shopsite\\.com/\" to=\"https://www.shopsite.com/\"/></ruleset>", "<ruleset name=\"ShopStyle (mismatches)\" default_off=\"mismatch\" 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)\" default_off=\"failed ruleset test\" 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\" default_off=\"failed ruleset test\" 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)\" default_off=\"failed ruleset test\" f=\"Shop_Your_Way.com.xml\"><rule from=\"^http://(www\\.)?shopyourway\\.com/static/\" to=\"https://$1shopyourway.com/static/\"/></ruleset>", "<ruleset name=\"Shopatron (partial)\" 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)\" default_off=\"failed ruleset test\" 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)\" default_off=\"failed ruleset test\" 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\" 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=\"^shorte\\.st$\" 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=\"Shotgun Club\" f=\"Shotgun_Club.xml\"><securecookie host=\"^(?:w*\\.)?shotgunclub\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Shoutback Concepts (partial)\" default_off=\"failed ruleset test\" f=\"Shoutback-Concepts.xml\"><rule from=\"^http://static\\.shoutback\\.com/\" to=\"https://static.shoutback.com/\"/></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\" f=\"Showrss.info.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Shpock\" default_off=\"failed ruleset test\" 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&#246;dinger\" f=\"Shrodinger.xml\"><securecookie host=\"^www\\.schrodinger\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"shtuff.it\" f=\"Shtuff.it.xml\"><rule from=\"^http://(?:www\\.)?shtuff\\.it/\" to=\"https://shtuff.it/\"/></ruleset>", "<ruleset name=\"Shubh.am\" f=\"Shubh.am.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Shuddle.us\" 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=\"mismatch\" 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)\" default_off=\"failed ruleset test\" 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=\"connection 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&#1066;ouras\" default_off=\"refused\" f=\"Sidibouras.xml\"><securecookie host=\"^(?:www)?\\.sidibouras\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"sidux-ev.org\" default_off=\"self-signed\" f=\"Sidux-ev.org.xml\"><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=\"mismatch\" 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://blog\\.sigfig\\.com/\" to=\"https://blog.sigfig.com/\"/></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\" 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=\"SigmaBeauty\" f=\"SigmaBeauty.xml\"><rule from=\"^http://(?:www\\.)?sigmabeauty\\.com/\" to=\"https://www.sigmabeauty.com/\"/></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\"><rule from=\"^http://(?:www\\.)?sigterm\\.no/\" to=\"https://sigterm.no/\"/></ruleset>", "<ruleset name=\"sigxcpu.org\" platform=\"cacert\" f=\"Sigxcpu.org.xml\"><rule from=\"^http://(?:www\\.)?sigxcpu\\.org/\" to=\"https://honk.sigxcpu.org/\"/><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\" 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=\"SilkRoad.com (partial)\" f=\"SilkRoad.xml\"><exclusion pattern=\"^http://(?:pages|www)\\.\"/><securecookie host=\".\" name=\".\"/><rule from=\"^http://([\\w-]+)\\.silkroad\\.com/\" to=\"https://$1.silkroad.com/\"/></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\" f=\"Silkspan.com.xml\"><rule from=\"^http://(?:www\\.)?silkspan\\.com/\" to=\"https://www.silkspan.com/\"/></ruleset>", "<ruleset name=\"Silktide.com (partial)\" 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\" 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)\" f=\"Silverpop.xml\"><rule from=\"^http://([\\w-]+)\\.links\\.mkt41\\.net/\" to=\"https://$1.links.mkt41.net/\"/><rule from=\"^http://content\\.mkt51\\.net/\" to=\"https://d24q9byeq1ve1q.cloudfront.net/\"/><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://(?:www\\.)?pages03\\.net/\" to=\"https://www.pages03.net/\"/><rule from=\"^http://(gw|login1|www1?)\\.vtrenz\\.net/\" to=\"https://$1.vtrenz.net/\"/></ruleset>", "<ruleset name=\"silvertunnel.org\" 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=\"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)\" 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)\" default_off=\"failed ruleset test\" 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://(app|i)\\.simpli\\.fi/\" to=\"https://$1.simpli.fi/\"/></ruleset>", "<ruleset name=\"Simply Hired clients\" default_off=\"mismatch\" 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\" 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\" 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=\"^(?:delivery|www)\\.simplytechnology\\.net$\" name=\".+\"/><rule from=\"^http://(delivery|www)\\.simplytechnology\\.net/\" to=\"https://$.simplytechnology.net/\"/></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 (problematic)\" default_off=\"mismatch\" f=\"Sina-problematic.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sina.cn (partial)\" f=\"Sina.cn.xml\"><securecookie host=\"^samsungapps\\.sina\\.cn$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sina.com.cn (mixed content)\" platform=\"mixedcontent\" f=\"Sina.com.cn-mixedcontent.xml\"><securecookie host=\"^(?:api\\.t|weather)\\.sina\\.com\\.cn$\" name=\".+\"/><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=\"Sina.com.cn (partial)\" f=\"Sina.xml\"><securecookie host=\"^(?:2008mail|help|mail|qipai|vip)\\.sina\\.com\\.cn$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sina App.com (partial)\" f=\"Sina_App.xml\"><exclusion pattern=\"^http://lib\\.sinaapp\\.com/\"/><securecookie host=\"^(?:.+\\.)?sinaapp\\.com$\" name=\".+\"/><rule from=\"^http://([\\w-]+\\.)?sinaapp\\.com/\" to=\"https://$1sinaapp.com/\"/></ruleset>", "<ruleset name=\"Weibo.cn (partial)\" f=\"Sina_Weibo.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sinaimg.cn (partial)\" f=\"Sinaimg.cn.xml\"><rule from=\"^http://tp\\d\\.sinaimg\\.cn/\" to=\"https://tpssl.weibo.cn/\"/></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=\"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)\" 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)\" 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\" default_off=\"failed ruleset test\" f=\"SiteAdvisor.com.xml\"><rule from=\"^http://(?:www\\.)?siteadvisor\\.com/\" to=\"https://www.siteadvisor.com/\"/></ruleset>", "<ruleset name=\"SiteCompass.com (partial)\" f=\"SiteCompass.com.xml\"><rule from=\"^http://mm\\.sitecompass\\.com/\" to=\"https://mm.sitecompass.com/\"/></ruleset>", "<ruleset name=\"SiteGround.com\" 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)\" f=\"SiteScout.xml\"><securecookie host=\"^\\.sitescout\\.com$\" name=\"^(?:km_\\w+|_ssum|ssi|__utm\\w)$\"/><securecookie host=\"^rtb\\.sitescout\\.com$\" 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\" default_off=\"failed ruleset test\" 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\" default_off=\"failed ruleset test\" f=\"Sitizens.xml\"><securecookie host=\"^\\.sitizens\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?sitizens\\.com/\" to=\"https://sitizens.com/\"/></ruleset>", "<ruleset name=\"Sitola\" 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=\"SixApart\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"SixApart.xml\"><rule from=\"^http://sixapart\\.com/\" to=\"https://sixapart.com/\"/><rule from=\"^http://(help|www)\\.sixapart\\.com/\" to=\"https://$1.sixapart.com/\"/><rule from=\"^http://(?:www\\.)?sixapart\\.jp/\" to=\"https://www.sixapart.jp/\"/></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=\"Skandiabanken\" f=\"Skandiabanken.xml\"><rule from=\"^http://(?:www\\.)?skandiabanken\\.no/\" to=\"https://www.skandiabanken.no/\"/><rule from=\"^http://secure\\.skandiabanken\\.no/\" to=\"https://secure.skandiabanken.no/\"/><rule from=\"^http://trader\\.skandiabanken\\.no/\" to=\"https://trader.skandiabanken.no/\"/></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=\"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://shop\\.skeptic\\.com/\" to=\"https://shop.skeptic.com/\"/></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 (problematic)\" default_off=\"mismatched\" f=\"SkimLinks-problematic.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SkimLinks.me\" f=\"SkimLinks.me.xml\"><rule from=\"^http://skimlinks\\.me/\" to=\"https://bit.ly/\"/></ruleset>", "<ruleset name=\"SkimLinks (partial)\" f=\"SkimLinks.xml\"><exclusion pattern=\"^http://(?:api-products?|arthur|redirect)\\.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://([\\w-]+\\.)?skimlinks\\.com/\" to=\"https://$1skimlinks.com/\"/></ruleset>", "<ruleset name=\"Skimresources.com\" f=\"Skimresources.com.xml\"><securecookie host=\"^\\.skimresources\\.com$\" 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\" f=\"Sky-ip.org.xml\"><rule from=\"^http://(?:www\\.)?sky-ip\\.org/\" to=\"https://www.sky-ip.org/\"/></ruleset>", "<ruleset name=\"Sky.com (partial)\" 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\" f=\"Sky.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SkySQL.com\" 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\" 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 &amp; Telescope (problematic)\" default_off=\"connection refused\" f=\"Sky_and_Telescope-problematic.xml\"><rule from=\"^http://media\\.skyandtelescope\\.com/\" to=\"https://media.skyandtelescope.com/\"/></ruleset>", "<ruleset name=\"Sky &amp; 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\" default_off=\"failed ruleset test\" 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\" 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)\" 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\" 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=\"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\" 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 (mismatches)\" default_off=\"mismatched\" f=\"Slashdot-mismatches.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Slashdot.org (partial)\" f=\"Slashdot.xml\"><exclusion pattern=\"^http://(?:m\\.)?slashdot\\.org/(?!images/|login\\.pl|my/|submission|submit|topic/|webcasts)\"/><securecookie host=\"^\\w\" name=\"^w3tc_referrer$\"/><rule from=\"^http://slashdot\\.org/images/\" to=\"https://images.slashdot.org/images/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Slashdot Media.com\" f=\"Slashdot_Media.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\" 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\" default_off=\"failed ruleset test\" 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\" f=\"SlickEdit.com.xml\"><securecookie host=\"^(?:www)?\\.slickedit\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Slick Products\" default_off=\"failed ruleset test\" 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=\"connection 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=\"Slo-Tech.com\" f=\"Slo-Tech.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sloan Digital Sky Survey (partial)\" 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\" 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=\"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\" 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=\"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://static\\.smallworldlabs\\.com/\" to=\"https://static.smallworldlabs.com/\"/></ruleset>", "<ruleset name=\"Smallbits.com (partial)\" 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)\" 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-Invests.biz\" default_off=\"failed ruleset test\" f=\"Smart-Invests.biz.xml\"><securecookie host=\"^(?:www)?\\.smart-invests\\.biz$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Smart-Mail\" default_off=\"failed ruleset test\" 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=\"SmartBear (partial)\" default_off=\"failed ruleset test\" f=\"SmartBear.xml\"><securecookie host=\"^my\\.smartbear\\.com$\" name=\".*\"/><securecookie host=\"^login\\.softwareplanner\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?alertsite\\.com/\" to=\"https://www.alertsite.com/\"/><rule from=\"^http://clientservices\\.automatedqa\\.com/\" to=\"https://my.smartbear.com/\"/><rule from=\"^http://my\\.smartbear\\.com/\" to=\"https://my.smartbear.com/\"/><rule from=\"^http://login\\.softwareplanner\\.com/\" to=\"https://login.softwareplanner.com/\"/></ruleset>", "<ruleset name=\"SmartBrief\" f=\"SmartBrief.xml\"><securecookie host=\"^(?:.*\\.)?smartbrief\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SmartFTP\" f=\"SmartFTP.xml\"><rule from=\"^http://(?:www\\.)?smartftp\\.com/\" to=\"https://www.smartftp.com/\"/></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=\"SmartPlanet.com (mismatched)\" default_off=\"mismatched\" f=\"SmartPlanet.com-problematic.xml\"><securecookie host=\"^(?:www)?\\.smartplanet\\.com$\" name=\".+\"/><rule from=\"^http://www\\.smartplanet\\.com/\" to=\"https://www.smartplanet.com/\"/></ruleset>", "<ruleset name=\"SmartPlanet.com (partial)\" default_off=\"failed ruleset test\" f=\"SmartPlanet.com.xml\"><securecookie host=\"^secure\\.smartplanet\\.com$\" name=\".+\"/><rule from=\"^http://(secure\\.)?smartplanet\\.com/\" to=\"https://$1smartplanet.com/\"/><rule from=\"^http://www\\.smartplanet\\.com/(?=[\\d.]+/bundles/smartplanetcore/css/)\" to=\"https://smartplanet.com/\"/></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\" default_off=\"failed ruleset test\" f=\"Smartronix.xml\"><rule from=\"^http://(?:www\\.)?smartronix\\.com/\" to=\"https://www.smartronix.com/\"/></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)\" 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=\"Smdg.ca\" f=\"Smdg.ca.xml\"><rule from=\"^http://static\\.smdg\\.ca/\" to=\"https://d3pf6blj843au7.cloudfront.net/\"/></ruleset>", "<ruleset name=\"SMI2.net\" 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\"><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/\"/></ruleset>", "<ruleset name=\"SMJG\" f=\"Smjg.xml\"><rule from=\"^http://((?:forum|www)\\.)?smjg\\.org/\" to=\"https://$1smjg.org/\"/></ruleset>", "<ruleset name=\"SmoothieBlend.com\" 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://my\\.smoothwall\\.org/\" to=\"https://my.smoothwall.org/\"/></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://smutty\\.com/\" to=\"https://smutty.com/\"/></ruleset>", "<ruleset name=\"Smuxi.im (partial)\" f=\"Smuxi.im.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"smzdm.com\" f=\"Smzdm.com.xml\"><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://stapi\\.snacktools\\.net/\" to=\"https://stapi.snacktools.net/\"/></ruleset>", "<ruleset name=\"SnackTV\" f=\"Snacktv.de.xml\"><rule from=\"^http://(player|www)\\.snacktv\\.de/\" to=\"https://$1.snacktv.de/\"/></ruleset>", "<ruleset name=\"snafu (partial)\" 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)\" 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)\" 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\" 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\" 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\" f=\"Snipt.net.xml\"><securecookie host=\".\" name=\".\"/><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)\" 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)\" 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 (partial)\" f=\"Soap.com.xml\"><rule from=\"^http://(?:c\\d\\.)?soap\\.com/\" to=\"https://www.soap.com/\"/><rule from=\"^http://www\\.soap\\.com/((?:checkout|login)\\.qs|[iI]mages/|helpcenter/|myaccount/|myfaves/|(?:App_)?Themes/|[\\w\\-]+\\.aspx)\" to=\"https://www.soap.com/$1\"/></ruleset>", "<ruleset name=\"Soapbox CMS\" f=\"Soapbox-CMS.xml\"><securecookie host=\"^(?:.*\\.)?soapboxcms\\.com$\" name=\".*\"/><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)\" f=\"SocialRank.com.xml\"><securecookie host=\"^(?:\\.|www\\.)?socialrank\\.com$\" name=\"\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SocialSafety.org\" default_off=\"mismatched\" f=\"SocialSafety.org.xml\"><rule from=\"^http://(?:www\\.)?socialsafety\\.org/\" to=\"https://socialsafety.org/\"/></ruleset>", "<ruleset name=\"US Social Security Administration\" platform=\"mixedcontent\" f=\"SocialSecurity.xml\"><exclusion pattern=\"^https://ftp\\.\"/><securecookie host=\"^(?:\\.|www\\.)?socialsecurity\\.gov$\" name=\".+\"/><securecookie host=\"^(?:(?:ftp|secure|stats|www)?\\.)?ssa\\.gov$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?socialsecurity\\.gov/\" to=\"https://www.socialsecurity.gov/\"/><rule from=\"^http://(?:ftp\\.|www\\.)?ssa\\.gov/\" to=\"https://www.socialsecurity.gov/\"/><rule from=\"^http://s(ecure|tats)\\.ssa\\.gov/\" to=\"https://s$1.ssa.gov/\"/></ruleset>", "<ruleset name=\"SocialShows\" f=\"SocialShows.xml\"><securecookie host=\"^\\.?socialshows\\.net$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?socialshows\\.(?:com|net)/\" to=\"https://socialshows.net/\"/></ruleset>", "<ruleset name=\"SocialTwist\" f=\"SocialTwist.xml\"><rule from=\"^http://([\\w\\-]+\\.)?socialtwist\\.com/\" to=\"https://$1socialtwist.com/\"/></ruleset>", "<ruleset name=\"Social Code dev.com\" 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)\" 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\" f=\"Social_Screamer.xml\"><securecookie host=\"^\\.socialscreamer\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Social Theater\" default_off=\"failed ruleset test\" f=\"Social_Theater.xml\"><securecookie host=\"^(?:www\\.)?socialtheater\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"socialbakers.com\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Socialbakers.xml\"><securecookie host=\"^(?:.*\\.)?socialbakers\\.com$\" name=\".*\"/><rule from=\"^http://(\\w+\\.)?socialbakers\\.com/\" to=\"https://$1socialbakers.com/\"/></ruleset>", "<ruleset name=\"Socialcube.net (partial)\" 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)\" default_off=\"failed ruleset test\" f=\"Socialtext.net.xml\"><securecookie host=\"^saml\\.socialtext\\.net$\" name=\".+\"/><rule from=\"^http://saml\\.socialtext\\.net/\" to=\"https://saml.socialtext.net/\"/></ruleset>", "<ruleset name=\"socialtyzetracking.com\" 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 &amp; 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\" 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://(?:www\\.)?sociomantic\\.com/\" to=\"https://www.sociomantic.com/\"/><rule from=\"^http://(blog|us-sonar)\\.sociomantic\\.com/\" to=\"https://$1.sociomantic.com/\"/></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\" f=\"Socrata.com.xml\"><securecookie host=\"^\\.\" name=\"^_gat?$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SodaHead.com\" platform=\"mixedcontent\" 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=\"Sodiumshop.com\" default_off=\"expired\" f=\"Sodiumshop.com.xml\"><securecookie host=\"^\\.(?:www\\.)?sodiumshop\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?sodiumshop\\.com/\" to=\"https://www.sodiumshop.com/\"/></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\" 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\" 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\" f=\"Software_Freedom_Conservancy.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Software &amp; Information Industry Association\" f=\"Software_and_Information_Industry_Association.xml\"><securecookie host=\"^www\\.siia\\.net$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?siaa\\.net/\" to=\"https://www.siaa.net/\"/></ruleset>", "<ruleset name=\"Sogeti.com (partial)\" default_off=\"self-signed\" f=\"Sogeti.com.xml\"><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 (partial)\" f=\"Sohu.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://login\\.mail\\.sohu\\.com/\" to=\"https://mail.sohu.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sohu.net (partial)\" f=\"Sohu.net.xml\"><securecookie host=\"^\\.?pan\\.sohu\\.net$\" name=\".+\"/><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=\"mismatch\" 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\" default_off=\"expired, self-signed\" f=\"Solar-Power-Rocks.xml\"><rule from=\"^http?://(?:www\\.)?solarpowerrocks\\.com/\" to=\"https://solarpowerrocks.com/\"/></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\" default_off=\"failed ruleset test\" 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=\"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=\"Solarmovie.is\" f=\"Solarmovie.is.xml\"><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\" 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\" 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\" f=\"Solus-Project.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Solutions Healthcare Management\" f=\"Solutions_Healthcare_Management.xml\"><securecookie host=\"^\\.solutionshealthcare\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Solve Media.com (partial)\" f=\"Solvemedia.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Somerset.gov.uk (partial)\" 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\" 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\" 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)\" default_off=\"failed ruleset test\" 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=\"^\\.?sonobi\\.com$\" 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.eu (partial)\" f=\"Sony.eu.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sony.se\" 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 (partial)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Sony.xml\"><securecookie host=\"^.*\\.sony\\.com$\" name=\".*\"/><securecookie host=\"^outlet\\.sony\\.co\\.uk$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?scea\\.com/\" to=\"https://us.playstation.com/\"/><rule from=\"^http://(?:\\w+\\.)?webassets\\w?\\.scea\\.com/\" to=\"https://secure.webassets.scea.com/\"/><rule from=\"^http://(?:www\\.)?sony\\.com/\" to=\"https://www.sony.com/\"/><rule from=\"^http://(www\\.)?sony\\.co\\.uk/(bravia|res)/\" to=\"https://$1sony.co.uk/$2/\"/><rule from=\"^http://(outlet|shop)\\.sony\\.co\\.uk/\" to=\"https://$1.sony.co.uk/\"/><rule from=\"^http://(blog|s01\\.esupport|store)\\.sony\\.com/\" to=\"https://$1.sony.com/\"/></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=\"SonyMusic (problematic)\" default_off=\"akamai certificate\" f=\"SonyMusic-problematic.xml\"><securecookie host=\"^(?:.+\\.)?sonymusic\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?sonymusic\\.com/\" to=\"https://www.sonymusic.com/\"/></ruleset>", "<ruleset name=\"SonyMusic (partial)\" f=\"SonyMusic.xml\"><rule from=\"^http://cf\\.sonymusic\\.com/\" to=\"https://d27g862ehx8viu.cloudfront.net/\"/></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)\" f=\"Sony_Entertainment_Network.xml\"><securecookie host=\".\" name=\".+\"/><rule from=\"^http://(?:www\\.)?sonyentertainmentnetwork\\.com/+(?:\\?.*)?$\" to=\"https://www.playstationnetwork.com.com/home\"/><rule from=\"^http://(?:www\\.)?sonyentertainmentnetwork\\.com/+([^?]*).*\" to=\"https://www.playstationnetwork.com.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)\" 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://ssl\\.soufun\\.com\\.tw/\" to=\"https://ssl.soufun.com.tw/\"/></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)\" 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)\" f=\"Soundcloud.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"soundgasm.net\" f=\"Soundgasm.net.xml\"><securecookie host=\"^(?:www\\.)?soundgasm.net$\" name=\".+\"/><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)\" f=\"Soup.io.xml\"><exclusion pattern=\"^http://www\\.soup\\.io/+(?!favicon\\.ico|images/|login(?:$|[?/]))\"/><securecookie host=\"^\\.soup\\.io$\" name=\"^(?:__qca|__utm\\w+)$\"/><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=\"SourceDNA.com\" f=\"SourceDNA.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://www\\.sourcedna\\.com/\" to=\"https://sourcedna.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SourceFed (partial)\" f=\"SourceFed.xml\"><rule from=\"^http://cdn\\.sourcefednews\\.com/\" to=\"https://d1l31vajhvnn7o.cloudfront.net/\"/></ruleset>", "<ruleset name=\"SourceForge (mismatches)\" default_off=\"mismatch\" f=\"SourceForge-mismatches.xml\"><rule from=\"^http://([\\w\\-]+)\\.git\\.s(?:f|ourceforge)\\.net/\" to=\"https://$1.git.sf.net/\"/></ruleset>", "<ruleset name=\"SourceForge (partial)\" f=\"SourceForge.xml\"><exclusion pattern=\"^http://([\\w-]+)\\.svn\\.s(?:f|ourceforge)\\.net/(?!svnroot/)\"/><securecookie host=\"^\\.\" name=\"^__qca$\"/><securecookie host=\"^p\\.sf\\.net$\" name=\".\"/><securecookie host=\"^downloads\\.sourceforge\\.net$\" name=\".\"/><securecookie host=\"^(?:downloads\\.)?sourceforge\\.net$\" name=\".\"/><rule from=\"^http://([\\w-]+)\\.svn\\.sf\\.net/\" to=\"https://$1.svn.sourceforge.net/\"/><rule from=\"^http://downloads\\.s(?:f|ourceforge)\\.net/project/([^?]+)\\?r=http%3A%2F%2Fs\" to=\"https://downloads.sourceforge.net/project/$1?r=https%3A%2F%2Fs\"/><rule from=\"^http://(apps|downloads|goparallel|ibmsmarteritservices|images|lists|prdownloads|sflogo|static)\\.sf\\.net/\" to=\"https://$1.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=\"connection 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=\"^info\\.sourcefire\\.com$\" 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\" 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://cart\\.sxsw\\.com/\" to=\"https://cart.sxsw.com/\"/></ruleset>", "<ruleset name=\"South China Morning Post (partial)\" f=\"South_China_Morning_Post.xml\"><rule from=\"^http://(?:www\\.)?scmp\\.com/(esi/messages\\.php|misc/|modules/|sites/)\" to=\"https://www.scmp.com/$1\"/></ruleset>", "<ruleset name=\"South Devon.ac.uk (partial)\" f=\"South_Devon.ac.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"South Glos.gov.uk (partial)\" 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)\" f=\"Southampton.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Southbank Centre.co.uk (partial)\" 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)\" f=\"Southend.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SouthernElectric\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" 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)\" 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\" 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=\"mismatch\" f=\"SpacePolicyOnline.com.xml\"><securecookie host=\"^.*\\.spacepolicyonline\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?spacepolicyonline\\.com/\" to=\"https://www.spacepolicyonline.com/\"/></ruleset>", "<ruleset name=\"SpaceUp.org\" default_off=\"mismatch\" 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\" 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://archive\\.stsci\\.edu/\" to=\"https://archive.stsci.edu/\"/></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.xml\"><rule from=\"^http://spamgourmet\\.com/\" to=\"https://spamgourmet.com/\"/><rule from=\"^http://www\\.spamgourmet\\.com/\" to=\"https://www.spamgourmet.com/\"/></ruleset>", "<ruleset name=\"spamicity.info\" default_off=\"failed ruleset test\" f=\"Spamicity.info.xml\"><securecookie host=\"^spamicity\\.info$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?spamicity\\.info/\" to=\"https://spamicity.info/\"/></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://www\\.sparked\\.com/\" to=\"https://www.sparked.com/\"/></ruleset>", "<ruleset name=\"Sparkfun.com\" f=\"Sparkfun.xml\"><securecookie host=\"^(?:forum)?\\.sparkfun\\.com$\" 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\" 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\" default_off=\"failed ruleset test\" 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\" f=\"Specificclick.xml\"><securecookie host=\"^\\.specificclick\\.net$\" name=\"^ug$\"/><securecookie host=\"^(?:afe2?|bp|clk|cs|dp|mpp)\\.specificclick\\.net$\" name=\".+\"/><rule from=\"^http://(afe2?|bp|clk|cs|dp2?|mpp2?|rome)\\.specificclick\\.net/\" to=\"https://$1.specificclick.net/\"/><rule from=\"^http://dg\\.specificclick\\.net/\" to=\"https://dp.specificclick.net/\"/></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=\"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\" 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=\"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\" 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\" default_off=\"failed ruleset test\" f=\"Spicebox.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Spiceworks.com\" 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=\"Spider.io (partial)\" f=\"Spider.io.xml\"><exclusion pattern=\"^http://(?:www\\.)?splider\\.io/(?!wp-content/)\"/><rule from=\"^http://(?:www\\.)?spider\\.io/\" to=\"https://d1ukwbduzme6ra.cloudfront.net/\"/></ruleset>", "<ruleset name=\"SpiderOak.com\" f=\"SpiderOak.xml\"><securecookie host=\"^(?:www\\.)?spideroak\\.com$\" 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|spiderwebsoftware)\\.com/\" to=\"https://spiderwebsoftware.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Spiegel QC (partial)\" f=\"Spiegel-QC.xml\"><securecookie host=\"^\\.quality-channel\\.de$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Spiegel.de (partial)\" 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&amp;node=2478999031\"/><rule from=\"^http://shop\\.spiegel\\.de/[^?]*\\?\" to=\"https://www.amazon.de/b?ie=UTF8&amp;node=2478999031&amp;\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Spielfuerdeinland.de\" 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)\" f=\"Splash_Data.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Splash that.com\" f=\"Splash_that.com.xml\"><securecookie host=\"^(?:insightseries\\.|www\\.)?splashthat\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Split Reason Clothing\" 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://cdn\\.sploder\\.com/\" to=\"https://cdn.sploder.com/\"/></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\" 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\" platform=\"cacert\" f=\"Spontex.org.xml\"><securecookie host=\"^(?:(?:adminmedia|m|www|fr|en|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=\"Sportys\" f=\"Sportys.xml\"><securecookie host=\"^(?:.*\\.)?sportys\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Spot.IM\" 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\" 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)\" f=\"Spring-TNS.net.xml\"><securecookie host=\".*\\.spring-tns\\.net$\" name=\".+\"/><rule from=\"^http://ssl-(\\w+)\\.spring-tns\\.net/\" to=\"https://ssl-$1.spring-tns.net/\"/><rule from=\"^http://nelonen\\.spring-tns\\.net/\" to=\"https://ssl-nelonen.spring-tns.net/\"/></ruleset>", "<ruleset name=\"Spring.io (false MCB)\" platform=\"mixedcontent\" 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 (partial)\" default_off=\"expired, self-signed\" f=\"SpringFiles.xml\"><securecookie host=\"^\\.springfiles\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?springfiles\\.nl/\" to=\"https://springfiles.com/\"/><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)\" 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=\".\"/><rule from=\"^http://springer\\.com/\" to=\"https://www.springer.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Springer Zahnmedizin.de\" f=\"Springer_Zahnmedizin.de.xml\"><securecookie host=\"^(?:fortbildung\\.|www\\.)?springerzahnmedizin\\.de$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Springpad\" default_off=\"failed ruleset test\" f=\"Springpad.xml\"><rule from=\"^http://(?:www\\.)?springpadit\\.com/\" to=\"https://springpadit.com/\"/></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)\" default_off=\"failed ruleset test\" 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://secure\\.sprintbuyback\\.com/\" to=\"https://secure.sprintbuyback.com/\"/></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\" f=\"SpritesMods.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Spriza.com\" default_off=\"failed ruleset test\" 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\" default_off=\"failed ruleset test\" f=\"Spsn.net.xml\"><securecookie host=\"^(?:www\\.)?spsn\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sptag.com\" default_off=\"failed ruleset test\" f=\"Sptag.com.xml\"><securecookie host=\"^(?:www\\.)?sptag\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"sptag1.com\" default_off=\"failed ruleset test\" f=\"Sptag1.com.xml\"><securecookie host=\"^(?:www\\.)?sptag1\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Spu.ac.th (broken)\" default_off=\"HTTPS URL not found\" f=\"Spu.ac.th.xml\"><rule from=\"^http://(?:www\\.)?spu\\.ac\\.th/\" to=\"https://www.spu.ac.th/\"/></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\" f=\"Square_Penguin.xml\"><securecookie host=\"^\\.squarepenguin\\.co\\.uk$\" 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=\"mismatch\" 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\"><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://aws\\.tracker\\.squidanalytics\\.com/\" to=\"https://aws.tracker.squidanalytics.com/\"/></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\" f=\"SquirrelMail.xml\"><securecookie host=\"^squirrelmail\\.org$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?squirrelmail\\.org/\" to=\"https://squirrelmail.org/\"/></ruleset>", "<ruleset name=\"srcclr.com\" 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=\"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=\"sslcert14.com\" f=\"Sslcert14.com.xml\"><securecookie host=\"^(?:.+\\.)?sslcert14\\.com$\" name=\".+\"/><rule from=\"^http://([\\w-]+\\.)?sslcert14\\.com/\" to=\"https://$1sslcert14.com/\"/></ruleset>", "<ruleset name=\"sslcert19.com\" default_off=\"failed ruleset test\" f=\"Sslcert19.com.xml\"><securecookie host=\"^(?:[\\w-]*\\.)?sslcert19\\.com$\" name=\".+\"/><rule from=\"^http://([\\w-]+\\.)?sslcert19\\.com/\" to=\"https://$1sslcert18.com/\"/></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)\" 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\" 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\" 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=\"StableLib.com\" f=\"StableLib.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Stack Exchange (partial)\" f=\"Stack-Exchange.xml\"><exclusion pattern=\"^http://([\\w.-]+)\\.([\\w-]+)\\.stackexchange\\.com\"/><exclusion pattern=\"^http://elections\\.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=\"^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=\"^stackapps\\.com$\" name=\".+\"/><securecookie host=\"^teststackoverflow\\.com$\" name=\".+\"/><rule from=\"^https://([\\w.-]+)\\.([\\w-]+)\\.stackexchange\\.com/\" to=\"http://$1.$2.stackexchange.com/\" downgrade=\"1\"/><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)\" 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\" 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://www\\.stadtwerke\\-bamberg\\.de/\" to=\"https://www.stadtwerke-bamberg.de/\"/></ruleset>", "<ruleset name=\"Stadtwerke Ingolstadt\" platform=\"mixedcontent\" 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)\" 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)\" platform=\"cacert\" 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\" default_off=\"Certificate mismatch\" f=\"StanDeyo.xml\"><rule from=\"^http://(?:www\\.)?standeyo\\.com/\" to=\"https://standeyo.com/\"/></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\" 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)\" 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&amp;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\" 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\" 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\" default_off=\"failed ruleset test\" 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=\"Star-Pool (partial)\" default_off=\"connection refused\" f=\"Star-Pool.xml\"><rule from=\"^http://(www\\.)?star-pool\\.com/(App_Themes|[aA]ssets|images|js|[lL]ogin\\.aspx|Members|(?:Script|Web)Resource\\.axd)($|\\?|/)\" to=\"https://$1star-pool.com/$2$3\"/></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=\"mismatch\" f=\"StarWars.com.xml\"><rule from=\"^http://(www\\.)?starwars\\.com/(?!$|\\?)\" to=\"https://$1starwars.com/\"/></ruleset>", "<ruleset name=\"Star Product Reviews (partial)\" default_off=\"failed ruleset test\" f=\"Star_Product_Reviews.xml\"><securecookie host=\"^admin\\.starproductreviews\\.com$\" name=\".+\"/><rule from=\"^http://admin\\.starproductreviews\\.com/\" to=\"https://admin.starproductreviews.com/\"/></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)\" 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://(?:www\\.)?stardrifter\\.org/\" to=\"https://stardrifter.org/\"/></ruleset>", "<ruleset name=\"Starfield Technologies, Inc.\" 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=\"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)\" default_off=\"Breaks icons\" f=\"Start.me.xml\"><rule from=\"^http://assets\\.start\\.me/\" to=\"https://d20613pg2u36q3.cloudfront.net/\"/><rule from=\"^http://assets\\.blog\\.start\\.me/\" to=\"https://d1e3joqws01uq.cloudfront.net/\"/></ruleset>", "<ruleset name=\"StartBox.com\" f=\"StartBox.xml\"><rule from=\"^http://(?:docs\\.|www\\.)?wpstartbox\\.com/\" to=\"https://webdevstudios.com/\"/></ruleset>", "<ruleset name=\"StartCom\" 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\" f=\"StartMail.xml\"><securecookie host=\"^www\\.startmail\\.com$\" name=\".+\"/><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=\"StartupSort.com\" f=\"StartupSort.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Starwood Hotels &amp; 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)\" 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(?:-beta)?\\.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)\" 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)\" default_off=\"failed ruleset test\" 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=\"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=\"static Flickr.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://img\\.staticmy\\.com/\" to=\"https://img.staticmy.com/\"/></ruleset>", "<ruleset name=\"staticskynet.be\" 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\" default_off=\"failed ruleset test\" f=\"StatistikamtBayern.xml\"><rule from=\"^http://(?:www\\.)?statistik\\.bayern\\.de/\" to=\"https://www.statistik.bayern.de/\"/></ruleset>", "<ruleset name=\"StatusCake.com (partial)\" f=\"StatusCake.com.xml\"><securecookie host=\"^www\\.statuscake\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"StatusNet (broken)\" default_off=\"No valid certificates\" f=\"StatusNet.xml\"><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=\"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\" default_off=\"failed ruleset test\" 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=\"mismatch\" 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$\"/><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=\"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=\"Steamunlock.com\" f=\"Steamunlock.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Steaw.com\" 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://license\\.steeleye\\.com/\" to=\"https://license.steeleye.com/\"/></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 &amp; Dot\" default_off=\"failed ruleset test\" f=\"Stella_and_Dot.xml\"><securecookie host=\".*\\.stelladot\\.com$\" name=\".+\"/><rule from=\"^http://((?:(?:stylist)?lounge|shop|stylewatch|www)\\.)?stelladot\\.com/\" to=\"https://$1stelladot.com/\"/><rule from=\"^http://s3static\\.stelladotcdn\\.com/\" to=\"https://s3.amazonaws.com/com.stelladot.static/\"/></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\" default_off=\"failed ruleset test\" f=\"Stgbssint.com.xml\"><rule from=\"^http://storage\\.stgbssint\\.com/\" to=\"https://storage.stgbssint.com/\"/></ruleset>", "<ruleset name=\"Stickhet\" 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)\" default_off=\"failed ruleset test\" 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&amp;pageID=5&amp;layout=hp\"/><rule from=\"^http://admissions\\.stockton\\.edu/.*\" to=\"https://intraweb.stockton.edu/eyos/page.cfm?siteID=64&amp;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)\" 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)\" 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\" 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 Global Warming.org\" default_off=\"expired, self-signed\" f=\"Stop_Global_Warming.org.xml\"><rule from=\"^http://(?:www\\.)?stopglobalwarming\\.org/\" to=\"https://www.stopglobalwarming.org/\"/></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)\" default_off=\"failed ruleset test\" 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=\"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\" f=\"Storify.xml\"><securecookie host=\"^(?:.*\\.)?storify\\.com$\" name=\".+\"/><rule from=\"^http://((?:api|dev|manage|proxy|www)\\.)?storify\\.com/\" to=\"https://$1storify.com/\"/></ruleset>", "<ruleset name=\"Storm Internet.co.uk\" 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)\" f=\"Stpeter.im.xml\"><rule from=\"^http://www\\.stpeter\\.im/\" to=\"https://stpeter.im/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"StrangeWorlds\" f=\"StrangeWorlds.xml\"><rule from=\"^http://strangeworlds\\.co\\.uk/\" to=\"https://strangeworlds.co.uk/\"/></ruleset>", "<ruleset name=\"Straply\" 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\" 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\" 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\" 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\" default_off=\"failed ruleset test\" f=\"Street_Art_Utopia.xml\"><securecookie host=\"^(?:w*\\.)?streetartutopia\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Street Moda (partial)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Street_Moda.xml\"><securecookie host=\"^.*\\.streetmoda\\.com$\" name=\".+\"/><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\"><securecookie host=\"^www\\.strikingly\\.com$\" name=\".+\"/><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\" 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=\"strugee.net\" f=\"Strugee.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Stuart Robbins\" default_off=\"mismatch\" 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\" f=\"Stubhub.xml\"><securecookie host=\"^(?:.*\\.)?stubhub\\.(de|co\\.uk|com)$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"StudentLoans.gov\" f=\"StudentLoans.gov.xml\"><securecookie host=\"^(?:.*\\.)?studentloans\\.gov$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?studentloans\\.gov/\" to=\"https://studentloans.gov/\"/></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://secure\\.studiesabroad\\.com/\" to=\"https://secure.studiesabroad.com/\"/></ruleset>", "<ruleset name=\"StudioPress.com\" f=\"StudioPress.com.xml\"><securecookie host=\"^my\\.studiopress\\.com$\" 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=\"Stunnish.com (false MCB)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Stunnish.com.xml\"><securecookie host=\"^\\.stunnish\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?stunnish\\.com/\" to=\"https://www.stunnish.com/\"/></ruleset>", "<ruleset name=\"Stupid.com\" f=\"Stupid.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Stupidcensorship.com\" default_off=\"mismatched\" f=\"Stupidcensorship.com.xml\"><rule from=\"^http://(?:www\\.)?stupidcensorship\\.com/\" to=\"https://stupidcensorship.com/\"/></ruleset>", "<ruleset name=\"Stuvel.eu\" platform=\"cacert\" f=\"Stuvel-Photography.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Style.com\" default_off=\"mismatched\" f=\"Style.com.xml\"><rule from=\"^http://style\\.com/\" to=\"https://www.style.com/\"/><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\" f=\"Stylist.co.uk.xml\"><securecookie host=\"^\\.stylist\\.co\\.uk$\" name=\".+\"/><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 (partial)\" 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=\"SublimeVideo.net (partial)\" f=\"SublimeVideo.xml\"><rule from=\"^http://my\\.sublimevideo\\.net/\" to=\"https://my.sublimevideo.net/\"/><rule from=\"^http://(cdn|data)\\.sublimevideo\\.net/\" to=\"https://$1.sublimevideo.net/\"/></ruleset>", "<ruleset name=\"Sublime Text.com\" f=\"Sublime_Text.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Submission Technology\" f=\"Submission-Technology.xml\"><securecookie host=\"^(?:.*\\.)?submissiontechnology\\.co\\.uk$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Subrosa.io\" f=\"Subrosa.io.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SubscriptionGenius.com (partial)\" f=\"SubscriptionGenius.com.xml\"><securecookie host=\"^checkout\\.subscriptiongenius\\.com$\" name=\".+\"/><rule from=\"^http://checkout\\.subscriptiongenius\\.com/\" to=\"https://checkout.subscriptiongenius.com/\"/></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\" 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)\" 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&#252;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&#252;ddeutsche Zeitung (partial)\" 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&#252;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\" default_off=\"failed ruleset test\" f=\"Sudo_Room.xml\"><securecookie host=\"^(?:www\\.|lists\\.|door\\.)?sudoroom\\.org$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?sudoroom\\.org/\" to=\"https://sudoroom.org/\"/><rule from=\"^http://door\\.sudoroom\\.org/\" to=\"https://door.sudoroom.org/\"/><rule from=\"^http://lists\\.sudoroom\\.org/\" to=\"https://lists.sudoroom.org/\"/></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=\"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=\"Suitable Tech.com (partial)\" f=\"Suitable_Tech.com.xml\"><securecookie host=\"^(?:www\\.)?suitabletech\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Suite.io\" f=\"Suite.io.xml\"><rule from=\"^http://www\\.suite\\.io/\" to=\"https://suite.io/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Suitey.com\" 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\" default_off=\"failed ruleset test\" f=\"Sunglass_Warehouse.xml\"><securecookie host=\"^\\.?www\\.sunglasswarehouse\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"sunlightfoundation.com (partial)\" 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=\"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=\"SunriseTech.gr\" default_off=\"expired, self-signed\" f=\"SunriseTech.gr.xml\"><rule from=\"^http://(?:www\\.)?sunrisetech\\.gr/\" to=\"https://sunrisetech.gr/\"/></ruleset>", "<ruleset name=\"Sunrise Print Online\" f=\"Sunrise_Print_Online.xml\"><securecookie host=\"^www\\.sunriseprintonline\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sunroof Wind Deflectors.com\" default_off=\"failed ruleset test\" f=\"Sunroof_Wind_Deflectors.com.xml\"><securecookie host=\"^(?:www)?\\.sunroofwinddeflectors\\.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\" 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)\" 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=\"connection dropped\" 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\" 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=\"mismatch\" 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\" f=\"Surveillance_Law.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Survey Analytics (partial)\" f=\"Survey-Analytics.xml\"><rule from=\"^http://popup\\.questionpro\\.com/\" to=\"https://popup.questionpro.com/\"/></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)\" 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\" default_off=\"broken\" f=\"Sussan.com.au.xml\"><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://kundservice\\.svd\\.se/\" to=\"https://kundservice.svd.se/\"/></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\" f=\"Svetlodarsk.com.xml\"><securecookie host=\"^(?:www\\.)?svetlodarsk\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"svtrd.com\" f=\"Svtrd.com.xml\"><rule from=\"^http://s\\.svtrd\\.com/\" to=\"https://s.svtrd.com/\"/></ruleset>", "<ruleset name=\"Swan.sk\" 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=\"SwapOff.org\" default_off=\"expired\" f=\"SwapOff.org.xml\"><rule from=\"^http:\" to=\"https:\"/></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=\"Sway-CDN.com\" f=\"Sway-CDN.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sway.com\" f=\"Sway.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Swedbank.lv (partial)\" f=\"Swedbank.lv.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sweet &amp; 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=\"swehack.org\" f=\"Swehack.org.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.org\" f=\"Swift.org.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Swiftype (partial)\" f=\"Swiftype.xml\"><securecookie host=\"^swiftype\\.com$\" name=\".*\"/><rule from=\"^http://(www\\.)?swiftype\\.com/\" to=\"https://$1swiftype.com/\"/><rule from=\"^http://s\\.swiftypecdn\\.com/\" to=\"https://s.swiftypecdn.com/\"/></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=\"SwingFree.co.uk (partial)\" default_off=\"connection dropped\" f=\"SwingFree.co.uk.xml\"><securecookie host=\"^(?:www\\.)?swingfree\\.co\\.uk$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></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\" 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://ige\\.ch/\" to=\"https://www.ige.ch/\"/><rule from=\"^http://([^/:@]+)?\\.ige\\.ch/\" to=\"https://$1.ige.ch/\"/><rule from=\"^http://ip-search\\.ch/\" to=\"https://www.ip-search.ch/\"/><rule from=\"^http://([^/:@]+)?\\.ip-search\\.ch/\" to=\"https://$1.ip-search.ch/\"/><rule from=\"^http://swissreg\\.ch/\" to=\"https://www.swissreg.ch/\"/><rule from=\"^http://([^/:@]+)?\\.swissreg\\.ch/\" to=\"https://$1.swissreg.ch/\"/></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\" 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\" f=\"Switch.co.xml\"><rule from=\"^http://(?:www\\.)?switch\\.co/\" to=\"https://www.switch.co/\"/></ruleset>", "<ruleset name=\"Switch Concepts\" f=\"SwitchConcepts.xml\"><securecookie host=\"^(?:\\w+\\.a|delivery)\\.switchadhub\\.com$\" 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\" 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=\"Switchnet.io\" default_off=\"failed ruleset test\" f=\"Switchnet.io.xml\"><securecookie host=\"^(?:\\.|www\\.)?switchnet\\.io$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?switchnet\\.io/\" to=\"https://www.switchnet.io/\"/></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=\"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=\"Syllabusshare (mismatches)\" default_off=\"mismatch\" 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)\" 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://web\\.synch\\.hu/\" to=\"https://web.synch.hu/\"/></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\" 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\" 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://ssl\\.synovite-scripts\\.com/\" to=\"https://ssl.synovite-scripts.com/\"/></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&#246;p&#228;j&#228;rjest&#246;t\" default_off=\"failed ruleset test\" 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://faculty\\.ischool\\.syr\\.edu/\" to=\"https://faculty.ischool.syr.edu/\"/></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\" 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 (CAcert, partial)\" platform=\"cacert\" f=\"Sysmocom.de.xml\"><exclusion pattern=\"^http://shop\\.sysmocom\\.de/(?!assets|checkout|images|login|stylesheets)\"/><rule from=\"^http://sysmocom\\.de/\" to=\"https://www.sysmocom.de/\"/><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://www\\.system76\\.com/\" to=\"https://www.system76.com/\"/><rule from=\"^http://system76\\.com/\" to=\"https://www.system76.com/\"/></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\" 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\" 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&#232;me D\" default_off=\"mismatch, self-signed\" f=\"Systeme-D.xml\"><securecookie host=\"^systemed\\.net$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?systemed\\.net/\" to=\"https://systemed.net/\"/></ruleset>", "<ruleset name=\"systemli.org\" f=\"Systemli.org.xml\"><securecookie host=\"^pad\\.systemli\\.org$\" 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)\" 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)\" 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\" 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)\" 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=\"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\" f=\"T411.xml\"><exclusion pattern=\"^http://irc\\.t411\\.(io|me)/\"/><rule from=\"^http:\" to=\"https:\"/><securecookie host=\"^.*t411\\.(io|me)$\" 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://(?:www\\.)?taz\\.de/\" to=\"https://www.taz.de/\"/><rule from=\"^http://(blogs|buchmesse|dl|download|m|shop)\\.taz\\.de/\" to=\"https://$1.taz.de/\"/><rule from=\"^http://www\\.buchmesse\\.taz\\.de/\" to=\"https://buchmesse.taz.de/\"/></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://onlinebanking\\.tdbank\\.com/\" to=\"https://onlinebanking.tdbank.com/\"/></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)\" 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 (mismatches)\" default_off=\"mismatch\" f=\"TED-mismatches.xml\"><rule from=\"^http://(blog|video)\\.ted\\.com/\" to=\"https://$1.ted.com/\"/></ruleset>", "<ruleset name=\"TED (buggy)\" f=\"TED.xml\"><exclusion pattern=\"^http://video\\.ted\\.com/\"/><rule from=\"^http://ed\\.ted\\.com/\" to=\"https://teded.herokuapp.com/\"/><rule from=\"^http://(?:images\\.ted|lvlt\\.tedcdn)\\.com/\" to=\"https://www.ted.com/\"/><rule from=\"^http://www\\.ted\\.com/\" to=\"https://www.ted.com/\"/><rule from=\"^http://pb\\-assets\\.tedcdn\\.com/\" to=\"https://pb-assets.tedcdn.com/\"/><rule from=\"^http://img\\.tedcdn\\.com/\" to=\"https://img-ssl.tedcdn.com/\"/></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\" 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)\" 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\" 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\" f=\"TICKETsage.xml\"><securecookie host=\"^\\.ticketsage.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TIME.com (partial)\" f=\"TIME.com.xml\"><exclusion pattern=\"^http://time\\.com/(?:$|(?:(?:\\d+|author|collection|magazine|newsletter|tag|topic)/[\\w-]+|business|entertainment|health|history|ideas|living|magazine|newsfeed|parents|politics|science|sports|tech|us|vault|world)/(?:$|\\?))\"/><securecookie host=\"^\\.time\\.com$\" name=\"^(?:gpv_\\w\\d+|sinvisit_\\w|s_\\w+)$\"/><securecookie host=\"^subscription\\.time\\.com$\" name=\".+\"/><rule from=\"^http://((?:auth|profiles|smetrics|subscription|www)\\.)?time\\.com/\" to=\"https://$1time.com/\"/><rule from=\"^http://(business|entertainment|newsfeed|science|world)\\.time\\.com/+(?:$|\\?.*)\" to=\"https://time.com/$1\"/><rule from=\"^http://healthland\\.time\\.com/+(?:$|\\?.*)\" to=\"https://time.com/health\"/><rule from=\"^http://ideas\\.time\\.com/+(?:$|\\?.*)\" to=\"https://time.com/opinion\"/><rule from=\"^http://nation\\.time\\.com/+(?:$|\\?.*)\" to=\"https://time.com/us\"/><rule from=\"^http://swampland\\.time\\.com/+(?:$|\\?.*)\" to=\"https://time.com/politics\"/><rule from=\"^http://techland\\.time\\.com/+(?:$|\\?.*)\" to=\"https://time.com/tech\"/></ruleset>", "<ruleset name=\"TIP.net.au (partial)\" platform=\"cacert\" f=\"TIP.net.au.xml\"><rule from=\"^http://(www\\.)?tip\\.net\\.au/(favicon\\.ico|wiki/(?:index\\.php\\?title=(?:.+&amp;action=raw|Special:UserLogin)|PCUG_logo\\.jpg|skins/))\" to=\"https://$1tip.net.au/$2\"/></ruleset>", "<ruleset name=\"TKK.fi\" default_off=\"missing certificate chain\" f=\"TKK.fi.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TLDRLegal.com (partial)\" f=\"TLDRLegal.com.xml\"><securecookie host=\"^\\.tldrlegal\\.com$\" name=\"^tldrlegal\\.sid$\"/><rule from=\"^https?://(www\\.)?tldrlegal\\.com/\" to=\"https://tldrlegal.com/\"/></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\" 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\" 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://id\\.tmtm\\.ru/\" to=\"https://id.tmtm.ru/\"/></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)\" 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=\"self-signed\" f=\"TNS-Global.xml\"><rule from=\"^http://(?:www\\.)?tnsglobal\\.com/\" to=\"https://www.tnsglobal.com/\"/></ruleset>", "<ruleset name=\"TNS Info\" f=\"TNS-Info.xml\"><securecookie host=\"^(?:.*\\.)?tnsinfo\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?tnsinfo\\.com/\" to=\"https://www.tnsinfo.com/\"/></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\" platform=\"cacert\" f=\"TOG.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://tosback\\.org/\" to=\"https://tosback.org/\"/></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\" default_off=\"failed ruleset test\" 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=\"TRON-DELTA.ORG\" platform=\"firefox\" f=\"TRON-DELTA.ORG.xml\"><securecookie host=\"^tron-delta\\.org$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?tron-delta\\.org/\" to=\"https://tron-delta.org/\"/><rule from=\"^http://([^/:@]+)\\.tron-delta\\.org/\" to=\"https://$1.tron-delta.org/\"/></ruleset>", "<ruleset name=\"TRUSTe.com (partial)\" f=\"TRUSTe.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\" 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://www\\.tsoshop\\.co\\.uk/\" to=\"https://www.tsoshop.co.uk/\"/></ruleset>", "<ruleset name=\"TShare.to\" 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\" 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)\" f=\"TUE.nl.xml\"><securecookie host=\"^\\w\" name=\".\"/><securecookie host=\"^\\.\" name=\"^_gat?$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TUGRaz.at (partial)\" 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=\"TV.com (broken)\" default_off=\"JS redirects back to HTTP\" f=\"TV.com.xml\"><rule from=\"^http://tv\\.com/\" to=\"https://www.tv.com/\"/><rule from=\"^http://www\\.tv\\.com/\" to=\"https://www.tv.com/\"/></ruleset>", "<ruleset name=\"TV1.eu\" f=\"TV1.eu.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TV2.dk (mixed content)\" platform=\"mixedcontent\" 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://www\\.tv4play\\.se/\" to=\"https://www.tv4play.se/\"/><rule from=\"^http://tv4play\\.se/\" to=\"https://www.tv4play.se/\"/></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\" 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\" f=\"TYPO3.org-falsemixed.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TYPO3.org (partial)\" 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\"><exclusion pattern=\"^http://trc\\.taboola\\.com/libtrc/\"/><securecookie host=\"^www\\.taboola\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?taboola\\.com/\" to=\"https://www.taboola.com/\"/><rule from=\"^http://(cdn|images|netstorage|trc)\\.taboola\\.com/\" to=\"https://$1.taboola.com/\"/></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)\" 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)\" 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\" 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=\"Takuu-S&#228;&#228;ti&#246;\" f=\"Takuu-Saatio.xml\"><rule from=\"^http://(?:www\\.)?takuu-saatio\\.fi/\" to=\"https://takuu--saatio-fi.directo.fi/\"/><rule from=\"^http://takuu--saatio-fi\\.directo\\.fi/\" to=\"https://takuu--saatio-fi.directo.fi/\"/></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.com (problematic)\" default_off=\"self-signed\" f=\"Talemetry.com-problematic.xml\"><securecookie host=\"^\\.talemetry(?:today)?\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?tale(?:metry|nttech)\\.com/\" to=\"https://talemetry.com/\"/><rule from=\"^http://(?:www\\.)?talemetrytoday\\.com/\" to=\"https://www.talemetrytoday.com/\"/></ruleset>", "<ruleset name=\"Talemetry.com (partial)\" default_off=\"failed ruleset test\" f=\"Talemetry.com.xml\"><securecookie host=\"^(?:\\.careers|login)\\.talemetry\\.com$\" name=\".+\"/><rule from=\"^http://(careers|login)\\.talemetry\\.com/\" to=\"https://$1.talemetry.com/\"/><rule from=\"^http://ttc\\.talenttech\\.com/(cs|image|j|r)s/\" to=\"https://na-k.marketo.com/$1s/\"/></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)\" 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=\"mismatch\" 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)\" f=\"TalkTalk.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TalkTalk Business.co.uk\" f=\"TalkTalk_Business.co.uk.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"talkhealth partnership.com\" f=\"Talkhealth_partnership.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Talking French\" default_off=\"failed ruleset test\" f=\"Talking_French.xml\"><rule from=\"^http://talkingfrench\\.com/\" to=\"https://www.talkingfrench.com/\"/><rule from=\"^http://([^/:@]+)?\\.talkingfrench\\.com/\" to=\"https://$1.talkingfrench.com/\"/></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\" 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\" default_off=\"failed ruleset test\" 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:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tangible Security\" f=\"Tangible-Security.xml\"><securecookie host=\"^(www\\.)?tangiblesecurity\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tango.me (partial)\" 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\" 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 (MCB)\" platform=\"mixedcontent\" f=\"Taobao.com-falsemixed.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Taobao.com (partial)\" f=\"Taobao.xml\"><securecookie host=\"^\\.taobao\\.com$\" name=\"^ali_ab$\"/><securecookie host=\"^(?:bgt|caipiao|\\.login\\.m|mm|re|mosaic\\.re|temai)\\.taobao\\.com$\" name=\".+\"/><rule from=\"^http://global\\.taobao\\.com/\" to=\"https://g.taobao.com/\"/><rule from=\"^http://logo\\.taobao\\.com/\" to=\"https://img.alicdn.com/\"/><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://img(?:0\\d)?\\.taobaocdn\\.com/\" to=\"https://img.alicdn.com/\"/></ruleset>", "<ruleset name=\"Tapad (partial)\" 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\" 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)\" 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\" f=\"Targeted_Threats.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Taringa (partial)\" default_off=\"failed ruleset test\" f=\"Taringa.xml\"><rule from=\"^http://(?:(?:l|o1)\\.r26\\.net|i\\.t\\.net\\.ar)/\" to=\"https://l.r26.net/\"/><rule from=\"^http://(?:www\\.)?taringa\\.net/(login|recuperar-(?:clave|nick)|registro(?:-reenviar)?)($|\\?|/)\" to=\"https://www.taringa.net/$1$2\"/></ruleset>", "<ruleset name=\"Tarlogic.com\" 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=\"Taschenorakel.de\" default_off=\"expired\" platform=\"cacert\" f=\"Taschenorakel.de.xml\"><rule from=\"^http://(?:www\\.)?taschenorakel\\.de/\" to=\"https://taschenorakel.de/\"/></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=\"mismatch\" 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://www\\.mytatasky\\.com/\" to=\"https://www.mytatasky.com/\"/></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=\"TauCeti.org.au\" f=\"TauCeti.org.au.xml\"><rule from=\"^http://www\\.tauceti\\.org\\.au/\" to=\"https://www.tauceti.org.au/\"/></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)\" f=\"Taunton_Deane.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://consultldf\\.tauntondeane\\.gov\\.uk/+(?:\\?.*)?$\" to=\"https://tauntondeane.objective.co.uk/portal\"/><rule from=\"^http://consultldf\\.tauntondeane\\.gov\\.uk/\" to=\"https://tauntondeane.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=\"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\" 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 (mixedcontent)\" platform=\"mixedcontent\" f=\"Tcl.tk-falsemixed.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tcl.tk (partial)\" f=\"Tcl.tk.xml\"><exclusion pattern=\"^http://(?:www\\.)?tcl\\.tk/+(?!devsite\\.css|images/)\"/><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\" 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\" 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)\" f=\"Tealium.xml\"><rule from=\"^http://my\\.tealiumiq\\.com/\" to=\"https://my.tealiumiq.com/\"/><rule from=\"^http://tags\\.tiqcdn\\.com/\" to=\"https://tags.tiqcdn.com/\"/></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 in Training.org (partial)\" 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=\"^\\.teamtailor\\.com$\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\".+\\.teamtailor\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Teamviewer.com\" 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\" default_off=\"mismatch, self-signed\" f=\"Tech-Recipes.xml\"><securecookie host=\"^www\\.tech-recipes\\.com$\" name=\".*\"/><rule from=\"^http://(?:cloud\\.|www\\.)?tech-recipes\\.com/\" to=\"https://www.tech-recipes.com/\"/></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=\"connection 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\" 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 (partial)\" default_off=\"failed ruleset test\" f=\"TechTarget.xml\"><securecookie host=\"^(?:media|techtargetsummit|www)\\.techtarget\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?techtarget\\.com/\" to=\"https://www.techtarget.com/\"/><rule from=\"^http://(media|techtargetsummit)\\.techtarget\\.com/\" to=\"https://$1.techtarget.com/\"/></ruleset>", "<ruleset name=\"TechVerse (partial)\" f=\"TechVerse.xml\"><rule from=\"^http://(?:www\\.)?techverse\\.com\\.au/(chat/|images/|index\\.php\\?(?:.+&amp;)?_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=\"^(?:www\\.)?techjourney\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tech Tools for Activism.org\" 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\" default_off=\"failed ruleset test\" f=\"Techmeme.com.xml\"><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)\" 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)\" 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:\" 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)\" 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 Universit&#228;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 Media (mismatches)\" default_off=\"expired, mismatched, self-signed\" f=\"Technorati-Media-problematic.xml\"><rule from=\"^http://(?:www\\.)?technoratimedia\\.com/\" to=\"https://technoratimedia.com/\"/><rule from=\"^http://(?:ad-cdn|uat-net)\\.technoratimedia\\.com/\" to=\"https://uat-net.technoratimedia.com/\"/></ruleset>", "<ruleset name=\"Technorati Media (partial)\" f=\"Technorati-Media.xml\"><rule from=\"^http://ad\\.technoratimedia\\.com/\" to=\"https://ad.rmxads.com/\"/></ruleset>", "<ruleset name=\"Technovelty.org\" f=\"Technovelty.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Techopedia.com\" default_off=\"failed ruleset test\" 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://(?:www\\.)?techpowerup\\.com/\" to=\"https://www.techpowerup.com/\"/></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\" 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\" f=\"Teevox.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tehconnection\" default_off=\"failed ruleset test\" 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)\" default_off=\"failed ruleset test\" f=\"Tek.no.xml\"><securecookie host=\"^\\.tek\\.no$\" name=\"^CfP$\"/><rule from=\"^http://(static\\.|www\\.)?tek\\.no/\" to=\"https://$1tek.no/\"/><rule from=\"^http://ad\\.tek\\.no/\" to=\"https://adserver.adtech.de/\"/></ruleset>", "<ruleset name=\"TekGoblin\" default_off=\"failed ruleset test\" f=\"TekGoblin.xml\"><rule from=\"^http://(?:(?:\\w+\\.)?tekgoblin|cdn(?:[23])?\\.tekgoblinmedia)\\.com/\" to=\"https://d369bx7nq13k6v.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Tek Syndicate.com\" f=\"Tek_Syndicate.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TelMasters\" 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\" 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&#243;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&#243;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.me\" f=\"Telegram.me.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Telegram.org\" f=\"Telegram.org.xml\"><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)\" 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\" 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\" 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\" default_off=\"failed ruleset test\" 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=\"mismatch\" 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\" 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\" f=\"TeleworkGovAu.xml\"><rule from=\"^http://(?:www\\.)?telework\\.gov\\.au/\" to=\"https://www.telework.gov.au/\"/></ruleset>", "<ruleset name=\"Telex\" 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=\"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=\"Telstra Corporation (mismatches)\" default_off=\"mismatch\" 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=\"Telus (partial)\" 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\" 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\" default_off=\"failed ruleset test\" 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\" 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.io\" f=\"Tent.io.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tent.is\" 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://store\\.tequipment\\.net/\" to=\"https://store.tequipment.net/\"/></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)\" 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\" f=\"Terminal.com.xml\"><securecookie host=\"^www\\.terminal\\.com$\" 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\" default_off=\"failed ruleset test\" f=\"Terra-Galleria.xml\"><securecookie host=\"^(?:.*\\.)?terragalleria\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Terra Mail (MX)\" f=\"TerraMailMX.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TerraPass (partial)\" default_off=\"failed ruleset test\" f=\"TerraPass.xml\"><exclusion pattern=\"^http://store.terrapass.com/(?![iI]mages/|Shared/|[sS]tore/(?:buttons|i|Templates)/)\"/><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\" default_off=\"failed ruleset test\" 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\"><exclusion pattern=\"^http://www\\.teslamotors\\.com/findus$\"/><exclusion pattern=\"^http://www\\.teslamotors\\.com/(?!(?:mytesla|order|user)(?:$|[?/])|sites/|tesla_theme/)\"/><rule from=\"^http://teslamotors\\.com/\" to=\"https://www.teslamotors.com/\"/><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)\" 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=\"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=\"Tetu\" default_off=\"failed ruleset test\" f=\"Tetu.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)\" 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&amp;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\" f=\"Textracer.dk.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TextualApp.com\" f=\"TextualApp.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://textualapp\\.com/\" to=\"https://www.textualapp.com/\"/><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=\"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=\"tgthr.com\" default_off=\"differs from http\" f=\"Tgthr.com.xml\"><securecookie host=\"^(?:w*\\.)?tgthr\\.com$\" name=\".+\"/><rule from=\"^http://tgthr\\.crbuildsite\\.com/\" to=\"https://tgthr.com/\"/><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\" 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=\"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 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=\"mismatch\" 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=\"mismatch\" 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 (partial)\" f=\"The-DMA.org.xml\"><rule from=\"^http:\" to=\"https:\"/></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\" default_off=\"failed ruleset test\" f=\"The-Diplomat.xml\"><securecookie host=\"^thediplomat\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?thediplomat\\.com/\" to=\"https://thediplomat.com/\"/></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\" 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=\"mismatch\" 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 Japan Times (problematic)\" default_off=\"mismatch\" f=\"The-Japan-Times-problematic.xml\"><exclusion pattern=\"http://www\\.japantimes\\.co\\.jp/images/header_title\\.gif\"/><rule from=\"^http://(?:www\\.)?japantimes\\.co\\.jp/\" to=\"https://www.japantimes.co.jp/\"/></ruleset>", "<ruleset name=\"The Japan Times (partial)\" f=\"The-Japan-Times.xml\"><securecookie host=\"^.+\\.japantimes\\.co\\.jp$\" name=\".+\"/><rule from=\"^http://(bookclub|club|form)\\.japantimes\\.co\\.jp/\" to=\"https://$1.japantimes.co.jp/\"/><rule from=\"^http://www\\.japantimes\\.co\\.jp/images/header_title\\.gif\" to=\"https://form.japantimes.co.jp/images/header_title.gif\"/></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\" default_off=\"failed ruleset test\" f=\"The-Nation.xml\"><securecookie host=\"^(?:donate|subscribe)\\.thenation\\.com$\" name=\".+\"/><rule from=\"^http://((?:donate|subscribe|www)\\.)?thenation\\.com/\" to=\"https://$1thenation.com/\"/><rule from=\"^http://65\\.98\\.18\\.218/\" to=\"https://upgnation.com/\"/><rule from=\"^http://(?:www\\.)?upgnation\\.com/(?=blank\\.gif|favicon\\.ico|images/|(?:image|login|register)\\.php|skin/|var/)\" to=\"https://www.upgnation.com/\"/></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 Nature Conservancy (partial)\" f=\"The-Nature-Conservancy.xml\"><securecookie host=\"^shop\\.nature\\.org$\" name=\".*\"/><rule from=\"^http://shop\\.nature\\.org/\" to=\"https://shop.nature.org/\"/><rule from=\"^http://support\\.nature\\.org/images/\" to=\"https://support.nature.org/images/\"/></ruleset>", "<ruleset name=\"The New Yorker (partial)\" 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=\"mismatch\" 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\" 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://secureimages\\.teach12\\.com/\" to=\"https://secureimages.teach12.com/\"/></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 (partial)\" platform=\"firefox\" f=\"The-Verge.xml\"><securecookie host=\".*\\.theverge\\.com$\" name=\".+\"/><exclusion pattern=\"^http://www\\.theverge\\.com/comments/load_comments/\"/><rule from=\"^http://theverge\\.com/\" to=\"https://www.theverge.com/\"/><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) \" default_off=\"failed ruleset test\" 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=\"The Book Depository\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"TheBookDepository.xml\"><rule from=\"^http://bookdepository\\.(co\\.uk|com)/\" to=\"https://bookdepository.$1/\"/><rule from=\"^http://(cache0|cache1|cache2|cache3|images|www)\\.bookdepository\\.(co\\.uk|com)/\" to=\"https://$1.bookdepository.$2/\"/></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\" 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=\"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=\"The Old Reader\" default_off=\"failed ruleset test\" 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\" f=\"ThePermitStore.com.xml\"><securecookie host=\"^(?:[a-zA-Z0-9\\-]*\\.)?thepermitstore\\.com$\" name=\".+\"/><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=\"ThePirateGoogle\" default_off=\"Certificate mismatch\" f=\"ThePirateGoogle.xml\"><rule from=\"^http://(www\\.)?(thepirategoogle|webtorrentsearch)\\.(mrcarch\\.)?com/\" to=\"https://$2.mrcarch.com/~mrcarchc/$2/\"/></ruleset>", "<ruleset name=\"thePlatform.com (problematic)\" default_off=\"mismatched\" f=\"ThePlatform-problematic.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"thePlatform.com (partial)\" 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\" f=\"ThePrivacyBlog.xml\"><rule from=\"^http://(?:www\\.)?theprivacyblog\\.com/\" to=\"https://www.theprivacyblog.com/\"/></ruleset>", "<ruleset name=\"TheReadingRoom.com\" f=\"TheReadingRoom.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TheRealTalk.org\" f=\"TheRealTalk.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TheResumator clients (partial)\" f=\"TheResumator.com-clients.xml\"><rule from=\"^http://jobs\\.urbandictionary\\.com/\" to=\"https://urbandictionary.theresumator.com/\"/></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=\"TheTrainLine\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"TheTrainLine.xml\"><securecookie host=\"^(?:.+\\.)?thetrainline\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?thetrainline\\.com/\" to=\"https://www.thetrainline.com/\"/></ruleset>", "<ruleset name=\"TheVideo.me\" f=\"TheVideo.me.xml\"><securecookie host=\"^\\.thevideo\\.me$\" 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)\" 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 (false MCB)\" platform=\"mixedcontent\" f=\"The_Atlantic.com-falsemixed.xml\"><rule from=\"^http://theatlantic\\.com/\" to=\"https://www.theatlantic.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"The Atlantic.com (partial)\" 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\" default_off=\"failed ruleset test\" 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=\"failed ruleset test\" f=\"The_Big_Wedding_Movie.com.xml\"><rule from=\"^http://(?:www\\.)?thebigweddingmovie\\.com/\" to=\"https://www.thebigweddingmovie.com/\"/></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)\" f=\"The_Body_Shop.co.uk.xml\"><exclusion pattern=\"^http://(?:www\\.)?thebodyshop\\.co\\.uk/+(?!404\\.htm|404_\\d\\.jpg|(?:athome|myspace)(?:$|[?/])|checkout/|content/|css/|images/|img/|js/|loyalty/|services/|socialhub/|(?:Script|Web)Resource\\.axd|ws/)\"/><securecookie host=\"^\\.thebodyshop\\.co\\.uk$\" name=\"^(?:TRADEDOUBLER_|__tro)\\w+$\"/><securecookie host=\"^secure\\.thebodyshop\\.co\\.uk$\" name=\".+\"/><rule from=\"^http://(?:secure\\.|www\\.)?thebodyshop\\.co\\.uk/\" to=\"https://secure.thebodyshop.co.uk/\"/><rule from=\"^http://(?:www\\.)?beautyblog\\.thebodyshop\\.co\\.uk/(?=favicon\\.ico|wp-content/|wp-includes/)\" to=\"https://thebodyshop-uk-blog.azurewebsites.net/\"/></ruleset>", "<ruleset name=\"Boston Globe.com (partial)\" f=\"The_Boston_Globe.xml\"><securecookie host=\".\" name=\".\"/><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\" 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 Chive.com (partial)\" f=\"The_Chive.com.xml\"><exclusion pattern=\"^http://dating\\.thechive\\.com/+(?!assets/|favicon\\.ico|login/*(?:$|\\?))\"/><securecookie host=\"^\\.thechive\\.com$\" name=\"^__qca$\"/><securecookie host=\"^(?:dating|my)\\.thechive\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"The Chronicles of George\" 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)\" f=\"The_DMA.org.xml\"><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\" 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)\" 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\" 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=\"connection 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)\" f=\"The_Guardian.com.xml\"><exclusion pattern=\"^http://(?:www\\.)?theguardian\\.com/+(?!(?:info|science)(?:$|[?/]))\"/><securecookie host=\"^\\.theguardian\\.com$\" name=\"^(?:OAX|RMF[DH]|s_vi)$\"/><securecookie host=\"^(?:(?:\\.|www\\.)?bookshop|\\.?id|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 Hacker Blog.com\" f=\"The_Hacker_Blog.com.xml\"><securecookie host=\"^\\.thehackerblog\\.com$\" name=\".+\"/><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\" 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 Intercept.com\" f=\"The_Intercept.com.xml\"><rule from=\"^http:\" to=\"https:\"/></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)\" 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 Monthly.com.au\" f=\"The_Monthly.com.au.xml\"><securecookie host=\"^\\.themonthly\\.com\\.au$\" name=\".+\"/><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 Nanfang.com\" f=\"The_Nanfang.com.xml\"><securecookie host=\"^\\.thenanfang\\.com$\" name=\".+\"/><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\" 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\"><rule from=\"^http://(?:www\\.)?theparliamentmagazine\\.eu/\" to=\"https://www.theparliamentmagazine.eu/\"/></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 Saturday Paper.com.au\" f=\"The_Saturday_Paper.com.au.xml\"><securecookie host=\"^\\.thesaturdaypaper\\.com\\.au$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></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\" 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 Wire.com (false MCB)\" platform=\"mixedcontent\" f=\"The_Wire.com-falsemixed.xml\"><rule from=\"^http://(?:www\\.)?thewire\\.com/\" to=\"https://www.thewire.com/\"/></ruleset>", "<ruleset name=\"The Wire.com (partial)\" f=\"The_Wire.com.xml\"><securecookie host=\"^\\.thewire\\.com$\" name=\"^s_\\w+$\"/><rule from=\"^http://cdn\\.thewire\\.com/\" to=\"https://cdn.thewire.com/\"/></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\" 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\" 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://thehabbos\\.org/\" to=\"https://thehabbos.org/\"/></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=\"Theme-Fusion.com\" f=\"Theme-Fusion.com.xml\"><securecookie host=\"^\\.?theme-fusion\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Theme.co (partial)\" f=\"Theme.co.xml\"><exclusion pattern=\"^http://(?:www\\.)?theme\\.co/x/demo(?:|[?/])\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Themes and Co.com\" default_off=\"failed ruleset test\" 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=\"mismatch\" 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\" f=\"Thephone.coop.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Thermitic.net (partial)\" f=\"Thermitic.net.xml\"><rule from=\"^http://stats\\.thermitic\\.net/\" to=\"https://stats.thermitic.net/\"/></ruleset>", "<ruleset name=\"Thermo Scientific.com\" 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=\"Thijs Alkema.de\" default_off=\"failed ruleset test\" f=\"Thijs_Alkema.de.xml\"><rule from=\"^http://www\\.thijsalkema\\.de/\" to=\"https://thijsalkema.de/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"thing.net (false MCB)\" platform=\"mixedcontent\" f=\"Thing.net-falsemixed.xml\"><rule from=\"^http://editions\\.thing\\.net/\" to=\"https://editions.thing.net/\"/></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=\"^(?:www)?\\.thinglink\\.com$\" name=\".+\"/><securecookie host=\"^cdn\\.thinglink\\.me$\" name=\".+\"/><rule from=\"^http://(www\\.)?thinglink\\.com/\" to=\"https://$1thinglink.com/\"/><rule from=\"^http://cdn\\.thinglink\\.me/\" to=\"https://cdn.thinglink.me/\"/></ruleset>", "<ruleset name=\"ThingLink Blog\" default_off=\"mismatched\" f=\"ThingLink_Blog.xml\"><rule from=\"^http://(?:www\\.)?thinglinkblog\\.com/\" to=\"https://thinglinkblog.com/\"/></ruleset>", "<ruleset name=\"Thingiverse (partial)\" f=\"Thingiverse.xml\"><securecookie host=\"^(?:www)?\\.thingiverse\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?thingiverse\\.com/\" to=\"https://www.thingiverse.com/\"/><rule from=\"^http://support\\.thingiverse\\.com/\" to=\"https://thingiverse.tenderapp.com/\"/></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\" 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 (false MCB)\" platform=\"mixedcontent\" f=\"ThinkProgress.org-falsemixed.xml\"><exclusion pattern=\"^http://thinkprogress\\.com/justice/\\d{4}/\\d\\/\\d\\d/\\d+/[\\w-]+\"/><rule from=\"^http://thinkprogress\\.org/\" to=\"https://thinkprogress.org/\"/></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=\"Third Door Media (mismatches)\" default_off=\"mismatch\" 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=\"connection 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=\"Thomas Cook\" default_off=\"Site no longer exists\" f=\"ThomasCook.xml\"><rule from=\"^http://thomascook\\.com/\" to=\"https://thomascook.com/\"/><rule from=\"^http://(book|ww3|ww7|www)\\.thomascook\\.com/\" to=\"https://$1.thomascook.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=\"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=\"mismatch\" 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=\"mismatch\" f=\"Thomson-Reuters-mismatches.xml\"><exclusion pattern=\"^http://s[1-4]\\.reutersmedia\\.net/(?:resources/(?:images|media|r)|resources_v2/(?:image|j)s)/\"/><rule from=\"^http://investor\\.marvell\\.com/\" to=\"https://investor.marvell.com/\"/><rule from=\"^http://s[1-4]\\.reutersmedia\\.net/\" to=\"https://s1.reutersmedia.net/\"/></ruleset>", "<ruleset name=\"Thomson Reuters.com (partial)\" f=\"Thomson-Reuters.xml\"><exclusion pattern=\"^http://legalsolutions\\.thomsonreuters\\.com/+(?!favicon\\.ico|law-products/(?:_ui|onlineopinionV5|static|stylesheets)/|medias/)\"/><exclusion pattern=\"^http://newsandinsight\\.thomsonreuters\\.com/(?!favicon\\.ico$|(?:Help|Legal/Login|PrivacyPolicy|TermsOfUse)\\.aspx|uploadedimages/|UserSettings\\.aspx|Web/)\"/><securecookie host=\"^(?:assets\\.gcs|info\\.legalsolutions|myaccount|signon|thehub)\\.thomsonreuters\\.com$\" name=\".+\"/><rule from=\"^http://(assets\\.gcs|insidecareers|lconnect|legalsolutions|info\\.legalsolutions|myaccount|newsandinsight|signon|thehub)\\.thomsonreuters\\.com/\" to=\"https://$1.thomsonreuters.com/\"/></ruleset>", "<ruleset name=\"Thomson.com (partial)\" f=\"Thomson.com.xml\"><securecookie host=\"^(?:safe|(?:images|myaccount)\\.west)\\.thomson\\.com$\" name=\".+\"/><rule from=\"^http://(safe|myaccount\\.west)\\.thomson\\.com/\" to=\"https://$1.thomson.com/\"/></ruleset>", "<ruleset name=\"Thomson Reuters Life Sciences.com\" f=\"Thomson_Reuters_Life_Sciences.com.xml\"><rule from=\"^http://cortellis\\.thomsonreuterslifesciences\\.com/\" to=\"https://cortellis.thomsonreuterslifesciences.com/\"/></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\" f=\"Threading-Building-Blocks.xml\"><securecookie host=\"^\\.threadingbuildingblocks\\.org$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Threat2Alert.com\" f=\"Threat2Alert.com.xml\"><securecookie host=\"^www\\.threat2alert\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ThreatMetrix.com (false MCB)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"ThreatMetrix.com-falsemixed.xml\"><securecookie host=\"^(?:www\\.)?threatmetrix\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ThreatMetrix.com (partial)\" default_off=\"failed ruleset test\" f=\"ThreatMetrix.com.xml\"><rule from=\"^http://(www\\.)?threatmetrix\\.com/(?=favicon\\.ico|wp-content/|wp-includes/)\" to=\"https://$1threatmetrix.com/\"/></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\"><securecookie host=\"^(www.|gateway.|shop\\.|myid.)?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/\"/></ruleset>", "<ruleset name=\"TiMos.me\" 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\" 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\" 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\" 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\" 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)\" 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)\" default_off=\"failed ruleset test\" 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=\"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)\" default_off=\"failed ruleset test\" f=\"Tietoenator.com.xml\"><rule from=\"^http://easyedi\\.tietoenator\\.com/\" to=\"https://easyedi.tietoenator.com/\"/></ruleset>", "<ruleset name=\"Tigase.org (partial)\" f=\"Tigase.org.xml\"><securecookie host=\"^projects\\.tigase\\.org$\" name=\".+\"/><rule from=\"^http://projects\\.tigase\\.org/\" to=\"https://projects.tigase.org/\"/></ruleset>", "<ruleset name=\"TigerDirect.com (partial)\" 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\" 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\" 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=\"connection dropped\" 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=\"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=\"Tim Roes.de\" f=\"Tim_Roes.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tim Taubert.de\" f=\"Tim_Taubert.de.xml\"><rule from=\"^http:\" to=\"https:\"/></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/)\"/><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)\" default_off=\"failed ruleset test\" 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=\"connection refused\" f=\"Times-Printing-Co.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"The Times\" f=\"Times.xml\"><rule from=\"^http://(home|login)\\.thetimes\\.co\\.uk/\" to=\"https://$1.thetimes.co.uk/\"/></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)\" default_off=\"failed ruleset test\" 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\" 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=\"Tinder\" f=\"Tinder.xml\"><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\" 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=\"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\" default_off=\"failed ruleset test\" 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=\"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)\" default_off=\"failed ruleset test\" f=\"Tiny_Buddha.com.xml\"><rule from=\"^http://cdn\\.tinybuddha\\.com/\" to=\"https://cdn.tinybuddha.com/\"/></ruleset>", "<ruleset name=\"tinyapps.org\" f=\"Tinyapps.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tinydl\" default_off=\"expired, self-signed\" f=\"Tinydl.xml\"><securecookie host=\"^www\\.tinydl\\.com$\" name=\".*\"/><rule from=\"^http://(?:cdn\\.|www\\.)?tinydl\\.com/\" to=\"https://www.tinydl.com/\"/></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=\"Tire Metro\" default_off=\"failed ruleset test\" f=\"Tire_Metro.xml\"><securecookie host=\"^(?:.*\\.)?tiremetroonline\\.com$\" name=\".+\"/><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=\"Tires N' Wheels\" default_off=\"failed ruleset test\" f=\"Tires_N_Wheels.xml\"><securecookie host=\"^(?:.*\\.)?tiresnwheels\\.ca$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></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\" 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\" 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=\"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\" 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/\"/></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\"><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=\"Todoist\" f=\"Todoist.xml\"><rule from=\"^http://(?:www\\.)?todoist\\.com/\" to=\"https://todoist.com/\"/></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://kau\\.toke\\.dk/\" to=\"https://kau.toke.dk/\"/></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://www\\.tus\\.ac\\.jp/\" to=\"https://www.tus.ac.jp/\"/></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)\" 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.xyz\" default_off=\"failed ruleset test\" f=\"Tony.xyz.xml\"><rule from=\"^http://(?:www\\.)?tony\\.xyz/\" to=\"https://tony.xyz/\"/></ruleset>", "<ruleset name=\"Tony Bianco\" platform=\"mixedcontent\" f=\"TonyBianco.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tony Zhaocheng Tan\" 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\" default_off=\"expired\" platform=\"cacert\" f=\"Toofishes.net.xml\"><rule from=\"^http://(?:www\\.)?toofishes\\.net/\" to=\"https://www.toofishes.net/\"/><rule from=\"^http://code\\.toofishes\\.net/\" to=\"https://code.toofishes.net/\"/></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=\"toonpool.com (expired)\" default_off=\"expired\" f=\"Toonpool-expired.xml\"><exclusion pattern=\"^http://(?:blog|shop)\\.\"/><securecookie host=\"^.*\\.toonpool\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?toonpool\\.com/\" to=\"https://www.toonpool.com/\"/></ruleset>", "<ruleset name=\"toonpool.com (partial)\" default_off=\"failed ruleset test\" f=\"Toonpool.xml\"><rule from=\"^http://shop\\.toonpool\\.com/\" to=\"https://shop.toonpool.com/\"/></ruleset>", "<ruleset name=\"ToorCon.net\" f=\"ToorCon.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"top.de\" f=\"Top.de.xml\"><securecookie host=\"^top\\.de$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TopBuy.com.au\" 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=\"Top Universities\" default_off=\"expired, mismatched, self-signed\" f=\"Top_Universities.xml\"><rule from=\"^http://(?:www\\.)?topuniversities\\.com/\" to=\"https://www.topuniversities.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\" f=\"Tor2Web.xml\"><exclusion pattern=\"^http://wiki\\.tor2web\\.org\"/><rule from=\"^http://([^/]+)\\.tor2web\\.(org|com)/\" to=\"https://$1.tor2web.org/\"/></ruleset>", "<ruleset name=\"TorGuard.net\" f=\"TorGuard.xml\"><securecookie host=\"^\\.?torguard\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TorLock.com\" 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=\"Torbit (partial)\" default_off=\"failed ruleset test\" f=\"Torbit.xml\"><securecookie host=\"^\\.torbit\\.com$\" name=\".+\"/><rule from=\"^http://(?:(?:www\\.)?odi\\.io|(?:secure\\.|www\\.)?torbit\\.com)/\" to=\"https://secure.torbit.com/\"/><rule from=\"^http://torbit\\.odn\\.io/\" to=\"https://torbit.odn.io/\"/><rule from=\"^http://insight\\.torbit\\.com/\" to=\"https://insight.torbit.com/\"/></ruleset>", "<ruleset name=\"Torcache.net\" 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)\" 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\"><exclusion pattern=\"^http://torperf\\.torproject\\.org/\"/><securecookie host=\"^(?:.*\\.)?torproject\\.org$\" name=\".+\"/><rule from=\"^http://([^/:@\\.]+\\.)?torproject\\.org/\" to=\"https://$1torproject.org/\"/></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\" 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\" 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)(?:$|&amp;))\"/><rule from=\"^http://www\\.torrentprivacy\\.com/\" to=\"https://torrentprivacy.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TorrentR.eu\" f=\"TorrentR.eu.xml\"><securecookie host=\"^(?:www)?\\.torrentr\\.eu$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TorrentShack\" 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=\"torrentleechdotorg\" f=\"Torrentleech.org.xml\"><securecookie host=\"^(?:.*\\.)?torrentleech.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Torrents.to (partial)\" default_off=\"expired, self-signed\" platform=\"mixedcontent\" f=\"Torrents.to.xml\"><securecookie host=\"^\\.torrents\\.to$\" name=\".+\"/><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)\" default_off=\"failed ruleset test\" 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=\"Torservers\" f=\"Torservers.xml\"><rule from=\"^http://(?:www\\.)?torservers\\.net/\" to=\"https://www.torservers.net/\"/><rule from=\"^http://blog\\.torservers\\.net/\" to=\"https://blog.torservers.net/\"/></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\" 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\" default_off=\"failed ruleset test\" 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=\"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://secure\\.touchnet\\.com/\" to=\"https://secure.touchnet.com/\"/></ruleset>", "<ruleset name=\"Touchandtravel.de\" f=\"Touchandtravel.de.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=\"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=\"Townsville Bottom Fishing Charters.com.au (partial)\" default_off=\"failed ruleset test\" f=\"Townsville_Bottom_Fishing_Charters.com.au.xml\"><rule from=\"^http://(www\\.)?townsvillebottomfishingcharters\\.com\\.au/(?=BrowserPreview_tmp_01\\.jpg|cdn-cgi/ping|favicon\\.ico|images/|media/|plugins/|spacer\\.gif|templates/)\" to=\"https://$1townsvillebottomfishingcharters.com.au/\"/></ruleset>", "<ruleset name=\"Tox.chat\" f=\"Tox.chat.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tox.im\" f=\"Tox.im.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://www2\\.toyota\\.es/\" to=\"https://www2.toyota.es/\"/></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://media\\.tracfonewireless\\.com/\" to=\"https://media.tracfonewireless.com/\"/></ruleset>", "<ruleset name=\"Trace Register (partial)\" f=\"Trace_Register.xml\"><rule from=\"^http://cdn\\.traceregister\\.com/\" to=\"https://cdn.traceregister.com/\"/></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\" f=\"TradeLeaks.com.xml\"><securecookie host=\"^\\.tradeleaks\\.com$\" name=\"^__cfduid$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TradeMore Margin.com\" 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://(?:www\\.)?tradepub\\.com/(?!body_styles\\.css|data/|favicon\\.ico)\" to=\"https://www.tradepub.com/\"/></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://cdn\\.tradelab\\.fr/\" to=\"https://cdn.tradelab.fr/\"/></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\"><exclusion pattern=\"^http://(?:www\\.)?tradepub\\.com/+(?!body_styles\\.css|c/|data/|favicon\\.ico)\"/><rule from=\"^http://tradepub\\.com/\" to=\"https://www.tradepub.com/\"/><rule from=\"^http://img\\.tradepub\\.com/\" to=\"https://netline.cachefly.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Traffic Holder (partial)\" f=\"Traffic-Holder.xml\"><rule from=\"^http://76\\.9\\.16\\.34/\" to=\"https://secure.trafficholder.com/\"/><rule from=\"^http://(?:secure\\.|www\\.)?trafficholder\\.com/\" to=\"https://secure.trafficholder.com/\"/></ruleset>", "<ruleset name=\"Traffic Shop\" f=\"Traffic-Shop.xml\"><securecookie host=\"^www\\.trafficshop\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TrafficJunky.net\" f=\"TrafficJunky.xml\"><securecookie host=\"^(?:marketplace|www)\\.trafficjunky\\.net$\" name=\".+\"/><rule from=\"^http://((?:ads|cdn\\d*|marketplace|pt|www)\\.)?trafficjunky\\.net/\" to=\"https://$1trafficjunky.net/\"/></ruleset>", "<ruleset name=\"TrafficPrivacy.com\" 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=\"^main\\.trafficfactory\\.biz$\" 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=\"^syndication\\.traffichaus\\.com$\" 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)\" 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=\"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=\"trakk247.com\" default_off=\"failed ruleset test\" f=\"Trakk247.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TransIP.nl\" f=\"TransIP.nl.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Trans Marine\" 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=\"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=\"^www\\.transifex\\.com$\" 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\" default_off=\"failed ruleset test\" f=\"TransitionNetwork.org.xml\"><rule from=\"^http://(?:www\\.)?transitionnetwork\\.org/\" to=\"https://www.transitionnetwork.org/\"/></ruleset>", "<ruleset name=\"TranslateThi.is (partial)\" f=\"TranslateThi.is.xml\"><rule from=\"^http://x\\.translateth\\.is/\" to=\"https://s3.amazonaws.com/x.translateth.is/\"/></ruleset>", "<ruleset name=\"Translatewiki.net\" default_off=\"failed ruleset test\" 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=\"Translink\" default_off=\"failed ruleset test\" 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 (partial)\" f=\"Transmission.xml\"><securecookie host=\"^trac\\.transmissionbt\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Transmode.se\" 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\" 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\" 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\"><exclusion pattern=\"^http://(?:art|blog|content|countdown|cyclestories|info|cisitorshop)\\.tfl\\.gov\\.uk/\"/><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://(?:www\\.)?transversal\\.com/\" to=\"https://www.transversal.com/\"/></ruleset>", "<ruleset name=\"trappedinsidethecomputer.net (partial)\" default_off=\"failed ruleset test\" f=\"Trappedinsidethecomputer.net.xml\"><securecookie host=\"^vishakeswwwabcde\\.trappedinsidethecomputer\\.net$\" name=\".+\"/><rule from=\"^http://vishakeswwwabcde\\.trappedinsidethecomputer\\.net/\" to=\"https://vishakeswwwabcde.trappedinsidethecomputer.net/\"/></ruleset>", "<ruleset name=\"Trash-Mail.com\" f=\"Trash-Mail.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"trash.net (partial)\" platform=\"cacert\" f=\"Trash.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Trashmail\" default_off=\"failed ruleset test\" f=\"Trashmail.xml\"><securecookie host=\"^\\.?ssl\\.trashmail\\.net$\" name=\".+\"/><rule from=\"^http://(?:ssl\\.|www\\.)?trashmail\\.net/\" to=\"https://ssl.trashmail.net/\"/></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)\" 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)\" default_off=\"failed ruleset test\" 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)\" 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\" 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://(?:(api\\.|secure\\.)|www\\.)?travis-ci\\.org/\" to=\"https://$1travis-ci.org/\"/></ruleset>", "<ruleset name=\"Travis F.net\" f=\"Travis_F.net.xml\"><rule from=\"^http://(?:www\\.|(www2\\.))?travisf\\.net/\" to=\"https://$1travisf.net/\"/></ruleset>", "<ruleset name=\"traxarmstrong.com\" f=\"Traxarmstrong.com.xml\"><rule from=\"^http://(?:www\\.)?traxarmstrong\\.com/\" to=\"https://traxarmstrong.com/\"/></ruleset>", "<ruleset name=\"Treasury.gov (partial)\" 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\" default_off=\"failed ruleset test\" 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\" default_off=\"failed ruleset test\" 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\" 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=\"Tribler (partial)\" default_off=\"failed ruleset test\" f=\"Tribler.xml\"><securecookie host=\"^www\\.tribler\\.org$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tribune (mismatches)\" default_off=\"mismatch\" 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\"><rule from=\"^http://advertise\\.courant\\.com/\" to=\"https://advertise.courant.com/\"/><rule from=\"^http://(?:www\\.)?courant\\.com/includes/uploads/2010/08/3A2C26D5_courant_logo_981x160b\\.jpg$\" to=\"https://advertise.courant.com/portal/page/portal/Hartford%20Courant/Content%20Items/P2P/3A2C26D5_courant_logo_981x160b.jpg\"/><rule from=\"^http://(?:www\\.)?courant\\.com/media/graphic/2009-06/47547079\\.png$\" to=\"https://advertise.courant.com/portal/page/portal/Hartford%20Courant/Content%20Items/P2P/47547079.png\"/><rule from=\"^http://([\\w-]+)\\.signon\\.trb\\.com/\" to=\"https://$1.signon.trb.com/\"/></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\" default_off=\"failed ruleset test\" 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)\" 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 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\" 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\" 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.xml\"><securecookie host=\"^(?:devel)?\\.trisquel\\.info$\" name=\".+\"/><rule from=\"^http://(devel\\.|www\\.)?trisquel\\.info/\" to=\"https://$1trisquel.info/\"/><rule from=\"^http://cn\\.archive\\.trisquel\\.info/\" to=\"https://mirrors.ustc.edu.cn/\"/></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 (problematic)\" default_off=\"expired, self-signed\" f=\"Tropo-problematic.xml\"><rule from=\"^http://blog\\.tropo\\.com/\" to=\"https://blog.tropo.com/\"/></ruleset>", "<ruleset name=\"Tropo (partial)\" f=\"Tropo.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"tros.nl\" f=\"Tros.nl.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Trove.com (partial)\" f=\"Trove.com.xml\"><securecookie host=\"^(?:id)?\\.trove\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"troveread.com\" default_off=\"failed ruleset test\" f=\"Troveread.com.xml\"><rule from=\"^http://troveread\\.com/.*\" to=\"https://socialreader.com/\"/><rule from=\"^http://s\\.troveread\\.com/\" to=\"https://dizqy8916g7hx.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Truck Trend.com (partial)\" default_off=\"failed ruleset test\" f=\"Truck_Trend.com.xml\"><rule from=\"^http://image\\.trucktrend\\.com/\" to=\"https://s248.e.akamai.net/f/1664/1785/9/image.trucktrend.com/\"/></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=\"Truecrypt (partial)\" default_off=\"failed ruleset test\" f=\"Truecrypt.xml\"><rule from=\"^http://(www\\.)?truecrypt\\.org/(bug|donation|image)s/\" to=\"https://$1truecrypt.org/$2s/\"/><rule from=\"^http://forums\\.truecrypt\\.org/templates/\" to=\"https://forums.truecrypt.org/templates/\"/></ruleset>", "<ruleset name=\"Truefactor.io\" 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=\"Truetrophies.com\" f=\"Truetrophies.com.xml\"><rule from=\"^http:\" to=\"https:\"/></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\" f=\"TrustKeeper.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TrustSign.com.br\" 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\" 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=\"TruthMarket\" default_off=\"buggy\" f=\"TruthMarket.xml\"><securecookie host=\"^(?:www\\.)?truthmarket\\.com$\" name=\".*\"/><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\" f=\"Try_Superb_Green_Coffee.com.xml\"><securecookie host=\"^(?:w*\\.)?trysuperbgreencoffee.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"try Zen99.com\" f=\"Try_Zen99.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Trygghansa.se\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" 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=\"TuXingSun.net\" 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=\"mismatch\" 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=\"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\" default_off=\"failed ruleset test\" 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\"><exclusion pattern=\"^http://assets\\.tumblr\\.com/+assets/scripts/(?!vendor/\\w+/plugins/\\w+/css/)\"/><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://data\\.tumblr\\.com/\" to=\"https://gs1.wac.edgecastcdn.net/8019B6/data.tumblr.com/\"/><rule from=\"^http://(?:(?:25|37)\\.)?media\\.tumblr\\.com/\" to=\"https://31.media.tumblr.com/\"/><rule from=\"^http://static\\.tumblr\\.com/\" to=\"https://d2pi0bc9ewx28h.cloudfront.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tumri.net\" f=\"Tumri.net.xml\"><securecookie host=\"^\\.tumri\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tumutanzi.com\" f=\"Tumutanzi.com.xml\"><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\" 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)\" default_off=\"failed ruleset test\" 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://my\\.turbobytes\\.com/\" to=\"https://my.turbobytes.com/\"/></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)\" 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 Networks (partial)\" default_off=\"Breaks lenovo `ask a question'\" f=\"TurnTo_Networks.xml\"><rule from=\"^http://static\\.www\\.turnto\\.com/\" to=\"https://static.www.turnto.com/\"/></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\" default_off=\"failed ruleset test\" f=\"Turn_On_Social.xml\"><securecookie host=\"^\\.?turnonsocial\\.com$\" name=\".+\"/><rule from=\"^http://(?:cdn-[\\w-]+\\.)?turnonsocial\\.com/\" to=\"https://turnonsocial.com/\"/></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\" 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\" f=\"Tutanota.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tutor.com (partial)\" 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=\"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 (partial)\" default_off=\"self-signed\" f=\"Tux.Org.xml\"><rule from=\"^http://calypso\\.tux\\.org/\" to=\"https://calypso.tux.org/\"/></ruleset>", "<ruleset name=\"TuxFamily.org\" default_off=\"mismatch, self-signed, may need more exclusions\" f=\"TuxFamily.org.xml\"><exclusion pattern=\"^http://(?:download|git|listengine|lists|projects)\\.tuxfamily\\.org/\"/><securecookie host=\"^(?:.*\\.)?anwiki\\.com$\" name=\".*\"/><securecookie host=\"^glx-dock\\.org$\" name=\".*\"/><securecookie host=\"^[\\w\\-]+\\.tuxfamily\\.org$\" name=\".*\"/><securecookie host=\"^bugs\\.vhffs\\.org$\" name=\".*\"/><rule from=\"^http://(?:(bugs\\.|doc\\.|forum\\.)|www\\.)?anwiki\\.com/\" to=\"https://$1anwki.com/\"/><rule from=\"^http://(?:www\\.)?glx-dock\\.org/\" to=\"https://glx-dock.org/\"/><rule from=\"^http://web\\.tuxfamily\\.net/\" to=\"https://web.tuxfamily.net/\"/><rule from=\"^http://([\\w\\-]+)\\.tuxfamily\\.org/\" to=\"https://$1.tuxfamily.org/\"/><rule from=\"^http://bugs\\.vhffs\\.org/\" to=\"https://bugs.vhffs.org/\"/></ruleset>", "<ruleset name=\"TuxIC.nl\" f=\"TuxIC.nl.xml\"><securecookie host=\"^(?:www\\.)?tuxic\\.nl$\" 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\" 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=\"Tvlicensing.co.uk\" default_off=\"failed ruleset test\" f=\"Tvlicensing.co.uk.xml\"><rule from=\"^http://(?:www\\.)?tvlicensing\\.co\\.uk/\" to=\"https://www.tvlicensing.co.uk/\"/></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)\" default_off=\"mismatched\" f=\"TweakTown.com.xml\"><rule from=\"^http://(forum|image)scdn\\.tweaktown\\.com/\" to=\"https://$1scdn.tweaktown.com/\"/></ruleset>", "<ruleset name=\"Tweakers.net\" f=\"Tweakers.net.xml\"><exclusion pattern=\"^http://(?:tweakers|ic\\.tweakimg)\\.net/crossdomain\\.xml$\"/><securecookie host=\"^\\.tweakers\\.net$\" name=\".+\"/><rule from=\"^http://((?:gathering|secure|www)\\.)?tweakers\\.net/\" to=\"https://$1tweakers.net/\"/><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)\" 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=\"TweetMeme\" default_off=\"expired, mismatch\" f=\"TweetMeme.xml\"><rule from=\"^http://(?:(admin\\.)|www\\.)?tweetmeme\\.com/\" to=\"https://$1tweetmeme.com/\"/></ruleset>", "<ruleset name=\"TweetReach.com (partial)\" f=\"TweetReach.com.xml\"><securecookie host=\"^\\.tweetreach\\.com$\" name=\".+\"/><rule from=\"^http://((?:assets\\d|blog|www)\\.)?tweetreach\\.com/\" to=\"https://$1tweetreach.com/\"/></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\" 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\" 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://api\\.twingly\\.com/\" to=\"https://api.twingly.com/\"/></ruleset>", "<ruleset name=\"Twinings (partial)\" default_off=\"failed ruleset test\" 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=\"TwinsOrNot.Net\" f=\"TwinsOrNot.Net.xml\"><securecookie host=\"^.*\\.twinsornot\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"twisp.me\" 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://console\\.twistage\\.com/\" to=\"https://console.twistage.com/\"/></ruleset>", "<ruleset name=\"Twisted4Life\" f=\"Twisted4Life.xml\"><securecookie host=\"^(?:.+\\.)?twisted4life\\.com$\" name=\".*\"/><rule from=\"^http://((?:www\\.)?twisted4life\\.com)/\" to=\"https://$1/\"/></ruleset>", "<ruleset name=\"TwistedMatrix.com\" f=\"TwistedMatrix.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TwitCasting (partial)\" 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=\"TwitThis.com\" default_off=\"expired\" platform=\"mixedcontent\" f=\"TwitThis.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://www\\.twitthis\\.com/\" to=\"https://twitthis.com/\"/><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)\\.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=\"mismatch\" 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\" f=\"Two_Sigma.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Two Factor Auth.org\" f=\"Twofactorauth.org.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Twoseventy.net\" f=\"Twoseventy.net.xml\"><securecookie host=\"^\\.twoseventy\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Twtpoll.com\" 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://safe\\.txmblr\\.com/\" to=\"https://safe.txmblr.com/\"/></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 (mismatches)\" default_off=\"Akamai certificate\" f=\"Tynt-mismatches.xml\"><rule from=\"^http://tcr\\.tynt\\.com/\" to=\"https://tcr.tynt.com/\"/></ruleset>", "<ruleset name=\"Tynt (partial)\" f=\"Tynt.xml\"><securecookie host=\"^\\.tynt\\.com$\" name=\"^s_\\w\\w\\w?$\"/><securecookie host=\"^id\\.tynt\\.com$\" name=\".+\"/><rule from=\"^http://id\\.tynt\\.com/\" to=\"https://id.tynt.com/\"/></ruleset>", "<ruleset name=\"Ty&#246;- ja elinkeinoministeri&#246;\" f=\"Tyo-ja-elinkeinoministerio.xml\"><rule from=\"^http://(?:www\\.)?tem\\.fi/\" to=\"https://www.tem.fi/\"/></ruleset>", "<ruleset name=\"Ty&#246;tt&#246;myyskassojen Yhteisj&#228;rjest&#246;\" 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\"><exclusion pattern=\"^http://typecast\\.com/blog/\\w\"/><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=\"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://(dsimg|i)\\.ubm-us\\.net/\" to=\"https://$1.ubm-us.net/\"/></ruleset>", "<ruleset name=\"UBM (mismatches)\" default_off=\"mismatch\" 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 (partial)\" f=\"UBM.xml\"><securecookie host=\"^events\\.ubm\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?events\\.ubm\\.com/\" to=\"https://events.ubm.com/\"/></ruleset>", "<ruleset name=\"UBS.com (partial)\" 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=\"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)\" 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)\" 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\" 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=\"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\" default_off=\"failed ruleset test\" 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\" f=\"UHH-Informatik.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"UI-Portal.de (partial)\" 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)\" 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)\" 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\" default_off=\"failed ruleset test\" f=\"UK-Access-Management-Federation.xml\"><securecookie host=\"^wayf\\.ukfederation\\.org\\.uk$\" name=\".*\"/><rule from=\"^http://wayf\\.ukfederation\\.org\\.uk/\" to=\"https://wayf.ukfederation.org.uk/\"/></ruleset>", "<ruleset name=\"UK Department for Business, Innovation &amp; Skills\" default_off=\"expired\" f=\"UK-Department-for-Business-Innovation-and-Skills.xml\"><rule from=\"^http://(?:www\\.)?bis\\.gov\\.uk/\" to=\"https://www.bis.gov.uk/\"/></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)\" default_off=\"failed ruleset test\" f=\"UKFast.co.uk.xml\"><exclusion pattern=\"^http://www\\.ukfast\\.co\\.uk/(?!favicon\\.ico|images/|myukfast\\.html|scripts/|stylesheets/)\"/><securecookie host=\"^(?:my\\.)?ukfast\\.co\\.uk$\" name=\".+\"/><rule from=\"^http://(www\\.)?ukfast\\.co\\.uk/\" to=\"https://$1ukfast.co.uk/\"/><rule from=\"^http://images\\.ukfast\\.co\\.uk/\" to=\"https://www.ukfast.co.uk/images/\"/><rule from=\"^http://my2?\\.ukfast\\.co\\.uk/\" to=\"https://my.ukfast.co.uk/\"/></ruleset>", "<ruleset name=\"UKFur\" f=\"UKFur.xml\"><securecookie host=\"^forum\\.ukfur\\.org$\" name=\".+\"/><rule from=\"^http://forum\\.ukfur\\.org/\" to=\"https://forum.ukfur.org/\"/></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=\"UK Local Government (partial)\" f=\"UKLocalGovernment.xml\"><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\" 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)\" 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\" default_off=\"failed ruleset test\" 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\" platform=\"mixedcontent\" f=\"UN.org.xml\"><rule from=\"^http://(?:www\\.)?un\\.org/\" to=\"https://www.un.org/\"/></ruleset>", "<ruleset name=\"UNC.edu (mixed content)\" platform=\"mixedcontent\" 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=\"UNFPA.org\" default_off=\"failed ruleset test\" f=\"UNFPA.org.xml\"><rule from=\"^http://www\\.unfpa\\.org/\" to=\"https://www.unfpa.org/\"/><rule from=\"^http://unfpa\\.org/\" to=\"https://www.unfpa.org/\"/></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=\"UNIDO.org\" f=\"UNIDO.org.xml\"><rule from=\"^http://www\\.unido\\.org/\" to=\"https://www.unido.org/\"/></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\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"UNODC.org.xml\"><rule from=\"^http://www\\.unodc\\.org/\" to=\"https://www.unodc.org/\"/><rule from=\"^http://unodc\\.org/\" to=\"https://www.unodc.org/\"/></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\" f=\"UOL.com.br-falsemixed.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"UOL.com.br (partial)\" 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&amp;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 &#268;esk&#225; republika s.r.o.\" f=\"UPC.cz.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"UPC.ie (partial)\" f=\"UPC.ie.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"UPC.nl (partial)\" 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\" 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=\"UPR.edu (self-signed)\" default_off=\"expired, self-signed\" f=\"UPR.edu-problematic.xml\"><securecookie host=\"^(?:webmail\\.)?upr\\.edu$\" name=\".+\"/><rule from=\"^http://((?:mail|webmail|www)\\.)?hpcf\\.upr\\.edu/\" to=\"https://$1hpcf.upr.edu/\"/></ruleset>", "<ruleset name=\"UPS.com (partial)\" default_off=\"failed ruleset test\" 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=\"&#218;&#345;ad pr&#367;myslov&#233;ho vlastnictv&#237;\" 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)\" 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=\"^questions\\.cms\\.gov$\" name=\".*\"/><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://(?:www\\.)?cms\\.gov/\" to=\"https://www.cms.gov/\"/><rule from=\"^http://assets\\.cms\\.gov/\" to=\"https://assets.cms.gov/\"/><rule from=\"^http://questions\\.cms\\.gov/\" to=\"https://questions.cms.gov/\"/><rule from=\"^http://(safeharbor|www)\\.export\\.gov/\" to=\"https://$1.export.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/\"/><rule from=\"^http://(www\\.)?uspsoig\\.gov/\" to=\"https://$1uspsoig.gov/\"/><rule from=\"^http://wwws\\.whitehouse\\.gov/\" to=\"https://wwws.whitehouse.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)\" f=\"USA.gov.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"USAJobs.gov\" f=\"USAJobs.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)\" 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\" 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\" default_off=\"failed ruleset test\" f=\"USE_OTR_Project.org.xml\"><rule from=\"^http://(?:www\\.)?useotrproject\\.org/\" to=\"https://www.useotrproject.org/\"/></ruleset>", "<ruleset name=\"USF CA.edu (partial)\" default_off=\"failed ruleset test\" 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://mail\\.usp\\.br/\" to=\"https://mail.usp.br/\"/></ruleset>", "<ruleset name=\"USPS.com\" default_off=\"failed ruleset test\" 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. Bank Client Advocacy\" f=\"US_Bank_Client_Advocacy.xml\"><securecookie host=\"^(?:www)?\\.usbclientadvocacy\\.com$\" name=\".+\"/><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)\" f=\"US_Courts.gov.xml\"><rule from=\"^http://cdn\\.ca9\\.uscourts\\.gov/\" to=\"https://d3bsvxk93brmko.cloudfront.net/\"/></ruleset>", "<ruleset name=\"US Currency.gov\" f=\"US_Currency.gov.xml\"><securecookie host=\"^\\w\" name=\".\"/><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 Mint.gov\" f=\"US_Mint.gov.xml\"><securecookie host=\"^(?:catalog|(?:preview|www)\\.catalog|www)\\.usmint\\.gov$\" name=\".+\"/><rule from=\"^http://usmint\\.gov/\" to=\"https://www.usmint.gov/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"US Mission.gov (partial)\" f=\"US_Mission.gov.xml\"><securecookie host=\"^geneva\\.usmission\\.gov$\" name=\".+\"/><rule from=\"^http://geneva\\.usmission\\.gov/\" to=\"https://geneva.usmission.gov/\"/></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=\"U.S. State Department (partial)\" default_off=\"mismatched\" f=\"US_State_Department.xml\"><rule from=\"^http://(?:www\\.)?state\\.gov/\" to=\"https://www.state.gov/\"/><rule from=\"^http://oig\\.state\\.gov/\" to=\"https://oig.state.gov/\"/></ruleset>", "<ruleset name=\"US UK ITA.org\" f=\"US_UK_ITA.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"UT.ee (partial)\" 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)\" default_off=\"failed ruleset test\" 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\" 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)\" 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)\" 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)\" default_off=\"failed ruleset test\" 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\" 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=\"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\" f=\"UberMedia.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"UberTags (mismatches)\" default_off=\"mismatch\" 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 Technologies (partial)\" f=\"Uber_Technologies.xml\"><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\" 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\" 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=\"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\" 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 (CAcert)\" platform=\"cacert\" f=\"Ubuntu-NL.org-cacert.xml\"><exclusion pattern=\"^http://www\\.ubuntu-nl\\.org/+(?!modules/|sites/)\"/><rule from=\"^http://ubuntu-nl\\.org/\" to=\"https://www.ubuntu-nl.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ubuntu-NL.org (partial)\" f=\"Ubuntu-NL.org.xml\"><securecookie host=\"^\\.ubuntu-nl\\.org$\" name=\"^PHPSESSID$\"/><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)\" 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\" f=\"UbuntuUsers.de.xml\"><securecookie host=\"^(?:.*\\.)?ubuntuusers\\.de$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ubuntu Forums.org (false MCB)\" platform=\"mixedcontent\" f=\"Ubuntu_Forums.org.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ubuntu Linux.jp\" 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=\"ucommand.com\" default_off=\"failed ruleset test\" f=\"Ucommand.com.xml\"><securecookie host=\"^www\\.ucommand\\.com$\" name=\".+\"/><rule from=\"^http://www\\.ucommand\\.com/\" to=\"https://www.ucommand.com/\"/></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=\"mismatch\" f=\"Udacity.com-mismatches.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Udacity.com (partial)\" 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\" platform=\"firefox\" default_off=\"failed ruleset test\" f=\"Udistrital.xml\"><rule from=\"^http://(?:www\\.)?udistrital\\.edu\\.co/\" to=\"https://udistrital.edu.co/\"/></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\" default_off=\"expired, mismatched, self-signed\" f=\"Uformia.xml\"><securecookie host=\"^uformia\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?uformia\\.com/\" to=\"https://uformia.com/\"/></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\" default_off=\"self-signed\" f=\"Ugly_Mugs.ie.xml\"><securecookie host=\"^(?:www\\.)?uglymugs\\.ie$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?uglymugs\\.ie/\" to=\"https://uglymugs.ie/\"/></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\" 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)\" default_off=\"expired\" f=\"Ukeer.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ukr.net\" default_off=\"failed ruleset test\" f=\"Ukr.net.xml\"><rule from=\"^http://((?:counter|mail|www)\\.)?ukr\\.net/\" to=\"https://$1ukr.net/\"/></ruleset>", "<ruleset name=\"Ukrnames.com\" 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=\"Ultimate Boot CD.com (partial)\" 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=\"UltraTools.com\" 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=\"Ultra HDTV (problematic)\" default_off=\"mismatched\" f=\"Ultra_HDTV-problematic.xml\"><rule from=\"^http://(?:www\\.)?ultrahdtv\\.net/\" to=\"https://ultrahdtv.net/\"/></ruleset>", "<ruleset name=\"Ultra HDTV (partial)\" default_off=\"failed ruleset test\" f=\"Ultra_HDTV.xml\"><rule from=\"^http://cdn\\.ultrahdtv\\.net/\" to=\"https://dcmk2gfkvro5j.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Ultrabug.fr (false MCB)\" default_off=\"mismatched\" platform=\"mixedcontent\" f=\"Ultrabug.xml\"><securecookie host=\"^(?:www\\.)?ultrabug\\.fr$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ultrasurf.us\" default_off=\"failed ruleset test\" f=\"Ultrasurf.us.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ulule\" platform=\"mixedcontent\" f=\"Ulule.xml\"><rule from=\"^http://(www\\.)?ulule\\.com/\" to=\"https://$1ulule.com/\"/><rule from=\"^http://(fr|de|es|it|br)\\.ulule\\.com/\" to=\"https://$1.ulule.com/\"/></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\" 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\" platform=\"cacert\" f=\"Umea_Hackerspace.se.xml\"><securecookie host=\"^social\\.umeahackerspace\\.se$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ume&#229; 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=\"unPAC\" default_off=\"connection 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\" 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://start\\.unblu\\.com/\" to=\"https://start.unblu.com/\"/></ruleset>", "<ruleset name=\"Unbounce.com (partial)\" f=\"Unbounce.xml\"><exclusion pattern=\"^http://(?:www\\.)?unbounce\\.com/(?!\\?mcsf_action=main_css|photos/|wp-content/)\"/><securecookie host=\"^go\\.unbounce\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?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=\"Underground Gamer\" default_off=\"failed ruleset test\" f=\"Undergroundgamer.xml\"><rule from=\"^http://(?:www\\.)?underground-gamer\\.com/\" to=\"https://www.underground-gamer.com/\"/></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=\"Underwear Expert (partial)\" f=\"Underwear_Expert.xml\"><rule from=\"^http://cdn\\.underwearexpert\\.com/\" to=\"https://d2szvuirvbmbdl.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Uneddit\" 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\" 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\" default_off=\"failed ruleset test\" 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-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\" default_off=\"failed ruleset test\" 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=\"Uni Leoben.ac.at (partial)\" default_off=\"failed ruleset test\" f=\"Uni_Leoben.ac.at.xml\"><rule from=\"^http://(?:www\\.)?unileoben\\.ac\\.at/\" to=\"https://www.unileoben.ac.at/\"/><rule from=\"^http://(online|usi|usionline)\\.unileoben\\.ac\\.at/\" to=\"https://$1.unileoben.ac.at/\"/></ruleset>", "<ruleset name=\"Unibet.com.au\" 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=\"Unicef USA.org (partial)\" f=\"Unicef_USA.org.xml\"><exclusion pattern=\"^http://inspiredgifts\\.unicefusa\\.org/+(?!cart(?:$|[?/])|favicon\\.ico|node/|sites/)\"/><exclusion pattern=\"^http://www\\.unicefusa\\.org/+(?!(?:donate|user)(?:$|[?/])|favicon\\.ico|form/|sites/)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Unicom (partial)\" f=\"Unicom.xml\"><rule from=\"^http://totalrecall\\.switchingon\\.com/\" to=\"https://totalrecall.switchingon.com/\"/></ruleset>", "<ruleset name=\"Unified Social.com (partial)\" f=\"Unified_Social.com.xml\"><securecookie host=\"^login\\.unifiedsocial\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"unifiedtracking.com\" 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=\"mismatch\" 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)\" f=\"Uninett.xml\"><securecookie host=\"^(?:\\.ansatt|\\.?bildebase|\\.?eureka|nav|openwiki|\\.rt|surveytest|\\.(?:test\\.)?tjenester|\\.www)\\.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://((?:ansatt|bildebase|ca|cert\\.|www\\.dike|disco|drupal|eureka|metanav|nav|openwiki|(?:api|loggregator|uaa)\\.paas|rt|surveytest|(?:test\\.)?tjenester|www3?|www-ecampus|www-feide)\\.)?uninett\\.no/\" to=\"https://$1uninett.no/\"/></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=\"UniqueOffersSeychelles\" default_off=\"expired\" f=\"UniqueOffersSeychelles.xml\"><securecookie host=\"^(?:.*\\.)?uniqueoffersghana\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?uniqueoffersghana\\.com/\" to=\"https://uniqueoffersghana.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=\"^uniregistry\\.com$\" 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=\"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=\"mismatch\" 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)\" 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=\"United States Nuclear Regulatory Commission\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"United-States-Nuclear-Regulatory-Commission.xml\"><rule from=\"^http://(?:forms\\.|www\\.)?nrc\\.gov/\" to=\"https://forms.nrc.gov/\"/></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)\" f=\"Univ-Montp3.fr.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Univ-SMB.fr\" f=\"Univ-SMB.fr.xml\"><rule from=\"^http://www\\.univ-smb\\.fr/\" to=\"https://www.univ-smb.fr/\"/></ruleset>", "<ruleset name=\"Univention.de\" f=\"Univention.de.xml\"><securecookie host=\"^www\\.univention\\.de$\" name=\".+\"/><rule from=\"^http://piwik\\.univention\\.de/\" to=\"https://www.piwik.univention.de/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Univers-Libre.net\" default_off=\"expired, missing certificate chain\" platform=\"cacert\" 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&#233; Laval (partial)\" 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&#233; 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)\" 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)\" default_off=\"Additional testing recommended\" f=\"University-of-Alaska-Anchorage.xml\"><securecookie host=\"^(?:classes|coe|edit|elive|hosting|kb|longdistance|me|owa|student|technology|techsupport|webaccess|www)\\.uaa\\.alaska\\.edu$\" name=\".+\"/><exclusion pattern=\"^http://www\\.uaa\\.alaska\\.edu/map/(?:CampusMap\\.swf|interactive\\.cfm)\"/><rule from=\"^http://(classes|coe|edit|elive|kb|longdistance|me|owa|student|technology|techsupport|webaccess|www)\\.uaa\\.alaska\\.edu/\" to=\"https://$1.uaa.alaska.edu/\"/><rule from=\"^http://edit\\.www\\.uaa\\.alaska\\.edu/\" to=\"https://edit.uaa.alaska.edu/\"/><rule from=\"^http://hosting\\.uaa\\.alaska\\.edu/?$\" to=\"https://www.uaa.alaska.edu/informationtechnologyservices/\"/><rule from=\"^http://hosting\\.uaa\\.alaska\\.edu/(.+)\" to=\"https://hosting.uaa.alaska.edu/$1\"/><rule from=\"^http://moodle\\.uaa\\.alaska\\.edu(?:$|/.*)\" to=\"https://www.uaa.alaska.edu/classes/facultyresources/\"/><rule from=\"^http://womens\\.uaa\\.alaska\\.edu(?:$|/.*)\" to=\"https://www.uaa.alaska.edu/womensstudies/\"/><rule from=\"^https://www\\.uaa\\.alaska\\.edu/map/interactive\\.cfm\" to=\"http://www.uaa.alaska.edu/map/interactive.cfm\" downgrade=\"1\"/></ruleset>", "<ruleset name=\"University of Alaska Jobs (uakjobs.com)\" f=\"University-of-Alaska-Jobs.xml\"><securecookie host=\"^(?:www\\.)?uakjobs\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?uakjobs\\.com/\" to=\"https://www.uakjobs.com/\"/></ruleset>", "<ruleset name=\"University of Alaska (partial)\" platform=\"mixedcontent\" 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=\"mismatch\" 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)\" 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)\" 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=\"UChicago.edu (self-signed)\" default_off=\"self-signed\" f=\"University-of-Chicago-self-signed.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"UChicago.edu (partial)\" f=\"University-of-Chicago.xml\"><securecookie host=\".*\\.uchicago\\.edu$\" name=\".*\"/><rule from=\"^http://(ci\\.|proxy\\.)?uchicago\\.edu/\" to=\"https://www.$1uchicago.edu/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Colorado.edu (partial)\" default_off=\"failed ruleset test\" 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)\" 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)\" default_off=\"failed ruleset test\" 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)\" 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)\" 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)\" 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=&amp;MRP=0&amp;PROJECTID=1&amp;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=\"mismatch\" 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\"><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)\" 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)\" f=\"University-of-Ottawa.xml\"><rule from=\"^http://web5\\.uottawa\\.ca/\" to=\"https://web5.uottawa.ca/\"/></ruleset>", "<ruleset name=\"Ox.ac.uk (partial)\" 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-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=\"mismatch\" 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=\"mismatch\" 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)\" 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)\" default_off=\"failed ruleset test\" f=\"University-of-Strathclyde.xml\"><rule from=\"^http://www\\.strath\\.ac\\.uk/\" to=\"https://www.strath.ac.uk/\"/></ruleset>", "<ruleset name=\"Uni-Stuttgart.edu (self-signed)\" default_off=\"self-signed\" f=\"University-of-Stuttgart-self-signed.xml\"><securecookie host=\"^www\\.icp\\.uni-stuttgart\\.de$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?icp\\.uni-stuttgart\\.de/$\" to=\"https://www.icp.uni-stuttgart.de/~icp/\"/><rule from=\"^http://(?:www\\.)?icp\\.uni-stuttgart\\.de/\" to=\"https://www.icp.uni-stuttgart.de/\"/><rule from=\"^http://(mobox|fex\\.rus)\\.uni-stuttgart\\.de/\" to=\"https://$1.uni-stuttgart.de/\"/><rule from=\"^http://www\\.stud\\.uni-stuttgart\\.de/(css|img)/\" to=\"https://www.stud.uni-stuttgart.de/$1/\"/></ruleset>", "<ruleset name=\"Uni-Stuttgart.de (partial)\" f=\"University-of-Stuttgart.xml\"><securecookie host=\"^\\.uni-stuttgart\\.de$\" name=\"^BALANCEID$\"/><rule from=\"^http://(cert\\.)?uni-stuttgart\\.de/\" to=\"https://$1uni-stuttgart.de/\"/><rule from=\"^http://www\\.uni-stuttgart\\.de/(favicon\\.ico|piwik/|res/)\" to=\"https://www.uni-stuttgart.de/$1\"/><rule from=\"^http://www\\.rus\\.uni-stuttgart\\.de/(css|img)/\" to=\"https://www.rus.uni-stuttgart.de/$1/\"/></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)\" 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 (problematic)\" default_off=\"mismatched, self-signed\" f=\"University-of-Washington-self-signed.xml\"><rule from=\"^http:\" to=\"https:\"/></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://www\\.jsis\\.washington\\.edu/\" to=\"https://jsis.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://static\\.weboffice\\.uwa\\.edu\\.au/\" to=\"https://static.weboffice.uwa.edu.au/\"/></ruleset>", "<ruleset name=\"University of Wisconsin&#8211;Milwaukee (partial)\" 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/\" to=\"https://www.ucl.ac.uk/\"/></ruleset>", "<ruleset name=\"University Computer Club (partial)\" f=\"University_Computer_Club.xml\"><rule from=\"^http://matt\\.ucc\\.asn\\.au/\" to=\"https://matt.ucc.asn.au/\"/></ruleset>", "<ruleset name=\"Buffalo.edu (partial)\" f=\"University_at_Buffalo.xml\"><exclusion pattern=\"^http://(?:www\\.)?student-affairs\\.buffalo\\.edu/+(?!$|\\?|(?:\\w+/)?(?:images|style)/|genemail(?:$|\\?))\"/><securecookie host=\".\" name=\".\"/><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)\" 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)\" 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://news\\.uga\\.edu/\" to=\"https://news.uga.edu/\"/></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)\" 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)\" 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&amp;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=\"University of Mainz (false MCB)\" platform=\"mixedcontent\" f=\"University_of_Mainz-falsemixed.xml\"><rule from=\"^http://www(\\.sfv|\\.sport|\\.zdv)?\\.uni-mainz\\.de/(?!\\w+\\.css|\\w+\\.js|Bilder_(?:allgemein|zentral)/|config/|favicon\\.ico|Illustrationen/|pix/)\" to=\"https://www$1.uni-mainz.de/\"/></ruleset>", "<ruleset name=\"University of Mainz (problematic)\" default_off=\"mismatched\" platform=\"mixedcontent\" f=\"University_of_Mainz-problematic.xml\"><rule from=\"^http://www\\.e-learning\\.uni-mainz\\.de/\" to=\"https://www.e-learning.uni-mainz.de/\"/></ruleset>", "<ruleset name=\"University of Mainz (partial)\" f=\"University_of_Mainz.xml\"><exclusion pattern=\"^http://www(?:\\.sfv|\\.sport|\\.zdv)?\\.uni-mainz\\.de/(?!\\w+\\.css|\\w+\\.js|Bilder_(?:allgemein|zentral)/|config/|favicon\\.ico|Illustrationen/|pix/)\"/><exclusion pattern=\"^http://(?:lokalsystem(?:-test)?|pica[78]1)\\.ub\\.uni-mainz\\.de/(?!cgi-bin/|OPC-IMAGES(?:-NEW)?/)\"/><securecookie host=\"^(?:ilias|opac(?:-test)?\\.ub|pica[78]\\.ub)\\.uni-mainz\\.de$\" name=\".+\"/><rule from=\"^http://(ilias|www\\.(?:pruefungsamt\\.jura|sfv|staff|students)|(?:(?:lokalsystem|opac)(?:-test)?|pica[78]1?)\\.ub|pa\\.wiwi|www|(?:webstats|www|wwwvh)\\.zdv)\\.uni-mainz\\.de/\" to=\"https://$1.uni-mainz.de/\"/></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)\" 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\" f=\"University_of_Oslo.xml\"><rule from=\"^http://((?:(?:www\\.)?(?:apollon|mn|ub)|heim\\.ifi|studweb|www)\\.)?uio\\.no/\" to=\"https://$1uio.no/\"/><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/\"/></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 Puerto Rico (partial)\" default_off=\"failed ruleset test\" f=\"University_of_Puerto_Rico.xml\"><securecookie host=\"^(?:www\\.)?laeditorialupr\\.com$\" name=\".+\"/><securecookie host=\"^.+\\.upr\\.edu$\" name=\".+\"/><rule from=\"^http://(www\\.)?laeditorialupr\\.com/\" to=\"https://$1laeditorialupr.com/\"/><rule from=\"^http://(fondodotal|patsiprod)\\.upr\\.edu/\" to=\"https://$1.upr.edu/\"/></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\" default_off=\"failed ruleset test\" 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=\"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&#252;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&#252;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\" 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://www\\.york\\.ac\\.uk/\" to=\"https://www.york.ac.uk/\"/></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=\"Unixmen.com\" f=\"Unixmen.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"UNIZAR.es\" 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=\"UnlimitedHost (partial)\" default_off=\"failed ruleset test\" f=\"UnlimitedHost.xml\"><rule from=\"^http://apollo\\.unlimitedhost\\.asia/\" to=\"https://apollo.unlimitedhost.asia/\"/></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\" 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=\"^\\.unop\\.uk$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"UnrealIRCD.org\" f=\"UnrealIRCD.org.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=\"connection refused\" f=\"Unreality_TV.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"unrestrict.li\" 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\" default_off=\"mismatched\" f=\"Unsearcher.org.xml\"><securecookie host=\"^unsearcher\\.org$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?unsearcher\\.org/\" to=\"https://unsearcher.org/\"/></ruleset>", "<ruleset name=\"Unseen.is (partial)\" f=\"Unseen.is.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Untangle.com (partial)\" 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://api\\.unthem\\.com/\" to=\"https://api.unthem.com/\"/></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:\" 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=\"Up1.ca\" f=\"Up1.ca.xml\"><securecookie host=\"^\\.up1\\.ca$\" name=\".+\"/><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\"><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=\"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=\"Uplink Labs.net\" f=\"Uplink_Labs.net.xml\"><rule from=\"^http://uplinklabs\\.net/\" to=\"https://www.uplinklabs.net/\"/><rule from=\"^http:\" to=\"https:\"/></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\"><securecookie host=\"^uploaded\\.net$\" 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=\"UppSite.com\" default_off=\"default page\" f=\"UppSite.xml\"><securecookie host=\"^(?:www\\.)?uppsite\\.com$\" 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=\"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\" 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\" f=\"Url2Png.xml\"><rule from=\"^http://url2png\\.com/\" to=\"https://www.url2png.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"urlQuery\" f=\"UrlQuery.xml\"><securecookie host=\"^urlquery\\.net$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?urlquery\\.net/\" to=\"https://urlquery.net/\"/></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\" f=\"Us-cert.gov.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"US Cyber Challenge\" default_off=\"Bad Cert\" f=\"Us_Cyber_Challenge.xml\"><rule from=\"^http://(?:www\\.)?uscyberchallenge\\.org/\" to=\"https://www.uscyberchallenge.org/\"/></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=\"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=\"UseResponse.com (false MCB)\" platform=\"mixedcontent\" f=\"UseResponse.com-falsemixed.xml\"><securecookie host=\"^(?:www)?\\.useresponse\\.com$\" name=\".+\"/><rule from=\"^http://www\\.useresponse\\.com/\" to=\"https://www.useresponse.com/\"/></ruleset>", "<ruleset name=\"UseResponse.com (partial)\" f=\"UseResponse.com.xml\"><exclusion pattern=\"^http://www\\.useresponse\\.com/+(?!favicon\\.ico|public/)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Use SSH 001.com\" 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.xml\"><securecookie host=\"^(?:blog\\.|feedback\\.|www\\.)?userecho\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"UserScape\" f=\"UserScape.xml\"><securecookie host=\"^\\.userscape\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"UserScripts.org\" default_off=\"failed ruleset test\" f=\"UserScripts.xml\"><exclusion pattern=\"^http://(?:www\\.)?userscripts\\.org/scripts/source/\"/><rule from=\"^http://www\\.userscripts\\.org/\" to=\"https://userscripts.org/\"/><rule from=\"^http://userscripts\\.org/\" to=\"https://userscripts.org/\"/></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\" 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\" f=\"Userscontent.net.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 (partial)\" f=\"Uservoice.xml\"><exclusion pattern=\"^http://(?:blog|email|developer)\\.uservoice\\.com\"/><securecookie host=\"^.*\\.uservoice\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?uservoice\\.com/images/\" to=\"https://cdn.uservoice.com/images/\"/><rule from=\"^http://(?!www\\.)(\\w+)\\.uservoice\\.com/\" to=\"https://$1.uservoice.com/\"/></ruleset>", "<ruleset name=\"usesthis.com\" 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=\"mismatch\" 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=\"utfs.org (partial)\" platform=\"cacert\" 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=\"connection dropped\" 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=\"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\" 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=\"v2ex.com (partial)\" f=\"V2ex.xml\"><securecookie host=\"^(?:workspace\\.|www\\.)?v2ex\\.com$\" name=\".+\"/><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://origin\\.varcentral\\.com\\.au/\" to=\"https://origin.varcentral.com.au/\"/></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\" 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\" 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)\" f=\"VCAB.com.xml\"><rule from=\"^http://secure\\.vcab\\.com/\" to=\"https://secure.vcab.com/\"/></ruleset>", "<ruleset name=\"VCD.org\" f=\"VCD.org.xml\"><securecookie host=\"^www\\.vcd\\.org$\" name=\".+\"/><securecookie host=\"^mobilitaet2050\\.vcd\\.org\" name=\".+\"/><rule from=\"^https?://www\\.60plus\\.vcd\\.org/\" to=\"https://60plus.vcd.org/\"/><rule from=\"^https?://www\\.lastenrad\\.vcd\\.org/\" to=\"https://lastenrad.vcd.org/\"/><rule from=\"^https?://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\"><securecookie host=\"^\\.?vdownloader\\.com$\" name=\".*\"/><rule from=\"^http://(www\\.)?vdownloader\\.(?:com|es)/\" to=\"https://$1vdownloader.com/\"/></ruleset>", "<ruleset name=\"VEGAS INC\" default_off=\"expired, mismatched, self-signed\" f=\"VEGAS_INC.xml\"><rule from=\"^http://(?:www\\.)?vegasinc\\.com/\" to=\"https://www.vegasinc.com/\"/><rule from=\"^http://(?:asset|media|photo)\\.vegasinc\\.com/\" to=\"https://asset.vegasinc.com/\"/></ruleset>", "<ruleset name=\"VEVO\" f=\"VEVO.xml\"><rule from=\"^http://(?:www\\.)?vevo\\.com/\" to=\"https://www.vevo.com/\"/><rule from=\"^http://(?:img\\.|s)?cache\\.vevo\\.com/\" to=\"https://scache.vevo.com/\"/></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=\"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 (partial, old)\" default_off=\"possibly superseded\" f=\"VK-old.xml\"><securecookie host=\"^.*\\.vk\\.com$\" name=\".*\"/><rule from=\"^http://p(p|s)\\.userapi\\.com/\" to=\"https://p$1.userapi.com/\"/><rule from=\"^http://st0\\.userapi\\.com/\" to=\"https://vk.com/\"/><rule from=\"^http://(?:www\\.)?userapi\\.com/\" to=\"https://vk.com/\"/><rule from=\"^http://((?:login|m|www)\\.)?vk\\.com/\" to=\"https://$1vk.com/\"/><rule from=\"^http://(www\\.)?vkontakte\\.ru/\" to=\"https://$1vkontakte.ru/\"/></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=\"VMware.com (partial)\" f=\"VMware.xml\"><exclusion pattern=\"^http://(?:forum|info|ir|kb|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=\"VOICE Daily Deals.com\" f=\"VOICE-Daily-Deals.xml\"><securecookie host=\".*\\.voicedailydeals\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"VPAC.org\" 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\" 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\" 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=\"VPNSearch.net\" default_off=\"failed ruleset test\" f=\"VPNSearch.net.xml\"><securecookie host=\"^(?:w*\\.)?vpnsearch\\.net$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?vpnsearch\\.net/\" to=\"https://vpnsearch.net/\"/></ruleset>", "<ruleset name=\"VPNSecure.me\" f=\"VPNSecure.me.xml\"><securecookie host=\"^(?:\\.|www\\.)?vpnsecure\\.me$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"VPNService.ru\" default_off=\"failed ruleset test\" f=\"VPNService.ru.xml\"><securecookie host=\"^\\.vpnservice\\.ru$\" 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\" 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\" default_off=\"failed ruleset test\" 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=\"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\" 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\" f=\"VTunnel.xml\"><securecookie host=\"^(?:.*\\.)?vtunnel\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"VU.nl (partial)\" f=\"VU.nl.xml\"><securecookie host=\"^www\\.(?:cs|few)\\.vu\\.nl$\" name=\".+\"/><rule from=\"^http://(www\\.)?vu\\.nl/+(?=\\w\\w/css/|\\w\\w/[Ii]mages/)\" to=\"https://$1vu.nl/\"/><rule from=\"^http://(?:www\\.)?(cs|falw|fbw|few|godgeleerdheid|let|psy)\\.vu\\.nl/\" to=\"https://www.$1.vu.nl/\"/><rule from=\"^http://(?:www\\.)?fpp\\.vu\\.nl/+(?=$|\\?)\" to=\"https://www.psy.vu.nl/\"/><rule from=\"^http://vunet\\.vu\\.nl/\" to=\"https://vunet.vu.nl/\"/></ruleset>", "<ruleset name=\"VUTBr.cz (partial)\" 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=\"VacationRoost\" 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=\"Vagrantup.com (partial)\" f=\"Vagrantup.com.xml\"><securecookie host=\"^\\.vagrantup\\.com$\" name=\".+\"/><rule from=\"^http://vagrantup\\.com/\" to=\"https://www.vagrantup.com/\"/><rule from=\"^http://downloads\\.vagrantup\\.com/\" to=\"https://vagrant-downloads.herokuapp.com/\"/><rule from=\"^http://files\\.vagrantup\\.com/\" to=\"https://s3.amazonaws.com/files.vagrantup.com/\"/><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 CU.org\" 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\" f=\"Valtion-taloudellinen-tutkimuskeskus.xml\"><securecookie host=\"^(?:www\\.)?vatt\\.fi$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Valtiontalouden tarkastusvirasto\" default_off=\"failed ruleset test\" 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\" 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)\" 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=\"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=\"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)\" default_off=\"failed ruleset test\" f=\"Vanco.co.uk.xml\"><securecookie host=\"^o-zone\\.vanco\\.co\\.uk$\" name=\".+\"/><rule from=\"^http://o-zone\\.vanco\\.co\\.uk/\" to=\"https://o-zone.vanco.co.uk/\"/></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)\" 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.xml\"><rule from=\"^http://([^/:@\\.]+)\\.vanillamastercard\\.com/\" to=\"https://$1.vanillamastercard.com/\"/></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=\"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)\" 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://www\\.varusteleka\\.fi/\" to=\"https://www.varusteleka.fi/\"/></ruleset>", "<ruleset name=\"Vast (partial)\" 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\" f=\"Vast_Interactive.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Vates.fr\" f=\"Vates.fr.xml\"><securecookie host=\"^piwik\\.vates\\.fr$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Vault.cca.edu\" default_off=\"failed ruleset test\" f=\"Vault.cca.edu.xml\"><rule from=\"^http://vault\\.cca\\.edu/\" to=\"https://vault.cca.edu/\"/></ruleset>", "<ruleset name=\"Vault project.io\" f=\"Vault_project.io.xml\"><securecookie host=\"^\\.vaultproject\\.io$\" 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=\"vc.ru\" 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\" 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\" 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\" 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=\"Vegas Deal Hunter.com\" default_off=\"connection refused\" f=\"Vegas_Deal_Hunter.xml\"><securecookie host=\"^\\.vegasdealhunter\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Vegas Partner Lounge\" 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=\"Veil-Framework.com\" f=\"Veil-Framework.com.xml\"><securecookie host=\"^(?:www\\.)?veil-framework\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"vektorbank.com\" default_off=\"failed ruleset test\" f=\"Vektorbank.com.xml\"><securecookie host=\"^\\.vektorbank\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Velaro.com (mismatches)\" default_off=\"mismatch\" 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)\" default_off=\"failed ruleset test\" 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=\"Velum Media (partial)\" default_off=\"expired, mismatched, self-signed\" f=\"Velum-Media.xml\"><securecookie host=\"^www\\.smallnetbuilder\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?smallnetbuilder\\.com/\" to=\"https://www.smallnetbuilder.com/\"/></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=\"mismatch\" 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)\" 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://((?:developer|help|www)\\.)?venmo\\.com/\" to=\"https://$1venmo.com/\"/></ruleset>", "<ruleset name=\"ventivmedia.com\" f=\"Ventivmedia.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ventoso.org\" default_off=\"mismatch\" 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\" 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\" 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\" 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)\" f=\"Verisign.xml\"><exclusion pattern=\"^http://verisigntransition101\\.verisign\\.[\\w.]{2,6}/\"/><exclusion pattern=\"^http://[\\w-]*ocsp\\.verisign\\.com\"/><securecookie host=\"^(?:.*\\.)?verisign(?:inc)?\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?verisign\\.([\\w.]{2,6})/\" to=\"https://www.verisign.$1/\"/><rule from=\"^http://([\\w-]+)\\.verisign\\.([\\w.]{2,6})/\" to=\"https://$1.verisign.$2/\"/><rule from=\"^http://knowledge\\.verisign-grs\\.com/\" to=\"https://knowledge.verisign-grs.com/\"/><rule from=\"^http://(?:www\\.)?verisign(inc|-japan-domain)\\.com/\" to=\"https://www.verisign$1.com/\"/></ruleset>", "<ruleset name=\"Verisign Labs.com (partial)\" 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 (partial)\" f=\"Verizon.xml\"><exclusion pattern=\"^http://collaborateext(?:stg)?\\.verizon\\.com/(?:$|\\?|aims/main/ext_index\\.jsp)\"/><exclusion pattern=\"^http://www22\\.verizon\\.com/(?:Foryourhome/MyAccount/Unprotected|investor/DocServlet|secure/pages/viewbill)/\"/><exclusion pattern=\"^http://www98\\.verizon\\.com/(?:$|\\?)\"/><exclusion pattern=\"^http://business\\.verizon\\.net/.*SMBPortalWeb/login$\"/><securecookie host=\"^(?:enterprisecenter|espanol|forums|responsibility|signin|smallbusiness|webmail)\\.verizon\\.com$\" name=\".+\"/><securecookie host=\"^(?:www\\.)?verizon\\.net$\" name=\".+\"/><rule from=\"^http://(?:www(?:22)?\\.)?verizon\\.com/(?:$|\\?.*)\" to=\"https://www22.verizon.com/home/verizonglobalhome/ghp_landing.aspx\"/><rule from=\"^http://(?:www(22|98)?\\.)?verizon\\.com/\" to=\"https://www$1.verizon.com/\"/><rule from=\"^http://(auth|collaborateext(?:stg)?|enterprisecenter|entertainmentlogin|espanol|forums|responsibility|smallbusiness|signon|webmail)\\.verizon\\.com/\" to=\"https://$1.verizon.com/\"/><rule from=\"^http://(?:www\\.)?verizon\\.net/\" to=\"https://www.verizon.net/\"/><rule from=\"^http://(static-)?business\\.verizon\\.net/\" to=\"https://$1business.verizon.net/\"/><rule from=\"^http://businessforums\\.verizon\\.net/html/\" to=\"https://forums.verizon.com/html/\"/><rule from=\"^http://(?:www\\.)?verizonbusiness\\.com/(gfx|support/myaccount|templates)/\" to=\"https://www.verizonbusiness.com/$1/\"/></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\" default_off=\"failed ruleset test\" 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\" default_off=\"failed ruleset test\" f=\"Versus-Technologies.xml\"><securecookie host=\"^(?:.*\\.)?vstech\\.net$\" name=\".*\"/><rule from=\"^http://(\\w+\\.)?vstech\\.net/\" to=\"https://$1vstech.net/\"/></ruleset>", "<ruleset name=\"Vertical Acuity (mismatches)\" default_off=\"mismatch\" f=\"Vertical-Acuity-mismatches.xml\"><rule from=\"^http://(?:www\\.)?verticalacuity\\.com/\" to=\"https://www.verticalacuity.com/\"/></ruleset>", "<ruleset name=\"Vertical Acuity (partial)\" default_off=\"failed ruleset test\" f=\"Vertical-Acuity.xml\"><rule from=\"^http://scripts\\.verticalacuity\\.com/\" to=\"https://d2frbsrahs9p5r.cloudfront.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://cts\\.vresp\\.com/\" to=\"https://cts.vresp.com/\"/></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\" default_off=\"failed ruleset test\" f=\"Vesica.xml\"><securecookie host=\"^vesica\\.ws$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Vesper Marine\" f=\"Vesper_Marine.xml\"><securecookie host=\"^\\.vespermarine\\.co(?:m\\.au|\\.nz|\\.uk)$\" name=\".+\"/><rule from=\"^http://(www\\.)?vespermarine\\.co(m\\.au|\\.nz|\\.uk)/\" to=\"https://$1vespermarine.co$2/\"/></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\" 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://secure\\.vexxhost\\.com/\" to=\"https://secure.vexxhost.com/\"/></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\" f=\"Viacom.xml\"><rule from=\"^http:\" to=\"https:\"/><exclusion pattern=\"http://api.mtvnn.com/v2/mrss\"/></ruleset>", "<ruleset name=\"Viaduct.io\" 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 (partial)\" f=\"Viber.xml\"><rule from=\"^http://(?:www\\.)?viber\\.com/\" to=\"https://www.viber.com/\"/><rule from=\"^http://(?:helpme|support)\\.viber\\.com/\" to=\"https://viber.kayako.com/\"/></ruleset>", "<ruleset name=\"Vibrant\" 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)\" 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=\"^\\.victorops\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Victorias Secret.com (partial)\" f=\"Victorias_Secret.xml\"><securecookie host=\"^(?:espanol|secure|\\.?www)?\\.victoriassecret\\.com$\" 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=\"^(?:www\\.)?victoriassecretcanada\\.ca$\" name=\".+\"/><rule from=\"^http://victoriassecretcanada\\.ca/\" to=\"https://www.victoriassecretcanada.ca/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Victorinox\" f=\"Victorinox.xml\"><rule from=\"^http://victorinox\\.com/\" to=\"https://www.victorinox.com/\"/><rule from=\"^http://(images|static|www)\\.victorinox\\.com/\" to=\"https://$1.victorinox.com/\"/></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=\"Vid.me\" f=\"Vid.me.xml\"><securecookie host=\"^\\.vid\\.me$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"VidStore (partial)\" f=\"VidStore.xml\"><securecookie host=\"^ads\\.vidstore\\.com$\" name=\".+\"/><rule from=\"^http://ads\\.vidstore\\.com/\" to=\"https://ads.vidstore.com/\"/></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=\"VideoBloom.com (partial)\" f=\"VideoBloom.com.xml\"><rule from=\"^http://my\\.videobloom\\.com/\" to=\"https://my.videobloom.com/\"/></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\" default_off=\"expired\" f=\"VideoGold.de.xml\"><securecookie host=\"^(?:www\\.)?videogold\\.de$\" 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 (partial)\" f=\"VideoLAN.xml\"><exclusion pattern=\"^http://(?:ganesh|rsync|stats)\\.videolan\\.org/(?!$)\"/><securecookie host=\".\" name=\".\"/><rule from=\"^http://(?:ganesh|rsync|stats)\\.videolan\\.org/$\" to=\"https://www.videolan.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"VideoPP.com (partial)\" default_off=\"failed ruleset test\" f=\"VideoPP.com.xml\"><securecookie host=\"^videopp\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?videopp\\.com/\" to=\"https://videopp.com/\"/></ruleset>", "<ruleset name=\"VideoPros\" default_off=\"expired\" f=\"VideoPros.xml\"><securecookie host=\"^(?:www\\.)?videopros\\.com$\" 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\" f=\"Videoemail.com.xml\"><securecookie host=\"^sc\\.videoemail\\.com$\" name=\".+\"/><rule from=\"^http://sc\\.videoemail\\.com/\" to=\"https://sc.videoemail.com/\"/></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\" f=\"Vidup.me-falsemixed.xml\"><securecookie host=\"^\\.vidup\\.me$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Vidup.me (partial)\" 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=\"mismatch\" f=\"Vildling.xml\"><securecookie host=\"^vidling\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?vidling\\.com/\" to=\"https://vidling.com/\"/></ruleset>", "<ruleset name=\"Villa Saint Exup&#233;ry (mismatches)\" default_off=\"mismatch\" f=\"Villa-Saint-Exupery-mismatches.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Villa Saint Exup&#233;ry (partial)\" f=\"Villa-Saint-Exupery.xml\"><securecookie host=\"^www\\.villahostels\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Villas.com\" f=\"Villas.com.xml\"><securecookie host=\"^(\\.[\\w\\-]+)?\\.villas\\.com$\" name=\".+\"/><rule from=\"^http://([\\w\\-]+\\.)?villas\\.com/\" to=\"https://$1villas.com/\"/><rule from=\"^http://([\\w\\-]+)\\.vcomstatic\\.com/\" to=\"https://$1.vcomstatic.com/\"/></ruleset>", "<ruleset name=\"Vimention.com (partial)\" default_off=\"failed ruleset test\" f=\"Vimention.com.xml\"><rule from=\"^http://(?:www\\.)?vimention\\.com/\" to=\"https://vimention.com/\"/><rule from=\"^http://(users|pictures|static-eu1|static)\\.vimention\\.com/\" to=\"https://$1.vimention.com/\"/><rule from=\"^http://(?:www\\.)?vimention\\.mobi/\" to=\"https://m.vimention.com/\"/></ruleset>", "<ruleset name=\"Vimeo\" f=\"Vimeo.xml\"><securecookie host=\"^\\.(?:player\\.)?vimeo\\.com$\" name=\"^__utm\\w$\"/><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\" 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\" 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=\"missing certificate chain\" platform=\"cacert\" f=\"Vinilox.eu.xml\"><securecookie host=\"^status\\.vinilox\\.eu$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Vinumeris.com\" f=\"Vinumeris.com.xml\"><securecookie host=\"^(?:www\\.)?vinumeris\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"vinuthomas.com (partial)\" default_off=\"mismatch\" f=\"Vinuthomas.com.xml\"><rule from=\"^http://blogs\\.vinuthomas\\.com/\" to=\"https://blogs.vinuthomas.com/\"/></ruleset>", "<ruleset name=\"Violet Darkling.com\" 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=\"VipVPN.com\" default_off=\"expired\" f=\"VipVPN.com.xml\"><securecookie host=\"^vipvpn\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?vipvpn\\.com/\" to=\"https://vipvpn.com/\"/></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=\"mismatch\" 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)\" 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 &amp; 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)\" 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\" 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\" 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\" 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\" 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 (partial)\" f=\"Visa.xml\"><rule from=\"^http://(?:www\\.)?visa\\.com/\" to=\"https://www.visa.com/\"/><rule from=\"^http://corporate\\.visa\\.com/_(cs|image)s/\" to=\"https://corporate.visa.com/_$1s/\"/><rule from=\"^http://usa\\.visa\\.com/(css|ext|img|merchants)/\" to=\"https://usa.visa.com/$1/\"/><rule from=\"^https://usa\\.visa\\.com/(?=about_visa/|download/|personal/|sitewide/)\" to=\"http://usa.visa.com/\" downgrade=\"1\"/></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 Europe.com (partial)\" f=\"Visa_Europe.xml\"><rule from=\"^http://(?:www\\.)?visaeurope\\.com/(?=(?:\\w\\w/idoc\\.ashx|\\w\\w/member_area\\.aspx|assets|favicon\\.ico|plugins|templates|WebResource\\.axd)(?:$|[?/]))\" to=\"https://www.visaeurope.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=\"Visaforchina.org\" f=\"Visaforchina.org.xml\"><rule from=\"^http://visaforchina\\.org/\" to=\"https://www.visaforchina.org/\"/><rule from=\"^http://([^/:@]+)?\\.visaforchina\\.org/\" to=\"https://$1.visaforchina.org/\"/></ruleset>", "<ruleset name=\"Visalia Times-Delta\" default_off=\"failed ruleset test\" 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=\"VisiStat.com (partial)\" default_off=\"failed ruleset test\" 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 (partial)\" default_off=\"failed ruleset test\" f=\"Visible-Measures.xml\"><securecookie host=\"^auth\\.visiblemeasures\\.com$\" name=\".+\"/><rule from=\"^http://(auth|cdn)\\.visiblemeasures\\.com/\" to=\"https://$1.visiblemeasures.com/\"/><rule from=\"^http://(?:od2|video\\.od)\\.visiblemeasures\\.com/\" to=\"https://video.od.visiblemeasures.com/\"/><rule from=\"^http://(?:www\\.)?viewablemedia\\.net/\" to=\"https://www.viewablemedia.net/\"/><rule from=\"^http://ad\\.viewablemedia\\.net/\" to=\"https://ad.viewablemedia.net/\"/></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\" f=\"Visible_Technologies.xml\"><securecookie host=\"^\\.visibletechnologies\\.com$\" name=\".+\"/><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\" f=\"Vision_Critical.com.xml\"><securecookie host=\"^\\.\" name=\"^_gat?$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Vision Critical Panels.com\" 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=\"Vispa (self-signed)\" default_off=\"self-signed\" f=\"Vispa-self-signed.xml\"><securecookie host=\"^webmail\\.vispa\\.com$\" name=\".*\"/><rule from=\"^http://webmail\\.vispa\\.com/\" to=\"https://webmail.vispa.com/\"/></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\" default_off=\"failed ruleset test\" 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\" default_off=\"failed ruleset test\" 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)\" 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=\"mismatch\" 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)\" default_off=\"failed ruleset test\" 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://portal\\.vitelity\\.net/\" to=\"https://portal.vitelity.net/\"/></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=\"^\\.vizury\\.com$\" name=\"^(?:OAID|r|vizid|vizp|vs)$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Vizzit.se\" f=\"Vizzit.se.xml\"><rule from=\"^http://www\\.vizzit\\.se/\" to=\"https://www.vizzit.se/\"/></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=\"vn5socks.com\" default_off=\"failed ruleset test\" f=\"Vn5socks.com.xml\"><securecookie host=\"^www\\.vn5socks\\.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=\"mismatched\" f=\"Vocaroo.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Vocativ.com (partial)\" 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)\" 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)\" 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\"><securecookie host=\"^(?:.+\\.)?vodafone\\.ie$\" name=\".+\"/><rule from=\"^http://vodafone\\.ie/\" to=\"https://www.vodafone.ie/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Vodafone.com (partial)\" 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)\" 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 (broken)\" default_off=\"breaks site, cert expired\" f=\"Voice.fi.xml\"><rule from=\"^http://voice\\.fi/\" to=\"https://voice.fi/\"/><rule from=\"^http://www\\.voice\\.fi/\" to=\"https://www.voice.fi/\"/></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=\"Volksverschl&#252;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&#178; (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\" default_off=\"failed ruleset test\" 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\" default_off=\"failed ruleset test\" 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\" 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\" 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\" f=\"Vox-CDN.com.xml\"><rule from=\"^http://cdn(\\d)\\.vox-cdn\\.com/\" to=\"https://cdn$1.vox-cdn.com/\"/></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 (false MCB)\" platform=\"mixedcontent\" f=\"Vox_Media.com.xml\"><exclusion pattern=\"^http://www\\.voxmedia\\.com/(?:$|\\?)\"/><rule from=\"^http://voxmedia\\.com/\" to=\"https://www.voxmedia.com/\"/><rule from=\"^http://ea-cdn\\.voxmedia\\.com/\" to=\"https://d8wuu9msfgurd.cloudfront.net/\"/><rule from=\"^http://cdn\\.hymnal\\.voxmedia\\.com/\" to=\"https://d3jpjf0yeaswad.cloudfront.net/\"/><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\" 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\" 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\" 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=\"vsexshop.ru (partial)\" f=\"Vsexshop.ru.xml\"><rule from=\"^http://(?:[lm]\\.vimgs|vsexshop)\\.ru/images/\" to=\"https://vsexshop.ru/images/\"/></ruleset>", "<ruleset name=\"Vtiger.com\" f=\"Vtiger.com.xml\"><securecookie host=\"^(?:\\.|forums\\.|www\\.)?vtiger\\.com$\" name=\".+\"/><rule from=\"^http://((?:blogs|discussions|forums|wiki|www)\\.)?vtiger\\.com/\" to=\"https://$1vtiger.com/\"/></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\" default_off=\"failed ruleset test\" f=\"VuFind.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Vub.sk\" default_off=\"failed ruleset test\" 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=\"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=\"Vulnscan.org\" f=\"Vulnscan.org.xml\"><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)\" 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=\"^\\.vuze\\.com$\" 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://charting\\.vwdservices\\.com/\" to=\"https://charting.vwdservices.com/\"/></ruleset>", "<ruleset name=\"vwp.su\" f=\"Vwp.su.xml\"><securecookie host=\"^\\.vwp\\.su$\" 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)\" 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://s\\.w-x\\.co/\" to=\"https://s.w-x.co/\"/></ruleset>", "<ruleset name=\"W.org\" f=\"W.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"w00tads.com\" 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 (partial)\" f=\"W3C.xml\"><rule from=\"^http://(?:www\\.)?w3\\.org/\" to=\"https://www.w3.org/\"/><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=\"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=\"W.A.S.T.E.\" default_off=\"self-signed\" f=\"WASTE.xml\"><rule from=\"^http://(?:www\\.)?waste\\.org/\" to=\"https://waste.org/\"/></ruleset>", "<ruleset name=\"WAYF.dk (partial)\" 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\" 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=\"WHATWG.org\" f=\"WHATWG.org.xml\"><rule from=\"^http://whatwg\\.org/\" to=\"https://whatwg.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"WHI CDN.com\" 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\"><exclusion pattern=\"^http://(?:www\\.)?whsmith\\.co\\.uk/(?!App_Themes/|(?:Books|CatalogAndSearch|E?Products|GiftCardProducts|Voting)(?:$|\\?|/)|favicon\\.ico|GiftsGamesAndToys/\\w|[iI]mages/|Script/|StationeryAndCards/\\w|[sS]upport/|WebResource\\.axd)\"/><securecookie host=\"^(?:www\\.)?magazines\\.whsmith\\.co\\.uk$\" name=\".+\"/><rule from=\"^http://(?:secure\\.|www\\.)?whsmith\\.co\\.uk/\" to=\"https://secure.whsmith.co.uk/\"/><rule from=\"^http://(www\\.)?magazines\\.whsmith\\.co\\.uk/\" to=\"https://$1magazines.whsmith.co.uk/\"/></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\" 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\" f=\"WLxrs.com.xml\"><rule from=\"^http://(\\w+)\\.wlxrs\\.com/\" to=\"https://$1.wlxrs.com/\"/></ruleset>", "<ruleset name=\"WM Jobs.co.uk\" 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=\"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-Tao.com\" f=\"WP-Tao.com.xml\"><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)\" 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=\"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=\"WTF is my IP.com\" f=\"WTFismyIP.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=\"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\" 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=\"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=\"WakaTime.com\" f=\"WakaTime.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Wakelet.com\" f=\"Wakelet.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Wal.co\" f=\"Wal.co.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"wald.intevation.org\" 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)\" 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\" 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=\"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)\" 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\" default_off=\"failed ruleset test\" 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\" f=\"Wand.com.xml\"><securecookie host=\"^(?:www\\.)?wand\\.com$\" name=\".+\"/><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\" f=\"War_Z.xml\"><securecookie host=\"^(?:account)?\\.playwarz\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Warez-BB.org (problematic)\" default_off=\"expired\" f=\"Warez-BB.org-problematic.xml\"><securecookie host=\"^www\\.warez-bb\\.org$\" name=\".+\"/><rule from=\"^http://img9\\.warez-bb\\.org/\" to=\"https://img9.warez-bb.org/\"/><rule from=\"^http://(?:www\\.)?warez-bb\\.org/\" to=\"https://www.warez-bb.org/\"/></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=\"WarmlyYours\" f=\"WarmlyYours.xml\"><securecookie host=\"^.*\\.warmlyyours\\.com$\" name=\".+\"/><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)\" 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=\"Warwickshire Police\" f=\"WarwickshirePolice.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Wz2100.net (partial)\" f=\"Warzone2100.xml\"><securecookie host=\"^(?:.*\\.)?wz2100\\.net$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Wash Post.com (partial)\" 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/)\"/><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/\"/><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)\" 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&amp;vd=autodiscover\"/><rule from=\"^http://autodiscover\\.samfox\\.wustl\\.edu/+([^?]+)$\" to=\"https://outlook.office365.com/$1?realm=samfox.wustl.edu&amp;vd=autodiscover\"/><rule from=\"^http://autodiscover\\.samfox\\.wustl\\.edu/+(.+)\" to=\"https://outlook.office365.com/$1&amp;realm=samfox.wustl.edu&amp;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=\"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\" 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\" 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=\"Westdeutscher Rundfunk\" 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\" f=\"We-Heart-It.xml\"><securecookie host=\"^\\.?weheartit\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"WeChat (partial)\" default_off=\"failed ruleset test\" f=\"WeChat.xml\"><rule from=\"^http://((?:admin|compass\\.admin|api|file\\d|login|res|support|video|web\\d?|webpush\\d?|www)\\.)?wechat\\.com/\" to=\"https://$1wechat.com/\"/></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=\"WeGotWax.com\" default_off=\"failed ruleset test\" f=\"WeGotWax.com.xml\"><securecookie host=\"^(?:www)?\\.wegotwax.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?wegotwax\\.com/\" to=\"https://www.wegotwax.com/\"/></ruleset>", "<ruleset name=\"WeMonIt.de\" f=\"WeMonIt.de.xml\"><securecookie host=\"^(?:www\\.)?wemonit\\.de$\" 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\" f=\"We_Are_Wizards.io.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"We Fight Censorship (partial)\" default_off=\"failed ruleset test\" f=\"We_Fight_Censorship.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"We Need to Know.info\" f=\"We_Need_to_Know.info.xml\"><securecookie host=\"^\\.weneedtoknow\\.info$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"We The Goondas.in\" f=\"We_The_Goondas.in.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)\" 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)\" default_off=\"failed ruleset test\" 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)\" default_off=\"failed ruleset test\" 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)\" 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)\" 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\" 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=\"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\" 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\" f=\"WebGo.xml\"><securecookie host=\"^(www\\.|website\\.|www\\.website|login\\.|support\\.)?webgo\\.de$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"WebGo24.de\" 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)\" 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)\" default_off=\"mismatched\" 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)\" 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\" 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\" 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\" default_off=\"failed ruleset test\" 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 (mismatches)\" default_off=\"bluehost certificate\" f=\"WebType-mismatches.xml\"><rule from=\"^http://blog\\.webtype\\.com/\" to=\"https://blog.webtype.com/~webtypec/blog/\"/></ruleset>", "<ruleset name=\"WebType.com (partial)\" f=\"WebType.xml\"><exclusion pattern=\"^http://www\\.webtype\\.com/(?!global/|local/)\"/><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\" 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)\" default_off=\"failed ruleset test\" f=\"Web_Service_Award.xml\"><rule from=\"^http://ssl\\.webserviceaward\\.com/\" to=\"https://ssl.webserviceaward.com/\"/></ruleset>", "<ruleset name=\"Web Tune Factory\" f=\"Web_Tune_Factory.xml\"><rule from=\"^http://(?:www\\.)?w-tune\\.com/\" to=\"https://www.w-tune.com/\"/></ruleset>", "<ruleset name=\"Web of Knowledge\" default_off=\"failed ruleset test\" 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=\"WebcamBoys (partial)\" default_off=\"failed ruleset test\" f=\"WebcamBoys.xml\"><securecookie host=\"^\\.webcamboys\\.us$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></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=\"connection dropped\" f=\"Webfest_Global.xml\"><securecookie host=\"^www\\.webfestglobal\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"webfusion (partial)\" default_off=\"failed ruleset test\" 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=\"Webkit\" default_off=\"shows default page\" f=\"Webkit.xml\"><securecookie host=\"^pageloc\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Weblate.org\" f=\"Weblate.org.xml\"><rule from=\"^http://(?:(docs\\.|hosted\\.)|www\\.)?weblate\\.org/\" to=\"https://$1weblate.org/\"/></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://webmail\\.loxinfo\\.co\\.th/\" to=\"https://webmail.loxinfo.co.th/\"/></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\" default_off=\"mismatched, missing certificate chain, self-signed\" 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)\" 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)\" default_off=\"failed ruleset test\" 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\" 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)\" f=\"Webs.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Websec Weekly.org\" f=\"Websec_Weekly.org.xml\"><securecookie host=\"^\\.websecweekly\\.org$\" name=\"^(?:__cfduid|cf_clearance)$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Websecurify.com\" 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)\" 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\" default_off=\"failed ruleset test\" f=\"WebsiteGrowers.com.xml\"><securecookie host=\"^(?:www)?\\.websitegrowers\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Website Pipeline (partial)\" 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&amp;sTask=captcha&amp;task=captcha&amp;pf=1&amp;r_id=\\d+&amp;lang=\\w\\w&amp;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)\" default_off=\"failed ruleset test\" 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\" default_off=\"expired\" platform=\"cacert\" f=\"Websterwood.com.xml\"><rule from=\"^http://(?:www\\.)?websterwood\\.com/+\" to=\"https://blog.websterwood.com/\"/><rule from=\"^http://blog\\.websterwood\\.com/\" to=\"https://blog.websterwood.com/\"/></ruleset>", "<ruleset name=\"webstyle.ch\" 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\" 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)\" 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)\" 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=\".*\\.webtrendslive\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Webtrh.cz\" f=\"Webtrh.cz.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Webtru.st Keyserver\" default_off=\"mismatch\" f=\"Webtru.st.xml\"><rule from=\"^http://www\\.pgp\\.webtru\\.st/\" to=\"https://pgp.webtru.st/\"/><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\" 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=\"connection dropped\" 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)\" 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.com (mixed content)\" platform=\"mixedcontent\" f=\"Weibo.com-mixedcontent.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://hr\\.weibo\\.com/\" to=\"https://weihr.sinaapp.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Weibo.com (partial)\" f=\"Weibo.com.xml\"><securecookie host=\"^(?:upload\\.api|yahoo\\.tw)\\.weibo\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Weiss Research\" default_off=\"failed ruleset test\" 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)\" 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\" f=\"Wello.com.xml\"><securecookie host=\"^(?:www)?\\.wello\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Wells Fargo.com\" f=\"WellsFargo.xml\"><securecookie host=\".*\\.wellsfargo\\.com$\" name=\".+\"/><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://image\\.wemakeprice\\.com/\" to=\"https://image.wemakeprice.com/\"/></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=\"Wemineltc.com\" f=\"Wemineltc.com.xml\"><rule from=\"^http://(?:www\\.)?wemineltc\\.com/\" to=\"https://www.wemineltc.com/\"/><securecookie host=\"^(?:www\\.)?wemineltc\\.com$\" name=\".*\"/></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=\"Battle for Wesnoth (partial)\" platform=\"cacert\" default_off=\"Needs ruleset tests\" f=\"Wesnoth.xml\"><exclusion pattern=\"^http://(?:addons|replays)\\.wesnoth\\.org/icons/$\"/><exclusion pattern=\"^http://(?:units|wiki)\\.wesnoth\\.org/skins/$\"/><rule from=\"^http://(?:((?:addonlist|bugs|changelog|dev(?:-addons|docs)|eclipse|gettext|irclogs|manual|patches|stable-(?:addons|changelog)|(?:web)?svn|wesnothd)\\.)|www\\.)?wesnoth\\.org/\" to=\"https://$1wesnoth.org/\"/><rule from=\"^http://(addons|replays)\\.wesnoth\\.org/icons/\" to=\"https://$1.wesnoth.org/icons/\"/><rule from=\"^http://(?:units|wiki)\\.wesnoth\\.org/skins/\" to=\"https://wesnoth.org/mw/skins/\"/><rule from=\"^http://wiki\\.wesnoth\\.org/favicon\\.ico$\" to=\"https://wiki.wesnoth.org/favicon.ico\"/></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)\" 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)\" 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\" 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)\" 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\" 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)\" default_off=\"failed ruleset test\" f=\"Westlaw.com.xml\"><securecookie host=\"^(?:(?:lawschool|[1m]\\.next|store|text|web2|west|www)\\.)?westlaw\\.com$\" name=\".*\"/><rule from=\"^http://((?:lawschool|[1m]\\.next|onepass|(?:images\\.)?store|text|web2|west|www)\\.)?westlaw\\.com/\" to=\"https://$1westlaw.com/\"/></ruleset>", "<ruleset name=\"Westlotto.com\" f=\"Westlotto.xml\"><rule from=\"^http://wlresults\\.westlotto\\.com/\" to=\"https://wlresults.westlotto.com/\"/></ruleset>", "<ruleset name=\"Westminster.gov.uk (partial)\" 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=\"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=\"WhatCD\" f=\"WhatCD.xml\"><rule from=\"^http://(?:www\\.)?what\\.cd/\" to=\"https://what.cd/\"/><rule from=\"^http://(m|ssl)\\.what\\.cd/\" to=\"https://$1.what.cd/\"/></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=\"Whatbox.ca\" f=\"Whatbox.ca.xml\"><rule from=\"^http://((?:m|ssl|www)\\.)?whatbox\\.ca/\" to=\"https://$1whatbox.ca/\"/></ruleset>", "<ruleset name=\"Whatimg.com\" f=\"Whatimg.com.xml\"><rule from=\"^http://(?:www\\.)?whatimg\\.com/\" to=\"https://whatimg.com/\"/></ruleset>", "<ruleset name=\"WhatsApp.com\" f=\"WhatsApp.com.xml\"><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=\"Wheel.sk\" f=\"Wheel.sk.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Where.com\" 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)\" 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)\" default_off=\"failed ruleset test\" 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=\"The White House\" f=\"WhiteHouse.gov.xml\"><securecookie host=\"^.*\\.whitehouse\\.gov$\" 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\" f=\"White_Lisbon.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"whitehathouston.com\" platform=\"cacert\" 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)\" f=\"WhoSampled.com.xml\"><rule from=\"^http://(www\\.)?whosampled\\.com/(?=accounts/(?:login|registration)(?:$|[?/])|static/)\" to=\"https://$1whosampled.com/\"/></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=\"mismatch\" 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=\"Whos Hiring.io\" f=\"Whos_Hiring.io.xml\"><securecookie host=\"^(?:\\.|www\\.)?whoshiring\\.io$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></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=\"WiFi Pineapple.com\" f=\"WiFi_Pineapple.com.xml\"><securecookie host=\"^www\\.wifipineapple\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"WiGLE.net\" f=\"WiGLE.xml\"><securecookie host=\".\" name=\".\"/><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=\"Widgetbox.com (partial)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Widgetbox.com.xml\"><securecookie host=\"^www\\.widgetbox\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?widget(box|server)\\.com/\" to=\"https://www.widget$1.com/\"/><rule from=\"^http://pub\\.widgetbox\\.com/\" to=\"https://pub.widgetbox.com/\"/><rule from=\"^http://support\\.widgetbox\\.com/generated/\" to=\"https://generated.zendesk.com/generated/\"/><rule from=\"^http://(cdn|p|t)\\.widgetserver\\.com/\" to=\"https://$1.widgetserver.com/\"/></ruleset>", "<ruleset name=\"WiebeTech.com\" default_off=\"self-signed\" f=\"WiebeTech.com.xml\"><rule from=\"^http://(?:www\\.)?weibetech\\.com/\" to=\"https://www.weibetech.com/\"/></ruleset>", "<ruleset name=\"WienIT EDV Dienstleistungsgesellschaft mbH\" 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=\"Wigan.gov.uk (partial)\" 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\" 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.org\" f=\"WikiLeaks.xml\"><securecookie host=\"^(?:w*\\.)?wikileaks\\.org$\" 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://(?:slot\\d\\.)?images\\d?\\.wikia\\.nocookie\\.net/\" to=\"https://images.wikia.com/\"/><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=\"Wikileaks Party (partial)\" f=\"Wikileaks_Party.xml\"><rule from=\"^http://(www\\.)?wikileaksparty\\.org\\.au/(component|form|image|plugin|template)s/\" to=\"https://$1wikileaksparty.org.au/$2s/\"/></ruleset>", "<ruleset name=\"Wikimedia\" f=\"Wikimedia.xml\"><exclusion pattern=\"^http://(?:apt|parsoid-lb\\.eqiad|status|ubuntu)\\.wikimedia\\.org\"/><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://links\\.email\\.donate\\.wikimedia\\.org/\" to=\"https://www.links.mkt41.net/\"/><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=\"Wikivs.com\" f=\"Wikivs.com.xml\"><rule from=\"^http://(?:www\\.)?wikivs\\.com/\" to=\"https://www.wikivs.com/\"/></ruleset>", "<ruleset name=\"Wild West Domains.com\" 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&amp;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://(?:www\\.)?wildstar-online\\.com/\" to=\"https://www.wildstar-online.com/\"/><rule from=\"^http://(forums|shop|static|support)\\.wildstar-online\\.com/\" to=\"https://$1.wildstar-online.com/\"/></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\" f=\"Wildfiregames.com.xml\"><securecookie host=\"^(www\\.|releases\\.)?wildfiregames\\.com\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Wiley (partial)\" default_off=\"failed ruleset test\" 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\" default_off=\"failed ruleset test\" 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://mobile\\.willhaben\\.at/\" to=\"https://mobile.willhaben.at/\"/></ruleset>", "<ruleset name=\"William Hill.com (mismatches)\" default_off=\"mismatch\" f=\"William-Hill-mismatches.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"William Hill.com (partial)\" 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 (self-signed)\" default_off=\"self-signed, mismatch\" platform=\"mixedcontent\" f=\"Williams-College-self-signed.xml\"><rule from=\"^http://(archives|biology|ces|chapin|chemistry|committees|communications|conferences|dean|dean-faculty|facultynotes|hmf|hr|library|math|mobile-services|oit|parents|physics|president|science|sustainability)\\.williams\\.edu/\" to=\"https://$1.williams.edu/\"/></ruleset>", "<ruleset name=\"Williams College (partial)\" f=\"Williams-College.xml\"><securecookie host=\"^\\w+\\.williams\\.edu$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?williams\\.edu/\" to=\"https://www.williams.edu/\"/><rule from=\"^http://(admission|cf|francis|glow|it|roomscheduler|sarah|sites|wcma|web|webprspct)\\.williams\\.edu/\" to=\"https://$1.williams.edu/\"/><rule from=\"^http://people\\.williams\\.edu/\" to=\"https://sites.williams.edu/\"/></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)\" default_off=\"failed ruleset test\" 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\" 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\" default_off=\"failed ruleset test\" f=\"WinRAR.xml\"><securecookie host=\"^.*\\.win-rar\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?win-rar\\.com/\" to=\"https://www.win-rar.com/\"/></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\" default_off=\"failed ruleset test\" 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)\" f=\"Wind_River.com.xml\"><securecookie host=\"^developer\\.windriver\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Window Maker.org (mismatches)\" default_off=\"mismatch\" platform=\"cacert\" f=\"Window-Maker-mismatches.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Window Maker.org (partial)\" platform=\"cacert\" f=\"Window-Maker.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Window Switch\" f=\"Window_Switch.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://www\\.winswitch\\.org/\" to=\"https://winswitch.org/\"/><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\" 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://winhawille\\.edu\\.hel\\.fi/\" to=\"https://winhawille.edu.hel.fi/\"/></ruleset>", "<ruleset name=\"Winhistory Forum\" f=\"Winhistory-Forum.xml\"><securecookie host=\"^\\.?www\\.winhistory-forum\\.net$\" name=\".+\"/><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 (partial)\" default_off=\"failed ruleset test\" f=\"Winoptions.com.xml\"><rule from=\"^http://cms\\.winoptions\\.com/(?=appProxy/|css/|favicon\\.ico|/?homemediaProxy/|images/|mediaProxy/)\" to=\"https://cms.winoptions.com/\"/></ruleset>", "<ruleset name=\"Wippies Webmail\" default_off=\"failed ruleset test\" f=\"Wippies.xml\"><rule from=\"^http://webmail\\.wippies\\.com/\" to=\"https://webmail.wippies.com/\"/></ruleset>", "<ruleset name=\"Wire.com (partial)\" f=\"Wire.com.xml\"><securecookie host=\"^(?:sunrise|www)\\.wire\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?wire\\.com/\" to=\"https://www.wire.com/\"/><rule from=\"^http://su(nrise|pport)\\.wire\\.com/\" to=\"https://su$1.wire.com/\"/></ruleset>", "<ruleset name=\"WireEdit.com\" 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 (false MCB, partial)\" platform=\"mixedcontent\" f=\"Wired.xml\"><securecookie host=\"^subscriptions\\.wired\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?wired\\.com/\" to=\"https://www.wired.com/\"/><rule from=\"^http://s(ecure|ubscribe|ubcriptions)\\.wired\\.com/\" to=\"https://s$1.wired.com/\"/><rule from=\"^http://cdni\\.wired\\.co\\.uk/\" to=\"https://d2f0ban6dhfdsw.cloudfront.net/\"/><rule from=\"^http://wrd\\.cm/\" to=\"https://bit.ly/\"/></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\" 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\" 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=\"Wireshark.org\" f=\"Wireshark.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Wirral.gov.uk (false MCB)\" platform=\"mixedcontent\" 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\" 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)\" 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\" default_off=\"expired, mismatched, self-signed\" f=\"Witness.org.xml\"><securecookie host=\"^\\.?witness\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Wix.com (partial)\" 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=\"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 of the Coast (expired)\" default_off=\"expired\" f=\"Wizards-of-the-Coast-problematic.xml\"><rule from=\"^http://community\\.wizards\\.com/\" to=\"https://community.wizards.com/\"/></ruleset>", "<ruleset name=\"Wizards of the Coast (partial)\" default_off=\"failed ruleset test\" f=\"Wizards.xml\"><securecookie host=\"^(?:.+\\.)?wizards\\.com$\" name=\".+\"/><rule from=\"^http://(accounts\\.|www\\.)?wizards\\.com/\" to=\"https://$1wizards.com/\"/><rule from=\"^http://images\\.community\\.wizards\\.com/\" to=\"https://images.onesite.com/\"/></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://wk3\\.org/\" to=\"https://wk3.org/\"/></ruleset>", "<ruleset name=\"WoSign.cn\" f=\"WoSign.cn.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"WoSign.com (partial)\" f=\"WoSign.com.xml\"><rule from=\"^http://((?:api2?|bbs|buy|certlogin|login|m|my|partner|support|www)\\.)?wosign\\.com/\" to=\"https://$1wosign.com/\"/></ruleset>", "<ruleset name=\"Woahh\" default_off=\"failed ruleset test\" f=\"Woahh.xml\"><securecookie host=\"^\\.woahh\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Wolfire Games (partial)\" default_off=\"expired, mismatch\" f=\"Wolfire-Games.xml\"><rule from=\"^http://(?:www\\.)?wolfire\\.com/\" to=\"https://www.wolfire.com/\"/><rule from=\"^http://(blog|trac)\\.wolfire\\.com/\" to=\"https://$1.wolfire.com/\"/></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.com (experimental)\" default_off=\"Breaks login\" f=\"Wolfram_Alpha.xml\"><exclusion pattern=\"^http://www\\d\\w?\\.wolframalpha\\.com/input/(?:pod|recalculate)\\.jsp\"/><securecookie host=\"^\\.wolframalpha\\.com$\" name=\"^__utm\\w$\"/><securecookie host=\"^(?:volunteer|www)\\.wolframalpha\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?wolframalpha\\.com/\" to=\"https://www.wolframalpha.com/\"/><rule from=\"^http://(volunteer|www\\d\\w?)\\.wolframalpha\\.com/\" to=\"https://$1.wolframalpha.com/\"/></ruleset>", "<ruleset name=\"Wolfram CDN.com\" f=\"Wolfram_CDN.com.xml\"><rule from=\"^http://www\\.wolframcdn\\.com/\" to=\"https://www.wolframcdn.com/\"/></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=\"connection 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=\"mismatch\" f=\"Women-Innovate-Mobile.xml\"><rule from=\"^http://(?:www\\.)?womeninnovatemobile\\.com/(display|layout|storage|universal)/\" to=\"https://womeninnovatemobile.com/$1/\"/></ruleset>", "<ruleset name=\"Women Sex Pova.com (partial)\" f=\"Women_Sex_Pova.com.xml\"><rule from=\"^http://(www\\.)?womensexpova\\.com/(?=assets/|favicon\\.ico|public/)\" to=\"https://$1womensexpova.com/\"/></ruleset>", "<ruleset name=\"Women on Web\" 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)\" 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\" 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 (partial)\" f=\"WooThemes.xml\"><rule from=\"^http://(www\\.)?woothemes\\.com/wp-(content|includes)/\" to=\"https://$1woothemes.com/wp-$2/\"/><rule from=\"^http://wcdocs\\.woothemes\\.com/\" to=\"https://woocommercedoc.wpengine.com/\"/></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=\"Woopra.com (partial)\" f=\"Woopra.xml\"><securecookie host=\"^(?:w*\\.)?woopra\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Woot (partial)\" 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\" default_off=\"mismatch\" f=\"WordPress-blogs.xml\"><securecookie host=\"^dictionaryblog\\.cambridge\\.org$\" name=\".*\"/><securecookie host=\"^eatocracy\\.cnn\\.com$\" name=\".*\"/><securecookie host=\"^hackaday\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?9to5mac\\.com/\" to=\"https://9to5mac.com/\"/><rule from=\"^http://(?:www\\.)?annotum\\.org/\" to=\"https://annotum.org/\"/><rule from=\"^http://blog\\.ansibleworks\\.com/\" to=\"https://blog.ansibleworks.com/\"/><rule from=\"^http://(?:www\\.)?armservers\\.com/\" to=\"https://armservers.com/\"/><rule from=\"^http://blog\\.bandcamp\\.com/\" to=\"https://blog.bandcamp.com/\"/><rule from=\"^http://(?:www\\.)?blogmaverick\\.com/\" to=\"https://blogmaverick.com/\"/><rule from=\"^http://dictionaryblog\\.cambridge\\.org/\" to=\"https://dictionaryblog.cambridge.org/\"/><rule from=\"^http://(?:www\\.)?charles-carreon\\.com/\" to=\"https://charles-carreon.com/\"/><rule from=\"^http://(eatocracy|tech\\.fortune|globalpublicsquare)\\.cnn\\.com/\" to=\"https://$1.cnn.com/\"/><rule from=\"^http://(?:www\\.)?codepoet\\.com/\" to=\"https://codepoet.com/\"/><rule from=\"^http://(?:www\\.)?dietrolldie\\.com/\" to=\"https://dietrolldie.com/\"/><rule from=\"^http://news\\.efinancialcareers\\.com/\" to=\"https://news.efinancialcareers.com/\"/><rule from=\"^http://(?:www\\.)?emubrightfutures\\.org/\" to=\"https://emubrightfutures.org/\"/><rule from=\"^http://blog\\.feedly\\.com/\" to=\"https://blog.feedly.com/\"/><rule from=\"^http://(?:www\\.)?fightcopyrighttrolls\\.com/\" to=\"https://fightcopyrighttrolls.com/\"/><rule from=\"^http://safeandsavvy\\.f-secure\\.com/\" to=\"https://safeandsavvy.f-secure.com/\"/><rule from=\"^http://(?:www\\.)?fusion\\.net/\" to=\"https://fusion.net/\"/><rule from=\"^http://blog\\.gitorious\\.org/\" to=\"https://blog.gitorious.org/\"/><rule from=\"^http://blog\\.gravity\\.com/\" to=\"https://blog.gravity.com/\"/><rule from=\"^http://(?:www\\.)?hackaday\\.com/\" to=\"https://hackaday.com/\"/><rule from=\"^http://(?:www\\.)?irrlab\\.com/\" to=\"https://irrlab.com/\"/><rule from=\"^http://(?:www\\.)?johnrennie\\.net/\" to=\"https://johnrennie.net/\"/><rule from=\"^http://(?:www\\.)?krystalstatus\\.co\\.uk/\" to=\"https://krystalstatus.co.uk/\"/><rule from=\"^http://(?:www\\.)?lbo-news\\.com/\" to=\"https://lbo-news.com/\"/><rule from=\"^http://blog\\.legacy\\.com/\" to=\"https://blog.legacy.com/\"/><rule from=\"^http://blog\\.loomio\\.org/\" to=\"https://blog.loomio.org/\"/><rule from=\"^http://blog\\.magellanmodels\\.com/\" to=\"https://blog.magellanmodels.com/\"/><rule from=\"^http://blog\\.nanigans\\.com/\" to=\"https://blog.nanigans.com/\"/><rule from=\"^http://(?:www\\.)?nypost\\.com/\" to=\"https://nypost.com/\"/><rule from=\"^http://(?:www\\.)?observer\\.com/\" to=\"https://observer.com/\"/><rule from=\"^http://blog\\.onlive\\.com/\" to=\"https://blog.onlive.com/\"/><rule from=\"^http://blog\\.opendz\\.org/\" to=\"https://blog.opendz.org/\"/><rule from=\"^http://blog\\.opengroup\\.org/\" to=\"https://blog.opengroup.org/\"/><rule from=\"^http://blog\\.peopleschoice\\.com/\" to=\"https://blog.peopleschoice.com/\"/><rule from=\"^http://(?:www\\.)?perspectives-project\\.org/\" to=\"https://perspectives-project.org/\"/><rule from=\"^http://(magazine|servicesblog)\\.redhat\\.com/\" to=\"https://$1.redhat.com/\"/><rule from=\"^http://blog\\.rstudio\\.org/\" to=\"https://blog.rstudio.org/\"/><rule from=\"^http://blog\\.safariflow\\.com/\" to=\"https://blog.safariflow.com/\"/><rule from=\"^http://blog\\.side\\.cr/\" to=\"https://blog.side.cr/\"/><rule from=\"^http://blog\\.suitabletech\\.com/\" to=\"https://blog.suitabletech.com/\"/><rule from=\"^http://(?:www\\.)?techcrunch\\.com/\" to=\"https://techcrunch.com/\"/><rule from=\"^http://(business|entertainment|healthland|ideas|keepingscore|life|lightbox|nation|newsfeed|science|style|swampland|techland|thepage|world)\\.time\\.com/\" to=\"https://$1.time.com/\"/><rule from=\"^http://blog\\.tinypic\\.com/\" to=\"https://blog.tinypic.com/\"/><rule from=\"^http://(?:www\\.)?tppinfo\\.org/\" to=\"https://tppinfo.org/\"/><rule from=\"^http://(dee|support)\\.uidaho\\.edu/\" to=\"https://$1.uidaho.edu/\"/><rule from=\"^http://blog\\.verticalacuity\\.com/\" to=\"https://blog.verticalacuity.com/\"/><rule from=\"^http://(?:www\\.)?wordpress\\.tv/\" to=\"https://wordpress.tv/\"/><rule from=\"^http://blog\\.wordpress\\.tv/\" to=\"https://blog.wordpress.tv/\"/><rule from=\"^http://blog\\.zamzar\\.com/\" to=\"https://blog.zamzar.com/\"/></ruleset>", "<ruleset name=\"WordPress (partial)\" f=\"WordPress.xml\"><exclusion pattern=\"^http://(?:[^/:@\\.]+\\.)?wordpress\\.com/latex\\.php(?:\\?.*)?$\"/><exclusion pattern=\"^http://s-plugins\\.wordpress\\.org/\"/><securecookie host=\"^wordpress\\.com$\" name=\"^wordpress_homepage$\"/><securecookie host=\"^\\.wordpress\\.com$\" name=\"^(?:km_\\w\\w|kvcd|optimizely\\w+)$\"/><securecookie host=\"^wordpress\\.org$\" name=\".+\"/><securecookie host=\".*\\.wordpress\\.(?:com|org)$\" name=\"^__utm\\w$\"/><rule from=\"^http://wordpress\\.(com|org)/\" to=\"https://wordpress.$1/\"/><rule from=\"^http://([^/:@\\.]+)\\.(blog|files)\\.wordpress\\.com/\" to=\"https://$1.$2.wordpress.com/\"/><rule from=\"^http://(\\w+)\\.blog\\.files\\.wordpress\\.com/\" to=\"https://$1-blog.files.wordpress.com/\"/><rule from=\"^http://s\\.wordpress\\.(com|org)/\" to=\"https://www.wordpress.$1/\"/><rule from=\"^http://s\\d\\.wordpress\\.(com|org)/\" to=\"https://secure.wordpress.$1/\"/><rule from=\"^http://([^/:@\\.]+)\\.wordpress\\.(com|org)/\" to=\"https://$1.wordpress.$2/\"/><rule from=\"^http://s\\.stats\\.wordpress\\.com/\" to=\"https://stats.wordpress.com/\"/><rule from=\"^http://([^/:@\\.]+)\\.(trac|svn)\\.wordpress\\.org/\" to=\"https://$1.$2.wordpress.org/\"/><rule from=\"^http://(i[012]|s\\d*)\\.wp\\.com/\" to=\"https://$1.wp.com/\"/></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\" 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=\"WorkKafe.com\" default_off=\"mismatched\" f=\"WorkKafe.com.xml\"><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\" 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://sdsurf\\.workforcehosting\\.com/\" to=\"https://sdsurf.workforcehosting.com/\"/></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\" f=\"Workplace-Giving.xml\"><rule from=\"^http://(?:www\\.)?workplacegiving\\.co\\.uk/\" to=\"https://www.workplacegiving.co.uk/\"/></ruleset>", "<ruleset name=\"Workplace Gender Equality Agency\" default_off=\"failed ruleset test\" 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=\"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 Cube Association.org\" f=\"World_Cube_Association.org.xml\"><securecookie host=\"^www\\.worldcubeassociation\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"World Development Movement\" default_off=\"failed ruleset test\" f=\"World_Development_Movement.xml\"><securecookie host=\"^\\.wdm\\.org\\.uk$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"The World Food Prize\" 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)\" 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 (partial)\" f=\"Worldreader.org.xml\"><rule from=\"^http://cdn\\.worldreader\\.org/\" to=\"https://d2rw7b0vuslxd3.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Worn Through.com\" default_off=\"mismatch\" 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://(?:www\\.)?woz\\.ch/\" to=\"https://www.woz.ch/\"/></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\" 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\" 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)\" 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=\"Wunderlist (partial)\" f=\"Wunderlist.xml\"><securecookie host=\"^www\\.wunderlist\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?wunderlist\\.com/\" to=\"https://www.wunderlist.com/\"/></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=\"www.cable-tv-deals.com\" default_off=\"failed ruleset test\" f=\"Www.cable-tv-deals.com.xml\"><securecookie host=\"^\\.cable-tv-deals\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Wyenet\" default_off=\"expired\" f=\"Wyenet.xml\"><securecookie host=\"^(?:.*\\.)?wyenet\\.co\\.uk$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?wyenet\\.(?:co\\.uk|net)/\" to=\"https://www.wyenet.co.uk/\"/></ruleset>", "<ruleset name=\"Wykop.pl (partial)\" default_off=\"failed ruleset test\" f=\"Wykop.pl.xml\"><securecookie host=\"^(?:www\\.)?wykop\\.pl$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Wyndham (mismatches)\" default_off=\"mismatches\" 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\" f=\"WyzerMe.xml\"><securecookie host=\"^www\\.wyzerme\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"wza.us\" platform=\"cacert\" 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\" default_off=\"mismatched\" f=\"X-blog.jp.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"x-info.org\" f=\"X-info.org.xml\"><securecookie host=\".\" name=\".\"/><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=\"XAGYL.com\" f=\"XAGYL.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"XAGYL.us\" 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\" f=\"XChatData.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"XDA-Developers.com (false MCB)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"XDA-Developers.com-falsemixed.xml\"><exclusion pattern=\"^http://(?:www\\.)?xda-developers\\.com/+(?:favicon\\.ico|wp-content/|wp-includes/)\"/><securecookie host=\"^(?:www\\.)?xda-developers\\.com$\" name=\".+\"/><rule from=\"^http://(www\\.)?xda-developers\\.com/(?!favicon\\.ico|wp-content/|wp-includes/)\" to=\"https://$1xda-developers.com/\"/></ruleset>", "<ruleset name=\"XDA Developers (partial)\" f=\"XDA-Developers.xml\"><exclusion pattern=\"^http://(?:www\\.)?xda-developers\\.com/+(?!favicon\\.ico|wp-content/|wp-includes/)\"/><exclusion pattern=\"^http://forum\\.xda-developers\\.com/(?!clientscript/|css/|favicon\\.ico|images/)\"/><rule from=\"^http://(forum\\.|www\\.)?xda-developers\\.com/\" to=\"https://$1xda-developers.com/\"/><rule from=\"^http://(?:images|(?:(?:buttons|cdn|icons|img\\d?)\\.)?media)\\.xda-developers\\.com/\" to=\"https://forum.xda-developers.com/\"/><rule from=\"^http://cdn\\.www\\.xda-developers\\.com/\" to=\"https://www.xda-developers.com/\"/></ruleset>", "<ruleset name=\"XE (partial)\" f=\"XE.xml\"><rule from=\"^http://(?:www\\.)?xe\\.com/(themes/|xetrade/(?:help/)?login)\" to=\"https://www.xe.com/$1\"/><rule from=\"^http://fx2\\.xe\\.com/\" to=\"https://fx2.xe.com/\"/><rule from=\"^http://s\\.xe\\.com/\" to=\"https://gp1.wac.edgecastcdn.net/00157D/\"/></ruleset>", "<ruleset name=\"XEU.com (partial)\" f=\"XEU.com.xml\"><securecookie host=\"^\\.shop\\.xeu\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"XFCE.org (self-signed)\" default_off=\"self-signed\" f=\"XFCE.org-self-signed.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"XFCE.org (partial)\" f=\"XFCE.org.xml\"><securecookie host=\"^(?:.*\\.)xfce\\.org$\" 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:\" to=\"https:\"/></ruleset>", "<ruleset name=\"xHamster.com (partial)\" f=\"XHamster.com.xml\"><exclusion pattern=\"^http://(?:www\\.)?xhamster\\.com/+(?!favicon\\.ico|login\\.php|signup\\.php)\"/><exclusion pattern=\"^http://static\\.xhamster\\.com/crossdomain\\.xml\"/><securecookie host=\"^\\.xhamster\\.com$\" name=\"^(?:splash-\\d+|stats|uvts)$\"/><securecookie host=\"^partners\\.xhamster\\.com$\" name=\".\"/><rule from=\"^http://suggestions\\.xhamster\\.com/\" to=\"https://xhamster.uservoice.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"xHamster Premium Pass.com (partial)\" 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\" f=\"XM-CDN.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"XM.com\" 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\" 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://www\\.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=\"XPD.se\" f=\"XPD.se.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"XPic only.com\" 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\" f=\"XSSposed.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"xVideosx.tv\" f=\"XVideosx.tv.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Xagasoft.com\" default_off=\"expired, missing certificate chain\" f=\"Xagasoft.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Xakep.ru\" 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\" 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)\" 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=\"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=\"Xemail.de\" default_off=\"missing certificate chain\" f=\"Xemail.de.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\" 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\" f=\"Xen_VPS.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Xeneris.net (partial)\" 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\" 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)\" 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=\"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\" default_off=\"failed ruleset test\" f=\"Xperience-Days.xml\"><securecookie host=\"^secure\\.xperiencedays\\.com$\" name=\".+\"/><rule from=\"^http://secure\\.xperiencedays\\.com/\" to=\"https://secure.xperiencedays.com/\"/><rule from=\"^http://(?:static\\.|www\\.)?xperiencedays\\.com/\" to=\"https://secure.xperiencedays.com/\"/></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=\"expired\" f=\"Xroxy.com.xml\"><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)\" 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=\"mismatch\" 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\" 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=\"Xumaa.com\" default_off=\"mismatched\" f=\"Xumaa.com.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=\"Xyntekinc.com\" default_off=\"Certificate mismatch\" f=\"Xyntekinc.com.xml\"><rule from=\"^http://(?:www\\.)?xyntekinc\\.com/\" to=\"https://xyntekinc.com/\"/><securecookie host=\"^(?:www\\.)?xyntekinc\\.com$\" name=\".*\"/></ruleset>", "<ruleset name=\"Xyratex.com\" 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!\" f=\"YEAH.xml\"><rule from=\"^http://(?:www\\.)?yeahtv\\.com/\" to=\"https://www.yeahtv.com/\"/></ruleset>", "<ruleset name=\"YGTech.Tools\" 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=\"YTS.to\" f=\"YTS.to.xml\"><securecookie host=\"^.*\\.yts\\.to$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></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)\" 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\" default_off=\"mismatched, self-signed\" f=\"Yabause.org.xml\"><securecookie host=\"^forums\\.yabause\\.org$\" 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\" f=\"Yacuna.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Yadro.ru (partial)\" 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://(?:www\\.)?totaltravel\\.com/images/\"/><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://(?:www\\.)?totaltravel\\.co(?:m|\\.uk)/\" to=\"https://au.totaltravel.yahoo.com/\"/><rule from=\"^http://builder\\.totaltravel\\.com/\" to=\"https://builder.totaltravel.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&amp;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&amp;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&amp;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&amp;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\"><exclusion pattern=\"^http://custom\\.search\\.yahoo\\.co\\.jp/(?!favicon\\.ico|images/)\"/><exclusion pattern=\"^http://omiai\\.yahoo\\.co\\.jp/(?!favicon\\.ico|profile/create)\"/><securecookie host=\"^\\.yahoo\\.co\\.jp$\" name=\"^B$\"/><securecookie host=\"^\\.forms\\.business\\.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=\"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\" 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)\" 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)\" 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)\" 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)\" 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)\" 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)\" 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)\" 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=\"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=\"Yawnbox.com\" f=\"Yawnbox.com.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\" default_off=\"mismatched\" f=\"Yeah.net.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://yeah\\.net/\" to=\"https://www.yeah.net/\"/><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=\"^(?:\\.|www\\.)?yedxxx24hr\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Yellow Pages IMA (partial)\" 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://secure\\.yellowpages\\.ca/\" to=\"https://secure.yellowpages.ca/\"/></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 (partial)\" f=\"Yelp.xml\"><exclusion pattern=\"^http://(?:www\\.)?yelp\\.com/(?!(?:forgot|login|signup)(?:$|\\?|/))\"/><securecookie host=\"^\\.biz\\.yelp\\.com$\" name=\".+\"/><rule from=\"^http://(www\\.)?(biz\\.)?yelp\\.com/\" to=\"https://$1$2yelp.com/\"/><rule from=\"^http://s3-media(\\d)\\.ak\\.yelpcdn\\.com/\" to=\"https://s3-media$1.ak.yelpcdn.com/\"/></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\" f=\"Yeshiva.xml\"><rule from=\"^http://(?:www\\.)?yu\\.edu/\" to=\"https://yu.edu/\"/></ruleset>", "<ruleset name=\"yespic69.com\" f=\"Yespic69.com.xml\"><securecookie host=\"^(?:w*\\.)?yespic69\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ygnition (partial)\" 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://yho\\.com/\" to=\"https://yho.com/\"/></ruleset>", "<ruleset name=\"YieldSelect.com\" default_off=\"missing certificate chain\" f=\"YieldSelect.com.xml\"><securecookie host=\"^(?:www\\.)?yieldselect\\.com$\" 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\" 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\" 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\" 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\" default_off=\"Certificates are invalid\" f=\"York.xml\"><rule from=\"^http://(?:www\\.)?york\\.edu/\" to=\"https://york.edu/\"/></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://cds1\\.yospace\\.com/\" to=\"https://cds1.yospace.com/\"/></ruleset>", "<ruleset name=\"Yotsuba Archiver (mismatches)\" default_off=\"mismatch\" f=\"Yotsuba-Archiver-mismatches.xml\"><rule from=\"^http://noodlebox\\.dyndns\\.info/\" to=\"https://noodlebox.dyndns.info/\"/><rule from=\"^http://(?:www\\.)?installgentoo\\.net/\" to=\"https://www.installgentoo.net/\"/><rule from=\"^http://youshould\\.installgentoo\\.net/\" to=\"https://youshould.installgentoo.net/\"/></ruleset>", "<ruleset name=\"Yotsuba Archiver (partial)\" default_off=\"failed ruleset test\" f=\"Yotsuba-Archiver.xml\"><rule from=\"^http://archive\\.installgentoo\\.net/\" to=\"https://archive.installgentoo.net/\"/></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\" 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=\"^\\.youbetrayedus\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Youku.com (partial)\" platform=\"mixedcontent\" f=\"Youku.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Youm7.com (partial)\" 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\" f=\"Young-Pirates.Eu.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"YoungMinds.org.uk\" default_off=\"failed ruleset test\" 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\" 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\" 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=\"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=\"self-signed\" f=\"YourPSHome.net.xml\"><securecookie host=\"^www\\.yourpshome\\.net$\" name=\".+\"/><rule from=\"^http://cdn\\.yourpshome\\.net/\" to=\"https://www.yourpshome.net/\"/><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 Logical Fallacy Is.com (partial)\" f=\"Your_Logical_Fallacy_Is.com.xml\"><rule from=\"^http://www\\.yourlogicalfallacyis\\.com/\" to=\"https://yourlogicalfallacyis.com/\"/><rule from=\"^http:\" to=\"https:\"/></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\" f=\"Your_Video_Host.com.xml\"><securecookie host=\"^\\.yourvideohost\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"yourcounciljobs.co.uk\" 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\" 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=\"YoursAV.net\" default_off=\"self-signed\" f=\"YoursAV.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Yourvideofile.org\" f=\"Yourvideofile.org.xml\"><rule from=\"^http://(?:www\\.)?yourvideofile\\.org/\" to=\"https://www.yourvideofile.org/\"/></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)\" 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\" f=\"YunoHost.org.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Yuri.org.uk\" f=\"Yuri.org.uk.xml\"><rule from=\"^http://www\\.yuri\\.org\\.uk/\" to=\"https://www.yuri.org.uk/\"/></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=\"ZOUM.ca\" 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\" f=\"ZTunnel.xml\"><securecookie host=\"^(?:w*\\.)?ztunnel\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ZUNO BANK AG\" f=\"ZUNO_BANK_AG.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ZUS.pl (partial)\" 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\" 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\" 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=\"Zam Network (partial)\" 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=\"Zamzar.com (partial)\" f=\"Zamzar.com.xml\"><exclusion pattern=\"^http://(?:www\\.)?zamzar\\.com/+(?:$|\\?)\"/><exclusion pattern=\"^http://(?:www\\.)?zamzar\\.com/blank\\.htm\"/><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)\" 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\" 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\" f=\"Zap_Lab.xml\"><securecookie host=\"^(?:.*\\.)?thezaplab\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Zapier.com\" f=\"Zapier.com.xml\"><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=\"Zaption\" 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\" default_off=\"failed ruleset test\" 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)\" 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=\"Zayo.com (mixed content)\" platform=\"mixedcontent\" f=\"Zayo.com.xml\"><securecookie host=\"^(?:www)?\\.zayo\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Zazzle (mismatches)\" default_off=\"mismatch\" 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=\"Zdroj&#225;k.cz\" f=\"Zdrojak.cz.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Zedo (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=\"connection dropped\" 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 (partial)\" f=\"Zemanta.xml\"><rule from=\"^http://img\\.zemanta\\.com/\" to=\"https://s3.amazonaws.com/img.zemanta.com/\"/><rule from=\"^http://content\\.zemanta\\.com/\" to=\"https://d25rszouhfu52v.cloudfront.net/\"/><rule from=\"^http://i\\.zemanta\\.com/\" to=\"https://d1r7mnnsvydqxs.cloudfront.net/\"/></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=\"ZenMate.com (partial)\" f=\"ZenMate.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><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)\" 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)\" 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://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://radar\\.zendesk\\.com/\" to=\"https://zendesk.github.io/radar/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Zendition.net\" 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=\"mismatch\" 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)\" f=\"ZeniMax-Media.xml\"><rule from=\"^https?://static\\.zenimax\\.com/\" to=\"https://d1z7bw3wiqzsm4.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Zeno's Forensic Site\" default_off=\"failed ruleset test\" f=\"Zenos_Forensic_Site.xml\"><securecookie host=\"^(?:www\\.)?forensic\\.to$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"zenspider.com (partial)\" platform=\"cacert\" f=\"Zenspider.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Zentyal.com (partial)\" f=\"Zentyal.com.xml\"><securecookie host=\"^\\.store\\.zentyal\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Zentyal.org (partial)\" f=\"Zentyal.org.xml\"><securecookie host=\"^(?:forum|tracker|wiki)\\.zentyal\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Zerigo.com\" 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=\"ZeroNet.io\" f=\"ZeroNet.io.xml\"><securecookie host=\".\" name=\".\"/><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 (partial)\" default_off=\"failed ruleset test\" f=\"Zeromq.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=\"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)\" f=\"ZgnCDN.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Zhihu (partial)\" f=\"Zhihu.com.xml\"><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://(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\" 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=\"connection 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)\" f=\"Zing_Checkout.com.xml\"><rule from=\"^http://app\\.zingcheckout\\.com/\" to=\"https://app.zingcheckout.com/\"/></ruleset>", "<ruleset name=\"Zipcar.com\" 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=\"Ziplist.com\" f=\"Ziplist.com.xml\"><rule from=\"^http://(?:www\\.)?ziplist\\.com/\" to=\"https://www.ziplist.com/\"/></ruleset>", "<ruleset name=\"Zipy.co.il\" 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\" 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=\"connection dropped\" 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=\"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=\"Zonglovani.info\" f=\"Zonglovani.info.xml\"><rule from=\"^http://(?:www\\.)?zonglovani\\.info/\" to=\"https://zonglovani.info/\"/></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=\"connection dropped\" 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\" 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\" 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=\"Zotero.org\" f=\"Zotero.xml\"><securecookie host=\"^(?:.*\\.)?zotero\\.org$\" 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)\" 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=\"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)\" 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 mixedcontent\" f=\"Zugaina-mismatches.xml\"><rule from=\"^http://(?:www\\.)?zugaina\\.com/\" to=\"https://zugaina.com/\"/></ruleset>", "<ruleset name=\"Zugaina.org (expired)\" platform=\"cacert\" default_off=\"expired\" f=\"Zugaina.org-problematic.xml\"><rule from=\"^http://zugaina\\.org/\" to=\"https://www.zugaina.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Zugaina (partial)\" f=\"Zugaina.xml\"><rule from=\"^http://gentoo\\.zugaina\\.org/\" to=\"https://gpo.zugaina.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Zuhah.com\" f=\"Zuhah.com.xml\"><securecookie host=\".\" name=\".\"/><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)\" 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\" f=\"Zylon.net-falsemixed.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Zylon.net (partial)\" 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=\"acast.com\" f=\"acast.com.xml\"><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=\"Achaea\" f=\"achaea.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Active24\" f=\"active24.xml\"><rule from=\"^http://active24\\.cz/\" to=\"https://www.active24.cz/\"/><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=\"adswitcher.com\" f=\"adswitcher.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><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=\"Adult Swim.com\" platform=\"mixedcontent\" f=\"adultswim.xml\"><securecookie host=\"^www\\.adultswim\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Aetolia\" f=\"aetolia.xml\"><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=\"Age UK.org.uk (partial)\" f=\"ageuk.org.uk.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=\"aircrack-ng.org (partial)\" f=\"aircrack-ng.org.xml\"><securecookie host=\"^(?:forum|trac)\\.aircrack-ng\\.org$\" name=\".+\"/><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=\"Allianz.com (partial)\" 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=\"Amazon.com.mx\" f=\"amazon.com.mx.xml\"><securecookie host=\"^\\w\" 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=\"Anchor.net.au\" f=\"anchor.net.au.xml\"><securecookie host=\".\" name=\".\"/><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=\"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=\"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=\"Arhivach\" f=\"arhivach.org.xml\"><securecookie host=\"(.+\\.)?arhivach\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ArmA 2 (Partial)\" default_off=\"Bad Cert\" f=\"arma2.com.xml\"><rule from=\"^http://(?:www\\.)?arma2\\.com/\" to=\"https://www.arma2.com/\"/></ruleset>", "<ruleset name=\"ArmA Tactics (Partial)\" default_off=\"Bad Cert\" f=\"armatactics.com.xml\"><rule from=\"^http://(?:www\\.)?armatactics\\.com/\" to=\"https://www.armatactics.com/\"/></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=\"arte (partial)\" platform=\"mixedcontent\" f=\"arte.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"assured\" f=\"assured.se.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"atlseccon\" f=\"atlseccon.xml\"><rule from=\"^http://(www\\.)?atlseccon\\.com/\" to=\"https://atlseccon.com/\"/></ruleset>", "<ruleset name=\"ATM IA.com\" f=\"atmia.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><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=\"Avco Systems.com\" f=\"avcosystems.com.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=\"Avoin ministeri&#246;\" 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\" f=\"avoinyliopisto.xml\"><rule from=\"^http://(?:www\\.)?avoinyliopisto\\.fi/\" to=\"https://www.avoinyliopisto.fi/\"/><securecookie host=\"^(?:www)?\\.avoinyliopisto\\.fi\" name=\".*\"/></ruleset>", "<ruleset name=\"Aylesbury Vale DC.gov.uk (partial)\" 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=\"azalead.com\" f=\"azalead.com.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=\"Bad Dragon.com (partial)\" 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=\"bandaancha.eu\" f=\"bandaancha.eu.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Barnardos.org.uk (partial)\" 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)\" f=\"barnsley.gov.uk.xml\"><securecookie host=\"^\\.\" name=\"^_gat?$\"/><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.objective.co.uk/portal\"/><rule from=\"^http://consult\\.barnsley\\.gov\\.uk/\" to=\"https://barnsley.objective.co.uk/\"/><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=\"bato.to\" f=\"bato.to.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bedford.gov.uk (partial)\" 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=\"Beej.us\" f=\"beej.us.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Beers of Europe\" platform=\"mixedcontent\" f=\"beersofeurope.co.uk.xml\"><rule from=\"^http://www\\.beersofeurope\\.co\\.uk/\" to=\"https://www.beersofeurope.co.uk/\"/></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=\"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=\"Better Science.org\" f=\"betterscience.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><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=\"bezrealitky.cz\" f=\"bezrealitky.cz.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"bger.ch\" f=\"bger.ch.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bider &amp; Tanner\" f=\"biderundtanner.ch.xml\"><rule from=\"^http://biderundtanner\\.ch/\" to=\"https://www.biderundtanner.ch/\"/><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=\"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)\" f=\"birmingham.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><securecookie host=\"^\\.\" name=\"^(?:incap_ses|visid_incap)_\"/><rule from=\"^http://consult\\.birmingham\\.gov\\.uk/+(?:\\?.*)?$\" to=\"https://birmingham.objective.co.uk/portal\"/><rule from=\"^http://consult\\.birmingham\\.gov\\.uk/\" to=\"https://birmingham.objective.co.uk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BitCasa.com (partial)\" 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=\"BitcoinTrezor.com\" f=\"bitcointrezor.com.xml\"><securecookie host=\".\" name=\".\"/><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=\"Bizx.info\" f=\"bizx.info.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"blackarrowsoftware.com\" f=\"blackarrowsoftware.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BLAKE2.net\" f=\"blake2.xml\"><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=\"BNL.gov (partial)\" 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=\"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=\"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=\"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=\"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/portal\"/><rule from=\"^http://consult\\.bracknell-forest\\.gov\\.uk/\" to=\"https://bracknell-forest-consult.objective.co.uk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BrassRing.com\" f=\"brassring.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Brave.com\" f=\"brave.com.xml\"><securecookie host=\".\" name=\".\"/><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=\"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=\"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=\"btjunkie\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"btjunkie.xml\"><rule from=\"^http://dl\\.btjunkie\\.org/\" to=\"https://dl.btjunkie.org/\"/><rule from=\"^http://(?:www\\.)?btjunkie\\.org/\" to=\"https://btjunkie.org/\"/></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=\"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=\"bunkus.org\" f=\"bunkus.org.xml\"><securecookie host=\"^www\\.bunkus\\.org$\" name=\".+\"/><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=\"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=\"Buy with Confidence.gov.uk\" f=\"buywithconfidence.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"bypassingcensorshipinthe.uk\" f=\"bypassingcensorshipinthe.uk.xml\"><securecookie host=\"^.*\\.bypassingcensorshipinthe\\.uk$\" 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=\"Campus Technology.com\" f=\"campustechnology.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cancer Research UK.org (partial)\" 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=\"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 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=\"Cardiff.gov.uk (partial)\" 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\" f=\"carecareersdevon.org.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Care International.org.uk (partial)\" f=\"careinternational.org.uk.xml\"><securecookie host=\"^\\.\" name=\"^_gat?$\"/><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=\"cash.ch\" f=\"cash.ch.xml\"><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=\"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=\"cede\" f=\"cede.ch.xml\"><rule from=\"^http://(?:www\\.)?cede\\.ch/\" to=\"https://www.cede.ch/\"/></ruleset>", "<ruleset name=\"Centrify.com (partial)\" 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=\"CEOP.police.uk\" f=\"ceop.police.uk.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=\"&#268;esk&#253; hosting\" f=\"cesky-hosting.cz.xml\"><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=\"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=\"Checkbox.com\" f=\"checkbox.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Checkmyrota\" f=\"checkmyrota.xml\"><rule from=\"^http:\" to=\"https:\"/><rule from=\"^https://(?:www\\.)?checkmyrota\\.com/\" to=\"https://checkmyrota.com/\"/></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|mylimehouse)\\.cheshirewestandchester\\.gov\\.uk/+(?:\\?.*)?$\" to=\"https://epnbc-consult.objective.co.uk/portal\"/><rule from=\"^http://(?:consult|mylimehouse)\\.cheshirewestandchester\\.gov\\.uk/\" to=\"https://epnbc-consult.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=\"ChinaFile.com (partial)\" f=\"chinafile.com.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=\"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)\" f=\"citizensadvice.org.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Citra-emu.org\" 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 Service.gov.uk (partial)\" 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=\"CLAS Consultants\" default_off=\"failed ruleset test\" f=\"clasconsultants.net.xml\"><securecookie host=\"^(?:.*\\.)?clasconsultants\\.net$\" name=\".+\"/><rule from=\"^http://clasconsultants\\.net/\" to=\"https://www.clasconsultants.net/\"/><rule from=\"^http://([^/:@]+)?\\.clasconsultants\\.net/\" to=\"https://$1.clasconsultants.net/\"/></ruleset>", "<ruleset name=\"CloudShark.org\" f=\"cloudshark.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><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=\"coinmarketcap.com\" f=\"coinmarketcap.com.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=\"Communities.gov.uk (partial)\" f=\"communities.gov.uk.xml\"><securecookie host=\"^\\.\" name=\"^_gat?$\"/><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=\"ComputerBild.de\" 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=\"Connect to Support.org (partial)\" f=\"connecttosupport.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><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=\"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=\"Copeland.gov.uk (partial)\" f=\"copeland.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Coralproject\" f=\"coralproject.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cotswold.gov.uk (partial)\" f=\"cotswold.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://consult\\.cotswold\\.gov\\.uk/+(?:\\?.*)?$\" to=\"https://cotswold.objective.co.uk/portal\"/><rule from=\"^http://consult\\.cotswold\\.gov\\.uk/\" to=\"https://cotswold.objective.co.uk/\"/><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=\"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\" f=\"cpaste.xml\"><securecookie host=\"^cpaste\\.org$\" name=\".+\"/><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=\"crazespaces.pw\" f=\"crazespaces.pw.xml\"><securecookie host=\"^(www\\.)?crazespaces\\.pw$\" name=\".+\"/><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=\"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=\"CryptoCoding\" f=\"cryptocoding.xml\"><securecookie host=\"^cryptocoding\\.net$\" name=\".+\"/><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=\"CSC Portal.org.uk\" f=\"cscportal.org.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><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=\"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=\"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=\"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=\"Data Exchange Wales.org.uk\" f=\"dataexchangewales.org.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DataMotion.com (partial)\" f=\"datamotion.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"daydeal\" f=\"daydeal.ch.xml\"><rule from=\"^http://(?:www\\.)?daydeal\\.ch/\" to=\"https://www.daydeal.ch/\"/></ruleset>", "<ruleset name=\"DCERPC\" f=\"dcerpc.org.xml\"><rule from=\"^http://(?:www\\.)?dcerpc\\.org/\" to=\"https://www.dcerpc.org/\"/></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=\"deSEC\" f=\"deSEC.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"declaredthoughtfulness.co\" f=\"declaredthoughtfulness.xml\"><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=\"dennogumi.org\" f=\"dennogumi.org.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"derStandard.at (partial)\" f=\"derstandard.at.xml\"><exclusion pattern=\"^http://derstandard\\.at/$\"/><exclusion pattern=\"^http://www\\.derstandard\\.at/$\"/><exclusion pattern=\"^http://mobil\\.derstandard\\.at/$\"/><rule from=\"^http://(www\\.)?derstandard\\.at/(ajax|css|img|js|kursinfo|wetter/Content/img)/\" to=\"https://derstandard.at/$2/\"/><rule from=\"^http://mobil\\.derstandard\\.at/(ajax|css|img|js|kursinfo|wetter/Content/img)/\" to=\"https://mobil.derstandard.at/$1/\"/><rule from=\"^http://epaper\\.derstandard\\.at/\" to=\"https://epaper.derstandard.at/\"/><rule from=\"^http://images\\.derstandard\\.at/\" to=\"https://images.derstandard.at/\"/><rule from=\"^http://livestat\\.derstandard\\.at/\" to=\"https://livestat.derstandard.at/\"/></ruleset>", "<ruleset name=\"deutschepost\" f=\"deutschepost.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"deutschland-spielt.de\" f=\"deutschland-spielt.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Devalate.com\" f=\"devalate.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><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=\"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=\"DHHS.gov (partial)\" f=\"dhhs.gov.xml\"><rule from=\"^http://(?:www\\.)?ori\\.dhhs\\.gov/\" to=\"https://ori.hhs.gov/\"/></ruleset>", "<ruleset name=\"DHI-scotland.com\" f=\"dhi-scotland.com.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=\"divShare.com\" platform=\"mixedcontent\" 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=\"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=\"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=\"DomainSite.com\" f=\"domainsite.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><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=\".swiss\" f=\"dot.swiss.xml\"><rule from=\"^http://nic\\.swiss/\" to=\"https://www.nic.swiss/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"dribper.com\" f=\"dribper.com.xml\"><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=\"durchmesser.ch\" f=\"durchmesser.ch.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"e-ShopBrokers\" default_off=\"failed ruleset test\" f=\"e-ShopBrokers.xml\"><securecookie host=\"^www\\.eshopbrokers\\.co\\.uk$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?eshopbrokers\\.co\\.uk/\" to=\"https://www.eshopbrokers.co.uk/\"/></ruleset>", "<ruleset name=\"e-pay Capita.com\" f=\"e-paycapita.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><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\" 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\" 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=\"eagereyes.org\" f=\"eagereyes.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 Sussex.gov.uk (partial)\" f=\"eastsussex.gov.uk.xml\"><securecookie host=\"^\\.\" name=\"^_gat?$\"/><securecookie host=\"^\\w\" name=\".\"/><securecookie host=\"^\\.new\\.\" name=\".\"/><rule from=\"^http://eastsussex\\.gov\\.uk/\" to=\"https://www.eastsussex.gov.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=\"EatNow.com.au\" f=\"eatnow.com.au.xml\"><securecookie host=\"^\\.\" name=\"^_gat?$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Echo24.cz\" f=\"echo24.cz.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=\"Edge.ie\" f=\"edge.ie.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Education.gov.uk (partial)\" 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=\"EForms.gov.ie\" f=\"eforms.gov.ie.xml\"><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=\"ELEKTRO PALOU&#268;EK\" f=\"elektro-paloucek.cz.xml\"><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=\"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\" f=\"email-comparethemarket.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"empirehost.me\" f=\"empirehost.me.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=\"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=\"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=\"E.ON IT Hungary\" f=\"eon.xml\"><securecookie host=\"^www\\.eon-hungaria\\.com$\" name=\".*\"/><rule from=\"^http://www\\.eon-hungaria\\.com/\" to=\"https://www.eon-hungaria.com/\"/></ruleset>", "<ruleset name=\"etherpad.fr\" f=\"etherpad.fr.xml\"><rule from=\"^http://(?:www\\.)?etherpad\\.fr/\" to=\"https://etherpad.fr/\"/></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=\"eurobilltracker.com\" f=\"eurobilltracker.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Europe-Consommateurs.eu\" default_off=\"mismatched, self-signed\" f=\"europe-consommateurs.eu.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Europeana.eu (partial)\" platform=\"mixedcontent\" f=\"europeana.eu.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=\"Ewebcart.com\" f=\"ewebcart.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><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=\"f4map.com\" f=\"f4map.com.xml\"><securecookie host=\"^(www\\.|demo\\.)f4map\\.com\" name=\".+\"/><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=\"fakena.me\" f=\"fakena.me.xml\"><securecookie host=\"^fakena\\.me$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FARA.gov (partial)\" f=\"fara.gov.xml\"><securecookie host=\"^\\w\" name=\".\"/><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=\"fiddler2.com\" f=\"fiddler2.com.xml\"><securecookie host=\"^(?:www\\.)?fiddler2\\.com\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Filecrypt.cc\" f=\"filecrypt.cc.xml\"><securecookie host=\"^(www\\.)?filecrypt\\.cc\" 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=\"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\" f=\"finlex.xml\"><rule from=\"^http://(?:www\\.)?finlex\\.fi/\" to=\"https://www.finlex.fi/\"/></ruleset>", "<ruleset name=\"Firmstep.com (MCB)\" platform=\"mixedcontent\" 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=\"flinkster\" f=\"flinkster.xml\"><rule from=\"^http://www\\.flinkster\\.de/\" to=\"https://www.flinkster.de/\"/></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=\"Food.gov.uk (partial)\" f=\"food.gov.uk.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|_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=\"ForgeRock.com (partial)\" f=\"forgerock.com.xml\"><securecookie host=\"^\\.\" name=\"^_gat?$\"/><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=\"Fossies.org\" f=\"fossies.org.xml\"><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=\"freecode.club\" f=\"freecode.club.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"freedesktop.org (false MCB)\" platform=\"mixedcontent\" f=\"freedesktop.org-falsemixed.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"freenode\" f=\"freenode.xml\"><securecookie host=\"\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\".\\.freenode\\.(net|org)$\" name=\".\"/><securecookie host=\"\\.freenode\\.org$\" name=\".+\"/><rule from=\"^http://freenode\\.org/\" to=\"https://www.freenode.org/\"/><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=\"freshmeat.club\" f=\"freshmeat.club.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"froggyNET.com\" default_off=\"shows another domain\" f=\"froggyNET.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=\"FT-static.com (partial)\" f=\"ft-static.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FT.com (MCB)\" platform=\"mixedcontent\" f=\"ft.com-mixedcontent.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ftp.rnl.tecnico.ulisboa.pt\" f=\"ftp.rnl.tecnico.ulisboa.pt.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=\"FX Site Compat.com\" f=\"fxsitecompat.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GAMECRAFT.CZ\" f=\"gamecraft.cz.xml\"><rule from=\"^http://www\\.gamecraft\\.cz/\" to=\"https://gamecraft.cz/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Gargoyle-Router.com\" 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=\"gazellegames.net\" f=\"gazellegames.xml\"><rule from=\"^http://(?:www\\.)?gazellegames\\.net/\" to=\"https://gazellegames.net/\"/></ruleset>", "<ruleset name=\"GCSip.com\" f=\"gcsip.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Geenstijl\" f=\"geenstijl.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"genua.de\" f=\"genua.de.xml\"><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=\"Get Gophish.com\" f=\"getgophish.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"get Mondo.co.uk\" f=\"getmondo.co.uk.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"get Nikola.com\" f=\"getnikola.com.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"giffgaff\" f=\"giffgaff.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GIMP\" f=\"gimp.org.xml\"><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=\"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=\"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=\"go!Mokulele\" default_off=\"failed ruleset test\" f=\"goMokulele.xml\"><rule from=\"^http://(?:www\\.)?iflygo\\.com/\" to=\"https://www.iflygo.com/\"/></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=\"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\" f=\"goldesel.to.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\" 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=\"Grist.org\" f=\"grist.org.xml\"><securecookie host=\"^\\.\" name=\"^__qca$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"growth.supply\" f=\"growth-supply.xml\"><securecookie host=\"^blog\\.growth\\.supply$\" name=\".+\"/><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=\"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=\"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=\"hackint.org\" f=\"hackint.org.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Halton.gov.uk (false MCB)\" platform=\"mixedcontent\" f=\"halton.gov.uk-falsemixed.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Halton.gov.uk (partial)\" 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=\"Havant.gov.uk (partial)\" f=\"havant.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"haveibeenpwned.com\" f=\"haveibeenpwned.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hazro.com\" 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=\"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=\"hebdo.ch\" f=\"hebdo.ch.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=\"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=\"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.objective.co.uk/portal\"/><rule from=\"^http://consult\\.highland\\.gov\\.uk/\" to=\"https://highland.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=\"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=\"Hipertextual.com\" f=\"hipertextual.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"hitta\" f=\"hitta.se.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hong Kong Wetland Park (partial)\" f=\"hkwetlandpark.xml\"><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=\"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=\"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 (partial)\" f=\"honeynet.org.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\"^\\w\" name=\".\"/><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=\"Hosting (partial)\" default_off=\"connection dropped\" f=\"hosting.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"hotel.ch\" f=\"hotel.ch.xml\"><rule from=\"^http://(?:www\\.)?hotel\\.ch/\" to=\"https://www.hotel.ch/\"/></ruleset>", "<ruleset name=\"Hotelplan\" f=\"hotelplan.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=\"HPS.org\" f=\"hps.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"HSCIC.gov.uk (partial)\" f=\"hscic.gov.uk.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=\"Hunton Privacy Blog.com\" f=\"huntonprivacyblog.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"huuto.net\" f=\"huuto.net.xml\"><rule from=\"^http://(?:www\\.)?huuto\\.net/\" to=\"https://salattu.huuto.net/\"/><rule from=\"^http://salattu\\.huuto\\.net/\" to=\"https://salattu.huuto.net/\"/><rule from=\"^http://kuvat2\\.huuto\\.net/\" to=\"https://kuvat2.huuto.net/\"/><rule from=\"^http://kuvat\\.?huuto\\.net/\" to=\"https://kuvat.huuto.net/\"/></ruleset>", "<ruleset name=\"Hybrid -- Cryptocurrency Combined\" default_off=\"expired\" f=\"hyb.pw.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\" f=\"hydraproxy.party.xml\"><securecookie host=\"^.*\\.hydraproxy\\.party$\" 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=\"iCarol\" f=\"iCarol.xml\"><securecookie host=\"^webapp\\.icarol\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"iEntry (partial)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" 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=\"iTerm2\" f=\"iTerm2.xml\"><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=\"I CAN.org.uk (partial)\" f=\"ican.org.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><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=\"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=\"illustre.ch\" f=\"illustre.ch.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"imagecurl\" f=\"imagecurl.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=\"imgking\" f=\"imgking.co.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\" 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=\"impressiondesk.com\" f=\"impressiondesk.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"infosactu.com\" f=\"infosactu.com.xml\"><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=\"InnerBody.com\" f=\"innerbody.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><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=\"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\" f=\"instasync.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"IntelliPoker.bg\" f=\"intellipoker.bg.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"IntellNews.net\" 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=\"Internet Essentials.com\" 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=\"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=\"iplocation.net\" f=\"iplocation.net.xml\"><securecookie host=\"^www\\.iplocation\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"irc.lc\" f=\"irc.lc.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=\"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)\" 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=\"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=\"itsH.BO\" f=\"itsh.bo.xml\"><securecookie host=\".\" name=\".\"/><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=\"IXmaps.ca\" f=\"ixmaps.ca.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=\"JBox.com\" f=\"jbox.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><securecookie host=\"^\\.\" name=\"^frontend$\"/><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=\"Jekyll\" f=\"jekyllrb.com.xml\"><rule from=\"^http(s)?://www.jekyllrb.com/\" to=\"https://jekyllrb.com/\"/><rule from=\"^http:\" to=\"https:\"/><securecookie host=\"^(www\\.)?jekyllrb\\.com$\" name=\".+\"/><securecookie host=\"^talk\\.jekyllrb\\.com$\" name=\".+\"/></ruleset>", "<ruleset name=\"jmdekker.it\" f=\"jmdekker.it.xml\"><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=\"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=\"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=\"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=\"Just Eat\" 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=\"justseed.it\" f=\"justseedit.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"jwz.org\" default_off=\"self-signed\" f=\"jwz.org.xml\"><rule from=\"^http://(?:www\\.)?jwz\\.org/\" to=\"https://www.jwz.org/\"/></ruleset>", "<ruleset name=\"kabelbw\" f=\"kabelbw.xml\"><rule from=\"^http://www\\.kabelbw\\.de/\" to=\"https://www.kabelbw.de/\"/></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=\"Schweizer Kantonalbanken\" 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=\"Kasiopea\" f=\"kasiopea.matfyz.cz.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Kennedy-Center.org (partial)\" 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=\"Kids.org.uk (partial)\" f=\"kids.org.uk.xml\"><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=\"kirlism.ga\" f=\"kirlism.ga.xml\"><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=\"Klikki.fi\" f=\"klikki.fi.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=\"Krystal.info\" default_off=\"expired\" f=\"krystal.info.xml\"><securecookie host=\"^\\w\" name=\".\"/><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=\"kupschke.net\" f=\"kupschke.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"kva\" f=\"kva.se.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"lackname.org\" f=\"lackname.org.xml\"><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=\"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=\"LeBonCoin (Partial)\" 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=\"Leeds.gov.uk (partial)\" f=\"leeds.gov.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=\"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)\" f=\"lenta.ru.xml\"><securecookie host=\"^\\.\" name=\"^_gat?$\"/><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=\"LessButtons.com\" f=\"lessbuttons.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><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=\"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=\"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=\"Lichfield DC.gov.uk (partial)\" f=\"lichfielddc.gov.uk.xml\"><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=\"linguee.de\" f=\"linguee.de.xml\"><securecookie host=\"www\\.linguee\\.de$\" 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=\"Local Motors.com\" f=\"localmotors.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Localphone.com (partial)\" f=\"localphone.com.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=\"lotro.com (partial)\" f=\"lotro.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"luna1.co\" f=\"luna1.co.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Lusternia\" f=\"lusternia.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=\"Yaziba webmail\" f=\"mail.yaziba.net.xml\"><rule from=\"^http://mail\\.yaziba\\.net/\" to=\"https://mail.yaziba.net/\"/></ruleset>", "<ruleset name=\"maksukaista.fi\" f=\"maksukaista.fi.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Maldon.gov.uk (partial)\" f=\"maldon.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><securecookie host=\"^\\.www\\.\" name=\".\"/><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=\"Mandiant (partial)\" f=\"mandiant.com.xml\"><rule from=\"^http://(?:www\\.)?mandiant\\.com/\" to=\"https://www.mandiant.com/\"/></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=\"Marks Daily Apple.com\" default_off=\"connection refused\" f=\"marksdailyapple.xml\"><rule from=\"^http://(?:www\\.)?marksdailyapple\\.com/\" to=\"https://www.marksdailyapple.com/\"/></ruleset>", "<ruleset name=\"Marktplaats (buggy)\" platform=\"mixedcontent\" default_off=\"Mixed content block breaks advert editing and certain images\" f=\"marktplaats.nl.xml\"><exclusion pattern=\"^http://www\\.marktplaats\\.(?:com|net|nl)/kijkinuwwijk\\.html\"/><rule from=\"^http://([^/:@]*)\\.marktplaats\\.(nl|com|net)/\" to=\"https://$1.marktplaats.$2/\"/><rule from=\"^https://www\\.marktplaats\\.nl/kijkinuwwijk\\.html\" to=\"http://www.marktplaats.nl/kijkinuwwijk.html\" downgrade=\"1\"/></ruleset>", "<ruleset name=\"MathJax (partial)\" f=\"mathjax.xml\"><securecookie host=\"^\\.?mathjax\\.org$\" name=\"^__cfduid$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mattermark.com\" f=\"mattermark.com.xml\"><securecookie host=\"^\\.\" name=\"^mkt_referer$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MCC.gov\" f=\"mcc.gov.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=\"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)\" f=\"medicaid.gov.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Medicare.gov (partial)\" f=\"medicare.gov.xml\"><securecookie host=\"^\\w\" name=\".\"/><securecookie host=\"^\\.\" name=\"^_gat?$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MegaAdventure.com.au (partial)\" 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=\"Menulog.com.au\" 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=\"Merkle Inc.com (partial)\" f=\"merkleinc.com.xml\"><securecookie host=\"^(?!www2\\.)\\w\" name=\".\"/><rule from=\"^http://www2\\.merkleinc\\.com/\" to=\"https://pi.pardot.com/\"/><exclusion pattern=\"^http://www2\\.merkleinc\\.com/+(?!l/)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Midkemia online\" f=\"midkemiaonline.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Migros\" f=\"migros.xml\"><rule from=\"^http://melectronics\\.ch/\" to=\"https://www.melectronics.ch/\"/><rule from=\"^http://migrosbank\\.ch/\" to=\"https://www.migrosbank.ch/\"/><rule from=\"^http://m-fanshop\\.ch/\" to=\"https://www.m-fanshop.ch/\"/><rule from=\"^http://migros-shop\\.de/\" to=\"https://www.migros-shop.de/\"/><rule from=\"^http://migrosmagazin\\.ch/\" to=\"https://www.migrosmagazin.ch/\"/><rule from=\"^http://migrosmagazine\\.ch/\" to=\"https://www.migrosmagazine.ch/\"/><rule from=\"^http://(?:www\\.)?brueckenbauer\\.ch/\" to=\"https://www.migrosmagazin.ch/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mike West.org\" f=\"mikewest.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"mjdk.dk\" f=\"mjdk.dk.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MK2 (partial)\" f=\"mk2.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http://(www\\.)?mk2\\.com/\" to=\"https://www.mk2.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"mobile.de\" 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=\"mobilism.me\" platform=\"mixedcontent\" f=\"mobilism.me.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Moderngov.co.uk (partial)\" f=\"moderngov.co.uk.xml\"><exclusion pattern=\"^http://rbwm\\.moderngov\\.co\\.uk/+(?![Ss]ite[Ss]pecific/|documents/|ie(?:[Ll]ogon|RegisterUser)\\.aspx|mgimages/|jquery-ui/)\"/><exclusion pattern=\"^http://rutlandcounty\\.moderngov\\.co\\.uk/+(?![Ss]ite[Ss]pecific/|documents/|ie[Ll]ogon\\.aspx|mgimages/|jquery-ui/)\"/><securecookie host=\"^(?!rbwm\\.|rutlandcounty\\.)\\w\" name=\".\"/><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=\"moncompteformation.gouv.fr\" f=\"moncompteformation.gouv.fr.xml\"><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=\"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=\"MouseJack.com\" 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=\"mozillazine-fr (partial)\" f=\"mozillazine-fr.xml\"><rule from=\"^http://(www\\.)?mozillazine-fr\\.org/\" to=\"https://mozillazine-fr.org/\"/></ruleset>", "<ruleset name=\"MPC-HC.org\" f=\"mpc-hc.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Msgme.com\" f=\"msgme.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Michigan State University (partial)\" default_off=\"Have not caught all exclusion patterns\" f=\"msu.edu.xml\"><exclusion pattern=\"^http://(?:grad|acadgov|trustees|president|provost|ur|rha)\\.\"/><exclusion pattern=\"^http://www\\.(?:vprgs|vpfo|vps|canr)\\.\"/><rule from=\"^http://msu\\.edu/\" to=\"https://msu.edu/\"/><rule from=\"^http://([^/:@\\.]+\\.)msu\\.edu/\" to=\"https://$1msu.edu/\"/><securecookie host=\"^(?:www)?\\.msu\\.edu\" name=\".*\"/></ruleset>", "<ruleset name=\"MTS Welding.co.uk (partial)\" 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=\"Mulliner.org\" f=\"mulliner.org.xml\"><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 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=\"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=\"mzl.la\" f=\"mzl.la.xml\"><rule from=\"^http://www\\.mzl\\.la/\" to=\"https://mzl.la/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"n-tv.de (partial)\" platform=\"mixedcontent\" f=\"n-tv.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"&#268;esk&#253; n&#225;rodn&#237; panel\" f=\"narodnipanel.cz.xml\"><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=\"Neovim.io\" f=\"neovim.io.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Nerdster\" f=\"nerdster.org.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=\"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=\"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=\"News Ledge.com\" f=\"newsledge.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><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=\"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=\"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\" 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=\"North Yorks.gov.uk (partial)\" f=\"northyorks.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Not Always\" f=\"notalways.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\" 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=\"NuevoCloud.com\" f=\"nuevocloud.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><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=\"NYPF.org.uk\" f=\"nypf.org.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"nzpug.org\" f=\"nzpug.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NZZ (partial)\" f=\"nzz.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=\"OBI\" f=\"obi.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)\" f=\"objective.co.uk.xml\"><securecookie host=\"^\\.\" name=\"^(?:_gat?|ANONID_FS\\d+|ANONID\\d+|VISID\\d+)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://([\\w-]+)\\.objective\\.co\\.uk/+(?:\\?.*)?$\" to=\"https://$1.objective.co.uk/portal\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"&#214;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)\" f=\"ofsted.gov.uk.xml\"><securecookie host=\"^\\.\" name=\"^_gat?$\"/><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=\"OneClickdigital.eu\" f=\"oneclickdigital.eu.xml\"><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=\"OnTheHub (partial)\" platform=\"mixedcontent\" f=\"onthehub.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"openDesktop.org (mismatches)\" default_off=\"mismatch\" f=\"openDesktop-mismatches.xml\"><exclusion pattern=\"^http://(?:www\\.)?opendesktop\\.org/\"/><exclusion pattern=\"^http://(?:www\\.)?(?:arch|beryl|box|cli|compiz|debian|e17|ede|eyeos|frugalware|gentoo|gnome|gtk|java|kde|linuxmint|maemo|qt|suse|ubuntu|wine|xfce)-(?:apps|art|files|help|look|stuff|themes)\\.org/(?:ad|cometchat|comments|CONTENT|fancybox|img|styles|usermanager)/\"/><exclusion pattern=\"^http://(?:www\\.)?(?:(?:gnomefiles|linux42|opentemplate|scribusstuff|vlc-addons)\\.org|(?:linuxdaily|open-pc|openskillz)\\.com)/(?:ad|cometchat|comments|CONTENT|fancybox|img|styles|usermanager)/\"/><exclusion pattern=\"^http://addons\\.videolan\\.org/(?:ad|cometchat|comments|CONTENT|fancybox|img|styles|usermanager)/\"/><securecookie host=\"^(?:arch|beryl|box|cli|compiz|debian|e17|ede|eyeos|frugalware|gentoo|gnome|gtk|java|kde|linuxmint|maemo|qt|suse|ubuntu|wine|xfce)-(?:apps|art|files|help|look|stuff|themes)\\.org$\" name=\".*\"/><securecookie host=\"^(?:gnomefiles|linux42|opentemplate|scribusstuff|addons\\.videolan|vlc-addons)\\.org$\" name=\".*\"/><securecookie host=\"^(?:linuxdaily|open-pc|openskillz)\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?(arch|beryl|box|cli|compiz|debian|e17|ede|eyeos|frugalware|gentoo|gnome|gtk|java|kde|linuxmint|maemo|qt|suse|ubuntu|wine|xfce)-(apps|art|files|help|look|stuff|themes)\\.org/\" to=\"https://$1-$2.org/\"/><rule from=\"^http://(?:www\\.)?((?:gnomefiles|linux42|opentemplate|scribusstuff|vlc-addons)\\.org|(?:linuxdaily|open-pc|openskillz)\\.com)/\" to=\"https://$1/\"/><rule from=\"^http://addons\\.videolan\\.org/\" to=\"https://addons.videolan.org/\"/></ruleset>", "<ruleset name=\"openDesktop.org\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"openDesktop.xml\"><rule from=\"^http://(?:www\\.)?opendesktop\\.org/\" to=\"https://opendesktop.org/\"/><rule from=\"^http://(?:static\\.|www\\.)?(?:arch|beryl|box|cli|compiz|debian|e17|ede|eyeos|frugalware|gentoo|gnome|gtk|java|kde|linuxmint|maemo|qt|suse|ubuntu|wine|xfce)-(?:apps|art|files|help|look|stuff|themes)\\.org/(ad|cometchat|comments|CONTENT|fancybox|img|styles|usermanager)/\" to=\"https://opendesktop.org/$1/\"/><rule from=\"^http://(?:static\\.|www\\.)?(?:(?:gnomefiles|linux42|scribusstuff|opentemplate|vlc-addons)\\.org|(?:linuxdaily|open-pc|openskillz)\\.com)/(ad|cometchat|comments|CONTENT|fancybox|img|styles|usermanager)/\" to=\"https://opendesktop.org/$1/\"/><rule from=\"^http://addons\\.videolan\\.org/(ad|cometchat|comments|CONTENT|fancybox|img|styles|usermanager)/\" to=\"https://opendesktop.org/$1/\"/></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=\"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=\"Orange Plant.co.uk\" 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=\"OSDisc.com\" f=\"osdisc.com.xml\"><securecookie host=\"^\\w\" 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=\"otaserve.net\" f=\"otaserve.net.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OTTO's\" f=\"ottos.ch.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Our Skillsforce.co.uk (partial)\" f=\"ourskillsforce.co.uk.xml\"><securecookie host=\"^\\.\" name=\"^_gat?$\"/><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=\"overpass-turbo.eu\" f=\"overpass-turbo.eu.xml\"><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=\"packetflagon.is\" f=\"packetflagon.is.xml\"><securecookie host=\"^.*\\.packetflagon\\.is$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"packetflagon.uk\" f=\"packetflagon.uk.xml\"><securecookie host=\"^.*\\.packetflagon\\.uk$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"pandasoph.de\" f=\"pandasoph.de.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)\" 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=\"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=\"PCR Dist.com\" f=\"pcrdist.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><securecookie host=\"^\\.www\\.\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PentesterLab.com (partial)\" f=\"pentesterlab.com.xml\"><securecookie host=\"^(?:www\\.)?pentesterlab\\.com$\" name=\".+\"/><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=\"Peter Kieser.com\" f=\"peterkieser.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PharmGKB.org\" 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=\"pieperhome.de\" f=\"pieperhome.de.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)\" 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=\"pit-format-online.pl\" f=\"pit-format-online.pl.xml\"><securecookie host=\"^\\w\" name=\".\"/><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=\"Plain English.co.uk\" f=\"plainenglish.co.uk.xml\"><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=\"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=\"Podtrac.com (partial)\" f=\"podtrac.com.xml\"><exclusion pattern=\"^http://www\\.podtrac\\.com/pts/redirect\\.\"/><securecookie host=\"^\\w\" name=\".\"/><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=\"Policy Alternatives.ca (partial)\" f=\"policyalternatives.ca.xml\"><securecookie host=\"^\\w\" name=\".\"/><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=\"Portsmouth.gov.uk (partial)\" 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\"><securecookie host=\"^\\.?(?:www)?\\.?porvoo\\.fi\" name=\".*\"/><rule from=\"^http://porvoo\\.fi/\" to=\"https://www.porvoo.fi/\"/><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=\"Postimage.org\" platform=\"mixedcontent\" f=\"postimage.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><rule from=\"^http:\" to=\"https:\"/></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=\"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=\"pr0gramm\" f=\"pr0gramm.com.xml\"><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=\"pressbooks.ch\" f=\"pressbooks.ch.xml\"><rule from=\"^http://pressbooks\\.ch/\" to=\"https://www.pressbooks.ch/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"prntscr.com\" f=\"prntscr.com.xml\"><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\" f=\"proXPN.xml\"><securecookie host=\"^.*\\.proxpn\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Procensus\" f=\"procensus.com.xml\"><securecookie host=\"^.*\\.?procensus\\.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=\"Project Gus.com\" f=\"projectgus.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Provider Central.org.uk\" 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=\"proxyshard.uk\" f=\"proxyshard.uk.xml\"><securecookie host=\"^.*\\.proxyshard\\.uk$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PSC.gov (partial)\" f=\"psc.gov.xml\"><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=\"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=\"pytamy.pl\" platform=\"mixedcontent\" f=\"pytamy.pl.xml\"><securecookie host=\"^\\w\" name=\".\"/><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=\"Quickline\" f=\"quickline.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Rage4\" f=\"rage4.com.xml\"><securecookie host=\"^(www\\.)?rage4\\.com$\" name=\".\"/><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=\"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\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"rascal999.co.uk\" f=\"rascal999.co.uk.xml\"><securecookie host=\".\" 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=\"RB Digital.com\" f=\"rbdigital.com.xml\"><securecookie host=\"^\\.\" name=\"^_gat?$\"/><securecookie host=\"^\\w\" name=\".\"/><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=\"RBWM.gov.uk (partial)\" 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.objective.co.uk/portal\"/><rule from=\"^http://consult\\.rbwm\\.gov\\.uk/\" to=\"https://rbwm.objective.co.uk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"rc4nomore.com\" f=\"rc4nomore.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Reagan Library.gov\" f=\"reaganlibrary.gov.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=\"Recorded Books.com\" f=\"recordedbooks.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><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=\"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)\" 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=\"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=\"reuffel.de\" f=\"reuffel.de.xml\"><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=\"RI.gov\" f=\"ri.gov.xml\"><securecookie host=\"^\\w\" name=\".\"/><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=\"roadworks.org\" f=\"roadworks.org.xml\"><securecookie host=\"^portal\\.roadworks\\.org$\" name=\".+\"/><rule from=\"^http://www\\.roadworks\\.org/\" to=\"https://roadworks.org/\"/><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=\"Roof Climb Adelaide Oval\" f=\"roofclimb.com.au.xml\"><securecookie host=\"roofclimb\\.com\\.au$\" name=\".+\"/><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=\"RUAG\" f=\"ruag.xml\"><rule from=\"^http://(?:www\\.)?ruag\\.com/\" to=\"https://www.ruag.com/\"/></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=\"s81c.com\" f=\"s81c.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Salford.gov.uk (partial)\" f=\"salford.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><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=\"SatoshiLabs.com (false MCB)\" platform=\"mixedcontent\" 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=\"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=\"schema.org\" f=\"schema.org.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=\"schokokeks.org\" f=\"schokokeks.org.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=\"Science Alert.com\" platform=\"mixedcontent\" f=\"sciencealert.com.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|__qca|cf_clearance)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://sciencealert\\.com/\" to=\"https://www.sciencealert.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Scotland.gov.uk (partial)\" 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=\"searchlock.com\" f=\"searchlock.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Secure-USB.co.uk\" f=\"secure-usb.co.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><securecookie host=\"^\\.www\\.\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"sediarreda\" f=\"sediarreda.xml\"><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=\"semantic-mediawiki.org\" f=\"semantic-mediawiki.org.xml\"><rule from=\"^http://(?:www\\.)?semantic-mediawiki\\.org/\" to=\"https://semantic-mediawiki.org/\"/></ruleset>", "<ruleset name=\"SEOmon.com\" f=\"seomon.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ServerBase\" f=\"serverbase.xml\"><securecookie host=\".*\\.serverbase\\.ch$\" name=\".+\"/><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=\"shareNice\" default_off=\"connection refused\" f=\"shareNice.xml\"><rule from=\"^http://(?:www\\.)?sharenice\\.org/\" to=\"https://sharenice.org/\"/></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=\"ShinyStat.com\" f=\"shinystat.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><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=\"Shrew Soft\" f=\"shrew.net.xml\"><securecookie host=\"^.*\\.shrew\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Siamo Geek.com\" f=\"siamogeek.com.xml\"><securecookie host=\".\" 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\" f=\"simpel.nl.xml\"><securecookie host=\"^(?:.*\\.)?simpel.nl$\" name=\".*\"/><securecookie host=\"^(?:.*\\.)?mijnsimpel.nl$\" name=\".*\"/><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=\"SiteLabs.co.uk\" f=\"sitelabs.co.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><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=\"Falls Creek Lift (partial)\" f=\"skifalls.com.au.xml\"><securecookie host=\"estore\\.skifalls\\.com\\.au$\" 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=\"&#352;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=\"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=\"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=\"smava\" f=\"smava.xml\"><rule from=\"^http://www\\.smava\\.de/\" to=\"https://www.smava.de/\"/></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=\"Snap Surveys.com\" f=\"snapsurveys.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><securecookie host=\"^\\.\" name=\"^_gat?$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"so36.NET\" f=\"so36.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"sogou.com (partial)\" f=\"sogou.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://logo\\.www\\.sogou\\.com/\" to=\"https://www.sogou.com/\"/><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=\"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=\"Soom\" f=\"soom.cz.xml\"><rule from=\"^http://(?:www\\.)?soom\\.cz/\" to=\"https://www.soom.cz/\"/></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=\"Southend-on-the-move.org.uk\" f=\"southend-on-the-move.org.uk.xml\"><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=\"sparkasse.at (partial)\" f=\"sparkasse.at.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"spdb.com.cn\" f=\"spdb.com.cn.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"speech.leseweb.dk\" f=\"speech.leseweb.dk.xml\"><rule from=\"^http://speech\\.leseweb\\.dk/\" to=\"https://speech.leseweb.dk/\"/></ruleset>", "<ruleset name=\"Spektrix.com\" f=\"spektrix.com.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=\"spkrb.de\" 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=\"SP&#352;CHG Ostrava\" f=\"spsch.eu.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SRG SSR (partial)\" f=\"srg-ssr.xml\"><exclusion pattern=\"^http://www.swissinfo.ch/fre\"/><exclusion pattern=\"^http://www.swissinfo.ch/chi\"/><exclusion pattern=\"^http://www.swissinfo.ch/rus\"/><exclusion pattern=\"^http://www.swissinfo.ch/jpn\"/><exclusion pattern=\"^http://www.swissinfo.ch/ara\"/><exclusion pattern=\"^http://www.swissinfo.ch/eng\"/><exclusion pattern=\"^http://www.swissinfo.ch/spa\"/><exclusion pattern=\"^http://www.swissinfo.ch/ger\"/><exclusion pattern=\"^http://www.swissinfo.ch/por\"/><exclusion pattern=\"^http://www.swissinfo.ch/ita\"/><rule from=\"^https://ws\\.srf\\.ch/\" to=\"http://ws.srf.ch/\" downgrade=\"1\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SSL-Tools.net\" f=\"ssl-tools.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"St&#228;mpfli Verlag\" f=\"staempfliverlag.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Startova&#269;\" f=\"startovac.cz.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Statistics.gov.uk (partial)\" 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=\"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=\"Stockport.gov.uk (partial)\" f=\"stockport.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><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=\"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=\"Streetlife.com\" f=\"streetlife.com.xml\"><securecookie host=\"^\\.\" name=\"^_qca$\"/><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=\"Study in Sweden.se\" f=\"studyinsweden.se.xml\"><securecookie host=\"^\\.\" name=\"^_gat?$\"/><securecookie host=\"^\\w\" name=\".\"/><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=\"subtraxion.com\" f=\"subtraxion.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><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=\"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=\"Surrey Heath.gov.uk (partial)\" f=\"surreyheath.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"suspiciousumbrella.uk\" f=\"suspiciousumbrella.uk.xml\"><securecookie host=\"^.*\\.suspiciousumbrella\\.uk$\" name=\".+\"/><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=\"SVA Z&#252;rich\" f=\"svazuerich.ch.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Swale.gov.uk (partial)\" 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=\"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=\".+\"/><rule from=\"^http://ag\\.ch/\" to=\"https://www.ag.ch/\"/><rule from=\"^http://be\\.ch/\" to=\"https://www.be.ch/\"/><rule from=\"^http://baselland\\.ch/\" to=\"https://www.baselland.ch/\"/><rule from=\"^http://gl\\.ch/\" to=\"https://www.gl.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=\"Sydney.edu.au (partial)\" f=\"sydney.edu.au.xml\"><securecookie host=\"^(?:\\w|\\.whatson\\.)\" name=\".\"/><securecookie host=\"^\\.\" name=\"^_(?:gat?$|_utm)\"/><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=\"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=\"T-Analytics.com\" f=\"t-analytics.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"T-mobilebankowe.pl (partial)\" 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=\"TA CDN.com\" f=\"tacdn.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><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=\"Take On The Game (Partial)\" default_off=\"Bad Cert\" f=\"takeonthegame.com.xml\"><rule from=\"^http://(?:www\\.)?takeonthegame\\.com/\" to=\"https://www.takeonthegame.com/\"/></ruleset>", "<ruleset name=\"talentbrew.com\" f=\"talentbrew.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><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)\" 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=\"TAW.org.uk (partial)\" f=\"taw.org.uk.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"tbspace.de\" f=\"tbspace.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TCS Schweiz (partial)\" f=\"tcs.ch.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=\"Tech Anarchy.net\" f=\"techanarchy.net.xml\"><securecookie host=\"^\\w\" name=\".\"/><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=\"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 (partial)\" f=\"telford.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://consult\\.telford\\.gov\\.uk/+(?:\\?.*)?$\" to=\"https://telford.objective.co.uk/portal\"/><rule from=\"^http://consult\\.telford\\.gov\\.uk/\" to=\"https://telford.objective.co.uk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"tersee\" f=\"tersee.xml\"><rule from=\"^http://([^/:@]+\\.)?tersee\\.com/\" to=\"https://$1tersee.com/\"/><securecookie host=\"^(?:.+\\.)?tersee\\.com$\" name=\".*\"/></ruleset>", "<ruleset name=\"test\" f=\"test.xml\"><rule from=\"^http://www\\.test\\.de/\" to=\"https://www.test.de/\"/></ruleset>", "<ruleset name=\"Teta drogerie\" f=\"tetadrogerie.cz.xml\"><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=\"The Communication Trust.org.uk\" f=\"thecommunicationtrust.org.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"The Customize Windows.com\" f=\"thecustomizewindows.com.xml\"><securecookie host=\"^a248\\.e\\.akamai\\.net$\" name=\".+\"/><securecookie host=\"^cdn\\.goroost\\.com$\" name=\".+\"/><securecookie host=\"^www\\.googletagservices\\.com$\" name=\".+\"/><securecookie host=\"^tpc\\.googlesyndication\\.com$\" name=\".+\"/><securecookie host=\"^googleads\\.g\\.doubleclick\\.net$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?thecustomizewindows\\.net/\" to=\"https://thecustomizewindows.com/\"/><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=\"thisproxykillscensors.uk\" f=\"thisproxykillscensors.uk.xml\"><securecookie host=\"^.*\\.thisproxykillscensors\\.uk$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Thomas Hunter.name\" f=\"thomashunter.name.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ThreatMatrix.com\" f=\"threatmatrix.com.xml\"><securecookie host=\"^\\.\" name=\"^_gat?$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ticket4u\" f=\"ticket4u.xml\"><securecookie host=\"^(www\\.)?ticket4u\\.com\\.my$\" name=\".+\"/><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=\"tldr.io (partial)\" default_off=\"missing certificate chain\" f=\"tldrio.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)\" 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=\"Toppreise.ch (partial)\" f=\"toppreise.ch.xml\"><securecookie host=\"^\\w\" name=\".\"/><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=\"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=\"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=\"Trane.com\" f=\"trane.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><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=\"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:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TripAdvisor Support.com\" f=\"tripadvisorsupport.com.xml\"><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=\"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=\"TSP.gov\" f=\"tsp.gov.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tunbridge Wells.gov.uk (partial)\" f=\"tunbridgewells.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://consult\\.tunbridgewells\\.gov\\.uk/+(?:\\?.*)?$\" to=\"https://tunbridgewells.objective.co.uk/portal\"/><rule from=\"^http://consult\\.tunbridgewells\\.gov\\.uk/\" to=\"https://tunbridgewells.objective.co.uk/\"/><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=\"Turku.fi\" platform=\"mixedcontent\" 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&amp;contentlan=1\"/><rule from=\"^http://(?:www\\.)?turku\\.fi/buses$\" to=\"https://www.turku.fi/public/default.aspx?nodeid=11916&amp;contentlan=2\"/><rule from=\"^http://(?:www\\.)?turku\\.fi/bussar$\" to=\"https://www.turku.fi/public/default.aspx?nodeid=11916&amp;contentlan=3\"/><securecookie host=\"^\\w+\\.turku\\.fi\" name=\".+\"/></ruleset>", "<ruleset name=\"Twistlock.com\" f=\"twistlock.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"&#181;Torrent (partial)\" f=\"uTorrent.xml\"><rule from=\"^http://(forum|remote)\\.utorrent\\.com/\" to=\"https://$1.utorrent.com/\"/><rule from=\"^http://(?:ll\\.)?(download3?|static)\\.utorrent\\.com/\" to=\"https://$1.utorrent.com/\"/></ruleset>", "<ruleset name=\"uVPN\" default_off=\"connection refused\" f=\"uVPN.xml\"><rule from=\"^http://(?:www\\.)?uvpn\\.de/+\" to=\"https://fremaks.de/\"/></ruleset>", "<ruleset name=\"uibk.ac.at\" f=\"uibk.ac.at.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ultimate-guitar.com\" f=\"ultimate-guitar.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=\"unbubble.eu\" f=\"unbubble.eu.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=\"UPC Cablecom\" 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=\"Uptime Robot\" f=\"uptimerobot.xml\"><rule from=\"^http://uptimerobot\\.com/\" to=\"https://uptimerobot.com/\"/><securecookie host=\"^(?:.*\\.)?uptimerobot\\.com$\" name=\".+\"/></ruleset>", "<ruleset name=\"uptobox.com\" f=\"uptobox.com.xml\"><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=\"usainteanne\" 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://alu\\.usainteanne\\.ca/\" to=\"https://alu.usainteanne.ca/\"/><rule from=\"^http://vpn\\.usainteanne\\.ca/\" to=\"https://vpn.usainteanne.ca/\"/></ruleset>", "<ruleset name=\"Userstyles.org\" f=\"userstyles.org.xml\"><securecookie host=\"^\\.userstyles\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"usrportage.de\" default_off=\"expired, mismatch\" f=\"usrportage.de.xml\"><securecookie host=\"^usrportage\\.de$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?usrportage\\.de/\" to=\"https://usrportage.de/\"/></ruleset>", "<ruleset name=\"USyd.edu.au (partial)\" 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=\"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=\"Vadino.com\" f=\"vadino.com.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><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=\"V&#225;&#353;-hosting.cz\" f=\"vas-hosting.cz.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Vedomosti.ru\" f=\"vedomosti.ru.xml\"><securecookie host=\"^\\.\" name=\"^_gat?$\"/><securecookie host=\"^\\w\" name=\".\"/><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=\"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=\"vhf (expired)\" default_off=\"expired\" f=\"vhf-expired.xml\"><rule from=\"^http://(?:www1?\\.)?vhf\\.de/\" to=\"https://www.vhf.de/\"/></ruleset>", "<ruleset name=\"vhf.de (partial)\" f=\"vhf.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Victoria forms.com\" f=\"victoriaforms.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Toypics\" platform=\"mixedcontent\" f=\"videos.toypics.net.xml\"><rule from=\"^http://videos\\.toypics\\.net/\" to=\"https://videos.toypics.net/\"/></ruleset>", "<ruleset name=\"Vitrinepix\" f=\"vitrinepix.xml\"><rule from=\"^http://(www\\.)?vitrinepix\\.com\\.br/\" to=\"https://www.vitrinepix.com.br/\"/></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=\"Vogogo\" 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=\"VPN.AC\" f=\"vpn.ac.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"vpsFree.cz\" f=\"vpsFree.cz.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Vrijstelling Oldtimer\" platform=\"mixedcontent\" 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=\"walkit.com\" platform=\"mixedcontent\" f=\"walkit.xml\"><rule from=\"^http://(?:www\\.)?walkit\\.com/\" to=\"https://walkit.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=\"Will Bond\" f=\"wbond.xml\"><rule from=\"^http://sublime\\.wbond\\.net/\" to=\"https://sublime.wbond.net/\"/></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.objective.co.uk/portal\"/><rule from=\"^http://consult\\.wealden\\.gov\\.uk/\" to=\"https://wealden.objective.co.uk/\"/><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=\"Wellcome.ac.uk (partial)\" 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=\"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=\"whisky.de\" platform=\"mixedcontent\" f=\"whisky.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Whitehatters.Academy\" f=\"whitehatters.academy.xml\"><securecookie host=\"^\\.\" name=\"^ARRAffinity$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"why! open computing\" f=\"whyopencomputing.xml\"><securecookie host=\".+\" 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=\"Wilkinsons-Auctioneers.co.uk\" f=\"wilkinsons-auctioneers.co.uk.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=\"wokingham.gov.uk (partial)\" f=\"wokingham.gov.uk.xml\"><exclusion pattern=\"^http://(?:www\\.)?wokingham\\.gov\\.uk/+(?!(?:contacts|contact-us)/*(?:$|\\?)|[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=\"word.camera\" f=\"word.camera.xml\"><rule from=\"^http://www\\.word\\.camera/\" to=\"https://word.camera/\"/><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=\"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=\"WRZRU.com\" default_off=\"mismatched\" f=\"wrzru.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=\"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=\"www.tibia.com\" f=\"www.tibia.com.xml\"><rule from=\"^http://www\\.tibia\\.com/\" to=\"https://secure.tibia.com/\"/><rule from=\"^http://www\\.test\\.tibia\\.com/\" to=\"https://secure.test.tibia.com/\"/></ruleset>", "<ruleset name=\"zaragoza.es\" f=\"www.zaragoza.es.xml\"><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=\"x.ai\" f=\"x.ai.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"xServers (partial)\" f=\"xServers.xml\"><rule from=\"^http://xservers\\.ro/\" to=\"https://xservers.ro/\"/></ruleset>", "<ruleset name=\"XanMod.org\" f=\"xanmod.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Xfinity.com (false MCB)\" platform=\"mixedcontent\" f=\"xfinity.com-falsemixed.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Xfinity.com (partial)\" 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=\"xkcd (mixed)\" platform=\"mixedcontent\" f=\"xkcd-mixed.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"xkcd\" f=\"xkcd.xml\"><rule from=\"^http://(www\\.|m\\.)?xkcd\\.org/\" to=\"https://$1xkcd.com/\"/><rule from=\"^http://www\\.store\\.xkcd\\.com/\" to=\"https://store.xkcd.com/\"/><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=\"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=\"Yell.com (partial)\" 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=\"yfrog.com\" f=\"yfrog.xml\"><securecookie host=\"^\\.twitter\\.yfrog\\.com$\" name=\".+\"/><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=\"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=\"Youthscape.co.uk\" f=\"youthscape.co.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Yoyogames.com\" f=\"yoyogames.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"YPlan\" f=\"yplanapp.com.xml\"><securecookie host=\"^.*\\.?yplanapp\\.com$\" name=\".+\"/><rule from=\"^http://(www\\.)?yplanapp\\.com/\" to=\"https://yplanapp.com/\"/><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=\"ZDF (partial)\" platform=\"mixedcontent\" f=\"zdf.xml\"><rule from=\"^http://zdfsport\\.de/\" to=\"https://www.zdfsport.de/\"/><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=\"ZmtCDN.com\" f=\"zmtcdn.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"zuBu.re\" default_off=\"missing certificate chain\" f=\"zubu.re.xml\"><securecookie host=\"^\\w\" 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=\"ZVV.ch\" platform=\"mixedcontent\" f=\"zvv.ch.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>"], "targets": {"www.cloudmagic.com": [3291], "mars.nasa.gov": [10868, 10869], "cobalt.io": [3340], "parallella.org": [12391], "80spurple.com": [198], "lexity.com": [9280], "riskiq.com": [13902], "www.stackmonkey.com": [15362], "www.readitlaterlist.com": [13607], "*.osmocom.org": [12127], "pass.tmall.hk": [16513], "ratfishoil.com": [13575], "www.liberal.ca": [9294], "www.ludios.org": [9653], "www.adulttoys4u.com.au": [646], "www.muse.mu": [10709], "grad.uw.edu": [17077], "myportaladmissions.rbwm.gov.uk": [19539], "www.cyphdbyhiddenbhs.onion": [3984], "www.blot.im": [2124], "mydornsife.usc.edu": [17278], "www.websitealive8.com": [18149], "yed24hr.com": [18666], "ngpvan.com": [10907], "www.112cafe.com": [17], "www.amazon.fr": [917], "news.piratenpartei.de": [12721], "*.nciphub.org": [19427], "bctr.cornell.edu": [3676], "my.quickline.com": [19530], "onlinestore.usatoday.com": [17032], "members.firedoglake.com": [5857], "api.gogobot.com": [6808], "dev.metasploit.com": [10310], "www.hipl.hnfe.vt.edu": [17740], "gfycat.com": [6625], "licensing.wirral.gov.uk": [18371], "www.ksaglass.com": [8749], "services-federation.renater.fr": [13764], "desktop.vovici.com": [17849], "www.gpgauth.org": [6876], "www.cyberagent.co.jp": [3957], "fahrplan.zvv.ch": [19806], "rss.rtbf.be": [14011], "www.webprospector.de": [18080], "tags.tiqcdn.com": [15996], "w.uptolike.com": [17382], "dl3.checkpoint.com": [3048], "mailhost.stpeter.im": [15503], "spreadshirt.fi": [15300], "www.coventry.gov.uk": [19085], "aedc.gov.au": [1388], "iot.uk": [19302], "*.babylon.com": [1594], "www.wikihow.com": [18290], "online3.drweb.com": [4783], "fit.fraunhofer.de": [6112], "dan.kent.ac.uk": [17317], "www.sixapart.com": [14889], "www.bizx.info": [19004], "www.bluetooth.org": [2155], "spreadshirt.fr": [15300], "wd-edge.sharethis.com": [14668], "www.ourtesco.com": [12143], "order.humanevents.com": [7609], "www.superbrightleds.com": [15619], "img11.360buyimg.com": [112], "adcentre.magnetisemedia.com": [9861], "octopart.com": [11714], "fredericia.dk": [6115], "tools.xsolla.com": [18593], "help.research.vt.edu": [17740], "bitdrift.org": [1990], "svn.netfilter.org": [11225], "www.nva.org": [11098], "pthblog.amnesty.org.uk": [971], "*.enecto.com": [5250], "src.openvz.org": [11991], "brmlab.cz": [2345], "sagernotebook.com": [14240], "afl.nab.com.au": [10865], "thinkmissionexcellence.maine.edu": [17322], "exhibitions.lib.cam.ac.uk": [17243], "sparx.org.nz": [15227], "www.campact.de": [2777], "fusion.ddmcdn.com": [4019], "mapbox.com": [9968], "codersclan.net": [3376], "blackboard.usc.edu": [17278], "enfield.gov.uk": [5258], "www.tinyjpg.com": [16481], "jenkins.labs.nic.cz": [11379], "apps.1und1.de": [68], "eiu.com": [5061], "beyondthebubble.stanford.edu": [15383], "www.soapboxcms.com": [15054], "wingolog.org": [18353], "*.unister-adservices.com": [17201], "*.tjoos.com": [16507], "*.cpcache.com": [2716], "img.qz.com": [13386], "www.nei.nih.gov": [11052], "*.extralunchmoney.com": [5524], "www.pivotaltracker.com": [12732], "www.firefart.at": [5853], "foss.in": [5587], "gnusocial.no": [6362], "www.destinydb.com": [18782], "virustracker.net": [17759], "repository.upenn.edu": [17272], "coastdigital.co.uk": [3338], "members.bet365.com": [1811], "data.bassetlaw.gov.uk": [1688], "www.ricardo.ch": [13866], "westmorland.greenparty.org.uk": [6925], "*.sharpspring.com": [14683], "photos2.demandmedia.com": [4343], "solarcity.com": [15109], "s4.goeshow.com": [6799], "www.nationaleombudsman.nl": [11132], "lokaldealen-dbapp.netdna-ssl.com": [4108], "www.gsu.edu": [6391], "*.chromeadblock.com": [517], "stringeditions.leeds.ac.uk": [17318], "www.schooltoprison.org": [14365], "rebrush-oas.fazjob.net": [5554], "www.discovery.com": [4554], "meteor.com": [10313], "source.openmpt.org": [11951], "*.istheinternetonfire.com": [19307], "continuingstudies.stanford.edu": [15383], "nknews.org": [10934], "www.q8car.com": [13278], "www.passwort-generator.com": [12435], "www.backblaze.com": [1595], "searchcloudcomputing.de": [16018], "mcpmag.com": [9729], "www.overheid.nl": [11132], "sonyentertainmentnetwork.com": [15149], "ptp.aldi.com.au": [299], "*.chzbgr.com": [3056], "northlincs.greenparty.org.uk": [6925], "inkscape.org": [8149], "support.noblehour.com": [11447], "clicktale.com": [3252], "virginaustralia.com": [17735], "www.seomon.com": [19582], "www.atinternet-solutions.com": [363], "e1.targusinfo.com": [15785], "clocks.yandex.kz": [18652], "*.janalta.com": [8510], "developer.longtailvideo.com": [9589], "comment-app.hhs.gov": [7062], "*.gitc.finance.gov.au": [3492], "www.funkhauseuropa.de": [18015], "moviemaps.org": [10637], "cdn.loc.gov": [9528], "eusecwest.com": [4981], "assets.rovio.com": [13989], "portal.ascio.com": [1248], "www.abestweb.com": [246], "shaaaaaaaaaaaaa.com": [14651], "hosting.com": [19260], "sydney.edu.au": [19649], "media3.woolworths.com.au": [18422], "www.shareasale.com": [14661], "scubbly.com": [14429], "yun.yunbi.com": [18750], "www.platinumperformance.com": [12787], "flashrom.org": [5906], "pix.telekom.de": [4410], "noticias.walmart.com": [17964], "dataminelab.com": [4183], "www.lis.gov": [9082], "store.warframe.com": [17977], "*.bitlove.org": [2000], "fotopigeon.com": [6074], "help-en-gb.nike.com": [11401], "forge.ocamlcore.org": [11613], "insider.razerzone.com": [13587], "nitrokey.com": [11429], "www.thetoadfly.com": [16523], "*.eduroam.org": [5100], "www.greensmoke.co.uk": [6928], "www.netapp.com": [11183], "jpstore.dell.com": [4335], "www.campustechnology.com": [19034], "ezoshosting.com": [5003], "jamtrackcentral.com": [8499], "*.copernic.com": [3649], "kimage.playerauctions.com": [12803], "www.usmint.gov": [17062], "www.webmercs.com": [4170], "www.impfen-info.de": [8018], "www.userium.com": [17435], "static.autobytel.com": [1425], "linaro.org": [9361], "anon-ib.ru": [1038], "pagefair.com": [12329], "owncloud.org": [12182], "master.yandex.kz": [18652], "www.mwave.com.au": [10736], "*.nla.gov.au": [11070], "cn.calameo.com": [2731], "webftp.cesky-hosting.cz": [19051], "*.mediagoblin.org": [10152], "buryleisureonline.bury.gov.uk": [19027], "deals.montomeryadvertiser.com": [6453], "*.check24.de": [3045], "voterregistration.ct.gov": [2680], "prophet.heise.de": [7288], "www.tibia.com": [19777], "www.elilabs.com": [5165], "mss.a1.net": [217], "giantbomb.com": [6636], "floorforce.websitealive.com": [18149], "login.tmall.com": [19684], "microsoftventures.com": [10370], "archive.nlm.nih.gov": [11052], "www.goc.io": [6364], "jira.codehaus.org": [3370], "kundencenter.kevag-telekom.de": [8862], "taipo-01-hkg-remote.cathaypacific.com": [2904], "anonymouse.me": [1052], "www.homefinder.com": [7467], "*.adp.com": [1427], "e17-stuff.org": [19461, 19462], "amung.us": [18267], "trellian.com": [16709], "*.hammacher.com": [7182], "www.alumniweekend.ox.ac.uk": [17271], "bb.mail.ru": [9874], "why.mail.ru": [9874], "gacollege411.org": [6304], "www.ymcmbofficial.com": [18619], "sk.mbank.eu": [9722], "r.skimresources.com": [14912], "aktrack.pubmatic.com": [13194], "hornstrafarms.com": [7497], "ih0.redbubble.net": [13660], "www.teevox.com": [16061], "*.mozilla.com": [10654], "secure-static-cdn1.ustream.tv": [17451], "thomas-krenn.com": [16374], "rule.tmall.hk": [16513], "www.djkit.com": [4038], "cms.www.switch.ch": [15699], "homespot.falkirk.gov.uk": [5641], "labelsbythesheet.com": [9126], "www.chipland.hu": [3087], "wwwdyn.zdf.de": [19800], "greenit-bb.de": [6917], "login.kuleuven.ezproxy.kuleuven.be": [8816], "ipredator.se": [7804], "comnap.aq": [2639], "www.earthlink.biz": [5007], "lbstatic.resrc.it": [13599], "metrica.ya.ru": [18626], "www.nhattao.com": [11377], "www.indymedia.org.uk": [8084], "*.nautil.us": [11110], "arc.plymouth.ac.uk": [12833], "csulb.edu": [2744], "widgets.membership.s-msft.com": [14058], "img1.aquagear.com": [1143], "copyright-watch.org": [3656], "antok.co": [1071], "avadomains.com": [1435], "gamecraft.cz": [19206], "marsstaticcdn.jpl.nasa.gov": [10869], "www.workplacegiving.co.uk": [18443], "torrentday.com": [16579], "www.openmailbox.org": [11955], "companyaccount.kaspersky.com": [8806], "www.cheapoz.com.au": [3040], "epuap.gov.pl": [19139], "tssplansregistry.dft.gov.uk": [19116], "users.isy.liu.se": [9084], "pingless.co.il": [12688], "secure.kagi.com": [8766], "avangate.com": [1439], "*.whoson.com": [18268], "posten.se": [12968], "www.playstationnetwork.com": [12796], "*.trkclk.net": [16753], "s.marketwatch.com": [10021], "*.impact-ad.jp": [8009], "www.jitsi.org": [8583], "support.ourlocality.org": [12144], "*.adsmarket.com": [10076], "www.conted.ox.ac.uk": [17271], "redirect.1and1.com": [51], "www.aff.biz": [695], "invodo.com": [8331], "firefart.at": [5853], "okst.secure-endpoints.com": [14478], "studifit.htwk-leipzig.de": [7114], "listener.co.nz": [9450], "*.fark.com": [5661], "m.ceviri.yandex.com.tr": [18649], "hellowebapp.com": [7300], "*.ientry.com": [19273], "*.challengepost.com": [2986], "svn.mplayerhq.hu": [9784], "www.webgo24.de": [18065], "greatnonprofits.org": [6910], "accessoires.t-mobile.nl": [15771], "sm.stanford.edu": [15382], "login.ccccloud.com": [2539], "www.kei.pl": [8841], "communitycontent.marketwatch.com": [10021], "apply.berklee.edu": [1787], "gta.digitale-diathek.net": [4504], "www.trilightzone.org": [19695], "www.special-trade.de": [15239], "bedd.tk": [3533], "static3.symanteccloud.com": [15715], "poptavka.vutbr.cz": [17522], "rezdy.com": [19551], "abclinuxu.cz": [404], "cc.o.qcloud.com": [13301], "matkahuolto.info": [10074], "cair.com": [2514], "secure.cica.ca": [2799], "shopping.istella.it": [8381], "static.corsair.com": [3687], "www.ctt.org": [3907], "hsbctrinkaus.de": [7098], "docs.cachethq.io": [2709], "*.linuxpl.com": [9434], "ap1.pccu.edu.tw": [12220], "www.the109.org": [16240], "investor.google.com": [6834], "www.dataquest.io": [4184], "www.sutn.sk": [14972], "eastbay.com": [5017], "anycommson.wirral.gov.uk": [18371], "financnahitparada.sk": [5828], "managewp.org": [9941], "1kbhkort.kk.dk": [8730], "*.audible.de": [1349], "healthtoday.mims.com": [9743], "careers.yell.com": [19790], "*.bpt.me": [2366], "wunderkraut.fi": [18482], "despora.de": [4394], "zimbra.com": [18868], "www.nokia.*": [11461], "www.hpac.nhs.uk": [10913], "www.rya.nc": [14053], "office.vutbr.cz": [17522], "www.citmedialaw.org": [4046], "netlify.com": [11239], "rhein-neckar-loewen.de": [13859], "autodiscover.samfox.wustl.edu": [17993], "wcdapps.hhs.gov": [7062], "emergencytool.cancer.gov": [2805], "*.conviva.com": [3631], "e-gold.com": [4851], "telusmobility.com": [16103], "tmz.vo.llnwd.net": [15832], "informabtl.com": [13721], "idp.nottingham.ac.uk": [11528], "mobygames.com": [10505], "trib.ent.sirsidynix.net.uk": [14860], "www.junglee.com": [8680], "brainbench.com": [2266], "hosterbox.com": [7522], "my.m.taobao.com": [15952], "security.illinois.edu": [17258], "www.hackinparis.com": [7135], "stalkr.net": [15372], "logo.www.sogou.com": [19606], "www.sensepost.com": [14585], "bnbym.yandex.com.tr": [18649], "*.33across.com": [101], "act.demandprogress.org": [487], "teruel.unizar.es": [17356], "bidsystem.com": [599], "www.mcvpacific.com": [8226], "www.careerdean.com": [2842], "ecomm.vendercom.com": [17603], "ncbi.nlm.nih.gov": [11052], "*.scania.com": [14335], "appsecusa.org": [1132], "docs.hyper.sh": [7644], "lwscomdtq8.lowes.com": [9636], "apps.yunos.com": [18748], "blog.stackoverflow.com": [15359], "documents.sofort.com": [15089], "pcboc.com": [2750], "securityblog.redhat.com": [13675], "business.ftc.gov": [5720], "zzounds.com": [18772], "losangeles2015.drupal.org": [4780], "mybenefitscalwin.com": [10745], "secure4.coveritlive.com": [3735], "www.anonbox.net": [1045], "commons.lbl.gov": [9065], "www.webmerge.me": [18075], "vrp.outbrain.com": [12150], "englisch.sueddeutsche.de": [15577], "stopsoftwarepatents.eu": [15486], "www.bitcurex.com": [1987], "www.servicenow.com": [14622], "s0.jrnl.ie": [19326], "www.plastidipuruguay.com": [12782], "www.gdata.co.jp": [6293], "actionallocator.com": [493], "touch.vg.no": [17484], "www.enphaseenergy.com": [5284], "mail.xmission.com": [18530], "www.centreon.com": [2957], "static.tvtropes.org": [15890], "support.ustream.tv": [17451], "*.ng.bluemix.net": [2152], "www.internot.info": [8291], "datacard.com": [4198], "www.waymoot.org": [18011], "triodos.nl": [16740], "schneideroptics.com": [14359], "libanswers.com": [9286], "iaoc.ietf.org": [7721], "thegreatcourses.com": [16193], "ams2.bohoomil.com": [2180], "*.cloudimage.io": [3306], "cdn.trgt.eu": [16720], "t-nation.com": [15773], "infopackets.com": [8113], "www.telecolumbus.com": [16073], "economize.catracalivre.com.br": [2908], "*.att.com": [364], "*.water.org": [17999], "webgo24.de": [18065], "shop.sandsmedia.com": [14213], "*.nevillholtopera.net": [11286], "compass.illinois.edu": [17258], "www.foreignaffairs.com": [6025], "assets0.redbubble.net": [13660], "studentinvolvement.wustl.edu": [17993], "www.meetic.pt": [10215], "www.thedilbertstore.com": [16269], "samsungapps.com": [14266], "www.colocore.ch": [3436], "diigo.com": [4515], "unblocked.li": [17151], "searchworks.stanford.edu": [15383], "freedesktop.org": [6126], "www.aa.com": [229], "go.pardot.com": [12399], "www.sportisimo.com": [14158], "pop6.com": [12901], "login.naukri.com": [11109], "elpa.gnu.org": [6357], "www.medconfidential.org": [10137], "www.csrsupport.com": [2677], "studentprograms.jpl.nasa.gov": [10869], "img.ebyrcdn.net": [5045], "*.livejournal.com": [9491], "www.flossmanuals.net": [5577], "kserver.mastermindpro.com": [10058], "grdc.com.au": [6886], "src.ac.pld-linux.org": [12267], "prgmr.com": [13047], "nedcc.org": [10896], "www.westconsincuhb.org": [18215], "gupiao.jd.com": [8423], "www.citymapper.com": [3193], "wwws.loc.gov": [9528], "www.riscon.cz": [13898], "assets.gyazo.com": [7035], "flattr.net": [5910], "freerainbowtables.com": [6149], "www.biostat.wustl.edu": [17993], "telecolumbus.de": [16073], "promotions.drweb.com": [4783], "www.jisc.ac.uk": [8578], "cdn-www.demandstudios.com": [4344], "intranet.inria.fr": [8159], "my.bracknell-forest.gov.uk": [19016], "resetthenet.org": [13804], "kiwicon.org": [8929], "support.webhost.co.nz": [12036], "budgetgolf.se": [2393], "www.asus.com": [357], "gmx.sg": [6350], "intern.nasa.gov": [10869], "www.fredericia.dk": [6115], "mycommerce.com": [10753], "answers.microsoft.com": [10364], "*.mdgms.com": [10129], "sflogo.sf.net": [15174], "nano.osu.edu": [11760], "login.ezproxy.lib.rmit.edu.au": [13437], "www.citeulike.org": [3167], "wiki.sugarlabs.org": [15581], "myaccount.globalcapacity.com": [6723], "framalab.org": [6095], "www.zeroblock.com": [18840], "youtube.pr": [18709], "*.netmarble.com": [11242], "youtube.pl": [18709], "youtube.ph": [18709], "youtube.pe": [18709], "events.cornell.edu": [3676], "deakin.edu.au": [4252], "500.chromeexperiments.com": [3117], "www.gridzdirect.com": [6953], "pragprog.com": [13012], "mymediamagnet.com": [10811], "www.rage3d.com": [13526], "ems.southampton.gov.uk": [15191], "skin.issuu.com": [8378], "panax.net": [12355], "community.appcelerator.com": [1113], "www.clockers.at": [12164], "marketplace.secondlife.com": [14462], "oracle.com": [12082], "www.scamfraudalert.com": [14330], "compte.gresille.org": [6945], "220volt.hu": [72], "frab.camp.ccc.de": [2538], "*.wunderground.com": [18032], "www.get-digital.es": [6560], "www.guidancesoftware.com": [7006], "*.introweb.hu": [8302], "shared.qwknetllc.com": [13294], "wsidecar.apple.com": [1120], "bytename.com": [2490], "www.useitandsee.com": [5178], "static-cdn.mackeeper.com": [9819], "1time.aero": [65], "pouget.indymedia.org": [8085], "www.molevalley.gov.uk": [19406], "cdn.thinksteroids.com": [9737], "jodel-app.com": [8606], "jiffyfreescore.com": [8567], "cmb.ornl.gov": [11693], "apply.7-eleven.com": [187], "halsnaes.dk": [7178], "geo.messenger.services.live.com": [9483], "*.nyu.edu": [11294], "*.degica.com": [3336], "profile.we-energies.com": [18016], "cable-tv-deals.com": [18486], "www.nimh.nih.gov": [11052], "emc2.cornell.edu": [3676], "truefactor.io": [16773], "trip.taobao.com": [15952], "www.loveplanet.ru": [9627], "images-3.gog.com": [6365], "de.sitestat.com": [14885], "assets.juicer.io": [8667], "www.mountainview.gov": [3191], "www.business.leeds.ac.uk": [17318], "www.bravelyonward.com": [2293], "client.lock-box.net": [9543], "support.aerofs.com": [688], "incontri.tiscali.it": [16498], "recruitment.highways.gov.uk": [19250], "www.bkk-advita.de": [1524], "www.ethnologue.com": [5385], "katalog.yandex.by": [18648], "verzekeringssite.nl": [17648], "www.seravo.fi": [14594], "disk.yandex.ua": [18656], "www.oniontip.com": [11864], "wayf.dsi.cnrs.fr": [6195], "cadlink.com": [19033], "plugins.piwik.org": [12733], "www.alandroidnet.com": [776], "bostonbuilt-org.hoaxdevice.com": [2231], "www.amnesty.org": [956], "lainchan.org": [9132], "roammobility.com": [13918], "appworld.blackberry.com": [2050], "ipswich.gov.uk": [8351], "stats.thermoscientific.com": [16349], "apnaindia.com": [1096], "www.linuxserver.io": [9435], "img.shields.io": [7992], "oc.libreoffice.org": [9311], "friendme.sonyentertainmentnetwork.com": [15149], "quup.com": [13382], "favu.vutbr.cz": [17522], "www.tribalhosting.net": [16726], "networkforgood.org": [11264], "app.svnlab.com": [14203], "help.maven.co": [10087], "encoding.com": [5232], "www.btcguild.com": [1559], "*.moniker.com": [8865], "*.sublimevideo.net": [15561], "amazon.com.mx": [18951], "pingfore.qq.com": [13285], "plans-review.stanford.edu": [15383], "www.esad.ulaval.ca": [17229], "store.storeimages.cdn-apple.com": [2553], "frozen-yogurt-franchise.org": [6232], "www.undergraduatecouncil.wustl.edu": [17993], "security-portal.cz": [14520], "www.trialfunder.com": [16723], "www.palmetto.com": [12347], "ehn.emoryhealthcare.org": [5211], "www.trust-it.gr": [16781], "hobbypcb.com": [19254], "www.traxarmstrong.com": [16703], "coderouge.co": [3375], "sony-europe.com": [15141], "www.dof.dk": [4633], "urkb.ch": [19333], "4.vgc.no": [17484], "cloudshark.org": [19068], "apps.uillinois.edu": [16960], "purplebox.ghostery.com": [6629], "app.movableink.com": [10628], "*.www.filmthreat.com": [5805], "www.flashgot.net": [5904], "msturm.htwk-leipzig.de": [7114], "sc.rgstatic.net": [13422], "*.vdopia.com": [17582], "www.webhost4life.com": [18066], "webchat.freenode.net": [19196], "eu.mouseflow.com": [10624], "shibboleth.highwire.org": [7401], "ajax.microsoft.com": [10364], "www.phoenix.com": [12632], "www.flowingdata.com": [5945, 5946], "www1.scene7.com": [14340], "www.browserleaks.com": [2371], "getpocket.com": [6579], "www.veracode.com": [17614], "affiliate-program.amazon.com": [910], "userfox.com": [17434], "*.napoleonmakeupacademy.com": [11036], "fidh.org": [5571], "*.openrightsgroup.org": [12023], "www2.peopleschoicecu.com.au": [12552], "gixen.com": [6693], "tracker.affility.com": [703], "strava.cz": [15514], "trademark.harvard.edu": [7219], "www.fundaciontelevisa.org": [6260], "www.pbhs.com": [12210], "www.medialayer.net": [10156], "investors.demandware.com": [4347, 4349], "*.poczta.home.pl": [7465], "www.railsschool.org": [13531], "loyalforex.com": [9638], "cdn.synapsepay.com": [19650], "s.cstrlr.com": [2889], "www.intenseschool.com": [8224], "yoctoproject.org": [18688], "www.afip.gob.ar": [18944], "mylaw.wustl.edu": [17993], "global.duke.edu": [4798], "quickbase.com": [8304], "www.jepso.com": [8554], "iwbcollaboration.educ.cam.ac.uk": [17243], "store.edgerunner.com": [5082], "login.xmarks.com": [18579], "actonsoftware.com": [486], "weixin110.qq.com": [13285], "ars.usda.gov": [17209], "www.takeonthegame.com": [19657], "static.sockshare.com": [15081], "coverart.worldcat.org": [18446], "build.tizen.org": [16506], "oss.nl": [11132], "www.shaunlorrain.com.au": [14686], "eecs.berkeley.edu": [17240], "m.wustl.edu": [17993], "www.data.gov.uk": [19100], "blockbuster.co.uk": [2082], "www.herts.police.uk": [7333], "tunisia-sat.com.tn": [16832], "www.ozvoucher.com.au": [12195], "*.uscis.gov": [17055], "youtube.com.sa": [18709], "universalsubtitles.org": [17227], "wusmeducation.wusm.wustl.edu": [17993], "dcp.psc.gov": [19525], "*.ur.wvu.edu": [18212], "poets.org": [12848], "weoinvoice.com": [18202], "auslieferung.commindo-media-ressourcen.de": [3480], "openid.aol.com": [321], "www.webcamboys.us": [18111], "bugreports.qt.io": [13315], "*.modcloth.com": [10511], "csail.mit.edu": [9749], "www.charities.org": [950], "*.ign.com": [7729], "www.bluejeans.com": [2139], "nordichardware.se": [11474], "www.your-file-system.com": [18720], "www.tigerdirect.com": [16440], "v5.windowsupdate.microsoft.com": [10363], "capitaloneconnect.*": [2818], "rya.nc": [14053], "www.gidapp.com": [6331], "mall.taobao.com": [15952], "form.ms.yahoo.co.jp": [18640], "www.amsterdam.nl": [11132], "render.fineartamerica.com": [5844], "www.hashbang.ca": [7225], "cmspromo.alipay.com": [817], "www.mycotopia.net": [10827], "tonyarcieri.com": [16549], "cooperazione.ch": [3645], "order.1and1.ca": [52], "conversionruler.com": [10005], "songsterr.com": [15135], "forum.ovh-hosting.fi": [12173], "cp-d.rentalserver.jp": [13774], "www.auctionbunker.com": [1344], "links.leloop.org": [9191], "neodrive.co": [11149], "developers.arcgis.com": [1155], "sherlock.livingsocial.com": [9517], "s3.carltonbale.com": [2856], "storage-file-eu.gmx.com": [6350], "*.uni-muenchen.de": [9091], "www.probank.gr": [6911], "yandex.com": [18651], "wiki.piratpartiet.no": [12724], "katzporn.in": [8820], "www.caskstore.com": [2884], "www.torcache.net": [16571], "webtorrentsearch.com": [16228], "www.vectormediagroup.com": [17586], "*.vertriebsassistent.de": [17643], "techhouse.org": [16012], "1337x.org": [30], "www.edwardtufte.com": [5104], "marshall.usc.edu": [17278], "*.qwant.com": [13383], "*.foodandwaterwatch.org": [6002], "helpdesk.malwarebytes.org": [9929], "login.ashampoo.com": [1250], "www.wyzant.com": [18491], "www.mdcus.com": [9730], "www.behavioralpolicy.org": [1757], "www.mofobian.com": [10531], "www.zentralbahn.ch": [19802], "www.dr-qubit.org": [4734], "desr.dict.cc": [4455], "engine.adzerk.net": [675], "a1-images.myspacecdn.com": [10848], "webmail.telus.net": [16103], "dms.vdv.de": [17478], "*.coxbusiness.com": [3739], "valvesoftware.com": [17548], "*.liquidweb.com": [9443], "forum.geoclub.de": [6543], "www.dnuk.com": [4482], "www.secure.me": [14488], "www.calyx.net": [2761], "c.speedtest.net": [15258], "icehost.is": [7915], "www.lynxtech.no": [9684], "opensource.org": [12025], "resizing.flixster.com": [5933], "www.bathnes.gov.uk": [1689], "files.slidemypics.com": [14961], "media.washpost.com": [17988], "px.at.atwola.com": [318], "ballou.se": [1633], "en-ro.dict.cc": [4455], "fls-na.amazon.com": [915], "www.guardianescapes.com": [7002], "kreator.kei.pl": [8840], "box.wustl.edu": [17993], "fsaregistration.ed.gov": [4889], "marketing.lunarpages.com": [568], "www.evga.com.tw": [4986], "pdfcrowd.com": [12500], "fcpablog.com": [5559], "citra-emu.org": [19063], "hrnt.jhu.edu": [16296], "eulerian.voyage-prive.com": [17857], "www.charter.net": [3021], "www.jonathanmayer.org": [8624], "help.mail.ru": [9874], "chainflyer.bitflyer.jp": [1931], "www.winehq.org": [18352], "promo.untangle.com": [17370], "pt.foursquare.com": [6082], "www.sourcegraph.com": [15182], "lists.macosforge.org": [9820], "www.sharesix.com": [14667], "opera.yandex.kz": [18652], "bst5.gismeteo.ru": [6669], "ox-i.overdrive.com": [12160], "secure.newegg.com": [11316], "static.edeka.de": [19147], "www.citizensadvice.org.uk": [19062], "factoryexpohomes.com": [5627], "www.gallup.com": [6409], "s.ppjol.net": [13034], "zenbook.asus.com": [357], "abiliba.net": [418], "www.ipk.fraunhofer.de": [6112], "jabjab.de": [8471], "customers.anpdm.com": [1053], "oper.cc.ntu.edu.tw": [10971], "fraserxu.me": [6109], "*.t.domdex.com": [4667], "web.aexp-static.com": [678], "redports.org": [13701], "digipaper.fi": [10140], "il.norton.com": [11505], "odinn.cyberguerrilla.org": [3961], "www.cashplatoon.com": [2879], "ams.org": [310], "herbal-nutrition2.net": [7323], "master.yandex.by": [18648], "*.hotwire.com": [7561], "admin.oktd.kent.gov.uk": [8851], "securityinnovation.com": [14530], "google.*": [6838, 6840, 6845, 6848], "static.wix.com": [18383], "server.icewarp.com": [7913], "www.mijnd66.nl": [10381], "move.va.gov": [17019], "www.searchcloudcomputing.de": [16018], "ubmelectronics.com": [16927], "neave.tv": [11124], "omicron.at": [11635], "www.lonelyplanet.com": [9587], "*.privatepaste.com": [13101], "mbl.teljari.is": [10110], "www.direct123.fi": [4523], "itpol.dk": [8392], "www.philshobbyshop.com": [12628], "www.proxy.sh": [13181], "storage.msn.com": [9796], "www.komments.net": [8966], "cdn.idealo.com": [7929], "ehosting.ca": [5119], "www.fee.org": [5564], "www.koldfront.dk": [8962], "localsearch.courierpostonline.com": [3715], "www209.americanexpress.com": [935], "force.com": [14249], "www.instra.com": [8196], "1l-view.mail.ru": [9874], "www.deezer.com": [4303], "cdn.sunglasswarehouse.com": [15600], "badge.facebook.com": [5620], "www.1and1.co.uk": [53], "www.adblockplus.org": [561], "otf.msn.com": [9796], "blufiles.storage.msn.com": [9796], "factsandfigures.herefordshire.gov.uk": [7327], "www.hostbaby.com": [7507], "rutgers.edu": [14048], "media.style.com": [15550], "*.jboss.org": [8417], "www.thetrainline.com": [16238], "account.cyngn.com": [3980], "blockmetrics.com": [2087], "siteuptime.com": [14875], "www.torrentz.com": [16591], "engineering.jhu.edu": [16296], "blog.brightfort.com": [2320], "grid.tv2.dk": [15881], "www.verisign.dk": [17623], "new.familysearch.org": [5646], "www.editola.com": [5086], "portal.sans.org": [14072], "static.chartbeat.com": [3018], "growhq.com": [6982], "pay.sohu.com": [15103], "*.footholds.net": [6014], "anybeat.com": [1077], "cathaypacific-campaign.com": [2904], "www.xyratex.com": [18609], "*.travelingnuker.com": [16696], "m.yandex.by": [18648], "*.listrakbi.com": [9453], "metrics.sky.com": [14924], "*.desire2learn.com": [4390], "msds.ornl.gov": [11693], "www.vesica.ws": [17650], "static-assets.metartnetwork.com": [10296], "3c.taobao.com": [15952], "halcyon.sh": [7172], "planetromeo.com": [12764], "helpdesk.bittylicious.com": [2026], "www.trash-mail.com": [16686], "eatocracy.cnn.com": [18428], "www.nordvpn.com": [11482], "licensing.havant.gov.uk": [19237], "www.sallybeauty.com": [14252], "receivingmail.osu.edu": [11760], "cdn-my.nanorep.com": [11033], "www.bukkit.org": [19024], "personal.zoho.com": [18884], "fallout4.com": [5643], "*.clickfuncasino.com": [3260], "*.puhkaeestis.ee": [13222], "media.gexpro.com": [6622], "careers.ageuk.org.uk": [18946], "children.brent.gov.uk": [2304], "*.cloudsigma.com": [3293], "www.rssinclude.com": [13463], "*.zeroc.com": [18841], "*.planetminecraft.com": [12769], "shop.btcs.com": [1562], "blog.doublerobotics.com": [4712], "apns.atechmedia.com": [368], "qualtrics.com": [13332], "hetzner.de": [7376], "sciamdigital.com": [14384], "ex10.biz": [5471], "www.uvpn.de": [19709], "www.vlada.gov.sk": [14972], "uadm.uu.se": [17074], "shibboleth.usc.edu": [17278], "secure.commonground.convio.com": [3630], "moderncrypto.org": [10520], "vodafone.com": [17816], "arranca.nadir.org": [1212], "buyiphone3.apple.com": [1120], "testing.datamotion.com": [19102], "www.armedforcesday.org.uk": [1203], "cdn.blicko.com": [2072], "*.gateway.messenger.live.com": [9483], "www.apotea.se": [1098], "www.freesnowden.is": [6150], "origin.www.virginmedia.ie": [17738], "ads.ibtracking.com": [7906], "t411.io": [15781], "www.pb.uillinois.edu": [16960], "cykloteket.se": [3979], "bistudio.com": [2179], "userpub.itunes.apple.com": [1120], "www.thinkprogress.org": [2944], "shop.boingboing.net": [2181], "passports.gov.au": [1398], "slouken.libsdl.org": [9290], "westernunion.com": [18216], "www.1ty.me": [66], "www.mastermindpro.com": [10058], "www.wykop.pl": [18488], "bdnpull.bangorpublishing.netdna-cdn.com": [1642], "hornbach.nl": [7496], "catersnews.com": [2902], "adjug.com": [526], "www.w.thm.de": [15811], "www.managedforexprogram.com": [9942], "www.justitie.nl": [11132], "*.ag.gov.au": [1340], "kryptronic.com": [9023], "*.conversionruler.com": [10005], "www.weekendjeweg.nl": [7452], "www.oyoony.at": [19475], "crawleybc.firmstep.com": [19183], "nemlog-in.dk": [11143], "signup.claranet.de": [3211], "watch.yandex.com.ua": [18650], "feedback.yandex.com.tr": [18649], "ar.godaddy.com": [6773], "www.movelia.es": [10632], "rdmp.sydney.edu.au": [19649], "*.realtidbits.com": [13631], "*.azhca.org": [382], "www.canon.com.tr": [2809], "e-filatelia.poste.it": [12965], "archive.anon-ib.co": [1034], "posti.fi": [19510], "www.spirit.com": [15278], "reliableisp.net": [13754], "squirrel.carezone.cz": [2849], "www.sunlightfoundation.com": [15601], "www.crysys.hu": [3837], "m.taxi.ya.ru": [18626], "studyinthestates.dhs.gov": [4035], "websterwood.com": [18158], "*.ravensoft.com": [13579], "www.axeso5.com": [1472], "*.rollingstone.com": [13960], "online.tu-graz.ac.at": [15875], "download.zotero.org": [18911], "source.tizen.org": [16506], "wapo.st": [1920], "www.hertz247.fr": [7345], "logon.hjv.dk": [7435], "www.nxtblocks.info": [10987], "www.blackbaud.com": [2049], "punchout.digikey.de": [4469], "www.devuan.org": [4433], "ad.dc2.adtech.de": [638], "www.ovh.nl": [12173], "oneweb.cz": [11648], "osumarion.osu.edu": [11760], "www.raptr.com": [13562], "beta.lewrockwell.com": [9278], "recsports.osu.edu": [11760], "tindie.com": [16471], "www.catalog.yandex.by": [18648], "www.rub.de": [13478], "www.pyweek.org": [13267], "www.telefonica.cz": [16076], "pcdiy.asus.com": [357], "*.ca.eprncdn.com": [5329], "images.obi.at": [19452], "myaccount.newcastle.gov.uk": [11315], "abcmusicpublishing.com.au": [238], "*.powweb.com": [12987], "fastsoft.com": [5675], "www.tiremetroonline.com": [16494], "cdn.yourpshome.net": [18726], "benefitsu.stanford.edu": [15383], "www.passwordless.net": [19479], "api.instagram.com": [8182], "californiasunday.com": [2749], "*.data.aad.gov.au": [1382], "hushmail.com": [7632], "hidemyass.com": [7396], "afp548.com": [283, 284], "*.o2.cz": [16076], "inspectlet.com": [8176], "9to5mac.com": [18428], "www.duba.com": [4789], "auth.ut.ee": [17069], "*.spreadshirt.fi": [15300], "community.flixster.com": [5933], "dsalumni3.ds.leeds.ac.uk": [17318], "joslin.org": [8636], "www.l-rz.de": [9238], "www.thevaultbar.co.uk": [16212], "trial.coverity.com": [3734], "apps.xo.com": [18532], "wiki.allizom.org": [856], "*.spreadshirt.fr": [15300], "mer.io": [10270], "webservices.hmrc.gov.uk": [7084], "version6.edeveloperz.com": [4899], "estoniaevoting.org": [5368], "www.hertz.no": [7357], "ndoch.govspace.gov.au": [6867], "git.linuxlovers.at": [9432], "get.videolan.org": [17688], "eagereyes.org": [19140], "www.precisionpros.com": [13019], "commonfund.nih.gov": [11052], "racked.com": [13497], "app2.salesmanago.pl": [14069], "support.spotify.com": [15296], "www.kmh.se": [8737], "www.winscp.net": [18329], "wirelessleiden.nl": [18368], "raam.org": [13486], "www.nest.com": [11166], "nerdhaven.nuug.no": [10980], "freebin.org": [6124], "www.wunderkraut.fi": [18482], "billscenter.paytrust.com": [8304], "piraten-oberpfalz.de": [12715], "mediate.com": [10182], "www.jabberes.org": [8478], "heliny.com": [7291], "www.bancomer.com": [1501], "www.loyalforex.com": [9638], "se.support.tomtom.com": [16540], "*.apmebf.com": [17541], "globalsign.co.*": [6718], "*.eprize.com": [4946], "partner.xfinity.com": [19784], "sheppyware.net": [14700], "tvnewscheck.com": [15887], "piatnik.de": [12656], "kenexagovernmentsolutions.com": [8847], "www.openleaks.org": [11949], "tnsinfo.com": [15842], "extranet.zg.ch": [19648], "irf.se": [7814], "www.ico.gov.uk": [16967], "discusslr.com": [4559], "*.coupons.com": [3712], "www.xhamster.com": [18515], "www.scrambl3.com": [14404], "flacs.mindmodeling.org": [10408], "t-com.sk": [16088], "i.money.163.com": [34], "shopzilla.com": [14733], "pcn.cityoflondon.gov.uk": [3190], "downloads.openwrt.org": [11992], "vas-hosting.cz": [19729], "testpypi.python.org": [13272], "stapi.snacktools.com": [15019], "forums.databricks.com": [4197], "forms.ceredigion.gov.uk": [2964], "i.darjeelin.fr": [4148], "www.motigo.com": [10612], "www.gmw.nhs.uk": [10913], "*.symlynx.com": [15719], "onetimesecret.com": [11851], "tools1.cisco.com": [3162], "www.rdns.im": [13596], "facultyappts.stanford.edu": [15383], "cvent.com": [3948], "www.vooplayer.com": [17839], "connect.agariomods.com": [721], "*.sites.usa.gov": [17029], "countermail.com": [3705], "www.hackerspace.pl": [7149], "www.bittorrent.org": [2024], "store.lessigforpresident.com": [9261], "forums.bad-dragon.com": [18979], "nametiles.co": [11027], "j.paydirekt.de": [12473], "www.budgetkredit.ch": [2394], "wallet.btcs.com": [1562], "www.Tunnelbear.com": [16833], "poker.williamhill.com": [18314], "m.southwark.gov.uk": [15196], "healthunlocked.com": [7259], "blackboard.uic.edu": [17231], "www.xfce-help.org": [19461], "jplspaceship.jpl.nasa.gov": [10869], "p2.zdassets.com": [18806], "darwin.affiliatewindow.com": [4486], "www.ooda.com": [11651], "wiki.desmume.org": [4243], "www.cambridgesoft.com": [2769], "www.midnight-commander.org": [10377], "papakaya.com": [12378], "www.doubleclickbygoogle.com": [4708], "www.sec.gov": [17023], "bitcoinapi.de": [1983], "galerievirtuelle.bve.ulaval.ca": [17229], "www.medarbejdersignatur.dk": [10139], "ela.eset.com": [5358], "tempo.cnrs.fr": [6195], "www.securecerts.ie": [4512], "www.newmatilda.com": [11289], "www.boerse-frankfurt.de": [2177], "*.hostgator.com": [7512], "hps.nhs.uk": [10913], "m.woolworthsonline.com.au": [18422], "wrongplanet.net": [18475], "secure1.heifer.org": [7284], "*.discojuice.org": [4542], "naughtyshowreviews.com": [11108], "www.5vpn.net": [179], "homechoice.southglos.gov.uk": [15189], "switchip.info": [3533], "karma.mg": [8799], "www-aws.stanford.edu": [15383], "openas.org": [12030], "alastairs-place.net": [779], "www.aldi-nord.de": [299], "et13.xhcdn.com": [18514], "cms.clickability.com": [4827], "blogs.walthamforest.gov.uk": [17966], "ingentaconnect.com": [8139], "www.clinkle.com": [3269], "zdf.de": [19800], "qis.verwaltung.uni-hannover.de": [17168], "git.reviewboard.kde.org": [8718], "anzen.org.uk": [1082], "www.3dcenter.org": [122], "foris.extranet.sonymobile.com": [15145], "iplay.com": [8345], "advising.engineering.osu.edu": [11760], "lorea.org": [9610], "blog.websupport.sk": [18160], "*.rsvp.com.au": [13466], "www.iono.fm": [8341], "openhatch.org": [11942], "netforumpro.com": [11190], "oseems.com": [12120], "static.blog.playstation.com": [12795], "ssl-hints.netflame.cc": [11227], "ramsis.osu.edu": [11760], "wildfire.paloaltonetworks.com": [12349], "www.2shared.com": [98], "iphone.vodafone.co.uk": [17813], "www.vofzpwh.com": [3481], "ka.libreoffice.org": [9311], "brandmonitor.domaintools.com": [4660], "*.myheritage.br": [10834], "www.pthree.org": [13191], "epa-bdcc.ornl.gov": [11693], "www.cancerresearchuk.org": [19035], "accounts.paradoxplaza.com": [12386], "fundersclub.com": [6261], "*.londoncityairport.com": [9580], "docs.mopidy.com": [10583], "img.fark.net": [5661], "hsf.isis.poly.edu": [12888], "*.westconsincu.org": [18215], "static-cdn.ubuntu-de.org": [17093], "maltris.org": [9924], "irpa.umd.edu": [17263], "*.outernet.is": [12151], "basilisk.aetherflyff.com": [694], "*.rsmsecure.com": [13459], "www.kinox.to": [19337], "*.hawaii.gov": [7245], "download.mailvelope.com": [9892], "www.extremetech.com": [18859], "webmdhealthservices.com": [18072], "knowledge.verisign.se": [17623], "www.smssecure.org": [14139], "one.umd.edu": [17263], "api.temp-mail.ru": [16105], "www.freefind.com": [6127], "*.gamezebo.com": [6444], "albiero.videolan.org": [17688], "ua.edu": [16925], "nzbmatrix.com": [11003], "www.teespring.com": [16060], "trafficsafetymarketing.gov": [16653], "www.fsfeurope.org": [5602], "www.wupd.wustl.edu": [17993], "ds.static.rtbf.be": [14011], "phpnet.org": [12251], "*.slickdeals.net": [14958], "makemodules.ning.com": [11414], "os.inf.tu-dresden.de": [15871], "stats.cyanogenmod.org": [3954], "goglobal.stanford.edu": [15383], "mail.ohns.stanford.edu": [15383], "mobile.spaces.live.com": [9483], "m.hivtest.cdc.gov": [19046], "dibbley.mysql.cesky-hosting.cz": [19051], "www.paypalobjects.com": [12467], "lhcdashboard-images.web.cern.ch": [2575], "www.twilio.com": [16876], "thesmokinggun.com": [16311], "chita.rt.ru": [13469], "www.justice.gov.sk": [14972], "www.amoena.de": [979], "uk2img.net": [16963], "www.chimeric.de": [3081], "status.maxcdn.com": [10091], "framegrabs.vzaar.com": [17883], "seclab.cs.washington.edu": [17290], "mirror.aarnet.edu.au": [233], "mail.fightaging.org": [5785], "developerblog.redhat.com": [13675], "agar.io": [719], "reynir.dk": [13852], "i8.c.dk": [2498], "yahoo-security.tumblr.com": [16825], "api.littlesis.org": [9476], "*.psychologicalscience.org": [1296], "soa.org": [14147], "wulife.wustl.edu": [17993], "petteriraty.eu": [12604], "arbitrage.wmtransfer.com": [18076], "secure.newscheckmedia.com": [11340], "www.showcase-tv.com": [14740], "8.vgc.no": [17484], "images.psxextreme.com": [12300], "www.cherry.de": [3062], "www.dynamicweb.it": [4826], "livezilla.net": [9499], "fftlive.org": [5567], "*.chemspider.com": [13997], "baifendian.com": [1759], "help.yandex.by": [18648], "ims.osu.edu": [11760], "rackspace.nl": [13505], "portal.vzp.cz": [17524], "nostarch.com": [11445], "notevenpast.org": [11517], "bear.im": [1734], "piwik.omnigroup.com": [11793], "www.richarddawkins.net": [13871], "www.microster.pl": [10347], "*.velmedia.net": [17597], "ordbogen.com": [12095], "www.linuxhostsupport.com": [9429], "lists.stg.fedoraproject.org": [5726], "business.upc.nl": [17002], "latinamerica2015.drupal.org": [4780], "overdrive.com": [12160], "gibill.va.gov": [17019], "omniref.com": [11798], "nines.nl": [11413], "p6r.com": [12202], "www.wmjobs.co.uk": [17915], "forum.1and1.ca": [52], "blog.openttdcoop.org": [11982], "media.msi.com": [9792], "ogc.stanford.edu": [15383], "dean.williams.edu": [18316], "manage.webhost.biz": [18120], "img.olx.com.br": [11632], "orders.tigerdirect.com": [16440], "store.zentyal.com": [18833], "partner.webgo24.de": [18065], "migrate.axosoft.com": [1477], "*.sslcs.cdngc.net": [2560], "www.speeddl.com": [10121], "leadspend.com": [9196], "tools2.cisco.com": [3162], "miramax.com": [10440], "visitor.constantcontact.com": [3592], "baylibre.com": [1700], "my.govmetric.com": [6866], "api.gawker.com": [6476], "*.bitstamp.net": [2021], "img.rl0.ru": [13914], "www.scg.ulaval.ca": [17229], "uhrzeit.org": [17120], "hiring.*.monster.com": [10564], "*.cert.gov.uk": [2578], "www.chris-lamb.co.uk": [3101], "mailman.common-lisp.net": [3484], "casascius.com": [2872], "www.elster.de": [5188], "getbeagle.co": [6585], "*.moneyandmarkets.com": [18188], "adaptec.com": [556], "www.hobocomp.com": [7439], "www.thunderclap.it": [16405], "*.baxterbulletin.com": [1697], "www.socialcube.net": [15070], "www.sirportly.com": [14858], "jobs.seagate.com": [14437], "developer.oculusvr.com": [11722], "textmagic.com": [16157], "viepratique.fr": [17706], "odpadnes.sk": [18879], "atstuff.com": [1333], "*.loopia.se": [9606], "st-andrews.ac.uk": [15351], "www.0x539.se": [6], "agnitum.com": [730], "www.sky.com": [14924], "neaf.gov.au": [11068], "www.action-intell.com": [492], "shop.cei.org": [3521], "www.tinderfoundation.org": [16470], "img3.xcart.com": [18505], "*.mybuys.com": [10747], "smili.stanford.edu": [15382], "crazybates.com": [3766], "consumerreports.org": [3600, 3603], "ti.com": [15815, 16152], "data.virk.dk": [17741], "pdf.yt": [12235], "disability.gov": [4538], "account.billiondigital.com": [1882], "www.xanmod.org": [19782], "manager.mijndomeinreseller.nl": [19380], "www.nyx.cz": [11599], "www.sandstorm.io": [14283], "cdn.grahamcluley.com": [6885], "accordancebible.com": [457], "myaloecleanse.com": [10800], "www.gay-torrents.net": [6480], "pressflex.com": [13037], "hspc.openhost.net.nz": [12036], "www.railtours.at": [19455], "ubmchannel.com": [16927], "wx2.qq.com": [13285], "livefyre.com": [9509], "cdn2.gbot.me": [6808], "remixdepolitiek.nl": [12708], "moreal.co": [10587], "click.simba.taobao.com": [15952], "secure.arb-forum.com": [11046], "skepticalscience.com": [14904], "changemypassword.leeds.ac.uk": [17318], "safelinking.net": [14233], "status.parsely.com": [12413], "shopbootsusa.com": [2213], "de-sv.dict.cc": [4455], "enrol.bournemouth.gov.uk": [2251], "www.lung.ca": [2794], "main-host.de": [9893], "my.cryptovpn.com": [3866], "vispashop.com": [17780], "*.assetspost.com": [2986], "images.playboy.com": [12799], "news.citrixonline.com": [3179], "www.glyph.im": [6754], "gtms03.alicdn.com": [805], "welwynhatfield.greenparty.org.uk": [6925], "www.dr.com.tr": [4077], "www.myra.gov": [10778], "*.cdn.cloudfiles.rackspacecloud.com": [13507], "adperium.com": [624], "i.cx": [7652], "images.fineartamerica.com": [5844], "members.trust-guard.com": [16780], "static.javadoc.io": [8530], "devon.gov.uk": [4428], "devimages.apple.com": [1120], "muut.com": [10735], "www.sbs.nhs.uk": [10913], "www.hugedomains.com": [7601], "www.research.ibm.com": [7675], "www.discuto.io": [4560], "datacell.com": [4177], "*.bestofferbuy.com": [1805], "static.goexplore.net": [6777], "preferences.news.com.au": [11338], "globalscaletechnologies.com": [6739], "es.norton.com": [11505], "dl.ubnt.com": [17084], "www.chevereto.com": [3070], "elastictrace.com": [5143], "www.onlinethreatalerts.com": [11878], "www.greensmoke.com": [6928], "*.mediapart.fr": [10180], "bugs.dragonflybsd.org": [4738], "jumio.com": [8672], "www.ecoff.org": [5055], "www.globaltap.com": [6740], "u1.uicdn.net": [16958], "www.zwiebelfreunde.de": [18926], "app.bluecats.com": [2128], "www.freescorenation.com": [6131], "pixoto.com": [12746], "community.sendgrid.com": [14577], "bexley.greenparty.org.uk": [6925], "*.artfiles.de": [1230], "www.leafly.com": [9204], "www.tunisia-sat.com.tn": [16832], "www.ruby-toolbox.com": [14017], "www.nodc.noaa.gov": [11083], "support.optimizely.com": [4931], "www.learnmyway.com": [9211], "capita.slough.gov.uk": [14971], "*.ovid.com": [12175], "forums.xamarin.com": [18540], "liberis.co.uk": [19362], "www2.merkleinc.com": [19397], "searchlock.com": [19576], "tags.expo9.exponential.com": [5512], "e-cosm2015.engineering.osu.edu": [11760], "login.creativecommons.org": [3778], "newspaperdirect.com": [11346], "www.miga.org": [8259], "projects.csail.mit.edu": [9749], "it-cube.net": [7839], "www.roaringpenguin.com": [13919], "adblade.com": [560], "thing.net": [16355], "www.transifex.net": [16668], "www.bergenopzoom.nl": [11132], "cbfisap.ed.gov": [4889], "vouchedfor.co.uk": [17848], "*.parsecdn.com": [12415], "www.exhibition.ecc-platform.org": [4879], "fehlersuche.spiel.tivi.de": [19800], "socialscreamer.com": [15067], "webassets.scea.com": [15144], "apps.aldi-suisse.ch": [299], "learning.southglos.gov.uk": [15189], "www.maven.co": [10087], "nightweb.net": [11397], "www.commonapp.org": [3483], "reformal.ru": [13722], "www.xnet-x.net": [18580], "www.uni-hannover.de": [17168], "www.geekgirlsguide.com": [6497], "praetorian.com": [13011], "blogs.fsfeurope.org": [5602], "www.ges.bell.ca": [1763], "xsearch.stanford.edu": [15383], "e19.xhamsterpremiumpass.com": [18516], "conoha.jp": [3587], "google.com.*": [6838, 6840, 6845, 6848], "slashcdn.com": [14944], "www.excitations.com": [5486], "help.barclaycard.co.uk": [1664], "ioplex.com": [7778], "thefoundry.co.uk": [16278], "adisc.org": [269], "it.biovendor.cz": [1902], "anonfiles.com": [1041], "www.cimb-principal.com.my": [2606], "webauth.uvm.edu": [17075], "astat.brave.pigg.ameba.jp": [926], "www.mentoringcentral.net": [10265], "debconf7.debconf.org": [4268], "www.yourcounciljobs.co.uk": [18734], "bufferapp.com": [2402], "www.fau.org": [5552], "www.riskiq.com": [13902], "www.synapsepay.com": [19650], "*.myheritage.com.il": [10834], "go.trendmicro.com": [16717], "iceoblog.mit.edu": [9747], "thehive.xbee.net": [18548], "gps.cabinetoffice.gov.uk": [2701], "outofcontrol.ca": [12147], "ovh.lt": [12173], "www.gnusocial.de": [6361], "madetech.com": [9839], "ote.gr": [12132], "widgetserver.com": [18282], "*.senate.gov": [14574], "open.ad.yieldmanager.net": [13881], "spamcop.net": [19613], "edp.pt": [4896], "pipeline.livingsocial.com": [9517], "ccmis.psc.gov": [19525], "www.acluofnc.org": [251], "pcbooking.doncaster.gov.uk": [4678], "speakerdeck.com": [15236], "cp.bluesnap.com": [2136], "community.wizards.com": [18386], "blackznc.net": [2043], "pclick.yahoo.co.jp": [18640], "s.mzstatic.com": [10852], "webmail.phpnet.org": [12251], "docs.appcelerator.com": [1113], "forge.puppetlabs.com": [13232], "mrh.ibizarocks.com": [7901], "plazakauppa.fi": [12131], "westconsincuhb.org": [18215], "mbl.is": [10110], "www.hesaplabakalim.com": [7373], "dodlive.mil": [17028], "reztrip.com": [13853], "www.nintendo.de": [11418], "images.lady.mail.ru": [9874], "internet.yandex.by": [18648], "my.mail.ru": [9874], "switchnetworks.com.au": [15703], "beta.campusmap.wvu.edu": [18212], "*.ucsd.edu": [16939], "kantarlatam.com": [8785], "*.youtube.com": [18709], "www.swiss.com": [15695], "*.lijit.com": [9349], "www1.youm7.com": [18714], "*.snolab.ca": [15576], "physicalsecurity.ucsc.edu": [17304], "es.pcisecuritystandards.org": [12224], "http.cdnlayer.com": [8254], "invincea.com": [8324], "www.dtu.dk": [16031], "stardrifter.org": [15402], "boards.ie": [2168], "2016.gaobase.admin.cam.ac.uk": [17243], "www.altoonamirror.com": [894], "info.evidon.com": [5458], "metrics.jpl.nasa.gov": [10869], "www.mediaed.org": [10150], "bulk.internetessentials.com": [19300], "webmaster.yandex.com.tr": [18649], "4gifs.com": [6037], "wyzant.com": [18491], "fr.calameo.com": [2731], "kingdomofloathing.com": [1308], "www.raymond.cc": [13585], "www.redweb.com": [13702], "venuscafem.com": [17612], "store.cardsagainsthumanity.com": [2836], "predictiveservices.nifc.gov": [10924], "g33kinfo.com": [6298, 6299], "cf.prefetch.xxxbunker.com": [18607], "www.seeks-project.info": [14554], "*.noblogs.org": [19435], "shop.asus.com": [357], "knowledgehub.local.gov.uk": [16972], "euserv.de": [4983], "www.npp.org.hk": [19445], "www.skylink.sk": [14937], "www.pccomponentes.com": [19482], "www.openstack.org": [11975], "identitymanagement.uchicago.edu": [17246], "ikk-gesundplus.de": [7748], "jadi.net": [8491], "pinkpaislee.com": [12693], "www.gosoapbox.com": [6783], "www.linksfu.com": [9379], "anxbtc.com": [314], "id.theguardian.com": [16288], "www.rheden.nl": [11132], "vap.rts.ch": [19621], "atechmedia.com": [368], "canlii.org": [2788], "www.thecreatorsproject.com": [16263], "turnkeylinux.org": [16841], "wwwdc2.hertzentertainment.com": [7372], "media.uic.edu": [17231], "moja.tatrabanka.sk": [10534], "b.wpimg.pl": [19766], "webmail.quickline.com": [19530], "eservices.plymouth.ac.uk": [12833], "www.econda-monitor.de": [5057], "voxmedia.com": [17852], "chessbase-shop.com": [3068], "mail.jourdan.ens.fr": [4930], "www.isak.liu.se": [9084], "robinbarnard.com": [13923], "hyper.sh": [7644], "gmx.net": [6350], "middleware.internet2.edu": [8279], "help.rubygems.org": [14020], "delicate.psc.edu": [12298], "www.immunitysec.com": [8007], "ox-d.netline.com": [11240], "cdn.mathjax.org": [19386], "bucknell.edu": [2388], "projects.unbit.it": [17148], "bihira.com": [1868], "www.notepad-plus-plus.org": [11525], "crm.fsf.org": [5600], "sonos.com": [15140], "login.hwb.wales.gov.uk": [17957], "www.comviq.se": [3546], "bbnaut.ibillboard.com": [7679], "seniorgift.stanford.edu": [15383], "www.mainlinehobby.net": [9896], "www.calomel.org": [2755], "www.ohnopodcast.com": [15332], "*.newtention.net": [11349], "*.overclockers.com": [12165], "video.vzaar.com": [17883], "secure.barclaycard.co.uk": [1664], "avia.yandex.ua": [18656], "richmondteaparty.com": [13875], "iberiabank.com": [7899], "bohoomil.com": [2180], "gmw.nhs.uk": [10913], "*.sueddeutsche.de": [15578], "identity.kde.org": [8718], "www.site.yandex.kz": [18652], "*.apache.org": [1087], "videotron.com": [17700], "www.halsnaes.dk": [7178], "proxysite.com": [13182], "shibboleth2.lsbu.ac.uk": [9098], "aidsmap.com": [740], "lhcdashboard.web.cern.ch": [2575], "blogs.office.com": [11743], "www.blog.documentfoundation.org": [16221], "*.unitedsafcu.org": [17208], "votesmart.org": [13141], "www.g33kinfo.com": [6298, 6299], "www.bitcoin.at": [1961], "demo.globalpay.westernunion.com": [18216], "www.pfizer.com": [12610], "www.bostonbuilt.org": [2231], "www.clever.com": [3238], "*.bulletinmessenger.net": [2418], "www.progressive.hu": [13133], "trans.chbtc.com": [3036], "metasploit.com": [10310], "prepaid.congstar.de": [3577], "air.lincoln.gov.uk": [9362], "lsvr.osu.edu": [11760], "www.linux-sunxi.org": [9401], "www.artizone.com": [1234], "buy.xmarks.com": [18579], "djangogirls.org": [4593], "happiness.bufferapp.com": [2402], "www.jenner.ac.uk": [8552], "www.austrian.com": [1406], "www.calligra-suite.org": [2754], "epic.com": [5319], "rs-static.wistia.com": [18377], "www.phenix.bnl.gov": [19009], "booklooker.de": [2204], "www.ipsos-na.com": [8350], "trialfunder.com": [16723], "www.torrentleech.org": [16586], "showbiz.mail.ru": [9874], "stars.leeds.ac.uk": [17318], "ratm.deathmask.net": [4266], "onestart.iu.edu": [8064], "webmail.active24.cz": [18938], "sifomedia.citypaketet.se": [3196], "join.boozedgfs.com": [13039], "images.washingtonpost.com": [17990], "www.pronosticuri-tenis.com": [7732], "bmpharmacy.com": [1532], "elements.yandex.by": [18648], "sso.jetbrains.com": [8559], "escrow.com": [5354], "www.edeveloperz.com": [4899], "www.verticalacuity.com": [17637], "help.it.ox.ac.uk": [17271], "tinydl.com": [16487], "linuxtag.org": [9417], "politicopro.com": [12874], "www.onename.io": [11837], "isisaccreditation.imrg.org": [8239], "customwheelconnection.com": [3938], "www.recon.cx": [13417], "www.apprenticeships.scot": [18959], "www.ubuntu-mate.community": [17106], "users.admin.badgeville.com": [1607], "alumni.law.ox.ac.uk": [17271], "dailypix.me": [4118], "sqlite.org": [14163], "chilebit.net": [3076], "nlg.org": [10936], "www.gfi.com": [6324], "*.nationalacademies.org": [11045], "secure.voyage-prive.com": [17857], "*.sb-innovation.de": [14078], "act.ucsd.edu": [16939], "volkswagenbank.de": [17830], "vpac.org": [17498], "*.grnet.gr": [6912], "*.fullerton.edu": [6255], "sony.se": [15143], "tradeblock.com": [16634], "ssl.linksynergy.com": [9381], "app.shareconnect.com": [14662], "rarbg.to": [19534], "safe-in-cloud.com": [14224], "netswarm.net": [11251], "www.littlesvr.ca": [9478], "budgetkredit.ch": [2394], "careersfdr.ucc.ie": [16933], "docs.connect.squareup.com": [15329], "tools.manageengine.com": [9940], "www.highseer.com": [7403], "pkso.so.ch": [19648], "wiki.tfes.org": [16164], "*.photobucket.com": [12644], "id.guardian.co.uk": [7000], "123.sogou.com": [19606], "www.oxfordlearnersdictionaries.com": [12191], "bolton.greenparty.org.uk": [6925], "thewatershedresidence.com": [16321], "newsledge.com": [19434], "gateway.ncl.ac.uk": [10884], "dreampass.jp": [4752], "intranet.sydney.edu.au": [19649], "si0.twimg.com": [16877], "www.bprbzk.nl": [11132], "*.oops.org": [11897], "*.inbox.lv": [8038], "afcad.engineering.osu.edu": [11760], "www.rapid7.com": [13553], "feedback2.yandex.by": [18648], "comlaude.com": [3459], "lists.netfilter.org": [11225], "my-qa.symantec.com": [15715], "www.mediaroots.org": [19390], "pureinfo.com": [13239], "empirehost.me": [19156], "4chan-ads.org": [158], "wikis.mit.edu": [9749], "www.thetinhat.com": [16319], "*.checkm8.com": [3046], "pcbrowser.dd.qq.com": [13285], "www.maltris.org": [9924], "www.cir.ca": [3153], "www.realvnc.com": [13627], "www.comnews-conferences.ru": [3452], "nationbuilder.com": [11043], "thefastandthefurious.com": [5683], "mc.vanderbilt.edu": [17557], "keybase.io": [8868], "vbseo.com": [17469], "ua.icecat.biz": [7914], "bitcoinforum.com": [1979], "www.fastsoft.com": [5675], "www.whistleout.com.au": [18248], "iu.edu": [8064], "vod.super8-movie.com": [12394], "microsoft.com": [10364], "www.rosettacode.org": [13970], "www3.bibl.liu.se": [9083], "www.authy.com": [1411], "www.superguarantee.com": [15613], "mailmax.trustwave.com": [16799], "trklnks.com": [16754], "capitalone360.com": [2819], "aquent.us": [1144], "fsrmedien.htwk-leipzig.de": [7114], "uavisitscheduler.wustl.edu": [17993], "bounty.github.com": [6680], "ubnt.com": [17084], "blogs.technet.com": [16030], "peoplefinder.gmu.edu": [6544], "www.trustly.com": [16796], "backlift.com": [1600], "info.internet.org": [8278], "www.mov24hr.com": [18666], "uni.xkcd.com": [19785], "berkeleychessschool.org": [1786], "tek.no": [16063], "www.assoc-amazon.de": [1289], "irc.tfes.org": [16164], "marketdojo.com": [10010], "www.ballerup.dk": [1630], "secure-donor.com": [14481], "stage.beaker-project.org": [1729], "democracy.canterbury.gov.uk": [2811], "www.dnshistory.org": [4067], "etracker.de": [5390], "admissions.rotherham.gov.uk": [13979], "king.com": [8897], "www1.cisco.com": [3162], "secure.gettyimages.co.*": [6621], "*.thepermitstore.com": [16226], "wiki.openmrs.org": [11953], "erinn.org": [5344], "apsislead.com": [1140], "ssl.tiggerswelt.net": [16441], "cdt.org": [2565], "p3.raasnet.com": [13655], "www.fafsa.gov": [5550], "api3.geo.admin.ch": [19648], "static-ak.hypem.net": [7643], "partner.pricegrabber.com": [13052], "shef.ac.uk": [17339], "www.zeeland.nl": [11132], "www.socializer.cc": [15071], "*.pickaweb.co.uk": [12660], "forum.selfhtml.org": [19580], "demo.1wt.eu": [48], "webapp.icarol.com": [19272], "dv-zeuthen.desy.de": [4399], "*.rubygems.org": [14021], "www.educatetheworld.com.au": [5094], "west-midlands.police.uk": [18208], "studenthealth.wustl.edu": [17993], "slaveryfootprint.org": [14950], "www.hsv.se": [7100], "blog.coinjar.com": [3397], "csis.ysu.edu": [18742], "store.wpiinc.com": [18457], "ubmail.buffalo.edu": [17297], "www.solarflare.com": [15112], "www.eloedge.com": [4923], "greenpeace-energy.de": [6933], "live.paloaltonetworks.com": [12349], "*.powerpay.biz": [12992], "*.kde-apps.org": [19462], "mailman.videolan.org": [17688], "i.embed.ly": [5197], "pass.yandex.ua": [18656], "www.coloradoattorneygeneral.gov": [3439], "ideoclick.com": [7942], "anders.com": [997], "www.cable6.net": [2702], "www.o2shop.cz": [16076], "badosoft.com": [1610], "eshop.upc.cz": [17000], "www.kanotix.org": [8782], "urshare-prod1.urel.berkeley.edu": [17240], "i.kinja-img.com": [8903], "toolbarbrowser.com": [16554], "playonlinux.com": [12793], "tracking.websitealive.com": [18149], "usukita.org": [17068], "adversary.org": [655], "www.diagonalperiodico.net": [4441], "www1.amazon.co.uk": [917], "mailman.jcea.es": [8540], "visitormotion.com": [5390], "cdn.static-economist.com": [15426], "www.mailoutinteractive.com": [9889], "www.kbs.de": [8940], "owncloud.aktivix.org": [771], "webmailer.telecolumbus.net": [16073], "lookout.com": [9601], "www.telebasel.ch": [19667], "liaison.uic.edu": [17231], "autotraderstatic.com": [1419], "wmail1.cc.ntu.edu.tw": [10971], "www.campinaopschool.nl": [2783], "blog.popcorn-time.se": [12914], "www.cwc.tid.gov.hk": [7077], "www.jadu.net": [8492], "secure.xdomain.ne.jp": [18553], "*.cashforcontracts.com": [2880], "foundation.berkeley.edu": [17240], "www.slides.com": [14964], "my.smoothwall.org": [15012], "www.pajustice.org": [12539], "*.sec.s-msft.com": [14058], "*.rambler.ru": [13540], "android.git.linaro.org": [9361], "www.ffa.ro.vutbr.cz": [17522], "snapengage-5.wpengine.netdna-cdn.com": [15027], "channelx.biz": [3005], "images.dailykos.com": [4116], "www.termsofservicegenerator.com": [6716], "www.matsuev.com": [4364], "popmodels.cancercontrol.cancer.gov": [2805], "trackbar-bap.navigator.web.de": [18050], "cmis.alfresco.com": [802], "www.usask.ca": [17338], "precursorapp.com": [13022], "www.projectmeshnet.org": [13139], "www.kenexa.com": [8848], "www.odmwheels.com": [11616], "i1.social.s-msft.com": [14058], "viewfromtheedge.progress.com": [13132], "www.alfa.cz": [801], "www.rare.us": [13564], "nces.ed.gov": [4889], "ort.fi": [15610], "www.store.economist.com": [5060], "nerdsnook.com": [11160], "app.asana.com": [1242], "cleverbridge.org": [3240], "csctrustedsecure.com": [2667], "podnapisi.net": [12847], "*.iacr.org": [8255], "www.linshunghuang.com": [9360], "share.flipboard.com": [5925], "www.broadcast.ch": [19621], "tamu.edu": [16154], "espo.nasa.gov": [10869], "kontakt.amnesty.se": [972], "jwz.org": [19330], "support.iraiser.eu": [8353], "arkos-bbs-cdn.citizenweb.io": [3173], "www.macruby.org": [9822], "*.appthemes.com": [1110], "pssap.gov.au": [13212], "terveysportti.fi": [16133], "www.gymglish.com.br": [7038], "i18n.tiki.org": [16444], "support.qq.com": [13285], "joomla-security.de": [19324], "ja.net": [8414], "gaiaonline.com": [6405], "swefair.engineering.osu.edu": [11760], "www.casperogfrank.dk": [2886], "www.unity3d.com": [17220], "my.com": [10743], "wpc.016b.edgecastcdn.net": [18049], "addons.instantbird.org": [8186], "blog.woobox.com": [18417], "www.gaia-gis.it": [6404], "dwolla.com": [4816], "www.jusek.se": [8686], "www.raur.co": [13400], "www.ssllabs.com": [14180], "detectify.com": [4402], "mail.latino.aol.com": [321], "fr2.rpmfind.net": [14004], "sbrf.ru": [14322], "ga.youcanbook.me": [18703], "benchmarking.greenit-bb.de": [6918], "egg.alipay.com": [817], "www.tunisia-sat.com": [16832], "www.blosxom.com": [2123], "game.timezero.ru": [16458], "www.hexagon.cc": [7380], "nyaa.eu": [11595], "www.coindl.com": [3392], "css-hx.newjobs.com": [11318], "*.shop.linuxnewmedia.com": [9396], "www.kasperskypartners.com": [8810], "www.11footballclub.com": [21], "careerlaunch.jpl.nasa.gov": [10869], "geogebra.org": [6537], "www.anidb.net": [1022], "www.hotmail.co.jp": [7557], "secure.budgetinsurance.com": [2392], "helfen.global2000.at": [6720], "structuralengineering.de": [7114], "kb.iweb.com": [7875], "*.columbia.edu": [3449], "news.smzdm.com": [15017], "www.sina.is": [14841], "track.movad.net": [10626], "members.bitcoinfoundation.org": [1980], "ijobs.independent.co.uk": [8053], "www.docusign.net": [4630], "www.selectricity.org": [14566], "api.paymentwall.com": [12479], "partners.alfresco.com": [802], "jobs.london-fire.gov.uk": [19371], "www.kanotix.net": [8782], "linuxplumbersconf.com": [9397], "secure.sky.com": [14924], "one.org": [11640], "truecrypt71a.com": [16767], "liveinternet.ru": [9488], "justeat.nl": [19328], "uploads.strikinglycdn.com": [15524], "support.imation.com": [7986], "depts.washington.edu": [17291], "www.maths.ox.ac.uk": [17271], "theswirlworld.com": [1307], "entimg.s-msn.com": [14059], "goeshow.com": [6799], "mediatemple.net": [10165], "openlinksys.info": [11950], "wiki.nuug.no": [10979], "connecthelp.wustl.edu": [17993], "verizon.net": [17626], "linuxaria.com": [9427], "emilstahl.dk": [5208], "www.lifars.com": [9328], "www.ncisf.org": [10882], "media.idownloadblog.com": [7711], "www.zencache.com": [18817], "bk.jd.com": [8423], "cdn.playstationnetwork.com": [12796], "manhattan-institute.org": [9953], "ewh.ieee.org": [7715], "standorte.deutschepost.de": [19112], "application.apple.com": [1120], "*.ilius.net": [10214], "seancassidy.me": [14440], "boxpn.com": [2260], "www.laup.nu": [9170], "*.norrgruppen.se": [11489], "hosting.jino.ru": [8575], "static.webplatform.org": [18079], "www.libreoffice-from-collabora.com": [9309], "iservice.uniontrib.com": [17070], "voices.allthingsd.com": [839], "ics-cert.us-cert.gov": [17415], "eogrid.esrin.esa.int": [5430], "www.bhosting.ru": [1519], "www.gitlab.com": [6678], "fashiondip.com": [5666], "blog.kaspersky.com": [8806], "ws.blockchain.info": [2090], "bigdata.stanford.edu": [15382], "s.mxmcdn.net": [10739], "vrt.outbrain.com": [12150], "company.zynga.com": [18933], "cn.cryptonator.com": [3883], "*.qt-apps.org": [19462], "dragonflybsd.org": [4738], "mozdev.org": [10647], "www.canon.ru": [2809], "theatln.tc": [1920], "www.over-blog.com": [12156], "www.altex.ro": [886], "u.m.taobao.com": [15952], "sorry.google.com": [6846], "schulinfo.zvv.ch": [19806], "idox.bathnes.gov.uk": [1689], "privacysos.org": [13083], "buzzurl.jp": [2481], "*.alluremedia.com.au": [863], "ih2.redbubble.net": [13660], "pay.qq.com": [13285], "muni.cz": [10704], "wargaming.com": [17978], "file.gmobb.jp": [6342], "ing.com": [7769], "apply.jhu.edu": [16296], "www.blockmetrics.com": [2087], "elive.uaa.alaska.edu": [17233], "www.betterplace.org": [1828], "textracer.dk": [16161], "www.tripadvisor.co.uk": [19698], "css.loveplanet.ru": [9627], "license.avira.com": [1449], "www.firm24.com": [5864], "www.library.ecc-platform.org": [4879], "ozel.yandex.com.tr": [18649], "asplos14.cs.illinois.edu": [17258], "secure.bookhostels.com": [18042], "excitations.com": [5486], "talentsmart.com": [15920], "www.fomori.org": [5988], "*.drugsforum.eu": [4776], "anypoint.mulesoft.com": [10691], "maketecheasier.com": [9909], "www.sustainableelectronics.org": [15665], "*.nostarch.com": [11445], "into.aalto.fi": [390], "www.covad.com": [3724], "*.engineering.com": [5266], "leap.southdevon.ac.uk": [15188], "web.icq.com": [7690], "www.sky-ip.org": [14923], "app.intergi.com": [8249], "conduit.com": [3564], "gfx5.hotmail.com": [7559], "www.tpfrb.dk": [16623], "www.payoneer.com": [12483], "hosting.uk.adjug.com": [526], "*.tum.de": [16036], "surge.sh": [15653], "sip.upc.ie": [17001], "www.terrapass.com": [16127], "shop.politiken.dk": [12876], "legacy.qualaris.com": [13327], "luminoworld.com": [9666], "futurity.org": [6285], "www.neos.eu": [10899], "revenuesbenefits.havant.gov.uk": [19237], "privacy-handbuch.de": [13081], "ibanking.cimbthai.com": [2608], "www.silverstripe.org": [19591], "www.privatebank.citibank.com": [3171], "static-wap.norton.com": [11505], "www.esellerate.net": [5357], "*.quizaction.de": [13372], "*.monetate.net": [10545], "www.pindropsecurity.com": [19495], "www.wpacracker.com": [3284], "techcommons.stanford.edu": [15383], "www.ipqualityscore.com": [7795], "lmsa.stanford.edu": [15382], "beta.kneon.com": [8942], "shop.lenovo.com": [9251], "bestbuy.ugc.bazaarvoice.com": [1801], "www.millwardbrown.com": [10398], "www.dustri.org": [4811], "dashboard.rapidleaf.com": [13556], "blog-assets.pinterest.com": [12699], "www.janestreet.com": [8511], "www.scandinavianphoto.no": [14334], "www.a3li.li": [224], "em.gov.au": [1389], "jackandjill.ie": [8481], "fr.thinksteroids.com": [9737], "service.gmx.net": [6350], "assets-production.rovio.com": [13989], "www.linuxtag.org": [9417], "*.bps.org.uk": [1538], "skrill.com": [14919], "cdn.egopay.com": [5116], "mywebsitepersonal.1and1.ca": [52], "onlinesbi.com": [11873], "www.citl.illinois.edu": [17258], "cf2.imgobject.com": [5654], "shop.flixbus.cz": [5931], "login.attachmategroup.com": [1335], "s1.hughesnet.com": [7603], "www.zpchips.com": [18765], "supersec.com": [15634], "corrent.org": [3686], "creativelittlereaders.com": [3784], "www.sixxs.net": [14890], "css-seeker.newjobs.com": [11318], "go.unbounce.com": [17153], "lkab2.tdconline.se": [15799], "userscripts.org": [17432], "mysolarcity.com": [15109], "community.logentries.com": [9553], "*.king.com": [8897], "oschina.net": [12118], "aggemam.dk": [725], "www.downstreamtoday.com": [4729], "forum.whmcs.com": [17906], "download.libreswan.org": [9316], "tradeking.com": [16635], "*.flashtalking.net": [5907], "planet-lab.org": [12763], "www.4runnerforex.com": [153], "kakao.com": [8705], "go.usa.gov": [17029], "contact.fitbit.com": [5887], "eurexchange.com": [5400], "*.fifi.org": [5780], "xfce-look.org": [19461, 19462], "piwik.bandinelli.net": [1639], "kura.io": [9041], "c.ymcdn.com": [18620], "oas.guardian.co.uk": [7000], "origin.at.ai": [796], "dailystar.co.uk": [4123], "regonline.com": [13725], "compendium.com": [3516], "mybell.bell.ca": [1763], "fossies.org": [19191], "2008.asiabsdcon.org": [1258], "powerschool.lasallehs.net": [9161], "account.ipvanish.com": [7799], "www.cascadingmedia.com": [2873], "moar.so": [10483], "*.specificmedia.com": [15243], "s.ststat.com": [14547], "redbullcontentpool.com": [13667], "press.spotify.com": [15296], "www.dotomi.com": [4702], "www.greenwood.org": [6940], "creditrepairtrust.com": [3790], "eclipso.ch": [5050], "www.bafoegonline.bva.bund.de": [5716], "*.static-nextag.com": [11363], "www.caller.com": [2753], "kinotehnik.com": [8910], "*.comcourts.gov.au": [3491], "tprc.pharm.buffalo.edu": [17297], "threema.ch": [16399], "ace-analyzer.com": [469], "account.dyn.com": [4820], "portugal.gov.pt": [12943], "privacynotprism.org.uk": [13088], "myheritage.es": [10834], "www.bb.isy.liu.se": [9084], "www.flix123.com": [5930], "kbpublisher.com": [8711], "*.etoro.com": [4978], "industry.1688.com": [36], "www.hotelwifi.com": [7553], "beaverbrooks.co.uk": [1742], "www.globalclimatemarch.org": [6737], "alphablog.citizensadvice.org.uk": [19061], "sloanconsortium.org": [14968], "splash.riverbed.com": [13907], "wiki.linaro.org": [9361], "c.ooyala.com": [11900], "www.ece.unm.edu": [16992], "my.otenet.gr": [12132], "www.housing.osu.edu": [11760], "www.vcd.org": [17474], "katescomment.com": [8815], "au.godaddy.com": [6773], "causes.com": [2909], "a1.sphotos.ak.fbcdn.net": [5700], "rare.us": [13564], "lifewelltravelled.cathaypacific.com": [2904], "www.hipeac.org": [7388], "metrics.mzstatic.com": [10852], "cdn.axonify.com": [1475], "sustainableelectronics.org": [15665], "my.ntu.edu.tw": [10971], "www.slac.stanford.edu": [15383], "alumni.kcl.ac.uk": [8899], "p3.qhimg.com": [13302], "www.essex.gov.uk": [5365], "browserhacker.com": [2374], "community.canvaslms.com": [2814], "zaltbommel.nl": [11132], "mygirlfund.com": [10763], "bitquick.in": [1943], "goodpoint.de": [13594], "darkstar.ist.utl.pt": [16032], "www.bell-labs.com": [1764], "wwwimages2.adobe.com": [615], "kar.kent.ac.uk": [17317], "z.cash": [19799], "convention.liberal.ca": [9294], "tr.norton.com": [11505], "www.politicalwire.com": [12872], "bh.ht.vc": [7587], "jobs.politico.com": [12873], "webmail.vispa.com": [17779], "heimdalsecurity.com": [7285], "press.kaspersky.com": [8806], "gamehouse.com": [6421], "rssinclude.com": [13463], "courant.com": [16731], "www.migrosbank.ch": [19399], "mail-latest.websupport.sk": [18160], "www.vc-server.de": [17472], "www.codeclimate.com": [3363], "*.rpi.edu": [13771], "vitaminshoppe.com": [17794], "hr.osu.edu": [11760], "static.catlinseaviewsurvey.com": [2905], "compte.nextinpact.com": [10903], "thn.li": [15812], "reiseauskunft-iat.bahn.de": [1617], "ir.arm.com": [339], "www.mobile01.com": [10495], "gibraltar.gov.gi": [6637], "bulkorder2.ftc.gov": [5720], "ecommerce.com": [5056], "secure.islington.gov.uk": [8370], "geekhack.org": [6502], "app-us-lb1.resrc.it": [13599], "cdn.doubleverify.com": [4709], "websitealive2.com": [18149], "bitcoin-otc.com": [1962], "www.trustedmessenger.com": [16788], "occupywallst.org": [11709], "csl.stanford.edu": [15382], "db.debian.org": [4275], "direct.yandex.com.ua": [18650], "ozkanhcrg.engineering.osu.edu": [11760], "international.nytimes.com": [11000], "www.durchmesser.ch": [19130], "www.quch.io": [13346], "www-03.ibm.com": [7675], "www.diffoscope.org": [4463], "usnautic.com": [17064], "www.ncpw.gov": [11078], "signup.linkshare.com": [13534], "www.karwansaraypublishers.com": [8801], "extranet.fernwaermewien.at": [18284], "govhack.org": [6865], "www.globalmarinenet.com": [6715], "vote.debian.org": [4275], "coag.gov.au": [3703], "link.packtpub.com": [12319], "opendoor.com": [12008], "www.vizury.com": [17800], "my.gem.co": [6512], "*.chicagotribune.com": [3073], "adwords.google.com.*": [6837], "nl.cloudflare.com": [3285], "*.kopiosto.fi": [8983], "jointhegame.kde.org": [8718], "www.office365.vutbr.cz": [17522], "www.techverse.com.au": [16020], "www.mimsonline.com.au": [9743], "bizx.info": [19004], "tweetadder.com": [16868], "www.ardamis.com": [1174], "helpspanish.cbp.gov": [2523], "isis.poly.edu": [12888], "www.hmailserver.com": [7087], "euinline.msi.com": [9792], "wac.*.edgecastcdn.net": [5079], "i1.code.msdn.microsoft.com": [10364], "www.sparked.com": [15221], "mail.sina.com.cn": [14842], "www.gargoyle-router.com": [19207], "creativecommons.org": [3778], "www.ravendb.net": [13578], "humanrightsfirst.org": [7611], "www.wiebetech.com": [18283], "m.fifedirect.org.uk": [5779], "pear.php.net": [12250], "www.adjuggler.com": [527], "www.openculture.com": [12005], "blog.leeds.ac.uk": [17318], "*.movies.netflix.com": [11230], "xbetsport.com": [18549], "dev.clickability.com": [4827], "webgate.ec.europa.eu": [5421], "developers.fortumo.com": [6060], "www.morawa-buch.at": [19409], "xchange.demandware.com": [4349], "www.kinsta.com": [8911], "postgresql.org": [12974], "famis-sunet.stanford.edu": [15383], "ab.alipay.com": [817], "litebit.eu": [9455], "assets.musicwindow.com": [574], "www.pyneo.org": [13270], "yastatic.net": [18662], "dashboard.optify.net": [12067], "cloudfoundry.com": [3300], "hg.instantbird.org": [8186], "y.wpimg.pl": [19766], "www.universityadmissions.se": [17352], "pjm.com": [12260], "lists.sourceforge.net": [15174], "staticgen.com": [15427], "brx.libreoffice.org": [9311], "sha2sslchecker.com": [14115], "vendetta-online.com": [17604], "redd.it": [13687], "one-tab.com": [11827], "api.cloudmagic.com": [3291], "www.gnome-look.org": [19461], "hgi.rub.de": [13478], "click.google-analytics.com": [6839], "www.silentsender.com": [14787], "*.gp.se": [6368], "*.rtklive.com": [13473], "www.fandango.com": [5652], "vub.sk": [17869], "findthebest.com": [5840], "blog.prediction.io": [13023], "www.cloudorado.com": [3311], "p3pwiz.com": [11176], "www.stopglobalwarming.org": [15485], "stylessl.aliunicorn.com": [819], "thinksteroids.com": [9737], "www.rarediseases.org": [13567], "cdn.staticneo.com": [11157], "blog.filippo.io": [5804], "rosetta.jpl.nasa.gov": [10869], "*.osdv.org": [11667], "relate.kde.org": [8718], "www.djurrattsalliansen.se": [4594], "mirrorreaderoffers.co.uk": [10447], "hertz247.be": [7339], "deals.techdirt.com": [16026], "jogorama.com.br": [8609], "*.hunch.com": [7617], "auditshark.com": [1361], "protectnetwork.org": [13167], "tv-release.net": [16858], "www.mediaxus.com": [10183], "main.makeuseoflimited.netdna-cdn.com": [9907], "www.cyberguerrilla.org": [3961], "dave.org.uk": [4222], "applications.kennedy-center.org": [19335], "armorybids.com": [1204], "www.hfs.washington.edu": [17291], "www.teenshealth.org": [8883], "www.longnow.org": [9591], "www.cloudwear.com": [3317], "it.godaddy.com": [6773], "briansmith.org": [2311], "kidsfootlocker.com": [8884], "reseller.ssl.com": [14176], "moodle.usainteanne.ca": [19720], "resourcecenter.911.gov": [207], "www.denfri.dk": [4360], "jobs.smartbrief.com": [14987], "origin.myfonts.com": [10758], "data.eindhoven.nl": [5127], "www.perel.eu": [17596], "blip.tv": [2079], "www.smartronix.com": [15001], "www.rnl.ist.utl.pt": [16033], "www.sueddeutsche.de": [15577], "voicethread.com": [17821], "medibankhealth.com.au": [10184], "www.admatrix.jp": [531], "tdf-telecom.fr": [15801], "whatsdeployed.paas.allizom.org": [856], "lima.osu.edu": [11760], "naromax.com": [11037], "www.fftfef.org": [5766], "lib.uaa.alaska.edu": [17235], "www.alumni.nottingham.ac.uk": [11528], "flightglobalimages.com": [5920], "theepochtimes.com": [5327], "www.hpi.de": [7090], "static.mmo-champion.com": [3934], "soe.stanford.edu": [15382], "cesta.stanford.edu": [15383], "www.hautelookcdn.com": [7241], "www.accessofficeproducts.com": [450], "shibboleth.buffalo.edu": [17297], "qas2.yandex.com.tr": [18649], "www.jud2.ct.gov": [2680], "forums.adafruit.com": [550], "www.graysofwestminster.co.uk": [6903], "formulabuckeyes.engineering.osu.edu": [11760], "www.profitbricks.de": [13128], "docs.cloud.databricks.com": [4197], "ozon.travel": [12198], "www.modxcloud.com": [9772], "www.sofawolf.com": [15088], "www.accessdata.fda.gov": [5561], "niap-ccevs.org": [10915], "spench.net": [15260], "fls-na.amazon-adsystem.com": [909], "multiply.com": [10701], "*.s3.envato.com": [5307], "paymentwall.com": [12479], "biology.williams.edu": [18316], "meirong.taobao.com": [15952], "www.yourpshome.net": [18726], "*.xenogamers.org": [18563], "support.stormpath.com": [15500], "www.cimbclicks.in.th": [2608], "mobilelending.anz.com": [315], "assets.linuxacademy.com": [9418], "ocelot.li": [11710], "secure.shareit.com": [14669], "kodsana.vdoth.com": [17583], "spamgourmet.com": [15214], "flyn.org": [5967], "nswebmail.uk.clara.net": [3212], "www.passed.cc": [12427], "partners.centrify.com": [19048], "blog.getbootstrap.com": [6609], "www.freeutopia.org": [6154], "www.roketfiyat.com": [13953], "bitcoin-contact.org": [1958], "www.pamela.biz": [12352], "www.pcre.org": [12229], "b2bmarketing.bizo.com": [2031], "webdav.mydrive.ch": [10829], "www.jekkt.com": [8542], "blog.aerofs.com": [688], "api.vpsfree.cz": [19743], "autodiscover.yandex.by": [18648], "s7.mt-cdn.net": [9798], "businesscompanion.info": [2459], "www.tenmarks.com": [16107], "www.recurse.com": [13653], "plugin-planet.com": [12826], "downloads.rc.fas.harvard.edu": [7218], "register.it.ox.ac.uk": [17271], "dees.dict.cc": [4455], "www.lucina.net": [9647], "tripwire.com": [16749, 16750], "reaganlibrary.gov": [19541], "px.spiceworks.com": [15266], "dba.sedo.de": [14540], "blog.l0cal.com": [9059], "www.vabali.de": [17525], "www.geeknetmedia.com": [6505], "www.sk-nic.sk": [14893], "support.textmagic.com": [16157], "bgpstream.com": [1513], "*.epartnershub.com": [5316], "*.socialshows.net": [15061], "*.starmoney.de": [15392], "knsaber.com": [16550], "owa.clients.kiwiirc.com": [8930], "ajax.dynatrace.com": [4825], "secure.itradecimb.com.my": [2606], "www.cda.nl": [10935], "*.wikifur.com": [18289], "fakturownia.pl": [5639], "cgmarketingsystems.com": [2977], "discussionsjapan.apple.com": [1120], "www.mybb.com": [10823], "www.rapidgator.net": [13560], "*.nathnac.org": [11087], "public.web.cern.ch": [2575], "*.virool.com": [17742], "cloud.runabove.com": [14034], "getstarted.uow.edu.au": [17350], "www.nwppn.nhs.uk": [10913], "www.hardcoreteengirls.com": [7203], "pcs.baidu.com": [1619], "airquality.portsmouth.gov.uk": [19508], "mobile.yandex.ua": [18656], "ladderslasher.d2jsp.org": [3997], "www.youtube.ph": [18709], "blockitpocket.com": [2096], "un.org": [16983], "etuoguan.taobao.com": [15952], "www.isc2cares.org": [7823], "wilkinsons-auctioneers.co.uk": [19760], "sec-i.top.de": [16558], "www.youtube.pt": [18709], "canterbury.gov.uk": [2811], "www.hakkalabs.co": [7170], "www.usersnap.com": [17439], "blob.freenet.de": [6180], "console.turn.com": [16840], "dash.runbook.io": [14036], "oneplus.net": [11841], "ihbb.htwk-leipzig.de": [7114], "brent.gov.uk": [2304], "www.savetheinternet.eu": [14316], "elsevier.com": [5185], "*.rand.org": [13398], "registration.hispeed.ch": [19716], "www.valu.va.gov": [17019], "bikenorth.birmingham.gov.uk": [19000], "atmail.com": [1323], "www.avoiceformen.com": [386], "blackhat.com": [2037], "letstalkbitcoin.com": [9265], "facultydiversity.org": [5628], "rsaconference.com": [13454], "www.kitematic.com": [8924], "last.fm": [9162], "boot.fedoraproject.org": [5726], "cascadingmedia.com": [2873], "hotel.jd.com": [8423], "arukereso.hu": [1237], "airtricity.com": [757], "www.maps.org": [9710], "sydneystudent.sydney.edu.au": [19649], "www.moviefone.com": [10641], "aj.aas.org": [235], "www.arma2.com": [18961], "sharefile.com": [14663], "www.secureserver.net": [14511], "pgi.com": [12248], "apps.eastsussex.gov.uk": [19142], "www.apachecon.com": [1088], "training.manageengine.com": [9940], "goob.tk": [3533], "www.straply.com": [15505], "blog.shopstyle.*": [14719], "webshop.ottos.ch": [19471], "secure.adviva.net": [668], "*.bytelove.se": [2490], "mainstream.radiox.ch": [13516], "pledge.lessig2016.us": [9260], "www.rsc.org.uk": [13457], "www.tn123.org": [19687], "tldrlegal.com": [15822], "elista.rt.ru": [13469], "support.steampowered.com": [15450], "500px.com": [166], "resource.awempire.com": [647], "jira.fitbit.com": [5887], "andor.com": [999], "www.wwte14.com": [17937], "www.bhiab.se": [1836], "jcsu.jesus.cam.ac.uk": [2763], "www.c9.io": [3280], "kemi.se": [8719], "*.vid.ly": [17675], "my.cloudfloordns.com": [10371], "www.alt-sheff.org": [871], "*.fordela.com": [6021], "www.tomorrow-focus-media.de": [16542], "indexing.familysearch.org": [5646], "tek.io": [1920], "www.telegram.me": [16079], "www.agmk.net": [729], "amnesty.se": [972], "itu.int": [7852], "vianet.co.uk": [17663], "www.shadowofmordor.com": [14654], "oagtravel.com": [16927], "www.checkmyping.com": [3052], "www.myip.ms": [10806], "www.jaspan.com": [8524], "www.dartlang.org": [4157], "realtidbits.com": [13631], "snapengage.com": [15026, 15027], "cdn.xignite.com": [18572], "xplosion.de": [18585], "*.torproject.org": [16576], "docs.coinkite.com": [3406], "provost.wustl.edu": [17993], "de.ioam.de": [7783], "www.bbbsilicon.org": [1495], "hit32.hotlog.ru": [7547], "www.youngminds.org.uk": [18717], "downloads3.mamp.info": [19379], "cdn.theawl.com": [16179], "office365.vutbr.cz": [17522], "iaapa.org": [7661], "discounttheatre.com": [4544], "www.franziskawellner.de": [6105], "colorlines.com": [3445], "*.hifxonline.co.uk": [7387], "b2b.amoena.fr": [979], "maps.yandex.kz": [18652], "demo1.mashery.com": [10046], "www.rxpharmacyusa.com": [14051], "ixicorp.com": [7880], "cti.w55c.net": [17891], "onlineforms.vodafone.ie": [17815], "app-de3.resrc.it": [13599], "www.xav.com": [18546], "www.tescohelp.com": [16139], "tmsz.com": [16516], "iml.osu.edu": [11760], "gateshead.gov.uk": [6467], "one.com": [11828], "analytics.proxer.me": [13176], "registrar.uic.edu": [17231], "blog.acsf.cornell.edu": [3676], "giving.givingprograms.com": [6691], "kinghost.com.br": [8898], "www.loomio.org": [9603], "*.pixinsight.com.tw": [12258], "*.justhost.com": [8689], "brd.nci.nih.gov": [11052], "npr.org": [10950], "cargocollective.com": [2850], "members.literotica.com": [9467], "cqh.harvard.edu": [7219], "www.architektur.uni-kl.de": [17169], "mysite.somerset.org.uk": [15128], "*.chime.in": [3080], "www.forum-3dcenter.org": [19190], "enterprise.cloudshark.org": [19068], "s.xnimg.cn": [18581], "factoryexpodirect.com": [5627], "www.terminal.com": [16122], "unternehmen.hofer.at": [299], "*.akademiskahus.se": [759], "www.cscportal.org.uk": [19095], "intra.lshtm.ac.uk": [9576], "bcvs.ch": [1655, 19333], "mobile.tmall.com": [19684], "www.opm.gov": [11654], "www.git.io": [6672], "*.usconstitution.net": [17038], "www.castlebridge.ie": [2892], "jobboerse.arbeitsagentur.de": [1152], "appeal.jdpay.com": [8429], "extractwidget.com": [5525], "www.ascendapp.com": [1245], "providertalk.com": [13018], "www.fncash.com": [5581], "mozest.com": [10649], "bit.ly": [2002], "www.orderstatus.earthlink.net": [5007], "nrc-cnrc.gc.ca": [11058], "go8.edu.au": [6768], "stuff.mit.edu": [9749], "calendarwiz.com": [2736], "tapgage.net": [15957], "www.careerbuilder.com": [2841], "www.privatbanka.sk": [13096], "*.pragmaticmarketing.com": [13013], "www.nelhage.com": [10904], "www.dntly.com": [4608], "cdn.jolla.com": [8622], "www.kenneth.io": [8849], "asset-a.soupcdn.com": [15167], "jenkins.qa.ubuntu.com": [17102], "status.icq.com": [7690], "www.werkenbijdeoverheid.nl": [11132], "www.megastock.ru": [10232], "memory.loc.gov": [9528], "siamogeek.com": [19590], "f5.com": [5546], "www.valueshop.co.uk": [17544], "www.bettercgi.com": [1825], "*.apnic.net": [1257], "www.nachhaltigesbauen.htwk-leipzig.de": [7114], "forum.alwaysdata.com": [897], "speedcoin.org": [15256], "smuxi.im": [15016], "a3.lscdn.net": [9102], "www.iana.org": [7667], "velofinder.ch": [19732], "jobs.asmallorange.com": [214], "blog.growth.supply": [19230], "m.help.1and1.com": [51], "f.fanli.com": [5655], "www.vh2.vutbr.cz": [17522], "sanet.me": [14077], "i.focus.de": [5974], "cp.conoha.jp": [3587], "shop.magix.com": [9708], "strom.tchibo.de": [15985], "ping.gg": [12682], "ipv4.wtfismyip.com": [17933], "2015.appseccalifornia.org": [1133], "wrb.plymouth.ac.uk": [12833], "jasondavies.com": [8523], "archive.today": [1164], "reserve.cdn-apple.com": [2553], "kinox.tv": [19337], "pastee.org": [12444], "dl.web.de": [18050], "caipiao.taobao.com": [15952], "telekom.sk": [16088], "upsilon.cc": [17399], "*.shpock.com": [14745], "northants.greenparty.org.uk": [6925], "pushpopcorn.com": [13250], "marinellarose.com": [10000], "montereybayaquarium.tumblr.com": [16825], "www.filtrala.org": [5815], "px.tmall.com": [19684], "penango.com": [12531], "global.ebsco-content.com": [4871], "www.unido.org": [16990], "dvd.xakep.ru": [18539], "www.dfrdb.gov.au": [4307], "*.buddypress.org": [2391], "members.easynews.com": [5027], "bennbookings.rugby.gov.uk": [14027], "*.indymedia.nl": [8082], "www.mtswelding.co.uk": [19415], "www.novainfosec.com": [11440], "www.iws.htwk-leipzig.de": [7114], "dotcomsecurity.de": [4698], "usercenter.checkpoint.com": [3048], "www.fixubuntu.com": [5897], "app.whappodo.com": [18227], "secure.pepperfish.net": [12555], "www.anonymox.net": [1049], "ar.chaturbate.com": [3035], "activemelody.com": [500], "about.usc.edu": [17278], "www.respekt.cz": [19548], "glyph.im": [6754], "www.aggemam.dk": [725], "lpo.org.uk": [9097], "nac.vodafone.ie": [17815], "www.bccla.org": [1505], "forum.bytemark.co.uk": [2489], "www.relayrides.com": [13752], "autodiscover.comscore.com": [3453], "dev.tocco.ch": [16524], "au4.uicdn.net": [16958], "web1.johnshopkins.edu": [8611], "media.dyson.com": [4837], "randischumann.dk": [13541], "frascatitheater.nl": [6108], "*.fuskator.com": [6279], "tripadvisor.co.uk": [19698], "www.tent.io": [16115], "spiegel.de": [15272], "encryptmas.org": [5238], "www.typo3.org": [15894], "home.1688.com": [36], "app.mouseflow.com": [10624], "fortbildung.springerzahnmedizin.de": [15310], "*.itu.dk": [7841], "learningdesign.usc.edu": [17278], "heatmap.gemius.com": [6516], "xakep.ru": [18539], "www.corpimages.de": [3679], "secure.siteparc.fr": [14884], "iuanyware.iu.edu": [8064], "cdn.onapp.com": [11808], "masterh5.adriver.ru": [534], "api.wp.6scan.com": [183], "*.telegram.com": [16078], "goexplore.net": [6777], "noip.com": [11444], "www.southernct.edu": [15195], "panet.andover.edu": [12623], "www.hbokids.com": [19241], "kinox.am": [19337], "www.mkk.com.tr": [9754], "www.certs.vutbr.cz": [17522], "de.pornworms.com": [12928], "www.decathlon.es": [19771], "netbank-ratenkredit.web.de": [18050], "loisirs.cff.ch": [15693], "tcodevelopment.com": [15988], "ful.cambeywest.com": [2765], "denfri.dk": [4360], "cloudmonitor.nimsoft.com": [2509], "stats.wmtransfer.com": [18076], "www.telmasters.com": [16066], "docs.sencha.com": [14576], "niveusluna.org": [9670], "www.bertrandmeyer.com": [1799], "arma3.com": [1202], "www.montanalinux.org": [19408], "rotesource.com": [13976], "thestaradvisers.com": [16312], "uclouvain.be": [17230], "staticsitegenerators.net": [15430], "forexct.com": [6034], "www.libvirt.org": [9323], "www.belgacoin.com": [1761], "autovps.net": [1423], "www.payhip.com": [12475], "tracker.zentyal.org": [18834], "gamasutra.com": [16021], "siepr.stanford.edu": [15383], "countbayesie.com": [3704], "www.mycampina.com": [2783], "forums.warframe.com": [17977], "deathmask.net": [4266], "www.npac.com": [10946], "www.question-defense.com": [13355], "cinemovies.fr": [3141], "makeshop.jp": [9906], "3scale.net": [136], "xtwo.ne.jp": [18603], "nicehash.com": [11382], "www.getify.com": [6614], "dv.developer.here.com": [7326], "utica.edu": [17454], "youvisit.com": [18711], "www.geolistening.com": [6540], "www.commlink.org": [3472], "apleywoodprimary.taw.org.uk": [19661], "www.gigenetcloud.com": [6657], "mainlinehobby.net": [9896], "avatars3.githubusercontent.com": [6680], "wwwmail.urz.uni-heidelberg.de": [17174], "www.intevation.net": [8297], "deutschebkk.de": [4406], "www.mims.com": [9743], "www.weechat.org": [18177], "www.nuand.com": [11566], "*.siamogeek.com": [19590], "www.buckid.osu.edu": [11760], "childcare.bury.gov.uk": [19027], "lochem.nl": [11132], "img.cash.ch": [19043], "spaceindustrynews.com": [15210], "www.ssc.osu.edu": [11760], "smt.admaster.com.cn": [530], "plone.org": [12819], "nxtgn.org": [11594], "memecenter.com": [10249], "www.amnistia.org.mx": [977], "www.cambeywest.com": [2765], "nl.havering.gov.uk": [7244], "www.palmcoastdata.com": [12345], "f1.sapseod.mindtouch.us": [10410], "system76.com": [15758], "cdn.tripadvisor.com": [16741], "mynaweb.com": [10840], "streammygame.com": [15517], "merpic.intelliwebservices.com": [8219], "silvawoodflooring.co.uk": [14798], "eforms.aylesburyvaledc.gov.uk": [18976], "www.sierraware.com": [14772], "usb.org": [17035], "evaske.com": [5435], "www.lincstothepast.com": [9365], "secure.api.search.sky.com": [14924], "www.domaindiscount24.com": [19123], "www.mailgun.com": [9883], "woolworthsonline.com.au": [18422], "accounting.xmission.com": [18529], "youtube.com.kw": [18709], "*.ijreview.com": [7746], "googleblog.blogspot.com.*": [2113], "comnews-conferences.ru": [3452], "meerssen.nl": [11132], "www.pandoblog.com": [12358], "budgetinsurance.com": [2392], "static.enaza.ru": [5230], "atlseccon.com": [18968], "www.fz.htwk-leipzig.de": [7114], "www.caprioli.se": [12590], "entroware.com": [5302], "www.tiggerswelt.net": [16441], "drive.doublerobotics.com": [4713], "www.sidux-ev.org": [14767], "upcmail.upc.nl": [17002], "www.fishnetsecurity.com": [5882], "connectproxy.wilmerhale.com": [18319], "auto.yandex.by": [18648], "ct.googleapis.com": [6839], "tickets.openpgpjs.org": [11965], "target.zedo.com": [18808], "www.mobilepki.org": [10503], "www.streamtip.com": [15519], "br.inter.net": [8229], "www.rottnestexpress.com.au": [13983], "berlin-airport.de": [1790], "cbsn.ws": [1920], "p5.qhimg.com": [13302], "datacvr.virk.dk": [17741], "www.steamcommunity.com": [15451], "groups.cern.ch": [2575], "vtunnel.com": [17520], "www.afcyhf.com": [3481], "ms.yahoo.co.jp": [18640], "stormfront.org": [15498], "www.backpackerslucerne.ch": [1601], "www.envato.com": [5306], "bestvpn.com": [1808], "www.unrealircd.org": [17364], "gprecruitment.hee.nhs.uk": [10913], "www.gentlelabs.com": [6528], "www.pastee.org": [12444], "www.westsussex.gov.uk": [18211], "godpraksis.no": [6802], "fasthosts.co.uk": [5685], "cms.htw-berlin.de": [7112], "regizug.zg.ch": [19648], "www.vacareers.va.gov": [17019], "cedmagazine.com": [2569], "cdn.alldebrid.com": [830], "www.opendoors.org": [12009], "www.ubmaviationnews.com": [16927], "projects.thm.de": [15811], "www.hartwork.org": [7217], "obsproject.com": [11609], "lrb.co.uk": [9582], "hrcdn.net": [7143], "juke.mmi.bemobile.ua": [1724], "secure.mozilla.jp": [10655], "samsung.com.cn": [14265], "techendo.com": [16027], "schaafpc.com": [14345], "secure.chemistwarehouse.com.au": [3060], "vadenpatient.stanford.edu": [15383], "imperialviolet.org": [8017], "*.nrc.nl": [10956], "srlabs.de": [14521], "images.c.switchadhub.com": [15701], "pledgie.com": [12812], "1und1.de": [68], "et02.xhcdn.com": [18514], "forum.ovh.it": [12173], "vpstudentsblog.utoronto.ca": [17343], "youngalumni.stanford.edu": [15383], "socialmediascanner.eset.com": [5358], "*.freewheel.tv": [6135], "api.hub.jhu.edu": [16296], "www.maketecheasier.com": [9909], "www.jpcert.or.jp": [8447], "login.teamviewer.com": [16004], "dustin.se": [4810], "www.ffa.vutbr.cz": [17522], "powerdns.net": [12991], "*.gnome-look.org": [19462], "rvm.io": [13482], "order.mysecureconnect.com": [10783], "bitshares.org": [1946], "cdn.lst.fm": [9162], "cdn.wl.easydategroup.com": [785], "copernicus.cnes.fr": [2634], "*.blau.de": [2060], "es.community.dell.com": [4335], "blog.openmandriva.org": [11956], "www.mikrocontroller.net": [10389], "love2d.org": [9628], "assets.delvenetworks.com": [4340], "t.embed.ly": [5197], "getpersonas.com": [6578], "www.listenerapproved.com": [9451], "static3.wonderwall.com": [18413], "dirk.to": [4535], "*.arsenalnews.net": [8878], "www.pcp.com": [12227], "www.wpx.ne.jp": [18468], "midasgreentech.com": [10373, 10374], "waveney.firmstep.com": [19183], "www.telus.com": [16103], "vidplay.net": [17702], "e210.johnshopkins.edu": [8611], "www.trane.com": [19693], "i2.gallery.technet.microsoft.com": [10364], "api.mtvnn.com": [17661], "www.ece.illinois.edu": [17258], "cdn2.emilstahl.dk": [5208], "huishou.jd.com": [8423], "monitis.com": [10555], "padlet.com": [12325], "researchgateway.wustl.edu": [17993], "www.mighty-hoernsche.de": [2592], "pixel.1und1.de": [68], "ic-live.com": [7907], "www.btcxindia.com": [1575], "censorship.govt.nz": [2939], "depositprotection.com": [4375], "www.sysconfig.org.uk": [15752], "turtl.it": [16847], "www.zadarastorage.com": [18776], "www.olat.uni-hamburg.de": [16951], "www.fourmilab.ch": [6081], "blog.p2pfoundation.net": [12201], "www.otalliance.org": [11680], "multivu.com": [2937], "stationlrowingclub.com": [15434], "store.gomohu.com": [6794], "www.expertbail.com": [289], "buslanepayments.newcastle.gov.uk": [11315], "media.secure-mobiles.com": [14482], "roadtrippers.com": [13917], "kinesis-ergo.com": [8894], "www.usatoday.com": [17031], "speedcrunch.org": [15252], "credoaction.com": [3793], "privacyscore.com": [13094], "www.apache-ssl.org": [1085], "www.boligejer.dk": [2189], "archive.moe": [1165], "bitcoinsil.co.il": [1985], "tipico.de": [16492], "www.law.cf.ac.uk": [2834], "acm.org": [261, 262], "*.g10code.com": [6294], "www.coveralls.io": [3730], "anpdm.com": [1053], "static.isu.pub": [8382], "enrollmentmanagement.illinois.edu": [17258], "triphip.com": [16742], "wyenet.net": [18487], "www.filepicker.io": [5801], "e1.xhamsterpremiumpass.com": [18516], "www.codinghorror.com": [3385], "tent.is": [16116], "m.spontex.org": [15287], "elitekeyboards.com": [5166], "*.4shared.com": [154], "3taps.com": [138], "www.unm.edu": [16991], "*.worldwinner.com": [6416], "vc.ru": [17579], "t3blog.com": [15780], "bitmixer.io": [19003], "www.palantir.com": [12339], "confused.com": [3573], "ccrrockland.cancer.gov": [2805], "internet.yandex.com.tr": [18649], "cryptocoincharts.info": [3872], "*.stevens.edu": [15470], "*.bbc.co.uk": [1499], "*.real.com": [13622], "ivegotkids.com": [8400, 8401], "csis-scrs.gc.ca": [2802], "juicycanvas.com": [8669], "forum.mobilism.org": [19404], "www.binarybiz.com": [1889], "citizenweb.io": [3173], "mas.wiiings.com": [18288], "www.fmaba.com": [5647], "eurodiet.co.uk": [5411], "youtube.gr": [18709], "content001.bet365.com": [1811], "fontdeck.com": [5990], "www.brandsaver.ca": [13121], "inside.cias.rit.edu": [13434], "www.scanningpens.co.uk": [14337], "touch.auto.mail.ru": [9874], "ace-host.net": [471], "atdw.tq.com.au": [16612], "*.m.godaddy.com": [6773], "*.utsandiego.com": [17070], "grad.washington.edu": [17291], "mehring.com": [10235], "cdn.datatables.net": [4188], "shop.aalto.fi": [390], "university.xamarin.com": [18540], "1688.com": [36], "www.undergrad.osu.edu": [11760], "jobs.scot.nhs.uk": [10913], "www.xiscosoft.com": [18576], "www.idsoftware.com": [7924], "bookstore.law.illinois.edu": [17258], "intermediair.snsbank.nl": [14144], "postmaster.live.com": [9483], "heute-show.de": [19800], "marvell.com": [10041], "office.live.com": [9483], "flameeyes.eu": [5901], "geizhals.de": [6511], "hustlermagazine.com": [7633], "jeffmitchell.me": [8545], "cdn3.kongcdn.com": [8976], "mises.org": [10453], "photo.goodreads.com": [6829], "docs.ocf.berkeley.edu": [17240], "www.mycalendarbook.com": [10748], "marketplace.equinix.com": [5334], "p7.qhimg.com": [13302], "lc2.lcstatic.net": [9262], "launchpad.net": [9169], "firma.skolaonline.cz": [19598], "alertbot.com": [788], "tmall.com": [19684], "archive.brent.gov.uk": [2304], "zlavadna.sk": [18878], "www.nordichosting.com": [11476], "www.ruby-lang.org": [14018], "*.helmet.fi": [7301], "www.home.uni-erlangen.de": [17311], "sic.sans.org": [14072], "*.assembla.com": [1278], "digigov.cardiff.gov.uk": [19039], "images.eoportal.org": [5314], "www.laughingsquid.com": [19350], "www.cia.vc": [3131], "www.ed.gov": [4889], "govdex.gov.au": [6864], "jzt.jd.com": [8422], "cloudproven.net": [3301], "secure.dnuk.com": [4482], "*.intellichat.com": [8689], "c.s-microsoft.com": [14057], "www.hackerspaces.org": [7151], "www.net-security.org": [11181], "ddosbreak.com": [4021], "obi.pl": [19452], "media.education.gov.uk": [19149], "riley.nal.usda.gov": [17209], "secularhumanism.org": [14473], "secure.municode.com": [10705], "drupaltraining.stanford.edu": [15383], "cf.geekdo-static.com": [6500], "www.sustainablebusiness.com": [15666], "pagerduty.com": [12332], "store.enthought.com": [5299], "p15.qhimg.com": [13302], "www.cypouz.com": [3987], "blogs.adobe.com": [615], "www.lektorium.tv": [9242], "www.gnu.org": [6357], "reflex.cz": [13719], "m.feedback.yandex.kz": [18652], "www.saic.com": [14067], "*.cadetnet.gov.au": [2714], "api.irccloud.com": [8354], "www.calendarwiz.com": [2736], "wiki.php.net": [12250], "tracks.fit.edu": [5942], "xiscosoft.net": [18576], "fco.gov.uk": [5558], "df.eu": [4029], "telethon.it": [16095], "www.yu.edu": [18675], "haveproof.com": [7242], "vindico.com": [17720], "policy.usc.edu": [17278], "hitfarm.com": [7425], "*.whistleout.com": [18248], "blog.proxpn.com": [19519], "soap.stanford.edu": [15383], "m.weheartit.com": [18017], "solarsystem.jpl.nasa.gov": [10869], "*.bentley.edu": [1781], "sv.libreoffice.org": [9311], "88.208.232.88": [2340], "webmail.cp.pt": [3744], "*.acronis.com": [483], "shouji.jd.com": [8423], "www.bpsshop.org.uk": [1538], "apwu.org": [933], "interpol.int": [8293], "www.register.acs.org": [929], "trustees.osu.edu": [11675], "popsci.com": [12908, 12909], "www2.citibank.com": [3171], "www.upx69.com": [17405], "ci.beap.ad.yieldmanager.net": [13881], "magazin.spiegel.de": [15272], "hwcdn01.vuze.com": [17879], "it.libreoffice.org": [9311], "pofpa.web.cern.ch": [2575], "intelliserver.net": [8218], "tcamp.sunlightfoundation.com": [15601], "jauce.com": [19317], "estore.skifalls.com.au": [19596], "ras.ncl.ac.uk": [10884], "ai-radio.org": [288], "musalbas.com": [10707], "abila.com": [417], "risk.wusm.wustl.edu": [17993], "cryptbin.com": [3847], "www.vlc-addons.org": [19461], "bnl.gov": [19009], "www.ymail.com": [18638], "synthetix.com": [15742], "dev.pipl.com": [10045], "www.strato-hebergement.fr": [14192], "*.blogs.balabit.com": [1624], "inst.winzip.com": [18333], "netmundial.net": [11213], "partners.oo-software.com": [11893], "kid.mysql.cesky-hosting.cz": [19051], "soap.com": [15053], "dl.winehq.org": [18352], "*.appkb.ch": [19333], "st-div.web.cern.ch": [2575], "www.freedesktop.org": [6126], "www.namecoin.info": [11024], "eloquentjavascript.net": [5180], "www.piscatus.se": [12726], "www.revealnews.org": [13841], "consultation.eastsussex.gov.uk": [19142], "www.piratenpartij.nl": [12708], "*.symanteccontent.com": [15715], "os3.nl": [11663], "hostmonster.com": [7537], "*.textbooks.com": [16159], "wiki.allmyvideos.net": [857], "listen.akvorrat.org": [297], "www.vayable.com": [17577], "copernic.com": [3649], "prnt.sc": [19517], "www.yougov.de": [18705], "www.culturalsurvival.org": [3916], "ladygo.tmall.com": [19684], "www.discovermerchants.com": [4550], "top.taobao.com": [15952], "lsi.com": [9100], "vmd.defra.gov.uk": [4314], "www.giving.umd.edu": [17263], "redy.edp.pt": [4896], "charnwood.gov.uk": [3015], "www.witness.org": [18382], "alecomm.com": [787], "edixml.melkweb.com": [2783], "cdnl.tblsft.com": [15984], "www.fandago.com": [5651], "www.chefkoch-blog.de": [3058], "www.fossil-scm.org": [6071], "belkin.com": [1762], "democracy.merton.gov.uk": [10287], "zenodo.org": [19801], "static.bufferapp.com": [2402], "draugiem.lv": [4742], "www.registrar.wustl.edu": [17993], "righttobuy.communities.gov.uk": [19073], "pokec.azet.sk": [1481], "www.scratch.mit.edu": [9749], "xiph.org": [18575], "adspeed.biz": [540], "join.girlsoutwest.com": [6667], "www.atmia.com": [18969], "interactive.stockport.gov.uk": [19628], "ad.a-ads.com": [215], "www.wikidevi.com": [18293], "gameoapp.com": [6433], "ohloh.net": [11766], "parents.williams.edu": [18316], "www.soldierx.com": [15114], "febo.com": [19176], "www.yourlibcat.staffordshire.gov.uk": [15370], "toaster.mysql.cesky-hosting.cz": [19051], "mail.sumologic.com": [15592], "www.biditbob.com": [1845], "help.xsolla.com": [18593], "*.pointroll.com": [12852], "alaskarobotics.com": [777], "shop.vodafone.ie": [17815], "trackalyzer.com": [16630], "loc.gov": [9528], "innsida.ntnu.no": [10964], "quitter.se": [13371], "plot.ly": [12820], "privacyisawesome.com": [5783], "www.kanotix.com": [8782], "facebook.jp": [5623], "ashlandfiber.net": [1253], "bostonglobe.com": [16251], "beta.kccmediahub.net": [8714], "account.my.t-mobile.com": [15772], "media.coveritlive.com": [3735], "www.zamzar.com": [18784], "charting.vwdservices.com": [17880], "www.mondemp3.com": [10543], "zendesk.com": [18824], "class.coursera.org": [3719], "dittdistrikt.no": [4578], "allyou.net": [842], "www.libdrc.org": [9293], "www.aeup.eu": [279], "order.exede.com": [5490], "eservices.ficora.fi": [5771], "tagx.radiox.ch": [13516], "flippa.com": [5927], "www.teamgaslight.com": [16001], "www.openttdcoop.org": [11982], "*.i3d.net": [7659], "mixtapeleak.com": [10469], "web-hosting.com": [18044], "jugger.ru": [8666], "noblewin.rigzone.com": [1916], "*.businesswire.com": [1788], "verisign.fr": [17623], "plastic-bin.com": [12783], "tahetorn.ut.ee": [17069], "tipp10.com": [16493], "app.codefund.io": [3369], "stats.0xbadc0de.be": [7], "dmlp.org": [4046], "customers.asmallorange.com": [214], "worklife.stanford.edu": [15383], "dimebag.peteraba.com": [12591], "wellness.stanford.edu": [15383], "newit.co.uk": [11296], "disqus.com": [4570], "*.diwi.org": [4585], "opensuse.org": [11971], "www.bremer.com": [2300], "perypetie-informacji.panoptykon.org": [12365], "aff.biz": [695], "bol.de": [16171], "mobil.derstandard.at": [19111], "dtunnel.com": [4086], "hosting.adjug.com": [526], "sgsstudentbostader.se": [14113], "mugenmonkey.com": [10689], "gb.redhat.com": [13675], "fb.ecn.api.tiles.virtualearth.net": [17755], "assets.tmz.com": [15832], "iaata.info": [7662], "www.readrboard.com": [13617], "architektur.htwk-leipzig.de": [7114], "www.nekvapor.com": [10897], "oneadmin.cz": [11641], "*.rugstudio.com": [14026], "id.trove-stg.com": [16762], "smartertrack.com": [14997], "dkb.de": [4039], "www.youtube-nocookie.com": [18709], "partnerreg.seagate.com": [14437], "prism-break.org": [12287], "www.akolaproject.org": [768], "record.wustl.edu": [17993], "sitelock.com": [14867], "i.acdn.us": [18638], "wealthytheatre.org": [6889], "nacl.cr.yp.to": [3748], "advertising.paypal.com": [12467], "www.bitwig.com": [2027], "medwatch.dk": [10138], "asp.readspeaker.net": [13610], "planet.qt-project.org": [13314], "www.levo.com": [9275], "www.php-fusion.co.uk": [12249], "www.bem.info": [1511], "secure.footprint.net": [6015], "www.ricoh.co.in": [13879], "www.omguk.com": [11634], "web4all.fr": [18052], "accounts.babbel.com": [1590], "www.simplyhired.com": [14830], "blipp.com": [2080], "www.gftplns.org": [15465], "advisingconnect.osu.edu": [11760], "www.segpaycs.com": [14556], "www.curo.co.za": [3932], "computerbild.de": [19075], "www.architekturinstitut.htwk-leipzig.de": [7114], "*.redbullusa.com": [13666], "www.1wt.eu": [48], "industrybotnetgroup.org": [8076], "raptr.com": [13562], "designers.hubspot.com": [7594], "account.windowsazure.com": [18344], "utakeaway.just-eat.co.uk": [19328], "www.badoo.com": [1609], "portfoliotracker.usatoday.com": [17032], "i3.msdn.microsoft.com": [10364], "dev.www.govhack.org": [6865], "www.festeirice.com.br": [5759], "hyperledger.org": [19271], "stiesx2-ntrs.larc.nasa.gov": [17026], "zimbatm.com": [18867], "on-disk.com": [11806], "s3.plymouth.ac.uk": [12833], "www.tls.so": [15825], "ukinusa.fco.gov.uk": [5558], "maven.alfresco.com": [802], "persona.org": [10662], "counter.li.org": [9392], "serverpros.com": [13018], "i4.sndcdn.com": [15032], "res-4.cloudinary.com": [3307], "glowing.com": [6751], "asp.net": [353], "facilities.med.wustl.edu": [17993], "gtms01.alicdn.com": [805], "webhungary.hu": [18123], "webmedia.bankofamerica.com": [1649], "go.padstm.com": [12327], "faculty.washington.edu": [17291], "*.mastercard.com": [10052], "blu.stc.s-msn.com": [14059], "diagnostics.wpm.neustar.biz": [11280], "wigle.net": [18274], "www.lochem.nl": [11132], "mk2.com": [19402], "selfserve.havant.gov.uk": [19237], "eigenlab.org": [19151], "livejournal.com": [9490], "www.netbeat.de": [11217], "legtux.org": [9236], "cdn2.broadcasthe.net": [2354], "support.gmo.jp": [6345], "www.silkspan.com": [14795], "libertyflailmowers.com": [9301], "www.energiecomfort.at": [18284], "www.britishgas.co.uk": [2340], "static-stg.gbot.me": [6808], "webmail.his.com": [7293], "ib.mebank.com.au": [9736], "www.senderscore.org": [14580], "girlsoutwestfreestuff.com": [6668], "www.gdata.ch": [6293], "www.planetkde.org": [12768], "strongvpn.com": [15531], "ocio.osu.edu": [11760], "www.nightlove.me": [11395], "jiveon.com": [8586], "www.sparkasse.at": [19614], "mobile.hertz.com": [7372], "www.culturesforhealth.com": [3917], "www.crux.nu": [3836], "www.pit-format-online.pl": [19496], "www.kdukvh.com": [3481], "my.ihc.ru": [7736], "*.jamanetwork.com": [8411], "info.sumologic.com": [15592], "gpgtools.org": [6371], "ftepaper.ft.com": [5826], "www.polisforbundet.se": [12869], "jd.com": [8423], "www.pathways2gsfa.org": [12454], "docs.pld-linux.org": [12267], "community.progress.com": [13132], "ric.org": [13429], "*.exinda.com": [5495], "sales.mail.ru": [9874], "www.vtb.ru": [8457], "securosis.com": [14536], "www.xmms2.org": [18522], "uakron.edu": [17082], "help.podio.com": [12846], "www.kaseya.com": [8802], "octoshape.com": [11718], "o2tv.cz": [16076], "users.wix.com": [18383], "www.fshare.vn": [6238], "services.irctc.co.in": [7812], "www.hobbypcb.com": [19254], "shanghu.alipay.com": [817], "api.yandex.com": [18651], "mainelegislature.org": [9895], "hudson.vervehosting.com": [17645], "nurdspace.nl": [10977], "www.profitbricks.com": [13129], "technical.ly": [16034], "gchat.com": [6312], "app.work4labs.com": [18436], "amherst.edu": [954], "www.cocubes.com": [3335], "mobile.theverge.com": [16213], "blogs.zoho.com": [18884], "portrait.gov.au": [11072], "bintraywidget.jfrog.com": [8433], "www.spritesmods.com": [15317], "www.hacktionlab.org": [7160], "www.mugenmonkey.com": [10689], "samba.org": [14261], "techsupportalert.com": [16053], "*.arch-stuff.org": [19462], "idg.se": [7705], "techsupport.uaa.alaska.edu": [17233], "smetrics.mastercardintl.com": [10052], "appdynamics.com": [1104], "systemcenteradvisor.com": [15760], "spatialpoint.com": [15232], "www.findip-address.com": [19180], "fcc.gov": [5709], "cn.norton.com": [11505], "go.liveramp.com": [9497], "syncplicity.com": [15730], "www.1010ez.med.va.gov": [17019], "*.shop.haymarket.com": [7249], "lerner.ccf.org": [3236], "api.viglink.com": [17710], "particle-physics.desy.de": [4399], "kqed.org": [8747], "jcm.jd.com": [8423], "huque.com": [7627], "*.igloo.nsidc.org": [11062], "arcgis.com": [1155], "intelligence.businessinsider.com": [2454], "kaliningrad.rt.ru": [13469], "isasonline.bva.bund.de": [5716], "www.intelliot.com": [8217], "osutravel.osu.edu": [11760], "getdigital-blog.de": [6569], "cryptologie.net": [3876], "*.asda.com": [347], "racjonalista.pl": [13494], "rfc-editor.org": [13418], "filtrala.org": [5815], "tutsplus.com": [16853], "forum.manjaro.org": [9958], "*.cetic.be": [2586], "alexcabal.com": [794], "apac.haymarket.com": [7249], "img.thevideo.me": [16239], "landliebe.de": [2783], "villas.com": [17715], "shutterstock.com": [14755], "www.barnard.edu": [1674], "www.gaaturustigslapen.nl": [6401], "cbiit.nci.nih.gov": [11052], "*.algonquincollege.com": [804], "www.wonga.com": [18414], "keepup.virginmedia.com": [17737], "stcjp.msn.com": [9796], "www.sexkompas.net": [14643], "bicademy.bite.lt": [1991], "*.fool.com.au": [10613], "sdsu-dspace.calstate.edu": [2730], "smart.jd.com": [8423], "learningzone.hants.gov.uk": [7196], "www.everplans.com": [5451], "gotlandring.com": [6855], "www.hh.ru": [7060], "redhat.com": [13675], "www.invoiceocean.com": [8332], "www.elliptictech.com": [5171], "cdrs.columbia.edu": [3448], "www.cmpxchg8b.com": [2628], "edex.adobe.com": [615], "fmc.unizar.es": [17356], "email.nottingham.ac.uk": [11528], "cloud.kbia-gmbh.de": [8829], "media.xiph.org": [18575], "www.manageengine.jp": [9939], "www.awesome-it.de": [1461], "toledo.kuleuven.be": [8816], "mrporter.com": [9787], "www.nwas.nhs.uk": [10913], "*.webofknowledge.com": [18107], "*.stocktwits.net": [15478], "www.investor.gov": [8321], "www.karger.com": [8794], "ssl-certificate-center.verisign.de": [17623], "vi.libreoffice.org": [9311], "robobees.seas.harvard.edu": [7219], "hardcoreteengirls.com": [7203], "analytics.pressfreedomfoundation.org": [6173], "www.boxcar.io": [2257], "www5.citymapper.com": [3193], "fleresomdig.radikale.dk": [13514], "*.shopmania.es": [14717], "stacklet.com": [15364], "static.mydrive.ch": [10829], "www.nutricentre.com": [11583], "ada.edu.au": [1387], "global.sony.eu": [15142], "www.ami.com": [308], "secure.store.apple.com": [1120], "www.oyoony.net": [19475], "buchhaus.ch": [19023], "idc.com": [7703], "allstartire.com": [847], "adserverams.adtech.de": [638], "www.history.com": [7417], "www.moderngov.co.uk": [19405], "abcn.ws": [1920], "account.mackeeper.com": [9819], "svnweb.freebsd.org": [6120], "kpdyer.com": [8757], "www.e-klase.lv": [4853], "sitemason.vanderbilt.edu": [17557], "homefinder.com": [7467], "newzbin2.es": [11351], "books.ch": [16171], "sustainability.cornell.edu": [3676], "www.customtiburon.com": [3939], "www.cat.yandex.by": [18648], "2013.de.pycon.org": [13263], "www.privacysos.org": [13083], "chat.livezilla.net": [9499], "www.standaard.be": [15378], "login-stage.oracle.com": [12082], "discountclick.com": [651], "widgets.opera.com": [12050], "www.evolmed.com": [5464], "woltlab.com": [18403], "www.activestatic.net": [502], "www.lls.org": [9089], "www.dino.sr": [2292], "search.earthdata.nasa.gov": [10869], "media.mobyhub.com": [10506], "afnic.fr": [282], "globalbersih.org": [6722], "instaradio.com": [13400], "gacela.itc.mx": [7844], "www.convox.com": [3632], "answerology.delish.com": [4331], "my.drweb.com": [4783], "artsci.wustl.edu": [17993], "www.tiscali.nl": [16098], "www.rsaconference.com": [13454], "www.cnre.vt.edu": [17740], "131002.net": [29], "hashicorp.com": [7227], "pinocc.io": [12696], "*.tweakimg.net": [16866], "libvirt.org": [9323], "www.aboutthedata.com": [428], "cart.1688.com": [36], "www.antivigilancia.org": [1070], "www.coinworker.com": [3401], "youngrewiredstate.org": [18718], "*.taboola.com": [15898], "blog.cloudflare.com": [3285], "*.imodules.com": [7762], "child3.ki.se": [8725], "*.reelseo.com": [13711], "www.blackfire.io": [2052], "logo.ui-portal.de": [16952], "cihr.eu": [2603], "bip.io": [1910], "deepin.org": [4302], "ecess1.cdn.continent8.com": [3618], "www.podnapisi.net": [12847], "www.3bbwifi.com": [130], "www.itemname.com": [19311], "www.soekris.com": [15085], "es.dinahosting.com": [4519], "www.fbi.gov": [5708], "www.medienstiftung-hsh.de": [10195], "*.bitre.gov.au": [2440], "help.lasallehs.net": [9161], "education.oracle.com": [12082], "www.extreme-light-infrastructure.eu": [5527], "cdn2.thr.com": [15813], "specialcollections.nal.usda.gov": [17209], "partner.nitrosell.com": [11427], "m.posteo.de": [12969], "www.defendinnovation.org": [4908], "fiercewireless.com": [5778], "*.www.spoki.lv": [15286], "forums.girlsoutwest.com": [6667, 19219], "youtube.com.lb": [18709], "www.natureshop.com": [11105], "www.comptroller.nyc.gov": [11292], "www3.dudley.gov.uk": [4795], "thehackernews.com": [16338], "img2.leboncoin.fr": [19351], "enjin.com": [5277], "*.cj.com": [3481], "www.clear.com": [3229], "new-webmail.kth.se": [8752], "ipqualityscore.com": [7795], "nccih.nih.gov": [11052], "www.osadl.org": [11664], "classes.usc.edu": [17278], "ovh.de": [12173], "www.1cart.co.nz": [43], "cf2.100r.org": [9], "fxosphone.mozilla.com.tw": [10653], "news.mims.com": [9743], "www.grillingishappiness.com": [6956], "rssing.com": [13464], "feedback.adcenter.microsoft.com": [10364], "gsrce.soe.ucsc.edu": [17305], "lundi.am": [9672], "gbot.me": [6808], "newzsec.com": [11352], "www.cottagesdirect.co.uk": [18490], "r.openx.net": [11993], "wwwdc.hertzentertainment.com": [7372], "www.magento.com": [9850], "chain.com": [2980], "livechat.startech.com": [15395], "cdn.ozb.me": [12195], "www.wiroos.com": [19761], "www.goingup.com": [6810], "jp.cloudflare.com": [3285], "www.projects.fruct.org": [5595], "intranet.ku.dk": [17248], "www.nextbit.com": [11364], "fx.yandex.com.tr": [18649], "www.petsymposium.org": [12242], "desk.com": [4392], "lib.vutbr.cz": [17522], "qa.phpdoc.org": [12653], "www.thankyou.com": [16173], "m.jhu.edu": [16296], "www.spidweb.com": [15270], "feedback.minus.com": [10435], "*.serienjunkies.de": [14596], "insightexpress.com": [8171], "telekom-partnerwelt.de": [16084], "www.support.earthlink.net": [5007], "scm.dataconservancy.org": [4192], "www.httpsecurityreport.com": [7110], "copeland.moderngov.co.uk": [19405], "rochford.firmstep.com": [19183], "iloyal.axosoft.com": [1477], "portal.charnwood.gov.uk": [3015], "download.lenovo.com": [9251], "business.usa.gov": [17029], "bastion.desy.de": [4399], "blutmagie.de": [2159], "www.stallman.org": [15373], "www.suprizkizlar.com": [15641], "me.effectivemeasure.net": [5109], "ads.whichmba.com": [18241], "forms.adviceguide.org.uk": [665], "www.britcoin.co.uk": [2337], "se.ucsd.edu": [16939], "secure.entrust.com": [5303], "statistik.netcologne.de": [11188], "informit.com": [8117], "store.lessig2016.us": [9260], "webhostingstuff.com": [18067], "*.www.insightmgr.com": [4507], "gabry.hu": [6403], "www.linutronix.de": [9390], "repo.mysql.com": [10780], "www.tiny.cc": [16478], "www.yannick.net": [18659], "media.fit.edu": [5942], "wimp.no": [18275], "www.cinestar.de": [3143], "*.infopaginas.com": [8114], "easy2coach.net": [5021], "mdn.livingsocial.com": [9517], "www.cubby.com": [3909], "blogoverflow.com": [15359], "roeck-us.net": [13945], "www.linksyssmartwifi.com": [9383], "www.filehoot.com": [5791], "api.digitalmedia.hhs.gov": [7062], "www.online-emr.com": [11876], "community.pebblepad.co.uk": [12509], "cloudflare.com": [3285], "app.mbuy.com": [9725], "www10.informe.org": [8116], "www.freelauri.com": [6143], "www.fazjob.net": [5554], "www.sportisimo.cz": [14158], "static.rudefinder.com": [8425], "computerbasedmath.org": [3539], "*.image-gmkt.com": [13308], "tracking-rce.veeseo.com": [17587], "wikihow.com": [18290], "www.lovettpublishinghouse.com": [9633], "transitionnetwork.org": [16671], "spinlab.osu.edu": [11760], "manage.sprintpcs.com": [15314], "www.politiken.dk": [12876], "*.interlan.se": [8252], "eastern.greenparty.org.uk": [6925], "www.spkcn.com": [15279], "www.jezebel.com": [8564], "solutionpartnerdashboard.cisco.com": [3162], "twittercounter.com": [16891], "www.investments.osu.edu": [11675], "www.majestic12.co.uk": [9898], "www.jailbreakingisnotacrime.org": [8493], "*.tasb.org": [16150], "heroes.rsf.org": [13458], "maps.sheffield.gov.uk": [14694], "govspace.gov.au": [6867], "www.bookstore.mtu.edu": [9802], "privatelee.com": [13103], "www.poets.org": [12848], "kissanime.to": [8920], "www.cr0.org": [3749], "login.arkena.com": [1198], "www.orionhub.org": [12107], "www.thumbzilla.com": [16402], "www.franchisegator.com": [6099], "dataprotection.ie": [4172], "www.ganglandnews.com": [6452], "www.emblem.cancer.gov": [2805], "www.fedpol.admin.ch": [19648], "vinrcl.safercar.gov": [14235], "www.reynir.dk": [13852], "youthscape.co.uk": [19796], "*.yuku.com": [18746], "hub.rother.gov.uk": [13977], "*.linuxpenguins.xyz": [19367], "trustly.se": [16797], "www.sas.com": [14074], "c.betrad.com": [5458], "dotcologne.de": [4694], "awp.is": [1292], "lorentzcenter.nl": [9611], "en.panoptykon.org": [12365], "www.listbox.com": [9449], "cdn.instaemail.net": [8180], "stop-snoring-mouthpiece.org": [15481], "wiki.freedesktop.org": [6126], "x.myspacecdn.com": [10848], "uef.fi": [17250], "itservices.uchicago.edu": [17246], "hk.168qiquan.com": [37], "profile-df.live.com": [9483], "luu.org.uk": [9109], "my.osu.edu": [11760], "account.1and1.ca": [52], "www.hivos.org": [7431], "blog.pfsense.org": [12607], "*.hostooplecom.netdna-cdn.com": [7539], "iecisa-ift.axosoft.com": [1477], "sundancechannel.com": [15597], "wss.apan.org": [329], "www.ultrasurf.us": [17138], "partner.blackberry.com": [2050], "www.mydrive.ch": [10829], "greenpolkadotbox.com": [6927], "www.gls.de": [6340], "ectc-online.org": [5019], "ws1.ems.eosdis.nasa.gov": [10869], "www.220volt.hu": [72], "www.skyriderplay.com": [14940], "physicsforums.com": [12655], "pvac.leeds.ac.uk": [17318], "facilities.wustl.edu": [17993], "accreditation.usc.edu": [17278], "skr.nlm.nih.gov": [11052], "usrowing.org": [17050], "ssl.gmobb.jp": [6342], "www.fiercefinance.com": [5775], "datart.sk": [4008], "clarityray.com": [3214], "pbesignup.na.leagueoflegends.com": [9206], "speakeasy.net": [15235], "static.broadcasthe.net": [2354], "ak3.boxcdn.net": [2253], "wordcamp.org": [18427], "berliner-energietisch.net": [1792], "www.studiopress.com": [15541], "secure.jotform.us": [8638], "www.kum.com": [9035], "cdn.jadu.net": [8492], "www.technicalcommunity.com": [16035], "www.giving.jhu.edu": [16296], "dealnews.com": [4261], "28degrees-online.gemoney.com.au": [6315], "a1.mzstatic.com": [10852], "brown.edu": [2367], "cdn.netvibes.com": [11257], "www.jetico.com": [8561], "www.imagestash.org": [7985], "microsoftstudios.com": [10369], "pinegram.com": [12678], "login.postpay.de": [19112], "www.gittip.com": [6685], "forms.essex.gov.uk": [5365], "www.politico.com": [12873], "share.intercom.io": [8244], "assets-broadly.vice.com": [17667], "cp.maxcdn.com": [10091], "www.biciperros.org": [1843], "static.eventoverload.com": [5439], "junodownload.com": [8683], "*.ucf.edu": [17244], "biotrimlabs.com": [1909], "dev-web.inka.f4.htw-berlin.de": [7112], "www.masteringemacs.org": [10057], "chrisnewland.com": [3106], "makrotex.hu": [9920], "tc3.edu": [16543], "f1.help.mindtouch.us": [10410], "www.sf.net": [15174], "doc.rt.com": [13468], "www.catalog.usmint.gov": [17062], "support.dashlane.com": [4163], "www.vh1.vutbr.cz": [17522], "places.tomtom.com": [16540], "carleton.ca": [2852], "icsalabs.com": [7691], "blog.namecheap.com": [11019], "time.paycheckrecords.com": [12472], "jba.io": [8538], "download.formsanity.com": [6042], "orangegeek.com": [12090], "partners.livechatinc.com": [9480], "www.eclipse.org": [5049], "www.internetgovernance.org": [8272], "my.xm.com": [18520], "www.ccdcoe.org": [2545], "dev.sign-up.to": [14780], "gnosis.cx": [6760], "affiliates.upickem.net": [17389], "portal.wusm.wustl.edu": [17993], "a4.twimg.com": [16877], "knopper.net": [8946], "www.infosecurity-magazine.com": [13704], "*.extabit.com": [5518], "moscow.rt.ru": [13469], "*.fundinfo.com": [6263], "wiki.openvz.org": [11991], "www.myitcv.org.uk": [10837], "scene.org": [8269], "api-taojinbi.taobao.com": [15952], "www.thm.de": [15811], "*.bcy.ca": [6892], "chrdnet.com": [19060], "seal.xramp.com": [18588], "www.leedsportal.leeds.ac.uk": [17318], "iceleads.com": [7916], "files.vagrantup.com": [17529], "choice.live.com": [9483], "www.my.gov.au": [19417], "composer.typo3.org": [15894], "marshut.net": [10028], "getvoip.com": [6582], "www.giftcards.tesco.com": [16135], "bindforum.isc.org": [7821], "diagrid.org": [4440], "www.gradsch.osu.edu": [11760], "schiphol.nl": [14353], "stunnel.org": [15545], "fused.com": [6273], "*.scribd.com": [14414], "idl.cs.washington.edu": [17291], "forum.linode.com": [9387], "www.openmandriva.org": [11956], "campina.ru": [2782], "www.london.gov.uk": [9578], "newstral.com": [11347], "russia2all.com": [14045], "www.blog.kaspersky.ru": [8807], "podvertiseonline.com": [12840], "stuff.umeahackerspace.se": [17143], "scripts.irssi.org": [8359], "rafflecopter.com": [13525], "www.abebooks.co.uk": [407], "www.bitly.com": [2001], "extract.services.disqus.com": [4570], "tripbod.com": [16744], "www.meego.com": [10207], "assets1.enphaseenergy.com": [5284], "altoonamirror.com": [894], "www.ksiegarniawarszawa.pl": [9025], "caribbeanpoetry.educ.cam.ac.uk": [17243], "exploreb2b.com": [5510], "www.poole.nhs.uk": [10913], "gmu.edu": [6544], "www.scalability.org": [14326], "digitalpacific.com.au": [4496], "kiks.yandex.com": [18651], "ftp.linux-mips.org": [9413], "buttercoin.com": [2463], "www.asteriskexchange.com": [1300], "rpt.anchorfree.net": [994], "pediatricsclerkshipblog.stanford.edu": [15384], "gartner.com": [6463], "gottman.com": [6858], "blog.facebook.com": [5620], "www.eindbazen.net": [5126], "autoconfig.eecs.berkeley.edu": [17240], "www.game.co.uk": [6417], "src.selfhtml.org": [19580], "gradadmissions.stanford.edu": [15383], "www.nordicsemi.com": [11477], "www.ingress.com": [8141], "community.wwe.com": [17936], "www.kororaproject.org": [8990], "cf3.100r.org": [9], "identity.atechmedia.com": [368], "broadinstitute.org": [2347], "www.vh3.ro.vutbr.cz": [17522], "*.cnbc.com": [2632], "product.adingo.jp.eimg.jp": [592], "opencsw.org": [11926], "opensource.conformal.com": [3572], "www.linuxplumbersconf.org": [9397], "www.desktopsummit.org": [4393], "igame.qq.com": [13285], "*.bestoliveoils.com": [1806], "www.posta.ch": [12949], "www.pullingladies.com": [12266], "tsf.stanford.edu": [15383], "jdj.jd.com": [8423], "css.chefkoch.de": [3058], "secureffs.capwiz.com": [2825], "traxarmstrong.com": [16703], "*.plimus.com": [12817], "blog.bitsighttech.com": [1947], "sympa.inria.fr": [8159], "*.apobox.com": [334], "vid.ly": [17675], "akamai.mathtag.com": [10071], "www.kryptologika.com": [9019], "www.walsallhealthcare.nhs.uk": [10913], "*.aiasurety.com": [289], "praktica.de": [14358], "webmail.variomedia.de": [17567], "privacyassociation.org": [8263], "local.ch": [9536], "powerdns.com": [12990], "www2.olx.com.br": [11632], "notesplace.wustl.edu": [17993], "www.akademikerforsakring.se": [758], "wt.research.gov": [13795], "nsidc.org": [11062], "teevox.com": [16061], "www.yespic69.com": [18676], "www.sesplan.gov.uk": [19584], "www.astronomynow.com": [1306], "insideillinois.info": [8166], "www.robokassa.ru": [13927], "gradadmissions.osu.edu": [11760], "balabit.com": [1624], "www.searchcommander.com": [14442], "esb.ie": [4952], "mylearning.southampton.gov.uk": [15191], "www.open.com.au": [11914], "andersonvalleypost.com": [4989], "jobmatcher.hodesiq.com": [1795], "*.ancestry.com": [992], "*.truevault.com": [16770], "www.yabause.org": [18628], "api.hertz.com": [7372], "redvase.bravenet.com": [2294], "www.sknvibes.com": [14126], "login.vk.com": [17493], "re-publica.de": [13597], "trueachievements.com": [16771], "www.gamasutra.com": [16021], "*.aftenposten.no": [712], "www.psarips.com": [12297], "secure.ancestry.co.uk": [992], "careers.thejournal.ie": [16224], "faradaysec.com": [5659], "www.finma.ch": [15697], "service.sumologic.com": [15592], "www.tildedave.com": [16446], "*.macainfo.org": [9825], "*.blogads.com": [13038], "www.collectd.org": [3421], "bitflyer.jp": [1931], "www.altontowers.com": [893], "www.selz.com": [14570], "market.huobi.com": [7624], "event.nzz.ch": [19450], "cis.vutbr.cz": [17522], "canvas.iu.edu": [8064], "freelancer.com": [6176], "showmecon.com": [14739], "new-support.drweb.com": [4783], "ar.redhat.com": [13675], "www.sainsburys.co.uk": [14244], "go.onelink.me": [19458], "allpoetry.com": [860], "www.thenew10.treasury.gov": [16704], "developers.whatwg.org": [17904], "bewerbung.htw-berlin.de": [7112], "commscope.com": [3473], "renttherunway.com": [13772], "litecoin.org": [9462], "gc.digitalriver.com": [4483], "www.tchibo.ch": [15985], "forms.netsuite.com": [11209], "amch.questionmarket.com": [13357], "slideshare.net": [14962], "faq.i3wm.org": [7660], "bitnik.org": [2012], "kororaproject.org": [8990], "career.udacity.com": [17109], "heerenveen.nl": [11132], "www.mesosphere.com": [10290], "www.amnesty.de": [960], "m.soundcloud.com": [15161], "ci-staging.swift.org": [15688], "cs.yieldoptimizer.com": [18683], "oauth2.axeso5.com": [1473], "youtube.com.sg": [18709], "jd.mail.ru": [9874], "newgtlds.icann.org": [7681], "businesswire.com": [1788], "fitnessmarket.com.au": [5889], "lists.sudoroom.org": [15580], "www.gaborszathmari.me": [6402], "www.playmates.com": [12808], "www.kammeratadam.dk": [8777], "*.hideman.net": [7394], "equipment.nottingham.ac.uk": [11528], "keyworddiscovery.com": [8871], "*.tersee.com": [19670], "images.redbox.com": [13681], "i.somethingawful.com": [15130], "0-static.ideel.com": [7931], "labs.mwrinfosecurity.com": [9809], "cables.com": [2704], "auth.360buy.com": [111], "www.visa4uk.fco.gov.uk": [5558], "www.divxpress.com": [4580], "www.discogs.com": [4541], "cleanenergyfinancecorp.com.au": [3225], "kb.sucuri.net": [15575], "www.gohugo.io": [19224], "marketing.htwk-leipzig.de": [7114], "demo.zeronet.io": [18843], "signup.ipvanish.com": [7799], "www.vatt.fi": [17536], "app.perfectaudience.com": [12559], "www.ordbogen.com": [12095], "cdn.betrad.com": [5458], "fibank.bg": [5769], "mailconfig.ovh.net": [12173], "git.fr33tux.org": [6091], "www.hillaryclinton.com": [7409], "www.public.resource.org": [13207], "wiki.hidekisaito.com": [7393], "c2.ewebcart.com": [19170], "bnw.im": [19010], "net-dns.org": [10941], "www.how-to-box.com": [7571], "freiwilligenportal.wwf.ch": [19768], "*.akcje.home.pl": [7465], "thedailygreen.com": [7271], "www.raglan23.co.nz": [19532], "www.ez-web-hosting.com": [5000], "forum.ubuntu-nl.org": [17100], "www.shevibe.com": [14692], "www.freerainbowtables.com": [6149], "www.kolabnow.com": [8961], "www.petri.com": [12597], "manage2.cpanel.net": [2653], "www.readthenburn.com": [13612], "*.indstate.edu": [8066], "www.telecomindustrydialogue.org": [16074], "static.the42.ie": [19673], "gayakuman.com": [6481], "www.ffs.ch": [15693], "www.lazykush.com": [9185], "health.google.com": [6834], "banners.spiceworks.com": [15266], "revision3.com": [13846], "*.chrisanthemums.com": [3107], "jdi.na.vutbr.cz": [17522], "www.skhynix.com": [14129], "nisit69.com": [11422], "www.volcanoecigs.com": [17826], "*.dmcdn.net": [4125], "login.sunlightfoundation.com": [15601], "bluemovie.eu": [2126], "pubs.aaas.org": [230], "www.barvaux.org": [1685], "www.sss.ias.edu": [7669], "docs.centrify.com": [19048], "ticket.seferler.yandex.com.tr": [18649], "www.hostvirtual.com": [7518], "coinworker.com": [3401], "tracking.onefeed.co.uk": [11855], "adfs.strode-college.ac.uk": [15528], "reporting.sunlightfoundation.com": [15601], "freshempire.betobaccofree.hhs.gov": [7062], "www.eset.at": [4953], "www.ratfishoil.com": [13575], "*.ariejan.net": [1192], "secure.nuuvem.com": [11586], "retailhosting.fi": [13824], "app.webmate.io": [18132], "searsecommercejobs.com": [14447], "lettre-de-motivation-facile.com": [9266], "www.slf.se": [14131], "www.guerrillamail.com": [7005], "kuix.de": [9032], "*.ccc.de": [2537], "www.educause.edu": [5096], "*.netsciwestpoint.org": [11262], "login.dealer.com": [4256], "findmyorder.com": [5841], "secure.healthcheckusa.com": [7257], "e.fastcompany.net": [5681], "www.ledgerscope.net": [9221], "ots.optimize.webtrends.com": [18171], "*.lapatilla.com": [9115], "www.webarchitects.coop": [18109], "polarssl.org": [12861], "japsand.x2go.org": [18499], "www.hi5.com": [19247], "www.uppsite.com": [17395], "*.aclj.org": [939], "coverforyou.com": [3733], "www.taleo.com": [15923], "teachers.sky.com": [14924], "www.vpsfree.cz": [19743], "www.sched.co": [14348], "oppelt.com": [12059], "api.eia.gov": [4917], "www.altquick.co": [872], "cm-openwebmail.stanford.edu": [15383], "my.msn.com": [9794], "help.zoho.com": [18884], "www.medicinescomplete.com": [10193], "europe.f-secure.com": [5541], "content.aggregateknowledge.com": [726], "secure.ogone.com": [11757], "www.vdio.com": [17581], "www.domeny.cz": [18938], "bprbzk.nl": [11132], "*.euserv.de": [4983], "mcafeesecure.com": [10116], "biz.jdpay.com": [8429], "comcav.com": [3451], "www.mattwilcox.net": [10081], "business.shaw.ca": [14687], "pub.mims.com": [9743], "www.coreinfrastructure.org": [3667], "secure.zeta.systems": [18850], "*.rapidbuyr.com": [13555], "www.searchcode.com": [14443], "financestatic.baidu.com": [1619], "www.fluxcards.de": [5958], "bugs.sabayon.org": [14214], "g1.std3.ru": [15445], "www.nds.rub.de": [13478], "peercraft.com": [12519], "www.golfcourseindustry.com": [6822], "docs.unity3d.com": [17220], "www.wakatime.com": [17952], "www.lesscss.org": [9069], "bandcamp.mu": [1638], "jrf.jesus.cam.ac.uk": [17243], "bs.baidu.com": [1619], "*.cs.oberlin.edu": [11698], "www.tmsz.com": [16516], "media.tchibo-content.de": [15985], "wwc.alicdn.com": [805], "*.stadt-bremerhaven.de": [15367], "97-fz.rkn.gov.ru": [13913], "xagyl.com": [18500], "bilder.rtl.de": [13474], "zuno.cz": [18768], "www.vdoth.com": [17583], "objectif-securite.ch": [11702], "www.konachan.com": [8972], "rxnav.nlm.nih.gov": [11052], "uk.gamespot.com": [6426], "www.dedyn.io": [19107], "*.muenchen.de": [10686], "commerce.washingtonpost.com": [17990], "smartaremobil.idg.se": [7705], "www.tfes.org": [16164], "ecommons.ucsc.edu": [17305], "templates.libreoffice.org": [9310], "www.educ.cam.ac.uk": [17243], "intranet.hslu.ch": [7583], "ecrm.taobao.com": [15952], "moon.greenpeace.org": [6937], "hothardware.pricegrabber.com": [13051], "w.ya.ru": [18626], "thefederalistpapers.org": [16275, 16276], "zg.ch": [19648], "www.websitealive.com": [18149], "www.ghirardelligiftguides.com": [6627], "muttscomics.com": [10731], "s.lenovo.com": [9251], "*.info.edgesuite.net": [760], "just-eat.no": [19328], "www.ubank.com.au": [16930], "cdn.gsstatic.com": [6785], "hostap.epitest.fi": [19765], "mailvelope.com": [9892], "accounts.spiceworks.com": [15266], "e6.xhamsterpremiumpass.com": [18516], "*.twitcasting.tv": [16886], "epoxate.com": [5328], "rasp.yandex.kz": [18652], "nikosdano.com": [11404], "an.tacoda.net": [319], "de-hr.dict.cc": [4455], "www.heml.is": [7316], "theme-fusion.com": [16339], "fwmapps.co.uk": [5671], "help.consumerfinance.gov": [3602], "www.pandaction.wwf.ch": [19768], "www.gavelbuddy.com": [6470], "leanpub.com": [9208], "www.eumostwanted.eu": [19164], "www.law.ox.ac.uk": [17271], "flowtab.com": [5949], "developer.asana.com": [1242], "www.grasswire.com": [6896], "www.bytename.com": [2490], "eu.link.decdna.net": [4281], "alkohol.cz": [823], "blog.bethcodes.com": [12971], "*.veinteractive.com": [17584], "*.necessaryandproportionate.net": [11128], "www.halebop.se": [7173], "sites.southglos.gov.uk": [15189], "order.upc-cablecom.ch": [19716], "copy.com": [3654], "codebutler.com": [12971], "map.local.ch": [9536], "downloads.gratipay.com": [6898], "inbox.lv": [8038], "1.vgc.no": [17484], "www.applianceshop.eu": [1125], "www.dvdfab.net": [4088], "orcid.org": [11909], "oldebroek.nl": [11132], "allerdalecopeland.greenparty.org.uk": [6925], "behavioralpolicy.org": [1757], "www.rabotilnica.com.mk": [13490], "userreport.com": [17437], "www.gwhois.org": [6400], "www.deusm.com": [16927], "openldap.org": [11948], "www.truetrophies.com": [16776], "global01.mifile.cn": [10335], "www.libav.org": [9291], "www.netclean.com": [11187], "windowsazure.com": [18344], "box-signup.uillinois.edu": [16960], "nnit.easycruit.com": [5023], "lbre-internal.stanford.edu": [15383], "www.punto.ar": [13231], "nvd.nist.gov": [11051], "ic-fusioncrm.oracle.com": [12082], "www.derpibooru.org": [4381], "adverts.ie": [663], "www.myfitnesspal.com": [10757], "www.missinglinkelectronics.com": [10455], "www.treasury.uillinois.edu": [16960], "buy-static.norton.com": [11505], "www.hiig.de": [7068], "vms.api.qbrick.com": [13300], "www.water-challenge.com": [17998], "edp2.adriver.ru": [534], "www.baztab.net": [1709], "login.aftonbladet.se": [716], "www.filemobile.com": [5800], "www.hoodline.com": [7486], "cs.kent.ac.uk": [17317], "selfharm.co.uk": [19579], "trojantime.usc.edu": [17278], "www.mindtouch.com": [10409], "education.barnsley.gov.uk": [18983], "*.readersdigest.com": [13616], "www.linux.org.au": [9407], "service.xara.com": [18543], "www.bitcoin.com": [1965], "www.gigantti.fi": [6652], "generator.webtrends.com": [18171], "o.swisscom.ch": [15698], "apps.sf.net": [15174], "adfox.ru": [524], "youcaring.com": [18704], "kaos.to": [8788], "autodiscover.llu.leeds.ac.uk": [17318], "www.ozon.travel": [12198], "www.inc.com": [8041], "www.youcaring.com": [18704], "adbrite.com": [564], "secondmarket.com": [14461], "mailchimp.com": [9876], "climatechangescience.ornl.gov": [11693], "startupsort.com": [15413], "cdnpng.dmjx.dk": [4600], "www.neteller-group.com": [12068], "*.gigaserver.cz": [6654], "www.crocs.com": [3807], "pair.com": [12336], "www.carhire.lastminute.com": [9165], "www.iosdevweekly.com": [7781], "www.serverpilot.io": [14607], "confirmit.com": [3570], "etarget.sk": [5373], "jobs.slashdot.org": [14946], "globalnetworkinitiative.org": [6728], "ophirum.spiegel.de": [15272], "static.trustdale.com": [16785], "mail-tester.com": [9870], "*.bcbits.com": [1638], "*.viddler.com": [17683], "wp.secure.me": [14488], "www.mercatus.org": [10275], "*.shopify.com": [14725], "www.roia.biz": [13951], "ssl.abma.de": [421], "dentistry.osu.edu": [11760], "www.postbank.de": [12959], "btczone.com": [1565], "www.muusikoiden.net": [10734], "i3.iis.net": [7741], "young.hillingdon.gov.uk": [7410], "*.mtgox.com": [10679], "*.wowanalytics.co.uk": [17917], "uk.at.atwola.com": [318], "www.jaast.com": [12351], "www.logancij.com": [9552], "www.youtube.com.ua": [18709], "img.dt-static.com": [4660], "ugr.ue.ucsc.edu": [17305], "*.last.fm": [9162], "job.ceredigion.gov.uk": [2964], "www.mulesoft.com": [10691], "autocontext.begun.ru": [1755], "biosciences.stanford.edu": [15382], "www.global2000.at": [6720], "poste-impresa.it": [12963], "4channel.org": [158], "11main.com": [20], "harrogate.greenparty.org.uk": [6925], "superdesk.pro": [15626], "evsweb.bls.ch": [1526], "*.startssl.org": [15407], "7-eleven.com": [187], "shop.oebb.at": [19455], "freifunk-goettingen.de": [6190], "www.nvidia.com": [10985], "zadarastorage.com": [18776], "instacominc.com": [8179], "secure.leadforensics.com": [9197], "freepressunlimited.org": [6148], "dizzcloud.com": [4589], "armscontrol.org": [18963], "posterstoreuk.com": [12970], "noc.ac.uk": [17276], "www.howsecureismypassword.net": [7569], "flattr.com": [5911], "hieber.de": [19248], "support.havelockinvestments.com": [7243], "origin.myfonts.net": [10759], "binbox.io": [1892], "isharemaps.bathnes.gov.uk": [1689], "wowcss.zamimg.com": [18782], "blog.2k.com": [86], "www.spectrum.com": [15248], "dev.gogobot.com": [6808], "my.hastings.gov.uk": [7234], "answers.stanford.edu": [15383], "blog.goeswhere.com": [6805], "daxue.taobao.com": [15952], "ensijaturvakotienliitto-fi.directo.fi": [19160], "pt.fiksu.com": [5787], "cdn.defenseone.com": [4311], "*.xiti.com": [18571], "livecontacts.services.live.com": [9483], "lv.com": [9511], "api.openstreetmap.org": [11979], "footprint.osu.edu": [11675], "usblog.kaspersky.com": [8806], "pp.ceneo.pl": [2935], "www.quirks.com": [13367], "millionenklick.gmx.net": [6350], "ssldecoder.org": [14179], "apoteket.se": [1099], "www.skyprogrammeinformation.co.uk": [14930], "readytogo.microsoft.com": [10364], "webirc.darkfasel.net": [4152], "*.inmotionhosting.com": [8033], "loverslab.com": [9632], "www.kva.se": [19345], "support.rangenetworks.com": [13548], "us.gmocloud.com": [6343], "districtsentinel.com": [4576], "nib.vub.sk": [17869], "*.thebureauinvestigates.com": [16252], "masterh7.adriver.ru": [534], "hit4.hotlog.ru": [7547], "www.berrange.com": [4142], "blogs.yandex.ua": [18656], "admin.banan.cz": [1489], "vpnservice.ru": [17506], "mountainview.gov": [3191], "www.snoonet.org": [15040], "www.hofstra.edu": [7444], "www.archlinux.de": [1169], "studentactivities.uchicago.edu": [17246], "namepros.com": [11022], "moniker.com": [8865], "www.sys4.de": [15746], "www.printfriendly.com": [13066], "store.esellerate.net": [5357], "*.passion-radio.com": [12428], "www.computerlabsolutions.com": [3536], "shop.openstreetmap.org": [11979], "grr.la": [7005], "admin.5min.com": [178], "www.securitymetrics.com": [14523], "d.udimg.com": [16948], "www.stubhub.de": [15534], "mobile.swiss.com": [15695], "www.tivi.de": [19800], "queervids.com": [13349], "my.comparethemarket.com": [3511], "www.elgiganten.dk": [5162], "sitetrustnetwork.com": [14874], "www.claws-mail.org": [3221], "digikeytest.digikey.com": [4469], "lists.windowmaker.org": [18340], "portal.issworld.com": [7836], "inside.hfs.washington.edu": [17291], "pad.eigenlab.org": [19151], "gstatic.com": [6839], "nllgg.nl": [10937], "www.devmonk.com": [4426], "www.vfemail.net": [17482], "healthcheckusa.com": [7257], "rcm-uk.amazon.co.uk": [910], "passwordscon.org": [19480], "check.ledgerscope.com": [9221], "orion.library.usyd.edu.au": [19723], "usfca.edu": [17042], "leafly.com": [9204], "ausleihe.hslu.ch": [7583], "www.domeinenrz.nl": [11132], "checkip.org": [17790], "secure.ar.ikea.com": [7959], "ksh.hu": [8750], "alumni.nottingham.ac.uk": [11528], "www.useresponse.com": [17423], "www.ads-creativesyndicator.com": [3781], "ozon.ru": [12199], "www.mamp.info": [19379], "resources.mendeley.com": [10257], "www.techservices.illinois.edu": [17258], "bugs.drweb.com": [4783], "libravatar.org": [9308], "www.mudgum.net": [10685], "services.account.lego.com": [9068], "www.anonops.com": [1042], "nhm.ac.uk": [10908], "coinjar.com": [3397], "w00tsec.blogspot.*": [2113], "quote.liberis.co.uk": [19362], "startingpage.com": [8405], "www.wand.com": [17970], "immersion.media.mit.edu": [9749], "www.envirotrend.com.au": [5309], "www.edeka.de": [19147], "cdn3.spiegel.de": [15272], "www.mail.com": [9872], "playerio.com": [12804], "map.utoronto.ca": [17343], "forums.yabause.org": [18628], "www.scenetap.com": [14342], "*.ou.edu": [11683], "json10.ringrevenue.com": [13892], "www.openuserjs.org": [11987], "www.zenodo.org": [19801], "dsp.io": [4787], "www.youtube.com.hk": [18709], "zwijndrecht.nl": [11132], "methodactingstrasberg.com": [10315], "adserver-sb-fra.adtech.de": [638], "grootzakelijk.upc.nl": [17002], "accelogixportal.axosoft.com": [1477], "www.bouncyballs.org": [2246], "api.jqueryui.com": [8454], "elatinos.com": [4927], "peersm.com": [12524], "sourcemaking.com": [15175], "nyantec.com": [19447], "spider.io": [15268], "club.lego.com": [9068], "notebookitalia.it": [11522], "home.entrust.net": [5304], "comments.richarddawkins.net": [13871], "jobamatic.com": [8594], "damtp.cam.ac.uk": [17243], "www.edirectdebit.com": [4902], "lists.swift.org": [15688], "richmondshire.gov.uk": [13876], "news.uic.edu": [17231], "longdate.pl": [9588], "www.bonadza.com": [2194], "www.firefoxosdevices.org": [5861], "luxurycustomwheels.com": [9677], "www.swift.org": [15688], "www.berlinonline.de": [1793], "idsync.rlcdn.com": [13435], "img.createsend1.com": [3774], "www.yaupspe.com": [5224], "flyingmeat.com": [5966], "baitiao.jd.com": [8423], "*.wikia.nocookie.net": [18292], "webstaurantstore.com": [18157], "paycheckrecords.com": [12472], "tosdr.org": [16521], "*.site5.com": [14862], "www.thecisogroup.com": [16182], "partners.servicenow.com": [14622], "static.xm-cdn.com": [18519], "troopers.de": [16758], "*.zissousecure.com": [18876], "uac.advertising.com": [662], "www.gulesider.no": [7017], "git.vinilox.eu": [17724], "u15404278.onlinehome-server.com": [5410], "forums.netbeans.org": [11185], "www.citrixonlinecdn.com": [3180], "security.drupal.org": [4780], "tilt.com": [16448], "extcss.kaspersky.com": [8806], "trilightzone.org": [19695], "motherlessmedia.com": [10608], "*.postgresql.org": [12974], "www.gsl-co2.com": [6390], "apps.skypeassets.com": [14939], "www.maidsafe.org": [9867], "list.tmall.hk": [16513], "www.hdsa.org": [7054], "www.freelansim.ru": [6178], "qmc.quickline.com": [19530], "bulbman.com": [2414], "vs.symantec.com": [15715], "track.effiliation.com": [5112], "unmitigatedrisk.com": [17360], "www.tierra.net": [16435], "ppcw.osu.edu": [11675], "csl.illinois.edu": [17258], "www.socialprogressimperative.org": [15065], "cqrcengage.com": [2654], "www.worstpills.org": [18466], "help.ekmpowershop.com": [5132], "api.paydirekt.de": [12473], "secure.avaaz.org": [1437], "member.harland.com": [7207], "nowlab.cse.ohio-state.edu": [11759], "honestpolicy.com": [7482], "virustotal.com": [17757], "developermail.io": [4420], "nmbl.osu.edu": [11760], "support.shazam.com": [14689], "www.techpinions.com": [16048], "www.iolproperty.co.za": [7776], "esqac.eastsussexlearning.org.uk": [19144], "www.subsignal.org": [15566], "analytics.snoobi.com": [15039], "digikey.de": [4469], "network.zmanda.com": [18880], "mufin.com": [10688], "autos.aol.com": [321], "www.leblibrary.com": [9218], "uua.org": [17204], "www.hu.liu.se": [9084], "www.creativity-online.com": [3758], "autodiscover.estates.leeds.ac.uk": [17318], "e-plus.de": [4844], "www.cvimellesgriot.com": [2691], "www.ethlife.ethz.ch": [4974], "6gwc-kbhkort.kk.dk": [8730], "manage.smartadserver.com": [14982], "www.zwame.pt": [18925], "techtime.mit.edu": [9747], "*.pressdisplay.com": [11345], "tr.gamigo.com": [6445], "www.nanorep.com": [11033], "corp.mamba.ru": [9932], "pbridge.heifer.org": [7284], "www.it-offshore.co.uk": [7840], "www.permits.performance.gov": [12568], "onioncat.org": [11862], "net-a-porter.com": [11171], "aquagear.com": [1143], "dot429.com": [4689], "www.navut.cz": [11005], "chat.online.citi.com": [3168], "rimg01.rl0.ru": [13914], "www.oshkosh.com": [12121], "www.chrysalisventures.com": [3125], "eager.io": [5005], "libraries.torbay.gov.uk": [16569], "undergrad.osu.edu": [11760], "www-group.slac.stanford.edu": [15383], "ssl.assets.sheetmusicplus.com": [14693], "bit2c.co.il": [1921], "www.grnh.se": [6960], "developer.jamendo.com": [8502], "lu.norton.com": [11505], "meanstinks.com": [10133], "subscribe.zanesvilletimesrecorder.com": [18785], "exportawards.gov.au": [1391], "www.tokbox.com": [16532], "www.holidaybreak.co.uk": [7452], "admin.shortlist.com": [14734], "assets.acs.org": [929], "btctrader.com": [1563], "www.bizo.com": [2031], "deutsche-rentenversicherung-bund.de": [4407], "*.startssl.com": [15407], "prasiatko.vpsfree.cz": [19743], "theworkdept.com": [16327], "www.natmonitor.com": [11042], "www.remind.com": [13759], "www.legislationsurveys.com": [9231], "www.bundesverfassungsgericht.de": [2435], "www.scandinavianphoto.se": [14334], "membernotifications.aol.com": [321], "www-portal-stage.oracle.com": [12082], "forum.qt.io": [13315], "consult.tunbridgewells.gov.uk": [19704], "www.unhosted.org": [17164], "onebillion.org.uk": [11853], "community.manageengine.com": [9940], "www.careers.wustl.edu": [17993], "weert.nl": [11132], "f.domdex.com": [4667], "www1.plymouth.ac.uk": [12833], "eurovision.de": [5431], "portal.volexity.com": [17827], "www.maawg.org": [9703], "onguardonline.gov": [11810], "www.modalitypartnership.nhs.uk": [10913], "milobit.lugons.org": [9108], "about.orcid.org": [11909], "www.gatorchrysler.net": [4255], "thompsonhotels.com": [16378, 16379], "cvs.sedo.de": [14540], "ctrlpanel.mythic-beasts.com": [10850], "solarflare.com": [15112], "www.adultswim.com": [18942], "colocation-datacenter.com": [19228], "www.ponychat.net": [12898], "www.timbro.se": [16453], "focus.de": [5974], "www.ip3.htwk-leipzig.de": [7114], "newsroom.godaddy.net": [6772], "www.shapeshift.io": [14660], "www.dug.net.pl": [4087], "coupons.com": [3712], "leto.majordomo.ru": [9902], "www.paste.sh": [12437], "webmail.swan.sk": [15676], "*.bho.pl": [2151], "homes.redding.com": [4988], "chaosreigns.com": [3006], "www.investors.com": [8323], "m3a.vhlcentral.com": [17486], "osso.uvt.nl": [16445], "*.aquiss.net": [1147], "maldon.firmstep.com": [19183], "www.bittrex.com": [2025], "devon-cornwall.police.uk": [4429], "blogs.kde.org": [8718], "www.spinics.net": [15277], "*.endace.com": [5244], "highways.gov.uk": [19250], "www.library.unc.edu": [16984], "wustl.libapps.com": [9287], "www.zoho.com": [18884], "api.gravity.com": [6901], "www.foursquare.com": [6082], "www.xenomai.org": [18565], "sixxs.net": [14890], "feedback.hootsuite.com": [7488], "*.dlvr.it": [4597], "*.skullsecurity.org": [14922], "ticketmaster.co.uk": [16421], "itbookshelf.com": [7859], "tracking.aunggo.com": [1369], "fr.hertz.be": [7339], "www.homelessveterans.co.uk": [7479], "www.microca.st": [10352], "wwte4.com": [17937], "piratenlogin.de": [12718], "entrust.com": [5303], "static.siteheart.com": [14866], "www.dribper.com": [19127], "www.libregraphicsworld.org": [9314], "nakedsecurity.sophos.com": [15154], "www.illiniunion.illinois.edu": [17258], "photos-b.ak.fbcdn.net": [5700], "*.getresponse.com": [6580], "samsungapps.sina.cn": [14839], "www.merton.gov.uk": [10287], "hush.com": [7632], "*.vu.nl": [17521], "www.fiksu.com": [5787], "browser.yandex.com.ua": [18650], "ns.adobe.com": [615], "finna.fi": [5851], "mastiff-online.korelogic.com": [8986], "*.netseer.com": [11207], "birthdayinabox.com": [1913], "gdata.es": [6293], "secure.sitelock.com": [14867], "admin.ufl.edu": [17252], "ad.amgdgt.com": [953], "shop.flixbus.se": [5931], "yabumi.cc": [18629], "zscaler.com": [18913], "connect.ohiobar.org": [11763], "www.ctera.com": [2683], "fullerton.edu": [6255], "*.dailymotion.com": [4125], "bis.gov.uk": [16965], "client.downtownhost.com": [4730], "osuhe.engineering.osu.edu": [11760], "www.edas.info": [5073], "blockexplorer.nu": [2084], "virool.com": [17742], "secure.manga.com": [9949], "*.trashmail.net": [16688], "blog.aereo.com": [684], "www.groupees.com": [6971], "discuss.gohugo.io": [19224], "sky-ip.org": [14923], "inwx.at": [8231], "zetetic.net": [18851], "lespaceclient.fr": [9070], "dcminfo.wustl.edu": [17993], "t4.liverail.com": [9496], "www.focaljet.com": [5973], "*.b0.upaiyun.com": [17383], "1cart.co.nz": [43], "*.audiogo.com": [1358], "images.yemeksepetim.com": [18674], "*.tutor.com": [16852], "www.ice.gov": [17021], "www.golucid.co": [6793], "mackeeper.com": [9819], "cloudimage.io": [3306], "tps10206.doubleverify.com": [4709], "readthenburn.com": [13612], "ias.cs.tum.edu": [16036], "zabbix.com": [18774], "securitykiss.com": [14522], "neustar.biz": [11280], "www.vagrantup.com": [17529], "www2.gotoassist.com": [6786], "cbp.net.br": [2524], "www.yworks.com": [19788], "blog.parallels.com": [12392], "storify.com": [15496], "roboxchange.com": [13442], "m.rasp.yandex.kz": [18652], "further.co.uk": [6271], "mobireach.com": [10491], "web2.securitymetrics.com": [14523], "www.theads.me": [16332], "slon.ru": [14969], "direktmarketingcenter.de": [19112], "vufind.org": [17868], "shazam.com": [14689], "a.jimdo.com": [8572], "dsa.csdata1.com": [2679], "dataspace.pl": [4186], "lef.org": [9226], "help.xbox.com": [18550], "www.iosco.org": [7779], "recrutamento.cgd.pt": [2978], "netpivotal.co.uk": [11204], "myphilanthropedia.org": [12622], "deater.net": [4265], "digitaldefenders.org": [4491], "pictures.aircrack-ng.org": [750], "becker1.wustl.edu": [17993], "www.onedrive.com": [11831], "ecomm.dell.com": [4335], "aan.sh": [391], "www.mochajs.org": [10508], "grit.io": [6958], "dev.socrata.com": [15082], "eforsa.pl": [4913], "ishop.taobao.com": [15952], "partner.arbornetworks.com": [1154], "www.yooco.de": [18691], "forms.trendmicro.com": [16717], "cursosdeespanol.unizar.es": [17356], "pensionsonline.ucc.ie": [16933], "aws-portal.amazon.com": [915], "marksdailyapple.com": [19384], "id.carousell.com": [2860], "ssl.a.xnimg.cn": [18581], "test.bvg.de": [1582], "tv.adobe.com": [615], "*.peer1.com": [12512], "www.youngrewiredstate.org": [18718], "www.pcrdist.com": [19484], "www.gsmhosting.com": [6992], "www.ugst.umd.edu": [17263], "sms.e-paycapita.com": [19132], "edigitalresearch.com": [4900], "www.theswirlworld.com": [1307], "justapple.com": [8694], "htaccessbook.com": [7588], "alice-dsl.de": [810], "yopto.com": [18693], "payment.vas-hosting.cz": [19729], "www.mixer.cz": [10466], "m.huobi.com": [7624], "www.weibo.cn": [14844], "*.neteller.com": [12068], "overclockers.co.uk": [12158], "www.rubytogether.org": [14022], "campus-map.stanford.edu": [15383], "instantchat.io": [8184], "business.youmail.com": [18706], "cetic.be": [2586], "baoxian.163.com": [34], "movieth.com": [10638], "www.hoeringsportalen.dk": [7443], "about.udemy.com": [17111], "sos.state.co.us": [3443], "dragonsreach.it": [4741], "gmx.ch": [6350], "fedex.com": [5707], "tilburguniversity.nl": [16445], "gmx.cc": [6350], "kpn.com": [8744], "canv.as": [2813], "wordpress.grc.nasa.gov": [10869], "wishmich.org": [9903], "id.norton.com": [11505], "landalcampings.be": [18490], "direct.gov.uk": [4531], "www.nordnet.se": [11479], "www.acorns.com": [475], "blog.ipredator.se": [7804], "lenovo.com": [9251], "www.trust-guard.com": [16780], "lttng.org": [9106], "vanillaforums.com": [17558], "silentsender.com": [14787], "interworx.com": [8233], "nz.bidbubble.com": [1844], "channels.ap.dell.com": [4335], "aldi.pl": [299], "riscosopen.org": [13897], "nl.support.tomtom.com": [16540], "www.googlewatchblog.de": [6849], "app.halowaypoint.com": [7176], "forum.xakep.ru": [18539], "*.ecoscentric.com": [4886], "whois.registro.br": [13735], "www.pkr.com": [12751], "hinckleyandbosworthonline.org.uk": [7413], "m.soft.yandex.com.tr": [18649], "macular.org": [9834], "easydns.com": [5024], "www.aclutx.org": [253], "aldi.pt": [299], "www.archive.moe": [1165], "*.intuitstatic.com": [8304], "www.local.ch": [9536], "*.marktplaats.com": [19385], "www.goemerchant.com": [6776], "servlet.it.liu.se": [9084], "www.publicobject.com": [13214], "*.cc.com": [2532], "domainnamesales.com": [4655], "gyft.com": [7036], "gresille.org": [6945], "ut.edu": [17340], "ess.bathnes.gov.uk": [1689], "m.sbb.ch": [15693], "www.webink.com": [18068], "supercard.ch": [3645], "morrisons.co.uk": [10601], "uakjobs.com": [17234], "tmpwebeng.com": [15831], "apply.internetessentials.com": [19300], "cp.servercow.de": [14612], "www.lynchinteractive.com": [9681], "www-s.ks.uiuc.edu": [16956], "*.alternate-b2b.nl": [880], "5min.com": [178], "ensijaturvakotienliitto.fi": [19160], "distilleryimage6.instagram.com": [8182], "*.destructoid.com": [4397], "myuvm.uvm.edu": [17075], "oce-docworks.rz.htw-berlin.de": [7112], "www.petstore.com": [12602], "woahh.com": [18394], "macfarlanepackaging.com": [9826], "forum.feathercoin.com": [5704], "www.fybse.se": [5613], "pictorial.jezebel.com": [8564], "www.icmail.com": [7687], "*.acenet-inc.net": [471], "www.it.lastminute.com": [9165], "nebula.com": [11127], "argos.co.uk": [1186], "www.formsanity.com": [6042], "www.mobilepay.dk": [10497], "img3.picload.org": [12661], "obdev.at": [11695], "mbayaq.co": [1920], "www.festivusgames.com": [5760], "nokiasiemensnetworks.com": [11462], "connect.fca.org.uk": [5557], "www.pragmaticstudio.com": [13014], "www.6wunderkinder.com": [184], "www.delfogo.com": [4325], "www.goubiquiti.com": [6797], "metadata.cesnet.cz": [2585], "postaffiliatepro.com": [12953], "*.domainsponsor.com": [4658], "s.chbtc.com": [3036], "congress2015.erc.edu": [4949], "member.societyforscience.org": [15078], "dyne.org": [4834], "www.tescobank.com": [16136], "lucky2u.net": [9649], "www.movie.to": [10636], "*.mtac.org": [9799], "blog.spideroak.com": [15269], "suma.stanford.edu": [15382], "www.nationalcareersservice.direct.gov.uk": [4531], "svn.mageia.org": [9847], "ulyanovsk.rt.ru": [13469], "workbench.connextra.com": [3585], "www.developers.elsevier.com": [5185], "billing.cloudaccess.net": [3278], "www.proboards.com": [13110], "www.libtoxcore.so": [9322], "bbs.taobao.com": [15952], "webmail06.register.com": [13732], "cnrsweetdeals.newsreview.com": [11339], "r4.mzstatic.com": [1119], "www.secure-usb.co.uk": [19577], "*.inwx.at": [8231], "www.datalogix.com": [4202], "www.conservatives.com": [3590], "ad.afy11.net": [589], "esdpubs.nasa.gov": [10869], "www.afra-berlin.de": [285], "qwant.com": [13383], "stkittszipline.com": [15354], "*.bidsystem.com": [599], "support.fortinet.com": [6056], "washington.edu": [17291], "kariera.ceneo.pl": [2935], "gls.de": [6340], "ssl-certificate-center.verisign.com.au": [17623], "512pixels.net": [170], "khpi.com": [8847], "www.chipin.com": [3086], "bitcasa.com": [19001], "www.bluez.org": [2138], "majesticseo.com": [9898], "rightmove.co.uk": [13886], "www.phpdoc.org": [12653], "crowdjustice.co.uk": [3821], "partner.walmart.com": [17964], "gmat.economist.com": [5060], "variety.com": [17565], "www.forevernew.com.au": [6031], "admatrix.jp": [531], "myedaccount.com": [10755], "ftp.rfc-editor.org": [13418], "linuxfound.info": [9411], "zoner.fi": [18894], "www.surplus.osu.edu": [11760], "rcpmag.com": [13406], "www.btcstore.eu": [1569], "*.totalhostingplus.com": [16605], "*.networkforgood.org": [11264], "www.justaguy.pw": [8696], "*.internationalsos.com": [8268], "marinsm.com": [9995], "xamarin.com": [18540], "readspeaker.com": [13610], "media.mit.edu": [9749], "planning.westlothian.gov.uk": [19755], "ews.osu.edu": [11760], "www.stevesie.com": [15471], "web.adblade.com": [560], "www.city-link.co.uk": [3182], "imperian.com": [19289], "www.lib.umd.edu": [17263], "blimpme.com": [2073], "mhcache.com": [10331], "*.urbanterror.info": [17408], "status.namecheap.com": [11019], "cdes.oebb.at": [19455], "revealnews.org": [13841], "www.blogburst.com": [4343], "www.mozy.co.uk": [10667], "finn.no": [5849], "widgets.yandex.com": [18651], "campus.afip.gob.ar": [18945], "sendguide.bedford.gov.uk": [18986], "cdn.final4ever.com": [5819], "www.digital-future.it": [4481], "cryptabyte.com": [3841], "hhh.umn.edu": [17268], "vr.force.com": [17642], "www.socialrank.co": [15058], "fb.maps.me": [9976], "studentloans.gov": [15535], "rockvalleycollege.edu": [13938], "html5-player.libsyn.com": [9321], "www.sitola.cz": [14887], "lp.nanigans.com": [11030], "api-uat.dwolla.com": [4816], "insidehighered.com": [8163], "wpengine.com": [17918], "portal.cachefly.com": [2708], "minus.com": [10436], "gourmetgiftbaskets.com": [6859], "tonytan.io": [16548], "connect.internetsociety.org": [8275], "*.brandembassy.com": [2279], "code.org": [3345], "bzr.debian.org": [4275], "wiki.shibboleth.net": [14702], "wipmania.com": [17912], "www.dsl.vodafone.de": [17814], "www.itsc.umd.edu": [17263], "pcbooking.brent.gov.uk": [2304], "export.gov": [17027], "www.hollywoodreporter.com": [7454], "smp.specificmedia.net": [15243], "tinyletter.com": [16482], "cdn.movad.net": [10626], "www.esf-works.com": [4958], "app.mailerlite.com": [9882], "findlegalforms.com": [5838], "www.jiffyfreescore.com": [8567], "api.fitbit.com": [5887], "zb45.nl": [18754], "rhombus-tech.net": [13864], "www.bungie.net": [2438], "nmfc.engineering.osu.edu": [11760], "static.t-mobilebankowe.pl": [19654], "webmail.hinxton.wellcome.ac.uk": [19752], "www.redbubble.com": [13660], "*.wpvulndb.com": [17926], "8kbhkort.kk.dk": [8730], "cdn5.openculture.com": [12006], "corporate.walmart.com": [17964], "thepiratebay.org": [16227], "ncm.novarait.com": [4513], "shop.flixbus.nl": [5931], "www.kolab.org": [8959], "my.astaro.com": [1298], "washpostco.com": [17989], "fpdbs.paypal.com": [12467], "releasenotes.webtrends.com": [18171], "donate.doctorswithoutborders.org": [4625], "www.geektechlabs.com": [6499], "www.baidu.com": [1619], "images.dealertrend.com": [4259], "www.beautyblog.thebodyshop.co.uk": [16250], "santoku-linux.com": [14293], "static.commando.io": [3475], "www.arcor.de": [1173], "www.gog.com": [6365], "www.sproutvideo.com": [15320], "*.login.live.com": [9483], "pcbsd.org": [12216], "superkuh.com": [15632], "mythicalcreatureslist.com": [10851], "www.perfeval.pol.ulaval.ca": [17229], "jellynote.com": [8550], "nic.tel": [16100], "dl2.oo-software.com": [11893], "legacy.vg": [9228], "promotion.aliyun.com": [821], "sign-up.to": [14780], "c-nfa.jd.com": [8423], "mankier.com": [9959], "fxguide.com": [6289], "finlex.fi": [19181], "biallo.de": [1839], "img02.rl0.ru": [13914], "www.osufoundation.org": [12099], "api.digits.com": [4509], "pcre.org": [12229], "crowdin.net": [3826], "gsc.mit.edu": [9749], "www.batstrading.com": [1492], "directspace.net": [4525], "passport.jd.com": [8423], "www.steaw.com": [15457], "canvasholidays.co.uk": [18490], "safenet-inc.com": [14227], "devpress.com": [4430], "preparedness.usc.edu": [17278], "skullsecurity.org": [14922], "amnesty.no": [974], "www.unop.uk": [17363], "*.arvixe.com": [1238], "www.cabinetoffice.gov.uk": [2701], "*.rollcall.com": [13956], "stvp.stanford.edu": [15383], "www.walthers.com": [17967], "beta.usa.gov": [17029], "www.micropartsusa.com": [10358], "admin.mobile.de": [19403], "linux.web.cern.ch": [2575], "passport.alibaba.com": [809], "www.internetprotectionlab.net": [8284], "tms.pl": [19686], "www.tmdb.org": [15829], "www.lotusoriginals.com": [9616], "punchout.digikey.com": [4469], "apicdn.viglink.com": [17710], "legal.yandex.kz": [18652], "ext.accesslabs.net": [446], "fotki.yandex.ua": [18656], "media6degrees.com": [10149], "moviefone.com": [10641], "my.dexmedia.com": [4434], "www.research.illinois.edu": [17258], "councillors.halton.gov.uk": [19236], "sandbox.pagseguro.uol.com.br": [16998], "products.mercola.com": [19396], "*.a4apphack.com": [225], "inotv.rt.com": [13468], "medrx.sensis.com.au": [16102], "nevillholtopera.net": [11286], "blender.org": [2067], "*.metropolia.fi": [10324], "www.data-informed.com": [4193], "www.bartbania.com": [1682], "engine.4dsply.com": [159], "cdn8.sure-assist.com": [15644], "kingsroadmerch.com": [8900], "www.yaler.net": [18643], "www.bitcoinarmory.com": [1976], "checkout.jwplayer.com": [9589], "www.weedtraqr.com": [18180], "*.utdallas.edu": [17287], "spsch.eu": [19620], "*.oas.org": [12104], "globalpromote.com": [6731], "*.datacenterknowledge.com": [4178], "helbing.ch": [19245], "www.couchsurfing.org": [3700], "tp.srgssr.ch": [19621], "quarry.wmflabs.org": [18296], "do.co": [1920], "www.limesurvey.org": [9356], "zhaoshang.tmall.com": [19684], "w-tune.com": [18106], "drollette.com": [10080], "youtube.com.co": [18709], "www.posti.fi": [19510], "store.laughingsquid.com": [19350], "burgenland.neos.eu": [10899], "kanotix.net": [8782], "m.ph-cdn.com": [10186], "opencontainers.org": [12003], "manitu.net": [9957], "sediarreda.com": [19578], "witness.org": [18382], "takuu-saatio.fi": [15916], "dash.org": [4162], "webdrive.htw-berlin.de": [7112], "intermundomedia.com": [8253], "olb.nationwideuk.ie": [11091], "www.tripadvisorsupport.com": [19699], "provedordocliente.edp.pt": [4896], "armadaworkplace.cisco.com": [3162], "cpib.ac.uk": [2645], "alu.usainteanne.ca": [19720], "codereview.chromium.org": [3119], "tkb.ch": [19333], "opera.yandex.by": [18648], "secure.whitepages.com": [18257], "mbsy.co": [10112], "builds.cyngn.com": [3980], "www.work4labs.com": [18436], "www.thepirategoogle.com": [16228], "motorsports.osu.edu": [11760], "chris-lamb.co.uk": [3101], "kilbeggan.fourecks.de": [6080], "vultr.com": [17873], "fanli.com": [5655], "mpp2.vindicosuite.com": [17721], "homelessnessclearinghouse.govspace.gov.au": [6867], "www.rabbitmq.com": [13487], "centrify.com": [19048], "webservices.amazon.com": [915], "static6.businessinsider.com": [2454], "gitian.org": [6681], "cdn.torlock.com": [16568], "www.kinko.me": [8909], "www.crunchboard.com": [3834], "gpoutcomes.hscic.gov.uk": [19264], "ec-media.sndcdn.com": [15032], "checkout.subscriptiongenius.com": [15565], "*.eastbay.com": [5017], "recurly.com": [13652], "ynuf.alipay.com": [817], "locationmde.data.gov.uk": [19100], "kbit.dk": [8712], "*.video.news.com.au": [11337], "www.youbetrayedus.org": [18712], "image-proxy-origin.twimg.com": [16877], "www.stdhivtraining.org": [2743], "*.marinellarose.com": [10000], "intranet.irisa.fr": [7816], "origin.www.upc.ie": [17001], "*.foodl.org": [6004], "collegeboundfund.com": [3426], "insurance.wustl.edu": [17993], "bugz.foocorp.net": [5997], "www.entrust.net": [5304], "www.voices.com": [17823], "beta.fastmail.fm": [5688], "member.impactradius.com": [8011], "*.dmu.ac.uk": [4048], "juneoven.com": [8678], "www.slovakrail.sk": [14973], "xmpp.ru.net": [18527], "www.mvps.org": [9808], "secure.qfxsoftware.com": [13282], "*.icsdelivery.com": [7922], "www.stine.uni-hamburg.de": [16951], "fsd.merton.gov.uk": [10287], "na.gcsip.com": [19210], "www.flixbus.de": [5931], "navut.ro.vutbr.cz": [17522], "www.pingupod.de": [12689], "*.evolvesocially.org": [5467], "www.turbo.htwk-leipzig.de": [7114], "www.flixbus.dk": [5931], "banan.cz": [1489], "kiks.yandex.ua": [18656], "www.searchmarketingnow.com": [16367], "www.ant.ulaval.ca": [17229], "dn.cdn.gmru.net": [6349], "www.juniperresearch.com": [8681], "zimperium.com": [18869], "schoolmeals.warrington.gov.uk": [17984], "www.lh.co.th": [9283], "garmin.com": [19208], "www.pfefferkoerner.de": [12608], "www.saucelabs.com": [14303], "www.medocmall.co.uk": [10201], "img7.leboncoin.fr": [19351], "ubuntulinux.jp": [17105], "dowjones.com": [11320], "www.groklearning.com": [6964], "youm7.com": [18714], "handmadekultur.de": [7189], "support.sumologic.com": [15592], "apps.nhsbsa.nhs.uk": [10913], "ll-media.tmz.com": [15832], "websocket.org": [18088], "forums.kali.org": [8771], "www.vovici.com": [17849], "www.sourcefire.com": [15181], "web.gcmasia.com": [6309], "doc.openmandriva.org": [11956], "www.assetstore.unity3d.com": [17220], "web01.srvv.net": [15342], "club.jd.com": [8423], "media.soundcloud.com": [15161], "qa.php.net": [12250], "console.magnetisemedia.com": [9861], "www.vvcap.net": [17523], "mark.reevoo.*": [13715], "www.slon.ru": [14969], "authcode.jd.com": [8423], "lastminute.com": [9165], "www.cce.com": [2871], "store.tenable.com": [16109], "neos.io": [11156], "soylentnews.org": [15200], "stardock.net": [15401], "on.mash.to": [1920], "sync2.audtd.com": [1363], "cdn.ideastations.org.s3.amazonaws.com": [7927], "webmail.sk": [15676], "www.prettyincash.com": [13039], "www.nowsecure.com": [11533], "*.mediamind.com": [10159], "static.huobi.com": [7624], "dri.freedesktop.org": [6126], "slac.stanford.edu": [15383], "s.aolcdn.com": [323], "youtube.com": [18709], "scontent.igcdn.com": [7951], "support.codebasehq.com": [3360], "ltar.nal.usda.gov": [17209], "www.vrijstellingoldtimer.nl": [19744], "fieldportal.netapp.com": [11183], "www.aurous.me": [1371], "www.datacenterworld.com": [4191], "www.hackaday.com": [18428], "graphics.boston.com": [2233], "*.oppo.com": [12060], "qualityunit.com": [13331], "passwords.cites.illinois.edu": [17258], "store.ccccloud.com": [2539], "www.gidforums.com": [6332], "blog.kissmetrics.com": [8727], "dvcs.w3.org": [17888], "static.ashleymadison.com": [1255], "www.tmt.org": [16370], "utwente.nl": [17072], "www.foreverinfamous.com": [8089], "m.slovari.yandex.by": [18648], "static1.autoit-cdn.com": [1416], "careers.slac.stanford.edu": [15383], "apps2.shareholder.com": [14677], "secure.admin.illinois.edu": [17258], "*.adage.com": [3758], "linuxfoundation.org": [9412], "portoncv.gov.cv": [12942], "business.bell.ca": [1763], "probe.yieldlab.net": [18682], "*.mybigcommerce.com": [1853], "events.fit.edu": [5942], "researchgate.net": [13796], "blog.bazaar.canonical.com": [2810], "archive.anon-ib.su": [1039], "directory.ncl.ac.uk": [10884], "in.effectivemeasure.net": [5109], "www.linuxdistrocommunity.com": [9421], "staging.amazonsupply.com": [916], "sales.liveperson.net": [9493], "www.doomworld.com": [4683], "check24.de": [3045], "nrelate.com": [11545], "resource.org": [13207], "*.doi.org": [4075], "weusecoins.com": [18026], "gradapply.ucsd.edu": [16939], "rusty.ozlabs.org": [12196], "assets.yumpu.com": [18747], "mathid.mathtag.com": [10071], "s3.feedly.com": [5738], "www.djangogirls.org": [4593], "site-cdn5.ghosteryenterprise.com": [6630], "subscribe.billboard.com": [1879], "www.nordea.*": [11471], "keystone.cern.ch": [2575], "images.e.switchadhub.com": [15701], "m.dell.com": [4335], "usbank.com": [17036], "fr-fr.facebook.fr": [5623], "blog.maxmind.com": [10097], "www.nearlyfreespeech.net": [11122], "s-eu.btstatic.com": [1580], "*.airbnb.co.kr": [749], "www.puritan.com": [13247], "www.fdworlds.net": [5703], "*.activestate.com": [499], "arun.objective.co.uk": [19454], "b.fastcompany.net": [5681], "www.uowdubai.ac.ae": [17350], "ncwit.org": [10889], "www.nplusonemag.com": [11537], "tree.taiga.io": [15911], "shop.eset.co.uk": [4954], "scotthelme.co.uk": [14399], "www.thestar.com": [16575], "cimbclicks.in.th": [2608], "*.ingenuity.net.au": [8140], "wms.assoc-amazon.de": [1289], "ctovision.com": [2685], "*.foxycart.com": [6087], "www38.polyu.edu.hk": [12891], "adap.tv": [554], "gnome-look.org": [19461, 19462], "firmy.prace.cz": [13008], "static.spiceworksstatic.com": [15267], "andrew.roffey.org": [13947], "*.popin.cc": [12907], "www.wfncnews.com": [17903], "*.pusherapp.com": [13253], "9.*.wdfiles.com": [18294], "*.turnonsocial.com": [16844], "rimg02.rl0.ru": [13914], "www.directbox.ch": [4529], "sarc.usc.edu": [17278], "www.filmlinc.com": [5808], "ftp.intevation.org": [8297], "www.rackspace.com.hk": [13502], "www.youtube.com.gh": [18709], "games.random.org": [13545], "postmaster.hotmail.com": [7559], "kettering.gov.uk": [8861], "www.adpselect.com": [271], "www.nationwide-jobs.co.uk": [11091], "www.korndesign.com": [8988], "internetbs.net": [8276], "hostcreo.com": [7501], "ds3.static.rtbf.be": [14011], "www.jucycruize.co.nz": [8463], "www.shoebuy.com": [14714], "kuwait.q8car.com": [13278], "netlock.hu": [11196], "borvilag.aldi.hu": [299], "services-sj.mediuscorp.com": [10198], "cyphar.com": [3983], "developer.nike.com": [11401], "www.art2po.com": [1220], "www.certificatedetails.com": [19050], "m.uic.edu": [17231], "*.eventim.co.uk": [5443], "direct.seagate.com": [14437], "www.uclan.ac.uk": [17307], "pub9.media-clic.com": [10147], "cdn.lfrs.sl": [9282], "www.ukreg.com": [5685], "wservices.ch": [18477], "i.lv3.hbo.com": [19240], "www.pavpanchekha.com": [12463], "noodlebox.dyndns.info": [18699], "flamingspork.com": [5902], "facebook.be": [5623], "www.berliner-energietisch.net": [1792], "www.ispbilling.com": [16816], "cyberguerrilla.org": [3961], "portale-sisinfo.infn.it": [7766], "blog.awe.sm": [1460], "suggest.search.sky.com": [14924], "hakkalabs.co": [7170], "webmail.comscore.com": [3453], "www.zanox.com": [18787], "customerservice.aldi.co.uk": [299], "propertylicensing.walthamforest.gov.uk": [17966], "uberspace.de": [17090], "endesa.pt": [5247], "mobilemail.secureserver.net": [14511], "smartone.de": [19601], "www.jobs.economist.com": [5060], "*.deepfield.net": [4297], "*.digg.com": [4468], "www.piquadro.com": [12703], "www.micropython.org": [10350], "webmail.cs.cf.ac.uk": [2835], "priceonomics.com": [13055], "1lotstp.com": [44], "www.phobos.bnl.gov": [19009], "travelnow.com": [16692], "www.youtube.com.hr": [18709], "www.invenio-software.org": [8312], "netreg.stanford.edu": [15383], "emdl.osu.edu": [11760], "verisign.nl": [17623], "www.burningshed.co.uk": [2442], "socitm.govmetric.com": [6866], "sso.cisco.com": [3162], "womenonweb.org": [18407], "www.itmanie.cz": [7849], "develop-online.net": [8227], "helmich.de": [7303], "www-947.ibm.com": [7675], "dnsexit.com": [4607], "hautelook.com": [7240], "springer.com": [15309], "*.ukr.net": [17125], "my.absolute.com": [430], "www.dailypix.me": [4118], "dl5.oo-software.com": [11893], "forums.plausible.coop": [12791], "payroll-remote.ymcastlouis.org": [18618], "www.netscape.com": [11248], "fun.fanli.com": [5655], "vlagtwedde.nl": [11132], "www.getmybalance.ca": [6615], "aclu-nj.org": [259], "endoflife.stanford.edu": [15383], "admin.1and1.com": [51], "mitpress.mit.edu": [9749], "shop.marthastewart.com": [10031], "foxitsoftware.com": [6086], "edgar-online.com": [4892], "ucomm.stanford.edu": [15383], "commoncrawl.org": [3486], "helpocean.com": [7304], "businessinsider.com": [2454], "realty.yandex.by": [18648], "www.thp.io": [16388], "www.shwyz.ca": [14756], "livingroutes.org": [9518], "maine.gov": [9894], "analytics.supplyframe.com": [15638], "cryptrader.com": [3840], "grabcad.com": [6879], "*.forums.frugalware.org": [6234], "beta.hrw.org": [7612], "ignitiondeck.com": [7953], "www.opinionmeter.com": [12055], "cspforum.eu": [2676], "pensionaltair.northyorks.gov.uk": [19440], "webdiis.unizar.es": [17356], "support.greenqloud.com": [6919], "my.uic.edu": [17231], "printpin.nottingham.ac.uk": [11528], "www.55chan.org": [173], "modxcloud.com": [9772], "ssl-certificate-center.verisign.se": [17623], "infotech-team.com": [18098], "i.lsimg.net": [9502], "www.digitalriver.com": [4483], "storage.360buyimg.com": [112], "l3-2.kiva.org": [8926], "www.cereproc.com": [2963], "gju3.alicdn.com": [805], "www.account.norton.com": [11505], "www.extractwidget.com": [5525], "ld-nk11.itunes.apple.com": [1120], "orbital.com": [12093], "serversaurus.com.au": [14619], "*.googlevideo.com": [18709], "data.fm": [4174], "www.outspark.com": [12154], "hunch.com": [7617], "www.lawgeex.com": [9176], "opencart.com": [11927], "speakyoursilence.org": [15234], "jobs.sbb.ch": [15693], "wap.spdb.com.cn": [19615], "lists.tog.ie": [15844], "herlev.emply.net": [5218], "jobs.kirklees.gov.uk": [8916], "www.rspb.org.uk": [13460], "image2.pubmatic.com": [13194], "ma2jic.engineering.osu.edu": [11760], "research.cals.vt.edu": [17740], "buzzdoes.com": [2478], "ardamis.com": [1174], "www.cms.iprsoftware.com": [7796], "scientificamerican.com": [14384], "nsm.stat.no": [11039], "www7.lowes.com": [9636], "www.sealedabstract.com": [14438], "untappd.akamaized.net": [763], "soekris.com": [15085], "*.voodoo.com": [17840], "*.belnet.be": [1769], "www.dia-grid.org": [4440], "put.io": [13256], "www.player.io": [12804], "psylin.plymouth.ac.uk": [12833], "cloud.jivesoftware.com": [8585], "*.today.msnbc.msn.com": [9794], "*.salsalabs.com": [14254], "www.lotuscars.com": [9615], "*.interworx.com": [8233], "kirov.rt.ru": [13469], "translation.alfresco.com": [802], "www.virtualboximages.com": [17749], "talktalktechnology.com": [15928], "qa.drupal.org": [4780], "mc.manuscriptcentral.com": [14362], "ametsoc.org": [312], "www.mathworks.com": [10066], "assets.dice.com": [4453], "www.sigxcpu.org": [14784], "register.ie": [4513], "www.jobscore.com": [8590], "cdn.muscleandstrength.com": [10708], "loginex.microsoftonline.com": [10367], "realestate.msn.com": [9794], "hrw.org": [7612], "de-tr.dict.cc": [4455], "www.tumblr.com": [16826], "www.blogsmithmedia.com": [319, 10641], "rochdale.greenparty.org.uk": [6925], "www.uvo.gov.sk": [14972], "*.overlakehospital.org": [12166], "www.power.org": [12989], "www.gdata.it": [6293], "cru.org": [3830], "www.wangyin.com": [17972], "www.comstern.de": [3457], "kona33.kontera.com": [8981], "wiki.unrealengine.com": [17365], "www.foss.in": [5587], "*.bcf.ch": [19333], "thalia.at": [16171], "app.loadimpact.com": [9529], "images-1.gog.com": [6365], "www.mobygames.com": [10505], "www.mobilevikings.com": [10502], "usmagazine.com": [17417], "www.dmoz.org": [4601], "l10n.cacert.org": [2520], "www.smallnetbuilder.com": [17601], "app-community.teespring.com": [16060], "www.oca.ucsc.edu": [17305], "helpdesk.wustl.edu": [17993], "voodooping.com": [17841], "osu.ppy.sh": [13006], "oktatas.hu": [11777], "www.sciencenews.org": [14380], "www.lolware.net": [9570], "www.enfield.gov.uk": [5258], "htwk-leipzig.de": [7114], "www.ultrahdtv.net": [17135], "www.redports.org": [13701], "boxoffice.com": [2254], "www.ijmfreedommaker.org": [7745], "api.service.hmrc.gov.uk": [7084], "developer.riverbed.com": [13907], "opam.ocaml.org": [11612], "www.vimeopro.com": [17718], "glassesusa.com": [6703], "dailynk.com": [4122], "webmail.unizar.es": [17356], "eps.unizar.es": [17356], "blogs.tnr.com": [11308], "2015.osdc.com.au": [11665], "sprints.kde.org": [8718], "*.sailfishos.org": [14241], "www.verisign.co.nz": [17623], "www.bizographics.com": [2032], "*.wuala.com": [18480], "cdn03.animenewsnetwork.com": [18957], "support.ca.com": [2511], "a856-citystore.nyc.gov": [11292], "www.globaleaks.org": [6712], "strategicplan.iu.edu": [8064], "*.wpengine.com": [17918], "cmusantaisabel.unizar.es": [17356], "*.getpelican.com": [6600], "slickedit.com": [14956], "sifterapp.com": [11358], "*.komoona.com": [8968], "stockton.edu": [15479], "katalog.uu.se": [17074], "cdn.research.nabtrade.com.au": [10865], "tech.fortune.cnn.com": [18428], "*.tvtorrents.com": [16859], "cdn5.thr.com": [15813], "catalyst.library.jhu.edu": [16296], "cdbaby.com": [19045], "globaleaks.org": [6712], "*.iapc.utwente.nl": [19277], "www.mk2.com": [19402], "jobs.citigroup.com": [3172], "www.safaribooksonline.com": [14222], "rdot.org": [13410], "www.iab.net": [8236], "www.c3s.cc": [2500], "kovidgoyal.net": [9000], "www.rdio.com": [13595], "www.ezcrypt.it": [5001], "identrust.com": [7934], "kobobooks.com": [8949], "apps.shareholder.com": [14677], "bullionstar.com": [2421], "my.mayday.us": [10104], "img.computerbild.de": [19075], "www.maxspeedcdn.com": [10093], "*.fogbugz.com": [5979], "secure.admin.myvirtualpaper.com": [10820], "c.atdmt.com": [10360], "webde-freemail-cards.web.de": [18050], "www.acsf.cornell.edu": [3676], "imageforensic.org": [7982], "partner.just-eat.ca": [19328], "atomiccowlick.com": [1325], "portal.zen.co.uk": [18815], "www.affili.net": [700], "mail.1x.com": [49], "mail.ixsystems.com": [7884], "www.pentabarf.org": [12541], "webmail.rrz.uni-hamburg.de": [16951], "www.emoryhealthcare.org": [5211], "www.cede.ch": [19047], "www.docker.com": [4616], "myuw.washington.edu": [17291], "developer.jwplayer.com": [9589], "www.liveinternet.ru": [9488], "videos.toypics.net": [19737], "myshazam.com": [10817], "waikato.ac.nz": [17347], "www.nine-2-one.com": [11411], "img.idealo.com": [7929], "admin.conetix.com.au": [3565], "www1.lsbu.ac.uk": [9098], "www.gameinformer.com": [6422], "presseportal.zdf.de": [19800], "www.phishtank.com": [12629], "suggestions.xhamster.com": [18515], "ethercalc.net": [5378], "console.boxcar.io": [2257], "www.mcafee.com": [10114], "sds-staff.kent.ac.uk": [17317], "www.libcom.org": [19361], "secure.sophos.com": [15154], "www.lenovo.co.uk": [9251], "cdn.us.playstation.com": [12795], "gemius.pl": [6517], "www.databits.net": [4196], "*.rudi.net": [13479], "www.playframework.com": [12798], "lkmart.com.au": [9088], "store.lacrossetechnology.com": [9119], "cias.rit.edu": [13434], "preprod.en.hispeed.ch": [19716], "ignum.cz": [7731], "www.cisofy.com": [2616], "www.steamunlock.com": [15456], "datapipe.co.uk": [4210], "www.baidupcs.com": [1620], "programming.wolframcloud.com": [18399], "cloud.mail.ru": [9874], "www.cgd.pt": [2978], "shareholder.com": [14677], "www.newyorkvocalcoaching.com": [11300], "www.cultura.no": [3915], "asearch.alicdn.com": [805], "collection.itunes.apple.com": [1120], "www.voffka.com": [17817], "mobilegaming.williamhill.com": [18315], "forge.indepnet.net": [8058], "www.finkmanufacturing.com": [1901], "images.ccbill.com": [2534], "vitalcred.com.br": [12328], "sitepoint.com": [14870], "www.uiuc.edu": [16956], "journalism.stanford.edu": [15383], "www.canlii.org": [2788], "*.www.city.ac.uk": [3187], "e14n.com": [4861], "i.msdn.microsoft.com": [10364], "paetec.com": [12205], "googleonlinesecurity.blogspot.com.*": [2113], "networkworld.com": [11267], "uklinux.net": [16971], "wapy.com": [17894], "www.social.anz.com": [315], "data-informed.com": [4193], "lntecc.com": [9092], "www.nuclearblast.de": [11567], "i.istockimg.com": [19308], "forum.jide.com": [8438], "fibonacci.uvt.nl": [16445], "spot.im": [15293], "startech.com": [15395], "healthdirect.gov.au": [7263], "www.heinlein-support.de": [7286], "lantmateriet.se": [9152], "ec2-images-amazon.test.edgekey.net": [5081], "www.rateip.com": [13573], "survey.piwik.org": [12733], "scan.xamarin.com": [18540], "alice.de": [810], "*.anwiki.com": [16856], "s.admaster.com.cn": [530], "inform.umd.edu": [17263], "ssl-munchkin.marketo.net": [10015], "pazaruvaj.com": [12492], "static.vzaar.com": [17883], "nature.berkeley.edu": [17240], "www.skm.dk": [14899], "static.campusjob.com": [2784], "www.buckeyemail.osu.edu": [11760], "www.workwithcolor.com": [18438], "dea.com": [4262], "wiki.opnsense.org": [11656], "www.rfc-editor.org": [13418], "2014.asiabsdcon.org": [1258], "gse.stanford.edu": [15383], "netmeister.org": [11243], "hackforums.net": [7152], "mijnd66.nl": [10381], "piwik.nic.cz": [11379], "orapps.osu.edu": [11760], "wwwcf.nlm.nih.gov": [11052], "fmylife.com": [5580], "www.accessprivacy.com": [451], "www.schulthess.com": [19573], "alandroidnet.com": [776], "swift.org": [15688], "www.ghost.org": [6628], "www.linux-dev.org": [9400], "assets.uits.iu.edu": [8064], "www.univ-brest.fr": [17222], "moodle.ut.ee": [17069], "aaronlindsay.com": [395], "blog.pushbullet.com": [13251], "www.aftonbladet.se": [716], "mmedia.me": [10281], "thereadingroom.com": [16232], "support.redhat.com": [13675], "*.thesims3.com": [5151], "atomicorp.com": [1328], "www.mcli.dist.maricopa.edu": [9989], "*.biapy.fr": [1840], "flagrate.org": [5900], "magazine.magix.com": [9708], "metaproducts.com": [10301], "europeanssl.eu": [5428], "www.okcoin.cn": [11627], "solutions.liveperson.com": [9494], "test.metooo.io": [10317], "home.bt.com": [1551], "www.glljobs.org": [19222], "max.adobe.com": [615], "lister.mysql.cesky-hosting.cz": [19051], "piwik.inspirehep.net": [8178], "preview.webplatform.org": [18079], "www.plantsolution.de": [12777], "apps.nowwhere.com.au": [19442], "us.effectivemeasure.net": [5109], "www.ipa.go.jp": [7787], "running.polyu.edu.hk": [12891], "dccc.org": [4014], "netid.cornell.edu": [3676], "i2.answers.microsoft.com": [10364], "beacon.jpl.nasa.gov": [10869], "www.polipayments.com": [12276], "studentconduct.wustl.edu": [17993], "pivotallabs.com": [12731], "labs.giffgaff.com": [19217], "www.join.tv": [8615], "*.idg.com.au": [7704], "www.nordkappnett.no": [11478], "blog.mog.com": [9773], "selfhtml.org": [19580], "hunban.taobao.com": [15952], "www.ams.org": [310], "orderhlp.com": [14724], "www.nal.usda.gov": [17209], "conversejs.org": [3626], "hsv.se": [7100], "itunes.com": [7865], "nwk-unbrick1.apple.com": [1120], "soulmates.theguardian.com": [16288], "rd.connexity.net": [3584], "rsync.net": [14009], "ssl.webserviceaward.com": [18105], "app.getbeagle.co": [6585], "boredtodeath.me": [2222], "*.editmysite.com": [5085], "*.www.emunews.net": [5224], "tags.liveperson.net": [9493], "www.bitcoinfoundation.org": [1980], "www.bloadr.com": [2081], "manage.kickassvps.com": [8877], "research.buffalo.edu": [17297], "online-office.1and1.co.uk": [53], "grants.wellcome.ac.uk": [19752], "livechat.boldchat.com": [2187], "www.watchmaxx.com": [17997], "carlisleeden.greenparty.org.uk": [6925], "ne.ucsd.edu": [16939], "*.netdna-ssl.com": [11222], "www.boligportal.dk": [2190], "groklearning.com": [6964], "quickhash.com": [13358], "www2.lse.ac.uk": [9575], "www.hertz247.ie": [7351], "onegooddriver.com": [11826], "store.calgunsfoundation.org": [2739], "www.healthcheckusa.com": [7257], "whstatic.1and1.com": [51], "*.planetemu.net": [12766], "www.rpmfind.net": [14004], "www.hertz247.is": [7349], "www.hertz247.it": [7352], "www.everyanglemedia.com": [5452], "mysql.vas-hosting.cz": [19729], "www.looloo.com": [9602], "privacy.org.au": [13085], "www.usyd.edu.au": [19723], "www.enterprise.com": [5291], "walmart.com": [17964], "www.bunchball.com": [2424], "www.songsterr.com": [15135], "sites.stanford.edu": [15383], "chat.apan.org": [329], "ips-invite.iperceptions.com": [19275], "www.proxysolutions.net": [13183], "intego.com": [8201], "ec.libsyn.com": [9321], "www.ubit.buffalo.edu": [17297], "www.sks-keyservers.net": [14127], "static.stubhub.com": [15534], "issues.kolab.org": [8959], "studentaid2.ed.gov": [4889], "www.modelaircraft.org": [438], "advertisers.dataxu.com": [4190], "cryptostocks.com": [3889], "www.books.ch": [16171], "www.tcpacompliance.us": [15792], "api.bufferapp.com": [2402], "www.openreach.co.uk": [12042], "opendata.cheshireeast.gov.uk": [3067], "*.airbnb.com": [749], "boe.ca.gov": [2508], "my.in-disguise.com": [8024], "signup.live.com": [9483], "portal.johnshopkins.edu": [8611], "web.nvd.nist.gov": [11051], "zhaoshang.alitrip.com": [818], "thecoastnews.com": [16260], "bugs.opera.com": [12050], "apps-community.akamai.com": [761], "edponline.edp.pt": [4896], "purevpn.com": [13240], "waymoot.org": [18011], "*.factiva.com": [11321], "file2.answcdn.com": [1059], "webmail.htw-berlin.de": [7112], "www.kaisersysteme.com": [8769], "search.dokuwiki.org": [4638], "act.ju.taobao.com": [15952], "discshop.se": [4557], "pcp.ch": [12496], "*.tinypng.com": [16483], "www.asl19.org": [350], "api.flattr.com": [5911], "itcr.cancer.gov": [2805], "fveydocs.org": [5609], "tcpalm.com": [15793], "cname.createsend.com": [3773], "cdn.betacie.net": [1815], "www.gotoassist.com": [6786], "offcampus.osu.edu": [11760], "www.strato-hosting.co.uk": [14192], "www.justtomatoes.com": [8693], "*.unibe.ch": [17239], "www.apperdeck.com": [7461], "landalparkshop.*": [18490], "*.stopsoftwarepatents.eu": [15486], "*.glassdoor.com": [6701], "aerohosting.cz": [689], "www.5min.com": [178], "wiki.openvas.org": [11988], "www.aerohosting.cz": [689], "www.bear.im": [1734], "www.fas.htwk-leipzig.de": [7114], "static.intercomcdn.com": [8245], "www.risparmiopostale.it": [13903], "antalyagrillhouse-blanchardstown.just-eat.ie": [19328], "m.taxi.yandex.com": [18651], "news.66option.com": [181], "logmeininc.com": [9550], "energymadeeasy.gov.au": [5255], "support.snapchat.com": [15029], "ddr.ornl.gov": [11693], "www.sunxi.org": [9401], "devprom.ru": [4431], "www.kyleisom.net": [9053], "webmail.hi.is": [7066], "*.gwu.edu": [6545], "www.skylink.cz": [14937], "bfm.swisscom.com": [15698], "www.techtoolsforactivism.org": [16024], "www.name.com": [11015], "mbrowser.yandex.kz": [18652], "tinderfoundation.org": [16470], "www.brasil247.com": [2290], "www.hud.gov": [17018], "www.svs.ulaval.ca": [17229], "www.kinox.am": [19337], "www.makeloveland.com": [9908], "Spielfuerdeinland.de": [15273], "veuwer.com": [17656], "sugarcrm.hostone.com.au": [7517], "p.ngx.cc": [11376], "nedlinux.com": [11131], "persoonlijk.knab.nl": [8939], "oagaviation.com": [16927], "knowledge.verisign.fr": [17623], "www.umd.edu": [17263], "dms-q.wiiings.com": [18288], "*.hark.com": [7206], "kissinsights.com": [8726], "ss1.zedo.com": [18808], "www.snip2code.com": [15036], "debathena.mit.edu": [9749], "www.flyertown.ca": [5964], "bluenotes.anz.com": [315], "lumigon.com": [9665], "psychology.plymouth.ac.uk": [12833], "lpievent.lpice.eu": [9096], "risi.com": [13433], "surbitcoin.com": [15643], "www.orezpraw.com": [12101], "status.pivotaltracker.com": [12732], "amos.taobao.com": [15952], "s1.qhimg.com": [13302], "servertastic.com": [14609], "static.smdg.ca": [15004], "*.abuse.ch": [431], "www2.dudley.gov.uk": [4794], "stapi.snacktools.net": [15021], "englishdefenceleague.net": [5270, 5271], "*.adbuyer.com": [566], "myplacelive.walthamforest.gov.uk": [17966], "springfiles.com": [15305], "www.broadband-forum.org": [2348], "www.pittsburghmassageandwellness.com": [12729], "inertianetworks.com": [8086], "cimb-principal.com.my": [2606], "facultypositions.usc.edu": [17278], "www.friendfinder.com": [6213], "www.httplab.it": [7590], "docs.kolab.org": [8959], "cloudscaling.com": [3314], "guitar.co.uk": [10277], "londonpreparesseries.com": [9572], "www.travelblog.org": [16690], "about.musixmatch.com": [10723], "www.chromestatus.com": [3118], "blueorigin.com": [2143], "alias.io": [808], "i2.rgstatic.net": [13422], "btplc.com": [1547], "dx.com": [4253], "jobs.leeds.gov.uk": [19353], "www.nerdpol.ch": [11159], "*.getclicky.com": [6610], "*.mulberrymail.com": [10692], "drivestyle.co.uk": [4763], "docs.eiffel.com": [5124], "techweekeurope.fr": [11198], "advantageseoservices.com": [651], "ctt.org": [3907], "eastsussex.gov.uk": [19142], "www.delivery.com": [4333], "www.ffmpeg.org": [5565], "*.starbucks.com": [15400], "www.moechel.com": [10528], "bccserve.sunybroome.edu": [2365], "vungle.com": [17877], "pcbooking.staffordshire.gov.uk": [15370], "data.gov": [4175], "www.libanywhere.com": [9304], "ictu.nl": [7693], "planauskunft.netcologne.de": [11188], "games.icq.com": [7690], "servicetick.com": [14623], "badongo.com": [1608], "listes.aful.org": [286], "igniterealtime.org": [7952], "*.wi-fi.org": [18271], "mittidg.idg.se": [7705], "sync.adaptv.advertising.com": [662], "www.just-eat.co.uk": [19328], "*.ripoffreport.com": [13896], "www.das-labor.org": [4159], "musikerforbundet.se": [10721], "*.icculus.org": [7909], "www.nuuvem.com": [11586], "cs.serverdensity.com": [14614], "*.pagodabox.com": [12335], "*.ace-host.net": [471], "whoami.cesnet.cz": [2585], "s.cdon.com": [2562], "www.theplatform.com": [16230], "insouciant.org": [8175], "www.ece.osu.edu": [11760], "netloan.birmingham.gov.uk": [19000], "thalescomminc.com": [16169], "mybexley.firmstep.com": [19183], "elearning.vutbr.cz": [17522], "jitsi.org": [8583], "puu.sh": [13258], "*.onesite.com": [11646], "open.taobao.com": [15952], "www.wlb.at": [18284], "*.nonexiste.net": [11469], "www.andytyson.com": [1010], "sizzlesitesinc.com": [14891], "jobs.drupal.org": [4780], "www.zooko.com": [18898], "www.mxgm.org": [9810], "linkedin.com": [9376], "*.opensrs.com": [11969], "2009.asiabsdcon.org": [1258], "welfare.bournemouth.gov.uk": [2251], "cdn3.recombu.com": [13648], "www.sg.cnrs.fr": [6195], "cdn.tradelab.fr": [16643], "camden.greenparty.org.uk": [6925], "force11.org": [5586], "dev.plexapp.com": [12815], "www.veronikamaine.com.au": [17631], "*.vsco.co": [17512], "*.plastic-bin.com": [12783], "www.dropdav.com": [4767], "sdss3.org": [14967], "pravydiplom.cz": [13015], "www.consumeraffairs.com": [3599], "wiki.pacbsd.org": [12307], "webmail.daily.co.uk": [4113], "service.usatoday.com": [17032], "coindaddy.io": [3393], "www-stage.aggregateknowledge.com": [726], "et.redhat.com": [13675], "canadianwebhosting.com": [2795], "ludit.kuleuven.be": [8816], "transmode.se": [16677], "*.travisf.net": [16702], "insidehw.com": [8165], "www.mzl.la": [19423], "litetree.com": [9459], "translate.foursquare.com": [6082], "static.guim.co.uk": [7014], "*.mnaonline.org": [10345], "sysmex.com": [15755], "www.bluenotes.anz.com": [315], "www.frieslandcampina.com": [2782], "www.speedyshare.com": [15259], "*.makemytrip.com": [9905], "pepperjamnetwork.com": [12554], "shutterfly.com": [14754], "datacentrum.wedos.com": [17901], "aresu.dsi.cnrs.fr": [6195], "perot.me": [12579], "coop.no": [3646], "dk.norton.com": [11505], "amoena.com": [979], "webshoprevolution.com": [18085], "*.ubm-us.net": [16926], "*.talemetry.com": [15918], "www.smileysnetwork.com": [15006], "s.omniti.net": [11796], "www.dizzcloud.com": [4589], "www.catalysis.com": [2895], "*.zapunited.com": [18794], "crowdrise.com": [3827], "www.logotype.se": [9563], "sendmail.com": [14581], "*.ryanair.com": [14054], "*.ucar.edu": [16931], "6kbhkort.kk.dk": [8730], "portal.walthamforest.gov.uk": [17966], "galaxy.ansible.com": [1057], "hastexo.com": [7233], "kktvkj.tmall.com": [19684], "www.anonysurfer.com": [1047], "g2play.net": [6297], "stevenroddis.com": [15469], "redmine.org": [13697], "wiroos.com": [19761], "gnome-help.org": [19461, 19462], "appthemes.com": [1110], "my.joinos.com": [8618], "valuedial.com": [17546], "www.youngcancer.scot.nhs.uk": [10913], "ashlands.net": [10559], "www.danid.dk": [4132], "www.lerner.ccf.org": [3236], "walkingmen.com": [17959], "www.easycottages.com": [18490], "www.stackcommerce.com": [15361], "www.underskog.no": [17158], "quattroplay.com": [13343], "account.metartnetwork.com": [10296], "*.modx.com": [9771], "youtube.com.tn": [18709], "audience.tapad.com": [15954], "image.rakuten.co.jp": [13533], "www.xmpp.org": [18526], "*.ustc.edu.cn": [17051], "www.ybin.me": [18664], "ntpandp.com": [10975], "*.utexas.edu": [17286], "bme.engineering.osu.edu": [11760], "www.zueriwieneu.ch": [18917], "www.netgroup.dk": [11233], "www.opengl.org": [11939], "mail.xeneris.net": [18560], "ieee.illinois.edu": [17258], "*.nzbmatrix.com": [11003], "guidancesoftware.com": [7006], "origin.eplayer.performgroup.com": [12239], "mediastorehouse.com": [10146], "leseprobe.buch.de": [16171], "tripit.com": [16743], "konklone.com": [8978], "www.juliareda.eu": [8671], "docs.python.org": [13272], "tribalhosting.net": [16726], "jhupbooks.press.jhu.edu": [16296], "xxx24hr.com": [18606], "image.slidesharecdn.com": [14963], "www.metrotransit.org": [10325], "crp.gov.sk": [14972], "sheg-preview.stanford.edu": [15383], "success.acrobat.com": [480], "hts.crick.ac.uk": [19090], "jsao.io": [8461], "forge.centreon.com": [2957], "www.iatspayments.com": [7670], "www.youtube.nl": [18709], "japan.hertz.com": [7372], "investors.redhat.com": [13675], "car.osu.edu": [11760], "partners.exacttarget.com": [5477], "cacti.allmyvideos.net": [857], "www.fastdomain.com": [5672], "www.kitapyurdu.com": [8921], "mdm.portal.srgssr.ch": [19621], "*.medibankhealth.com.au": [10184], "www.zcomm.org": [18756], "www.translationproject.org": [16674], "sandstorm.de": [14282], "ebanking.cimbthai.com": [2608], "a2.sphotos.ak.fbcdn.net": [5700], "drivee.ne.jp": [4764], "www.createspace.com": [3772], "neobux.com": [11147], "m.blogs.yandex.kz": [18652], "media.screened.com": [18244], "www.dailynk.com": [4122], "partners.fortinet.com": [6056], "dmu.my.centrify.com": [19048], "www.webmaster.yandex.by": [18648], "cinelease.com": [7372], "www.car.osu.edu": [11760], "www.intranet.fmed.ulaval.ca": [17229], "www.cuabroad.cornell.edu": [3676], "help.adbrite.com": [563], "sales.talktalk.co.uk": [15929], "www.dtp.nci.nih.gov": [11052], "*.linuxmint-art.org": [19462], "www.hertz.nl": [7355], "embeds.vice.com": [17667], "*.which.net": [18240], "newegg.ehosts.net": [5120], "hvb.de": [7649], "pcgarage.ro": [19483], "help.youcaring.com": [18704], "www.jabber.at": [8473], "thailand.allianz.com": [18950], "www.voscast.com": [17845], "itspa.org.uk": [7851], "upem.it.ohio-state.edu": [11761], "securestore.xfinity.com": [19784], "md-coord.web.cern.ch": [2575], "rc.fas.harvard.edu": [7219], "planet-work.*": [12758], "sysdream.com": [15753], "www.dialogs.com": [4443], "dz2cdn2.dzone.com": [4095], "www.anthrocon.org": [1065], "bluehost.com": [2150], "www.gamefly.com": [6419], "www.t.co": [15776], "www.mybbcentral.com": [10744], "libreplanet.org": [9313], "www1.cs.fau.de": [17311], "blog.fortumo.com": [6060], "vhphttp.dsi.cnrs.fr": [6195], "www.bitvisor.org": [1950], "vooplayer.com": [17839], "*.blackmesh.com": [2038], "downloads.comcast.net": [3460], "streetartutopia.com": [15520], "s-passets-cache-ak0.pinimg.com": [12691], "bnd.bund.de": [2430], "cf-media.sndcdn.com": [15032], "mpornpass.com": [10670], "*.myheritage.com.br": [10834], "toogl.com": [16552], "bedrockformsemeanext.msn.com": [9796], "images2.hertz247.com": [7372], "www.blogmaverick.com": [18428], "engage.redhat.com": [13675], "aolplatforms.com": [325], "ficora.fi": [5771], "www.usmile.at": [17446], "osuosl.org": [12099], "attac.at": [1334], "*.kernelconcepts.de": [8858], "getpelican.com": [6600], "jobs.stockport.gov.uk": [19628], "sso.childrensmarketplace.mycareinbirmingham.org.uk": [10802], "norid.no": [11483], "www.reztrip.com": [13853], "www.appvault.com": [1111], "mhcid.washington.edu": [17291], "policy.stonybrook.edu": [15480], "*.clicktale.net": [3252], "*.codeux.com": [3382], "c.msn.com": [9796], "blog.newswhip.com": [11332], "www.exchange.iu.edu": [8064], "eu.art.com": [1219], "www.eventoverload.com": [5439], "www.lanik.us": [9148], "securenscb.newcastle.gov.uk": [11315], "railsschool.org": [13531], "static.tenable.com": [16109], "schiedam.nl": [11132], "*.ology.com": [11783], "www.amazon.co.uk": [917], "*.unoeuro.com": [17362], "www.ad-stir.com": [513], "sc.itunes.apple.com": [1120], "calendar.nih.gov": [11052], "www.ecb.eu": [5421], "grouplogic.com": [6969], "*.zpcdn.com": [18909], "marketing.voxmedia.com": [17852], "iptc.org": [7850], "marketplace.appcelerator.com": [1113], "*.showingcloud.com": [14743], "www.noip.com": [11444], "quantserve.com": [13341], "www.getdigital.de": [6611], "reports.adblockplus.org": [561], "cait.wustl.edu": [17993], "www.tsp.gov": [19703], "pt.community.dell.com": [4335], "deepdotweb.com": [4299], "fr.support.tomtom.com": [16540], "sofn.com": [15087], "www.prolific.com.tw": [13147], "phone-analytics.com": [12634], "manageengine.com": [9940], "fime.me": [5575], "videos.5min.com": [178], "accounts.firefox.com": [5859], "discuss.xilo.net": [18517], "vip.youku.com": [18713], "unidadseguridad.unizar.es": [17356], "*.voxel.net": [17853], "secure.gladrags.com": [6696], "store.discovery.com": [4554], "junge-piraten.de": [8679], "www.kyivpost.com": [9052], "*.battlecreekenquirer.com": [1694], "bellsouth.com": [1765], "fast.fonts.net": [5994], "newman.uts.ohio-state.edu": [11761], "dersverilir.net": [4383], "ideel.com": [7931], "beckpc.ch": [1744], "www.rapidssl.com": [13557], "h.s.sl.pt": [14297], "www.hig.se": [7067], "www.jitbit.com": [8580], "exstonet.merkleinc.com": [19397], "www.linksysbycisco.com": [9384], "infopankki.fi": [8115], "franchiseradioshack.com": [13515], "showcase.ca": [14741], "ss.prbrds.com": [13110], "ua.siteground.com": [14865], "adx.adform.net": [585], "ip.ngx.cc": [11376], "www.ntvspor.net": [10974], "mentor.com": [10264], "hk.norton.com": [11505], "git.fedorahosted.org": [5727], "usersnap.com": [17439], "counter.yadro.ru": [18631], "fokus.no": [5981], "*.spoki.lv": [15286], "webmail04.register.com": [13732], "nokia.*": [11461], "zipcar.com": [18872], "api.weixin.qq.com": [13285], "app.zencoder.com": [18820], "www.sandvine.com": [14284], "frederikssund.dk": [6118], "wiki.bitcoin-otc.com": [1962], "secure.websimages.com": [18144], "www.intohigher.com": [8298], "jobs.barclays.co.uk": [1662], "www.docs.zone": [4621], "www.aclu.org": [256], "it.arch.ethz.ch": [4975], "www.uclinics.com": [16945], "wiki.tox.chat": [16616], "sysysportal.axosoft.com": [1477], "*.wiki.zoho.com": [18884], "www.jsperf.com": [8656], "www.cta-observatory.org": [3061], "*.ladyfootlocker.com": [9128], "avtrade.co.uk": [1457], "apj.aas.org": [235], "world.popads.net": [12902], "*.firehost.com": [5854], "www.civicalg.com.au": [19065], "www.vr.se": [17511], "msndata.jp.msn.com": [9794], "www.de-captcher.com": [4240], "www.svenskakyrkan.se": [15671], "collabora.co.uk": [3419], "pep.uni-potsdam.de": [17333], "blazeti.me": [2062], "archive.angus.gov.uk": [1020], "www.customwheelconnection.com": [3938], "partners.devon.gov.uk": [4428], "www.moto-g.com": [10614], "www.letstalkbitcoin.com": [9265], "cms3.rz.htwk-leipzig.de": [7114], "cdn.exactag.com": [5479], "ct.pinterest.com": [12699], "sikur.com": [14785], "stags.bluekai.com": [2133], "assets.sidearmsports.com": [14764], "www.kosmas.cz": [8742], "*.libdems.org.uk": [9292], "*.staysmartonline.gov.au": [15442], "assets.bt.com": [1551], "www.pte.hu": [12302], "www.cars.unm.edu": [16992], "faxjh.savetheinternet.eu": [14316], "www-mail.biologie.ens.fr": [4930], "*.austrade.gov.au": [1379], "www.hushmail.com": [7632], "shutthebackdoor.net": [14752], "reelhd.com": [13710], "www.t3blog.com": [15780], "womensexpova.com": [18406], "lists.freebsd.org": [6120], "www.betcoin.tm": [1813], "www.pivotal.io": [12730], "new.leadforensics.com": [9197], "freechelsea.com": [6140], "www.thechive.com": [16258], "vip.t-mobile.com": [15772], "heart-2-heart.ca": [7274], "www.sophos.com": [15154], "bootstrap.pypa.io": [13265], "global.ahnlab.com": [739], "www.yaha.no": [18633], "norman.com": [11487], "images.thalasseo.com": [16168], "support.panopto.com": [12364], "ill.rit.edu": [13434], "trac.jitsi.org": [8583], "www.recapthelaw.org": [13643], "casper.com": [2885], "sigfig.com": [14775], "imssr.com": [7760], "dashboard.ngrok.com": [11375], "secure.stage-gettyimages.co.*": [6621], "www.siedler25.org": [13832], "www.dontspyonus.org.uk": [4680], "www.smuxi.im": [15016], "www.privacyassociation.org": [8263], "ntnu.no": [10964], "reethus-adeline.de": [13714], "sonycsl.co.jp": [15148], "oit.umd.edu": [17263], "studentrecords.wustl.edu": [17993], "*.espncdn.com": [6363], "*.paymentssource.com": [12478], "bloodhoundgang.com": [2116], "www.jxself.org": [8702], "nepomuk.kde.org": [8718], "www.jpcsp.org": [5224], "*.fcac.org": [5635], "secure.rentalcars.com": [13773], "ooshirts.com": [11898], "img.dxcdn.com": [4253], "fb.hsicloud.com": [7581], "epa-dccs.ornl.gov": [11693], "v.eroshare.com": [5350], "red-bean.com": [13665], "faculty.ischool.syr.edu": [15745], "livenation.*": [9481], "rsf.org": [13784], "*.revoltgames.com": [13849], "email.stanford.edu": [15383], "forum.cnes.fr": [2634], "www.get.how": [6575], "demo.joomla.org": [8627], "admin.omgpm.com": [12949], "www.ease.ed.ac.uk": [5067], "davincivaporizer.com": [4231], "www.upatient.com": [17010], "ox.digi.hu": [4470], "intevation.org": [8297], "dev.office.com": [11743], "alltubedownload.net": [862], "i4.code.msdn.s-msft.com": [14058], "blog.legitbs.net": [9233], "weltbild.ch": [18197], "swagshop.spiceworks.com": [15266], "*.tags.sitetagger.co.uk": [14873], "idportal.lrz.de": [9238], "tools.oasis-open.org": [11606], "groups.csail.mit.edu": [9749], "m.carphonewarehouse.com": [2861], "www.wienenergie.at": [18284], "feedback.adroll.com": [535, 536], "dionyziz.com": [6915], "www.devstructure.com": [4418], "imagesc.btol.com": [1623], "www.highon.coffee": [7399], "www.hamradio.com": [7184], "www.npower.com": [11543], "dashboard.tinypass.com": [16489], "secure.smallbits.com": [14980], "keyserver.pgp.com": [12245], "www.carlosprioglio.com": [2854], "www.labelsbythesheet.com": [9126], "uat.billdesk.com": [1876], "prolexic.com": [13146], "www.geoamigo.com": [6535], "demandware.com": [4349], "d.ibtimes.co.uk": [7677], "shop.m-budget.migros.ch": [19399], "people.yandex.by": [18648], "*.herdict.org": [7325], "freshcode.club": [6202], "cinesport.com": [3142], "bonus.games.mail.ru": [9874], "*.deviantart.com": [4423], "oniontip.com": [11864], "www.impactstory.org": [8013], "www.gigaom.com": [6644], "support.wandisco.com": [17893], "fafsa.gov": [5550], "venmo.com": [17607], "vanillicon.com": [17560], "*.rating-widget.com": [13576], "survival.tacticaltech.org": [15901], "www.research.vt.edu": [17740], "who.is": [18258], "www.essaysreasy.com": [5364], "stemulitefitnessformula.com": [15467], "gog.com": [6365], "*.vespermarine.com.au": [17651], "illicoweb.videotron.com": [17700], "research.illinois.edu": [17258], "investor.marvell.com": [16381], "*.mediafire.com": [10151], "*.pantherssl.com": [2560], "www.kn.vutbr.cz": [17522], "www.openbenchmarking.org": [11922], "teddyonlinejudge.net": [16057], "telekom.com": [16087], "gamcare.org.uk": [6411], "emaileri.com": [5192], "www.reflets.info": [19544], "ad.harrenmedianetwork.com": [7210], "*.theoutnet.com": [16303], "cdn7.openculture.com": [12006], "genivi.org": [6316, 6317], "www.deliveras.gr": [4332], "xav.com": [18546], "www.amherst.edu": [954], "www.wikimedia.or.id": [18296], "unternehmen.aldi-suisse.ch": [299], "*.sestatic.fi": [14106], "marketwatch.com": [10021], "parabolagnulinux.org": [12385], "www.nat.ms": [11041], "cheema.com": [3054], "ex.mail.ovh.net": [12173], "advisormailout.com": [667], "bind10.isc.org": [7821], "outlook.leeds.ac.uk": [17318], "wiki.instantbird.org": [8186], "blocket.se": [2094], "shop.m.taobao.com": [15952], "www.hertzrent2buy.com.br": [7340], "covad.net": [3726], "www.devimperium.com": [4425], "blog.bitbucket.org": [1926], "media.grc.com": [6380], "signup.lotro.com": [19372], "www.raam.org": [13486], "perimeterinstitute.ca": [19488], "static.gearslutz.com": [6488], "www.bentasker.co.uk": [1772], "lens.io": [9254], "academy.redhat.com": [13675], "bugs.linux-mips.org": [9413], "images3.jlist.com": [8442], "chrismatic.io": [3108], "ru.calameo.com": [2731], "perspectives-project.org": [18428], "ox-d.overdrive.com": [12160], "api.groupon.com": [6974], "choiceofgames.com": [3097], "cacti.its.thm.de": [15811], "www.britishairways.com": [1488], "toppreise.ch": [19688], "www-cache5.extensis.com": [5523], "www.lambda-linux.io": [9135], "e-ksf.org": [4841], "websitealive7.com": [18149], "support.greenbone.net": [6929], "app.jd.com": [8422], "allyoucanarcade.com": [848], "kommunal.se": [8967], "www.cipeg.leeds.ac.uk": [17318], "blognone.com": [2111], "hg.python.org": [13272], "static.fimfiction.net": [5816], "c.o0bc.com": [11601], "www.kyn.me": [9054], "fr.malwarebytes.org": [9929], "www.linksmail.de": [9380], "xxxbunker.com": [18607], "*.getmein.com": [9481], "devel.unikernel.org": [17188], "www.firefox.com": [5859], "*.thumbshots.net": [16401], "s.jd.com": [8423], "tfes.org": [16164], "www.mozo.co": [10665], "www.pooi.tk": [3533], "kaiseki.me": [8768], "practicesightssupportportal.axosoft.com": [1477], "evans.washington.edu": [17291], "www.kcc.webhostone.de": [18121], "ltc.huobi.com": [7624], "smallingerland.nl": [11132], "www.kerbalspaceprogram.com": [8855], "afcom.com": [281], "remedy.canon-europe.com": [2809], "dashboard.bitgravity.com": [1932], "i0.gmx.com": [6350], "www.bitcoinforum.com": [1979], "www.brown.edu": [2367], "www.ada.lt": [547], "www.datapipe.co.uk": [4210], "images.deals.woot.com": [18424], "sync.security.pp.regruhosting.ru": [13741], "www.tetu.com": [16148], "*.logicboxsoftware.com": [9556], "www.picostocks.com": [12665], "blog.webtype.com": [18094], "www.hamptons.curbed.com": [3926], "structure.ncbi.nlm.nih.gov": [11052], "file.service.qq.com": [13285], "sukebei.nyaa.eu": [11595], "documentation.red-gate.com": [13657], "xroxy.com": [18590], "www.noblehour.com": [11447], "www.davidadrian.org": [4225], "www.ehospice.com": [5118], "static-dev.gbot.me": [6808], "my.evidon.com": [5458], "fr.chaturbate.com": [3035], "exante.eu": [4993], "sourceware.org": [15184], "tucowsinc.com": [16816], "www.nurd.space": [10976], "evga.com": [4986], "www1.citibank.com": [3171], "wwwrc.cinelease.com": [7372], "sgc.static.rtbf.be": [14011], "jointheherd.little.my": [9475], "myneu.neu.edu": [10902], "ripe63.ripe.net": [13895], "www.thunderranchinc.com": [16403], "www.ruderich.org": [14023], "resources.oncourse.iu.edu": [8064], "pages.here.com": [7326], "alexandercoward.com": [797], "www.york.ac.uk": [17351], "www.orionmagazine.org": [12108], "cdn.crushable.com": [859], "subscribe.condenet.com": [3558], "healthstream.usc.edu": [17037], "data.videohub.tv": [17687], "www.moaf.org": [10480], "*.beetailer.com": [1751], "xiscosoft.org": [18576], "hs11.snstatic.fi": [14145], "www.gemeentewesterveld.nl": [11132], "www.allunmanaged.com": [841], "pviq.com": [13260], "www.uploaded.net": [17393], "youtube.co.at": [18709], "www.adbit.co": [516], "dominustemporis.com": [4674], "blog.symbolab.com": [15716], "www.identitytheft.org.uk": [7939], "tn123.org": [19687], "scm-fusioncrm.oracle.com": [12082], "de.canon.ch": [2809], "imagesrel.hertz.com": [7372], "lt.libreoffice.org": [9311], "mailgun.com": [9883], "www1.maine.gov": [9894], "www.aip.org": [291], "savingscatcher.walmart.com": [17964], "parking.sevenoaks.gov.uk": [14638], "www.weblearn.ox.ac.uk": [17271], "sebp.due-north.com": [19129], "*.salesforce.com": [14249], "extensions.joomla.org": [8627], "www.autisticadvocacy.org": [1412], "autotrack.nl": [1418], "cz.norton.com": [11505], "www.privacyenforcement.net": [13087], "eduroam.cz": [5098], "www.twenga-solutions.com": [16872], "wpsoftware.net": [17925], "cp.sweb.ru": [15208], "system3.deprexis.com": [4376], "unifiedtracking.com": [17185], "sec.taobao.com": [15952], "mobstac.com": [10487], "www.lilliputti.com": [9353], "blog.vungle.com": [17877], "office2010.microsoft.com": [10364], "codementor.io": [3371], "commencement.stanford.edu": [15383], "www.filebyid.com": [5797], "igaming.biz": [7732], "cdn.blisstree.com": [859], "secure8.itradecimb.com.my": [2606], "www.v-dem.net": [19725], "repos.wine-staging.com": [18350], "www.xakep.ru": [18539], "www.geocoder.ca": [6536], "zscore.mit.edu": [9747], "targetedthreats.net": [15963], "sideshowtoy.com": [14765], "romab.com": [13963], "hilfe.freemail.web.de": [18050], "flipagram.com": [5924], "front-admin.voyage-prive.co.uk": [17856], "*.globat.com": [6742], "support.viglink.com": [17710], "csrsupport.com": [2677], "www.db.tt": [4768], "s.cdnwp.com": [2559], "maps.google.*": [6841], "*.adobeconnect.com": [616], "static.cuttlefish.com": [3945], "www.changetip.com": [2995], "online.aberdeenshire.gov.uk": [412], "www.wifilib.com": [18285], "account.domaintools.com": [4660], "mike.kaply.com": [8790], "webmail.bell.net": [1763], "www.modulus.io": [10527], "c1.thejournal.ie": [16224], "handelsregister.de": [7188], "cdn1.a1.net": [217], "directory.services.live.com": [9483], "icinga.org": [7919], "www.surftown.com": [15652], "www.havant.gov.uk": [19237], "e-mielenterveys.fi": [4855], "style.taobao.com": [15952], "kryptos.sh": [9020], "www.economist.com": [5060], "www.yawnbox.com": [18663], "www.openfoundry.org": [11938], "nextagnews.nextag.com": [11362], "gun.io": [7022], "www.wbplay.com": [17897], "www.pinegram.com": [12678], "*.realmedia.com": [76], "*.suntimes.com": [15594], "medleyads.com": [10200], "community.flockport.com": [5936], "www.snelis.com": [15033], "bugs.x2go.org": [18499], "help-it-eu.nike.com": [11401], "jenkins.debian.net": [4273], "webtimeclock.com": [18164], "forsvarsforbundet.se": [6053], "www.catersnews.com": [2902], "e2.emediate.se": [5204], "*.babelzilla.org": [1591], "ut.ee": [17069], "google.usc.edu": [17278], "wiki.cites.uiuc.edu": [16956], "mighty-hoernsche.de": [2592], "cloud0.lchost.co.uk": [9066], "checkbox.com": [19054], "psr.iq.harvard.edu": [7219], "archos.com": [1171], "alumni.indiana.edu": [8065], "my.xilo.net": [18517], "fonticons.com": [5991], "blogs.law.harvard.edu": [7219], "www.cironline.org": [2614], "www.deliciousgreencoffee.com": [4329], "research.wustl.edu": [17993], "chat.hostican.com": [7524], "www.sraoss.co.jp": [14164], "www.whitehathouston.com": [18254], "a.mtstatic.com": [10683], "yieldselect.com": [18679], "developer.service.hmrc.gov.uk": [7084], "www.etegro.com": [4977], "www.artsedge.kennedy-center.org": [19335], "www.citialumninetwork.com": [3169], "glkb.ch": [19333], "my.greenparty.org.uk": [6925], "www.brashear.me": [2289], "save-notes.com": [14310], "purina.com": [13245], "www.encyclopediadramatica.se": [5241], "moreinterop.com": [10588], "misadventureswithandi.com": [10450, 10451], "geriatrics.stanford.edu": [15383], "www.cmw-leipzig.de": [7114], "talkgadget.google.com": [6834], "daserste.ndr.de": [11119], "*.4sqi.net": [163], "invasion.com": [8310], "analytics.systemli.org": [15765], "cdn.traceregister.com": [16628], "syncthing.net": [15732], "www.shareholder.com": [14677], "atlantic.net": [1318], "esp2.ap.equinix.com": [5334], "www.c-cex.com": [2493], "commlink.org": [3472], "quantummansite.com": [13342], "*.mbl.is": [10110], "3.f.ix.de": [8404], "forgeapi.puppetlabs.com": [13232], "alum.kuleuven.be": [8816], "www.osl.iu.edu": [8064], "www.hilversum.nl": [11132], "etretouchy.com": [5394], "youtube.co.nz": [18709], "mysort.symantec.com": [15715], "forums.boounce.com": [2219], "*.texastribune.org": [16156], "www.chriscoyne.com": [3104], "moviii.liu.se": [9084], "snowdrift.coop": [15043], "sp.jd.com": [8423], "sueddeutsche.kaufdown.de": [8821], "flokinet.is": [5938], "zhiyuanzhe.taobao.com": [15952], "www.premiertaxfree.com": [13027], "gtl.osu.edu": [11760], "ce.jhu.edu": [16296], "kubuntu.org": [9029], "lucidsolutions.co.nz": [9644], "www.usenix.org": [17040], "otm.wustl.edu": [17993], "dev.laptop.org": [11631], "wp-tao.com": [17919], "www.landscapephotographymagazine.com": [9142], "ttu.ee": [15936], "*.r01.ru": [13391], "*.akb.ch": [19333], "*.boe.es": [1536], "*.kinghost.com.br": [8898], "www.disconnect.me": [4543], "www-01.ibm.com": [7675], "boots.com": [2213], "s.click.taobao.com": [15952], "kangurum.com.tr": [8781], "shop.1and1.com": [51], "bookit.nl": [7452], "geekgirlsguide.com": [6497], "*.webtrekk.net": [18170], "www.synopsys.co.jp": [15739], "www.oneadmin.cz": [11641], "pheedo.com": [12618], "auth.hackaday.io": [7138], "www.businessclick.com": [19028], "ubuntu-tr.net": [17101], "mh21.de": [10330], "spdx.org": [14155], "*.gotvape.com": [6854], "jp.chaturbate.com": [3035], "www.stripefees.com": [15527], "www.luu.org.uk": [9109], "pshop.piratenpartei.de": [12721], "honest.com": [7481], "www.alltubedownload.net": [862], "rss.leboncoin.fr": [19351], "www.gnupg.org": [6762], "ulule.com": [17139], "ecatering.irctc.co.in": [7812], "www.urel.feec.vutbr.cz": [17522], "www.imensa.de": [7988], "community-uat.akamai.com": [761], "netnow.co": [11201, 11202], "dynatech.de": [4832], "su.nottingham.ac.uk": [11528], "static.librarything.com": [9305], "www.nic.tel": [16100], "www.oralb.com": [13121], "publish.uic.edu": [17231], "sts.edp.pt": [4896], "canlialem.com": [2807], "webwewant.org": [18097], "selfservice.slough.gov.uk": [14971], "cachegames.mirrorbingo.com": [10445], "*.radboudnet.nl": [13510], "misc.360buyimg.com": [112], "*.valueclickmedia.com": [17541], "*.bestcovery.com": [1809], "www.symfony.com": [15717], "experian.experiandirect.com": [5506], "neas.nhs.uk": [10913], "www.itbiz.cz": [8387], "*.momsmedia.com": [17540], "domainreport.domaintools.com": [4660], "www.grupoavante.org": [6988], "www.prowebsector.gr": [13114], "polymer-project.org": [12893], "kir.hu": [11777], "static3.businessinsider.com": [2454], "www.thestaradvisers.com": [16312], "news.slac.stanford.edu": [15383], "qa.shirazlug.ir": [14708], "www.haobtc.com": [7197], "discuss.citra-emu.org": [19063], "www.limeservice.com": [9355], "v2cigs.com": [17461], "pixel.condenastdigital.com": [3554], "absolute.com": [430], "surfcanyon.com": [15648], "onesearch4-2.newsvine.com": [11348], "barracuda.com": [1680], "webforms.lidl.com": [9327], "intrepidmuseum.org": [8299], "deeppoliticsforum.com": [4300], "ums.adtechus.com": [639], "www.adfox.ru": [524], "elibrary.westminster.gov.uk": [18220], "entitlement.auth.adobe.com": [615], "www.newsregistry.com": [11323], "plus.jcloud.com": [8541], "static4.dditscdn.com": [4239], "ostratest.ro.vutbr.cz": [17522], "www.fteproxy.org": [6240], "www.twosigma.com": [16898], "twrp.me": [15891], "wiki.fitbit.com": [5887], "www.jcea.es": [8540], "account.norton.com": [11505], "spa.wustl.edu": [17993], "play0ad.com": [12792], "www.speed-dreams.org": [15251], "eweka.nl": [5470], "valeforms.valeofglamorgan.gov.uk": [17532], "17track.net": [39], "shop.piratenpartei.de": [12721], "www.student-affairs.buffalo.edu": [17297], "vibrantmedia.com": [17665], "www.hospitalityleaders.com": [7500], "vidaysalud.com": [17678], "aka-cdn.adtech.de": [638], "wine-staging.com": [18350], "pitz.desy.de": [4399], "aaronparecki.com": [396], "img01.rl0.ru": [13914], "www.demandware.com": [4349], "lsu.edu": [9623], "*.home.pl": [7465], "www.rmit.edu.au": [13437], "www.gpul.org": [6375], "corbinfisher.com": [3660], "login.xilo.net": [18517], "www.torrentz-proxy.com": [16589], "i.yastatic.net": [18662], "portfolio.it.ox.ac.uk": [17271], "www.s2media.be": [14063], "norfolk.overdrive.com": [12160], "bedrockformsemea.msn.com": [9796], "help.yammer.com": [18647], "www.brighton.com": [2331], "cdn4.gbot.me": [6808], "top.sogou.com": [19606], "images3.variety.com": [17565], "lnyx.cnaf.infn.it": [7766], "trove.com": [16762], "data.awp.is": [1292], "pmg-prd.stanford.edu": [15383], "bergenopzoom.nl": [11132], "connecticon.org": [3582], "t-engine.org": [15768], "zhiyou.smzdm.com": [15017], "static.ndr.de": [11119], "*.dancingastronaut.com": [4136], "my.sitetagger.co.uk": [14873], "support.on.aol.com": [321], "thirdage.com": [16368], "www.hrsmart.com": [7096], "tauday.com": [15977], "saml.peopleclick.com": [12551], "jobs.westminster.gov.uk": [18220], "socialshows.net": [15061], "csirt.cz": [2672], "partners.moodle.com": [10572], "*.derpicdn.net": [4381], "nadim.computer": [11007], "jumpeyecomponents.com": [8674], "techreport.com": [16050], "www.mcafeemobilesecurity.com": [10115], "kinox.me": [19337], "community-cache.freescale.com": [6183], "cgi.umd.edu": [17263], "gtms02.alicdn.com": [805], "kcl.ac.uk": [8899], "tokobitcoin.com": [16534], "admin.aerohosting.cz": [689], "hotspotshield.com": [7560], "kei.pl": [8841], "www.loadimpact.com": [9529], "math.aalto.fi": [390], "support.niteflirt.com": [11424], "opensc-project.org": [11968], "www.infobaselistexpress.com": [509], "www.velofinder.ch": [19732], "direct.yandex.com": [18651], "tbspace.de": [19662], "pingupod.de": [12689], "mapdis.ndc.nasa.gov": [10869], "ace-tag.advertising.com": [662], "www.geni.net": [6318], "www.piwik.org": [12733], "en.rsf.org": [13784], "seal.alphassl.com": [867], "gradschool.umd.edu": [17263], "www.mpornpass.com": [10670], "sp.f-secure.com": [5541], "www.startnext.com": [15412], "*.upforitnetworks.com": [785], "www.cpib.ac.uk": [2645], "projects.ic.nhs.uk": [10913], "www.citizensinformation.ie": [3176], "nuuvem.com": [11586], "www.erdgeist.org": [5339], "secure.sipgate.de": [14857], "southeastdorset.greenparty.org.uk": [6925], "milchweb.frieslandcampina.com": [2783], "developer.realvnc.com": [13627], "www.eduscho.at": [15985], "www.jdsupra.com": [8428], "signup.netflix.com": [11229], "milonic.com": [10400], "wiley.com": [18309], "osep.stanford.edu": [15383], "tme.engineering.osu.edu": [11760], "www.theskoop.ca": [14917], "crm.vdv.de": [17478], "sqlconverter.com": [14162], "astra.io": [1301], "ederdrom.de": [5076], "docs.kde.org": [8718], "lastlog.de": [9164], "fromorbit.com": [6222], "www.hitslink.com": [7426], "*.zimbra.com": [18868], "www.phaser.io": [12616], "vremya.yandex.com.ua": [18650], "blog.fusiondigital.io": [6278], "tradeleaks.com": [16636], "man.com": [9935], "domaincamp.de": [4651], "www.nzz.at": [19450], "palgrave.com": [12343], "www.bbbonline.org": [1494], "blog.hipmunk.com": [7415], "rhn.redhat.com": [13675], "blogs.manageengine.com": [9940], "login.engineyard.com": [5265], "www.fiddler2.com": [19177], "www.thecalmzone.net": [16254], "*.atlanticmetro.net": [1317], "*.emv3.com": [5194], "www.123systems.net": [27], "trac.hohndel.org": [3503], "ondemand.manageengine.com": [9940], "www.abacus.com": [400], "www.aussieperthtours.com.au": [1376], "ah.pricegrabber.com": [13052], "webofknowledge.com": [18107], "www.netnanny.com": [11214], "revoltgames.com": [13849], "microster.pl": [10347], "www.rescue.org": [19546], "rule.tmall.com": [19684], "*.tampabay.com": [15937], "sandbox.buttercoin.com": [2463], "open2.baidu.com": [1619], "image.exct.net": [5482], "www.bitcoinmagazine.com": [1981], "server.adform.net": [585], "*.mark.reevoo.com": [13715], "www.domaindiscount24.net": [19123], "www.anon-ib.la": [1036], "wrb.uopnet.plymouth.ac.uk": [12833], "lady.taobao.com": [15952], "*.umbc.edu": [16981], "cdn.engine.phn.doublepimp.com": [4717], "*.smartphoneexperts.com": [15000], "*.caseking.de": [2876], "q1.qlogo.cn": [13304], "www.ga-innocenceproject.org": [6547], "lichfielddc.objective.co.uk": [19454], "passport.yandex.kz": [18652], "www.it.jhu.edu": [16296], "www.orxrdr.com": [12114], "globalmarinenet.com": [6715], "www.tcodevelopment.com": [15988], "pbesignup.euw.leagueoflegends.com": [9206], "irc.pirati.cz": [12722], "help.creator.zoho.com": [18884], "www.matalan.co.uk": [10062], "www.switchie.ch": [15704], "investor.tremorvideo.com": [16711], "*.campaigner.com": [2779], "webzilla.com": [18099], "valtiolle.fi": [17535], "*.tent.is": [16116], "bcge.ch": [19333], "pensionschemes.hmrc.gov.uk": [7084], "www.pasteur.fr": [12446], "christianbook.com": [3112], "s-media-cache-ak0.pinimg.com": [12691], "www.a.switchadhub.com": [15701], "*.schallert.com": [14347], "ipv4.tunnelbroker.net": [16834], "*.worldmate.com": [18449], "giuliosnaas.just-eat.ie": [19328], "www.3dstats.com": [123], "news.drweb.com": [4783], "bobafamily.com": [2171], "store.unity3d.com": [17220], "login.deepin.org": [4302], "www.fortiguard.com": [6055], "www.e-food.gr": [4850], "gexpro.com": [6622], "www.zooniverse.org": [18905], "porn-w.org": [12925], "login.sina.com.cn": [14842], "www.webrtc-experiment.com": [18081], "optics.osu.edu": [11760], "dosowisko.net": [4688], "www.dash.org": [4162], "www.ucollege.wustl.edu": [17993], "snl.com": [14143], "host.co.id": [7504], "development.freebiblesoftware.com": [6139], "ce1.com": [3776], "digits.com": [4509], "www.parkingcrew.com": [12405], "uni-passau.de": [17331], "labs.webfoundation.org": [18102], "members.maximintegrated.com": [10096], "*.ovh.net": [12172], "findagrave.com": [5842], "asd.leeds.ac.uk": [17318], "quotes.beaglestreet.com": [1728], "lotusoriginals.com": [9616], "minavardkontakter.se": [10805], "synaesthesie.net": [15723], "usenetserver.com": [17428], "debs.dict.cc": [4455], "www.soundkit.io": [15157], "strasweb.fr": [15507], "sentry.services.disqus.com": [4570], "chat1a.livechatinc.com": [9480], "recyclenow.com": [13654], "eset.at": [4953], "bodhi.fedoraproject.org": [5726], "trustedcomputinggroup.org": [16791], "romab.se": [13963], "tinyteenpass.com": [16490], "www.triumph-adler.de": [16752], "lumesse.com": [9663], "git.debian.org": [4275], "sydney2013.drupal.org": [4780], "www.untappd.com": [17371], "code.stripe.com": [15525], "isurveys.researchresults.com": [13799], "*.circleci.com": [3155], "websitealive6.com": [18149], "mobilephones.comparethemarket.com": [3511], "www.icq.com": [7690], "*.bis.gov.uk": [16965], "sso-prod0.cisco.com": [3162], "mlpchan.net": [9758], "subscription.washingtonpost.com": [17990], "tpg.com": [15850], "artsandsciences.osu.edu": [11760], "www.mufin.com": [10688], "www.swisscex.com": [14207], "meta.superuser.com": [15359], "*.resource.org": [13207], "ecampus.no": [4882], "lab.alipay.com": [817], "www.spider.io": [15268], "96boards.org": [209], "www.umassulearn.net": [17265], "www.mosis.com": [9778], "clicks.beap.ad.yieldmanager.net": [13881], "www.europe-miniatures.com": [5422], "az.turbobytes.net": [16838], "iplayerhelp.external.bbc.co.uk": [1499], "parking.dover.gov.uk": [4718], "*.factorydirectcabins.com": [5627], "theartstack.com": [16244], "library.jhu.edu": [16296], "ilearning.oracle.com": [12082], "ssl.ticketportal.sk": [16423], "js.arcgis.com": [1155], "chicagofed.org": [3071], "file1.answcdn.com": [1059], "*.shop.forgefields.com": [6035], "chiefsblog.stanford.edu": [15383], "blogspot.co.uk": [2107], "io.tdc.no": [15797], "jobs.jhu.edu": [16296], "sourced.fm": [15178], "kaizencrossfit.com": [4020], "jp.redhat.com": [13675], "files.pfsense.org": [12607], "www.ruelala.com": [14025], "unhosted.org": [17164], "www.earthvpn.com": [19141], "*.sigfig.com": [14775], "www.bitfinex.com": [1995], "dinahosting.pt": [4520], "checktls.com": [3053], "ua-hosting.com.ua": [17081], "www.belarus.indymedia.org": [8085], "*.expohomes.com": [5627], "press.pr.co": [13007], "mystockoptions.com": [10787], "www.nacdl.org": [10866], "www.wordsapi.com": [18435], "support.trakt.tv": [19692], "lovelens.li": [9630], "confex.com": [3567], "necessaryandproportionate.org": [11128], "blau.de": [2060], "www.ricochet.im": [13878], "vlissingen.nl": [11132], "learning.calderdale.gov.uk": [2735], "comsigntrust.com": [3455], "www.heute-show.de": [19800], "coursedirectoryproviderportal.org.uk": [19082], "static.geogebra.org": [6537], "gsnmagazine.com": [6870], "s.taobao.com": [15952], "jobsp.swisscom.com": [15698], "wordstat.yandex.com.tr": [18649], "fiber7.ch": [5770], "www.waytools.com": [18010], "www.hertz247.co.uk": [7371], "beacon.securestudies.com": [14495], "ucalgary.ca": [16943], "blog.blackphone.ch": [2048], "openwireless.org": [12029], "quizaction.de": [13372], "bart.gov": [1681], "www.steadfast.net": [15446], "betclair.com": [7732], "www.google.co.*": [6838, 6840, 6845, 6848], "*.tweaktown.com": [16865], "stopglobalwarming.org": [15485], "sample-threes.readme.io": [13608], "clickssl.com": [3251], "us-ads.openx.net": [11993], "prospectmagazine.co.uk": [13162], "duodecim.fi": [4804], "xenobite.eu": [18564], "et.symantec.com": [15715], "services.hinckley-bosworth.gov.uk": [7412], "researchtoreality.cancer.gov": [2805], "ryazan.rt.ru": [13469], "www.alastairs-place.net": [779], "consultmahan.com": [9864], "rage4.com": [19531], "www.plastc.com": [12781], "rt.marinsoftware.com": [9997], "clara.io": [3210], "www.bluepoint.com.ph": [2154], "triph5.m.taobao.com": [15952], "base.liveperson.com": [9494], "ib.primabanka.sk": [13057], "*.gomoxie.com": [10645], "asnbank.nl": [352], "ssh.ocf.berkeley.edu": [17240], "connect.arkos.io": [1196], "ebanking.danskebank.dk": [4145], "nwk-buyiphone.apple.com": [1120], "flashtalking.com": [5907], "ams.iu.edu": [8064], "java-apps.org": [19461, 19462], "download.ib.nab.com.au": [10865], "www.intrepidusgroup.com": [8300], "www.aircrack-ng.org": [750], "media2.congstar-media.de": [3576], "wordpress.org": [18429], "www.linguee.com": [9373], "ibario.com": [7678], "www.heg.com": [7502], "www.lizdenys.com": [9520], "google.bitnami.com": [2011], "stats.junge-piraten.de": [8679], "epidem.mysql.cesky-hosting.cz": [19051], "www.mol.gov.sa": [14306], "scapsync.com": [14087], "www.movie2k.cm": [10635], "havant.gov.uk": [19237], "badgeville.com": [1606], "sv-se.facebook.se": [5623], "ihgagent.com": [8230], "www.conetrix.com": [3337], "billing.stablehost.com": [15357], "www.parse.com": [12412], "amadeu-antonio-stiftung.de": [905], "www.cahiersdedroit.fd.ulaval.ca": [17229], "mahoneshomedecor.com": [9866], "utbm.fr": [19724], "www.ori.dhhs.gov": [19117], "scamfraudalert.com": [14330], "www.dustin.eu": [4809], "ssl.hiconversion.com": [7386], "rothaconference.leeds.ac.uk": [17318], "us.hsbc.com": [7098], "*.maemo-apps.org": [19462], "www.garfield.com": [6459], "*.mua.hrdepartment.com": [7096], "visual-paradigm.com": [17782], "www.neomailbox.net": [11154], "i.fantasyfootball.telegraph.co.uk": [16082], "codemilltech.com": [3356], "dropbox.uu.se": [17074], "oberbayern.piratenpartei-bayern.de": [12719], "me.washington.edu": [17290], "www.jsis.washington.edu": [17291], "dongtai.taobao.com": [15952], "s3.camelcamelcamel.com": [2774], "assets.newrepublic.com": [11309], "shop.sysmocom.de": [15756], "poole.objective.co.uk": [19454], "lists.bugzilla.org": [2410], "www.myoptimizerplus.com": [10813], "jquerymobile.com": [8452], "www.wincent.com": [18335], "www.openai.com": [11916], "bookings.ibizarocks.com": [7901], "cdn.rawnet.com": [13582], "cloudfront.mediamatters.org": [10158], "support.uidaho.edu": [18428], "*.eyeviewads.com": [5534], "*.bpt.bz": [2366], "cascade.conted.ox.ac.uk": [17271], "halowaypoint.com": [7176], "snsbank.nl": [14144], "wallabag.org": [17960], "sharemenot.cs.washington.edu": [17291], "shop.flixbus.fr": [5931], "tech.plug.dj": [12822], "gdata.pt": [6293], "kulturkalender.faz.net": [5553], "manage.audienceadnetwork.com": [1351], "*.tricolumbia.org": [16732], "*.clickbank.net": [3243], "www.crazyegg.com": [3764], "itex.com": [8390], "anonymousads.com": [1051], "superevr.com": [15628], "www.pogoda.yandex.com.ua": [18650], "www.beej.us": [18988], "code.getfoxyproxy.org": [6591], "www.solidlogic.com": [15120], "maps-api-ssl.google.com": [6841], "www.skycure.com": [19599], "fox-toolkit.net": [5589], "e.admaster.com.cn": [530], "keymile.com": [8870], "www.forrester.com": [6049], "private-c.gmocloud.com": [6343], "competitions.cr.yp.to": [3748], "itactic.com": [7861], "sodahead.com": [15083], "getfirebug.com": [6573], "www.openwireless.org": [12029], "jsfiddle.net": [19327], "tracking.hubspot.com": [7594], "*.fxguide.com": [6289], "www.franchiseradioshack.com": [13515], "www.switch.ch": [15699], "www.mattermark.com": [19387], "www.digcoin.com": [4467], "*.adverts.ie": [663], "tylercipriani.com": [16905], "partypoker.com": [12420], "cis-india.org": [2615], "c-base.org": [2492], "affiliatetracking.com": [702], "mededresearch.stanford.edu": [15383], "slice.mit.edu": [9749], "partnerweb.westminster.gov.uk": [18220], "pushbullet.com": [13251], "www.torchlightgame.com": [16573], "gateway.answerscloud.com": [1061], "www.sourceware.org": [15184], "corporate.digitalriver.com": [4483], "helpdesk.pcc-cic.org.uk": [12219], "hellolife.net": [7297], "static.filmon.com": [5812], "www.digitalnewsagency.com": [4494], "www.clusterhq.com": [3323], "wustlkey.wustl.edu": [17993], "syoparekisteri.fi": [15744], "allianz.com": [18950], "www.dnscurve.net": [4062], "o2extra.cz": [16076], "secure.webdam.com": [18059], "ipsec.pl": [7806], "www.sitetrustnetwork.com": [14874], "login.run.pivotal.io": [12730], "seal.digicert.com": [4473], "finnchamber.com": [14993], "www.casinoestrella.com": [2883], "securusglobal.com": [14537], "angel.co": [1014], "admin.goeshow.com": [6799], "www.pcicomplianceguide.org": [12225], "ssl4.ovh.net": [12173], "developers.onedrive.com": [11831], "autodiscover.illinois.edu": [17258], "zerodayinitiative.com": [18845], "metashop.at": [13026], "mammut.ch": [9933], "fallback.wix.com": [18383], "m.fotki.yandex.ua": [18656], "studentmoney.uillinois.edu": [16960], "www.1und1.de": [68], "www.defsounds.com": [4315], "mailfire.newsinc.com": [11335], "gwinnettcounty.com": [7034], "www.registryrocket.com": [13737], "openhost.co.nz": [12036], "f2.thejournal.ie": [16224], "developer.windowsphone.com": [18346], "www.fribid.se": [6209], "lizdenys.com": [9520], "module.zdf.de": [19800], "scanningpens.co.uk": [14337], "payments.pirateparty.org.au": [12713], "*.glkb.ch": [19333], "clkmon.com": [3272], "ip.bitcointalk.org": [1959], "grass.osgeo.org": [11669], "*.bbc.com": [1498], "reachandrich.antevenio.com": [1063], "www.veredelungslexikon.htwk-leipzig.de": [7114], "store.mzstatic.com": [1119], "crowdfunding.piwik.org": [12733], "www.landalcampings.be": [18490], "archaicbinary.net": [1160], "easypost.com": [5029], "lusternia.com": [19374], "wiki.ncsa.illinois.edu": [17258], "*.utsouthwestern.edu": [17283], "*.library.wisc.edu": [17349], "email.1and1.com": [51], "openoffice.org": [1084], "www.arguggi.co.uk": [1187], "www2.pbebank.com": [13203], "www.blink-182.com": [2075], "cmis.hertsdirect.org": [7335], "www.hertzequipmentrentals.com": [7372], "committees.williams.edu": [18316], "remote.jpress.co.uk": [8613], "u.openx.net": [11993], "*.salford.ac.uk": [17337], "blog.xtgem.com": [18596], "nl.pornworms.com": [12928], "saudi.gov.sa": [14306], "nyx.cz": [11599], "www.webjet.com.au": [18124], "*.ifriends.net": [7728], "ceg.osu.edu": [11760], "wikis.resonant.org": [13809], "future.moodle.com": [10572], "img.cache.vevo.com": [17481], "www.beaconinitiative.com": [1726], "*.exaccess.ru": [5475], "www.fitl.htwk-leipzig.de": [7114], "*.kaiserslautern.de": [8770], "gcxcare.globalcloudxchange.com": [6724], "test.ssltrust.us": [15349], "www.moonpig.com": [10578], "www.domain.fi": [4650], "*.newscred.com": [11327], "aperture.displaymarketplace.com": [13225], "www.academy.kaspersky.com": [8806], "*.shockmedia.nl": [14711], "wiki.se.inf.ethz.ch": [4974], "sp.sony-europe.com": [15141], "equitylending.nab.com.au": [10865], "static.cineclick.com.br": [3145], "blog.pardot.com": [12399], "passwordregistration.dkit.ie": [4040], "ikiwiki.iki.fi": [7961], "gems.tm.com.my": [16083], "business.danskebank.dk": [4145], "photoshelter.com": [12642], "www.myuofmhealth.org": [17378], "entagroup.com": [5289], "zwiebelfreunde.de": [18926], "isic.vutbr.cz": [17522], "www.aa.uw.edu": [17077], "ftlgame.com": [5608], "cars.unm.edu": [16992], "amnesty.fi": [961], "up0.net": [17379], "lock.cmpxchg8b.com": [2628], "irctc.co.in": [7812], "www.plug.dj": [12822], "webtables.cryptohaze.com": [3873], "cache.btrll.com": [2322], "link.samsung.com": [14264], "sec-i0.1und1.de": [68], "www.red-gate.com": [13657], "online.net": [11870], "directory.wokingham.gov.uk": [19762], "www.solar1.net": [15108], "ijobs-rs.madgexjb.com": [9840], "cdn.amazonblogs.com": [920], "cdn.katescomment.com": [8815], "www.smfta.com": [14137], "liftware.com": [9340], "luxomo.com": [9676], "disruptionlab.org": [4571], "hochschule-trier.de": [7442], "lendeavor.com": [9245], "register.com": [13732], "karty-kredytowe.money.pl": [10546, 10547], "kildarestreet.com": [8886], "m.pinterest.com": [12699], "es.news.walmart.com": [17964], "fernuni-hagen.de": [5755], "lanayachocolate.com": [9120], "www.shopware.de": [14732], "maillift.com": [9877], "ivpn.net": [7869], "bugs.otr.im": [11681], "relayrides.com": [13752], "www.trendin.com": [16718], "engage.intel.com": [8209], "www.emcraft.com": [5201], "artists.jamendo.com": [8502], "gist-assets.github.com": [6680], "nascis.hscic.gov.uk": [19264], "net-backup.com": [11173], "www.caddyserver.com": [2712], "wacken.com": [17942], "cryptanalysis.eu": [3846], "pageloc.com": [18126], "talktalk-labs.com": [15927], "uppsite.com": [17395], "iso.500px.com": [166], "blog.mediacru.sh": [10170], "fb-assets.com": [6201], "ifolor.ch": [19282], "rpc.blockchain.info": [2090], "nataliebennett.greenparty.org.uk": [6925], "*.shop.royalmail.com": [14000], "de-hu.dict.cc": [4455], "webkite.com": [18069], "law.resource.org": [13207], "ymlp.com": [18722], "www.sbforge.org": [14081], "www.bulletin.net": [2417], "posportal.com": [12281], "on.lung.ca": [11888], "30boxes.com": [99], "oyoony.at": [19475], "www.usenetjunction.com": [17426], "homelessveterans.co.uk": [7479], "www.sysdream.com": [15753], "greatnet.de": [6909], "www.amung.us": [18267], "*.new.livejasmincdn.com": [9489], "users.wholefoodsmarket.com": [18264], "www.kkh-allianz.de": [8732], "www.bawsi.org": [1493], "www.livechatinc.com": [9480], "*.bt.no": [1784], "filebyid.com": [5797], "webgta.ethz.ch": [4975], "s.2.taobao.com": [15952], "www.hardwarebug.org": [7205], "durham.police.uk": [4808], "biteasy.com": [1992], "accellion.com": [441], "raltay.rt.ru": [13469], "*.softcreatr.de": [15091], "inyt.com": [7772], "staples.com": [15388], "howto.gov": [7568], "vodafone.co.nz": [17812], "benefits.stanford.edu": [15383], "*.campuspack.eu": [2785], "support.silentcircle.com": [14786], "internap.com": [8254], "jobs.cisco.com": [3162], "www.ifa.ch": [7722], "feedbacklogin.xbox.com": [18550], "www.2kgames.com": [87], "infosecisland.com": [8127], "*.list-manage2.com": [9447], "www.rentler.com": [13776], "www.it-pol.dk": [8392], "freestateproject.org": [6152], "*.simplekb.com": [14827], "whistleblower.tv2.dk": [15881], "portal.geni.net": [6318], "securepcissl.com": [14508], "globe.chromeexperiments.com": [3117], "images.indianexpress.com": [8062], "music.cbc.ca": [2796], "superstart.se": [15635], "infocritique.fmed.ulaval.ca": [17229], "citrixready.citrix.com": [3178], "www.nab.org": [10864], "t.rasp.yandex.com.tr": [18649], "manage.gigenet.com": [6656], "admin.starproductreviews.com": [15397], "kilometrikisa.fi": [8888], "www.swiss-prime-site.ch": [19647], "malaysia.allianz.com": [18950], "esper.net": [5361], "ciifad.cornell.edu": [3676], "www.eplayer.performgroup.com": [12239], "member.doteasy.com": [4701], "royalnavy.mod.uk": [13995], "www.surfeasy.com": [15649], "szshop.sueddeutsche.de": [15577], "minecraft.net": [10415], "blogs.mcafee.com": [10114], "www.siliconrepublic.com": [14790], "www.sis.nlm.nih.gov": [11052], "www.die.net": [4458], "www.mbnet.fi": [9723], "jpldataeval.jpl.nasa.gov": [10869], "biz.world.waze.com": [18014], "s.evbuc.com": [5437], "origin.gigya.com": [6659], "dnaserum.com": [4057], "savannah.gnu.org": [6357], "www.thejns.org": [8643], "hr.od.nih.gov": [11052], "catalog.federalsoup.com": [5719], "a.abcnews.com": [240, 241], "content.gallup.com": [6409], "*.tsmc.com": [15862], "www.btcbuy.info": [1552], "login.geant.org": [6314], "secserv.adtech.de": [638], "*.eis.de": [5129], "corp.wamba.com": [17968], "store.drdobbs.com": [16021], "passport.i.ua": [7654], "infoq.com": [8101], "www.fundfill.com": [6257], "ptt.br": [12303], "*.slhost.com": [15090], "*.nomadesk.com": [11463], "webapps.nottingham.ac.uk": [11528], "woot.com": [18424], "www.vpn-service.us": [17499], "corpmail.otenet.gr": [12132], "www.codepicnic.com": [3351], "suggests.rasp.yandex.by": [18648], "encrypt.today": [5234], "*.mtgsy.net": [10371], "callink.berkeley.edu": [17240], "healthreach.nlm.nih.gov": [11052], "hertz247.nl": [7355], "guru3d.com": [7023], "*.netmng.com": [8153], "mobilecoe.dhs.gov": [4035], "medals.bizrate.com": [2033], "features.cpanel.net": [2653], "c.pcs.baidu.com": [1619], "*.thankyou4caring.org": [16174], "www.ja.wiki.hidekisaito.com": [7393], "bibliometrics.ki.se": [8725], "www.yummynames.com": [16816], "www.freemovement.org.uk": [6144], "groklearning-cdn.com": [6964], "openweb.or.kr": [12028], "download.sugarlabs.org": [15581], "cce.osu.edu": [11760], "mmoculture.com": [9764], "usabags.taobao.com": [15952], "immerda.ch": [19287], "imstore.bet365affiliates.com": [18992], "conferences.uillinois.edu": [16960], "www.omakaseweb.com": [11787], "sanger.ac.uk": [18193], "help.codesion.com": [3379], "www.national.com": [16152], "static.maemo.org": [9844], "*.fckme.org": [12266], "es.pforce.nvidia.com": [10985], "bufferbloat.net": [2403], "surge.omniti.com": [11795], "rossier.usc.edu": [17278], "security.freebsd.org": [6120], "movienewsletters.net": [10642], "pads.subsignal.org": [15566], "shopify.com": [14725], "anon-ib.la": [1036], "*.nyantec.com": [19447], "u.s.kqed.org": [8747], "blogs.princeton.edu": [13064], "games.bet365.com": [1811], "open.nlnetlabs.nl": [10941], "static.tofour.net": [16520], "tcpalmextras.com": [15793], "schoeller.de": [11170], "new.livestream.com": [9514], "subscribe.hollywoodreporter.com": [7454], "openhpi.de": [11940], "yoda.ygnition.com": [18677], "*.hackpad.com": [7158], "rugstudio.com": [14026], "decs.dict.cc": [4455], "*.ypbot.net": [18622], "*.uni-rostock.de": [17336], "ticket.iop.org": [8195], "www.kub.nl": [16445], "www.dea.com": [4262], "metro.yandex.kz": [18652], "www.leloop.org": [9191], "socialrank.com": [15058], "telegram.org": [16080], "www.charterbusiness.com": [3022], "passets-cdn.pinterest.com": [12699], "*.socialtwist.com": [15062], "kharma.unity3d.com": [17220], "metaboli.co.uk": [10302], "seclab.stanford.edu": [15383], "www.domreg.lt": [4676], "divshot.com": [4584], "hardware.redhat.com": [13675], "www.youtube.com.pe": [18709], "tags.crwdcntrl.net": [9613], "sv.gnu.org": [6357], "clickerheroes.com": [3259], "www.youtube.com.pt": [18709], "*.skroutz.gr": [14921], "wandisco.com": [17893], "essweb.wustl.edu": [17993], "hexonet.net": [7381], "infosida.nih.gov": [11052], "sipexternal.upc.ie": [17001], "tracks.www.zazzle.com": [18804], "car.tmall.com": [19684], "conscallhome.com": [3588], "upc.ie": [17001], "aswirlgirl.com": [1307], "asset-7headlines.pixfs.net": [12741], "vbi.vt.edu": [17740], "mexbt.com": [10132], "coinomat.com": [3407], "www.codeclub.org.uk": [3354], "burnley.gov.uk": [2443], "eyetechds.com": [5533], "*.iproduction.com": [7805], "bhw.de": [1517], "blog.nodejs.org": [11454], "nickyhager.info": [11387], "*.ssldomain.com": [15348], "www.boundarydevices.com": [19014], "www.zap2it.com": [18788], "static.freebase.com": [6157], "paginazero.com.br": [12334], "plan.gs": [15465], "blockstream.com": [2099], "sociales.unizar.es": [17356], "m3.ttxm.co.uk": [15868], "lccdataexchange.lincolnshire.gov.uk": [9364], "indy.im": [8079], "www.agariomods.com": [721], "metin2.co.nz": [10316], "www.joyclub.de": [8650], "monitoring-internal.stanford.edu": [15383], "assets.fitbit.com": [5887], "*.anl.gov": [1184], "laeditorialupr.com": [17334], "www.shadowproof.com": [14655], "studienwuerdig.htwk-leipzig.de": [7114], "www.schokokeks.org": [19570], "*.switch.co": [15700], "js.stripe.com": [15525], "sketchthemes.com": [14905], "1.f.ix.de": [8404], "dw.cbsi.com": [2527], "xperiastudio.com": [18583], "secure.pressreader.com": [13035], "cgit.freedesktop.org": [6126], "mtpc.govspace.gov.au": [6867], "*.necessaryandproportionate.org": [11128], "mediasite.osu.edu": [11760], "wickr.com": [18281], "youtube.com.pt": [18709], "seedboxes.cc": [14550], "demo.piwik.org": [12733], "moodle.dkit.ie": [4040], "all-about-security.de": [843], "rosehosting.com": [13968], "via.intercom.io": [8244], "www.tog.ie": [15844], "youtube.com.pe": [18709], "www.myob.com": [9815], "argonit.cz": [1183], "youtube.com.ph": [18709], "patchwork.freedesktop.org": [6126], "instantarticles.fb.com": [5698], "apkmirror.com": [1095], "switchie.ch": [15704], "marketplace.eclipse.org": [5049], "www.africangreyparrotcentre.co.uk": [710], "www.ecustomeropinions.com": [4888], "getchef.com": [6586], "fashion.taobao.com": [15952], "view.truste.com": [15856], "www.treyperry.com": [16719], "theory.org": [16346], "cdn.bgr.com": [1515], "allshareplay.com": [838], "northnorfolk.org": [11497], "www.newsgator.com": [11329], "*.navteq.com": [10873], "static.gosuslugi.ru": [6852], "inside.intel.com": [8209], "myfolio.kent.ac.uk": [17317], "www.thinkfaster.co": [16360], "sdc-cordis.mainstrat.com": [9897], "coreos.com": [3665], "my.leeds.gov.uk": [19353], "automotive.linuxfoundation.org": [9412], "iblocklist.com": [7902], "secure-endpoints.com": [14479], "pc-sicherheit.web.de": [18050], "static6.twilio.com": [16876], "jobs.ncsu.edu": [11492], "proxysolutions.net": [13183], "ulysses.calvin.edu": [2759], "www.driverseddirect.com": [4765], "cdsmedia.cern.ch": [2575], "apollo4.ds.leeds.ac.uk": [17318], "toorcon.net": [16557], "www.engr.ncsu.edu": [11492], "cdm.cursecdn.com": [3934], "www.givekidstheworldstore.org": [6686], "www.gearsourceeurope.com": [6485], "apply.submit.kennedy-center.org": [19335], "timex.com": [16467], "pjtv.com": [12262], "*.kryo.se": [9017], "*.evoice.co.uk": [4987], "exxile.net": [4995], "www.alipay.com": [817], "support.datamotion.com": [19102], "pbase.com": [12213], "*.lumension.com": [9662], "cyberpatrol.com": [3962], "www.renovationexperts.com": [13768], "collaborate.plymouth.ac.uk": [12833], "storywrite.com": [15502], "cccure.com": [2540], "thumbs.deviantclip.com": [3759], "*.theinternetco.net": [16295], "markets.ft.com": [5826], "westlandutrecht.nl": [18217], "vimeo.freifunk.net": [6192], "migros-service.migros.ch": [19399], "rpi.edu": [13771], "insight.eastriding.gov.uk": [5015], "docs.xamarin.com": [18540], "cex.io": [2587], "mail.sedo.com": [14542], "webmail.plymouth.gov.uk": [19500], "4shared.com": [154], "community.nightdev.com": [11394], "cao.carnegiescience.edu": [2857], "*.tonytan.io": [16548], "loc.hertz.com": [7372], "stats.juliareda.eu": [8671], "okta6.ideone.com": [7943], "www.fastshoppingcart.com": [13359], "listarchives.libreoffice.org": [9311], "ipre.educ.cam.ac.uk": [17243], "docs.webarch.net": [18108], "kitapyurdu.com": [8921], "www.aquanw.nhs.uk": [10913], "mathematics.stanford.edu": [15384], "www.divessi.com": [4582], "openskillz.com": [19461, 19462], "president.williams.edu": [18316], "guang.taobao.com": [15952], "app.realtime.email": [13625], "qb50.eu": [13279], "*.vevo.com": [17481], "*.gannett.com": [6453], "www.pearsoncomputing.net": [12507], "informe.org": [8116], "register.cnchost.com": [3330], "chromeexperiments.com": [3117], "apps.icard.uillinois.edu": [16960], "www2.eduid.cz": [5097], "et03.xhcdn.com": [18514], "status.kuleuven.be": [8816], "frca.pcisecuritystandards.org": [12224], "www.webstaurantstore.com": [18157], "inwx.net": [8231], "login.sourcefabric.org": [15180], "www.schlossbergstore.com": [14354], "download.drweb.com": [4783], "replicaperfection.com": [13778], "events.piratenpartei-bayern.de": [12719], "ranallolawoffice.com": [11386], "*.khronos.org": [8874], "*.pcs.com": [12230], "ptpimg.me": [13192], "getpocketbook.com": [12838], "gfsfrance.com": [6326], "directory.web.cern.ch": [2575], "wholesale.vodafone.co.nz": [17812], "optagelse.dk": [12065], "developer.clockworkmod.com": [3273], "www.humanrightsdefensecenter.org": [7610], "scandinavianphoto.no": [14334], "website.webgo.de": [18064], "education.gov.au": [4368], "*.mailstation.de": [9891], "my.carousell.com": [2860], "www.teapartypatriots.org": [15992], "anonscm.debian.org": [4275], "enhu.dict.cc": [4455], "webmail.easymail.ca": [5026], "kbc.com": [8709], "www.savethelink.org": [14313], "affiliate-b.com": [701], "checkmarx.com": [3051], "sharethrough.com": [14680], "my.videobloom.com": [17684], "www.samsung.com.cn": [14265], "www.gramsflow.com": [6887], "lh5.google.*": [6837], "vtecdirect.com": [17517], "sphhp.buffalo.edu": [17297], "www.tonyarcieri.com": [16549], "www.jabbi.pl": [8480], "bilddb.arch.ethz.ch": [4975], "go.ncsu.edu": [11492], "gumstix.com": [7021], "v-identity.com": [17460], "www.netflix.com": [11229], "ssl-trust.com": [14175], "buysellads.com": [2468], "www.anders.com": [997], "ffs.ch": [15693], "www.dubfire.net": [4790], "www.godaddy.com": [6773], "www.dailyfantasyradio.com": [4119], "tmg-trackr.media.mit.edu": [9747], "migrationsverket.tdconline.se": [15799], "delivery.pizzahut.co.uk": [12750], "ticketing.southbankcentre.co.uk": [15192], "st2.gismeteo.ru": [6669], "fsu.edu": [5603], "vkontakte.ru": [17490, 17494], "a.stripecdn.com": [15526], "www.archsd.gov.hk": [7075], "www.bia2.com": [1838], "etherpad.inka.f4.htw-berlin.de": [7112], "web-code.educ.cam.ac.uk": [17243], "www.redbox.com": [13681], "www.wetter.at": [11728], "www.whatsapp.com": [18234], "www.d.switchadhub.com": [15701], "www.kde-files.org": [19461], "aok.de": [317], "apps4.lbhf.gov.uk": [9064], "*.secure.griffith.edu.au": [6955], "www.mbank.com.pl": [9722], "negotiatingsalary.com": [11136], "jenkins-ci.org": [8551], "simplyhired.com": [14830], "www.bund.de": [17647], "getdigital.eu": [6571], "shop.abc.net.au": [239], "*.iisp.org": [7743], "controlpanel.blogs.news.com.au": [11338], "www.hartvoorinternetvrijheid.nl": [7215], "registracia.azet.sk": [1481], "earcu.com": [4869], "m.rasp.yandex.by": [18648], "fybse.se": [5613], "video.oms.eu": [11637], "www.passmark.com": [12422, 12423], "ithaca.edu": [8391], "coverity.com": [3734], "www.inphi.com": [8157], "*.desura.com": [4398], "www.bouncycastle.org": [2247], "scientific.net": [14385], "adacore.com": [548], "soak.meldium.com": [10239], "www.dental.uw.edu": [17077], "nationale-it-security-monitor.nl": [11089], "craftbanter.com": [3752], "developer.servicenow.com": [14622], "buildbot.openmpt.org": [11951], "www.hertz.ca": [7341], "cdn-origin.snv.vcmedia.com": [17540], "info.hubspot.com": [7594], "1.163.com": [34], "resourcecenter.odee.osu.edu": [11760], "www.ticketingnetworkeastmidlands.co.uk": [16420], "cdn2.spiegel.de": [15272], "www.hertz.ch": [7367], "www.hertz.cn": [7342], "api.accounts.firefox.com": [5859], "rdio.com": [13595], "content.eventim.com": [5443], "aus.wwte8.com": [17937], "fra1.dl.elementary.io": [5158], "cossacklabs.com": [3692], "livesupport.xmission.com": [18530], "u-bordeaux.fr": [16918], "mariadb.com": [9987], "asset.7headlines.net": [189], "environment.data.gov.uk": [19100], "www.redmondmag.com": [13698], "javvin.com": [8532], "annsummers.com": [1027], "de-da.dict.cc": [4455], "omnovia.com": [11786], "om.eamobile.com": [5151], "www.bitcoinstats.com": [1971], "www.discoveryplace.org": [4556], "artemis-ia.eu": [1228], "www.overclockers.co.uk": [12158], "www.cvedetails.com": [3947], "joinus.today": [8617], "phabricator.whonix.org": [18266], "www.octopuce.fr": [11716], "img1.userscontent.net": [17438], "iheart.com": [7739], "pim.bof.nl": [1537], "adf.ly": [523], "secure.medleyads.com": [10200], "ares.epic.hpi.uni-potsdam.de": [17171], "www.cs.ut.ee": [17069], "*.forexct.com": [6034], "*.wired.com": [18363], "allianz-fuer-cybersicherheit.de": [852], "st.mycdn.me": [10824], "everymomentcounts.cancerresearchuk.org": [19035], "openafs.org": [11915], "kompany.com": [8969], "help-all.nike.com": [11401], "servercow.de": [14612], "events.linuxfoundation.org": [9412], "www.clarityray.com": [3214], "www.leicestershire.gov.uk": [9239], "www.stayclassy.org": [15440], "data3.whicdn.com": [17905], "www.hertsdirect.org": [7335], "www.thinkup.com": [16363], "*.3news.co.nz": [129], "support.tagged.com": [15909], "beachhuts.bournemouth.gov.uk": [2251], "allegro.pl": [849], "www.doodle.com": [4681], "www.techslinger.com": [16051], "claudiodangelis.com": [3220], "zdfsport.de": [19800], "i.fantasycricket.telegraph.co.uk": [16082], "apianalytics.com": [331], "ads.vidstore.com": [17677], "img.reflex.cz": [13719], "wms-eu.amazon-adsystem.com": [909], "www.nerdster.org": [19430], "electrum.org": [5155], "www.interspire.com": [1853], "searchdatacenter.de": [16018], "biostars.org": [1908], "streaming.media.ccc.de": [2538], "microblog.dunkelangst.org": [4802], "www.xperiencedays.com": [18584], "s.tfcdn.com": [16335], "help.webtrends.com": [18171], "pbar.us.dell.com": [4335], "www.demisto.com": [4352], "*.360cities.net": [107], "uni.hi.is": [7066], "static4.uk.businessinsider.com": [2454], "grande.xlhost.com": [18518], "zen.co.uk": [18815], "lhc-commissioning.web.cern.ch": [2575], "medschooldiversity.wustl.edu": [17993], "static.wixstatic.com": [18384], "ebankingmasicuro.ch": [4870], "apps.1688.com": [36], "nawaat.org": [11115], "www.literaryreview.co.uk": [19368], "www.opendns.com": [11932], "dancesafe.org": [4135], "www.charter.com": [3020], "l.betrad.com": [5458], "img03.rl0.ru": [13914], "www.pagefair.com": [12329], "commotionwireless.net": [3496], "login.lisam.liu.se": [9084], "bisnow.com": [1918], "images.sourceforge.net": [15174], "api.qrsolutions.com": [13287], "pdadb.net": [12499], "www.johnlewis.ie": [8610], "www.torrentbutler.eu": [16578], "copperhead.co": [3653], "*.gatewaysb.com": [6468], "vgr.tdconline.se": [15799], "sysys.axosoft.com": [1477], "codecoop.org": [3365], "de-centralize.com": [4241], "smartertools.com": [14996], "rum-static.pingdom.net": [12686], "cdn.torrents-time.com": [19689], "infosecindustry.com": [8102], "forum.choiceofgames.com": [3097], "www.fr.ch": [19648], "www.libanswers.com": [9286], "www.bitcointalk.org": [1959], "www.spump.com": [7372], "www.eaglerockreservation.org": [5006], "dexinzhai.tmall.com": [19684], "library.launchkit.io": [9167], "weatherimages.tv2.dk": [15881], "above.com": [429], "plusone.google.com": [6834], "www.pfennigparade.de": [12609], "www.virustracker.net": [17759], "*.gamona.de": [6450], "ecohenshc.usc.edu": [17278], "bang.taobao.com": [15952], "x.kinja-static.com": [8905], "nats.girlsoutwest.com": [6667], "buryatiya.rt.ru": [13469], "brand.jquery.org": [8450], "dtnav.nal.usda.gov": [17209], "globalclimatemarch.org": [6737], "forage.redbull.ru": [13666], "www.asia.citibank.com": [3171], "*.cyberstreetwise.com": [3975], "oip.usda.gov": [17209], "syxin.com": [15766], "kouio.com": [8997], "envoymediagroup.com": [5311], "temp.my.nih.gov": [11052], "www.gigaone.pl": [6653], "www.osdc.com.au": [11665], "www.lds.org": [16219], "www.maldon.gov.uk": [19378], "malware-tracker.com": [9928], "*.ezimg.it": [5004], "licensing.kirklees.gov.uk": [8916], "iview.hscic.gov.uk": [19264], "www.zetetic.net": [18851], "ca.infousa.com": [8110], "jobs.cityoflondon.gov.uk": [3190], "www.tokobitcoin.com": [16534], "www.easy-share.com": [3806], "*.netfronts.com": [11191], "ccedk.com": [2546], "*.prositehosting.co.uk": [5685], "piwik.ip-projects.de": [7785], "abdussamad.com": [406], "idfpr.com": [7965], "www.zaption.com": [18793], "*.fetlife.com": [5761], "www.marketwatch.com": [10021], "cryptohaze.com": [3873], "www.nationaleatingdisorders.org": [11095], "ui.adsupply.com": [544], "blog.flameeyes.eu": [5901], "alainwolf.ch": [773], "plugins.status.net": [15437], "program-think.blogspot.com.*": [2113], "ratanagiri-163c.kxcdn.com": [13572], "www.doublethedonation.com": [4714], "catalog.utdallas.edu": [17071], "mycloud.rackspace.com": [13506], "www.cryptome.org": [3879], "firebase.com": [5855], "blog.webtrends.com": [18171], "philanthropy.cam.ac.uk": [17243], "search.usa.gov": [17029], "tools.grassroots.org": [6894], "*.ige.ch": [15696], "techservices.illinois.edu": [17258], "online.westernunion.com": [18216], "mail.freecycle.org": [6162], "m.ond.tue.nl": [15874], "imbo.vgtv.no": [17484], "itechnician.co.uk": [7863], "*.hp.com": [7378], "stats.uptobox.com": [19718], "rximage.nlm.nih.gov": [11052], "*.helsinki.fi": [17255], "inxpo.com": [8334], "js.nyt.com": [10997], "*.sequanux.org": [14592], "js10.ringrevenue.com": [13892], "www.ireeco.com": [8355], "events.kde.org": [8718], "charnwood.firmstep.com": [19182], "www.tdc-wholesale.com": [15796], "account.clever.com": [3238], "www.fullcontact.com": [6250], "community.godaddy.com": [6773], "nvidia.com": [10985], "moodledev.uowplatform.edu.au": [17350], "vpn.zg.ch": [19648], "wikifur.com": [18289], "cdn12.iconfinder.com": [7921], "bugs.ruby-lang.org": [14018], "newsday.com": [11341], "*.besmith.com": [1588], "webxakep.net": [18098], "www.cryptosms.org": [3863], "zlavy.odpadnes.sk": [18879], "www.ensijaturvakotienliitto.fi": [19160], "svn.openezx.com": [11935], "hertz247.com": [7372], "cp8.win-rd.jp": [18325], "www.kudelskisecurity.com": [9031], "udmurtiya.rt.ru": [13469], "emarketing2.1and1.com": [51], "survey.sans.org": [14072], "dashboard.qubitproducts.com": [13345], "www.pulpix.co": [13223], "www.scmp.com": [15187], "*.investingchannel.com": [8319], "www.kat.cr": [8879], "www.zdnet.com.au": [18757], "www.debian-art.org": [19461], "www.movistar.es": [19775], "sort.symantec.com": [15715], "portal.unwire.dk": [17376], "admin.cj2.nl": [2618], "store.calchamer.com": [2725], "fileformat.info": [5790], "webhosting.web.com": [18048], "prisonlegalnews.org": [13076], "www.nationstates.net": [11044], "zwmail.de": [18927], "www.theinformation.com": [16293], "wiki.openitp.org": [11947], "www.ticketnet.fr": [16422], "eo.libreoffice.org": [9311], "computing.artsci.wustl.edu": [17993], "team-cymru.org": [16000], "www.ezrss.it": [5004], "*.history.com": [7418], "supplier.carters.com": [2868], "forgifs.com": [6037], "www.urhome.umd.edu": [17263], "courses.erc.edu": [4949], "packages.debian.org": [4275], "donate.fsf.org": [5600], "form.t-mobilebankowe.pl": [19654], "my.domoticz.com": [4675], "www.psc.edu": [12298], "wumsweb.wusm.wustl.edu": [17993], "www.smefund.tid.gov.hk": [7077], "jvn.jp": [8465], "www.dsply.com": [17573], "conference.gajim.org": [6406], "boots.ie": [2214], "www.tickerassist.co.uk": [10356], "www.youtube.sk": [18709], "www.idearcmedia.com": [15614], "neelwafurat.com": [11134], "freepress.intel.com": [8209], "competitionsbywyndham.com.au": [18490], "login.proxy.uchicago.edu": [17246], "www.verkaufen.ch": [19733], "cj.com": [3481], "youneedabudget.com": [18707], "www.illustre.ch": [19283], "prg.gamesradar.com": [6280], "wpp.com": [17923], "hagrid.libart.calpoly.edu": [2747], "totaltravel.co.uk": [18638], "static.copiny.com": [3652], "enderunix.org": [5246], "www.softether.org": [15092], "*.uni-wuerzburg.de": [17173], "xservers.ro": [19781], "www.baldershage.se": [1627], "facebook-studio.com": [5622], "list.qq.com": [13285], "www.paetec.com": [12205], "fedid.ext.ti.com": [16152], "*.frugalware-art.org": [19462], "www.faaaccess.ed.gov": [4889], "gamesports.net": [6423], "cdnstatic.reuters.tv": [13836], "oktd.kent.gov.uk": [8851], "ideastorm.com": [7928], "static-eu1.vimention.com": [17716], "assets.virginmedia.com": [17737], "meetey.com": [10213], "masterxchange.com": [10055], "aq.qq.com": [13285], "www.geany.org": [6483], "um.tdc.no": [15797], "samsung.com": [14265], "www.cfif.org": [2949], "alexhaydock.co.uk": [799], "perel.eu": [17596], "www.annsummers.com": [1027], "wiki.kuleuven.be": [8816], "getmein.com": [9481], "shaw.ca": [14687], "www.ciclops.org": [2602], "devdocs.io": [4417], "status.hipchat.com": [7414], "www.jondos.org": [8623], "licensing.rbwm.gov.uk": [19539], "blackboard.jhu.edu": [16296], "fastcompany.com": [5670], "vk.com": [17490, 17493], "dnssec-validator.cz": [4065], "www.admissionsonline.norfolk.gov.uk": [19436], "tracking.reiner-sct.com": [13747], "deti.mail.ru": [9874], "www.br.de": [1539], "www.presscoders.com": [13030], "tros.nl": [16761], "frieslandcampina.com": [2782], "www.computec-academy.de": [3532], "g10code.com": [6294], "www.lib.vt.edu": [17740], "validator.w3.org": [17888], "kk.dk": [8730], "uec-images.ubuntu.com": [17102], "metrics.stellaservice.com": [14190], "autodiscover.riverbed.com": [13907], "awm.gov.au": [1405], "foxydeal.de": [6088, 6089], "account.aylesburyvaledc.gov.uk": [18976], "www.etarget.cz": [5374], "bst3.gismeteo.ru": [6669], "slts.osu.edu": [11760], "www.kontalk.org": [8980], "www.edfil.es": [5077], "www.valvesoftware.com": [17548], "mndigital.com": [10160], "www.conformal.com": [3572], "www.testequipmentdepot.com": [16146], "webassetsf.scea.com": [14089], "goodzer.com": [6832], "parship.nzz.ch": [19450], "tool.linguee.com": [9373], "www.merchdirect.com": [10276], "blog.opendns.com": [11932], "digi.hu": [4470], "www.handsomecode.com": [7191], "support.wattpad.com": [18006], "www.internews.org": [8290], "b9.yahoo.co.jp": [18640], "police.wustl.edu": [17993], "www.onlinenotebook.hu": [9155], "www.piraten-ufr.de": [12717], "adfs.ntu.edu.tw": [10971], "grants.nih.gov": [11052], "kirklees.firmstep.com": [19183], "p1.qhimg.com": [13302], "cdnstatic.outspark.com": [12154], "www.bahnshop.de": [1617], "www.careers.fi": [2845], "*.pandawhale.com": [12356], "webspectator.com": [18089], "*.flaska.net": [5908], "www.intego.com": [8201], "www.fad.fss.ulaval.ca": [17229], "lenta.ru": [19356], "vtb.com": [17514], "fyl.unizar.es": [17356], "www.swiftype.com": [15689], "diskusjon.no": [4563], "stanford25blog.stanford.edu": [15383], "economist.com": [5060], "www.hvgkonyvek.hu": [7118], "search.hhs.gov": [7062], "inschrijven.nl": [8161], "online-convert.com": [11867], "sitola.fi.muni.cz": [14887], "rapidbuyr.cachefly.net": [13555], "webhost4life.com": [18066], "fusion.libsyn.com": [9321], "m01.eu": [9694], "suntech.cz": [19639], "*.putlocker.com": [13257], "lists.exim.org": [5494], "prozeny.cz": [13115], "www.nicehash.com": [11382], "static.independent.co.uk": [8053], "consult.southend.gov.uk": [15193], "www.theamericanscholar.org": [16242], "yeah.net": [18665], "images5.bovpg.net": [2252], "*.preyproject.com": [13044], "library.bury.gov.uk": [19027], "secure.hi5.com": [19247], "www.directbox.info": [4529], "forum.www.radartv.nl": [13509], "anon.inf.tu-dresden.de": [15871], "*.pimg.net": [12675], "shop.infinet.com.au": [8093], "gamersfirst.com": [6435], "ja-jp.facebook.com": [5620], "1wt.eu": [48], "images.tvnz.co.nz": [15886], "safe.txmblr.com": [16903], "grcmc.org": [6889], "southwark.greenparty.org.uk": [6925], "www-en.htw-berlin.de": [7112], "community.compuwareapm.com": [3543], "secure.tesco.com": [16135], "www.topfox.co.uk": [16561], "childcarejobs.hertsdirect.org": [7335], "i0.c.dk": [2498], "d-i.debian.org": [4275], "www.nhnnext.org": [10910], "fileshare.symantec.com": [15715], "tracking-point.com": [16632], "www.superuser.com": [15359], "order.freezone.co.uk": [6187], "*.kayako.com": [8825], "yu.edu": [18675], "www.artchristina.com": [1221], "abis-studien.se": [243], "satsymposium.org": [14076], "awesome.leeds.ac.uk": [17318], "static.torrentday.com": [16579], "mygoldencharter.co.uk": [6813], "www.bagnet.org": [1615], "blog.x-cart.com": [18494], "cdn.clinicalkey.com": [3267], "freebieber.org": [5783], "reports.eyereturn.com": [5531], "leicestershirecc.firmstep.com": [19183], "thepirategoogle.mrcarch.com": [16228], "spinup.unizar.es": [17356], "trendweight.com": [16712], "see.leeds.ac.uk": [17318], "*.sabb.com": [7098], "gmoregistry.com": [6346], "engine.phn.doublepimp.com": [4717], "webmail.argewebhosting.nl": [1182], "www.mansfield.osu.edu": [11760], "*.dot5hosting.com": [4690], "3news.co.nz": [129], "chat.jd.com": [8423], "beastnode.com": [1736], "www.anonymouse.me": [1052], "static.memrise.com": [10254], "gawker.com": [6476], "shopyourway.com": [14723], "blogs.cpanel.net": [2653], "portuguese.101domain.com": [11, 12], "*.websterwood.com": [18158], "www.hynek.me": [7641], "www.meltwaternews.com": [10243], "thebaffler.com": [16247], "fstools.macosforge.org": [9820], "unrealengine.com": [17365], "*.bbb.org": [1822], "hoof.little.my": [9475], "*.tmp.com": [15830], "stellaservice.com": [14190], "ccodearchive.net": [3528], "abo.nzz.ch": [19450], "panel.nazwa.pl": [11117], "ox-d.sbnation.com": [14079], "ico.ee": [15936], "sidearmsports.com": [14763], "www.citra-emu.org": [19063], "c.tgknt.com": [16165], "social.umeahackerspace.se": [17143], "mdcus.com": [9730], "debian-art.org": [19461, 19462], "my.thephone.coop": [16347], "stats.gamingonlinux.com": [6447], "adyadvantage.com": [673, 674], "labintel.dsi.cnrs.fr": [6195], "afip.gob.ar": [18944], "ttip-stoppen.at": [15867], "js.bizographics.com": [2032], "goc.io": [6364], "www.chinafile.com": [19059], "business.pinterest.com": [12699], "git.tasktools.org": [15971], "shopstyle.com.au": [14720], "reverseip.domaintools.com": [4660], "www.standeyo.com": [15374], "i2.sndcdn.com": [15032], "www.trustedcomputinggroup.org": [16791], "kh.norton.com": [11505], "surfline.com": [15651], "*.crimecommission.gov.au": [1386], "campina.be": [2782], "www.newyorkneedsyou.org": [11312], "simyo.de": [14837], "autodiscover.webtrends.com": [18171], "secure.business.bt.com": [1551], "www.webropolsurveys.com": [18141], "e-library.eastsussex.gov.uk": [19142], "www.eda.admin.ch": [19648], "nbct01.baidupcs.com": [1620], "secure1.store.apple.com": [1120], "binary.getdigital.de": [6611], "www2a.cdc.gov": [19046], "www.okura.nl": [11778], "www.apc.org": [1294], "cache.net-a-porter.com": [11171], "m1.baidu.com": [1619], "register.shaw.ca": [14687], "fonts.condenast.com": [3552], "www.malwaredomainlist.com": [9930], "*.ironsearch.com": [7817], "portal.vitelity.net": [17795], "vpn.ac": [19742], "partner.aktiencheck.de": [769], "kungfunation.com": [9037], "www.vehbidz.com": [17590], "morningstaronline.co.uk": [10594], "coverfire.com": [3732], "www.hofer.at": [299], "www.demandbase.com": [4342], "*.powershellgallery.com": [12993], "somethings.msi.com": [9792], "questacon.edu.au": [13353], "www.barclaycard.co.uk": [1664], "sequanux.org": [14592], "accessnow.org": [447], "www.systemoverlord.com": [15761], "www.ultimatebootcd.com": [17129], "*.trauer.de": [16689], "0gwc-kbhkort.kk.dk": [8730], "www.celartem.com": [2929], "auth.brightidea.com": [2330], "www.thedailygreen.com": [7271], "www.lide.cz": [9326], "symaccount.symantec.com": [15715], "www.igb.illinois.edu": [17258], "boulder.swri.edu": [15197], "api.url2png.com": [17411], "shop.skeptic.com": [14902], "www.med.stanford.edu": [15383], "piratenpartei.de": [12721], "dannymekic.com": [4144], "www.technologyreview.in": [19666], "cirt.net": [2613], "forum.silkroad.ws": [14794], "www.behr.com": [1758], "ymcastlouis.org": [18618], "jobs.voxmedia.com": [17852], "ais.channel4.com": [3003], "www.youtube.fr": [18709], "www.uillinois.edu": [16960], "*.parsely.com": [12414], "internetbrands.com": [8280], "youtube.hk": [18709], "origin.ih.constantcontact.com": [3592], "afsa.gov.au": [1392], "albertathome.org": [5128], "wiki.opendnssec.org": [10941], "mail.verticalmedia.com": [17639], "podtrac.com": [19502], "opentechfund.com": [11983], "zeedpic69.com": [18810], "wiki.smartos.org": [14990], "swinburne.edu.au": [15691], "cloudflareapp1.info": [13811], "www.cloudron.io": [3313], "https.openbsd.org": [11919], "beta.herefordshire.gov.uk": [7327], "newcg.enfield.gov.uk": [5258], "rms.sexy": [13915], "tvguide.quickline.com": [19530], "www.merlinux.eu": [10285], "aans.org": [928], "exchange.1and1.co.uk": [53], "www.downforeveryone.com": [4724], "democracy.islington.gov.uk": [8370], "doteasy.com": [4701], "www.amazontrust.com": [919], "erhvervkundeservice.tdc.dk": [15796], "www.gotlandring.com": [6855], "usarmy.*.llnwd.net": [17028], "www.cimbclicks.co.id": [2605], "cdn.cloudfiles.mosso.com": [10604], "mail.ntmx.de": [11555], "ninite.com": [11416], "ads.exoclick.com": [5499], "studyinsweden.se": [19635], "wildwestdomains.com": [18300], "www.f-droid.org": [5540], "www.lovehoney.co.uk": [9626], "bcpd.x7y24z365.com": [2129], "kernel.org": [8857], "cs.umd.edu": [17263], "leastauthority.com": [9216], "3d.xkcd.com": [19786], "adcenter.microsoft.com": [10363], "nanog.org": [11490], "*.webmail.pair.com": [12336], "dockapps.windowmaker.org": [18339], "advent.com": [654], "host2.bg": [7506], "*.planet3dnow.de": [12761], "www.zyado.com": [18928], "*.unmultimedia.org": [16996], "www.blogs.fau.de": [17311], "*.carpromods.com": [2828], "www.zeromq.org": [18846], "nikon-lenswear.com": [11403], "www.html5video.org": [7106], "cachebrowser.info": [2707], "*.pof.com": [12813], "marketingoops.com": [10014], "probmods.org": [13118], "adulttoys4u.com.au": [646], "www.youtube.es": [18709], "www.bitcoin.de": [1966], "bigbrotherwatch.org.uk": [1857], "stat.ameba.jp": [926], "gd2.alicdn.com": [805], "shop.mind.org.uk": [10407], "www.zhihu.com": [18856], "sptag1.com": [15323], "cislblog.stanford.edu": [15383], "media.boingboing.net": [2181], "sharideangelo.com": [14681, 14682], "journalxtra.com": [8644], "blog.coinbase.com": [3402], "engine.streamate.doublepimp.com": [4717], "www.forestsangha.org": [6029], "www.politicalcompass.org": [12871], "isoc.org.br": [7828], "*.ehow.com": [19137], "www.init7.net": [8143], "forum.pjrc.com": [12261], "cat.yandex.by": [18648], "peacecenter.org": [12503], "www.geldermalsen.nl": [11132], "france.debian.net": [4273], "thedaywefightback.org": [16267], "kampyle.com": [8778], "s1.plays.tv": [12809], "plati.ru": [12786], "campaign.odw.sony-europe.com": [15141], "housingssp.leeds.gov.uk": [19353], "blog.lizardwrangler.com": [9521], "*.baremetal.com": [1666], "api.flickr.com": [5918], "channelink.xo.com": [18532], "www.biderundtanner.ch": [18997], "www.schaffner.org": [14346], "kirjoitusalusta.fi": [8915], "c.fastcompany.net": [5681], "ipo.gov.uk": [16974], "login.fronter.com": [19200], "www.comodogroup.com": [3504], "www.japantimes.co.jp": [16196], "link.vice.com": [17667], "s2.rationalcdn.com": [19536], "www.f1.htw-berlin.de": [7112], "spark-summit.org": [15218], "librarylicense.org": [9307], "publicaccess.westoxon.gov.uk": [18221], "shopware.de": [14732], "*.discovermagazine.com": [4546], "dev.snip2code.com": [15036], "kongress-soziale-arbeit.htwk-leipzig.de": [7114], "ui.ad.yieldmanager.com": [13881], "unpac.org": [17145], "rt.nuug.no": [10980], "www.adkontekst.pl": [600], "b0.jrnl.ie": [19326], "delawaretoday.com": [4324], "www.xelerance.com": [18554], "www.shipto.com": [14707], "blog.vandyke.com": [17549], "feedback2.yandex.com.tr": [18649], "secure.itweb.co.za": [7854], "blog.join.me": [9548], "mycp.co.nz": [12036], "gudly.axosoft.com": [1477], "dokuwiki.org": [4638], "finanse.money.pl": [10547], "*.freshbooks.com": [6201], "inwx.ch": [8231], "batmanarkhamknight.com": [1690], "posta.yandex.com.tr": [18649], "www.edpessoa.internet.edp.pt": [4896], "www.southern-electric.co.uk": [15194], "ssl.bing.com": [1895], "www.warnerartists.com": [17981], "imeem.com": [7987], "secure.vend-o.com": [17606], "vpn.carnegiescience.edu": [2857], "point.gmo.jp": [6345], "st.backstage.here.com": [7326], "www.rcpmag.com": [13406], "movelia.es": [10632], "*.infinitysystems.com": [7208], "www.umbel.com": [17142], "oppictures.com": [17218], "secure.cnchost.com": [3330], "*.vcomstatic.com": [17715], "www.goo.im": [6825], "www.informationweek.com": [8124], "ipv4.tunnelbroker.com": [16834], "images.politicopro.com": [12874], "connect.mit.edu": [9749], "gihyo.jp": [6660], "sec-i0.web.de": [18050], "kununu.com": [9038], "www.in-the-sky.org": [8027], "sitetagger.co.uk": [14873], "media.charter.com": [3020], "sebastian-siebert.de": [14455], "*.hidemyass.com": [7396], "en.calameo.com": [2731], "clavardage.videotron.com": [17700], "www.admissions.com": [609], "*.picsity.com": [12667], "manage.zeringo.com": [18836], "spirit.com": [15278], "*.likes.com": [9350], "www-int.dexmedia.com": [4434], "subsignal.org": [15566], "www.reflex.cz": [13719], "www.ip2location.com": [7786], "js.hubspotqa.com": [7595], "d.fastcompany.net": [5681], "life.alipay.com": [817], "youtube.com.ng": [18709], "blog.codeship.com": [3378], "*.hostmonster.com": [7537], "cdn.heapanalytics.com": [7270], "firsttechfed.com": [5871], "www.giblod.no": [6634], "humansubjects.stanford.edu": [15383], "boutique.gemalto.com": [6514], "umano.me": [17141], "community.gotomeeting.com": [6787], "secure.services.defra.gov.uk": [4314], "cast.google.com": [6834], "badgekit.org": [1605], "palmetto.com": [12347], "secure.ca.ikea.com": [7959], "www.pop.com.br": [12279], "files.scene.org": [8269], "etarget.cz": [5374], "fom.bnl.gov": [19009], "m.siemens.com": [14769], "odc.officeapps.live.com": [9483], "andreafabrizi.it": [1000], "www.vine.co": [17722], "mediabistro.com": [10169], "great-yarmouth.gov.uk": [19227], "staysafeonline.org": [15441], "enfermeriahuesca.unizar.es": [17356], "fw.tmall.com": [19684], "www.rediris.net": [13661], "www.pentestgeek.com": [12542], "www.surfermag.com": [15650], "thezaplab.com": [18790], "bitmarket.pl": [1936], "www.websitealive7.com": [18149], "me-cdn.effectivemeasure.net": [5109], "momentedergeschichte.zdf.de": [19800], "kubieziel.de": [9028], "birds-are-nice.me": [1912], "www.bitbay.net": [1924], "envato.com": [5306], "static.webyog.com": [18175], "salsacommons.org": [14254], "www.wierden.nl": [11132], "ssl.atbar.org": [365], "static.adsafeprotected.com": [538], "resourcecentre.techweekeurope.co.uk": [11198], "faq.hosteurope.de": [7516], "www.juniper.net": [8682], "ceonex.com": [2961], "jitbit.com": [8580], "img.rasset.ie": [13571], "*.wwte7.com": [17937], "iwantmyname.com": [19313], "www.mochtu.de": [10510], "image.guim.co.uk": [7014], "www.clipth.net": [17583], "positivessl.com": [12946], "naresponsa.catracalivre.com.br": [2908], "wwp.icq.com": [7690], "forum.backbox.org": [1597], "www.commission-junction.com": [3481], "srclib.org": [15339], "id.google.com.*": [6837], "connect.charterbusiness.com": [3022], "hipertextual.com": [19251], "www.360totalsecurity.com": [109], "batmanarkhamorigins.com": [1691], "ricardoshops.ch": [13867], "proxy.sh": [13181], "tinkersoup.de": [16475], "london2012.com": [9573], "blockchain.info": [2090], "fedgeno.com": [5725], "umonitor.com": [16982], "wwwapps.ups.com": [17007], "blogs.lshtm.ac.uk": [9576], "www.jiveon.com": [8586], "*.caradvice.com.au": [2827], "search.maximintegrated.com": [10096], "img1.sencha.com": [14576], "www.devilteam.pl": [4424], "whyy.org": [17910], "sims.canon-europe.com": [2809], "post.cz": [14648], "img.inkfrog.com": [8146], "www.maps.yandex.kz": [18652], "www.whatbrowser.org": [18228], "res.heraldm.com": [7321], "linuxfr.org": [9410], "blendle.com": [2068], "www.sumologic.com": [15592], "www51.jimdo.com": [8572], "*.withgoogle.com": [18380], "post.ch": [12949], "thesims3.com": [5151], "*.admized.com": [611], "www.blogtalkradio.com": [2103], "piwik-hal.ccsd.cnrs.fr": [6195], "democracy.ipswich.gov.uk": [8351], "vr.se": [17511], "greensmoke.co.uk": [6928], "*.myinmon.com": [10809], "developer.spotify.com": [15296], "cuaes.cornell.edu": [3676], "*.chalmers.se": [2987], "www.torbay.gov.uk": [16569], "*.kobobooks.it": [8949], "*.glerups.dk": [6708], "websitegrowers.com": [18150], "wiki.cam.ac.uk": [17243], "mx.redhat.com": [13675], "dev.onedrive.com": [11831], "www.uwb.edu": [17078], "verbling.com": [17615], "webhostinggeeks.com": [18103], "cdn.steamcommunity.com": [15451], "shareit.com": [14669], "*.mikaela.info": [10382], "ws-na.assoc-amazon.com": [1288], "witness.guardian.co.uk": [7000], "www.scheduleonce.com": [14349], "www.hyperoptic.com": [7647], "senderscore.org": [14580], "*.nokiasiemensnetworks.com": [11462], "unbubble.eu": [19714], "img1.dditscdn.com": [4239], "www.easypdfonline.com": [5028], "www.arretsurimages.net": [18965], "community.okta.com": [11776], "s0.percona.com": [12557], "pogoda.yandex.by": [18648], "vmcdn.de": [17805], "italerts.stanford.edu": [15383], "nayaklab.stanford.edu": [15384], "ehospice.com": [5118], "api.wienenergie.at": [18284], "www.mobile.learnerview.ofsted.gov.uk": [19456], "www.ois.uic.edu": [17231], "mindtouch.onelogin.com": [11835], "network.cern.ch": [2575], "audioboom.com": [18970], "pixlr.com": [12743], "revisium.com": [13847], "signup.nj.com": [10931], "accesspass.wifi.xfinity.com": [19784], "www.smuxi.com": [15016], "www.channeladvisor.com": [2999], "emblem.cancer.gov": [2805], "apps.clicks.lv": [3262], "passport.sohu.com": [15103], "secure.tagged.com": [15909], "www.fdf.org.uk": [5562], "cimb.com": [2606], "chongzhi.jd.com": [8422], "purl.stanford.edu": [15383], "*.flite.com": [5928], "cdn.oseems.com": [12120], "mouseflow.nl": [10624], "oz-affiliate.com": [12194], "noisebridge.net": [11458], "www.11main.com": [20], "storenvy.com": [15495], "gimpfoo.de": [6334], "reports.ofsted.gov.uk": [19456], "websitesettings.com": [18152], "www.mobile.de": [19403], "windows.mouselike.org": [16076], "resources.mybb.com": [10823], "www.digitalmars.com": [4493], "movim.eu": [10644], "jadu.net": [8492], "www.bter.com": [2382], "mathjax.org": [19386], "apps2.staffordshire.gov.uk": [15370], "loanscience.com": [9531], "www.webento.com": [18115], "searx.me": [14449], "www.winhistory-forum.net": [18356], "forums.deathmask.net": [4266], "correo.terra.com.mx": [16126], "www.businessdirect.bt.com": [1549], "us-u.openx.net": [11993], "telmasters.com": [16066], "www.obfs.uillinois.edu": [16960], "www.gymglish.*": [7037, 7038], "www.directa.cat": [4528], "lists.eurobsdcon.org": [5404], "fablabtruck.nl": [5615], "mp3skull.wtf": [9779], "ictrecht.nl": [7692], "www.canaldigital.se": [2803], "ileansigma.engineering.osu.edu": [11760], "givingcomfort.org": [6690], "www.mp3-juices.com": [10668], "www.fluxbb.org": [5957], "wof-piwik2.desy.de": [4399], "www.scans.io": [14338], "logs.inf2011.dosowisko.net": [4688], "helpdocsonline.com": [7308], "gifbook.io": [6638], "zeus.jesus.cam.ac.uk": [2763], "commandfive.com": [3474], "*.crowdscience.com": [3819], "sues.stanford.edu": [15383], "www.opencontainers.org": [12003], "*.blob.core.windows.net": [18343], "www.fiercepharma.com": [5777], "lo.libreoffice.org": [9311], "*.apollohq.com": [1126], "www.wearechoosy.com": [1186], "thedilbertstore.com": [16268, 16269], "*.bigstockphoto.com": [1867], "www.coindesk.com": [3394], "password.uic.edu": [17231], "www.europol.europa.eu": [5421], "www.vox.com": [17851], "raynersoftware.com": [13586], "www.exante.eu": [4993], "images4.bovpg.net": [2252], "pornworms.com": [12929], "cdn.gigya.com": [6659], "affiliate.eurodns.com": [5406], "isc2.org": [7822], "www.mfi.re": [9738], "foreignpolicy.com": [6024], "www.addison.com.hk": [576], "kopete.kde.org": [8718], "www.control.isy.liu.se": [9084], "mmbiz.qlogo.cn": [13304], "static4.twilio.com": [16876], "*.ceonex.com": [2961], "shop.f-secure.com": [5541], "servicenow.com": [14622], "de-bg.dict.cc": [4455], "softaculous.com": [15096], "library.osu.edu": [11760], "foiaonline.regulations.gov": [13743], "ucollege.wustl.edu": [17993], "www2.blocket.se": [2094], "*.staticsitegenerators.net": [15430], "www.sessioncam.com": [14631], "cloudsso2.cisco.com": [3162], "secure.logmeinrescue.com": [9551], "dnscurve.com": [4062], "myheritage.br": [10834], "www.citysearch.com": [3197], "www.ubuntulinux.jp": [17105], "www.muttscomics.com": [10731], "myloc.de": [10769], "*.eduroam.gr": [6915], "planning.angus.gov.uk": [1020], "consultwebs.com": [3596], "img.f2.constantcontact.com": [3592], "dis.criteo.com": [3801], "clients.medialayer.com": [10156], "img20.360buyimg.com": [112], "etext.illinois.edu": [17258], "gobby.0x539.de": [5], "sueddeutsche.de": [15577], "ngvpn19.nvidia.com": [10985], "selfserve.outbrain.com": [12150], "enahost.com": [5228], "pcicomplianceguide.org": [12225], "*.potager.org": [12985], "secure.stage-gettyimages.com.au": [6621], "p.y.qq.com": [13284], "e13.xhamsterpremiumpass.com": [18516], "assets.kcc.digital": [8713], "dshop.se": [4786], "www.unindented.org": [17191], "www.coinsquare.io": [3410], "order.aliyun.com": [821], "www.gran-turismo.com": [6888], "contiki-os": [3617], "dizaineriai.lt": [4588], "lists.rtems.org": [13472], "*.ozlabs.org": [12197], "www.finnchamber.com": [14993], "info.gigya.com": [6659], "www.soe.ucsc.edu": [17305], "forms.rbwm.gov.uk": [19539], "*.kde-help.org": [19462], "*.dot.swiss": [19126], "www.nicotine-anonymous.org": [11388], "appcanary.com": [1103], "www.nadim.computer": [11007], "seulonta.fi": [15744], "app.sina.com.cn": [14840], "*.ferris.edu": [5757], "www.immunicity.uk": [19288], "stat.yandex.ua": [18656], "leadformix.com": [9193], "www.ntpandp.com": [10975], "medicalert.org": [10185], "reports.instantatlas.com": [19296], "www.bahn-bkk.de": [1616], "vadino.com": [19727], "roia.biz": [13951], "www1.videolan.org": [17688], "news.vice.com": [17667], "tbe.taleo.net": [15922], "*.privacysolutions.no": [13089], "info.vmware.com": [5177], "beeldengeluid.nl": [1748], "100fans.de": [10], "www.rlt.ulaval.ca": [17229], "www.benetech.org": [1778], "vragen.upc.nl": [17002], "partner.wamba.com": [17968], "dobrochan.org": [4612], "metrics.apple.com": [1120], "*.netgear.com": [11232], "*.greatteachersgreatschools.org": [15375], "www.hkyantoyan.com": [7082], "docs.oseems.com": [12120], "tanks.dft.gov.uk": [19116], "www.socialfixer.com": [15064], "pi.cr.yp.to": [3748], "lvw4.marinsoftware.com": [9997], "ncbar.org": [10890], "*.dotcomhost.com": [4692], "nativo.net": [11092], "www.moviemaps.org": [10637], "www.thegearhunter.co.uk": [16281], "www.govcert.nl": [11132], "just-eat.es": [19328], "annonce.cz": [1031], "dedicatedgaming.com.au": [4291], "www.savage2.com": [14062], "developer.constantcontact.com": [3592], "tripadvisor.com": [16741], "*.qub.ac.uk": [13348], "*.forex.com": [6033], "aa.mail.ru": [9874], "openmpt.org": [11951], "www.smartlingsource.com": [14998], "markmail.biz": [10004], "cas.criteo.com": [3801], "specialforces.com": [15240], "*.wine-apps.org": [19462], "webanmeldung.hslu.ch": [7583], "answers.themler.com": [16343], "www.tls-o-matic.com": [15824], "www.priberam.pt": [13048], "*.trakt.us": [19692], "*.tzoo-img.com": [16700], "alltel.web.mcore.com": [10617], "cdn.officiel-des-vacances.com": [11754], "id.arduino.cc": [1176], "*.lanistaads.com": [9149], "rt.powerdns.com": [12990], "*.coremetrics.com": [3663], "connect.osu.edu": [11760], "klikki.fi": [19340], "huizen.nl": [11132], "dne.oracle.com": [12082], "kennslumidstod.hi.is": [7066], "*.louderthanwar.com": [9618], "www.ppb.cancer.gov": [2805], "www.studentbenefits.ca": [15537], "www.solarmovie.is": [15113], "gambling-affiliation.com": [7733], "api.snel.com": [15034], "citizenfourfilm.com": [3174], "www.goenergetix.com": [5251], "ubmelectronics.techinsights-marketing.com": [16927], "www.commotionwireless.net": [3496], "go.magento.com": [9850], "cryptoparty.in": [3886], "*.photosugar.com": [12643], "rmp.kondor.co.uk": [8975], "help.provost.usc.edu": [17278], "beacon.krxd.net": [9016], "www.verisign.es": [17623], "webpayments.sevenoaks.gov.uk": [14638], "*.pgeverydaysolutions.com": [13121], "au.rss.news.yahoo.com": [18635], "share.law.yale.edu": [18642], "www.colino.net": [3416], "*.bloombergsports.com": [2120], "r2.mzstatic.com": [1119], "interactive.guim.co.uk": [7014], "doesnotwork.eu": [4632], "sferra.com": [14649], "airbears.berkeley.edu": [17240], "*.inkfrog.com": [8147], "www.peepd.com": [12511], "imglogo.podbean.com": [12842], "compose.io": [3526], "*.firstdirect.com": [7098], "www.openswan.org": [12046], "*.reg.ru": [13724], "www.bluejeanscable.com": [2140], "discourse.soylent.com": [15199], "www.savvysme.com.au": [14318], "www.tankafetast.com": [15947], "mouseblocker.com": [10623], "www.terragalleria.com": [16125], "www.freejeremy.net": [6141], "codebasehq.com": [3360], "yandex.st": [18655], "*.cia.com": [2599], "www.twittercounter.com": [16891], "*.emailvision.com": [5194], "www.athleticstadium.bedford.gov.uk": [18986], "*.cert.at": [2580], "panicbutton.io": [12362], "e1.boxcdn.net": [2253], "panovski.me": [12368], "pcap.stanford.edu": [15382], "www.youtube.co.ma": [18709], "liveperson.com": [9494], "www.pao-pao.net": [12376], "www.woolworths.com.au": [18422], "cheltenham.greenparty.org.uk": [6925], "technology.uaa.alaska.edu": [17233], "www.neelwafurat.com": [11134], "news.herefordshire.gov.uk": [7327], "finalsite.com": [5820], "rivals.com": [19553], "www.frontlinedefenders.org": [6226], "blocked.org.uk": [2092], "picasaweb.google.com.*": [6837], "www.isc2.org": [7822], "www.vb-paradise.de": [17578], "www.ulaval.ca": [17229], "community.constantcontact.com": [3592], "weightlossplans.net": [12168], "solmusica.com": [15105], "security.nl": [14524], "www.tuvdotcom.com": [3625], "ciifad.cals.cornell.edu": [3676], "dfn.de": [4415], "img13.bizrate-images.com": [2033], "mla.com.au": [10134], "gizmodo.com": [6695], "www.west-midlands.police.uk": [18208], "*.microad.jp": [10346], "11888.ote.gr": [12132], "pubmed.gov": [13195], "www.lespaceclient.fr": [9070], "hsbc.com.*": [7098], "pocket.dict.cc": [4455], "register.sky.com": [14924], "jabber.no": [8475], "homebid.org.uk": [19255], "companic.nl": [19074], "corpimages.de": [3679], "threema-forum.de": [16398], "doublethedonation.com": [4714], "courses.hss.caltech.edu": [2756], "jrrt.org.uk": [8632, 8633], "www.sbnation.com": [14079], "apereo.org": [1089], "ypassociation.org": [18668], "tshaonline.org": [15861], "solutions.secondstreet.com": [14460], "admissions.osu.edu": [11760], "static.slough.gov.uk": [14971], "www.publikdemand.com": [13218], "hslda.org": [7099], "pform.net": [12613], "adoyacademy.se": [622], "consultation.gateshead.gov.uk": [6467], "www.camden.gov.uk": [2772], "*.raumzeitlabor.de": [13577], "support.drweb.com": [4783], "nabers.com": [11006], "ja.pcisecuritystandards.org": [12224], "www.rbth.ru": [14043], "developer.similarweb.com": [14811], "hybrid-analysis.com": [7640], "blueprint.uchicago.edu": [17246], "bizland.com": [2029], "*.webcontrolcenter.com": [18113], "customers.peoplefluent.com": [12548], "hifxonline.co.uk": [7387], "*.adjuggler.com": [528], "foryou.stanford.edu": [15383], "*.textualapp.com": [16162], "storage.myfreecopyright.com": [10761], "berniw.org": [1797], "www.barnet.gov.uk": [18982], "*.thewatershed.com": [16320], "static1.blocktrail.com": [2086], "www.ishares.com": [8367], "invizbox.io": [8328], "www.saechsdsb.de": [4377], "portal.microsoftonline.com": [10367], "ettus.com": [5396], "emdl.engineering.osu.edu": [11760], "www.cloudforge.com": [3288], "govexec.com": [1316], "ociolaportal.osu.edu": [11760], "lenr-forum.com": [19355], "www.pnasfirstlook.org": [12273], "*.wrapadviser.co.uk": [18472], "billing.metartnetwork.com": [10296], "ep2014.europython.eu": [5409], "*.cwru.edu": [2874], "api.creativecommons.org": [3778], "www.polls.newsvine.com": [11348], "www.whatwg.org": [17904], "emsonline.somerset.gov.uk": [15127], "amazon.es": [917], "games.yandex.com.tr": [18649], "st3.gismeteo.ru": [6669], "ict-webtools.plymouth.ac.uk": [12833], "limited2art.com": [9358], "amr-stage.oracle.com": [12082], "www.paragonie.com": [12389], "www.hostingxtreme.com": [7532], "www.cryptolux.org": [3859], "trust-center.verisign.de": [17623], "professional.player.qbrick.com": [13300], "globalchallenges.uow.edu.au": [17350], "jacksonsun.com": [8486], "*.winner.com": [18357], "www.jessfraz.com": [8555], "urltrends.com": [17413], "le-vpn.com": [9189], "www.srlabs.de": [14521], "www.1688.com": [36], "surf.nl": [14197], "www.hizook.com": [7434], "www.pkracv.com": [3481], "forum.fullrate.dk": [6256], "verbraucher-sicher-online.de": [17616], "www.givskudzoo.dk": [6692], "sites.coloradocollege.edu": [3442], "*.latimes.com": [9612], "hr.vanderbilt.edu": [17557], "m.ibm.com": [7675], "client.serverfruit.com": [14615], "www3.bnl.gov": [19009], "forum.fortinet.com": [6056], "www.subtraxion.com": [19637], "www.freebase.com": [6157], "*.tickertech.com": [16412], "www.wosign.cn": [18392], "www.onsalesit.com": [11884], "*.qualys.com": [13333], "aging.stanford.edu": [15383], "wayland.freedesktop.org": [6126], "www.equityzen.com": [5337], "www.mog.com": [9774], "*.razoo.com": [13589], "data.phishtank.com": [12629], "www.ivoox.com": [7871], "www.100r.org": [9], "litecoin24.nl": [9463], "www.passwd.hu": [12431], "conflict.nsfwcorp.com": [11549], "khms3.google.com": [6841], "www.virtkick.io": [17744], "couponimages.redplum.com": [13662], "accesspressthemes.com": [448], "mediasite.it.ohio-state.edu": [11761], "brent.greenparty.org.uk": [6925], "www.purduealumni.org": [13233], "get.teamviewer.com": [16004], "*.riverisland.fr": [13906], "fonts.walmart.com": [17964], "www.davidtisch.com": [4224], "payments.amazon.com": [915], "netapp.com": [11183], "intelligence.brent.gov.uk": [2304], "www.hvosting.ua": [7637], "*.lansquared.com": [9063], "*.chango.com": [2997], "hosteurope.de": [7516], "koinify.com": [8957], "www.1phads.com": [61], "help.mindtouch.us": [10410], "blacklotus.net": [2047], "weekendjeweg.nl": [7452], "gsl-co2.com": [6390], "cdn-images-1.medium.com": [10197], "qtdeveloperdays.com": [13317], "manage.norton.com": [11505], "hermite.uvt.nl": [16445], "accuenmedia.com": [466], "www.spsch.eu": [19620], "squareup.com": [15329], "feriecamp.kk.dk": [8730], "*.website-start.de": [18148], "forums.zmanda.com": [18880], "forums.iis.net": [7741], "www.f4map.com": [19172], "widgets.twimg.com": [16877], "cdn.betacie.com": [1815], "images.affiliatewindow.com": [4486], "ads2.contentabc.com": [3612], "lt.osu.edu": [11760], "businessclick.com": [19028], "red.jd.com": [8423], "phoenix.com": [12632], "mindmodeling.org": [10408], "static.hubspot.com": [7594], "shop.newint.org": [11297], "*.mail.live.com": [9483], "img.wildwestdomains.com": [18300], "*.cch.com": [2547], "www.free-tv-video-online.me": [6119], "*.blendle.com": [2068], "www.cash.me": [15329], "yworks.de": [19788], "cdn.dexmedia.com": [4434], "assoc.drupal.org": [4780], "cdn.media.ccc.de": [2538], "labs.ripe.net": [13895], "mydrive.tomtom.com": [16540], "cntraveler.com": [3555], "teaching.brunel.ac.uk": [19021], "www.dml.kuleuven.be": [8816], "g2crowd.com": [6295], "trisquel.info": [16751], "i01.c.aliimg.com": [813], "www.certsimple.com": [2965], "*.tieto.com": [16437], "su.itunes.apple.com": [1120], "ps-us.amazon-adsystem.com": [909], "stats.creativecommons.org": [3778], "conf.kde.org": [8718], "www.valuecommerce.ne.jp": [17542], "www.informe.org": [8116], "notesappstore.com": [10102], "corp.mail.ru": [9874], "www.osrfoundation.org": [11674], "clock.yandex.com": [18651], "100-gute-gruende.de": [8], "izug.zg.ch": [19648], "learn.chef.io": [3057], "shared.php.net": [12250], "karensmindekulturhus.kk.dk": [8730], "zdrojak.cz": [18807], "i.sankakucomplex.com": [19563], "timeinc.net": [16460], "service.piratenpartei.de": [12721], "www.sbucciami.com": [14324], "scripts.its.thm.de": [15811], "isisblogs.poly.edu": [12888], "www.dogwheelchairscenter.com": [4634], "www.allcrypt.com": [829], "shop.stripe.com": [15525], "www.diagrid.org": [4440], "www.quality-abo.de": [13329], "www.reliableisp.net": [13754], "bestchange.org": [1804], "123contactform.com": [23], "www.bernstein.com": [851], "*.e2ma.net": [4863], "assets.brandfolder.com": [2283], "websitealive5.com": [18149], "web.synch.hu": [15728], "*.stroeerdigitalmedia.de": [15529], "piwik.ethz.ch": [4975], "en-hu.dict.cc": [4455], "tcrn.ch": [1920], "mep.engineering.osu.edu": [11760], "supermileage.engineering.osu.edu": [11760], "qa.coreboot.org": [3669], "www.ithaca.edu": [8391], "*.cupid.com": [3920], "matildajaneplatinum.com": [10073], "kuro5hin.org": [9043], "a2.jimstatic.com": [8571], "www.heino-cykler.dk": [7287], "itunes.swisscom.ch": [15698], "richarddawkins.net": [13871], "www.tl63.co.uk": [16508], "mw2.google.com": [6841], "usa.anon-ib.ru": [1038], "sagepay.com": [14238], "www.computer-bild.de": [19075], "ps.xsolla.com": [18593], "www.myopenid.com": [10772], "www.support.whitepages.com": [18257], "m.zipy.co.il": [18875], "ru.content.eventim.com": [5443], "www2.swale.gov.uk": [19645], "cwe.mitre.org": [10459], "m.ya.ru": [18626], "*.blogautomobile.fr": [2104], "kongregate.com": [8977], "ausaid.govspace.gov.au": [6867], "widget.newsinc.com": [11335], "robtex.net": [13929], "www.barnsley.gov.uk": [18983], "support.humblebundle.com": [7615], "en.discussions.tomtom.com": [16540], "directory.umd.edu": [17263], "client.redplum.com": [13662], "www.io9.com": [8335], "hadalog.jp": [14740], "app.srcclr.com": [15337], "918autoloans.com": [208], "carwash.dhs.gov": [4035], "www.scaron.info": [14091], "wolverineaccess.umich.edu": [17266], "hmf.williams.edu": [18316], "cov.com": [3723], "www.microblink.com": [10351], "www.nismonline.org": [11082], "gettyimages.co.*": [6621], "www.greenmangaming.com": [6932], "tickets.sueddeutsche.de": [15579], "www.exilebuddy.com": [2230], "search.literotica.com": [9467], "www.netbeans.org": [11185], "www.vektorbank.com": [17593], "www.consumer.ftc.gov": [5720], "jobs.eoportal.org": [5314], "wiggle.co.uk": [18287], "www.indybay.org": [8081], "www.zarkzork.com": [18799], "docs.oracle.com": [12082], "soraiseyourglasses.com": [15045], "dhavalkapil.com": [4439], "www.vle.cam.ac.uk": [17243], "www.svnlab.com": [14203], "www.thegreatdiscontent.com": [16285], "altii.de": [889], "www.theora.org": [16345], "ontsi.red.es": [13659], "notary.icsi.berkeley.edu": [17240], "www.neas.nhs.uk": [10913], "shiftlog.aviationweather.gov": [18972], "www.familychristian.com": [5645], "bluegiga.com": [2148], "www.cint.com": [3149], "*.ak.yelpcdn.com": [18673], "structuredabstracts.nlm.nih.gov": [11052], "*.picdn.net": [14755], "pnc.com": [12274], "www.artpractical.com": [1218], "corningcu.org": [3678], "fcc.osu.edu": [11760], "www.3dglassesfree.com": [132], "secure.filmlinc.com": [5808], "upc-cablecom.biz": [19716], "www.squareup.com": [15329], "abc.xyz": [403], "mobilepay.dk": [10497], "valme.io": [17530], "orawww.uibk.ac.at": [19710], "www.youtube.com.ph": [18709], "counterpartychain.io": [3707], "f3mimages.com": [5544], "secure.datapipe.com": [4212], "rum-collector.pingdom.net": [12686], "partners.yandex.com": [18651], "minixperiment.twitch.tv": [16888], "owner.io": [12185], "browsershots.org": [2372], "webmaster.yandex.kz": [18652], "www.uncsd2012.org": [17206], "business.comcast.com": [3461], "www.caa.co.uk": [3203], "*.sitemason.com": [14881], "unfpa.org": [16988], "www.windowmaker.org": [18339], "sportisimo.pl": [14158], "de.community.dell.com": [4335], "www.dwolla.com": [4816], "mov24hr.com": [18666], "www.securities.com": [14518], "uts.nlm.nih.gov": [11052], "*.iv.lt": [8397], "www2.sitetagger.co.uk": [14872], "mommyslittlesunshine.com": [10539], "www.bioinformatics.vt.edu": [17740], "img.sedoparking.com": [14546], "*.tms.hrdepartment.com": [7096], "www.ssl-cert-shop.com": [14174], "swa.mail.ru": [9874], "www.linuxtv.org": [9416], "bho.pl": [2151], "*.boxee.tv": [2258], "kasandbox.org": [8873], "www.kumu.io": [9036], "g.msn.com": [9796], "*.uni-weimar.de": [1696], "content22.online.citibank.com": [3171], "newsletter.raiffeisen.ch": [13527], "forum.kryptronic.com": [9022], "t.thebrighttag.com": [2325], "*.foxbusiness.com": [6085], "luxsci.mobi": [9675], "bitsighttech.com": [1947], "matthewsmarking.com": [10083], "training.nih.gov": [11052], "www.myaccount.avira.com": [1449], "secure.eth-0.nl": [5376], "*.beryl-themes.org": [19462], "paymybill.illinois.edu": [17258], "iacs.seas.harvard.edu": [7219], "*.gridserver.com": [6951], "www.thesmokinggun.com": [16311], "get2.adobe.com": [615], "keys.schokokeks.org": [19570], "remas.swisscom.com": [15698], "*.lkmart.com.au": [9088], "www.ngrok.com": [11375], "*.fitstudio.com": [5888], "parrot.org": [12411], "www.alecomm.com": [787], "segments.adap.tv": [554], "www.tld.pl": [16509], "nanzhuang.taobao.com": [15952], "bugzilla.libav.org": [9291], "login.livingsocial.com": [9517], "northerntool.ugc.bazaarvoice.com": [11501], "www.workkafe.com": [18437], "mobile.sb.vdopia.com": [17582], "*.newrelic.com": [11291], "forums.suse.com": [14199], "jianghu.tmall.com": [15952], "pda-bes.amazon.com": [910], "tinyurl.com": [16484], "*.gunadiframework.com": [453], "www.clssl.org": [3319], "onthewire.io": [11819], "*.service.mirror-image.net": [10446], "www.eloconcursos.com.br": [5175], "www.membershiprewards.com": [10248], "1art.cz": [63], "*.edgar-online.com": [4892], "lchost.co.uk": [9066], "static.cf.ac.uk": [2835], "aioe.org": [744], "seowizard.ru": [14588], "justiceinspectorates.gov.uk": [3798], "cachewww.mirrorbingo.com": [10445], "amnesty.org.nz": [967], "www.valuehost.ru": [17543], "serve.popads.net": [12902], "theblueskylife.com": [16249], "find.business.t-mobile.com": [15772], "assess.cocubes.com": [3334], "buff.ly": [1920], "security.buffalo.edu": [17297], "*.trackalyzer.com": [16630], "nagios.stanford.edu": [15383], "static1.twilio.com": [16876], "postofficeshop.co.uk": [12955], "login.persona.org": [10662], "idefimusic.com": [7932], "*.thegcloud.com": [16279], "media.tracfonewireless.com": [16627], "battleforthenet.com": [1695], "*.superpetusa.com": [15622], "drupalthemes.stanford.edu": [15383], "s1.playscdn.tv": [12809], "wusmdar1.wustl.edu": [17993], "coxnewsweb.com": [3740], "order.kagi.com": [8766], "dev.openttdcoop.org": [11982], "www.scalingbitcoin.org": [14329], "ybin.me": [18664], "ehsa.osu.edu": [11760], "wimp.com": [18323], "vr.org": [17864], "www.hsbc.co.*": [7098], "screenshot.ru": [14410], "madewithcode.com": [9838], "service.mail.com": [9872], "airdownload.adobe.com": [614], "www.bedfordhospital.nhs.uk": [10913], "apollo.vutbr.cz": [17522], "ads.creative-serving.com": [3777], "opencorporates.com": [11931], "www.goldenpass.ch": [19225], "edfil.es": [5077], "filebox.faz.de": [5554], "development.standards.ieee.org": [7715], "raweb.inria.fr": [8159], "myub.buffalo.edu": [17297], "vgwort.de": [17483], "m.exactag.com": [5479], "stat.my.mail.ru": [9874], "madewith.unity3d.com": [17220], "pearson.eps.harvard.edu": [7219], "static-admin.mailigen.com": [9886], "eu.api.ovh.com": [12173], "www.d.pr": [3995], "vatt.fi": [17536], "www.oschina.net": [12118], "*.technoratimedia.com": [16045], "www2.sunybroome.edu": [2365], "img.tineye.com": [16468], "rsna.org": [13520], "*.tu-muenchen.de": [16036], "netgroup.dk": [11233], "www.liliani.com.br": [9352], "www.huxo.co.uk": [7634], "www.marketwire.com": [10022], "www.batmanarkhamorigins.com": [1691], "es.thinksteroids.com": [9737], "sacramento.cbslocal.com": [2529], "valoancaptain.com": [17467], "www.die-linke.de": [4456], "worldmate.com": [18449], "shop.cinestar.de": [3143], "lurkmore.so": [9673], "www.hacking.ventures": [7153], "*.finalsite.com": [5820], "warringtondirect.warrington.gov.uk": [17984], "www.meningitis-trust.org": [10259], "sdm.mit.edu": [9749], "go.citrix.com": [3178], "graphics.cars.com": [2864], "bugs.busybox.net": [2462], "rhcloud.com": [13424], "libri.de": [9317], "asset-2.netbeans.org": [11185], "www.omegaup.com": [11792], "google.org": [6836], "unbounce.com": [17153], "wikimedia.es": [18296], "*.usfca.edu": [17042], "www.grr.la": [7005], "www.onebit.cz": [11642], "btc.to": [2380], "www.isohunt.com": [8372], "gmx.tm": [6350], "secure.naiadsystems.com": [11011], "give.berkeley.edu": [17240], "elft.nhs.uk": [10913], "www.coinfloor.co.uk": [3404], "manyvids.com": [9967], "webassetsb.scea.com": [14089], "mailman.owncloud.org": [12182], "facebook.foxnewsinsider.com": [6085], "global.latin.epson.com": [5330], "thijsalkema.de": [16353], "reg.ru": [13724], "developers.corvisa.com": [3688], "wiki.skynet.ie": [16210], "fkie.fraunhofer.de": [6112], "ziggozakelijk.nl": [18863], "www.theweek.com": [16323], "traffichaus.com": [16652], "aws.amazon.com": [915], "www.danskebank.dk": [4145], "distilleryimage7.instagram.com": [8182], "*.vespermarine.co.nz": [17651], "img4.wsimg.com": [14507], "piuparts.debian.org": [4275], "www.geektimes.ru": [6507], "cenowarka.pl": [2938], "cwf.staticcache.org": [15431], "*.shacknews.com": [14652], "vcp.jd.com": [8423], "www.bestpractical.com": [1807], "www-hotel.uu.se": [17074], "members.rethink.org": [19549], "*.wordpress.org": [18429], "connect.sheknows.com": [14691], "simpel.nl": [19592], "apply.gemoney.com.au": [6315], "gamesonly.at": [6436], "aldi.es": [299], "mobile.portal.equinix.com": [5334], "www.netveano.com": [11255], "ekiga.org": [5131], "honeybeeloans.com": [7483], "www.simcity.com": [14808], "www.mcpmag.com": [9729], "fortnite.com": [6057], "business.tomtom.com": [16540], "www.humblebundle.com": [7615], "www.lynda.com": [9682], "zonza.tv": [18763], "trustedcs.com": [16790], "pingability.com": [12685], "www.ziplist.com": [18874], "www.plazakauppa.fi": [12131], "linux-sunxi.org": [9401], "www.creatis.insa-lyon.fr": [7771], "www.linuxplumbersconf.net": [9397], "app.ubertags.com": [17088], "spirit.kn.vutbr.cz": [17522], "openitp.org": [11947], "www.postoffice.co.uk": [12954], "www.get-digital.nl": [6562], "domainrendelo.hu": [4665], "*.castel-bayart.com": [2890], "service-portal.web.cern.ch": [2575], "www.guru3d.com": [7023], "tags.literotica.com": [9467], "store.ubnt.com": [17084], "svc079.wic859dp.server-web.com": [5308], "stroud.greenparty.org.uk": [6925], "webstore.illinois.edu": [17258], "yousendit.com": [18708], "lists.apc.org": [1294], "www.lrz.eu": [9238], "blog.ukrnames.com": [17126], "primesecoenergie.com": [13061], "www.acehotel.com": [470], "crowd.stanford.edu": [15383], "cdn.real-debrid.com": [13621], "www.presid.infn.it": [7766], "www.boomerang.com": [2209], "www.dns.lc.wix.com": [18383], "talent.usc.edu": [17278], "otazky.skylink.cz": [14937], "php.radford.edu": [13511], "nachtjeweg.nl": [7451], "medienforschung.zdf.de": [19800], "www.indiemerchandising.com": [8069], "www.mediastore.portsmouth.gov.uk": [19508], "twimler.com": [16878], "www.12wbt.com": [10343], "spaceup.org": [15207], "epgy.stanford.edu": [15383], "novainfosec.com": [11440], "*.interactivedata.com": [8240], "www.elbadil.com": [5144], "controlpanel.gradwellcloud.com": [6884], "gmo.jp": [6345], "conetrix.com": [3337], "www.themoviedb.org": [16299], "linuxtv.org": [9416], "lawstudent.cf.ac.uk": [2835], "www.datenschutz-ist-buergerrecht.de": [4218], "autodiscover.yandex.com": [18651], "*.mobileenterprise360.com": [10500], "www.heatmap.me": [7279], "piwik240.mybluemix.net": [10801], "telenor.se": [16091], "forsec.nl": [6051], "www.rabobank.nl": [13489], "www.emjcd.com": [3481], "nghttp2.org": [11373], "tasc-play-room.stanford.edu": [15383], "mjanja.ch": [10473], "www.calibre-ebook.com": [2740], "i00.c.aliimg.com": [813], "trustworthyinternet.org": [16800], "www.docker.io": [4617], "feedback.aol.com": [321], "www.twoseventy.net": [16900], "*.bloomberg.com": [2119], "www.dhammaloka.org.au": [1544], "www.whiteout.io": [18256], "lyft.me": [9680], "sogo.uni-ulm.de": [19715], "property.birmingham.gov.uk": [18999], "freedomnotfear.org": [6172], "zona.skylink.sk": [14937], "sweetpepper.org": [12985], "*.omeda.com": [11791], "content.cws.iop.org": [8194], "epayments.aylesburyvaledc.gov.uk": [18976], "www.forum.telekom.de": [4410], "jambit.com": [8500], "eftplus.asia": [4909], "leagueoflegends.com": [9206], "images10.newegg.com": [11316], "cdn.stormfront.org": [15498], "downloads.ohiobar.org": [11763], "de-mail.1und1.de": [68], "jira.gravity4.com": [6902], "truetrophies.com": [16776], "ngvpn31.nvidia.com": [10985], "ewebscapes.com": [4991], "bbs.linuxdistrocommunity.com": [9421], "comms.anz.co.nz": [18958], "s2.percona.com": [12557], "xmms2.org": [18522], "new3c.tmall.com": [19684], "www.entagroup.com": [5289], "www.sikur.com": [14785], "ofsted.gov.uk": [19456], "clover.com": [3318], "aftenposten.no": [711, 712], "canvasndecor.com": [2815], "*.pubnub.com": [13197], "intrepidusgroup.com": [8300], "*.westlaw.com": [18218], "search.ico.org.uk": [7688], "*.tuwien.ac.at": [17707], "sba-research.org": [14080], "support.lenovo.com": [9251], "convertkit.com": [3628], "actionsalvage.com": [490], "*.plista.com": [12818], "naiin.com": [11012], "www.healthyeater.com": [7266], "*.thumbshots.org": [16401], "images.laterooms.com": [19348], "player.pulpix.co": [13223], "www.ti.to": [16408], "people.debian.org": [4275], "courrielweb.videotron.ca": [17699], "publisher.qbrick.com": [13300], "www.pvac-cms.leeds.ac.uk": [17318], "supportcommunity.swisscom.ch": [15698], "shrinktheweb.com": [14746], "www.great-yarmouth.gov.uk": [19227], "www.paycheckrecords.com": [12472], "noaddedsugar.com": [11446], "www.keytosuccess.education.gov.uk": [19149], "*.gs-media.de": [6385], "www.uhub.org": [17121], "mail2web.com": [15090], "*.frontier.co.uk": [6224], "doc.pfsense.org": [12607], "kinox.sg": [19337], "1gwc-kbhkort.kk.dk": [8730], "www.wiki.ed.ac.uk": [5067], "brennancenter.org": [2302], "*.couchbase.com": [3699], "www.darkmail.info": [4153], "www.totalicare.com": [16602], "gmo.com": [6341], "*.overstock.com": [12170], "webmail.koumbit.net": [8998], "static.readyflowers.com": [13620], "ps.otenet.gr": [12132], "chaton.com": [3030], "*.bmc.com": [1527], "about.yammer.com": [18647], "www.conversionsbox.com": [3627], "showrss.info": [14744], "www.venuscafem.com": [17612], "sexslurp.com": [14641], "www.gl.ch": [19648], "turbo.htwk-leipzig.de": [7114], "secure.sharefile.com": [14663], "www.fd.ulaval.ca": [17229], "activecollab.sandstorm.de": [14282], "sportisimo.cz": [14158], "www.zabbix.com": [18774], "dept.dict.cc": [4455], "www.intrepidmuseum.org": [8299], "connecttosupport.org": [19076], "slickproductsusa.com": [14957], "domaindiscount24.net": [19123], "secure-ds.serving-sys-int.com": [14627], "media.mmo-champion.com": [3934], "www.aptdeco.com": [1141], "oto.yandex.com.tr": [18649], "www.fibonacci.uvt.nl": [16445], "portal.rit.edu": [13434], "gdp.alicdn.com": [805], "summercollege.stanford.edu": [15383], "www.espionageapp.com": [5362], "www.idg.se": [7705], "sync.go.sonobi.com": [15139], "billing.flokinet.com": [5938], "jobs.cdc.gov": [19046], "lists.openwireless.org": [12029], "wikispooks.com": [18298], "wnioski.t-mobilebankowe.pl": [19654], "store.feistyduck.com": [5744], "dev.piwik.org": [12733], "id-card.umd.edu": [17263], "devzing.com": [4419], "www.fxsystems.com": [5611], "*.daad.de": [6553], "www.inboxapp.com": [8039], "www.nabers.com": [11006], "www.postovoy.org": [19512], "www.chaox.net": [3007], "jackson-it.de": [8485], "repozitar.cz": [13787], "tracking.verisign.com.hk": [17623], "vkc.kk.dk": [8730], "www.osu.edu": [11760], "*.statesmanjournal.com": [15423], "*.sipr.ucl.ac.be": [17230], "www.kam.vutbr.cz": [17522], "hds.nerc.ac.uk": [11100], "static.gosquared.com": [6784], "www.gnumeric.org": [6765], "jira.cyanogenmod.org": [3954], "dns.norton.com": [11505], "piraten-aargau.ch": [12284], "*.cibc.com": [2601], "*.micgadget.com": [9742], "www.pantherexpress.net": [2560], "gi.de": [6558], "packetstatic.com": [12317], "www.mims.com.vn": [9743], "abnamro.nl": [245], "news.dk": [11324], "shevibe.com": [14692], "seal.godaddy.com": [6773], "boat.voyagegroup.com": [17859], "wand.com": [17970], "whereis.mit.edu": [9749], "nhattao.com": [11377], "www.postovabanka.sk": [12982], "emlib.ent.sirsidynix.net.uk": [14860], "uberent.com": [17085], "revolet.com": [13848], "triumph-adler.de": [16752], "crypto.di.ens.fr": [4930], "www.roadworks.org": [19554], "exklusiv.web.de": [18050], "*.cosmosmagazine.com": [2640], "*.porlaputa.com": [12924], "homepages.th-mittelhessen.de": [15809], "justtomatoes.com": [8693], "fomnetworks.com": [5584], "jacquelinegold.com": [8490], "my.vanderbilt.edu": [17557], "www.pubsbenefits.acs.org": [929], "s.pamfax.biz": [12352], "omakaseweb.com": [11787], "eveonline.com": [4985, 19168], "*.airbnb.it": [749], "secure.live.sipgate.co.uk": [14855], "www.techcrunch.com": [18428], "choopa.com": [3099], "www.nttdocomo.com": [10968], "*.firedrive.com": [5858], "*.aps.org": [932], "morawa-buch.at": [19409], "*.dryicons.com": [4785], "*.pcicomplianthosting.com": [12535], "www.maemo.org": [9844], "www.proofwiki.org": [13153], "policies.usc.edu": [17278], "ez-web-hosting.com": [5000], "www.artsandsciences.osu.edu": [11760], "static1.boligportal.dk": [2191], "bada55.cr.yp.to": [3748], "www.terminatio.org": [16123], "russellgroup.ac.uk": [14042], "docsafe.swisscom.com": [15698], "saucenao.com": [14302], "www.nsnam.org": [11551], "www.bib.kuleuven.be": [8816], "www.mackeeper.com": [9819], "extranet.ikoula.com": [7963], "navut.cz": [11005], "www.globes.co.il": [6744], "www.bapco.com": [1490], "*.profile.live.com": [9483], "legal.dwolla.com": [4816], "enthought.com": [5299], "cf9.100r.org": [9], "netbynet.enaza.ru": [5230], "www.jamieoliver.com": [8505], "www.holidaybullshit.com": [7450], "uds.ubuntu.com": [17102], "fundrazr.com": [6258], "blog.ted.com": [15805], "developer.appear.in": [1114], "networkcomputing.com": [11269], "www.usesthis.com": [17442], "icanhazip.com": [7908], "www.telford.gov.uk": [19669], "www.hostgator.com": [7511], "*.provenue.net": [13113], "access.leeds.ac.uk": [17318], "thinkpad.com": [9251], "omnirom.org": [11799], "www.pensionsmyndigheten.se": [12540], "www.telnic.org": [16100], "karzer.uni-goettingen.de": [17166], "bitly.com": [2001], "openapi.360.cn": [106], "www.discuss.io": [4558], "www.haskellonheroku.com": [7230], "launch.newsinc.com": [11335], "www.gdr-meso.phys.ens.fr": [4930], "betcoin.tm": [1813], "digital-future.it": [4481], "toxlearn.nlm.nih.gov": [11052], "ad.reachlocal.com": [13602], "*.ee.co.uk": [5457], "1984.is": [40], "www.blossom.co": [2122], "edit.productie.gx.uvt.nl": [16445], "monitor2.returnpath.net": [13834], "netclean.com": [11187], "*.247realmedia.com": [76], "www.laquadrature.net": [9113], "*.gymglish.com.br": [7037], "youtube.com.hk": [18709], "kimonolabs.com": [8890], "www.sonycsl.co.jp": [15148], "*.linuxnewmedia.de": [9396], "www.gfihispana.com": [6322], "m.taobao.com": [15952], "ch-it.norton.com": [11505], "worldofeas.canon.com.au": [19037], "hydra.aufbix.org": [1366], "kdoes.nl": [8832], "mpx.no": [10672], "www.ace-analyzer.com": [469], "markmonitor.com": [10003], "*.moreover.com": [10590], "www.hostvoice.com": [7519], "www.li.ru": [9487], "my.itunes.apple.com": [1120], "www.anpost.ie": [986], "lawgeex.com": [9176], "track.adform.net": [585], "*.univie.ac.at": [17353], "leblibrary.com": [9218], "www.kaust-cu.cornell.edu": [3676], "*.kundenserver42.de": [11279], "www.golfrev.com": [6821], "pear.phpdoc.org": [12653], "blog.qt.digia.com": [4475], "it.pcpartpicker.com": [12497], "phpmagazin.de": [12252], "*.memberclicks.com": [10245], "magicmembers.com": [9856], "secure.skypeassets.com": [14939], "services.google.com": [6834], "origin.www.upc.cz": [17000], "docs.wpstartbox.com": [15406], "braincert.org": [2269], "*.sandeen.net": [14277], "gsmhosting.com": [6992], "www.hsivonen.fi": [7120], "corporatecardapplication.com": [3681], "www.pokerstarsapps.com": [19504], "pflag.org": [12243], "hakin9.org": [7169], "www.kaltura.com": [8775], "www.systemausfall.org": [15762], "cbcrypt.org": [2522], "www.stormfront.org": [15498], "silicon.fr": [11198], "travelcardonline.n-somerset.gov.uk": [10857], "www.loc.gov": [9528], "de.aldi.be": [299], "www.cinchouse.com": [3136], "secure.cdn.us.playstation.com": [12795], "shoplift.byte.nl": [2486], "store.kaspersky.com": [8806], "www.croydonhealthservices.nhs.uk": [10913], "www.bitsquare.io": [2020], "hawkhost.com": [7247], "www.digitalbond.com": [4480], "culture.zomato.com": [18890], "paradoxplaza.com": [12386], "*.concur.com": [3550], "ads.where.com": [18238], "glerups.dk": [6708], "www.bitdrift.org": [1990], "www.centerforrights.org": [2947], "libsyn.com": [9321], "www.frugalware-art.org": [19461], "www.ipsidixit.net": [8348], "*.fourdo.com": [150], "balkongshoppen.se": [1629], "www.opendatacity.de": [19463], "*.berlin.de": [1791], "itservices.gmu.edu": [6544], "megabigpower.com": [10224], "*.guildwars2.com": [7011], "*.eveonline.com": [4985, 19168], "passwords.cites.uiuc.edu": [16956], "subscription-assets.timeinc.com": [16460], "sdlf.stanford.edu": [15383], "blog.korelogic.com": [8986], "www.dahmw.org": [4672], "comparis.ch": [3513], "www.altimatewellness.com": [890], "piwik.derpy.me": [4382], "control.earthlink.net": [5007], "assets.rbl.ms": [13592], "timeclockdeals.com": [16459], "list.girlsoutwest.com": [6667], "www.freifunk-karlsruhe.de": [6191], "oskuro.net": [12122], "slfed.uits.iu.edu": [8064], "moodle2.unizar.es": [17356], "communities.adobe.com": [615], "www.accesstojustice.gov.au": [455], "cf.sonymusic.com": [15147], "*.vanilladev.com": [17558], "www.ehoiva.fi": [19136], "okopnik.com": [11775], "www.tapgage.net": [15957], "www.edgarfiling.sec.gov": [17023], "webtrh.cz": [18173], "www.mobify.com": [10494], "secure.jbeekman.nl": [8415], "wiki.freeswitch.org": [6130], "swe.engineering.osu.edu": [11760], "smartlife.swisscom.com": [15698], "*.toonpool.com": [16555], "cdn.auth0.com": [1407], "internetsafetyproject.org": [8274], "*.simyo.de": [14837], "bundesnetzagentur.de": [2431], "www.studyinsweden.se": [19635], "65.181.183.157": [4685], "tickets.calpoly.edu": [2747], "mobileenterprise360.com": [10500], "piwik.avm.de": [372], "www.abosgratis.de": [422], "gloucestershire.firmstep.com": [19183], "scandinavianphoto.fi": [14334], "clc.serverfault.com": [15359], "www.marshall.usc.edu": [17278], "du.itunes.apple.com": [1120], "www.jboss.com": [8416], "uvpn.de": [19709], "lists.debian.org": [4275], "nhnnext.org": [10910], "www.cnr.vt.edu": [17740], "community.servicenow.com": [14622], "vpnincome.com": [8024], "news.ncsu.edu": [11492], "samsungknox.com": [14268], "webmail.webstyle.ch": [18159], "www.admissions.osu.edu": [11760], "cdn.mailerlite.com": [9882], "www.aboutus.org": [425], "devcentral.f5.com": [5546], "www.stonewall.org.uk": [19629], "images.dailyexpress.co.uk": [4110], "lunarpages.com": [569], "prices.psc.gov": [19525], "whatsmydns.net": [18236], "am.thecthulhu.com": [16334], "crb.research.illinois.edu": [17258], "weblibrary.cdn.citrixonline.com": [3179], "www.stacksocial.com": [15363], "www.wlfriends.org": [6217], "s.swiftypecdn.com": [15689], "odmp.org": [11751], "spritesmods.com": [15317], "cups.org": [2690], "*.derby.ac.uk": [17310], "beta.domainskate.com": [4657], "blog.nelhage.com": [10904], "www.research.buffalo.edu": [17297], "discussion.evernote.com": [5450], "www.mtailor.com": [9804], "t1cdn.mediamath.com": [10157], "www.develop100.com": [8226], "hillaryclinton.com": [7409], "myhappyoffice.com": [10833], "reversewhois.domaintools.com": [4660], "rentex.com": [13775], "ugc.taobao.com": [15952], "marchex.com": [9984], "download.openmpt.org": [11951], "www.projecthoneypot.org": [13135], "powershellgallery.com": [12993], "lipreading.org": [9441], "youtube.jo": [18709], "c.live.com": [9483], "www.dante-analytics.net": [4004], "*.infomaniak.ch": [8112], "uat.groupon.com.br": [6973], "www.mansfield.gov.uk": [19382], "bravemedia.org": [2292], "store.bobafamily.com": [2171], "*.tuhh.de": [15876], "www.folkets.dk": [5986], "incommonfederation.org": [8031], "cognition.plymouth.ac.uk": [12833], "revenuesbenefits.rossendale.gov.uk": [13973], "c3.nasa.gov": [10869], "swww2.glam.com": [6697], "mindtouch.us": [10410], "*.reformal.ru": [13722], "srsplus.com": [14169], "imgssl.constantcontact.com": [3592], "nxeassets-ssl.xbox.com": [18550], "ocl-cal.gc.ca": [11741], "yawnbox.com": [18663], "mobile.united.com": [17212], "youchoose.redbridge.gov.uk": [13683], "ru.libreoffice.org": [9311], "www.drollette.com": [10080], "experian.com": [5506], "gdata.youtube.com": [6839], "status.sumologic.com": [15592], "marketo.com": [10016], "linux-magazin.de": [9393], "internetfonden.se": [8288], "habets.pp.se": [7125], "www.cryptopro.ru": [3861], "www.dnaserum.com": [4057], "sfgate.findnsave.com": [5836], "*.andyet.com": [1012], "www.kk.dk": [8730], "s3.parature.com": [12396], "ekomi-us.com": [4921], "youtube.com.qa": [18709], "cubby.com": [3909], "extranet-gemeinsam.wienerstadtwerke.at": [18284], "tumen.rt.ru": [13469], "www.section9.co.uk": [14470], "www.valueapplications.com": [17538], "ekomi.*": [4921], "newhumanist.org.uk": [19433], "staging.lubswww.leeds.ac.uk": [17318], "forums.lenovo.com": [9251], "my.johnshopkins.edu": [8611], "www.olvi.fi": [11785], "online.americanexpress.com": [935], "webassign.net": [18054], "www.grad.uw.edu": [17077], "wimo.com": [18277], "partnernet-temp.symantec.com": [15715], "energia.edp.pt": [4896], "f35.com": [5542], "hauke-m.de": [7239], "vendors.paddle.com": [12324], "lists.fedoraproject.org": [5726], "www.nex.sx": [11353], "britannica.com": [2336], "inside.com": [8164], "kuther.net": [9046], "2014.confidence.org.pl": [3569], "cimg.filemobile.com": [5800], "spvideos.5min.com": [178], "www.hupstream.com": [7626], "*.truecrypt.ch": [16766], "9seeds.com": [213], "labs.kollegorna.se": [8964], "static.symanteccloud.com": [15715], "www.freeassangenow.org": [6137], "fin-fusioncrm.oracle.com": [12082], "sitegenie-external.quinstreet.com": [13366], "cloudlinux.com": [3290], "images.chainlove.com": [2981], "shadertoy.com": [14653], "nydailynews.com": [10990, 10991], "pantz.org": [12375], "view.de.adjug.com": [526], "ppc.ipswich.gov.uk": [8351], "sjd.net": [8631], "discourse.chef.io": [3057], "s.on.aol.com": [321], "equityzen.com": [5337], "online.aberdeencity.gov.uk": [411], "ja-sig.org": [8522], "ensighten.com": [5286], "r.twimg.com": [16877], "*.webmd.com": [18070], "iberia.com": [7898], "uk.logmein.com": [9549], "sit.fraunhofer.de": [6112], "v-dem.net": [19725], "dtc.gplhost.co.uk": [6372], "assemblyseries.wustl.edu": [17993], "www.enphase.com": [5283], "disk.wedos.com": [17901], "www.leadershipacademy.nhs.uk": [10913], "law.lexmachina.com": [9279], "www.chloe.re": [3093], "coinsquare.io": [3410], "centerlinebeta.net": [2951], "git.playgrub.com": [12806], "*.megafon.ru": [10226], "consultants-locator.apple.com": [1120], "scripts.omniture.com": [11803], "python-nbxmpp.gajim.org": [6406], "i7.c.dk": [2498], "www.rareconnect.org": [13566], "*.de17a.com": [4242], "www.mixcloud.com": [10465], "www.easterncheshireccg.nhs.uk": [10913], "heelnormaal.snsbank.nl": [14144], "zhi.taobao.com": [15952], "cdncss.dmjx.dk": [4600], "concerts.livenation.com": [9481], "embeddedarm.com": [5198], "topuniversities.com": [16563], "cdmi.osu.edu": [11760], "bc.whirlpool.net.au": [18243], "parrot.com": [12409], "paydirekt.de": [12473], "clube.ecommercebrasil.com.br": [4885], "old.harita.yandex.com.tr": [18649], "*.witopia.net": [18278], "gtcsonline.mycashflow.fi": [6394], "homedepot.com": [7470], "www.jastusa.com": [19316], "jobs.irs.gov": [7819], "ep2012.europython.eu": [5409], "front-admin.voyage-prive.com": [17857], "developers.digitalocean.com": [4495], "sa.ed.gov": [4889], "cdna.tid.al": [16430], "friedhoff.org": [6212], "*.azcentral.com": [1480], "www.xetra.com": [18567], "occupycorporatism.com": [11708], "*.megafiles.se": [10225], "www.skytal.es": [6915], "www.livezilla.net": [9499], "www.7digital.com": [193], "*.pgmcdn.net": [7453], "www.crowdfunding.correctiv.org": [3685], "vip.vetbiz.gov": [17019], "drawception.com": [4744], "www.americanexpress.com": [935], "net.vutbr.cz": [17522], "www.neaf.gov.au": [11068], "skysql.com": [14926], "www.ot.wustl.edu": [17993], "securycast.com": [14538], "everydayhealth.com": [5453], "codinghorror.com": [3385], "randsinrepose.com": [13547], "anvil.rubiconproject.com": [14014], "tk.ilius.net": [10216], "wordstat.yandex.kz": [18652], "omsk.rt.ru": [13469], "aax.amazon-adsystem.com": [909], "www.thewatershedresidence.com": [16321], "go.tendatta.com": [16110], "www.clinicaltrials.gov": [3268], "jabbi.pl": [8480], "www.marionlibrary.osu.edu": [11760], "*.clarionledger.com": [3213], "*.mirantis.com": [10442], "rhb.ch": [13857], "anb.com.sa": [313], "nets.ec": [11205], "vts.inxpo.com": [8334], "ipsos-na.com": [8350], "*.causes.com": [2909], "bgpmon.net": [1514], "tryprocleanse.com": [10800], "www.rspcashop.co.uk": [13462], "akademikerforsakring.se": [758], "www.aexp-static.com": [678], "cathaypacificcargo.com": [2904], "www.iu.edu": [8064], "oma.zoner.fi": [18894], "srihash.org": [14167], "peer5.youcanbook.me": [18703], "*.rascal999.co.uk": [19535], "www.cpmstar.com": [2647], "www.vipserv.org": [17488], "pokylinux.org": [12858], "dl.twrp.me": [15891], "www.jochen-hoenicke.de": [8605], "media.petridish.org": [12599], "www.owner.io": [12185], "lotuscars.com": [9615], "ybitcoinmagazine.com": [18612], "www.kubuntuforums.net": [9030], "itselfservice.plymouth.ac.uk": [12833], "gu.com": [6994], "www.acromediainc.com": [479], "www.ucc.ie": [16933], "www.gazellegames.net": [19209], "gramsflow.com": [6887], "tribler.org": [16729], "alert.wpm.neustar.biz": [11280], "*.merproject.org": [10271], "www.avantar.com": [1441], "login.dtcc.edu": [4323], "*.northclicks.com": [11494], "www.symfony.fi": [15718], "w.kuruc.org": [9045], "xara.com": [18542], "*.stayfriends.de": [15444], "ecn.dev.virtualearth.net": [17755], "picard.linux.it": [8385], "www.seafileserver.de": [14435], "hrusecky.net": [10342], "support.ssl.com": [14176], "my.southampton.gov.uk": [15191], "www.securifera.com": [14515], "cacetech.com": [2706], "forum.codeigniter.com": [19069], "donate.careinternational.org.uk": [19041], "www.linphone.org": [9389], "cot.food.gov.uk": [19187], "meltin.net": [10242], "lists.cs.illinois.edu": [17258], "cdn.ca9.uscourts.gov": [17056], "www.codeclubpro.org": [3355], "redbull.*": [13666], "bugs-staging.swift.org": [15688], "dutchdpa.nl": [4813], "www.thinkculturalhealth.hhs.gov": [7062], "ehoiva.fi": [19136], "o-zone.vanco.co.uk": [17555], "eolewater.com": [5315], "www.martus.org": [10035], "www.igvita.com": [7972], "fluctishosting.com": [5950], "faststream.civilservice.gov.uk": [19066], "cell.com": [2932], "www4-static4.gog.com": [6365], "ad.where.com": [18238], "www.pubservice.com": [13220], "www.postpointsrewards.com": [12951], "www.mijnlandal.nl": [18490], "bedrockformssg.msn.com": [9796], "lms.learning.hhs.gov": [7062], "forexctlogin.tradenetworks.com": [6034], "skins.agariomods.com": [721], "consult.defra.gov.uk": [4314], "mofobian.com": [10531], "secure-resumption.com": [14484], "rspca.org.uk": [13461], "worldofwarplanes.*": [18461], "uks.enaza.ru": [5230], "www.palsolidarity.org": [12338], "login.naplesnews.com": [11035], "www.emanuelduss.ch": [5195], "woolworths.com.au": [18422], "www.ple.com.au": [12269], "lecture2go.uni-hamburg.de": [16951], "digitop.nal.usda.gov": [17209], "secure.fortuneaffiliates.com": [6062], "acttea.ut.ee": [17069], "updates.jenkins-ci.org": [8551], "computer-bild.de": [19075], "uocpres.uillinois.edu": [16960], "videos.t-mobile.com": [15770], "www.mjdk.dk": [19401], "partner.bluekai.com": [2133], "landfill.bugzilla.org": [2410], "panel.pixfs.net": [12741], "gorod.yandex.by": [18648], "www2.gajim.org": [6406], "www.discoversignage.com": [4553], "www.passagebank.com": [12426], "webmail.htwk-leipzig.de": [7114], "beta.southglos.gov.uk": [15189], "jdpay.com": [8429], "*.beyondbinary.io": [18994], "www.dailyhiit.com": [4115], "dbs.com.hk": [4010], "novoed.com": [11531], "webpouz.unizar.es": [17356], "abosgratis.de": [422], "webauth.ox.ac.uk": [17271], "passionfruitads.com": [12429], "unrealitytv.co.uk": [17366], "sodiumshop.com": [15084], "cyberagent.co.jp": [3957], "hosting9000.com": [7528], "danielmiessler.com": [4143], "vpn.aclutx.org": [253], "jusek.se": [8686], "community.lincolnshire.gov.uk": [9364], "www.saucenao.com": [14302], "*.cl.ly": [3206], "www.ccrjustice.org": [2550], "york.edu": [18694], "aukcie.ludialudom.sk": [9652], "roadworks.org": [19554], "recruitmentplatform.com": [13651], "checksums.freenetproject.org": [6181], "*.monoprice.com": [10561], "antivigilancia.org": [1070], "f1.success.mindtouch.com": [10409], "kib.ki.se": [8725], "www.peertech.org": [12525], "blog.opengroup.org": [18428], "clinicalaudit.hscic.gov.uk": [19264], "dsp.bidtellect.com": [1848], "wiki.wxwidgets.org": [19779], "apps.support.t-mobile.com": [15772], "bflow.security-portal.cz": [14520], "www.kastatic.org": [8873], "libraryreserve.cdn.overdrive.com": [12160], "*.mmoga.de": [9763], "teamviewer.com": [16004], "plausible.coop": [12791], "www.fmod.org": [5968], "krita.org": [9014], "scsk.jp": [14090], "readyhosting.com": [13618], "covad.com": [3724], "*.myheritage.es": [10834], "www.tele2.lt": [16069], "*.f3images.com": [5543], "www.wrzru.com": [19767], "ko.foursquare.com": [6082], "*.iapc.nl": [19277], "underground-gamer.com": [17156], "backed.io": [1599], "demo.inka.f4.htw-berlin.de": [7112], "www.tenpay.com": [16114], "redirect.www.ibm.com": [7675], "ask.openmrs.org": [11953], "download.zarafa.com": [18795], "together.jolla.com": [8622], "l3-1.kiva.org": [8926], "www.modernpgp.org": [10522], "thompson.com": [16377], "agc.greenparty.org.uk": [6925], "asterisk.org": [1299], "igowild.com": [7955], "aquabounty.com": [1142], "mynxt.info": [10771], "www.treasurydirect.gov": [16705], "graduation.berkeley.edu": [17240], "www.shareconnect.com": [14662], "forms.hubspot.com": [7594], "www.consultmahan.com": [9864], "houndci.com": [7562], "www-act.ucsd.edu": [16939], "berkman.harvard.edu": [7219], "id.scene.org": [8269], "akademy2013.kde.org": [8718], "www.sv2.biz": [15668], "www.mplayerhq.hu": [9784], "franziskawellner.de": [6105], "synthetix.net": [15743], "connect.internet.org": [8278], "community.letsencrypt.org": [9264], "www.simblee.com": [14809], "amerika21.de": [952], "www.tt.se": [15866], "appserv7.admin.uillinois.edu": [16960], "projects.kde.org": [8718], "www.alumni.leeds.ac.uk": [17318], "knowledgeblog.org": [8948], "dev.mashery.com": [10046], "torrentr.eu": [16583], "www.hdtracks.com": [7056], "www.springer.com": [15309], "myob.com": [9815], "insidegme.wusm.wustl.edu": [17993], "www.greyhole.net": [6946], "comodo.com": [3504], "www.issh.ac.jp": [8270], "researchweb.watson.ibm.com": [7675], "archbang.org": [1158], "www.exoclick.com": [5499], "*.royalmail.com": [14000], "caddyserver.com": [2712], "craigmurray.org.uk": [19087], "portal.zwame.pt": [18925], "www.jpfox.fr": [8653], "no1366.org": [11441], "sendspace.com": [14583], "justice.gov.sk": [14972], "www.perfectaudience.com": [12559], "www.coursera.org": [3719], "js.ptengine.jp": [13190], "www.gifyo.com": [6643], "icracked.com": [7702], "webmail.usainteanne.ca": [19720], "landalskilife.fr": [18489], "www.pilgrimagesoftware.com": [12674], "www.decryptcryptolocker.com": [4289], "sesplan-consult.objective.co.uk": [19454], "www.bitcoinwisdom.com": [1974], "touch.groupon.com": [6974], "*.ebscohost.com": [4872], "www.axosoft.com": [1477], "pgsql.cesky-hosting.cz": [19051], "s2.mzstatic.com": [10852], "checkout.stripe.com": [15525], "*.ighome.com": [7948], "cds.sevenoaks.gov.uk": [14638], "www.statewatch.org": [15424], "cdn.timetrade.com": [16455], "www.meynconnect.com": [10328], "ja.wiki.hidekisaito.com": [7393], "swisscom.com": [15698], "www14.software.ibm.com": [7675], "studentreports.andover.edu": [12623], "www.barmer-gek.de": [1672], "openfarmgame.com": [12010], "www.odesk.by": [11724], "secure.longtailvideo.com": [9589], "*.pimg.tw": [12676], "www.adactio.com": [549], "www.cpubenchmark.net": [2650], "www.leviathansecurity.com": [9272, 9273], "tr.im": [16624], "shop.linux-magazin.de": [9393], "*.surfaid.ihost.com": [3663], "webapps.stgeorge.com.au": [19627], "download.macromedia.com": [9833], "privacyfix.com": [13092], "test10.usc.edu": [17278], "www.techinasia.com": [16025], "www.socialboxusa.com": [15057], "www.leics.police.uk": [9240], "www.paypal-forward.com": [12468], "www.nmap.org": [11433], "doc.satoshilabs.com": [19565], "secure.pegazhosting.com": [12527], "www.arturkim.com": [1236], "people.yandex.kz": [18652], "mycampus.hslu.ch": [7583], "topiama.com": [16565], "www.investorflow.com": [14799], "za.godaddy.com": [6773], "thewrap.com": [16215], "research.chemistry.ohio-state.edu": [11761], "dmoz.org": [4601], "help.familysearch.org": [5646], "invoca.net": [8330], "epb.net": [4940], "cdn.pictimgs.com": [3922], "*.blogg.se": [2106], "ba-cdn.ghostery.com": [6629], "www.digifense.com": [4477], "cryptoins.com": [3874], "selfserve.hants.gov.uk": [7196], "www.resortpro.net": [13810], "www.geekhack.org": [6502], "seo.osu.edu": [11760], "ft.ornl.gov": [11693], "w.cdnwp.com": [2559], "resources.mit.edu": [9748], "expert.yandex.com": [18651], "www.simmtester.com": [14814], "id.google.co.*": [6837], "electroscience-backup.engineering.osu.edu": [11760], "c1.atdmt.com": [10360], "hws.uchastings.edu": [16942], "www.noao.edu": [11053], "www.cyngn.com": [3980], "onlineadmissions.northyorks.gov.uk": [19440], "upcmail.upc.ie": [17001], "*.jubii.dk": [8660], "wpenginestatus.com": [17924], "linearcollider.org": [9369], "deis.com": [4320], "www.nslds.ed.gov": [4889], "museum.php.net": [12250], "autodiscover.newsinc.com": [11335], "www.office.co.uk": [11742], "*.imrworldwide.com": [8023], "www.freshmeat.club": [19198], "univention.de": [17225], "involver.com": [8333], "www.onebillion.org.uk": [11853], "www.atbank.nl": [358], "richarddawkinsfoundation.org": [13872], "switch.ch": [15699], "gentoo.zugaina.org": [18920], "forum.logentries.com": [9553], "www.consultations.southwark.gov.uk": [15196], "www.zerotier.com": [18844], "www.freecause.com": [6159], "somafm.com": [19608], "asmc.de": [1269], "*.cgc.gov.au": [3493], "forums.web4all.fr": [18052], "www.pfsense.org": [12607], "www.amnistia.cl": [976], "rabobank.nl": [13489], "console.appnexus.com": [1109], "a3.jimstatic.com": [8571], "stanfordwho.stanford.edu": [15383], "www.costco.com": [3694], "palliativefellowship.stanford.edu": [15383], "lubsws01.leeds.ac.uk": [17318], "dcerpc.org": [19104], "adbit.co": [516], "myid.threema.ch": [16399], "floatinghospital.org": [5934], "www.mivacentral.com": [10462], "www.titanic-magazin.de": [16502], "developers.filepicker.io": [5801], "staticv.net": [17572], "www.ikoula.com": [7963], "www.site.yandex.by": [18648], "onlineregister.com": [11866], "www.aldi.fr": [299], "ads.q1media.com": [13275], "www.cloudworks.nu": [3298], "blog.cyberpowerpc.com": [19098], "bigv.io": [1855], "www.ipgmail.com": [7792], "www.accesspressthemes.com": [448], "ap2.bvg.de": [1582], "www.sas.kaspersky.com": [8806], "pharmacyschool.usc.edu": [17278], "nvbao.taobao.com": [15952], "britcoin.co.uk": [2337], "qconsf.com": [13281], "digikeytest.digikey.de": [4469], "ehs.wustl.edu": [17993], "active.cardiff.gov.uk": [19039], "swiss-prime-site.ch": [19647], "brilig.com": [2332], "jxself.org": [8702], "sc.dealtime.com": [4254], "*.petteriraty.eu": [12604], "*.thesecuritypractice.com": [16310], "www.nikcub.com": [11399], "*.fcns.eu": [6223], "enbs.dict.cc": [4455], "et04.xhcdn.com": [18514], "services.hearstmags.com": [7273], "*.ohsocool.org": [11758], "*.miranda-im.org": [10441], "www.sendspace.com": [14583], "jeja.pl": [8549], "www.movie4k.me": [10636], "wiki-vav.ro.vutbr.cz": [17522], "*.bittorrent.com": [1948], "inka.htw-berlin.de": [7112], "image.captchas.net": [2823], "beefymiracle.org": [1747], "smetrics.ikea.com": [7959], "www.picnichealth.com": [12662], "www.faststream.civilservice.gov.uk": [19066], "www.gficloud.com": [6321], "www.mozillaignite.com": [10659], "developers.spiceworks.com": [15266], "www.sos.state.co.us": [3443], "mypension.wirral.gov.uk": [18371], "zingcheckout.com": [18870], "cloud.aculab.com": [506], "*.csc.gov.au": [3494], "tr.pcisecuritystandards.org": [12224], "www.architectsjournal.co.uk": [1162], "tuxic.nl": [16857], "*.4d.com": [149], "www.friendlybracelets.com": [6215], "www.dutchdpa.nl": [4813], "www.contrastsecurity.com": [19078], "img0.thejournal.ie": [16224], "rbth.ru": [14043], "help.mail.com": [9872], "reflected.net": [13718], "telegram.me": [16079], "h-da.de": [4156], "rewards.sky.com": [14924], "2.darkroom.shortlist.com": [14734], "allaboutus.warrington.gov.uk": [17984], "www.advent.com": [654], "imo.im": [8008], "www.smartftp.com": [14988], "feedback2.yandex.kz": [18652], "kredyty-mieszkaniowe.money.pl": [10546, 10547], "fusion.webfusion-secure.co.uk": [18117], "www.adsupply.com": [544], "*.redbulls.com": [13666], "hastings.firmstep.com": [19182], "wiki.cites.illinois.edu": [17258], "www.hbo.com": [19240], "vip.symantec.com": [15715], "m.lenta.ru": [19356], "blog.verslu.is": [17635], "paypal-forward.com": [12468], "kb.berkeley.edu": [17240], "shareholder.ru": [14678], "cloud.zaehlwerk.net": [18778], "www.gottman.com": [6858], "pointroll.com": [12852], "meta.stackoverflow.com": [15359], "www.ipse.co.uk": [7797], "library.eastriding.gov.uk": [5015], "youtube.ua": [18709], "platform.communicatorcorp.com": [3500], "www.harland.net": [7207], "www.haproxy.com": [7045], "www.satsymposium.org": [14076], "www.thermoscientific.com": [16349], "youtube.ug": [18709], "nintendo.com": [11417], "csc.hetnet.nl": [8743], "img.okcoin.cn": [11627], "scriptmp3.com": [14425], "www.suspiciousumbrella.uk": [19642], "multisoft.com": [10697], "www.us.adjug.com": [526], "www.reiner-sct.com": [13747], "support.sas.com": [14074], "b.alipay.com": [817], "www.staticv.net": [17572], "maidsafe.org": [9867], "internetweek.jp": [8287], "cirtexhosting.com": [3159], "testllwcmlw.barnardos.org.uk": [18981], "ots.treas.gov": [17059], "webmaker.org": [10663], "www.comscore.com": [3453], "anonops.com": [1042], "dashboard.longtailvideo.com": [9589], "www.love2d.org": [9628], "portlandonline.com": [3195], "hosting.cz": [18938], "*.umu.se": [17144], "wethegoondas.in": [18030], "screencraft.org": [14408], "blog.xenproject.org": [18558], "www.sbi.co.in": [14082], "sp.auth.adobe.com": [615], "smileexperts.osu.edu": [11760], "www.webfusion-support.co.uk": [18117], "rsrc.psychologytoday.com": [13189], "certification.canonical.com": [2810], "bookings-streaming.sydney.edu.au": [19649], "images.wambacdn.net": [17969], "store.taobao.com": [15952], "www.secdev.com": [14458], "nsfwcorp.com": [11549], "www.securecoding.cert.org": [2583], "fragdenstaat.de": [6093], "www.mercyships.org.s3.amazonaws.com": [10282], "www.usa.gov": [17029], "mmedia1.ozon.ru": [12199], "support.curated.co": [3924], "*.forgottenlands.eu": [6038], "nl.canon.be": [2809], "www.icedivx.com": [7910], "acromediainc.com": [479], "*.amsa.gov.au": [1397], "tacoda.at.atwola.com": [318], "www.bioinfo.pl": [1898], "gjopen.com": [6336], "secure.dover.gov.uk": [4718], "my.siteimprove.com": [14880], "www.okcupid.com": [11772], "*.fundrazr.com": [6258], "vc.jd.com": [8423], "secure2.intl.match.com": [10064], "assets.theatlantic.com": [16246], "gourl.io": [6790], "oregonstate.edu": [12099], "adserver.juicyads.com": [8668], "support.unseen.is": [17369], "*.rackcdn.com": [13496], "fbapp.uat.telegraph.co.uk": [16082], "www.ntia.doc.gov": [17058], "pendle.gov.uk": [12532], "www.ubfoundation.buffalo.edu": [17297], "static.owncloud.com": [12181], "regularish.com": [13742], "support.infinet.com.au": [8093], "stash.alonetone.com": [866], "www.heg.co.uk": [7502], "www.ehs.wustl.edu": [17993], "*.cspforum.eu": [2676], "cf.static.xxxbunker.com": [18607], "www.esj.com": [4962], "spiil.org": [15274], "*.stackexchange.com": [15359], "avuecentral.com": [1458], "*.mozo.co": [10666], "*.codesion.com": [3287], "www.riversidemajestic.com": [13908], "pm-utils.freedesktop.org": [6126], "bugzilla.mindrot.org": [10413], "nexway.com": [11355], "www.hereplus.me": [7328], "spreadshirt.co.uk": [15300], "www.splashthat.com": [15281], "esd.mit.edu": [9749], "xcdn.co": [18504], "www.binera.de": [7217], "agileu.com": [728], "thinglink.com": [16356], "status.greenqloud.com": [6919], "youtube.ma": [18709], "account.rovio.com": [13989], "*.feedback.minus.com": [10435], "support.blackphone.ch": [2048], "croydon.greenparty.org.uk": [6925], "firstdirect.com": [7098], "bulletproofexec.com": [2419], "nuclearcat.com": [11568], "kde-look.org": [19461, 19462], "www.cpanel.net": [2653], "mail.roffey.org": [13947], "mansfield.osu.edu": [11760], "portal.pfsense.org": [12607], "security.web.cern.ch": [2575], "naacpcompanystore.org": [10862], "lists.princeton.edu": [13064], "*.bundanon.com.au": [2426], "na1.www.gartner.com": [6463], "mnot.net": [10479], "2015.gaobase.admin.cam.ac.uk": [17243], "sug.htwk-leipzig.de": [7114], "swe.osu.edu": [11760], "www.soundgasm.net": [15162], "vegaspartnerlounge.com": [17589], "www.kotex.com": [8994], "blackarch.org": [2036], "blog.openhub.net": [12012, 12013], "grasswire.com": [6896], "userapi.com": [17490], "shop.mcafee.com": [10114], "www.efurnitureny.com": [4915], "oh-tech.org": [11623], "ox-d.openxadexchange.com": [11998], "forum.subterraneangames.com": [15568], "howto.landure.fr": [9144], "msns.osu.edu": [11760], "42.ie": [142], "www.eurosmartz.com": [5410], "mobile.plugrush.com": [12823], "ph.norton.com": [11505], "www.finanstilsynet.dk": [5832], "4id.channel4.com": [3003], "mir.wustl.edu": [17993], "api.vgc.no": [17484], "gerv.makes.org": [9916], "finanstilsynet.dk": [5832], "svnweb.cern.ch": [2575], "*.tugg.com": [16821], "www.zmap.io": [18762], "www.tescocompare.com": [16137], "securestore.discovery.com": [4554], "emc.com": [4929], "m.aldi-nord.de": [299], "kablepackaging.com": [8763], "www.quadrigacx.com": [13324], "www.blackpool.gov.uk": [2056], "rad.live.com": [9483], "www.industrymailout.com": [8077], "cdn.dota2.com": [4697], "ie.yandex.com.tr": [18649], "*.openskillz.com": [19462], "www.itdashboard.gov": [7856], "www-jp.mysql.com": [10780], "commbank.com.au": [3477], "my.uw.edu": [17077], "home.1und1.de": [68], "conference2004.kde.org": [8718], "stats.opkode.com": [12057], "www.ubuntu-mate.org": [17098], "hdh.ucsd.edu": [16939], "teacupsandtrinkets.co.uk": [15994], "pantherfile.uwm.edu": [17294], "www.numbersusa.com": [11578], "www.metapress.org": [10300], "www.tug.org": [15991], "jp.8chan.co": [204], "community.elgg.org": [3501], "www.leaserig.net": [9214], "ecologylab.net": [8246], "*.stocktwits.com": [15478], "*.shopbootsusa.com": [2213], "*.rnrwheels.com": [13438], "hotels.com": [7554], "www.ujd.gov.sk": [14972], "www.helmich.de": [7303], "www.cesiumjs.org": [2973], "www.sgsstudentbostader.se": [14113], "www.breakoutband.com": [2299], "myswitzerland.com": [19419], "mibbit.com": [10338], "formilux.org": [6044], "i3.technet.microsoft.com": [10364], "cdn.speedof.me": [15257], "public.nicereply.com": [11385], "www.springpadit.com": [15311], "*.biz.edgesuite.net": [760], "productsafety.gov.au": [13124], "directory.eoportal.org": [5314], "cert.webtrust.org": [18093], "munin.videolan.org": [17688], "pitstop.manageengine.com": [9940], "bequiet.com": [1725], "store-media.nytimes.com": [11000], "cdn1.gbot.me": [6808], "hazen.gl.ciw.edu": [2857], "*.rylwarfare.net": [13483], "seetickets.com": [14547], "socitmreporting.govmetric.com": [6866], "*.officedepot.com": [11747], "blog.fortinet.com": [6056], "www.kayak.co.uk": [8823], "www.netmundial.net": [11213], "boutique.rtbf.be": [14011], "nap.edu": [16201], "www.dunkelangst.org": [4802], "www.equalitytrust.org.uk": [5331], "ganesh.videolan.org": [17688], "insider.windows.com": [18342], "occrp.org": [11611], "www.fit.fraunhofer.de": [6112], "www.radio.feec.vutbr.cz": [17522], "www.policyalternatives.ca": [19505], "archlinux.org": [1157], "securepoint.de": [14509], "s5.mzstatic.com": [10852], "openfoundry.org": [11938], "www.coochey.net": [3634], "support.mayfirst.org": [10100], "*.bitnamihosting.com": [1945], "epa-heast.ornl.gov": [11693], "connect.aber.ac.uk": [413], "*.alaska.edu": [17235], "*.community.wholeliving.com": [10031], "www.transferwise.com": [16664], "www.vircurex.com": [17733], "www.skysql.com": [14926], "developer.gitter.im": [6684], "4freeproxy.com": [156], "bio.org": [1522], "www.biicode.com": [1869], "verkaufen.ch": [19733], "gay180.com": [6478], "wiki.cacert.org": [2520], "www.solariz.de": [19607], "www.mirrorservice.org": [10448], "www.cru-inc.com": [2660], "gallery.debianforum.de": [4276], "www1.ibdcd.com": [8323], "www.voice.fi": [17819], "leisure1.sbb.ch": [15693], "*.neosmart.net": [11151], "clippod.com": [3270], "global.fncstatic.com": [6085], "myheritage.com": [10834], "quiz.itespresso.fr": [11198], "conferences.williams.edu": [18316], "varian.com": [17564], "m.hertzequip.com": [7372], "www.echo.nasa.gov": [10868], "mail.techxpress.net": [16022], "content.azorus.com": [1208], "www.freifunk-ansbach.de": [6189], "a.ntv.io": [11558], "oderland.se": [11723], "ssl-www.static.rtbf.be": [14011], "css.createsend1.com": [3774], "jobs.redhat.com": [13675], "defenceimagery.mod.uk": [16975], "topbuy.com.au": [16559], "zamzar.com": [18784], "law.washington.edu": [17291], "bishopi.com": [1917], "www.otpdirekt.sk": [12133], "musixmatch.com": [10723], "btcgear.com": [1566], "*.aedc.gov.au": [1388], "w1.plugrush.com": [12824], "docs.unrealengine.com": [17365], "web.eecs.umich.edu": [17266], "publish.indymedia.org": [8083], "www.mobility.vutbr.cz": [17522], "standards.ieee.org": [7715], "www.polygrant.com": [12890], "accountcenter.pfizer.com": [12610], "reversens.domaintools.com": [4660], "edinburgh.gov.uk": [5084], "avaaz.org": [1437], "www.blinktrade.com": [2078], "mv.treehousei.com": [16706], "affiliate.techstats.net": [16052], "digitalgov.gov": [4488], "www.xumaa.com": [18604], "www.deutschepost.de": [19112], "fluendo.com": [5951], "www.obermassing.at": [11699], "kpn.nl": [8744], "classes.uaa.alaska.edu": [17233], "uptimerobot.com": [19717], "*.figue.com": [5574], "xxx.upx69.com": [17405], "share.sbndev.net": [14083], "www.openid.net": [11943], "i.gtimg.cn": [6993], "imagesrv.gartner.com": [6463], "www.birds-are-nice.me": [1912], "drought.gov": [4772], "librarybookings.leeds.gov.uk": [19353], "www.mims-online.com": [9743], "chemnitzer.linux-tage.de": [9398], "*.www.cfda.gov": [2894], "mail.bioinfo.pl": [1898], "lambdaops.com": [9137], "dmcloud.net": [4125], "politisktinkorrekt.info": [12877], "www-k.ext.ti.com": [16152], "peerj.com": [12515], "gameinformer.com": [6422], "www.cloudflarechallenge.com": [3286], "investor.vanguard.com": [19728], "lh6.google.*": [6837], "ecocar3.osu.edu": [11760], "cdn.toyfoundry.net": [16619], "gnomefiles.org": [19461, 19462], "*.yandex.net": [18654], "zagony.ru": [18779], "www.egyptindependent.com": [5117], "astatic.weborama.fr": [18138], "www.reconingspeakers.com": [15237], "cdn4.xvideosx.tv": [18537], "joeyh.name": [8608], "*.tal.de": [15917], "research.vt.edu": [17740], "apis.google.com": [6834], "domains.servenets.com": [14600], "*.whsmith.co.uk": [17909], "www.versions.nodejitsu.com": [11453], "billingproxy.fineproxy.org": [5845], "www.nitrokey.com": [11429], "blog.10gen.com": [14], "www.flipkart.com": [5926], "www.thunderbird-mail.de": [16404], "unitedrepublic.org": [17217], "randomhouse.biz": [13542], "www.gaug.es": [6996], "www.batmanarkhamknight.com": [1690], "jewelosco.com": [8562], "poipic.coccoc.com": [3342], "www.nlayer.net": [10939], "*.vtcsec.ru": [17516], "www.campusship.ups.com": [17007], "bn1files.storage.msn.com": [9796], "*.st-hatena.com": [7238], "auth.sandstorm.de": [14282], "www.unisend.com": [17199], "adam.law.harvard.edu": [7219], "www.wtfuzz.com": [17932], "cnsi.ucla.edu": [17241], "learn2.agilebits.com": [727], "www.kommunal.se": [8967], "my.calpoly.edu": [2747], "spam.sans.org": [14072], "idp.comcast.net": [3460], "diversity.mit.edu": [9747], "gstreamer.freedesktop.org": [19195], "duosecurity.com": [4803], "www.briandunning.com": [2312], "rspb.org.uk": [13460], "www.uu.se": [17074], "obitalk.com": [19453], "account.zanesvilletimesrecorder.com": [18785], "www.ccedk.com": [2546], "*.tnsinfo.com": [15842], "job.o.qcloud.com": [13301], "dreamspark.com": [4749], "*.marconisida.com": [3935], "piwik.werosys.de": [18023], "www.cheapairportparkingbirmingham.com": [3043], "i1.code.msdn.s-msft.com": [14058], "ukwebsolutionsdirect.com": [16968], "passion-radio.com": [12428], "*.mpi-sws.org": [10089], "www.baselland.ch": [19648], "talenttech.com": [15918], "www.padmapper.com": [12323], "info.ornl.gov": [11693], "sabayon.org": [14214], "dns.d0wn.biz": [3996], "blog.userecho.com": [17430], "g.live.com": [9483], "www.berkeleylug.com": [1785], "kpt.ch": [8745], "secureusa.greenpeace.org": [6937], "www.demworks.org": [4341], "ssl.goeswhere.com": [6805], "www.8tracks.com": [205], "www.woopra.com": [18423], "dev.thegreatcoursesplus.com": [16284], "ud-media.de": [16947], "*.bytelove.com": [2490], "pro.connexity.com": [3583], "el.libreoffice.org": [9311], "johoobuy.com": [8614], "*.thethemefoundry.com": [16318], "deutsch.peerius.com": [12522], "prospecteye.com": [13163], "it.cloudflare.com": [3285], "svn.freebsd.org": [6120], "edlund.dk": [5088], "www.acm.org": [261], "partner.steampowered.com": [15450], "www.0xbadc0de.be": [7], "www.heathkit.com": [7278], "www.bw.com": [1584], "picnichealth.com": [12662], "fairwork.gov.au": [5633], "www.aolcdn.com": [322], "efinancialcareers.cn": [4910], "www.amnesty.at": [958], "komplett.no": [8970], "www.katasterportal.sk": [14972], "www.demonoid.pw": [4358], "www.lbhf.gov.uk": [9064], "static.zhihu.com": [18856], "www.redstate.com": [13663], "services.tineye.com": [16468], "images.offerpop.com": [11739], "*.storage.live.com": [9483], "www.bitlendingclub.com": [1934], "assets.alicdn.com": [805], "fav.me": [4422], "sandbox.bluesnap.com": [2136], "xgaming.com": [18513], "postimage.org": [19511], "www.titania.com": [16501], "unt.edu": [17269], "track.iconfinder.com": [7921], "*.openblox.org": [11924], "www.demonoid.ph": [4358], "www.pdftoword.com": [12237], "mobilshop.netcologne.de": [11188], "static.plymedia.com": [12270], "api.fortiguard.com": [6055], "optionsanimal.com": [12076], "apps.mhf.dod.mil": [17028], "remotedesktop.web.cern.ch": [2575], "wiki.gsi.de": [6389], "chartbeat.com": [3018], "councillors.herefordshire.gov.uk": [7327], "strem.io": [15522], "vmkfb.tdconline.se": [15799], "altera.com": [876], "netvibes.com": [11257], "es.internetessentials.com": [19300], "www.stanfordmed.org": [15387], "www.zynga.com": [18933], "rcm-images.amazon.com": [910], "info.ceneo.pl": [2935], "mkk.com.tr": [9754], "www.wantful.com": [17974], "*.doubleclick.net": [4716], "megiteam.pl": [10234], "wiki.github.com": [6680], "www.transversal.com": [16684], "patrimoniocultural.unizar.es": [17356], "van.physics.illinois.edu": [17258], "api.qrserver.com": [13286], "www2.woolworthsonline.com.au": [18422], "domdex.com": [4667], "santanderbillpayment.co.uk": [14292], "www.srds.com": [14166], "free.hands.com": [7190], "cdn.zwame.pt": [18925], "linear.com": [9368], "www.nro.net": [11577], "www.discounttheatre.com": [4544], "v2c.lrz.de": [9238], "upware.comcast.com": [3461], "kolabnow.com": [8961], "uchicago.edu": [17246], "accuvant.com": [468], "www.yourvideofile.org": [18740], "www.nodes.dk": [11455], "passwordless.net": [19479], "static.x10hosting.com": [18498], "stadt-bremerhaven.de": [15367], "alianza.tv": [807], "media.apnaindia.com": [1096], "www.artedolar.com.br": [1227], "abenteuermako.tivi.de": [19800], "yoursupportservices.co.uk": [18732], "www.17track.net": [39], "de.indymedia.org": [8085], "precollegiate.stanford.edu": [15383], "bitbucket.com": [1926], "www.yieldlab.de": [18681], "www.syscoding.com": [15751], "img3.linuxdeepin.com": [4302], "www.healthystart.nhs.uk": [10913], "www.cis.vutbr.cz": [17522], "www.caisse-epargne.fr": [2721], "www.digitaltransactions.net": [4484], "book.invasion.com": [8310], "thingiverse.com": [16358], "api.yandex.com.tr": [18649], "gogoair.com": [6807], "law.cuny.edu": [3188], "secureassets.clickmotive.com": [3248], "rog.asus.com": [356, 357], "www.aphis.usda.gov": [17209], "metro.co.uk": [10320], "libguides.com": [9289], "www.bury.gov.uk": [19027], "plan.scambs.gov.uk": [19566], "www.glose.com": [6748], "www.submittable.com": [19636], "www.divshare.com": [19120], "www.edigitalsurvey.com": [4901], "m.contact.yandex.com.tr": [18649], "youtube.bg": [18709], "main.trafficfactory.biz": [16650], "cms.executive.mit.edu": [9749], "applications.cpanel.net": [2653], "www.threatpost.ru": [16396], "bouncycastle.org": [2247], "kabel.canaldigital.no": [2803], "www.master.yandex.com.tr": [18649], "www.rkn.gov.ru": [13913], "financing.dell.com": [4335], "www.msgme.com": [19413], "www.mcafeesecure.com": [10116], "prelaunch.techxpress.net": [16022], "illustre.ch": [19283], "static.flattr.net": [5910], "www.cryptome.info": [3879], "ewebcart.com": [19170], "nos.pt": [11512], "www.linode.com": [9387], "www.servercow.de": [14612], "elements.yandex.com.tr": [18649], "jp.fujitsu.com": [6245], "*.lippu.fi": [9440], "chl.it": [2598], "islington.greenparty.org.uk": [6925], "www.puppetlabs.com": [13232], "www.myricom.com": [10843], "u.thebrighttag.com": [2325], "data.mcc.gov": [19388], "docs.ocaml.org": [11612], "learn.flexport.com": [5915], "www.domainsbyproxy.com": [4664], "veronikamaine.com.au": [17631], "sec-s.uicdn.com": [16957], "flocabulary.com": [5935], "wiki.mediatemple.net": [10165], "www.pro-managed.com": [13107], "*.tmimgcdn.com": [16106], "phonebook.cern.ch": [2575], "www.acoustics.org": [477], "ittraining.iu.edu": [8064], "www.sedo.fr": [14544], "help.iwantmyname.com": [19313], "hbbtv.ndr.de": [11119], "familie-redlich.de": [5644], "*.wufoo.com": [18481], "www.fsfe.org": [5601], "www.gowalker.org": [6798], "www.startovac.cz": [19624], "img3.wakelet.com": [17953], "doc.rust-lang.org": [14047], "support.sensiolabs.com": [14586], "www.lourdas.name": [9624], "ctd2.nci.nih.gov": [11052], "gobi.krystal.co.uk": [9024], "browseraddon.com": [2373], "rss.imensa.de": [7988], "*.lttng.org": [9106], "benchmarkjs.com": [18990], "chat.otalk.im": [12130], "saml.uvt.nl": [16445], "oskicatp.berkeley.edu": [17240], "onsiteconcierge.com": [13392], "globalsign.com.*": [6718], "secure.aclu.org": [256], "dmtracking.1688.com": [36], "www.vikingvpn.com": [17711], "blog.oneplus.net": [11841], "salesmanago.pl": [14069], "hosted-oswa.org": [7521], "outcampaign.org": [12149], "www.arpxs.com": [1209], "cmpxchg8b.com": [2628], "fegp.unizar.es": [17356], "bookacourse.com": [2200], "blogs.gartner.com": [6463], "passport.weibo.com": [18187], "parrable.com": [12408], "*.onescreen.com": [11842], "sprint.com": [15314], "www.transmode.com": [16678], "stallman.org": [15373], "diogomonica.com": [4521], "www.eleves.ens.fr": [4930], "gnuheter.com": [12767], "www.daringfireball.net": [4147], "www2.nationalreview.com": [11073], "www.thezaplab.com": [18790], "patchwork.netfilter.org": [11225], "federatedinvestors.com": [5721], "www.us-ignite.org": [17020], "jobsuche-hochschulanzeiger.fazjob.net": [5554], "itaobao.taobao.com": [15952], "*.compiz.org": [3522], "www.law.stanford.edu": [15383], "www.cloudafrica.net": [3281], "geany.org": [6483], "*.elitepartner.de": [5168], "flavors.me": [5912], "www.kongregate.com": [8977], "ads.okcimg.com": [11771], "www.freenode.org": [19196], "www.dynu.com": [4836], "r-sec.casalemedia.com": [2870], "epson.com.mx": [5330], "*.trafficholder.com": [16646], "observatorioigualdad.unizar.es": [17356], "www.billetnet.dk": [16421], "partner.yandex.com": [18651], "www.elastic.co": [5142], "piwik-short.web.cern.ch": [2575], "appleid.apple.com": [1120], "gpc.wustl.edu": [17993], "mycontactual.com": [3609], "imail.iu.edu": [8064], "bullockinc.com": [2422], "sesame.cnrs.fr": [6195], "olinblog.wustl.edu": [17992], "gfx2.aftonbladet-cdn.se": [715], "lunarmods.com": [569], "www.coophotellkupp.com": [3646], "www.shaw.ca": [14687], "imfreedom.org": [8183], "*.gravatar.com": [6899], "crm.newint.org": [11297], "web3.cc.ntu.edu.tw": [10971], "hunchlab.com": [7618], "sharethenetwork.com": [14670], "res-1.cloudinary.com": [3307], "northdevontheatres.org.uk": [11495], "www.ars.usda.gov": [17039], "clearxchange.com": [3232], "nebelwelt.net": [11125], "www.ntid.rit.edu": [13434], "uva.nl": [17458], "themeroller.jquerymobile.com": [8452], "www.lrcd.com": [9642], "www.origin.com": [12106], "www.urbanvilla.nl": [17409], "postel.it": [12967], "apps2.cardiff.gov.uk": [19039], "forum.x-cart.com": [18494], "sonystyle.com.mx": [15150], "forum.1und1.de": [68], "fdc.freescale.com": [6183], "www.kbit.dk": [8712], "oumedicine.staywellsolutionsonline.com": [12140], "adtmag.com": [273], "focusonlearningcenter.com": [5976], "wiki.sequanux.org": [14591], "web.extension.illinois.edu": [17258], "mail.wusm.wustl.edu": [17993], "nasuni.com": [11040], "governmentattic.org": [6872], "freshbsd.org": [6200], "staged-by.rubiconproject.com": [14014], "brightoncollectibles.com": [2331], "www.pastebin.com": [12443], "sirket.yandex.com.tr": [18649], "registrar.wustl.edu": [17993], "www.couponcabin.com": [3711], "connect.cryptoseal.com": [3864], "www.box.osu.edu": [11760], "b-ssl.grvcdn.com": [6989], "www.offerpop.com": [11739], "www.mydatapipe.com": [10803], "ad-stir.com": [513], "engelsystem.de": [5264], "netkompakt-fuer-mitarbeiter.netcologne.de": [11188], "compaq.com": [3510], "toc.taleo.net": [15922], "sso.kabelmail.de": [8760], "start.vendoservices.com": [17606], "your.hispeed.ch": [19716], "freecode.com": [6161], "forecast.io": [6023], "m.regalii.com": [13727], "upphandling24.idg.se": [7705], "static.ziffdavis.com": [18860], "www.stlbeacon.org": [15355], "vdrn.redplum.com": [13662], "form.digikey.com": [4469], "ethos-os.org": [5386], "www.stellaservice.com": [14190], "xue.taobao.com": [15952], "i.alicdn.com": [805], "ctaxdd.cardiff.gov.uk": [19039], "*.movim.eu": [10644], "braunschweig.de": [2291], "static-hp-eus.s-msn.com": [14059], "media.gta.arch.ethz.ch": [4975], "wrd.cm": [18363], "afcd.gov.hk": [7074], "rlv.zcache.com": [18805], "www.coincheck.jp": [3403], "cdn2.xvideosx.tv": [18537], "cs.soe.ucsc.edu": [17305], "servicesonline.opm.gov": [11654], "id.tmtm.ru": [15837], "www.nakedcitizens.eu": [11013], "e-citations.ethbib.ethz.ch": [4975], "www.prettylittlething.com": [13042], "www.icommons.org": [7700], "www.fotopigeon.com": [6074], "*.kariera.gr": [8796], "brooksidefund.com": [2364], "appengine.google.com": [6834], "trac.xiph.org": [18575], "images.shazam.com": [14689], "careers.usc.edu": [17278], "hwb.birmingham.gov.uk": [19000], "blogs.kennedy-center.org": [19335], "*.unblocked.li": [17151], "pipedot.org": [12700], "www.southbankcentre.co.uk": [15192], "www.rotherham.gov.uk": [13979], "jenkins.osmand.net": [12124], "sw.ro.vutbr.cz": [17522], "nowwhere.com.au": [19443], "bmdw.org": [1529], "cadsoft.de": [2711], "company.yandex.com.tr": [18649], "undergradresearch.wustl.edu": [17993], "justin.tv": [16888], "www.morningstaronline.co.uk": [10594], "releases.qt-project.org": [13314], "www.fraedom.com": [19193], "www.webassign.net": [18054], "www.hitfarm.com": [7425], "vagrantcloud.com": [17528], "www.dreamsolution.nl": [4753], "leeds.ac.uk": [17318], "solarbotics.com": [15111], "*.davidsontutoring.com": [4229], "www.reformgovernmentsurveillance.com": [13720], "resources.4tulemar.com": [155], "www.truste.com": [15856], "www.brooksidefund.com": [2364], "screenshots.tbspace.de": [19662], "*.met.vgwort.de": [17483], "www.searchnetworking.de": [16018], "pcvlab.engineering.osu.edu": [11760], "damnsmalllinux.org": [4129], "share.servicenow.com": [14622], "louisville.edu": [17320], "www.amazon.it": [917], "pcicomplianthosting.com": [12535], "assets.area17.com": [1179], "torreycommerce.net": [16592], "www.fms.treas.gov": [17059], "www.nationalgrid.com": [11081], "support.coinbase.com": [3402], "azure.microsoft.com": [10364], "www.billboard.com": [1879], "redbox.com": [13681], "kirlism.ga": [19338], "www.petsathome.com": [12601], "www.zwijndrecht.nl": [11132], "amazon.co.jp": [918], "api.yubico.com": [18745], "*.gtk-apps.org": [19462], "www.smashfly.com": [15002], "kan.taobao.com": [15952], "www.zefflin.com": [18811], "api.btnapps.net": [2354], "www.anirena.com": [1021], "medicina.unizar.es": [17356], "sugarlabs.org": [15581], "web.pirateleaks.cz": [12705], "assets.devsbuild.it": [4432], "periscope.tv": [12573], "partners.pricegrabber.com": [13052], "city.yandex.by": [18648], "cloudera.com": [3302], "partners.blackberry.com": [2050], "smetrics.barclays.co.uk": [1662], "fsdata.se": [5605], "www.nfc.usda.gov": [17209], "jira.onosproject.org": [11649], "btn.createsend1.com": [3774], "www.mirc.com": [9746], "psi.oasis-open.org": [11605], "listserv.opm.gov": [11654], "tuan.jd.com": [8423], "www.prettyeasyprivacy.com": [12502], "stripecdn.com": [15526], "www.savvyhawk.com": [14317], "chime.in": [3080], "www.canon.lt": [2809], "www.canon.lu": [2809], "www.canon.lv": [2809], "sescoops.com": [14104], "www.watermarquee.com": [18000], "www.leadertech.com": [9199], "www4.labcorp.com": [9122], "store.boingboing.net": [2181], "*.static.flickr.com": [5918], "www.xplr.com": [18586], "agenda.weforum.org": [17902], "licensing.warrington.gov.uk": [17984], "www.addy.co": [579], "alcatel-lucent.com": [782], "hexspoorwms.nl": [7383], "stage.satoshilabs.com": [19564], "www.leastauthority.com": [9216], "www.plex.tv": [12814], "*.ic-live.com": [7907], "customcare.fender.com": [5748], "www.blackpearlpdm.com": [2039], "audioprointernational.com": [8226], "prometheus-group.com": [13150], "*.messagingengine.com": [10291], "www.apan.org": [329], "capitaller.ru": [2820], "ctf.thechildrensmutual.co.uk": [3075], "www.mutualofamerica.com": [10733], "differencebetween.net": [4462], "*.certifiedsecure.com": [2970], "www.grassroots.org": [6895], "downloadverse.com": [4726], "img.secureserver.net": [14511], "itunesu.itunes.apple.com": [1120], "app-uk1.resrc.it": [13599], "ceaa.osu.edu": [11760], "*.physicalsecurity.ucsc.edu": [17304], "www.prod.facebook.com": [5620], "mla.stanford.edu": [15383], "gearlab.osu.edu": [11760], "micro.seas.harvard.edu": [7219], "www.study.cam.ac.uk": [2763], "www.coindaddy.io": [3393], "*.livestrong.com": [9502], "online.uen.org": [17452], "videoplaza.tv": [17698], "www.gwent.police.uk": [7033], "joinup.ec.europa.eu": [5421], "www.landofbitcoin.com": [9139], "eais.rkn.gov.ru": [13913], "*.offeredby.net": [12388], "www.changemakers.com": [2996], "*.autotrader.com": [1419], "spiceworks.com": [15266], "openssl.org": [11970], "understood.org": [17159], "www.major.io": [9900], "meta.tagesschau.de": [19656], "s25.cnzz.com": [3331], "www.embeddedanalytics.com": [5199], "licai.jd.com": [8423], "baztab.net": [1709], "colm.net": [3434], "bookmyname.com": [2199], "*.scanadu.com": [14333], "heg.co.uk": [7502], "superantispyware.com": [15612], "infocenter.stanford.edu": [15383], "*.redbullmobile.com": [13670], "intranet.soe.ucsc.edu": [17305], "git-scm.com": [6673], "voipuserportal.co.uk": [5290], "www.ivdopia.com": [17582], "*.ahm.com.au": [737], "netistrar.com": [11237], "filepost.com": [5793], "*.glamorousuk.com": [6698], "events.networkworld.com": [11266], "babytalk.stanford.edu": [15383], "nesea.org": [10900], "*.us0.cloud.oracle.com": [12082], "subscription.timeinc.com": [16460], "www.plusme.net": [12831, 12832], "mutelight.org": [10728], "www.noo.org.uk": [10944], "societyforscience.org": [15078], "www.data.nasa.gov": [10869], "quickstarts.asp.net": [353], "jobs.douban.com": [4707], "www.card.wustl.edu": [17993], "secure.inertianetworks.com": [8086], "www.mitpressjournals.org": [9750], "*.ad4game.com": [514], "teach-ats.ed.gov": [4889], "blog.codinghorror.com": [3385], "honda.engineering.osu.edu": [11760], "extranet.wienernetze.at": [18284], "www.mailoo.org": [9888], "form.percona.com": [12557], "forum.stanford.edu": [15383], "forum.security-portal.cz": [14520], "xemail.de": [18555], "layout.web.cern.ch": [2575], "aliqin.tmall.com": [19684], "burstmedia.co.uk": [2446], "crypto.is": [3853], "tiltedwindmillpress.com": [16449], "*.skch.me": [14900], "www.camsis.cam.ac.uk": [17243], "apps.ncl.ac.uk": [10884], "blog.library.leeds.ac.uk": [17318], "media.economist.com": [5060], "crackedconsole.com": [3751], "press.ci.uchicago.edu": [17245], "download.jitsi.org": [8583], "logilab.org": [9558], "jquery.org": [8450], "karelia.rt.ru": [13469], "a5.twimg.com": [16877], "freifunk-karlsruhe.de": [6191], "wellcomelibrary.org": [19753], "wac.edgecastcdn.net": [5079], "*.visualwebsiteoptimizer.com": [17783], "chronixradio.com": [3120], "sedonaaz.gov": [3185], "www.paypal.co.uk": [12467], "sikkerhed.tdc.dk": [15796], "oneonline.devon.gov.uk": [4428], "*.universalsubtitles.org": [17227], "secure.interq.or.jp": [8232], "www.carmen.osu.edu": [11760], "www.superrepo.org": [15616], "powertothepooch.com": [12997], "jezykpolski.istockphoto.com": [19309], "www.annotum.org": [18428], "publishers.quinstreet.com": [13366], "www.grad.stonybrook.edu": [15480], "newscenter.lbl.gov": [9065], "track.tagesanzeiger.ch": [15908], "image-maps.com": [7976], "docs.sonatype.com": [15132], "api.del.icio.us": [7920], "ittprovider.education.gov.uk": [19149], "www.investorsinpeople.co.uk": [8322], "wiki.maemo.org": [9844], "aspsys.com": [1274], "lovemoney.com": [9631], "www.lob.com": [9533], "www.deepin.com": [4302], "www.desjardins.com": [4391], "www.ethoscustombrands.com": [5387], "*.handbrake.fr": [7185], "pcmd.ac.uk": [12536], "software.cisco.com": [3162], "www.splashdata.com": [15280], "threat2alert.com": [16391], "*.sodahead.com": [15083], "dialogs.com": [4443], "www.watford.gov.uk": [19747], "apps.unhosted.org": [17164], "hhcdn.ru": [7063], "proultratrim.com": [13117], "advertising.yandex.by": [18648], "forum.kasperskyclub.ru": [8809], "static.sehirfirsati.com": [14562], "lms.uibk.ac.at": [19710], "naacp.org": [10861], "fodevarewatch.dk": [5977], "ftp-master.metadata.debian.org": [4274], "*.on-disk.com": [11806], "telekom.de": [4410], "myvarian.com": [10796], "veloplus.ch": [19732], "f5networks.co.uk": [5545], "bcourses.berkeley.edu": [17240], "cache-uat.freescale.com": [6183], "login.softwareplanner.com": [14986], "www.greatfire.org": [6907], "marketingresearch.org": [10013], "adhocracy.de": [587], "2k.com": [86], "openshift.com": [11973], "indico.dns-oarc.net": [4059], "blocketsannonswebb.se": [2095], "www.unity.com": [17220], "connect.tape.tv": [15956], "help.nametiles.co": [11027], "bandcamp.com": [1638], "veber.co.uk": [17585], "evoice.co.uk": [4987], "onesolution.cz": [11647], "out-law.com": [12146], "mail.sedoholding.com": [14545], "portadi.com": [12934], "portal.fsisac.com": [5606], "autodiscover.bassetlaw.gov.uk": [1688], "my.ncl.ac.uk": [10884], "www.wizbangblog.com": [18388], "www.recombu.com": [13648], "leaderlandnews.com": [9200], "maximintegrated.com": [10096], "autodiscover.hinxton.wellcome.ac.uk": [19752], "uninett.no": [17192], "consult.bracknell-forest.gov.uk": [19016], "cas.nebezi.cz": [11126], "4gamer.net": [160], "webmail.fruct.org": [5595], "www.argeweb.nl": [1181], "culi.org": [2950], "kasserver.com": [8706], "*.ordnancesurvey.co.uk": [12097], "blog.outbrain.com": [12150], "vaden.stanford.edu": [15382], "*.domainrendelo.hu": [4665], "ghostnoteapp.com": [6632], "ebankingabersicher.ch": [4870], "otr.cypherpunks.ca": [11734], "bucketlistly.com": [2385], "stipendium.vutbr.cz": [17522], "www.holtwick.it": [7460], "smarthome.jd.com": [8423], "*.igniterealtime.org": [7952], "i.taobao.com": [15952], "games.mail.ru": [9874], "munich2012.drupal.org": [4780], "vforms.ryedale.gov.uk": [14055], "cronius.nl": [3809], "cs.cornell.edu": [3676], "community.centminmod.com": [2953], "www.openmamba.org": [19465], "encryptallthethings.net": [5236], "registrar.cornell.edu": [3676], "www.nettitude.co.uk": [11253], "www.rockpapershotgun.com": [13937], "community.cisecurity.org": [2617], "www.edarabia.com": [5072], "blog.refeds.org": [13413], "blog.quantopian.com": [13340], "www.bigchangeuk.co.uk": [1851], "scap-on-apple.macosforge.org": [9820], "nature.cnr.berkeley.edu": [17240], "code.flickr.net": [5917], "www.chipworks.com": [3089], "git.csx.cam.ac.uk": [17243], "p18.qhimg.com": [13302], "www.lotame.com": [9613], "www.ny.curbed.com": [3926], "youtube.kr": [18709], "*.weatherzone.com.au": [18037], "courtesan.com": [6897], "zcarot.com": [18755], "it.norton.com": [11505], "members.worlddab.org": [18448], "en.community.dell.com": [4335], "maps.googleapis.com": [6841], "gosi.gov.sa": [14306], "id.apple.com": [1120], "www.gamesonly.at": [6436], "www.zuerich.ch": [19805], "post.dessaly.com": [4395], "xine-project.org": [18573], "unwantedwitness.or.ug": [17375], "roleplaychat.org": [13955], "svn.openezx.org": [11935], "www.micampuscompact.org": [10344], "cs.segpay.com": [14556], "*.ted.com": [15806], "downloads10.mamp.info": [19379], "sensic.net": [11581], "*.liftdna.com": [9339], "www.ciscoconnectcloud.com": [3163], "appsto.re": [1136], "tinyapps.org": [16486], "scipy.org": [14374], "www.tv.yandex.kz": [18652], "www.mynortonaccount.com": [11505], "d2jsp.org": [3997], "costprojections.cancer.gov": [2805], "*.pixfuture.net": [12734], "www01.extra.americanexpress.com": [935], "gistest.gloucestershire.gov.uk": [6749], "wabi.com": [17938], "www.ldscdn.org": [16219], "mantisbt.org": [19383], "boxcar.io": [2257], "www.exchangewire.com": [5485], "www.wigglestatic.com": [18287], "www.phone.coop": [12635], "westmercia.police.uk": [18207], "themes.piwik.org": [12733], "i1.daumcdn.net": [4220], "enpt.dict.cc": [4455], "www.wagner.edu": [17947], "www.wikivs.com": [18299], "bugs.alpinelinux.org": [869], "jeena.net": [8543], "www.tr0n.net": [16625], "www.firefox.net.cn": [5860], "blog.exacttarget.com": [5477], "education.magix.com": [9708], "rtems.org": [13472], "studentservicescenter.stanford.edu": [15383], "nmfc.osu.edu": [11760], "syslab.cs.washington.edu": [17291], "media.220volt.hu": [72], "www.kivikakk.ee": [19339], "i02.c.aliimg.com": [813], "partnersignup.register.com": [13732], "www.kasperskyclub.ru": [8809], "www.kapiton.se": [8789], "ausgovboards.gov.au": [1393], "royalmail.com": [14000], "iea.org": [8265], "fr.redhat.com": [13675], "*.aeriastatic.com": [686], "operatingsystems.io": [12051], "www.northnorfolk.org": [11497], "donate.fftfef.org": [5766], "tmdb.org": [15829], "rottnestfastferries.com.au": [13984], "news.spotify.com": [15296], "insa-lyon.fr": [7771], "service.xbox.com": [18550], "76.9.16.34": [16646], "plone.lucidsolutions.co.nz": [9644], "*.test-ipv6.cz": [16144], "www.nodejsmodules.org": [11449], "www.nber.org": [11077], "www.inf.uni-hamburg.de": [16951], "*.ebid.net": [19133], "static.ak.facebook.com": [5620], "beta.gismeteo.ru": [6669], "nrenservices.geant.net": [6313], "mtsystems.ch": [10680], "srds.com": [14166], "3dstats.com": [123], "ada.osu.edu": [11760], "www.zarafa.com": [18795], "s.tmocache.com": [15836], "www.pdcnet.org": [12626], "t.umblr.com": [19713], "hrsystems.admin.cam.ac.uk": [17243], "www.tigr.net": [16442], "*.moneybookers.com": [10550], "www.sugarcrm.com": [15582], "hits.theguardian.com": [16288], "www.dizaineriai.lt": [4588], "www.mullet.se": [10693], "images.g.switchadhub.com": [15701], "hostit.hu": [7536], "www.webinspector.com": [18040], "app.uclinics.com": [16945], "p0.focus.de": [5974], "cdn.images.dailystar-uk.co.uk": [4112], "tubbergen.nl": [11132], "www.lntecc.com": [9092], "entsupport.symantec.com": [15715], "*.tintup.com": [16477], "catalog.umd.edu": [17263], "teapartypatriots.org": [15992], "www.toshiba.co.jp": [16597], "www.gnomefiles.org": [19461], "hbbtv.org": [7252], "www.harrow.io": [7213], "static2.symanteccloud.com": [15715], "images.1sfx.net": [11842], "*.aan.com": [936], "vayable.com": [17577], "www.omnigroup.com": [11793], "track.netshelter.net": [11208], "focuscamera.com": [5975], "x.ai": [19780], "www.mytritonlink.ucsd.edu": [16939], "piwik.pso-vertrieb.de": [13186], "*.dt00.net": [9739], "www.spice-space.org": [15264], "intranet.slac.stanford.edu": [15383], "*.adscale.de": [626], "login.barracuda.com": [1680], "za.norton.com": [11505], "webapps.brown.edu": [2367], "www.resortquestsecure.com": [18490], "www.streetmoda.com": [15521], "mercurial-scm.org": [10279], "treehousei.com": [16706], "cia.vc": [3131], "micropartsusa.com": [10358], "formalyzer.com": [16630], "gekko.spiceworks.com": [15266], "gemcutter.org": [14021], "www.medipreis.de": [10142], "mysitemyway.com": [10845], "lcamtuf.blogspot.com.*": [2113], "gmx.li": [6350], "gmx.lu": [6350], "iamplify.com": [7672], "aiswiki.wustl.edu": [17993], "rs.aol.co.uk": [320], "xiscosoft.com": [18576], "analytics.pirateparty.org.au": [12713], "*.terresoubliees.com": [16131], "www.metasploit.com": [10310], "en-sq.dict.cc": [4455], "subsurface.hohndel.org": [3503], "dnainfo.com": [19121], "stuvel.eu": [15549], "piwik.heanet.ie": [7269], "www.securityevaluators.com": [14527], "my.avast.com": [1444], "i2.social.s-msft.com": [14058], "s.flipboard.com": [5925], "onlineservice.netcologne.de": [11188], "www.ewellnessmag.com": [4992], "static.ssl7.net": [14496], "*.dp.yieldmanager.net": [13881], "thejh.net": [8512], "svn.xiph.org": [18575], "*.cloudera.com": [3302], "haaksbergen.nl": [11132], "www.segpay.com": [14556], "blog.profitbricks.com": [13129], "api.mailigen.com": [9886], "upplandsvasby.se": [17396], "icukhosting.co.uk": [7694], "azingsport.se": [1482], "prepayparking.surreyheath.gov.uk": [19641], "*.sidearmsports.com": [14763], "webcenter.tiscali.it": [16498], "www.wpsoftware.net": [17925], "st.web.cern.ch": [2575], "reddpics.com": [13688, 13689], "p.iivt.com": [12420], "i2.iis.net": [7741], "leadershipacademy.nhs.uk": [10913], "www.condor.com": [3561], "igd.fraunhofer.de": [6112], "covacations.com": [3619], "www.mincommsy.uni-hamburg.de": [9744], "solarlist.com": [15110], "*.appspot.com": [6850], "autodiscover.somerset.gov.uk": [15127], "merchants.groupon.com": [6974], "www.live.com": [9483], "trust-center.verisign.dk": [17623], "directory.ua.edu": [16924], "support.csbs.utah.edu": [17288], "securedcontent.net": [14501], "secure.marvel.com": [10038], "*.vacenza.com": [17527], "*.sunrise.ch": [15603], "www.podcasts.it.ox.ac.uk": [17271], "digitalmedia.hhs.gov": [7062], "allybank.com": [865], "*.npario.com": [10952], "people.csail.mit.edu": [9749], "pornhublive.com": [12927], "up.nytimes.com": [11000], "www.rt.isy.liu.se": [9084], "gcloud.civilservice.gov.uk": [19066], "support.euro.dell.com": [4335], "resources.bazaarvoice.com": [1708], "www.tropo.com": [16760], "*.static.img-dpreview.com": [4497], "developer.rackspace.com": [13506], "*.terena.org": [16121], "stayfriends.ch": [15444], "chat.livechatinc.net": [9485], "pogoda.yandex.kz": [18652], "www.arisebitcoin.com": [1193], "burstmedia.com": [2446], "advancement.osu.edu": [11760], "gallery.lugons.org": [9108], "landaire.net": [19347], "coopzeitung.ch": [3645], "quikcallus.com": [13364], "cacert.com": [2520], "cx.hinckley-bosworth.gov.uk": [7412], "time.yandex.com.ua": [18650], "www.smi2.net": [15005], "dotomi.com": [4702], "eshop.asus.com": [357], "simplesharebuttons.com": [14824], "tinyjpg.com": [16481], "www.bitcoinshop.us": [1970], "store.griffintechnology.com": [6954], "www.teac.co.jp": [15804], "kitepackaging.co.uk": [8923], "*.misco.co.uk": [10452], "edu.exmail.qq.com": [13285], "nic.es": [4673], "www.finansportalen.no": [5830], "raeng.org.uk": [13991], "www.degreeaudit.osu.edu": [11760], "cdn.openculture.com": [12006], "cpan.metacpan.org": [10297], "invention.nasa.gov": [10869], "www.xmos.com": [18523], "www.hizliresim.com": [7433], "checksconnect.com": [7207], "mechanical.illinois.edu": [17258], "m.treasury.gov": [16704], "idn.serveriai.lt": [14616], "opennet.net": [11962], "info.veracode.com": [17614], "extranets.pinsentmasons.com": [12697], "bitcoin.org": [1930], "m.webmail.earthlink.net": [5007], "trauer.de": [16689], "bravelyonward.com": [2293], "git.nlnetlabs.nl": [10941], "www.brainbench.com": [2266], "op-webtools.web.cern.ch": [2575], "fs.liu.se": [9084], "th.itradecimb.com.sg": [2607], "id.socialreader.com": [15066], "supporterservices.amnesty.org.nz": [967], "*.steganos.com": [15462], "bostonglobemedia.com": [2234], "bs.serving-sys.com": [14628], "caringcommunity.cornell.edu": [3676], "www.exposingtheinvisible.org": [5514], "www.feedmyinbox.com": [5739], "www.docracy.com": [4620], "slfacilities.osu.edu": [11760], "torrentfunk.com": [16581], "www.youtube.com.kw": [18709], "ssae.symantec.com": [15715], "coolcart.net": [3637], "www.math.uni-heidelberg.de": [17174], "entropay.com": [5300], "my.aerofs.com": [688], "reg.jd.com": [8423], "pfsense.org": [12607], "bip.panoptykon.org": [12365], "www.pin1.harvard.edu": [7219], "www.jrrt.org.uk": [8633], "eyefilm.nl": [4998], "www.wrapbootstrap.com": [18471], "pw.cdn.gmru.net": [6349], "microchip.com": [10353], "*.lessthan3.com": [9259], "www.shared.sx": [14672], "pplwssvcs.lowes.com": [9636], "ads.contentabc.com": [3612], "templates.prediction.io": [13023], "animenewsnetwork.com": [18957], "mail.his.com": [7293], "lingue.de": [9373], "api.embed.ly": [5197], "www.digikey.com": [4469], "cbu01.alicdn.com": [805], "boss429.deathmask.net": [4266], "causes.presscdn.com": [2909], "static.bluejeans.com": [2139], "www.southampton.gov.uk": [15191], "cryptorave.org": [3862], "www.citizenfourfilm.com": [3174], "cdn1.ustream.tv": [17450], "www.alpinelinux.org": [869], "*.chaosreigns.com": [3006], "dacorum.greenparty.org.uk": [6925], "www.kargo.com": [8795], "techwebonlineevents.com": [16021], "efesto.eigenlab.org": [19151], "newsregistry.com": [11323], "*.stubhubstatic.com": [15534], "tilestream.ecc-platform.org": [4879], "www.bo.infn.it": [7766], "discovery.illinois.edu": [17258], "growthhackers.com": [6984], "www.portaldocidadao.pt": [6873], "*.where2getit.com": [18239], "*.binefreund.de": [5937], "www.soic.indiana.edu": [8065], "git.x2go.org": [18499], "www.cloudscaling.com": [3314], "cdn.ghacks.net": [6328], "team.websitealive.com": [18149], "*.tripit.com": [16743], "program-think.blogspot.co.*": [2113], "www.communicatelive.co.uk": [3499], "aurel32.debian.net": [4273], "www.guildmc.com": [7012], "mork.mo": [10593], "xiscosoft.com.es": [18576], "pensionscoach.cash.ch": [19043], "www.dig.domains": [4465], "www.votewatch.eu": [17846], "forums.playwarz.com": [17975], "fsadownload.ed.gov": [4889], "austrian.com": [1406], "images.journals.lww.com": [9439], "success.adobe.com": [615], "info.web.de": [18050], "bundeskanzlerin.de": [2428], "cs.washington.edu": [17291], "us-business.kaspersky.com": [8806], "*.myregisteredsite.com": [10842], "status.acast.com": [18935], "www.laynepublications.com": [9183], "www.kevinajacobs.com": [8863], "people.fedoraproject.org": [5726], "www.bls.ch": [1526], "sandbox.gogetssl.com": [6780], "enterprisersproject.com": [5293], "uploads.www.gigya.com": [6659], "jochen-hoenicke.de": [8605], "www.diningservices.wustl.edu": [17993], "metrics.skype.com": [14938], "23andme.com": [74], "rewardz.vodafone.co.uk": [17813], "cacheserve.williamhill.com": [18315], "www.ssldecoder.org": [14179], "my.greenqloud.com": [6919], "hexchat.net": [19246], "www.modmyi.com": [10513], "hertzequip.com": [7372], "secimg.vmmpxl.com": [17806], "*.greensky.com": [6920], "www.mapquest.com": [9970], "reclaim-your-privacy.com": [13645], "mercury.ornl.gov": [11693], "www.pdfcrowd.com": [12500], "www.favu.vutbr.cz": [17522], "support.virginmedia.ie": [17738], "www.artsci.wustl.edu": [17993], "providence.voxmedia.com": [17852], "www.bemobile.ua": [1724], "regonlineportal.activenetwork.com": [501], "pagseguro.uol.com.br": [16998], "resinfo.org": [13807], "www.ar15.com": [337], "pamfax.biz": [12352], "www.fraunhofer.de": [6112], "demandbase.demandbase.com": [4342], "vdi-wissensforum.de": [17476], "shop.esetnod32.ru": [4956], "www.schoeller.de": [11170], "jointventure.apple.com": [1120], "i.kuonamaoni.com": [9039], "scontent.cdninstagram.com": [2558], "partnernet.amazon.de": [910], "www.craftcoffee.com": [3754], "www.linuxfr.org": [9410], "www.popularresistance.org": [12920], "*.popsugar-assets.com": [12910], "secure.esupport.com": [4972], "www.ift.ulaval.ca": [17229], "seagate.com": [14437], "lindtusa.com": [9366], "t.brand-server.com": [2278], "golfcourseindustry.com": [6822], "kasperskypartners.ru": [8811], "www.youtube.com.ee": [18709], "speed.twistedmatrix.com": [16885], "nia.nih.gov": [11052], "*.crowdtangle.com": [3822], "bconnected.berkeley.edu": [17240], "www.dailyinfo.co.uk": [4124], "go.mail.ru": [9874], "navigation.1and1.co.uk": [53], "www.askives.com": [1267], "www.ncjrs.gov": [10883], "npinsecure.cdc.gov": [19046], "www.npmjs.org": [11540], "thestranger.com": [16315], "www.tribot.org": [15858], "www.dzne.de": [6556], "anderson.leadershipacademy.nhs.uk": [10913], "webservices.stanford.edu": [15383], "www.oag.ca.gov": [2745], "www.homedepotfoundation.org": [7471], "bolagsverket.se": [2186], "img.dell.com": [4335], "s.bigmir.net": [1866], "www.gsnmagazine.com": [6870], "www.rstudio.com": [13467], "malegislature.gov": [9719], "sitepen.com": [14869], "app.convertkit.com": [3628], "amr.oracle.com": [12082], "*.radiowoodstock.com": [13517], "forums.mediatemple.net": [10165], "www.bodleian.ox.ac.uk": [17271], "archives.zataz.com": [18801], "koenrouwhorst.nl": [8955], "personal.vanguard.com": [19728], "mturk.com": [9805], "fafsalivehelp01.ed.gov": [4889], "*.commoncriteriaportal.org": [3490], "c1.popads.net": [12902], "email.seznam.cz": [14648], "master.odoo.com": [11727], "static.weibo.com": [18187], "recruit.zoho.com": [18884], "planetkde.org": [12768], "askleo.com": [1263], "www.webmail.earthlink.net": [5007], "amnesty.ie": [964], "m.ixit.cz": [7883], "deit.dict.cc": [4455], "outreach.osu.edu": [11675], "direct.tescoassets.com": [16135], "eclipse.org": [5049], "phgkb.cdc.gov": [19046], "*.mgid.com": [9739], "bat.bing.com": [1895], "licensing.symantec.com": [15715], "*.opentemplate.org": [19462], "www.ello.co": [5172], "join.app.net": [1102], "service.projectplacedocs.com": [13144], "javacoolsoftware.com": [8529], "www.nii.ac.jp": [10927], "admin2.mobile.de": [19403], "www.kuvalehdet.fi": [12131], "www.digitec.ch": [4508], "dps.usc.edu": [17278], "register.pearsoncmg.com": [12506], "openinventionnetwork.com": [11906], "www.inachinashop.com": [11625], "everyoneisgay.com": [5455], "mb.linuxlovers.at": [9432], "r.turn.com": [16840], "www.sptag1.com": [15323], "*.upxth.com": [17406], "www.ctunnel.com": [2687], "www.energiwatch.dk": [5252], "businesswales.gov.wales": [6860], "www.internet2.edu": [8279], "poliisi.fi": [12868], "www.oasis-open.org": [11606], "reformgovernmentsurveillance.com": [13720], "corp.kaltura.com": [8775], "www.cabletv.com": [2703], "monitor.spatialbuzz.com": [15230], "ag.ch": [19648], "www.dei.com.gr": [6915], "cohnreznick.com": [3389], "fr.rsf.org": [13784], "cronkitenewsonline.com": [3810], "www1.oculusvr.com": [11722], "www.readme.io": [13608], "www.3questionsgetthegirl.com": [17719], "cweb.axosoft.com": [1477], "*.frugalware.org": [6234], "developer.aimpulse.com": [743], "epocs.leeds.ac.uk": [17318], "*.unrestrict.li": [17367], "baifubao.baidu.com": [1619], "codethink.co.uk": [3381], "it-dep-redir.web.cern.ch": [2575], "www.wifipineapple.com": [18273], "www.intelfellowships.com": [8210], "www.cerberusapp.com": [2962], "*.roem.ru": [13946], "bms.edeka.de": [19147], "micron.com": [10357], "devalate.com": [19114], "donate.unhcr.org": [16989], "weather.yandex.com.tr": [18649], "www.accel-ppp.org": [18936], "shop.harman.com": [7208], "doctor.vutbr.cz": [17522], "www.spokane.wustl.edu": [17993], "websmithing.com": [18153], "www.spectrumbusinessinsights.com": [15250], "forums.cpanel.net": [2653], "www.fastmail.fm": [5688], "gwrymca.org": [7031], "www.qualcomm.com": [13328], "filterdigital.com": [5813], "www.grahamcluley.com": [6885], "www.logmeininc.com": [9550], "jcp.org": [8419], "mail.offline.ee": [11621], "*.compranoexterior.com.br": [3527], "mobile.hertz247.com": [7372], "credit-suisse.com": [3792], "www.neowin.net": [11158], "admin.mailigen.com": [9886], "rivieratours.com": [13909], "www.canon.com.cn": [2809], "vz-nrw.de": [17617], "www.ekmsecure6.co.uk": [5135], "www-cdn.jtvnw.net": [16888], "upay.co.uk": [17384], "launchpad.37signals.com": [118], "www.g2crowd.com": [6295], "www.mmonit.com": [9765], "js.recurly.com": [13652], "www.goldmann.pl": [6816], "server4.web-stat.com": [18047], "blog.arbornetworks.com": [1154], "www.host-tracker.com": [7503], "services.housing.berkeley.edu": [17240], "lab-nation.com": [9121], "*.dodspeople.com": [4631], "youtube.be": [18709], "adsupply.com": [544], "www.nextregister.com": [11361], "youtube.ba": [18709], "silkspan.com": [14795], "www.beginnertriathlete.com": [1754], "fontmarketplace.com": [5989], "code.randomhouse.com": [13543], "mitsloan.mit.edu": [9749], "www.frallc.com": [5592], "youtube.bh": [18709], "api.2k.com": [86], "www.shakespeare.osu.edu": [11760], "peerio.com": [12521], "board.carnegiescience.edu": [2857], "www.15mpedia.org": [33], "static.rasset.ie": [13571], "raw.githubusercontent.com": [6680], "www.zeuscat.com": [18853], "picoville.com": [12666], "blockscript.com": [2085], "debuginfo.clearlinux.org": [3233], "scro.stanford.edu": [15383], "zone-h.org": [18892], "www.mechse.illinois.edu": [17258], "exavault.com": [5474], "infonline.de": [7767], "community.speed-dreams.org": [15251], "www-cache2.extensis.com": [5523], "martus.org": [10035], "webmail.skynet.ie": [16210], "www.mutterschaftsgeld.de": [10730], "skillsmatter.com": [14908], "developers.digitalriver.com": [4483], "www.minilock.io": [10419], "partner.skylink.sk": [14937], "bitcasino.io": [1929], "events.openmrs.org": [11952], "messerfinancial.com": [10293], "www.flixbus.it": [5931], "wiki.deepin.org": [4302], "ck.juicyads.com": [8668], "*.instantservice.com": [359], "www.themesandco.com": [16341], "website-cdn.pico-app.com": [12663], "*.sptimes.com": [14159], "www.box-look.org": [19461], "ogr.uillinois.edu": [16960], "manage.dynect.net": [4835], "pacbsd.org": [12307], "w00tsec.blogspot.co.*": [2113], "contact.ofsted.gov.uk": [19456], "registrierung.springer-medizin.de": [15308], "accounts.itcs.umich.edu": [17266], "www.emergency.wustl.edu": [17993], "www.projectdent.com": [13137], "snackbox.microsoft.com": [10364], "goenergetix.com": [5251], "es.pornworms.com": [12928], "planet.collabora.co.uk": [3419], "groups.freecycle.org": [6162], "www.hertz.se": [7366], "mail.t-com.sk": [16088], "www.hertz.si": [7362], "stopbadware.org": [15489], "www.supermedia.com": [15615], "*.unigine.com": [17187], "sta.sh": [15356], "log.newsvine.com": [11348], "aneros.com": [1013], "member.myshaklee.com": [14656], "www.hootsuite.com": [7488], "www.livestrong.org": [9515], "malwaretech.net": [9927], "my.over-blog.com": [12156], "caisse-epargne.com": [2721], "mapraider.com": [9975], "b2btagmgr.azalead.com": [18977], "vitamindcouncil.org": [17793], "manufacturing.osu.edu": [11760], "selfservice.bassetlaw.gov.uk": [1688], "*.gameswelt.net": [6442], "typodun.unistra.fr": [17177], "tracking.codecoon.com": [3364], "reports.zoho.com": [18884], "eecs-search.eecs.mit.edu": [9749], "access.ripe.net": [13895], "www.obi.pl": [19452], "www.pictomania.com": [12668], "www.centrance.com": [2588], "www.andor.com": [999], "chat-place.org": [3028], "transformationmadeeasy.com": [16665], "pijnacker-nootdorp.nl": [11132], "macruby.org": [9822], "ceas.osu.edu": [11760], "www.cc.ntu.edu.tw": [10971], "www.s-pankki.fi": [14060], "www.trademoremargin.com": [16637], "qualcomm.com": [13328], "blog.bitex.la": [1993], "blog.pivotal.io": [12730], "www.evo.com": [5462], "payza.com": [12491], "dopplr.com": [4684], "hongbao.alipay.com": [817], "status.coinfloor.co.uk": [3404], "*.help.pinterest.com": [12699], "krautchan.net": [9006], "www.scriptmp3.com": [14425], "www.dishonored.com": [18829], "hornbach.at": [7496], "i.freeporngif.com": [6146], "www.mebank.com.au": [9736], "*.easily.co.uk": [5011], "dan.langille.org": [9145], "help.jd.com": [8422], "austiners.com": [1378], "www.efukt.com": [4914], "demand.rubiconproject.com": [14014], "316space.harralmedia.com": [2132], "hivos.org": [7431], "ace.advertising.com": [662], "kkk.com": [8931], "natoonline.org": [11047], "secure.westernunion.com": [18216], "www.indure.org": [7765], "secure.vispa.net.uk": [17780], "issues.jenkins-ci.org": [8551], "*.nationalgeographic.com": [11080], "api.eply.com": [4945], "www7.smartadserver.com": [14982], "www.kasperskycontenthub.com": [8812], "myersgroup.engineering.osu.edu": [11760], "guadec.org": [6397], "robohash.org": [13926], "counters.gigya.com": [6659], "www.thespartaninstitute.com": [15226], "*.nicekicks.com": [11383], "jobs.foreignpolicy.com": [6024], "c2.rgstatic.net": [13422], "webforms.merton.gov.uk": [10287], "whichmba.com": [18241], "www.ewebcart.com": [19170], "ecommerce.apple.com": [1120], "pmetrics.performancing.com": [12571], "www.my.commbank.com.au": [3477], "events.microsoft.com": [10364], "godaddymobile.com": [6774], "world.popadscdn.net": [12903], "*.vtiger.com": [17866], "camtools.cam.ac.uk": [17243], "m.toppreise.ch": [19688], "*.hcl.com": [7050], "www.visionairlines.com": [17773], "agresearchmag.ars.usda.gov": [17209], "pe.godaddy.com": [6773], "volksverschluesselung.sit.fraunhofer.de": [17829], "unidadcalidad.unizar.es": [17356], "aberdeencity.gov.uk": [410], "nyi.net": [10993], "www.adtmag.com": [273], "www.shopmimigreen.com": [14722], "salesforce.com": [14249], "www.gcentral.biz": [6292], "proxy2.switchadhub.com": [15701], "www.somed.bfs.admin.ch": [19648], "s.jwpltx.com": [9589], "*.longform.org": [9592], "svn.cru.fr": [3829], "www.wikileaksparty.org.au": [18295], "*.instartlogic.com": [8190], "www.stratechery.com": [15508], "costco.com": [3694], "iridiumbrowser.de": [8356], "ovs.acunetix.com": [507], "www.navteqmedia.com": [10873], "waverley.firmstep.com": [19182], "pcmedia.ign.com": [7730], "www.kdab.com": [8717], "evesys11.sstest.jp": [15350], "userbase.kde.org": [8718], "*.globalwitness.org": [6717], "mobile.greyhound.com": [6947], "conference2007.kde.org": [8718], "static5.uk.businessinsider.com": [2454], "www.lingue.de": [9373], "piratetimes.net": [12709], "ja.stackoverflow.com": [15359], "www.boldchat.com": [2187], "www.drugscience.org.uk": [4778], "smack.co.uk": [14977], "auth.greenqloud.com": [6919], "annefrank.thecthulhu.com": [16334], "www.holderdeord.no": [7449], "piwik.typo3.org": [15894], "gettested.cdc.gov": [19046], "jenkins.mni.thm.de": [15811], "p4.zdassets.com": [18806], "oraweb.slac.stanford.edu": [15383], "calderdale.objective.co.uk": [19454], "verlagsherstellung.de": [7114], "www.matildajaneplatinum.com": [10073], "thewebindex.org": [16322], "elsevierhealth.com.au": [5186], "www.markng.co.uk": [10006], "www.mp3skull.wtf": [9779], "www.freenode.net": [19196], "speech.leseweb.dk": [19616], "go.pl.bbelements.com": [1713], "account.smartertools.com": [14996], "konkurs.tms.pl": [19686], "www.paddleapi.com": [12324], "lenen.snsbank.nl": [14144], "www.disqus.com": [4570], "hostcentric.com": [7509], "my.vultr.com": [17873], "statistiky.cesky-hosting.cz": [19051], "feed.livingsocial.com": [9517], "www.heerenveen.nl": [11132], "docs.drupal.org": [4780], "platinum.ohiolink.edu": [11762], "zappos.com": [18792], "www.eclipso.ch": [5050], "partner.domaining.com": [4663], "miga.org": [8259], "a772.g.akamai.net": [1121], "www.enhancedsteam.com": [5273], "photos.aircrack-ng.org": [750], "www.mitsubishi.com": [10461], "www.k2s.cc": [8704], "altex.ro": [886], "www.clearlink.com": [3234], "store6.esellerate.net": [5357], "ativismo.org.br": [1315], "autistici.org": [1413], "reviewjournal.com": [9160], "founders.stanford.edu": [15383], "assayassured.co.uk": [1275], "www.nsf.gov": [11060], "tools3.cisco.com": [3162], "friendpaste.com": [6216], "*.bitdefender.com": [1988], "news.kde.org": [8718], "en-pl.dict.cc": [4455], "products.drweb.com": [4783], "de-ru.dict.cc": [4455], "email.kn.vutbr.cz": [17522], "documentfreedom.org": [4628], "www.iojs.org": [8338], "nublue.co.uk": [11560], "www.hipertextual.com": [19251], "paragonie.com": [12389], "fas.ohnward.com": [11767], "mcxnow.com": [10128], "pleaseignore.com": [12811], "font.thoughtbot.com": [16387], "usajobs.gov": [17030], "rtax.criteo.com": [3801], "lx1.dyncdn.cc": [4821], "distilleryimage5.instagram.com": [8182], "smarthide.com": [14989], "booking.wokingham.gov.uk": [19762], "professionalsecuritytesters.org": [13126], "www.zb45.nl": [18754], "cdn.recombu.com": [13648], "admin.webonic.hu": [18136], "www.deutschebahn.com": [4411], "fastshoppingcart.com": [13359], "www.auditorius.ru": [1362], "mrsmcnastys.com": [10676], "www.anz.co.nz": [18958], "entrust.net": [5304], "solidalert.com": [15118], "test-www.car.com": [2826], "www.atagar.com": [1309], "fbsql.pipni.cz": [12257], "produkte.web.de": [18050], "ohiolink.edu": [11762], "www.comparethemarket.com": [3511], "static.a-ads.com": [215], "wine-apps.org": [19461, 19462], "clientportal.heanet.ie": [7269], "www.nationalexpress.jobs": [11050], "www.1and1.com": [51], "agra-net.com": [733], "www.zonomi.com": [18897], "www.statichukd.com": [7549], "www.doteasy.com": [4701], "img3.tbcdn.cn": [15982], "rsrc2.psychologytoday.com": [13189], "luneta.nearbuysystems.com": [11121], "ugr.ucsc.edu": [17305], "www.laptop.hu": [9155], "necuhb.org": [11130], "my.post-gazette.com": [12728], "devuan.org": [4433], "gpadmissions.osu.edu": [11760], "www1.livenation.co.*": [9481], "www.techsupportalert.com": [16053], "cdn2.rsc.org.uk": [13457], "secure-media.victoriassecret.com": [17672], "necu.org": [11130], "partner.path.com": [12451], "gulli.com": [19232], "s.effectivemeasure.net": [5109], "hplusdigitalseries.com": [7092], "hacking.ventures": [7153], "uk.accessorize.com": [454], "wiki.phpmyadmin.net": [12651], "blogmaintenance.talktalkbusiness.co.uk": [15930], "jensge.org": [8553], "tr.cloudflare.com": [3285], "*.csis-scrs.gc.ca": [2802], "voicerepublic.com": [17822], "www.randomhouse.com": [13543], "store.canon.com.au": [19037], "admissions.peterborough.gov.uk": [12594], "www.c3tag.com": [2503], "secure.zt03.net": [18916], "aklamio.com": [767], "www.dcpower.eu": [4016], "www.recrute.parrot.com": [12410], "www.popsci.com": [12908, 12909], "www.elpueblo.com": [5138], "www.richardandjudy.co.uk": [13873], "dg50.mycdn.me": [10824], "blocket.com": [2093], "mobil.yandex.com.tr": [18649], "*.www.champssports.com": [2991], "engine.adsupply.com": [544], "servedby.advertising.com": [662], "autoconfig.yandex.com.tr": [18649], "www.drivestyle.co.uk": [4763], "pge.post-gazette.com": [12948], "www.easywallet.org": [5037], "blog.viglink.com": [17710], "www.ef.gy": [5106], "getsatisfaction.com": [6618], "www.dnsquery.org": [4063], "*.hospitality.swisscom.com": [15698], "profiles.tiki.org": [16444], "i0.rgstatic.net": [13422], "www.gdata.de": [6293], "www.princeton.edu": [13064], "www.freitag.de": [6194], "vufind.carli.illinois.edu": [17258], "www.hava.yandex.com.tr": [18649], "myfiles.yandex.com": [18651], "www.bobcares.com": [2172], "webdesign.stanford.edu": [15383], "form.taobao.com": [15952], "blog.kapsi.fi": [8791], "www.vanessatorrivilla.com": [7973], "www.elizabethsmartfoundation.org": [5169], "asdashboard.stanford.edu": [15383], "www.dn.dk": [4054], "shib.southdevon.ac.uk": [15188], "www.uptolike.com": [17382], "sustatic.com": [15544], "nva.org": [11098], "at.alicdn.com": [805], "filepicker.io": [5801], "www.pypa.io": [13265], "maxroam.com": [9717], "try.jd.com": [8423], "space2u.com": [15205], "www.centerlinebeta.net": [2951], "deutscher-radiopreis.de": [4413], "blog.gaborszathmari.me": [6402], "*.lovefilm.com": [9625], "security.cpanel.net": [2653], "www.kenexagovernmentsolutions.com": [8847], "gammagroup.com": [6448], "www.xato.net": [18545], "national-lottery.co.uk": [11071], "cdn3.outspark.com": [12154], "ww1.salford.gov.uk": [19562], "www.suckup.de": [15574], "www.postwire.com": [12984], "www.cykloteket.se": [3979], "www.satoshilabs.com": [19564], "m.hivos.org": [7431], "static02.vg.no": [17484], "fressnapf.de": [6207], "www.municode.com": [10705], "wefightcensorship.org": [18028], "forums.zoho.com": [18884], "communities.intel.com": [8209], "ms.urel.feec.vutbr.cz": [17522], "presenter.api.qbrick.com": [13300], "social.truelife.com": [16769], "zhonggongyc.taobao.com": [15952], "merchant.xsolla.com": [18593], "cdn.static.malwarebytes.org": [9929], "www.danblah.com": [4133, 4134], "flownative.com": [5947], "www.hertz.jo": [7353], "cachethq.io": [2709], "hotel.ch": [19261], "stubhub.co.uk": [15534], "thalia.de": [16171], "ekwb.com": [4920], "track.bvg.de": [1582], "*.pgeveryday.ca": [13121], "www.disabilitystudies.osu.edu": [11760], "*.fust.ch": [3645], "conference.scipy.org": [14374], "cc.dcsec.uni-hannover.de": [17168], "www.indymedia.org": [8085], "helpspot.com": [7306], "tenon.com": [16112], "readrobreid.com": [13609], "wyreforest.greenparty.org.uk": [6925], "www.random.org": [13545], "unisend.com": [17199], "*.reputation.com": [13790], "epost.powertech.no": [12995], "issafrica.org": [7837], "heapanalytics.com": [7270], "iatspayments.com": [7670], "ads.businessclick.com": [19028], "www.imperativeideas.com": [8014], "files.snstatic.fi": [14145], "beagle.ci.uchicago.edu": [17246], "info2.ntu.edu.tw": [10971], "www.wirral.gov.uk": [18371], "www.ccianet.org": [2549], "cisecurity.org": [2617], "complaint.ic3.gov": [17022], "secure2.store.apple.com": [1120], "*.ohloh.net": [11766], "hbo.vice.com": [17667], "partner.mamba.ru": [9932], "downloads.sourceforge.net": [15174], "piratenpartei.ch": [12284], "bauwesen.htwk-leipzig.de": [7114], "zhihu.com": [18856], "oftc.net": [11622], "*.bigstockimages.com": [1867], "istem.engineering.osu.edu": [11760], "www.outofcontrol.ca": [12147], "momsmedia.com": [17540], "*.roku.com": [13954], "www.kcvids.com": [8715], "spyderco.com": [15326], "www1.lansforsakringar.se": [9151], "www.jobindex.dk": [8597], "www.sunshineweek.org": [15607], "mapping.scotborders.gov.uk": [14394], "zooku.ro": [18899], "www.titanpad.com": [16499], "harita.yandex.com.tr": [18649], "home.mobile.de": [19403], "adsonar.com": [539], "sel4.systems": [14433], "www.magnet.ie": [9860], "controlpanel.vgocom.com": [17485], "www.l2020.org": [9061], "cdn.okcimg.com": [11771], "webhostlist.de": [18122], "*.spreadshirt.pl": [15300], "www.visualisingadvocacy.org": [17786], "www.magicaffiliateplugin.com": [9855], "login.idm.telekom.com": [16087], "cdn.usertags.com": [17087], "dialogueiwb.educ.cam.ac.uk": [17243], "www.writelatex.com": [18474], "www.federatedinvestors.com": [5721], "wp-dev.grc.nasa.gov": [10869], "as.sexad.net": [14642], "flowbtc.com": [5944], "www.brighteroption.com": [2329], "www.echoplex.us": [5047], "www.sycom.co.jp": [15710], "www.scai.fraunhofer.de": [6112], "www.esbie.ie": [4952], "www.allianz.com": [18950], "platformone.neustar.biz": [11280], "prometheusgroup.com": [13150], "435bymjc.com": [144], "cloud.centrify.com": [19048], "www.whirlpool.net.au": [18243], "topcoder.com": [16560], "consult.leeds.gov.uk": [19353], "www.webthumbnail.org": [18163], "sdacs.ucsd.edu": [16939], "travel.thankyou.com": [16173], "toynews-online.biz": [8226], "gravatar.com": [6899], "www.itvstatic.com": [7853], "my.ece.illinois.edu": [17258], "wikihub-new.berkeley.edu": [17240], "sorry.hosting.cornell.edu": [3676], "startssl.net": [15407], "interview.marshall.usc.edu": [17278], "q2.qlogo.cn": [13304], "www.ashampoo.com": [1250], "raur.co": [13400], "kvack.org": [9047], "storage.googleapis.com": [6839], "www.foldingforum.org": [5984], "www.agoravoting.com": [732], "www.etarget.sk": [5373], "mobile.virginmedia.com": [17737], "ww2.epeat.net": [4941], "www.alumni.wustl.edu": [17993], "*.pocketmatrix.com": [12836], "ssl-certificate-center.verisign.es": [17623], "zona.telecom.sk": [16088], "ent.u-bordeaux.fr": [16918], "*.cdn.firstlook.org": [5878], "clients.easy-hebergement.fr": [5033], "accessofficeproducts.com": [450], "acnc.gov.au": [263], "www.motherpipe.co.uk": [10610], "www.xda-developers.com": [18507], "szm.com": [15767], "load.wpm.neustar.biz": [11280], "download.sp.f-secure.com": [5541], "*.rdsecure.org": [13512], "bcnm.stanford.edu": [15383], "www.thefappening.sexy": [16274], "read.seas.harvard.edu": [7218], "uif.unizar.es": [17356], "triodos.com": [16739], "*.bishopinteractive.com": [1917], "www.dasource.ch": [4165], "apps.db.ripe.net": [13895], "shop.verkaufen.ch": [19733], "*.efinancialnews.com": [11321], "cloudmagic.com": [3291], "ryanair.com": [14054], "assets.netnewscheck.com": [11200], "www.thread.com": [16389], "uoregon.edu": [16999], "www.bleutrade.com": [2071], "guaranibitcoin.com": [6997], "static.c-spanvideo.org": [2495], "g2.std3.ru": [15445], "blog.trendmicro.de": [16715], "hosting.fleetnetworks.net": [5913], "onlive.com": [11812], "frontlinedefenders.org": [6226], "disabledgo.com": [4539], "ebuzzing.de": [5044], "onsugar.com": [11815], "cdn.zenfolio.net": [18827], "www.xmind.net": [18528], "www.trusteer.com": [16793], "secure.csob.sk": [3896], "www.cooperazione.ch": [3645], "handsomecode.com": [7191], "www.payconnect.net": [4893], "www.xtwo.ne.jp": [18603], "*.cert-verbund.de": [2579], "memopol.panoptykon.org": [12365], "magadan.rt.ru": [13469], "gemeentewestland.nl": [11132], "autoblog.com": [1421], "help-pt-br.nike.com": [11401], "www.ovh.pt": [12173], "projects.centos.org": [2942], "distilleryimage10.instagram.com": [8182], "my.eset.com": [5358], "vic20.blipp.com": [2080], "techenclave.com": [16010], "merchants.livingsocial.com": [9517], "www.rpgmakerweb.com": [14003], "www.backbonesecurity.com": [1596], "mivacentral.com": [10462], "auto.mail.ru": [9874], "www.ovh.pl": [12173], "www.myprojects-proposals.ncl.ac.uk": [10884], "projectreporter.nih.gov": [11052], "*.weburbanist.com": [18096], "seclab.illinois.edu": [17258], "secure-www.novell.com": [11530], "sao.stanford.edu": [15383], "coursera.org": [3719], "www.datenschutz.de": [17746], "afcs.dell.com": [4335], "www.cryptocoinsnews.com": [3856], "www.mencap.org.uk": [10256], "discoveryplace.org": [4556], "www.f4.htw-berlin.de": [7112], "inpros.net": [8158], "www.pico-app.com": [12663], "m.fanfiction.net": [5648], "balatarin.com": [1625], "www.thalia.at": [16171], "oceandiscovery.xprize.org": [18495], "img1.video.s-msn.com": [9794], "hostingreviews.com": [7525], "sheffield.ac.uk": [17339], "support.easy-hebergement.fr": [5033], "www.joshtriplett.org": [8635], "*.qip.ru": [13283], "netstatus.earthlink.net": [5007], "poste.ch": [12949], "www.upplandsvasby.se": [17396], "supportcenter.godaddy.com": [6773], "state.gov": [17067], "omeo.alipay.com": [817], "n0where.org": [10860], "nanohub.org": [11031], "pixel.industrybrains.com": [8078], "www.fas.org": [5723], "jira.neos.io": [11156], "api.lavaboom.com": [9173], "www.hboneplus.hu": [10929], "gocoin.com": [6771], "designaddict.com": [4387], "okcoin.com": [11628], "eastsussex.libraryreserve.com": [19363], "townsvillebottomfishingcharters.com.au": [16615], "iris.ut.ee": [17069], "www.btc-e.com": [1553], "www.mixx.com": [10470], "www.ext.vt.edu": [17740], "octorate.com": [11717], "support.kaspersky.com": [8806], "www.beefymiracle.org": [1747], "www.east-northamptonshire.gov.uk": [5012], "copyleft.org": [3655], "en-support.psm.playstation.net": [12794], "api.dnschain.net": [4060], "www.mechon-mamre.org": [10136], "www.browser-statistik.de": [2369], "www.bauart.htwk-leipzig.de": [7114], "tampermonkey.net": [15939], "httpwatch.com": [7111], "www.wabi.com": [17938], "*.dot429.com": [4689], "www.jamendo.com": [8502], "marketplace.zanox.com": [18787], "powerhosting.dk": [13000], "www.seedprod.com": [14549], "www.pbebank.com": [13203], "orafarm.com": [11658], "passport.twitch.tv": [16888], "static.formstack.com": [6046], "www.ntldstats.com": [10962], "forum.geogebra.org": [6537], "www.vr.org": [17864], "secure.kreativmedia.ch": [9008], "www.wealden.gov.uk": [19750], "m-pathy.com": [9692], "www.microsoftstore.com": [10368], "www.master.yandex.kz": [18652], "www.censorship.govt.nz": [2939], "mtf.cern.ch": [2575], "taskforceonshalegas.uk": [15969], "biditbob.com": [1845], "xww.ro": [18605], "www.qtastatic.com": [13318], "www.eiu.com": [5061], "webmproject.org": [18073], "www.citrixonline.com": [3179], "pvac-cms.leeds.ac.uk": [17318], "kb.iu.edu": [8064], "i2.timeinc.net": [16460], "ernw.de": [4950], "www.winterswijk.nl": [11132], "www.advantagemedia.com": [650], "www.burnley.gov.uk": [2443], "syndication.twimg.com": [16877], "www.admission.com": [16421], "customs.hmrc.gov.uk": [7084], "www.01.org": [1], "www.youngstonewall.org.uk": [19793], "www.lincs.fr": [9080], "www.sitesafe.org.nz": [14878], "openstat.ru": [11977], "openlibrary.org": [12018], "as-images.apple.com": [1120], "www.checkdomain.de": [3049], "admin.closerware.net": [3274], "ziggo.com": [18861], "www.distrowatch.com": [4577], "boldchat.com": [2187], "img4.thalasseo.com": [16168], "spu.ac.th": [15324], "3bbwifi.com": [130], "lab.lugons.org": [9108], "www.pixelated-project.org": [12738], "aka-img-1.h-img.com": [7617], "s.itunes.apple.com": [1120], "wikimedia.org": [18296], "buch.de": [16171], "*.netzguerilla.net": [11276], "*.rd.com": [13616], "steppingout.stanford.edu": [15383], "www.newportmotorsports.com": [11319], "*.gencat.cat": [6524], "dreamnews.jp": [4750], "journalism.berkeley.edu": [17240], "www.advisormailout.com": [667], "unisys.co.jp": [17202], "mayday.us": [10104], "northkoreatech.org": [11496], "conservatives.com": [3590], "res.mail.qq.com": [13285], "smhttp-nex.nexcesscdn.net": [11357], "rollerhaendler.scooter-attack.com": [14390], "cdn.videos.bloomberg.com": [2117], "mitei.mit.edu": [9749], "www.linuxforums.org": [9422], "quiz.toogl.com": [16552], "piratpartiet.se": [12723], "www.enigmabox.net": [5274], "encrypteverything.ca": [5237], "bmclogostore.com": [1528], "www.vidup.me": [17704], "www.500ish.com": [165], "files.lolnet.org": [9569], "parabol.canaldigital.no": [2803], "ssl.phpnet.org": [12251], "descience07.carbonmade.com": [2831], "export.yandex.by": [18648], "*.jackimaging.com": [8482], "www-935.ibm.com": [7675], "demo.f4map.com": [19172], "nttcoms.com": [10967], "canadapost.ca": [2793], "www.coveredcacertifiedpartners.com": [3731], "groupava2.mycdn.me": [10824], "rollcall.com": [13956], "*.myheritage.pl": [10834], "cari.net": [2518], "netcloude.cz": [11218], "vault.cca.edu": [17575], "www.tamesidehospital.nhs.uk": [10912], "www1.ifc.org": [8258], "developer.vodafone.com": [17816], "www.cnr.berkeley.edu": [17240], "www.novara.ie": [4513], "admin.sextoyfun.com": [14645], "shouji.tmall.com": [19684], "media.zylom.com": [18929], "a1.sndcdn.com": [15032], "img30.360buyimg.com": [112], "intern.contest.yandex.com": [18651], "blog.websupport.at": [18091], "espaceprive.moncompteformation.gouv.fr": [19407], "www.insideygs.com": [8169], "www.mosaicscience.com": [10603], "legolas-media.com": [9234], "mail.kiva.org": [8926], "m.nationalgrid.com": [11081], "www.darkmoney.cc": [4149], "ucsf.edu": [17303], "www.javacoolsoftware.com": [8529], "*.nestle.com": [11168], "de-sq.dict.cc": [4455], "images.jxt.net.au": [8468], "bn.com": [1678], "www.true-security.nl": [15857], "assets3.github.com": [6680], "c.icq.com": [7690], "longaccess.com": [9590], "*.modelmayhem.com": [10517], "phcheats.com": [12254], "chlomo.org": [3094], "p4.qhimg.com": [13302], "*.sifterapp.com": [11358], "storage-bin.com": [15491], "vet.osu.edu": [11760], "za.effectivemeasure.net": [5109], "wayf.mit.edu": [9749], "ntt.com": [10966], "dashboard.synapsepay.com": [19650], "login.adfox.ru": [524], "cheklapkok-01-hkg-remote.cathaypacific.com": [2904], "*.schd.ws": [14348], "medicine.stanford.edu": [15382], "www.americanancestors.org": [937], "chen.mysql.cesky-hosting.cz": [19051], "accelacomm.com": [440], "internetdefenseleague.org": [8282], "images.del.icio.us": [7920], "bugzilla.instantbird.org": [8186], "issues.alfresco.com": [802], "rememberthemilk.com": [13758], "redcap.wustl.edu": [17993], "www.fxprime.com": [5610], "cdn-www.merethis.com": [10283], "www.wanikani.com": [17973], "venturebeat.com": [17611], "www.bareos.org": [1668], "customercenter.liveperson.com": [9494], "zozs.se": [18912], "secureimage.securedataimages.com": [14500], "holidays.lastminute.com": [9165], "www.valuecommerce.com": [17542], "*.rsa.com": [13453], "www.nluug.nl": [10938], "riseup.net": [13900], "www.btjunkie.org": [19022], "*.jacksonsun.com": [8486], "www.mc.vanderbilt.edu": [17557], "www.rawgit.com": [13580], "haka.funet.fi": [6264], "1sand0s.nl": [62], "solutionsfinder.capitalone360.com": [2819], "www.posthaven.com": [12976], "meinkonto.telekom-dienste.de": [16086], "pt.pcisecuritystandards.org": [12224], "www.opnsense.org": [11656], "brightkidsnyc.com": [2327], "www.visaforchina.org": [17766], "accounts.coursera.org": [3719], "ac.mediatemple.net": [10165], "gitlab.common-lisp.net": [3484], "www.questionmarket.com": [13357], "tula.rt.ru": [13469], "foecvliab.com": [5971], "www.google-analytics.com": [6839], "www.barter.vg": [1683], "chriscowley.me.uk": [3103], "paf.web.cern.ch": [2575], "popcorn-time.se": [12914], "publishers.kontera.com": [8981], "pddoc.com": [12234], "onecare.live.com": [9483], "bioinfobank.com": [1899], "bookings.rottnestexpress.com.au": [13983], "ci.swift.org": [15688], "wolframcloud.com": [18399], "www.7eer.net": [194], "tvingo.enaza.ru": [5230], "magazine.thehackernews.com": [16338], "scarborough.objective.co.uk": [19454], "*.atomic-clock.org.uk": [17120], "fr.cloudflare.com": [3285], "redmine.vpsfree.cz": [19743], "visitors.berkeley.edu": [17240], "dnsstuff.com": [4070], "*.my.mail.ru": [9874], "l.live.net": [9482], "bitcoinpool.com": [1969], "napoveda.active24.cz": [18938], "www.packet.net": [12316], "www.hscj.ufl.edu": [17252], "www.buyfacefx.com": [14793], "specificmedia.co.uk": [15242], "jamesfarmer.umw.edu": [17261], "*.sssup.it": [14184], "www.northeastjobs.org.uk": [19437], "hailguardian.com": [7165], "contenta.mkt1710.com": [14802], "affiliates.allposters.com": [835], "comviq.se": [3546], "violetindigo.com.au": [17728], "learningcenter.netapp.com": [11183], "*.getsafeonline.org": [6602], "www.upc.ie": [17001], "www.bitfetch.com": [1994], "cri.pld-linux.org": [12267], "theoutnet.com": [16303], "www.encrypt-the-planet.com": [19157], "grantsandcontracts.wustl.edu": [17993], "europe.hostingcon.com": [7529], "pingone.com": [12683], "www.amazon.jobs": [912], "www.purecine.fr": [13243], "console.aolonnetwork.com": [324], "calligra-suite.org": [2754], "wesnoth.org": [18204], "ui.ptlogin2.qq.com": [13285], "www.honeybeeloans.com": [7483], "user.lightsource.ca": [2800], "www.codespeak.net": [3380], "*.ergon.ch": [5340], "gentooexperimental.org": [6533], "dev.techxpress.net": [16022], "danid.dk": [4132], "awaps.yandex.com.ua": [18650], "nos.netease.com": [11189], "fabiankeil.de": [5617], "www.mecoffee.nl": [10131], "my.netviewer.com": [11258], "www.blogs.uni-erlangen.de": [17311], "*.one.org": [11640], "barnsley.gov.uk": [18983], "tiki-toki.com": [16443], "oficinaverde.unizar.es": [17356], "www.webforest.eu": [18101], "dug.net.pl": [4087], "pic1.zhimg.com": [18856], "ncta.com": [10888], "www.kis.hosteurope.de": [7516], "zdtronic.com": [18758], "www.billiondigital.com": [1882], "www.webstyle.ch": [18159], "zuse-crew.de": [18924], "*.gsis.gr": [6912], "webmail.thm.de": [15811], "www.migrosmagazin.ch": [19399], "www.jabber.dk": [8474], "studyabroad.rit.edu": [13434], "m.alicdn.com": [805], "www.inertianetworks.com": [8086], "www.knewone.com": [8943], "blog.coveralls.io": [3730], "pdcs.skat.dk": [14897], "cybertip.ca": [3976], "www.mariadb.com": [9987], "zsim.de": [18914], "*.blogspot.nl": [2107], "*.blogspot.no": [2107], "www.secure-u.de": [14486], "resource.fastspring.com": [5677], "clusters.de": [3325], "cas.org": [3059], "*.nextag.com": [11363], "people.gl.ciw.edu": [2857], "business.leeds.ac.uk": [17318], "znaturalfoods.com": [18773], "growery.org": [6983], "www.installgentoo.net": [18699], "www.friendster.com": [6218], "helsingor.dk": [7313], "www.moon-ray.com": [10577], "cinfo.ucsd.edu": [16939], "timeweb.ru": [16457], "*.afnic.fr": [282], "research.net": [15659], "pantherpass.fit.edu": [5942], "www.placehold.it": [12754], "www.marcan.st": [9982], "www.strongvpn.com": [15531], "www.cybershambles.com": [3964], "newsletters.westlothian.gov.uk": [19754], "*.waikato.ac.nz": [17347], "portale-utente.infn.it": [7766], "www.lennier.info": [9249], "raynersw.com": [13586], "mustaphalab.stanford.edu": [15383], "knowledge.verisign.com.au": [17623], "*.naturfotografen-forum.de": [6067], "it.pcisecuritystandards.org": [12224], "*.tldrlegal.com": [15822], "www.thn.li": [15812], "www.t-mobile.com": [15772], "www.reelvidz.com": [13712], "shop.sundtek.com": [15599], "*.don.ac.uk": [4679], "www.favrskov.dk": [5692], "www.vh2.ro.vutbr.cz": [17522], "dct.org.uk": [19105], "metapress.com": [10299], "sp.velaro.com": [17595], "a.planetlan.com": [12771], "wa5.northyorks.gov.uk": [19440], "blog.compete.com": [3519], "sportsauthority.com": [15291], "www.england.nhs.uk": [10913], "www.risk.io": [13901], "uk.pinterest.com": [12699], "assets.dnainfo.com": [19121], "*.foolz.us": [6007], "www.univention.de": [17225], "login.norton.com": [11505], "assets.jimstatic.com": [8571], "content.www.rspca.org.uk": [13461], "www.pnp4nagios.org": [12275], "stacksocial.com": [15363], "ece1jngec.blogspot.co.*": [2113], "eps-images.tv2.dk": [15881], "www.cspbuilder.info": [3897], "www.youtube.sa": [18709], "fvn.no": [6052], "www.youtube.se": [18709], "navy.gov.au": [13998], "thescore.thejournal.ie": [16224], "app-de-lb2.resrc.it": [13599], "cmsdoc.cern.ch": [2574], "xpress.epaysol.com": [5317], "application.blinksale.com": [2077], "*.unistra.fr": [17279], "ccc.co.il": [2536], "space.housing.illinois.edu": [17258], "daha.net": [15090], "dudley.gov.uk": [4795], "www.slice.com": [14955], "domaincoin.net": [4652], "3c.tmall.com": [19684], "ox.cx": [7641], "cdn-images-2.medium.com": [10197], "piscatus.se": [12726], "www.rrzn.uni-hannover.de": [17168], "pragmaticmarketing.com": [13013], "*.lsac.org": [9178], "www.ee.leeds.ac.uk": [17318], "www.mzv.sk": [14972], "partners.webmasterplan.com": [18131], "verify.mebank.com.au": [9736], "estaffprofile.nottingham.ac.uk": [11528], "cybercon.com": [3968], "cce.com": [2871], "leukemiafoundation.org": [11094], "lists.verisignlabs.com": [17624], "southwest.greenparty.org.uk": [6925], "www.superevr.com": [15628], "www2.dastelefonbuch.de": [4168], "mosr.sk": [14972], "sid.libreoffice.org": [9311], "mooddisorders.ca": [10571], "www.urx.com": [17016], "m.rte.ie": [13470], "empeopled.com": [5214], "liblearn.osu.edu": [11675], "websitealive9.com": [18149], "www.hsbc.com.*": [7098], "merchandising.expediaaffiliate.com": [5504], "axp.zedo.com": [18808], "es.t-mobile.com": [15772], "hybrid.autobytel.com": [1424], "m.tune.yandex.com.tr": [18649], "images.summitpost.org": [15590], "butik.information.dk": [8123], "naif.jpl.nasa.gov": [10869], "ecash.io": [4883], "humanaction.com": [7607], "www.repeaterstore.com": [13777], "elevenpaths.com": [5160], "asl19.org": [350], "secure.dice.com": [4453], "www.canaldigital.dk": [2803], "*.aegeanair.com": [6914], "www.tchibo.hu": [15985], "www.rarbg.com": [19534], "citizen-times.com": [1251], "console.hiconversion.com": [7386], "*.1nsk.ru": [59], "css.nyt.com": [10997], "www.bookmyname.com": [2199], "www.littler.com": [9473], "www.ifightsurveillance.com": [7888], "owncloud.hackerspace.pl": [7149], "mozilla.org": [10657], "notification.adblockplus.org": [561], "pwapi.washingtonpost.com": [17990], "www.ewh.ieee.org": [7715], "origin-www.hertz247.com": [7372], "*.iway.ch": [19314], "*.securityexperten.com": [14528], "www.eastlothian.gov.uk": [5014], "www.rnsfpw.net": [3481], "maarssen.nl": [11132], "cerberusapp.com": [2962], "*.stumble-upon.com": [15544], "blog.soundcloud.com": [15161], "www.wildarchives.com": [18301], "www.amnesty.ie": [964], "login.gmu.edu": [6544], "partners.rt.com": [13468], "www.qb50.eu": [13279], "thecable.foreignpolicy.com": [6024], "specialitytraining.hee.nhs.uk": [10913], "sklep.polskieradio.pl": [12887], "*.mixpanel.com": [10468], "staffstore.canon.com.au": [19037], "myhaccp.food.gov.uk": [19187], "www.fimfiction.net": [5816], "help.fitbit.com": [5887], "eas.admin.uillinois.edu": [16960], "hackweek.suse.com": [14199], "static.liverail.com": [9495], "fullstory.com": [6252], "pythonhosted.org": [13274], "*.foxnews.com": [6085], "*.suntrust.com": [15595], "superrepo.org": [15616], "chocolatey.org": [3095], "cockpit.kolabnow.com": [8961], "prescancerpanel.cancer.gov": [2805], "www.globaltradeday.org": [6734], "idn.infnx.com": [8088], "*.aplus-flint-river-ranch.com": [385], "www.smartlivingnetwork.com": [14995], "www.planet-energy.de": [12759], "www.smuxi.de": [15016], "susestudio.com": [14200], "*.hotels.nationalrail.co.uk": [11055], "www.mybenefitscalwin.net": [10745], "www.npdgroup.com": [10947], "talk.google.com": [6834], "hiig.de": [7068], "*.fedex.com": [5707], "www.facebook.be": [5623], "cdn.sencha.com": [14576], "nvidia.co.uk": [10983], "www.nero.com": [11162], "www.youtube.co.ke": [18709], "eis.ftc.gov": [5720], "www.kable.com": [8762], "sr2.liveperson.com": [9494], "www.mobot.net": [7549], "blog.flickr.net": [5917], "*.static.collegehumor.cvcdn.com": [3428], "*.b-europe.com": [14142], "findretros.com": [5839], "www.ebuzzing.com": [5044], "www.coursetalk.com": [3718], "mc.logmeinrescue.com": [9551], "www.respectourprivacy.com": [13813], "info.zscaler.com": [18913], "www.versacart.com": [17633], "media.stellaservice.com": [14190], "foxycart.com": [6087], "selby.mysql.cesky-hosting.cz": [19051], "img2.wmxstatic.com": [4170], "www.hhg.osu.edu": [11760], "tiremetroonline.com": [16494], "www.1177.se": [18], "sway.com": [15681], "www.ziggozakelijk.nl": [18863], "backcountry.com": [1598], "*.mci4me.at": [10126], "irs.gov": [7819], "huevents.harvard.edu": [7219], "*.statuspage.io": [15438], "publicknowledge.org": [13205], "logo.taobao.com": [15952], "ubfoundation.buffalo.edu": [17297], "adb.psmd.plymouth.ac.uk": [12833], "www.slfacilities.osu.edu": [11760], "pubsoft.org": [13199], "www.eagereyes.org": [19140], "mapi.sitelock.com": [14867], "www.creditdisputeprogram.com": [3789], "chiphell.com": [3088], "www3.hmv.co.uk": [7085], "www.oag.com": [11603, 11604], "img.thalia.de": [16171], "loginza.ru": [9560], "*.la-hora.org": [17120], "www.parcelforce.com": [12397], "weblications.guj.de": [6995], "dakko.us": [4126], "en.chaturbate.com": [3035], "wxwidgets.org": [19779], "vpn.weather.gov": [18034], "hwang.engineering.osu.edu": [11760], "*.publiekeomroep.nl": [13217], "www.mh21.de": [10330], "*.ulakbim.gov.tr": [16980], "www.zotero.org": [18911], "thump.vice.com": [17667], "videomind.ooyala.com": [11899], "app.sunosunao.com": [15602], "www.methodactingstrasberg.com": [10315], "www.doctortrusted.org": [4624], "*.spanair.com": [15216], "it-agenten.com": [7838], "www.noelia.fi": [11456], "*.gamcare.org.uk": [6411], "content.adriver.ru": [534], "securemetrics.apple.com": [1120], "wedos.com": [17901], "fivethirtyeight.com": [5894], "shs.wustl.edu": [17993], "blog.oo-software.com": [11893], "www.infospyware.com": [8128], "*.osvdb.org": [11677], "twimgs.com": [16021], "bitcointrezor.com": [19002], "*.popcrunch.com": [12906], "flo.cno.org": [3425], "diasp.de": [4445], "www.securabit.com": [14477], "ubykotex.com.au": [16922], "eugenekolo.com": [19163], "*.abr.gov.au": [1383], "avia.yandex.kz": [18652], "oesar.osu.edu": [11760], "www.chroniclebooks.com": [10120], "handelsblatt.com": [7187], "*.sonic.net": [15136], "trac.nginx.org": [11374], "sf.se": [14108], "www.gayswap.com": [6479], "irp.nih.gov": [11052], "verizonwireless.com": [17628], "torrentprivacy.com": [16582], "www.rafflecopter.com": [13525], "*.niden.net": [11390], "*.nexternal.com": [11366], "discuss.neos.io": [11156], "cdn.jsdelivr.net": [8655], "ventrachicago.com": [17610], "citizenlab.org": [16183], "benefits.ornl.gov": [11693], "www.galois.com": [6410], "elektra.ksh.hu": [8750], "cs.cf.ac.uk": [2835], "members.sofn.com": [15087], "cod.ed.gov": [4889], "smartpage.stanford.edu": [15383], "mynottingham.nottingham.ac.uk": [11528], "www.eliotsocietyvolunteer.wustl.edu": [17993], "www.internetdefenseleague.org": [8282], "cbmi.catalyst.harvard.edu": [7219], "forums.untangle.com": [17370], "it.engineering.illinois.edu": [17258], "www.edrive-hosting.cz": [5090], "www.kqzyfj.com": [3481], "www.lumovies.com": [9669], "haku.valtiolle.fi": [17534], "www.izea.com": [7886], "*.siteblindado.com.br": [14876], "livehelpvm01.ikoula.com": [7963], "blogs.savethechildren.org.uk": [14314], "de.pycon.org": [13263], "primabanka.sk": [13057], "www.sseeventsgroup.com": [14173], "www.rackspace.hk": [13504], "www.geog.leeds.ac.uk": [9222], "www.x-info.org": [18497], "webservices.admin.cam.ac.uk": [17243], "my.qrsolutions.com": [13287], "gic4.mycdn.me": [10824], "now.netapp.com": [11183], "*.m2pub.com": [9696], "*.unblocked.red": [17151], "centerforrights.org": [2947], "nluug.nl": [10938], "pcm.websitealive.com": [18149], "www.digitalforest.co.jp": [10967], "product-images.imshopping.com": [7763], "foebud.org": [5978], "learn.seedrs.com": [14551], "g.fastcompany.net": [5681], "www.ctools.umich.edu": [17266], "greenpeace-jugend.de": [6934], "www.thesaturdaypaper.com.au": [16309], "password.umd.edu": [17263], "ehoiva-fi.directo.fi": [19136], "my.freecycle.org": [6162], "dlisted.com": [4595], "youtube.co.in": [18709], "salattu.huuto.net": [19267], "atlsso.amd.com": [925], "wiki.freebsd.org": [6120], "www.tanomail.com": [15948], "protectthehuman.amnesty.org.uk": [971], "dev.eclipse.org": [5049], "www.scenemusic.net": [14341], "www.der-preis-jaeger.de": [4378], "account.radiusnetworks.com": [13523], "*.u-strasbg.fr": [17279], "static.slo-tech.com": [14966], "asc.osu.edu": [11760], "cabinet.multi-vpn.biz": [10698], "git.qubes-os.org": [13344], "80.93.18.36": [4512], "j.mp": [8409], "static.bityes.com": [1952], "www.mshare.net": [10414], "symplecticservices.leeds.ac.uk": [17318], "ecowatch.com": [5064], "es.prepaid-phones.t-mobile.com": [15772], "mailigen.com": [9886], "chillingeffects.org": [3079], "panel.phpnet.org": [12251], "*.sslcert35.com": [15347], "radikale.dk": [13514], "networktimefoundation.org": [11271], "geocoder.ca": [6536], "community.remotestorage.io": [13761], "go.skype.com": [14938], "cldup.com": [3223], "masternet.org": [10054], "www.jit.su": [8579], "tvbrowser.org": [15883], "www.jsonresume.org": [8459], "tandemcal.com": [15941], "www.alionet.org": [815], "*.sfm-offshore.com": [14109], "geektimes.ru": [6507], "mktemp.org": [6897], "infomaniak.com": [8112], "fafsa.ed.gov": [4889], "widget.trustpilot.com": [16798], "*.foebud.org": [5978], "addtoany.com": [573], "*.vox-cdn.com": [17850], "vonage.ca": [17838], "pack.resetthenet.org": [13804], "www.meetmecorp.com": [10212], "*.arranca.org": [1212], "drupal.osu.edu": [11760], "kcentrum.vutbr.cz": [17522], "*.packtpub.com": [12320], "serato.com": [14593], "serve.williamhill.com": [18315], "sickbits.net": [14759], "domeny.sk": [18938], "www.openfabrics.org": [11937], "www.minecraft.net": [10415], "www.sharerepo.com": [14666], "www.newsreview.com": [11339], "www.ethicalhacker.net": [5382], "www.masspirgstudents.org": [9716], "buycott.com": [2471], "pgp.mit.edu": [9749], "*.szkb.ch": [19333], "blogs.oasis-open.org": [11606], "whoisology.com": [18261], "www.bugsnag.com": [2408], "bergdorfgoodman.com": [15851], "whosgamingnow.net": [18270], "aff.onenetworkdirect.com": [11838], "*.aber.ac.uk": [414], "resnet.ucsd.edu": [16939], "www.umag.ca": [17080], "*.macpaper.com": [9704], "linac4.web.cern.ch": [2575], "www.objective-see.com": [11703], "my.begun.ru": [1755], "www.secureconnect.com": [14490], "home.guidancesoftware.com": [7006], "streaming.osu.edu": [11760], "support.tierra.net": [16435], "www.jcbusa.com": [8418], "bespied-ons-niet.nl": [1800], "www.barnardos.org.uk": [18981], "www.ics.isy.liu.se": [9084], "genua.de": [19212], "privacyinternational.org": [13082], "developer.mips.com": [9745], "www.zdf.de": [19800], "cruzbuy.ucsc.edu": [17305], "oauthplay.azurewebsites.net": [1484], "condenast.com": [3552], "jobs.n-somerset.gov.uk": [10857], "www.nzbplanet.net": [11600], "ibmsmarteritservices.sourceforge.net": [15174], "aaenhunze.nl": [11132], "everydayrewards.com.au": [18422], "service.telecolumbus.net": [16073], "tweakimg.net": [16866], "connectmyphone.com": [3581], "www.finavia.fi": [5834], "p0.raasnet.com": [13655], "diannao.jd.com": [8423], "*.the-group.net": [16287], "2roads.com": [16897], "*.mediaplex.com": [17541], "www.gimmebar.com": [6661], "sweetandsourstudio.com": [15683], "blogger.com": [2107], "www.torrentz.ch": [16591], "www.louismilan.com": [9620], "argos.ie": [1186], "perceptivepixel.com": [12556], "*.tcpalm.com": [15793], "licaishi.sina.com.cn": [14842], "useresponse.com": [17423], "grist.org": [19229], "mypage.apple.com": [1120], "your.myfonts.net": [10759], "bikebiz.com": [8227], "konzern.oebb.at": [19455], "*.cc.umanitoba.ca": [17260], "www.secwiki.org": [14459], "www.sendvid.com": [14584], "libguides.mit.edu": [9747], "www.onfleet.com": [11858], "www.oplata.info": [12058], "www.esue.ohio-state.edu": [11761], "tools.qubitproducts.com": [13345], "wscont2.apps.microsoft.com": [10364], "lookback.io": [9597], "sberbankdirect.de": [14323], "cosmo.org": [3689], "www.yokl.com": [18689], "bhosted.nl": [1518], "www.sc.wustl.edu": [17993], "wickedlasers.com": [18279], "cdn.sedo.com": [14542], "*.redbull.co.uk": [13666], "*.shopstyle.co.jp": [14720], "getkeepsafe.com": [6594], "bugs.acpica.org": [264], "listserv.techdirt.com": [5939], "contentwatch.com": [3611], "www.knightswarm.com": [8944], "downloadhelper.net": [4725], "hafner-ips.com": [7162], "cardinalatwork.stanford.edu": [15383], "idp.leeds.ac.uk": [17318], "encrypt-the-planet.com": [19157], "www.trybooth.com": [19701], "app.marinsoftware.com": [9997], "www.ampush.com": [982], "tweakhound.com": [16864], "skanetrafiken.se": [14896], "www.ecode360.com": [5054], "store.3drobotics.com": [124], "betts.com.au": [1831], "www.packetwerk.com": [12318], "origin-www.seagate.com": [14437], "www.ictrecht.nl": [7692], "www1.pollg.com": [7211], "desktop-api.fitbit.com": [5887], "svn.debconf.org": [4268], "infinitydev.org": [8094], "www.tz.de": [15895], "pngu.mgh.harvard.edu": [7218], "expandedsupport.com": [5502], "www.canon.dk": [2809], "micropython.org": [10350], "connect.kaltura.com": [8774], "www.jariangibson.com": [8521], "sysadmincasts.com": [15750], "denl.dict.cc": [4455], "interactiveonline.com": [8241], "hr.weibo.com": [18186], "www.knightlab.com": [8945], "www.irill.org": [7815], "ess.erp.johnshopkins.edu": [8611], "metadata.itunes.apple.com": [1120], "www.t-mobilebankowe.pl": [19654], "datapipe.cn": [4211], "freemail.sebijk.com": [7463], "nfc.usda.gov": [17209], "sidn.nl": [14120], "static.firefoxosdevices.org": [5861], "www.myitworks.com": [7858], "blog.evidon.com": [5458], "sp.usatlas.bnl.gov": [19009], "fr.sitestat.com": [14885], "www.swiss-virtual.com": [15695], "lp.tms.pl": [19686], "www.gfisoftware.de": [6323], "bioinfo.pl": [1898], "www.openpublicservices.cabinetoffice.gov.uk": [2701], "getoutofdebt.org": [6599], "nordu.net": [11481], "network.pivotal.io": [12730], "img05.rl0.ru": [13914], "www.victoriaforms.com": [19736], "readplaintext.com": [13614], "slax.org": [14951], "cbp.gov": [2523], "www.irisa.fr": [7816], "sunwoolab.stanford.edu": [15383], "leetway.com": [9225], "apps.pubmatic.com": [13194], "pet-nanny.net": [12587], "youtube.co.id": [18709], "s0.mt-cdn.net": [9798], "*.thumbshots.com": [16401], "www.pieperhome.de": [19493], "youtube.co.il": [18709], "*.honest.com": [7481], "s3static.stelladotcdn.com": [15463], "support.gmocloud.com": [6343], "ail.htwk-leipzig.de": [7114], "www.christianheilmann.com": [3111], "scampus.usc.edu": [17278], "ouvaton.coop": [12155], "www.ovirt.org": [11690], "four.cdn.directmailmac.com": [4527], "dashboard.mileiq.com": [10392], "i.fantasyracing.telegraph.co.uk": [16082], "*.seconfig.sytes.net": [14465], "producthunt.com": [13122], "elsevier.ca": [5184], "*.www.freelancer.com": [6176], "alumni.th-mittelhessen.de": [15809], "dwar.mail.ru": [9874], "blossom.co": [2122], "projects.zoho.com": [18884], "fischerportal.axosoft.com": [1477], "ekmsecure22.co.uk": [5136], "hyperspin.com": [7648], "a3.ec-images.myspacecdn.com": [10848], "safesource.org.nz": [14228], "an.avast.com": [1444], "www.hertz.com.au": [7336], "i-d.vice.com": [17667], "*.usnautic.com": [17064], "gfisoftware.de": [6323], "buzzfocus.com": [2474], "web-analytics.fco.gov.uk": [5558], "www.vtv.fi": [17537], "www.bluestargolf.com": [8431], "adfs.coct.edu": [2642], "app.livechatinc.com": [9480], "asset-f.soupcdn.com": [15167], "www.e-estonia.com": [4838], "well.com": [18263], "ww251.smartadserver.com": [14982], "editor.fuelcdn.com": [6243], "msisac.cisecurity.org": [2617], "val.vutbr.cz": [17522], "windlgroup.engineering.osu.edu": [11760], "officedepot.com": [11747], "www.recyclenow.com": [13654], "at.amgdgt.com": [953], "computefest.seas.harvard.edu": [7219], "danzappone.com": [16328], "www.ping-fast.com": [12680], "mirror-svc.nytimes.com": [11000], "www.adultcineporn.com": [648], "domaincontext.com": [4653], "yun.baidu.com": [1618], "editor.wix.com": [18383], "english.stanford.edu": [15383], "m.centzy.com": [2960], "pcr-online.biz": [8227], "www.aetherflyff.com": [694], "*.cpsc.gov": [2649], "secure.citizensforethics.org": [2657], "kotte-zeller.de": [8995], "onlinebanking.mandtbank.com": [9690], "gametracker.com": [6443], "phpdoc.org": [12653], "*.dhi-scotland.com": [19118], "italiano.istockphoto.com": [19309], "express-vpn.com": [5516], "images1.sanalmarket.com.tr": [14275], "data.maine.gov": [9894], "store.nike.com": [11401], "www.sqlite.org": [14163], "learndrupal.stanford.edu": [15383], "kat.ph": [8879], "microblink.com": [10351], "www.ssafa.org.uk": [14170], "einvoicepayments.hants.gov.uk": [7196], "cdn.avanti247.com": [1442], "securehomes.esat.kuleuven.be": [8816], "profile.freepik.com": [6182], "board.goldesel.to": [19226], "mooculus.osu.edu": [11760], "*.manta.com": [9960], "news.mail.ru": [9874], "*.toofishes.net": [16551], "www.jres.org": [8455], "qabel.de": [13298], "wiki.hackerspace.pl": [7149], "tune.yandex.com": [18651], "notwithoutawarrant.com": [11518], "webmail.htwg-konstanz.de": [7113], "www.gvntube.com": [6399], "www.speedtest.net": [15258], "amnistia.org.pe": [978], "www.perle.com": [12577], "support.earthlink.net": [5007], "*.bethsoft.com": [1818, 1819], "umbr3.cabinetoffice.gov.uk": [2701], "hrselfservice.sevenoaks.gov.uk": [14638], "www.shagaholic.com": [785], "retsinformation.dk": [13830], "*.leadnow.ca": [9201], "titleix.stanford.edu": [15383], "www.costprojections.cancer.gov": [2805], "gnd-tech.com": [6351], "payments.parkingeye.co.uk": [12406], "www.vinumeris.com": [17725], "toq.qualcomm.com": [13328], "globalways.net": [6741], "orgchart.mit.edu": [9749], "cornell.edu": [3676], "walthers.com": [17967], "www.jumpeyecomponents.com": [8674], "s-passets-ec.pinimg.com": [12691], "www.cryptoparty.in": [3886], "partner.just-eat.ie": [19328], "www.kb8ojh.net": [8828], "cmw-leipzig.de": [7114], "app.readspeaker.com": [13610], "bundlestars.com": [2437], "publicidade.brasil247.com": [2290], "*.pairlite.com": [12336], "*.schneider-electric.com": [14357], "iway.ch": [19314], "partners.nvidia.com": [10985], "debianforum.de": [4276], "v.cdn.vine.co": [17722], "www.choopa.com": [3099], "atmsbookings.staffordshire.gov.uk": [15370], "www-cs.ucsd.edu": [16939], "docs.joomla.org": [8627], "www.huntonprivacyblog.com": [19266], "www.nokiausa.com": [11461], "*.vxcdn.com": [17625], "business.idealo.com": [7929], "www.techrepublic.com": [16015, 16016], "www.antispam-ev.de": [1069], "www.dayz.com": [4236], "comcourts.gov.au": [3491], "cdme.engineering.osu.edu": [11760], "www.hr.buffalo.edu": [17297], "www.nixsrv.com": [11431], "torchlightgame.com": [16573], "static1.marvelstore.com": [10040], "www.barbican.org.uk": [1661], "www.postnewsads.com": [12981], "mdot.uw.edu": [17077], "www.openskillz.com": [19461], "procontract.due-north.com": [19129], "simcenter.osu.edu": [11760], "hk-en.norton.com": [11505], "www.crowdsupply.com": [3823], "cart.godaddy.com": [6773], "st.unitedplatform.com": [17219], "realmatch.com": [13624], "log.dmtry.com": [4604], "apisandbox.msdn.microsoft.com": [10364], "help.encoding.com": [5232], "www.dtunnel.com": [4086], "handtekening.nl": [7192], "schnellno.de": [14361], "www.amnesty.org.pl": [968], "maps.havering.gov.uk": [7244], "theexplorercard.com": [16272], "warwick.ac.uk": [17348], "sparxtrading.com": [15228, 15229], "mlpassword.gmu.edu": [6544], "bestofferbuy.com": [1805], "sam.msi.com": [9792], "wattpad.com": [18006], "ssl-ds.static.rtbf.be": [14011], "sutton.moderngov.co.uk": [19405], "marketing.westernunion.com": [18216], "fandango.com": [5652], "abo.tagesanzeiger.ch": [15908], "iomtt.com": [8336], "cdn.shptrn.com": [14724], "gay-torrents.net": [6480], "kalender.mail.de": [9873], "wwwssl.coveritlive.com": [3735], "leadership.uchicago.edu": [17246], "www.codecademy.com": [3361], "www.ettus.com": [5396], "img01.sogoucdn.com": [15102], "freenode.net": [19196], "get.typo3.org": [15894], "da.yle.fi": [18686], "clickequations.net": [3245], "dj.rasset.ie": [13571], "www.fca.org.uk": [5557], "www.zone-h.org": [18892], "ads.perfectaudience.com": [12559], "twinings.co.uk": [16880], "fuelcdn.com": [6243], "m.quote.comparethemarket.com": [3511], "www.nycla.org": [10989], "myportal.ti.com": [16152], "*.bbcomcdn.com": [2174], "bundespolizei.de": [2432], "tradein.vodafone.co.uk": [17813], "mbr.nlm.nih.gov": [11052], "kb8ojh.net": [8828], "mekar.osu.edu": [11760], "ribf.riken.jp": [13430], "marketplace.hubspot.com": [7594], "www.autovps.net": [1423], "forum.openwrt.org": [11992], "www.kolektiva.com": [8963], "*.huffpost.com": [7600], "*.pjmedia.com": [12263], "images3.q8car.com": [13278], "connect.idoxgroup.com": [19281], "app.applyyourself.com": [1130], "sslvpn.busfin.ohio-state.edu": [11761], "kryptosfera.pl": [9021], "www.hipmunk.com": [7416], "cashforcontracts.com": [2880], "gigenetcloud.gigenet.net": [6657], "www.parapoupar.com": [12383], "*.advolution.de": [671], "www.noo.nhs.uk": [10913], "dubfire.net": [4790], "artfiles.de": [1230], "www.montereybayaquarium.org": [10567], "torrentz.ch": [16591], "reporo.com": [13780], "secureinthecircle.com": [14498], "video.yandex.kz": [18652], "o15.officeredir.microsoft.com": [10364], "dashboard.gocoin.com": [6771], "ediss.uni-goettingen.de": [17166], "ultrahdtv.net": [17135], "seba-geek.de": [15129], "remote.vuze.com": [17878], "www.checkbox.com": [19054], "aaspring.com": [398], "psfw.jd.com": [8423], "westlaw.com": [18218], "www.taiga.io": [15911], "www.spilnu.dk": [15275], "www.cov.com": [3723], "packaging.python.org": [13272], "shop.sowka.dosowisko.net": [4688], "healthtap.com": [7258], "aclum.org": [258], "www.temp-mail.org": [16105], "cdn.f5.com": [5546], "blacknight.com": [2054], "store.invensense.com": [8311], "theresumator.com": [16235], "kdelive.org": [8830], "veloviewer.com": [17599], "www.dnb.com": [4138], "blog.demisto.com": [4352], "www.eyefilm.nl": [4998], "img.pre.realty.mail.ru": [9874], "support.dandb.com": [4137], "vtech.com": [17519], "m.stubhub.com": [15534], "www.totalfanshop.net": [16603], "newstudents.berkeley.edu": [17240], "www.i-koruna.com": [7751], "curah.microsoft.com": [10364], "www.exoticads.com": [5501], "fosdem.org": [6069], "editorialmanager.com": [5087], "www.spamicity.info": [15215], "www.osumc.edu": [11676], "www.lookback.io": [9597], "xmind.net": [18528], "secure.avahost.net": [1436], "startmail.com": [15410], "map.cam.ac.uk": [17243], "*.process-one.net": [13119], "pingdom.com": [12687], "community.apan.org": [329], "lpice.eu": [9096], "accionistas.walmart.com": [17964], "www.vanwinkles.com": [17553], "whiteout.io": [18256], "www.goldenadventures.com": [6812], "library.slashdotmedia.com": [14948], "ingushetia.rt.ru": [13469], "secure.kettering.gov.uk": [8861], "www.ilo.org": [7752], "varietylatino.com": [17566], "www.pop6.com": [12901], "www.brianclifton.com": [2310], "dashboard.adtile.me": [640], "linguistics.stanford.edu": [15383], "www.welcometometlife.com": [18190], "aldi.us": [299], "calc.mellanox.com": [10240], "support.brighttalk.com": [2323], "events.ucc.ie": [16933], "www.mongodb.org": [10554], "www.thefederalistpapers.org": [16275, 16276], "*.billiger.de": [1881], "arstechnica.com": [1217], "www.playvid.com": [12797], "*.bankofscotland.de": [1650], "adpeepshosted.com": [546], "jpberlin.de": [8446], "metrics.pcmag.com": [18860], "peijian.taobao.com": [15952], "rmit.edu.au": [13437], "macainfo.org": [9825], "content001.bet365affiliates.com": [18992], "*.org.edgesuite.net": [760], "so.swisscom.ch": [15698], "blog.ashampoo.com": [1250], "gemeenteberkelland.nl": [11132], "www.interac.ca": [8234], "www.c4ss.org": [2504], "mail.uniregistry.com": [17196], "www.untergeschoss.ch": [17372], "pl.gamigo.com": [6445], "blog.pressdisplay.com": [2132], "labanimals.stanford.edu": [15383], "www.dotultima.com": [4706], "nr-media-01.nationalreview.com": [11073], "staging.equityzen.com": [5337], "www.claimyourname.io": [3207], "docs.typo3.org": [15894], "sceper.ws": [14343], "*.derwesten.de": [4384], "travis-ci.org": [16701], "frictionalgames.com": [6210], "*.kde-files.org": [19462], "cdn1.evernote.com": [5450], "ey.com": [5346], "*.dropbox.com": [4768], "blog.dwolla.com": [4815], "instagram.com": [8182], "covers.elsevier.com": [5185], "ads.audienceamplify.com": [1354], "people.isy.liu.se": [9084], "www.kde.org": [8718], "download.owncloud.org": [12182], "castlebridge.ie": [2892], "www.7headlines.com": [189], "www.couragefound.org": [3714], "solarmovie.is": [15113], "york.cuny.edu": [18695], "2.f.ix.de": [8404], "openingscience.org": [12037], "www.vis.fsc.va.gov": [17019], "independentmail.com": [8055], "www.ncbi.nlm.nih.gov": [11052], "www.recalll.co": [13642], "blog.netbsd.org": [11184], "blog.jolla.com": [8622], "megashare.im": [10231], "img.youm7.com": [18714], "hdtracks.com": [7056], "hackerschool.com": [7148], "b10.yahoo.co.jp": [18640], "*.oversee.net": [12169], "digital.lib.washington.edu": [17291], "www.theiphonewiki.com": [16330], "bps.org.uk": [1538], "looppay.com": [9605], "www.magellanmodels.com": [9848], "zubu.re": [19804], "www.bitcointrezor.com": [19002], "pcs.com": [12230], "*.proxmox.com": [13179], "download.qt.io": [13315], "www.planetromeo.com": [12764], "i.api.grvcdn.com": [6989], "qsli.com": [13288], "my.monash.edu": [10541], "echoplex.us": [5047], "www.ethz.ch": [4975], "chi1.intel.com": [8209], "zona.skylink.cz": [14937], "openstat.net": [11976], "www.linkshare.com": [13534], "bluenote.io": [2153], "www.schotty.com": [19571], "mixcloud.com": [10465], "portalmasq.com": [12280], "bizjournals.com": [16180], "acme.legiscan.com": [9230], "sis.nlm.nih.gov": [11052], "www.postbox-inc.com": [12960], "special.dreampass.jp": [4752], "6.*.wdfiles.com": [18294], "solutionshealthcare.com": [15125], "hackhands.com": [7132], "gfihispana.com": [6322], "help.switch.ch": [15699], "hboc.osu.edu": [11760], "marketing.extensis.com": [5522], "specialized.net": [15241], "sellaband.com": [14569], "countermeasures.trendmicro.eu": [16714, 16716], "geophysics.stanford.edu": [15383], "admin.lautre.net": [9171], "www.saimd.com": [3682], "mebank.com.au": [9736], "hr.wustl.edu": [17993], "enter.enaza.ru": [5230], "blogmint.com": [2110], "*.standup2cancer.org": [15377], "gmx.de": [6350], "kitenet.net": [8925], "www.coinjar.com": [3397], "linux-tage.de": [9398], "voicelessonstotheworld.com": [11300], "ntr.nasa.gov": [10869], "www.finanzcheck.de": [19179], "lat.ms": [1920], "www.put.io": [13256], "tribot.org": [15858], "tvprogram.upc.cz": [17000], "www.aldimobile.com.au": [300], "www.nutritiondata.self.com": [11585], "www.tchibo-ideas.de": [15985], "www.skanetrafiken.se": [14896], "hellobar.com": [7294], "users.rust-lang.org": [14047], "www.royalfree.nhs.uk": [10913], "www.airpair.com": [747], "ae.norton.com": [11505], "beautifuldecay.com": [1740], "www.globalweb.co.uk": [6736], "mispy.me": [10454], "mba.illinois.edu": [17258], "logitech.com": [9561], "www.lizardtech.com": [2930], "avo.gov.au": [1404], "partnervpn.symantec.com": [15715], "web.cern.ch": [2575], "www.rev.com": [13837], "*.eurovision.tv": [5432], "bitre.gov.au": [2440], "pantheon.io": [12372], "its.freebsoft.org": [6123], "*.iwebreader.com": [7876], "cancer.stanford.edu": [15383], "wiki.fool.com": [6006], "bancopostaonline.poste.it": [12965], "dpmaster.deathmask.net": [4266], "*.marsupi.org": [10030], "leamington.greenparty.org.uk": [6925], "help.aweber.com": [378], "img1.youm7.com": [18714], "beta.vidup.me": [17703], "id.openmrs.org": [11953], "order.ikoula.com": [7963], "internet-banking.dbs.com.sg": [4010], "decs.osu.edu": [11760], "*.getchef.com": [6586], "www.richarddawkinsfoundation.org": [13872], "garygoddard.com": [6803], "cdn.ws.citrix.com": [3178], "hertz247.pt": [7359], "www.lewrockwell.com": [9278], "*.specificmedia.co.uk": [15242], "*.kicknews.net": [8878], "www.oecd-ilibrary.org": [11618], "maps.yandex.mobi": [18653], "www.update.microsoft.com": [10363], "nerfnow.com": [11161], "bosh.io": [2229], "www.umano.me": [17141], "spacepolicyonline.com": [15206], "rimg09.rl0.ru": [13914], "www.bournetocode.com": [2250], "updatecenter.norton.com": [11505], "newcastlecollection.newcastle.gov.uk": [11315], "fb.izvestia.ru": [8407], "helpshift.com": [7310], "myview.torbay.gov.uk": [16569], "stockport.objective.co.uk": [19454], "www.lucidchart.com": [9645], "reconingspeakers.com": [15237], "*.echothrust.com": [5048], "apps1.seagate.com": [14437], "anon.click": [1040], "thegef.org": [8259], "www.lduhtrp.net": [3481], "bspace.berkeley.edu": [17240], "jscss.superpages.com": [15633], "www.tuakiri.ac.nz": [16812], "fders.osu.edu": [11760], "www.cityoflondon.police.uk": [3194], "cdn.scribblelive.com": [14413], "www.internetfonden.se": [8288], "alipay.com": [817], "totalicare.com": [16602], "ifosslr.org": [8260], "cryptome.info": [3879], "pqshibboleth.proquest.com": [13112], "netmarble.com": [11242], "www.open.ac.uk": [11986], "couchpota.to": [3698], "knowingly.com": [19341], "www.searchstorage.de": [16018], "*.eyeos-apps.org": [19462], "cdn6.sure-assist.com": [15644], "*.fail0verflow.com": [19173], "wpml.org": [17922], "france-universite-numerique-mooc.fr": [6097], "amsa.gov.au": [1397], "va.gov": [17019], "metrics.aem.playstation.com": [12795], "l.ooyala.com": [11900], "demonii.com": [4357], "cms.msi.com": [9792], "astronomynow.com": [1306], "files.namecheap.com": [11019], "oag.com": [11603, 11604], "nettitude.co.uk": [11253], "www1.maths.ox.ac.uk": [17271], "taras.yandex.com.ua": [18650], "www.imssr.com": [7760], "store.tequipment.net": [16119], "newamerica.org": [11301], "www.rdot.org": [13410], "i.marketwatch.com": [10021], "www.irctc.co.in": [7812], "dev.netzob.org": [11277], "geotrust.com": [6549], "downloads.php.net": [12250], "community.mobify.me": [10492], "uppsalahem.se": [17397], "certificatemonitor.org": [2969], "*.taifex.com.tw": [15784], "reviews.lendingclub.com": [9246], "www.hyperspin.com": [7648], "sparklabs.com": [15220], "www.redletterdays.co.uk": [13677], "www.nccgroup.com": [10879], "*.iplay.com": [8345], "*.freecultr.com": [5594], "www.rc4nomore.com": [19540], "www.codeofhonor.com": [3344], "mips.com": [9745], "masteringemacs.org": [10057], "oraweb.ulaval.ca": [17229], "support.sandvine.com": [14284], "www.vinilox.eu": [17724], "www2.leboncoin.fr": [19351], "*.libravatar.org": [9308], "twiki.nevis.columbia.edu": [3448], "aan.com": [936], "*.webex.com": [18061], "ru.nl": [13510], "www.internetsociety.org": [8275], "meiyantang.taobao.com": [15952], "demo.tiki.org": [16444], "www.parallels.com": [12392], "www.e-pages.dk": [4857], "speedvolunteer.london.gov.uk": [9578], "www.secure.citizensforethics.org": [2657], "www.agra-net.com": [733], "lensrentals.com": [9255], "gravity.com": [6900], "startcom.org": [15407], "www.bittylicious.com": [2026], "www.linuxfoundation.org": [9412], "help.hootsuite.com": [7488], "profiles.live.com": [9483], "guru.de": [19233], "www.tenten.vn": [16117], "register.msi.com": [9792], "colocore.ch": [3436], "wiki.openwrt.org": [11992], "www.xdebug.org": [18552], "emsonline.gloucestershire.gov.uk": [6749], "kinox.pe": [19337], "selfsolve.apple.com": [1120], "www.strava.cz": [15514], "myhr.sydney.edu.au": [19649], "flightaware.com": [5919], "10minutemail.com": [13], "ct.gov": [2680], "imguol.com": [7995], "iplocation.net": [19304], "www.spark-summit.org": [15218], "usage.jenkins-ci.org": [8551], "www.benedikt-bitterli.me": [1775], "g2a.com": [6296], "aries.apache.org": [1086], "dutch.tags.literotica.com": [9467], "exchange.cex.io": [2587], "ees.elsevier.com": [5183], "docs.run.pivotal.io": [12730], "www.sebastian-siebert.de": [14455], "cruises.united.com": [17212], "www.yandex.by": [18648], "www.unixmen.com": [17355], "www.handelsbanken.fi": [7186], "cache.gawkerassets.com": [6476], "www.0bin.net": [2], "www.weibo.com": [18187], "www.easypost.com": [5029], "fortinet.com": [6056], "community.thefoundry.co.uk": [16278], "www.docs.indymedia.org": [8085], "ems.doncaster.gov.uk": [4678], "events.eoportal.org": [5314], "ruag.com": [19559], "webapp.zdf.de": [19800], "www.northdown.gov.uk": [4530], "postovoy.org": [19512], "www.moonpig.com.au": [10578], "www.slettmeg.no": [4216], "www.sonobi.com": [15139], "www.kvm-vps.com": [8755], "www.novell.com": [11530], "*.racket-lang.org": [13498], "gov.wales": [6860], "service.burstnet.eu": [2445], "roundhouse.org.uk": [13987], "committees.web.cern.ch": [2575], "adwizard.springer.com": [15309], "*.assistly.com": [4392], "skyacademy.com": [14928], "firstintegrity.com": [5877], "golflink.com": [6820], "tango.me": [15946], "*.fout.jp": [6083], "www.qualityunit.com": [13331], "acell.osu.edu": [11760], "*.ssl.catalog.video.msn.com": [9796], "hide.me": [7391], "login.johnshopkins.edu": [8611], "ctlm.onlineshop.cz": [19459], "*.onswipe.com": [11887], "www.iterm2.org": [7864], "www.hekko.pl": [7290], "french.tags.literotica.com": [9467], "jdkasten.com": [8427], "iosdevweekly.com": [7781], "ats.tumri.net": [16827], "manual.phpdoc.org": [12653], "*.personforce.com": [12586], "www.seekingarrangement.com": [14553], "www.mcdee.com.au": [10124], "portal.apple.com": [1120], "megafon.ru": [10226], "riversidemajestic.com": [13908], "wiki.services.eoportal.org": [5313], "images.encyclopediadramatica.se": [5241], "www.thr.com": [15813], "worldtomorrow.wikileaks.org": [18291], "lib.openmpt.org": [11951], "forum.zazzle.com": [18804], "magnetic.domdex.com": [4667], "*.hollywoodoutlaws.com": [7456], "clssl.org": [3319], "netverify.com": [11256], "vod.shaw.ca": [14687], "danskeanalyse.danskebank.dk": [4145], "dvdnav.mplayerhq.hu": [9784], "awaps.yandex.kz": [18652], "webauth.service.ohio-state.edu": [11761], "static.sabayon.org": [14214], "www.7elements.co.uk": [190], "universityadmissions.se": [17352], "webmail.kth.se": [8752], "fordela.com": [6021], "m.stubhub.de": [15534], "youshould.installgentoo.net": [18699], "meldium.com": [10239], "*.wennect.info": [18201], "zynga.tm": [18932], "www.leisurebookings.birmingham.gov.uk": [19000], "www.bite.lt": [1991], "bpaste.net": [2262], "6.vgc.no": [17484], "lovtidende.dk": [9634], "*.www.ladyfootlocker.com": [9128], "digitaldollhouse.com": [4492], "lesterchan.lesterchan.netdna-cdn.com": [9262], "www.pentestpartners.com": [12530], "cookie.fdih.dk": [6026], "the-dma.org": [16185], "secure.ace-tag.advertising.com": [662], "gohealthservices.scot.nhs.uk": [10913], "sesplan.objective.co.uk": [19454], "wiki.ro.vutbr.cz": [17522], "*.microsec.hu": [10359], "www.pantz.org": [12375], "edge3.digicert.com": [4473], "sacnas.org": [14066], "www.justice4assange.com": [8699], "eu.gcsip.com": [19210], "www.aldi.nl": [299], "www.enalean.com": [5229], "optionbit.com": [12075], "sinaapp.com": [14843], "powerlinemanmag.com": [13003], "cgit.cyrus.foundation": [3989], "www.pixelh8.co.uk": [12739], "secure.grepular.com": [6944], "rawgithub.com": [13581], "darktable.org": [4154], "www.bitmi.de": [2434], "connect.me": [3580], "gluster.org": [6752], "*.gaia.hs.llnwd.net": [6405], "api-stage.websitealive.com": [18149], "lloydstsb-offshore.com": [9523], "netelligent.ca": [11224], "www.researchmatch.org": [13797], "assistenza.tiscali.it": [16498], "code.nasa.gov": [10869], "idm.data.gov": [4175], "bokborgen.se": [2183], "www.ipswich.gov.uk": [8351], "*.adk2.com": [598], "iv.lt": [8397], "script.crazyegg.com": [3764], "webalert.jp": [18053], "www.stalkr.net": [15372], "www.dealchicken.com": [12631], "i.superlawyers.com": [15621], "defi.dict.cc": [4455], "www-apps.hillingdon.gov.uk": [7410], "a4.mzstatic.com": [10852], "airtime.pro": [755], "riverbed.com": [13907], "www.talkhealthpartnership.com": [15931], "nl.gamigo.com": [6445], "download.clearlinux.org": [3233], "www.anrdoezrs.net": [3481], "wumt.westernunion.com": [18216], "enocloud.com": [19138], "*.tugraz.at": [15875], "www.sourcefabric.org": [15180], "www.winzip.com": [18333], "securelist.com": [14492], "asacp.org": [344], "www.tracker-software.com": [16631], "a0.thelateroomsgroup.com": [19676], "www.auditshark.com": [1361], "specs.adfox.ru": [524], "people.codeforamerica.org": [3359], "aclu.org": [256], "www.websocket.org": [18088], "feedback.userreport.com": [17437], "hypeshell.com": [14160], "informatick.net": [8122], "www.azingsport.se": [1482], "timeshighereducation.com": [16464], "www.ecn.ulaval.ca": [17229], "financialaid.stanford.edu": [15383], "www.ybitcoin.com": [18611], "vps.gmocloud.com": [6343], "www.nri.co.jp": [11466], "assets-jpcust.jwpsrv.com": [8701], "www.cgs.osu.edu": [11760], "technicalcommunity.com": [16035], "securejoinsite.com": [14502], "edupage.org": [5091], "buywithconfidence.gov.uk": [19031], "actblue.com": [488], "openbenchmarking.org": [11922], "sethvargo.com": [14633], "www.blottr.com": [2125], "newrepublic.com": [11309], "www.hotscripts.com": [7551], "grahamcluley.com": [6885], "*.energy.gov": [5254], "www.boxwoodtech.com": [2261], "my.modulus.io": [10527], "kr36.co": [9003], "www.standagainstspying.net": [15376], "serviceinfo.rescue.org": [19546], "*.dualshockers.com": [4788], "*.rightscale.com": [13884], "md03.plex.tv": [12814], "s4.shinystat.com": [19587], "cavirtex.com": [2910], "loughborough.greenparty.org.uk": [6925], "r66t.com": [13392], "china.jd.com": [8423], "owa.ut.ee": [17069], "searchmarketingexpo.com": [16367], "www.jako-o.com": [8496], "www.baekdal.com": [1613], "windstream.com": [18349], "yourmembership.com": [18725], "www.getlantern.org": [6595], "kuantokusta.pt": [9027], "library.ucc.ie": [16933], "*.crate.io": [3763], "www.fitbit.com": [5887], "news.brown.edu": [2367], "radartv.nl": [13509], "static.adziff.com": [18860], "images3.rapidshare.com": [13558], "dynabrainsportal.axosoft.com": [1477], "xavisys.com": [18547], "aldi-suisse.ch": [299], "*.olark.com": [11779], "tv.infowars.com": [8129], "www.csaf.cz": [2663], "intranet.dsi.cnrs.fr": [6195], "ads.networkhm.com": [11273], "www.surveygizmo.com": [15658], "www.webmon.com": [18134], "*.conscallhome.com": [3588], "room.eiffel.com": [5124], "www.umassmag.com": [17264], "secure.goabroad.com": [6769], "computer.ly": [3537], "blackvpn.com": [2042], "syslog-ng.org": [15754], "www.gifgratis.net": [6639], "www.mailbox.org": [9881], "io-test-gw.vutbr.cz": [17522], "www.icewarp.com": [7913], "isle.jp": [8368], "eth0.nl": [5376], "www.oeticket.com": [11731], "logilab.fr": [9559], "wit.ai": [18378], "payments.heifer.org": [7284], "science.jpl.nasa.gov": [10869], "blog.fitbit.com": [5887], "www.ricochet.com": [13877], "www.freevps.us": [6134], "gifts.rescue.org": [19546], "www.doriancolor.com": [4685], "*.upenn.edu": [17273], "citibank.com": [3171], "www.achaea.com": [18937], "community.remedygames.com": [13757], "databases.ohiolink.edu": [11762], "kr.norton.com": [11505], "passport-ckicheck.yandex.kz": [18652], "www.hertz.co.th": [7369], "www.codersclan.net": [3376], "www.forum.fruct.org": [5595], "rsc.org": [13997], "domainstore.dotcologne.de": [4694], "exaccess.ru": [12786], "www.msi-shop.de": [9791], "*.which.co.uk": [18240], "www.flixbus.at": [5931], "humanevents.com": [7609], "www.ircreviews.org": [7813], "www.blackboard.com": [2051], "index.rsf.org": [13784], "oneonline.monmouthshire.gov.uk": [10560], "newgrounds.com": [11317], "foundationbeyondbelief.org": [6078], "www.orange.jobs": [12085], "*.trisquel.info": [16751], "forestsangha-163c.kxcdn.com": [6029], "bitcoin-central.net": [1957], "lts.cms.here.com": [7326], "*.ugr.es": [17314], "platinumperformance.com": [12787], "www.hnfe.vt.edu": [17740], "new-wiki.freenetproject.org": [6181], "connect.digitalwpc.com": [4502], "www.upay.co.uk": [17384], "control.freefind.com": [6127], "*.unt.edu": [17269], "lazycoins.com": [9184], "blog.polleverywhere.com": [12880], "secure.research.vt.edu": [17740], "search.citrix.com": [3178], "websupport.sk": [18160], "afisha.yandex.by": [18648], "www.vzaar.com": [17883], "*.etracker.com": [5390], "uclahealth.org": [16935], "labs.opendoor.com": [12008], "valueshop.co.uk": [17544], "polipayments.com": [12276], "ric.nal.usda.gov": [17209], "training.enthought.com": [5299], "www.homeinsurance.com": [7468], "www.bayfiles.com": [1698], "m.voyage-prive.co.uk": [17856], "secregen.unizar.es": [17356], "stat.finansportalen.no": [5830], "prime.wistia.com": [18377], "www.swm-infrastruktur-region.de": [14208], "www.calsky.com": [2727], "www.cjib.nl": [11132], "www.strategyanalytics.com": [15510], "binsearch.info": [1888], "indico.desy.de": [4399], "*.startssl.us": [15407], "gaminatorslots.com": [6446], "static-1.ivoox.com": [7871], "inside.law.yale.edu": [18642], "*.cbsistatic.com": [2528], "earthvpn.com": [19141], "abebooks.co.uk": [407], "blog.legacy.com": [18428], "www.objectif-securite.ch": [11702], "tele-task.de": [16068], "*.racjonalista.pl": [13494], "simple.com": [14820], "libanswers.wustl.edu": [17992], "secure.adultfriendfinder.com": [643], "www.myresumeagent.com": [10779], "*.convar.com": [3625], "securitymouse.com": [14532], "sc3.rgstatic.net": [13422], "www.oracle-base.com": [12080], "primedice.com": [13060], "element.yandex.kz": [18652], "hackthe.computer": [7159], "*.suresupport.com": [15645], "*.gfycat.com": [6625], "proxy3.switchadhub.com": [15701], "equinix.com": [5334], "uni-erlangen.de": [17311], "www262.americanexpress.com": [935], "*.whitefence.com": [18249], "buckeyelink.osu.edu": [11760], "www.ddosbreak.com": [4021], "join.secondlife.com": [14462], "ist.berkeley.edu": [17240], "anybots.com": [1078], "claimlisting.superpages.com": [15633], "katedra.skolaonline.cz": [19598], "kinnear.wigan.gov.uk": [18286], "*.ivwbox.de": [8403], "motherjones.com": [10606], "keckselfservice.med.usc.edu": [17278], "mobile.altoonamirror.com": [894], "a4uexpo.com": [227], "xml.yandex.com.tr": [18649], "people-df.live.com": [9483], "pld-linux.org": [12268], "googlecode.com": [6844], "*.tsgstatic.com": [16809], "www.youtube.com.sa": [18709], "utopia.ai": [17456], "builds.piwik.org": [12733], "git.haskell.org": [7229], "kidshealth.org": [8883], "wbplay.wbgames.com": [3502], "sankakucomplex.com": [19563], "app-us-lb2.resrc.it": [13599], "touch.deti.mail.ru": [9874], "verifier.accounts.firefox.com": [5859], "forms.nrc.gov": [17211], "shop-america.u-blox.com": [16921], "blog.docker.com": [4616], "manage.zadarastorage.com": [18777], "healthonnet.org": [7260], "filmlinc.com": [5808], "dynavision.de": [4833], "d.gr-assets.com": [6877], "chainlove.com": [2981], "upc.nl": [17002], "book.360buy.com": [111], "*.airbnb.fr": [749], "blog.quinstreet.com": [13366], "www.talkoclock.com": [15934], "folding.stanford.edu": [15383], "nmbl.engineering.osu.edu": [11760], "www.synergistscada.com": [15735], "c.cldlr.com": [3222], "blog.peerj.com": [12515], "tickets.megaadventure.com.au": [19393], "movie4k.me": [10636], "technical.lavaboom.com": [9173], "puhkaeestis.ee": [13222], "imgcache.gtimg.cn": [6993], "*.biggestloserclub.com": [1862], "www.progress.com": [13132], "tel.exmail.qq.com": [13285], "connect1.osu.edu": [11760], "www.torrentday.com": [16579], "ticketweb.*": [16421], "terresoubliees.com": [16131], "www.fellowselection.acs.org": [929], "git.typo3.org": [15894], "linuxforums.org": [9422], "secure.keyghost.com": [8867], "shtuff.it": [14748], "ntid.rit.edu": [13434], "xen-orchestra.com": [18556], "cloud.idg.se": [7705], "www.eyereturnmarketing.com": [5532], "eerdmans.com": [5105], "ourskillsforce.co.uk": [19472], "static.gimp.org": [19218], "forums.manageengine.com": [9940], "suffolkcoastal.greenparty.org.uk": [6925], "ads-creativesyndicator.com": [3781], "www.hungerhost.com": [7619], "ask.puppetlabs.com": [13232], "alex.se": [793], "www.parkmodelsdirect.com": [12403], "f5.com.cn": [5545], "id.e-generator.com": [4839], "gis.ngdc.noaa.gov": [11083], "www.redfin.com": [13696], "www.victoriassecret.com": [17672], "www.e-nls.com": [11398], "moneyandmarkets.com": [18188], "www.*.umaine.edu": [17321], "assets.fiercemarkets.net": [5776], "www.svazurich.ch": [19644], "astyle-src.alicdn.com": [805], "*.tnnet.fi": [15838], "mobihand.com": [10491], "cdmi.engineering.osu.edu": [11760], "consult.telford.gov.uk": [19669], "tickertech.com": [16412], "blockexplorer.com": [2083], "avadirect-freedomusainc1.netdna-ssl.com": [1438], "www.cari.net": [2518], "asia.norton.com": [11505], "ads.adfox.ru": [524], "www.luxurycustomwheels.com": [9677], "codecademy.com": [3361], "source.domaintools.com": [4660], "www.ghbtns.com": [6626], "linux.org.ru": [9408], "govtrequests.facebook.com": [5620], "bscmembers.leeds.gov.uk": [19353], "www.cavium.com": [2911], "www.9to5mac.com": [18428], "www.notalwaysromantic.com": [19441], "linkbucks.com": [9375], "help.discussions.zoho.com": [18884], "iojs.org": [8338], "www.filestack.com": [5801], "www.clockworkmod.com": [3273], "blog.pay4bugs.com": [12466], "hacks.owlfolio.org": [12179], "download.sonatype.com": [15132], "stocktwits.com": [15478], "m.cff.ch": [15693], "technology.wustl.edu": [17993], "arbeidskontoret.piratpartiet.no": [12724], "www.theglobeandmail.com": [6743], "proxery.com": [13177], "www.absolute.com": [430], "price.ua": [13049], "letsencrypt.org": [9264], "www.whitehatters.academy": [19757], "www.vianet.co.uk": [17663], "bluekrypt.com": [2134], "*.beaverbrooks.co.uk": [1742], "bclaconnect.ca": [1508], "security.symantec.com": [15715], "sigmabeauty.com": [14778], "grupfoni.com": [6986], "blackducksoftware.com": [2045], "www.codeschool.com": [3357], "thefrozenfire.com": [16336], "nodesource.com": [11451], "erfolgscenter.1und1.de": [68], "uniformwares.com": [17186], "cambeywest.com": [2765], "forums.asmallorange.com": [214], "www.verisign.com.tw": [17623], "www.extensis.com": [5523], "www.exavault.com": [5474], "www.nationale-it-security-monitor.nl": [11089], "wl.easydategroup.com": [785], "view.1688.com": [36], "danskebank.dk": [4145], "pip.verisignlabs.com": [17624], "*.wishabi.ca": [18372], "umassulearn.net": [17265], "www.nemid.nu": [11142], "reisen.tchibo.ch": [15985], "analytics.cloud.unity3d.com": [17220], "techverse.com.au": [16020], "www.physics.ohio-state.edu": [11761], "www.hello.tokyo": [7296], "blumen.tchibo.de": [15985], "cibc.com": [2601], "*.sportifik.com": [15290], "dnsdynamic.org": [4069], "cambridge.org": [2768], "wordentropy.org": [18432], "nature.com": [11104], "www.mirbsd.org": [10437], "ticketmaster.*": [16421], "azabani.com": [1479], "investors.marchex.com": [16380], "www.walderwyss.com": [17956], "*.nimenhuuto.com": [11409], "www.tppinfo.org": [18428], "hearinglosscure.stanford.edu": [15383], "nuclear.osu.edu": [11760], "www.securycast.com": [14538], "c2c.websupport.novell.com": [11530], "intensitylab.com": [8225], "maps.google.co.*": [6841], "*.wisc.edu": [17349], "ips-portal.iperceptions.com": [19275], "lp.bvg.de": [1582], "bauwerksinformation.htwk-leipzig.de": [7114], "careers.opendns.com": [11932], "atlasop.cern.ch": [2574], "oma.aalto.fi": [390], "new.autobytel.com": [1424], "www.maurus.net": [10086], "www.valleyfirstcu.org": [17533], "adherents.openstreetmap.fr": [12045], "brokentoaster.com": [2359], "www.positivessl.com": [12946], "www.morethantwo.com": [10586], "www.aberdeenshire.gov.uk": [412], "support.msi.com": [9792], "37signals.com": [118], "smetrics.sky.com": [14924], "www.bassetlaw.gov.uk": [1688], "www.weightlossplans.net": [12168], "yemeksepeti.com": [18674], "*.stratum0.org": [15512], "www.eduid.cz": [5097], "*.emediate.dk": [5202], "www.javadoc.io": [8530], "cumbriapartnership.nhs.uk": [10913], "fftfef.org": [5766], "www.contactprivacy.com": [3608], "iastudents.usc.edu": [17278], "ads.rubiconproject.com": [14014], "www.armyoutlet.de": [1206], "api.oscar.aol.com": [321], "www.greatdomains.com": [6906], "sso.id.kent.ac.uk": [17317], "italliance.com": [7843], "www.lorentzcenter.nl": [9611], "ci.debian.net": [4273], "www.protocolesevaluation.svs.ulaval.ca": [17229], "ifex.org": [7723], "login.liu.se": [9084], "simcity.com": [14808], "cuny.edu": [3189], "www.knopper.net": [8946], "*.jappix.com": [8518], "ww.stallman.org": [15373], "magazine.fastcompany.com": [5670], "mcis.erdf.communities.gov.uk": [19073], "jotformpro.com": [8637], "request.cias.rit.edu": [13434], "digitalnewsagency.com": [4494], "www.liteaddress.org": [9460], "hitbox.com": [7423], "freshports.org": [6206], "www.nhlbi.nih.gov": [10926], "download.qfxsoftware.com": [13282], "piraten-mfr.de": [12707], "business.zoho.com": [18884], "developer.ibm.com": [7675], "*.gondor.co": [6824], "heinlein-support.de": [7286], "untappd.com": [17371], "api.gumroad.com": [7020], "cryptography.com": [3895], "xda-developers.com": [18507, 18508], "login.stormpost.datranmedia.com": [13226], "tag.beanstock.co": [1733], "www.corbinfisher.com": [3660], "www.cloudlinux.com": [3290], "www.structures.ucsd.edu": [16939], "www.wordcamp.org": [18427], "club.arte.tv": [18966], "enterprise.github.com": [6680], "support.amd.com": [925], "ksl.com": [8751], "www.cybersecuritychallenge.org.uk": [3955], "www.cipherlawgroup.com": [3150], "www.bunchball.net": [2425], "typef.com": [4343], "www.sharedvalue.org": [14673], "*.filepost.com": [5793], "newsroom.intel.com": [8208, 8209], "sportonline.calderdale.gov.uk": [2735], "images.pornworms.com": [12929], "frid.ge": [6211], "i2.c.dk": [2498], "*.duracellcloud.com": [4807], "pinescharter.net": [12679], "ask.fedoraproject.org": [5726], "www.metaboli.co.uk": [10302], "tracking.adjug.com": [526], "www.hertz.co.id": [7350], "maps.aimpulse.com": [743], "cas.ki.se": [8725], "makemytrip.com": [9905], "www.purina.com": [13245], "secure.f5.com": [5546], "starfieldtech.com": [15403], "darkcoinfoundation.org": [4151], "getdigital.fr": [6572], "www.bezosexpeditions.com": [1834], "hq.appsflyer.com": [1131], "petsymposium.org": [12242], "media4.woolworths.com.au": [18422], "www.ti.com": [15815, 16152], "w00t.com": [18424], "bizappstoday.progress.com": [13132], "www.crackstation.net": [3750], "125.stanford.edu": [15383], "members.mlive.com": [9760], "www.edx.org": [5070], "maec.mitre.org": [10459], "lichtblick.de": [9325], "chat.cesky-hosting.cz": [19051], "notedcode.com": [11524], "*.giac.org": [6330], "packagelab.com": [12314], "lendo.se": [9247], "skatelescope.org": [19595], "mobify.com": [10494], "info.spkrb.de": [19619], "nfadmin.net": [10905], "www.ingdirect.es": [8137], "www.radiox.ch": [13516], "hu.cloudflare.com": [3285], "banners.webmasterplan.com": [18131], "www.parents.wustl.edu": [17993], "mlno6.com": [9761], "apache.org": [1087], "researchcompliance.vt.edu": [17740], "www.dietrolldie.com": [18428], "boostbybenz.com": [2212], "reef.wwf.ch": [19768], "scribus.net": [14417], "neteller.com": [12068], "forums.comcast.com": [3461], "sthelens.greenparty.org.uk": [6925], "my.variomedia.de": [17567], "bbc.com": [1497], "www.knowingly.com": [19341], "brevado.com": [2307], "www.cms.hhs.gov": [7062], "www.365ticketsscotland.com": [117], "api.orgsync.com": [12102], "download.moodle.org": [10575], "adman.otenet.gr": [12132], "secure.ebis.ne.jp": [5040], "www.limited2art.com": [9358], "*.uva.nl": [17458], "www.nartac.com": [11038], "www.alumfx.com": [895], "cdn.livestream.com": [9514], "fr.rpmfind.net": [14004], "www.certible.com": [2967], "m.rubygems.org": [14020], "crowdsupply.com": [3823], "dc.nserver.ru": [11548], "youraccount.leeds.gov.uk": [19353], "techidiots.net": [16028], "www.epic.org": [4943], "erhverv.canaldigital.dk": [2803], "staff.lib.ncsu.edu": [11492], "work.1688.com": [36], "planningconsult.rbkc.gov.uk": [19538], "cp-vps.rentalserver.jp": [13774], "*.svbtle.com": [15670], "bbseyes.com": [1714], "onlinefamily.norton.com": [11505], "cltglobal.com": [2624], "booktype.pro": [2206], "www.litehosting.org": [9456], "swehack.org": [15686], "3k.mail.ru": [9874], "sozialwissenschaften.htwk-leipzig.de": [7114], "docs.aws.amazon.com": [915], "www-cs.stanford.edu": [15383], "www.elafnettv.com": [5139], "www.respectnetwork.com": [13812], "sencha.com": [14576], "global.riverbed.com": [13907], "wiki.hslu.ch": [7583], "*.hafner-ips.com": [7162], "neteller-group.com": [12068], "*.rsys.net": [14010], "wiki.enigmabox.net": [5274], "sbarmen.no": [14321], "secure.worldcommunitygrid.org": [18447], "lbmns.merton.gov.uk": [10287], "crick.ac.uk": [19090], "*.pdu.edu": [12940], "www.digitalpacific.com.au": [4496], "gerrit.chromium.org": [3119], "www.eia.gov": [4917], "m.toledo.kuleuven.be": [8816], "web-cdn.ttvnw.net": [16888], "glasgow.pirateparty.org.uk": [12714], "konto.nazwa.pl": [11117], "movableink.com": [10628], "www.aci-europe.org": [248], "uni-potsdam.de": [17333], "akcdn.okccdn.com": [11770], "mesosphere.com": [10290], "www.holarse-linuxgaming.de": [7446], "*.unisys.com": [17203], "www.launchkit.io": [9167], "online.s-pankki.fi": [14060], "mangolanguages.com": [9952], "hboshopeu.com": [19243], "www.screencraft.org": [14408], "www1-cdn.dell.com": [4335], "a-ads.com": [215], "gavinhungry.com": [6474], "engineering.riotgames.com": [13894], "media.netapp.com": [11182], "www.ubuntuforums.org": [17104], "service-center.1und1.de": [68], "www.pofssavecredit.co.uk": [12954], "accountsolution.courierpostonline.com": [3715], "www.blackfoot.co.uk": [2053], "discussions.udacity.com": [17110], "news.stanford.edu": [15383], "cfda.gov": [2894], "recombu.com": [13648], "learn.equalit.ie": [4947], "www.appsecute.com": [1134], "images-uat.freescale.com": [6183], "www.xperiastudio.com": [18583], "summit.digitalgov.gov": [4489], "social.kennedy-center.org": [19335], "viviscal.co.uk": [17799], "s4.uicdn.net": [16958], "modalitypartnership.nhs.uk": [10913], "*.vcint.com": [17670], "www.seattleix.net": [14452], "openknowledge.worldbank.org": [8259], "cert-bund.de": [2576], "*.airbnb.co.uk": [749], "assets.razerzone.com": [13587], "rcfp.org": [13404], "cdn.casualcollective.com": [8729], "wiki.servicenow.com": [14622], "www.intercom.io": [8244], "mountaincode.eu": [10619], "duracellcloud.com": [4807], "freelansim.ru": [6178], "newscientistsubscriptions.com": [11299], "tickets.events.ccc.de": [2538], "*.fanatics.com": [5649], "jira.hppd.intel.com": [8209], "www.lansforsakringar.se": [9151], "bloodcenterblog.stanford.edu": [15383], "kinguin.net": [8902], "services.netbeans.org": [11185], "greyhound.com": [6947], "pv.gov.sa": [14306], "cloud-images.ubuntu.com": [17102], "beta.skype.com": [14938], "*.st-andrews.ac.uk": [15351], "media.wix.com": [18383], "dg.travelnow.com": [16692], "www.cp.org": [2801], "securelogin.bp.poste.it": [12965], "gcaptain.com": [6311], "listserv.heanet.ie": [7269], "www.piraten-basel.ch": [12284], "www.drought.gov": [4772], "adultfriendfinder.com": [643], "packagecontrol.io": [12313], "cryptopp.com": [3888], "www.tinhte.vn": [16474], "www.veloviewer.com": [17599], "survey.admaster.com.cn": [530], "qconnewyork.com": [13280], "portal.rfsuny.org": [13421], "padsdel.cdnads.com": [2918], "secure.webhost4life.com": [18066], "www.yaca.yandex.kz": [18652], "*.landsend.com": [9140], "snapchat.com": [15029], "humanism.org.uk": [7613], "www.rcicruiseholidays.com": [18489], "account3000.com": [458], "*.inwx.es": [8231], "www.minohubs.com": [10430], "www.acoustid.org": [476], "hackademix.net": [7139], "img.linuxfr.org": [9410], "opacsprd.stanford.edu": [15383], "search.wikileaks.org": [18291], "www.goodsie.com": [6831], "climate-diplomacy.org": [3266], "*.imdb.com": [7756], "docs.pivotal.io": [12730], "www.managewp.org": [9941], "graphics.cs.illinois.edu": [17258], "rainn.org": [13396], "gratisoft.us": [6897], "daac-news.ornl.gov": [11693], "fusionhelp.oracle.com": [12082], "shareasale.com": [14661], "dealers.autosite.com": [1432], "www.readplaintext.com": [13614], "*.spi-inc.org": [15097], "*.jobs.ch": [19322], "piwik.cc.kuleuven.be": [8816], "ad.rmxads.com": [13881], "on.spiceworks.com": [15266], "webapps.initial-website.com": [19292], "maxspeedcdn.com": [10093], "www.cdn.webrtc-experiment.com": [18081], "hex-rays.com": [7379], "l-auto-entrepreneur.org": [9056], "www.services.irctc.co.in": [7812], "easycruit.com": [5023], "*.fvn.no": [6052], "www.wellingborough.gov.uk": [18194], "docker.io": [4617], "*.oregon.gov": [15421], "mp3skull.is": [9779], "forums.asp.net": [353], "ldap.hackerspace.pl": [7149], "articulate.com": [1232, 1233], "estilo.catracalivre.com.br": [2908], "ir.monster.com": [16380], "girlsoutwest.com": [6667], "www.secdev.ca": [14457], "www.fagms.net": [5629], "us.playstation.com": [12795], "www.desy.de": [4399], "www.lpi.org": [9095], "gittip.com": [6685], "osgeo.org": [11669], "filescrunch.com": [5803], "stats.cloud.online.net": [11870], "draytek.com": [4746], "bo.getjaco.com": [6607], "www.isiknowledge.com": [18107], "pro.stubhub.co.uk": [15534], "*.ekomi.de": [4921], "tele2.se": [16070], "app-community.canvaslms.com": [2814], "*.spatialbuzz.com": [15231], "www.spdns.de": [14154], "tune.yandex.kz": [18652], "mail.aalto.fi": [390], "www.9seeds.com": [213], "armedforcesday.org.uk": [1203], "www.whisky.de": [19756], "buildbetter.software": [2411], "www.bob131.so": [2170], "static7.businessinsider.com": [2454], "cache1.allpostersimages.com": [836], "partners.nvbugs.nvidia.com": [10985], "flowingdata.com": [5945, 5946], "greenpeace.de": [6936], "anxpro.com": [1076], "www.gitbook.com": [6674], "*.br.inter.net": [8229], "www.webxmedia.co.uk": [17900], "www.youtube.hr": [18709], "*.readyhosting.com": [13618], "www.mobilitaet2050.vcd.org": [17474], "llnl.gov": [9181], "www.apel.asso.ulaval.ca": [17229], "wiki.bedis.eu": [1745], "*.careers.talemetry.com": [15919], "www.unicefusa.org": [17182], "status.feral.io": [5751], "static.ivpn.net": [7869], "profitbricks.co.uk": [13127], "www.young.hillingdon.gov.uk": [7410], "euroflorist.no": [5407], "market.scribblelive.com": [14413], "www.netmile.co.jp": [11199], "www.kalveboderne-rundt.hvidovrekajakklub.dk": [7636], "www.screenshot.ru": [14410], "www.cryptsy.com": [3892], "irunsafe.com": [14035], "*.smowtion.com": [15013], "ledgerscope.net": [9221], "blog.helpjuice.com": [7309], "co.godaddy.com": [6773], "www.compliance.idoxgroup.com": [19281], "zh.cloudflare.com": [3285], "map.geo.admin.ch": [19648], "abiresearch.com": [244], "*.fema.gov": [5715], "dictionaryblog.cambridge.org": [18428], "engineering.leeds.ac.uk": [17318], "www.simrussia.com": [14806], "tid.gov.hk": [7077], "*.pirateparty.gr": [6915], "ad.adview.pl": [666], "eai.org": [5150], "www.copia.is": [3651], "www.getawaygrey.com": [6565], "www.toughchoices.co.uk": [19690], "*.arstechnica.com": [1217], "static.site24x7.com": [14861], "app.dialshield.com": [1464], "www.getmeadow.com": [6598], "www.crick.ac.uk": [19090], "forum.processing.org": [13120], "www.anatoomikum.ut.ee": [17069], "online.havering.gov.uk": [7244], "beta.devon.gov.uk": [4428], "ashared.5min.com": [178], "templates.office.com": [11743], "www.cryptopia.co.nz": [3887], "static.couponcabin.com": [3711], "wiki.rtems.org": [13472], "testcloud.io": [16145], "*.tt.omtrdc.net": [11805], "www.365tickets.co.uk": [113], "detail.tmall.com": [19684], "www.prosody.im": [13161], "assets.whicdn.com": [17905], "secure.aces.illinois.edu": [17258], "antipolygraph.org": [1067], "longnow.org": [9591], "lib.ncsu.edu": [11492], "www.uspirates.org": [17066], "www.network23.org": [11265], "www.enigmail.net": [5275], "dagensgetaway-dbapp.netdna-ssl.com": [4108], "bet365affiliates.com": [18992], "*.tremendesk.com": [569], "badwarebusters.org": [1612], "doublerobotics.com": [4713], "developers.coinbase.com": [3402], "hawaiianair.com": [7246], "blackboard.com": [2051], "forum-fr.msi.com": [9792], "*.deadspin.com": [4251], "www.opsmate.com": [12062], "linuxmusicians.com": [9414], "marmotte.net": [10027], "*.stockton.edu": [15479], "activatemychannels.sky.com": [14924], "ecrimeresearch.org": [4887], "antonius.imn.htwk-leipzig.de": [7114], "dmp.data.jhu.edu": [16296], "help.gocoin.com": [6771], "citrusbyte.com": [3181], "ing.nl": [7769], "khub.net": [8724], "myfiles.yandex.com.tr": [18649], "www.linuxfound.info": [9411], "api.metacpan.org": [10297], "cdn.reedbusiness.com": [13706], "www.wammo.co.nz": [8928], "bitcoinshop.us": [1970], "nasaimages.org": [4089], "www.ipwnage.com": [7808], "www.ge.ch": [19648], "mutuals.fsa.gov.uk": [5597], "media1.congstar-media.de": [3576], "www.grepbugs.com": [6943], "langui.sh": [9147], "atname.ru": [360], "blog.feedly.com": [18428], "*.blindseeker.com": [19008], "www.krystalstatus.co.uk": [18428], "o.twimg.com": [16877], "*.thompsonhotels.com": [16378], "planet.qt.io": [13315], "bmsoft.axosoft.com": [1477], "domainwho.is": [4661], "www.easa.europa.eu": [5421], "itsakhandbok.irt.kau.se": [8707], "mville.edu": [9955], "securitylabs.websense.com": [18083], "lb.ca": [9186], "chembiofinder.cambridgesoft.com": [2769], "www.open-mpi.org": [11907], "providers.filepicker.io": [5801], "alzheimers.org.uk": [901], "sj.se": [14125], "forms.cotswold.gov.uk": [19081], "*.rsna.org": [13520], "www.agnitum.com": [730], "b20.banan.cz": [1489], "www.condenast.com": [3552], "*.mediapost.com": [10162], "alditalk.de": [299], "photos-c.ak.fbcdn.net": [5700], "*.m-pathy.com": [9692], "www.dbs.com": [4010], "cloudtrax.com": [3297], "ru-support.evernote.com": [5449], "adserver.adreactor.com": [533], "collector.githubapp.com": [6680], "postwire.com": [12984], "ktk.de": [8753], "todaysdigitalsolutions.websitealive.com": [18149], "connect.asana.com": [1242], "i4.social.s-msft.com": [14058], "www.cumbria.police.uk": [3918], "notalwaysworking.com": [19441], "playvid.com": [12797], "*.groupon.gr": [6975], "lyrk.de": [9687], "kintera.com": [8912], "www.tyj.fi": [16910], "bit-sentinel.com": [1919], "googleblog.blogspot.*": [2113], "virtkick.com": [17745], "auth.alipay.com": [817], "dailyhiit.com": [4115], "p-tano.com": [12200], "*.ssl-images-amazon.com": [915], "webglobe.sk": [18119], "widgets.amung.us": [18267], "interc.pt": [8242], "modus.nike.com": [11401], "my.htw-berlin.de": [7112], "ciencias.unizar.es": [17356], "comdirect.de": [19072], "tandlakarforbundet.se": [15942], "nanasilvergrim.cyberguerrilla.org": [3961], "en-it.dict.cc": [4455], "www.webspace4all.eu": [18154], "benefits.elmbridge.gov.uk": [5174], "www.vpnservice.ru": [17506], "www.sit.fraunhofer.de": [6112], "origin-cdn.rawgit.com": [13580], "zuerich.ch": [19805], "www.eminhuseynov.com": [5210], "ureport.foxnews.com": [11320], "www.superdesk.pro": [15626], "analytics.gravity.com": [6901], "www.bitmovin.com": [2010], "www.mappedinisrael.com": [9973], "*.gatwickairport.com": [6469], "sf.cdn.gmru.net": [6349], "ozbargain.com.au": [12195], "blogautomobile.fr": [2104], "www.ecologylab.net": [8246], "buzzbytes.net": [2476], "olin.edu": [6104], "search.us.checkpoint.com": [3047], "akademy2010.kde.org": [8718], "www.hackerone.com": [7142], "parsely.com": [12414], "d.liadm.com": [7793], "rt.openssl.org": [11970], "hotspot.norton.com": [11505], "feralhosting.com": [5752], "gritdigital.co.uk": [6959], "feedback-form.truste.com": [15856], "media6.congstar-media.de": [3576], "*.ehawaii.gov": [7245], "*.buerger-cert.de": [2396], "obedovat.sk": [11696], "www.ai.ai": [1428], "lists.citizenweb.io": [3173], "litle.com": [9470], "smzdm.com": [15017], "api.tiles.mapbox.com": [9968], "nt.uni-ulm.de": [19715], "eatnow.com.au": [19145], "blog.onedrive.com": [11831], "users.vimention.com": [17716], "forum.mobilism.me": [19404], "atglance.web.cern.ch": [2575], "privateinternetaccess.com": [13097], "partner.yandex.by": [18648], "id.unity.com": [17220], "zerties.org": [18847], "www.techjourney.net": [16023], "*.primary001.net": [8241], "ccsdlib.ccsd.cnrs.fr": [6195], "derecho.unizar.es": [17356], "www.proxify.com": [13178], "*.blacknight.com": [2054], "conversionsbox.com": [3627], "www.landalparkshop.*": [18490], "ingdirect.es": [8137], "my.teslamotors.com": [16142], "bloomberg.com": [2119], "blindseeker.com": [19008], "zapchain.com": [18789], "quantixtickets1.com": [13339], "*.blogspot.fi": [2107], "img.staticmy.com": [15432], "www.lastcall.com": [15851], "www.notefly.org": [11521], "status.bintray.com": [1897], "playerattack.com": [12801], "www.java.net": [8525], "*.blogspot.fr": [2107], "juridicos.afip.gob.ar": [18945], "overlakehospital.org": [12166], "jeunes.cnes.fr": [2634], "*.server314.com": [14603], "hotscripts.com": [7551], "shop.github.com": [6680], "watsoninstitute.org": [18005], "globalservices.bt.com": [1551], "cdn.banx.io": [1657], "www.livecorp.com.au": [9486], "json8.nytimes.com": [11000], "analysiscenter.veracode.com": [17614], "www.navynews.co.uk": [13995], "boounce.com": [2219], "university.mongodb.com": [10553], "*.griffith.edu.au": [6955], "shop.12wbt.com": [10343], "www.ncei.noaa.gov": [11083], "toi.ivwbox.de": [15774], "www.duolingo.com": [4805], "middelburg.nl": [11132], "edit.ftc.gov": [5720], "gan.taobao.com": [15952], "pimg.mycdn.me": [10824], "timos.me": [16409], "www.net-backup.com": [11173], "tppnocertification.org": [15852], "firmware.netgate.com": [5866], "logentries.com": [9553], "listes.gresille.org": [6945], "www.charterourcommunity.com": [3023], "jdsupra.com": [8428], "megayoutubeviews.com": [10233], "cdes.trafficforce.com": [16651], "cloud.seafile.com": [14436], "download-codeplex.sec.s-msft.com": [3373], "admin.zsl.org": [18900], "*.lithium.com": [9469], "bernstein.com": [851], "databases.library.jhu.edu": [16296], "www.l-auto-entrepreneur.org": [9056], "www.firebase.com": [5855], "schoolpartnership.wustl.edu": [17993], "ars.to": [1217], "sublimegit.net": [15560], "pda.blogs.yandex.by": [18648], "cdn.chefkoch.de": [3058], "*.t411.io": [15781], "imga.nxjimg.com": [11591], "zenimax.com": [18829], "www.3min.de": [134], "chinasmbmarketplace.cisco.com": [3162], "www.cult-labs.com": [3914], "bathnes.gov.uk": [1689], "dot-bit.org": [4691], "*.traveldoctor.com.au": [16691], "www.guru.de": [19233], "www.adyadvantage.com": [673, 674], "www.ocforums.com": [12165], "euro-ix.net": [5401], "npmjs.org": [11540], "ocg.cancer.gov": [2805], "cloudmining.guru": [3310], "ieee-elearning.org": [7718], "web.redding.com": [4988], "*.wiredminds.de": [18364], "www.notalwayshopeless.com": [19441], "www.youtube.kr": [18709], "authorization.api.qbrick.com": [13300], "enfuseconference.com": [7006], "jekit.codeforamerica.org": [3359], "acml.osu.edu": [11760], "www.coinsecure.in": [3409], "github.com": [6680], "ssos.mylifetime.com": [10767], "www.stateoftheinternet.com": [15422], "www.masternet.org": [10054], "www.zubu.re": [19804], "www.nccs.nasa.gov": [10869], "reboot.vas-hosting.cz": [19729], "flossprize.apc.org": [1294], "www.riscosopen.org": [13897], "www.ebayclassifieds.com": [4874], "files.kartfighter.com": [8800], "my.outbrain.com": [12150], "altmetric.com": [892], "www.lacrossetechnology.com": [9119], "archive.sans.org": [14072], "typesafe.com": [16915], "newsinhealth.nih.gov": [11052], "gajim.org": [6406], "*.makeuseof.com": [9907], "err.taobao.com": [15952], "img2.xcart.com": [18505], "home.java.net": [8525], "scraperwiki.com": [14406], "www.wine-staging.com": [18350], "*.vichan.net": [17668], "www.provost.usc.edu": [17278], "malideveloper.arm.com": [339], "static.plugrush.com": [12824], "agenda.ct.infn.it": [7766], "conference.cpanel.com": [2651], "images.community.wizards.com": [18387], "intuitlabs.com": [8305], "www.courses.osu.edu": [11760], "standardebooks.com": [15380], "www.hostdime.com": [7510], "www.usertags.jeremybieger.com": [17087], "kop11.com": [8741], "centreon.com": [2957], "www.bulletproofmeteor.com": [2416], "dnfsbstg.prod.acquia-sites.com": [4310], "support.eiffel.com": [5124], "dotdeb.org": [4699], "i3.services.social.s-msft.com": [14058], "www.zapier.com": [18791], "ibutton.maximintegrated.com": [10096], "pocketmatrix.com": [12836], "www.chicagofed.org": [3071], "pathways.nice.org.uk": [10921], "app-de8.resrc.it": [13599], "oascentral.post-gazette.com": [12728], "www.iedgmbh.de": [7712], "slashbits.com": [14945], "cafemakers.com": [2718], "ads2.zeusclicks.com": [18854], "idp.infn.it": [7766], "kyivpost.com": [9052], "www.weusecoins.com": [18026], "*.ulule.com": [17139], "search.bt.com": [1551], "secure.raynersw.com": [13586], "www.canddi.com": [19036], "sha2.kuix.de": [9032], "rheden.nl": [11132], "consumersunion.org": [3604], "popup.questionpro.com": [15657], "*.bancastato.ch": [19333], "sata.seagate.com": [14437], "forums.zarafa.com": [18795], "deel.dict.cc": [4455], "www.gnusocial.no": [6362], "www.cyber.law.harvard.edu": [7219], "itpc.uillinois.edu": [16960], "sdm.osu.edu": [11760], "fitbit.com": [5887], "audiogo.com": [1358], "who.godaddy.com": [6773], "www.tid.gov.hk": [7077], "ifap.ed.gov": [4889], "coveritlive.com": [3735], "www.fastlane.nsf.gov": [11060], "sonar.tocco.ch": [16524], "www.pcug.org.au": [12218], "assets.bunchball.net": [2425], "api.mediaklik.com": [19389], "lambda-tek.com": [9136], "www.magentocommerce.com": [9851], "forum.lugons.org": [9108], "ads.ad-center.com": [511], "ipk.fraunhofer.de": [6112], "store.ppy.sh": [13006], "authentification.ulaval.ca": [17229], "blog.disconnect.me": [4543], "yandex.ua": [18656], "watch.yandex.com": [18651], "opensource.com": [12044], "www.formatdynamics.com": [6043], "games.samsclass.info": [14263], "domain.com": [4648], "www.facebook.jp": [5623], "pm.cabinetoffice.gov.uk": [2701], "freeprivacypolicy.com": [6716], "weblate.org": [18127], "*.sapo.pt": [14297], "brandspankingnew.net": [2281], "answers.oculusvr.com": [11722], "www.spendabit.co": [15261], "*.asu.edu": [1194], "identitymanager.eems.usda.gov": [17209], "more-onion.com": [10585], "www.kasandbox.org": [8873], "www.web-registry.com": [18045], "*.koding.com": [8953], "community.giffgaff.com": [19217], "secure.xfinity.com": [19784], "www.gotfuturama.com": [6853], "forum.rizon.net": [13911], "homeinsurance.com": [7468], "www.updateframework.com": [17386], "cdn-static.cloudflare.com": [3285], "www.turn.com": [16840], "www.yaca.yandex.by": [18648], "app.beanstalkdata.com": [1732], "search.etargetnet.com": [5375], "mobile.yandex.com.tr": [18649], "wwwn.cdc.gov": [19046], "eportfolio.plymouth.ac.uk": [12833], "*.facebookcorewwwi.onion": [5621], "help.sharethis.com": [14668], "www.techsay.com": [16017], "www.itbit.com": [8384], "arneswinnen.net": [18964], "groups.live.com": [9483], "shop.zend.com": [18821], "ffgg.ulaval.ca": [17229], "cerit-sc.cz": [2571], "androidfilehost.com": [1008], "staff.ask.sydney.edu.au": [19649], "cmems.stanford.edu": [15383], "*.successfactors.com": [15572], "allods.cdn.gmru.net": [6349], "curated.co": [3924], "ssdp.org": [15538], "gpodder.net": [6377], "socialcube.net": [15070], "bugs.kde.org": [8718], "safeassign.blackboard.com": [2051], "dfat.gov.au": [4370], "*.ticketone.it": [16414], "jbp.io": [8539], "www.zwmail.de": [18927], "stefan-betz.net": [15461], "www.m3server.com": [9697], "images.virtualboximages.com": [17749], "www.hastings.gov.uk": [7234], "cdn.tofour.net": [16520], "www.hotmail.co.uk": [7558], "wap.tv.mail.ru": [9874], "files2.enaza.ru": [5230], "www.billing.helpjuice.com": [7309], "www.kemi.se": [8719], "www.lyft.me": [9680], "kmh.se": [8737], "secure.blogtalkradio.com": [2103], "www.o2.sk": [16076], "www.finanswatch.dk": [5829], "beacon-us-east.rubiconproject.com": [14014], "scienceconference.stanford.edu": [15383], "it24tjanster.idg.se": [7705], "binarydefense.com": [1891], "custhelp.consumerreports.org": [13882], "www.glittering.blue": [19221], "thumbnails.5min.com": [178], "mikewest.org": [19400], "conetix.com.au": [3565], "newsreview.com": [11339], "cimbclicks.com.sg": [2607], "loop.nigms.nih.gov": [11052], "asseenonresponsetv.com": [1276], "www.xignite.com": [18572], "www.p6r.com": [12202], "as112.net": [343], "www.givetolocal.stanford.edu": [15383], "www.news.osu.edu": [11760], "educationguide.tue.nl": [15874], "www.needmorehits.com": [11133], "infra.aircrack-ng.org": [18948], "*.alternate.be": [880], "ad2.netshelter.net": [11208], "www.membercentral.com": [10244], "*.onlinecreditcenter6.com": [11880], "adform.com": [585], "cloudproxy.sucuri.net": [15575], "wikitest.ro.vutbr.cz": [17522], "www.govmetric.com": [6866], "www.ginac.de": [6635], "door.sudoroom.org": [15580], "www.mygoldencharter.co.uk": [6813], "pt.verbling.com": [17615], "*.volusion.com": [17837], "accounts.illumina.com": [7968], "thesexyhouse.com": [14646], "www.xkcd.org": [19786], "xfire.com": [18569], "support.cloudshark.org": [19068], "shop.entheogene.de": [5298], "tox.chat": [16616], "boingo.com": [2182], "www.spielfuerdeinland.de": [15273], "*.devx.com": [18074], "data.iana.org": [7667], "www.fornex.com": [6047], "cloudflarechallenge.com": [3286], "workorder.console.aliyun.com": [821], "lastcall.com": [15851], "vpge.stanford.edu": [15383], "www.ingdirect.com.au": [7768], "wien.neos.eu": [10899], "www.insight.sensiolabs.com": [14586], "secure.switchkonnect.com": [15702], "newfarmers.usda.gov": [17209], "messages.yale.edu": [18642], "simpleforms.scripts.wvu.edu": [18212], "cdn.broadcasthe.net": [2354], "purechat.axosoft.com": [1477], "news-gazette.com": [11322], "www.creativeskills.be": [3786, 3787], "ias.1und1.de": [68], "www.kqed.org": [8747], "www.dukgo.com": [4792], "www.dot-bit.org": [4691], "www.surfingip.info": [3533], "dnuk.com": [4482], "onebitbug.me": [11854], "centralcomputers.com": [2954], "www.medicare.gov": [19392], "shop.wattpad.com": [18006], "www.freebusy.io": [6125], "www.gentoo-art.org": [19461], "youtube.co.ae": [18709], "static.alipay.com": [817], "lg.schnellno.de": [14361], "nccgroup.com": [10879], "iab.org": [7663, 7664], "rcking.eu": [13405], "btckan.com": [1561], "www.ai-online.com": [1428], "cs.berkeley.edu": [17240], "stackexchange.com": [15359], "*.linkedin.com": [9376], "cloud.digitalocean.com": [4495], "*.marathonbet.com": [9979], "audentio.com": [1348], "www.bmb.htwk-leipzig.de": [7114], "crn.verticalsearchworks.com": [2659], "confluence.isc.org": [7821], "www.mydatapipe.net": [10804], "sog.objective.co.uk": [19454], "solid.kde.org": [8718], "order.store.yahoo.co.jp": [18640], "img1.picload.org": [12661], "translate.hootsuite.com": [7488], "www.samsungtechwin.co.kr": [14270], "pgsql.pipni.cz": [12257], "engineering.groupon.com": [6974], "webmailcluster.1and1.co.uk": [53], "www.kouio.com": [8997], "centrance.com": [2588], "dm-mailinglist.com": [4050], "1d4.us": [57], "en.avaaz.org": [1437], "www.is.gd": [19306], "business.spectrum.com": [15248], "premiumsupport.kaspersky.com": [8806], "product.voxmedia.com": [17852], "www.variomedia.de": [17567], "econ.st": [1920], "go.eu.bbelements.com": [1713], "coventry.greenparty.org.uk": [6925], "a.dilcdn.com": [4518], "www.qtdeveloperdays.com": [13317], "intranet.havering.gov.uk": [7244], "trade.cex.io": [2587], "www3.netflix.com": [11229], "fusioncrm.oracle.com": [12082], "drugscience.org.uk": [4778], "y.3g.qq.com": [13285], "cdnjs.com": [2921], "people.redhat.com": [13675], "myucsdchart.ucsd.edu": [16939], "bap.navigator.web.de": [18050], "marvin.linux-mips.org": [9413], "*.myopenid.com": [8508], "ivoox.com": [7871], "secure.oron.com": [12112], "kanbox.com": [8779], "res-5.cloudinary.com": [3307], "www.pixcept.de": [12735], "hereplus.me": [7328], "mirror.fxprime.com": [5610], "apps.bhw.de": [1517], "www.webkit.org": [18125], "www.chainlove.com": [2981], "ip3.htwk-leipzig.de": [7114], "rockpaperphoto.com": [13936], "www.choicecheapies.co.nz": [12195], "www.governmentattic.org": [6872], "jimg.dk": [8573], "www.ericw.us": [5342], "*.campuspack.net": [2785], "blog.wasilczyk.pl": [17995], "om.nl": [12031], "linuxvoice.com": [9425], "api.digicert.com": [4473], "concrete5.org": [3549], "www.russellgroup.ac.uk": [14042], "www.vispashop.com": [17780], "innovwthrdev.uwm.edu": [17294], "blog.docker.io": [4617], "wikimedia.ch": [18296], "gradwell.com": [6883], "safebooru.donmai.us": [19125], "view.vzaar.com": [17883], "widgets.yandex.kz": [18652], "photos.sky.com": [14924], "classymotherfucker.com": [3219], "thurrott.com": [16407], "rsicc.ornl.gov": [11693], "www.labcorp.com": [9122], "www.ostel.co": [12128], "*.sw-in.de": [15369], "diy.soylent.com": [15199], "fellowsblog.kiva.org": [8926], "eski.harita.yandex.com.tr": [18649], "blog.verticalacuity.com": [18428], "secure.audubon.org": [1364], "top-fwz1.mail.ru": [9874], "www.cisco.com": [3162], "www.openhost.co.nz": [12036], "www.mcvuk.com": [8227], "www.slipfire.com": [14965], "dvatril.cz": [4097], "socials.vice.com": [17666], "soutenir.amnesty.fr": [962], "www.calderdale.gov.uk": [2734], "www.wipmania.com": [17912], "www.hlat.us": [7123], "www.bluebird.com": [2145], "whatwg.org": [17904], "moviii.isy.liu.se": [9084], "ipgmail.com": [7792], "www.teddyonlinejudge.net": [16057], "www.thelayoff.com": [19677], "status.voxmedia.com": [17852], "app.adjust.com": [597], "*.oneeyedman.net": [11846], "www.neobits.com": [11152], "wincent.com": [18335], "www.withsix.com": [18379], "*.whyy.org": [17910], "calypso.tux.org": [16855], "pressandpolicy.bl.uk": [2341], "www.ezimages.eu": [5004], "www.getdnsapi.net": [6612], "accounts.logme.in": [9547], "iberdrola.es": [7897], "www.rh.ulaval.ca": [17229], "wbginvestmentclimate.org": [8259], "kathrein.de": [8817], "servicepas.snsbank.nl": [14144], "peem.osu.edu": [11760], "virurl.com": [17489], "www.mytime.com": [10792], "carrefoursa.com": [2862], "*.ebaystatic.com": [4875, 4876], "hrms.onlinesbi.com": [11873], "baobao.taobao.com": [15952], "rebrick.lego.com": [9068], "www.astra.io": [1301], "pt.support.tomtom.com": [16540], "support.parature.com": [12396], "www.nytexaminer.com": [10999], "lhcb.web.cern.ch": [2575], "faq.opendoor.com": [12008], "www.garmin.com": [19208], "www.verisign.fr": [17623], "*.vimgs.ru": [17865], "secure.stage-gettyimages.*": [6621], "www.ellak.gr": [6915], "broadcast.ch": [19621], "*.facilities.udel.edu": [17249], "mypassword.andover.edu": [12623], "www.apple.com.cn": [1122], "www.pace.com": [12309], "mail082.websupport.sk": [18160], "genome.gov": [17027], "civica.co.uk": [19064], "kuppingercole.com": [9040], "ll-us-i5.wal.co": [17954], "www.healths.biz": [7265], "www.negotiatingsalary.com": [11136], "sp.parallels.com": [12392], "support.pingdom.com": [12687], "englearn.engineering.osu.edu": [11760], "op-co.de": [11901], "webmail.fit.edu": [5942], "www.silentcircle.com": [14786], "bitcoin.pl": [1967], "*.news.com.au": [11338], "cdn.forumwizard.net": [6064], "*.nimbushosting.co.uk": [11408], "*.legacy.com": [9227], "www.twattle.net": [16863], "www.ca.com": [2511], "www.ucw.cz": [17215], "memphiscourtside.com": [10253], "mobile.gmx.de": [6350], "www.video.ecc-platform.org": [4879], "jobcenter.jammerbugt.dk": [8507], "*.uni-mainz.de": [17326], "www.wildwestdomains.com": [18300], "sogo.nu": [14148], "sv.no": [14201], "newsletter.bitcoin.co.id": [1964], "social.bioware.com": [1903], "securestudies.com": [14495], "shop.wikileaks.org": [18291], "ccc-mannheim.de": [2535], "assets.cdn.gamigo.com": [6445], "myds.synology.com": [15738], "www.greyhound.ca": [6947], "m2.nsimg.net": [11550], "forums.bistudio.com": [2179], "consentmgt.wayf.dk": [17896], "kfs.usc.edu": [17278], "news.yandex.com.tr": [18649], "bitcoincharts.com": [1978], "smartlessons.ifc.org": [8259], "brandsaver.ca": [13121], "www.jiasule.com": [8566], "www.kissanime.to": [8920], "www.newsdaily.com": [11328], "static.internet.org.nz": [8277], "out.otaserve.net": [19470], "fagms.net": [5629], "www.travelocity.ca": [16698], "montereybayaquarium.org": [10567], "pcug.org.au": [12218], "www.hdserviceproviders.com": [7055], "www.decadent.org.uk": [4280], "www.perot.me": [12579], "www.choon.net": [3098], "images.boldchat.com": [2187], "cert.at": [2580], "*.googleusercontent.com": [6844], "bugs.wine-staging.com": [18350], "login.money.pl": [10547], "www.cheema.com": [3054], "www.schoolforge.net": [14363], "www.ruxcon.org.au": [14049], "muenchen.tv": [10687], "onesignal.com": [11843], "projecteuclid.org": [13138], "pages.zend.com": [18821], "software-security.sans.org": [14072], "www.kallithea-scm.org": [8772], "unsearcher.org": [17368], "pay.taobao.com": [15952], "american.edu": [934], "suse.com": [14199], "share.xmarks.com": [18579], "www.mindtools.com": [10411], "ahorroentinta.com": [16525], "nvisium.com": [10986], "cuaes.cals.cornell.edu": [3676], "gamefly.com": [6419], "*.livenation.com.au": [9481], "*.arpnetworks.com": [341], "www.liberty-human-rights.org.uk": [9300], "www.salford.gov.uk": [19562], "account.leagueoflegends.com": [9206], "update.clearlinux.org": [3233], "news.ad-stir.com": [513], "portal.htbridge.com": [7115], "store.snort.org": [15041], "questadmin.net": [6283], "gigaset.com": [6655], "www.mobile.yandex.com.tr": [18649], "api.enhancedsteam.com": [5273], "www.99bitcoins.com": [211], "invest.timeinc.com": [16460], "nic.io": [11381], "escholarship.org": [4971], "fundaciontelevisa.org": [6260], "si2.rgstatic.net": [13422], "www.community.spot.im": [15293], "seasonal.ly": [14450], "www.facebook.us": [5623], "www.seowizard.ru": [14588], "give.illinois.edu": [17258], "www.strato-mailcenter.com": [14193], "connect.withsix.com": [18379], "linkmaker.itunes.apple.com": [1120], "monthlyreview.org": [10568], "advq.yandex.by": [18648], "ertos.nicta.com.au": [10922], "porvir.catracalivre.com.br": [2908], "www.acm.wustl.edu": [17993], "www.linbit.com": [9078, 9079], "weblogs.asp.net": [353], "www.usshortcodes.com": [3485], "amoena.de": [979], "www.dozuki.com": [4732], "m.lowes.com": [9636], "docs.compose.io": [3526], "*.kyani.net": [9049], "*.zzounds.com": [18772], "quakenet.org": [13326], "licensing.fcc.gov": [5709], "ziggo.nl": [18862], "sundayworld.com": [15598], "oia.stanford.edu": [15383], "www.wienit.at": [18284], "modules.unrealircd.org": [17364], "gawker-labs.com": [6475], "marketplace.domaintools.com": [4660], "portal.mkk.com.tr": [9754], "cache1.artprintimages.com": [1225], "www.net-a-porter.com": [11171], "khanacademy.org": [8873], "peeringdb.com": [12520], "vpn4all.com": [17500], "thawte.com": [16175], "privacyrights.org": [13093], "get3.adobe.com": [615], "jobscore.com": [8590], "assets4.sendgrid.com": [14577], "vzp.cz": [17524], "thc.org": [15810], "labor.dailykos.com": [4116], "oasis-open.org": [11606], "binarycontrol.debian.net": [4273], "superforum.org": [14640], "marconisida.com": [3935], "www.omniref.com": [11798], "bankrate.com": [1651], "cwrap.org": [19097], "schoolsonline.wokingham.gov.uk": [19762], "uncg.edu": [17328], "devices.live.com": [9483], "myhosting.com": [15090], "finanswatch.dk": [5829], "globalperspectivescanada.com": [6729], "extras.ooyala.com": [11900], "lists.acpica.org": [264], "www.anxpro.com": [1076], "animoto.com": [1025], "donotcall.gov.au": [4610], "creativewriting.stanford.edu": [15383], "help.bingads.microsoft.com": [10364], "connect.over-blog.com": [12156], "pack.google.com": [6834], "fbcdn23dssr3jqnq.onion": [5621], "wadmin.green.ch": [19228], "www.revisium.com": [13847], "mosh.mit.edu": [9749], "bezrealitky.cz": [18995], "static.wellbid.com": [18192], "www.majordomo.ru": [9902], "legacy.com": [9227], "speakpipe.com": [15233], "bitmask.net": [2005], "www.cse.unsw.edu.au": [16995], "fiskeriverket.se": [5886], "cals.vt.edu": [17740], "musopen.org": [10725], "suresupport.com": [15645], "de.pcpartpicker.com": [12497], "notalone.gov": [11515], "www.vates.fr": [17574], "tropo.com": [16760], "cabletv.com": [2703], "help.apple.com": [1120], "magazine.wustl.edu": [17993], "penninecare.nhs.uk": [10913], "www.bidbubble.com": [1844], "bikeability.dft.gov.uk": [19116], "etrm.oracle.com": [12082], "w00tads.com": [17886], "usdalinc.sc.egov.usda.gov": [17209], "*.geek.com": [6492], "sbi.sberbank.ru": [14322], "kd2.us": [8716], "blogs.loc.gov": [9528], "*.filmlinc.com": [5807], "*.tadst.com": [15896], "www.lrz-muenchen.de": [9238], "www.safe-in-cloud.com": [14224], "*.thomson.com": [16383], "m2fjob.com": [9695], "www.it.cornell.edu": [3676], "www.percona.com": [12557], "blog.nanigans.com": [18428], "vice.com": [17667], "www.burst.net": [2445], "erc.edu": [4949], "oamp.od.nih.gov": [11052], "www.cyberaide.ca": [3976], "ifca.ai": [8266], "alfresco.com": [802], "no-cache.hubspotqa.com": [7595], "www.gigasize.com": [6645], "go.arbopl.bbelements.com": [1713], "certification.typo3.org": [15894], "www.comscoredatamine.com": [3454], "www.youtube.co.nz": [18709], "snapsurveys.com": [19604], "*.2checkout.com": [83], "www.italliance.com": [7843], "cdn-blog.opendns.com": [11932], "www.orangeplant.co.uk": [19467], "scalability.org": [14326], "reseller.apple.com": [1120], "git.lysator.liu.se": [9084], "nysk.mediekompaniet.com": [10194], "imperativeideas.com": [8014], "filer.anst.uu.se": [17074], "documentfreedom.net": [4628], "ludios.org": [9653], "www.com-sys.de": [3450], "edarabia.com": [5072], "www.onpatient.com": [11883], "www.gmx.net": [6350], "terasic.com.tw": [15960], "excelsior-usa.com": [5484], "www.chilebit.net": [3076], "www.tdesktop.com": [15989], "zataz.com": [18801], "b-static.net": [2168], "web-toolkit.global.sky.com": [14924], "cloudcontrol.com": [3283], "www.slac.com": [14941], "courses.illinois.edu": [17258], "wiki.awesome-it.de": [1461], "www.voo.st": [17843], "veracode.com": [17614], "www.noncombatant.org": [11468], "qs.ioam.de": [7783], "www.priceza.com": [13056], "aclu-sc.org": [252], "www.cityoflondon.gov.uk": [3190], "pypip.in": [13266], "www.sics.se": [14119], "www.scriptjunkie.us": [14423], "planet.archlinux.fr": [1159], "www.surveillancelaw.org": [15656], "www.sourceafrica.net": [15169], "*.federalreserve.gov": [5718], "webassetsc.scea.com": [14089], "unicefusa.org": [17182], "*.suse-art.org": [19462], "my.libreoffice.org": [9311], "democracy.bathnes.gov.uk": [1689], "api.tiles.virtualearth.net": [17755], "*.clickbank.com": [3243], "oai.oracle.com": [12082], "sixapart.jp": [14889], "www.dntx.com": [4071], "repository.cmu.edu": [2858], "slac.com": [14941], "devblog.songkick.com": [19609], "social.lenovo.com": [9251], "www.newsvine.com": [11348], "pusherapp.com": [13253], "*.slooh.com": [14134], "searchsecurity.de": [16018], "www.pobox.com": [12835], "static.weborama.fr": [18138], "public.resource.org": [13207], "mtb.com": [9690], "lsa.umich.edu": [17266], "www.iss.leeds.ac.uk": [17318], "www.kivo.com": [8927], "major.io": [9900], "socialreader.com": [15066], "list.co.uk": [16199], "publisher.tinypass.com": [16489], "www.foofighters.com": [5996], "login.facebook.com": [5620], "www.liberiangeek.net": [9298], "msnbc.msn.com": [9794], "lh6.google.com.*": [6837], "*.thedilbertstore.com": [16268], "www.segpaychat.com": [14556], "edubuntu.org": [5068], "tryhaskell.org": [16805], "www.landaire.net": [19347], "on24.com": [11639], "www.qiye.163.com": [35], "cdn2.sure-assist.com": [15644], "palfrader.org": [12342], "who.int": [17908], "merchant.onlinesbi.com": [11873], "www.codepunker.com": [3352], "www.getasgard.com": [6583], "www.meetey.com": [10213], "shows.kingdomofloathing.com": [1308], "ejabberd.im": [5130], "www.datared.dk": [4213], "www.luez.tk": [3533], "clickbank.com": [3243], "*.world-television.com": [18458], "www.malware-tracker.com": [9928], "piao.jd.com": [8423], "wikileaksparty.org.au": [18295], "rabota.ya.ru": [18626], "nintendo.de": [11418], "*.www.suburban.nl": [15570], "maduke.stanford.edu": [15383], "www.zipler.ru": [18873], "industrymailout.com": [8077], "openreach.co.uk": [12042], "news.cs.washington.edu": [17291], "m.datart.sk": [4008], "homedepotfoundation.org": [7471], "www.webrtchacks.com": [18142], "energylivenews.com": [5257], "portal.mobify.com": [10494], "shop.flixbus.com": [5931], "www.shopsite.com": [14718], "jobsadmin.newscientist.com": [11298], "www.actionautowreckers.com": [490], "fictiv.com": [5773], "galaxis.at": [6407], "aafes.cyberpowerpc.com": [19098], "forums.openoffice.org": [1084], "ebola.stanford.edu": [15383], "*.tinydl.com": [16487], "pivotal.io": [12730], "cipherli.st": [3152], "autodiscover.bmb.leeds.ac.uk": [17318], "pay.ubuntu.com": [17102], "imgjam.com": [7994], "bighugelabs.com": [1854], "www.idrix.fr": [7707], "a0.lscdn.net": [9102], "college.artsci.wustl.edu": [17993], "livestream.com": [9514], "epp.sheffield.gov.uk": [14694], "js.thisismedium.com": [8444], "portal.switch.ch": [15699], "svn.ffx.subsignal.org": [15566], "www.droplr.com": [4771], "sakittome.com": [5308], "cdn.gosquared.com": [6784], "coventry.gov.uk": [19085], "dna.land": [4056], "reg.taobao.com": [15952], "secure.htw-berlin.de": [7112], "static.superstart.se": [15635], "game.yandex.com.tr": [18649], "topdesk.bls.ch": [1526], "nsrc.org": [10958], "static.junge-piraten.de": [8679], "serverbase.ch": [19583], "admissions.bury.gov.uk": [19027], "securityexperten.com": [14528], "store.linux.com": [9403], "www.migros-shop.de": [19399], "physics.osu.edu": [11760], "patreon.com": [12456], "alternate.nl": [880], "smiley.37signals.com": [118], "n-tv.de": [19424], "shop.vodafone.de": [17814], "*.c-and-a.com": [2496], "publichealth.wustl.edu": [17993], "fogcreek.com": [5980], "cardsagainsthumanity.com": [2836], "secure.stacklet.com": [15364], "foliovision.com": [5985], "*.sape.ru": [14296], "keepass.info": [8833], "docs.enlightenment.org": [5280], "bugs.winehq.org": [18352], "rstudio.com": [13467], "mobile-services.williams.edu": [18316], "unseen.is": [17369], "autodiscover.getech.leeds.ac.uk": [17318], "blackboard.cornell.edu": [3676], "statse.webtrendslive.com": [18172], "astra.scu.edu": [14289], "mysql.de": [10780], "www.themarshallproject.org": [16297], "*.fyleio.com": [2361], "skype.com": [14938], "economics.harvard.edu": [7219], "flixbus.be": [5931], "www.redbooks.ibm.com": [7675], "tel.local.ch": [9536], "distilleryimage9.instagram.com": [8182], "www.set.io": [14632], "bgs.zg.ch": [19648], "disk.yandex.com": [18651], "ftp.mirrorservice.org": [10448], "www.ixsystems.com": [7884], "postscapes.com": [12983], "scheduler.einsteinathome.org": [5128], "www.talenttech.com": [15918], "evozi.com": [5469], "www.postaonline.cz": [2974], "memopol.lqdn.fr": [9113], "ssl8.ovh.net": [12173], "maidstone.firmstep.com": [19183], "cart.rapidbuyr.com": [13554], "*.tradeking.com": [16635], "webmail.dkit.ie": [4040], "www.33option.com": [103], "www.amazon.de": [917], "www.funker530.com": [6266], "pentestit.ru": [12543], "www.ucalgarymag.ca": [16944], "muri.engineering.osu.edu": [11760], "www.oracle.com": [12082], "wetanz.com": [18224], "store.terrapass.com": [16127], "www.compute.dtu.dk": [16031], "pt.pornworms.com": [12928], "tineye.com": [16468], "element.yandex.com.ua": [18650], "company.overdrive.com": [12159], "bitquick.co": [1943], "*.ehowcdn.com": [19137], "secure.teljari.is": [10525], "amazon.fr": [917], "netfilter.org": [11225], "archive.4plebs.org": [161], "www.aarnet.edu.au": [233], "cybox.mitre.org": [10459], "democracy.eastsussex.gov.uk": [19142], "caradvice.com.au": [2827], "m.yandex.com.tr": [18649], "*.johnsonking.com": [8612], "static1.dditscdn.com": [4239], "*.2ch.hk": [92], "www.geant.net": [6313], "array.is": [1213], "learning.rethink.org": [19549], "*.gngr.info": [6759], "aktion-deutschland-hilft.de": [770], "www.coveritlive.com": [3735], "podcast.at": [12843], "citrix.com": [3178], "usenet-crawler.com": [17425], "www.esb.ie": [4952], "nydn.us": [1920], "www.netpivotal.co.uk": [11204], "*.comicvine.com": [18244], "www.strawpoll.me": [15515], "tracker.moodle.org": [10575], "*.visitestonia.com": [17778], "www.chartsinfrance.net": [3025], "*.findagrave.com": [5842], "www.gondor.io": [6824], "www.firstgiving.com": [5869], "www.digid.nl": [11132], "samples.ffmpeg.org": [5565], "mybanklearning.sbi.co.in": [14082], "*.exposure.co": [5515], "appcelerator.com": [1113], "*.enta.net": [5290], "hax.5july.org": [175], "jpfox.fr": [8653], "static1.urbandictionary.com": [17407], "cdn1.sbnation.com": [14079], "www.unisys.co.jp": [17202], "www.tokyo-tosho.net": [16537], "altlinux.org": [303], "www.radioshackwireless.com": [13515], "*.eetnordic.com": [4905], "palbin.com": [12340], "materiel.net": [10065], "vce.com": [17475], "lists.gnumonks.org": [6766], "*.facebook-studio.com": [5622], "jameco.com": [8501], "co.baifubao.com": [1621], "*.proofpoint.com": [13154], "www.dragndropbuilder.com": [4735], "www.healthcarestaffbenefits.org": [7262], "code.webplatform.org": [18079], "beryl-themes.org": [19461, 19462], "*.getcloudapp.com": [9371], "usat.ly": [1920], "webnms.com": [18077], "a.fightforthefuture.org": [5783], "blog.sandstorm.io": [14283], "www.webmate.io": [18132], "bloo.ie": [2114], "koderoot.net": [8951], "accesorios.poderpda.com": [12845], "securityweek.com": [14525], "www.gupnp.org": [6354], "wiki.oasis-open.org": [11606], "technovelty.org": [16046], "www.kyhwana.org": [9051], "au.effectivemeasure.net": [5109], "denh.am": [4361], "*.apicasystem.com": [1092], "mein.edeka.de": [19147], "easyjet.com": [5025], "bilio.com": [1875], "www.turngs.com": [16843], "shkb.ch": [19333], "sonymobile.com": [15145], "mozdevgroup.com": [10648], "www.monkeyguts.com": [10557], "sustainability.williams.edu": [18316], "photon-science.desy.de": [4399], "subtome.com": [15569], "www.dealzon.com": [4023], "www.gentoo-blog.de": [6529], "www.chrisjean.com": [3105], "manage.stripe.com": [15525], "evermeet.cx": [5448], "*.etsy.com": [5395], "switchnet.io": [15705], "roundcube.mayfirst.org": [10100], "bugzilla.rpmfusion.org": [14005], "weblogin.washington.edu": [17291], "www.boardgamegeek.com": [2166], "www.buzzdoes.com": [2478], "tour.ubuntu-fr.org": [17095], "px.srvcs.tumblr.com": [16826], "www.side.cr": [14761], "now-static.norton.com": [11505], "getdropbox.com": [4768], "*.tweetriver.com": [10048], "myforms.sc.egov.usda.gov": [17209], "idp.stanford.edu": [15383], "brixwork.com": [2344], "strugee.net": [15532], "formatdynamics.com": [6043], "tr.foursquare.com": [6082], "whitelabel.net": [18255], "www.jujucharms.com": [8670], "marketplaceondemand.cisco.com": [3162], "membership.theguardian.com": [16288], "css.cdn.audiko.net": [1357], "ck.sendmoments.com": [14582], "www.curiosity-driven.org": [3930], "www.secularstudents.org": [14471], "rewards.americanexpress.com": [935], "www.probikekit.co.uk": [13116], "www.awxibrm.com": [3481], "www.onetimesecret.com": [11851], "*.www.poppysports.com": [12917], "action.amnesty.org.uk": [971], "*.securepcissl.com": [14508], "www.katescomment.com": [8815], "sonicwall.com": [15137], "eloedge.com": [4923], "www.vid.me": [17676], "www.pentestit.ru": [12543], "police.uk": [12863], "stanfordconnects.stanford.edu": [15383], "ebm.e.ccs.com": [2551], "my.smartbear.com": [14986], "*.aa.net.uk": [228], "torrentleech.org": [16586], "www.medici-manager.com": [10189], "media.licdn.com": [9085], "codeschool.com": [3357], "wiki.creativecommons.org": [3778], "payments.westminster.gov.uk": [18220], "operation-cambridge.linux-mips.org": [9413], "dehu.dict.cc": [4455], "www.gogetssl.com": [6780], "eset.de": [4955], "osdsc.alicdn.com": [805], "static.pinboard.in": [12677], "www.scrypt.cc": [14427], "www.trusted-introducer.org": [16786], "cln.cloudlinux.com": [3290], "congresstmi.org": [5783], "*.wikicdn.com": [16111], "www.specialized.net": [15241], "halogenuseradmin.dft.gov.uk": [19116], "www.bitme.com": [2007], "thehackerblog.com": [16289], "fotisl.com": [6072], "www.exeterfamily.co.uk": [5491], "itssb.web.cern.ch": [2575], "gorickshaw.com": [6795], "talkingfrench.com": [15932], "secure.xsolla.com": [18593], "summercollegeacademy.stanford.edu": [15383], "ustream.tv": [17451], "media-cache-ec0.pinterest.com": [12699], "www.fiannafail.ie": [5768], "www.oppelt.com": [12059], "webmail.kuleuven.be": [8816], "100ideen.migros.ch": [19399], "mybenefitscalwin.net": [10745], "cp.timeweb.ru": [16457], "bug.tasktools.org": [15971], "www.rusi.org": [13480], "www.vilistlane.ut.ee": [17069], "expapi.oscar.aol.com": [321], "tyj.fi": [16910], "www.hackread.com": [7134], "www.people.ysu.edu": [18742], "gestaoconsumos.edp.pt": [4896], "nl.chaturbate.com": [3035], "ask.barclaycard.co.uk": [1664], "ecn.t1.tiles.virtualearth.net": [17755], "gomez.com": [3544], "*.maxymiser.com": [10098], "oas.theguardian.com": [16288], "*.e17-stuff.org": [19462], "www.okta.com": [11776], "blu.is.berkeley.edu": [17240], "www.aimatch.com": [742], "haobtc.com": [7197], "*.facepunch.com": [5624], "blog.onlive.com": [18428], "pub.dartlang.org": [4157], "engineering.wustl.edu": [17993], "www1.iitb.ac.in": [7744], "www.adobetag.com": [620], "cabforum.org": [2506], "connect.just-eat.co.uk": [19328], "www.infrequently.org": [8134], "*.burstnet.com": [2447], "store.buddyauth.com": [2230], "edge1.digicert.com": [4473], "www.me.com": [9735], "attendesource.com": [1337], "objective-see.com": [11703], "s3.jrnl.ie": [19326], "uniquefiler.com": [17193], "admin.nativo.net": [11092], "static-mdev.gbot.me": [6808], "dogwheelchairscenter.com": [4634], "*.superforum.org": [14640], "services.quickline.com": [19530], "evga.com.tw": [4986], "voo.st": [17843], "b.kentbackman.com": [8852], "crowdculture.se": [3820], "roundcube.ouvaton.coop": [12155], "setup.boldchat.com": [2187], "static.iono.fm": [8341], "content.dl-rms.com": [4041], "telushealth.com": [16103], "techtarget.com": [16019], "hosting.www.namecheap.com": [11019], "www.shinystat.com": [19587], "*.portalhelp.hosting.ru.nl": [13510], "consultation.hackney.gov.uk": [7156], "www.get.cm": [6563], "f5networks.co.jp": [5547], "tlc.telford.gov.uk": [19669], "bugs.cacert.org": [2520], "www.office.vutbr.cz": [17522], "myinfo.lincoln.gov.uk": [9362], "raumzeitlabor.de": [13577], "na2.brightidea.com": [2330], "www.pureloto.com": [13244], "grepbugs.com": [6943], "cryptodesign.org": [3868], "meta.askubuntu.com": [15359], "www.pgl.co.uk": [7452], "origin.mt-cdn.net": [9798], "myportal.seagate.com": [14437], "formstack.com": [6046], "dashboard.jwplayer.com": [9589], "www.worksthatwork.com": [18445], "fr.icecat.biz": [7914], "*.sdsu.edu": [14094], "theparliamentmagazine.eu": [16304], "ncmp.hscic.gov.uk": [19264], "www.informatik.uni-ulm.de": [19715], "keen.io": [8836], "www.igt.hscic.gov.uk": [19264], "meebo.com": [10206], "o1.qnsr.com": [13306], "procensus.com": [19520], "eshop.kensington.com": [8850], "sciencealert.com": [19574], "www.defenseindustrydaily.com": [4309], "parkingpermits.kirklees.gov.uk": [8916], "cyberwar.nl": [3977], "special.geektimes.ru": [6507], "sitecontrol.us": [14877], "www.orbitalatk.com": [12092], "www.xap.com": [18502], "www.vultr.com": [17873], "i3.parallels.com": [12392], "wiki.grml.org": [6382], "improper.com": [8019], "symantec.com": [15715], "avallalat.aldi.hu": [299], "*.vitaminshoppe.com": [17794], "stop-ttip.org": [15482], "youtube.freifunk.net": [6192], "oascentral.datasphere.com": [4187], "www.findnsave.com": [5836], "random.org": [13545], "go.symantec.com": [15715], "agoravoting.com": [732], "retriever-info.com": [13826], "cdn3.sure-assist.com": [15644], "georgetown.edu": [6546], "www.amersfoort.nl": [11132], "docs.saltstack.com": [14255], "anon-ib.net": [1037], "ols.britac.ac.uk": [2335], "*.deluge-torrent.org": [4339], "www.fold.cm": [5982], "wiki.wireshark.org": [18369], "tcl.tk": [15986, 15987], "support.medialayer.com": [10156], "*.sitepen.com": [14869], "cdn.engine.4dsply.com": [159], "purchasing.osu.edu": [11760], "humanrightsdefensecenter.org": [7610], "www.naytev.com": [11116], "bizchannel.cimb.com.sg": [2607], "zotero.org": [18911], "bz.mercurial-scm.org": [10279], "www.stpeter.im": [15503], "creocommunico.com": [7501], "yaupspe.com": [5224], "com-sys.de": [3450], "*.bytelove.us": [2490], "www.visatovietnam.org": [17765], "bircko.com": [1911], "lolzparade.com": [4118], "www.coloradonocall.com": [3440], "www.gmail.com": [6843], "openaccessbutton.org": [11999], "cinchouse.com": [3136], "spreadshirt.com": [15300], "www.assessment.vt.edu": [17740], "www.grctech.com": [6381], "www.hr-skyen.dk": [7093], "thecutestsiteontheblock.com": [16184], "ershou.taobao.com": [15952], "staytoday.com": [15443], "www.magicmembers.com": [9856], "www.abc.xyz": [403], "store.playosmo.com": [12125], "developer.amazon.com": [913], "edonorcentral.com": [4903], "travel.americanexpress.com": [935], "education.lego.com": [9068], "www.obi.cz": [19452], "heli.valtiolle.fi": [17534], "redbridge.gov.uk": [13683], "www.451unavailable.org": [146], "quorks.ath.cx": [13376], "primaryimmune.stanford.edu": [15383], "intgovforum.org": [8199], "member1.taobao.com": [15952], "seotrainingtoronto.com": [14103], "tube-test.geogebra.org": [6537], "www.newlook.com": [11307], "*.mla.com.au": [10134], "yellowpages.ca": [18670], "wellingborough.gov.uk": [18194], "bagnet.org": [1615], "*.agenda.athaliasoft.fr": [1312], "static.jdpay.com": [8429], "paddle.com": [12324], "www.amazingweb.co": [908], "cdn-media.joomlainfo.ch": [19325], "www.rf.osu.edu": [11760], "banking.co.at": [1647], "ltradio.com": [9105], "ernaehrung-per-klick.de": [10196], "api.analytics.mashape.com": [10044], "api.mail.aol.com": [321], "msds.open.ac.uk": [11986], "assets.digital.cabinet-office.gov.uk": [2700], "cf-example.com": [2975], "www.baycitizen.org": [1702], "www.botaanikaaed.ut.ee": [17069], "penfoldgolf.com": [12533], "donate.salvationarmyusa.org": [14256], "*.allshareplay.com": [838], "tl-activity.itunes.apple.com": [1120], "aldi.be": [299], "*.getharvest.com": [6576], "fdopk.org": [5664], "cp.element5.com": [5157], "www.sourcetreeapp.com": [15176], "cdn.cybergolf.com": [3972], "partnerupload0.steampowered.com": [15450], "planetemu.net": [12766], "*.aereo.com": [685], "www.owncloud.com": [12181], "egee-uig.web.cern.ch": [2575], "english-heritageshop.org.uk": [5269], "www.terveysportti.org": [16133], "static.fsf.org": [5600], "holdall.norfolk.gov.uk": [19436], "www.foliovision.com": [5985], "spout.ussg.indiana.edu": [8065], "assets.noisey.com": [11460], "consultants.apple.com": [1120], "*.brinkster.com": [2334], "ruggedsoftware.org": [14028], "www.best-pariuri-online.com": [7732], "www.claimconnect.net": [4894], "www.falkvinge.net": [5642], "www.s-hertogenbosch.nl": [11132], "*.politifact.com": [12870], "www.eprize.net": [4946], "wiki.eth-0.nl": [5376], "cit.cornell.edu": [3676], "manage.dediserve.com": [4293], "tent.io": [16115], "womens.uaa.alaska.edu": [17233], "oi.meetings.io": [10217], "planboardapp.com": [12756], "franciskim.co": [6100], "battlecreekenquirer.com": [1694], "support.vodafone.ie": [17815], "www.activemelody.com": [500], "sfn.org": [15077], "schd.ws": [14348], "tarpon.citrix.com": [3178], "staticwhich.co.uk": [18240], "x.wpimg.pl": [19766], "*.selfhost.de": [14567], "en-nl.dict.cc": [4455], "apps.cardiff.gov.uk": [19039], "evil32.com": [5459], "file.kelleybluebookimages.com": [8844], "preferences.hearstmags.com": [7273], "*.fastssl.net": [5673], "widgets.pinterest.com": [12699], "www.opalang.org": [11903], "www.steepandcheap.com": [15460], "advertising.bostonglobemedia.com": [2235], "*.esomar.org": [4963], "*.ntt.com": [10966], "7kbhkort.kk.dk": [8730], "autodiscover.hcl-axon.com": [7050], "vue.com": [12506], "www.growthhackers.com": [6984], "sphere.com": [15263], "www.stopbadware.org": [15489], "kirklees.greenparty.org.uk": [6925], "wwwsrv.bo.infn.it": [7766], "myapp.cdgcommerce.com": [2552], "superstats.com": [15617], "notebookkisker.hu": [9155], "activate.origin.com": [12106], "webseries.rsi.ch": [19621], "judicialwatch.org": [8663], "www.metashop.at": [13026], "www.lefebvre.org": [9190], "*.libri.de": [9317], "forums.robertsspaceindustries.com": [13922], "sf.taobao.com": [15952], "moodle.com": [10572], "*.3min.de": [134], "*.otsuka-shokai.co.jp": [12134], "www.washingtonpost.com": [17990], "mandiant.net": [10179], "go.bunchball.com": [2424], "ana.net": [1297], "*.dfat.gov.au": [4370], "cdn.emetriq.de": [18585], "kirklees.connecttosupport.org": [19076], "www.infousa.com": [8110], "hertz247.co.uk": [7371], "pc2.mypreferences.com": [10777], "hitleap.com": [7421], "youtube.ru": [18709], "youtube.rs": [18709], "www.fairssl.se": [5631], "bulkorder.ftc.gov": [5720], "themis.asu.edu": [1195], "*.ehosting.ca": [5119], "fnt.webink.com": [18068], "youtube.ro": [18709], "analytics.profitbricks.com": [13129], "ludismedia.com": [9654], "static.domainsigma.com": [4656], "www.prxy.com": [13185], "site5.com": [14862], "www.hellobar.com": [7294], "www.emapawards.com": [5196], "wiki.hope.net": [7492, 7493], "minohubs.com": [10430], "ssl-certificate-center.verisign.com.sg": [17623], "consult.birmingham.gov.uk": [19000], "bertrandmeyer.com": [1799], "m.hotukdeals.com": [7549], "www.webmailer.hosteurope.de": [7516], "shop.vhf.de": [19735], "fitocracy.com": [5890], "support.academiccommons.columbia.edu": [3448], "www.talkactive.net": [15925], "lexmachina.com": [9279], "www.usenet-crawler.com": [17425], "princeton.edu": [13064], "apps.owncloud.com": [12181], "*.patientslikeme.com": [12455], "m.poczta.wp.pl": [17921], "www.hrkgame.com": [7579], "dms-d.wiiings.com": [18288], "www.farmaciforbundet.se": [5663], "ecdrappeals.ed.gov": [4889], "edinburghfestival.list.co.uk": [16199], "*.coloradoan.com": [3444], "www.bringthegig.com": [2333], "linuxplumbersconf.net": [9397], "www.sebijk.com": [7463], "dedigitaletopschool.nl": [4246], "paxtonrecord.net": [12464], "www.nohats.ca": [11443], "www.tittygram.com": [16504], "refunds.stanford.edu": [15383], "kursk.rt.ru": [13469], "www.onionshare.org": [11863], "secure.justin.tv": [16888], "wfs.oracle.com": [12082], "www.sopastrike.com": [5783], "www.codeweavers.com": [3353], "www.mims.com.tw": [9743], "i.computer-bild.de": [19075], "live.dus.c3voc.de": [2501], "orkut.co.in": [12110], "dru-cdn.zipcar.com": [18872], "sealserver.trustwave.com": [16799], "app.appsflyer.com": [1131], "www.tuv.com": [3625], "fama.alipay.com": [817], "smtp.usainteanne.ca": [19720], "www.dustin.se": [4810], "biop.ox.ac.uk": [17271], "mine.jd.com": [8423], "www.siteheart.com": [14866], "i03.c.aliimg.com": [813], "eastbayteamservices.com": [5018], "glassfish.java.net": [8525], "appserv6.admin.uillinois.edu": [16960], "fly.tdc.dk": [15796], "*.drownedinsound.com": [4773], "help-fr-fr.nike.com": [11401], "www.bigconcerts.co.za": [1858], "www.mozillazine-fr.org": [19411], "*.heckrath.net": [7281], "*.iesnare.com": [7946], "icmag.*": [2808], "https.downforeveryone.com": [4724], "insight.rapid7.com": [13553], "procurement.southend.gov.uk": [15193], "www.junodownload.com": [8683], "newscenter.berkeley.edu": [17240], "netsekure.org": [11249], "www.mantor.org": [9963], "*.dx.com": [4253], "virtualedge.com": [272], "www.insidescience.org": [8167], "gwbweb.wustl.edu": [17993], "frozencpu.com": [6231], "your.trash.net": [16687], "static.ycharts.com": [18613], "weather.mercurynews.com": [10161], "ads.stickyadstv.com": [15474], "doc.intercom.io": [8244], "cms.myspacecdn.com": [10848], "atcal.berkeley.edu": [17240], "www.pirateparty.org.au": [12713], "computersnyou.com": [3540], "www.skycityauckland.co.nz": [14128], "buycraft.net": [2472], "www.westlandutrechtbank.nl": [18217], "cloud.github.com": [6680], "*.nps.gov": [11084], "pics.defcon.org": [4305], "janhendrikpeters.de": [8509], "status-page-blog.herokuapp.com": [15438], "nab.org": [10864], "fobos.de": [5972], "www.youtube.si": [18709], "2.standaardcdn.be": [15379], "www.westyorkshireobservatory.org": [18214], "www.snsbank.nl": [14144], "sina.is": [14841], "www.beckerproxy.wustl.edu": [17993], "es.cryptonator.com": [3883], "git.gnupg.org": [6761], "bunchball.com": [2424], "www.datapipe.cn": [4211], "forums.pcbsd.org": [12216], "seanmckaybeck.com": [14441], "www.cz.o2.com": [16076], "www.usrowing.org": [17050], "*.dmcloud.net": [4125], "fr.foursquare.com": [6082], "blog.ginkel.com": [6663], "studenaffairs.usc.edu": [17278], "content.oneplus.net": [11841], "*.dyc.edu": [4094], "www.checkpoint.com": [3048], "www.groupon.com": [6974], "goldstar.com": [6818], "addons.xt-commerce.com": [18595], "members.girlsoutwest.com": [6667], "www.grupfoni.com": [6986], "bookkeeper.itunes.apple.com": [1120], "support.zabbix.com": [18774], "www.ascenderfonts.com": [1246], "xdk.intel.com": [8209], "plugins.movabletype.org": [10627], "www.peerio.com": [12521], "*.bcvs.ch": [1655, 19333], "gametreedeveloper.com": [6428], "*.atlantic.net": [1318], "metrics.penton.com": [12545], "update.local.ch": [9536], "claws.cf.ac.uk": [2835], "leap.neustar.biz": [11280], "us-cert.gov": [17415], "openeffect.ca": [19464], "zillowstatic.com": [18865], "smssecure.org": [14139], "www.youtube.sg": [18709], "muj.cesky-hosting.cz": [19051], "wakefield.objective.co.uk": [19454], "mvptitle.com": [9807], "conformal.com": [3572], "blog.witness.org": [18382], "www.control.tierra.net": [16435], "www.dnscrypt.eu": [4061], "i2.sitepoint.com": [14870], "macworld.idg.se": [7705], "casino.williamhill.com": [18314], "imgdino.com": [7993], "boss.berlinonline.de": [1793], "dukgo.com": [4792], "sslmate.com": [14178], "reep.refeds.org": [13413], "apotheke.de": [1100], "snap.vidiemi.com": [17701], "www.alternatives.ca": [882], "www.ffprofile.com": [5765], "tmcomponents.travelmarket.com": [16697], "my.sky.com": [14924], "netindex.com": [11211], "memberdb.nuug.no": [10978, 10980], "voyage-prive.com": [17857], "shop.ccs.com": [2551], "preview-studyinthestates.dhs.gov": [4035], "cdnakmi.kaltura.com": [8775], "*.nsidc.org": [11062], "fitforgood.fitbit.com": [5887], "www.shorte.st": [14735], "assets.www.npo.nl": [10949], "browser.yandex.ua": [18656], "www.studentchaptersonline.acs.org": [929], "dw1.s81c.com": [19561], "mail.comscore.com": [3453], "www.appear.in": [1114], "goparallel.sf.net": [15174], "sslcert35.com": [15347], "go.illinois.edu": [17258], "www.*.alaska.edu": [17235], "solucionespyme.cisco.com": [3162], "cern.ch": [2575], "podpora.skolaonline.cz": [19598], "*.electricembers.net": [5148], "ticket.yandex.kz": [18652], "test.freesound.org": [6184], "www.untangle.com": [17370], "*.thesfmarathon.com": [14273], "www.schaafpc.com": [14345], "ygtech.tools": [18615], "fbo.gov": [5714], "*.kobobooks.fr": [8949], "cwaa.ki.se": [8725], "tlhp.cf": [15823], "h.live.com": [9483], "segger.com": [14557], "campfireunion.com": [2781], "stayclassy.org": [15440], "*.datenretter.de": [3625], "suggests.rasp.yandex.kz": [18652], "familie.bw.aok.de": [317], "blog.kapsobor.de": [8792], "digitalcreations.no": [4490], "uitcomms.stanford.edu": [15383], "my.neo900.org": [11146], "forum.ukfur.org": [16970], "static.jrnl.ie": [19326], "elrepo.org": [4924], "eu-st.xhcdn.com": [18514], "kobo.com": [8949], "thevegankind.recurly.com": [13652], "getpebble.com": [12508], "rcm-ca.amazon.ca": [910], "simplereach.com": [14822], "lists.secondlife.com": [14462], "*.minavardkontakter.se": [10805], "defuse.ca": [4316], "chrysalisventures.com": [3125], "www.memrise.com": [10254], "alfa.cz": [801], "webpaper.nzz.ch": [19450], "thegearhunter.co.uk": [16281], "www.err.ee": [5369], "*.adtarget.me": [637], "monitoring.datamotion.com": [19102], "www.ziggo.nl": [18862], "www.crypto.is": [3853], "www.coastdigital.co.uk": [3338], "cam.illinois.edu": [17258], "s1.adformdsp.net": [585], "nubits.com": [11561], "lift.openx.com": [11995], "hr-s.co.jp": [7095], "wsd.nlm.nih.gov": [11052], "www.rd.io": [13595], "www.schraubenluchs.de": [19572], "deliv.leboncoin.fr": [19351], "home.capitalone360.com": [2819], "poppyuk.com": [12918], "mywebsite.1and1.ca": [52], "music.yandex.kz": [18652], "www.gionn.net": [6664], "www.airasiamegastore.com": [746], "cheapairportparkingbirmingham.com": [3043], "www.marketo.net": [10015], "media.progress.com": [13132], "mail.vas-hosting.cz": [19729], "cdns.usablenet.com": [17419], "olb2.nationet.com": [11091], "crnt.engineering.osu.edu": [11760], "community.infoblox.com": [8106], "www.is-its.org": [8361], "fossil-scm.org": [6071], "id.foursquare.com": [6082], "cdn.silktide.com": [14796], "cga.ct.gov": [2680], "ugst.umd.edu": [17263], "printrbot.com": [13072], "*.uservoice.com": [17441], "sc2.rgstatic.net": [13422], "ard.ndr.de": [11119], "www.cryptostorm.is": [3890], "*.tuts4you.com": [16854], "www.hometheaterreview.com": [7473], "beyondbinary.io": [18994], "www.evermap.com": [5445], "www.ntacdn1.net": [11553], "www.ohiounion.osu.edu": [11760], "ohsocool.org": [11758], "www.threatmatrix.com": [19680], "tiggerswelt.net": [16441], "www1.umn.edu": [17268], "www.geekisp.com": [6494], "imagefile2.51fanli.net": [171], "usnwc.edu": [17047], "webmail.server1.firstfind.nl": [18736], "fb18.de": [5555], "snellman.net": [15035], "hosting.de.adjug.com": [526], "t.alipayobjects.com": [817], "tickets.eth0.nl": [5376], "www.bell.ca": [1763], "a14electronics.com": [218], "dl.aircrack-ng.org": [750], "lightning.cdn.overdrive.com": [12160], "event.condenastdigital.com": [3554], "rcm-na.assoc-amazon.com": [1288], "subscriptions.economist.com": [5060], "www.tbray.org": [15788], "urac.org": [17014], "www.storywrite.com": [15502], "geef.nl": [6491], "*.shld.net": [14117], "www.dogzonline.com.au": [4636], "lists.ens.fr": [4930], "www.legacy.vg": [9228], "yourhosting.nl": [18736], "*.lukb.ch": [19333], "impactstory.org": [8013], "brasil247.com": [2290], "assets.slid.es": [14959], "rheinland24.info": [13860], "www.pgp.webtru.st": [18174], "lists.mplayerhq.hu": [9784], "www.ovh.biz": [11685], "www.djoserjunior.nl": [7452], "*.patreon.com": [12456], "blogs.yandex.kz": [18652], "cdn.ssbkyh.com": [15344], "sourcefoundry.org": [19611], "myfreecopyright.com": [10760], "slovakrail.sk": [14973], "communitymednews.stanford.edu": [15382], "v.vungle.com": [17877], "sharepoint.webtrends.com": [18171], "sole.dk": [15115], "www.dashlane.com": [4163], "en-hr.dict.cc": [4455], "login.citrixonline.com": [3179], "action.mathtag.com": [10071], "clubs.union.rpi.edu": [13771], "playosmo.com": [12125], "mysupport.attachmate.com": [1336], "fakena.me": [19174], "deb.globaleaks.org": [6712], "mywebsite.1and1.com": [51], "www.libssh.org": [9320], "greentechmedia.com": [6938], "transportation.stanford.edu": [15383], "images.capitalone360.com": [2819], "www.chronicle.com": [3122], "www.simplednscrypt.org": [14826], "ktm.ppl.cz": [12283], "www.bose.co.uk": [2228], "www.xww.ro": [18605], "youtube.ie": [18709], "iacademy.oracle.com": [12082], "iris.va.gov": [17019], "youtube.in": [18709], "*.forensicinstitute.nl": [6027], "expresscoin.com": [5517], "*.anglomedia.net": [1016], "reports.informationweek.com": [16927], "youtube.it": [18709], "bugs.schokokeks.org": [19570], "patches.ubuntu.com": [17102], "findnsave.com": [5836], "www.ranallolawoffice.com": [11386], "static.123rf.com": [25], "brave.com": [19018], "www.adhocracy.de": [587], "wiki.thm.de": [15811], "www.datadirect.com": [4180], "yabs.yandex.ua": [18656], "s3.antimac.org": [2774], "www.environment.leeds.ac.uk": [17318], "rbt.asia": [13593], "amanda.zmanda.com": [18880], "www.perfectmarket.com": [12560], "www.surbitcoin.com": [15643], "cygwin.com": [3978], "www.multibit.org": [10695], "media.www.harvard.edu": [7219], "dyn.com": [4820], "portal.emergingthreats.net": [5207], "msf.org.uk": [9789], "cs.utah.edu": [17288], "*.scopus.com": [14391], "www.findretros.com": [5839], "www40.polyu.edu.hk": [12891], "analytics.sylvancompany.com": [15714], "wiki.lugons.org": [9108], "cheapassgamer.com": [3039], "www.csis.ysu.edu": [18742], "www.perfectmoney.is": [12562], "ganglandnews.com": [6452], "ideabank.mit.edu": [9749], "*.gtcsonline.mycashflow.fi": [6394], "careerbuilder.com": [2841], "securify.nl": [14516], "discoverwem.adobe.com": [615], "studclient.htwk-leipzig.de": [7114], "identrustssl.com": [7935], "sdsp.ipinyou.com": [7803], "tgthr.crbuildsite.com": [16166], "mail.apan.org": [329], "kungfu.chef.io": [3057], "support.cloud.engineyard.com": [5265], "widget.intercom.io": [8244], "compass.thecthulhu.com": [16334], "my.rit.edu": [13434], "gigasize.com": [6645], "exiledonline.com": [4997], "imgbox.com": [7996], "openstreetmap.org": [11979], "ballicom.co.uk": [1631], "schotty.com": [19571], "subscription.economist.com": [5060], "*.adextent.com": [522], "admissions.wustl.edu": [17993], "jos.jd.com": [8423], "bsi-ni.brain.riken.jp": [13430], "tofour.net": [16520], "secure.gog.com": [6365], "expohomes.com": [5627], "*.verizonwireless.com": [17628], "themes.tiki.org": [16444], "dev.virtualearth.net": [17755], "ubuntu-fr.org": [17096], "www.copperhead.co": [3653], "kaspersky-cyberstat.com": [8805], "www.aetolia.com": [18943], "site.kaltura.com": [8775], "content.ott.sky.com": [14924], "meetrics.net": [10218], "portal.m3-connect.de": [19375], "webassetsh.scea.com": [14089], "*.fox-toolkit.net": [5589], "*.isdewinkelopen.nl": [19277], "www.usertags.com": [17087], "www.opensourcehacker.com": [12026], "*.lonap.net": [9093], "*.he.net": [7629], "store.magicalbutter.com": [9857], "pof.com": [12813], "hrc.org": [7604], "kable.com": [8762], "www.bgentry.io": [1835], "shop.eset.com": [5358], "*.www.cta-observatory.org": [3061], "a.s.kqed.net": [8747], "www.amoena.com": [979], "library.cornell.edu": [3676], "agari.com": [720], "*.signon.trb.com": [16731], "*.populisengage.com": [12923], "prf.hn": [12567], "*.butterflylabs.com": [2465], "*.econda-monitor.de": [5058], "msu.edu": [19414], "www.exacom.sk": [5476], "*.java-apps.org": [19462], "bangordailynews.com": [1642], "www.elie.im": [5164], "develop.untangle.com": [17370], "groups.google.co.*": [6837], "*.v-identity.com": [17460], "tiscali.nl": [16098], "st4.gismeteo.ru": [6669], "brad.brunel.ac.uk": [19021], "piwik.liberdade.digital": [9297], "dashboard.aggregateknowledge.com": [726], "www.iwantmyname.com": [19313], "www.ing.nl": [7769], "tailormadeanswers.com": [15913], "www.uakjobs.com": [17234], "lists.lysator.liu.se": [9084], "wdws.com": [17899], "ssl.ncsu.edu": [11492], "readrboard.com": [13617], "www.worldfoodprize.org": [18455], "media.eloqua.com": [5178], "www.webcompat.com": [18112], "kryptologika.com": [9019], "owa.groupware.kuleuven.be": [8816], "23systems.net": [73], "tll.mit.edu": [9749], "*.servercrate.com": [14605], "www.rockpaperphoto.com": [13936], "www.heatball.de": [7277], "www.metrix.net": [10319], "share.livingsocial.com": [9517], "find.firefox.com": [5859], "risiinfo.com": [13433], "www.asseenontv.com": [1240], "websitealive1.com": [18149], "education.web.cern.ch": [2575], "members.jpost.com": [8654], "de.redhat.com": [13675], "*.oe24.at": [11728], "www.interns.org": [8292], "cdn5.xvideosx.tv": [18537], "www.sixapart.jp": [14889], "ipwnage.com": [7808], "www.heute.de": [19800], "ttl.ut.ee": [17069], "www.sky.de": [14925], "www.mobigum.com": [10489], "www.milbencheck.at": [10390], "kantarworldpanel.com": [8786], "*.jobamatic.com": [8594], "*.broadinstitute.org": [2347], "lfov.net": [9076], "ccrjustice.org": [2550], "*.envato-static.com": [5305], "bet365.com": [1811], "mirror.bitmissile.com": [1938], "www.thebigweddingmovie.com": [16248], "www.strikingly.com": [15523], "cdn.adexcite.com": [520], "www.torlock.com": [16568], "ageuk.org.uk": [18946], "es.foundation.walmart.com": [17964], "www.blockchain.info": [2090], "psarips.com": [12297], "media2.apnonline.com.au": [333], "www.site.yandex.com": [18651], "login.live.com": [9483], "debt.webmoney.ru": [18076], "realty.yandex.kz": [18652], "buy.stubhub.co.uk": [15534], "www.belpino.se": [1770], "*.assembly.com": [1281], "www.olmn.org": [11630], "www.getdigital-blog.de": [6569], "www.debekijkerie.nl": [4244], "www.tip4commit.com": [16491], "prospect.prospectpublishi.netdna-cdn.com": [13162], "m.facebook.com": [5620], "www.apan.net": [328], "www.alimama.com": [814], "www2.uic.edu": [17231], "digitaldoor.subscriberconcierge.com": [10011], "www.btobonline.com": [3757], "www.intelfreepress.com": [8211], "www.ntnu.edu": [10963], "www.netmediaeurope.co.uk": [11198], "*.leidenuniv.nl": [9241], "www.teacupsandtrinkets.co.uk": [15994], "railscloud.de": [13530], "technoratimedia.com": [16044], "odnoklassniki.ru": [11726], "www.agileu.com": [728], "trideci.com": [16722], "sr.se": [15673], "york.greenparty.org.uk": [6925], "tps40.doubleverify.com": [4709], "smstaging.stanford.edu": [15383], "beckerweb.wustl.edu": [17993], "*.stayfriends.at": [15444], "maps-secure.stanford.edu": [15383], "audemarspiguet.com": [1347], "secdev.ca": [14457], "reisen.eduscho.at": [15985], "ezding.com.tw": [5536], "santafenewmexican.com": [16208], "*.etsystatic.com": [5395], "img-carrefour.mncdn.com": [10478], "www.lightbluetouchpaper.org": [9343], "kb.mediatemple.net": [10165], "challenge25.go.jp": [8515], "watermarquee.com": [18000], "www.iperceptions.com": [19275], "*.scientificamerican.com": [14384], "epnbc-consult.objective.co.uk": [19454], "g.taobao.com": [15952], "bazzapp.com": [1710], "www.amnesty.it": [965], "support.apple.com": [1118], "events.stanford.edu": [15383], "www.bet365.es": [18991], "publishing.kalooga.com": [8773], "staging.blog.gigya.com": [6659], "nelly.com": [11138], "northamptonshire.firmstep.com": [19183], "resources.inbenta.com": [8037], "rcicruiseholidays.ourvacationcentre.net": [18489], "sale.jd.hk": [8424], "www.lacrossealerts.com": [9118], "*.cargocollective.com": [2850], "conference.jesus.cam.ac.uk": [17243], "webdav.cubby.com": [3909], "nxeassets.xbox.com": [18550], "debuggex.com": [4278], "golf2go.net": [1507], "bgm.stanford.edu": [15382], "mysqlbackup.zmanda.com": [18880], "newstuff.seagate.com": [14437], "www.lookout.com": [9601], "www.cuckoosandbox.org": [19096], "www.fortumo.com": [6060], "forumblog.org": [6063], "community.offerpop.com": [11739], "www.hi-eg.com": [7384], "jakearchibald.com": [8495], "hexplo.it": [7382], "pbwebdev.com": [12212], "console.run.pivotal.io": [12730], "www.voltage.com": [17832], "legal.yandex.by": [18648], "spotplanet.org": [15297], "ciuvo.com": [3199], "culturaemcasa.catracalivre.com.br": [2908], "spec.org": [14156], "neimanmarcus.com": [15851], "ed.stanford.edu": [15383], "www.googleapis.com": [6839], "download.parrot.com": [12410], "skitch.com": [14914], "lists.uu.se": [17074], "img01.findgravy.com": [5843], "aprendizaje.internetessentials.com": [19300], "vagrantup.com": [17529], "getpol.org": [6608], "velmedia.net": [17597], "cdn4.colocationamerica.com": [3435], "*.www.maxymiser.com": [10098], "www.maps.yandex.com": [18651], "*.grenet.fr": [6941], "www.yroo.com": [18741], "auth.berkeley.edu": [17240], "www.safeassign.com": [14226], "installations.bobcares.com": [2172], "www.plays.tv": [12809], "static5.businessinsider.com": [2454], "news.constantcontact.com": [3592], "docracy.com": [4620], "*.shop.linuxnewmedia.de": [9396], "www.haaksbergen.nl": [11132], "*.uncg.edu": [17328], "openfmri.org": [12033], "img13.360buyimg.com": [112], "cruzpay.ucsc.edu": [17305], "green.ch": [19228], "ja.libreoffice.org": [9311], "help.aol.com": [321], "www.englishdefenceleague.net": [5271], "csawctf.poly.edu": [12888], "codingteam.net": [3384], "www.virtualearth.net": [17755], "www.exploreb2b.com": [5510], "brightfort.com": [2321], "osvehicle.com": [19469], "*.fetchback.com": [5763], "adingo.jp": [592], "www.vidarholen.net": [17680], "www.one2buy.com": [11829], "ip-search.ch": [15696], "downloads5.mamp.info": [19379], "partner.steamgames.com": [15453], "www.square.com": [15329], "www.diskusjon.no": [4563], "darcs.debian.org": [4275], "channelslb.ap.dell.com": [4335], "alum.mit.edu": [9749], "cfvod.kaltura.com": [8775], "*.segurosuniversales.net": [14561], "*.api.bing.net": [1894], "nurd.space": [10976], "www.ratgeber-verbraucherzentrale.de": [17617], "snapengage-1.wpengine.netdna-cdn.com": [15027], "webtrends-lb.ericsson.net": [5343], "ws.cubby.com": [3909], "radioleaks.se": [13519], "elements.plymouth.ac.uk": [12833], "kb.cloudlinux.com": [3289], "www.timex.com": [16467], "hellosign.com": [7298], "www.tuxingsun.net": [16811], "levoleague-wordpress.s3.amazonaws.com": [9275], "blogjp.ashleymadison.com": [1254], "secure.bluebird.com": [2145], "www.cheapassgamer.com": [3039], "cdns.gigya.com": [6659], "ansa.it": [1055], "www.thalys.com": [16172], "static.malwarebytes.org": [9929], "www.tripadvisor.com": [16741], "www.youcanbook.me": [18703], "jnls.cup.org": [2689], "business.quickline.ch": [19530], "nestlepurinacareers.com": [11169], "www.starttls.info": [14188], "lsda.jsc.nasa.gov": [10869], "spcache.microsoft.com": [10364], "www.deis.com": [4320], "webdam.com": [18059], "www.newscientist.com": [11298], "a.blip.tv": [2079], "cdn11.iconfinder.com": [7921], "chbe.illinois.edu": [17258], "centzy.com": [2960], "pet-portal.eu": [12240], "koen.io": [8954], "www.m-fanshop.ch": [19399], "classiccatalogue.essex.gov.uk": [5365], "www.solicitor-concierge.com": [15116], "ethlife.ethz.ch": [4974], "oaklandish.com": [11694], "www.pwdhash.com": [13261], "www.geoiptool.com": [19213], "blog.twenga.com": [16873], "ci.openmrs.org": [11953], "*.cfapps.io": [2976], "nrel.gov": [11057], "blog.codebasehq.com": [3360], "www.ghostnoteapp.com": [6632], "*.americanheart.org": [945], "shepherdsfriendly.co.uk": [14699], "yabause.org": [18628], "*.incommonfederation.org": [8031], "southbankcentre.co.uk": [15192], "paypalgivingfund.org": [12484], "www.herdprotect.com": [7324], "buzzfeed.com": [2473], "rtb.techdirt.com": [16026], "www.seetickets.com": [14547], "intel.sharedvue.net": [14675], "perfectmoney.com": [12563], "static4.flattr.net": [5910], "mae.osu.edu": [11760], "genesis-technologies.com": [6526], "www.proxfree.com": [13175], "www.rubenerd.com": [14013], "www.acrylicwifi.com": [485], "www.personaldemocracy.com": [12582], "*.gnd-tech.com": [6351], "itmatrix.eu": [7860], "ntrs.nasa.gov": [17026], "nottingham.ac.uk": [11528], "priceza.com": [13056], "static.4kdownload.com": [151], "members.mtna.org": [9801], "fullrate.dk": [6256], "*.gizmag.com": [6694], "www.cedmagazine.com": [2569], "app.alipay.com": [817], "zacks.com": [18775], "www.polymer-project.org": [12893], "readcomicsinpublic.com": [13605], "wii.pcf.wustl.edu": [17993], "www.interference.cc": [8248], "jackimaging.com": [8482], "i4.code.msdn.microsoft.com": [10364], "valuecommerce.ne.jp": [17542], "zeroblock.com": [18840], "www.10minutemail.com": [13], "imgsrv.toppreise.ch": [19688], "manager.web4all.fr": [18052], "mycollege.sunybroome.edu": [2365], "m.blogs.yandex.by": [18648], "www.hidekisaito.com": [7393], "www.hailavenger.com": [7165], "homes.cs.washington.edu": [17291], "digi77.com": [4471], "gspp.berkeley.edu": [17240], "silverum.cz": [14804], "web.housing.illinois.edu": [17258], "transip.de": [19694], "eds.com": [7378], "www.enomcentral.com": [4934], "www.d0wn.biz": [3996], "privatelayer.com": [13098], "www.obsoleet.org": [11707], "www.uclahealth.org": [16935], "sofawolf.com": [15088], "partnerupload1.steampowered.com": [15450], "9gwc-kbhkort.kk.dk": [8730], "www.blacktonic.com": [2041], "www.garoa.net": [6460], "timeweb.com": [16456], "creative.aggregateknowledge.com": [726], "account.bistudio.com": [2179], "linotype.com": [9388], "easypress.ca": [5030], "www.portlandonline.com": [3195], "www.familie.bw.aok.de": [317], "www.mehring.com": [10235], "cleveland.police.uk": [3237], "hr.stanford.edu": [15383], "enigmabox.net": [5274], "www.rcfp.org": [13404], "wupath.wustl.edu": [17993], "fskills.idoxgroup.com": [19281], "www.rbcommons.com": [13401], "gigaserver.cz": [6654], "www.cacetech.com": [2706], "adfs.wales.gov.uk": [17957], "dealers.eurogap.cz": [5417], "vonage.com": [17838], "www.poormanmotorsports.com": [12900], "preferences.truste.com": [15856], "*.chistescortosbuenos.com": [3090], "www.researchnews.osu.edu": [11760], "revenuesbenefits.charnwood.gov.uk": [3015], "www.feedpress.me": [5735], "www.fose1.plymouth.ac.uk": [12833], "upickem.net": [17389], "cloud.tyk.io": [16904], "ghirardelligiftguides.com": [6627], "imagecache2.allposters.com": [835], "blog.sys4.de": [15746], "www.crackedconsole.com": [3751], "www.myaccount.charter.com": [3020], "*.thing.net": [16355], "www.multivu.com": [2937], "www.coinurl.com": [3399], "www.togahotels.com": [16529], "musicbox.netcologne.de": [11188], "union.uiuc.edu": [16956], "g2.twimg.com": [16877], "data.utsystem.edu": [17284], "www.tasteofthenorthend.org": [15972], "otummstore.se": [12136], "idefix.com": [7933], "www.pep.foundation": [12502], "www.khanacademy.org": [8873], "www.nips.cc": [10930], "blog.safeshepherd.com": [14236], "blog.talktalkbusiness.co.uk": [15930], "concur.com": [3550], "www.pantarhei.sk": [12370], "secure.opinionlab.com": [12054], "npin.cdc.gov": [19046], "www.catalogue.yandex.by": [18648], "*.clickequations.net": [3245], "p.o0bc.com": [11601], "comptroller.nyc.gov": [11292], "www.legitscript.com": [9232], "www.wiki.unbit.it": [17148], "k.copyleft.org": [3655], "rbu.sh": [13594], "*.pleaseignore.com": [12811], "analytics.tylercipriani.com": [16905], "water-challenge.com": [17998], "physics.illinois.edu": [17258], "www.rms.sexy": [13915], "f1.thejournal.ie": [16224], "www.foodsafety.gov": [5999], "www.veterans-aid.net": [17655], "watson.ch": [19748], "www.banyen.com": [1658], "*.idc.com": [7703], "mixx.com": [10470], "tickets.openmrs.org": [11953], "bizo.com": [2031], "*.gentoo-art.org": [19462], "www.masterspaswi.com": [10056], "tdconline.se": [15799], "www.prometheus-group.com": [13150], "www.carters.com": [2868], "www.desilva.biz": [4247], "www.netteca.com": [11252], "lesestoff.ch": [19358], "bayleaks.com": [1699], "www.kybernetes.htwk-leipzig.de": [7114], "i1.sndcdn.com": [15032], "kickassvps.com": [8877], "www.dbnnor.no": [4605], "attictv.com": [1339], "crm.warmlyyours.com": [17980], "community.oracle.com": [12082], "www.gradwell.com": [6883], "newyorktimes.com": [11313], "aimpulse.com": [743], "eduscho.at": [15985], "slides.com": [14964], "millionhearts.osu.edu": [11760], "memorydealers.com": [10252], "forms.cert.org": [2583], "www.compete.com": [3519], "*.leanpub.com": [9208], "usshortcodes.com": [3485], "www.browsershots.org": [2372], "photos.friendfinder.com": [6213], "fb.lagardere-pub.com": [9130], "www.1sand0s.nl": [62], "starmotorcycles.com": [15389], "sogou.com": [19606], "cdn.adsrvmedia.net": [634], "www.ascr.usda.gov": [17209], "terveysportti.org": [16133], "www.bww.com": [888], "help.sina.com.cn": [14842], "www.openhub.net": [12013], "pwk.cossacklabs.com": [3692], "community.invisionpower.com": [8325], "origin.img.domaintools.com": [4660], "www.studiumundbehinderung.kit.edu": [8797], "bosch-sensortec.com": [2226], "services.snoopy.swisscom.com": [15698], "www.cryengine.com": [3838], "crosswire.org": [3815], "slb.com": [14355], "www.ibanking.cimbthai.com": [2608], "nl.hertz.be": [7339], "www.youtube.cz": [18709], "dev.chromium.org": [3119], "storage.stgbssint.com": [15472], "www.youtube.ch": [18709], "bestpractical.com": [1807], "www.youtube.cl": [18709], "www.youtube.co": [18709], "hd.se": [7052], "www.youtube.ca": [18709], "simply-partner.com": [14831], "www.kabelkiosk.de": [8761], "secure.ourneighborhoodmilf.com": [12145], "www.taschenorakel.de": [15967], "bishopfox.com": [1915], "static.sf.net": [15174], "katalog.ub.uni-heidelberg.de": [17174], "code.hackerspace.pl": [7149], "*.iupui.edu": [7868], "www.indprop.gov.sk": [14972], "alljoyn.org": [832], "*.lightreading.com": [16021], "blog.yourkarma.com": [18728], "yamgo.com": [18644], "*.mediatakeout.com": [10164], "www.iwantmytvmagazine.com": [10973], "www.sucuri.net": [15575], "secure.wealden.gov.uk": [19750], "systemcenteradviser.net": [15760], "www.fsg.ulaval.ca": [17229], "prima.urospace.net": [17414], "suma-ev.de": [15589], "www.sunrisetech.gr": [15604], "l.facebook.com": [5620], "sharethefiles.com": [14679], "explore.thestorefront.com": [16313], "stcweb.stc.indiana.edu": [8065], "www.meetings.io": [10217], "www.honeynet.org": [19257], "2.*.wdfiles.com": [18294], "www.transparency.org": [16679], "order.trustico.com": [16794], "mysupport.netapp.com": [11183], "data.archive.moe": [1165], "lists.opnsense.org": [11656], "crystaldelights.com": [3893], "holidaybullshit.com": [7450], "lso.com": [9101], "www.tvheadend.org": [16860], "cadw.wales.gov.uk": [2715], "csbaacademy.com": [2664], "www.socialrank.com": [15058], "create-dmgmedia.co.uk": [3771], "vh1.vutbr.cz": [17522], "in-disguise.com": [8024], "tpb.piratenpartij.nl": [12708], "www.nvenergy.com": [10981], "www.google.org": [6836], "secure2.sophos.com": [15154], "suffolkcoastalandwaveneyl.firmstep.com": [19183], "accounts.ocf.berkeley.edu": [17240], "mirrorbingo.com": [10444, 10445], "support.elsevier.com": [5185], "gentoo-art.org": [19461, 19462], "www.consumersniper.com": [3601], "*.fins.com": [11321], "www.pinknews.co.uk": [12692], "ssl.intevation.org": [8297], "www.ispid.nl": [7833], "family.yandex.com.tr": [18649], "*.ouya.tv": [11684], "www.tisarana.ca": [16497], "api.domaintools.com": [4660], "cooldestinations.net": [3641], "lds.org": [16219], "wwwdc.cinelease.com": [7372], "www.rapidsite.jp": [13559], "*.wpc.edgecastcdn.net": [5079], "cdsweb.cern.ch": [2575], "blogs.coreboot.org": [3669], "*.divshot.com": [4584], "download-software.intel.com": [8209], "*.stratusexpress.com": [14606], "lids.mit.edu": [9749], "secure.comodo.net": [3504], "support.tenable.com": [16109], "*.servicetick.com": [14623], "netreg.berkeley.edu": [17240], "www.nycris.nhs.uk": [10913], "ticketing.heanet.ie": [7269], "alumni.rmit.edu.au": [13437], "query.nytimes.com": [11000], "glassdoor.co.*": [6701], "sfs.stanford.edu": [15383], "eregistrar.westsussex.gov.uk": [18211], "eduroam.vutbr.cz": [17522], "wis.ntu.edu.sg": [11034], "beacon.walmart.com": [17964], "*.zopim.com": [18908], "crukip.cancerresearchuk.org": [19035], "blog.usa.gov": [17029], "www.ias.edu": [7669], "janus.senate.gov.ph": [14575], "www.soylentnews.org": [15200], "fed.apps.ikea.com": [7959], "www.eecs.berkeley.edu": [17240], "www.openadultdirectory.com": [11917], "linuxwall.info": [9437], "clbr.tv": [3257], "www.specto.io": [15246], "adverts.adgenie.co.uk": [586], "office15client.microsoft.com": [10364], "kit.edu": [8798], "nnm-club.me": [10943], "extranet.wienit.at": [18284], "oar.uwm.edu": [17294], "tor.spline.inf.fu-berlin.de": [6188], "tunespeak.com": [16830], "www.thediplomat.com": [16187], "secure.adzerk.net": [675], "svc.engineering.osu.edu": [11760], "www.urbanartcloud.com": [17410], "bugs.96boards.org": [209], "community.openvpn.net": [11989], "offer.hertz.com": [7372], "sidebar.itunes.apple.com": [1120], "ip.sandia.gov": [14278], "*.peerius.com": [12523], "kbs.de": [8940], "festivusgames.com": [5760], "www.tacticaltech.org": [15901], "retronaut.com": [13829], "consult.northyorks.gov.uk": [19440], "www.scraperwiki.com": [14406], "*.mplxtms.com": [17541], "home.uni-erlangen.de": [17311], "*.npario-inc.net": [10952], "*.e.champssports.com": [2991], "carezone.cz": [2849], "illiniunion.illinois.edu": [17258], "s1.adform.net": [585], "android-build.linaro.org": [9361], "datamappi.fi": [4203], "typotheque.com": [16917], "voat.co": [17809], "fishbase.us": [5881], "lists.internet2.edu": [8279], "www.regularish.com": [13742], "www.ruggedsoftware.org": [14028], "posta-online.poste.it": [12965], "www.wine-apps.org": [19461], "pcsp-emu.com": [5224], "success.economist.com": [5060], "www.gametreedeveloper.com": [6428], "mobilebill.virginmedia.com": [17737], "www.getfirebug.com": [6573], "www.metacpan.org": [10297], "cdn.viglink.com": [17710], "jobsatosu.com": [8599], "ingress.com": [8141], "qfxsoftware.com": [13282], "*.retail-link.gr": [13821], "docs.nice.org.uk": [10921], "web.rondavu.com": [13964], "www.bnl.gov": [19009], "ticket4u.com.my": [19681], "*.museodelprado.es": [10711], "www.angola3.org": [1017], "e12.xhamsterpremiumpass.com": [18516], "pornhub.com": [12926], "img1.chbtc.com": [3036], "www.he.com": [7629], "imine.co": [8004], "appsites.com": [1135], "www.sverigesradio.se": [15673], "maryel.rt.ru": [13469], "studentaidcalculator.com": [15536], "*.em.gov.au": [1389], "*.logitech.com": [9561], "www.bitin.io": [1997], "www.coinomat.com": [3407], "bluestargolf.com": [8431], "www.cyphar.com": [3983], "datenschutz.de": [17746], "public-dc2.govdelivery.com": [6863], "edit.www.uaa.alaska.edu": [17233], "*.cxt.ms": [3951], "mijn.groenlinks.nl": [6962], "admit.washington.edu": [17291], "*.sitizens.com": [14886], "*.alivenotdead.com": [820], "www.easthants.gov.uk": [5013], "www.jabberd.org": [8479], "cc.earthlink.net": [5007], "askville.amazon.com": [913], "virusdesk.kaspersky.ru": [8807], "js.admeld.com": [6833], "*.siteblindado.com": [14876], "tailfeather.twimg.com": [16877], "*.producthunt.com": [13122], "explorecourses.stanford.edu": [15383], "mindtouch.com": [10409], "clouddisk.tdc.dk": [15796], "www.makibox.com": [9919], "www.helpscout.net": [7307], "mentors.debian.net": [4272], "quotesnsayings.com": [13378], "*.nic.swiss": [19126], "themonthly.com.au": [16298], "mediamarkt.se": [10175], "changetip.com": [2995], "freetvonline.com": [6153], "www.colm.net": [3434], "www.keyghost.com": [8866], "secure4.vend-o.com": [17605], "jr.jd.com": [8423], "sphincs.cr.yp.to": [3748], "inetinteractive.com": [7774], "rdns.im": [13596], "www.intel.com": [8209], "snapengage-4.wpengine.netdna-cdn.com": [15027], "aldimobile.com.au": [300], "www-cs-faculty.stanford.edu": [15383], "2200kultur.kk.dk": [8730], "shad.contest.yandex.com": [18651], "www.varian.com": [17564], "www.mobireach.com": [10491], "lanik.us": [9148], "shaklee.com": [14656], "datorhandbok.lysator.liu.se": [9084], "svn.macports.org": [9821], "agenda.kuleuven.be": [8816], "*.simplereach.com": [14822], "maastricht.nl": [11132], "images.bwbx.io": [2482], "www.bitrig.org": [2014], "www.trendmicro.eu": [16716], "www.adagio.com": [551], "secure.gmo.jp": [6345], "shkspr.mobi": [14116], "project-slhc.web.cern.ch": [2575], "www.uni-mainz.de": [17324], "echoditto.com": [5046], "poshliving.com": [12944], "adcdownload.apple.com": [1119], "download.bleachbit.org": [19007], "raglan23.co.nz": [19532], "toxme.se": [16618], "news.shazam.com": [14688], "www.stadt-zuerich.ch": [15366], "pressroom.ceneo.pl": [2935], "pad.artsci.wustl.edu": [17993], "dealers.cadlink.com": [19033], "stdhivtraining.org": [2743], "medcatalog.stanford.edu": [15382], "zoomerang.com": [18903], "glyphicons.com": [6755], "airasia.com": [746], "tune.pk": [16829], "delivery04.dhe.ibm.com": [7675], "www.icard.uillinois.edu": [16960], "n5.adshostnet.com": [630], "open.voa.gov.uk": [19739], "isadom.wustl.edu": [17993], "t.on.aol.com": [321], "mxguarddog.com": [9811], "www.brilig.com": [2332], "www.sociamonials.com": [15074], "www.just-eat.ca": [19328], "cms.sydney.edu.au": [19649], "*.defcongroups.org": [4026], "verify.adobe.com": [615], "private.gmocloud.com": [6343], "testequipmentdepot.com": [16146], "qiang.taobao.com": [15952], "uwinnipeg.ca": [17079], "aai.kuleuven.be": [8816], "autoconfig.yandex.com": [18651], "i.canddi.com": [19036], "trails.com": [4343], "duplication.cdbaby.com": [19045], "torrentbit.net": [16585], "soundkit.io": [15157], "www.patent.resource.org": [13207], "code.tinypass.com": [16489], "www.etravelway.com": [5392], "anthonycameron.com": [1064], "figshare.com": [5786], "bwurst.org": [1585], "beckerproxy.wustl.edu": [17993], "touch.facebook.com": [5620], "wiki.zentyal.org": [18834], "teamcenter.desy.de": [4399], "www.coloradocaptures.com": [3441], "*.pidgin.im": [12672], "cps-static.rovicorp.com": [13988], "api.srcclr.com": [15337], "*.kobobooks.de": [8949], "jmall.jd.com": [8423], "charlottenaturemuseum.org": [3014], "demo.alternc.org": [878], "esiss.ac.uk": [4961], "*.psmprogram.gov.au": [13211], "no.support.tomtom.com": [16540], "ixit.cz": [7883], "get.panopto.com": [12364], "wilmu.edu": [18320], "saxp.zedo.com": [18808], "computing.stanford.edu": [15383], "financeprod.alipay.com": [817], "payments.eastsussex.gov.uk": [19142], "*.csc.com": [2666], "*.my.com": [10743], "atariage.com": [1310], "wpecdn.paymoapp.com": [12482], "www.mcmelectronics.com": [9728], "saml.socialtext.net": [15072], "privatevpn.com": [13095], "wiki.linuxlovers.at": [9431, 9432], "filler.coinjar.com": [3397], "*.hi.nl": [7385], "status.bitbucket.org": [1926], "open.barnet.gov.uk": [18982], "status.recurly.com": [13652], "static.stratosphere.msn.com": [9796], "images.groups.adobe.com": [615], "soros.org": [11910], "gvntube.com": [6399], "www.isnic.is": [7826], "elle.com": [5170], "ca.dinahosting.com": [4519], "planet.enlightenment.org": [5280], "www.cs.umd.edu": [17263], "*.0nl1ne.at": [3], "kanyebay.com": [16227], "*.careerperfect.com": [2843], "payments.billdesk.com": [1876], "magic.fr": [9854], "www.rosehosting.com": [13968], "kolep.bva.bund.de": [5716], "3dcenter.org": [122], "01.org": [1], "secure.hostasaurus.com": [7520], "graphics.streamray.com": [15454], "cloudpiercer.org": [3292], "support.secondlife.com": [14462], "ttfinfo.desy.de": [4399], "www.runbook.io": [14036], "www.appcelerator.com": [1113], "edrcdn.com": [4897], "pragmaticstudio.com": [13014], "www.domainnamesales.com": [4655], "www.motherless.com": [10609], "www.vispahost.com": [17780], "*.eniro.com": [5276], "support-it.upc-cablecom.ch": [19716], "dataconservancy.org": [4192], "www.ansibleworks.com": [1058], "trmm.net": [16755], "tracking.netcologne.de": [11188], "kickasstorrents.eu": [8879], "www.cex.io": [2587], "ycpi.ad.yieldmanager.com": [13881], "www.filescrunch.com": [5803], "eduroam.no": [5099], "www.jjc.edu": [8440], "*.pheedo.com": [12618], "www.stanfordhealthcare.org": [15385], "www.hhcdn.ru": [7063], "forum.winehq.org": [18352], "support.cryptothrift.com": [3865], "www.webmaster.yandex.com.tr": [18649], "www.cambs.police.uk": [2770], "cdn2.recombu.com": [13648], "wiredminds.de": [18364], "trust-center.verisign.se": [17623], "www.mtmweb.com": [10188], "ssl-certificate-center.verisign.fr": [17623], "www.plainenglish.co.uk": [19498], "bst4.gismeteo.ru": [6669], "www.assoc-amazon.fr": [1290], "wiki.inf.ed.ac.uk": [5067], "www.filepicker.com": [5801], "skynet.ie": [16210], "novweb.novara.ie": [4512], "marieclaire.co.uk": [9993], "www.jedec.com": [8430], "blog.1und1.de": [68], "www.yunbi.com": [18750], "maplicada.unizar.es": [17356], "www.diffchecker.com": [4461], "useotrproject.org": [17041], "cerbuna.unizar.es": [17356], "kernl.us": [8859], "nm.debian.org": [4275], "hwrcforms.cardiff.gov.uk": [19039], "d.thelocal.com": [9537], "www2.informatik.uni-hamburg.de": [16951], "www.segment.com": [14558], "www.myscore180.com": [10782], "isomorphic.com": [8374], "cds.linear.com": [9368], "libav.org": [9291], "sciencedaily.com": [14377], "www.tmobile.nl": [15835], "us.carousell.com": [2860], "comcluster.cxense.com": [2694], "manage.vice.com": [17667], "www.useotrproject.org": [17041], "www.powertraveller.com": [13005], "www.app-coding.de": [1101], "www.providertalk.com": [13018], "getcashboard.com": [15559], "hc2.humanclick.com": [9494], "opendz.org": [11933], "www.realtime.email": [13625], "navteq.com": [10873], "gewinnspiel.hofer.at": [299], "*.nhsdirect.nhs.uk": [10911], "app.hubspot.com": [7594], "azcentral.com": [1480], "www.bradford.gov.uk": [2264], "hosting.dxw.com": [4817], "rainforestqa.com": [13532], "*.amazonwebservices.com": [915], "classzone.com": [3217], "login.secureserver.net": [14511], "www.freebin.org": [6124], "planet.linaro.org": [9361], "*.razorservers.com": [13590], "www.cno.org": [3425], "a4apphack.com": [225], "www.miniand.com": [10421], "wiki.openmpt.org": [11951], "sis.amazon.com": [915], "zynga.com": [18933], "praegnanz.de": [13010], "static.contentful.com": [3614], "frootvpn.com": [6228], "iterm2.org": [7864], "www.hm.com": [7083], "gandi.net": [6451], "help.rallydev.com": [13537], "*.cv.uma.es": [17140], "www.youmail.com": [18706], "www.yubico.com": [18745], "media.rightmove.co.uk": [13886], "www.bsi.de": [5711], "wiki.brown.edu": [2367], "incoin.io": [8046], "www.puu.sh": [13258], "www.cybersicherheits-allianz.de": [852], "plugins.jquery.com": [8451], "*.spec.whatwg.org": [17904], "niden.net": [11390], "fastcodesign.com": [5680], "*.mototradeup.com": [10616], "serienjunkies.de": [14596], "www.nodejs.org": [11454], "www.arch-stuff.org": [19461], "*.zenimax.com": [18829], "clients.openitc.co.uk": [11946], "wpacracker.com": [3284], "classes.cornell.edu": [3676], "*.bandcamp.com": [1638], "api.rasp.yandex.com.tr": [18649], "flossmanuals.net": [5577], "www.proxyshard.uk": [19524], "aes.uic.edu": [17231], "blog.deepin.org": [4302], "www.clipperz.is": [3271], "image.webservices.ft.com": [5826], "svc.osu.edu": [11760], "benzinga.com": [1782], "www.ipo.gov.uk": [16974], "news.eoportal.org": [5314], "davidadrian.org": [4225], "www.harvardpilgrim.org": [7220], "pss.gov.au": [13213], "edmsdirect.desy.de": [4399], "legal.here.com": [7326], "dkit.ie": [4040], "www.advconversion.com": [652], "quantopian.com": [13340], "onlineshoes.com": [11874], "stellar.mit.edu": [9749], "www.cse.iitb.ac.in": [7744], "ftp.flux.utah.edu": [17288], "billiondigital.com": [1882], "www.orkut.co.in": [12110], "*.staticstuff.net": [6610], "secure.domaintools.com": [4660], "api.foursquare.com": [6082], "documentation.centreon.com": [2957], "www.treehousei.com": [16706], "ga-innocenceproject.org": [6547], "safeshepherd.com": [14236], "www.siteadvisor.com": [14863], "xively.com": [18577], "www.youtube.at": [18709], "projet-plume.org": [13145], "intellichat.com": [8689], "aeup.eu": [279], "buspass.wokingham.gov.uk": [19762], "purchase.1688.com": [36], "moneycentral.msn.com": [9796], "discourse.org": [4545], "logmeinrescue.com": [9551], "securityblog.stanford.edu": [15383], "hg.mozdev.org": [10647], "autodiscover.yandex.com.tr": [18649], "*.rezdy.com": [19551], "data.rackspace.com": [13506], "mail.rsc.org.uk": [13457], "www.virginmedia.com": [17737], "o2-tv.cz": [16076], "cdn3.colocationamerica.com": [3435], "www.kasimp3.co.za": [8804], "cds.cern.ch": [2575], "ui.zanox.com": [18787], "m.rasp.yandex.com": [18651], "permits.camden.gov.uk": [2772], "pleasure.borsen.dk": [2224], "youbetrayedus.org": [18712], "rpgmakerweb.com": [14003], "esj.com": [4962], "www.nuevasync.com": [11570], "config.schokokeks.org": [19570], "frontiersin.org": [6225], "www.forums.zoho.com": [18884], "www.ferroh.com": [5758], "job.alibaba.com": [809], "nationalserviceresources.org": [11090], "www.transmarine.org": [16661], "searchpub.nssc.nasa.gov": [10869], "my.t-mobile.com": [15772], "l0cal.com": [9058], "b.gzhls.at": [13026], "cz.redhat.com": [13675], "steamrep.com": [15455], "yaler.net": [18643], "greenvilleonline.com": [6939], "projects.triodos.com": [16739], "imss.caltech.edu": [2756], "publishing.aip.org": [291], "cdn0.theawl.com": [16179], "hevcp.engineering.osu.edu": [11760], "www.standagainstspying.org": [15376], "solutionconnection.netapp.com": [11183], "allianzfuercybersicherheit.de": [852], "*.ez-download.com": [4999], "blog.alwaysdata.com": [897], "*.webkite.com": [18069], "jal.co.jp": [8514], "lfchosting.com": [9073], "plumbr.eu": [12827], "www.ut.ee": [17069], "idcdn.de": [8346], "www.dhavalkapil.com": [4439], "*.hexonet.net": [7381], "compuware.com": [3542], "davidsontutoring.com": [4229, 4230], "storycubes.com": [15501], "sdm-admissions.mit.edu": [9749], "radio.cyberguerrilla.org": [3961], "b.telus.com": [16103], "devportal.jamendo.com": [8502], "www.boneblast.com": [2196, 2197], "www.alterapraxis.com": [877], "passes.northyorks.gov.uk": [19440], "politie.nl": [11132], "www.cit.cornell.edu": [3676], "archive.informationactivism.org": [8125], "onfleet.com": [11858], "classes.soe.ucsc.edu": [17305], "gigster.com": [6658], "mdsupport.emoryhealthcare.org": [5211], "tfsimg.alipay.com": [817], "mercyships.org": [10282], "bigbrotherawards.de": [1852], "metric.yandex.kz": [18652], "im.ft-static.com": [19201], "gsb.stanford.edu": [15383], "lotto.de": [9614], "acsportal.oracle.com": [12082], "static.appcelerator.com": [1113], "mwrinfosecurity.com": [9809], "comunidade.edp.pt": [4896], "www.webnms.com": [18077], "wello.com": [18195], "www.it2.nl": [7842], "www.redmatrix.me": [13678], "americorpsconnect.org": [11090], "cts-strasbourg.eu": [3905], "shop.usa.canon.com": [2809], "developers.hubspot.com": [7594], "halogenonline.dft.gov.uk": [19116], "www.e.switchadhub.com": [15701], "www.carbonwind.net": [2832], "*.gmedianetworks.com": [6756], "www.hmrc.gov.uk": [7084], "www.gogoinflight.com": [6807], "static.slidesharecdn.com": [14963], "www.vinothek.hofer.at": [299], "www.silverrushstyle.com": [14800], "b3n.org": [1487], "community-uat.freescale.com": [6183], "www.businessadvice.anz.com": [315], "www.tripwire.com": [16749, 16750], "digiumenterprise.com": [4511], "https.cio.gov": [2612], "*.procensus.com": [19520], "help.hipchat.com": [7414], "waitrosedirect.com": [17951], "www.gchq.gov.uk": [6871], "webita.ethz.ch": [4975], "tobaccofree.osu.edu": [11675], "www.iod.ucsd.edu": [16938], "zayo.com": [18802], "overclockers.com": [12165], "gtms04.alicdn.com": [805], "staging.business.leeds.ac.uk": [17318], "passets-ec.pinterest.com": [12699], "*.pogo.com": [12850], "horizon.tv": [19716], "fbopen.gsa.gov": [6386], "business.sky.com": [14924], "*.cntraveler.com": [3556], "www.deprexis.com": [4376], "www.lean-hochschulgruppe.htwk-leipzig.de": [7114], "cdn10.sure-assist.com": [15644], "www.democracynow.org": [4355], "plus.net": [12829], "config.schmidtcom.de": [14356], "www.skreened.com": [14918], "cipeg.leeds.ac.uk": [17318], "www.nixos.org": [11430], "s3.sandbaguk.com.s3.amazonaws.com": [14276], "www.simplybusiness.co.uk": [14833], "newsroom.fb.com": [5698], "search.itunes.apple.com": [1120], "edocs.southglos.gov.uk": [15189], "notepad-plus-plus.org": [11525], "vle.lsbu.ac.uk": [9098], "*.www.patriotssuperbowl.us": [12458], "ssl.soufun.com.tw": [15156], "cam.wienerstadtwerke.at": [18284], "*.jet2.com": [8557], "www.tescophoto.com": [16140], "www.allposters.com": [835], "dlcl.stanford.edu": [15383], "*.bundeskanzlerin.de": [2428], "www.rasende.dk": [13568], "www.dyson.ie": [4837], "maps.org": [9710], "igodigital.com": [7734], "veterans-aid.net": [17655], "secure.helpscout.net": [7307], "geog.illinois.edu": [17258], "static.adzerk.com": [676], "*.uoregon.edu": [16999], "www.lusternia.com": [19374], "skm.dk": [14899], "docs.docker.io": [4617], "www.posta-online.it": [12957], "epicgames.com": [5320], "info.pindropsecurity.com": [19495], "ness.uic.edu": [17231], "libreoffice.org": [9311], "payhip.com": [12475], "prettylightsmusic.com": [13041], "alldaycalm.com": [845], "www.gizmodo.com": [6695], "iwantclips.com": [7874], "admin.mantisadnetwork.com": [9962], "www.rangenetworks.com": [13548], "coevorden.nl": [11132], "ea.objective.co.uk": [19454], "www.city.com.ua": [3186], "*.em1.cloud.oracle.com": [12082], "shop.netcologne.de": [11188], "lullabot.com": [9658], "*.nnm-club.me": [10943], "warrington.gov.uk": [17984], "www.visitthecapitol.gov": [17777], "feeds.centrify.com": [19048], "ijmfreedommaker.org": [7745], "*.britannica.com": [2336], "www.bytenoc.nl": [2491], "hipaa.stanford.edu": [15383], "tapirex.com": [12351], "phoronix.com": [12637], "www.parallella.org": [12391], "www.isc-events.com": [8261], "uqwimax.jp": [17013], "upc.edu": [12895], "ssl17.ovh.net": [12173], "solidlogic.com": [15120], "cdn.shazam.com": [14689], "iptorrents.com": [7798], "*.liberty.me": [9299], "si.cdn.dell.com": [4335], "www.britac.ac.uk": [2335], "www.myvoice.earthlink.net": [5007], "postpointsrewards.com": [12951], "www.linux42.org": [19461], "ct-cds.con-tech.de": [3547], "torrentsmirror.com": [16588], "reflets.info": [19544], "cdn.lynda.com": [9682], "www.assembly.wales": [1280], "s.my.tmocache.com": [15836], "unitymedia.de": [17221], "audio-video.gnu.org": [6357], "m.gamefly.com": [6419], "files.messe.de": [4409], "hi-eg.com": [7384], "sbir.cancer.gov": [2805], "www.bolagsverket.se": [2186], "webmail.redhat.com": [13675], "cardcash.com": [2833], "profil.wp.pl": [17921], "www.bioconductor.org": [1905], "www.triodos.nl": [16740], "www.online.hmrc.gov.uk": [7084], "magnatune.com": [9859], "photographer.io": [12645], "spin.sjd.net": [8631], "www.bfriars.ox.ac.uk": [17271], "fonts.com": [5993], "www.secure.pangaea.de": [12207], "blog.peer5.com": [12514], "xdomain.ne.jp": [18553], "news.berkeley.edu": [17240], "www.localmotors.com": [19369], "form-cdn.pardot.com": [12399], "crrev.com": [3828], "paulschreiber.com": [12462], "mpp.mxptint.net": [10741], "overseas.alipay.com": [817], "freesound.org": [6184], "www.kinox.tv": [19337], "alzforum.org": [899], "zeusdp.desy.de": [4399], "www.iptc.org": [7850], "*.goldkeys.net": [6815], "psykologteam.dk": [13541], "subscriberconcierge.com": [10011], "city-link.co.uk": [3182], "members.met-art.com": [10294], "allmyvideos.net": [857], "voffka.com": [17817], "pha.ulaval.ca": [17229], "wwwl.accuweather.com": [465], "gitter.im": [6684], "maawg.org": [9703], "www.salon.com": [14253], "store.cadlink.com": [19033], "www.informationactivism.org": [8125], "www.uformia.com": [17114], "3dqlab.stanford.edu": [15383], "*.limango.de": [9354], "yadi.sk": [18627], "www.dataconservancy.org": [4192], "mvd.360buy.com": [111], "www.newrepublic.com": [11309], "shop.look.co.uk": [9593], "www.skepticink.com": [14903], "www.gotinder.com": [16469], "ecodissident.net": [5053], "go.datapipe.com": [4212], "beenverified.com": [1749], "static.xhamsterpremiumpass.com": [18516], "uez.unizar.es": [17356], "imgcache.qq.com": [13285], "eaak.tk": [3533], "www.it.ox.ac.uk": [17271], "www.bitstampede.com": [1953], "ting.com": [16473], "www.fifengine.net": [5573], "x-blog.jp": [18496], "*.rtems.org": [13472], "ans.avast.com": [1444], "www.mhcache.com": [10331], "publicaccessapplications.newcastle.gov.uk": [11315], "stg-campaigns.paypal.com": [12467], "*.cic.fr": [1653], "images.videolan.org": [17688], "programs.wcfia.harvard.edu": [7219], "www.48months.ie": [148], "purehacking.com": [13238], "www.coy.im": [3741], "transloadit.com": [4277], "scm.thm.de": [15811], "consultation.staffordshire.gov.uk": [15370], "blackboardhelp.usc.edu": [17278], "hyperoptic.com": [7647], "www.masspirg.org": [9714], "portal.zarafa.com": [18795], "hitbtc.com": [7420], "gdargaud.net": [7013], "openmarket.org": [11957], "adobeformscentral.com": [618], "docs.cs.cf.ac.uk": [2834], "jira.freeswitch.org": [6130], "cimbpreferred.com": [2606], "xetum.com": [18568], "clicktotweet.com": [3256], "healthcare.gov": [7261], "www.healthiernorthwestlondon.nhs.uk": [10913], "www.productie.gx.uvt.nl": [16445], "*.quattroplay.com": [13343], "wings.buffalo.edu": [17297], "cgs.osu.edu": [11760], "*.ria.ua": [13426], "www.netbetsport.fr": [11186], "dl.ed.gov": [4889], "virusdesk.kaspersky.com": [8806], "developers.braintreepayments.com": [2274], "airport-store.engineering.osu.edu": [11760], "opus-codec.org": [12078], "forums.winehq.org": [18352], "secure.freenet.de": [6180], "avt.foto.mail.ru": [9874], "acf.hhs.gov": [7062], "nam.nes.scot.nhs.uk": [10913], "dev.horde.org": [7495], "luv.asn.au": [9110], "www.weizmann.ac.il": [18189], "www.vanillicon.com": [17560], "merchant.livingsocial.com": [9517], "blogs.norman.com": [11486], "advancedsupport.oracle.com": [12082], "sbnation.com": [14079], "fx.yandex.kz": [18652], "a1.hertzrent2buy.com.br": [7340], "streamtip.com": [15519], "go.websitealive.com": [18149], "www.corkuniversitypress.com": [3674], "teamweek.com": [16005], "www.zeedpic69.com": [18810], "www.wornthrough.com": [18465], "media.playstation.com": [12795], "www.primalblueprint.com": [13058], "www.ifosslr.org": [8260], "sitedirector.symantec.com": [15715], "www.privacyfoundation.de": [6557], "blog.side.cr": [18428], "www.dl.ed.gov": [4889], "static.netverify.com": [11256], "thias.marmotte.net": [10027], "commencement.usc.edu": [17278], "www2.edi7.lu": [4895], "thelayoff.com": [19677], "consult.rbwm.gov.uk": [19539], "tidesandcurrents.noaa.gov": [11083], "orange.jobs": [12085, 12086], "tagbuilder.webtrends.com": [18171], "www.commando.io": [3475], "software-portal.faz.net": [5554], "ads.webtrends.com": [18171], "www.eidq.org": [4918], "*.uwaterloo.ca": [17292], "footaction.com": [6012], "www.tada.com": [15902], "www.bit9.com": [1922], "incloak.com": [8029], "yadg.cc": [19789], "www.onlineregistrationcenter.com": [11877], "www.nanoengineering.ucsd.edu": [16939], "westlandutrechtbank.nl": [18217], "www.plot.ly": [12820], "engaged.educ.cam.ac.uk": [17243], "updown-pilot.arin.net": [338], "img.nxjimg.com": [11591], "mbsportsweb.com": [9721], "www.fastly.com": [5687], "clearlinux.org": [3233], "uofi.uic.edu": [17231], "fi.norton.com": [11505], "www.orderhlp.com": [14724], "login.monash.edu": [10541], "viewmychart.com": [10752], "www.uofmhealth.org": [17378], "api.btckan.com": [1561], "getfedora.org": [6589], "market.yandex.com.tr": [18649], "7chan.org": [192], "betterfap.com": [1827], "staempfliverlag.com": [19623], "www.hostcreo.com": [7501], "srv.clickfuse.com": [3247], "www.spectraflow.com": [15247], "www.windstreambusiness.com": [18348], "forum.tfes.org": [16164], "edihealth.net": [4894], "www.lloydsbank.com": [9524], "www.placesonline.com": [12755], "loopfuse.net": [9604], "psathome.ikea.com": [7959], "www.ups.com": [17007], "esamplesweb.pfizer.com": [12610], "m.lotto.de": [9614], "help.yandex.ua": [18656], "amos.alicdn.com": [805], "www.rollapp.com": [13957], "rt.trafficfacts.com": [16654], "greatfire.org": [6907], "www.verisign.com.au": [17623], "dollarshaveclub.com": [4642], "support.krystal.co.uk": [9024], "forum.dug.net.pl": [4087], "www.skm.vutbr.cz": [17522], "vorpal.io": [17844], "accountsolution.gcion.com": [6308], "shoppingcartelite.com": [14729], "einstellungen.e-plus.com": [4843], "geronimo.apache.org": [1086], "www01.fonts.com": [5993], "www.mapquesthelp.com": [9970], "*.uhrzeit.org": [17120], "emsonline.milton-keynes.gov.uk": [10401], "www.westdevon.gov.uk": [18209], "*.creative.adobe.com": [615], "*.comenity.net": [3463], "employee.hospital.uic.edu": [17231], "innovation.govspace.gov.au": [6867], "www.silverflint.com": [14801], "wiki.srb2.org": [14165], "www.youtube.com.om": [18709], "vremya.yandex.by": [18648], "nikcub.com": [11399], "greatteachersgreatschools.org": [15375], "capitadiscovery.co.uk": [19038], "www.wwte12.com": [17937], "hivoice.hivos.org": [7431], "*.geotrust.net": [6539], "whitehatters.academy": [19757], "forums.openitc.co.uk": [11946], "*.fossbazaar.org": [5588], "skillstoolkit.ox.ac.uk": [17271], "immo.local.ch": [9536], "*.ipage.com": [7802], "*.govexec.com": [1316], "odge.mit.edu": [9749], "dbackpolice.com": [4237], "media.spontex.org": [15287], "m.godaddy.com": [6773], "instasync.com": [19297], "allthingsd.com": [840], "www.boounce.com": [2219], "www.civicaepay.co.uk": [3202], "www.talktalk-labs.com": [15927], "www.loggn.de": [9555], "downloads.somethingawful.com": [15130], "lessbuttons.com": [19359], "zend2.com": [18822], "2gis.ru": [85], "gustavus.edu": [7026], "docs.c9.io": [3280], "littler.com": [9473], "le.ac.uk": [17319], "www.postel.it": [12967], "silicon.com": [14789], "www.canon.ie": [2809], "hwb.wales.gov.uk": [17957], "beacon.beta.walmart.com": [17964], "www-static.exoclick.com": [5499], "www.canon.it": [2809], "ad.retargeter.com": [13601], "telework.gov.au": [16096], "facultyaffairs.stanford.edu": [15383], "api.rollbar.com": [13958], "cayuse.rf.ohio-state.edu": [11761], "www.ico.jobs": [4530], "piraten-schwaben.de": [12716], "shop.toonpool.com": [16556], "aswebstat.stanford.edu": [15383], "crunchboard.com": [3834, 12585], "*.chartbeat.net": [3017], "www.prioritysubmit.com": [13073], "www.madstein.at": [9842], "cdn.thegrindstone.com": [859], "namebright.com": [11016], "freeway.ju.taobao.com": [15952], "rackspace.dk": [13503], "grinnell.edu": [6957], "www.gigya.com": [6659], "owncloud.zaehlwerk.net": [18778], "drafthouse.com": [774], "www.maxkitap.com": [10094], "us.gamigo.com": [6445], "blog.nearlyfreespeech.net": [11122], "*.icu-project.org": [8257], "suburban.nl": [15570], "submit.escholarship.org": [4971], "*.radikal.com.tr": [13513], "direct.yandex.com.tr": [18649], "moderngov.rotherham.gov.uk": [13979], "www.indiegala.com": [8071], "nccgroup.trust": [10880], "eurobsdcon.org": [5404], "pdfserv.maximintegrated.com": [10096], "creativeskills.be": [3786, 3787], "*.geeksphone.com": [6506], "www.thompsonhotels.com": [16379], "www.campina.de": [2782], "bugmenot.com": [2405], "docs.moodle.org": [10575], "support.coinjar.com": [3397], "help.gumroad.com": [7020], "officersforbundet.se": [11752], "ica.se": [7680], "*.adallom.com": [552], "sohh.com": [14149], "sberbank.ru": [14322], "www.adaptec.com": [556], "packages.siedler25.org": [13832], "pgcon.org": [12244], "www.ita.hsr.ch": [17236], "platform.corvisacloud.com": [3688], "fora.tv": [5585], "ucf.edu": [17244], "wasm.usyd.edu.au": [19723], "www.haveproof.com": [7242], "anderson.stanford.edu": [15383], "central-america.hivos.org": [7431], "mailing.sbb.ch": [15693], "parkingeye.co.uk": [12406], "carparks.great-yarmouth.gov.uk": [19227], "carsabi.com": [2865], "apigility.org": [1094], "www.hertz.com.tw": [7368], "www.sprintrebates.com": [15316], "www.bizchannel.cimbbank.com.kh": [2604], "www.hrc.org": [7604], "omha.net": [11889], "www.chase.leeds.ac.uk": [17318], "service.tanke-wienenergie.at": [18284], "scripps.edu": [14418], "greenwood.org": [6940], "gigaone.pl": [6653], "*.coag.gov.au": [3703], "git.linux-mips.org": [9413], "weforum.org": [17902], "rt.debconf.org": [4268], "ntop.org": [11556], "atipso.com": [1314], "www.avoinministerio.fi": [18974], "www.bucketlistly.com": [2385], "kryptnostic.com": [9018], "egnyte.com": [5115], "cyberduck.io": [3969], "allmybase.com": [846], "img.sleviste.cz": [14953], "www.irwinlaw.com": [8360], "glose.com": [6748], "wiki.winehq.org": [18352], "fiddler2.com": [19177], "*.ut.edu": [17340], "tito.io": [16408], "rackspace.co.uk": [13499], "www.yadi.sk": [18627], "vacancies.ncl.ac.uk": [10884], "secure.mypass.de": [10773], "*.smart-dsl.net": [19601], "ir.amtel.com": [984], "citymapper.com": [3193], "*.uni-stuttgart.de": [17282], "spillehallen.tv2.dk": [15881], "webmail.myphone.coop": [10822], "rally.org": [13535], "www.postdirekt.de": [19112], "medical-treatments-management.com": [10188], "*.flightglobal.com": [5921], "www.amnistia.org.pe": [978], "wiki.sourcefabric.org": [15180], "www.mailinabox.email": [9880], "hostmonster-cdn.com": [7537], "www.photomath.net": [12640], "www.noiselessvault.org": [11459], "rtc.debian.org": [4275], "www.enocloud.com": [19138], "fed.princeton.edu": [13064], "porter.io": [12935], "sites-jumpstart.stanford.edu": [15383], "www.iqualita.link": [8352], "strtc.oracle.com": [12082], "boardgamegeek.com": [2166], "www.movie2k.pe": [10635], "www.urac.org": [17014], "arma2.com": [18961], "fye.osu.edu": [11760], "todd.upickem.net": [17389], "blog.openlibrary.org": [12018], "tracking.correctiv.org": [3685], "partners-api.pinterest.com": [12699], "rss.itunes.apple.com": [1120], "*.loopfuse.com": [9604], "ads.bluelithium.com": [13881], "dmx-austria.at": [4049], "www.merethis.com": [10283], "www.neo-direct.com": [10898], "*.hostoople.com": [7540], "us1.rallydev.com": [13537], "openttd.org": [11982], "teracomconsulting.com": [16120], "www.mendeley.com": [10257], "sesplan.gov.uk": [19584], "www.cs.illinois.edu": [17258], "www.42.ie": [142], "couragefound.org": [3714], "summerschool.wustl.edu": [17993], "mycloud.rackspace.co.uk": [13499], "visit.openreach.co.uk": [12042], "cdn7.sure-assist.com": [15644], "translate.whatsapp.com": [18234], "csc.gov.au": [3494], "simcenter.engineering.osu.edu": [11760], "login.microsoftonline.com": [10367], "www.nnetworks.co.jp": [11434], "wazapp.im": [18013], "www.chooseblocks.com": [3100], "ukr.net": [17125], "sysinfo-15.cnaf.infn.it": [7766], "tune.yandex.ua": [18656], "odevzdej.cz": [11725], "folksam.se": [5987], "*.b9.stumbleupon.com": [15544], "www.tenable.com": [16109], "cei.org": [3520], "*.nokia.com": [11461], "hatatorium.com": [7237], "www.healthreach.nlm.nih.gov": [11052], "webftp.aerohosting.cz": [689], "www.euroland.com": [5418], "locationmetadataeditor.data.gov.uk": [19100], "www.so.cl": [15046], "code42.com": [3346], "www.tv.yandex.com.tr": [18649], "ideas.joomla.org": [8627, 17440], "sidereel.com": [14762], "www.astro.rug.nl": [17254], "secure-ec.libsyn.com": [9321], "www.modsecurity.org": [10514], "mail.uas.biz": [17214], "technocrat.net": [16040], "dev.syncplicity.com": [15730], "givingcomfort.com": [6690], "contact.yandex.com.tr": [18649], "www.supplyframe.com": [15638], "cyber-defense.sans.org": [14072], "wire.com": [18360], "www.asta.thm.de": [15811], "secure.robotshop.com": [13928], "kaust-cu.cornell.edu": [3676], "*.swtor.com": [15708], "www.badosoft.com": [1610], "www.astrobotic.com": [1303], "*.abba.accenture.com": [442], "steamunlock.com": [15456], "wifi.alipay.com": [817], "60plus.vcd.org": [17474], "morrisons.com": [10601], "www.webtype.com": [18095], "downloadbox.me": [4727], "mywebsitepersonal.1and1.co.uk": [53], "api.zhihu.com": [18856], "svn.planet-lab.org": [12763], "www.english-heritageshop.org.uk": [5269], "gic5.mycdn.me": [10824], "*.tekgoblinmedia.com": [16064], "submit.symantec.com": [15715], "www.xcat.nl": [18503], "fate.libav.org": [9291], "paymentech.com": [12477], "signup.pagerduty.com": [12332], "www.mobioinsider.com": [10504], "donate.citizenweb.io": [3173], "dudleyfoi.org.uk": [19128], "gust.com": [7025], "doomworld.com": [4683], "gotowebinar.com": [6789], "www.groups.io": [6980], "paper.li": [12379], "www.gistmarks.com": [6671], "www.rsync.net": [14009], "craigslist.org": [3756], "info.recurly.com": [13652], "wetter.at": [11728], "maxim-ic.com": [10095], "www.installments.com": [19295], "www.tubeoffline.com": [16815], "blog.formstack.com": [6046], "smoothieblend.com": [15011], "parisschoolofeconomics.eu": [12402], "sharkfest.wireshark.org": [18369], "www.theiabm.org": [7665], "www.owasp.org": [11691], "i.guim.co.uk": [7014], "www.fernwaerme-partner.at": [18284], "concert.arte.tv": [18966], "new.adestra.com": [584], "ruelala.com": [14025], "secure.aadcdn.microsoftonline-p.com": [10365], "st.org": [14187], "www.cirw.in": [3160], "app.compose.io": [3526], "socialrank.co": [15058], "www.fluttertoday.com": [5955], "torrents.to": [16587], "pnasfirstlook.org": [12273], "www.campinaboerderijdag.nl": [2782], "en.metooo.io": [10317], "www.antipolygraph.org": [1067], "v6ak.com": [17465], "ip-check.info": [7801], "mitls.org": [10334], "www.marc-stevens.nl": [9980], "path-follower.com": [12450], "i3.microsoft.com": [10364], "ranzcp.org": [13399], "downloads.kachingle.com": [8764], "gmodules.com": [6839], "www.yeswescan.org": [13207], "www.just-eat.es": [19328], "*.adspirit.de": [543], "www.rem.co": [13756], "as.stanford.edu": [15383], "try.github.com": [6680], "inachinashop.com": [11625], "manage.windowsazure.com": [18344], "plato.stanford.edu": [15383], "cri.ucsd.edu": [16939], "www.zoho.co.jp": [18883], "*.netswipe.com": [8672], "whonix.thecthulhu.com": [16334], "www.marijuanamajority.com": [9994], "www.gluster.org": [6752], "grandmargherita.com": [6890], "www.awesomejar.com": [1462], "www.taoeffect.com": [15950], "feedback.yandex.kz": [18652], "blog.getfirebug.com": [6573], "test-login.geant.org": [6314], "meeting.ntu.edu.tw": [10971], "montanalinux.org": [19408], "umassmag.com": [17264], "etutor.bls.ch": [1526], "sparklit.com": [15223], "mods.mybb.com": [10823], "thecanadianpress.com": [2801], "zoum.ca": [18764], "twinsornot.net": [16881], "piwik1eaf.literotica.com": [9467], "open.weixin.qq.com": [13285], "isc-events.com": [8261], "corporate.stanford.edu": [15383], "assets-secure.guim.co.uk": [7014], "www.consumentenbond.nl": [3597], "www.prediction.io": [13023], "www.namespace.us": [11023], "ru.chaturbate.com": [3035], "jon.oberheide.org": [11697], "resources.civilservice.gov.uk": [19066], "p.typekit.net": [16912], "cdn.nursing.osu.edu": [11760], "danblah.com": [4133, 4134], "slate.fr": [14949], "botkyrka.tdconline.se": [15799], "atlas.arbornetworks.com": [1154], "solarsystem.nasa.gov": [10869], "cantheyseemydick.com": [2791], "webmail.sf-mail.de": [14107], "nehta.gov.au": [11067], "www.drupalwatchdog.com": [4782], "cdn.tinybuddha.com": [16485], "btjunkie.org": [19022], "xenon.stanford.edu": [15383], "www.googletagservices.com": [6843], "comic-rocket.com": [3467], "monitor.planet-lab.org": [12762], "pg.onlinesbi.com": [11873], "www.synaesthesie.net": [15723], "www.ftjcfx.com": [3481], "tag.contextweb.com": [3616], "www.upc-cablecom.biz": [19716], "www.uklinux.net": [16971], "de-eo.dict.cc": [4455], "febas.de": [5705], "*.ticketcorner.ch": [16418], "myaccount.stubhub.co.uk": [15534], "logoyes.com": [9562], "web-stat.com": [18047], "dk.support.tomtom.com": [16540], "dev.guardianproject.info": [7001], "superblock.net": [15625], "www.testssl.sh": [16147], "help.livingsocial.co.uk": [9516], "photo.tagasauris.com": [15906], "sublimetext.com": [15562], "www.documentfreedom.org": [4628], "www.archive.icommons.org": [7699], "www.isen.com": [8366], "astaro.com": [1298], "www.gdargaud.net": [7013], "www.swehack.org": [15686], "app.net": [1102], "h.bing.com": [1895], "binero.se": [1893], "www.cira.kyoto-u.ac.jp": [9055], "talk.roleplaychat.org": [13955], "www.saymedia.com": [14320], "developer.piwik.org": [12733], "everydayhero.com": [5454], "ucl.ac.uk": [17295], "www.bizshark.com": [2034], "thehabbos.org": [16337], "www.orderbook.net": [12096], "umassathletics.cstv.com": [17265], "logos.tlecdn.net": [16510], "ncisf.org": [10882], "www.iterm2.com": [19276], "*.vtluug.org": [17518], "www.inyt.com": [7772], "*.pool.datamind.ru": [4204], "tdcserviceonline.com": [15798], "rpclient.oebb.at": [19455], "guru.sitescout.com": [14871], "box.qweery.nl": [13384], "podio.com": [12846], "elligator.cr.yp.to": [3748], "autodiscover.osu.edu": [11760], "snrsweetdeals.newsreview.com": [11339], "api.nice.org.uk": [10921], "wiki.kubuntu.org": [9029], "flyertalk.com": [5963], "*.convar.de": [3625], "media.phonehouse.com": [12636], "www.iibuy.com.au": [7957], "www.richmondteaparty.com": [13875], "arquetype.org": [1211], "www.apm.com": [332], "*.kldp.org": [8735], "baldershage.se": [1627], "exed.hks.harvard.edu": [7219], "highqsolutions.com": [7400], "oberbayern.piratenpartei.de": [12721], "static1.symanteccloud.com": [15715], "pressfreedomfoundation.org": [6173], "www.catarse.me": [2899], "tempolibero1.ffs.ch": [15693], "www.thefire.org": [16277], "mirweb.mir.wustl.edu": [17993], "sync.adap.tv": [554], "sandofsky.com": [14280], "*.comm100.cn": [3470], "ritpress.rit.edu": [13434], "*.uptilo.com": [17401], "www.govdelivery.com": [6863], "i.materialise.com": [7653], "rarbg.com": [19534], "www.fobos.de": [5972], "myaccount.zen.co.uk": [18815], "rtklive.com": [13473], "cosmopolitan.com": [3690], "laverna.cc": [9175], "search.whitehouse.gov": [18251], "7.vgc.no": [17484], "www.segment.io": [14559], "q7.com": [13277], "scraporchard.com": [14405], "horde.active24.cz": [18938], "*.networkcomputing.com": [11269], "comcast.com": [3461], "internetevolution.com": [4404], "weissinc.com": [18188], "2015globalthinkers.foreignpolicy.com": [6024], "data.usaspending.gov": [17034], "valuecommerce.com": [17542], "www.begun.ru": [1755], "assets.onelogin.com": [11835], "eater.com": [5038], "www.shaklee.com": [14656], "assets.clickmotive.com": [3248], "justice.sk": [14972], "www.edwardsnowden.com": [5103], "adjuggler.com": [527], "darklaunch.tmi.twitch.tv": [16888], "www.d66.nl": [4000], "pypi.python.org": [13271], "mbws.axeso5.com": [1473], "gameological.com": [6434], "embed-assets.wakelet.com": [17953], "oversee.net": [12169], "directbox.*": [4529], "kccmediahub.net": [8714], "www.barkerjr.net": [1671], "tilburguniversity.edu": [16445], "middendrenthe.nl": [11132], "cyberaces.org": [3956], "cdn.nice.org.uk": [10921], "www.dnssec-validator.cz": [4065], "git.nic.cz": [11379], "www.nyt.com": [10997], "www.serverdensity.io": [14614], "www.twofactorauth.org": [16899], "ttc.talenttech.com": [15919], "ches15challenge.com": [2593], "accountsolution.zanesvilletimesrecorder.com": [18785], "adage.com": [3758], "img.frostmourne-wow.eu": [6230], "www.eng.buffalo.edu": [2399], "www.mooculus.osu.edu": [11760], "terrabank.ru": [16129], "www.tobaccofree.osu.edu": [11675], "*.clickfun.com": [3260], "www.oxfamirelandunwrapped.com": [12189], "postto.me": [12956], "cz.libreoffice.org": [9311], "whitehothair.co.uk": [18252], "shop.morningstaronline.co.uk": [10594], "togo.rbl.ms": [13592], "www4.citymapper.com": [3193], "cdon.dk": [2562], "indacoin.com": [8050], "www.cyanogenmod.org": [3953], "portal.prnewswire.com": [12286], "bewerbungsstatus.htw-berlin.de": [7112], "employers.simplyhired.com": [14830], "www.pfizerhelpfulanswers.com": [12611], "*.datamonitor.com": [4205], "www.*.uni-mainz.de": [17324], "www.hubzero.org": [7116], "www.assayassured.co.uk": [1275], "asana.com": [1242], "cookies.cmpnet.com": [2627], "theaa.com": [16216], "www.avtrade.co.uk": [1457], "provize.cesky-hosting.cz": [19051], "*.blog.hipmunk.com": [7415], "benefit.nl": [1776], "baifubao.com": [1621], "www03.fonts.com": [5993], "feedback.assembla.com": [1277], "www.cabal.ws": [2699], "warwickshire.police.uk": [17986], "pt-br.libreoffice.org": [9311], "akademikerf\u00f6rs\u00e4kring.se": [758], "national.com": [16152], "dslshop.vodafone.de": [17814], "www.ngdc.noaa.gov": [11083], "wholelivingdaily.wholeliving.com": [10031], "bmi.bund.de": [2429], "www.payperpost.com": [12469], "as2.unm.edu": [16992], "www.telecolumbus.de": [16073], "*.enterprisecioforum.com": [5292], "wordpressmultisite.washingtonpost.com": [17990], "www.ovh.co.uk": [12173], "beacon.affil.walmart.com": [17964], "go2arena.com": [6767], "righthaven.com": [13885], "remotecoder.io": [13760], "*.forum.deluge-torrent.org": [4339], "www.liferay.com": [9333], "assets.windowsphone.com": [18346], "www.domdex.com": [4667], "terminatorx.org": [16124], "*.herts.ac.uk": [17256], "www.oracleimg.com": [12082], "bury.greenparty.org.uk": [6925], "community.talktalk.co.uk": [15929], "*.shmoo.com": [16209], "cloud.google.com": [6834], "abccommercial.com": [239], "live.xbox.com": [18550], "fatrat.dolezel.info": [4640], "ssl-certificate-center.verisign.com.hk": [17623], "smart.begun.ru": [1755], "success.yammer.com": [18646], "www.fablabtruck.nl": [5615], "www.safenet-inc.com": [14227], "*.igalia.com": [7949], "index.thenextweb.com": [16302], "blog.ashleymadison.com": [1254], "www.twtpoll.com": [16901], "prometeus.net": [13148], "repo.varnish-cache.org": [17568], "feedback.yandex.ua": [18656], "partner.internetessentials.com": [19300], "fusionforge.org": [6275], "mint.ca": [10431], "panelsurveys.ic.nhs.uk": [10913], "*.zingcheckout.com": [18870], "alz.org": [900], "freepress.net": [6147], "nationalcapital.gov.au": [11066], "aventeur.ucsd.edu": [16939], "eset.com": [5358], "glasgow.gov.uk": [6699], "wt.o.nytimes.com": [11000], "destructoid.com": [4397], "*.parrable.com": [12408], "soe.ucsc.edu": [17305], "www.mwellner.de": [10737], "youtube.com.mk": [18709], "www.mywickr.com": [18281], "onorobot.org": [11650], "mbrowser.yandex.by": [18648], "client.pritunl.com": [13078], "*.smartone.de": [19601], "wtsdc.ethz.ch": [4975], "www.alexa.com": [795], "tags.w55c.net": [17891], "forum.telekom.de": [4410], "2011.asiabsdcon.org": [1258], "thevaultbar.co.uk": [16212], "mail.linux-mips.org": [9413], "rac.co.uk": [13395], "company.podio.com": [12846], "asert.arbornetworks.com": [1154], "*.vegasinc.com": [17480], "alphassl.com": [867], "wiki.greasespot.net": [6904], "bluebird.com": [2145], "bse.vt.edu": [17740], "*.rfihub.com": [13855], "*.badongo.com": [1608], "secure.nicovideo.jp": [11389], "tnnet.fi": [15838], "cpni.gov.uk": [2956], "api.sumologic.com": [15592], "forum.ubuntu-tr.net": [17101], "boalt.com": [1535], "media.tango.me": [15946], "www.joomla.org": [8627], "lotto.gmx.net": [6350], "davidsopas.com": [4228], "lisam.liu.se": [9084], "*.footlocker.ca": [6009], "cp.fonality.com": [3743], "forge.mysql.com": [10780], "www.ecocampus.ens.fr": [4930], "whatsnew.vandyke.com": [17549], "uu.se": [17074], "datasaveslives.eu": [4185], "www.klub.com.pl": [8935], "secure.fera.defra.gov.uk": [4314], "*.econda.de": [5058], "www.communityservice.wustl.edu": [17993], "stats.web4all.fr": [18052], "readitlaterlist.com": [13607], "iovisor.org": [19303], "evga.com.au": [4986], "www.shambhalamountain.org": [14658], "sketchfab.com": [14906], "mediakit.inc.com": [8041], "app.portadi.com": [12934], "replicant.us": [13779], "provencredible.com": [13171], "clergyproject.org": [3235], "www.buyveteran.com": [2470], "www.aldi.es": [299], "www.acls.org": [249], "deco.proteste.pt": [4288], "support.mapbox.com": [9968], "vliegtickets.nl": [17802], "www.a1.net": [217], "carrefour.es": [19042], "glo.wustl.edu": [17993], "lfg.com": [19360], "www.wyreforest.greenparty.org.uk": [6925], "i2.services.social.s-msft.com": [14058], "*.lockerz.com": [9545], "openid.net": [11943], "www.globetrotter.de": [6745], "*.booredatwork.com": [2210], "smuxi.com": [15016], "dlib.bc.edu": [1502], "thelink.rit.edu": [13434], "www.theatlantic.com": [16245], "webmail.quickline.ch": [19530], "zuno.eu": [18768], "autobytel.com": [1424], "moja.pss.sk": [13187], "cash.me": [15329], "crz.gov.sk": [14972], "amwaygrand.com": [887], "www.hyb.pw": [19268], "www.platba.cz": [18938], "gigadesign.cz": [14589], "deepdyve.com": [4296], "soccerwaveuk.com": [15055], "www.adviceguide.org.uk": [665], "nelonen.fi": [11139, 11140], "senate.gov": [14574], "yahoo.com": [18638], "server.cpmstar.com": [2647], "ssl1.ovh.net": [12173], "openvpn.net": [11989], "*.lboro.ac.uk": [9187], "*.slotsgaminator.com": [6446], "www.qualityagent.com": [13330], "cwspodmusic.com": [2693], "dbspixel.hbz-nrw.de": [7253], "www.cdon.dk": [2562], "gitbook.com": [6674], "portail.strasbourg.eu": [15506], "imfimg.com": [7990], "video-dean.com": [17692], "energy.ch": [19158], "forum.defcon.org": [4305], "piquadro.com": [12703], "unityads.unity3d.com": [17220], "final4ever.com": [5819], "gift.jd.com": [8423], "www.yumpu.com": [18747], "acluofnorthcarolina.org": [251], "www.zoomeye.org": [18902], "wwte10.com": [17937], "stonewallscotland.org.uk": [19631], "groupersocialclub.com.au": [6972], "bitstamp.net": [2021], "rtbf.be": [14011], "redfern.me": [13695], "marketo.ringcentral.com": [13891], "*.bel.fi": [1510], "uniteddomains.com": [17213], "atlanticsoft.axosoft.com": [1477], "agresso.plymouth.ac.uk": [12833], "www.ipython.org": [7809], "media2.education.gov.uk": [19149], "cunb.com": [2750], "androidpolice.com": [1007], "gem.co": [6512], "corp.7-eleven.com": [187], "ny.taobao.com": [15952], "pixel.mathtag.com": [10071], "publicfeed.stubhub.co.uk": [15534], "www.accessprivacy.ca": [449], "account.liu.se": [9084], "bugs.vhffs.org": [16856], "ssl.cdne.cpmstar.com": [2647], "googleprojectzero.blogspot.co.*": [2113], "www.allafrica.com": [18949], "server.buycraft.net": [2472], "*.certigna.fr": [2971], "bin-store.com": [1886], "weneedtoknow.info": [18029], "www.lfgss.com": [9074], "intenseschool.com": [8224], "cksource.com": [2622], "dsply.com": [17573], "cypherpunk.at": [2696], "nowybip.siteor.com": [11535], "www.kutv.com": [8754], "www.jkry.org": [8441], "www.tante.cc": [15949], "www.serverfruit.com": [14615], "businessadvice.anz.com": [315], "faq.web4all.fr": [18052], "www.wetanz.com": [18224], "*.protonmail.ch": [13169], "www.doubleclick.com": [4715], "virusbtn.com": [17758], "www.medialoot.com": [10174], "www.centosblog.com": [2943], "jobs.linux.com": [8592, 9403], "static.skynews.com.au": [14929], "www.lavasoft.com": [9174], "s2mediadigital.com": [14063], "tasc.stanford.edu": [15382], "accounts.unity3d.com": [17220], "cyrus.foundation": [3989], "static.fulltraffic.net": [6253], "scenemusic.net": [14341], "www.gmx.at": [6350], "community.48months.ie": [148], "www.stanford.edu": [15383], "www.sis.gov.uk": [14469], "adhocracy-cms.liqd.net": [9442], "e-onlinedata.com": [4856], "cincinnati.com": [3138], "prefetch-maps.yandex.com.tr": [18649], "*.sanalika.com": [14274], "sc.imp.live.com": [9483], "press.dwolla.com": [4815], "media4.congstar-media.de": [3576], "media-social.s-msn.com": [14059], "business.cinesport.com": [3142], "images.a.switchadhub.com": [15701], "eon.law.harvard.edu": [7219], "www.flixbus.nl": [5931], "www.xiscosoft.es": [18576], "www.owenservices.com": [12177], "canterbury.objective.co.uk": [19454], "dlasklepow.ceneo.pl": [2935], "hpci-tech.aics.riken.jp": [13430], "developer.swisscom.com": [15698], "*.maliit.org": [9923], "robots.thoughtbot.com": [16387], "www.enisa.europa.eu": [5421], "dds2dds.com": [4020], "hanselman.com": [14396], "fantasyracing.telegraph.co.uk": [16082], "*.infoworld.com": [8130], "www.blackoutcongress.org": [2055], "www.dfranke.us": [4096], "www1.informatik.uni-erlangen.de": [17311], "holtstrom.com": [7459], "trs.webprospector.de": [18080], "powerbuy.co.th": [12998], "origin.collective-media.net": [3423], "www.targetedthreats.net": [15963], "ld-8.itunes.apple.com": [1120], "*.notex.ch": [11439], "asset-c.soupcdn.com": [15167], "www.monash.edu": [10541], "www.planet-work.fr": [12758], "horo.mail.ru": [9874], "www.freed0m4all.net": [6163], "manage-tablet.kaspersky.com": [8806], "insideygs.com": [8169], "i500.mycdn.me": [10824], "secure-ds.serving-sys.com": [14628], "pwm-mwe.cf.ac.uk": [2835], "cdn.torrentbit.net": [16585], "www.hackforums.net": [7152], "help.anz.co.nz": [18958], "api.demandbase.com": [4342], "www.nexcess.net": [11356], "api.pachube.com": [12312], "overcast.fm": [12161], "www.mlsecproject.org": [9759], "swot.cnes.fr": [2634], "*.salecycle.com": [14247], "www.esper.net": [5361], "ciscobusinesslink.cisco.com": [3162], "www.shopyourway.com": [14723], "simplefin.org": [14821], "ccr.cancer.gov": [2805], "www-s.scs.illinois.edu": [17258], "www.ieee.org": [7715], "*.utorrent.com": [19708], "www.privatewifi.com": [13102], "buyveteran.com": [2470], "www.picert.it": [12259], "law.illinois.edu": [17258], "blogs.citizensadvice.org.uk": [19062], "www.openldap.org": [11948], "elbadil.com": [5144], "webmail.gmobb.jp": [6342], "www.linuxcloudvps.com": [9419], "housting.de": [11177], "avantar.com": [1441], "dome.harvard.edu": [7219], "*.salesforceliveagent.com": [14250], "daniel.holba.ch": [7447], "image.issuu.com": [8378], "hornbach.de": [7496], "websupport.f5.com": [5546], "diasporabrazil.org": [4450], "www.curetheitch.com": [3929], "courses.wustl.edu": [17993], "ma.ttias.be": [9816], "www.utopianet.org": [17457], "www.rotesource.com": [13976], "vutbr.cz": [17522], "dustystyx.deathmask.net": [4266], "www.video.oms.eu": [11637], "wst.s-msn.com": [14059], "collect.anz.com": [315], "notice.ms.yahoo.co.jp": [18640], "resurs.se": [13819], "m.vtb.com": [17514], "app.picnichealth.com": [12662], "www.tageswoche.ch": [15907], "support.brookings.edu": [2362], "www.musikskole-tilmelding.dk": [10722], "link.webmoney.ru": [18076], "www.frontiersin.org": [6225], "vendosupport.com": [17605], "help.1and1.com": [51], "www.science-alliance.de": [14376], "www.perishablepress.com": [12574], "www.contactus.com": [3606], "www.libraries.io": [9303], "meetbot.fedoraproject.org": [5726], "podcast.zwame.pt": [18925], "portal.office.com": [11743], "youtube.ae": [18709], "www.crm-metrix.com": [2658], "blog.wireshark.org": [18369], "lh2.google.*": [6837], "www.t35.com": [15778], "youtube.at": [18709], "anyoption.com": [1080], "www.max.se": [10090], "www.albertathome.org": [5128], "www.tittygram.ru": [16505], "pairnic.com": [12336], "b.s-static.ak.facebook.com": [5620], "*.main-host.de": [9893], "www.websecweekly.org": [18145], "partitaiva.tiscali.it": [16498], "www.hayward-pool.com": [7251], "www.successchef.com": [15573], "www.smokefree.gov": [19603], "ti.me": [1920], "passed.cc": [12427], "git.pwmt.org": [13262], "educacion.unizar.es": [17356], "*.ubm.com": [16928], "secureimages.mcafee.com": [10114], "www.eduroam.vutbr.cz": [17522], "*.grcmc.org": [6889], "c0.rgstatic.net": [13422], "www.hosts.co.uk": [7544], "radio.kingdomofloathing.com": [1308], "login.library.ethz.ch": [4975], "secure.excaliburfilms.com": [5483], "www.correctiv-upload.org": [3684], "pkgs.fedoraproject.org": [5730], "www.learningbizpackage.com": [9213], "store1.adobe.com": [615], "online.instantatlas.com": [19296], "ups.com": [17007], "bso.bradford.gov.uk": [2264], "*.go.com": [6363], "www.nordkapp.net": [11478], "chiliproject.org": [3077], "www.pccasegear.com.au": [12221], "www.ledgerwallet.com": [9220], "networksgroup.com": [11210], "meritrustcu.org": [10284], "hilton.7eer.net": [194], "entportal.aws.ieeeusa.org": [7716], "www.time2play.mobi": [16454], "skatemall.com": [14898], "ftp-stud.hs-esslingen.de": [7441], "osicodesinc.com": [11671], "www.adobeexchange.com": [617], "hostasaurus.com": [7520], "hertzequipsales.com": [7372], "secureimg.allposters.com": [835], "www.futureboy.us": [6284], "crazzed.com": [3767], "usfsco.uillinois.edu": [16960], "git.goeswhere.com": [6805], "www.proxysite.com": [13182], "dialdirect.co.uk": [4442], "plugunplug.net": [12825], "fortum.com": [6059], "*.lumosity.com": [9668], "shopcms.southbankcentre.co.uk": [15192], "www.mike.kaply.com": [8790], "murmansk.rt.ru": [13469], "padsdel2.cdnads.com": [2918], "static.mediatropes.info": [15890], "outflux.net": [12152], "zooniverse.org": [18905], "*.duraspace.org": [4806], "*.webshopapp.com": [18147], "shop.dnaserum.com": [4057], "tictail.com": [16428], "itmanie.cz": [7849], "dar.fm": [4006], "ad.exelate.com": [4996], "academy.cityoflondon.police.uk": [3194], "apps.opm.gov": [11654], "www.seasonal.ly": [14450], "*.mandriva.com": [9948], "provider.havering.gov.uk": [7244], "s.pixogs.com": [4541], "www.bplaced.net": [19015], "dragndropbuilder.com": [4735], "images.yemeksepeti.com": [18674], "freizeit1.sbb.ch": [15693], "lifeinthefastlane.ca": [9329], "www.hostingreviews.com": [7525], "vote.sfconservancy.org": [15099], "planning.bradford.gov.uk": [2264], "nzz.at": [19450], "twitter.com": [16892], "cheapssl.com": [3041], "*.dentalxchange.com": [4894], "i3d.net": [7659], "www.gentooexperimental.org": [6533], "style.aliunicorn.com": [819], "extranet.megapath.com": [10229], "www.naturalmessage.com": [11101], "glyph.twistedmatrix.com": [16885], "www.scorecardresearch.com": [14393], "selfservice.nytco.com": [10998], "r3.mzstatic.com": [1119], "*.rug.nl": [17254], "www.morello.se": [10589], "telecomindustrydialogue.org": [16074], "jobs.redbridge.gov.uk": [13683], "millwardbrown.com": [10398], "directory.tuakiri.ac.nz": [16812], "www.printink.si": [13071], "init.itunes.apple.com": [1120], "gum.co": [7018], "mediagoblin.org": [10152], "sss.gov": [17024], "mumzworld.com": [10703], "ukfssweb.food.gov.uk": [19187], "webchat.hackerspace.pl": [7149], "www.iptorrents.com": [7798], "images.pangora.com": [12360], "freenetproject.org": [6181], "learningcentral.cf.ac.uk": [2835], "www.uni-due.de": [17165], "valueclickmedia.com": [17541], "bkk-advita.de": [1524], "freshbooks.com": [6201], "secure.promotionalads.yahoo.co.jp": [18640], "oascentral.aviationweek.com": [75], "www.maillift.com": [9877], "hungryhouse.co.uk": [7621], "www.polygon.com": [12892], "energiwatch.dk": [5252], "blog.bitlendingclub.com": [1934], "www.edg.com": [4891], "www.binbox.io": [1892], "pmisportal.axosoft.com": [1477], "www.kissinsights.com": [8726], "www.icln.org": [7686], "*.shopping.com": [4873, 14728], "studentblackboardhelp.usc.edu": [17278], "www.kickasstorrents.to": [8879], "customerlobby.com": [3940], "www.unbound.net": [17154], "eagleeye.umw.edu": [17261], "www.3dvisionlive.com": [125], "www.chakraos.org": [2984], "owa.1x.com": [49], "www.coredump.gr": [3670], "glass.google.com": [6834], "www.blog.jolexa.net": [8621], "m-a-g.taobao.com": [15952], "blog.picnichealth.com": [12662], "accountservices.microsoft.com": [10364], "www.cozumpark.com": [3742], "cmswire.com": [2629], "www.ucc.dk": [16932], "t37.net": [15779], "hr-recruit.web.cern.ch": [2575], "formspring.me": [6045], "www.armatactics.com": [18962], "secure.ch.nicovideo.jp": [11389], "www.vonage.co.uk": [17838], "aeon.co": [681], "bouncyballs.org": [2246], "images.stackcommerce.com": [15361], "www.ausinfotech.net": [1375], "online.usc.edu": [17278], "lists.gnupg.org": [6762], "www.justgetflux.com": [5956], "serverpilot.io": [14607], "cdnapi.kaltura.com": [8775], "shop.niksoftware.com": [11400], "harlandclarke.com": [7207], "ssl.trustwave.com": [16799], "imagebank.nih.gov": [11052], "els-sso.corp.aol.com": [321], "*.hjr-verlag.de": [7072], "www.asnuul.asso.ulaval.ca": [17229], "assets-auto.rbl.ms": [13592], "developers.mobile.conduit.com": [3563], "ccc.de": [2538], "www.audentio.com": [1348], "www.wikilov.es": [18296], "whosonfirst.mapzen.com": [9978], "midphase.com": [10378], "www.bulkorder.ftc.gov": [5720], "medianetwork.oracle.com": [12082], "www.tqlkg.com": [3481], "www.superhexagon.com": [15620], "api.sedo.com": [14542], "partner.skolaonline.cz": [19598], "libraries.midlothian.gov.uk": [10376], "*.clasconsultants.net": [19067], "whistleout.com": [18248], "my.apa.org": [327], "webmail.noxa.de": [19444], "mca-marines.org": [9726], "img.shoppingshadow.com": [14730], "www.tomsofmainestore.com": [16544], "www.personalsavings.americanexpress.com": [935], "*.b-static.net": [2168], "groupon.co.uk": [6977], "pressroom.usc.edu": [17278], "vpsfree.cz": [19743], "www.facultysenate.wustl.edu": [17993], "wildarchives.com": [18301], "pbebank.com.my": [13203], "www.totalbarcode.com": [16599], "howsmytls.com": [7573], "forums.malwarebytes.org": [9929], "community.microfocus.com": [10348], "www.theverge.com": [16213], "defectivebydesign.org": [4306], "www.dobrochan.org": [4612], "newlook.com": [11307], "mercadobitcoin.net": [10274], "oomphme.com": [11896], "ieee.org": [7715], "flow.typo3.org": [15893, 15894], "planpa.peterborough.gov.uk": [12594], "www.resetthenet.org": [13804], "*.weebly.com": [18179], "www.collection.hotpics-amateur.com": [7550], "villas4you.co.uk": [18490], "lists.sf.net": [15174], "default.kei.pl": [8840], "www.musicweek.com": [10716], "www.canon.de": [2809], "*.lurkmore.to": [9673], "www.edvina.net": [5102], "content.internetvideoarchive.com": [8286], "www.eurexchange.com": [5400], "lumiblade-shop.com": [9664], "*.ford.com": [6020], "b.yandex.com.tr": [18649], "dating.independent.co.uk": [8053], "www.sda.it": [14092], "*.partitopirata.ch": [12284], "danhlode.com": [4140], "www.gdata.at": [6293], "ml.mageia.org": [9847], "*.customersaas.com": [3942], "bpte.osu.edu": [11760], "consultations.southglos.gov.uk": [15189], "socialwork.buffalo.edu": [17297], "www.impactradius.com": [8011], "js.hubspot.com": [7594], "ajax.asp.net": [353], "www.standardebooks.com": [15380], "mail.iu.edu": [8064], "akademie.skolaonline.cz": [19598], "charter.net": [3021], "www.circanews.com": [3154], "www.yourdatelink.com": [18727], "airvpn.org": [748], "blogs.ca.com": [2511], "www.gemeentebest.nl": [11132], "www.carousell.com": [2860], "pics.qxlstatic.dk": [13296], "www.anonyproz.com": [1081], "temai.taobao.com": [15952], "ru.norton.com": [11505], "pro.hostingas.lt": [19518], "galaxy.ansibleworks.com": [1058], "www.evernote.com": [5450], "partners.rackspace.com": [13506], "signup.leagueoflegends.com": [9206], "slm-assets1.secondlife.com": [14462], "tnt.aufbix.org": [1365], "www.downthemall.net": [4721, 4722], "trailers.apple.com": [1120], "www.f5networks.co.jp": [5547], "cio.com.au": [2610], "wiki.documentfoundation.org": [16221], "wyndhamjobs.com": [18489], "www.news.cornell.edu": [3676], "hope.net": [7493], "www2.extensis.com": [5523], "the42.ie": [19673], "forums.offensive-security.com": [11736], "webdesignmarketing.eu": [18100], "www.adspeed.com": [542], "www.drdobbs.com": [16927], "intranet.engineering.osu.edu": [11760], "svar.regjeringen.no": [13739], "www.viaduct.io": [17662], "cheetahmail.com": [3055], "display.intencysrv.com": [8223], "www.theweekendedition.com.au": [18182], "app.gusto.com": [7027], "unite.unity.com": [17220], "www.ftb.ca.gov": [2742], "t-mobile.nl": [15771], "www.rhb.ch": [13857], "*.trafficjunky.net": [16648], "bankieren.rabobank.nl": [13489], "cp.myvps.jp": [10795], "www.glasgowconsult.co.uk": [19220], "logancij.com": [9552], "nottingham.greenparty.org.uk": [6925], "www.thetfp.com": [16316], "nordea.*": [11471], "pidgin.im": [12672], "hertzondemand.com": [7372], "lovingsupport.fns.usda.gov": [17209], "gcmasia.com": [6309], "josm.openstreetmap.de": [11978], "crackstation.net": [3750], "g.liveinternet.ru": [9488], "old-webmail.hermes.cam.ac.uk": [17243], "activatejavascript.org": [494], "licensing.ribblevalley.gov.uk": [13865], "preprod.it.hispeed.ch": [19716], "www.weekplan.net": [18181], "static.wangyin.com": [17972], "synchronicer.dk": [15729], "www.mediciglobal.com": [10190, 10191], "blog.okturtles.com": [11773], "bugzilla.redhat.com": [13675], "www.thisproxykillscensors.uk": [19678], "*.hd.se": [7052], "onehelp.cz": [11643], "texthelp.com": [16160], "id.redhat.com": [13675], "m.eclipso.de": [5051], "html5rocks.com": [7104], "kundarea.wopsa.se": [18425], "hostgator.com": [7512], "www.ccc.de": [2538], "lynxtech.no": [9684], "www.warrington.gov.uk": [17984], "anthrocon.org": [1065], "jobthread.com": [8593], "thetrainline.com": [16238], "blog.netways.de": [11259], "updates-yum.ro.vutbr.cz": [17522], "www.ticketportal.sk": [16423], "shop.sp.nl": [14151], "www.cars.com": [2864], "community.sbaglobal.com": [14625], "www.abnamro.nl": [245], "instapaper.com": [8189], "images.sf.net": [15174], "www.wintiewin.com": [18331], "www.ucl.ac.uk": [17295], "assets.taobaocdn.com": [15953], "www.changedetection.com": [2993], "feeds2.feedburner.com": [5734], "alimama.com": [814], "creativepartnershipsaustralia.org.au": [3780], "www.cenowarka.pl": [2938], "*.aufeminin.com": [1469], "durchmesser.ch": [19130], "kunden.1und1.de": [68], "homesupport.cisco.com": [3162], "www.logika.net": [9557], "cas.iu.edu": [8064], "www.fineproxy.org": [5846], "iconnect.colchester.gov.uk": [3414], "www.wingware.com": [18354], "cdn.blog-sap.com": [14073], "www.qupzilla.com": [13380], "nextregister.com": [11361], "*.gamestar.de": [6440], "fdf.org.uk": [5562], "keepassx.org": [8834], "www.green.ch": [19228], "www.7chan.org": [192], "www.matildajaneclothing.com": [10072], "www.t-nation.com": [15773], "downloads.plex.tv": [12814], "www.tesco.com": [16134], "svgopen.org": [14202], "jobs.netways.de": [11259], "livebeta.dagbladet.no": [4106], "static.balboa.io": [1626], "maurus.net": [10086], "www.lvmanagement.com": [9159], "mail.qnetp.net": [13305], "www.drupalgardens.com": [4781], "vesica.ws": [17650], "jobs.timeshighereducation.com": [16464], "server.iad.liveperson.net": [2716, 9493], "s4.rationalcdn.com": [19536], "widgets.membership.microsoft.com": [10363], "www.coinpay.in.th": [3408], "www.humanism.org.uk": [7613], "webapps.nikhef.nl": [11402], "movabletype.com": [10629], "ds.heanet.ie": [7269], "bof.nl": [1537], "vhf.de": [19734], "about.bitso.com": [2018], "volusion.co.uk": [17837], "bentasker.co.uk": [1772], "forum.sourcefabric.org": [15180], "www.nitetimetoys.com": [11425], "xyntekinc.com": [18608], "www.alldebrid.com": [830], "www.translatewiki.net": [16673], "www.performancehorizon.com": [12567], "edu.netbeans.org": [11185], "media.govdelivery.com": [6862], "www.tsv.fi": [16436], "www.royalsociety.org": [14002], "*.airasia.com": [746], "secure.payconnect.net": [4894], "saimd.com": [3682], "postmaster.tdc.dk": [15796], "www.transportation.gov": [16682], "*.infra-fuerth.de": [8131], "www.simply-partner.com": [14831], "n1.octostatic.com": [11719], "*.icbdr.com": [2841], "brook.gs": [1920], "player.io": [12804], "www.independentmail.com": [8055], "careers.weather.com": [18033], "www.privacyfix.com": [13092], "proxmox.com": [13179], "www.davissystem.net": [4232], "www.programmableweb.com": [13130], "www.investsmart.com.au": [8316], "community.wholeliving.com": [10031], "videolab.avnet.kuleuven.be": [8816], "pubs.ext.vt.edu": [17740], "bsidesslc.org": [1546], "www.acluofnorthcarolina.org": [251], "www.blog.fau.de": [17311], "www.nordichardware.se": [11474], "ask.springshare.com": [15313], "graduateschool.wustl.edu": [17993], "siteground.com": [14865], "the-body-shop.ch": [3645], "benefits.usc.edu": [17278], "www.cdig.me": [2915], "www.improper.com": [8019], "cams.tm.com.my": [16083], "adserver.71i.de": [14636], "www.nos-oignons.fr": [11511], "alternet.org": [875], "www.register4less.com": [13733], "tml.engineering.osu.edu": [11760], "www.woobox.com": [18417], "www.pingability.com": [12685], "freedns.afraid.org": [708], "e.onthe.io": [11890], "api.7digital.com": [193], "www.apture.com": [6833], "pjmedia.com": [12263], "learn.adafruit.com": [550], "www.nelly.com": [11138], "www.knappschaft-bahn-see.de": [8940], "*.iljmp.com": [7964], "linux.rz.ruhr-uni-bochum.de": [14031], "social.mayfirst.org": [10100], "web-style.educ.cam.ac.uk": [17243], "ut13.xhcdn.com": [18514], "spotxchange.com": [15294], "www.hereford.greenparty.org.uk": [6925], "ardour.org": [1175], "speakychat.com": [15238], "webspace4clans.de": [18155], "*.pkware.com": [12265], "heckrath.net": [7281], "embed.newsinc.com": [11335], "www3.software.ibm.com": [7675], "startovac.cz": [19624], "edweek.org": [5069], "*.iapplicants.com": [8589], "idea.nottingham.ac.uk": [11528], "firmstep.com": [19183], "www.wustl.edu": [17993], "www.mywot.net": [10798], "www.slaveryfootprint.org": [14950], "*.bwin.com": [7733], "defora.org": [4313], "www.therealtalk.org": [16233], "bad-dragon.com": [18979], "www.pccu.edu.tw": [12220], "www.paste.ee": [12436], "feeds.soundcloud.com": [15161], "www.baifubao.com": [1621], "www.sott.net": [15155], "*.adition.com": [594], "im.post.ch": [12949], "openforum.westminster.gov.uk": [18220], "edge.centrify.com": [19048], "imagewz.winzip.com": [18333], "co3sys.com": [3333], "*.spreadshirt.dk": [15300], "pcn.birmingham.gov.uk": [19000], "www.sicontact.at": [14760], "mail.sohu.net": [15104], "kneon.com": [8941], "ad4.liverail.com": [9496], "getglue.com": [6574], "read.jd.com": [8423], "my.fsf.org": [5600], "www.mediawatch.dk": [10166], "qxl.no": [13385], "www.kolabsys.com": [8960], "freemarketlite.cc": [6128], "wordvine.sydney.edu.au": [19649], "swp.stanford.edu": [15382], "mysafe.f-secure.com": [5541], "www.dice.com": [4452, 4453], "aaltodoc.aalto.fi": [390], "media.charterbusiness.com": [3022], "opentabs.net": [12047], "vpn.uibk.ac.at": [19710], "keep2share.cc": [8704], "my.viaduct.io": [17662], "pbhs.com": [12210], "*.inwx.net": [8231], "www.3fm.nl": [126], "www.passsource.com": [12424], "www.accan.org.au": [247], "www.eleave.osu.edu": [11760], "hairsmize.com": [7166], "wiki.tools.ietf.org": [7721], "*.synacor.com": [15722], "*.newzbin2.es": [11351], "datadoghq.com": [4201], "neowin.net": [11158], "metrix.net": [10319], "sandbox.mydigipass.com": [10828], "www.waze.com": [18014], "secure.syndetics.com": [15733], "home.jd.com": [8423], "www.l0g.us": [9060], "*.cyberphoto.fi": [3963], "cfengine.com": [2590], "www.usa.canon.com": [2809], "ftp.rnl.tecnico.ulisboa.pt": [19203], "www.toolbarbrowser.com": [16554], "wolfire.com": [18395], "bookings.bookitsecure.com": [19011], "smugmug.com": [15014], "huawei.tmall.com": [19684], "new.enfield.gov.uk": [5258], "www.nasa.gov": [10869], "forum.ovh.pl": [12173], "huobi.com": [7624], "cgit.collabora.com": [3419], "www.piwik.uni-hamburg.de": [16951], "www.machinegunsvegas.com": [9829], "jobs.bce.ca": [1763], "forum.ovh.pt": [12173], "easily.co.uk": [5011], "agilebits.com": [727], "book.serversforhackers.com": [14618], "gemseek.com": [6520], "pixel.adsafeprotected.com": [538], "www.sofn.com": [15087], "sceper.eu": [14343], "modules.openmrs.org": [11953], "countysuppliesonline.hants.gov.uk": [7196], "wartstick.com": [17985], "etrieveca.htzpartners.com": [7372], "manageengine.jp": [9939], "utk.edu": [17341], "mymarshall.usc.edu": [17278], "pxlssl.ibpxl.com": [8280], "www.mastozytose-schweiz.org": [10060], "www.eaak.tk": [3533], "www.accessguardian.com": [445], "linutronix.de": [9390], "passport.webmoney.ru": [18076], "www.leaseweb.com": [9215], "www.bbpress.org": [1711], "webmail.bo.infn.it": [7766], "cdn.cdncomputer.com": [2919], "*.stagingspeak.com": [16830], "synokm.synology.com": [15738], "*.glassdoor.co.in": [6701], "www.landal.*": [18490], "engage.barnet.gov.uk": [18982], "thumbs.dachix.com": [3759], "forums.okturtles.com": [11773], "www.e4ward.com": [4864], "static.linuxdistrocommunity.com": [9421], "www.mnot.net": [10479], "support.evernote.com": [5450], "www.adobe.com": [615], "www.nknews.org": [10934], "www.fedoraproject.org": [5726], "www.hoku.co.jp": [14740], "www.prezi.com": [13046], "itradecimb.com.my": [2606], "www.menshealth.de": [10261], "szamlazo.mito.hu": [10458], "www.mcdelivery.com.my": [10119], "www.codeofconduct.wustl.edu": [17993], "mghocd.org": [9702], "*.bigbrotherwatch.org.uk": [1857], "www.egedalkommune.dk": [5113], "www.playerattack.com": [12801], "events.ya.ru": [18626], "searchengineland.com": [16367], "rateip.com": [13573], "broadbandreports.com": [4081], "images.instagram.com": [8182], "www.1cart.com": [43], "assets.lego.com": [9068], "ws.cnetcontent.com": [2635], "ikvc.slovakrail.sk": [14973], "alumni.cgi.rice.edu": [13868], "www.coolcart.net": [3637], "freightcalculator.com.au": [6193], "*.myheritage.se": [10834], "easy-tracking-protection.truste.com": [15856], "cdn.keepstat.com": [7891], "www.silkroad.ws": [14794], "cdme.osu.edu": [11760], "*.docstoc.com": [4622], "www.nasuni.com": [11040], "www.hybrid-analysis.com": [7640], "disk.yandex.kz": [18652], "www.csiac.org": [2670], "assets3.sendgrid.com": [14577], "admission.stanford.edu": [15383], "email.udacity.com": [17110], "overclockers.at": [12164], "www.roammobility.com": [13918], "community.artemis-ia.eu": [1228], "www.55ch.org": [172], "kb.isc.org": [7821], "dot5hosting.com": [4690], "www.thesexyhouse.com": [14646], "www.vtnews.vt.edu": [17740], "stiftung.htwk-leipzig.de": [7114], "*.wonderlandmovies.de": [18412], "*.shutterstock.com": [14755], "www.admin.asmp.org": [947], "nominatim.openstreetmap.org": [11979], "energydesk.greenpeace.org": [6937], "www.firmstep.com": [19183], "www.nettitude.com": [11254], "at.redhat.com": [13675], "www.123contactform.com": [23], "images1.videolan.org": [17688], "www.happyhardcore.com": [7198], "wiki.centos.org": [2942], "journalism.co.uk": [8647], "cf.thumbs.xxxbunker.com": [18607], "*.kau.se": [8708], "freifunk.net": [6192], "www.i2p2.de": [7658], "tritonlink.ucsd.edu": [16939], "*.shoptiques.com": [14731], "webmail.f-secure.com": [5541], "www.travelplan.gr": [16694], "meetup.com": [10219], "ad.adorika.com": [13881], "status.live.com": [9483], "status.gitbook.io": [6675], "passport.qcloud.com": [13301], "knowledge.verisign.co.nz": [17623], "store.origin.com": [12106], "bellareed.com": [10000], "www.mikeconley.ca": [10384], "wiki.onosproject.org": [11649], "www.mageia.org": [9847], "*.marinedepot.com": [9998], "mandiant.com": [10258, 19381], "www.meinfernbus.de": [10236], "www.aful.org": [286], "*.uk2.net": [16963], "m.seferler.yandex.com.tr": [18649], "keyghost.com": [8866], "cz.mbank.eu": [9722], "mozy.com": [10667], "www.stopthehacker.com": [15490], "kevinajacobs.com": [8863], "www.fiskeriverket.se": [5886], "secured.greenpeace.org": [6937], "xmlrpc.istockphoto.com": [19309], "bugs.ntp.org": [10965], "web1.login.cornell.edu": [3676], "websitealive4.com": [18149], "www.opentechfund.org": [11983], "www.expresscoin.com": [5517], "find.t-mobile.com": [15772], "lkimg.zamimg.com": [18782], "www.openlibrary.org": [12018], "e4.xhamsterpremiumpass.com": [18516], "upcase.com": [17385], "reverse.put.as": [13255], "www.blablacar.fr": [2035], "www.logilab.org": [9558], "r1.mzstatic.com": [1119], "hrweb.apple.com": [1120], "app-community.offerpop.com": [11739], "restorethefourth.net": [13817], "ist.utl.pt": [16033], "community.runabove.com": [14034], "www.oomphme.com": [11896], "autodiscover.ee.leeds.ac.uk": [17318], "www.bettersales.se": [1829], "stores.vodafone.co.nz": [17812], "itsdanbull.com": [4130], "arc.publicdebt.treas.gov": [17059], "www.om.nl": [12031], "www.babymed.com": [1593], "www.drillisch.de": [4760], "pixel.tapad.com": [15954], "home.pl": [7465], "www.filippo.io": [5804], "verisign-japan-domain.com": [17623], "certification.unity.com": [17220], "*.myfbo.com": [10756], "oauth.live.com": [9483], "owl.english.purdue.edu": [12178], "isnic.is": [7826], "webmail.mykolab.com": [10765], "smsl.osu.edu": [11760], "shop.openbsdeurope.com": [11920], "www.luxsci.mobi": [9675], "justpaste.it": [8692], "afcad.osu.edu": [11760], "reseller.seagate.com": [14437], "www.training.nih.gov": [11052], "windowshopping.11main.com": [20], "prisma-it.com": [13075], "www.bandaancha.eu": [18980], "ghstatus.dge.carnegiescience.edu": [2857], "storeimages.apple.com": [1120], "alternativeto.net": [884], "images.chillingeffects.org": [3079], "faq.erc.edu": [4949], "jetbrains.com": [8559], "clocks.yandex.com.ua": [18650], "www.braincert.org": [2269], "myorders.sky.com": [14924], "a4.lscdn.net": [9102], "dontspyonus.org.uk": [4680], "www.basildon.gov.uk": [18984], "images2.variety.com": [17565], "mail.ciw.edu": [2857], "blog.podio.com": [12846], "cf.scdn.co": [14088], "tmi.twitch.tv": [16888], "resources.whatwg.org": [17904], "www.eventim.*": [5443], "secure.brandify.com.au": [2284], "www.noscript.net": [11438], "app.paymoapp.com": [12482], "forum.jquery.com": [8451], "performance.demandbase.com": [4342], "www.rbdigital.com": [19537], "www.dcvote.org": [4017], "www.ausgamers.com": [1373], "cssiw.gov.wales": [6860], "www.neko.im": [11137], "*.mpnrs.com": [9782], "untangle.com": [17370], "js-seeker.newjobs.com": [11318], "safaribooksonline.com": [14222], "www.ciao.de": [3132], "wallet.tenpay.com": [16114], "yourcounciljobs.co.uk": [18734], "gmx.com.tr": [6350], "globetrotter.de": [6745], "m.f.ix.de": [8404], "*.switchnet.io": [15705], "e18.xhamsterpremiumpass.com": [18516], "*.footlocker.com": [6008], "ed25519.cr.yp.to": [3748], "*.thumbs.redditmedia.com": [13691], "www.jammerbugt.dk": [8506], "docs.asp.net": [353], "partner.just-eat.co.uk": [19328], "www.adpeepshosted.com": [546], "omnia.turris.cz": [16846], "www.sbarmen.no": [14321], "integration.quotes.bkb.ch": [19333], "app-portal.volexity.com": [17827], "status.dwolla.com": [4816], "portal.uk.clara.net": [3212], "sutn.sk": [14972], "www.navicast.co.jp": [14740], "*.howtogeek.com": [7570], "www.btctrade.com": [2381], "brave.piwikpro.com": [19497], "disel.enaza.ru": [5230], "jolla.com": [8622], "*.blogspot.se": [2107], "*.lookdumbass.com": [9595], "www.voipuserportal.co.uk": [5290], "mailbox.org": [9881], "utsouthwestern.edu": [17283], "www.uni-erlangen.de": [17311], "support.okta.com": [11776], "pirates.mail.ru": [9874], "www.khpi.com": [8847], "www.victi.ms": [17669], "www.fileformat.info": [5790], "techanarchy.net": [19665], "www.webooluinc.com": [18137], "pubweb.bnl.gov": [19009], "s-adserver.cxad.cxense.com": [2694], "accessprivacy.ca": [449], "*.condosforeveryone.com": [3560], "www.amoena.us": [979], "www.theconversation.com": [16262], "madboa.com": [9836], "forums.archlinux.fr": [1159], "msfn.org": [9790], "media.friendfinder.com": [6213], "www.usaspending.gov": [17034], "whosampled.com": [18259], "www.dmgt.co.uk": [4121], "cirw.in": [3160], "www.tescodiets.com": [16138], "partnercomputing.illinois.edu": [17258], "www.lumo.me": [9667], "burst.net": [2445], "amd.co.at": [924], "lh4.google.*": [6837], "blogs.aalto.fi": [390], "cscglobal.com": [3683], "east-riding.firmstep.com": [19183], "httpsecurityreport.com": [7110], "www.unbridled.info": [17155], "lib.law.washington.edu": [17291], "petitions.moveon.org": [10630], "primus.com": [13062], "www.soi.city.ac.uk": [3187], "www.yemeksepeti.com": [18674], "support.riverbed.com": [13907], "connecthr.nl": [2783], "redferret.net": [13673], "*.responsys.net": [13816], "www.sinnfein.ie": [14851], "linux42.org": [19461, 19462], "*.steelhousemedia.com": [15458], "*.oregonstate.edu": [12099], "gran-turismo.com": [6888], "career.stonybrook.edu": [15480], "it.vanderbilt.edu": [17556], "s.adroll.com": [536], "my.usc.edu": [17278], "answers.virginmobileusa.com": [17734], "mrmcd.net": [9786], "plusgirot.se": [12830], "fr.witness.org": [18382], "www.nfsec.pl": [10906], "payee.globalpay.westernunion.com": [18216], "casinoestrella.com": [2883], "beauty.taobao.com": [15952], "wakelet.com": [17953], "talentopoly.com": [15921], "chinadialogue.net": [3085], "ico.jobs": [4530], "downloads.openmicroscopy.org": [12021], "cyberstreetwise.com": [3975], "u.alicdn.com": [805], "giveto.mariestopes.org.au": [9992], "*.maine.edu": [17323], "www.nationalserviceresources.org": [11090], "www2.jcp.org": [8419], "hepe.com": [7319], "pt.malwarebytes.org": [9929], "pcel.com": [12222], "taskwarrior.org": [15971], "www.cyberguerrilla.info": [3960], "lukb.ch": [19333], "videos.usatoday.com": [17032], "mitre.org": [10459], "www.youtube.tn": [18709], "advent-hub.okta.com": [11776], "discuss.atom.io": [1324], "www.pinterest.com": [12699], "media3.congstar-media.de": [3576], "www.ernw.de": [4950], "www.similarweb.com": [14811], "www.monarch.co.uk": [10540], "www.tosdr.org": [16521], "adsafecontrol.com": [537], "ndia.org": [11049], "*.mandiant.com": [10258], "tco.osu.edu": [11760], "india.hivos.org": [7431], "appmarket.nexternal.net": [11365], "*.handy.de": [7193], "www.kabeldeutschland.de": [8760], "thewire.com": [16325], "auctionbunker.com": [1344], "apollohq.com": [1126], "www.strato.*": [14192], "www.nuxx.net": [11588], "distributed.net": [4575], "www.notalwaysfriendly.com": [19441], "ryot.org": [13484], "data2.whicdn.com": [17905], "sap.com": [14073], "idrsolutions.com": [7709], "www.uber.com": [17089], "nest.com": [11166], "sommerkunstskolen.jammerbugt.dk": [8507], "ustatik.com": [17449], "stream.cz": [15516], "sailfishos.org": [14241], "europa-apotheek.com": [5419], "usi.vutbr.cz": [17522], "ec.osu.edu": [11760], "charitywater.org": [3012], "cdn.c3voc.de": [2501], "*.osa.org": [12066], "campusspiele.htwk-leipzig.de": [7114], "*.w00t.com": [18424], "gentlelabs.com": [6528], "gic3.mycdn.me": [10824], "fantasyfootball.telegraph.co.uk": [16082], "release.theplatform.com": [16230], "www.barracuda.com": [1680], "4sysops.com": [164], "arec.vaes.vt.edu": [17740], "financiallink.ucsd.edu": [16939], "www.profed.acs.org": [929], "delivery.b.switchadhub.com": [15701], "www.hosterbox.com": [7522], "unistra.fr": [17279], "libraryfreedomproject.org": [9306], "www.lenovoorders.com": [9252], "chapman.edu": [3008], "hosts.co.uk": [7544], "transportstyrelsen.se": [16683], "trafik.yandex.com.tr": [18649], "www.amnesty.fi": [961], "gbatemp.net": [6305], "static.streetlife.com": [19633], "finance.google.com.*": [6837], "community.citrix.com": [3178], "jobs.cardiff.gov.uk": [19039], "www.msfn.org": [9790], "www.vouchedfor.co.uk": [17848], "www.oaa.osu.edu": [11760], "static.xrel.to": [18589], "automotive.dianomi.com": [4444], "www.insightexpress.com": [8171], "umap.openstreetmap.fr": [12045], "cdn.ckeditor.com": [2621], "*.gephi.org": [6551], "georgiegirl.com.au": [6548], "foodhub.co.nz": [6000], "cdn-retailers-dbapp.netdna-ssl.com": [4108], "feed2js.org": [5732], "beatsmedia.com": [1738], "de.cloudflare.com": [3285], "www.certificatemonitor.org": [2969], "facultydevelopment.stanford.edu": [15383], "bigjocker.com": [1863], "www.ovhtelecom.fr": [11687], "visibletechnologies.com": [17772], "*.australianclinicaltrials.gov.au": [1384], "www.pycon.sg": [13264], "www.sylvancompany.com": [15714], "cslipublications.stanford.edu": [15383], "blog.centreon.com": [2957], "jenkins.debian.org": [4275], "www.grove.io": [6981], "www.laravel-news.com": [9156], "static-mynews.apple.com": [1119], "panel.stopthehacker.com": [15490], "terveysportti.net": [16133], "www.wikispaces.asu.edu": [1195], "*.speakychat.com": [15238], "library.southampton.gov.uk": [15191], "www.vervehosting.com": [17645], "app.gyft.com": [7036], "mozillaignite.com": [10659], "www.nelonen.fi": [11139, 11140], "www.buffalo.edu": [17297], "www.fastshare.cz": [5674], "www.cryptotec.com": [19093], "portal.webgility.com": [18118], "agb.web.de": [18050], "fonts.voxmedia.com": [17852], "devnet.jetbrains.com": [8559], "www.wix.com": [18383], "*.ceejay.net": [2927], "www.bitmessage.org": [2008], "ngvpn04.nvidia.com": [10985], "www.chl.it": [2598], "silkroad.ws": [14794], "*.hwstatic.com": [18042], "gmclerkstlgaccess.hants.gov.uk": [7196], "blog.sucuri.net": [15575], "skortekaas.nl": [14130], "dev.yandex.com.tr": [18649], "m.pogoda.yandex.by": [18648], "user.ecc.u-tokyo.ac.jp": [16919], "knewone.com": [8943], "gehrcke.de": [6508], "firstdedic.ru": [5868], "www.provost.buffalo.edu": [17297], "www.charlottenaturemuseum.org": [3014], "donate.accessnow.org": [447], "www.hhid.com": [7064], "mediaquestcorp.com": [10181], "www.demonii.com": [4357], "www.cdbaby.com": [19045], "moveonpac.org": [10631], "community.akamai.com": [761], "rejo.zenger.nl": [18828], "brewtourism.com.ua": [2309], "cm-mail.stanford.edu": [15383], "nemid.dtu.dk": [16031], "www.mmedia.me": [10281], "www.balatarin.com": [1625], "www.huque.com": [7627], "www.mysociety.co.uk": [10785], "urlquery.net": [17412], "www.cryptopp.com": [3888], "cloudmailin.com": [3308], "www.researchcompliance.vt.edu": [17740], "liveupdate.symantec.com": [15715], "longurl.it": [10768], "www.mycanvas.com": [10749], "latimes.com": [9612, 16730], "sync.com": [15725], "whsmith.co.uk": [17909], "tvtorrents.com": [16859], "dl.boxcloud.com": [2256], "www.beaker-project.org": [1729], "esp.rt.com": [13468], "www.bookstore.ucsd.edu": [16939], "datacentrumgids.nl": [4199], "www.vpac.org": [17498], "kb.doteasy.com": [4701], "www.eweka.nl": [5470], "*.eukhost.com": [4979], "cyberghostvpn.com": [3959], "forum.hostdime.com": [7510], "bugs.pwmt.org": [13262], "collegiatepeaksbank.com": [3430], "www.toyfoundry.net": [16619], "www.surespot.me": [15646], "*.movieth.com": [10638], "team.ushahidi.com": [17443], "rizon.net": [13911], "www.opensignal.com": [11974], "www.forumatic.com": [6065], "unity3d.com": [17220], "archive.redhat.com": [13675], "francais.rt.com": [13468], "apps.facebook.com": [5620], "aerofs.com": [688], "netspi.com": [11206], "xyratex.com": [18609], "store.yubico.com": [18745], "startssl.org": [15407], "support.bitmain.com": [2003], "www.netswarm.net": [11251], "chatenabled.mail.google.com": [6834], "scriptobservatory.org": [14419], "mysecureconnect.com": [10783], "www.mpi-soft.mpg.de": [10089], "cadastre.openstreetmap.fr": [12045], "www.arkane-studios.com": [1197], "fw.jd.com": [8423], "groupes.renater.fr": [13764], "notalwaysrelated.com": [19441], "pentestgeek.com": [12542], "row.hants.gov.uk": [7196], "app-de4.resrc.it": [13599], "isppweb.tameside.gov.uk": [19660], "cart.wildwestdomains.com": [18300], "cruzid.ucsc.edu": [17305], "support.domaintools.com": [4659], "ssafastore.co.uk": [14171], "zendition.net": [18825], "c3s.cc": [2500], "www.spkrb.de": [19619], "*.skimlinks.com": [14911], "izquierda-unida.es": [8406], "obrazky.o2active.cz": [16075], "www.freedom.press": [6168], "www.alastore.ala.org": [298], "www.malegislature.gov": [9719], "dwarffortresswiki.org": [4814], "wiki.openssl.org": [11970], "auth.robokassa.ru": [13927], "www.facebook.es": [5623], "releases.ansible.com": [1057], "hexagon.cc": [7380], "www.burthub.com": [2451], "openinfosecfoundation.org": [12015], "www.stop-snoring-mouthpiece.org": [15481], "istanbulhs.org": [8380], "gtk-apps.org": [19461, 19462], "www.thawte.com": [16175], "export.yandex.com": [18651], "opinion.peytz.dk": [12606], "www.hrw.org": [7612], "www.cirtexhosting.com": [3159], "www.checkip.org": [17790], "stylessl.alibaba.com": [809], "suntrust.com": [15595], "secure.nypost.com": [11321], "docs.owncloud.org": [12182], "liv.ac.uk": [9479], "hostooplecms.hostooplecom.netdna-cdn.com": [7540], "gov.uk": [6366], "schedule.timetrade.com": [16455], "charlie.bz": [3013], "www.bviphotovideo.com": [1583], "adallom.com": [552], "c-and-a.com": [2496], "counter.hitslink.com": [7426], "search3.openobjects.com": [12022], "golinks.ncsu.edu": [11492], "indiemerchstore.com": [8070], "axptravel.americanexpress.com": [935], "axeso5.com": [1472], "www.onswitchit.ca": [11816], "al-akhbar.com": [772], "www.marinsoftware.com": [9997], "*.vhf.de": [19734], "www.dccc.org": [4014], "cci.ornl.gov": [11693], "www.performancewheel.com": [12570], "channels.us.dell.com": [4335], "ehrensenf.de": [5121], "a320.emulate.su": [5225], "autodiscover.education.leeds.ac.uk": [17318], "www.liwenhaosuper.com": [9519], "trybooth.com": [19701], "cdn9.iconfinder.com": [7921], "www.mirt.net": [10449], "v.ok.ru": [11769], "puma.com": [13227], "secure-nikeplus.nike.com": [11401], "www.bokborgen.se": [2183], "db.tt": [4768], "payments-parkright.westminster.gov.uk": [18220], "direct123.fi": [4523], "www.naturalresources.wales": [11102], "storebrand.no": [15494], "mansfield.gov.uk": [19382], "lists.asiabsdcon.org": [1258], "*.benzinga.com": [1782], "www.plurk.com": [12828], "git.rtems.org": [13472], "www.connochaetos.org": [3586], "support.google.com": [6834], "cdn.arkena.com": [1198], "www.allianz-fuer-cybersicherheit.org": [852], "support.realvnc.com": [13627], "ssl.pstatic.net": [13188], "derstandard.at": [19111], "fax.org": [13207], "www.ideastorm.com": [7928], "hydra.q1media.com": [13275], "i.ramhost.us": [13397], "www.djangoeurope.com": [4591], "privacy-policy.truste.com": [15856], "joyclub.de": [8650], "*.windriver.com": [18337], "webftp.pipni.cz": [12257], "www.reuffel.de": [19550], "mail.virginmedia.com": [17737], "cdn-storage.br.de": [1539], "static.bitcoinstats.com": [1972], "plmap.oracle.com": [12082], "blog.bizo.com": [2030], "*.hsr.ch": [17237], "www.mediatemple.net": [10165], "www.fs01.androidpit.info": [1009], "www.tagasauris.com": [15906], "cleanenergyexperts.com": [3224], "nbc.com": [11048], "ca.libreoffice.org": [9311], "ethics.data.gov": [4175], "www.twitpic.com": [16890], "pix.btrll.com": [2322], "www.isleaked.com": [8362], "orange.ch": [12088], "*.branch.com": [2276], "www.nrsr.sk": [14972], "play.yandex.com.tr": [18649], "service.gmx.com": [6350], "cloud.staticzacks.net": [18775], "secure.rocketnet.jp": [13940], "backoffice.mydigipass.com": [10828], "m.datart.cz": [4008], "www.recsports.osu.edu": [11760], "www.codementor.io": [3371], "jwpltx.com": [9589], "accountportal.uic.edu": [17231], "cabinet.pogamay.ru": [12849], "www.mi4urinsk.ru": [10332], "future.arte.tv": [18966], "items.alitrip.com": [818], "de.calameo.com": [2731], "reservoir.marketstudio.net": [10020], "apollo.unlimitedhost.asia": [17358], "indyreader.org": [8080], "openmedia.org": [11959], "www.norwegian.com": [11508], "suggests.seferler.yandex.com.tr": [18649], "spreadshirt.es": [15300], "ismart.engineering.osu.edu": [11760], "www.bournemouth.gov.uk": [2251], "www.ipcc.ch": [7789], "www.gust.com": [7025], "www.hiawatha-webserver.org": [7390], "scratchcards.williamhill.com": [18315], "central.terra.com.mx": [16128], "www.nealpoole.com": [11120], "nimbushosting.co.uk": [11408], "spreadshirt.ch": [15300], "www.meet.fm": [10208], "fortumo.com": [6060], "www.censys.io": [2941], "images.backstreetmerch.com": [1603], "flamehut.just-eat.ie": [19328], "tp.taobao.com": [15952], "www.korbit.co.kr": [8984], "mijnlandal.nl": [18490], "*.clear-link.com": [3228], "coveredca.com": [3731], "fastserv.com": [5682], "cloud.mobify.com": [10494], "*.wiredforchange.com": [14254], "httplab.it": [7590], "ras-gateway.ncl.ac.uk": [10884], "www.foodler.com": [6005], "azchampion.com": [5627], "reproducible.debian.net": [4273], "videolan.org": [17688], "s2.shinystat.com": [19587], "www.fanpagegeneratorpro.com": [6716], "crowdin.com": [3825], "forevernew.com.au": [6031], "onlineshop.cz": [19459], "upsploit.com": [17381], "qa.medicare.gov": [19392], "intevation.de": [8297], "www.blacklotus.net": [2047], "dl.bananian.org": [1636], "www.sp.nl": [14151], "icstars.com": [7923], "fmod.org": [5968], "cbe.engineering.osu.edu": [11760], "www.cheshiremerseysidecsu.nhs.uk": [10913], "dabs.com": [4100], "support.tenten.vn": [16117], "forums.udacity.com": [17110], "www.ziggo.com": [18861], "www.congresstmi.org": [5783], "mailnull.com": [9878], "www.cse.osu.edu": [11760], "jucy.co.nz": [8463], "tb.raiffeisendirect.ch": [13527], "www.gogotraining.com": [6806], "pingtest.net": [11894], "itrequest.ucsc.edu": [17305], "graphics.stanford.edu": [15383], "datenschutzzentrum.de": [8052], "static.wowhead.com": [18782], "cansecwest.com": [2789], "esuppliers.ic.nhs.uk": [10913], "tools.its.waikato.ac.nz": [17347], "northsomerset.greenparty.org.uk": [6925], "www.bostonglobe.com": [16251], "www.bgamed.de": [1516], "websrv01.kidshealth.org": [8883], "ch.ch": [19052], "*.acr.org": [941], "ceop.police.uk": [19049], "nameid.org": [11020], "blog.xapo.com": [18541], "www.oxfordtoday.ox.ac.uk": [17271], "secure.delicious.com": [4328], "open-data.europa.eu": [5421], "corp.onlinesbi.com": [11873], "campusvisit.osu.edu": [11760], "aerospace.osu.edu": [11760], "a0.webproxy.nic.tel": [16100], "*.visualrevenue.com": [17784], "www.transformativeworks.org": [16667], "media.business.spectrum.com": [15248], "media1.woolworths.com.au": [18422], "lists.ubuntu.com": [17102], "d.adrolays.de": [625], "www.studifit.htwk-leipzig.de": [7114], "student.uaa.alaska.edu": [17233], "*.vo.msecnd.net": [10677], "www.fiber7.ch": [5770], "labaia.ws": [9124], "m.oracle.com": [12082], "www.business.kaspersky.com": [8806], "docusign.net": [4630], "www.apps.ups.com": [17007], "apps.obfs.uillinois.edu": [16960], "weakdh.org": [18031], "static.atv.hu": [362], "staff.uclan.ac.uk": [17307], "www.crypteron.com": [3850], "verify.givingprograms.com": [6691], "*.fox-toolkit.org": [5589], "g3.std3.ru": [15445], "bcj.ch": [19333], "*.redbullmobile.com.au": [13670], "libraries.io": [9303], "static3.miniclipcdn.com": [10423], "www.aclunc.org": [260], "codeclub.org.uk": [3354], "elance.com": [5140], "ppc.osu.edu": [11760], "static-bii.businessinsider.com": [2454], "hud.gov": [17018], "gridforums.nvidia.com": [10985], "*.btc-trade.ru": [1554], "assetmanager.api.qbrick.com": [13300], "windstreambusiness.com": [18348], "www.trendmicro.de": [16715], "www.frivillighetshuset.no": [6221], "www.acttea.ut.ee": [17069], "www.emc2.cornell.edu": [3676], "testfamilysafety.bing.com": [1895], "www.suitey.com": [15587], "www.superteacherworksheets.com": [15623], "www.pirateparty.ca": [12712], "www.chatlio.com": [19053], "levoleague.com": [9276], "winswitch.org": [18341], "www.ams.jhu.edu": [16296], "www.mashape.com": [10044], "www.consumerreports.org": [3600], "ds1.static.rtbf.be": [14011], "www.trumba.com": [16778], "static.mediatemple.net": [10165], "*.cduniverse.ws": [2568], "www.interhyp.de": [8250], "*.influads.com": [8097], "freshmilk.tv": [6205], "roger.ucsd.edu": [16939], "www.socialcodedev.com": [15063], "www.verbling.com": [17615], "openbsc.osmocom.org": [12126], "*.adbutler.com": [518], "account.sonyentertainmentnetwork.com": [15149], "mxcursos.com": [9813], "localedge.com": [9538], "blogit.ashleymadison.com": [1254], "www.adjug.com": [526], "the-independent-news.com": [8056], "www1.livenation.*": [9481], "royaldns.net": [19558], "www.qt-apps.org": [19461], "*.ixquick-proxy.com": [8405], "cdn.cstatic.net": [3901], "songlist.hclippr.com": [7051], "www.lenovovision.com": [9251], "www.remusexhauststore.com": [13763], "graphics.nytimes.com": [11000], "nesl.edu": [10901], "sponsoredprograms.illinois.edu": [17258], "www.tweetadder.com": [16868], "www.esdiscuss.org": [4969], "metrics.geek.com": [18860], "www.sfconservancy.org": [15099], "www.wbginvestmentclimate.org": [8259], "www.sbvimprover.com": [14084], "hgst.com": [7059], "zen.nzherald.co.nz": [11314], "www.negativesum.net": [11135], "etipos.sk": [5388], "download.centreon.com": [2957], "888voip.com": [201], "portal.goldkeys.org": [6815], "orenburg.rt.ru": [13469], "www.nhsbsadental.nhs.uk": [10913], "*.twitter.com": [16892], "www.dmx-austria.at": [4049], "get-digital.nl": [6562], "gaauth.qq.com": [13285], "blog.fefe.de": [5742], "b0.thejournal.ie": [16224], "www.tradeblock.com": [16634], "unvanquished.net": [17374], "www.andaluciapropertyrentals.com": [996], "minecraftserverlijst.nl": [10416], "secure.bingads.microsoft.com": [10364], "www.torrentshack.me": [16584], "*.ekomi.co.uk": [4921], "addons.modulus.io": [10527], "publicfeed.stubhub.de": [15534], "edu.artschools.com": [1224], "www.anonymousspeech.com": [1050], "qrsolutions.com": [13287], "www.socrata.com": [15082], "www.dgl.cx": [4438], "my.ysu.edu": [18742], "www.cometdocs.com": [3464], "jobs.businessinsider.com": [2454, 14829], "bluemovie.net": [2126], "www.ballicom.co.uk": [1631], "www.gototraining.com": [6788], "ciety.com": [3133], "printchomp.com": [13069], "www.ultrafacil.com.br": [17134], "mail.silentcircle.com": [14786], "cspinet.org": [2675], "mse.osu.edu": [11760], "www.netistrar.com": [11237], "linc.mit.edu": [9749], "which.net": [18240], "cms.ipressroom.com.s3.amazonaws.com": [7796], "alumni.buffalo.edu": [17297], "www.jazz.co": [8536], "www.crosskeyshomes.co.uk": [19091], "shopping.nero.com": [11162], "buy.aliyun.com": [821], "interacposcentre.ca": [8235], "lippupalvelu.fi": [16421], "caixadirectaonline.cgd.pt": [2978], "hoteltotravel.com": [7555], "www.casro.org": [2887], "global.ib-ibi.com": [7674], "codeship.com": [3378], "www.eugene.kaspersky.com": [8806], "www.systemed.net": [15764], "eniro.se": [5276], "postbank.de": [12959], "inburke.com": [8040], "www.118information.co.uk": [19], "www.smartos.org": [14990], "secure.silverrushstyle.com": [14800], "streaming.linux-magazin.de": [9393], "cityoflondon.firmstep.com": [19183], "www.pressfreedomfoundation.org": [6173], "sellercentral.amazon.co.uk": [910], "doriancolor.com": [4685], "jobindex.dk": [8597], "v.web.de": [18050], "www.swisspost.com": [12949], "web.de": [18050], "translate.apan.org": [329], "southeast.greenparty.org.uk": [6925], "1nsk.ru": [59], "sprav.yandex.kz": [18652], "www.secure.denic.de": [4362], "beta.hstor.org": [7586], "developer.doublerobotics.com": [4713], "tesco.com": [16134], "www.canon.at": [2809], "delivery.g.switchadhub.com": [15701], "www.jamadu.ch": [3644], "c.enhance.com": [9984], "wpi.edu": [18426], "www.netguava.com": [11234], "leet.getdigital.de": [6611], "metooo.io": [10317], "ufies.org": [16950], "www.directspace.net": [4525], "wd.sharethis.com": [14668], "bible.com": [18710], "abr.gov.au": [1383], "www.ntsb.gov": [11086], "udistrital.edu.co": [17112], "mywebsite.1and1.co.uk": [53], "resilientcommunities.govspace.gov.au": [6867], "police.uic.edu": [17231], "icims.com": [7685], "*.nugg.ad": [11571], "www.918autoloans.com": [208], "support.localist.com": [9541], "myshaklee.com": [14656], "yosemitenews.info": [18697], "intranet.mecheng.ohio-state.edu": [11761], "stavrovski.net": [15439], "yandex.net": [18654], "www.bretagne-web.eu": [2305], "tools.ietf.org": [7721], "cpaptalk.com": [3745], "www.etapestry.com": [5370], "adcash.com": [567], "auth.withsix.com": [18379], "*.argusleader.com": [1189], "mail103.websupport.sk": [18160], "blog.xs4all.nl": [18535], "engineering.gosquared.com": [6784], "acpica.org": [264], "bugs.xdebug.org": [18552], "www.marketplace-used.com": [10019], "services.pressreader.com": [13035], "multicastmedia.com": [10699], "ncsc.nl": [10886], "shagaholic.com": [785], "www.easywhois.com": [5032], "www.aeea.asso.ulaval.ca": [17229], "upload.taobao.com": [15952], "sg.anz.com": [315], "serve.com": [14599], "bukkit.org": [19024], "wetransfer.com": [18025], "*.symanteccloud.com": [15715], "ece.engineering.osu.edu": [11760], "www.igtt.hscic.gov.uk": [19264], "watkins.edu": [18003], "metalab.at": [10306], "gotmerchant.com": [6856], "raps.wustl.edu": [17993], "www.viraj.ulaval.ca": [17229], "blog.viaduct.io": [17662], "threadingbuildingblocks.org": [16390], "cdn.myfonts.net": [10759], "www.appdevelopermagazine.com": [1112], "calmessages.berkeley.edu": [17240], "psara.abenteuerland.at": [409], "contacts.zoho.com": [18884], "simlar.org": [14812], "wetter.tagesschau.de": [19656], "www.observer.com": [18428], "*.parc.com": [12350], "resonant.org": [13809], "*.labaia.ws": [9124], "linuxpl.com": [9434], "gosquared.com": [6784], "meltwaternews.com": [10243], "lists.openstreetmap.org": [11979], "ibm.com": [7675], "sfs.wustl.edu": [17993], "www.maths.nottingham.ac.uk": [11528], "www.lipreading.org": [9441], "jmdekker.it": [19321], "*.necdisplay.com": [10895], "content.longtailvideo.com": [9589], "packages.sabayon.org": [14214], "511tactical.com": [169], "gl.ch": [19648], "www.keenot.es": [8837], "ntk.me": [11554], "xmlsearch.yandex.kz": [18652], "store.parallels.com": [12392], "www.vt.edu": [17740], "ssl.safaribooksonline.com": [14222], "www.ldpreload.com": [9188], "members.nearlyfreespeech.net": [11122], "power.freenet.de": [6180], "media-azeroth.cursecdn.com": [3934], "fidoalliance.org": [5572], "itunes.apple.com": [1120], "plagiarism.arts.cornell.edu": [3676], "www.cleanenergyexperts.com": [3224], "*.necuhb.org": [11130], "apismart.jd.com": [8423], "proj-lti.web.cern.ch": [2575], "vidble.com": [17681], "nars.osu.edu": [11760], "news.wustl.edu": [17993], "www.tangiblesecurity.com": [15945], "2015.eurobsdcon.org": [5404], "www.flixden.com": [5932], "seattleix.net": [14452], "www.guidestar.org": [7007], "calendar.northeastern.edu": [11499], "www.aclu-nj.org": [259], "www.bundespublikationen.admin.ch": [19648], "*.signals.com": [14782], "www.cwspod.com": [2692], "maps.mail.ru": [9874], "encrypt.to": [5235], "gyazo.com": [7035], "*.dmtracker.com": [4051], "infinet.com.au": [8092, 8093], "akira.org": [765], "www.bc.edu": [1503], "pue.zus.pl": [18769], "webmail.wedos.net": [17901], "amnistia.org.mx": [977], "*.pcwelt.de": [12498], "i.arvm.de": [1239], "www.nsfwcorp.com": [11549], "observatory.leeds.gov.uk": [19353], "blog.tape.tv": [15956], "distrowatch.org": [4577], "apps.washingtonpost.com": [17990], "na.decdna.net": [4281], "e.infogr.am": [8109], "openresty.org": [12043], "archive.installgentoo.net": [18700], "pollinghelp.cit.cornell.edu": [3676], "tokyotosho.se": [16537], "netswipe.com": [8672], "intrahr.nih.gov": [11052], "hofstra.edu": [7444], "autodiscover.boldchat.com": [2187], "www.cbfisap.ed.gov": [4889], "cdn.ncsu.edu": [11492], "tryzen99.com": [16807], "images.hostels.com": [18042], "www.cines.fr": [2609], "click4assistance.co.uk": [3242], "webclaim.net": [4894], "bugs.openmpt.org": [11951], "servercircle.com": [14610], "autoconfig.yandex.by": [18648], "account.yunos.com": [18749], "shop.newsmax.com": [11342], "*.premiumize.me": [13028], "shareweb.kent.gov.uk": [8851], "www.valdhaus.co": [17531], "lists.stanford.edu": [15383], "www.open.hpi.de": [7090], "www.drv-bund.de": [4407], "downloads.bitnami.com": [2011], "release.debian.org": [4275], "candhlures.com": [2806], "image-assets.stackcommerce.com": [15361], "laweval.northeastern.edu": [11499], "*.open-pc.com": [19462], "edu.tiki.org": [16444], "www.openfarmgame.com": [12010], "www.findlegalforms.com": [5838], "iqt.org": [8025], "www.prettylightsmusic.com": [13041], "www.gosuslugi.ru": [6852], "pro.realty.mail.ru": [9874], "suomi.fi": [19640], "www.escrowlive.net": [5355], "www.roboxchange.com": [13442], "www.helsingor.dk": [7313], "www.christ-swiss.ch": [3645], "mapquestapi.com": [9970], "swordfishdc.com": [15707], "worldlandscapearchitect.com": [18456], "blogs.msdn.com": [10361], "webforms.telford.gov.uk": [19669], "topatoco.com": [16564], "*.ea.com": [5151], "openstreetmap.fr": [12045], "*.hrep.nhmrc.gov.au": [7606], "mysql.it": [10780], "catchy.com": [2900], "luckymarmot.com": [9650], "forum.ipvanish.com": [7799], "s.mobioinsider.com": [10504], "planapp.tue.nl": [15874], "*.solidcactushosting.com": [15119], "www.simlystore.com": [14813], "nwf.org": [11088], "ruc.dk": [13971], "help.vodafone.co.nz": [17812], "thegcloud.com": [16279], "www.akismet.com": [766], "harperreed.com": [7209], "plusme.net": [12831, 12832], "cz-hosting.com": [2697], "engagingnetworks.net": [5262], "yourlocaledge.com": [18729], "sysnews.ncsu.edu": [11492], "www.textracer.dk": [16161], "diasporabr.com.br": [4449], "yoyogames.com": [19797], "point.vzp.cz": [17524], "*.lokus.se": [9567], "www.muspy.com": [10726], "developer.mediamath.com": [10157], "mice.jd.com": [8423], "propertydeals.com.pk": [13159], "fisync.dwolla.com": [4816], "secureholidays.com": [18490], "www.reddpics.com": [13689], "www.nightdev.com": [11394], "pan.baidu.com": [1618], "thephone.coop": [16347], "www.eriga.lv": [13880], "www.consilium.europa.eu": [5421], "intersectalliance.com": [8295], "www.icmag.*": [2808], "yoursav.net": [18739], "www.filmon.com": [5812], "cbb.dk": [2913], "vk.me": [17491], "opal.com.au": [11904], "www.strato-pro.com": [14194], "blackberry.com": [2050], "*.midasplayer.com": [8897], "contact.informahealthcare.com": [8119], "www.bitaddress.org": [1954], "blog.netspi.com": [11206], "caltech.edu": [2757], "www.hazing.cornell.edu": [3676], "support.contentful.com": [3614], "*.blogblog.com": [2107], "admin.xnet.cz": [18531], "www.aics.riken.jp": [13430], "secure.static.tumblr.com": [16826], "gnome.org": [6354], "www.devzing.com": [4419], "fxphd.com": [6290], "advisors.dell.com": [4335], "app-us5.resrc.it": [13599], "www.brighttalk.com": [2323], "se.norton.com": [11505], "www.magix.info": [9707], "cdn.photosynth.net": [12649], "www.minbzk.nl": [11132], "www.kiwicon.org": [8929], "anwiki.com": [16856], "proxify.com": [13178], "directory.fedoraproject.org": [5730], "mashape.com": [10044], "www.anon-ib.ru": [1038], "www.olimex.com": [11781], "www.pokemon-world-online.net": [12856], "soc.indusguard.com": [8075], "chase.com": [3026], "tram.stanford.edu": [15383], "forum.xfce.org": [18512], "maker.tv": [9912], "www.fictiv.com": [5773], "www.podupti.me": [12841], "nationstates.net": [11044], "religionnews.com": [13755], "adeccowaytowork.com": [580], "www.common-lisp.net": [3484], "one.ubuntu.com": [17102], "gifttool.com": [6641], "www.virtualqube.com": [17750], "cdn.bayan.ir": [1703], "gmx.at": [6350], "www.chickensoup.com": [3074], "strava.com": [15513], "esdal.dft.gov.uk": [19116], "*.adnxs.com": [612], "cdn.engine.adsupply.com": [544], "ftp.openmandriva.org": [11956], "itsh.bo": [19312], "wed.is": [18176], "s0.c4tw.net": [2505], "www.jobzonen.dk": [8604], "www.marxists.org": [10042], "partnerlocator.symantec.com": [15715], "www.ppl.cz": [12283], "www.adcap.biz": [519], "www.talkingfrench.com": [15932], "prisonphonejustice.org": [13077], "zohocorp.com": [18885], "www.starrez.com": [15394], "ucalgarymag.ca": [16944], "advertising.microsoft.com": [10364], "files.list.co.uk": [16199], "www.traffichaus.com": [16652], "www.muckrock.com": [10684], "orderit.stanford.edu": [15383], "ebankingbutsecure.ch": [4870], "wiki.mageia.org": [9847], "support.rhinosupport.com": [13862], "exeterfamily.co.uk": [5491], "alliedmods.net": [853], "ercpe.de": [5338], "www.calazan.com": [2733], "videopros.com": [17690], "shellterproject.com": [14697], "thespartaninstitute.com": [15226], "*.cyberphoto.se": [3963], "www.encrypt.to": [5235], "mietek.io": [10379], "subscribe.washingtonpost.com": [17990], "zd.net": [1920], "cdn.cdtoimge.com": [3922], "*.thepublicindex.org": [16206], "galois.com": [6410], "stats.avaaz.org": [1437], "shopmania.es": [14717], "forum.stratechery.com": [15508], "www.iraiser.eu": [8353], "parentsweekend.stanford.edu": [15383], "patechmasters.com": [12623], "wenda.taobao.com": [15952], "www.transactauto.com": [16662], "qa.debian.org": [4275], "www.jabjab.de": [8471], "www.docusign.com": [4629], "*.reddit.com": [13690], "lithive.com": [9454], "diff3.smartadserver.com": [14982], "www.dirk.to": [4535], "*.fmylife.com": [5580], "www.apsjobs.gov.au": [335], "stats.webplatform.org": [18079], "www.fluxx.io": [5959], "tm319.tumblr.com": [16826], "*.pocketcasts.com": [12837], "utoronto.ca": [17344], "developers.kongregate.com": [8977], "www.m-wm.com": [9718], "secure.gq.com": [6379], "help.songkick.com": [19609], "gobierno.usa.gov": [17029], "assistly.com": [4392], "*.alz.org": [900], "lasvegas.hertzequip.com": [7372], "fmworld.net": [6245], "legacydev.pfizerpro.com": [12612], "autodiscover.food.leeds.ac.uk": [17318], "passthepopcorn.me": [12425], "sudoroom.org": [15580], "nemlogin.wayf.dk": [17896], "www.portlandoregon.gov": [3195], "www.valtiolle.fi": [17535], "www.mdosche.de": [10130], "www.macports.org": [9821], "static.planetminecraft.com": [12770], "augmentedracing.redbull.es": [13666], "plus.politiken.dk": [12876], "myinteriordecorator.com": [10764], "sustainability.wustl.edu": [17993], "*.superbreak.net": [7452], "www.csob.sk": [3896], "slsp.sk": [14974], "cloudsleuth.net": [3294], "partner-myefc.efinancialcareers.com": [4911], "www.admin.cam.ac.uk": [17243], "statewatch.org": [15424], "www.citizensforscience.org": [3175], "vine.co": [17722], "*.behance.net": [1756], "www-cache-css.extensis.com": [5523], "gaborszathmari.me": [6402], "*.usbank.com": [17036], "www.postofficeshop.co.uk": [12955], "*.hrusecky.net": [10342], "www.dom.bg": [4645], "groupon.com.br": [6973], "www.latex-project.org": [9116], "www.thebuddyforum.com": [2230], "js.web.de": [18050], "brashear.me": [2289], "ib.swedbank.nl": [15682], "pimsweb.tameside.gov.uk": [19660], "whitehathouston.com": [18254], "www.kotulas.com": [8996], "dps.ws.hmrc.gov.uk": [7084], "*.atrativa.com.br": [1331], "oneexchange.com": [11832], "www.leadformix.com": [9193], "statistik-gallup.net": [15840], "www.blocket.com": [2093], "www.osdir.com": [11668], "californiawalkintubcompany.com": [2751], "*.intuit.com": [8304], "binsearch.net": [1888], "my.jhu.edu": [16296], "safeassign.com": [14226], "redditmade.com": [13694], "www.magicalbutter.com.au": [9857], "discovery.refeds.org": [13413], "webdesk.1and1.com": [51], "*.alumniconnections.com": [896], "folkets.dk": [5986], "www.elrepo.org": [4924], "www.banking.co.at": [1647], "gpg4usb.cpunk.de": [3746], "www.piware.de": [10034], "forum.worldofwarships.*": [18462], "www.zerocater.com": [18842], "warehouse.python.org": [13272], "www.liftware.com": [9340], "ld-st11.itunes.apple.com": [1120], "trusted-introducer.org": [16786], "ossswebcs.admin.uillinois.edu": [16960], "store.globalresearch.ca": [6732], "uxt.ucsd.edu": [16939], "surprisinglyfree.com": [15655], "www.kids.usa.gov": [17029], "blogs.nlnetlabs.nl": [10940], "david-campbell.org": [4223], "market.bigmir.net": [1866], "forums.plex.tv": [12814], "mcp.anchor.com.au": [993], "hosting90.cz": [7527], "admin-survey.usa.gov": [17029], "esta.cbp.dhs.gov": [4035], "*.d4designstudios.com": [3999], "www.1in3campaign.org": [11852], "hacks.mit.edu": [9747], "*.reevoo.com": [13715], "www.hr.od.nih.gov": [11052], "antergos.com": [1062], "www.drugs-forum.com": [4777], "ubmaviation.com": [16927], "engagedoncaster.co.uk": [5261], "imba.illinois.edu": [17258], "mikeash.com": [10383], "cloutoday.nl": [3277], "rbinvestwdc.eu": [13402], "kinox.nu": [19337], "akamai.kaltura.com": [8775], "static.spiceworks.com": [15266], "www.vue.com": [12506], "konto.t-mobilebankowe.pl": [19654], "blog.safariflow.com": [18428], "privatepaste.com": [13101], "www.societyforscience.org": [15078], "www.researchblogging.org": [13793], "gg.gov.au": [6874], "js.intercomcdn.com": [8245], "*.ede-look.org": [19462], "itella.fi": [19310], "gohugo.io": [19224], "housing.osu.edu": [11760], "uclearning.ucsd.edu": [16939], "www.3taps.com": [138], "vueling.com": [17870], "www.risiinfo.com": [13433], "*.creation.co.uk": [3775], "aoe.com": [316], "adspeed.net": [541], "tusfiles.net": [16849], "secure.ngagelive.com": [11372], "www.defenceandsecurity.ca": [2512], "d.adsbyisocket.com": [8373], "cdn.exm.nr": [5480], "status.silktide.com": [14796], "stripe.com": [15525], "howsecureismypassword.net": [7569], "si.wp.pl": [17921], "*.evotronix.com": [5463], "pa.drweb.com": [4783], "share.pingdom.com": [12687], "cchcatalog.com": [2548], "protu.fi": [13149], "cdn.ch2.stg.comcast.com": [3461], "audiencetargeting.com": [1356], "wiki.appnexus.com": [1109], "app.weswap.com": [18024], "www.fsa.go.jp": [5596], "international.berkeley.edu": [17240], "e2e-uat.ti.com": [16152], "quackquackgo.nl": [13320], "m.mutualofamerica.com": [10733], "sitemanager.itunes.apple.com": [1120], "cdn.print.io": [13065], "www.fronter.com": [19200], "cdn.images.dailystar.co.uk": [4112], "c2.thejournal.ie": [16224], "espace2013.cern.ch": [2575], "relevate.ru": [13753], "www.diasp.de": [4445], "login.mobile.de": [19403], "profile.ak.fbcdn.net": [5700], "s.bsd.net": [1541], "ece.illinois.edu": [17258], "contactus.netflix.com": [11229], "www.flipboard.com": [5925], "mbox9.offermatica.com": [11738], "www.asmc.de": [1269], "byu.edu": [1587], "www.emergingthreats.net": [5206], "lippu.fi": [9440], "www.chromium.org": [3119], "www.umich.edu": [17266], "q.stripe.com": [15525], "legal.nodejitsu.com": [11453], "www.cfengine.com": [2590], "uni-tuebingen.de": [17346], "www.abbo-shop.ch": [401], "www.aaai.org": [388], "www.mivolunteers.org": [17835], "cdn.raymond.cc": [13585], "www.fedorahosted.org": [5727], "hr.williams.edu": [18316], "www.tribalfusion.com": [16725], "ja.foursquare.com": [6082], "www.splone.com": [15284], "*.securepaynet.net": [14507], "assets.realclearpolitics.com": [13623], "srv1.openwireless.org": [12029], "poormanmotorsports.com": [12900], "mog.com": [9774], "www.ssafastore.co.uk": [14171], "ico.stanford.edu": [15383], "rb1.stockport.gov.uk": [19628], "www.headstrong.de": [7256], "support.maxcdn.com": [10091], "mytemp.email": [10790], "www.vtbrussia.ru": [17515], "aufeminin.com": [1469], "choice.microsoft.com": [10364], "*.brightcove.com": [2328], "*.media.mobyhub.com": [10506], "espacejeux.com": [5360], "gotvape.net": [6854], "www.afcea.org": [280], "www.courtlistener.com": [3720], "blogs.cpanel.com": [2651], "www.nydailynews.com": [10990], "img.metaboli.fr": [10303], "freedom-to-connect.net": [6166], "www.hackademix.net": [7139], "shs.ucsd.edu": [16939], "mailtracker.livingsocial.com": [9517], "employeeexpress.gov": [5217], "stats.ft.com": [5826], "apicasystem.com": [1092], "s4.qhimg.com": [13302], "cdn-www.reflected.net": [13718], "www.sentinelone.com": [14587], "turn.appear.in": [1114], "perl.org": [12576], "*.vba.va.gov": [17019], "analytics.yandex.by": [18648], "www.readability.com": [13615], "*.hboeck.de": [7049], "www.comdirect.de": [19072], "lokus.no": [9566], "weechat.org": [18177], "*.employment.gov.au": [4369], "*.vk.me": [17491], "logs1.smithsonian.museum": [15008], "php-fusion.co.uk": [12249], "rxpharmacyusa.com": [14051], "hi.alipay.com": [817], "usa.anon-ib.la": [1036], "wallet.la": [17961], "company.yandex.com": [18651], "acm.wustl.edu": [17993], "justitie.nl": [11132], "llvm.org": [9090], "addons.alfresco.com": [802], "*.danzappone.com": [16328], "affiliate.abftracker.com": [415], "ondemand.duke.edu": [4798], "newmysky.sky.com": [14924], "www.mobiusconsortium.org": [9769], "knot-dns.cz": [8947], "dzne.de": [6556], "leightlab.engineering.osu.edu": [11760], "support.countermail.com": [3705], "s5.qhimg.com": [13302], "datenschutz-ist-buergerrecht.de": [4218], "gic7.mycdn.me": [10824], "s3.thejournal.ie": [16224], "www.minedu.sk": [14972], "hongkongfp.com": [19258], "www.europa-apotheek.com": [5419], "secure-static-cdn2.ustream.tv": [17451], "media.crikey.com.au": [3796], "elliptictech.com": [5171], "www.adingo.jp": [592], "search.stanford.edu": [15383], "quickline.ch": [19530], "bahnshop.de": [1617], "buy.symanteccloud.com": [15715], "myphone.coop": [10822], "ir.homedepot.com": [7469], "lists.junge-piraten.de": [8679], "camaya.net": [2764], "erecruit.upu.int": [17008], "freejeremy.net": [6141], "www.eolewater.com": [5315], "*.avangate.com": [1439], "www.laaclu.org": [250], "www.valoancaptain.com": [17467], "www.scotthelme.co.uk": [14399], "youtube.com.es": [18709], "blog.genua.de": [19212], "cm.be": [3109], "www.areweslimyet.com": [1177], "portforward.com": [12931], "shared.gmocloud.com": [6343], "www.countermail.com": [3705], "militarysuper.gov.au": [10395], "www.scribblelive.com": [14412], "*.roundhouse.org.uk": [13987], "cdn.zuhah.com": [18921], "nttxstore.jp": [11557], "youtube.com.ee": [18709], "kwiksurveys.com": [9048], "youtube.com.eg": [18709], "weheartit.com": [18017], "publicintelligence.net": [13210], "zoosk.com": [18906], "telvue.com": [16067], "earthlink.net": [5007], "www.scene.org": [8269], "dein.dk": [4319], "www.strasweb.fr": [15507], "opensource.cse.ohio-state.edu": [11761], "mentoring.stanford.edu": [15383], "forumimages.somethingawful.com": [15130], "www.garron.me": [6461], "tm.com.my": [16083], "dg53.mycdn.me": [10824], "fazedores.catracalivre.com.br": [2908], "client.jabbi.pl": [8480], "zmr.wienit.at": [18284], "blackboard.stonybrook.edu": [15480], "appsconnect.oracle.com": [12082], "fangamer.net": [5653], "payments.camden.gov.uk": [2772], "fastweb.com": [5689], "warmcat.com": [17979], "www.4.cn": [140], "returnpath.net": [13834], "www.youtube.sn": [18709], "www.pijnacker-nootdorp.nl": [11132], "*.hegerys.com": [7282], "distrowatch.com": [4577], "bluez.org": [2138], "www.dearfcc.org": [4264], "ultrabug.fr": [17137], "www.judicialwatch.org": [8663], "develop.thegreatcoursesplus.com": [16284], "www.curesec.com": [3928], "www.jmdekker.it": [19321], "*.spotxchange.com": [15294], "traffic.gemius.com": [6516], "ip2location.com": [7786], "webtrends.com": [18171], "www.microsoft.com": [10364], "connected.tante.cc": [15949], "osp.drweb.com": [4783], "www.heanet.ie": [7268], "host.ie": [4513], "testweb.derby.gov.uk": [4380], "www.lib.uchicago.edu": [17246], "eyf.tameside.gov.uk": [19660], "www.eigenlab.org": [19151], "*.berlin-airport.de": [1790], "bedrockbluenext.msn.com": [9796], "castle-technology.co.uk": [2891], "www.youtube.hu": [18709], "annevankesteren.nl": [1029], "es.support.tomtom.com": [16540], "en.support.guildwars2.com": [13882], "lists.volatilesystems.com": [17824], "*.cheezburger.com": [3056], "webcontrolcenter.com": [18113], "www1.hgst.com": [7059], "s-paimai.taobao.com": [15952], "www.vehiclevisuals.com": [17591], "search.1and1.com": [51], "ads.paper.li": [12379], "my.covad.com": [3725], "hallgroup.engineering.osu.edu": [11760], "support.ihc.ru": [7736], "akademy2009.kde.org": [8718], "purdue.syncplicity.com": [15730], "www.flixbus.fr": [5931], "w01.my-files.de": [10742], "tweetnacl.cr.yp.to": [3748], "secure.somerset.gov.uk": [15127], "osucentralreceiving.osu.edu": [11760], "spartafx.com": [15225], "lists.desy.de": [4399], "alternalabs.com": [879], "maybemaimed.com": [10103], "www.zdv.uni-tuebingen.de": [17345], "www.london-nano.com": [9574], "www.fundersclub.com": [6261], "testobb.ppby.de": [12707], "verisignlabs.com": [17624], "ws.vtc.sim-technik.de": [14805], "rcm.amazon.com": [910], "shared.opendns.com": [11932], "caimao.com": [2719], "secure.consumerfinance.gov": [3602], "facebook.com": [5620], "activity.serving-sys.com": [14628], "*.business2community.com": [2456], "my.supplychain.nhs.uk": [10913], "wohnungsunternehmen.telecolumbus.de": [16073], "parkrun.org.uk": [12407], "www.ebankingabersicher.ch": [4870], "www.bananian.org": [1636], "www.ya.ru": [18626], "stackmonkey.com": [15362], "secure.twitch.tv": [16888], "paid.outbrain.com": [12150], "*.spd.de": [15201], "www.southlanarkshire.gov.uk": [15190], "www.howsmytls.com": [7573], "12mars.rsf.org": [13784], "warmlyyours.com": [17980], "easy-hebergement.fr": [5033], "carmen.osu.edu": [11760], "ymail.com": [18638], "forms.dover.gov.uk": [4718], "wi-fi.org": [18271], "groups.ic.nhs.uk": [10913], "my.bigcartel.com": [1850], "www.wienernetze.at": [18284], "www.iwight.com": [7877], "zh.community.dell.com": [4335], "*.wikimedia.org": [18296], "www.cbcrypt.org": [2522], "journalistforbundet.dk": [8648], "passets-ak.pinterest.com": [12699], "brighton.com": [2331], "s6.mt-cdn.net": [9798], "data.gov.au": [4181], "secure02.kidshealth.org": [8883], "cyber.law.harvard.edu": [7219], "*.ul.ie": [16979], "sc.videoemail.com": [17695], "pirates-forum.org": [16227], "nileshgr.com": [11406], "chase.leeds.ac.uk": [17318], "www.business.illinois.edu": [17258], "cfr.org": [3702], "viddler.com": [17683], "codeplex.com": [3373], "oculu.com": [11720], "ebuzzing.com": [5044], "www.semantic-mediawiki.org": [19581], "altinget.dk": [891], "saat.yandex.com.tr": [18649], "www.whitelabel.net": [18255], "de.gamigo.com": [6445], "givedirect.org": [6687], "nine-2-one.com": [11411], "torproject.org": [16576], "delivery.ads-creativesyndicator.com": [3781], "blog.0xbadc0de.be": [7], "nhn.com": [10909], "www.resrc.it": [13599], "ubuntu-art.org": [19461, 19462], "secure-cdn.maxcdn.com": [10091], "cdn.markets.ft.com": [5826], "improvely.com": [8020], "*.chitika.com": [3092], "www.btctrader.com": [1563], "blogs.manageengine.jp": [9939], "i1.blogs.msdn.com": [9788], "www.netpol.org": [11246], "hush.technology": [7631], "www.violetdarkling.com": [17727], "support.office.com": [11743], "josefsson.org": [8631], "ntp.niehs.nih.gov": [11052], "assets.wwf.ch": [19768], "blacktonic.com": [2041], "nos-oignons.net": [11511], "biotronicslab.osu.edu": [11760], "livingsocial.com": [9517], "mastercard.com": [10052], "medicalxpress.com": [10186], "startssl.eu": [15407], "mediastore.portsmouth.gov.uk": [19508], "tchibo.ch": [15985], "www.rugshd.com": [14029], "svnweb.mageia.org": [9847], "javascriptkicks.com": [8527], "research-explorer.dfg.de": [4412], "www.theedgeclimbing.com": [16271], "ngx.cc": [11376], "*.kununu.com": [9038], "beta.drweb.com": [4783], "fishshell.com": [5883], "sedo.de": [14543], "partnerzy.ceneo.pl": [2936], "partner.tageswoche.ch": [15907], "lists.manjaro.org": [9958], "learn.shrinktheweb.com": [14746], "www.jenkins-ci.org": [8551], "cf-wp-prod.sharethis.com": [14668], "shop.fsf.org": [5600], "support.dynatrace.com": [4825], "on-web.fr": [11807], "b2bservices.dell.com": [4335], "cache0.bigcartel.com": [1850], "www.meteorhacks.com": [10314], "merton.gov.uk": [10287], "manage.sencha.com": [14576], "webmail.tierra.net": [16435], "www.mturk.com": [9805], "www.drweb.com": [4783], "idp.opera.com": [12050], "outlook.utsystem.edu": [17284], "connect.liveramp.com": [9497], "scorerestore.com": [14392], "life.baifubao.com": [1621], "westdevon.gov.uk": [18209], "strato-mailcenter.com": [14193], "www.gaminatorslots.com": [6446], "*.rediris.es": [13661], "infusionsoft.com": [8136], "openarchives.org": [12000], "freifunk-ansbach.de": [6189], "borgerservice.kk.dk": [8730], "*.energymadeeasy.gov.au": [5255], "www.directbox.at": [4529], "www.smart.ly": [14985], "id.chef.io": [3057], "datacoup.com": [4179], "edit.php.net": [12250], "jenkins.x2go.org": [18499], "sin.thecthulhu.com": [16334], "www.technologyreview.com": [16041], "www.pay4bugs.com": [12466], "s.yjtag.jp": [18617], "www.platinumskincare.com": [12788], "open.t.qq.com": [13285], "armyoutlet.de": [1206], "static-ssl.exoclick.com": [5499], "api.fixer.io": [5898], "payments.ebay.*": [4874], "www.kent.ac.uk": [17317], "zwischenwelt.milchkind.net": [10391], "tempolibero.ffs.ch": [15693], "webmail.hispeed.ch": [19716], "ovp.qbrick.com": [13300], "netmediaeurope.co.uk": [11198], "redplum.com": [13662], "*.taz.de": [15787], "pma.wedos.net": [17901], "www.roadtrippers.com": [13917], "vgocom.com": [17485], "www.switchip.info": [3533], "gfi.com": [6324], "cs.coresecurity.com": [3668], "www.tbib.org": [15983], "bynumlaw.net": [2485], "fantasycricket.telegraph.co.uk": [16082], "docs.recurly.com": [13652], "www.touchandtravel.de": [16610], "try.taobao.com": [15952], "i.kissmetrics.com": [8727], "www.hertzrent2buy.fr": [7345], "fwc.gov.au": [5632], "music.ohiolink.edu": [11762], "*.opc.gov.au": [11749], "*.xing.com": [18574], "www.android-port.de": [1005], "*.vueling.com": [17870], "irkutsk.rt.ru": [13469], "blogs.halowaypoint.com": [7176], "www.forex-metal.com": [6032], "osmand.cz": [12123], "partnerdirect.dell.com": [4335], "community.f-secure.com": [5541], "megamozg.ru": [19394], "www.gpfi.org": [6370], "www.mixi.co.jp": [10467], "www.forsvarsforbundet.se": [6053], "mx.godaddy.com": [6773], "yourworld.anz.com": [315], "img.delvenetworks.com": [4340], "oodaloop.com": [11652], "european-privacy-seal.eu": [5408], "*.magserv.com": [9862], "raphaelhertzog.com": [13552], "ipv6.google.com": [6834], "pccasegear.com": [12221], "secure2.segpay.com": [14556], "www.sslshopper.com": [14182], "p.qpic.cn": [13309], "www.ygtech.tools": [18615], "www.ip-projects.de": [7785], "ripe71.ripe.net": [13895], "municode.com": [10705], "glasgowconsult.co.uk": [19220], "enpass.io": [5282], "puush.me": [13259], "www.database.com": [4194], "www.rednerd.com": [13699], "students.law.yale.edu": [18642], "www.leibniz-supercomputing-centre.eu": [9238], "api.unity.com": [17220], "koz.io": [9001], "www.stubhub.com": [15534], "www.youtube.com.ng": [18709], "www.click-sec.com": [3241], "bradford.gov.uk": [2264], "beta.rhb.ch": [13857], "portal.victorops.com": [17671], "www.lagen.nu": [9131], "feed.issuu.com": [8378], "www.ordercourses.com": [2937], "www.tvnz.co.nz": [15886], "uofi.illinois.edu": [17258], "movie4k.pe": [10636], "www-ne.ucsd.edu": [16939], "ssl.palmcoastd.com": [12346], "blockchainbdgpzk.onion": [2091], "www.vendercom.com": [17603], "citysearch.com": [3197], "blog.vpsfree.cz": [19743], "d.p-td.com": [467], "support.weixin.qq.com": [13285], "*.sublimegit.net": [15560], "pl.libreoffice.org": [9311], "lists.mindrot.org": [10413], "www.alkasir.com": [822], "cf5.100r.org": [9], "aquent.com": [1144], "www.partnernetprogram.com": [12418], "fry.workaround.org": [18440], "podpora.nic.cz": [11379], "*.fmworld.net": [6245], "advertising.criteo.com": [3801], "*.justiceinspectorates.gov.uk": [3798], "orbis.eastsussexlearning.org.uk": [19144], "status.parse.com": [12412], "www.codeaurora.org": [3347], "www.lkml.org": [9087], "*.chromedata.com": [3116], "www.consultwebs.com": [3596], "www.resiprocate.org": [13598], "vulnscan.org": [17872], "*.list-manage.com": [9446], "wqic.nal.usda.gov": [17209], "mynewflag.com": [11305], "www.waarschuwingsdienst.nl": [11132], "www.nymity.ch": [11598], "tyrus.java.net": [8525], "www.npddecisionkey.com": [4286], "tcrl.engineering.osu.edu": [11760], "www.sig-io.nl": [14773], "edge.ldscdn.org": [16219], "zht.alipay.com": [817], "*.zerve.com": [18848], "isocpp.org": [7831], "branchable.com": [2277], "www.orange.sk": [12087], "becker.wustl.edu": [17993], "tapiture.com": [15958], "www.cryptoparty.org": [3886], "cloudup.com": [3316], "oodt.apache.org": [1086], "laup.nu": [9170], "libre.lugons.org": [9108], "www.lunarline.com": [9671], "www.databricks.com": [4197], "fourdo.com": [150], "www.kd2.us": [8716], "bbs.es.gy": [5353], "www.umiacs.umd.edu": [17263], "cdn.punterlink.co.uk": [13230], "netgate.com": [11231], "www.wireshark.org": [18369], "eprints.nottingham.ac.uk": [11527], "www.videolicious.com": [17696], "pro-xy.com": [8820], "certivox.com": [2966], "www.sozone.de": [15051], "data.cmcore.com": [3663], "int.anon-ib.ru": [1038], "*.ingdirect.com": [7768], "www.hosokawa-alpine.com": [7499], "www.cimbclicks.com.sg": [2607], "my.alfresco.com": [802], "wot.mail.ru": [9874], "vocalarticles.com": [11300], "neooffice.org": [11150], "auth.giantbomb.com": [6636], "www.help.perle.com": [12577], "*.wooga.com": [18421], "ownedcore.com": [12184], "1and1.com": [51], "fw.adsafeprotected.com": [538], "taobao.fanli.com": [5655], "bouncerstation.com": [2245], "alternc.org": [878], "reports.epoch.com": [5325], "petri.com": [12597], "wikinvest.com": [18297], "www.mito.hu": [10458], "nakedcitizens.eu": [11013], "acluidaho.org": [16176], "www.threadingbuildingblocks.org": [16390], "publisher.weboolu.com": [18137], "plainenglish.co.uk": [19498], "fast.fonts.com": [5993], "www.yammer.com": [18647], "calmail.berkeley.edu": [17240], "www.tribler.org": [16729], "gtd.alicdn.com": [805], "www.websitealive3.com": [18149], "nationalreview.com": [11073], "www.securenet.com": [14493], "ems.sheffield.gov.uk": [14694], "cafegate.com": [2717], "www.copyright-watch.org": [3656], "www.xyntekinc.com": [18608], "a.xnimg.cn": [18581], "st.developer.here.com": [7326], "www.catooh.com": [2907], "login.numergy.com": [11579], "112cafe.com": [17], "www.acluva.org": [254], "*.techtarget.com": [16019], "advocate-europe.eu": [669], "md.taobao.com": [15952], "whisper.sh": [18246], "gonewsoft.com": [6781], "lists.libreswan.org": [9316], "media.washingtonpost.com": [17990], "welcomecottages.com": [18490], "na2.www.gartner.com": [6463], "ohsx.stanford.edu": [15383], "americanfuturefund.com": [944], "www.brandspankingnew.net": [2281], "code.berkeley.edu": [17240], "de.aldi.lu": [299], "bugzilla.mplayerhq.hu": [9784], "bookonline.saudiairlines.com": [14305], "login.jiveon.com": [8586], "www.btcmedia.org": [1568], "beta.disk.yandex.com.tr": [18649], "www.documentfoundation.org": [16221], "*.akamai.steamstatic.com": [15452], "careers.insidehighered.com": [8163], "tests.netsekure.org": [11249], "derpiboo.ru": [4381], "user.lucidmedia.com": [9643], "www.ouw.co.uk": [11986], "domain.fi": [4650], "*.chinadialogue.net": [3085], "ad.ghfusion.com": [6421], "www.brightcontext.com": [2319], "*.yottaa.com": [18702], "*.networktimefoundation.org": [11271], "strongloop.com": [15530], "t-media.educ.cam.ac.uk": [17243], "gfx8.hotmail.com": [7559], "www.yoursav.net": [18739], "spyshelter.com": [15325], "www.voicelessonstotheworld.com": [11300], "help.runbox.com": [14037], "ricardo.ch": [13866], "www.m2fjob.com": [9695], "secure.dundeecity.gov.uk": [4801], "americanfreedom.com": [943], "*.advocatesforyouth.org": [670], "*.imgur.com": [8002], "www.intgovforum.org": [8199], "executive.mit.edu": [9747], "isalo.org": [8364], "www.worldcommunitygrid.org": [18447], "s1.jrnl.ie": [19326], "blinkeye.ch": [2076], "css.x-cart.com": [18494], "securewww.esat.kuleuven.be": [8816], "www.websharks-inc.com": [18084], "hackable-devices.org": [7137], "horstaandemaas.nl": [11132], "blog.kryptnostic.com": [9018], "exhaleprovoice.org": [5492], "www.manyvids.com": [9967], "images.miretail.com": [10443], "lesershop24.de": [19357], "manta.com": [9960], "avcosystems.com": [18971], "i.w55c.net": [17891], "*.trefis.com": [16707], "nexus.od.nih.gov": [11052], "oeffentliche-it.de": [11729], "mobielbreedband.ziggozakelijk.nl": [18863], "*.sarenza.net": [14300], "my.textmagic.com": [16157], "portal.infinity-tracking.com": [8095], "admission.com": [16421], "www.sovereignman.com": [15198], "web-registry.com": [18045], "static.parastorage.com": [12395], "www.unsw.edu.au": [16995], "myportal.im": [10776], "www.eastsussex.gov.uk": [19142], "driverseddirect.com": [4765], "websurveys.govmetric.com": [6866], "*.aweber-static.com": [379], "cscprotectsbrands.com": [3683], "www.catracalivre.com.br": [2908], "www.directory.umd.edu": [17263], "*.kingsroadmerch.com": [8900], "g.denik.cz": [4363], "www.cjfe.org": [2619], "www.satoshidice.com": [14301], "www.1btcxe.com": [42], "www.lloydstsb-offshore.com": [9523], "www.icanhazip.com": [7908], "cefas.co.uk": [2928], "berufsmatura.so.ch": [19648], "*.cobaltmania.com": [3341], "solar-energy-installers.com": [15106], "adscendmedia.com": [627], "www.consumidor.gov": [3598], "prospect.org": [16241], "hbo.com": [19240], "vbulletin.com": [17471], "screenshots.debian.net": [4273], "www.commandfive.com": [3474], "source.ind.ie": [8048], "www.kimsufi.com": [8892], "*.linuxdaily.com": [19462], "banyen.com": [1658], "browser.export.yandex.com": [18651], "www.kinfolk.com": [8895, 8896], "support.devzing.com": [4419], "search.amd.com": [925], "talemetry.com": [15918], "obi.cz": [19452], "pilot.ethernetportal.equinix.com": [5334], "www.tifpa.infn.it": [7766], "super.fanli.com": [5655], "mdn.mozillademos.org": [10658], "extensiblewebmanifesto.org": [5520], "naoteam.imn.htwk-leipzig.de": [7114], "leeds.greenparty.org.uk": [6925], "instart0.flixster.com": [5933], "www.storminternet.co.uk": [15497], "hackaday.io": [7138], "khoc.co": [8723], "digg.com": [4468], "ssl2.ovh.net": [12173], "embed.theguardian.com": [16288], "www.jogorama.com.br": [8609], "leisurecourses.derby.gov.uk": [4380], "auth.quakenet.org": [13326], "www.leahscape.com": [9207], "mail.antok.co": [1071], "www.districtsentinel.com": [4576], "succeed.eloqua.com": [5178], "university.alfresco.com": [802], "enla.dict.cc": [4455], "mobilism.org": [19404], "association.typo3.org": [15894], "*.mpiweb.org": [9781], "riskware.sydney.edu.au": [19649], "webmail.wippies.com": [18359], "www.abuse.vutbr.cz": [17522], "tracker.bro.org": [2346], "googleonlinesecurity.blogspot.*": [2113], "hideme.ru": [7392], "*.collegehumor.com": [3428], "pbs.twimg.com": [16877], "transitlab.osu.edu": [11760], "otumm.com": [12135], "yfrog.com": [19791], "www.alumni.rmit.edu.au": [13437], "*.cbssportsnetwork.com": [2525], "m.snsbank.nl": [14144], "www.cqrollcall.com": [2655], "m.hi-tech.mail.ru": [9874], "artistscorner.jamendo.com": [8502], "learningcentre.netapp.com": [11183], "crypt.ncl.ac.uk": [10884], "www.giveto.osu.edu": [11760], "licensingregisters.southlanarkshire.gov.uk": [15190], "*.bookdepository.com": [16217], "www.spaceup.org": [15207], "dataexchangewales.org.uk": [19101], "nexternal.com": [11366], "cpro.baidu.com": [1619], "www.emacswiki.org": [5190], "*.vdownloader.com": [17479], "cryptosanta.xyz": [3869], "www.hostican.com": [7524], "socialcodedev.com": [15063], "sifomedia.tidningsnatet.se": [16434], "computing-templates.web.cern.ch": [2575], "syncany.org": [15727], "www.ovh.us": [11686], "rbl.ms": [1920], "*.cscglobal.com": [3683], "lists.openinfosecfoundation.org": [12015], "fitstudio.com": [5888], "www.fau.de": [17311], "self.maidstone.gov.uk": [9868], "svs.informatik.uni-hamburg.de": [16951], "www.cefas.co.uk": [2928], "gorod.yandex.com.tr": [18649], "visualisingadvocacy.org": [17786], "*.goodnet.com": [6826], "www.godoc.org": [6775], "www.gotmerchant.com": [6856], "apollo3.ds.leeds.ac.uk": [17318], "anchor.com.au": [993], "sc1.checkpoint.com": [3048], "www.value-domain.com": [17539], "be.gbot.me": [6808], "duiven.nl": [11132], "portal.scot.nhs.uk": [10913], "foodl.org": [6004], "www.mitmproxy.org": [10457], "cdn.codementor.io": [3371], "srware.net": [15343], "canon.com.au": [19037], "flashtalking.net": [5907], "www.speakpipe.com": [15233], "dragon.ak.fbcdn.net": [5700], "www.chrismatic.io": [3108], "*.growhq.com": [6982], "betterbills.com": [1824], "wwte8.com": [17937], "www.baylibre.com": [1700], "www.jpackage.org": [8449], "images.scribblelive.com": [14413], "www.datacenter.illinois.edu": [17258], "*.pornbb.org": [19507], "matrixgroup.net": [10078], "seeks-project.info": [14554], "blogtopsites.com": [2105], "knowledge.verisign.com.hk": [17623], "jguitar.com": [8434], "project-syndicate.org": [13136], "secure.comic-con.org": [3466], "top.list.ru": [9448], "www.nrel.gov": [11057], "www.gelgif.ulaval.ca": [17229], "nab.com.au": [10865], "procurement.crick.ac.uk": [19090], "thecustomizewindows.com": [19675], "ssa.gov": [15060], "blocktogether.org": [2089], "accc.gov.au": [1385], "dom.lenta.ru": [19356], "oas.five.tv": [5892], "blog.bugcrowd.com": [2406], "catalog.usmint.gov": [17062], "providercentral.org.uk": [19523], "d.agkn.com": [718], "taz.de": [15787], "mindtools.com": [10411], "git.gnu.io": [6356], "phpartners.org": [12253], "hazro.com": [19239], "www.gamefly.co.uk": [6419], "client.fitbit.com": [5887], "one.southend.gov.uk": [15193], "sheg.stanford.edu": [15383], "www.sandilands.info": [14279], "tms.alicdn.com": [805], "docs.pushbullet.com": [13251], "*.luxsci.com": [9675], "kb.askmonty.org": [1262], "suwebmasters.stanford.edu": [15383], "web.kn.vutbr.cz": [17522], "www.onorobot.org": [11650], "lynda.com": [9682], "www.apwu.org": [933], "lists.pwmt.org": [13262], "www.backstreet-merch.com": [1603], "update6.dedyn.io": [19107], "www.civicrm.org": [3200], "loopt.com": [9608], "schaffner.org": [14346], "techsay.com": [16017], "ritter.vg": [13904], "www.nubits.com": [11561], "rochesterhomepage.*": [13933], "report-uri.io": [13781], "www.mintguide.org": [10433], "ngvpn16.nvidia.com": [10985], "communitylife.cabinetoffice.gov.uk": [2701], "monkey.collabora.co.uk": [3418], "www.essaysreasy.net": [5364], "www.xsens.com": [18591], "kc.mcafee.com": [10114], "piwik.ei.rub.de": [13478], "biz.mail.ru": [9874], "sslvpn2.ntu.edu.tw": [10971], "store.daringfireball.net": [4147], "it.support.tomtom.com": [16540], "*.mietek.io": [10379], "ncats.nih.gov": [11052], "sexnarod.ru": [14640], "www.gethttpsforfree.com": [6592], "privatesearch.io": [13104], "cdn.playboy.com": [12799], "community.1and1.co.uk": [53], "scounter.rt.com": [13468], "privat.tdc.dk": [15796], "cdn.vidyard.com": [17705], "l.fsfe.org": [5601], "gorod.yandex.com": [18651], "www.depositprotection.com": [4375], "leisure.northlincs.gov.uk": [19438], "help.zencoder.com": [18820], "www.e-learning.uni-mainz.de": [17325], "avenue.argus.ch": [1188], "billiongraves.com": [1883], "npd.com": [10947], "ocf.berkeley.edu": [17240], "www.byte.com": [8124], "survey.constantcontact.com": [3592], "uniqueoffersghana.com": [17194], "www.zipcar.com": [18872], "fit.edu": [5942], "www.kevag-telekom.de": [8862], "webhostingtalk.com": [18039], "www.tripbod.com": [16744], "ispgids.com": [7832], "omnitec.com": [11800], "www.upv.cz": [17009], "www.drafthouse.com": [774], "serverapi.arcgisonline.com": [1156], "f2.drweb.com": [4783], "www.masspirgedfund.org": [9715], "help.pinterest.com": [12699], "g.adspeed.net": [541], "fmweb.fm.uic.edu": [17231], "www.upworthy.com": [17404], "ringcentral.com": [13891], "pressetreff.3sat.de": [135], "static5.avonmaquiagem.com.br": [1455], "bundesverfassungsgericht.de": [2435], "www.poste.ch": [12949], "corporatedomains.com": [3683], "*.everesttech.net": [5446], "*.compasscard.ca": [3515], "www.uen.org": [17452], "manage.nodeserv.com": [11450], "www.middelburg.nl": [11132], "jobs.apple.com": [1120], "sifomedia.idg.se": [7705], "ppb.cancer.gov": [2805], "ssl.zoomshare.com": [18904], "stopfasttrack.com": [15484], "www.pgpru.com": [11964], "www.bilio.com": [1875], "files.poulsander.com": [5802], "www.kenexa.jobs": [8847], "portal.bolehvpn.net": [2188], "terreactive.ch": [16130], "www.nxtforum.org": [11592], "cdn.opinionlab.com": [12054], "crm-metrix.com": [2658], "www.socialtyzetracking.com": [15073], "www.pizza.de": [12747], "helpdesk.leeds.ac.uk": [17318], "shoppbs.org": [12211], "deepbit.net": [4301], "home.console.aliyun.com": [821], "mid-suffolk.greenparty.org.uk": [6925], "custhelp.com": [3936], "*.workable.com": [18439], "www.ebankingbutsecure.ch": [4870], "cultura.unizar.es": [17356], "klimaschutzpartner-berlin.de": [8933], "myprojects.cancerresearchuk.org": [19035], "sae.sina.com.cn": [14842], "secure.ethicspoint.com": [5383], "e-junkie.com": [4852], "ss.brighthub.com": [2326], "postepay.poste.it": [12965], "spike.newswhip.com": [11333], "www.online.net": [11870], "www.cbb.dk": [2913], "www.rdash.nhs.uk": [10913], "imagecurl.com": [19284], "www.bitmarket.pl": [1936], "mathcircle.stanford.edu": [15383], "forums.southwark.gov.uk": [15196], "xmos.com": [18523], "git.thm.de": [15811], "knowledge.verisign.de": [17623], "www.york.edu": [18694], "secure.gettyimages.*": [6621], "Sesamstrasse.de": [14629], "*.reportnhsfraud.nhs.uk": [10913], "www.circules.com": [7273], "knowledge.verisign.dk": [17623], "*.thedrum.com": [16270], "registerresnet.neu.edu": [10902], "cloud.highcharts.com": [7405], "sheffield.gov.uk": [14694], "att.com": [364], "freesim.vodafone.co.uk": [17813], "lastpass.com": [9163], "www.linuxlovers.at": [9432], "loveourlocalbusiness.com": [9629], "valueapplications.com": [17538], "www.mi5.gov.uk": [9740], "*.secure-zone.net": [14487], "*.keepallthethings.com": [8839], "css.mapreporter.navteq.com": [10873], "init7.net": [8143], "www.hosteuropegroup.com": [7502], "blog.okcupid.com": [11772], "kiks.yandex.kz": [18652], "indicators.hscic.gov.uk": [19264], "omns.americanexpress.com": [935], "www.stablelib.com": [15358], "wirral.gov.uk": [18371], "platform.gigya.com": [6659], "oracle.taleo.net": [15922], "mattermark.com": [19387], "be.icecat.biz": [7914], "tv.mail.ru": [9874], "www.camtools.cam.ac.uk": [17243], "thebrighttag.com": [2324], "spanish.tags.literotica.com": [9467], "es.cloudflare.com": [3285], "lacrossetechnology.com": [9119], "*.pathofexile.com": [12453], "www.bricklink.com": [2313], "www.stablehost.com": [15357], "bingo.williamhill.com": [18314], "exacom.sk": [5476], "realty.ya.ru": [18626], "www.eiffel.com": [5124], "cas.inria.fr": [8159], "impulsedriven.com": [8022], "jtlebi.fr": [8658], "www.feedburner.com": [5734], "www.faithinmotion.com.au": [5637], "oyoony.net": [19475], "labs.isecpartners.com": [7825], "disq.us": [4570], "weibo.cn": [14844], "media.privacyinternational.org": [13082], "www.hannovermesse.de": [7195], "*.jabbr.net": [8472], "providesupport.com": [13174], "kinja.com": [8906], "static.vimention.com": [17716], "www.teachers.sky.com": [14924], "dev.apigee.com": [1093], "www.pauldreik.se": [12461], "www-edge.empflix.com": [5213], "play.pokemonshowdown.com": [12857], "www.pokemon.co.jp": [12855], "prettylittlething.com": [13042], "freelosophy.tiscali.it": [16498], "player.cdn.tv1.eu": [15879], "media.sailthru.com": [14243], "blogs.fsfe.org": [5601], "cf.bluehost-cdn.com": [2149], "pub.cookie.oup.com": [12192], "ilovebluesea.com": [7893], "www.yedxxx24hr.com": [18667], "tools.euroland.com": [5418], "winweb.desy.de": [4399], "www.cabinet-office.gov.uk": [2700], "upx69.com": [17405], "mygsb.stanford.edu": [15383], "i.yldbt.com": [18680], "www.getpol.org": [6608], "*.kitchenriddles.com": [8922], "treyperry.com": [16719], "blog.webonic.hu": [18136], "secure-usb.co.uk": [19577], "nadaguidesstore.com": [10867], "track.brighteroption.com": [2329], "www.chlomo.org": [3094], "git.hackerspace.pl": [7149], "we.taobao.com": [15952], "www.7search.com": [195], "notalwaysright.com": [19441], "www.petfinder.com": [12596], "www.atname.ru": [360], "www.stage-mobioinsider.com": [10504], "jide.com": [8438], "directdebit.rother.gov.uk": [13978], "uk.wwte4.com": [17937], "active24.sk": [18938], "www.h2hc.com.br": [7043], "calderdale.gov.uk": [2734], "b.collective-media.net": [3423], "my-beta.variomedia.de": [17567], "*.outwit.com": [12148], "fifedirect.org.uk": [5779], "www.dds2dds.com": [4020], "defensoruniversitario.unizar.es": [17356], "www.csis.dk": [2673], "streetlife.com": [19633], "analytics.yacuna.com": [18630], "eb.my.msn.com": [9794], "ptgmedia.pearsoncmg.com": [12505], "stopthehacker.com": [15490], "blog.bit9.com": [1922], "dundeecity.gov.uk": [4801], "www.googleadservices.com": [6851], "www.pardot.com": [12399], "devforums.apple.com": [1120], "www.ultrabug.fr": [17137], "rewards.dbs.com": [4010], "nrc.gov": [17211], "www.tmview.europa.eu": [5421], "wusmhelp.wustl.edu": [17993], "docsv2.dwolla.com": [4816], "season.kde.org": [8718], "www.lolnet.org": [9569], "www.upcbusiness.nl": [17003], "snapshots.pfsense.org": [12607], "www.constructor.maps.yandex.com": [18651], "wwwcf2.nlm.nih.gov": [11052], "netbank2.danskebank.dk": [4145], "www.bbcchildreninneed.co.uk": [1500], "cxholidays.com": [2904], "www.ricardoshops.ch": [13867], "lists.sabayon.org": [14214], "jp.pornworms.com": [12928], "dpreview.com": [4497], "*.starsearchcasting.com": [15398], "esc.edu": [5215], "planet.lugons.org": [9108], "peer5.com": [12514], "www.fb.com": [5698], "js-hx.newjobs.com": [11318], "www.wageningen.nl": [11132], "hilfe.telekom.de": [4410], "zona.t-com.sk": [16088], "www.pclob.gov": [12226], "instart1.flixster.com": [5933], "ctt.pt": [3908], "*.ardour.org": [1175], "nestle.de": [11168], "www.tribecafilminstitute.org": [16728], "efficios.com": [5111], "www.buyaplan.co.uk": [19030], "trustico.com": [16794], "www.blesta.com": [2070], "joueravecletemps.cff.ch": [15693], "www.tineye.com": [16468], "www.filefactory.com": [5789], "www.oit.umd.edu": [17263], "new.livejasmin.com": [9489], "support.fluidhosting.com": [5952], "becoquin.com": [1720], "itar.iana.org": [7667], "stats.openstreetmap.org": [11979], "udmedia.de": [16947], "www.gov.wales": [6860], "www.uef.fi": [17250], "nationalgrid.com": [11081], "corbanworks.com": [3658], "eletmodvaltok.aldi.hu": [299], "static.mixtapeleak.com": [10469], "login.f5.com": [5546], "auth.yell.com": [19790], "*.getglue.com": [6574], "asset-b.soupcdn.com": [15167], "www.veuwer.com": [17656], "www.parking.wustl.edu": [17993], "gowork.pl": [6791], "www.zuhah.com": [18921], "www.rainforestqa.com": [13532], "mail.ign.com": [7730], "www.kuantokusta.pt": [9027], "hark.com": [7206], "toggl.com": [16531], "start.rit.edu": [13434], "q4.qlogo.cn": [13304], "*.get.it": [6564], "scip.portsmouth.gov.uk": [19508], "www.solar-energy-installers.com": [15106], "count.spiegel.de": [15272], "bitex.la": [1993], "www.kimonolabs.com": [8890], "scrapbookroyalty.org": [3010], "advisory.juniper.net": [8682], "aspirations.sbi.co.in": [14082], "i.po.st": [12834], "das-elena-verfahren.de": [4922], "www.readynas.com": [13619], "*.taxpayersalliance.com": [15980], "app.com": [1244], "www-mail.magbio.ens.fr": [4930], "exmo.com": [5498], "community.virginmedia.com": [17737], "www.dshs.state.tx.us": [16151], "webforest.eu": [18101], "www.edoceo.com": [5089], "www.livewyer.com": [9498], "www.youtube.lt": [18709], "www.youtube.lv": [18709], "okturtles.com": [11773], "skyprogrammeinformation.co.uk": [14930], "*.buzzdock.com": [2477], "wiebetech.com": [18283], "status.runabove.com": [14034], "meetinleeds.co.uk": [10210], "apsjobs.gov.au": [335], "www.schoolpartnership.wustl.edu": [17993], "www.intuitpayments.com": [8303], "support.mailpoet.com": [9879], "login.cern.ch": [2575], "whistleout.com.au": [18248], "*.vmware.com": [17495], "hivoice-ct.hivos.org": [7431], "scheme.bikeability.org.uk": [18998], "www.spektrix.com": [19617], "bter.com": [2382], "serverfruit.com": [14615], "www.securepurchaseserver2.com": [14510], "www.fdic.gov": [5710], "perlentaucher.de": [12578], "*.gitorious.org": [6682], "customer.xfinity.com": [19784], "www.dominustemporis.com": [4674], "feedback.xbox.com": [18550], "enygf.eu": [5425], "www.gephardtinstitute.wustl.edu": [17993], "www.dialdirect.co.uk": [4442], "www.join.me": [8616], "be.gogobot.com": [6808], "pass.yandex.kz": [18652], "identitytheft.org.uk": [7939], "polldaddy.com": [12881], "www.coastalmicrosupply.com": [3339], "member.accesstrade.net": [456], "www.voicethread.com": [17821], "*.github.io": [6679], "spectraflow.com": [15247], "*.booking.com": [2202], "b2b.t-mobile.com": [15772], "c.xbox.com": [18550], "touch.livingsocial.com": [9517], "mi6.ua": [9741], "*.hoover.org": [7489], "directory.domaintools.com": [4660], "www.bitshares.org": [1946], "estateshelpdesk.nottingham.ac.uk": [11528], "zyado.com": [18928], "gargoyle.uni.illinois.edu": [17258], "static.clickon.com.ar": [3249], "ifixit.com": [7727], "blog.smashfly.com": [15002], "www.streak.com": [19632], "licai.renren.com": [13769], "blog.srcclr.com": [15337], "divessi.com": [4582], "www.thevideo.me": [16239], "wiki.parabolagnulinux.org": [12385], "www.medicaljane.com": [10187], "sr4.liveperson.net": [9493], "citadium.com": [3166], "nitrocloud.com": [11428], "www.atemda.com": [608], "seethisinaction.com": [14555], "www.quandl.com": [13335], "atemda.com": [608], "newsroom.intel.co.jp": [8206], "*.usenet.nl": [17427], "onelogin.com": [11835], "approve.nuug.no": [10980], "static.aboutus.org": [426], "www.amnesty.no": [974], "www.press.jhu.edu": [16296], "www.oeffentliche-it.de": [11729], "support.clever.com": [3238], "intranet.thm.de": [15811], "www.vxstream-sandbox.com": [17882], "showingcloud.com": [14743], "blogs.oucs.ox.ac.uk": [17271], "sso.uvt.nl": [16445], "tiswww.case.edu": [2874], "thought.artsci.wustl.edu": [17993], "www.scientific.net": [14385], "www.pikpok.com": [12673], "community.aarp.org": [234], "dydx.io": [4819], "wemineltc.com": [18200], "rpmfind.net": [14004], "www.awstrust.com": [376], "skreened.com": [14918], "obsoleet.org": [11707], "card.jd.com": [8423], "www.oz-affiliate.com": [12194], "dish.stanford.edu": [15383], "chbtc.com": [3036], "financement.m6r.fr": [9699], "bbr-wiki.slac.stanford.edu": [15383], "www.move.va.gov": [17019], "webjet.co.nz": [18124], "music.qq.com": [13285], "m.kennedy-center.org": [19335], "www.awards.acs.org": [929], "maps.salford.gov.uk": [19562], "biotech.inbre.alaska.edu": [17235], "*.sony.co.uk": [15144], "cemetech.net": [2933], "land.secondlife.com": [14462], "*.csupomona.edu": [2748], "www.transcend.org": [16663], "logovut.ro.vutbr.cz": [17522], "besmith.com": [1588], "subrosa.io": [15564], "www.fsdata.se": [5605], "live.mayfirst.org": [10100], "*.ucalgary.ca": [16943], "*.glad.org": [6339], "www.mobilecore.com": [10496], "dashboard.pingxx.com": [12690], "portal.velleman.be": [17596], "padlister.com": [12322], "corporate.sky.com": [14924], "www.guitar.co.uk": [10277], "my.jh.edu": [8435], "aktion.netcologne.de": [11188], "community.alumni.harvard.edu": [7219], "*.jumio.com": [8672], "mit.tdc.dk": [15796], "download.elastic.co": [5142], "ccdcoe.org": [2545], "remoteadvisor.apple.com": [1120], "*.notebooksbilliger.de": [11523], "angola3.org": [1017], "freescale.com": [6183], "blot.im": [2124], "www.freelanguage.org": [6142], "sanitarium.se": [14285], "taojinbi.taobao.com": [15952], "connect.apple.com": [1120], "primegrid.com": [13059], "get.asp.net": [353], "distilleryimage2.instagram.com": [8182], "upload.yubico.com": [18745], "airport-store.osu.edu": [11760], "bruteforce.gr": [2379], "libanywhere.com": [9304], "blog.tapatalk.com": [15955], "ntmx.de": [11555], "referral.wustl.edu": [17993], "wasc.stanford.edu": [15383], "coxds.com": [3738], "www.microcorruption.com": [10355], "*.stpete.usf.edu": [17275], "bugzilla.fsl.cs.sunysb.edu": [15480], "mikel.olasagasti.info": [10386], "webmail.websupport.sk": [18160], "blog.torrentbit.net": [16585], "jnet.jesus.cam.ac.uk": [17243], "secure.tameside.gov.uk": [19660], "kasimp3.co.za": [8804], "www.wimo.com": [18277], "accounts.cloud.databricks.com": [4197], "exeter.ac.uk": [17251], "lists.metalab.at": [10306], "indico.web.cern.ch": [2575], "nagra.com": [11010], "h.online-metrix.net": [11869], "overupc.upc.nl": [17002], "et12.xhcdn.com": [18514], "*.rega.ch": [13726], "c.mfcreative.com": [992], "anonimag.es": [1043], "2ton.com.au": [89], "paste.ngx.cc": [11376], "www.kore.io": [8985], "notblocked.telex.cc": [16097], "www.devprom.ru": [4431], "secure.voyage-prive.it": [17858], "kitd.com": [8728], "www.visaeurope.com": [17764], "*.boalt.com": [1535], "www.source-elements.com": [15168], "tal.de": [15917], "www.bostonreview.net": [2236], "gentoo-ev.org": [6530], "publications.europa.eu": [5421], "www.dedra.cz": [4024], "blogs.constantcontact.com": [3592], "www.corvisacloud.com": [3688], "*.themoneyreferral.com": [3505], "strasbourg.eu": [15506], "kokousalusta.fi": [8958], "*.force.com": [14249], "adl.engineering.osu.edu": [11760], "wiki.diasporafoundation.org": [4451], "bellinghamschools.org": [1767], "fnal.gov": [5754], "www.gpodder.net": [6377], "www.landalgreenparks.com": [18490], "nothing.ch": [11526], "android-arsenal.com": [1004], "static.flashback.org": [5905], "eiopa.europa.eu": [5421], "food.weibo.com": [18186], "one.actionkit.com": [11640], "adv.money.pl": [10547], "secure-dev.techxpress.net": [16022], "gitc.finance.gov.au": [3492], "www.brewtourism.com.ua": [2309], "cache1.bigcartel.com": [1850], "doresearch.stanford.edu": [15383], "phoenix.symantec.com": [15715], "*.ambest.com": [305], "money.yandex.kz": [18652], "esia.gosuslugi.ru": [6852], "*.wholeliving.com": [10032], "libcat.ornl.gov": [11693], "enterprisecioforum.com": [5292], "www.orafarm.com": [11658], "es-us.perryellis.com": [12580], "lists.oasis-open.org": [11606], "www.selfridges.com": [14568], "www.encryptmas.org": [5238], "rdfind.pauldreik.se": [12461], "true-security.nl": [15857], "static-cdn.malwarebytes.org": [9929], "research.bpcrc.osu.edu": [11760], "portal3.wildfire.paloaltonetworks.com": [12349], "img.ifcdn.com": [19285], "shop.sophos.com": [15154], "1984hosting.com": [41], "ticketservice.zdf.de": [19800], "tugg.com": [16821], "mobile.de": [19403], "parents.stanford.edu": [15383], "my.engr.illinois.edu": [17258], "www.facebook.mx": [5623], "stupid.com": [15547], "istar.usc.edu": [17278], "www.un.org": [16983], "www.dudley.gov.uk": [4795], "*.solarcity.com": [15109], "www.zoosk.com": [18906], "www.shop.harman.com": [7208], "paf-ps2.web.cern.ch": [2575], "mail.rambler.su": [13539], "cdn.themis-media.com": [16342], "pixcept.de": [12735], "i.onthe.io": [11890], "lenovo.co.uk": [9251], "www.blinddesign.nl": [2074], "home.ch": [7464], "*.qoo10.com": [13308], "koumbit.net": [8998], "7.*.wdfiles.com": [18294], "wiki.jqueryui.com": [8453], "www.provost.umd.edu": [17263], "*.intelliworkschat.com": [8220], "on.cfr.org": [1920], "yorkshireandhumber.greenparty.org.uk": [6925], "therocktrading.com": [16307], "what-if.xkcd.com": [19786], "dl.ngrok.com": [11375], "acoustid.org": [476], "www.browser.yandex.com": [18651], "ukonlinecentres.com": [16977], "libraries.highland.gov.uk": [19249], "*.mozilla.org": [10657], "www.slo-tech.com": [14966], "tweetriver.com": [10048], "siemens.*": [14770], "www.bmi.bund.de": [2429], "londoncityairport.com": [9580], "es.malwarebytes.org": [9929], "foodandwaterwatch.org": [6002], "*.lu.se": [9107], "www.stanfordhospital.org": [15386], "p.skimresources.com": [14912], "babylink.scot.nhs.uk": [10913], "6connect.com": [185], "nic.swiss": [19126], "www.decisionneurosciencelab.org": [4284], "opentag.qubitproducts.com": [13345], "au.pcpartpicker.com": [12497], "www.shoeshow.com.au": [14713], "fxsitecompat.com": [19205], "typo3.org": [15894], "icln.org": [7686], "outwit.com": [12148], "ffrf.org": [6165], "www.passwordwolf.com": [19481], "www.upsilon.cc": [17399], "wiki.osmfoundation.org": [11672], "clients.cleanenergyexperts.com": [3224], "albert.rit.edu": [13434], "www.vf.com": [3551], "seed.stanford.edu": [15383], "*.gdatasoftware.com": [6293], "orderng02.ikoula.com": [7963], "automx.org": [1430], "www.neocities.org": [11148], "ssl13.ovh.net": [12173], "gasngrills.com": [6465], "enbg.dict.cc": [4455], "careers.microsoft.com": [10364], "*.ds02.swisscom.com": [15698], "svn.o.qcloud.com": [13301], "jira.enaza.ru": [5230], "*.alwaysdata.com": [898], "oscommerce.com": [12117], "control.anchor.com.au": [993], "www.code42.com": [3346], "london.hackspace.org.uk": [9581], "jipiao.jd.com": [8423], "hydraproxy.party": [19270], "robotshop.com": [13928], "www.mare-system.de": [9712], "www.h.switchadhub.com": [15701], "www.mcxnow.com": [10128], "muri.osu.edu": [11760], "propertyinvesting.com": [13160], "www.seurinternacional.com": [14635], "www.seflorida.bbb.org": [1821], "*.torbit.com": [16570], "ga.libreoffice.org": [9311], "jit.si": [8583], "rechten.uvt.nl": [16445], "fb.com": [5698], "www.alternativet.dk": [883], "www.hastexo.com": [7233], "render.githubusercontent.com": [6680], "mail.yaziba.net": [19376], "www.scottishpowerpipeband.com": [14401], "bugzilla.novell.com": [11530], "graphics.pop6.com": [12901], "www.*.anl.gov": [1184], "orb-international.com": [11659], "salsalabs.com": [14254], "dicesoft.net": [4454], "jit.su": [8579], "www.foriswine.com": [6039], "cf1.100r.org": [9], "shop.askthebuilder.com": [1266], "urz.uni-heidelberg.de": [17174], "static.eloqua.com": [5179], "malcontentsgambit.com": [9921], "media.firstclassmagazine.se": [5876], "www2.enthought.com": [5299], "community.ican.org.uk": [19280], "greetingcards.barnardos.org.uk": [18981], "bilddb.gta.arch.ethz.ch": [4975], "download.enlightenment.org": [5280], "disk.yandex.by": [18648], "enit.dict.cc": [4455], "aemi.edu.au": [278], "legal.alibaba.com": [809], "giftedandtalented.com": [6642], "smallnetbuilder.com": [17601], "www.authorea.com": [1409], "www.newsmax.com": [11342], "wiki.piratenpartei.de": [12721], "api.twitch.tv": [16888], "metrica.yandex.kz": [18652], "www.socialtheater.com": [15068], "lane-preprod.stanford.edu": [15383], "thumbnail.myheritageimages.com": [10835], "myitworksevents.com": [10807], "*.i-grasp.com": [7735], "mobioinsider.com": [10504], "myheritageimages.com": [10835], "www.iraaa.org": [7811], "vlebb.leeds.ac.uk": [17318], "www.tahina.priv.at": [13079], "s1.jugger.mail.ru": [9874], "buckeyelink3.osu.edu": [11760], "www.std3.ru": [15445], "oodi.aalto.fi": [390], "mail.newsinc.com": [11335], "docs.oasis-open.org": [11606], "www.allianzfuercybersicherheit.de": [852], "www.randomhouse.biz": [13542], "ideone.com": [7943], "www.korruption.dk": [8991], "ohiounion.osu.edu": [11760], "harrow.io": [7213], "ssllin1.123-secure.com": [22], "www.osp.vt.edu": [17740], "*.upic.me": [17388], "jobs.n-kesteven.gov.uk": [10856], "developers.podio.com": [12846], "www.litle.com": [9470], "www.immunicity.org": [8006], "totalinvestor.co.uk": [16604], "dump.bitcoin.it": [1961], "www.openit.de": [11945], "travelinsiders.americanexpress.com": [935], "app-us7.resrc.it": [13599], "www.websitealive1.com": [18149], "archive.org": [8271], "www.belkin.com": [1762], "ads2.williamhill.com": [18315], "www.openeffect.ca": [19464], "gamelink.com": [6415], "apap.wustl.edu": [17993], "takecontrolbooks.com": [15914], "makeuseof.com": [9907], "www.standagainstspying.com": [15376], "soutien.laquadrature.net": [9113], "www.voiceteachertraining.com": [11300], "vip.sina.com.cn": [14842], "oagcargo.com": [16927], "*.briggs-riley.com": [2317], "stats.traffichaus.com": [16652], "processnet.hu": [4665], "my.kaspersky.com": [8806], "*.decorrespondent.nl": [4245], "yubico.com": [18745], "*.5apps.com": [177], "www.uw.edu": [17077], "unblocksit.es": [17150], "myplace.walthamforest.gov.uk": [17966], "*.netnea.com": [11244], "www.javascriptkicks.com": [8527], "www.factbook.ecc-platform.org": [4879], "schulbuchportal.vgwort.de": [17483], "www.vuze.com": [17879], "juniper.net": [8682], "*.active.com": [497], "www.on.lung.ca": [11888], "nextiva.com": [11369], "files.tested.com": [18244], "reefbuilders.com": [13708], "www.briteobjects.com": [2338], "media7.congstar-media.de": [3576], "login.ec21.com": [4878], "savana.cz": [14308], "images.hertz.com": [7372], "onlinemovies.virginmedia.com": [17737], "illinoislawreview.org": [7966], "openfabrics.org": [11937], "shopmanhattanite.com": [9954], "bezuegerechner.bva.bund.de": [5716], "static.theiconic.com.au": [16292], "p1.raasnet.com": [13655], "*.stowesports.com": [294], "login.sas.com": [14074], "img.zwame.pt": [18925], "cpkids.cp.pt": [3744], "mandrillapp.com": [9946], "issues.openmrs.org": [11953], "kr.calameo.com": [2731], "terpconnect.umd.edu": [17263], "net.educause.edu": [5096], "construx.com": [3593], "*.unblock-us.com": [17149], "wiki.mythtv.org": [10849], "www.obdev.at": [11695], "www.incapsula.com": [8043], "antitheft.drweb.com": [4783], "www.1art.cz": [63], "sciencecircle.stanford.edu": [15383], "www.infragard.net": [8133], "clickfun.com": [3260], "map.virustracker.net": [17759], "christianheilmann.com": [3111], "apps.n-somerset.gov.uk": [10857], "screenshotmachine.com": [14411], "oxfordtoday.ox.ac.uk": [17271], "museum.ceredigion.gov.uk": [2964], "*.robohash.org": [13926], "password.1and1.com": [51], "www.tar-jx.bz": [15959], "bidz.com": [1849], "thm.de": [15811], "help.blackberry.com": [2050], "www.bitmissile.com": [1938], "huntingbears.nl": [7623], "jako-o.*": [8496], "themarshallproject.org": [16297], "haarlemmermeer.nl": [11132], "www.bankid.no": [1643], "socialtyzetracking.com": [15073], "blog.contextweb.com": [3616], "www.mandiant.net": [10179], "ucat.osu.edu": [11760], "genelab-data.ndc.nasa.gov": [10869], "honorcards.heifer.org": [7284], "itaccounts.iu.edu": [8064], "hp.com": [7378], "*.onsecure.gov.au": [11814], "darkreading.com": [4150], "password.1and1.ca": [52], "eddieizzard.com": [5074], "domainbox.com": [4662], "bookings.tmbc.gov.uk": [15827], "mx.tumblr.com": [16826], "www.kbpublisher.com": [8710, 8711], "*.admin.onesite.com": [11646], "cliara.caltech.edu": [2756], "cjdns.info": [3204], "s.yimg.jp": [18685], "www.ifpa.ie": [7724], "www.cxsecurity.com": [3950], "resin.io": [13806], "mojeid.cz": [10536], "ad.xtendmedia.com": [18598], "api.unthem.com": [17373], "nbwn.de": [10877], "www.ncwit.org": [10889], "duba.com": [4789], "firehost.com": [5854], "verisign.com": [17623], "www.unseen.is": [17369], "www.uif.uillinois.edu": [16960], "schools.sheffield.gov.uk": [14694], "alexa.com": [795], "asus.com": [357], "webdev.pdu.edu": [12939], "netguava.com": [11234], "www.johnrennie.net": [18428], "static1.uk.businessinsider.com": [2454], "artsy.net": [1235], "www.nic.es": [4673], "shop.spiegel.de": [15272], "frugalware-art.org": [19461, 19462], "payments.rbwm.gov.uk": [19539], "www.anunciou.com": [1074, 1075], "ebanking2.danskebank.dk": [4145], "www.xiph.org": [18575], "www.blocked.org.uk": [2092], "secure.officeleaks.com": [11746], "infousa.com": [8110], "cdnb.kaltura.com": [8775], "insure-systems.co.uk": [4442], "forms.torbay.gov.uk": [16569], "www.scripts.mit.edu": [9749], "assets.guim.co.uk": [7014], "mediawatch.dk": [10166], "code.mythtv.org": [10849], "365tickets.co.uk": [113], "video.yandex.com.tr": [18649], "www.youtube.de": [18709], "disk.ya.ru": [18626], "globe.thecthulhu.com": [16334], "digitalmedia.oracle.com": [12082], "*.https.cdn.softlayer.net": [15094], "cert.fi": [2581], "*.2gis.ru": [85], "ojrq.net": [11768], "www3.sans.org": [14072], "assets.simplifydigital.co.uk": [19593], "statics1.beauteprivee.fr": [1739], "client-api.itunes.apple.com": [1120], "www.huzs.net": [7635], "join.me": [8616], "muusikoiden.net": [10734], "auth.edinburgh.gov.uk": [5084], "go.osu.edu": [11760], "mktg.clicktools.com": [3264], "myview.wirral.gov.uk": [18371], "thunderbird-mail.de": [16404], "waffle.io": [17944], "go.teamviewer.com": [16004], "*.malwaretracker.com": [9928], "content.incapsula.com": [8043], "livestat.derstandard.at": [19111], "savethelink.org": [14313], "lists.osadl.org": [11664], "dermpath.wustl.edu": [17993], "www.bigjocker.com": [1863], "files.gpg4win.org": [6875], "pickaweb.co.uk": [12660], "purdue.edu": [13235], "www.beckpc.ch": [1744], "wiki.mythic-beasts.com": [10850], "www.scriptobservatory.org": [14419], "br.support.tomtom.com": [16540], "wikia.com": [18292], "harrow.greenparty.org.uk": [6925], "www.paraduxmedia.com": [12387], "www.force11.org": [5586], "cdn.evbstatic.com": [5436], "mypoints.com": [10775], "ad.adriver.ru": [534], "insinuator.net": [8173], "www.bitso.com": [2018], "res.wx.qq.com": [13285], "www.leadwerks.com": [9202], "wa.ui-portal.de": [16952], "*.democratandchronicle.com": [4356], "www.uni-hamburg.de": [16951], "www.asiabsdcon.org": [1258], "cas.fit.edu": [5942], "bugs.gpodder.org": [6377], "fau.org": [5552], "eam-gmbh.com": [4866], "simquadrat.de": [14836], "berniesanders.com": [1796], "powys.gov.uk": [19513], "www.bikebiz.com": [8227], "www.futurelearn.com": [6282], "developer.3taps.com": [138], "ed2go.com": [2937], "fun.alipay.com": [816], "www.bit.ly": [2002], "ccp.osu.edu": [11760], "*.np-edv.at": [11536], "*.webmdhealth.com": [18071], "www.outflux.net": [12152], "www.whosampled.com": [18259], "developer.blender.org": [2067], "www.korelogic.com": [8986], "blogs-stage.oracle.com": [12082], "www.rac.co.uk": [13395], "blog.simplyhired.com": [14830], "breakoutband.com": [2299], "apps1.lbhf.gov.uk": [9064], "democrats.intelligence.house.gov": [17026], "lieblingskaffees.tchibo.de": [15985], "purduealumni.org": [13233], "apps.oseems.com": [12120], "www.networkredux.com": [11261], "sailthru.com": [14243], "oralb.com": [13121], "didier.mayfirst.org": [10099], "page.1688.com": [36], "www.fangamer.net": [5653], "www.ipredator.se": [7804], "*.dydx.io": [4819], "www.fcc.gov": [5709], "trac.videolan.org": [17688], "xhamster.com": [18515], "ad.netcommunities.com": [11174], "library.ingenico.com": [8138], "www.ercpe.de": [5338], "djrc.portal.dowjones.com": [11321], "en.avm.de": [1453], "mobil.dhl.de": [4034], "kudelskisecurity.com": [9031], "facultysenate.wustl.edu": [17993], "ads.eurogamer.net": [5415], "www.framasphere.org": [6096], "www.builditbreakit.org": [2412], "netbeat.de": [11217], "orgsync.com": [12102], "status.linaro.org": [9361], "secureupload.eu": [14497], "img4.leboncoin.fr": [19351], "app.protectnetwork.org": [13167], "www.pixeline.be": [12740], "www.frozentux.net": [6233], "www.berryreview.com": [1798], "southcambs.greenparty.org.uk": [6925], "www.workaround.org": [18440], "www.norx.io": [11510], "superherostuff.com": [15631], "hotfile.com": [7556], "www.rcitravelstore.co.uk": [18490], "*.precharge.com": [13016], "rapidssl.com": [13557], "ftp.darmstadt.ccc.de": [2538], "*.ugc.bazaarvoice.com": [1708], "my.curated.co": [3924], "gw2.alicdn.com": [805], "trader.tms.pl": [19686], "www.xetum.com": [18568], "www.hee.nhs.uk": [10913], "www.wordfence.com": [18433], "www.cachebrowser.info": [2707], "static.bullionstar.com": [2421], "erevenues.cheshireeast.gov.uk": [3067], "blockr.io": [2097], "www.uprod.biz": [17011], "foursquare.com": [6082], "www.singularityhub.com": [14849], "*.grdc.com.au": [6886], "npm.im": [11538], "openlearn.open.ac.uk": [11986], "digital.kent.gov.uk": [8851], "participation.usa.gov": [17029], "techpinions.com": [16048], "www.blimpme.com": [2073], "www.wwf.ch": [19768], "www.mygsb.stanford.edu": [15383], "kissmetrics.com": [8727], "trk.kissmetrics.com": [8727], "bioconductor.org": [1905], "robinsonpool.bedford.gov.uk": [18986], "www.dpea.scotland.gov.uk": [19575], "aoquadrado.catracalivre.com.br": [2908], "digitalcourage.de": [4503], "*.box-look.org": [19462], "*.mozilla.net": [10656], "www.hr.uic.edu": [17231], "pubchem.ncbi.nlm.nih.gov": [11052], "*.raeng.org.uk": [13991], "libdrc.org": [9293], "enda.dict.cc": [4455], "www.dfa.cornell.edu": [3676], "*.homedepot.com": [7470], "i1.gallery.technet.microsoft.com": [10364], "www.jackpotmillions.com": [8483], "www.swm-infrastruktur.de": [14208], "bookstore.ucsd.edu": [16939], "sisu.ut.ee": [17069], "securemedia.compete.com": [3519], "emptywheel.net": [5221], "social.expression.microsoft.com": [10364], "gymglish.com.br": [7037, 7038], "counter.mit.edu": [9747], "ifpa.ie": [7724], "dr.com.tr": [4077], "stats.dotsec.com": [4696], "images.theappendix.net": [16243], "www.youtube.co.kr": [18709], "www.avadomains.com": [1435], "mobile.portalpilot.equinix.com": [5334], "medicinescomplete.com": [10193], "rallydev.com": [13537], "draws.random.org": [13545], "a4.sphotos.ak.fbcdn.net": [5700], "www.bitbucket.org": [1926], "www.neck2neck.com": [11129], "neustarlocaleze.biz": [11283], "www.fhi.se": [5568], "m.newstral.com": [11347], "www.allclearid.com": [827], "fastclick.com": [17541], "www.coinjabber.com": [3396], "live.bitmissile.com": [1939], "ncric.org": [10885], "armory.monster-wow.com": [10566], "*.images-amazon.com": [915], "help.esellerate.net": [5357], "*.adseekmedia.com": [628], "www.medctr.ohio-state.edu": [11761], "bitcoin.co.th": [1963], "dashboard.open-mesh.com": [11908], "*.amahi.org": [906], "asset9.wwf.ch": [19768], "*.admeld.com": [607], "publishing-technology.de": [7114], "backoffice.vend-o.com": [17606], "boersenspiel.faz.net": [5554], "cdn0.iconfinder.com": [7921], "trash-mail.com": [16686], "www.unistra.fr": [17177], "www.verizonenterprise.com": [17627], "service.bitsighttech.com": [1947], "www.inform.umd.edu": [17263], "www.preney.ca": [13029], "2020mobile.es": [70], "www.northkoreatech.org": [11496], "granitephone.com": [14785], "mijnzakelijk.ing.nl": [7769], "bg.libreoffice.org": [9311], "purecine.fr": [13243], "noao.edu": [11053], "onlinepayment.com.my": [9775], "anubis.iseclab.org": [8365], "insights.gravity.com": [6901], "hass.de": [7232], "www.imgbox.com": [7996], "www.lonesurvivor.co.uk": [9585], "bth.se": [1572], "images.c-spanvideo.org": [2495], "hbonow.com": [19242], "static.infnx.com": [8088], "www.bmclogostore.com": [1528], "www.localbitcoins.com": [9540], "mac.github.com": [6680], "en-no.dict.cc": [4455], "*.bcj.ch": [19333], "www.glenscott.net": [6706], "*.sxnarod.com": [14640], "fusionhelp-stage.oracle.com": [12082], "www.etherpad.fr": [19162], "user.web.cern.ch": [2575], "acyba.com": [510], "hosokawa-alpine.com": [7499], "www.aivd.nl": [292], "secure.dotplex.de": [4703], "www.eftplus.asia": [4909], "quickgit.kde.org": [8718], "access.hinckley-bosworth.gov.uk": [7412], "www.discovermeteor.com": [4551], "*.trachtenshop24.de": [16629], "alumnicas.princeton.edu": [13064], "scai.fraunhofer.de": [6112], "www.royalnavy.mod.uk": [13995], "img01.bizrate-images.com": [2033], "www.remixdepolitiek.nl": [12708], "verifiedvotingfoundation.org": [17620], "www.amnesty.org.uk": [971], "partners.datamotion.com": [19102], "googlewatchblog.de": [6849], "*.collab.net": [3417], "datamonitorhealthcare.com": [4207], "www.mkateb.com": [10474], "bcv.ch": [19333], "www.webmaker.org": [10663], "cdnsecureservep1.amexserve-static.com": [903], "s3.percona.com": [12557], "maps.yandex.ua": [18656], "developer.palm.com": [12344], "store1.esellerate.net": [5357], "*.internetsuccess.at": [8289], "acluofnc.org": [251], "*.csdb.dk": [2668], "www.vavinet.vutbr.cz": [17522], "www.dvdfab.com": [4088], "*.web-stat.net": [18043], "www.teksyndicate.com": [16065], "calgunsfoundation.org": [2739], "schneier.com": [14360], "content.foto.mail.ru": [9874], "camo.githubusercontent.com": [6680], "profile.create.msdn.com": [9788], "1.www.s81c.com": [19561], "www.paymium.com": [12480], "gargoyle-router.com": [19207], "scistore.cambridgesoft.com": [2769], "www.tsbmag.com": [15859], "crawley.firmstep.com": [19183], "asset.zcache.com": [18805], "sss.ias.edu": [7669], "www.easyhomecontrol.at": [18284], "www.vbi.vt.edu": [17740], "cdn.gotraffic.net": [6857], "linguee.de": [19366], "deis.dict.cc": [4455], "void.gr": [6915], "fineproxy.org": [5846], "gencat.cat": [6524], "ba.yandex.by": [18648], "tools.swisscom.ch": [15698], "forum.openvz.org": [11990], "bi-fusioncrm.oracle.com": [12082], "gr.norton.com": [11505], "stats.feedsportal.com": [5740], "billpay.de": [1877], "yammer.com": [18647], "dephormation.org.uk": [4372], "www.join.acs.org": [929], "flybuys.com.au": [5961], "www.distil.it": [4572], "*.uh.edu": [17315], "www.challenge.gov": [2985], "www.liqd.net": [9442], "thumbs.motherlessmedia.com": [10608], "symlms.symantec.com": [15715], "feature.astaro.com": [1298], "cdn.realdebrid.xtnetwork.fr": [18600], "www.hands.com": [7190], "www.iberiabank.com": [7899], "curbed.cc": [1920], "subscribe.pcspublink.com": [12231], "globalsign.*": [6718], "freeapi.domaintools.com": [4660], "www.docketalarm.com": [4618], "biology4.wustl.edu": [17993], "helpouts.google.com": [6834], "support.photobucket.com": [18823], "*.nationalcapital.gov.au": [11066], "scordit.com": [2292], "about.downthemall.net": [4722], "rc.rlcdn.com": [13435], "faxcritics.com": [5694], "www.cathaypacific.com": [2904], "fotocommunity.de": [6076], "go.web.cern.ch": [2575], "solarpowerrocks.com": [15107], "*.mm.bing.net": [1894], "trac.openstreetmap.fr": [12045], "www.jaymart.co.th": [8535], "cdn2.static.xtube.com": [18602], "*.lockbox.com": [9543], "*.ketchum.com": [8860], "track.stubhub.com": [15534], "cdn4.iconfinder.com": [7921], "login.aau.dk": [389], "developers.soundcloud.com": [15161], "sanalmarket.com.tr": [14275], "value-domain.com": [17539], "secure.mashery.com": [10046], "partner.redhat.com": [13675], "tcf.org": [15790], "threestore.three.co.uk": [16397], "my.symantec.com": [15715], "community.gns3.com": [6355], "mobile.onlinesbi.com": [11873], "ccianet.org": [2549], "beender.co": [1750], "techtoolsforactivism.org": [16024], "entr.dict.cc": [4455], "shannonhealth.com": [14659], "bikeability.org.uk": [18998], "www.stylist.co.uk": [15552], "tor.com": [9831], "www.stemformatics.org": [15466], "www.printmojo.com": [13067], "xiscosoft.es": [18576], "www.thinkusc.com": [17277], "www.deutsche-rentenversicherung-bund.de": [4407], "*.accountservergroup.com": [463], "bill.relevate.ru": [13753], "www.geekevents.org": [6501], "a.intentmedia.net": [8228], "p.ya.ru": [18626], "www.compaign.ox.ac.uk": [17271], "www.arangodb.com": [1151], "www.nodejitsu.com": [11453], "rollapp.com": [13957], "10gen.com": [14], "www.blinksale.com": [2077], "www.fastmail.com": [5688], "visitthecapitol.gov": [17777], "www.santoku-linux.com": [14293], "bill.aol.com": [321], "safety-security.uchicago.edu": [17246], "www.bitvc.com": [1949], "www.andrewmunsell.com": [1002], "auth.enfield.gov.uk": [5258], "liboil.freedesktop.org": [6126], "squirrelmail.ouvaton.coop": [12155], "alloresto.fr": [19328], "desq.dict.cc": [4455], "www.vindicosuite.com": [17721], "sfm-offshore.com": [14109], "parents.usc.edu": [17278], "oascentral.sciencemag.org": [14382], "files.quizsnack.com": [13373], "theverge.com": [16213], "evolve.elsevier.com": [5185], "wfncnews.com": [17903], "login.insa-lyon.fr": [7771], "www.barna.org": [1673], "support.lucidpress.com": [9646], "www.intelligence.org": [8215], "www.esat.kuleuven.be": [8816, 9034], "www.skillsdevelopmentscotland.co.uk": [19597], "crocko.com": [3806], "www.addbooks.se": [570], "internet-banking.dbs.com.tw": [4010], "biz.waze.com": [18014], "www.chroniclesofgeorge.com": [16259], "rewards.comparethemarket.com": [3511], "aziende.tiscali.it": [16498], "asset-8.soupcdn.com": [15167], "broadbandconvergent.com": [2349], "alldebrid.fr": [831], "www.wilhelm-gym.net": [18310], "calnet.berkeley.edu": [17240], "www.rohieb.name": [13950], "assembly.com": [1281], "*.boingo.com": [2182], "stubhub.com": [15534], "git.enlightenment.org": [5280], "b8.yahoo.co.jp": [18640], "lincolnshire.gov.uk": [9364], "kryton.mysql.cesky-hosting.cz": [19051], "odoo.com": [11727], "img.ui-portal.de": [16952], "jobs.priorygroup.com": [13074], "slack.com": [14942], "agenda.athaliasoft.fr": [1312], "wolframalpha.com": [18397], "www.nuigalway.ie": [11064], "*.opendesktop.org": [19462], "online-mahnantrag.de": [11865], "aspplayground.net": [355], "wpvulndb.com": [17926], "static.businessinsider.com": [2454], "www.spaceweatherphone.com": [15213], "wan.jd.com": [8423], "www.1shoppingcart.com": [46], "html-differences.whatwg.org": [17904], "astrobotic.com": [1303], "manager.presspage.com": [13033], "secure.alamy.com": [775], "www.word.camera": [19763], "forum.pfsense.org": [12607], "assets.tumblr.com": [16826], "filin.mail.ru": [9874], "www.lso.com": [9101], "barclayscorporate.com": [1663], "stanfordvideo.stanford.edu": [15384], "www.savethechildren.org.uk": [14314], "clockers.at": [12164], "www.b2bmediaportal.com": [1486], "aka.highways.gov.uk": [19250], "java.com": [8526], "linuxhostsupport.com": [9429], "www.mynewflag.com": [11305], "tlcenter.wustl.edu": [17993], "www.chesterfieldroyal.nhs.uk": [10913], "tap-cdn.rubiconproject.com": [14014], "www.cloudinary.com": [3307], "oca.ucsc.edu": [17305], "trial.turbine.com": [16835], "airtop-pc.com": [756], "inventhelp.com": [8313], "images2.dailykos.com": [4116], "user.ameba.jp": [926], "gazellegames.net": [19209], "webmailer.1und1.de": [68], "arsenal.rubiconproject.com": [14014], "www.norden.org": [11472], "s4.ft-static.com": [19201], "*.express.co.uk": [4110], "registration.warnerbros.com": [17982], "www.euro-ix.net": [5401], "heise.de": [7288], "www.cloudpiercer.org": [3292], "www.ifex.org": [7723], "osadl.org": [11664], "webanalytics.acs.org": [929], "ngvpn32.nvidia.com": [10985], "www.covad.net": [3726], "hkedcity.net": [7073], "g1-bre.pagekite.net": [12330], "icefilms.info": [7911], "rs.broadcastjobs.co.uk": [2353], "www.aesload.de": [692], "meetings.ripe.net": [13895], "social.anz.com": [315], "sourcefire.com": [15181], "www.fusion-lifestyle.com": [6274], "ctc.engineering.osu.edu": [11760], "new.teamweek.com": [16005], "www.securetrust.com": [14512], "*.selectel.ru": [14565], "xdebug.org": [18552], "store.microsoft.com": [10364], "raw.github.com": [6680], "www.cadence.com": [2713], "http2.akamai.com": [761], "subscribe.inyt.com": [7772], "*.foto.mail.ru": [9874], "www.cooldestinations.net": [3641], "ciscolive.com": [3165], "airtime-demo.sourcefabric.org": [15180], "fa.libreoffice.org": [9311], "*.pivotallabs.com": [12731], "mpiweb.org": [9781], "headingley.greenparty.org.uk": [6925], "*.tufts.edu": [16818], "uptolike.com": [17382], "www.sueddeutsche-tickets.de": [15579], "*.corecommerce.com": [3662], "blogs.site24x7.com": [14861], "*.cinemanow.com": [3147], "exchange.nottingham.ac.uk": [11528], "dimauro.osu.edu": [11760], "static.tacdn.com": [19655], "smfta.com": [14137], "coinmate.io": [3398], "www.opencsw.org": [11926], "training.witness.org": [18382], "sact.atdmt.com": [10360], "uio.no": [17330], "crunchbase.com": [3833], "defensetravel.dod.mil": [17028], "tsbohemia.cz": [19702], "mason.gmu.edu": [6544], "nordichosting.com": [11476], "cdn03.gitter.im": [6684], "likeyed.com": [9351], "parapoupar.com": [12383], "images.google.com": [6840], "www.yorkfitness.com": [18696], "www.nextgen-gallery.com": [11367], "wp.colliertech.org": [3432], "identity.paloaltonetworks.com": [12349], "elt.oup.com": [12192], "*.usenetserver.com": [17428], "*.gammae.com": [6449], "shmoop.com": [14710], "www.nerfnow.com": [11161], "camden.gov.uk": [2772], "www.srm.de": [14168], "mp3-juices.com": [10668], "es.account.my.t-mobile.com": [15772], "press.post-gazette.com": [12948], "etegro.com": [4977], "picasaweb.google.*": [6837], "lonesysadmin.net": [9586], "org.mangolanguages.com": [9952], "*.bbci.co.uk": [1499], "kub.nl": [16445], "absolvent.vutbr.cz": [17522], "zh-cn.libreoffice.org": [9311], "netviewer.com": [11258], "ibmsmarteritservices.sf.net": [15174], "a.gfx.ms": [6624], "www.unfpa.org": [16988], "*.avectra.com": [1447], "crowd.wpm.neustar.biz": [11280], "en.exmail.qq.com": [13285], "www.metro.co.uk": [10320], "svn.fedorahosted.org": [5727], "blog.evenmere.org": [5438], "www2.fraedom.com": [19193], "edit.uaa.alaska.edu": [17233], "lcsa.gateshead.gov.uk": [6467], "info.newrepublic.com": [11308], "www.land-der-ideen.de": [9138], "railsbox.io": [13529], "www.onesolution.cz": [11647], "support.ikoula.com": [7963], "www.verisign.de": [17623], "*.harakah.net.my": [7202], "forum.libcinder.org": [3139], "www.foxydeal.de": [6089], "custodianvaults.com.au": [3937], "thankyoucard.citi.com": [3168], "joshbegley.com": [8634], "intra.cs.ut.ee": [17069], "www.kernl.us": [8859], "www.rhizome.org": [13863], "transparency.org": [16679], "my.upc.cz": [17000], "pin.ed.gov": [4889], "addy.co": [579], "*.klm.com": [8736], "files.5min.com": [178], "publicidees.com": [13204], "*.computeruniverse.net": [3541], "rbkc.gov.uk": [19538], "smartlingsource.com": [14998], "i.dell.com": [4335], "bo.xm.com": [18520], "www.sudo.ws": [6897], "static.ypautos.com": [15614], "specimens.cancer.gov": [2805], "*.floridatoday.com": [5943], "images.agoramedia.com": [5453], "*.eastsussex1space.co.uk": [19143], "www.imakethingswork.com": [7890], "appnexus.com": [1109], "www.privacyisawesome.com": [5783], "*.audiko.net": [1357], "ies.ikoula.com": [7963], "www.bit2c.co.il": [1921], "www.stiftung.htwk-leipzig.de": [7114], "getconnected.gmu.edu": [6544], "pls.webtype.com": [18095], "www.centralcomputers.com": [2954], "www.elsevier.ca": [5184], "*.traction-digital.com": [16633], "capec.mitre.org": [10459], "img08.rl0.ru": [13914], "www.sudoroom.org": [15580], "*.utwente.nl": [17072], "products.office.com": [11743], "www.isomorphic.com": [8374], "teletrust.de": [19668], "scambs.gov.uk": [19566], "planetdiscover.com": [12765], "store.openhost.net.nz": [12036], "o.ju.taobao.com": [15952], "origin-www.blackberry.com": [2050], "heatmap.me": [7279], "my.codecoon.com": [3364], "www.typotheque.com": [16917], "surplus.osu.edu": [11760], "www.kitd.com": [8728], "www.gradschool.umd.edu": [17263], "spotware.com": [15298], "tinychat.com": [16480], "*.colorado.edu": [17247], "www.usvisa-info.com": [2665], "nycla.org": [10989], "www.pushpopcorn.com": [13250], "franchiseradioshack.cloudapp.net": [13515], "jappix.org": [8517], "www.cert.se": [2582], "stats.silentcircle.com": [14786], "faancollegenetwork.org": [5549], "www.mutualart.com": [10732], "www.inductionsolutions.com": [8074], "ads.horyzon-media.com": [7498], "www.hvb.de": [7649], "audits.uillinois.edu": [16960], "wordstat.yandex.com.ua": [18650], "secure.jhu.edu": [16296], "hg.prosody.im": [13161], "eplus-gruppe.de": [4845], "www.robinsonpool.bedford.gov.uk": [18986], "library.leeds.ac.uk": [17318], "cubics.com": [3910], "nro.net": [11577], "www.gdata.co.mx": [6293], "jiagu.qcloud.com": [13301], "xenvps.com": [18559], "jsr311.java.net": [8525], "wiki.typo3.org": [15894], "trac.osgeo.org": [11669], "fotki.yandex.kz": [18652], "jobs.southglos.gov.uk": [15189], "amsciadmin.eresources.com": [946], "ilo.org": [7752], "democratandchronicle.com": [4356], "states.secular.org": [14472], "www.compulab.co.il": [3530], "gomoxie.com": [10645], "mail.zoho.com": [18884], "fcw.com": [5560], "www.upsploit.com": [17381], "oneonline.bradford.gov.uk": [2264], "assemble.me": [1279], "standeyo.com": [15374], "*.extreme-dm.com": [5526], "cscportal.org.uk": [19095], "www.torguard.net": [16567], "cms.iprsoftware.com": [7796], "www.gosquared.com": [6784], "voscast.com": [17845], "unmultimedia.org": [16996], "proxyshard.uk": [19524], "www.bios-mods.com": [1907], "aesnet.org": [930], "members.efa.org.au": [5152], "support.iopus.com": [7784], "*.patechmasters.com": [12623], "federalregister.gov": [5712], "ssl12.ovh.net": [12173], "ladesk.com": [9484], "www.oo-software.com": [11893], "foorumi.ovh-hosting.fi": [12173], "www.ieee-elearning.org": [7718], "taxi.yandex.com": [18651], "selby.greenparty.org.uk": [6925], "cdn.proxer.me": [13176], "www.empirehost.me": [19156], "*.datacell.com": [4177], "www.career.ru": [2840], "eventbrite.co.uk": [5441], "slate.me": [1920], "www.glyphicons.com": [6755], "www.harlandforms.com": [7207], "support.crypteron.com": [3850], "www.pgp.com": [12245], "www.domain.de": [4649], "wof-cluster.desy.de": [4399], "www.accellion.com": [441], "script-o-rama.com": [4757], "bankofamerica.com": [1648], "developers.xsolla.com": [18593], "www.ypassociation.org": [18668], "www.research.brown.edu": [2367], "ghosteryenterprise.com": [6630], "cobaltmania.com": [3341], "asia.elsevierhealth.com": [5187], "files.ezaxess.com": [5537], "steiermark.neos.eu": [10899], "*.jawbone.com": [8533], "*.sociomantic.com": [15079], "jizz.ppy.sh": [13006], "*.businesscatalyst.com": [2457], "ripe68.ripe.net": [13895], "update.gitter.im": [6684], "www.nyi.net": [10993], "client.wedos.com": [17901], "static-resource.np.community.playstation.net": [12794], "static.frostwire.com": [6229], "numato.com": [11576], "www.calligra.org": [2754], "www.brunel.ac.uk": [19021], "politico.com": [12873], "www.jobbik.hu": [8595], "api.snip2code.com": [15036], "gd4.alicdn.com": [805], "geolistening.com": [6540], "webmail.timeweb.ru": [16457], "capnproto.org": [2822], "alumni.buffalostate.edu": [2400], "shop.highsoft.com": [7405], "www.providercentral.org.uk": [19523], "haber.yandex.com": [18651], "nrk.no": [11546], "*.acm.org": [262], "video.linux.com": [9403], "www.xtremepapers.com": [18601], "www.bmf-steuerrechner.de": [1530], "www.fastwebmedia.com": [5671], "amnesty.de": [960], "movzeed.com": [18666], "lith.liu.se": [9084], "www.aldi.us": [299], "status.ghost.org": [6628], "helpdesk.infobox.ru": [8107], "ultimate-guitar.com": [19711], "www.metallica.com": [10307], "paypal.com": [12467], "www.101domain.com": [12], "misco.co.uk": [10452], "forum.siteground.com": [14865], "www.canarywatch.org": [2804], "blogs.sans.org": [14072], "ease.edp.pt": [4896], "dev.research.vt.edu": [17740], "bo-staging.getjaco.com": [6607], "modernlivingmedia.com": [17540], "ncei.noaa.gov": [11083], "mport.ua": [9785], "fhi.se": [5568], "e5.xhamsterpremiumpass.com": [18516], "*.e-fibank.bg": [5769], "three.ie": [16397], "www.coloradocollege.edu": [3442], "www.familie.plus.aok.de": [317], "eucalyptus.com": [5398], "www.hs-karlsruhe.de": [7582], "mxlogic.com": [10113], "members.vpnreactor.com": [17503], "www.activatejavascript.org": [494], "united-internet.de": [17205], "downloads.microsoft.com": [10364], "tiny.cc": [16478], "redmondmag.com": [13698], "www.seotrainingtoronto.com": [14103], "s.hofer.at": [299], "www.kinja.com": [8906], "player.qbrick.com": [13300], "kd.htw-berlin.de": [7112], "www.btc.to": [2380], "lilux.lu": [9284], "revenuesbenefits.westminster.gov.uk": [18220], "www.dnsdynamic.org": [4069], "my.pingdom.com": [12687], "stonewallcymru.org.uk": [19630], "m.pizza.de": [12747], "assets.strikingly.com": [15523], "socdwar.mail.ru": [9874], "verisign.com.hk": [17623], "fraudlabs.com": [6111], "livenation.co.*": [9481], "www.getcloak.com": [6567], "*.adhands.ru": [525], "hu.norton.com": [11505], "seniors.berkeley.edu": [17240], "www.wiredsafety.org": [18365], "cloudfront-assets.reason.com": [13635], "www.hertzequipsales.com": [7372], "sky.com": [14924], "www.siteparc.fr": [14884], "cdn.thegloss.com": [859], "yourmechanic.com": [18724], "www.sabayon.org": [14214], "*.spreadshirt.com.au": [15300], "leetmedia.com": [9224], "coreyabramson.com": [3673], "spontex.org": [15287], "biomedcentral.com": [1900], "tap2-cdn.rubiconproject.com": [14014], "*.swissreg.ch": [15696], "help.x-cart.com": [18494], "*.void.gr": [6915], "www.hotelplan.ch": [19262], "employers.indeed.com": [8051], "account.sourcefabric.com": [15179], "dn-walletla.qbox.me": [13299], "seferler.yandex.com.tr": [18649], "gatewaysb.com": [6468], "witham-braintree.greenparty.org.uk": [6925], "idaas.iam.ibm.com": [7675], "www.ilxgroup.com": [7753], "eipocimb.com": [2606], "www.outcampaign.org": [12149], "chat.stackoverflow.com": [15359], "travelocity.com": [16698], "www.vocalarticles.com": [11300], "d4designstudios.com": [3999], "sols.uow.edu.au": [17350], "eiseverywhere.com": [5389], "nytexaminer.com": [10999], "sample-solid.readme.io": [13608], "classic.storminternet.co.uk": [15497], "orwall.org": [12079], "www.siteorigin.com": [14868], "convox.com": [3632], "www.filetrip.net": [5795], "www.arts.leeds.ac.uk": [17318], "discoverypark.bnl.gov": [19009], "digikey.com": [4469], "*.mailinator.com": [9887], "www.al-akhbar.com": [772], "downloads.askmonty.org": [1262], "wf.cdn.gmru.net": [6349], "gosoapbox.com": [6783], "flix123.com": [5930], "www.bart.gov": [1681], "coincheck.jp": [3403], "dev.fitbit.com": [5887], "content.digicert.com": [4473], "adr.adriver.ru": [534], "anonymizer.com": [1048], "www.victorops.com": [17671], "mpp.emea.mxptint.net": [10741], "topfox.co.uk": [16561], "www.lgscout.com": [9600], "www.info.apple.com": [1119], "www.ic3.gov": [17022], "*.champssports.com": [2991], "youtube.qa": [18709], "www.hush.com": [7632], "*.pixelx.de": [12736], "android-git.linaro.org": [9361], "www.musalbas.com": [10707], "js.dmtry.com": [4604], "dianomi.com": [4444], "gemnasium.com": [6519], "www.kirei.se": [8914], "nova.mediatemple.net": [10165], "cdn.static.zdbb.net": [18759], "*.nss.udel.edu": [17249], "www.skipscreen.com": [15203], "secure.x-cart.com": [18494], "www.nottingham.ac.uk": [11528], "gamespot.com": [6426], "bayareaamusements.com": [1701], "ecigpros.com": [4884], "familyinfoservice.westsussex.gov.uk": [18211], "retail.onlinesbi.com": [11873], "content.outbrain.com": [12150], "*.www.gigaserver.cz": [6654], "sbms.bnl.gov": [19009], "www.pacebus.com": [12311], "*.bestbuy.com": [1801], "sites-auth.hubspot.com": [7594], "www.alljoyn.org": [832], "forumwizard.net": [6064], "myfreeschoolmeals.firmstep.com": [19183], "akademy.kde.org": [8718], "subscribe.condenastdigital.com": [3554], "clck.yandex.com.tr": [18649], "chrisanthemums.com": [3107], "virt-manager.org": [17743], "www.bundesnetzagentur.de": [2431], "www.mediamarkt.se": [10175], "epson.com": [5330], "www.studentaid.ed.gov": [4889], "*.memecdn.com": [10249], "security.stanford.edu": [15383], "www.naiin.com": [11012], "datasheetcatalog.com": [4214], "nihrecord.nih.gov": [11052], "www.billpay.de": [1877], "networkedblogs.com": [11272], "pq-direct.revsci.net": [13840], "www.nppa.org": [11054], "afd.calpoly.edu": [2747], "freeswitch.org": [6130], "rates.psc.gov": [19525], "www.legaldirectories.com": [9229], "wumatrix.wusm.wustl.edu": [17993], "www.exaccess.ru": [12786], "webmon.com": [18134], "www.defcon.ru": [4304], "ipv6.tunnelbroker.net": [16834], "autodiscover.merton.gov.uk": [10287], "*.digi.insightmgr.com": [4507], "static1.startnext.com": [15412], "hacklab.to": [7133], "m.mobot.net": [7549], "cssiw.wales.gov.uk": [17957], "assets.fit.edu": [5942], "www.cs.cornell.edu": [3676], "blog.osmfoundation.org": [11672], "cgfang.taobao.com": [15952], "wowjs.zamimg.com": [18782], "*.www.kidsfootlocker.com": [8884], "www.etouches.com": [5389], "www.instantssl.com": [8185], "svn.verisignlabs.com": [17624], "evo.com": [5462], "imasdk.googleapis.com": [6839], "images.yandex.kz": [18652], "cdn3.xvideosx.tv": [18537], "stats.zaehlwerk.net": [18778], "blog.diasporafoundation.org": [4451], "apps.secure.me": [14488], "email.wildwestdomains.com": [18300], "es.business.t-mobile.com": [15772], "scu.edu": [14290], "hypo.neos.eu": [10899], "forms.business.yahoo.co.jp": [18640], "moodle.net": [10574], "5.vgc.no": [17484], "*.turner.com": [16845], "blog.wegohealth.com": [18184], "mydundeeaccount.dundeecity.gov.uk": [4801], "www.chrisnewland.com": [3106], "*.transmode.se": [16677], "www.framalab.org": [6095], "0bin.net": [2], "mgm.congstar.de": [3577], "www.security-database.com": [14519], "information.dk": [8123], "www.srna.sk": [15341], "www.vis.occrp.org": [11611], "mail.bestmx.ru": [1810], "ori.dhhs.gov": [19117], "mygnu.de": [10762], "humpi.at": [7616], "www.vinoteka.hofer.si": [299], "patchwork.linuxtv.org": [9416], "*.spreadshirt.com": [15300], "totalrecall.com": [1889], "nam.aviationweather.gov": [18972], "se.godaddy.com": [6773], "www.hyperelliptic.org": [7645], "toplist.cz": [15847], "www.investigativedashboard.org": [8318], "nuwear.com": [11587], "ve.godaddy.com": [6773], "www.miramax.com": [10440], "login.proboards.com": [13110], "muse-cdn.warnerartists.com": [10709], "www.mos.org": [10714], "roofclimb.com.au": [19556], "goettingen.freifunk.net": [6190], "probikekit.co.uk": [13116], "community.fastly.com": [5687], "arsnova.thm.de": [15811], "apotea.se": [1098], "customsites.usc.edu": [17278], "www.elsevierhealth.com": [5187], "www.lsbu.ac.uk": [9098], "accel-ppp.org": [18936], "embed.wistia.com": [18377], "ivarch.com": [8399], "*.airbnb.ca": [749], "replay.pokemonshowdown.com": [12857], "syscoding.com": [15751], "www.inetinteractive.com": [7774], "www.sheamortgage.com": [8431], "hardware.support.eu.playstation.com": [12795], "2012.guadec.org": [6397], "www.depolitiezoekt.nl": [11132], "www.realfavicongenerator.net": [19542], "hecourse.engineering.osu.edu": [11760], "www.lucidsolutions.co.nz": [9644], "anon-ib.com": [1035], "masterh3.adriver.ru": [534], "eetimes.com": [4907], "opacs.stanford.edu": [15383], "global.oup.com": [12192], "images1.bovpg.net": [2252], "kirei.se": [8914], "blog.xsolla.com": [18593], "www.esc.edu": [5215], "izea.com": [7886], "www.rabbitporno.com": [13488], "alternative-settings.educ.cam.ac.uk": [17243], "jd.hk": [8424], "crowdfunding.correctiv.org": [3685], "projetos.ossystems.com.br": [11678], "mclu.org": [9727], "ecommercebrasil.com.br": [4885], "pdf.datasheetcatalog.com": [4214], "mall.jd.com": [8423], "stratechery.memberful.com": [10247], "tambov.rt.ru": [13469], "chcemvediet.sk": [3037], "www.gkvnet-ag.de": [6338], "www.ebanking.cimbthai.com": [2608], "fonder.ki.se": [8725], "pic.news.mail.ru": [9874], "www.23systems.net": [73], "otrs.datamotion.com": [19102], "marketplace.org": [10017, 10018], "www-static.ripe.net": [13895], "www.continental.com": [3619], "umd1.mycdn.me": [10824], "quch.io": [13346], "www.loveourlocalbusiness.com": [9629], "isoc24.com": [7830], "a.company-target.com": [3509], "topoption.com": [16562], "www.vodafone.ie": [17815], "www.tutanota.de": [16851], "*.wikia.com": [18292], "creativity-online.com": [3758], "www.patexia.com": [12449], "lenovovision.com": [9251], "abopage-mediafiles.tagesanzeiger.ch": [15908], "wiki.freenetproject.org": [6181], "contributors.debian.org": [4275], "image.ucuzu.com": [17108], "edublogs.org": [5092], "cph2010.drupal.org": [4780], "static.nexcess.net": [11356], "community.rapid7.com": [13553], "intranet.uow.edu.au": [17350], "coursefinder.northyorks.gov.uk": [19440], "*.doclix.com": [4074], "vtluug.org": [17518], "help.lighthouseapp.com": [4932], "stc.sandbox.pagseguro.uol.com.br": [16998], "*.sharetobuy.com": [19586], "www.gettag.mobi": [6606], "ma2.twimg.com": [16877], "autodiscover.lubs.leeds.ac.uk": [17318], "hometheaterreview.com": [7473, 7474], "*.richarddawkins.net": [13872], "sensiolabs.com": [14586], "appleseed.apple.com": [1120], "www.give.berkeley.edu": [17240], "partner.justeat.nl": [19328], "downloader.disk.yandex.com.tr": [18649], "ibs.sberbank.sk": [7905], "static8.twilio.com": [16876], "*.nextgenautoparts.com": [11368], "seattle.gov": [3192], "data.bitcoinity.org": [1984], "search.lbl.gov": [9065], "freizeit.sbb.ch": [15693], "news.osu.edu": [11760], "*.sockshare.com": [15080], "ccc.jd.com": [8423], "footlocker.eu": [6010], "www.seulonta.fi": [15744], "*.asada.gov.au": [345], "www.arcgis.com": [1155], "oaa.onlinesbi.com": [11873], "mathinstitutes.ima.umn.edu": [17268], "ezimg.it": [5004], "www.blossom.io": [2121], "as.blip.tv": [2079], "youtube.com.ro": [18709], "getmybalance.com": [6615], "denic.de": [4362], "horde-llc.com": [7495], "help.walmart.com": [17963, 17964], "opscode.com": [12061], "sourcesup.renater.fr": [13764], "si2.twimg.com": [16877], "spkrb.de": [19619], "s1.gismeteo.ua": [6670], "www.poddery.com": [12844], "www.smileexperts.osu.edu": [11760], "video.intelexit.org": [8212], "netscape.com": [11248], "ricochet.com": [13877], "rossendale.gov.uk": [13973], "cdn.pdc.comcast.com": [3461], "cdn.kde.org": [8718], "*.fmpub.net": [5722], "introversion.co.uk": [8301], "www.webwewant.org": [18097], "www.languageperfect.com": [9146], "goemerchant.com": [6776], "tp.wpml.org": [17922], "use-enco.com": [17420], "anibis.ch": [18956], "amnesty-in-bewegung.de": [957], "rbwm.objective.co.uk": [19454], "addiction-partnership.wustl.edu": [17993], "www.clkads.com": [3272], "mixbit.com": [10464], "monitor.bvg.de": [1582], "brianclifton.com": [2310], "*.purdue.edu": [13235], "educationnext.org": [5095], "ca.pcpartpicker.com": [12497], "dropboxteam.com": [4768], "www.atmos.uiuc.edu": [16956], "forums.alpinelinux.org": [869], "fj.simple.com": [14820], "kona32.kontera.com": [8981], "www.boxus.com": [12458], "www.scipy.org": [14374], "gleam.io": [6705], "chat.echoplex.us": [5047], "www.kch.nhs.uk": [10913], "shop.adapteva.com": [557], "www.bibl.liu.se": [9083], "cio.usc.edu": [17278], "www.codeship.com": [3378], "members.cdbaby.com": [19045], "components.xamarin.com": [18540], "uscurrency.gov": [17057], "forums.hak5.org": [7168], "support.sendgrid.com": [14577], "www.optimisemedia.com": [12070], "*.moveon.org": [10631], "wicnss.fns.usda.gov": [17209], "www.lumigon.com": [9665], "gq.com": [6379], "www.printm3d.com": [13068], "machines.chromeexperiments.com": [3117], "caller.com": [2753], "wheel.sk": [18237], "store.f-secure.com": [5541], "scaron.info": [14091], "www.inps.it": [7770], "secure-static.tagged.com": [15909], "nss.wustl.edu": [17993], "cpj.org": [2646], "mail.websupport.cz": [18092], "anpost.ie": [986], "a1afastcash.com": [220], "ssl.images-createspace.com": [7983], "beta.startmail.com": [15410], "prototyp.cerit.cz": [2572], "www.iei.liu.se": [9084], "www.judge.me": [8661], "www.hgst.com": [7059], "richmond.firmstep.com": [19183], "*.nap.edu": [16201], "manilaprinciples.org": [9956], "www.taringa.net": [15964], "*.247ilabs.com": [77], "www.bodum.com": [2173], "store.ar15.com": [337], "lane-beta.stanford.edu": [15383], "compass-ssl.microsoft.com": [10364], "streamwww.classroom.ohio-state.edu": [11761], "scripturaengage.com": [14426], "tpfrb.dk": [16623], "noo.org.uk": [10944], "melkweb.frieslandcampina.com": [2783], "www.tu-hamburg.de": [15876], "blog.zoho.com": [18884], "alaskaair.com": [778], "downloadster.net": [4728], "charts.smartmoney.com": [11320], "idsoftware.com": [7924], "docs.cloud.datapipe.com": [4212], "trasy.docelu.pl": [4615], "en.mtmei18n.com": [10211], "subscriberhelp.govdelivery.com": [6863], "stats.cyscon.net": [3990], "www.jwz.org": [19330], "data.highways.gov.uk": [19250], "trac.transmissionbt.com": [16676], "sc.sedo.com": [14542], "gmoserver.jp": [6347], "www.nancysgonegreen.com": [11028], "zugaina.com": [18918], "www.notary.icsi.berkeley.edu": [17240], "openprinting.org": [12041], "hub.togetherjs.com": [16530], "www.justpaste.it": [8692], "*.polldaddy.com": [12881], "static2cdn.hubspot.com": [7594], "www.shazam.com": [14689], "catalysthost.com": [2897], "*.backup.com": [11506], "www.crypto.graphics": [3852], "youri.zarb.org": [18796], "www.linaro.org": [9361], "i.gyazo.com": [7035], "kanotix.com": [8782], "*.passports.gov.au": [1398], "www.pokerstars.com": [19503], "poivy.com": [12854], "qtcloudservices.com": [13316], "wiki.zoho.com": [18884], "www.handbook.fca.org.uk": [5557], "iceintranet.admin.cam.ac.uk": [17243], "mvideos.stanford.edu": [15383], "acadinfo.wustl.edu": [17993], "ad.yieldmanager.com": [13881], "edixml.mycampina.com": [2783], "*.oit.umass.edu": [17265], "www.gitcop.com": [6677], "html.adobe.com": [614], "www.divitup.com": [4579], "www.xfce-look.org": [19461], "twistedmatrix.com": [16885], "insight.adsrvr.org": [635], "www.pictshare.net": [12670], "nebezi.cz": [11126], "www.r00tz.org": [13390], "*.esri.com": [5363], "oracleimg.com": [12082], "wiki.young-pirates.eu": [18716], "editola.com": [5086], "www.fosdem.org": [6069], "www.slickedit.com": [14956], "www.rachelbythebay.com": [13493], "medarbejdere.kk.dk": [8730], "www.eide-itc.no": [5123], "track.www.zazzle.com": [18804], "feedbackify.com": [5736], "www.10gen.com": [14], "www.derpiboo.ru": [4381], "cdn1.talkingpointsmemo.com": [15933], "bc.edu": [1503], "la-hora.org": [17120], "msp.f-secure.com": [5541], "www.movienewsletters.net": [10642], "www.scriptfodder.com": [14421], "www.openvpn.net": [11989], "youtube.lt": [18709], "www.host2.bg": [7506], "youtube.lv": [18709], "diffoscope.org": [4463], "www.popcorn-time.se": [12914], "www.xen-orchestra.com": [18556], "de.chaturbate.com": [3035], "c3.thejournal.ie": [16224], "indybay.org": [8081], "downloads.sms.cam.ac.uk": [17243], "sozialismus.info": [15202], "connect.globalcapacity.com": [6723], "static2.readyflowers.com": [13620], "opia.illinois.edu": [17258], "www.lulea.se": [9656], "www.in2code.de": [8028], "jaast.net": [12351], "btcmarkets.net": [1567], "www.flocabulary.com": [5935], "sciencenode.org": [14381], "passets-lt.pinterest.com": [12699], "www.zerigo.com": [18835], "img2.thejournal.ie": [16224], "eriga.lv": [13880], "rackspacecloud.com": [13507], "www.overviewproject.org": [12171], "sphotos-d.ak.fbcdn.net": [5700], "sipgate.co.uk": [14855], "www.partnernaurovni.sk": [12419], "www.internetstaff.com": [8285], "lektorium.tv": [9242], "*.secunet.com": [14474], "help.cloudforge.com": [3288], "saturnug.nottingham.ac.uk": [11528], "beta.talky.io": [15935], "www.hertz.at": [7337], "cms.gov": [17027], "popularresistance.org": [12920], "www.fxsitecompat.com": [19205], "exchange.pulsepoint.com": [13226], "blog.transifex.com": [16669], "markng.co.uk": [10006], "hg.adblockplus.org": [561], "www.garagegames.com": [6457], "xmpp.org": [18526], "cloud.ubuntu.com": [17102], "www.hertz.ae": [7370], "rollbar.com": [13958], "id.mashape.com": [10044], "blog.josefsson.org": [8631], "mail.hivos.org": [7431], "gu.twimg.com": [16877], "wiki.drweb.com": [4783], "www.swm.de": [14208], "foodsafety.gov": [5999], "cdn.11footballclub.com": [21], "moodle.lsbu.ac.uk": [9098], "acomp.stanford.edu": [15382], "testandtarget.omniture.com": [11803], "ahm.com.au": [737], "bitcoinplus.com": [1982], "www.redletter.link": [13676], "*.austiners.com": [1378], "fws.jd.com": [8423], "live.kent.ac.uk": [17317], "foofighters.com": [5996], "www.gentoo-ev.org": [6530], "a8.sphotos.ak.fbcdn.net": [5700], "www.pcel.com": [12222], "www.eduncovered.com": [5071], "www.iwantclips.com": [7874], "csjobb.idg.se": [7705], "support.vodafone.co.uk": [17813], "*.sheetmusicplus.com": [14693], "avatarpicker.com": [1445], "pad.systemli.org": [15765], "www.gmplib.org": [6348], "idp.iu.edu": [8064], "www.tros.nl": [16761], "www.webyog.com": [18175], "www.bivol.bg": [2028], "a2hosting.com": [222], "justice4assange.com": [8699], "www.servercraft.co": [14613], "www.tchibo.cz": [15985], "usatoday.com": [17031], "hosting.uaa.alaska.edu": [17233], "aeriagames.com": [686], "studentaffairs.stonybrook.edu": [15480], "www.kaiseki.me": [8768], "www.cpbonlinebanking.com": [3430], "www.adcash.com": [567], "www.veronmaksajat.fi": [17632], "*.ecash.io": [4883], "www.kingdomofloathing.com": [1308], "mappe.istella.it": [8381], "splashthat.com": [15281], "www.powerlinemanmag.com": [13003], "sapo.pt": [14297], "healthystart.nhs.uk": [10913], "www.prospectmagazine.co.uk": [13162], "c.microsoft.com": [10364], "obi.hu": [19452], "turngs.com": [16843], "www.ex10.biz": [5471], "digital-forensics.sans.org": [14072], "www.create-dmgmedia.co.uk": [3771], "dntly.com": [4608], "www.census.gov": [17027], "schweissgut.net": [12116], "www.fdopk.org": [5664], "intraweb.marion.ohio-state.edu": [11761], "smiliblog.stanford.edu": [15383], "isc.sans.org": [14072], "digitalbond.com": [4480], "www.idefimusic.com": [7932], "promo.awempire.com": [374], "www.deathmask.net": [4266], "eecs.umich.edu": [17266], "www.telenor.se": [16091], "seatgen.law.yale.edu": [18642], "www.sweflix.to": [15685], "dawsonera.com": [4235], "zooko.com": [18898], "docs.fedoraproject.org": [5726], "electronicintifada.net": [5154], "u.s.kqed.net": [8747], "pl.godaddy.com": [6773], "facultyhandbook.stanford.edu": [15383], "spectrumbusiness.net": [15249], "protonmail.ch": [13169], "*.communigator.co.uk": [3498], "auth.campact.de": [2777], "www.givingcomfort.com": [6690], "*.samwhited.com": [14260], "www.ica.se": [7680], "www.wilsoncenter.org": [18321], "egyptindependent.com": [5117], "www.climate-diplomacy.org": [3266], "intersango.com": [8294], "image.ahnlab.com": [739], "www.ch9.ms": [2979], "www.lippupalvelu.fi": [16421], "www.breuninger.com": [2306], "forum.junge-piraten.de": [8679], "mein2.dastelefonbuch.de": [4168], "www.promote.ie": [4513], "campusassist.sydney.edu.au": [19649], "www.houten.nl": [11132], "www.synaptop.com": [15724], "*.globalsources.com": [6733], "hb.valleyfirstcu.org": [17533], "www.mngt.waikato.ac.nz": [17347], "assets.mpc-hc.org": [19412], "newint.org": [11297], "www.illinois.edu": [17258], "association.drupal.org": [4780], "mysql.variomedia.de": [17567], "cityemail.com": [3183], "urlaubspiraten.de": [19719], "www.datacentrumgids.nl": [4199], "edigitalsurvey.com": [4901], "www.commonplacebooks.com": [3488], "community.bistudio.com": [2179], "www.georgiegirl.com.au": [6548], "topliners.eloqua.com": [5179], "fark.com": [5661], "www.w-tune.com": [18106], "www.ansible.com": [1056], "support.dsi.cnrs.fr": [6195], "images.switchadhub.com": [15701], "www.samknows.*": [14257], "live.wifidb.net": [18272], "www.kkbox.com": [8731], "www.sanoma.com": [14287], "www.opsterland.nl": [11132], "usc.edu": [17278], "car-hire.lastminute.com": [9165], "*.affiliatetracking.com": [702], "www.confianzaonline.es": [3568], "www.purehacking.com": [13238], "*.networks.nhs.uk": [10913], "cdn1.emilstahl.dk": [5208], "bbc.co.uk": [1499], "mixpanel.com": [10468], "vs.cfif.org": [2949], "ohs.stanford.edu": [15383], "pilot.marketplace.equinix.com": [5334], "www.farehamandgosportccg.nhs.uk": [10913], "spectrum.jino.ru": [8575], "jd.cdn.gmru.net": [6349], "megworld.co.uk": [10220], "www.runforyourlives.com": [14033], "wix.com": [18383], "mygov.elmbridge.gov.uk": [5173], "visindavefur.hi.is": [7066], "discuss.zetetic.net": [18851], "www.appsites.com": [1135], "synergy-foss.org": [15736], "*.omaze.info": [11790], "*.all-inkl.com": [825], "ticketing.trch.co.uk": [16420], "cdn.okccdn.com": [11770], "fr.verbling.com": [17615], "dashboard.stripe.com": [15525], "fhs.se": [5570], "www.riglogix.com": [1916], "api.proofpositivemedia.com": [13155], "arlanda.se": [1199], "pda-passport.yandex.kz": [18652], "www.wheel.sk": [18237], "esolangs.org": [5359], "adminguide.stanford.edu": [15383], "k2s.cc": [8704], "git.chromium.org": [3119], "rstforums.com": [13465], "oas.org": [12104], "mrfile.me": [10673], "www.dicesoft.net": [4454], "www.java-apps.org": [19461], "master.apan.net": [328], "new.eastsussex.gov.uk": [19142], "origin-enterprise.omniture.com": [11803], "jobshop.gateshead.gov.uk": [6467], "www.steaknshake.com": [15447], "service2.ess.apple.com": [1120], "baxter.mysql.cesky-hosting.cz": [19051], "thebluealliance.com": [16333], "sjofartsverket.tdconline.se": [15799], "webhost.biz": [18120], "secure.doublerobotics.com": [4713], "www.aokplus-online.de": [317], "www.legitbs.net": [9233], "blog.blocktrail.com": [2086], "*.findthebest.com": [5840], "my.ipswich.gov.uk": [8351], "www.mesamatrix.net": [10288], "support.mobify.com": [10494], "www.lsa.umich.edu": [17266], "track.newjobs.com": [11318], "cluedumps.mit.edu": [9747], "wumath.wustl.edu": [17993], "*.userapi.com": [17490], "www.bad-dragon.com": [18979], "*.vimeo.com": [17717], "www.cloudmark.com": [3309], "mini-dweeb.org": [4791], "www.sugarlabs.org": [15581], "hannahousetours.stanford.edu": [15382], "www.4gifs.com": [6037], "www.buytrezor.com": [2469], "stuke2.piratenpartei-bayern.de": [12719], "cache.agilebits.com": [727], "assist.zoho.com": [18884], "www.movzeed.com": [18666], "apply.onlinelaw.wustl.edu": [17993], "peterbroderick.com": [12589], "*.wineaustralia.com": [18351], "hidekisaito.com": [7393], "git.eleves.ens.fr": [4930], "velleman.be": [17596], "catooh.com": [2907], "www.smartauction.biz": [865], "reclog.jp": [13640], "openmw.org": [11954], "blackberryid.blackberry.com": [2050], "cryptoparty.org": [3886], "www.simonsfoundation.org": [14817], "cp-filin.mail.ru": [9874], "crypteianetworks.com": [3849], "www.frederikshavn.dk": [6117], "redcross.org": [13672], "valleyfirstcu.org": [17533], "*.store.cox.com": [3739], "www.domenovyprohlizec.cz": [4671], "subscribe.sloanreview.mit.edu": [9749], "cdn.myfonts.com": [10758], "clasconsultants.net": [19067], "openafs.mit.edu": [9749], "static.vliegtickets.nl": [17802], "www.googlemail.com": [6843], "avuedigitalservices.com": [1459], "img5.wsimg.com": [14507], "www.hollywoodlife.com": [7455], "*.ihub.co.ke": [19274], "ssl-cdn.highwebmedia.com": [7408], "ccr-abcam.cancer.gov": [2805], "drv-bund.de": [4407], "sb-ssl.google.com": [6834], "www.verbraucher-sicher-online.de": [17616], "eventlogger.soundcloud.com": [15161], "dataprovision.education.gov.uk": [19149], "luna1.co": [19373], "store-skin.nytimes.com": [11000], "wiki.pha.jhu.edu": [16296], "lsbbugs.linuxfoundation.org": [9412], "browser.yandex.by": [18648], "start.me": [15404], "admtl.com": [690], "sjobs.brassring.com": [19017], "www.colors-il.com": [3446], "include.reinvigorate.net": [13748], "navteqmedia.com": [10873], "18f.gsa.gov": [6386], "nbcudigitaladops.com": [10875], "solutions.canon.com": [2809], "subway.com": [15571], "*.piriform.com": [12725], "search.jd.hk": [8424], "members.zipcar.com": [18872], "www.tcl.tk": [15986, 15987], "www.givedirect.org": [6687], "www.relevate.ru": [13753], "forum.sparkfun.com": [15222], "images.cars.com": [2864], "mtgox.com": [10679], "penta.debconf.org": [4268], "mail.aol.co.uk": [320], "ams-login.dotomi.com": [4702], "www.wpml.org": [17922], "stardock.com": [15401], "www.undeb.bangor.ac.uk": [1640], "www.logmeinrescue.com": [9551], "surfmail.rrz.uni-hamburg.de": [16951], "staging-scoop.intel.com": [8209], "relayurl.xxxbunker.com": [18607], "restaurants.lastminute.com": [9165], "www.cse.umich.edu": [17266], "www.balabit.com": [1624], "www.omnirom.org": [11799], "www-pw.cr0.org": [3749], "ecn.t3.tiles.virtualearth.net": [17755], "www.supertracker.usda.gov": [17209], "libtoxcore.so": [9322], "springerzahnmedizin.de": [15310], "consumosocial.catracalivre.com.br": [2908], "statuscake.com": [15436], "alertaenlinea.gov": [11810], "www.fenland.gov.uk": [5750], "redmine.pfsense.org": [12607], "accounts.google.co.*": [6837], "*.worldofwarplanes.eu": [18461], "www.ourvacationcentre.net": [18489], "www.getmailbird.com": [6596], "www.productvisio.com": [13125], "www.hellolife.net": [7297], "notebook.zoho.com": [18884], "demandstudios.com": [4344], "kkh.de": [8732], "oxfam.org.uk": [12188], "news.cpanel.com": [2651], "life.taobao.com": [15952], "jammerbugt.dk": [8506], "*.solidcactus.com": [15119], "ww7.investorrelations.co.uk": [6714], "www.figshare.com": [5786], "ethicspoint.com": [5383], "www.usukita.org": [17068], "www.centrify.com": [19048], "conference.educ.cam.ac.uk": [17243], "chronicle-store.com": [3121], "hi.kickassapp.com": [8875], "www.kirklees.gov.uk": [8916], "cox.com": [3739], "cas.strode-college.ac.uk": [15528], "website.ws": [18086], "data.stubhub.com": [15534], "lists.w3.org": [17888], "lists.clearlinux.org": [3233], "ispid.nl": [7833], "*.grid5000.fr": [6949], "www.pcgarage.ro": [19483], "popcash.net": [12905], "www.calyxinstitute.org": [2760], "rstorage.filemobile.com": [5800], "vocaroo.com": [17810], "www.fi.ncsu.edu": [11492], "tshare.to": [15865], "rug.nl": [17254], "myimpact.ncl.ac.uk": [10884], "*.www.footaction.com": [6012], "*.austinfitmagazine.com": [1377], "www.dreamspark.com": [4749], "meetings.io": [10217], "vdqbulbs.com.au": [17477], "www.geovation.uk": [6550], "netiq.com": [11194], "railsconf.com": [13528], "bcomm.wales.gov.uk": [17957], "www.komplett.no": [8970], "*.mara.gov.au": [11750], "reproducible-builds.org": [13789], "youcanbook.me": [18703], "printfection.com": [13070], "xenforo.com": [18561], "www.disman.tl": [4564], "couponcabin.com": [3711], "gethttpsforfree.com": [6592], "www.arteradio.com": [18966], "www.python.org": [13272], "funds.gofundme.com": [6779], "u.outbrain.com": [12150], "www.identrust.com": [7934], "kickassapp.com": [8875], "secure.nationalarchives.gov.uk": [11065], "navicast.co.jp": [14740], "netmath.illinois.edu": [17258], "commande.easy-hebergement.fr": [5033], "arcadeflex.com": [5224], "p.liadm.com": [7793], "www.ownedcore.com": [12184], "accrualnet.cancer.gov": [2805], "vivaldi.net": [17797], "mobile.hillingdon.gov.uk": [7410], "*.v.gd": [19726], "mp.alipay.com": [817], "jabberd.org": [8479], "www.personalausweisportal.de": [12583], "dspace.harvard.edu": [7219], "*.cvent.com": [3948], "git.decadent.org.uk": [4280], "pando.com": [12357], "s-media-cache-ak1.pinimg.com": [12691], "greenqloud.com": [6919], "boutique.rts.ch": [19621], "bretagne-web.eu": [2305], "resadmin.lsbu.ac.uk": [9098], "google-melange.com": [6842], "upcmail.upc.cz": [17000], "sw.csiac.org": [2670], "www.bitcoin.co.id": [1964], "anonymox.net": [1049], "vtracy.de": [17867], "statesmanjournal.com": [15423], "origin.cdbaby.com": [19045], "reklamport.com": [13750], "bittorrent.org": [2024], "mail.deathmask.net": [4266], "www.dnswatch.info": [4066], "www.dataskydd.net": [4215], "www.braunschweig.de": [2291], "www.teletrust.de": [19668], "fr.tchibo.ch": [15985], "rettighedsalliancen.dk": [13831], "www.pragprog.com": [13012], "media.amctv.com": [306], "crowdcurity.com": [3824], "helponclick.com": [7305], "maps.gstatic.com": [6841], "srv.cdn-asknet.de": [1268], "img5.leboncoin.fr": [19351], "www.odir.org": [12007], "*.entertainment.ie": [5296], "m86security.com": [9701], "www.us.elsevierhealth.com": [5187], "www.cvis.vutbr.cz": [17522], "ru.verbling.com": [17615], "www.tagesschau.de": [19656], "iibuy.com.au": [7957], "fr.libreoffice.org": [9311], "www.openhunt.co": [12014], "a.adroll.com": [536], "diskcryptor.net": [4562], "kdab.com": [8717], "time2play.mobi": [16454], "trusted.kaspersky.com": [8806], "gruen-digital.de": [6985], "potager.org": [12985], "www.zlavadna.sk": [18878], "people.com": [12546], "pcmi.ias.edu": [7669], "www.the-independent-news.com": [8056], "historytoday.com": [7419], "tetadrogerie.cz": [19672], "civicscience.com": [3201], "www.retrousb.com": [13828], "www.acast.com": [18935], "lever.co": [9269], "donations.rspca.org.uk": [13461], "mydigipass.com": [10828], "www.xively.com": [18577], "commerce.ti.com": [16152], "www.rrz.uni-hamburg.de": [16951], "cjs.leeds.ac.uk": [17318], "microca.st": [10352], "teslamotors.com": [16142], "www.lanyrd.com": [9153], "services28.ieee.org": [7715], "campina.de": [2782], "olb.nationwideinternational.com": [11091], "*.jottit.com": [8639], "www.smartrecruiters.com": [14994], "utl.pt": [16033], "www.onthemedia.org": [11818], "*.usgs.gov": [17061], "identitytheft.gov": [7938], "*.blogspot.ca": [2107], "neoseeker.com": [11157], "blog.zen.co.uk": [18815], "www.deutschepost.com": [19112], "www.assistance-multimedia.fr": [1284], "www.sec.informatik.uni-goettingen.de": [17166], "www.southwark.gov.uk": [15196], "coralproject.net": [19080], "forum.ovh.es": [12173], "tinhte.vn": [16474], "www.emeraldinsight.com": [5205], "connect.iso.org": [7827], "www.federalregister.gov": [5712], "pd.rkn.gov.ru": [13913], "linguee.com": [9373], "faiusa.org": [5998], "webmdhealth.com": [18071], "*.studyinaustralia.gov.au": [15543], "questioncopyright.org": [13356], "egedalkommune.dk": [5113], "blog.cpanel.com": [2651], "forum.filezilla-project.org": [5796], "nserver.ru": [11548], "www.airvpn.org": [748], "dedikuoti.lt": [4292], "www.vodafone.com": [17816], "people.collabora.co.uk": [3419], "www.pingless.co.il": [12688], "anonysurfer.com": [1047], "sc4.maps.live.com": [9483], "www.genua.de": [19212], "www.esri.ie": [4965], "www.proxpn.com": [19519], "static.gbot.me": [6808], "www.xbetsport.com": [18549], "*.secure-secure.co.uk": [14485], "www.its.thm.de": [15811], "eet.eu": [4905], "*.telerik.com": [16094], "www.theexplorercard.com": [16272], "www.iceheberg.fr": [7912], "hrdivision.usc.edu": [17278], "ilmasto-opas.fi": [7971], "www3.camden.gov.uk": [2771], "*.onlineshoes.com": [11874], "www.usainteanne.ca": [19720], "live.assets.mybcdna.com": [10821], "marc.info": [9711], "www.apsislead.com": [1140], "www.indiemerchstore.com": [8070], "www.moreinterop.com": [10588], "cdn.washingtonexaminer.biz": [16214], "nustarz.com": [11563], "spunq.oe24.strgstatic.com": [11728], "www.youtube.dk": [18709], "www.foecvliab.com": [5971], "eiffel.com": [5124], "bar.yandex.com": [18651], "act.credoaction.com": [3793], "*.internap.com": [8254], "mybcvs.ch": [1655], "camsis.cam.ac.uk": [17243], "www.gemeentenoordenveld.nl": [11132], "bitpay.com": [1941], "ssl.zoho.co.jp": [18883], "ssl.zus.pl": [18769], "blinddesign.nl": [2074], "www.youtube.co.at": [18709], "*.mediahub.com": [10153], "support.anubisnetworks.com": [1073], "ciao.de": [3132], "fender.com": [5749], "www.metanet.ch": [10309], "dochelp.debian.net": [4273], "freebiblesoftware.com": [6139], "erb.copeland.gov.uk": [19079], "popehat.com": [12916], "www.trustpilot.com": [16798], "www.kokousalusta.fi": [8958], "amazonsupply.com": [916], "educacursos.com": [5093], "mydatapipe.net": [10804], "www.iglo.tk": [3533], "basecamp.com": [1687], "webmail.xs4all.nl": [18535], "crm.panoptykon.org": [12365], "ugc.futurelearn.com": [6282], "lists.sans.org": [14072], "mirrors.ocf.berkeley.edu": [17240], "account.cyanogenmod.org": [3954], "refer.istockphoto.com": [19309], "services.renater.fr": [13764], "assets.ubuntu.com": [17102], "porvoo.fi": [19509], "css.washingtonpost.com": [17990], "pq.kagi.com": [8766], "www.macfound.org": [9818], "support.pogoplug.com": [12851], "browse.dict.cc": [4455], "bettershopping.eu": [1830], "newsletter.quickline.com": [19530], "compass-ssl.xboxlive.com": [18551], "paste.openttdcoop.org": [11982], "www.nawaat.org": [11115], "twenga-solutions.com": [16872], "outlook.office365.com": [11745], "bitgamer.su": [1996], "www.dbs.com.tw": [4010], "drugs-forum.com": [4777], "www.cyberpatrol.com": [3962], "www.douban.com": [4707], "*.nmugroup.com": [10942], "windriver.com": [18337], "cimbclicks.co.id": [2605], "blog.getsatisfaction.com": [6617], "img.buch.ch": [16171], "38.de": [119], "appstore.alipay.com": [817], "www.vedomosti.ru": [19730], "www.carekris.com": [2846], "womble.decadent.org.uk": [4280], "blog.malwarebytes.org": [9929], "dmgt.co.uk": [4121], "toolbar.vip.symantec.com": [15715], "modernpgp.org": [10522], "videoaidedinstruction.com": [17691], "ssl.buch.de": [16171], "translate.yandex.by": [18648], "quitnow.smokefree.nhs.uk": [10913], "southwark.gov.uk": [15196], "www.idstronghold.com": [7937], "qtool.leeds.ac.uk": [17318], "edgewall.org": [5083], "www.fldemo.nsf.gov": [11060], "www.cohnreznick.com": [3389], "careereagles.osu.edu": [11760], "m-privacy.de": [9693], "fahrinfo.bvg.de": [1582], "twisp.me": [16882], "www.dragonflybsd.org": [4738], "secure.xtwo.ne.jp": [18603], "togetherjs.com": [16530], "support.jobscore.com": [8590], "www.freifunk.net": [6192], "www.mondovino.ch": [3645], "*.dotcloud.com": [4693], "www.temp-mail.ru": [16105], "beta.fastmail.com": [5688], "sierraclubgreenhome.com": [14771], "www.blogher.com": [2102], "studentgrantreview.acs.org": [929], "parkingin.sheffield.gov.uk": [14694], "cvimellesgriot.com": [2691], "lsvr.engineering.osu.edu": [11760], "lackname.org": [19346], "www.gov.uk": [6366], "sellercentral.amazon.com": [910], "blogs.datadirect.com": [4180], "static.outspark.com": [12154], "okcoin.cn": [11627], "onthe.io": [11890], "npre.illinois.edu": [17258], "usbclientadvocacy.com": [17054], "gist.github.com": [6680], "www.anzen.org.uk": [1082], "www.ntmx.de": [11555], "x.translateth.is": [16672], "www.biofitt.com": [1906], "partnernaurovni.sk": [12419], "audioarchives.oc.usda.gov": [17209], "*.demdex.net": [4351], "islington.gov.uk": [8370], "www.fakturownia.pl": [5639], "secure.webmercs.com": [4171], "app.vssps.visualstudio.com": [17785], "www.secureinthecircle.com": [14498], "serverdensity.io": [14614], "dediserve.com": [4293], "www.dnfsb.gov": [4310], "login.f-secure.com": [5541], "www.yoursav.com": [18737], "loyaloop.tele2.lt": [16069], "*.righthaven.com": [13885], "datatilsynet.no": [4216], "*.beenverified.com": [1749], "evm.dk": [5461], "www.qsstats.com": [13289], "pimienta.org": [12985], "4sevens.com": [162], "log.pinterest.com": [12699], "www.icio.us": [7920], "*.travis-ci.org": [16701], "condosforeveryone.com": [3560], "netloan.kent.gov.uk": [8851], "www.privacytool.org": [13090], "*.webtraffiq.com": [18166], "www.gpsoft.com.au": [4532], "engage.webtrends.com": [18171], "www.asjo.org": [1260], "jjc.edu": [8440], "yougov.de": [18705], "ontology.co": [11891], "www.mygoya.de": [10832], "lab.pentestit.ru": [12543], "www.kaufland.cz": [8822], "new.showrss.info": [14744], "geo.itunes.apple.com": [1120], "grml.org": [6382], "www.consecur.de": [3548], "www.ntw.nhs.uk": [10913], "view.atdmt.com": [10360], "pshared.5min.com": [178], "www-cdn3.pardot.com": [12399], "asmallorange.com": [214], "www.cryptohaze.com": [3873], "web4u.cz": [18051], "s1.mzstatic.com": [10852], "api.twingly.com": [16879], "www.garron.net": [6462], "www.whitehatsec.com": [18250], "www.wwte2.com": [17937], "www.esdominios.com": [5356], "trust.zscaler.com": [18913], "www.jsfiddle.net": [19327], "*.thegrommet.com": [16286], "web-content.educ.cam.ac.uk": [17243], "accesslabs.net": [446], "open.kent.gov.uk": [8851], "ygnition.com": [18677], "freeassangenow.org": [6137], "timroes.de": [16451], "karger.com": [8794], "games.mountyhall.com": [10622], "www.lowpowerlab.com": [9635], "vovici.com": [17849], "support.sonatype.com": [15132], "www.tiki-toki.com": [16443], "gerrit.onosproject.org": [11649], "ep91prd.acs.ncsu.edu": [11492], "www.datamonitorhealthcare.com": [4207], "shopmimigreen.com": [14722], "safesetup.guidancesoftware.com": [7006], "quan.smzdm.com": [15017], "simflight.*": [14806], "www.leadspend.com": [9196], "*.tor2web.org": [16566], "www.rivalseek.com": [13905], "energystar.gov": [5256], "www.velex.htwk-leipzig.de": [7114], "version5.edeveloperz.com": [4899], "family.utoronto.ca": [17343], "*.heatmap.it": [7279], "desktop.telegram.org": [16080], "www.firemail.de": [5863], "*.aweber.com": [379], "legitscript.com": [9232], "www.uni-potsdam.de": [17333], "www.clevelandclinic.org": [3236], "reichelt.de": [13744], "www.moana-surfrider.com": [10482], "communities.netapp.com": [11183], "*.prweb.com": [12291], "cryptocoding.net": [19092], "istella.it": [8381], "themesandco.com": [16341], "plssl.com": [13032], "tls.mbed.org": [10109], "www.quantamagazine.org": [13336], "svetlodarsk.com": [15674], "beforeyoudig.nationalgrid.com": [11081], "politicshome.com": [12875], "www.pdu.edu": [12939], "chartbigchart.gtm.idmanagedsolutions.com": [8240], "www.postsuisseid.ch": [12949], "onderwijssso.tue.nl": [15874], "kuler.adobe.com": [615], "extranet.libis.be": [9302], "www.blackbox.co.uk": [2044], "support.preyproject.com": [4931], "*.tu-ilmenau.de": [15873], "www.rz.htw-berlin.de": [7112], "www.researchonline.org.uk": [19547], "aplikace.skolaonline.cz": [19598], "sozone.de": [15051], "mail.theatomgroup.com": [16178], "support.bt.com": [1551], "www.cam.ac.uk": [17243], "www.engineering.osu.edu": [11760], "www.jobscout24.de": [8591], "*.usajobs.gov": [17030], "chatlio.com": [19053], "www.institute.nhs.uk": [10913], "bypassingcensorshipinthe.uk": [19032], "khms1.google.com": [6841], "www.wigan.gov.uk": [18286], "www.rnpdigital.com": [13441], "i3.code.msdn.s-msft.com": [14058], "dis.us.criteo.com": [3801], "*.eease.com": [5216], "www.amctheatres.com": [307], "whatsuccesstakes.com": [6716], "halebop.se": [7173], "eply.com": [4945], "m.here.com": [7326], "www.mload.freenet.de": [6180], "ctools.umich.edu": [17266], "digitaltransactions.net": [4484], "www.krystal.co.uk": [9024], "*.wosign.com": [18393], "www.apps1.lbhf.gov.uk": [9064], "nordicsemi.com": [11477], "www.imine.co": [8004], "womensaid.ie": [18409], "static.artskills.com": [1222], "www.avatarpicker.com": [1445], "ecr6.engineering.osu.edu": [11760], "www.uni-goettingen.de": [17166], "video.petfinder.com": [12596], "www.mcssl.com": [10127], "stv.columbia.edu": [3448], "www.bethblog.com": [18829], "morrisonscellar.com": [10602], "debian-facile.org": [4270], "botaanikaaed.ut.ee": [17069], "www.drawingbynumbers.org": [4745], "www.manisec.com": [9934], "esportsea.com": [4846], "cdn.lesfurets.com": [9258], "www.ruptly.tv": [14039], "www.comparitech.com": [3514], "*.networkworld.com": [11267], "m.ffs.ch": [15693], "www.sync.com": [15725], "tejia.taobao.com": [15952], "www.experiencedays.co.uk": [5507], "inquirehire.pstprod.peoplestrategy.com": [12549], "irccloud.com": [8354], "paymants.snelis.com": [15033], "*.scu.edu": [14290], "paste.gajim.org": [6406], "www.n-2.org": [10853], "voyage-prive.co.uk": [17856], "ricochet.im": [13878], "thetinhat.com": [16319], "images-2.gog.com": [6365], "blog.dandb.com": [4137], "infile.com": [8091], "www.whatsmydns.net": [18236], "cdn.nomensa.com": [11464], "*.tut.fi": [15877], "securelist.ru": [14504], "www.warmcat.com": [17979], "products.secureserver.net": [14511], "m.slovari.yandex.kz": [18652], "chat.wikileaks.org": [18291], "www.luxuryreplica.net": [9678], "ppcdn.500px.org": [167], "cp.win-is.com": [18324], "www.lookinglocal.gov.uk": [9599], "*.elevenpaths.com": [5160], "da-dk.facebook.com": [5620], "adelaide.edu.au": [581], "*.designaddict.com": [4387], "seroundtable.com": [14105], "digitalegesellschaft.de": [4505], "getty.edu": [6619], "www.uppmax.uu.se": [17074], "now.source-elements.com": [15168], "loadimpact.com": [9529], "tchibo.de": [15985], "www.redditmedia.com": [13691], "docs.scipy.org": [14374], "www.linuxmint-art.org": [19461], "cdnbakmi.kaltura.com": [8775], "myvigor.draytek.com": [4746], "fls-eu.amazon.co.uk": [915], "www.phusionpassenger.com": [12654], "vptl.stanford.edu": [15383], "www.hkex.com.hk": [7484], "powells.com": [12988], "anatomiaembriologiagenetica.unizar.es": [17356], "wahl.tagesschau.de": [19656], "www.packetflagon.is": [19476], "study.monash": [15542], "gmx.co.in": [6350], "images.paypal.com": [12467], "www.f5.htw-berlin.de": [7112], "www.npi.org.uk": [10948], "intelrad.com": [8221], "ann.cc.ntu.edu.tw": [10971], "*.markit.com": [10023], "manager.linode.com": [9387], "www.klikki.fi": [19340], "oyun.yandex.com.tr": [18649], "whitehouse.gov": [18251], "admatic.com.br": [605], "dailyedge.ie": [19099], "static.intranet.tue.nl": [15874], "www.law.cuny.edu": [3188], "magister.unizar.es": [17356], "cuusoo.com": [3946], "bitinvest.com.br": [1998], "git.netfilter.org": [11225], "acr.org": [941], "www.pha.ulaval.ca": [17229], "isc2.sans.org": [14072], "kontakt.gmx.net": [6350], "opsterland.nl": [11132], "www.adscendmedia.com": [627], "vsoeapp1.vsoe.usc.edu": [17278], "login.paloaltonetworks.com": [12349], "welcome.logmein.com": [9549], "help.pushbullet.com": [13251], "support2.microsoft.com": [10364], "dev.bananian.org": [1636], "www.shellmix.com": [14160], "alldebrid.com": [830], "cms.lifereimagined.org": [9330], "jobs.leeds.ac.uk": [17318], "refferer.disqus.com": [4570], "www.otr.to": [11682], "boss.exmail.qq.com": [13285], "www.sba-research.org": [14080], "registry.npmjs.org": [11540], "e17.xhamsterpremiumpass.com": [18516], "smartcard.nih.gov": [11052], "schallert.com": [14347], "special.habrahabr.ru": [7129], "*.briansmith.org": [2311], "fetlife.com": [5761], "small-firms.fca.org.uk": [5557], "lkml.org": [9087], "www.windowsphone.com": [18346], "content.truste.com": [15856], "ona.gov.au": [11748], "www.abis-studien.se": [243], "johnlewis.ie": [8610], "mollom.com": [10537], "www.gmu.edu": [6544], "housing.illinois.edu": [17258], "www.youtube.com.sg": [18709], "www.wind.com.gr": [18336], "s.yeoldreader.com": [16225], "careandsupportforyou.halton.gov.uk": [19236], "www.arrisi.com": [1215], "kgnb.am": [8721], "tesla-new.desy.de": [4399], "www.m.metro.ya.ru": [18626], "*.london2012.com": [9573], "*.flokinet.is": [5938], "www.archive-it.org": [1163], "ssl1.washingtonpost.com": [17990], "hi.chaturbate.com": [3035], "www.wwte13.com": [17937], "norwegian.com": [11508], "*.citadium.com": [3166], "*.shopstyle.co.uk": [14720], "ovscruise.com": [18490], "search.motherpipe.com": [10611], "yabs.yandex.com.tr": [18649], "earthlink.biz": [5007], "orkut.com": [12110], "autodiscover.chem.leeds.ac.uk": [17318], "www.birthdayinabox.com": [1913], "www.wp-tao.com": [17919], "theedgeclimbing.com": [16271], "mirt.net": [10449], "app.onelogin.com": [11835], "who.wildwestdomains.com": [18300], "portal.redpill-linpro.com": [13700], "justgive.org": [8690], "portal.cf.ac.uk": [2835], "www.itechnician.co.uk": [7863], "www.vizzit.se": [17801], "abma.de": [421], "rrts.com": [13450], "www.rhombus-tech.net": [13864], "it.pornworms.com": [12928], "suckup.de": [15574], "rtl-videoclip-player.rtl.de": [13474], "clicklivechat.com": [3261], "cavium.com": [2911], "odn.io": [16570], "*.gostats.com": [6785], "vmail.me": [17804], "drownedinsound.com": [4773, 4774], "you.38degrees.org.uk": [120], "addictech.com": [574], "www.terminatorx.org": [16124], "broadcasting.gamesports.net": [6423], "www.browser.yandex.com.tr": [18649], "benaughty.com": [1721], "tripadvisor.ca": [19696], "nsomniture.nvidia.com": [10985], "bugzilla.flamingspork.com": [5902], "*.wlxrs.com": [17914], "lucidchart.com": [9645], "www.mondediplo.com": [10542], "dhammaloka.org.au": [1544], "repository.jisc.ac.uk": [8578], "myvolunteerpage.com": [17834], "*.base.de": [1491], "pixel-secure.solvemedia.com": [15126], "i.crackedcdn.com": [4343], "affiliates.walmart.com": [17964], "stat.heiseshop.de": [7289], "developer.netflix.com": [10045], "domenkozar.com": [4668], "commons.era.nih.gov": [11052], "*.fyre.co": [9509], "whoisaccuracy-portal.register.com": [13732], "mysupport.symantec.com": [15715], "openstack.org": [11975], "grsecurity.net": [6383], "tune.yandex.by": [18648], "img03.taobaocdn.com": [15953], "tnbc.tanomail.com": [15948], "givinghistory.stanford.edu": [15383], "www.syoparekisteri.fi": [15744], "jobs.nodejs.org": [14829], "coinsecure.in": [3409], "bitcointoyou.com": [1986], "boxopus.com": [2259], "www.norman.com": [11487], "www.p-tano.com": [12200], "freshmilk.de": [6204], "www.overclock.net": [12162], "impactradius.com": [8011], "kunde.oeffentliche.de": [11730], "www.dephormation.org.uk": [4372], "wusmaccount.wustl.edu": [17993], "panel.bnc4free.com": [2164], "clearlink.com": [3234], "stars.chromeexperiments.com": [3117], "website.1and1.ca": [52], "manage.www.namecheap.com": [11019], "*.chron.com": [7565], "partner.market.yandex.com": [18651], "home.comparethemarket.com": [3511], "cnr.berkeley.edu": [17240], "amur.rt.ru": [13469], "pspmedia.ign.com": [7730], "secureconnect.com": [14490], "www.datavantage.com": [4189], "comics.dailykos.com": [4116], "mail2.virginmedia.com": [17737], "www.corbanworks.com": [3658], "calligra.org": [2754], "www.sway.com": [15681], "engr.uw.edu": [17077], "laptoponline.hu": [9155], "www.playosmo.com": [12125], "888173.net": [200], "www.andrewblum.net": [1001], "spectrumbusinessinsights.com": [15250], "www.naughtyshowreviews.com": [11108], "s0.cyberciti.org": [3966], "btsport.com": [1576], "api.linksalpha.com": [9378], "static3.twilio.com": [16876], "webmail.1and1.co.uk": [53], "*.piraten-partei.ch": [12284], "socialcampaign.com": [3818], "www.bet365.com": [1811], "cooliris.com": [3643], "manage.ixwebhosting.com": [7882], "www.u-blox.com": [16921], "www.freedomonlinecoalition.com": [6171], "www.crunchbangplusplus.org": [3835], "oebb.at": [19455], "demo.com": [4027], "www.imf.org": [7757], "help.yahoo.co.jp": [18640], "web.slashdotmedia.com": [14948], "www.cccure.org": [2541], "fi.libreoffice.org": [9311], "enisa.europa.eu": [5421], "cybersymposium.isis.poly.edu": [12888], "wac.51d5.edgecastcdn.net": [13257], "*.bromley.gov.uk": [2360], "teksyndicate.com": [16065], "www.blocktrail.com": [2086], "content.jwplatform.com": [8467], "parapa.mail.ru": [9874], "blob.freent.de": [6180], "tuxingsun.net": [16811], "www-edc.eng.cam.ac.uk": [17243], "*.seattle.gov": [3192], "filenuke.com": [5792], "malwr.com": [9931], "www.viveris.fr": [17798], "www.moodle.com": [10572], "www.eydap.gr": [6915], "regiobank.nl": [13729], "guerrillamail.com": [7005], "engage.rescue.org": [19546], "forum.cyanogenmod.org": [3953], "community.namecheap.com": [11019], "alumni.lsbu.ac.uk": [9098], "popcorn.webmaker.org": [10663], "www.butlerandthechef.com": [16181], "*.cihar.com": [3134], "marsupi.org": [10030], "libreoffice.collabora.co.uk": [3419], "www.team-cymru.org": [16000], "knab.nl": [8939], "cloud.jeffreifman.com": [8548], "gna.org": [6758], "www.mailigen.com": [9886], "my.101domain.com": [12], "www.netgate.com": [11231], "www.zuno.cz": [18768], "www.staysafeonline.org": [15441], "ba.yandex.com.tr": [18649], "pds.jpl.nasa.gov": [10869], "cbks0.google.com": [6834], "business.upc.cz": [17000], "ffprofile.com": [5765], "support.fastwebhost.com": [5679], "*.cupidplc.com": [3921], "www.protu.fi": [13149], "ets.org": [4976], "www.teamintraining.org": [16002], "*.shannonhealth.com": [14659], "onenote.com": [11839], "m.fastcompany.com": [5670], "cleverbridge.com": [3240], "gdatasoftware.com": [6293], "static.flickr.com": [5918], "static.shareasale.com": [14661], "www.surveys.cardiff.ac.uk": [2835], "www.scaleengine.com": [14327], "analytics.sparkfun.com": [15222], "cesky-hosting.cz": [19051], "bamsoftware.com": [1635], "a.zencdn.net": [18816], "smackcoders.com": [14978], "listes.cru.fr": [3829], "cdn.content.compendiumblog.com": [3517], "www.gotowebinar.com": [6789], "www.spiderwebsoftware.com": [15270], "solo.bodleian.ox.ac.uk": [17271], "oied.ncsu.edu": [11492], "mobile.bahn.de": [1617], "test-ipv6.cz": [16143, 16144], "pic.yify-torrent.org": [18616], "riccilab.stanford.edu": [15383], "fsawebenroll.ed.gov": [4889], "onlinewellnessassociation.com": [11879], "admin.verkaufen.ch": [19733], "swi.ucollege.wustl.edu": [17993], "ims-dm.com": [8237], "www.samgentle.com": [14258], "nrl.navy.mil": [17028], "www.givetocal.berkeley.edu": [17240], "advancedligo.mit.edu": [9747], "www.quikcallus.com": [13364], "fp.my.uh.edu": [17315], "it.verbling.com": [17615], "partner.just-eat.dk": [19328], "www.scottishpower.co.uk": [14400], "i-d-images.vice.com": [17667], "hg.fanboy.co.nz": [5650], "www.pcsp-emu.com": [5224], "ea-cdn.voxmedia.com": [17852], "ps.bahn.de": [1617], "employment.gov.au": [4369], "droplr.com": [4771], "youtube.com.gr": [18709], "cards.linaro.org": [9361], "conference2005.kde.org": [8718], "trustkeeper.net": [16782], "www.bulbman.com": [2414], "www.bardwilhome.com": [1665], "www.blockbuster.co.uk": [2082], "www.npjhub.org": [8317], "www.skandiabanken.no": [14895], "www.medikamente-per-klick.de": [10196], "mail.marmotte.net": [10027], "denuncia.uol.com.br": [16998], "www.vungle.com": [17877], "www.iamthecavalry.org": [7887], "bemobile.ua": [1724], "developer.mydigipass.com": [10828], "adobeconnect.com": [616], "indico.cern.ch": [2575], "app-us.resrc.it": [13599], "account.qt.io": [13315], "esd.kent.ac.uk": [17317], "access.earthdata.nasa.gov": [10869], "arena.razerzone.com": [13587], "phonon.kde.org": [8718], "si.se": [14118], "speedtest.net": [15258], "online.ofsted.gov.uk": [19456], "tyk.io": [16904], "*.yahoofs.com": [18638], "www.groenlinks.nl": [6962], "www.rc.fas.harvard.edu": [7219], "dashlane.com": [4163], "*.ubi.com": [17091], "2012.de.pycon.org": [13263], "www.imfimg.com": [7990], "cdn4.openculture.com": [12006], "bitcoinxt.software": [1975], "cbcblueprint.com": [2521], "cgran.org": [2591], "svn.openezx.net": [11935], "aka-cdn.adtechus.com": [639], "vianetfuelsolutions.com": [17663], "www.sohosted.com": [15049], "cdn.at.ai": [796], "docs.alfresco.com": [802], "installments.com": [19295], "fsl.cs.sunysb.edu": [15480], "client.scribblelive.com": [14413], "members.enlightenedperl.org": [5279], "riscure.com": [13899], "*.ballou.se": [1633], "b.s.thebrighttag.com": [2325], "ibc.researchcompliance.vt.edu": [17740], "www.securify.nl": [14516], "httpswatch.com": [7108], "prep.rci.com": [18490], "www.ikeepincloud.com": [7750], "path.com": [12451], "img.thalia.at": [16171], "*.plus.net": [12829], "router-quality.maps.yandex.com": [18651], "bem.info": [1511], "www.chip-app.de": [2595], "2gwc-kbhkort.kk.dk": [8730], "assu-web.stanford.edu": [15382], "gitlab.com": [6678], "dl.stgraber.org": [15353], "*.ad-juster.com": [512], "www.redplum.com": [13662], "amazon.ca": [913], "amazon.cn": [913], "www.exclusivex.com": [5487], "facultynotes.williams.edu": [18316], "service.marshall.usc.edu": [17278], "www.ornl.gov": [11693], "www.opswat.com": [11657], "experts.giffgaff.com": [19217], "signalblog.stanford.edu": [15383], "blogspot.*": [2107], "www.epoxate.com": [5328], "solutions.drweb.com": [4783], "www.bartleby.com": [1684], "new.aviationweather.gov": [18972], "golucid.co": [6793], "*.ubuntu-art.org": [19462], "svn.ninux.org": [11421], "postbox-inc.com": [12960], "log.outbrain.com": [12150], "yts.to": [18623], "archive.fosdem.org": [6069], "ar.norton.com": [11505], "tppinfo.org": [18428], "www.hds.ucsd.edu": [16939], "www.jcore.fr": [8420], "www.stc.tid.gov.hk": [7077], "messagingengine.com": [10291], "*.poppysports.com": [12917], "qian.qq.com": [13285], "proboards.com": [13110], "kuvalehdet.fi": [12131], "doku.spline.inf.fu-berlin.de": [6188], "cno.org": [3425], "buzzhosting.org": [2480], "www.quickline.ch": [19530], "tippcenter.zdf.de": [19800], "eclipso.de": [5051], "altontowers.com": [893], "identi.ca": [7936], "ariejan.net": [1192], "shibboleth.illinois.edu": [17258], "www.wirralccg.nhs.uk": [10913], "investor.visa.com": [16380], "*.perl.org": [12576], "btg.mtvnservices.com": [17661], "www.elderscrollsonline.com": [5146], "www-it.desy.de": [4399], "metrics.tesco.com": [16135], "sns-static.aolcdn.com": [323], "homepages.see.leeds.ac.uk": [17318], "join.queervids.com": [13349], "hi5.com": [19247], "demonsaw.com": [4359], "staff.washington.edu": [17291], "cdn.evbuc.com": [5437], "www.domaincoin.net": [4652], "documentation.mamp.info": [19379], "www.campbx.com": [2775], "grapher.compete.com": [3519], "eu.api.soyoustart.com": [15052], "i2.social.microsoft.com": [10364], "www.libraryfreedomproject.org": [9306], "moodle.uowplatform.edu.au": [17350], "*.paymentech.com": [12477], "www.flatlinesecurity.com": [5909], "picomoney.com": [12664], "www.paulschreiber.com": [12462], "www.dell.com": [4334, 4335], "fsd84.bis.bnl.gov": [19009], "*.vulture.com": [17874], "user.ornl.gov": [11693], "www.jive.com": [8584], "www.epochstats.com": [5326], "www.civica.co.uk": [19064], "legaldirectories.com": [9229], "www.cadlink.com": [19033], "*.secure.epi.org": [5059], "y.slashdot.org": [14947], "*.bpa.gov": [2198], "factorable.net": [5626], "www.survivetheclaireperryinter.net": [15661], "openmicroscopy.org": [12021], "ikiwiki.info": [7962], "www.cei.org": [3520], "www.tetadrogerie.cz": [19672], "static-hp.s-msn.com": [14059], "www.seattletechnicalbooks.com": [14454], "*.shop.sandsmedia.com": [14213], "www.dagensgetaway.dk": [4109], "pacsec.jp": [12308], "wrzuta.pl": [18476], "*.walgreens.com": [17958], "enttextbook.stanford.edu": [15383], "www.gnuheter.org": [6764], "portal.lsbu.ac.uk": [9098], "cdn.ghstatic.com": [6327], "www.poloniex.com": [12885], "blog.whatsapp.com": [18234], "www.oxfam.org.uk": [12188], "www.pamnews.com": [12351], "www.ticket4u.com.my": [19681], "*.teenrevenue.com": [16059], "plus.sandbox.google.com": [6834], "defcon.org": [4305], "*.presslabs.com": [13031], "www.insight.bn-mclp.org": [2162], "webmail.hosts.co.uk": [7545], "interac.ca": [8234], "www.falkirk.gov.uk": [5641], "samgentle.com": [14258], "www.abcmusicpublishing.com.au": [238], "click.showcase-tv.jp": [14740], "compassionjournal.stanford.edu": [15383], "givskudzoo.dk": [6692], "subscribe.gq.com": [6379], "www.germantv.net": [6555], "sexysitehosting.com": [14647], "www.nhncorp.com": [10909], "usessh001.com": [17424], "try.mongodb.org": [10554], "consult.manchester.gov.uk": [9944], "lobste.rs": [9534], "subscribe.newscientist.com": [11298], "www.f9.fi": [5548], "waivers.stanford.edu": [15382], "www.megaglest.org": [10227], "*.journal-news.net": [8640], "iolproperty.co.za": [7776], "open.spotify.com": [15296], "wiki.opencorporates.com": [11931], "www.alchemyglobal.com": [784], "www.sll.org.uk": [15076], "theinspirationroom.com": [16194], "gaming.msi.com": [9792], "www.newsledge.com": [19434], "asterix.berkeley.edu": [17240], "my.playosmo.com": [12125], "jobs.hasgeek.com": [7221], "oesp.horizon.tv": [19716], "file3.answcdn.com": [1059], "www.humanevents.com": [7609], "openflow.stanford.edu": [15383], "cc3.dealer.com": [4256], "www.eveger.de": [5433], "selfcare.tiscali.it": [16498], "www.tcf.org": [15790], "blog.selfhtml.org": [19580], "wiki.freifunk.net": [6192], "www.dsc.soic.indiana.edu": [8065], "sefton.greenparty.org.uk": [6925], "www.univ-smb.fr": [17224], "sucuri.net": [15575], "forge.ocaml.org": [11612], "www.altii.de": [889], "mpp.vindicosuite.com": [17721], "classrecordings.wusm.wustl.edu": [17993], "dandb.com": [4137], "www.webmaster.yandex.com": [18651], "hslu.ch": [7583], "pearl.plymouth.ac.uk": [12833], "commandoboxing.com": [3476], "*.cufp.org": [2688], "img02.findgravy.com": [5843], "4rx.com": [152], "www.atstuff.com": [1333], "cdn.itproportal.com": [11174], "secure2.comic-con.org": [3466], "esw.osu.edu": [11760], "westpac.com.au": [18222], "n-joy.de": [10855], "*.fastly.net": [5686], "link.wmtransfer.com": [18076], "www.unisend.com.mx": [17198], "monitor.haskell.org": [7229], "www.ehostpros.com": [5679], "subs.foreignaffairs.com": [6025], "www.cntraveler.com": [3555], "soylent.com": [15199], "2ksports.com": [88], "www.weeklyplus.com": [18183], "www.beersofeurope.co.uk": [18989], "blog.digital.cabinetoffice.gov.uk": [2701], "saymedia.com": [14320], "www.precos.com.pt": [13021], "*.liftsecurity.io": [9337], "*.pssl.com": [12299], "www.compete.org": [3518], "www.pinescharter.net": [12679], "www.spectrumbusiness.net": [15249], "stopthinkconnect.org": [15487], "hastrk1.com": [7235], "www.sans.edu": [14071], "www.instagram.com": [8182], "static.solfoinc.netdna-cdn.com": [18622], "bungie.net": [2438], "indexoncensorship.org": [8059], "trk.names.co.uk": [11026], "markonefoods.com": [10025], "clocks.yandex.by": [18648], "thesixthaxis.com": [16237], "wallacecenter.rit.edu": [13434], "spanair.com": [15216], "www.thinglinkblog.com": [16357], "www.onlinepayment.com.my": [9775], "forum.tampermonkey.net": [15939], "simplepickup.com": [14823], "www.mooshi.com.au": [10580], "www.benmarshall.me": [1773], "netbetsport.fr": [11186], "*.brightoncollectibles.com": [2331], "www.debian-fr.org": [4271], "interac.vogogo.com": [19740], "cfire.mail.ru": [9874], "www.juicycanvas.com": [8669], "ptmt.fi.ncsu.edu": [11492], "api.iperceptions.com": [19275], "merchant.exmo.com": [5498], "*.publicradio.org": [10429], "arranca.org": [1212], "images.11main.com": [20], "telfordandwrekin.greenparty.org.uk": [6925], "www.lfait.com": [9072], "*.dhgate.com": [4036], "completelyprivatefiles.com": [3523], "eventmanagement.wustl.edu": [17993], "www.synology.com": [15738], "hiveage.com": [7428], "lynchinteractive.com": [9681], "emsisoft.com": [5223], "*.merchantquest.net": [10278], "verisign.co.jp": [17623], "www.trainingcenter.nih.gov": [11052], "greenwich.greenparty.org.uk": [6925], "media.tmz.com": [15832], "www.scene7.com": [14340], "portal.gradwell.com": [6883], "www.hackerboard.de": [7146], "*.easydns.com": [5024], "feedmyinbox.com": [5739], "bluemountain.com": [2142], "sicuz.unizar.es": [17356], "*.creativelittlereaders.com": [3783], "www.tylercipriani.com": [16905], "thewordpro.com": [18430], "login.alibaba.com": [809], "as00.estara.com": [5367], "www.drserver.net": [4736], "s.ynet.io": [18687], "usfsp.edu": [17275], "www.fishshell.com": [5883], "www.anon.click": [1040], "wiki.yabause.org": [18628], "globusreisen.ch": [19262], "www.ccc.co.il": [2536], "www.rapidshare.com": [13558], "porta.codes": [12933], "www.blankslate.io": [2059], "donate.garyjohnson2012.com": [6464], "xadmin.green.ch": [19228], "www.audioboo.fm": [1359], "azt.allianz.com": [18950], "www.talemetrytoday.com": [15918], "www.nifc.gov": [10924], "images.liftshare.com": [9336], "www.remotecoder.io": [13760], "assets2.jimstatic.com": [8571], "www.ibqonline.com": [7904], "enhr.dict.cc": [4455], "www.jbox.com": [19318], "images-tv.adobe.com": [615], "meetings.internet2.edu": [8279], "film.qq.com": [13284], "security.ncsa.illinois.edu": [17258], "www.ethersheet.org": [5380], "www.tancity.de": [15940], "lobby.clubredgaming.com": [3322], "therealtalk.org": [16233], "www.crosswire.org": [3815], "cyberphoto.fi": [3963], "partners.overdrive.com": [12159], "ads.adriver.ru": [534], "cokecce.com": [3413], "chromedata.com": [3116], "jpackage.org": [8449], "www.elektro-paloucek.cz": [19152], "rbwm.moderngov.co.uk": [19405], "www.rstforums.com": [13465], "www.stgraber.org": [15353], "www.sparx.org.nz": [15227], "southdevon.greenparty.org.uk": [6925], "www.taobao.com": [15952], "base-valid.com": [1686], "todoist.com": [16526], "www.netgo.hu": [11193], "agent.blackphone.ch": [2048], "bradleyf.id.au": [2265], "clients.electricstudio.co.uk": [5149], "sec-i0.mail.com": [9872], "xuan.jd.com": [8423], "www.blocktogether.org": [2089], "api.authbox.io": [1408], "forum.gethashing.com": [6577], "webmail.earthlink.net": [5007], "www.totalrecall.com": [1889], "forum.yunohost.org": [18751], "quirks.com": [13367], "track.affiliate-b.com": [701], "contactus.sky.com": [14924], "ns-cdn.neuweb.biz": [11284], "diasp.org": [4447], "student.gototraining.com": [6788], "www.businesscompanion.info": [2459], "lv.hertzequip.com": [7372], "cotse.net": [3696], "tv.help.sky.com": [14924], "seminary.lds.org": [16219], "pulse.me": [13224], "*.inpros.net": [8158], "sustain.wustl.edu": [17993], "cdn.app.compendium.com": [3516], "wolframscience.com": [18400], "*.communigate.com": [3497], "10.vgc.no": [17484], "apiportal.whitepages.com": [18257], "www.chartio.com": [3024], "recruitment.powys.gov.uk": [19513], "t.j-schmitz.net": [8408], "whitefence.com": [18249], "prod1si.click4assistance.co.uk": [3242], "www.bestvpn.com": [1808], "corporate.cqrollcall.com": [2655], "clock.yandex.kz": [18652], "www.oralb-blendamed.de": [12084], "aerlingus.com": [682], "botconf.eu": [2240], "www.cryptbin.com": [3847], "issue.swisscom.ch": [15698], "corkuniversitypress.com": [3674], "www.cybercamp.es": [3958], "www.berniw.org": [1797], "m.legal.yandex.com": [18651], "selectricity.org": [14566], "www.cp.fonality.com": [3743], "www.hola.org": [7445], "yp4h.osu.edu": [11760], "fundusze-emerytalne.money.pl": [10546, 10547], "placeimg.com": [12753], "www.portadi.com": [12934], "affiliatewindow.com": [4486], "emailvision.com": [5194], "forum.eset.com": [5358], "handelsbanken.fi": [7186], "destroyallsoftware.com": [4396], "warrington.greenparty.org.uk": [6925], "www.r66t.com": [13392], "marketo.net": [10015], "www.lbl.gov": [9065], "kontoeroeffnung.cash.ch": [19043], "ordermychecks.com": [7207], "*.onbeing.org": [11809], "www.getmybalance.com": [6615], "www.automotivelinux.org": [1429], "media9.congstar-media.de": [3576], "www.firstintegrity.com": [5877], "www.vlagtwedde.nl": [11132], "rcm-na.amazon-adsystem.com": [909], "sessioncam.com": [14631], "mbed.org": [10109], "algolia.com": [803], "gdata.co.jp": [6293], "viedemerde.fr": [1815], "wusfnews.wusf.usf.edu": [17274], "www.montyprogram.com": [10569], "sans.edu": [14071], "support.lis.illinois.edu": [17258], "samknows.*": [14257], "www.donmai.us": [19125], "www.charlie.bz": [3013], "wiki.kde.org": [8718], "www.ingentaconnect.com": [8139], "mail.bluepoint.com.ph": [2154], "www.wizards.com": [18387], "www.jasondavies.com": [8523], "www-static.ubuntu-fr.org": [17096], "*.motherjones.com": [10606], "*.cafepress.co.uk": [2716], "sharefest.me": [14676], "plexapp.com": [12815], "scontent-a.cdninstagram.com": [2558], "c.sg.msn.com": [9796], "notabug.org": [11514], "*.belezanaweb.net.br": [1760], "goldsborowebdevelopment.com": [6817], "btguard.com": [1571], "www.floek.net": [5937], "www.tridium.com": [16733], "ijreview.com": [7747], "www.kti.admin.ch": [19648], "developer.jivesoftware.com": [8585], "lvmanagement.com": [9159], "exsila.ch": [19171], "solo-prd.bodleian.ox.ac.uk": [17271], "www.digiday.com": [4476], "static.sourceforge.net": [15174], "unlimited.mail.de": [9873], "hints.netflame.cc": [11227], "www.foundationbeyondbelief.org": [6078], "www.curlingworld.com": [3931], "health.knowledgeblog.org": [8948], "www.yourbittorrent.com": [18723], "lsf.htwg-konstanz.de": [7113], "basildon.objective.co.uk": [19454], "www.mycp.co.nz": [12036], "sondage.leboncoin.fr": [19351], "*.dailyherald.com": [4111], "*.kantarlatam.com": [8785], "s.delvenetworks.com": [4340], "www.courscrypto.org": [3716], "playstation.com": [12795], "mybigcommerce.com": [1853], "www.pcr-online.biz": [8227], "www.orwall.org": [12079], "www.mobile.yandex.com.ua": [18650], "*.socialbakers.com": [15069], "doc.owncloud.org": [12182], "tagged.com": [15909], "www.stunnel.org": [15545], "www.panoptykon.org": [12365], "jotform.com": [8637], "manual.limesurvey.org": [9356], "secure.freedesktop.org": [6126], "www.siff.net": [14121], "pic.afisha.mail.ru": [9874], "www.memberful.com": [10247], "nieuws.asnbank.nl": [351], "idgfm.corp.aol.com": [321], "chzb.gr": [3056], "polibuda4life.dosowisko.net": [4688], "www.bioxfel.org": [1904], "www.morningstar.co.uk": [10595], "number4.herefordshire.gov.uk": [7327], "www.marketing.htwk-leipzig.de": [7114], "bioinformatics.crick.ac.uk": [19090], "www.podtrac.com": [19502], "www.esrb.org": [4964], "constructor.maps.yandex.com": [18651], "kea.nu": [2292], "english.al-akhbar.com": [772], "spectrum.stanford.edu": [15383], "*.cloudset.net": [3315], "blog.haproxy.com": [7045], "safecurves.cr.yp.to": [3748], "insider.businessinsider.com": [2454], "poweredbypaquin.com": [12999], "abuse.vutbr.cz": [17522], "sub.ft.com": [5826], "www.smyl.es": [14141], "firsts.com": [5880], "printm3d.com": [13068], "turbosquid.com": [16836], "ad.us-ec.adtechus.com": [639], "*.supadupa.me": [15611], "*.sgkb.ch": [19333], "cloudswitch.com": [3296], "suite.io": [15586], "forums.sabnzbd.org": [14215], "ecitizen.walthamforest.gov.uk": [17966], "cp.zoneedit.com": [18893], "cdn.filefactory.com": [5789], "osumychart.osumc.edu": [11676], "platformadmin.com": [12785], "*.legtux.org": [9236], "www.nccam.nih.gov": [11052], "www.fishwrapper.com": [5884], "www.jetbrains.com": [8559], "www.sirrix.de": [14859], "windowsphone.com": [18346], "mygoya.de": [10832], "www.insurance.va.gov": [17019], "www.osec.pl": [11911], "chat.freed0m4all.net": [6163], "public.nurd.space": [10976], "knowledge.verisign.co.uk": [17623], "dev.mysql.com": [10780], "*.nhmrc.gov.au": [11069], "themler.com": [16343], "meetic.pt": [10215], "signup.network-maker.com": [11270], "asset-1.java.net": [8525], "*.progreso.pl": [13131], "www.linux.com": [9403], "faq.gymglish.com": [7037], "*.sc.edu": [14085], "jobs.dwolla.com": [4816], "forum.gsmhosting.com": [6992], "*.covisint.com": [3736], "www.apnaindia.com": [1096], "*.reimanpub.com": [13746], "certs.vutbr.cz": [17522], "fraglive.cl": [6094], "www.ianonym.com": [7673], "webmail.web4all.fr": [18052], "www.tuftsmedicalcenter.org": [16820], "calispora.org": [2752], "www.ntk.me": [11554], "tools.verisignlabs.com": [17624], "www.betvictor.com": [17670], "oekostrom.web.de": [18050], "lms4.learnshare.com": [9210], "www.about.me": [424], "secure.broadland.gov.uk": [2357], "piratehd.com": [12704], "blog.openlibrary.archive.org": [8271], "lobbyradar.de": [19800], "ocien.tm.com.my": [16083], "www.tmz.com": [15832], "junostatic.com": [8684], "www.1and1.ca": [52], "openshift.redhat.com": [13675], "jitscale.com": [8581], "www2.enphase.com": [5283], "photos.univers-libre.net": [17226], "www-rba.educ.cam.ac.uk": [17243], "freedomboxfoundation.org": [6174], "preyproject.com": [13044], "cdn.gusto.com": [7027], "eprize.com": [4946], "postaonline.cz": [2974], "anz.com": [315], "www.zdmcirc.com": [18760], "my.psychologytoday.com": [13189], "git.xenomai.org": [18565], "*.4chan-ads.org": [158], "www.processing.org": [13120], "images.bertrams.com": [1820], "oncampus.csr.oberlin.edu": [11698], "tanks.mail.ru": [9874], "www.getmymgmbalance.com": [6615], "gmocloud.com": [6343], "www.phihold.be": [12619], "nypf.org.uk": [19448], "www.textpad.com": [16158], "wikileaks.org": [18291], "techslinger.com": [16051], "s.ppy.sh": [13006], "*.customersvc.com": [3943], "cch.law.stanford.edu": [15383], "mail.sedo.de": [14543], "cache.freescale.com": [6183], "login.vutbr.cz": [17522], "player.kent.ac.uk": [17317], "oe24.at": [11728], "pardot.com": [12399], "wiki.novell.com": [11530], "*.dealextreme.com": [4253], "mail.python.org": [13272], "login.iis.net": [7741], "tchibo.sk": [15985], "dingyue.taobao.com": [15952], "wonga.com": [18414], "oks.enaza.ru": [5230], "support.ccbill.com": [2534], "blog.matatall.com": [10063], "pieperhome.de": [19493], "bitcoin.com": [1965], "www.bauwesen.htwk-leipzig.de": [7114], "www.test-ipv6.cz": [16143], "photos.pcpro.co.uk": [12228], "*.scribdassets.com": [14414], "lpac.co.uk": [9094], "box.illinois.edu": [17258], "jezebel.com": [8564], "*.crossref.org": [3814], "secure.iphone.mtvn.com": [17661], "asterix.uvt.nl": [16445], "snowdenarchive.cjfe.org": [2619], "www.wed.is": [18176], "bigcityplan.birmingham.gov.uk": [19000], "www.liquidlight.co.uk": [9444], "www.connect.me": [3580], "attribute.adometry.com": [621], "api.wipmania.com": [17912], "lucy.apache.org": [1086], "docs.clusterhq.com": [3323], "*.uvcdn.com": [17459], "www.booktype.pro": [2206], "zaragoza.es": [19778], "*.corecode.at": [3661], "www.vsipprogram.com": [17513], "www.hellosign.com": [7298], "www.ping.fm": [12681], "www.wetstonetech.com": [18223], "www.itc.u-tokyo.ac.jp": [16919], "www.census-labs.com": [2940], "*.pega.com": [12526], "texastribune.org": [16156], "www.onename.com": [11836], "community.mcafee.com": [10114], "www.xnet.cz": [18531], "www.purecambogia.com": [13241], "www.itrust.org.cn": [8393], "ww2.wirral.gov.uk": [18371], "www.lever.co": [9269], "*.widgetserver.com": [18282], "hillingdon.greenparty.org.uk": [6925], "www.sexnarod.ru": [14640], "www.972mag.com": [210], "unisend.com.mx": [17198], "www.bluechip.hu": [2146], "economicimpact.uic.edu": [17231], "p.po.st": [12834], "www.av-comparatives.org": [370], "applicantid.cornell.edu": [3676], "*.aemi.edu.au": [278], "*.hbrstatic.com": [2937], "www.microspot.ch": [3645], "www.capitolmachine.com": [2821], "wordtothewise.com": [18431], "www.loanliner.com": [9532], "forgestaging.puppetlabs.com": [13232], "operations.sumologic.com": [15592], "nes.ncdc.noaa.gov": [11083], "geneseephoto.com": [6525], "www.giving.cornell.edu": [3676], "kohls.com": [8956], "eventsstg.linuxfoundation.org": [9412], "www.nti.org": [10961], "helpcenter.capitalone360.com": [2819], "boc.engineering.osu.edu": [11760], "email.webtrends.com": [18171], "fosscon.us": [6070], "www.robertsspaceindustries.com": [13922], "coventry.firmstep.com": [19183], "www.shepherdsfriendly.co.uk": [14699], "developers.2checkout.com": [82], "www.phy.ornl.gov": [11693], "semantic-mediawiki.org": [19581], "www.helbing.ch": [19245], "www.police.wustl.edu": [17993], "www.bytemark.co.uk": [2489], "www1.mplayerhq.hu": [9784], "www.filezilla-project.org": [5796], "www.ru-golos.ru": [13477], "*.cashback.co.uk": [2881], "status.docker.com": [4616], "aboutmyvote.co.uk": [427], "onestop.umn.edu": [17268], "fimfiction.net": [5816], "huggies.com.au": [7602], "www.alumni.ox.ac.uk": [17271], "ressources.w4a.fr": [17890], "blesta.com": [2070], "webmail.pobox.com": [12835], "joshtriplett.org": [8635], "help.remind.com": [13759], "rtd.rt.com": [13468], "www.accuenmedia.com": [466], "secure.trust-guard.com": [16780], "www.sysmex.com": [15755], "voltage.com": [17832], "www.vkontakte.ru": [17490, 17494], "api.posteo.de": [12969], "cancermodels.nci.nih.gov": [11052], "pccomponentes.com": [19482], "iono.fm": [8341], "library.ecc-platform.org": [4879], "netsparker.com": [11250], "outlook.wustl.edu": [17993], "stats.owncloud.org": [12182], "www.aspplayground.net": [355], "msi.tmall.com": [19684], "transactauto.com": [16662], "promo.rhb.ch": [13857], "developers.urx.com": [17016], "www.freightcalculator.com.au": [6193], "www.samssoftware.com.au": [14262], "teo.lt": [16118], "freefind.com": [6127], "*.unileoben.ac.at": [17178], "californiaunitedbank.com": [2750], "ced.sascdn.com": [14982], "www.purdueplantdoctor.com": [13234], "icenter.stanford.edu": [15383], "yunohost.org": [18751], "global.blackberry.com": [2050], "portal.cisofy.com": [2616], "dfsweb.web.cern.ch": [2575], "studentservices.leeds.ac.uk": [17318], "www.5july.org": [175], "proxy.lib.ohio-state.edu": [11761], "www.endpoint.com": [5243], "www.ontrac.com": [11892], "omi.osu.edu": [11760], "toolserver.org": [18296], "www.michaelwlucas.com": [10341], "*.emc.com": [4929], "www.localist.com": [9541], "pass.tmall.com": [19684], "fteproxy.org": [6240], "woz.ch": [18467], "conditionsurveys.southampton.gov.uk": [15191], "www.mediaquestcorp.com": [10181], "www.fitnessmarket.com.au": [5889], "onswitchit.ca": [11816], "idrix.fr": [7707], "resources.vzaar.com": [17883], "sap.hslu.ch": [7583], "secure.hbo.com": [7047], "*.qualtrics.com": [13332], "godvillegame.com": [6804], "*.tau.ac.il": [15786], "linuxacademy.com": [9418], "www.mjg.in": [9753], "danny.mantor.org": [9963], "mantor.org": [9963], "lifehacker.com": [9331], "www.amway.com": [888], "defaultsmblog.stanford.edu": [15383], "www.tdf-telecom.fr": [15801], "www.kent.gov.uk": [8851], "teamxlink.co.uk": [16006], "assetstest.acs.org": [929], "*.ssl.qhimg.com": [13302], "moderngov.sutton.gov.uk": [19643], "waeplus.co.uk": [17892], "sherrin.com.au": [14701], "vidarholen.net": [17680], "www.isv.liu.se": [9084], "s.cmcdn.net": [3327], "zakupki.rt.com": [13468], "www.spacex.com": [15209], "my.polyu.edu.hk": [12891], "ifttt.com": [7725], "*.uci.edu": [17242], "pit-format-online.pl": [19496], "nationalexpress.com": [11050], "adsby.webtraffic.se": [18167], "mx.norton.com": [11505], "www.heusden.nl": [11132], "directline.com": [4526], "arbitrage.webmoney.ru": [18076], "www.mercurial-scm.org": [10279], "tubeoffline.com": [16815], "mdev.gogobot.com": [6808], "*.limun.org": [9359], "power.org": [12989], "o2online.de": [11602], "*.4cdn.org": [158], "www.elatinos.com": [4927], "www.polk.com": [12879], "www.effi.org": [5110], "cjib.nl": [11132], "help.smartertools.com": [14996], "git.gitbook.com": [6674], "idms.financialpost.com": [5825], "partner.ncloud.dk": [11118], "eduroam.org": [5100], "www.freepracticetests.org": [6156], "bitchmagazine.org": [1955], "ted.ucsd.edu": [16939], "kamchatka.rt.ru": [13469], "emea.littlehotelier.com": [9474], "intelliot.com": [8217], "bokelskere.no": [2184], "jackandjillraffle.org": [8481], "www.securepoint.de": [14509], "*.img.digitalriver.com": [4483], "gml.cz": [6757], "www.compose.io": [3526], "roundcube.carezone.cz": [2849], "youtube.com.jo": [18709], "developer.github.com": [6680], "datacenterworld.com": [4191], "cs.marinsoftware.com": [9997], "www.brennannovak.com": [2303], "youtube.com.mx": [18709], "srm.de": [14168], "www.red-bean.com": [13665], "studentchaptersreview.acs.org": [929], "dmtracking2.alibaba.com": [809], "elearning.nursing.osu.edu": [11760], "api.rasp.yandex.by": [18648], "*.bhosted.nl": [1518], "m.dailykos.com": [4117], "blog.gravity.com": [18428], "prometric.com": [13152], "gju1.alicdn.com": [805], "youtube.hr": [18709], "base.de": [1491], "www.tape.tv": [15956], "*.providesupport.com": [13174], "www.keepassx.org": [8834], "menus.livingsocial.com": [9517], "desmond.yfrog.com": [19791], "scott.arciszewski.me": [1172], "land-der-ideen.de": [9138], "optify.net": [12067], "uhr.stanford.edu": [15383], "downloads6.mamp.info": [19379], "app-updates.agilebits.com": [727], "www.broadcasthe.net": [2354], "journal-republican.com": [12657], "culture.wnyc.org": [17916], "*.thinkingchristian.net": [16365], "autodiscover.as.leeds.ac.uk": [17318], "lists.illinois.edu": [17258], "online.maine.edu": [17322], "passport-ckicheck.yandex.by": [18648], "blogs.faz.net": [5554], "oses.tm.com.my": [16083], "censys.io": [2941], "motherboard-images.vice.com": [17667], "lulea.se": [9656], "torbit.com": [16570], "secure.powertech.no": [12994], "wog.ch": [18451], "projectmeshnet.org": [13139], "technologyreview.in": [19666], "www.flightglobalimages.com": [5920], "lib.stanford.edu": [15383], "procurement.usc.edu": [17278], "www.tocco.ch": [16524], "belpino.se": [1770], "archangelsk.rt.ru": [13469], "securedrop.theguardian.com": [16288], "manutan.fr": [9965], "frallc.com": [5592], "www.cirt.net": [2613], "explosm.net": [5511], "www.origin.digicert.com": [4473], "pingidentity.com": [12684], "*.electoralcommission.org.uk": [5147], "*.discovernetwork.com": [4552], "rotherham.gov.uk": [13979], "www.telekom.hu": [9863], "kubuntuforums.net": [9030], "tenpay.com": [16114], "blog.lenovo.com": [9251], "www.web-hosting.com": [18044], "www.magictouch.com": [9858], "howtowriteabookasap.com": [6716], "www.voat.co": [17809], "*.capture.umbel.com": [17142], "www.thegreatcoursesplus.com": [16284], "www.cbp.gov": [2523], "webmail.ovh.net": [12173], "lh3.google.co.*": [6837], "meded.dom.wustl.edu": [17992], "script.google.com": [6834], "www.cospar-assembly.org": [2641], "www.glowing.com": [6751], "*.flurry.com": [5954], "www.strasbourg.eu": [15506], "www.propertyinvesting.com": [13160], "www.tryhaskell.org": [16805], "webmail.gresille.org": [6945], "citizensinformation.ie": [3176], "istlsfastyet.com": [8363], "marinsoftware.de": [9996], "*.vpn.alaska.edu": [17235], "ncp-e.com": [19428], "gju2.alicdn.com": [805], "softperfect.com": [15095], "ethz.ch": [4975], "andre.hemk.es": [7315], "honors.utdallas.edu": [17071], "www.utrecht.nl": [11132], "timbro.se": [16453], "servicestatus.sky.com": [14924], "www.starmotorcycles.com": [15389], "www.cpanel.com": [2651], "registryrocket.com": [13737], "act.freepress.net": [6147], "lib.calpoly.edu": [2747], "antibodies.cancer.gov": [2805], "zyngaplayersupport.com": [18934], "elgiganten.se": [5162], "img1.xcart.com": [18505], "s.twimg.com": [16877], "careers.dbs.com": [4010], "open.manchester.gov.uk": [9944], "qrd.qualcomm.com": [13328], "axosoft.com": [1477], "git.renater.fr": [13764], "www.pagekite.net": [12330], "bluewin.wemfbox.ch": [2157], "cdn.evidon.com": [5458], "myaccount.hackney.gov.uk": [7156], "modsecurity.org": [10514], "servercrate.com": [14605], "youtube.co.ma": [18709], "www.lichfielddc.gov.uk": [19364], "nucleus.nursing.osu.edu": [11760], "www.cinapalace.com": [3137], "drm.info": [4080], "www.dmlp.org": [4046], "*.pentacon-dresden.de": [14358], "www.uni-kl.de": [17169], "cryptostorm.org": [3891], "bugs.openmw.org": [11954], "www.mediamarkt.es": [19774], "*.emknowledge.gov.au": [1389], "www.tookapic.com": [16553], "ato.gov.au": [1402], "www.xeromag.com": [18566], "websvn.kde.org": [8718], "www.harlandclarkewebsmart.com": [7207], "botbot.me": [2238], "www.wildfiregames.com": [18308], "mbank.pl": [9722], "subply.com": [15555], "www.truthinadvertising.org": [16802], "*.sae.kau.se": [8707], "esec-lab.sogeti.com": [15101], "www.powerdns.com": [12990], "tdm.pharm.buffalo.edu": [17297], "ssl.trendmicro.com": [16717], "cdn2.kongcdn.com": [8976], "payments.valeofglamorgan.gov.uk": [17532], "*.morrisonscellar.com": [10602], "marionstar.com": [10001], "www.twisp.me": [16882], "www.vice.com": [17667], "*.invodo.com": [8331], "*.o2.de": [16076], "commerce.microsoft.com": [10364], "wsw.afip.gob.ar": [18945], "www.enom.com": [5281], "philzimmermann.com": [12620], "partner.gmocloud.com": [6343], "ghrc.nsstc.nasa.gov": [10869], "douban.com": [4707], "www.ashford.com": [1252], "jpg.st.audiko.net": [1357], "www.youtube.it": [18709], "www.kipoint.it": [8913], "das-labor.org": [4159], "srv.asknet.com": [1268], "www.adlibris.com": [603], "musikskole-tilmelding.dk": [10722], "www.ringcentral.com": [13891], "www.ekomi.co.za": [4921], "d.me": [3994], "www.projet-plume.org": [13145], "lgbtiq-greens.greenparty.org.uk": [6925], "library.rit.edu": [13434], "www.wupaymentsolutions.com": [17935], "newrelic.com": [11291], "*.hcl.in": [7050], "news-images.vice.com": [17667], "*.lfhair.com": [9075], "youtube.de": [18709], "analytics.zipy.co.il": [18875], "www.icracked.com": [7702], "rcc.stanford.edu": [15383], "truthinadvertising.org": [16802], "jacksfetishtube.com": [8484], "www.oaklandish.com": [11694], "corporate.aldi.us": [299], "*.commondatastorage.googleapis.com": [6839], "postgresql.eu": [12974], "www.flixbus.se": [5931], "www.pumo.com.tw": [13229], "spelthorne.firmstep.com": [19183], "dynamics.com": [4829], "ipv4.doesnotwork.eu": [4632], "appdevelopermagazine.com": [1112], "viveris.fr": [17798], "www.semaphoreci.com": [14571], "www.thecommunicationtrust.org.uk": [19674], "www.fftlive.org": [5567], "ipaddresslabs.com": [7788], "ssl.panoramio.com": [12367], "billetten.dk": [1880], "*.telia.se": [16099], "*.channelintelligence.com": [3001], "n-4-2.dcs.redcdn.pl": [13685], "o.aolcdn.com": [323], "www.hertz.ie": [7351], "www.alertsite.com": [14986], "synaptop.com": [15724], "backoffice.botscanner.com": [2239], "www.hertz.it": [7352], "*.and.co.uk": [4599], "images.12wbt.com": [10343], "kontalk.org": [8980], "support-en.upc-cablecom.ch": [19716], "respectourprivacy.com": [13813], "mitro.co": [10460], "storefront.nr-assets.net": [10953], "varuste.net": [17570], "goto.google.com": [6834], "www.smallingerland.nl": [11132], "*.kriso.ee": [9013], "dge.stanford.edu": [15383], "nuevasync.com": [11570], "beacon-dub-nopii.krxd.net": [9016], "my.everplans.com": [5451], "multimedia.hrw.org": [7612], "www.twylah.com": [16902], "pce.uw.edu": [17077], "www.xpd.se": [18533], "status.mediatemple.net": [10165], "static.trustedreviews.com": [16792], "litecoin.info": [9461], "www.jobs.barclays.co.uk": [1662], "insightseries.splashthat.com": [15281], "djoser.nl": [7452], "www.kdoes.nl": [8832], "jamadu.ch": [3644], "*.akg.com": [7208], "corelio.be": [3672], "www.opensvc.com": [11972], "secure.netistrar.com": [11238], "page.ly": [12331], "autodiscover.macfound.org": [9818], "linksmail.de": [9380], "law.wustl.edu": [17993], "de-is.dict.cc": [4455], "*.useresponse.com": [17422], "kazan.rt.ru": [13469], "irssi.org": [8359], "www.pacbsd.org": [12307], "www.tango.me": [15946], "www.g2a.com": [6296], "www.yourkarma.com": [18728], "billing.camelhost.net": [2773], "www.zdrojak.cz": [18807], "slm-assets2.secondlife.com": [14462], "afsic.nal.usda.gov": [17209], "tools.wmflabs.org": [18296], "pr.norton.com": [11505], "*.brenet.de": [2296], "swisspost.ch": [12949], "www.ugenr.dk": [17116], "voipdistributor.net": [17808], "*.bmmetrix.com": [2161], "news.illinois.edu": [17258], "wiki.jasig.org": [8522], "ssp-rce.veeseo.com": [17587], "www.mysciencework.com": [10781], "kopiosto.fi": [8983], "adwords.google.*": [6837], "vvztahy.vutbr.cz": [17522], "www.gigaset.com": [6655], "itunes.swisscom.com": [15698], "*.mobstac.com": [10487], "www.yellowpagesoptout.com": [18672], "www.vogogo.com": [19740], "ecoscentric.com": [4886], "m.office.co.uk": [11742], "panic.com": [12361], "www.youtube.com.ar": [18709], "forum.mythtv.org": [10849], "www.ja.hideki.hclippr.com": [7051], "a.orkut.gmodules.com": [12110], "suggests.rasp.yandex.com.tr": [18649], "pit.dirty.ru": [4536], "*.banners.victor.com": [17670], "productimages.nimbledeals.com": [11407], "*.yoctoproject.org": [18688], "www.foodhub.co.nz": [6000], "www.toolserver.org": [18296], "nearlyfreespeech.net": [11122], "acorns.com": [475], "myprofile.oracle.com": [12082], "www.shands.org": [17253], "*.schetu.net": [14350], "autodiscover.eecs.berkeley.edu": [17240], "crocs.com": [3807], "www.451research.com": [145], "rhinosupport.com": [13862], "conference.libreoffice.org": [9311], "webgility.com": [18118], "sustainablebusiness.com": [15666], "mirage.io": [10438], "d66.nl": [4000], "paypal.co.uk": [12467], "*.kernel.org": [8857], "*.bcv.ch": [19333], "joomla.org": [8627], "debug.fastly.com": [5687], "www.secureuk.net": [14513], "www.informahealthcarestore.com": [8120], "cdn.tubemogul.com": [16814], "vpsmanager.vc-server.de": [17472], "nationwide-jobs.co.uk": [11091], "wifi.xfinity.com": [19784], "engineering.mit.edu": [9749], "www.heroup.com": [7331], "account.jwplayer.com": [9589], "images.eurogamer.net": [5416], "evals.wustl.edu": [17993], "*.jeffnabers.com": [8546], "www.sivers.org": [14888], "www.noisebridge.net": [11458], "www.platform.sh": [12784], "www.anonymousads.com": [1051], "www.surf.nl": [14197], "*.cardealerstudy.com": [1531], "consumersniper.com": [3601], "nttdocomo.com": [10968], "www.bizland.com": [2029], "aka.ms": [296], "bespoke.hertz.com": [7372], "www.lumendatabase.org": [9661], "panel.cj2.nl": [2618], "health.ucsd.edu": [16939], "ssl-cdn-media.tmz.com": [15832], "16personalities.com": [38], "*.aspen.com": [1272], "www.netsparker.com": [11250], "www.bulksms.co.uk": [2415], "80.93.17.242": [4512], "lugons.org": [9108], "chitika.net": [3091], "cdn6.iconfinder.com": [7921], "media10.congstar-media.de": [3576], "www.scribusstuff.org": [19461], "tomtom.com": [16540], "*.dyne.org": [4834], "*.fotki.com": [6073], "budgetplanner.adviceguide.org.uk": [665], "fuskator.com": [6279], "*.audienceiq.com": [1355], "srv.cdn-asknet.com": [1268], "www.okcoin.com": [11628], "telerik-web-assets.com": [16093], "unrealircd.org": [17364], "docs.nodejitsu.com": [11453], "staging-cq.citrix.com": [3178], "chroniclebooks.com": [10120], "nuxx.net": [11588], "site-cdn2.ghosteryenterprise.com": [6630], "www.internet-radio.com": [8273], "co.clickandpledge.com": [3255], "app.resilientsystems.com": [13805], "nex.sx": [11353], "www.zeringo.com": [18836], "i2p2.de": [7658], "forum.vodafone.co.nz": [17812], "albin.web.de": [18050], "unixmen.com": [17355], "*.transparencytoolkit.org": [16680], "businessapps.swisscom.ch": [15698], "pwdhash.com": [13261], "adultcineporn.com": [648], "abc.alipay.com": [817], "brockman.com": [2358], "pogoda.yandex.com.ua": [18650], "blog.shopstyle.co.uk": [14719], "extensions.libreoffice.org": [9310], "caits.iu.edu": [8064], "afford.com": [705], "sustainability.asu.edu": [1195], "*.foreseeresults.com": [6022], "trm128.brassring.com": [19017], "*.cyberwar.nl": [3977], "sitesafe.org.nz": [14878], "executiveinterviews.biz": [5488], "www.tastekid.com": [15973], "sexualviolence.wustl.edu": [17993], "*.collegeboundfund.com": [3426], "migrosmagazin.ch": [19399], "www.kabeldeutschland.com": [8760], "offcloud.com": [11735], "portal.scanscout.com": [14339], "*.techendo.com": [16027], "www.siemens.com.*": [14770], "www.fafsalivehelp01.ed.gov": [4889], "static.fatwallet.com": [5691], "www.alphadominche.com": [868], "skydrive.live.com": [9483], "kabeldeutschland.de": [8760], "www.gdata.be": [6293], "www.dyn.com": [4820], "www.fbnstatic.com": [6085], "www2.physics.ox.ac.uk": [17271], "*.viewmychart.com": [10752], "api.thebrighttag.com": [2325], "images.dt-static.com": [4660], "www.portrait.gov.au": [11072], "cottages4you.co.uk": [18490], "it.johnshopkins.edu": [8611], "dn-bterimg.qbox.me": [13299], "docs.nexcess.net": [11356], "www.registration123.com": [13734], "demo.owncloud.org": [12182], "adscale.de": [626], "iptorrents.us": [7798], "www.jua.com": [8462], "vis.occrp.org": [11611], "asset-5.soupcdn.com": [15167], "enpl.dict.cc": [4455], "www.just-eat.be": [19328], "tv.jobindex.dk": [8597], "www.techxpress.net": [16022], "www.ibood.com": [7903], "portmorgan.com": [12932], "aacqa.gov.au": [231], "beta.kontalk.net": [8980], "www.turtl.it": [16847], "f.money.chtah.net": [3127], "*.gridzdirect.com": [6952], "fanhattan.com": [5654], "www.fastclick.com": [17541], "london2011.drupal.org": [4780], "www.scintilla.utwente.nl": [14387], "guidestar.org": [7007], "rca.org": [13403], "strategic.usc.edu": [17278], "klient.ppl.cz": [12283], "haiku-os.org": [7163], "younited.com": [18719], "ookla.com": [11895], "*.unvanquished.net": [17374], "slm-assets0.secondlife.com": [14462], "www.popads.net": [12902], "signup.hasoffers.com": [7222], "www.plugunplug.net": [12825], "blog.plug.dj": [12822], "bennetts.co.uk": [1779], "vtiger.com": [17866], "*.modcloth.net": [10511], "www.freeprivacypolicy.com": [6716], "apwg.org": [1066], "global.wustl.edu": [17993], "partner.robokassa.ru": [13927], "www.univers-libre.net": [17226], "www.pipl.com": [12701], "pss.united.com": [17212], "idi.ntnu.no": [10964], "lists.nongnu.org": [5600], "www-cdn.pardot.com": [12399], "visualstudiogallery.msdn.microsoft.com": [10364], "www.panax.net": [12355], "mailstation.de": [9891], "bettersales.se": [1829], "blog.maxcdn.com": [10091], "planet.debianforum.de": [4276], "plsiii.plsinfo.org": [12537], "csc.ncsu.edu": [11491], "m.v.qq.com": [13284], "agent.mail.ru": [9874], "www.icehost.is": [7915], "www.wdr2.de": [18015], "piwik.documentfoundation.org": [16221], "www.jobfinder.dk": [8596], "myed.wachovia.com": [17941], "www.bespied-ons-niet.nl": [1800], "pipl.com": [12701], "webmercs.no": [4170], "truecrypt.org": [16772], "*.zenfolio.com": [18827], "www.draugr.de": [4743], "set-hiring.cs.stonybrook.edu": [15480], "www.bankrate.com": [1651], "www.cedia.org.ec": [2570], "rockzi.com": [13443], "www.gnu.pl": [6358], "www.xine-project.org": [18573], "*.debian-art.org": [19462], "www.ilmasto-opas.fi": [7971], "*.chase.com": [3026], "images.crocs.com": [3807], "bst8.gismeteo.ru": [6669], "www.3dsupply.de": [133], "www.euroforum.com": [5413], "a3.mzstatic.com": [10852], "domainsbyproxy.com": [4664], "www.mikemasin.com": [10385], "securelime.com": [14503], "careers.stackoverflow.com": [15359], "jua.com": [8462], "www.adium.im": [595], "ablegamers.com": [420], "forms.canterbury.gov.uk": [2811], "arachnys.com": [1149], "ice.gov": [17021], "suntimes.com": [15594], "molevalley.objective.co.uk": [19454], "www.ntnu.no": [10964], "www.portal.leeds.ac.uk": [17318], "active24.cz": [18938], "cubehash.cr.yp.to": [3748], "www.jba.io": [8538], "intelligentexploit.com": [8216], "billing.helpjuice.com": [7309], "*.bitdeli.com": [1989], "www.constantcontact.com": [3592], "static.rubyforge.org": [14019], "admin.1and1.co.uk": [53], "*.systemcenteradvisor.net": [15760], "www.bitgamer.com": [1996], "img.realty.mail.ru": [9874], "www.anpdm.com": [1053], "www.list.co.uk": [16199], "www.chcidoo2.cz": [16076], "graphics.friendfinder.com": [6213], "www.dreamnews.jp": [4750], "authbox.io": [1408], "glossary.knowledgeblog.org": [8948], "account.bitmain.com": [2003], "support.foursquare.com": [6082], "www.videogamegeek.com": [17685], "www.verisign.com.br": [17623], "zencache.com": [18817], "exploithub.com": [5509], "images.sciencedaily.com": [14378], "www.igaming.biz": [7732], "intelliworkschat.com": [8220], "www.hh.se": [7061], "bitterwallet.com": [7548], "a5.sphotos.ak.fbcdn.net": [5700], "hertz.co.uk": [7371], "karriere.aldi-sued.de": [299], "www.laughingsquid.us": [9166], "is20.snstatic.fi": [14145], "*.dagbladet.no": [4107], "umwblogs.org": [17261], "*.sidereel.com": [14762], "irb.fraunhofer.de": [6112], "spm.southwark.gov.uk": [15196], "cdn.culturesforhealth.com": [3917], "creatavist.com": [3770], "image.spreadshirtmedia.net": [15300], "app.resrc.it": [13599], "www.shaun.net": [14685], "www.blake2.net": [19006], "mail.netscape.com": [11248], "cdn.unibet.com.au": [17179], "toofishes.net": [16551], "lha-direct.voa.gov.uk": [19739], "atinternet-solutions.com": [363], "cloudfront.debian.net": [4273], "intelli-direct.com": [8214], "piriform.com": [12725], "sehirfirsati.com": [14562], "www.liberis.co.uk": [19362], "*.represent.us": [13788], "mvapich.cse.ohio-state.edu": [11759], "lady.mail.ru": [9874], "www.neustar.com": [11282], "kncminer.com": [8938], "*.verzekeringssite.nl": [17648], "dn.dk": [4054], "www.providesupport.ru": [13173], "*.mail2web.com": [15090], "www.grouponworks.com": [6979], "ielts.org": [7719], "llwebprod2.ll.mit.edu": [9749], "amarok.kde.org": [8718], "kamila.mysql.cesky-hosting.cz": [19051], "lpc-afs.web.cern.ch": [2575], "*.tictail.com": [16428], "ecm74.com": [5052], "calendar.google.com": [6834], "nd.edu": [17329], "blog.foreignpolicy.com": [6024], "blog.ikoula.com": [7963], "rambler.ru": [13540], "blog.popcorntime.io": [12915], "stablelib.com": [15358], "*.billiongraves.com": [1883], "resweb.passkey.com": [12430], "extranet.wienenergie.at": [18284], "www.downloadhelper.net": [4725], "*.blaze.com": [2061], "jumpingjack.com": [8675], "zombeewatch.org": [18891], "publicsuffix.org": [13215], "*.yourmoney.ch": [19333], "jsbi.org": [8456], "mol.gov.sa": [14306], "majestic12.co.uk": [9898], "filehosting.sanet.me": [14077], "login.web.de": [18050], "mozilla-russia.org": [10651], "*.switchplus.ch": [15706], "buddypress.org": [2391], "pages.qualcomm.com": [13328], "careers.checkpoint.com": [3048], "*.t.eloqua.com": [5179], "group.xakep.ru": [18539], "img.bol.de": [16171], "www.mpagano.com": [10669], "oncourse.iu.edu": [8064], "accessweb.publish.uic.edu": [17231], "forums.ouvaton.org": [12155], "idp.godaddy.com": [6773], "wikiwand.com": [19759], "asset-3.soupcdn.com": [15167], "blog.nvisium.com": [10986], "circularhub.com": [3157], "sharing.ashampoo.com": [1250], "*.policymic.com": [12866], "www.fiercewireless.com": [5778], "taxbenefits.sheffield.gov.uk": [14694], "variomedia.de": [17567], "cash.ch": [19043], "jsk.stanford.edu": [15384], "*.homelessveterans.co.uk": [7478], "ad-juster.com": [512], "2ch.cm": [91], "sec-sso.click-sec.com": [3241], "www.acnc.gov.au": [263], "*.wpdigital.net": [17927], "shop.die-linke.de": [4457], "metrica.yandex.com": [18651], "wubio.wustl.edu": [17993], "leapmotion.com": [9209], "nouveau.freedesktop.org": [6126], "www.asacp.org": [344], "*.m-privacy.de": [9693], "www.multicore-devcon.com": [10700], "nlayer.net": [10939], "ssl.net-m.net": [11212], "live.1nsk.ru": [60], "www.idnet.net": [7706], "suche.gmx.net": [6350], "harland.com": [7207], "firma.money.pl": [10546], "trust-it.gr": [16781], "kaluga.rt.ru": [13469], "member.hide.me": [7391], "mediafire.com": [10151], "static4.businessinsider.com": [2454], "wiki.rit.edu": [13434], "fs01.androidpit.info": [1009], "www.atsec.com": [1332], "insa-strasbourg.fr": [8192], "sprintrebates.com": [15316], "babbel.com": [1590], "oastats.mit.edu": [9749], "midkemiaonline.com": [19398], "hon.ch": [7088], "*.mynewsdesk.com": [10841], "static.bn-static.com": [1533], "www.impactsoftcompany.com": [8012], "assets.mcc.gov": [19388], "*.catalysthost.com": [2897], "beta.stacksocial.com": [15363], "theticketfactory.com": [16416], "qa.fastmail.fm": [5688], "heroku.com": [7332], "lists.nic.cz": [11379], "www.copyright.com": [3657], "pop.claranet.de": [3212], "nhs.uk": [10913], "keys.pbsci.ucsc.edu": [17304], "www.yopto.com": [18693], "www.joomlancers.com": [8629], "d.rlcdn.com": [13435], "labintel.cnrs.fr": [6195], "nlbb.engineering.osu.edu": [11760], "kaneva.com": [8780], "rspcashop.co.uk": [13462], "www.travelrepublic.co.uk": [16695], "app.fastshoppingcart.com": [13359], "www.playerio.com": [12804], "delivery.support.theplatform.com": [16230], "commsys.isy.liu.se": [9083], "*.totalwebsecure.com": [16605], "enterprisezones.gov.wales": [6860], "djurrattsalliansen.se": [4594], "swedbank.nl": [15682], "voa.gov.uk": [19739], "www.konstfack.se": [8979], "www.mathbuntu.org": [10067], "*.bild.de": [1874], "www.oxforddictionaries.com": [12191], "it-offshore.co.uk": [7840], "www.filmlush.com": [5811], "*.scsstatic.ch": [14428], "www.internetevolution.com": [4404], "samsclass.info": [14263], "reading.ac.uk": [17335], "www.studentlife.osu.edu": [11760], "bundestag.de": [4414], "piwik.oppelt.com": [12059], "*.chatoncdn.com": [3030], "savvyhawk.com": [14317], "tmt.org": [16370], "www.digilinux.ru": [4478], "ds4.static.rtbf.be": [14011], "www.videopp.com": [17689], "trashmail.net": [16688], "mobilfunk.tchibo.de": [15985], "computerworld.com": [3534], "post.update.chartbeat.com": [3018], "hosting.earthlink.net": [5007], "www.cheapssls.com": [3042], "ergon.ch": [5340], "sslcam.news.com.au": [11338], "yplanapp.com": [19798], "opkode.com": [12057], "static.ocf.berkeley.edu": [17240], "services.libis.kuleuven.be": [8816], "ffmpeg.mplayerhq.hu": [9784], "udacity.com": [17110], "www.david-campbell.org": [4223], "www.fedgeno.com": [5725], "employer.dice.com": [4453], "www.mni.thm.de": [15811], "www.collegiatepeaksbank.com": [3430], "communaltv.sky.com": [14924], "ancud.de": [995], "limun.org": [9359], "de-fr.dict.cc": [4455], "tagcommander.com": [15904], "concussion.leeds.ac.uk": [17318], "fnic.nal.usda.gov": [17209], "baomoi.com": [1660], "www.prad.de": [13009], "www.telekom.com": [16087], "*.caltech.edu": [2757], "www.nllgg.nl": [10937], "apomedifot.de": [1097], "forums.bukkit.org": [19024], "brownpapertickets.com": [2366], "www-stage.oracle.com": [12082], "visa.jd.com": [8423], "winhawille.edu.hel.fi": [18355], "www.nsrc.org": [10958], "mcp.bucket.nchr.io": [19426], "data.cloud.unity3d.com": [17220], "otr.im": [11681], "adintegration.insideygs.com": [8169], "www.luxomo.com": [9676], "hover.com": [7566], "www.leibniz-supercomputing-centre.de": [9238], "efax.co.uk": [5107], "www.magix-online.com": [9706], "untergeschoss.ch": [17372], "www.own-mailbox.com": [12180], "publib.boulder.ibm.com": [7675], "diversity.wustl.edu": [17993], "linux.com": [9403], "www.anquanbao.com": [1054], "sharepoint.nexus.ox.ac.uk": [17271], "artedolar.com.br": [1227], "js.microsoft.com": [10364], "mail.zaehlwerk.net": [18778], "*.veruta.com": [17644], "track.adcocktail.com": [267], "vacenza.com": [17527], "skimlinks.com": [14911], "orchid.cs.illinois.edu": [17258], "*.silkroad.com": [14792], "voyage-prive.it": [17858], "au.redhat.com": [13675], "www.dreampass.jp": [4752], "j.wpimg.pl": [19766], "www.homebello.com": [7466], "www.btcgreece.com": [1558], "sharedtech.wustl.edu": [17993], "*.codepen.io": [3350], "guttmacher.org": [7029], "www.linuxnewmedia.de": [9395], "knowledge.verisign.com.tw": [17623], "cdnapisec.kaltura.com": [8775], "bugs.freebsd.org": [6120], "www.cga.ct.gov": [2680], "newyorkneedsyou.org": [11312], "forum.spring.io": [15302], "www.lesershop24.de": [19357], "dareboost.com": [4146], "goslice.com": [14955], "www.consultation.rbkc.gov.uk": [19538], "tr0n.net": [16625], "mix-computer.de": [9752], "www.openfiler.com": [12034], "www.bmibaby.com": [2160], "www.sacredcrystalsingingbowls.net": [14219], "vuze.com": [17879], "www.sonatype.com": [15132], "skillselect.govspace.gov.au": [6867], "www.userscripts.org": [17432], "www.voyage-prive.co.uk": [17856], "www.ereceptionist.co.uk": [4951], "www.hertz247.de": [7346], "costco.cyberpowerpc.com": [19098], "*.linuxaria.com": [9427], "anest.wusm.wustl.edu": [17993], "do-it.org": [4609], "www.csszengarden.com": [3898], "www.kat.ph": [8879], "dobrochan.com": [4612], "icbit.se": [7683], "blog.obnox.de": [11705], "invisionpower.com": [8325], "czone.eastsussex.gov.uk": [19142], "www.truenudists.com": [16775], "ca.norton.com": [11505], "mosaicscience.com": [10603], "www.maddcalifornia.org": [9705], "www.test.tibia.com": [19777], "*.indystar.com": [8067], "event.fanli.com": [5655], "*.prosystemfx.com": [13164], "www.luminoworld.com": [9666], "static.focus.de": [5974], "bytelove.*": [2490], "affiliates.eblastengine.com": [4877], "securityinabox.org": [14533], "ovh.es": [12173], "trustsign.com.br": [16783], "www.amara.org": [907], "dsl.1und1.de": [68], "www.credit-suisse.com": [3792], "gns3.com": [6355], "matrix.org": [10077], "blogmark.me": [2109], "www.agol.dk": [731], "exchange.contextweb.com": [3616], "www.desertory.de": [4386], "bugzilla.libsdl.org": [9290], "nationaleatingdisorders.org": [11095], "lauramercier.ugc.bazaarvoice.com": [887], "as-ezsvn-prod.ist.berkeley.edu": [17240], "allafrica.com": [18949], "www.otummstore.se": [12136], "nstatic1.freepik.com": [6182], "*.eff.org": [4908], "login.domaindiscount24.com": [19123], "dlv.isc.org": [7821], "www.cryptabyte.com": [3841], "forum.andesi.org": [998], "*.openf2.com": [11936], "lightbluetouchpaper.org": [9343], "xml.yandex.com": [18651], "medikamente-per-klick.de": [10196], "order.thephone.coop": [16347], "bia2.com": [1838], "blog.ixwebhosting.com": [7882], "www.timeweb.com": [16456], "st6.gismeteo.ru": [6669], "ghbtns.com": [6626], "uspirates.org": [17066], "gridzdirect.com": [6953], "platt.com": [12789], "*.wechat.com": [18018], "harakahdaily.net": [7202], "meter-svc.nytimes.com": [11000], "www.tchibo.com.tr": [15985], "www.swedbank.nl": [15682], "marketplace.cisco.com": [3162], "*.coverforyou.com": [3733], "akamaitest.lg.com": [9077], "verasafe.com": [17613], "www.glue.umd.edu": [17263], "www.wegoted.com": [18019], "jobs.zentralbahn.ch": [19802], "www.piraten-aargau.ch": [12284], "tops.yandex.com.tr": [18649], "images.vice.com": [17667], "media.tumblr.com": [16826], "oo-software.com": [11893], "www.girlscouts.org": [6666], "img.1und1.de": [68], "fastshare.cz": [5674], "*.thewrap.com": [16215], "www.e-magin.se": [4854], "honeynet.org.mx": [19256], "my.1and1.co.uk": [53], "www.acuityscheduling.com": [504], "*.linux42.org": [19462], "cypherpunks.ca": [3985], "yourlogicalfallacyis.com": [18730], "www.gmodules.com": [6839], "cdn01.animenewsnetwork.com": [18957], "www.priorygroup.com": [13074], "piwik.kevag-telekom.de": [8862], "sas-origin.onstreammedia.com": [11885], "docelu.pl": [4615], "img05.taobaocdn.com": [15953], "webftp.active24.cz": [18938], "home.regit.org": [13738], "*.moikrug.ru": [10532], "*.personalitypage.com": [12584], "rnrsweetdeals.newsreview.com": [11339], "static1.mailerlite.com": [9882], "html5video.org": [7106], "www.govtrack.us": [6868], "fsras.htwk-leipzig.de": [7114], "www.aegee-enschede.nl": [276], "www.lv.com": [9511], "sustainability.publish.uic.edu": [17231], "e-sirket.mkk.com.tr": [9754], "email.secureserver.net": [14511], "exposefacts.org": [5513], "www.thoughtworks.com": [16386], "www.jiscmail.ac.uk": [8439], "landsend.com": [9140], "www.wemonit.de": [18021], "www.luxhv.com": [9675], "bugs.i3wm.org": [7660], "v3.lolagrove.com": [9568], "mytime.com": [10792], "metasearch.kib.ki.se": [8725], "vvcap.net": [17523], "*.wgcdn.net": [18225], "snapengage-8.wpengine.netdna-cdn.com": [15027], "*.wsjeuropesubs.com": [11321], "*.familie-redlich.de": [5644], "www.dailydot.com": [4114], "www.speakyoursilence.org": [15234], "codesourcery.com": [10264], "assets.vodafone.co.uk": [17813], "www.bagatoo.se": [1614], "*.mediastorehouse.com": [10146], "tags.api.umbel.com": [17142], "cookie.monster.com": [10564], "*.fetshop.co.uk": [5762], "*.wcl.american.edu": [934], "xplr.com": [18586], "blog.serverdensity.com": [14614], "status.iwantmyname.com": [19313], "platform.tumblr.com": [16826], "se.icecat.biz": [7914], "www.andywalsh.com": [1011], "www.nice.org.uk": [10921], "myapm.apm.com": [332], "answers.uillinois.edu": [16960], "myvoice.earthlink.net": [5007], "nuug.no": [10980], "images.yandex.com": [18651], "eastsussex1space.co.uk": [19143], "res2.nabtrade.com.au": [10865], "analytics.1and1.com": [51], "*.pgi.com": [12247], "casinoaffiliateprograms.com": [2882], "www.wienerlinien.at": [18284], "ny.regjeringen.no": [13739], "security.berkeley.edu": [17240], "eu.api.kimsufi.com": [8892], "e2.xhamsterpremiumpass.com": [18516], "www.scea.com": [14089], "static.data.gov": [4175], "straply.com": [15505], "webapp.ftb.ca.gov": [2742], "bunsen.wapolabs.com": [17939], "www.lucaspetter.com": [9641], "cdncss-socialcomediallc.netdna-ssl.com": [16775], "www.yourmailinglistprovider.com": [18722], "xtgem.com": [18597], "gdp.stanford.edu": [15383], "*.armytimes.com": [1205], "www.paramountmovies.com": [12394], "mikaela.info": [10382], "windowssecrets.com": [18347], "checkout.lenovo.com": [9251], "*.optimizely.com": [12073], "eurobilltracker.com": [19165], "ireeco.com": [8355], "evesys.unisys.co.jp": [17202], "www.qubes-os.org": [13344], "*.compiz-fusion.org": [3522], "yourkarma.com": [18728], "cdn1.therepublic.com": [16207], "www.fresh-hotel.org": [6199], "support.doublerobotics.com": [4713], "*.pbsrc.com": [12495], "jobs.swisscom.ch": [15698], "oiss.wustl.edu": [17993], "www.skyviewinghelp.com": [14927], "hosting2go.nl": [7526], "pgp.webtru.st": [18174], "aolo.tk": [3533], "www.rhapsody.com": [13858], "forums.usa.canon.com": [2809], "digitabportals.com": [4479], "applicationstemp.barnsley.gov.uk": [18983], "reg.163.com": [35], "www.basecamp.com": [1687], "auth.corvisacloud.com": [3688], "*.shortyawards.com": [14736], "brand.wustl.edu": [17993], "support.oracle.com": [12082], "commoncraft.com": [3489], "www.saudi.gov.sa": [14306], "renewals.cheshire.gov": [3065], "2014.eurobsdcon.org": [5404], "cdn-w.gettraffic.com": [6581], "www.zeronet.io": [18843], "images.parkrun.org.uk": [12407], "*.igodigital.com": [7734], "polleninfo.org": [12883], "snp.cdn.dell.com": [4335], "getgo.de": [6613], "s1.rationalcdn.com": [19536], "onlinestore.ccccloud.com": [2539], "enhanceie.com": [5272], "www.mensaplan.de": [10260], "mail.piraten-ufr.de": [12717], "accelaworks.com": [440], "reservation-desk.com": [13802], "uwaterloo.ca": [17292], "walthamforest.moderngov.co.uk": [19405], "sunrise.ch": [15603], "yourmailinglistprovider.com": [18722], "gpgauth.org": [6876], "pic.iptorrents.com": [7798], "pass.beta.ya.ru": [18626], "cmdev.com": [2630], "enlighten.enphaseenergy.com": [5284], "ru.pornworms.com": [12928], "wac.20f5.edgecastcdn.net": [13712], "smartcardservices.macosforge.org": [9820], "nbound.nvidia.com": [10985], "liquidweb.com": [9443], "game.taobao.com": [15952], "guides.web4all.fr": [18052], "rollingstonesubscriptions.com": [13961], "etravelway.com": [5392], "dasource.ch": [4165], "*.fatcow.com": [5690], "www.cdgcommerce.com": [2552], "www.tno.nl": [15839], "store.linksys.com": [9382], "www.jabber.no": [8475], "ssl9.ovh.net": [12173], "buffalostate.edu": [2401], "dyndns.berlin": [4822], "cms.manchester.gov.uk": [9944], "applications.barnsley.gov.uk": [18983], "forum.bitcoin.pl": [1967], "www.bluekrypt.be": [2134], "www.paxtonrecord.net": [12464], "mjam.net": [10472], "trysuperbgreencoffee.com": [16806], "gradschool.utah.edu": [17288], "*.webxakep.net": [18098], "www.ekiga.org": [5131], "dashboards.cern.ch": [2575], "startjesucces.nl": [19277], "xmpp-ftw.jit.su": [8579], "*.spec.org": [14156], "typtest.tivi.de": [19800], "www1.my.commbank.com.au": [3477], "cryptosms.org": [3863], "www.hightail.com": [7407], "api.roblox.com": [13924], "wimpmusic.com": [18276], "weblogawards.org": [18128], "pastemarkdown.com": [12445], "www.graasmilk.net": [6878], "www.botconf.eu": [2240], "docs.arangodb.com": [1151], "subgraph.com": [15558], "lse.ac.uk": [9099], "nsn.com": [11462], "docstorepro.com": [4623], "version.clearlinux.org": [3233], "www.report-uri.io": [13781], "starwars.com": [15396], "infradead.org": [8132], "customercare.symantec.com": [15715], "www.appgratis.com": [1105], "oxs.mediabistro.com": [10169], "www.hostbillapp.com": [7508], "hostedtalkgadget.google.com": [6834], "ntvspor.net": [10974], "csc.beap.ad.yieldmanager.net": [13881], "vetdepot.com": [17654], "pod.juliareda.eu": [8671], "www.blekko.com": [2066], "my.godaddy.com": [6773], "techxpress.net": [16022], "www.movie4k.tv": [10636], "www.faq.mail.com": [9872], "badges.fedoraproject.org": [5726], "prevention.cancer.gov": [2805], "unite.ut.ee": [17069], "www.sacnas.org": [14066], "www.domoticz.com": [4675], "www.movie4k.to": [10636], "www.knowledgeblog.org": [8948], "platform.sh": [12784], "*.arhivach.org": [18960], "www.dlitz.net": [4042], "www.icc-cpi.int": [7684], "m.kuruc.info": [9045], "posterous.com": [12972], "mouseflow.de": [10624], "group.jd.com": [8423], "*.uio.no": [17330], "filmdates.co.uk": [5809], "www.audioprointernational.com": [8226], "connectssl.find.ly": [5837], "*.webshoprevolution.com": [18085], "www-ssl.intel.com": [8209], "html5sec.org": [7105], "iconfinder.com": [7921], "unlimited401k.com": [17359], "www.abysmal.nl": [433], "mobile.webtrends.com": [18171], "zerobin.net": [18839], "api.addresspicker.io": [578], "www.initex.com": [8145], "wf.mail.ru": [9874], "videos.sproutvideo.com": [15320], "youtube.se": [18709], "getcomposer.org": [6588], "bokon.se": [2185], "matalan.co.uk": [10062], "www.e-mielenterveys.fi": [4855], "community.joomla.org": [8627], "erben.rhb.ch": [13857], "ru.foursquare.com": [6082], "redirect.disqus.com": [4570], "thunderranchinc.com": [16403], "savetheinternet.eu": [14316], "qrcode.kaywa.com": [8827], "cdn.business.comcast.com": [3461], "donate.hrw.org": [7612], "help.proboards.com": [13110], "*.f-cdn.com": [5539], "uvm.edu": [17075], "*.googlesource.com": [6844], "status.onfleet.com": [11858], "www.e-onlinedata.com": [4856], "ami.com": [308], "*.www.salford.ac.uk": [17337], "www.xiscosoft.com.es": [18576], "lowes.com": [9636], "seekingarrangement.com": [14553], "www.store.xkcd.com": [19786], "*.golflink.com": [6820], "*.moxiesoft.com": [10645], "delivery.a.switchadhub.com": [15701], "www.pbebank.com.my": [13203], "*.myheritage.com": [10834], "ftp.intevation.de": [8297], "*.boards.ie": [2168], "track.roiservice.com": [13952], "www.gruen-digital.de": [6985], "mpi.onlinesbi.com": [11873], "lists.zaehlwerk.net": [18778], "bodoni.stanford.edu": [15383], "mycotopia.net": [10827], "static.fashionara.com": [5668], "a6.sphotos.ak.fbcdn.net": [5700], "www.aamc.org": [232], "www.dkit.ie": [4040], "feedback.chef.io": [3057], "xapo.com": [18541], "moodle.htw-berlin.de": [7112], "www.href.li": [7578], "lumovies.com": [9669], "deals.sourceforge.net": [15174], "www.edeka-verbund.de": [19147], "nationalexpress.jobs": [11050], "biotest.t-nation.com": [15773], "www.pingxx.com": [12690], "www.mypostbusiness.ch": [12949], "secure2.roisolutions.net": [13446], "blogs.janestreet.com": [8511], "publeaks.nl": [13202], "earthsci.stanford.edu": [15383], "www.samsunglfd.com": [14269], "chaox.net": [3007], "cal.berkeley.edu": [17240], "freesecure.timeanddate.com": [16461], "mirror.datapipe.com": [4211], "websafe.virginmedia.com": [17737], "www.imation.com": [7986], "www.coderwall.com": [3377], "chatme.im": [3029], "www.dediserve.com": [4293], "*.host.ie": [4513], "www.zerzar.com": [18849], "confuzzled.org.uk": [3574], "www.tutanota.com": [16850], "www.meetings.acs.org": [929], "profiles.udacity.com": [17110], "fah.stanford.edu": [15383], "blogs.nursing.osu.edu": [11760], "www.getbeagle.co": [6585], "ssl.kaptcha.com": [8793], "www.amnesty.ch": [959], "soic.indiana.edu": [8065], "care-hhh.web.cern.ch": [2575], "eddie.linux-mips.org": [9413], "wp.0x539.se": [6], "gaiahost.coop": [6302], "*.metapress.com": [10299], "panel.cinfu.com": [3148], "www.hackthe.computer": [7159], "cdn1.static.xtube.com": [18602], "www.virtual-server.org": [17747], "www.smava.de": [19602], "login.m.taobao.com": [15952], "aclunc.org": [260], "img.printfection.com": [13070], "eia.gov": [4917], "www.netmarketshare.com": [11197], "members.cloudatcost.com": [3282], "service.wienerstadtwerke.at": [18284], "www35t.glam.com": [6697], "www.cure53.de": [3927], "static7.twilio.com": [16876], "www.wdm.org.uk": [18454], "webmail.cj2.nl": [2618], "www.corp.mamba.ru": [9932], "www.dpmc.gov.au": [4076], "ci.jenkins-ci.org": [8551], "newyorker.com": [16203], "dispenser.tf": [4568], "www.tm.com.my": [16083], "*.aspsys.com": [1274], "www.feitbulbs.com": [5745], "control.preyproject.com": [13045], "www.porta.codes": [12933], "*.pypy.org": [10285], "www.secureprosoftware.com": [14494], "*.spring-tns.net": [15301], "www.notacon.org": [11520], "ethn.io": [5384], "*.zappos.com": [18792], "www.spiceworks.com": [15266], "teams.nikhef.nl": [11402], "recruiting.aldi.hu": [299], "rtt.adrolays.de": [625], "qa.openresty.org": [12043], "termsofservicegenerator.com": [6716], "i.t.webtracker.jp": [18165], "www.bing.com": [1895], "lists.x2go.org": [18499], "gambleid.com": [6412], "ma0.twimg.com": [16877], "www.aclu-sc.org": [252], "www.snipcart.com": [15037], "search.microsoft.com": [10364], "www.2pay.ru": [97], "www.bet555.eu": [1812], "shop.digitalcourage.de": [4503], "secure.directorsdesk.com": [10871], "ldscdn.org": [16219], "join.gay180.com": [6478], "forum.dokuwiki.org": [4638], "hr.buffalo.edu": [17297], "imagesource.allposters.com": [835], "endace.com": [5244], "forum.sozone.de": [15051], "jackpotmillions.com": [8483], "www.huuto.net": [19267], "edrive-hosting.cz": [5090], "www.megabigpower.com": [10224], "policy.gmu.edu": [6544], "otapps.wustl.edu": [17993], "forum.ciphershed.org": [3151], "webmate.io": [18132], "linuxgamepublishing.com": [9423], "www.warosu.org": [17983], "safecharge247.com": [14231], "powersource.post-gazette.com": [12948], "*.nelonenmedia.fi": [11141], "mysql12.vas-hosting.cz": [19729], "talemetrytoday.com": [15918], "slenderkitchen.com": [14952], "crowd.xenserver.org": [18557], "emanuelduss.ch": [5195], "falkvinge.net": [5642], "www.thingsquare.com": [16359], "mobi.drweb.com": [4783], "code.prod.facebook.com": [5620], "cdn.thinglink.me": [16356], "downloadeu3.teamviewer.com": [16004], "sp.onlinelibrary.wiley.com": [18309], "www.northpole.fi": [11502], "justeat.it": [19328], "www.acsac.org": [265], "protected.fscs.org.uk": [5598], "*.infojobs.net": [8100], "www.sc.pages05.net": [12333], "www.tinkerforge.com": [16476], "research.cbc.osu.edu": [11760], "www.talky.io": [15935], "wiki.geant.org": [6314], "www.telushealth.co": [16103], "telemetryverification.net": [16090], "contactprivacy.com": [3608], "guestcentral.bnl.gov": [19009], "*.webmail.dotcomhost.com": [4692], "www.ucuzu.com": [17108], "lucina.net": [9647], "www.blockstream.com": [2099], "londonsockcompany.com": [9583], "framework.web.cern.ch": [2575], "aim.com": [290], "hhpprtv.ornl.gov": [11693], "hackthissite.org": [7136], "data.bistudio.com": [2179], "internetcoup.org": [8281], "payments.amazon.co.uk": [910], "fasterbadger.com": [5684], "www.mport.ua": [9785], "5july.org": [175], "owncloud.kairo.at": [8767], "dc1.client.hip.live.com": [9483], "lists.linaro.org": [9361], "*.starfieldtech.com": [15403], "files.adspdbl.com": [632], "*.globalvoicesonline.org": [6735], "*.displaymarketplace.com": [4569], "www.dbrgn.ch": [4238], "sk-nic.sk": [14893], "www.sms.cam.ac.uk": [17243], "hospitalityleaders.com": [7500], "diy.jd.com": [8423], "www.lakebtc.com": [9133], "www.snapsurveys.com": [19604], "pa.elsevier.com": [5185], "website.1and1.com": [51], "alumsso.mit.edu": [9749], "www.safariflow.com": [14223], "us-ignite.org": [17020], "myservice.bradford.gov.uk": [2264], "kundenservice.web.de": [18050], "stream.radiox.ch": [13516], "www.giganews.com": [6650], "www.symbolab.com": [15716], "portal.polyu.edu.hk": [12891], "thumb.pr0gramm.com": [19514], "goaldet.com": [6801], "historyofmedicine.wustl.edu": [17993], "teams.surfconext.nl": [14198], "www.nuug.no": [10980], "ola.kent.gov.uk": [8851], "pega.com": [12526], "yhoo.it": [18638], "hhid.com": [7064], "etarget.ro": [5372], "help.instagram.com": [8182], "palsolidarity.org": [12338], "aldi-nord.de": [299], "hebook.engineering.osu.edu": [11760], "www.aldi.co.uk": [299], "in.pinterest.com": [12699], "www.openitp.org": [11947], "seller.ju.taobao.com": [15952], "*.ggpht.com": [6844], "handbook.fca.org.uk": [5557], "feedly.com": [5738], "davis.com": [4233], "www.moviease.com": [10640], "info.whitehatsec.com": [18250], "academiapress.be": [434], "m.kosmas.cz": [8742], "platba.cz": [18938], "sensepost.com": [14585], "websupport.novell.com": [11530], "passwordreset.dkit.ie": [4040], "source.opennews.org": [11963], "atmos.illinois.edu": [17258], "www.cloudflare.com": [3285], "imerys.com": [7989], "secure.netflix.com": [11229], "ksaglass.com": [8749], "www.landscape.io": [9141], "doctortrusted.org": [4624], "broadcasthe.net": [2354], "cateee.net": [2901], "*.zugerkb.ch": [19333], "hotpics-amateur.com": [7550], "www.yeahtv.com": [18614], "wiredsafety.org": [18365], "www.makeagif.com": [9911], "answers.stripe.com": [15525], "atrativa.com.br": [1331], "www.aralbalkan.com": [1150], "eventing.coursera.org": [3719], "cryptojedi.org": [3875], "*.ixquick.com": [8405], "www.jameco.com": [8501], "*.magnatune.com": [9859], "dobro.mail.ru": [9874], "img.geocaching.com": [6542], "masterh2.adriver.ru": [534], "gg.google.com": [6834], "billmaher.com": [1878], "partners.vouchedfor.co.uk": [17848], "www.law.wustl.edu": [17993], "*.sonos.com": [15140], "www.crashplan.com": [3762], "www.emaileri.net": [5192], "partners.guidestar.org": [7007], "newmoon.com": [11290], "sparkstudios.com": [15224], "de-pt.dict.cc": [4455], "coolkeywest.com": [3642], "dl.hexchat.net": [19246], "octodex.github.com": [6680], "*.sc.omtrdc.net": [11805], "*.32red.com": [100], "www.slack.com": [14942], "www.marketplace.org": [10017], "login.taobao.com": [15952], "docs.mesosphere.com": [10290], "www.clicklivechat.com": [3261], "www.visibletechnologies.com": [17772], "rememberthemilk.jp": [13758], "synergy-stage.eamobile.com": [5151], "cdn02.animenewsnetwork.com": [18957], "minigames.mail.ru": [9874], "www.localsearchassociation.org": [18668], "developer.epa.gov": [4937], "everydayhero.com.au": [5454], "iuware.iu.edu": [8064], "avatars2.githubusercontent.com": [6680], "*.riga.lv": [13880], "apps.cisco.com": [3162], "www.alexcabal.com": [794], "researchmap.jp": [13800], "savannah.vc": [14309], "www.emaileri.fi": [5192], "vpn.nordicacademy.no": [11475], "password.gmu.edu": [6544], "class-central.com": [3216], "www.fsf.org": [5600], "go.babbel.com": [1590], "affiliate.bitbay.net": [1924], "mail.ziggo.nl": [18862], "*.ganzestore.com": [6456], "webmail.gradwell.com": [6883], "adl.osu.edu": [11760], "f5networks.*": [5545], "www.optagelse.dk": [12065], "static.ow.ly": [12176], "akamai.com": [761], "*.blogmark.me": [2109], "www.blockscript.com": [2085], "www.inapub.co.uk": [8036], "cyberlaw.stanford.edu": [15383], "www.ebi.co.uk": [5423], "*.inventati.org": [1413], "*.serverloft.com": [14617], "zareason.com": [18797], "goingup.com": [6810], "www.titanshare.to": [16503], "www.success.tid.gov.hk": [7077], "at.godaddy.com": [6773], "coreix.net": [3671], "www.ideasonboard.com": [7930], "dahmw.org": [4672], "dsl.wrating.com": [18473], "*.duosecurity.com": [4803], "sade.com": [14220], "www.futurity.org": [6285], "www.ewents.ya.ru": [18626], "www.bitcard.org": [1928], "www.df.eu": [4029], "*.sonystyle.com.mx": [15150], "api.t.sina.com.cn": [14840], "lli.ucollege.wustl.edu": [17992], "mail.justice.com": [8698], "videohelp.cit.cornell.edu": [3676], "kapsi.fi": [8791], "www.fuerzapopular.pe": [6244], "static.androidpit.info": [1009], "news.google.co.*": [6837], "ssl-i.xx.openx.com": [11995], "www.zaehlwerk.net": [18778], "www.iplocation.net": [19304], "easychair.org": [5022], "xiscosoft.info": [18576], "ads.simplyhired.com": [14830], "sweflix.net": [15685], "m.tune.yandex.com": [18651], "baremetal.com": [1666], "ws.amazon.co.jp": [1286], "social.sbi.co.in": [14082], "s2.lemde.fr": [9244], "recipelab.org": [13644], "wbplay.com": [17897], "www.redbridge.gov.uk": [13683], "okcupid.com": [11772], "m.rabota.yandex.by": [18648], "shirazlug.ir": [14708], "www.imgking.co": [19286], "www.sweflix.net": [15685], "www.privacyscore.com": [13094], "virginiamason.org": [17739], "www.ouaza.com": [12137], "web.stonewall.org.uk": [19629], "dafont.com": [4103], "www.progllc.com": [13151], "www.jensge.org": [8553], "help.mailgun.com": [9883], "iad.apple.com": [1120], "internal.dynstatus.com": [4823], "www.nlg.org": [10936], "prod3si.click4assistance.co.uk": [3242], "www.postbydnx.com": [12961], "eclaim.walthamforest.gov.uk": [17966], "passport.bigmir.net": [1866], "accesd.affaires.desjardins.com": [4391], "ngvpn33.nvidia.com": [10985], "faq-o-matic.net": [5658], "img.web.de": [18050], "eminhuseynov.com": [5210], "www.inria.fr": [8159], "juggler.services.disqus.com": [4570], "www.empflix.com": [5213], "nie-wieder-vds.de": [11391], "s7.uicdn.net": [16958], "www.semabuzz.com": [14100], "www.365tickets.com": [114], "personalausweisportal.de": [12583], "www.torrentz.in": [16591], "airbornescience.nasa.gov": [10869], "beartracks-new.berkeley.edu": [17240], "lazykush.com": [9185], "cloud.webtype.com": [18095], "www.boulder.swri.edu": [15197], "ox.htw-berlin.de": [7112], "picture.stanford.edu": [15384], "ripe70.ripe.net": [13895], "www.police.uk": [12863], "stubconnect.stubhub.de": [15534], "cart.tmall.com": [19684], "*.4channel.org": [158], "*.frederik-braun.com": [6116], "www.votesmart.org": [13141], "www.biovendor.cz": [1902], "www.trove.com": [16762], "thestamp.umd.edu": [17263], "searscommerceservices.com": [14446], "www.josefsson.org": [8631], "www.upcase.com": [17385], "wealden.gov.uk": [19750], "searchwww.sec.gov": [17023], "www.sailthru.com": [14243], "*.ip-search.ch": [15696], "st.drweb.com": [4783], "www.space2u.com": [15205], "*.medgadget.com": [10141], "sfsite.com": [14110], "wiki.galaxyproject.org": [6408], "oron.com": [12112], "clickserv.sitescout.com": [14871], "townnews365-dot-com.bloxcms.com": [16614], "www.eurodns.com": [5406], "www.officersforbundet.se": [11752], "www.tune.pk": [16829], "secure.asufoundation.org": [1194], "edms.cern.ch": [2575], "checkout.google.com": [6834], "www.hermite.uvt.nl": [16445], "www.boltbus.com": [2193], "www.immi.is": [7759], "cdn3.jitscale.com": [8582], "enigmail.net": [5275], "www.supporterz.jp": [15639], "www.sandsmedia.com": [14213], "static.xxxbunker.com": [18607], "wickedfiber.com": [18280], "secureimages.teach12.com": [16211], "www.frozencpu.com": [6231], "alipass.alipay.com": [817], "www.sans.org": [14072], "www.americanfreedom.com": [943], "www.adsurve.com": [636], "api.pushover.net": [13254], "www.kenshoo.com": [8784], "distraction.gov": [4574], "www.cassinoestrela.com": [2888], "web.retriever-info.com": [13826], "www.canon.no": [2809], "www.canon.nl": [2809], "microchipdirect.com": [10354], "vps.net": [17509], "fbf8.com": [5701], "neengland.greenparty.org.uk": [6925], "portal.equinix.com": [5334], "tempolibero2.ffs.ch": [15693], "aaai.org": [388], "online.hmrc.gov.uk": [7084], "awe.sm": [1460], "nhmrc.gov.au": [11069], "vegas.williamhill.com": [18314], "www-csli.stanford.edu": [15383], "connect.wustl.edu": [17993], "wicnss.nal.usda.gov": [17209], "v.qq.com": [13284], "www.grist.org": [19229], "qwww.aexp-static.com": [678], "*.hush-hush.com": [7630], "elizabethsmartfoundation.org": [5169], "jigsaw.com": [8569], "www.w1.fi": [17887], "cdn.adrtx.net": [591], "archives.jres.org": [8455], "assistant.ricardo.ch": [13866], "ebankingentoutesecurite.ch": [4870], "www.gritdigital.co.uk": [6959], "allseenalliance.org": [837], "pgnet.stanford.edu": [15383], "www.icloud.com": [7698], "www.blogtopsites.com": [2105], "homebase.com": [7476], "www.dan.me.uk": [4131], "en-cs.dict.cc": [4455], "www.ekmpowershop.com": [5132], "rossulbricht.org": [13972], "secure.disqus.com": [4570], "link.azet.sk": [1481], "*.mozo.com.au": [10666], "ftp-master.debian.org": [4275], "banniere.reussissonsensemble.fr": [13835], "kenshoo.com": [8784], "sourcesoftdownload.com": [15183], "www.openclipart.org": [11905], "securecomputing.stanford.edu": [15383], "int.sitestat.com": [14885], "www.gabry.hu": [6403], "www.linux.conf.au": [9404], "pfefferkoerner.de": [12608], "linksyssmartwifi.com": [9383], "static.dl.mail.ru": [9874], "pacebus.com": [12311], "makeagif.com": [9910, 9911], "www.esv.de": [4968], "bizshark.com": [2034], "festeirice.com.br": [5759], "dnschain.net": [4060], "www.zocalopublicsquare.org": [18881], "sprav.yandex.com.tr": [18649], "www.jci.org": [8646], "litecointalk.org": [9464], "ushmm.org": [17444], "edu.github.com": [6680], "www.frameworks-scotland2.scot.nhs.uk": [10913], "myjd.jd.com": [8423], "www.apeul.asso.ulaval.ca": [17229], "elgiganten.dk": [5162], "www.raymii.org": [13584], "laquadrature.net": [9113], "cdn.dealer.com": [4256], "www.digitalmarketplace.civilservice.gov.uk": [19066], "hg.gajim.org": [6406], "monitor.returnpath.net": [13834], "supportion.org": [15640], "aurous.me": [1371], "forums.qrz.com": [13313], "m.ccs.com": [2551], "tenmarks.com": [16107], "ih3.redbubble.net": [13660], "www.nhw.se": [11474], "www.sheffield.gov.uk": [14694], "www.oagcargo.com": [16927], "perryellis.com": [12580], "info.enphase.com": [5283], "wiki.demonsaw.com": [4359], "mangaupdates.com": [9950], "scan.coverity.com": [3734], "www.kryptos.sh": [9020], "adlibris.com": [603], "hertz247.es": [7365], "attic.apache.org": [1086], "login.hubspot.com": [7594], "www.dobrochan.com": [4612], "admin.websupport.sk": [18160], "rlrose.co.uk": [13436], "charles-carreon.com": [18428], "infospyware.com": [8128], "www.glitterbank.com": [6711], "dailydot.com": [4114], "www.bufferapp.com": [2402], "*.jtlebi.fr": [8658], "*.april.org": [1139], "secure.sipgate.co.uk": [14855], "e3.xhamsterpremiumpass.com": [18516], "www.gibill.va.gov": [17019], "drchrono.com": [4747], "wordfence.com": [18433], "forum.pipni.cz": [12257], "nationalpriorities.org": [11085], "comixology.com": [3465], "caseking.biz": [2875], "www.linuxcontainers.org": [9420], "epbfi.com": [4940], "static.syncsearch.jp": [15731], "trakt.tv": [19692], "mozo.com.au": [10665, 10666], "blamestella.com": [2058], "blog.obdev.at": [11695], "palms.com": [12348], "odesk.by": [11724], "fail0verflow.com": [19173], "www.arneswinnen.net": [18964], "buy.wistia.com": [18377], "bedrockformsbluenext.msn.com": [9796], "*.thetestcloud.com": [16145], "jobs.nintendo.de": [11418], "postbus.ch": [12949], "bluepoint.com.ph": [2154], "*.kicknews.com": [8878], "www.beamyourscreen.de": [1730], "ajax.vacationroost.com": [17526], "fr.hertz.ch": [7367], "traffic.libsyn.com": [9321], "libdems.org.uk": [9292], "fr.hertz.ca": [7341], "www.spacetelescope.org": [7596], "zj.taobao.com": [15952], "www.hertz-autovermietung.pl": [7358], "www.waag.org": [17940], "i1.nyt.com": [10997], "hello.myfonts.net": [10759], "www.crocko.com": [3806], "projects.parabola.nu": [12384], "*.anyoption.com": [1080], "idevelop.ro": [7944], "www.digikey.de": [4469], "secure.eventim.*": [5443], "www.fakena.me": [19174], "cgi.timeinc.net": [16460], "www.emporioalberghiero.com": [5219], "*.myhosting.com": [15090], "s2.reutersmedia.net": [16381], "e-activist.com": [4847], "*.bookdepository.co.uk": [16217], "www.see.leeds.ac.uk": [17318], "media-cache-ec1.pinterest.com": [12699], "developer.ubuntu.com": [17102], "go.disqus.com": [4570], "vice-sundry-assets-cdn.vice.com": [17667], "doc.powerdns.com": [12990], "bapco.com": [1490], "ietf.org": [7721], "i1.c.dk": [2498], "src.chromium.org": [3119], "www.websitealive4.com": [18149], "www.techdirt.com": [16026], "exchange.uic.edu": [17231], "mobilism.me": [19404], "*.greenhouse.io": [6931], "www.heliny.com": [7291], "wza.us": [18493], "*.invincea.com": [8324], "assets.dt-static.com": [4660], "www.cjdns.info": [3204], "fedorapeople.org": [5729], "initex.com": [8145], "www.infobox.ru": [8107], "redbullmobile.at": [13669, 13670], "newsgator.com": [11329], "login.ezproxy1.library.sydney.edu.au": [19649], "nitetimetoys.com": [11425], "oregon.gov": [15421], "www.aarondcampbell.com": [394], "hesaplabakalim.com": [7373], "www.anubisnetworks.com": [1073], "de-no.dict.cc": [4455], "apamsa.stanford.edu": [15382], "saph.twistedmatrix.com": [16885], "aboutads.quantcast.com": [13337], "blog.gotomeeting.com": [6787], "www.cantheyseemydick.com": [2791], "www.tuxic.nl": [16857], "homebase.co.uk": [7476], "uwb.edu": [17078], "selfservice.sevenoaks.gov.uk": [14638], "*.atlas.sk": [2959], "forgerock.com": [19189], "*.sinaapp.com": [14843], "*.pazaruvaj.com": [12492], "cdn.tinypass.com": [16489], "assets.omniture.com": [11803], "lutube.leeds.ac.uk": [17318], "delivery.e.switchadhub.com": [15701], "crypteia.moreal.co": [10587], "semor.cz": [14101], "cloud.oracle.com": [12082], "connect.qq.com": [13284], "*.statcounter.com": [15417], "woothemes.com": [18416], "trumpia.com": [16779], "wiki.jenkins-ci.org": [8551], "supportcenter.checkpoint.com": [3048], "o2shop.cz": [16076], "astatic.alicdn.com": [805], "www.a1community.net": [217], "rad.microsoft.com": [10364], "threatwiki.checkpoint.com": [3048], "torusknot.com": [16596], "hbanet.org": [7046], "easydns.net": [5024], "firstfloor.org": [5879], "fsb.org.uk": [5724], "embedded.communities.intel.com": [8209], "www.aneros.com": [1013], "mail.biovendor.cz": [1902], "support.switchconcepts.com": [15701], "amiunique.org": [904], "esbie.ie": [4952], "api.yokl.com": [18689], "www.initlab.org": [8144], "www.polity.co.uk": [12878], "www.q3k.org": [13276], "www.nzherald.co.nz": [11004], "webshared.mcore.com": [10617], "fontspring.com": [5995], "www.srware.net": [15343], "www.spark.ru": [15219], "on.rt.com": [13468], "www.hotelmangaby.com": [7552], "www3.labcorp.com": [9122], "prime.500px.com": [166], "yourls.org": [19795], "tom.vgwort.de": [17483], "winservices.web.cern.ch": [2575], "www.vesselbags.com": [17652], "sfxhosted.exlibrisgroup.com": [5472], "vpn-us-west.symantec.com": [15715], "1btcxe.com": [42], "video.yandex.ua": [18656], "www.dnainfo.com": [19121], "amazingweb.co": [908], "mulliner.org": [19416], "*.change.org": [2992], "dsb.zh.ch": [19648], "www.nlm.nih.gov": [11052], "yworks.com": [19788], "eastriding.connecttosupport.org": [19076], "community.netapp.com": [11183], "www.jbp.io": [8539], "inconshreveable.com": [8047], "recruiters.jobs.telegraph.co.uk": [16082], "yoursole.com": [18731], "*.failuremag.com": [5630], "www.fkie.fraunhofer.de": [6112], "browser.yandex.com.tr": [18649], "ruhr-uni-bochum.de": [14031], "car-pictures.cars.com": [2864], "*.nakanohito.jp": [17433], "www.boingboing.net": [2181], "*.gambling-affiliation.com": [7733], "pilot-eip.stanford.edu": [15383], "superuser.com": [15359], "news.huobi.com": [7624], "continental.com": [3619], "*.waeckerlin.org": [17943], "majordesignsdollfashions.com": [9899], "www.forum.bitcoin.pl": [1967], "www.wodc.nl": [11132], "a14.wal.co": [17954], "trefis.com": [16707], "suppliersignup.kagi.com": [8766], "associatedcontent.com": [1293], "www.ohiolink.edu": [11762], "unilever.com": [17189], "gdata.be": [6293], "www.bip.io": [1910], "m.vodafone.co.nz": [17812], "happyknowledge.com": [7199], "cdnjs.cloudflare.com": [3285], "reco.se": [13646], "glb.adtechus.com": [639], "disc.yandex.com": [18651], "portnerpress.com.au": [12941], "www.onetaste.us": [11845], "support.us.playstation.com": [12795], "swisspost.com": [12949], "crtl.aimatch.com": [742], "*.mnginteractive.com": [9767], "www.ffsg.org": [5566], "c-cex.com": [2493], "aisec.fraunhofer.de": [6112], "cdn.apple-mapkit.com": [1117], "dtc.umn.edu": [17268], "zip.kiva.org": [8926], "stage-api.digitalmedia.hhs.gov": [7062], "design.ubuntu.com": [17102], "www.jeja.pl": [8549], "www.bergdorfgoodman.com": [15851], "www.kyberia.sk": [9050], "mediaroots.org": [19390], "i-cdn.servedbyopenx.com": [14602], "scmp.com": [15187], "abo.lemonde.fr": [9192], "www.epuap.gov.pl": [19139], "e16.xhamsterpremiumpass.com": [18516], "jisc.ac.uk": [8578], "store.fruitninja.com": [6235], "sfconservancy.org": [15099], "lsf.htw-berlin.de": [7112], "www347.americanexpress.com": [935], "members.dukeexechealth.org": [4799], "viewpoints.iu.edu": [8064], "www.monitoring-plugins.org": [10556], "oculusvr.com": [11722], "www.musixmatch.com": [10723], "cp.rentalserver.jp": [13774], "www.nametiles.co": [11027], "rt.debian.org": [4275], "www.webhostingstuff.com": [18067], "amnesty.tw": [973], "videre.ntnu.no": [10964], "ld-4.itunes.apple.com": [1120], "www.ebis.ne.jp": [5040], "semiaccurate.com": [14572], "sharenet.brent.gov.uk": [2304], "littlesis.org": [9476], "twit.tv": [15892], "piwik.shop.heise.de": [7288], "schwab.com": [14370], "portal.smartertrack.com": [14997], "music.usc.edu": [17278], "apple.com": [1120], "www.securelist.com": [14492], "et11.xhcdn.com": [18514], "*.typef.com": [4343], "en-sv.dict.cc": [4455], "getdnsapi.net": [6612], "www.iqt.org": [8025], "www.vimention.mobi": [17716], "account.qubitproducts.com": [13345], "travelrepublic.com": [16695], "webtatic.com": [18162], "online.mbank.pl": [9722], "www.funkyandroid.com": [6267], "*.getmango.com": [6597], "personalitypage.com": [12584], "thechinastory.org": [16257], "maps.yandex.by": [18648], "www.chartmogul.com": [3016], "givetolocal.stanford.edu": [15383], "ir.demandmedia.com": [4343], "order.bytemark.co.uk": [2489], "baremetrics.io": [1667], "js.chefkoch.de": [3058], "www.nullrefer.com": [11573], "gemius.com": [6516], "irc.tiki.org": [16444], "plblog.kaspersky.com": [8806], "jboss.com": [8416], "www.vidyard.com": [17705], "docs.redhat.com": [13675], "cardiffmail.cf.ac.uk": [2835], "civilservicelearning.civilservice.gov.uk": [19066], "usa.anon-ib.co": [1034], "payments.discourse.org": [4545], "www.skype.com": [14938], "drillisch.de": [4760], "nobitcoinlicense.org": [11442], "static0.startnext.com": [15412], "quadpoint.org": [13321], "www.hustlermagazine.com": [7633], "cipr.uwm.edu": [17294], "meow.bnw.im": [19010], "www.neodrive.co": [11149], "egms.cancerresearchuk.org": [19035], "agol.dk": [731], "law.ox.ac.uk": [17271], "www.ruhr-uni-bochum.de": [14030, 14031], "*.marthastewart.com": [10032], "*.forums.grsecurity.net": [6383], "bishopinteractive.com": [1917], "www.srb2.org": [14165], "webmail.onebit.cz": [11642], "www.m.maps.yandex.by": [18648], "dev-www3": [305], "www.kir.hu": [11777], "somevid.com": [15131], "stealthy.io": [15449], "online.businesslink.gov.uk": [2460], "*.jmldirect.com": [8443], "productadvisor.symantec.com": [15715], "lab.geektimes.ru": [6507], "plutof.ut.ee": [17069], "www.freedompop.com": [6169], "ncsoft.com": [10891], "www.p3pwiz.com": [11176], "partnernet.avira.com": [1449], "dev.liveperson.net": [9493], "secureorders.digiweb.ie": [4513], "app.keeptempo.com": [8838], "mtrx.go.sonobi.com": [15139], "hpcc.usc.edu": [17278], "www.istella.it": [8381], "algorithm.contest.yandex.com": [18651], "helpdesk.cloudlinux.com": [3290], "www.budgetinsurance.com": [2392], "xchatdata.net": [18506], "vsac.nlm.nih.gov": [11052], "www.brulinesfuelsolutions.com": [17663], "lists.webkit.org": [18125], "www.money.pl": [10547], "simlystore.com": [14813], "shared.od.org": [11615], "thirddoormedia.com": [16366], "victi.ms": [17669], "mtekk.us": [10681], "jstor.org": [8460], "www.nevis.columbia.edu": [3448], "assets.amung.us": [18267], "news-info.wustl.edu": [17993], "www.industrybotnetgroup.org": [8076], "www.gns3.com": [6355], "www.badwarebusters.org": [1612], "imagerights.com": [7980], "atp.alicdn.com": [805], "fbidhs.thecthulhu.com": [16334], "www.dinahosting.com": [4519], "images3.sanalmarket.com.tr": [14275], "xtremepapers.com": [18601], "www.fsawebenroll.ed.gov": [4889], "livehelp.cancer.gov": [2805], "www.backupify.com": [1604], "catalog.nhlbi.nih.gov": [11052], "www.telvue.com": [16067], "nodejs.org": [11454], "selfserve.swale.gov.uk": [19645], "community.freescale.com": [6183], "cvs.web.cern.ch": [2573], "it.metooo.io": [10317], "www.gemini.com": [6515], "dir.jpl.nasa.gov": [10869], "www.imperialviolet.org": [8017], "inaturalist.org": [7773], "bitin.io": [1997], "carasutra.co.uk": [2829], "sous-surveillance.fr": [15185], "*.fuzzing-project.org": [6286], "digitalforensicsmagazine.com": [4487], "m.feedback.yandex.ua": [18656], "srcclr.com": [15337], "regex101.com": [13728], "www.dancesafe.org": [4135], "www.onenews.cz": [11644], "compass2g.illinois.edu": [17258], "marionlibrary.osu.edu": [11760], "www.vc.ru": [17579], "emailpref.acs.org": [929], "*.developerforce.com": [14249], "*.volusion.co.uk": [17837], "gmo-registry.com": [6346], "www.spotplanet.org": [15297], "grassroots.org": [6895], "www.gum.co": [7018], "developer.iconfinder.com": [7921], "undergraduatecouncil.wustl.edu": [17993], "*.volotea.com": [17831], "connexity.net": [3584], "www.mayfirst.org": [10100], "argosemails.co.uk": [1186], "www.deutschebkk.de": [4406], "www.tuningworld.com.au": [16831], "udn.epicgames.com": [5320], "*.bm23.com": [2361], "www.alzforum.org": [899], "maksukaista.fi": [19377], "meraki.com": [10272], "studenthealth.ucsd.edu": [16939], "www.website.webgo.de": [18064], "verkkouutiset.fi": [17630], "bucketexplorer.com": [2386], "yannick.net": [18659], "a.hrc.onl": [7577], "www.calendars.com": [2738], "blinktrade.com": [2078], "www.acs.ncsu.edu": [11492], "www.adjust.com": [597], "www.morphis.com": [10598], "www.hostoople.com": [7539], "www.infinitydev.org": [8094], "*.marvelheroes.com": [10039], "www.coolminiornot.com": [3638], "cdn.shoutlet.com": [19588], "sb.scorecardresearch.com": [14393], "secure.pornhublive.com": [12927], "hcda.usc.edu": [17278], "rc.active24.cz": [18938], "synopsys.com": [15739], "www.solmusica.com": [15105], "www.opencryptoaudit.org": [12004], "www.photonconsulting.com": [12647], "www.obedovat.sk": [11696], "webmail.nyi.net": [10992, 10993], "*.conduit.com": [3564], "picload.org": [12661], "webmail.byte.nl": [2486], "thumbs.redditmedia.com": [13691], "www.netcloude.cz": [11218], "images-jp.amazon.com": [915], "*.httpbin.org": [7591], "luciosgold.ca": [9648], "www.banx.io": [1657], "static04.vg.no": [17484], "www.caniusepython3.com": [2790], "m.legal.yandex.com.tr": [18649], "internetprotectionlab.net": [8284], "dhminor.stanford.edu": [15383], "thinkwithgoogle.com": [16364], "img.askleomedia.com": [1264], "register.cocubes.com": [3335], "neo-direct.com": [10898], "join.kcvids.com": [8715], "spkcn.com": [15279], "*.charitywater.org": [3012], "www.env.leeds.ac.uk": [17318], "www.farmlogs.com": [5662], "cdn.picstat2.com": [785], "bookshop.europa.eu": [5421], "tintup.com": [16477], "franchise.7-eleven.com": [187], "wayf.wayf.dk": [17896], "bugs.swift.org": [15688], "*.wikimedia.de": [18296], "www.imageshack.com": [7981], "cybersicherheits-allianz.de": [852], "www.thecustomizewindows.com": [19675], "overheid.nl": [11132], "www.ssb.no": [14172], "secure.xperiencedays.com": [18584], "huiyuan.alipay.com": [817], "specto.io": [15246], "mcafeemobilesecurity.com": [10115], "techopedia.com": [16047], "www.netlib.re": [11195], "*.canv.as": [2813], "jax-rs-spec.java.net": [8525], "www.eai.org": [5150], "clients.uber.com": [17089], "*.savethechildren.org.uk": [14315], "*.hpcf.upr.edu": [17006], "krasnodar.rt.ru": [13469], "upaymobile.co.uk": [17384], "gruen.net": [6384], "www.ilovefreegle.org": [7892], "www.go8.edu.au": [6768], "www.ludialudom.sk": [9652], "patrickbateman.biz": [12457], "zh-tw.libreoffice.org": [9311], "libertymutual.economist.com": [5060], "*.cbsstore.com": [2530], "piwik.okturtles.com": [11773], "labcorp.com": [9122], "9.vgc.no": [17484], "securix.org": [14535], "cn.cloudflare.com": [3285], "vidyard.com": [17705], "sslshopper.com": [14182], "www.npted.org": [10951], "community.yieldmanager.com": [13881], "news9daily.org": [11325], "giveto.usc.edu": [17278], "totalboox.com": [16600], "www.djoserwandelenfiets.nl": [7452], "schooladmissions.cheshireeast.gov.uk": [3067], "cdn.dianomi.com": [4444], "*.visitorboost.com": [1464], "report.boldchat.com": [2187], "www.tauday.com": [15977], "jhsmh.org": [8854], "www.ud-media.de": [16947], "punchouttest.digikey.de": [4469], "www.stickhet.com": [15473], "www.opintoluotsi.fi": [12056], "www.ncbar.org": [10890], "id.avast.com": [1444], "*.virginaustralia.com": [17735], "hostpointpartner.ch": [7542], "pronosticuri-tenis.com": [7732], "knowledgecentral.federalreserve.org": [5717], "ftp.dell.com": [4335], "freenode.org": [19196], "magazinesdirect.com": [9846], "www.sss.gov": [17024], "www.sgi.com": [14111], "*.asahi.com": [1241], "cdn.securelist.ru": [14504], "www.makershed.com": [9913], "youtube.com.bh": [18709], "*.huawei.com": [7592], "ws-na.amazon-adsystem.com": [909], "hipointinc.com": [7389], "www.egopay.com": [5116], "*.myshannonconnection.org": [14659], "logs-01.loggly.com": [9554], "econz.unizar.es": [17356], "remedy.stanford.edu": [15383], "uie.com": [16955], "api.bt.com": [1551], "www.domaintools.com": [4660], "sec.video.qq.com": [13285], "dbrgn.ch": [4238], "gamefly2.gameflycdn.com": [6420], "www.tubbergen.nl": [11132], "griffith.edu.au": [6955], "youtube.pt": [18709], "aftership.com": [713], "booklibrarycomputer.derby.gov.uk": [4380], "accesslabs.org": [446], "*.jobware.de": [8603], "www.smoothieblend.com": [15011], "beta.openbadges.org": [12001], "company.icq.com": [7690], "www.hazro.com": [19239], "xadmin.exchange.1and1.com": [51], "www.how-old.net": [7567], "wonderwall.msn.com": [9794], "federalsoup.com": [5719], "www.gp2x.de": [6369], "services.hon.ch": [7088], "uzh.digitale-diathek.net": [4504], "www.imeem.com": [7987], "clickon.com.ar": [3249], "*.getsatisfaction.com": [6618], "community.mville.edu": [9955], "search1.taobao.com": [15952], "*.filmtrackonline.com": [5806], "apel.osu.edu": [11760], "pepephone.com": [19776], "www.bridgeways.com": [2315], "www.sittard-geleen.nl": [11132], "www.piratelinux.org": [12711], "authors.iop.org": [8195], "vidup.me": [17704], "ngvpn20.nvidia.com": [10985], "www.peteraba.com": [12591], "b.yandex.kz": [18652], "chemistryjobs.acs.org": [940], "policia.es": [12865], "cfosat.cnes.fr": [2634], "www.ukashcardsatis.com": [17123], "www.hyperboria.net": [7646], "planet-source-code.com": [12757], "osu.edu": [11760], "audible.de": [1349], "www.feedarea.de": [12843], "i2coalition.com": [7657], "codexns.io": [3383], "www.dokuwiki.org": [4638], "*.ctpsnet.com": [3799], "www.casper.com": [2885], "blog.linode.com": [9387], "www.thestorefront.com": [16314], "online.drweb.com": [4783], "player.vzaar.com": [17883], "www.ccc-mannheim.de": [2535], "nexcess.net": [11356], "www.novartisart.com": [11529], "maps.google.com.*": [6841], "hotmail.co.uk": [7558], "www.openbookpublishers.com": [12002], "bcp.crwdcntrl.net": [9613], "de-ro.dict.cc": [4455], "social.webtrends.com": [18171], "www.winpcap.org": [18327], "git.wj32.org": [18390], "savannah.cern.ch": [2575], "jimshaver.net": [8570], "a1.ec-images.myspacecdn.com": [10848], "stirling.gov.uk": [15475], "visit.berkeley.edu": [17240], "sparkmed.stanford.edu": [15383], "lankylife.com": [9150], "shop.blazingthyme.com": [11365], "www.bundesrat.de": [2433], "fireeye.com": [5852], "www.sharethenetwork.com": [14670], "*.itv.com": [7853], "www.ibario.com": [7678], "www.aka.ms": [296], "www.cert.fi": [2581], "www.*.soton.ac.uk": [17276], "www.omniti.com": [11794], "*.service.gov.uk": [14621], "datavantage.com": [4189], "brighttalk.com": [2323], "npddecisionkey.com": [4286], "www.syntevo.com": [15741], "ravensoft.com": [13579], "www.defora.org": [4313], "www.slu.se": [14135], "sso-prod2.cisco.com": [3162], "*.megworld.co.uk": [10220], "apt.mopidy.com": [10583], "service.snafu.de": [15023], "*.visiblemeasures.com": [17770], "thesatanictemple.org": [16308], "et06.xhcdn.com": [18514], "smos.cnes.fr": [2634], "immunicity.org": [8006], "use.typekit.com": [16913], "dropbox.com": [4768], "download.wpsoftware.net": [17925], "cdn1.onlinelaw.wustl.edu": [17993], "cdn.mycommerce.com": [10753], "www.darktable.org": [4154], "dc.mit.edu": [9749], "fr.godaddy.com": [6773], "dearfcc.org": [4264], "v1.std3.ru": [15445], "*.mixi.jp": [10467], "www.ivents.ya.ru": [18626], "sa.segpay.com": [14556], "app.tutanota.de": [16851], "*.thinglink.com": [16356], "www.adamcaudill.com": [553], "alpha.linuxfr.org": [9410], "www.braintree.gov.uk": [2273], "*.mbsportsweb.com": [9721], "www.securix.org": [14535], "api.eat.ch": [4867], "erecruitment.wto.org": [17934], "manage.name.com": [11015], "developers.yubico.com": [18745], "vfemail.net": [17482], "www.mollom.com": [10537], "*.dassaultfalcon.com": [4166], "emaileri.fi": [5192], "www.thainetizen.org": [16167], "*.envirostyles.ca": [5308], "demo-merchant.xsolla.com": [18593], "account.oneplus.net": [11841], "graphics.cams.com": [2787], "l3.51fanli.net": [171], "oplata.info": [12058], "biz.tigerdirect.com": [16440], "hostbaby.com": [7507], "ultrasurf.us": [17138], "ws.amazon.ca": [910], "exeterfriendly.co.uk": [5491], "apps.splash.riverbed.com": [13907], "www3.cs.sunysb.edu": [15480], "m.fitbit.com": [5887], "themoneyreferral.com": [3505], "sportisimo.ro": [14158], "hits.guardian.co.uk": [7000], "forums.servethehome.com": [14601], "c3.reifman.org": [13745], "www.startlogic.com": [15409], "fogbugz.com": [5979], "www.betterfap.com": [1827], "gaming.adobe.com": [614], "godownloadsongs.com": [15203], "www.rivieratours.com": [13909], "reportingitc.apple.com": [1120], "www.social-engineer.com": [15056], "blackbox.co.uk": [2044], "secure.uac.advertising.com": [662], "rentalpro.zillow.com": [18864], "webstarts.com": [18090], "engine.surfconext.nl": [14198], "cms.iopscience.iop.org": [8194], "www.technical.ly": [16034], "iedgmbh.de": [7712], "*.richmond.edu": [13874], "medialayer.com": [10155], "winpcap.org": [18327], "www.healthonnet.org": [7260], "www.playlists.net": [12807], "bcf.ch": [19333], "explore.data.gov": [4175], "www.woolworthsonline.com.au": [18422], "blog.mageia.org": [9847], "archive.anon-ib.ru": [1038], "static.cocubes.com": [3335], "pt.godaddy.com": [6773], "spell.roundcube.net": [13986], "www.insecure.ws": [8162], "www.hopstudios.com": [7491], "www.countbayesie.com": [3704], "webdl.symantec.com": [15715], "charitynavigator.org": [3009], "imap-01.ct.infn.it": [7766], "reservationcounter.com": [13803], "dong.nikhef.nl": [11402], "webcompat.com": [18112], "heusden.nl": [11132], "ufcfit.com": [16949], "www.trustwave.com": [16799], "machinegunsvegas.com": [9829], "www.tcd.ie": [16736], "status.chartbeat.com": [3018], "support.leahscape.com": [9207], "magazin.io": [9845], "www.fullrate.dk": [6256], "association.cern.ch": [2575], "www.ccedlookup.acs.org": [929], "blog.statcounter.com": [15416], "www.gmx.de": [6350], "amt-softwareportal.axosoft.com": [1477], "canaldigital.dk": [2803], "kagi.com": [8766], "www.varietylatino.com": [17566], "buerger-cert.de": [2396], "www.yosemitenews.info": [18697], "kraken.com": [9004], "linuxjournal.com": [9430], "*.infomaniak.com": [8112], "sites.yammer.com": [18647], "webmailer.hosteurope.de": [7516], "vremya.yandex.kz": [18652], "gifgratis.net": [6639], "www.wunderlist.com": [18483], "www.metro.ya.ru": [18626], "cli-apps.org": [19461, 19462], "social.technet.microsoft.com": [10364], "www.delico.se": [4330], "koldfront.dk": [8962], "codeclimate.com": [3363], "www.bitsighttech.com": [1947], "www.pod.geraspora.de": [6552], "www.feefo.com": [5741], "imperial.ac.uk": [8016], "descss.zamimg.com": [18782], "www.nikosdano.com": [11404], "officepreview.microsoft.com": [10364], "esomar.org": [4963], "*.depositfiles.com": [4374], "snoonet.org": [15040], "justgiving.com": [8691], "walkinhershoes.careinternational.org.uk": [19041], "bigchangeuk.co.uk": [1851], "*.libcal.com": [9288], "bewell.stanford.edu": [15383], "ad.himediadx.com": [7411], "host.cc.ntu.edu.tw": [10971], "greenleft.org.au": [6924], "en-is.dict.cc": [4455], "pensions.staffordshire.gov.uk": [15370], "static.xhamster.com": [18515], "secure.indeed.com": [8051], "osha.gov": [11670], "www.sweetslyrics.com": [15684], "res-x.com": [2972], "www.metroethernetforum.com": [10323], "de-fi.dict.cc": [4455], "internt.slu.se": [14135], "www.vs.ch": [19648], "bryansk.rt.ru": [13469], "kp.biovendor.cz": [1902], "mcclurken.org": [17261], "webropolsurveys.com": [18141], "gmx.org": [6350], "help.yandex.com": [18651], "www.wealthytheatre.org": [6889], "ivn.us": [8057], "*.eventbrite.co.uk": [5441], "partnernoc.cpanel.net": [2653], "properpet.com": [13158], "wikihub.berkeley.edu": [17240], "*.ofb.net": [11620], "oit.williams.edu": [18316], "monabo.lemonde.fr": [9192], "cecpdonline.org": [2948], "webmail.freenet.de": [6180], "technical.bestgrid.org": [1722], "www.jamesthebard.net": [8504], "is.lacie.com": [9117], "piwikphpnet.phpnet.org": [12251], "andrewbrookins.com": [1003], "www.admin.ufl.edu": [17252], "wis.sndcdn.com": [15032], "marketplace.firefox.com": [5859], "calendar.activedatax.com": [498], "telefonica.cz": [16076], "www.techpresident.com": [16014], "www.photobtc.com": [12638], "pci-ids.ucw.cz": [12223], "nr7.us": [11179], "www.schneideroptics.com": [14359], "www.wienmobil-karte.at": [18284], "open-mpi.org": [11907], "www.bankia.es": [19769], "migration.digitale-diathek.net": [4504], "www.joinos.com": [8618], "ppcoin.org": [12282], "www.meduza.io": [10204], "ak.quantcast.com": [13337], "minijob-zentrale.de": [10424], "btcchina.com": [1557], "census-labs.com": [2940], "south-america.hivos.org": [7431], "examp1e.net": [5481], "webmail.anchor.net.au": [18955], "www.invoca.com": [8329], "engage.advent.com": [654], "*.academia.edu": [436], "www.popularmechanics.com": [12921], "www.fme.vutbr.cz": [17522], "www.flixbus.com": [5931], "megaglest.org": [10227, 10228], "widget.quantcast.com": [13337], "www.greyhound.com.mx": [6947], "magazakayit.bilio.com": [1875], "*.hosting.ru.nl": [13510], "www.constructor.maps.yandex.com.tr": [18649], "stanmed.stanford.edu": [15382], "www.nz.anz.com": [315], "*.gpgtools.org": [6371], "compiz.org": [3522], "*.mtb.com": [9690], "mintguide.org": [10433], "images.hostcentric.com": [7509], "secure.www.cfr.org": [3702], "normation.com": [11488], "www.bitquick.in": [1943], "origin-software.intel.com": [8209], "tipmobileint.sbb.ch": [15693], "python.org": [13272], "client-event-reporter.twitch.tv": [16888], "familie.aok.de": [317], "e-food.gr": [4850], "*.bransonzipline.com": [2288], "lpdedicated.com": [569], "norwalkreflector.com": [11507], "www.bedd.tk": [3533], "dyson.ie": [4837], "www.astronautix.com": [5240], "pg.com": [13121], "nnetworks.co.jp": [11434], "*.adultadworld.com": [642], "shopstyle.co.*": [14720], "placesonline.com": [12755], "www.lrp.nih.gov": [11052], "www.i3wm.org": [7660], "accounts.silentcircle.com": [14786], "sphotos-h.ak.fbcdn.net": [5700], "www.hertz.qa": [7360], "canvas.net": [2812], "gpsfleetportal.cabinetoffice.gov.uk": [2701], "cdn.printfriendly.com": [13066], "equalitytrust.org.uk": [5331], "glad.org": [6339], "www.directbox.de": [4529], "*.tusfiles.net": [16849], "www.extremetracking.com": [5528], "onbeing.org": [11809], "messenger.live.com": [9483], "freelanguage.org": [6142], "socialfixer.com": [15064], "h.holder.com.ua": [7448], "assetinsightinc.com": [1282], "www.oisshome.wustl.edu": [17993], "munin.openstreetmap.fr": [12045], "piratenpartei-bayern.de": [12719], "extranet.swisscom.ch": [15698], "w.sharethis.com": [14668], "www.soom.cz": [19610], "e-nls.com": [11398], "media.digikey.com": [4469], "nl.aldi.be": [299], "33across.com": [101], "www.uclh.nhs.uk": [10913], "www.mailerlite.com": [9882], "www.tolaris.com": [16538], "seurinternacional.com": [14635], "bugs.tizen.org": [16506], "haendler.mobile.de": [19403], "www.argonit.cz": [1183], "answers.argos.ie": [1185], "da-dk.facebook.dk": [5623], "imagestash.org": [7985], "gr.support.tomtom.com": [16540], "images.dailystar-uk.co.uk": [4112], "*.lternet.edu": [9103], "icts.kuleuven.be": [8816], "*.wimm.com": [17911], "identity.mageia.org": [9847], "fareham.gov.uk": [5660], "www.youtube.co.th": [18709], "www.pulse.me": [13224], "*.testcloud.de": [16145], "turku.fi": [19706], "dolphin-emu.org": [4644], "developer.qtcloudservices.com": [13316], "infoworld.com": [8130], "next-geebee.ft.com": [5826], "facebook.es": [5623], "*.plantsolution.de": [12776], "es-es.facebook.com": [5620], "lelo.com": [9243], "www.deutschland-spielt.de": [19113], "partner.justeat.it": [19328], "buy.sky.com": [14924], "upi.com": [17005], "blumenthals.com": [2158], "www01.tracer.jp": [10967], "dams.stanford.edu": [15383], "www.bingplaces.com": [1896], "metro.yandex.by": [18648], "jasig.org": [8522], "www.fnal.gov": [5754], "sallie.stanford.edu": [15383], "mayfirst.org": [10100], "www.ctt.pt": [3908], "www.adxpansion.com": [545], "taringa.net": [15964], "www-950.ibm.com": [7675], "www.careercenter.wustl.edu": [17993], "www.opentpx.org": [11980], "tutanota.de": [16851], "daac.ornl.gov": [11693], "tsw.createspace.com": [3772], "www.acdd.tk": [3533], "echo24.cz": [19146], "www.asana.com": [1242], "auth.bournemouth.gov.uk": [2251], "keelog.com": [8835], "iamthecavalry.org": [7887], "my.1and1.com": [51], "forum.opnsense.org": [11656], "pan.taobao.com": [15952], "*.campaignercrm.com": [2780], "www.pixel.fsg.ulaval.ca": [17229], "www.ifightsurveillance.net": [7888], "tinfoilsecurity.com": [16472], "members.trustedcomputinggroup.org": [16791], "metrics.reedbusiness.net": [13705], "pirati.cz": [12722], "webspace4all.eu": [18154], "www.candhlures.com": [2806], "mail.lavaboom.com": [9173], "www.ecpic.gov": [4880], "chelmsfordgov.firmstep.com": [19183], "www.toysrus.com": [16621], "forums.checkpoint.com": [3047], "die.net": [4458], "www.linguee.de": [19366], "direkt.postbank.de": [12959], "totem.web.cern.ch": [2575], "www.kaneva.com": [8780], "pogoplug.com": [12851], "assets.unbounce.com": [17153], "cesar.resinfo.org": [13807], "publications.cabinetoffice.gov.uk": [2701], "www.fotoblur.com": [6075], "www.ahmia.fi": [738], "www.peterboroughandstamford.nhs.uk": [10913], "downloads8.mamp.info": [19379], "*.spreadshirt.es": [15300], "heroesofnewerth.com": [14062], "www.epocs.leeds.ac.uk": [17318], "i.alipayobjects.com": [817], "care-net.org": [2837], "www.vandyke.com": [17549], "outbrain.com": [12150], "cacti.atech.io": [366], "demostore.x-cart.com": [18494], "*.alzheimers.org.uk": [901], "www.wpad.leeds.ac.uk": [17318], "ihc.ru": [7736], "mobiusconsortium.org": [9769], "code.visualstudio.com": [17785], "www.ecowatch.com": [5064], "telegeography.com": [16071], "us-st.xhamster.com": [18515], "*.foxydeal.de": [6088], "orezpraw.com": [12101], "checkout.virginmedia.com": [17737], "popatomic.org": [12904], "www.cbo.gov": [17017], "*.mytalkdesk.com": [19420], "www.accessibility.nl": [452], "developer.alfresco.com": [802], "ngrok.com": [11375], "r8.mzstatic.com": [1119], "davissystem.net": [4232], "remotelyanywhere.com": [13762], "www.kproxy.com": [8746], "visitor.r20.constantcontact.com": [3592], "forum.tdc.dk": [15796], "manager.londit.com": [9571], "de-de.facebook.com": [5620], "*.nextag.it": [11363], "secure.hosting.vt.edu": [17740], "www.oh-tech.org": [11623], "www.saltstack.com": [14255], "*.sgizmo.com": [15658], "blog.wmtransfer.com": [18076], "shopping.ba.com": [1488], "www.biblegateway.com": [1842], "www.reasons.to": [13637], "myposteimpresa.poste.it": [12965], "*.pcbooster.com": [12233], "przetargi.money.pl": [10546], "www.gfi-italia.com": [6319], "www.sole.dk": [15115], "pixid.ideeinc.com": [16468], "www.ielts.org": [7719], "www.offlinemode.org": [11755], "beautyblog.thebodyshop.co.uk": [16250], "tour.ua.edu": [16924], "zom.im": [18889], "bigdinosaur.org": [1861], "cloudsso.cisco.com": [3162], "schoolsonlineservices.leeds.gov.uk": [19353], "www.cognitionsecure.com": [3387], "status.hostdime.com": [7510], "code.osu.edu": [11760], "donate.lls.org": [9089], "*.svn.sourceforge.net": [15174], "remote.nhclu.org": [11306], "fusionio.com": [6276], "learn.agilebits.com": [727], "my.illumina.com": [7968], "siteor.pl": [14883], "albumarsiv.com": [781], "packages.deepin.org": [4302], "conference.apnic.net": [1256], "press.virtkick.io": [17744], "communigate.com": [3497], "meta.serverfault.com": [15359], "www.kde-help.org": [19461], "allynisconnect1.gemalto.com": [6514], "consult.education.gov.uk": [19149], "www.abebooks.com": [408], "nwswimshop.com": [11503], "ovh.biz": [11685], "img.rt.com": [13468], "maemo-apps.org": [19461, 19462], "vineyardvines.com": [17723], "community.nasdaq.com": [10871], "www.thegrandtheatre.com": [16283], "www.datart.sk": [4008], "instructables.com": [8198], "kontalk.net": [8980], "ns.ibnlive.in.com": [7764], "www.norton.com": [11505], "www.matomymedia.com": [10075], "es.account.t-mobile.com": [15772], "www.spamcop.net": [19613], "www.nebelwelt.net": [11125], "stopcyberspying.com": [15483], "www.bchydro.com": [1509], "ukwebsolutionsdirect.co.uk": [16968], "blogs.monash.edu": [10541], "democracy.brent.gov.uk": [2304], "structures.ucsd.edu": [16939], "www.fulcrumbiometrics.com": [6247], "imakethingswork.com": [7890], "dare.kotex.com": [8994], "login.gradwell.com": [6883], "a.s.thebrighttag.com": [2325], "livenation.com.au": [9481], "webmanager.cronius.net": [3808], "mediamatters.org": [10158], "inventivedesigners.com": [8314], "tue.nl": [15874], "*.iomtt.com": [8336], "0xbadc0de.be": [7], "dhl.de": [4034], "ehmlive.n-somerset.gov.uk": [10857], "pentacon.de": [14358], "*.blogspot.co.uk": [2107], "www.angel.co": [1014], "openmamba.org": [19465], "www.bookshare.org": [2205], "www.ripe.net": [13895], "www.providesupport.jp": [13173], "roundtable.stanford.edu": [15383], "www.tweegy.nl": [16867], "linkshare.com": [13534], "static.avaaz.org": [1437], "static-wap-stg.norton.com": [11505], "www.monster-wow.com": [10566], "www.cnes.fr": [2634], "p9.raasnet.com": [13655], "cdn.sstatic.net": [15359], "www.kelcomaine.com": [8843], "col.stb00.s-msn.com": [14059], "pay.paddle.com": [12324], "reliability.seagate.com": [14437], "wlfriends.org": [6217], "nartac.com": [11038], "salk.edu": [14251], "www.vufind.org": [17868], "www.citizenweb.io": [3173], "ovh.nserver.ru": [11548], "aetherflyff.com": [694], "api.fastly.com": [5687], "perens.com": [2377], "www.ocharles.org.uk": [11614], "paste.informatick.net": [8122], "m.uw.edu": [17077], "mailxchange.1and1.com": [51], "wvu.edu": [18213], "torrentz.com": [16591], "www.runbox.com": [14037], "cdn.stackcommerce.com": [15361], "static.kameleoon.com": [8776], "scholarships.stanford.edu": [15383], "static.tumblr.com": [16826], "*.epson.com": [5330], "*.eventim.co.il": [5443], "www.niteflirt.com": [11424], "*.launchpadlibrarian.net": [9169], "neobookings.com": [11153], "static5.wonderwall.com": [18413], "intohigher.com": [8298], "www.imageforensic.org": [7982], "www.torrentsmirror.com": [16588], "ess.stanford.edu": [15383], "cdn3.eurodns.com": [5406], "www.lsc-group.phys.uwm.edu": [17294], "*.buzzfeed.com": [2473], "semaphoreci.com": [14571], "vanderbilthealth.com": [17556], "www.internetconsultatie.nl": [11132], "lincolnshire.moderngov.co.uk": [19405], "images.selfridges.com": [14568], "anderson-stage.leadershipacademy.nhs.uk": [10913], "noransom.kaspersky.com": [8806], "ra.vutbr.cz": [17522], "*.nadir.org": [11008], "cyngn.com": [3980], "landalgreenparks.com": [18490], "www.soroush.secproject.com": [14466], "www.clickandpledge.com": [3255], "55chan.org": [173], "www.cchcatalog.com": [2548], "*.partito-pirata.ch": [12284], "umiacs.umd.edu": [17263], "2buntu.com": [90], "images.nvidia.com": [10985], "clicktools.com": [3264], "xpiconly.com": [18534], "zuv.cms.rrze.uni-erlangen.de": [17311], "lists.pld-linux.org": [12267], "www.itch.io": [8389], "tradeinchecker.com": [16641], "www.mightyupload.com": [10380], "*.www.academiapress.be": [434], "io9.com": [8335], "51fanli.net": [171], "www.pkcsecurity.com": [12264], "pma-old.wedos.net": [17901], "daymet.ornl.gov": [11693], "photos.prnewswire.com": [12286], "www.scotborders.gov.uk": [14394], "www.notwithoutawarrant.com": [11518], "quidco.com": [13362], "www.anchor.com.au": [993], "www.sh.ch": [19648], "gys.1688.com": [36], "www.netcologne.de": [11188], "m.stubhub.co.uk": [15534], "www.hackhands.com": [7132], "irc.jquery.org": [8450], "www.imgjam.com": [7994], "www.ask.fm": [1261], "www.windowssecrets.com": [18347], "track.socializer.cc": [15071], "ws.amazon.fr": [910], "todo.x2go.org": [18499], "www.rottenecards.com": [13982], "seattleprivacy.org": [14453], "source.winehq.org": [18352], "cts.vresp.com": [17641], "eastmidlands.greenparty.org.uk": [6925], "osvdb.org": [11677], "www.slts.osu.edu": [11760], "www.isecpartners.com": [7825], "help.securingthehuman.org": [14517], "*.ovpn.to": [11689], "cdn6.openculture.com": [12006], "moonfruit.com": [10579], "*.radioleaks.se": [13519], "*.umw.edu": [17262], "serviceshop.asus.com": [357], "southend-on-the-move.org.uk": [19612], "vpol.stanford.edu": [15383], "i.canvasugc.com": [2813], "*.epic.com": [5319], "www.planningconsult.rbkc.gov.uk": [19538], "domanhanteraren.iis.se": [7742], "solar1.net": [15108], "www.accesslabs.net": [446], "*.insinuator.net": [8173], "api.challenge.gov": [2985], "assets.highways.gov.uk": [19250], "www.kinkontap.com": [8908], "jupiter.ysu.edu": [18742], "www.packagelab.com": [12314], "chip-app.de": [2595], "worldmarkbywyndham.com": [18490], "images.apple.com": [1120], "postdocs.ucsf.edu": [17302], "cdn.hackaday.io": [7138], "webhostingpad.com": [18104], "images.highspeedbackbone.net": [14211], "om.dowjoneson.com": [11321], "content.marketdojo.com": [10010], "site.biz.id": [7504], "devever.net": [4421], "rimg03.rl0.ru": [13914], "p.gr-assets.com": [6877], "*.netflix.com": [11228], "www.nb.admin.ch": [19648], "careers.dkit.ie": [4040], "carters.com": [2868], "www.raynersoftware.com": [13586], "privacy-cd.org": [13084], "*.ibsrv.net": [8280], "squarepenguin.co.uk": [15330], "schetu.net": [14350], "www.tus.ac.jp": [16536], "kdenlive.org": [8831], "www.dragonbyte-tech.com": [4737], "*.kunk.org": [10950], "online.firsttechfed.com": [5871], "wuro.wustl.edu": [17993], "wiki.python.org": [13272], "www.dg.ens.fr": [4930], "www.manageengine.com": [9940], "liquidmatrix.org": [9445], "www.ivacy.com": [8398], "gamigo.com": [6445], "www.ip-check.info": [7801], "together.wustl.edu": [17993], "usweeklysubscriptions.com": [17418], "bayfiles.net": [1698], "uptodate.apple.com": [1120], "images.linuxcontainers.org": [9420], "www.genivi.org": [6316], "www.rade.tk": [3533], "support.skysql.com": [14926], "gettag.mobi": [6606], "tech.lds.org": [16219], "blog.songkick.com": [19609], "corts.hq.nasa.gov": [10869], "www.encosia.com": [5233], "www.snort.org": [15041], "stockcharts.com": [15477], "eresearch.osu.edu": [11760], "sccjobs.sheffield.gov.uk": [14694], "www.newgrounds.com": [11317], "2.sendvid.com": [14584], "adserver.cxad.cxense.com": [2694], "socialprogressimperative.org": [15065], "*.ero-advertising.com": [5347], "movietickets.com": [10639], "shop.forgefields.com": [6035], "www.erlang.org": [5345], "go.microsoft.com": [10364], "support.mindtouch.com": [10409], "*.starnet.com": [15393], "kyleisom.net": [9053], "corecommerce.com": [3662], "www.aclum.org": [258], "p4.raasnet.com": [13655], "www.simonswain.com": [14816], "gw3.alicdn.com": [805], "www.housting.de": [11177], "shop.bvg.de": [1582], "m.chromeexperiments.com": [3117], "www.computerbasedmath.org": [3539], "www.dragonflydigest.com": [4739], "supplyframe.com": [15638], "www.troopers.de": [16758], "www.ultradns.*": [17132], "*.metro.co.uk": [10321], "subscribe.hearstmags.com": [7273], "usask.ca": [17338], "www.rushmypassport.com": [14041], "www.infosecisland.com": [8127], "svn.nmap.org": [11433], "tangiblesecurity.com": [15945], "timeanddate.com": [16461], "siosm.fr": [14854], "www.sigmabeauty.com": [14778], "widgets.outbrain.com": [12150], "www.srcclr.com": [15337], "m.outlook.com": [12153], "secure.mythic-beasts.com": [10850], "smartftp.com": [14988], "blogher.com": [2102], "stats.scooter-attack.com": [14390], "hfs.washington.edu": [17291], "newsyslog.org": [6897], "analytics.stanford.edu": [15383], "*.dellin.ru": [19109], "wrc.osu.edu": [11760], "www.engagingnetworks.net": [5262], "*.factoryselecthomes.com": [5627], "n-2.org": [10853], "ecomm2.dell.com": [4335], "*.projectplace.com": [13144], "*.getpebble.com": [12508], "www.theintercept.com": [16294], "www.globalsign.co.in": [6718], "www.atomz.com": [1329], "www.mi6.ua": [9741], "comic-con.net": [3466], "www.jako-o.eu": [8496], "medfacilities.stanford.edu": [15382], "www.efiliale.de": [19112], "wk3.org": [18391], "moodle.dudley.gov.uk": [4794], "www.waste.org": [17895], "hangul.istockphoto.com": [19309], "clientportal.fox-it.com": [6084], "strava.fitbit.com": [5887], "www.fixingtao.com": [5899], "www.kenexapods.com": [8847], "nasa.gov": [10869], "comscoredatamine.com": [3454], "login.evergage.com": [5447], "pangea.stanford.edu": [15383], "www.tv.gsn.com": [6416], "www.elotouchexpress.com": [5176], "www.carnegiescience.edu": [2857], "keenot.es": [8837], "*.parti-pirate.ch": [12284], "www.xdomain.ne.jp": [18553], "threatmetrix.com": [16392, 16393], "enfi.dict.cc": [4455], "depl.dict.cc": [4455], "www.linguistlist.org": [9081], "zeus.krystal.co.uk": [9024], "forum.ovh.us": [11686], "cdc-tree.stanford.edu": [15382], "www.adoyacademy.se": [622], "myscore180.com": [10782], "www.stylehatch.co": [15551], "bitkonan.com": [1999], "flights.webjet.co.nz": [18124], "*.amiando.com": [955], "www.looktothestars.org": [9596], "e-estonia.com": [4838], "plex.tv": [12814], "digiday.com": [4476], "dashboard.temando.com": [16104], "wtreset.wellcome.ac.uk": [19752], "services.mobile.de": [19403], "*.monsoon.co.uk": [10563], "schooladmissions.northyorks.gov.uk": [19440], "ultratools.com": [17133], "dynamitedata.com": [4831], "myaccgyap.psc.agilisys.co.uk": [18947], "ai.yimg.jp": [18685], "dna-bucket-dna.cf.rawcdn.com": [4494], "www.performer.england.nhs.uk": [10913], "mrp.illinois.edu": [17258], "soccerpunt.com": [7732], "software.brown.edu": [2367], "www.youtube.no": [18709], "www.warframe.com": [17977], "www.politicopro.com": [12874], "trac.webkit.org": [18125], "vehbidz.com": [17590], "sc5.rgstatic.net": [13422], "partners.x-cart.com": [18494], "www.autoblog.com": [1421], "www.ubuntu-mate.boutique": [17097], "idp.brunel.ac.uk": [19021], "www.mtmweb.biz": [10188], "www.eat.ch": [4867], "www.active-srv02.de": [496], "cometdocs.com": [3464], "yoursav.com": [18737], "iwowcase.com": [7873], "shelf.frictionalgames.com": [6210], "www5.plymouth.ac.uk": [12833], "ads.afraccess.com": [5634], "hackpad.com": [7158], "devcup.evernote.com": [5449], "docs.exchange.coinbase.com": [3402], "www.eshopbrokers.co.uk": [19131], "www.whyblockme.info": [3533], "get.popcorntime.io": [12915], "securemail.southend.gov.uk": [15193], "m6d.com": [10149], "email.ipswich.gov.uk": [8351], "39dollarglasses.com": [121], "passport-ckicheck.yandex.com.tr": [18649], "support.xamarin.com": [18540], "cepa.stanford.edu": [15383], "images.yandex.ua": [18656], "ruanko.taobao.com": [15952], "web.tameside.gov.uk": [19659], "developer.staging.yammer.com": [18647], "loc1.hitsprocessor.com": [7427], "www.careers.cam.ac.uk": [17243], "m.cash.ch": [19043], "*.store1.mentor.com": [10264], "indexcat.nlm.nih.gov": [11052], "www.qgazette.com": [13347], "gionn.net": [6664], "www.yourworld.anz.com": [315], "www.deaconess.com": [4248], "eleave.osu.edu": [11760], "www.credoaction.com": [3793], "cyberstewards.org": [3965], "medienberufe-sde.kursbuero.de": [9044], "webbyawards.com": [18110], "www.vmail.me": [17804], "www.crowdin.net": [3826], "www.thepiratebay-proxylist.org": [16227], "research.nvidia.com": [10985], "ticketportal.sk": [16423], "client.towerdata.com": [16613], "jia.tmall.com": [19684], "fanatics.com": [5649], "www.teachingcenter.wustl.edu": [17993], "bknpt-web5.bknpt.usc.edu": [17278], "owa.ncl.ac.uk": [10884], "*.industrybrains.com": [9984], "filehoot.com": [5791], "pthree.org": [13191], "aweirdimagination.net": [387], "www.fortnite.com": [6057], "videolicious.com": [17696], "acrobatusers.com": [481], "www.sexysitehosting.com": [14647], "www.openweb.or.kr": [12028], "*.wiley.com": [18309], "ja-jp.facebook.jp": [5623], "projectplace.*.dimelo.com": [13144], "sauth.webtrends.com": [18171], "haveibeenpwned.com": [19238], "betnet.fr": [11186], "www.globalhumanrights.org": [6726], "survey.cancerresearchuk.org": [19035], "assets1.redbubble.net": [13660], "www.domainwho.is": [4661], "www.internetvotes.org": [2947], "www.complex-systems.com": [3524], "ffsg.org": [5566], "images.cdn.rackspace.com": [13506], "*.tinypass.com": [16488], "adentifi.com": [583], "www.funoverip.net": [19204], "www.ultimate-guitar.com": [19711], "*.hitbox.com": [7423], "counterwallet.io": [3708], "members.webs.com": [18143, 18144], "postauto.ch": [12949], "suitabletech.com": [15585], "www.net-mobile.com": [11178], "cjs-cdkeys.com": [2620], "at.icecat.biz": [7914], "attic-backup.org": [1338], "*.skroutzstore.gr": [14921], "assets.patriotpost.com": [16305], "www.zdtronic.com": [18758], "poczta.hekko.pl": [7290], "inboxapp.com": [8039], "tracking.verisign.com.tw": [17623], "virtualizationreview.com": [17756], "hostingas.lt": [7535], "www.flexport.com": [5915], "y.qq.com": [13284], "www.nfadmin.net": [10905], "www.thalasseo.com": [16168], "adamboalt.wpengine.netdna-cdn.com": [1535], "status.braintreepayments.com": [2274], "zz.connextra.com": [3585], "people.zoho.com": [18884], "dental.uw.edu": [17077], "www.gustavus.edu": [7026], "riaa.com": [13427], "noncombatant.org": [11468], "send.atechmedia.com": [367], "lms.resus.org.uk": [13820], "www.eon-uk.com": [4860], "we-energies.com": [18016], "i3.answers.microsoft.com": [10364], "webmail.digi.hu": [4470], "familie.rps.aok.de": [317], "abovealloffers.com": [824], "www.mynxt.info": [10771], "uploaded.to": [3952], "gfx6.hotmail.com": [7559], "ebroder.net": [5041], "popsugar.com": [12911], "oaa.osu.edu": [11760], "www.fb18.de": [5555], "www.study.monash": [15542], "ad.zanox.com": [18787], "jobs.carecareers.com.au": [2839], "www.coinaxis.com": [3391], "performancealley.com": [12569], "www.intevation.de": [8297], "ctf.isis.poly.edu": [12888], "www.ttl.ut.ee": [17069], "www.getjaco.com": [6607], "pthumbnails.5min.com": [178], "codeofhonor.com": [3344], "www.winsupersite.com": [18330], "genius-upload-2.itunes.apple.com": [1120], "www.familie.hessen.aok.de": [317], "www.bayfiles.net": [1698], "anomos.info": [1033], "untied.cr.yp.to": [3748], "hashbang.ca": [7225], "www.ede-look.org": [19461], "www.megayoutubeviews.com": [10233], "imququ.com": [7974], "boarnsterhim.nl": [11132], "secure.eloqua.com": [5179], "www.rit.edu": [13434], "pro.lookup.whitepages.com": [18257], "csr.register.com": [13732], "bob131.so": [2170], "s.uicdn.com": [16957], "readit.youmail.com": [18706], "www.reichelt.de": [13744], "www.j.mp": [8409], "tolvutaekni.is": [16539], "conference2008.kde.org": [8718], "luez.tk": [3533], "www.uglymugs.ie": [17117], "www.diogomonica.com": [4521], "decryptedmatrix.com": [4290], "ethics.uillinois.edu": [16960], "lennier.info": [9249], "newstatesman.com": [11310], "theaj.co.uk": [1162], "hao.360.cn": [106], "*.pokemon.com": [12855], "www.buzzvpn.com": [2475], "dco-cdn.w55c.net": [17891], "pandaction.wwf.ch": [19768], "www.goodsearch.com": [6830], "www.flippa.com": [5927], "loader.engage.gsfn.us": [6991], "demo.op5.com": [11902], "tools.percona.com": [12557], "www.lebsanft.org": [19352], "*.roe.ch": [13944], "www.service.futurequest.net": [6283], "data.tumblr.com": [16826], "twittercommunity.com": [16893], "www.avm.de": [1453], "atomicinsights.com": [1326], "aravo.kompany.com": [8969], "*.kldp.net": [8734], "www.sp.parallels.com": [12392], "samharris.org": [14259], "avatar-ssl.xboxlive.com": [18551], "home.mcafee.com": [10114], "www.cusp.com": [15851], "backstage.soundcloud.com": [15161], "smetrics.aftonbladet.se": [716], "mail01.ndc.nasa.gov": [10869], "snabb.co": [15018], "en-pt.dict.cc": [4455], "payments.ebay.com.*": [4874], "this-download-would-be-faster-with-a-premium-account-at-good.net": [6826], "www.hoorn.nl": [11132], "www.howsmyssl.com": [7573], "www.forsakringskassan.se": [6050], "support.solarflare.com": [15112], "elearn.tenable.com": [16108, 16109], "*.net.edgesuite.net": [760], "havering.gov.uk": [7244], "www.enfuseconference.com": [7006], "dfrdb.gov.au": [4307], "www.deimos.fr": [4318], "westasia.hivos.org": [7431], "*.image-qoo10.cn": [13307], "mynortonaccount.com": [11505], "hrsmart.com": [7096], "blog.hitbtc.com": [7420], "*.firstclassmagazine.se": [5875], "litecoinlocal.net": [9465], "*.schwabcdn.com": [14371], "www.teardowniq.com": [16007], "selfservice.blackpool.gov.uk": [2056], "d.254a.com": [80], "www.safetythermometer.nhs.uk": [10913], "bulletin-int.wustl.edu": [17993], "onlinehelp.microsoft.com": [10362], "odir.org": [12007], "www.dersverilir.net": [4383], "sphotos-b.ak.fbcdn.net": [5700], "www.squarefree.com": [8556, 15331], "flaschenpost.piratenpartei.de": [12721], "bugreport.filemobile.com": [5799], "schoorsteen.geenstijl.nl": [19211], "trakehner-nord-west.de": [16658], "registration.ymcastlouis.org": [18618], "hamppu.net": [7183], "irrlab.com": [18428], "analysis.avira.com": [1449], "myaccount.gcion.com": [6308], "docsonline.wto.org": [17934], "subdownloader.net": [15554], "www.vodafone.co.uk": [17813], "imagesb.btol.com": [1623], "pass.alitrip.com": [818], "ntlds.variomedia.de": [17567], "dashboard.voice.aol.com": [321], "www.tip.net.au": [15820], "connect.gov": [3579], "pytamy.pl": [19528], "www.ontology.co": [11891], "meta.discourse.org": [4545], "counter.goingup.com": [6810], "hivoice-ot.hivos.org": [7431], "www.hak5.org": [7167, 7168], "www.getdigital.eu": [6571], "boxee.tv": [2258], "recalll.co": [13642], "beefree.io": [1746], "blog.replicant.us": [13779], "remote.derby.gov.uk": [4380], "static.nytimes.com": [11000], "as.upc.ie": [17001], "resrc.it": [13599], "prodfederate.pfizer.com": [12610], "*.onion.to": [11860], "pws.sc.egov.usda.gov": [17209], "*.adelaide.edu.au": [581], "docketalarm.com": [4618], "www.mni.th-mittelhessen.de": [15809], "www.whispergifts.com": [18245], "*.stunnish.com": [15546], "cisco-images.cisco.com": [3162], "uat.eceemarketplace.equinix.com": [5334], "www.machcomedyfest.co.uk": [9828], "www.domena.cz": [4669], "www.livebusinesschat.com": [9500], "www.sieciovo.pl": [14768], "authdb.ohiolink.edu": [11762], "*.se-mc.com": [15145], "numbersusa.com": [11578], "www.ece.ucsd.edu": [16939], "internet.org.nz": [8277], "trademoremargin.com": [16637], "mps.theplatform.com": [16230], "oebb-co2-ticker.at": [19455], "www.siteimprove.com": [14880], "*.upstart.com": [17400], "j.mozest.com": [10649], "saisapp67.stanford.edu": [15382], "www.webpay.cl": [18139], "www.cimbpreferred.com": [2606], "uweb3.host.ie": [4512], "openblox.org": [11924], "discuss.dwolla.com": [4816], "www.anybots.com": [1078], "fr-fr.facebook.com": [5620], "dt.scanscout.com": [14339], "www.nullday.de": [11574], "m.rescue.org": [19546], "www.qxl.dk": [13295], "workable.com": [18439], "rhapsody.com": [13858], "www.site.yandex.com.tr": [18649], "poste.io": [12964], "www.cartersoshkosh.ca": [2869], "fastmail.com": [5688], "archive.stsci.edu": [15212], "support.simplyhired.com": [14830], "eulerian.sarenza.com": [14300], "precisionpros.com": [13019], "shop.computerbild.de": [19075], "blogs.vinuthomas.com": [17726], "codex.bbpress.org": [1711], "weatherspark.com": [18035], "sculpteo.com": [14430], "batstrading.com": [1492], "es.foursquare.com": [6082], "marketing.dell.com": [4335], "*.snapnames.com": [8865], "mediaspanonline.com": [10163], "www.acuityplatform.com": [505], "thiswebhost.com": [16372], "static.ctctcdn.com": [3903], "productforums.google.com": [6834], "www.sharefilesupport.com": [14665], "validator-suite.w3.org": [17888], "southkesteven.firmstep.com": [19183], "lccn.loc.gov": [9528], "forum.opengarden.com": [12011], "klimaat.groenlinks.nl": [6962], "*.imgflip.com": [7997], "landofbitcoin.com": [9139], "my.a2hosting.com": [222], "dynamitedeals.com": [4830], "pricezombie.com": [13054], "flash.desy.de": [4399], "www.classymotherfucker.com": [3219], "*.humanbrainproject.eu": [7608], "suivi.openstreetmap.fr": [12045], "static.zend.com": [18821], "beta.mcafee.com": [10114], "*.americancensorship.org": [5783], "1anh.com": [55], "verifiedvoting.org": [17620], "www.abcm.ch": [2192], "www.igolder.com": [7954], "reverbnation.com": [13842], "portal.ct.gov": [2680], "digitalriver.com": [4483], "f-secure.com": [5541], "nwk-unbrick2.apple.com": [1120], "developer.akamai.com": [761], "beej.us": [18988], "cdn2.hubspot.com": [7594], "forum.ovh.nl": [12173], "alpha.app.net": [1102], "www.nominatefellow.acs.org": [929], "media.cmcdn.net": [3327], "download.icq.com": [7690], "b.zmtcdn.com": [19803], "es.my.t-mobile.com": [15772], "io.swisscom.ch": [15698], "pirateparty.gr": [6915], "i2.code.msdn.s-msft.com": [14058], "bahn-bkk.de": [1616], "bsi.bund.de": [5711], "techtv.mit.edu": [9749], "samples.asp.net": [353], "blog.tinypic.com": [18428], "help.github.com": [6680], "webassetse.scea.com": [14089], "the-fca.org.uk": [16190], "passport-ckicheck.yandex.com": [18651], "tiuz.unizar.es": [17356], "tag.perfectaudience.com": [12559], "redcoon.pt": [13686], "dolimg.com": [4641], "cc1.dealer.com": [4256], "origin-www.progress.com": [13132], "aacf.stanford.edu": [15382], "idgkonto.idg.se": [7705], "www.nbwn.de": [10877], "www.post.cz": [14648], "vologda.rt.ru": [13469], "*.computerandvideogames.com": [6281], "fairphone.com": [5636], "fonts.googleapis.com": [6839], "hxcc.secureserver.net": [14511], "www.site24x7.com": [14861], "www.post.ch": [12949], "sstats.adobe.com": [615], "redbubble.com": [13660], "i.socialrank.com": [15058], "*.content.ad": [3610], "fruct.org": [5595], "us.norton.com": [11505], "*.opscode.com": [12061], "cmu.edu": [2859], "campus.leeds.ac.uk": [17318], "*.buyboard.com": [2467], "www.solutionshealthcare.com": [15125], "siedler25.org": [13832], "athena.dialup.mit.edu": [9749], "oberpfalz.piratenpartei.de": [12707], "img.icefilms.info": [7911], "uchastings.edu": [16941], "deutschland-spielt.de": [19113], "trustthevote.org": [16784], "upstream.where.com": [18238], "www.gotomeeting.com": [6787], "pace.com": [12309], "www.craphound.com": [3760], "shibboleth.main.ad.rit.edu": [13434], "www.pingone.com": [12683], "ems.calderdale.gov.uk": [2735], "ausinfotech.net": [1375], "pictomania.com": [12668], "www.resin.io": [13806], "www.webtraxs.com": [18169], "lists.gajim.org": [6406], "aldi-sued.de": [299], "denver2012.drupal.org": [4780], "www.zuno.sk": [18768], "topeka.ccmr.cornell.edu": [3676], "momentusmedia.com": [10538], "entropywave.com": [5301], "www.darjeelin.fr": [4148], "www.meine-verbraucherzentrale.de": [17617], "*.englishdefenceleague.net": [5270], "cloudwear.com": [3317], "cookbooks.adobe.com": [615], "nettitude.com": [11254], "chessbase.com": [3069], "policemutual.co.uk": [12864], "www.hertztrucks.de": [7346], "dropdav.com": [4767], "help.cbp.gov": [2523], "*.imag.fr": [7975], "www.dcerpc.org": [19104], "pashm.com": [12421], "www.docelu.pl": [4615], "preney.ca": [13029], "orionhub.org": [12107], "www.valuedial.com": [17546], "www.rightmove.co.uk": [13886], "login.asp.net": [353], "www.events.ya.ru": [18626], "codepunker.com": [3352], "cimbclicks.com.my": [2606], "supplierportal.sandia.gov": [14278], "dating.taobao.com": [15952], "hampshire.firmstep.com": [19183], "studyrooms.lib.plymouth.ac.uk": [12833], "bitnamihosting.com": [1945], "img1.wsimg.com": [14507], "immi.is": [7759], "recruiting.piazza.com": [12658], "pastebin.sabayon.org": [14214], "www.supportion.org": [15640], "wantful.com": [17974], "*.infrastructure.gov.au": [4371], "www.gcaptain.com": [6311], "myportableworld.com": [10814], "lincs.fr": [9080], "www.taras.yandex.com.ua": [18650], "myheritage.pl": [10834], "www.justseed.it": [19329], "www.ono.es": [11882], "cal.net": [2724], "my.ispsystem.com": [7835], "embed.5min.com": [178], "iplocation.zoho.com": [18884], "annualreport.stanford.edu": [15383], "*.cloudswitch.com": [3296], "www.pressflex.com": [13037], "xm.com": [18520], "www.defectivebydesign.org": [4306], "security.google.com": [6834], "www.travelocity.com": [16698], "www.slashbits.com": [14945], "professionals.engineering.osu.edu": [11760], "00f.net": [0], "tsl.state.tx.us": [16153], "heroup.com": [7331], "apnic.net": [1257], "nieuwsblad.be": [11393], "license.drweb.com": [4783], "www.zenimaxonline.com": [18829], "roomscheduling.uwm.edu": [17294], "sitemanager.ncl.ac.uk": [10884], "www.franciskim.co": [6100], "www.slashdot.org": [14947], "*.identi.ca": [7936], "niederoesterreich.neos.eu": [10899], "fullcirclestudies.com": [6248], "portal.nccgroup.com": [10879], "ad.epochtimes.com": [5327], "ads.undertone.com": [17160], "www.cryptorave.org": [3862], "polls.newsvine.com": [11348], "facturaelectronica.unizar.es": [17356], "events.bc.edu": [1502], "behance.net": [1756], "easthants.gov.uk": [5013], "api.weibo.com": [18187], "google.tv2.dk": [15880], "www.vendosupport.com": [17605], "click.a-ads.com": [215], "congress.gov": [3575], "openbsdstore.com": [11921], "slu.tdconline.se": [15799], "browsingprotection.f-secure.com": [5541], "experiencedays.co.uk": [5507], "books.enaza.ru": [5230], "emc.force.com": [4929], "events.berkeley.edu": [17240], "secure2.zylom.com": [18929], "www.jaim.at": [8494], "cmcenroe.me": [3328], "eup-network.de": [5397], "www.illinoistech.org": [7967], "online.vodafone.co.uk": [17813], "*.cruisersforum.com": [3832], "*.cognesia.net": [3386], "www.searsecommercejobs.com": [14447], "www.bosh.io": [2229], "www.jud.ct.gov": [2680], "totaltravel.com": [18638], "www.variety.com": [17565], "st.dizzcloud.com": [4589], "greenmangaming.com": [6932], "app.datadoghq.com": [4201], "preprod.fr.hispeed.ch": [19716], "*.autohits.vn": [1415], "geek.com": [6492], "www.unanimis.co.uk": [17146], "guides.lib.washington.edu": [17290], "fylde.gov.uk": [6291], "create.demandstudios.com": [4343], "cdn.derkeiler.com": [4379], "www.script-o-rama.com": [4757], "thumbnails-tv.adobe.com": [615], "getadblock.com": [517], "spectrum.com": [15248], "tr.verbling.com": [17615], "www.onlineshop.cz": [19459], "sirportly.com": [14858], "static.openvz.org": [11991], "www.bazzapp.com": [1710], "tech.netapp.com": [11183], "reviews.reviewboard.org": [13844], "bugs.unrealircd.org": [17364], "selfridges.com": [14568], "www.html5rocks.com": [7104], "getjaco.com": [6607], "helpdesk.softcom.com": [15090], "www.mexbt.com": [10132], "security.mail.ru": [9874], "anti-theft.kaspersky.com": [8806], "www.assoc-amazon.com": [1288], "tgthr.com": [16166], "graduateapp.ucsd.edu": [16939], "i5k.nal.usda.gov": [17209], "www.cryptonomicon.com": [3885], "i1.services.social.microsoft.com": [10364], "www.aviationweather.gov": [18972], "cf1.vuze.com": [17879], "itbiz.cz": [8387], "suspiciousumbrella.uk": [19642], "download.aircrack-ng.org": [750], "www.forums.nexusmods.com": [6066], "*.bellsouth.com": [1765], "e11.xhamsterpremiumpass.com": [18516], "img-seeker.newjobs.com": [11318], "svb.com": [14791], "ukfast.co.uk": [16969], "buildxp.deathmask.net": [4266], "ta.libreoffice.org": [9311], "solidarity-us.org": [15121], "www.slashdotmedia.com": [14948], "www.kurly.fr": [9042], "frack.nl": [6092], "ec2.cdn.dell.com": [4335], "simage4.pubmatic.com": [13194], "www.v3.co.uk": [17464], "jobs.hostdime.com": [7510], "www.torreycommerce.com": [16593], "gftplns.org": [15465], "local.amazon.com": [913], "secure.rallycongress.com": [13536], "auth.adfox.ru": [524], "library.mit.edu": [9749], "colocationamerica.com": [3435], "www.messenger.com": [10292], "s.gzhls.at": [13025], "gradle.org": [6882], "mapquest.com": [9970], "yourvideohost.com": [18733], "*.nulab-inc.com": [11572], "kachingle.com": [8764], "www.60plus.vcd.org": [17474], "athena.krystal.co.uk": [9024], "www.fapmc.ru": [5551], "cinema.usc.edu": [17278], "ag.ouvaton.coop": [12155], "*.solus-project.com": [15124], "www.digitalegesellschaft.de": [4505], "*.neo-interactive.hu": [11145], "www.spendvision.com": [19618], "evdrive.com": [4984], "testbed.aviationweather.gov": [18972], "mondo2000.net": [10544], "www.acrobatusers.com": [481], "www.mumble.info": [10702], "btnapps.net": [2354], "djoserjunior.nl": [7452], "blogs.nottingham.ac.uk": [11528], "c1.neweggimages.com": [11316], "startssl.us": [15407], "www.kmymoney.org": [8738], "myaccount.rotherham.gov.uk": [13979], "legal.yandex.com.tr": [18649], "*.sail-horizon.com": [14242], "deliveras.gr": [4332], "barnet.moderngov.co.uk": [19405], "www.net.vutbr.cz": [17522], "www.ecommercebrasil.com.br": [4885], "app.fastly.com": [5687], "*.oppictures.com": [17218], "udc.bing.com": [1895], "www.latimes.com": [16730], "www.sign-up.to": [14780], "president.stanford.edu": [15383], "medicaljane.com": [10187], "www.changeip.com": [2994], "webmail.informatik.uni-hamburg.de": [16951], "www.faxrobot.com": [5696], "globalecology.stanford.edu": [15383], "static8.businessinsider.com": [2454], "www.cimbsecurities.co.th": [2608], "www.dft.gov.uk": [19116], "developer.buttercoin.com": [2463], "fast.wistia.net": [18376], "europe-miniatures.com": [5422], "clocks.yandex.com": [18651], "www.brandnewbooty.com": [2280], "it.civilservice.gov.uk": [19066], "capsuleweb.ulaval.ca": [17229], "dashboard.towerdata.com": [16613], "libraries.ceredigion.gov.uk": [2964], "webmail.fastwebhost.com": [5678], "dolphin.com": [19122], "asgard.paragonie.com": [12389], "appstore.blackphone.ch": [2048], "nifc.gov": [10924], "www.urlparser.com": [17015], "fsfla.org": [5599], "www.torchbox.com": [16572], "chromium.org": [3119], "exchange.1and1.com": [51], "www4c.medicare.gov": [19392], "get-digital.es": [6560], "efas.cen.uiuc.edu": [16956], "safelinks.f-secure.com": [5541], "www.lensrentals.com": [9255], "bloggar.aftonbladet.se": [716], "www.getgophish.com": [19214], "*.ltu.se": [9657], "www.uqwimax.jp": [17013], "web3.login.cornell.edu": [3676], "isohunt.com": [8372], "csites.ornl.gov": [11693], "files.slack.com": [14942], "www-304.ibm.com": [7675], "www.ncwlookup.acs.org": [929], "blackboard.brunel.ac.uk": [19021], "*.web-servers.com.au": [18046], "wcms-prod-web-3.ucsc.edu": [17305], "syntax.xtgem.com": [18596], "studentbursarysupport.education.gov.uk": [19149], "www.guidebook.com": [7009], "316space.com": [2132], "img0.leboncoin.fr": [19351], "loomio.org": [9603], "*.groupersocialclub.com": [6972], "trinityfi.org": [16737], "www.dotcologne.de": [4694], "cdn.mail.aol.com": [321], "bereavement.bedford.gov.uk": [18986], "static.inaturalist.org": [7773], "bournemouth.gov.uk": [2251], "terrapass.com": [16127], "logmein.com": [9549], "*.telework.gov.au": [16096], "*.nagra.com": [11010], "ssl.aimpulse.com": [743], "www.six.feec.vutbr.cz": [17522], "boerse-frankfurt.de": [2177], "ec.consumerreports.org": [3600], "ynot.gigantic.com": [6651], "nic.cz": [11379], "www.uberads.com": [17086], "cloudmark.com": [3309], "myricom.com": [10843], "portugues.istockphoto.com": [19309], "www.prisma-it.com": [13075], "www.psy.plymouth.ac.uk": [12833], "si3.twimg.com": [16877], "www.sug.htwk-leipzig.de": [7114], "www.lawnandlandscape.com": [9180], "www.inventivedesigners.com": [8314], "wikimedia.org.il": [18296], "hellholecheesefactory.org": [7292], "doc.zarafa.com": [18795], "www.pashm.com": [12421], "www.canon.fi": [2809], "www.cuusoo.com": [3946], "cdn.sploder.com": [15283], "ca.vas-hosting.cz": [19729], "download.qt-project.org": [13314], "www.reason.com": [13635], "www.paket.de": [12337], "mygannett.gannett.cornell.edu": [3676], "extranet.bfwien.at": [18284], "scientificlinux.org": [14386], "www.opentransfer.com": [12049], "www.ifca.ai": [8266], "parallels.com": [12392], "codemirror.net": [3372], "*.cox.net": [3739], "designcentersearch.com": [3551], "www.zimperium.com": [18869], "webregister.web.cern.ch": [2574], "securifera.com": [14515], "news.cointrader.net": [3411], "extra.sankakucomplex.com": [19563], "apptest.mobile.de": [19403], "sstic.org": [14185], "nalchik.rt.ru": [13469], "mywot.com": [10798], "vpn.ashampoo.com": [1250], "mandriva.com": [9948], "jobs.nzz.ch": [19450], "publishers.esellerate.net": [5357], "static.symplicity.com": [15721], "tinfoil.co": [16472], "www.sony.eu": [15142], "deferpanic.com": [4312], "www.pizzacharts.com": [12749], "track.hubspot.com": [7594], "www.beefree.io": [1746], "www.vendorportal.ecms.va.gov": [17019], "*.fwmrm.net": [6136], "www.roc-noc.com": [13930], "gosuslugi.ru": [6852], "www.datasheetcatalog.com": [4214], "static.vg.no": [17484], "techblog.workiva.com": [18442], "eventim.*": [5443], "www.usuhs.edu": [17052], "kentuckyonehealth.org": [8854], "forum.ramhost.us": [13397], "vetmed.illinois.edu": [17258], "www.publications.cabinetoffice.gov.uk": [2701], "csapps.norfolk.gov.uk": [19436], "profiles.petfinder.com": [12595], "www.issafrica.org": [7837], "time.yandex.com": [18651], "badssl.com": [1611], "www.guadec.org": [6397], "jscsecmat.ctscdn.com": [3906], "*.samsung.com": [14265], "www.rackspacecloud.com": [13507], "services.connect.microsoft.com": [10364], "www.hizlisaat.com": [7432], "my.xmarks.com": [18579], "ec.razerzone.com": [13587], "icedivx.com": [7910], "www.smarthide.com": [14989], "capris.no": [603], "www.tshare.to": [15865], "worldfoodprize.org": [18455], "piratenpartei.at": [12720], "carbonmade.com": [2831], "*.wildstar-online.com": [18303], "update.virtualbox.org": [17748], "m.superpages.com": [15633], "littlesvr.ca": [9478], "online.alumni.rice.edu": [13869], "freethoughtblogs.com": [6186], "abcm.ch": [2192], "admin.google.com": [6834], "www.downtownhost.com": [4730], "phishd.com": [12630], "www.hvidovrekajakklub.dk": [7636], "www.dha.gov.au": [4308], "a.lscdn.net": [9102], "www.brainpickings.org": [2268], "files.qabel.de": [13298], "mountspace.com": [10621], "forums.zotero.org": [18911], "orrick.websitealive.com": [18149], "web.boldchat.com": [2187], "ip-projects.de": [7785], "www.peelregion.ca": [12510], "www.atlasofprejudice.com": [1320], "www.fifengine.de": [5573], "eforms.gov.ie": [19150], "customersonly.dtint.com": [4085], "www.whosgamingnow.net": [18270], "scriptjunkie.us": [14423], "crazyegg.com": [3764], "webcamboys.us": [18111], "static6.uk.businessinsider.com": [2454], "tatepublishing.com": [15975], "forum.disconnect.me": [4543], "jobs.ieee.org": [7713], "*.grsecurity.net": [6383], "b.strikingly.com": [15523], "affiliate.hitbtc.com": [7420], "www.domcomp.com": [4666], "www.icsalabs.com": [7691], "www.parametersecurity.com": [12393], "www.instat.com": [8026], "portal.zg.ch": [19648], "www.uniquefiler.com": [17193], "balkanleaks.eu": [1628], "photobtc.com": [12638], "www.comic-con.org": [3466], "*.cert-bund.de": [2576], "conference.oracle.com": [12082], "*.mycontactual.com": [3609], "grc.com": [6380], "git.cru.fr": [3829], "www.cybersitter.com": [2695], "my.webtapestry.net": [1466], "cdn.ht.trafficforce.com": [16651], "api.piwik.org": [12733], "www.alchemistowl.org": [783], "www.hub.jhu.edu": [16296], "www.draytek.com": [4746], "rood.sp.nl": [14151], "www.briehost.com": [2316], "telegr.am": [16077], "www.milodev.com": [10399], "aucklandairport.co.nz": [1343], "loopfuse.com": [9604], "genome.ucsc.edu": [17305], "service-access-data.web.cern.ch": [2575], "politiken.dk": [12876], "kb.gigaserver.cz": [14589], "www.slenderkitchen.com": [14952], "www.peliaika.fi": [6394], "familysearch.org": [5646], "news.moniker.com": [8864], "bitcoin.co.id": [1964], "secure.sakura.ad.jp": [14068], "ohiobar.org": [11763], "rtfd.org": [13611], "www.wirelessleiden.nl": [18368], "pubsub-edge.twitch.tv": [16888], "images.pcel.com": [12222], "listonic.com": [9452], "torrentz.me": [16591], "lte.mg2mobile.com": [10329], "kaufman.usc.edu": [17278], "crucial.com": [3831], "knowledge.hubspot.com": [7594], "*.juno.co.uk": [8684], "www.macular.org": [9834], "dw.com.com": [2526], "twtpoll.com": [16901], "uc.edu": [17308], "secure.assets.tumblr.com": [16826], "heteml.jp": [7375], "www.jguitar.com": [8434], "www.de-centralize.com": [4241], "diff.smartadserver.com": [14982], "*.cypherpunks.ca": [3985], "dev.elsevier.com": [5185], "sysadmin.kde.org": [8718], "www.electronicinsanity.com": [5153], "autoact.mobile.de": [19403], "livechatinc.com": [9480], "download2.mikrotik.com": [10388], "www.people.com": [12546], "telebasel.ch": [19667], "www.fimc.net": [10163], "observium.org": [11706], "chapin.williams.edu": [18316], "constantcontact.com": [3592], "www.gocoin.com": [6771], "www.helpspot.com": [7306], "www.familie.bayern.aok.de": [317], "diagonalperiodico.net": [4441], "ccbill.com": [2534], "manage.chef.io": [3057], "slo-tech.com": [14966], "www2.slac.stanford.edu": [15383], "enovance.com": [19138], "*.spoonful.com": [15288], "faxbigbrother.com": [5695], "tridium.com": [16733], "git.libav.org": [9291], "roaringpenguin.com": [13919], "*.sct.gov.au": [15624], "kulturhusetislandsbrygge.kk.dk": [8730], "garoa.net": [6460], "info.ecosia.org": [5063], "www.exsila.ch": [19171], "hao.qq.com": [13284], "download.spotify.com": [15296], "www.888voip.com": [201], "www.gifttool.com": [6641], "drugstore.com": [4779], "www.overdrive.com": [12160], "rooms.library.jhu.edu": [16296], "www.spacelaunchreport.com": [15211], "www.auth.usyd.edu.au": [19723], "www.amnesty.org.ru": [969], "sources.opencorporates.com": [11931], "www.adsafecontrol.com": [537], "www.danhlode.com": [4140], "*.vlc-addons.org": [19462], "allclearid.com": [827], "s1.ckeditor.com": [2621], "weathersafe.allianz.com": [18950], "bibbitec.com": [1841], "status.buttercoin.com": [2463], "deichmann.com": [4317], "www.formassembly.com": [6040], "api2.fri-gate.org": [6208], "webappl.web.sh.se": [14114], "m-fanshop.ch": [19399], "builtwith.com": [2413], "discussions.apple.com": [1120], "ohloh.com": [11766], "www.23andme.com": [74], "connect.facebook.com": [5620], "p7.raasnet.com": [13655], "flyingcameras.ca": [5965], "mor.nlm.nih.gov": [11052], "ee-www.stanford.edu": [15383], "meteoprog.kz": [10312], "wennect.info": [18201], "mybetter.com": [10746], "sync.mathtag.com": [10071], "donate.homelessveterans.co.uk": [7479], "lists.us.dell.com": [4335], "www.afiestas.org": [706], "portal.sevenoaks.gov.uk": [14638], "yarddigital.com": [18661], "www.scottlinux.com": [14402], "www.binaryturf.com": [1890], "www.qualaris.com": [13327], "www.xvideosx.tv": [18537], "usvisa-info.com": [2665], "www.domainskate.com": [4657], "qianbao.baidu.com": [1619], "*.solarbotics.com": [15111], "drivee.jp": [4764], "hr.harvard.edu": [7219], "advq.yandex.com.ua": [18650], "www.mysmartrend.com": [14981], "www.kingston.greenparty.org.uk": [6925], "shop.novell.com": [11530], "*.pipedot.org": [12700], "www.icardnet.uillinois.edu": [16960], "www.travelnow.com": [16692], "support.cape-it.de": [2816], "delegated.osu.edu": [11760], "ansibleworks.com": [1058], "sites.usa.gov": [17029], "dev.modernrepo.com": [10524], "www.1x.com": [49], "unindented.org": [17191], "cancer.fi": [15744], "postmaster.outlook.com": [12153], "support.runbox.com": [14037], "beesecure.prpa.org": [15044], "www.csie.ntu.edu.tw": [10971], "p17.qhimg.com": [13302], "brainstorage.me": [2272], "eumostwanted.eu": [19164], "webadmin.endora.cz": [5248], "www.enterprisersproject.com": [5293], "www.hertzautovermietung.pl": [7358], "cdn.digits.com": [4509], "gkg.net": [6337], "rectpweb.admin.uillinois.edu": [16960], "addison.vt.edu": [17740], "www.yacuna.com": [18630], "refer.ly": [13716], "account.t-mobile.com": [15772], "vocativ.com": [17811], "i.t.net.ar": [15964], "tickets.chef.io": [3057], "assets.cookieconsent.silktide.com": [14796], "pro.stubhub.com": [15534], "brabant.nl": [11132], "shop.msicomputer.com": [9793], "ssl-images.newegg.com": [11316], "*.talkactive.net": [15926], "weblogin.stanford.edu": [15383], "pro.darkreading.com": [16927], "artinstitutes.edu": [16177], "*.eharmony.com": [19135], "ols.business.yahoo.co.jp": [18640], "hiesorrentovalley.hotelwifi.com": [7553], "asc.wustl.edu": [17993], "www.doublerobotics.com": [4712], "www.openmoko.org": [12039], "wrms.catalyst.net.nz": [2896], "*.spectator.org": [15245], "www.qstack.com": [13290], "www.pss.sk": [13187], "order.1and1.co.uk": [53], "marhababrighton.co.uk": [9986], "www.acspul.asso.ulaval.ca": [17229], "www.mims.co.id": [9743], "mauerspecht.zdf.de": [19800], "drupalgardens.com": [4781], "lists.openswan.org": [12046], "taki.hizlisaat.com": [7432], "assets1-new.akamai.coub.com": [3697], "visiba.com": [17769], "gaia-gis.it": [6404], "sics.se": [14119], "tekgoblin.com": [16064], "*.www.mozdev.org": [10647], "whatson.sydney.edu.au": [19649], "www.fabiankeil.de": [5617], "www.xtgem.com": [18597], "www.idr-biz.com": [9743], "gallery.hizliresim.com": [7433], "staging.extranet.nsidc.org": [11062], "catalysis.com": [2895], "www.juki.co.jp": [8464], "www.ukwebsolutionsdirect.co.uk": [16968], "my.tealiumiq.com": [15996], "lavaboom.com": [9173], "*.buysellads.com": [2468], "pics.librarything.com": [9305], "*.webfaction.com": [18063], "www.billmaher.com": [1878], "www.encoding.com": [5232], "developer.appcelerator.com": [1113], "www.a16z.com": [219], "proxy.uchicago.edu": [17246], "discuto.io": [4560], "masterh8.adriver.ru": [534], "download.alipay.com": [817], "*.biowarestore.com": [1903], "form.mbank.com.pl": [9722], "info.ssl.com": [14176], "wwwsecure.lego.com": [9068], "emailcenter.acs.org": [929], "www.edigital.hu": [5529], "scmagazineus.com": [14325], "polpix.sueddeutsche.com": [15578], "lrc.businesslink.gov.uk": [2460], "www.xfire.com": [18569], "www.villas4you.co.uk": [18490], "qipai.sina.com.cn": [14842], "stories.rackspace.com": [13506], "www.aeepcpul.asso.ulaval.ca": [17229], "www.antiphishing.org": [1066], "cdn.betteradvertising.com": [5458], "img5.thalasseo.com": [16168], "pagseguro.captcha.uol.com.br": [16998], "nextgenautoparts.com": [11368], "now.mmedia.me": [10281], "lvoc.org": [9111], "southend.firmstep.com": [19183], "cdn.posteo.de": [12969], "ebms.cimb.com": [2606], "*.passthepopcorn.me": [12425], "vumanity.net": [17875], "qualityagent.com": [13330], "openhunt.co": [12014], "www.goturkey.com": [6796], "esa.int": [5430], "www.solarpowerrocks.com": [15107], "secure.prleap.com": [3559], "www.resolv.org": [13415], "whos.amung.us": [18267], "touch.afisha.mail.ru": [9874], "linuxmint-art.org": [19461, 19462], "library.ucsc.edu": [17305], "*.laverna.cc": [9175], "prezi.com": [13046], "www.buch.de": [16171], "www.handelsregister.de": [7188], "www.nghttp2.org": [11373], "www.datatilsynet.no": [4216], "postalheritage.org.uk": [12958], "slov-lex.sk": [14972], "ask.linaro.org": [9361], "presenter.player.qbrick.com": [13300], "*.nkb.ch": [19333], "dignityindying.org.uk": [4514], "darjeelin.fr": [4148], "anidb.net": [1022], "nc-buyiphone.apple.com": [1120], "redirect.1und1.de": [68], "support.distilnetworks.com": [4573], "www.biologie.ens.fr": [4930], "*.templatemonster.com": [16106], "*.habets.se": [7126], "*.r-kom.de": [13388], "www.blender.org": [2067], "vn5socks.com": [17807], "mymagnet.magnet.ie": [9860], "mentoring.hhs.gov": [7062], "postpoints.washingtonpost.com": [17990], "sverigesradio.se": [15673], "www.siemens.*": [14770], "mobile.leboncoin.fr": [19351], "*.fused.com": [6273], "fms.treas.gov": [17059], "images-www.localist.com": [9541], "invest.dha.gov.au": [4308], "blog.bitcoin.de": [1966], "inch-ci.org": [8044], "play.freeciv.org": [6160], "esellerate.net": [5357], "dms-sweden.com": [4047], "support.burst.net": [2445], "*.ethereum.org": [5379], "giphy.com": [6665], "indabamusic.com": [8049], "www.lauramercier.com": [888], "events.birmingham.gov.uk": [19000], "dustri.org": [4811], "www.wargaming.com": [17978], "mykolab.com": [10765], "www.identityworkshop.eu": [7940], "cdneu2.wahanda.net": [17948], "e4ward.com": [4864], "svn.thedarkmod.com": [16266], "hekko.pl": [7290], "notalwayshopeless.com": [19441], "idportal.lrz-muenchen.de": [9238], "vandyke.com": [17549], "reviewingcomics.com": [13845], "cics.osu.edu": [11760], "iterm2.com": [19276], "jt.india.com": [8060], "www.pirates-forum.org": [16227], "*.activeevents.com": [495], "retailsails.com": [13823], "www3.open.ac.uk": [11986], "nds.rub.de": [13478], "adp.com": [1427], "www.webfestglobal.com": [18116], "www.dowjones.com": [11320], "*.shopstyle.com.au": [14720], "forum.pirati.cz": [12722], "rum.wpm.neustar.biz": [11280], "*.newyorker.com": [16203], "www.bluekrypt.com": [2134], "www.eply.com": [4945], "mail.kn.vutbr.cz": [17522], "www.vmwareblogs.com": [17496], "lbcomet.cern.ch": [2575], "www.goodlucktrunk.com": [6828], "publicorigin.wix.com": [18383], "www.greenparty.org": [6926], "*.mountsinai.org": [10618], "ag.gov.au": [1340], "zazzle.com": [18804], "summerexperiences.wustl.edu": [17993], "linshunghuang.com": [9360], "redeem.itunes.apple.com": [1120], "boingboing.net": [2181], "cyp.halton.gov.uk": [19236], "www.majordesignsdollfashions.com": [9899], "origin.business.upc.cz": [17000], "store.litespeedtech.com": [9458], "www.123rf.com": [25], "h-node.org": [7042], "planet.haskell.org": [7229], "faround.net": [5665], "cumulusnetworks.com": [3919], "documentfoundation.org": [16221], "my.betteradvertising.com": [5458], "rescomp.stanford.edu": [15383], "bbzsogr.so.ch": [19648], "km.support.apple.com": [1120], "www.anxbtc.com": [314], "airs.com": [751], "www.froggynet.com": [19199], "grid.worldcommunitygrid.org": [18447], "lounge.qacafe.com": [19529], "mypages.aldi-mobile.ch": [299], "services.maidstone.gov.uk": [9868], "www.tchibo.pl": [15985], "www.customworks.ca": [9579], "lxr.missinglinkelectronics.com": [10455], "ultrafacil.com.br": [17134], "online.statefarm.com": [15418], "*.printrbot.com": [13072], "www.brennancenter.org": [2302], "no.libreoffice.org": [9311], "www.freedominc.nl": [6170], "netzpolitik.org": [11278], "public.slidesharecdn.com": [14963], "onlineplanningregister.northyorks.gov.uk": [19440], "www.redditstatic.com": [13692], "asweb.stanford.edu": [15383], "www.biop.ox.ac.uk": [17271], "app.coinjar.com": [3397], "my.wmtransfer.com": [18076], "wiki.archlinux.fr": [1159], "www.coisas.com": [3412], "*.partipirate.ch": [12284], "www.ticketsage.com": [15818], "fuwu.alipay.com": [817], "docs.getfoxyproxy.org": [6591], "www.bsideslv.org": [1545], "esrb.org": [4964], "www.luckyshare.net": [9651], "www.aldi-mobile.ch": [299], "www.koumbit.org": [8999], "www.2k.com": [86], "cs.kindful.com": [8893], "coreinfrastructure.org": [3667], "secure.claranetsoho.co.uk": [3212], "correctiv.org": [3685], "publicobject.com": [13214], "www-ssrl.slac.stanford.edu": [15384], "*.unm.edu": [16993], "growleadchange.wustl.edu": [17993], "www.aboutmyvote.co.uk": [427], "btcstore.eu": [1569], "m3server.com": [9697], "na.schottenland.de": [14366], "bulletin.net": [2417], "creative.adobe.com": [615], "kyhwana.org": [9051], "www.pddoc.com": [12234], "www.campina.ru": [2782], "donorregister.nl": [11132], "kulturstationen.kk.dk": [8730], "ad.yieldlab.net": [18682], "www.mongodb.com": [10553], "*.verticalresponse.com": [17642], "www.mlpchan.net": [9758], "modmyi.com": [10513], "ubit.buffalo.edu": [17297], "img03.findgravy.com": [5843], "demo-anonymous.piwik.org": [12733], "www.express-vpn.com": [5516], "oascentral.comcast.net": [3460], "esc.isis.poly.edu": [12888], "www.amnesty.or.jp": [966], "ssl-ccstatic.highwebmedia.com": [7408], "surveys.researchresults.com": [13799], "matomymedia.com": [10075], "*.sescoops.com": [14104], "cis.rit.edu": [13434], "popvote.hk": [12912], "mysql.pipni.cz": [12257], "parcelforce.com": [12397], "image13.bizrate-images.com": [2033], "www.blueorigin.com": [2143], "manage.zerigo.com": [18835], "accan.org.au": [247], "my.vpnglobe.com": [17502], "e621.net": [4865], "asset.dr.dk": [4078], "afilias.info": [707], "siseveeb.ut.ee": [17069], "mail.win.dtu.dk": [16031], "www.pushplay.com": [13249], "customerrewards.sky.com": [14924], "aldi-mobile.ch": [299], "canvas.uw.edu": [17077], "www.gayakuman.com": [6481], "mwave.com.au": [10736], "www.alexandercoward.com": [797], "zdmcirc.com": [18760], "www.eoft.eu": [4935], "*.luv.asn.au": [9110], "rugshd.com": [14029], "www.zsim.de": [18914], "matildajaneclothing.com": [10072], "marcan.st": [9982], "cdn1.iconfinder.com": [7921], "www.e-activist.com": [4847], "*.slate.wvu.edu": [18212], "alertir.com": [789], "firstlook.org": [5878], "www.aess.asso.ulaval.ca": [17229], "directline.metafaq.com": [4526], "www.42floors.com": [143], "www.cheznous.com": [18490], "www.geology.illinois.edu": [17258], "dovetailservices.com": [4719], "suche.golem.de": [6819], "news.scotland.gov.uk": [19575], "money.yandex.by": [18648], "www.64px.com": [180], "thebrigade.thechive.com": [16258], "api.plixi.com": [9545], "www.textmagic.com": [16157], "jobs.allianz.com": [18950], "*.bin-store.com": [1886], "atomz.com": [1329], "m.geektimes.ru": [6507], "o.xbox.com": [18550], "leisureonline.chesterfield.gov.uk": [19058], "www.securusglobal.com": [14537], "www.domeny.sk": [18938], "www.usi.vutbr.cz": [17522], "www.cait.wustl.edu": [17993], "it.cornell.edu": [3676], "tiki.vorratsdatenspeicherung.de": [295], "www.pc-ostschweiz.ch": [12217], "www.stand.org": [15375], "*.blog.upc.edu": [12895], "esat.kuleuven.be": [8816, 9034], "m.apan.org": [329], "*.confused.com": [3573], "www.netim.com": [11236], "gnumeric.org": [6765], "*.hackerschool.com": [7148], "www.*.uh.edu": [17315], "vremya.yandex.com": [18651], "www.webdam.com": [18059], "*.meeting.afrinic.net": [709], "meetfriends.rt.com": [13468], "wso2.com": [17930], "images.plattstatic.com": [12790], "cio2.uchastings.edu": [16942], "www.dotcomsecurity.de": [4698], "superfast-openreach.co.uk": [15629], "annonce.borsen.dk": [2224], "www.betts.com.au": [1831], "nvdeveloper.nvidia.com": [10985], "www.jeeptopsdirect.com": [8544], "www.lwn.net": [9112], "c.cksource.com": [2622], "click.otaserve.net": [19470], "ping.fm": [12681], "kyn.me": [9054], "nih.gov": [11052], "*.mktoresp.com": [10475], "*.odn.io": [16570], "ebscohost.com": [4872], "websitealive10.com": [18149], "nacp.ornl.gov": [11693], "img07.taobaocdn.com": [15953], "ww690.smartadserver.com": [14982], "svn.python.org": [14204], "www.beastnode.com": [1736], "www.cpaptalk.com": [3745], "www.footlocker-inc.com": [6011], "crowd.geant.net": [6313], "www.openmpt.org": [11951], "*.search.etargetnet.com": [5375], "ssl.toplist.cz": [15847], "hpi.uni-potsdam.de": [17333], "css.chefkoch-cdn.de": [3058], "tapestry.tapad.com": [15954], "www.kickassvps.com": [8877], "ew.com": [5297], "www.100-gute-gruende.de": [8], "*.gentoo.org": [6531], "repository.cwi.nl": [2958], "pt.stackoverflow.com": [15359], "totalfanshop.net": [16603], "www.newyorktimes.com": [11313], "www.sustainability.asu.edu": [1195], "googleonlinesecurity.blogspot.co.*": [2113], "*.motorola.com": [10615], "www.odmenazadobiti.cz": [16076], "www.calendario.cc": [2737], "c.mail.ru": [9874], "tendencias.vozpopuli.com": [17861], "okura.nl": [11778], "sklik.cz": [14915], "thc.bioinfo.pl": [1898], "www.bullionstar.com": [2421], "janestanford.stanford.edu": [15383], "image.winzip.com": [18333], "slooh.com": [14134], "check.symantec.com": [15715], "www.dmjx.dk": [4600], "firmware.intel.com": [8209], "www.gigster.com": [6658], "platform.unifiedsocial.com": [17184], "ninthdecimal.com": [11420], "rethink.org": [19549], "www.openlinksys.info": [11950], "www.bluemix.net": [2152], "gb.jd.com": [8423], "t-mobile.co.uk": [15769], "e2ma.net": [4863], "ramnode.com": [13538], "publicinsightnetwork.org": [13209], "*.crossrider.com": [3817], "www.spiegel.de": [15272], "www.nl.frieslandcampina.com": [2782], "*.pnc.com": [12274], "my.yieldmanager.com": [13881], "tools.otenet.gr": [12132], "summerhumanities.stanford.edu": [15383], "a.udimg.com": [16948], "researchstore.com": [4206], "secure.bigbrother.se": [1856], "sccps.silentcircle.com": [14786], "contributoria.com": [3620], "*.wargaming.net": [17978], "mathid-origin.mathtag.com": [10071], "*.victorinox.com": [17674], "questia.com": [13354], "images.lynku.com": [9683], "www.kb.cert.org": [2583], "n.rivals.com": [19553], "ngvpn21.nvidia.com": [10985], "companiesintheuk.co.uk": [3507], "career.teamtailor.com": [16003], "siterecruit.comscore.com": [3453], "lists.altlinux.org": [304], "www.aldi.hu": [299], "*.ortolo.eu": [12113], "tap.rubiconproject.com": [14014], "amnesty.gr": [963], "aldi.lu": [299], "www.sizzlesitesinc.com": [14891], "secure.chesterfield.gov.uk": [19058], "*.differencebetween.net": [4462], "jacoblangvad.com": [8488], "www.authbox.io": [1408], "waffles.fm": [17945], "openxmpp.com": [11996], "www.greenparty.org.uk": [6925], "*.flyersrights.com": [5962], "pedsit.stanford.edu": [15383], "talkoclock.com": [15934], "visaliatimesdelta.com": [17767], "www.bikt.de": [1521], "*.nic.br": [10919], "android-client.fitbit.com": [5887], "russian.rt.com": [13468], "mapillary.com": [9971], "affiliates.nexcess.net": [11356], "api.lenta.ru": [19356], "soom.cz": [19610], "idp.lsbu.ac.uk": [9098], "vws3.primus.ca": [13063], "*.rhcloud.com": [13424], "www.collabora.ca": [3419], "openfiler.com": [12034], "nantes.indymedia.org": [8085], "whatismyip.com": [18231], "www.cnsi.ucla.edu": [17241], "*.kinja.com": [8904], "caktusgroup.com": [2723], "ams.hhs.gov": [7062], "fokus.fraunhofer.de": [6112], "dashboard.lob.com": [9533], "web.clicktools.com": [3264], "sealedabstract.com": [14438], "www.swapoff.org": [15677], "www.fakaheda.eu": [5638], "cryptoexperts.com": [3858], "star.duodecim.fi": [4804], "cimacorp.net": [5627], "vistech.net": [17781], "118information.co.uk": [19], "www.gktw.org": [6686], "insight.com": [8170], "www.broadcom.com": [2355], "tremendesk.com": [569], "help.dkit.ie": [4040], "icommons.org": [7700], "friendster.com": [6218], "*.psu.edu": [12538], "*.w3roi.com": [1464], "bugs-master.debian.org": [4275], "*.telfort.nl": [16098], "flightglobalshop.com": [5921], "www.boston.com": [2233], "atlassec.web.cern.ch": [2575], "prihlasenie.azet.sk": [1481], "www.myiu.org": [10808], "www.sa-as.com": [17768], "suppliercenter.walmart.com": [17964], "www.mims.com.ph": [9743], "*.intelli-direct.com": [8214], "www.opentext.com": [11984], "c.1tw.org": [47], "becuonlinebanking.org": [2175], "www.ibc.researchcompliance.vt.edu": [17740], "www.ees.elsevier.com": [5183], "magento.com": [9850], "cas.uvm.edu": [17075], "csa.canon.com": [2809], "amsterdam2014.drupal.org": [4780], "www.es.amnesty.org": [956], "www.safebilling.com": [14230], "flyertown.ca": [5964], "www.spicebox.co.jp": [15265], "www.1deg.org": [50], "jobs.broadcom.com": [2355], "www.ubmchannel.com": [16927], "www.comixology.com": [3465], "thunderkick.com": [16406], "www.dsg.cs.tcd.ie": [15789], "getresponse.com": [6580], "api.simplyhired.com": [14830], "addbooks.se": [570], "shibboleth.net": [14702], "myheritage.com.il": [10834], "tancity.de": [15940], "*.dnb.no": [4058], "972mag.com": [210], "www.uploaded.to": [3952], "wireshark.org": [18369], "versioneye.com": [17634], "support.wmtransfer.com": [18076], "weburbanist.com": [18096], "communigator.co.uk": [3498], "collab.net": [3417], "www.unclineberger.org": [16986], "ghazisaeidigroup.engineering.osu.edu": [11760], "ocio.nih.gov": [11052], "benefitsweb.com": [1777], "www.plusgirot.se": [12830], "www.housing.illinois.edu": [17258], "youtube.tn": [18709], "www.aok.de": [317], "*.myjobscotland.gov.uk": [10838], "judici.com": [8662], "clipperz.is": [3271], "widget.boomads.com": [2208], "cognitionsecure.com": [3387], "www.susestudio.com": [14200], "stats.adobe.com": [615], "gwywx.taobao.com": [15952], "www.opal.com.au": [11904], "assets.vidyard.com": [17705], "www.ecm74.com": [5052], "www.jobsatosu.com": [8599], "join.pirateparty.org.au": [12713], "takuu--saatio-fi.directo.fi": [15916], "demo1.odoo.com": [11727], "womeninnovatemobile.com": [18405], "*.servage.net": [14598], "verizonenterprise.com": [17627], "postgresql.us": [12974], "adserver.openx.org": [11994], "safeandsavvy.f-secure.com": [18428], "admin.adultshopping.com": [644], "ntia.doc.gov": [17058], "unimi.it": [17190], "gnuradio.org": [6359], "eduncovered.com": [5071], "nytimesathome.com": [11001], "www.elmbridge.gov.uk": [5174], "www.flixbus.cz": [5931], "*.typesafe.com": [16915], "saltstack.com": [14255], "*.smartling.com": [14999], "www.master.yandex.by": [18648], "research.domaintools.com": [4660], "firelady.com": [5862], "profiles.tmt.org": [16370], "www.haiku-os.org": [7163], "images.randomhouse.com": [13543], "rtd.tubemogul.com": [16814], "standards.data.gov.uk": [19100], "feedback.userecho.com": [17430], "apollo.ro.vutbr.cz": [17522], "ukash.com": [17122], "admissions.uic.edu": [17231], "shellfish.io": [14695], "ibank.privatbanka.sk": [13096], "www.hotukdeals.com": [7549], "docs.puppetlabs.com": [13232], "fulltraffic.net": [6253], "wix.gosquared.com": [6784], "admin.na5.acrobat.com": [480], "cdn.mxpnl.com": [10740], "*.android.com": [1006], "www.sigmaxi.org": [14779], "dev.jd.com": [8423], "mkssoftware.com": [9755], "assets.sbnation.com": [14079], "www.elanex.biz": [5141], "vanityfair.com": [3551], "cnda.condenast.co.uk": [3553], "wordpress.tv": [18428], "feeds.feedburner.com": [5734], "status.bnc4free.com": [2164], "coinfloor.co.uk": [3404], "cdn.innerbody.com": [19293], "api.pinterest.com": [12699], "m.aldi.be": [299], "partner.yandex.kz": [18652], "www.habets.pp.se": [7125], "allerderm.com": [14993], "radoncinternal.stanford.edu": [15383], "www.netmediaeurope.fr": [11198], "webassetsd.scea.com": [14089], "metrics.westernunion.com": [18216], "*.epbfi.com": [4940], "www.openshift.com": [11973], "*.thenextweb.com": [16204], "webmail.jimdo.com": [8572], "x.jd.com": [8423], "fourecks.de": [6080], "m.web.cern.ch": [2575], "bitcoinstats.com": [1971], "my.rusi.org": [13480], "gamesrocket.de": [6439], "www.getdigital.co.uk": [6570], "ixmaps.ca": [19315], "viaduct.io": [17662], "img3.store.microsoft.com": [10364], "*.advel.cz": [653], "a.fastcompany.net": [5681], "www.gchat.com": [6312], "blog.popads.net": [12902], "mci.edu": [10125], "trustwave.com": [16799], "static.login.persona.org": [10662], "extreme-light-infrastructure.eu": [5527], "blackboardtest.ncl.ac.uk": [10884], "computerworld.com.au": [7704], "forum.taobao.com": [15952], "media.wwte.com": [17937], "newsblur.com": [11326], "www.vtech.com": [17519], "thecreatorsproject.com": [16263], "www.quup.com": [13382], "www.wikiwand.com": [19759], "www.aerio.biz": [687], "uptilo.com": [17401], "archive.icommons.org": [7699], "www.mega.com": [10221], "www.as112.net": [343], "forum.ovh.com": [12173], "advancement.uic.edu": [17231], "cdn.w55c.net": [17891], "www.canon.com.mk": [2809], "rasp.yandex.com.tr": [18649], "packetflagon.is": [19476], "sslvpn.ntu.edu.tw": [10971], "acdn.stsdb.com": [14195], "ibeu2.mookie1.com": [10576], "anongit.mindrot.org": [10413], "image.trucktrend.com": [16764], "magazine.redhat.com": [18428], "www.youtube.com.qa": [18709], "brandensittich.de": [2282], "itmb.nl": [7848], "boxus.com": [12458], "pledge.freestateproject.org": [6152], "www.spatialbuzz.com": [15230], "www.german-design-council.de": [6554], "go.cz.bbelements.com": [1713], "remind.com": [13759], "sealinfo.websecurity.norton.com": [11505], "yuilibrary.com": [18625], "weblearn.ox.ac.uk": [17271], "www.cerit.cz": [2572], "www.sparkstudios.com": [15224], "m.fazjob.net": [5554], "www.whodoyou.trust": [18260], "northeastern.edu": [11499], "newsletters.1105pubs.com": [16], "www.g-ir.com": [6714], "skycityauckland.co.nz": [14128], "nxtforum.org": [11592], "www.comnap.aq": [2639], "carpromods.com": [2828], "*.marktplaats.net": [19385], "www.virtualedge.com": [272], "clinicaltrials.gov": [3268], "a.darjeelin.fr": [4148], "*.easyvoicebiometrics.com": [5031], "coderbits.com": [3374], "web.geogebra.org": [6537], "roddis.net": [13943], "marc-stevens.nl": [9980], "andesi.org": [998], "newscientist.com": [11298], "www.asirobots.com": [349], "secure.derby.gov.uk": [4380], "theiet.org": [7720], "doel.kuleuven.be": [8816], "jenkins.libtoxcore.so": [9322], "ellak.gr": [6915], "www.telekom-partnerwelt.de": [16084], "wiki.x2go.org": [18499], "*.standaard.be": [15379], "my.lsbu.ac.uk": [9098], "submittable.com": [19636], "support.startmail.com": [15410], "cmgm3.stanford.edu": [15383], "www.lfg.com": [19360], "www.uvt.nl": [16445], "visaforchina.org": [17766], "www.openssl.org": [11970], "www.flyn.org": [5967], "ixmaps.piwikpro.com": [19497], "blog.us.playstation.com": [12795], "ssl.weborama.fr": [18138], "www.informahealthcare.com": [8120], "datacell.is": [4177], "www.ytchannelembed.com": [18624], "webshop.scooter-attack.com": [14390], "codehs.com": [3349], "updates.postecert.poste.it": [12965], "*.foresight.org": [6028], "allmychanges.com": [833], "cse.ucsd.edu": [16939], "swingfree.co.uk": [15692], "4armed.com": [157], "u2.outbrain.com": [12150], "piwik.adelphi.de": [582], "broadland.gov.uk": [2357], "reserveaspace.wustl.edu": [17993], "pcp.com": [12227], "rts.ch": [19621], "people.php.net": [12250], "www.lyrishq.com": [9686], "veronmaksajat.fi": [17632], "app.gigster.com": [6658], "wiki.arkos.io": [1196], "fuwu.taobao.com": [15952], "switchvpn.net": [15702], "vikingvpn.com": [17711], "synergistscada.com": [15735], "hullcc.firmstep.com": [19183], "one.iu.edu": [8064], "cf2.vuze.com": [17879], "apps.nero.com": [11162], "tickets.cpanel.net": [2653], "force.ft.com": [5826], "barra.r7.com": [13393], "control.fraedom.com": [19193], "*.bornthiswayfoundation.org": [2223], "fonts.rovio.com": [13989], "a4-images.myspacecdn.com": [10848], "www.nextbus.com": [11360], "ftp.intevation.net": [8297], "www.lavabit.com": [9172], "adserv.quality-channel.de": [15271], "im.jd.com": [8423], "www.yify-torrent.org": [18616], "ezimages.eu": [5004], "www.bezrealitky.cz": [18995], "mirrors.berkeley.edu": [17240], "lolnet.org": [9569], "patron.fsf.org": [5600], "getmondo.co.uk": [19215], "www.smuxi.net": [15016], "docs.docker.com": [4616], "execed.economist.com": [5060], "www.teddyhyde.com": [16056], "www.megamozg.ru": [19394], "sysdig.com": [19651], "gqrcode.alicdn.com": [805], "cars.com": [2864], "center.kaspersky.com": [8806], "www.debian-facile.org": [4270], "join.acs.org": [929], "www.m6r.fr": [9699], "www.registro.br": [13735], "*.directline.com": [4526], "use.resrc.it": [13599], "it.umd.edu": [17263], "tickets.eth-0.nl": [5376], "knight.stanford.edu": [15384], "apt.syncthing.net": [15732], "webmail.schokokeks.org": [19570], "lifeline.org.au": [9332], "nyc-lane.wj32.org": [18390], "www.comstern.at": [3456], "as.cornell.edu": [3676], "forums.nexusmods.com": [6066], "www.sinsofasolarempire.com": [14853], "www.litecoin24.nl": [9463], "www.county-star.com": [3710], "site.inria.fr": [8159], "*.digia.com": [4475], "analytics.citizenweb.io": [3173], "lis.gov": [9082], "*.spire.umass.edu": [17265], "*.ipaddresslabs.com": [7788], "promo.calendar.mail.ru": [9874], "fencecenter.com": [5747], "*.portlandmercury.com": [12938], "cryptonit.net": [3884], "tuftsgiving.org": [16819], "www.skatelescope.org": [19595], "uptime.netcraft.com": [11219], "truevault.com": [16770], "zulius.com": [18922], "becu.org": [2175], "www.fjellner.eu": [3113], "ceskaposta.cz": [2974], "cnb.cx": [1920], "ovpn.se": [11688], "stats.ams-ix.net": [983], "*.allseenalliance.org": [837], "gearsourcecdn.com": [6484], "new.ftc.gov": [5720], "smail.websupport.sk": [18160], "www.inspirehep.net": [8178], "community-cache-uat.freescale.com": [6183], "www.mapzen.com": [9978], "user.img.todaoferta.uol.com.br": [16998], "mobil.danskebank.dk": [4145], "ideasonboard.com": [7930], "dinahosting.com": [4519], "www.livenation.co.*": [9481], "dev.hellobond.com": [7299], "www.sagernotebook.com": [14240], "support.calameo.com": [2732], "klondike.xiscosoft.es": [18576], "homepages.ihug.co.nz": [7956], "moodle.strode-college.ac.uk": [15528], "panel.bytemark.co.uk": [2489], "www.medistack.com": [10143], "tps30.doubleverify.com": [4709], "buyfacefx.com": [14793], "www.rsf.org": [13784], "www.tem.fi": [16909], "segment.com": [14558], "idm.mit.edu": [9749], "defenseindustrydaily.com": [4309], "*.minus.com": [10436], "www.piazza.com": [12658], "www.intellnews.net": [19299], "lists.linux-foundation.org": [9412], "www.ritter.vg": [13904], "s3o.ft.com": [5826], "www.goalworthy.com": [6800], "www.zerodium.com": [18761], "css.slough.gov.uk": [14971], "ship-ment.com": [14705], "www.zareason.com": [18797], "ssl.sifomedia.se": [15843], "www.yourchoiceyourhome.org.uk": [19794], "*.git.sourceforge.net": [15173], "iglo.tk": [3533], "acronymfinder.com": [484], "leastfixed.com": [9217], "forum.aircrack-ng.org": [18948], "rr.com": [13916], "yoursav.me": [18738], "navercorp.com": [11113], "*.pearsonvue.com": [12506], "catalog.video.msn.com": [9796], "dsa.debian.org": [4275], "ssl-sgc.static.rtbf.be": [14011], "www.rentex.com": [13775], "www.dn.no": [4055], "www.massagemag.com": [10049], "php.net": [12250], "sigxcpu.org": [14784], "classx-admin.stanford.edu": [15383], "blog.po.st": [12834], "*.samsungapps.com": [14266], "megafiles.se": [10225], "notalone.stanford.edu": [15383], "dfiles.eu": [4032], "secure.zooku.ro": [18899], "godaddy.com": [6773], "darujme.ludialudom.sk": [9652], "academy.amnesty.at": [958], "p8.raasnet.com": [13655], "www.jdoqocy.com": [3481], "spu.taobao.com": [15952], "elektro-paloucek.cz": [19152], "www.linnrecords.com": [9385], "*.www.odcdn.com": [11747], "www.spla.ulaval.ca": [17229], "kyb.buttercoin.com": [2463], "media.showcase.ca": [14742], "www.sierraclubgreenhome.com": [14771], "www.christianprayercenter.com": [3110], "*.faround.net": [5665], "123count.com": [24], "*.jobsgopublic.com": [8600], "*.topcoder.com": [16560], "*.hosting-advantage.com": [11192], "www.fralin.vt.edu": [17740], "kvarterhuset.kk.dk": [8730], "www.washpostco.com": [17989], "newsagent.scoop.co.nz": [14388], "hobocomp.com": [7439], "store.cpanel.net": [2653], "tchibo-ideas.de": [15985], "*.lighttpd.net": [9346], "www.kaspersky.com": [8806], "www.alum.kuleuven.be": [8816], "etreshop.com": [5393], "getdigital.de": [6611], "trinityhome.org": [16738], "www.forbrukerportalen.no": [6019], "canaldigital.se": [2803], "store.speedtree.com": [15254], "tts.uol.com.br": [16998], "www.octorate.com": [11717], "www.websense.com": [18083], "warnerartists.com": [17981], "tdcanadatrust.com": [15800], "my.webmoney.ru": [18076], "payments.livingsocial.com": [9517], "forum.kapsi.fi": [8791], "esp.attachmategroup.com": [1335], "xm1math.net": [18578], "passwordreset.leeds.ac.uk": [17318], "newyorkcasual.com": [11350], "blog.localist.com": [9541], "consumer.gov": [3598], "*.futurequest.net": [6283], "weather.sina.com.cn": [14840], "www.alts.trade": [302], "www.darkfasel.net": [4152], "*.ibb.ubs.com": [16929], "de.discussions.tomtom.com": [16540], "migros-shop.de": [19399], "*.cryptocloud.com": [3871], "get.cm": [6563], "filetransfer.bathnes.gov.uk": [1689], "khms0.google.com": [6841], "cms-smbmarketplace.cisco.com": [3162], "telepigeon.com": [16092], "www.megiteam.pl": [10234], "static7.startnext.com": [15412], "support.starrez.com": [15394], "serve.quickbitcoin.co.uk": [13360], "wepawet.iseclab.org": [8365], "*.3scale.net": [136], "*.fidelity.com": [5774], "gcmcomputers.com": [6310], "thesafety.us": [16236], "photo.isu.pub": [8382], "jobregister.aas.org": [235], "bcgolf.com": [1507], "www.reclog.jp": [13640], "i.mail.qq.com": [13285], "sig-io.nl": [14773], "capture.condenastdigital.com": [3554], "www.gumstix.com": [7021], "www.ok.de": [11626], "gov1.info": [6861], "www.govdex.gov.au": [6864], "www.ethercalc.net": [5378], "packs.clearlinux.org": [3233], "*.skydsl.eu": [14934], "ad-cdn.technoratimedia.com": [16044], "*.rtrcdn.com": [13772], "sentinelone.com": [14587], "discourse.mozilla-community.org": [10650], "www.friedhoefewien.at": [18284], "www.jococruise.com": [8588], "kortschakcenter.usc.edu": [17278], "www.pardus.org.tr": [12400], "use.sourcedna.com": [15171], "staging.eastmon.com.au": [5020], "developer.whitepages.com": [15614], "notalwaysromantic.com": [19441], "*.scrs.gc.ca": [2802], "workforceportal.elabor.com": [4926], "system8.rbwm.gov.uk": [19539], "aws.tracker.squidanalytics.com": [15334], "www.bandpass.me": [1637], "lenoblast.rt.ru": [13469], "cits.wustl.edu": [17993], "secure.startlogic.com": [15409], "sunsport.stanford.edu": [15383], "www.deltager.no": [4338], "koji.fedoraproject.org": [5730], "welcometometlife.com": [18190], "gap.stanford.edu": [15383], "account.deepin.org": [4302], "interest.sky.com": [14924], "members.internetdefenseleague.org": [8282], "eprints.dkit.ie": [4040], "*.studentaidcalculator.com": [15536], "app.curdbee.com": [17649], "www.trendmicro.com": [16717], "nowybip.pl": [11535], "patent.resource.org": [13207], "seattletechnicalbooks.com": [14454], "static.gog.com": [6365], "tv.slashdot.org": [14947], "recordstoreday.tuneportals.com": [13649], "*.colossal.com": [16373], "polk.com": [12879], "login.uptobox.com": [19718], "www.overpass-turbo.eu": [19474], "files.vbulletin.com": [17471], "shrewsburynorthshropshire.greenparty.org.uk": [6925], "ssl134.penguinhost.net": [12535], "image.ceneo.pl": [2936], "secusmart.com": [14539], "icq.com": [7690], "www.mtnacertification.org": [9800], "*.mynaweb.com": [10840], "reporting.shop.telegraph.co.uk": [16082], "sg.godaddy.com": [6773], "discount.teengfs.com": [13039], "qrz.com": [13313], "help.pardot.com": [12399], "www.filterbypass.me": [5814], "*.yourhosting.nl": [18736], "fpdownload.adobe.com": [615], "fgdb2010.imn.htwk-leipzig.de": [7114], "waarschuwingsdienst.nl": [11132], "www.orange.co.il": [12088], "caps-login.usc.edu": [17278], "www.underhandedcrypto.com": [17157], "myaccount.southend.gov.uk": [15193], "socialshows.com": [15061], "c.msn.co.jp": [9795], "consuwijzer.nl": [3594], "www.btcchina.com": [1557], "cdn8.openculture.com": [12006], "www.1time.aero": [65], "www.alexandrasangelgifts.co.uk": [798], "www2.guidestar.org": [7007], "www.tortoisegit.org": [16595], "intranet.crick.ac.uk": [19090], "zuno.sk": [18768], "www.voa.gov.uk": [19739], "www.hertz247.be": [7339], "auth.api.sonyentertainmentnetwork.com": [15149], "www.ebankingentoutesecurite.ch": [4870], "www.printfection.com": [13070], "*.corp.googleusercontent.com": [6844], "*.randombit.net": [13546], "m.voyage-prive.com": [17857], "www.junge-piraten.de": [8679], "www.monsterdivx.com": [10565], "*.corporate-ir.net": [3680], "stuwww.uvt.nl": [16445], "tofinosecurity.com": [16528], "nerdpol.ch": [11159], "www.slideshare.net": [14962], "www.ekmsecure22.co.uk": [5136], "st5.gismeteo.ru": [6669], "biz.zumzi.com": [18923], "www.adbrite.com": [564], "www.courtesan.com": [6897], "service.wienernetze.at": [18284], "*.38.de": [119], "www.*.vaforvets.va.gov": [17019], "service.garagegames.com": [6457], "*.piratenpartei.ch": [12284], "www.gannettridge.com": [6455], "coinpay.in.th": [3408], "admin.kapsi.fi": [8791], "www.billetten.dk": [1880], "meetrics.de": [10218], "www.hertz.be": [7339], "tastekid.com": [15973], "www.hertz.bh": [7338], "cdimage.linuxdeepin.com": [4302], "community.dynamics.com": [4829], "argosonline.es": [1186], "www.grepular.com": [6944], "aka.education.gov.uk": [19149], "2012.eurobsdcon.org": [5403], "*.claranet.nl": [3212], "northherts.greenparty.org.uk": [6925], "zaguan.unizar.es": [17356], "www.vpncritic.com": [17507], "oyoony.de": [19475], "app.clicktools.com": [3264], "accounts.login.idm.telekom.com": [16087], "ballotmeasuredomains.com": [1632], "www.wasilczyk.pl": [17995], "cloudsigma.com": [3293], "about.gigaom.com": [6644], "www.bonding.de": [2195], "*.abccommercial.com": [239], "www.sunybroome.edu": [2365], "zeist.nl": [11132], "fb.mobile.de": [19403], "exootlab.com": [5500], "www.audience-discovery.com": [1352], "static.domainnamesales.com": [4655], "i4.gallery.technet.microsoft.com": [10364], "passport.fanli.com": [5655], "www.vivaciti.net": [17796], "www.paper.li": [12379], "landalcampings.nl": [18490], "www.colossal.jp": [3447], "*.wemfbox.ch": [18199], "*.ostkcdn.com": [12170], "don.pasteur.fr": [12446], "resources.windowsphone.com": [18346], "paymentsportal.dell.com": [4335], "domeny.aerohosting.cz": [689], "www.wordnik.com": [18434], "*.earwolf.com": [5010], "honk.sigxcpu.org": [14784], "blog.cyphertite.com": [3986], "helpdesk.proxy.org": [13180], "login.rubiconproject.com": [14014], "*.staticwars.com": [15428], "www.blockexplorer.com": [2083], "i.technet.microsoft.com": [10364], "pathdefender.com": [12452], "planet.kde.org": [8718], "pong.qubitproducts.com": [13345], "vrijstellingoldtimer.nl": [19744], "www.eipocimb.com": [2606], "www.modelviewculture.com": [10518], "ruptly.tv": [14039], "ssl.apple.com": [1120], "rcitravelstore.co.uk": [18490], "www.uptonhomehardware.co.uk": [17402], "*.internetretailer.com": [17640], "static.dealer.com": [4256], "help-zh-tw.nike.com": [11401], "chicago2011.drupal.org": [4780], "sso.smq.mydatapipe.com": [10803], "www.onelogin.com": [11835], "kundeservice.tdc.dk": [15796], "parents.asu.edu": [1195], "icu-project.org": [8257], "www.perryellis.com": [12580], "manufrog.com": [9964], "www.lucky2u.net": [9649], "www.vgwort.de": [17483], "shop.list.co.uk": [16199], "bluemix.net": [2152], "www.superdrug.com": [15627], "anonym-surfen.de": [8623], "rack911.com": [13495], "*.bellareed.com": [10000], "www.mappingmediafreedom.org": [9974], "www.wwte11.com": [17937], "mail.bfriars.ox.ac.uk": [17271], "webpush.weixin.qq.com": [13285], "api.badgekit.org": [1605], "flipkart.com": [5926], "www.tptq-arabic.com": [15854], "www.bnz.co.nz": [1534], "schrodinger.com": [14747], "0kbhkort.kk.dk": [8730], "*.decisionbriefs.com": [4285], "*.wimpmusic.com": [18276], "express.servicenow.com": [14622], "tracfone.com": [16626], "krb-sjobs.brassring.com": [19017], "kis.hosteurope.de": [7516], "cache.gizmodo.com": [6695], "thestanfordfund.stanford.edu": [15383], "familie.plus.aok.de": [317], "code.theads.me": [16332], "*.sculpteo.com": [14430], "colors-il.com": [3446], "ovh.us": [11686], "libcal.com": [9288], "ausregistry.com.au": [1374], "*.trails.com": [4343], "yokl.com": [18689], "th.silverrushstyle.com": [14800], "vendercom.com": [17603], "direct.yandex.by": [18648], "anonbox.net": [1045], "baratikor.com": [4742], "iweb.com": [7875], "hwcdn.libsyn.com": [9321], "www-stage.websitealive.com": [18149], "signup.memberful.com": [10247], "www.jackson-it.de": [8485], "blogsp.ashleymadison.com": [1254], "humanresources.illinois.edu": [17258], "images1.q8car.com": [13278], "www.virginmedia.ie": [17738], "www.durham.police.uk": [4808], "connect.charter.com": [3020], "opengroup.org": [16205], "dev.ssllabs.com": [14180], "opalang.org": [11903], "www.gmo.jp": [6345], "www.broadcomfoundation.org": [2356], "uillinois.edu": [16960], "i5.walmartimages.com": [17965], "stat.webhostingsearch.com": [18038], "www.gscdn.nl": [19211], "www.telebrands.net": [16072], "consultldf.tauntondeane.gov.uk": [15978], "www.sydney.edu.au": [19649], "pfact.nottingham.ac.uk": [11528], "www.devpress.com": [4430], "cdn.imgstat.com": [3922], "www.privacy-cd.org": [13084], "mysweetiq.com": [10788], "graysofwestminster.co.uk": [6903], "www.spacepolicyonline.com": [15206], "svnlab.com": [14203], "leaseweb.com": [9215], "www.prisonlegalnews.org": [13076], "web-stat.net": [18043], "youtu.be": [18709], "thewesternworld.com": [16324], "datadepot.hscic.gov.uk": [19264], "speedof.me": [15257], "*.managers.hr.columbia.edu": [3448], "*.newslook.com": [11330], "www.nrk.no": [11546], "www.cals.cornell.edu": [3676], "drc.ohiolink.edu": [11762], "profile.oracle.com": [12082], "dealzon.com": [4023], "www.base-valid.com": [1686], "www.windowsitpro.com": [18345], "support.ixsystems.com": [7884], "projects.puppetlabs.com": [13232], "www.m.maps.yandex.kz": [18652], "www.geeksquad.co.uk": [6498], "mastozytose-schweiz.org": [10060], "www.securityexperten.com": [14529], "torlock.com": [16568], "i3.zst.com.br": [18915], "biostat.wustl.edu": [17993], "www.turris.cz": [16846], "brandisty.com": [2285], "xmission.com": [18530], "ads.shareth.ru": [14680], "apple.com.cn": [1122], "americanflyertrains.com": [942], "*.gstatic.com": [6839], "hakko.com": [7171], "r00tz-org.theidentityproject.com": [13390], "*.bloo.ie": [2114], "www.linux-magazine.com": [9394], "b0.raptrcdn.com": [19533], "mysullivannews.com": [10819], "tescodiets.com": [16138], "belarus.indymedia.org": [8085], "sa1.www4.irs.gov": [7819], "apschedule.com": [336], "www.bobafamily.com": [2171], "thomascook.com": [16375], "*.myheritage.nl": [10834], "*.myheritage.no": [10834], "www.pinta-outlet.fi": [12698], "admissions.plymouth.gov.uk": [19500], "hivos.nl": [7430], "status.rackspace.com": [13506], "*.blutmagie.de": [2159], "iop.org": [8195], "rma.demandmedia.com": [4344], "huntonprivacyblog.com": [19266], "www.riscure.com": [13899], "www.saucytime.com": [14304], "www.auphonic.com": [1370], "fncash.com": [5581], "backblaze.com": [1595], "manage.rooof.com": [13966], "berkeleylug.com": [1785], "donate.shadowproof.com": [14655], "jabber.hot-chilli.net": [7546], "www.becoquin.com": [1720], "questions.medicaid.gov": [19391], "business.kaspersky.ru": [8807], "smjg.org": [15010], "loopia.se": [9606], "sheffield0to19.sheffield.gov.uk": [14694], "eecscal.mit.edu": [9749], "stupidcensorship.com": [15548], "cdn2.colocationamerica.com": [3435], "libraryh3lp.com": [11492], "www.killscreen.com": [8887], "wikidot.com": [18294], "www.orangestatic.com": [12091], "avadirect.com": [1438], "*.ch.ch": [19052], "wanglibao.com": [17971], "www.washingtonpostmedia.com": [17989], "blog.siteground.com": [14865], "www.jansbrug.nl": [8513], "myleague.com": [10766], "zeringo.com": [18836], "auth.jino.ru": [8575], "powernotebooks.com": [13004], "2014.appseccalifornia.org": [1133], "netpol.org": [11246], "www.perception.psy.ulaval.ca": [17229], "4kbhkort.kk.dk": [8730], "*.qoo10.cn": [13307], "www.fishbase.us": [5881], "*.craftstats.com": [3753], "secure.landal.com": [18490], "digitalrepository.smu.edu": [14140], "searchnetworking.de": [16018], "petitions.southglos.gov.uk": [15189], "bp.nserver.ru": [11548], "shop.kagi.com": [8766], "www.sherrin.com.au": [14701], "velocitymicro.com": [17598], "jolexa.net": [8620], "*.yimg.com": [18684], "deutsch.istockphoto.com": [19309], "runbox.com": [14037], "halifax.co.uk": [7174], "shubh.am": [14749], "www.shutthebackdoor.net": [14752], "www.evisa-vietnam.com": [5460], "kayak.co.uk": [8823], "unix4lyfe.org": [17354], "*.git.sf.net": [15173], "images.secureserver.net": [14511], "redbullusa.com": [13666], "dbs.com.sg": [4010], "cert.se": [2582], "www.gavinhungry.io": [6473], "boots.no": [2215], "vip.chbtc.com": [3036], "ese.engineering.osu.edu": [11760], "lvs.truehits.in.th": [16774], "www.romdashboard.com": [13447], "www.channel4.com": [3003], "atrpms.net": [369], "tolaris.com": [16538], "www.virtualinventions.com": [17752], "static2.urbandictionary.com": [17407], "p0.qhimg.com": [13302], "walsall.greenparty.org.uk": [6925], "*.tibco.com": [15817], "*.myleague.com": [10766], "forums.stablehost.com": [15357], "maps.yandex.com": [18651], "www.rt.com": [13468], "travelzoo.com": [16700], "www.akamai.com": [761], "remote.modern.ie": [10519], "gamefly.co.uk": [6419], "treasury.uillinois.edu": [16960], "servizi.tiscali.it": [16498], "*.craftbanter.com": [3752], "malwaredomainlist.com": [9930], "hants.gov.uk": [7196], "*.1984.is": [40], "assets-s3.usmagazine.com": [17417], "www.weather.yandex.by": [18648], "ads.pro-market.net": [13108], "support.upc-cablecom.ch": [19716], "www.unlimited401k.com": [17359], "www.pcisecuritystandards.org": [12224], "crc.id.au": [2656], "disman.tl": [4564], "support.recordedfuture.com": [13650], "ld-1.itunes.apple.com": [1120], "www.geogebra.org": [6537], "bitgamer.com": [1996], "petakillsanimals.com": [12241], "*.lunarpages.com": [569], "*.16personalities.com": [38], "a.fsdn.com": [216], "blog.engineyard.com": [5265], "www.purechat.com": [13242], "www.chcemvediet.sk": [3037], "www.stedebroec.nl": [11132], "jinx.com": [8576], "www.3v4l.org": [139], "*.jotformpro.com": [8637], "wiki.ornl.gov": [11693], "webdevstudios.com": [18060], "www.atlseccon.com": [18968], "gnu.io": [6356], "www.cecpdonline.org": [2948], "corporate.navteq.com": [10872], "hastrk3.com": [7236], "www.londonstockexchange.com": [9577], "www.survs.com": [15662], "b2b.clickvoyage.ru": [3254], "coinimal.com": [3405], "recrute.parrot.com": [12410], "walletgenerator.net": [17962], "p.acxiom-online.com": [508], "christophertruncer.com": [3114], "rss.mmedia.me": [10281], "www.xiscosoft.info": [18576], "motherboard.vice.com": [17667], "id.google.*": [6837], "allposters.com": [835], "*.www.starwoodhotels.com": [15414], "yellowpagesoptout.com": [18672], "tracker.openitp.org": [11947], "choutatsu.riken.jp": [13430], "mynewsdesk.com": [10841], "i4.microsoft.com": [10364], "s.update.chartbeat.com": [3018], "*.chatter.com": [3034], "lh.co.th": [9283], "www.zenger.nl": [18828], "hpi.de": [7090], "namecentral.com": [11018], "*.wdtinc.com": [18036], "crowdtangle.com": [3822], "us.pycon.org": [13263], "www.datatables.net": [4188], "keckapps.usc.edu": [17037], "*.blogspot.de": [2107], "accredible.com": [464], "pandawhale.com": [12356], "sape.ru": [14296], "nervous.io": [11163], "lendingclub.com": [9246], "frsupport.msi.com": [9792], "www.sptag.com": [15322], "www.ndia.org": [11049], "softlayer.com": [15094], "repeaterstore.com": [13777], "www.arquetype.org": [1211], "www.lettre-de-motivation-facile.com": [9266], "www.thecthulhu.com": [16334], "video.eetimes.com": [4906], "www.eup-network.de": [5397], "img.borsen.dk": [2224], "rsa.com": [13453], "relate.org.uk": [13751], "www.notenoughshaders.com": [11516], "gidforums.com": [6332], "sitedata.xramp.com": [18588], "my.nanorep.com": [11033], "*.imss.caltech.edu": [2756], "discuss.codemirror.net": [3372], "citp.princeton.edu": [13064], "inside.wpp.com": [17923], "*.leo.org": [9256], "*.smartmoney.net": [11321], "1.*.wdfiles.com": [18294], "www.etext.illinois.edu": [17258], "mtnacertification.org": [9800], "static.criteo.com": [3801], "ri.gov": [19552], "segpaycs.com": [14556], "boozallen.com": [2220], "www.nervoussystems.org": [11164], "cdn.distilnetworks.com": [4573], "www.it.johnshopkins.edu": [8611], "jcea.es": [8540], "juno.co.uk": [8684], "www.ibm.com": [7675], "dropdeadpaper.com": [4770], "instraffic.com": [8197], "view.us.adjug.com": [526], "secure.torrentday.com": [16579], "whmcs.com": [17906], "www.soraiseyourglasses.com": [15045], "gansvr2.desy.de": [4399], "test.hertzequip.com": [7372], "hackover.de": [7157], "www.wweek.com": [18312], "zipcloud.com": [8689], "netcompetition.org": [11175], "www.krlmedia.nl": [8748], "*.companieshouse.gov.uk": [3506], "www.playerauctions.com": [12803], "www.clubcompy.com": [3320], "barnskospecialisten.se": [1679], "*.sciverse.com": [14375], "dr-qubit.org": [4734], "shop.amnesty.de": [960], "buffy.eecs.berkeley.edu": [17240], "voa.va.gov": [17019], "cambridge.greenparty.org.uk": [6925], "www.youtube.in": [18709], "hacdc.org": [7131], "www.mlno6.com": [9761], "discussions.agilebits.com": [727], "cheznous.com": [18490], "u4.uicdn.net": [16958], "www.youtube.ie": [18709], "ssl.theatlantic.com": [16246], "www.epson.com.mx": [5330], "www.scrambl.is": [14403], "www.fossies.org": [19191], "cable6.net": [2702], "lunarpages.com.mx": [569], "www.awltovhc.com": [3481], "prxy.com": [13185], "www.andesi.org": [998], "www.mwop.net": [10738], "stucomp.stanford.edu": [15383], "www.elance.com": [5140], "*.wac.edgecastcdn.net": [5079], "www.gq-magazine.co.uk": [6378], "s.clickability.com": [4827], "www.wusmhealth.wustl.edu": [17993], "*.aspi.org.au": [1401], "*.arizona.edu": [17299], "distilleryimage1.instagram.com": [8182], "todaoferta.uol.com.br": [16997], "online.illinois.edu": [17258], "nxtck.com": [11593], "www.myendnoteweb.com": [5242], "blogs.amnesty.org.uk": [971], "www.gemklub.hu": [6518], "contact.comparethemarket.com": [3511], "manager.travelspecialistsite.com": [16699], "www.media.gta.arch.ethz.ch": [4975], "hcm-fusioncrm.oracle.com": [12082], "connect.ala.org": [298], "www.tornadoweb.org": [16574], "cdn.mysql.com": [10780], "bugs.mageia.org": [9847], "koellinglab.engineering.osu.edu": [11760], "www.openwrt.org": [11992], "www.2buntu.com": [90], "*.homecomputing.fr": [7477], "www.ocelot.li": [11710], "static.mailigen.com": [9886], "www.cert.org": [2583], "bronx.esat.kuleuven.be": [8816], "hackerone.com": [7142], "www.cacert.org": [2520], "oesrc.researchcompliance.vt.edu": [17740], "superguarantee.com": [15613], "gradimages.com": [6881], "www.dbs.com.sg": [4010], "*.a1000words.com": [383], "www.rr.com": [13916], "www.canon.co.nz": [2809], "docuwiki.hearstdigitalnews.com": [7271], "shaun.net": [14685], "buy.stubhub.com": [15534], "fazschule.net": [5554], "www.oneweb.cz": [11648], "ccs.com": [2551], "csedweek.org": [2669], "www.the-body-shop.ch": [3645], "static.ijreview.com": [7747], "www.dct.org.uk": [19105], "*.ad.ad-srv.net": [15962], "customer.comcast.com": [3461], "develop2050.vcd.org": [17474], "*.bloodhoundgang.com": [2116], "www.onemonth.com": [11850], "www.bluegenio.com": [2131], "*.store.winzip.com": [18333], "www.tehtri-security.com": [15807], "ab-dep-op-elogbook.web.cern.ch": [2575], "wiki.cxense.com": [2694], "financialprotection.usa.gov": [17029], "coventgarden.london": [19083], "www.zvv.ch": [19806], "pingxx.com": [12690], "i.warosu.org": [17983], "www.amnesty.se": [972], "www.isc.org": [7821], "*.wapy.com": [17894], "*.mycdsglobal.com": [2564], "myaccount.courierpostonline.com": [3715], "www.allmybase.com": [846], "admin.kuleuven.be": [8816], "pics.cdn.librarything.com": [9305], "broxtowe.firmstep.com": [19183], "*.towelroot.com": [19691], "g.christianbook.com": [3112], "blog.asmallorange.com": [214], "www.ubuntu-art.org": [19461], "passport01.leeds.ac.uk": [17318], "connect.news.com.au": [11338], "spektrix.com": [19617], "hotwire.com": [7561], "cryptopro.ru": [3861], "nullrefer.com": [11573], "research.sparx.org.nz": [15227], "form.sk.mbank.eu": [9722], "sso.debian.org": [4275], "www.weblogin.umich.edu": [17266], "secure.torbay.gov.uk": [16569], "www.golflink.net": [6820], "data.appguru.com": [1106], "seventorrents.org": [14637], "www.golfdigestschool.com": [3551], "apl.osu.edu": [11760], "www.nie-wieder-vds.de": [11391], "www.hyper.sh": [7644], "deansnewsletter.stanford.edu": [15382], "streetmoda.com": [15521], "webmail.hermes.cam.ac.uk": [17243], "fr.centos.org": [2942], "lastfm-z.plexapp.com": [12815], "www.openmedianow.net": [11960], "www.mechse.uiuc.edu": [16956], "i.ju.taobao.com": [15952], "simon.butcher.name": [14815], "curate.us": [3923], "itaccounts.nottingham.ac.uk": [11528], "corporate.aldi.co.uk": [299], "www.asciinema.org": [1247], "screendaily.com": [14409], "support.bioconductor.org": [1905], "beonespark.com": [1512], "corecode.at": [3661], "data.nodc.noaa.gov": [11083], "digitalocean.com": [4495], "*.vpnbook.com": [17862], "www.bluemovie.net": [2126], "bluessl.com": [2135], "midnight-commander.org": [10377], "www.explore.co.uk": [7452], "vendorsvoice.idg.se": [7705], "pajustice.org": [12539], "www.123count.com": [24], "vc-kundenservice.de": [17472], "www.linuxluddites.com": [9424], "prettyincash.com": [13039], "na3.www.gartner.com": [6463], "*.coxds.com": [3738], "library.ohio-state.edu": [11761], "staging-charts.ycharts.com": [18613], "vedomosti.ru": [19730], "ewellnessmag.com": [4992], "cccure.org": [2541], "www.poodle.io": [12277], "*.wsws.org": [17931], "communities.cisco.com": [3162], "image.syncsearch.jp": [15731], "ad.netshelter.net": [11208], "jekyllrb.com": [19320], "*.livenation.be": [9481], "www.scieneo.de": [14383], "www.hsmr.cc": [7584], "www.seancassidy.me": [14440], "www.ruag.com": [19559], "insightcommunity.com": [5940], "so36.net": [19605], "support.t-mobile.com": [15772], "oneday.lvrj.com": [9160], "economicimpact.publish.uic.edu": [17231], "console.online.net": [11870], "connect.ulaval.ca": [17229], "ilearningcontent.oracle.com": [12082], "*.frype.com": [4742], "clear-code.com": [3227], "chukotka.rt.ru": [13469], "*.nadaguides.com": [10867], "*.pcworld.com": [12232], "www.sencha.com": [14576], "www.cinemacon.com": [3146], "httpbin.org": [7591], "pss.sk": [13187], "client.presspage.com": [13033], "www.liu.se": [9084], "three.ne.jp": [15814], "www.diybanter.com": [4037], "www.gogobot.com": [6808], "forensic.to": [18831], "admin.websupport.cz": [18092], "online.colchester.gov.uk": [3414], "i-cares.wustl.edu": [17993], "au3.effectivemeasure.net": [5109], "forums.unrealircd.org": [17364], "hamburg.freifunk.net": [6192], "dnb.com": [4138], "goturkey.com": [6796], "www.piraten-oberpfalz.de": [12715], "v3.pebblepad.co.uk": [12509], "labs.tineye.com": [16468], "www.alditalk.de": [299], "assets.metartnetwork.com": [10296], "realtime.email": [13625], "happyassassin.net": [7201], "*.iamplify.com": [7672], "abakus.freenet.de": [6180], "www.isoc.org": [7829], "*.infinet.com.au": [8092], "www.bestlawyers.com": [1802], "www.delta.com": [4336], "zoomeye.org": [18902], "sealserver.trustkeeper.net": [16782], "www.cloudfoundry.com": [3300], "eaglerockreservation.org": [5006], "videocast.nih.gov": [11052], "my-uat.symantec.com": [15715], "buy.yahoo.com.tw": [18636], "events.ccc.de": [2538], "failover.intel.com": [8205], "groupon.gr": [6975], "webmail.hcltech.com": [7050], "login.mail.sohu.com": [15103], "www.zugaina.com": [18918], "www.biteasy.com": [1992], "rhizome.org": [13863], "alumni.gsb.stanford.edu": [15383], "ourvacationcentre.net": [18489], "www.flybuys.com.au": [5961], "feeds.amung.us": [18267], "odmwheels.com": [11616], "www.libreboot.org": [9315], "*.webalert.jp": [18053], "vavinet.vutbr.cz": [17522], "my.enalean.com": [5229], "www.motherboard.tv": [10607], "threatvault.paloaltonetworks.com": [12349], "nz.taobao.com": [15952], "www.americanscientist.org": [946], "wiki.piratenpartei.at": [12720], "www.zeist.nl": [11132], "thebookpeople.co.uk": [16218], "www.bloggeek.me": [2101], "masterchan.org": [10053], "bitte.overclockers.at": [12164], "www.editorialmanager.com": [5087], "guichet.jura.ch": [19648], "purecars.com": [13236], "www.erinn.org": [5344], "m.addthisedge.com": [572], "whatsmychaincert.com": [18235], "cdn.aim.com": [290], "today.gmu.edu": [6544], "adpub.desjardins.com": [4391], "postident.deutschepost.de": [19112], "duck.co": [4792], "*.gamedesire.net": [6430], "jive.com": [8584], "onespace.kcl.ac.uk": [8899], "*.addthis.com": [571], "cms.corporate.walmart.com": [17964], "www.bookshop.theguardian.com": [16288], "rtb.sitescout.com": [14871], "learn.code.org": [3345], "cnc.exmail.qq.com": [13285], "kr.forums.oracle.com": [12082], "www.truecrypt71a.com": [16767], "join.epoch.com": [5325], "www.spamgourmet.com": [15214], "www.rawgithub.com": [13581], "secure.hostsearch.com": [7514], "*.swmed.edu": [17283], "pb.switchadhub.com": [15701], "ngvpn37.nvidia.com": [10985], "www.marcrogers.org": [9981], "download.videolan.org": [17688], "int.anon-ib.net": [1037], "www.cryptovpn.me": [19094], "jason-3.cnes.fr": [2634], "order.zen.co.uk": [18815], "viber.com": [17664], "www.wizbangpop.com": [18389], "ghost.org": [6628], "ea.com": [5151], "*.www.eastbay.com": [5017], "www.8r.com": [202], "www.ftlgame.com": [5608], "ko.community.dell.com": [4335], "scandinavianphoto.se": [14334], "passwordbox.com": [12433], "apps.admob.com": [532], "benetech.org": [1778], "mobilesecurity.norton.com": [11505], "bcol.barclaycard.co.uk": [1664], "watsi.org": [18004], "pgeveryday.ca": [13121], "www.coop.no": [3646], "cdn.ywxi.net": [18753], "deepin.com": [4302], "educationsso.tue.nl": [15874], "support.citrix.com": [3178], "acenet-inc.net": [471], "umd3.mycdn.me": [10824], "gongyi.jd.com": [8422], "backup.ob.f-secure.com": [5541], "mlsecproject.org": [9759], "www.bityes.com": [1952], "www.coevorden.nl": [11132], "free.360totalsecurity.com": [109], "ictserv1.lsbu.ac.uk": [9098], "help-en-us.nike.com": [11401], "www.arrivabus.co.uk": [1216], "*.npr.org": [10950], "cablesurf.de": [2705], "micahflee.com": [10340], "labs.inspirehep.net": [8178], "www.woothemes.com": [18416], "info.undp.org": [16987], "www.uow.edu.au": [17350], "brueckenkurse.thm.de": [15811], "code.freenet.de": [6180], "www.moar.so": [10483], "www.mysullivannews.com": [10819], "*.trekaroo.com": [16708], "btcxindia.com": [1575], "shop.xeu.com": [18510], "deluge-torrent.org": [4339], "www.linux.org.ru": [9408], "upload.xhamster.com": [18515], "learnshare.com": [9210], "callcenter.berkeley.edu": [17240], "www.khub.net": [8724], "webreg.vsoe.usc.edu": [17278], "mediafactory.fm": [10168], "*.kobobooks.nl": [8949], "instantssl.com": [8185], "ru.godaddy.com": [6773], "*.dfiles.eu": [4032], "www.jayisgames.com": [8534], "emily.st": [5209], "www2.bibl.liu.se": [9083], "heml.is": [7316], "bioshockinfinite.com": [1901], "intevation.net": [8297], "*.arxiv.org": [1148], "*.xda-developers.com": [18508], "assembla.com": [1278], "eforms.copeland.gov.uk": [19079], "eu.elsevierhealth.com": [5187], "numbering.neustar.biz": [11280], "alumni.utah.edu": [17288], "www.hearthbuddy.com": [2230], "thebigweddingmovie.com": [16248], "digitallibrary.norfolk.gov.uk": [19436], "my.netclean.com": [11187], "www.campfireunion.com": [2781], "www.facebook.com": [5620], "isites.harvard.edu": [7219], "informationactivism.org": [8125], "www.retailsails.com": [13823], "www.comcav.com": [3451], "img2.dditscdn.com": [4239], "www.freemailer.ch": [6179], "my.jumpline.com": [8676], "feedback.truste.com": [15856], "www.platt.com": [12789], "ipse.co.uk": [7797], "www.subgenius.com": [3128], "easymail.ca": [5026], "www.internetessentials.com": [19300], "www.nos.pt": [11512], "www.itbookshelf.com": [7859], "secure.rochford.gov.uk": [13934], "nuevocloud.com": [19446], "m.tnaflix.com": [16518], "files.ozbargain.com.au": [12195], "www.helloneighbour.com": [7295], "helpsu.stanford.edu": [15383], "*.bluessl.com": [2135], "westorangehistory.com": [18210], "centreforeffectivealtruism.org": [2955], "homesharing.itunes.apple.com": [1120], "cumbria.police.uk": [3918], "i1.social.microsoft.com": [10364], "dashboard.tawk.to": [15979], "factbook.ecc-platform.org": [4879], "www.4armed.com": [157], "www.otr.im": [11681], "gridserver.com": [6951], "id.guim.co.uk": [7014], "comptepro.leboncoin.fr": [19351], "www.media-proweb.de": [10145], "www.drupal.org": [4780], "edp1.adriver.ru": [534], "tweegy.nl": [16867], "www.shubh.am": [14749], "nouba.dsi.cnrs.fr": [6195], "ist.mit.edu": [9749], "massmail.argonit.cz": [1183], "webmail.gogetssl.com": [6780], "swe.fronter.com": [19200], "cordis.europa.eu": [5421], "cdn.livechatinc.com": [9480], "www.t-mobile.nl": [15771], "max.se": [10090], "git.xiph.org": [18575], "bx.businessweek.com": [2455], "reasons.to": [13637], "www.cs.ox.ac.uk": [17271], "de-captcher.com": [4240], "www.uk.adjug.com": [526], "alternativet.dk": [883], "gunadiframework.com": [453], "bioconductor.riken.jp": [13430], "*.smfboards.com": [14138], "www.theme.co": [16340], "blog.cacert.org": [2520], "redbull.co.uk": [13666], "www.nylas.com": [11597], "prenumeration.idg.se": [7705], "sync.ad-stir.com": [513], "www.logoyes.com": [9562], "gallery.debconf.org": [4268], "*.dntrck.com": [4072], "helpdesk.xmarks.com": [18579], "www.boredtodeath.me": [2222], "www.ifttt.com": [7725], "www.omniture.com": [11803], "securem.ikea.com": [7959], "bhosting.ru": [1519], "www.op5.com": [11902], "www.ikgalekkerslapen.nl": [7960], "architectsjournal.co.uk": [1162], "www.profesia.sk": [19521], "birmingham.greenparty.org.uk": [6925], "profiles.allthingsd.com": [840], "delivery.swid.switchads.com": [15701], "*.hawaiianair.com": [7246], "antifa.cz": [1068], "www.videotron.com": [17700], "*.jacobinmag.com": [8489], "img.linux.cn": [9402], "www.valeofglamorgan.gov.uk": [17532], "www.wooconf.com": [18415], "es.chaturbate.com": [3035], "garron.me": [6461], "status.illinois.edu": [17258], "www.waindigo.org": [17949], "datalink2.labcorp.com": [9122], "homelessworldcup.org": [7480], "downloads.malwarebytes.org": [9929], "drupal-images.tv2.dk": [15881], "ar.witness.org": [18382], "www.onthehub.com": [19460], "www.paypal.com": [12467], "cdni.wired.co.uk": [18363], "learningwithoutlimits.educ.cam.ac.uk": [17243], "giving.stanford.edu": [15383], "oae.uic.edu": [17231], "byod.qq.com": [13285], "ict-helpdesk.lsbu.ac.uk": [9098], "media.coindesk.com": [3394], "legislationsurveys.com": [9231], "www.gomez.com": [3544], "limeservice.com": [9355], "shared.sub.infousa.com": [8110], "www.mobil.yandex.com.tr": [18649], "customercare.23andme.com": [74], "*.adobelogin.com": [619], "www.kompany.com": [8969], "libraryreserve.com": [19363], "www.discoveryplacekids.org": [4556], "ko.libreoffice.org": [9311], "mail.aol.com": [321], "travelocity.ca": [16698], "*.www.erowid.org": [5351], "www.citywerkz.com": [3198], "status.runscope.com": [14038], "audit.median.hu": [10177], "www.elementary.io": [5158], "www.staticwhich.co.uk": [18240], "www.makezine.com": [9918], "www.helponclick.com": [7305], "www.verizonbusiness.com": [17626], "ixsystems.com": [7884], "www.srclib.org": [15339], "magictouch.com": [9858], "whois.serveriai.lt": [14616], "www.notalwaysrelated.com": [19441], "binary.cr.yp.to": [3748], "www.tweetdeck.com": [16869], "vinilox.eu": [17724], "forge.laravel.com": [9157], "osl.iu.edu": [8064], "www.csedweek.org": [2669], "support.software.dell.com": [4335], "www.virtualspirits.com": [17754], "www.yahoo-help.jp": [18634], "xs.powerdns.com": [12990], "*.careerbuilder.co.uk": [2841], "ehsaweb.wusm.wustl.edu": [17993], "aboutthedata.com": [428], "www.facebook.se": [5623], "www.utinam.cnrs.fr": [6195], "copyright.illinois.edu": [17258], "www.imperialcollegeunion.org": [8015], "www.foscam-bg.com": [6068], "www.forumwizard.net": [6064], "messages.moodle.net": [10573], "www.easymail.ca": [5026], "wordstat.yandex.com": [18651], "nz.norton.com": [11505], "*.tickets.com": [16425], "s3.uicdn.net": [16958], "www.idi.ntnu.no": [10964], "www.secure.jhu.edu": [16296], "images.jitsmart.com": [8675], "www.aftenposten.no": [711], "auth.whiskeymedia.com": [18244], "minimania.migros.ch": [19399], "defendinnovation.org": [4908], "ecs-store.engineering.osu.edu": [11760], "visatovietnam.org": [17765], "www.wallet.la": [17961], "www.membernumberlookup.acs.org": [929], "uoflphysicians.com": [17377], "aereo.com": [685], "lists.dns-oarc.net": [4059], "www.kimpluscraig.com": [8891], "www.studentchaptersreview.acs.org": [929], "www.fotpms.plymouth.ac.uk": [12833], "ashampoo.com": [1250], "selectel.ru": [14565], "screenit.com": [14407], "mgid.com": [9739], "*.bitnami.org": [1944], "exep.jpl.nasa.gov": [10869], "immunitysec.com": [8007], "ionaudio.com": [7777], "hyperelliptic.org": [7645], "www.poshliving.com": [12944], "www.active24.cz": [18938], "pool.gridcoin.us": [6950], "assets1.postalheritage.org.uk": [12958], "syn.5min.com": [178], "circle.wustl.edu": [17993], "openaccess.easthants.gov.uk": [5013], "www.seattleprivacy.org": [14453], "www.awe.sm": [1460], "www.switchvpn.net": [15702], "cdnjs.dmjx.dk": [4600], "nicotine-anonymous.org": [11388], "boum.org": [2242], "www.jesus.cam.ac.uk": [17243], "mobi.pccu.edu.tw": [12220], "bugzilla.openvz.org": [11991], "edelivery.oracle.com": [12082], "s.bit.ly": [2002], "stgeorges.nhs.uk": [10913], "*.tkb.ch": [19333], "www.scottish-country-cottages.co.uk": [18490], "lists.gnu.org": [6357], "password.kuleuven.be": [8816], "fsrwiwi.htwk-leipzig.de": [7114], "challengepost.com": [2986], "support.verio.com": [17622], "paymium.com": [12480], "campushuesca.unizar.es": [17356], "www.cricketwireless.com": [3795], "bodum.com": [2173], "www.pyd.io": [13268], "yingxiao.taobao.com": [15952], "idp.peoplefluent.com": [12548], "goodnet.com": [6826], "company.drweb.com": [4783], "uofi.uillinois.edu": [16960], "fxsystems.com": [5611], "design.yammer.com": [18647], "academics.de": [437], "*.umaine.edu": [17321], "www.metin2.co.nz": [10316], "community.office365.com": [11745], "tutor.com": [16852], "*.state.gov": [17067], "pulpix.co": [13223], "www.nhn.com": [10909], "www.rscweb.org": [13997], "kenexapods.com": [8847], "www.clyp.it": [3326], "listes.openstreetmap.fr": [12045], "blog.bitmain.com": [2003], "recalls.gov.au": [13123], "*.sc.hodesdigital.com": [1795], "resortquestsecure.com": [18490], "feedback.arma3.com": [1202], "kanotix.org": [8782], "gcmprm.oracle.com": [12082], "checkip.dedyn.io": [19107], "www.wilkinsons-auctioneers.co.uk": [19760], "frim.nl": [6220], "remote.cathaypacific.com": [2904], "comodogroup.com": [3504], "www.hidepay.net": [7397], "*.adjuggler.net": [528], "tver.rt.ru": [13469], "www.ideone.com": [7943], "wx1.qq.com": [13285], "mtgsy.net": [10371], "cdn.gnd-tech.com": [6352], "vsexshop.ru": [17865], "informatick.com": [8122], "fraedom-cdn.com": [19192], "www-cdn1.pardot.com": [12399], "inf2011.dosowisko.net": [4688], "www.2ksports.com": [88], "philatelie.deutschepost.de": [19112], "ea.voyage-prive.co.uk": [17856], "payperpost.com": [12469], "hackers.fi": [7147], "strategicplan.illinois.edu": [17258], "bethere.co.uk": [16076], "evision.kent.ac.uk": [17317], "my.knightswarm.com": [8944], "claimyourname.io": [3207], "ctswholesalesunglasses.com": [2686], "*.oscommerce.com": [12117], "www.pressable.com": [13036], "www.acikakademi.com": [474], "www.addresspicker.io": [578], "argoscareers.com": [1186], "hanford.gov": [7194], "extensis.com": [5523], "static.licdn.com": [9085], "smdd.adviva.net": [668], "online.barrons.com": [11321], "www.clearchain.com": [3231], "eina.unizar.es": [17356], "www.smartertrack.com": [14997], "www.paginazero.com.br": [12334], "10mtweet.netmeister.org": [11243], "alumni.fit.edu": [5942], "control.thebrighttag.com": [2325], "media2.woolworths.com.au": [18422], "digitec.ch": [4508], "www.zeushash.com": [18852], "www.karmankardon.nl": [7208], "hm.com": [7083], "opentext.com": [11984], "www.morpho.hu": [10599], "www.gn.apc.org": [1294], "space.dtu.dk": [16031], "rage3d.com": [13526], "area17.com": [1179], "button.flattr.com": [5911], "zmap.io": [18762], "www.milepoint.com": [10393], "medicare.gov": [19392], "www.mclu.org": [9727], "l.rapimg.com": [13561], "push.web4all.fr": [18052], "customerservice.aldi.com.au": [299], "organdonation.gov.wales": [6860], "thehub.walthamforest.gov.uk": [17966], "gotinder.com": [16469], "cs.bite.lt": [1991], "youtube.fi": [18709], "archiveofourown.org": [1167], "mjg.in": [9753], "si.gmu.edu": [6544], "paraduxmedia.com": [12387], "backbox.org": [1597], "www.dyankov.eu": [4818], "levny-hosting.cz": [9274], "d.prbrds.com": [13110], "ngvpn10.nvidia.com": [10985], "www.independent.co.uk": [8053], "www.pgi.com": [12248], "www.stg.comcast.com": [3461], "netbeans.org": [11185], "*.utk.edu": [17341], "*.tidalhifi.com": [16432], "apps.irs.gov": [7819], "auditorius.ru": [1362], "arin.net": [338], "roadside-mba.stanford.edu": [15383], "labs.spotify.com": [15296], "old-wiki.freenetproject.org": [6181], "*.analytics.edgekey.net": [988], "www.dashpay.io": [4164], "*.web4u.cz": [18051], "postofficeshop.de": [19112], "www.mapbox.com": [9968], "arvixe.com": [1238], "docs.vogogo.com": [19740], "static.hosteurope.de": [7516], "www.hubspot.com": [7594], "iproduction.com": [7805], "*.greystripe.com": [6948], "www.estoniaevoting.org": [5368], "www.kenengba.com": [8846], "www.openmedia.org": [11959], "www.hackthissite.org": [7136], "www2.webmetrics.com": [18133], "universal.iperceptions.com": [19275], "dropbox.wustl.edu": [17993], "lifesaving.com": [9334], "www.anomos.info": [1033], "transferwise.com": [16664], "stg.gogobot.com": [6808], "raymond.cc": [13585], "greasyfork.org": [6905], "fckme.org": [12266], "www.allistene.fr": [855], "*.neobux.com": [11147], "secure-os.org": [14480], "*.housingwire.com": [7564], "zomato.com": [18890], "www.12foothedgehog.com": [28], "asteriskexchange.com": [1300], "hammacher.com": [7182], "ppm.lowes.com": [9636], "www.rspca.org.uk": [13461], "freakattack.com": [5593], "ekmsecure6.co.uk": [5135], "nordkappnett.no": [11478], "richmondandtwickenham.greenparty.org.uk": [6925], "polleverywhere.com": [12880], "hackinparis.com": [7135], "accessories.dell.com": [4335], "bettercrypto.org": [1826], "simrussia.com": [14806], "*.man.com": [9935], "lyris.com": [9686], "www.nazwa.pl": [11117], "webarchive.jira.com": [8577], "www.ameba.jp": [18954], "teachingcommons.stanford.edu": [15383], "ohnopodcast.com": [15332], "www.gg.gov.au": [6874], "*.factoryexpo.net": [5627], "shop.heise.de": [7288], "external.ak.fbcdn.net": [5700], "extranet.fmed.ulaval.ca": [17229], "cbsstore.com": [2530], "xrel.to": [18589], "mondediplo.com": [10542], "accessnow.createsend.com": [3773], "www.borvilag.aldi.hu": [299], "*.afsa.gov.au": [1392], "admissions.com": [609], "imagecache.allposters.com": [835], "48months.ie": [148], "www.peopleclick.com": [12551], "rmcybernetics.com": [13794], "chelmsford.greenparty.org.uk": [6925], "dev.globus.org": [6747], "consumerprivacy.merkleinc.com": [19397], "netfronts.com": [11191], "docs.derby.gov.uk": [4380], "www.urlaubspiraten.de": [19719], "austrade.gov.au": [1379], "img.honest.com": [7481], "secure-checkout.t-mobile.com": [15772], "rostov.rt.ru": [13469], "plugins2.status.net": [15437], "www.computerfulfillment.com": [3535], "git.spatialbuzz.com": [15230], "www.sberbankdirect.de": [14323], "*.ivn.us": [8057], "www.peterodding.com": [12593], "zh.greatfire.org": [6907], "hertzentertainment.com": [7372], "cdn-ru.thinksteroids.com": [9737], "www.subgraph.com": [15558], "blesk.sk": [2069], "how-old.net": [7567], "chatsecure.org": [3031], "amnesty.org.tr": [970], "discuss.popcorntime.io": [12915], "conference.joomla.org": [8627], "wiki.openstreetmap.org": [11979], "ipcc.ch": [7789], "www.eliminatejunkemail.com": [12336], "erhverv.tdc.dk": [15796], "domino.watson.ibm.com": [7675], "www.gridcoin.us": [6950], "nbl.osu.edu": [11760], "openknowledge.stanford.edu": [15383], "lovefilm.*": [9625], "www.wdr5.de": [18015], "www.flockport.com": [5936], "www.verisigninc.com": [17623], "wiki.edubuntu.org": [5068], "cm1.criticalmass.com": [3802], "scoop.intel.com": [8209], "de.norton.com": [11505], "www.zerorobotics.org": [18838], "www.strategysignals.com": [15511], "laughable-jam.surge.sh": [15653], "mysql.fr": [10780], "www.pinsentmasons.com": [12146], "ix.equinix.com": [5334], "bardwilhome.com": [1665], "sites.cardiff.ac.uk": [2835], "cuttlefish.com": [3945], "*.cbs.com": [2526], "accounts.snapchat.com": [15029], "canary.silentcircle.com": [14786], "help.egopay.com": [5116], "www.wellcomelibrary.org": [19753], "idp.mit.edu": [9749], "www.kulcs-soft.hu": [9033], "academy.oracle.com": [12082], "wiki.whatwg.org": [17904], "om.cnet.com.au": [2526], "git.videolan.org": [17688], "www.reyn.ir": [13852], "x2go.org": [18499], "linux-tips.org": [9399], "www.sydostran.se": [15711], "newcastle.gov.uk": [11315], "www.ciphershed.org": [3151], "*.adpay.com": [623], "chidsweb1.admin.uillinois.edu": [16960], "*.imperial.ac.uk": [8016], "academy.kaspersky.com": [8806], "live.piratenpartei.de": [12721], "*.applebees.com": [1124], "img2.wsimg.com": [14507], "app3.checksconnect.com": [7207], "www-astro.physics.ox.ac.uk": [17271], "westyorkshireobservatory.org": [18214], "www.uoflphysicians.com": [17377], "www.myub.buffalo.edu": [17297], "localsearchassociation.org": [18668], "en.nullday.de": [11574], "cart.rackspace.com": [13506], "discourse.mailinabox.email": [9880], "eng.umd.edu": [17263], "orangeplant.co.uk": [19467], "*.deviantart.net": [4423], "www.db.ripe.net": [13895], "www.onehub.com": [11834], "banu.com": [1656], "ilivid.com": [7754], "nicegraphs.web.cern.ch": [2575], "www.lists.apple.com": [1120], "www.android-arsenal.com": [1004], "pfennigparade.de": [12609], "layerbnc.org": [9182], "auth.athensams.net": [11918], "tectonic.com": [16055], "www.jamesvillas.co.uk": [18490], "v.tumblr.com": [16826], "amazon.de": [917], "www.kpdyer.com": [8757], "pandoblog.com": [12358], "archives.fedoraproject.org": [5726], "trust-guard.com": [16780], "texaco.com": [16149], "bortarsasag.hu": [2225], "optimizegoogle.com": [12072], "www.pdc.prd.xfinity.com": [19784], "spreadshirt.be": [15300], "time.yandex.by": [18648], "mail.multiseek.net": [10696], "www.cals.vt.edu": [17740], "www.attictv.com": [1339], "www.studentaffairs.stonybrook.edu": [15480], "csdb.dk": [2668], "www.research.cals.vt.edu": [17740], "www.trinityhome.org": [16738], "www.regjeringen.no": [13739], "www.grabcad.com": [6879], "debian.piwik.org": [12733], "*.poivron.org": [12985], "pagekite.net": [12330], "www.omniture-static.com": [11802], "www.andreafabrizi.it": [1000], "habbo.fi": [7122], "ma.mesaazcorruptionreport.com": [13896], "vcommerce.com": [17580], "download.geogebra.org": [6537], "www.lordsoftheblog.net": [9609], "www.alertaenlinea.gov": [11810], "usa.anon-ib.su": [1039], "www.backstreetmerch.com": [1603], "military.stanford.edu": [15383], "cheapassfiction.com": [3044], "marketpress.com": [10009], "identity.lbl.gov": [9065], "novartisart.com": [11529], "dartmouth.edu": [4158], "www.sexslurp.com": [14641], "*.startcom.org": [15407], "pure-privacy.org": [13237], "craftcoffee.com": [3754], "wiki.sitelock.com": [14867], "www.archaicbinary.net": [1160], "www.corbettreport.com": [3659], "sipsolutions.net": [14124], "channeladvisor.com": [2999], "www.mykplan.com": [270], "www.arin.net": [338], "ch9.ms": [2979], "www.collabora.co.uk": [3419], "ui.rk.doublepimp.com": [4717], "lab.msdn.microsoft.com": [10364], "yho.com": [18678], "xbee.net": [18548], "wildfiregames.com": [18308], "down.360.cn": [106], "www.nominate.acs.org": [929], "flexinvestments.net": [5914], "*.tu-harburg.de": [15876], "www.qksz.net": [3481], "it2.nl": [7842], "www.tc3.edu": [16543], "www.madetech.com": [9839], "*.primus.com": [13062], "cybergolf.com": [3972], "mail.o2active.cz": [16076], "yespic69.com": [18676], "widgets.bufferapp.com": [2402], "elements.yandex.kz": [18652], "education.gov.uk": [19149], "ssl.washingtonpost.com": [17990], "charts.ycharts.com": [18613], "*.infusedsystems.com": [8135], "citialumninetwork.com": [3169], "www.globalservices.bt.com": [1551], "www.northwarks.gov.uk": [11498], "drugpolicy.org": [4775], "hosting.asp.net": [353], "api.mk2.com": [19402], "www.dtcc.edu": [4323], "theapp.voicelessonstotheworld.com": [11300], "www.scadacs.org": [14086], "*.bodybuilding.com": [2174], "service.ringcentral.com": [13891], "nl.mouseflow.com": [10624], "www.maarssen.nl": [11132], "wowimg.zamimg.com": [18782], "*.glimg.net": [6820], "jucycruize.co.nz": [8463], "www.bitcoin-contact.org": [1958], "www.edgewall.org": [5083], "demisto.com": [4352], "nets-danid.dk": [11247], "obermassing.at": [11699], "forum.namecoin.info": [11024], "film.list.co.uk": [16199], "schwabplan.com": [14372], "email-lists.org": [5191], "www.di.dk": [3566], "www.godaddymobile.com": [6774], "nerd.lavaboom.com": [9173], "ca.com": [2511], "bornthiswayfoundation.org": [2223], "www.kicknews.co.uk": [8878], "www.aan.sh": [391], "a1.jimstatic.com": [8571], "darwinbuild.macosforge.org": [9820], "www.security.nl": [14524], "www.spotify.com": [15296], "bundesrat.de": [2433], "stellar.org": [15464], "a5.websitealive.com": [18149], "br.redhat.com": [13675], "owncloud.documentfoundation.org": [16221], "www.a1afastcash.com": [220], "languageperfect.co.nz": [9146], "wdg2.apple.com": [1120], "live.asp.net": [353], "www.kimberly-clark.com.*": [8889], "*.tradedoubler.com": [16640], "hhg.osu.edu": [11760], "www.clevercoin.com": [3239], "geeksphone.com": [6506], "315.taobao.com": [15951], "bartleby.com": [1684], "www.comcast.com": [3461], "theora.org": [16345], "nattstad.se": [11099], "www.usuhs.mil": [17053], "cdw.com": [2566], "americancensorship.org": [5783], "2008mail.sina.com.cn": [14842], "freeporngif.com": [6145, 6146], "www.subdownloader.net": [15554], "hilversum.nl": [11132], "www.buttercoin.com": [2463], "betabeat.com": [1816], "sso.secureserver.net": [14511], "ap.mnocdn.no": [712], "www.ouifm.fr": [12138], "tripadvisor.co.nz": [19697], "*.kixeye.com": [8729], "www.oblic.com": [11608], "www.pugetsystems.com": [19527], "pcache.alexa.com": [795], "poderpda.com": [12845], "opendemocracy.net": [12032], "www.myheritageimages.com": [10835], "www.schema.org": [19568], "ealing.greenparty.org.uk": [6925], "www.londonpreparesseries.com": [9572], "alivenotdead.com": [820], "extranet.wienerlinien.at": [18284], "www.questionnaires.ecn.ulaval.ca": [17229], "investsmart.com.au": [8316], "asapps.artsci.wustl.edu": [17993], "www.hslu.ch": [7583], "my.tv.mail.ru": [9874], "www.vineyardvines.com": [17723], "nationaleombudsman.nl": [11132], "www.lysator.liu.se": [9084], "blogs.fau.de": [17311], "www.emptywheel.net": [5221], "myaccount.houstonchronicle.com": [7565], "wholesale.1688.com": [36], "codereview.qt-project.org": [13314], "post.harvard.edu": [7219], "myjobs.gloucestershire.gov.uk": [6749], "cache1.neodevlda.netdna-cdn.com": [11147], "www.tableau.com": [15897], "ssl2buy.com": [14177], "btwifi.co.uk": [1579], "www.getambassador.com": [6584], "calfutures.berkeley.edu": [17240], "developer.filemobile.com": [5800], "maxmind.com": [10097], "daydeal.ch": [19103], "www.sourcecoast.com": [15170], "defr.dict.cc": [4455], "runbook.io": [14036], "optin.stopwatching.us": [15488], "babeljs.io": [1592], "geeknetmedia.com": [6505], "www.pipping.org": [12702], "lists.openwrt.org": [11992], "mailoutinteractive.com": [9889], "www.netviewer.com": [11258], "support.balabit.com": [1624], "comparitech.com": [3514], "www.ntchosting.com": [10960], "skrilnetz.net": [14920], "nokia.co.uk": [11461], "*.sfdcstatic.com": [14249], "greyhound.ca": [6947], "casper.infradead.org": [8132], "miscssl.360buyimg.com": [112], "files.gyazo.com": [7035], "i2.gallery.technet.s-msft.com": [14058], "bargains4business.com.au": [1669], "www.diffuse.ca": [4464], "smartmoney.com": [11321], "adserver.exoticads.com": [5501], "labs-staging.data.gov": [4175], "careers.kch.nhs.uk": [10913], "dashboard.rapleaf.com": [13551], "*.bishopi.com": [1917], "timesofmoney.com": [16466], "m.maps.yandex.kz": [18652], "eas8.emediate.eu": [5203], "www.cornerstone.wustl.edu": [17993], "apps.uat.communities.coverity.com": [3734], "interactivemediaawards.com": [8238], "assets.halowaypoint.com": [7176], "public.enthought.com": [5299], "direct.yabumi.cc": [18629], "sheamortgage.com": [8431], "investorflow.com": [14799], "markets.on.nytimes.com": [11000], "auth.awempire.com": [647], "the109.org": [16240], "jura.ch": [19648], "directory.unm.edu": [16991], "www.mix-computer.de": [9752], "virusec.com": [17760], "ssl-static.libsyn.com": [9321], "apiservices.krxd.net": [9016], "www.webarch.net": [18108], "trac.linuxcounter.net": [9391], "www.partnerinfo.lenovo.com": [9251], "cede.ch": [19047], "bury.gov.uk": [19027], "www.qrsolutions.com": [13287], "alionet.org": [815], "publicwhip.org.uk": [13216], "spinoff.nasa.gov": [10869], "gofundme.com": [6779], "www.groupon.com.br": [6973], "yadui.business.yahoo.co.jp": [18640], "www.npm.im": [11538], "www.insurancetech.com": [16927], "webpub.mit.edu": [9749], "auth.telegraph.co.uk": [16082], "omniupdate.com": [11797], "stuaff.usc.edu": [17278], "myplaydirect.com": [10774], "fotoservice.telekom.de": [4410], "adultswim.com": [18942], "bpt.me": [2366], "humanrights.gov.au": [1395], "thebea.st": [1920], "www.mouseblocker.com": [10623], "images.iop.org": [8195], "*.townnews.com": [16614], "www.postaffiliatenetwork.com": [12952], "sharesix.com": [14667], "rd.io": [13595], "respectnetwork.com": [13812], "www.veloplus.ch": [19732], "eforms.redbridge.gov.uk": [13683], "cdn.connect.mail.ru": [9874], "cjfe.org": [2619], "secure.capitalone360.com": [2819], "knihy.nic.cz": [11379], "paste.ee": [12436], "longdistance.uaa.alaska.edu": [17233], "ss.zumzi.com": [18923], "nips.cc": [10930], "www.purchasing.osu.edu": [11760], "*.pentacon.de": [14358], "*.valuedopinions.co.uk": [17545], "internetlivestats.com": [8283], "corp.sts.microsoft.com": [10364], "groups.drupal.org": [4780], "static.youmix.co.uk": [18715], "forum.kde.org": [8718], "opensvc.com": [11972], "www.recordedfuture.com": [13650], "www.mpc-hc.org": [19412], "click-sec.com": [3241], "simba3.web.cern.ch": [2575], "static.stubhub.co.uk": [15534], "www.gtk-apps.org": [19461], "www.moh.nhs.uk": [10913], "forms.oig.hhs.gov": [7062], "lbhf.gov.uk": [9064], "www.manhattan-institute.org": [9953], "scintilla.utwente.nl": [14387], "uden.nl": [11132], "www.guug.de": [6398], "www.lambda-tek.com": [9136], "www.cosic.esat.kuleuven.be": [8816], "ulaval.ca": [17229], "static.usatoday.com": [17031], "*.apply2jobs.com": [1127], "www.highfidelity.io": [7402], "www.intuitlabs.com": [8305], "videopp.com": [17689], "aboutus.org": [425], "www.necu.org": [11130], "form.education.gov.uk": [19149], "m.netbet.fr": [11186], "www.exeterfriendly.co.uk": [5491], "www.superblock.net": [15625], "superbreak.com": [7452], "blosxom.com": [2123], "www.ci.uchicago.edu": [17246], "my.xmission.com": [18529], "*.stlinux.com": [14191], "www.purinastore.com": [13246], "funker530.com": [6266], "fastspringblog.com": [5676], "*.morrisons.co.uk": [10601], "mirror.debianforum.de": [4276], "delaware.gov": [15420], "www.swca.org": [14206], "33option.com": [103], "bugs.chromium.org": [3119], "docker.com": [4616], "img4.picload.org": [12661], "static-titanium.cursecdn.com": [3934], "harlandclarkewebsmart.com": [7207], "contactus.com": [3606], "services.bournemouth.gov.uk": [2251], "www.voyagegroup.com": [17859], "www.exactag.com": [5479], "getjive.com": [8584], "carphonewarehouse.com": [2861], "www.insa-lyon.fr": [7771], "www.bright-things.com": [2318], "www.infosec.ox.ac.uk": [17271], "resources.mentoringcentral.net": [10265], "images.proboards.com": [13110], "*.uiowa.edu": [17316], "smokefree.gov": [19603], "cpbonlinebanking.com": [3430], "greyhound.com.mx": [6947], "luxuryreplica.net": [9678], "promotionbuilder.livingsocial.com": [9517], "*.actionallocator.com": [493], "staging.hellobond.com": [7299], "www.picoville.com": [12666], "*.kikatek.com": [8885], "brownschool.wustl.edu": [17993], "www.phoronix.com": [12637], "aldi.dk": [299], "www.realworldocaml.org": [13629], "superhexagon.com": [15620], "b.jd.com": [8423], "rrl.osu.edu": [11760], "help.ubuntu.com": [17102], "www.sysadmincasts.com": [15750], "www.caremad.io": [2847], "www.fredandpickles.co.uk": [6114], "barter.vg": [1683], "repo.parabola.nu": [12384], "membercentre.fairfax.com.au": [5634], "www.adperium.com": [624], "www.aldi.pt": [299], "www.adeccowaytowork.com": [580], "content.worldnow.com": [18450], "projects.coin-or.org": [3531], "www.emily.st": [5209], "in-the-sky.org": [8027], "secure.thestar.com": [16575], "www.humanityplus.org": [7614], "www.gavinnewsom.com": [6472], "devzone.missinglinkelectronics.com": [10455], "marthastewartweddings.com": [10032], "www.hertz.co.za": [7363], "*.banu.com": [1656], "www.aldi.pl": [299], "internet.csr.nih.gov": [10926], "amblin.io": [922], "imgking.co": [19286], "www.rttire.com": [13476], "www.nobitcoinlicense.org": [11442], "au.norton.com": [11505], "wiki.junge-piraten.de": [8679], "seal.osu.edu": [11760], "www.seeedstudio.com": [14552], "www.ripmixmake.org": [4908], "protect.iu.edu": [8064], "www.notevenpast.org": [11517], "www.iea.org": [8265], "www.sundayworld.com": [15598], "*.vk.com": [17490], "*.bighugelabs.com": [1854], "www.siia.net": [15100], "support.braintreepayments.com": [2274], "asset-2.soupcdn.com": [15167], "developer.snapengage.com": [15026], "www.padlister.com": [12322], "*.ja.net": [8414], "www.ocronusa.net": [11713], "userimages.static.zgncdn.com": [18855], "my.commbank.com.au": [3477], "www.cdon.se": [2562], "*.minted.com": [10434], "brooklinecollege.edu": [2363], "*.renttherunway.com": [13772], "www.byte.nl": [2486], "ctftime.org": [2684], "tracker-software.com": [16631], "myheritage.dk": [10834], "informatik.imn.htwk-leipzig.de": [7114], "www.ubuntu-de.org": [17093], "pdos.csail.mit.edu": [9749], "gogoinflight.com": [6807], "www.bitinstant.com": [1933], "blackoutcongress.org": [2055], "*.itu.int": [7852], "support.zend.com": [18821], "www.geizhals.de": [6511], "roadiq.axosoft.com": [1477], "russian.101domain.com": [12], "worldforpets.com.au": [18460], "supportkb.riverbed.com": [13907], "downloads.freenetproject.org": [6181], "dhansak.collabora.co.uk": [3419], "i3.gallery.technet.s-msft.com": [14058], "www.archiveofourown.org": [1167], "*.violetindigo.com.au": [17728], "static.yubico.com": [18745], "tune.yandex.com.tr": [18649], "mcvpacific.com": [8226], "responder.wt-safetag.com": [18170], "wiki.metroethernetforum.com": [10323], "londonist.com": [9584], "vodafone.co.uk": [17813], "legiscan.com": [9230], "blog.bitmex.com": [1935], "helpdesk.panopto.com": [12364], "uw.edu": [17077], "www.flexnow.ruhr-uni-bochum.de": [14031], "www.structuralengineering.de": [7114], "myaccount.talktalkbusiness.co.uk": [15930], "onlinecensorship.org": [11875], "mobileimages.lowes.com": [9636], "www.searscommerceservices.com": [14446], "*.auctions.godaddy.com": [6773], "*.prxy.com": [13185], "www.ew-online.de": [4990], "www.openvirtualizationalliance.org": [12027], "isolde.web.cern.ch": [2575], "carbonwind.net": [2832], "scottlinux.com": [14402], "www.library.cornell.edu": [3676], "awaps.yandex.ua": [18656], "zcarc.com": [7372], "www.iwoulddo.it": [7879], "static.jiasule.com": [8566], "*.fwc.gov.au": [5632], "globaldatabase.wustl.edu": [17993], "*.shopatron.com": [14724], "mysql.com": [10780], "www.tdrevolution.com": [15802], "paymybill.uic.edu": [17231], "media.ibm.com": [7675], "amnesty.org": [956], "shwyz.ca": [14756], "theiphonewiki.com": [16330], "partners.drweb.com": [4783], "vanessatorrivilla.com": [7973], "oxfamirelandunwrapped.com": [12189], "www-s.housing.illinois.edu": [17258], "affiliate.ashleymadison.com": [1255], "thevideo.me": [16239], "www.aok-gesundheitspartner.de": [317], "videoly.co": [17697], "www2.sharefile.com": [14663], "login.zooniverse.org": [18905], "www.mcitizen.com": [9865], "dnb.no": [4058], "files.nyaa.se": [11596], "workkafe.com": [18437], "ox.mediabistro.com": [10169], "dev.getclouder.com": [6568], "berryreview.com": [1798], "mediacentre.vodafone.co.uk": [17813], "raptureready.com": [13563], "mycalendarbook.com": [10748], "nintendoworldreport.com": [11419], "mi-ms.com": [9991], "dev.withsix.com": [18379], "filemobile.com": [5800], "t1.mediamath.com": [10157], "ocaml.janestreet.com": [8511], "lgscout.com": [9600], "open.plymouth.ac.uk": [12833], "www.gbatemp.net": [6305], "www.globalpolicy.org": [6730], "piglit.freedesktop.org": [6126], "service1.ess.apple.com": [1120], "blogs.forbes.com": [6017], "www.dynatech.de": [4832], "support.linksys.com": [9382], "www.discourse.org": [4545], "dentistry.usc.edu": [17278], "siteadvisor.com": [14863], "www.nemertes.com": [11144], "controllermax.com": [3622, 3623], "*.c13.hesecure.com": [7374], "www.medicalxpress.com": [10186], "www3.bio.org": [1522], "*.suggester.pl": [15583], "www.hslda.org": [7099], "email.bild.de": [1873], "elearning.sydney.edu.au": [19649], "ensq.dict.cc": [4455], "www.wings.buffalo.edu": [17297], "customerservice.costco.com": [3694], "dennikn.sk": [4365], "www.dar.fm": [4006], "apps.rackspace.com": [13506], "billycreative.com": [1885], "mirrors.fedoraproject.org": [5726], "esi2calculator.hmrc.gov.uk": [7084], "www.cs.cf.ac.uk": [2835], "www.trendweight.com": [16712], "authzth.alipay.com": [817], "www.online.osu.edu": [11760], "www.eregulations.ct.gov": [2680], "*.bris.ac.uk": [17301], "proxy.org": [13180], "www.gigafreak.net": [6648], "bitvisor.org": [1950], "*.thetimes.co.uk": [16463], "a.fiksu.com": [5787], "puui.qpic.cn": [13309], "downloads.sf.net": [15174], "providesupport.cn": [13173], "cert.org": [2583], "cxsecurity.com": [3950], "www.vaes.vt.edu": [17740], "foscam-bg.com": [6068], "pekwm.org": [12529], "informationweek.com": [8124], "biz.kolektiva.com": [8963], "www.webmail.byte.nl": [2486], "mysql.active24.cz": [18938], "www.thedaywefightback.org": [16267], "www.sparklabs.com": [15220], "dogsbodyhosting.net": [4635], "uploading.com": [17394], "*.bitmask.net": [2005], "torrentbutler.eu": [16578], "t.channeladvisor.com": [3000], "kb.vpsfree.cz": [19743], "www.vwp.su": [17881], "*.brave.com": [19018], "mail.happyassassin.net": [7201], "www.coolkeywest.com": [3642], "bepress.com": [1783], "videomeet.telekom.de": [4410], "nsslabs.com": [10959], "www.scrapbookroyalty.org": [3010], "www.mdshooters.com": [10043], "developer.basespace.illumina.com": [7968], "slotsfrisoren.dk": [14970], "www2.hostingsolutions.cz": [7531], "www.sha2sslchecker.com": [14115], "theweek.com": [16323], "mail.math.ias.edu": [7669], "chriscoyne.com": [3104], "nerdster.org": [19430], "marineshop.net": [9999], "*.startssl.net": [15407], "expo.getbootstrap.com": [6609], "getgophish.com": [19214], "military.ncpw.gov": [11078], "unmaintained.git.collabora.co.uk": [3419], "ad.targetingmarketplace.com": [1353], "www.bclaconnect.ca": [1508], "fablabtacoma.com": [5614], "umd.edu": [17263], "lefebvre.org": [9190], "*.sysward.com": [15749], "login.andersonvalleypost.com": [4989], "www.micron.com": [10357], "tdesktop.com": [15989], "collectifstoptafta.org": [3422], "amd.com": [925], "media.community.dell.com": [4335], "mysql9.vas-hosting.cz": [19729], "help.zscaler.com": [18913], "www.cdromland.nl": [2567], "eltatar.com": [5189], "www.startlab.sk": [15411], "code.jd.com": [8423], "assets1.vzaar.com": [17883], "dotultima.com": [4706], "www.bofh.it": [2178], "en.inria.fr": [8159], "www.kentuckyonehealth.org": [8854], "mybenefitscalwin.org": [10745], "api.search.cam.ac.uk": [17243], "linux.conf.au": [9404], "*.medical-treatments-management.com": [10188], "lists.openmamba.org": [19465], "vectormediagroup.com": [17586], "arbejdsgiver.jobzonen.dk": [8604], "www.wefightcensorship.org": [18028], "account.sogou.com": [19606], "tuakiri.ac.nz": [16812], "dragonbyte-tech.com": [4737], "how-to-box.com": [7571], "dom.riastatic.com": [13428], "stgraber.org": [15353], "forums-stage.oracle.com": [12082], "services.devon-cornwall.police.uk": [4429], "shop.whyopencomputing.ch": [19758], "asset1.betterplace.org": [1828], "agmk.net": [729], "elementary.io": [5158], "www.xmission.com": [18530], "1105-sub.halldata.com": [7175], "www.showrss.info": [14744], "chimeric.de": [3081], "support.ooyala.com": [11899], "lists.gnutls.org": [6763], "confirmsubscription.com": [3571], "www.selenic.com": [10279], "charities.org": [950], "*.cafepress.com": [2716], "*.allplayers.com": [834], "www.directbox.tv": [4529], "trane.com": [19693], "www.bth.se": [1572], "ubermedia.com": [17086], "www.sedo.de": [14543], "www.sgno.org": [14112], "uguu.se": [17118], "mip2014.engineering.osu.edu": [11760], "account.1and1.com": [51], "thediplomat.com": [16187], "cmw.htwk-leipzig.de": [7114], "lists.immunityinc.com": [8007], "lists.grok.org.uk": [6963], "www.afford.com": [705], "www.register.com": [13732], "metal-detector-town.com": [10305], "europe-consommateurs.eu": [19166], "thefind.com": [16335], "code.openhub.net": [12013], "www.pollendiary.com": [12882], "www.boarnsterhim.nl": [11132], "freeworld.thc.org": [15810], "linkinghub.elsevier.com": [5185], "*.cfr.org": [3702], "datacenter.cj2.nl": [2618], "delivery.c.switchadhub.com": [15701], "library.polyu.edu.hk": [12891], "www.eindhoven.nl": [5127], "m.andersonvalleypost.com": [4988], "barvaux.org": [1685], "support.pinterest.com": [12699], "comms.informahealthcare.com": [8119], "i.ngx.cc": [11376], "www.kontalk.net": [8980], "*.staradvertiser.com": [7485], "static.hootsuite.com": [7488], "hendrik.luup.info": [7318], "facebook.us": [5623], "service.optify.net": [12067], "nor.fronter.com": [19200], "mijnlenen.snsbank.nl": [14144], "www.noxa.de": [19444], "ds.hpci.nii.ac.jp": [10928], "*.phobos.apple.com": [1119], "homebello.com": [7466], "*.uimserv.net": [16961], "www.californiasunday.com": [2749], "images.amcnetworks.com": [18953], "www.kontoapi.de": [8982], "hertztrucks.com.au": [7336], "nancysgonegreen.com": [11028], "adultportal.tameside.gov.uk": [19660], "www.openkeychain.org": [12038], "haystacksoftware.com": [7250], "myinterfase.com": [10836], "eplanning.derby.gov.uk": [4380], "cssm.entrust.com": [5303], "planet.chromium.org": [3119], "britishgas.co.uk": [2340], "sp0.baidu.com": [1619], "colossal.jp": [3447], "www.spcala.com": [14153], "junglee.com": [8680], "metrica.yandex.com.tr": [18649], "www.ecb.europa.eu": [5421], "avm.de": [1453], "*.hoovers.com": [7490], "www.livingsocial.com": [9517], "kosmetik-per-klick.de": [10196], "linuxquestions.org": [9415], "rapidsite.jp": [13559], "www.zimbatm.com": [18867], "smartling.com": [14999], "imp.ovh.net": [12173], "themoviedb.org": [16299], "fz.htwk-leipzig.de": [7114], "grupoavante.org": [6988], "ssl.datamotion.com": [19102], "www.effectivemeasure.com": [5108], "cms.hhs.gov": [7062], "4cdn.org": [158], "incisivemedia.com": [8045], "zyvoxassist.com": [18771], "www.bath.ac.uk": [17300], "www.thebaffler.com": [16247], "mesamatrix.net": [10288], "*.alrc.gov.au": [1396], "www.wifilib.fr": [18285], "faq.1and1.com": [51], "www.epe.admin.cam.ac.uk": [2763], "phparch.com": [12652], "www.myshaklee.com": [14656], "cdns-files.deezer.com": [4303], "*.mega.nz": [10223], "mload.freenet.de": [6180], "janus.wayf.dk": [17896], "www.tsdd.org": [15860], "www.eastbayteamservices.com": [5018], "delivery.api.qbrick.com": [13300], "www.bitpay.com": [1941], "mobile.yandex.by": [18648], "intelexit.org": [8212], "owa.bury.gov.uk": [19027], "linphone.org": [9389], "www.wholesalelabels.com": [18265], "www.londondrugs.com": [9579], "cdn1.xamarin.com": [18540], "www.thunderkick.com": [16406], "eprize.net": [4946], "bmail.berkeley.edu": [17240], "contrastsecurity.com": [19078], "upmedia.plymouth.ac.uk": [12833], "takeaway.com": [15915], "ui.bingads.microsoft.com": [10364], "yourfone.de": [18735], "ingdirect.com.au": [7768], "hetman.epuap.gov.pl": [19139], "www.onehelp.cz": [11643], "apoc.freedesktop.org": [6126], "temando.com": [16104], "blog.bartbania.com": [1682], "seals.trustsign.com.br": [16783], "w00tsec.blogspot.com.*": [2113], "www.thejournal.ie": [16224], "www.barnsley.nhs.uk": [10913], "*.ramnode.com": [13538], "rate.taobao.com": [15952], "ai.pricegrabber.com": [13052], "shamansgarden.com": [14657], "hbdm.hbsp.harvard.edu": [7219], "lists.96boards.org": [209], "*.inspectlet.com": [8176], "asset-3.netbeans.org": [11185], "www.cdon.no": [2562], "status.groupon.com": [6974], "forms.monmouthshire.gov.uk": [10560], "fellowship.fsfeurope.org": [5602], "ally.com": [865], "rev.com": [13837], "community.kde.org": [8718], "wiki.flirble.org": [16191], "*.perceptivepixel.com": [12556], "frascatiproducties.nl": [6107], "everplans.com": [5451], "chatpro.ap.dell.com": [4335], "wiki.geogebra.org": [6537], "www.kasserver.com": [8706], "ostel.co": [12128], "myspace.com": [10847], "dashboard.stanford.edu": [15383], "educatetheworld.com.au": [5094], "toysrus.com": [16621], "www.proultratrim.com": [13117], "static.googlewatchblog.de": [6849], "gwent.greenparty.org.uk": [6925], "greek.rit.edu": [13434], "www.ameliaandersdotter.eu": [927], "gd.libreoffice.org": [9311], "daad.de": [6553], "www.watsi.org": [18004], "www.amd.com": [925], "i.grvcdn.com": [6900], "courses.washington.edu": [17291], "babergh.greenparty.org.uk": [6925], "www.foodsharing.de": [19188], "aspen.com": [1272], "certsimple.com": [2965], "www.hkn.de": [7079], "www.directadvert.ru": [4524], "www.libraryreserve.com": [19363], "motherboard.tv": [10607], "www.vbseo.com": [17469], "*.dodlive.mil": [17028], "own-mailbox.com": [12180], "vespermarine.co.*": [17651], "*.hpcloud.com": [7091], "niskanencenter.org": [11423], "admin.linuxfoundation.org": [9412], "compiz-fusion.org": [3522], "www.guldencoin.com": [7016], "thecompassionclub.org": [16261], "wikis.oracle.com": [12082], "www.woltlab.com": [18403], "status.stormpath.com": [15500], "vtv.fi": [17537], "onapp.com": [11808], "www.telex.cc": [16097], "www.myfolder.net": [10830], "scripts.kissmetrics.com": [8727], "blog.lookout.com": [9601], "earthfirst.org.uk": [5008], "myshr.med.usc.edu": [17278], "www.qt.io": [13315], "webmail.hslu.ch": [7583], "www.ezgram.com": [5002], "olincareers.wustl.edu": [17993], "www.lib.ncsu.edu": [11492], "sq.jd.com": [8423], "ponychat.net": [12898], "wildcardcorp.com": [18305], "touch.meetic.pt": [10215], "certifiedsecure.com": [2970], "affiliates.websharks-inc.com": [18084], "www.crazzed.com": [3767], "img.tradepub.com": [16645], "www.haskell.org": [7229], "www.xmpp.jp": [18524], "static.popads.net": [12902], "payconnect.net": [4893], "ssl.perfora.net": [19487], "internetfreedomfestival.org": [19301], "www.dma.ens.fr": [4930], "aax-us-east.amazon-adsystem.com": [909], "s.gotomeeting.com": [6787], "shanghaicenter.harvard.edu": [7219], "store.playstation.com": [12795], "www.greenit-bb.de": [6917], "www.aulani.jobs": [1367], "accesd.desjardins.com": [4391], "www.nuget.org": [11562], "inventati.org": [1413], "jfrog.com": [8433], "www.vulnhub.com": [17871], "my.syncplicity.com": [15730], "elearning.zg.ch": [19648], "rigb.org": [13994], "thehub.intel.com": [8209], "lgbtrc.usc.edu": [17278], "ourlocality.org": [12144], "www.intersectalliance.com": [8295], "www.fbf8.com": [5701], "*.tchmachines.com": [16601], "www.tirerack.com": [16495], "iqualita.link": [8352], "global.gotomeeting.com": [6787], "btb-preview.stanford.edu": [15383], "ono.es": [11882], "novgorod.rt.ru": [13469], "m.unibet.com.au": [17179], "curlingworld.com": [3931], "washingtonpostmedia.com": [17989], "burningshed.co.uk": [2442], "www.anarplex.net": [991], "st.yell.com": [19790], "ssegs.btrll.com": [2322], "*.whispersystems.org": [18247], "t.co": [15776], "clickbank.net": [3243], "fbs.usc.edu": [17278], "burtcorp.com": [2448], "www.mytalkdesk.com": [19420], "intelfellowships.com": [8210], "npi.org.uk": [10948], "eduid.cz": [5097], "tageswoche.ch": [15907], "patchwork.linux-mips.org": [9413], "private-communities.netapp.com": [11183], "forum.avast.com": [1444], "skm.io": [14916], "scrypt.cc": [14427], "home.slac.stanford.edu": [15383], "*.loopfuse.net": [9604], "i.eroshare.com": [5350], "cdn.scriptlogic.com": [14424], "www.open-mesh.com": [11908], "bike24.de": [1871], "www.openpetition.de": [11966], "raspberrypi.org": [13569], "cdn5.iconfinder.com": [7921], "docutiles.cnrs.fr": [6195], "blog.tivi.de": [19800], "arkane-studios.com": [1197], "diningservices.wustl.edu": [17993], "go.brightcove.com": [5177], "merchant3.chinabank.com.cn": [3084], "malvernhills.greenparty.org.uk": [6925], "www.maastricht.nl": [11132], "dax.comscore.com": [3453], "infojobs.net": [8100], "www.pirati.cz": [12722], "linuxplumbersconf.org": [9397], "www.lse.ac.uk": [9099], "t411.me": [15781], "rsshog.com": [14008], "*.slimerjs.org": [19600], "stat.coxds.com": [3737], "theblog.blip.tv": [2079], "pentabarf.org": [12541], "manilla.7eer.net": [194], "packetflagon.uk": [19477], "*.redbull.tv": [13671], "thumbnailer.thestudio.condenast.com": [3551], "tagasauris.com": [15906], "ir.riverbed.com": [13907], "www.eyeos-apps.org": [19461], "www.capitadiscovery.co.uk": [19038], "www.datart.cz": [4008], "www2.f-secure.com": [5541], "uk2.net": [16963], "meso.osu.edu": [11760], "chip-kiosk.de": [2595], "alkasir.com": [822], "tv.yandex.com.ua": [18650], "w2.sndcdn.com": [15032], "teacherservices.education.gov.uk": [19149], "glitterbank.com": [6711], "www.spatialpoint.com": [15232], "jobs.brassring.com": [19017], "www.professionalprivacypolicy.com": [6716], "www.pindrop.com": [19494], "aka-cdn-ns.adtechus.com": [639], "bpt.bz": [2366], "www.gmoregistry.com": [6346], "www.mjam.net": [10472], "cheapoz.com.au": [3040], "news.cornell.edu": [3676], "www.scraporchard.com": [14405], "piazza.com": [12658], "drm.chipworks.com": [3089], "www.2dialog.com": [84], "pgsql.vas-hosting.cz": [19729], "startengine.com": [15408], "www.1u1s.de": [67], "fundacion.walmart.com": [17964], "www.spa.wustl.edu": [17993], "machcomedyfest.co.uk": [9828], "5gwc-kbhkort.kk.dk": [8730], "www.cryptomator.org": [3878], "*.wso2.com": [17930], "www.mediamatters.org": [10158], "cdn.filepicker.io": [5801], "leisureworldmemberships.colchester.gov.uk": [3414], "www.slotsfrisoren.dk": [14970], "www.spu.ac.th": [15324], "tpc.com": [15849], "c2rsetup.officeapps.live.com": [9483], "www.greenpolkadotbox.com": [6927], "idp.shibboleth.ox.ac.uk": [17271], "harass.stanford.edu": [15383], "www.hetlnvloket.nl": [11132], "adfs.vutbr.cz": [17522], "secure.democraticservices.coventry.gov.uk": [19085], "ma.twimg.com": [16877], "www.snapchat.com": [15029], "sse.jpl.nasa.gov": [10869], "www.xs4all.nl": [18535], "nwprogressive.org": [11590], "i1.microsoft.com": [10364], "www.nanohub.org": [11031], "lists.ffmpeg.org": [5565], "www.douglas.firmstep.com": [19182], "hipl.hnfe.vt.edu": [17740], "www.manasource.org": [9943], "mya.godaddy.com": [6773], "williams.edu": [18317], "www.e-cegjegyzek.hu": [4849], "cp.rackspace.com": [13506], "*.citizen-times.com": [1251], "platinumskincare.com": [12788], "www.rheinland24.info": [13860], "www.iflygo.com": [19223], "online.fit.edu": [5942], "www.aircargoworld.com": [16927], "vletrain.lsbu.ac.uk": [9098], "*.newsblur.com": [11326], "dev-lounge.gamigo.com": [6445], "www.budsgunshop.com": [2395], "secure.codeforamerica.org": [3359], "*.spreadshirt.be": [15300], "leadnow.ca": [9201], "oswatch.net": [11679], "api.23andme.com": [74], "actel.com": [489], "www.iptorrents.us": [7798], "thetvdb.com": [16352], "www.tdnam.com": [15990], "*.tilt.com": [16448], "www.openfmri.org": [12033], "uits.iu.edu": [8064], "icculus.org": [7909], "apress.com": [1137], "*.httpwatch.com": [7111], "thumbs.xmarks.com": [18579], "*.sonicwall.com": [15137], "garciniacambogiavitalmend.com": [6458], "secure.aadcdn.microsoftonline-p.net": [10366], "ezproxy.plsinfo.org": [12537], "lp.liverail.com": [9496], "www.eugenekolo.com": [19163], "performance.westsussex.gov.uk": [18211], "blog.haschek.at": [7223], "www.kovidgoyal.net": [9000], "edeka.de": [19147], "moverall.com": [10633], "linux.org.au": [9407], "facebook.no": [5623], "*.mygreenbeanextract.com": [6923], "www.atomicinsights.com": [1326], "facebook.nl": [5623], "www.nrc.gov": [17211], "upcbusiness.nl": [17003], "www.paymoapp.com": [12482], "adviceguide.org.uk": [665], "*.stayfriends.ch": [15444], "mvps.org": [9808], "sl.libreoffice.org": [9311], "bediff.com.br": [1723], "www.soccerpunt.com": [7732], "www.snelpanel.com": [15033], "order.emcraft.com": [5201], "spins.fedoraproject.org": [5726], "www.sedo.co.uk": [14541], "*.jobs2web.com": [8598], "store.csiac.org": [2670], "www.ada.osu.edu": [11760], "freitag.de": [6194], "ads.intergi.com": [8249], "app.unbounce.com": [17153], "content.findnsave.com": [5836], "www.quinstreet.com": [13366], "*.explosm.net": [5511], "shop.bt.com": [1549], "www.fedbizopps.gov": [5714], "www.mivamerchant.com": [10463], "www.socialsafety.org": [15059], "orangestatic.com": [12091], "webmaster.streamray.com": [15454], "www.subway.com": [15571], "www.lizard-cloud.htwk-leipzig.de": [7114], "earthdata.nasa.gov": [10869], "community.linksys.com": [9382], "www.varuste.net": [17570], "www.uptobox.com": [19718], "*.cheapssl.com": [3041], "verisign.be": [17623], "www.eso.org": [5426], "*.memberclicks.net": [10246], "btc100.com": [1556], "www.proteansec.com": [13165], "facebook.malwarebytes.org": [9929], "gerrit.libreoffice.org": [9311], "www.ixmaps.ca": [19315], "www.coralproject.net": [19080], "www.dynadot.com": [4824], "forum.snsbank.nl": [14144], "www.confidence.org.pl": [3569], "moat.com": [10484], "www.publicintelligence.net": [13210], "bbsey.es": [1714], "www.metalab.at": [10306], "www.jinx.com": [8576], "acrobat.com": [480], "panel.cint.com": [3149], "casro.org": [2887], "tmshop.tm.com.my": [16083], "mysliderule.com": [10818], "visualstudio.com": [17785], "forums.nvidia.com": [10985], "betterscience.org": [18993], "sr2.liveperson.net": [9493], "*.webchuckhosting.com": [18055], "w3counter.com": [17889], "www.portaildescours.ulaval.ca": [17229], "www.seagm.com": [14095], "www.dac.co.jp": [4002], "xeromag.com": [18566], "hacoder.com": [7121], "express.hertz.com": [7372], "*.iberdrola.es": [7897], "*.watershed.co.uk": [18002], "www.33bits.org": [102], "support.astaro.com": [1298], "*.bcge.ch": [19333], "www.swft.nhs.uk": [10913], "boomerang.com": [2209], "s.uploadhero.com": [17392], "javadoc.io": [8530], "support.gitter.im": [6684], "www.slovensko.sk": [14972], "www.physics.ox.ac.uk": [17271], "www.esinet.norfolk.gov.uk": [19436], "www.invasion.com": [8310], "volgograd.rt.ru": [13469], "www.disability.gov": [4538], "www.afd.calpoly.edu": [2747], "submissiontechnology.co.uk": [15563], "appgratis.com": [1105], "aci-europe.org": [248], "*.ptpimg.me": [13192], "www.lundi.am": [9672], "upworthy.com": [17404], "www.oldebroek.nl": [11132], "*.grooveshark.com": [6965], "umassathletics.com": [17264], "www.gemoney.com.au": [6315], "provantage.com": [13170], "kb.siteground.com": [14865], "www.projet-coclico.org": [3343], "*.fwdcdn.com": [6288], "www.datapipe.com": [4212], "vanhaaren.net": [17550], "www.quotesnsayings.com": [13378], "personal.xively.com": [18577], "abbo-shop.ch": [401], "claimformsplus.com": [3208], "www.gamedev.net": [6418], "www.clover.com": [3318], "honors.illinois.edu": [17258], "huxo.co.uk": [7634], "arrivabus.co.uk": [1216], "payments.virginmedia.com": [17737], "admin.groupcommerce.com": [6968], "kg.qq.com": [13284], "logon.billpay.de": [1877], "marinedepot.com": [9998], "foto.vpsfree.cz": [19743], "deutsche-rentenversicherung.de": [4407], "cloudsponge.com": [3295], "socialbakers.com": [15069], "webchat.quakenet.org": [13326], "kickass-torrents.to": [8879], "www.uaa.alaska.edu": [17233], "clock.yandex.by": [18648], "atrack.allposters.com": [835], "*.myheritage.fr": [10834], "www.kinox.pe": [19337], "get.fedoraproject.org": [5726], "*.myheritage.fi": [10834], "www.pay.va.gov": [17019], "opcw.org": [11653], "siraweb.portal.srgssr.ch": [19621], "cbse.soe.ucsc.edu": [17305], "*.parkersoft.co.uk": [12404], "www.dotplex.de": [4703], "faxian.smzdm.com": [15017], "www.knot-dns.cz": [8947], "pricegrabber.com": [13052], "ndr.de": [11119], "www.udistrital.edu.co": [17112], "www.portmorgan.com": [12932], "gestiona.unizar.es": [17356], "trade.taobao.com": [15952], "pdu.edu": [12939, 12940], "join.fedoraproject.org": [5726], "catraquinha.catracalivre.com.br": [2908], "terminatio.org": [16123], "baxterbulletin.com": [1697], "jira.bls.ch": [1526], "data.gov.uk": [19100], "solucoespme.cisco.com": [3162], "kameleoon.com": [8776], "ux-eco.corp.appnexus.com": [1109], "techbase.kde.org": [8718], "goes-app.cbp.dhs.gov": [4035], "widgetbox.com": [18282], "shuma.jd.com": [8423], "*.plssl.com": [13032], "login.ezproxy.uvm.edu": [17075], "*.acalogadmin.com": [439], "www.xprize.org": [18495], "www.objectsecurity.com": [11701], "terena.org": [16121], "www.armorybids.com": [1204], "admin.tagman.com": [15905], "www.nic.ch": [10920], "b7.yahoo.co.jp": [18640], "advel.cz": [653], "www.miles-and-more.com": [10394], "clic-study.org": [2623], "*.garciniacambogiavitalmend.com": [6458], "www.adobeformscentral.com": [618], "www.propertydeals.com.pk": [13159], "www.english-heritage.org.uk": [5268], "www.sur.ly": [15642], "www.linux-tage.de": [9398], "pixeline.be": [12740], "images.discogsmp3.com": [4541], "virtualboximages.com": [17749], "www.malverndiabeticfoot.org": [9925], "portlandmercury.com": [12938], "mytempjobs.gloucestershire.gov.uk": [6749], "www.stv.columbia.edu": [3448], "www.moon.greenpeace.org": [6937], "academico.unizar.es": [17356], "www.techanarchy.net": [19665], "sera.stanford.edu": [15383], "www.starkist.com": [15391], "tlug.jp": [16535], "strlabs.wpengine.netdna-cdn.com": [14680], "ask.openstack.org": [11975], "cdn.crowdrise.com": [3827], "community.shaw.ca": [14687], "status.easypost.com": [5029], "oclaserver.com": [11711], "www.markeedragon.com": [10007], "wwwrc.hertzentertainment.com": [7372], "mydrl.umd.edu": [17263], "profiles.stanford.edu": [15383], "signup.hootsuite.com": [7487], "www.moevideo.net": [10530], "www.nbg.gr": [6911], "r.kissinsights.com": [8726], "tools.linuxlovers.at": [9432], "ru.domaincontext.com": [4653], "secure.disney.co.jp": [4565], "developer.mbed.org": [10109], "asset-4.soupcdn.com": [15167], "optoutprescreen.com": [12064], "freedom.voys.nl": [17860], "wiki.opendaylight.org": [11934], "wyenet.co.uk": [18487], "www.terreactive.ch": [16130], "armstrong.osu.edu": [11760], "www.invisionpower.com": [8325], "www.unblocksit.es": [17150], "icsdelivery.com": [7922], "gnunet.org": [6360], "admin.mims.com": [9743], "*.webmail.uni-weimar.de": [1696], "mylimehouse.cheshirewestandchester.gov.uk": [19057], "browsealoud.com": [2368], "assets.pinterest.com": [12699], "itmetrics.stanford.edu": [15383], "www.cybercompex.org": [3967], "www.ymstat.com": [18621], "web5.uottawa.ca": [17270], "secure.logmein.com": [9549], "old.bitcoin.cz": [10425], "forums.mageia.org": [9847], "stagingspeak.com": [16830], "appkb.ch": [19333], "www.computerbild.de": [19075], "*.rtmcdn.net": [13758], "www.bse.vt.edu": [17740], "chemsysbio.stanford.edu": [15383], "nie.washingtonpost.com": [17990], "byte.com": [8124], "www.gearslutz.com": [6488], "elburg.nl": [11132], "www.style.com": [15550], "trent.utfs.org": [17453], "markup.io": [10026], "redmine.hackerspace.pl": [7149], "nabconnect2.nab.com.au": [10865], "kaltura.com": [8775], "thinkusc.com": [17277], "online.fahrplan.zvv.ch": [19806], "myaccount.utopianet.org": [17457], "www.lacie.com": [9117], "gets.faz.net": [5554], "freeunlocks.com": [6133], "www.tinyurl.com": [16484], "team.hon.ch": [7088], "www.boostbybenz.com": [2212], "ffmpeg.org": [5565], "support.zadarastorage.com": [18777], "lh2.google.co.*": [6837], "hra-news.org": [7094], "fwd.youcanbook.me": [18703], "faq.nearlyfreespeech.net": [11122], "*.pharmgkb.org": [19490], "tryk.jammerbugt.dk": [8507], "portal.donotpay.treasury.gov": [16704], "www.tfp-quebec.psy.ulaval.ca": [17229], "www.familysearch.org": [5646], "contentcafe2.btol.com": [1623], "cryoutcreations.eu": [3839], "fisd.westminster.gov.uk": [18220], "weather.yandex.by": [18648], "planet.osgeo.org": [11669], "status.uillinois.edu": [16960], "mmahq.com": [9762], "www.apotheke.de": [1100], "shop.vcd.org": [17474], "www.webtimeclock.com": [18164], "badges.instagram.com": [8182], "de.godaddy.com": [6773], "static.flixstercdn.com": [5933], "www.parabola.nu": [12384], "cem.events.adobe.com": [615], "www.accredible.com": [464], "cheezburger.com": [3056], "thefnf.org": [16273], "v.calheers.ca.gov": [3731], "p2.raasnet.com": [13655], "www.moroccanbazaar.co.uk": [10597], "www.svetlodarsk.com": [15674], "turbot.opencorporates.com": [11931], "realtime.services.disqus.com": [4570], "lqfb.piratenpartei.de": [12721], "connect.megapathwholesale.com": [10230], "mail.tiscali.it": [16498], "blog.terminal.com": [16122], "raven.cam.ac.uk": [17243], "www.domainbox.com": [4662], "system.casalemedia.com": [2870], "www.escholarship.org": [4971], "*.bytejail.com": [2488], "revosec.ch": [13850], "*.snatchly.com": [15031], "media.mcclatchyinteractive.com": [10118], "www.cs.stonybrook.edu": [15480], "nxtblocks.info": [10987], "l4.51fanli.net": [171], "www.crowdcurity.com": [3824], "www.etracker.de": [5390], "www.student.liu.se": [9084], "osm13.openstreetmap.fr": [12045], "cnet.stacksocial.com": [15363], "2kbhkort.kk.dk": [8730], "edeveloperz.com": [4899], "accounts.havant.gov.uk": [19237], "www.oumedicine.com": [12139], "internal.ncsa.illinois.edu": [17258], "poloniex.com": [12885], "courses.osu.edu": [11760], "labs.nic.cz": [11379], "athletics.cmu.edu": [2858], "www.hosteurope.de": [7516], "eshop.eset.com": [5358], "www.katzporn.in": [8820], "*.elle.com": [5170], "about.me": [424], "www.cloudmailin.com": [3308], "job.web.cern.ch": [2575], "*.circularhub.com": [3157], "firefoxosdevices.org": [5861], "seafileserver.de": [14435], "ssl5.ovh.net": [12173], "guatemala.engineering.osu.edu": [11760], "webaccess.bassetlaw.gov.uk": [1688], "www.tidbits.com": [16431], "krystalstatus.co.uk": [18428], "www.canvasholidays.co.uk": [18490], "twylah.com": [16902], "fcitx-im.org": [5702], "hydrus-prod.stanford.edu": [15383], "www.ssl.com": [14176], "www.vm.ag": [17803], "no-cache.hubspot.com": [7594], "forums.openmandriva.org": [11956], "redmine.documentfoundation.org": [16221], "crypto.cat": [3851], "www.dagbladet.no": [4106], "shb.myuni.sydney.edu.au": [19649], "secure-id.impressiondesk.com": [19290], "*.rollernet.us": [13959], "www.webcijfers.nl": [18056], "turbotax.com": [8304], "sifomedia.thelocal.se": [9537], "*.eex.com": [5429], "assessment.plymouth.ac.uk": [12833], "donate.fightforthefuture.org": [5784], "*.mega.co.nz": [10223], "erc.europa.eu": [5421], "dl.bintray.com": [1897], "o2.co.uk": [16076], "www.iis.se": [7742], "planet.documentfoundation.org": [16221], "m.bilio.com": [1875], "www.finance.gov.sk": [14972], "www.croscill.com": [3811], "gab.cookie.oup.com": [12192], "www.508surveys.com": [168], "www.hon.ch": [7088], "cs.jhu.edu": [16296], "webrtchacks.com": [18142], "linuxcloudvps.com": [9419], "livelingua.com": [9501], "knappschaft.de": [8940], "portaildescours.ulaval.ca": [17229], "www.funstockdigital.co.uk": [6268], "www.youtube.ae": [18709], "common.restaurantfurnitureresource.com": [8154], "reestr-svyaz.rkn.gov.ru": [13913], "www.flickr.com": [5918], "ris.bka.gv.at": [13431], "55ch.org": [172], "img.guerrillamail.com": [7005], "www1.vocativ.com": [17811], "*.telegr.am": [16077], "www.eloquentjavascript.net": [5180], "www.nodesource.com": [11451], "www.jobs.cam.ac.uk": [2763], "*.thesatanictemple.com": [16308], "www.wazapp.im": [18013], "www.primegrid.com": [13059], "onthemedia.org": [11818], "mb.srb2.org": [14165], "accessibility.nl": [452], "kevag-telekom.de": [8862], "auto.ro": [1414], "www.congress.gov": [3575], "www.96boards.org": [209], "www.minecraftserverlijst.nl": [10416], "telegram.com": [16078], "spine.osu.edu": [11760], "easa.europa.eu": [5421], "www.tms.pl": [19686], "www.bucknell.edu": [2388], "www.colocationamerica.com": [3435], "arvutiabi.ut.ee": [17069], "translate.yandex.com": [18651], "www.gemeentewestland.nl": [11132], "addons.privacyfix.com": [13092], "*.computerworld.com.au": [7704], "calendar.comcast.net": [3460], "www.strath.ac.uk": [17280], "uscnow.usc.edu": [17278], "www.sceper.ws": [14343], "mapy.cz": [9977], "poradte.cz": [19506], "deliver.trafficforce.com": [16651], "kb.radware.com": [13524], "altquick.co": [872], "bigcommerce.com": [1853], "*.neatoshop.com": [11123], "decathlon.es": [19771], "*.airshowjournal.com": [753], "jonasboserup.dk": [19323], "www.joppix.com": [8630], "*.vegaspartnerlounge.com": [17589], "www.worldmarkbywyndham.com": [18490], "clnk.me": [10768], "www.calgunsfoundation.org": [2739], "teendriversource.org": [16058], "bluecatnetworks.com": [2127], "aplus-flint-river-ranch.com": [385], "tpb.pirateparty.org.uk": [12714], "www.globalhivmeinfo.org": [6725], "www.bitmit.net": [2009], "baycitizen.org": [1702], "moaf.org": [10480], "www.netlock.hu": [11196], "*.emailsrvr.com": [5193], "elderscrolls.com": [18829], "www.hkedcity.net": [7073], "*.sparxtrading.com": [15228], "www.podbean.com": [12842], "www.thebookpeople.co.uk": [16218], "benefits.redbridge.gov.uk": [13683], "mtc.cdn.vine.co": [17722], "pindrop.com": [19494], "www.argos-spain.co.uk": [1186], "otsuka-shokai.co.jp": [12134], "fanpagegeneratorpro.com": [6716], "www.tiresnwheels.ca": [16496], "pc-ostschweiz.ch": [12217], "netzservice.wienenergie.at": [18284], "dailymed.nlm.nih.gov": [11052], "ssl-cert-shop.com": [14174], "domreg.flirble.org": [16191], "static2.uk.businessinsider.com": [2454], "*.spreadshirt.nl": [15300], "mikrotik.com": [10388], "*.aer.gov.au": [1390], "www.yourmechanic.com": [18724], "cora.ucc.ie": [16933], "analytics.similargroup.com": [14810], "content.logmein.com": [9549], "xfel.desy.de": [4399], "fr33tux.org": [6091], "www.metal-detector-town.com": [10305], "herdprotect.com": [7324], "sac.uol.com.br": [16998], "*.heimdalsecurity.com": [7285], "youraccount.salford.gov.uk": [19562], "*.inductionsolutions.com": [8073], "linbit.com": [9078, 9079], "skyviewinghelp.com": [14927], "cat.postto.me": [12956], "adriver.ru": [534], "www.mzstatic.com": [10852], "www.getsharex.com": [6604], "blog.360totalsecurity.com": [109], "docs.i2p2.de": [7658], "pivotaltracker.com": [12732], "www.kccmediahub.net": [8714], "www.triphip.com": [16742], "docs.cyrus.foundation": [3989], "www.dns-ip.net": [4606], "*.skilldrum.com": [1111], "pan.sohu.net": [15104], "www.n-tv.de": [19424], "giftshop.cancerresearchuk.org": [19035], "it.jobindex.dk": [8597], "m.spokane.wustl.edu": [17993], "ansible.com": [1056], "energycompare.citizensadvice.org.uk": [19062], "barikat.gr": [6915], "www.openstreetmap.org": [11979], "medici-manager.com": [10189], "stats.eon-uk.com": [4860], "www.meetinleeds.co.uk": [10210], "apex.oracle.com": [12082], "www.chs.us": [3126], "secure.newrepublic.com": [11309], "www.mp3skull.is": [9779], "assets-on.spiceworksstatic.com": [15267], "www.messerfinancial.com": [10293], "static.truetrophies.com": [16776], "ju.taobao.com": [15952], "www.lrc.usuhs.edu": [17052], "www.elastictrace.com": [5143], "www.newswhip.com": [11332], "*.askadmissions.net": [7440], "*.blesk.sk": [2069], "caa.co.uk": [3203], "*.cashboardapp.com": [15559], "www.uua.org": [17204], "careers.guidancesoftware.com": [7006], "mypack.acs.ncsu.edu": [11492], "xfinityconnect.mail.comcast.net": [3460], "localmedia.org": [9539], "stats.webarch.net": [18108], "sertifikatai.lt": [14597], "zoho.com": [18884], "bityes.com": [1952], "e.jd.com": [8423], "gate.crashing.org": [6466], "islands.yandex.by": [18648], "oralb-blendamed.de": [12084], "www.frid.ge": [6211], "static.cloudmagic.com": [3291], "neatoshop.com": [11123], "ulassessment.gmu.edu": [6544], "jino.ru": [8575], "riglogix.com": [1916], "www.discusslr.com": [4559], "cdn.debuggify.net": [4279], "www.harlandclarke.com": [7207], "adelphi.de": [582], "www.retailhosting.fi": [13824], "blog.uni-erlangen.de": [17311], "roc-noc.com": [13930], "dkc1.digikey.com": [4469], "www.viaforensics.com": [17658], "govcert.nl": [11132], "ramhost.us": [13397], "fredandpickles.co.uk": [6114], "lunarline.com": [9671], "1pipfix.com": [45], "wiki.gpehosting.com": [6376], "joblist.ala.org": [298], "openideo.com": [11944], "schijndel.nl": [11132], "www.amadeu-antonio-stiftung.de": [905], "exchangewire.com": [5485], "www.clubnix.fr": [3321], "gismeteo.ru": [6669], "pinta-outlet.fi": [12698], "www.fcw.com": [5560], "www.softperfect.com": [15095], "vorratsdatenspeicherung.de": [295], "ianonym.com": [7673], "www.dikkenberg.net": [4516], "www.proposal.illinois.edu": [17258], "metrics.stanford.edu": [15384], "footlocker.com": [6008], "irishtimes.com": [16195], "fisz.bls.ch": [1526], "api.rasp.yandex.com": [18651], "ssl.chroot-me.in": [3124], "lovehoney.co.uk": [9626], "camm.osu.edu": [11760], "community.ubuntu.com": [17102], "portal.videohub.tv": [17687], "panel.cloudatcost.com": [3282], "*.demandware.net": [4348], "misc.www.switch.ch": [15699], "mailing.channel4.com": [3002, 3003], "www.fifedirect.org.uk": [5779], "www.dalemacartney.com": [4127], "www.1anh.com": [55], "calyx.net": [2761], "cdn-api.ooyala.com": [11900], "anti-theft.eset.com": [5358], "lists.pfsense.org": [12607], "artskills.com": [1222], "*.customcare.fender.com": [5748], "e7.xhamsterpremiumpass.com": [18516], "webmail01.register.com": [13732], "payments.ebay.co.uk": [4874], "*.le.ac.uk": [17319], "analytics.ind.ie": [8048], "ultimedecathlon.com": [19712], "www.quiterss.org": [13368], "admin.q1media.com": [13275], "landalcampings.de": [18490], "opm.gov": [11654], "discussions.nessus.org": [11165], "waeckerlin.org": [17943], "woodgreen.org.uk": [18418], "www.minfin.nl": [11132], "proxy1.switchadhub.com": [15701], "freed0m4all.net": [6163], "media.readspeaker.com": [13610], "camcors.cam.ac.uk": [17243], "www.americanaexchange.com": [948], "*.lurkmore.so": [9673], "www.bitcoinity.org": [1984], "mare-system.de": [9712], "www.btwholesale.com": [1578], "www.foundingfathers.info": [6079], "monkeysaudio.com": [10559], "ubounce.wpengine.netdna-cdn.com": [17153], "ad5.netshelter.net": [11208], "infos.anz.com": [315], "instructlab.educ.cam.ac.uk": [17243], "www.fasterbadger.com": [5684], "bbb.org": [1822], "ftp.mplayerhq.hu": [9784], "www.airs.com": [751], "wiki.zarafa.com": [18795], "www.phil.camera": [19491], "online.gifts.washington.edu": [17291], "exgf.teenbff.com": [13040], "*.audemarspiguet.com": [1347], "apidocs.serverdensity.com": [14614], "vfd2dyn.vodafone.de": [17814], "developer.chrome.com": [3115], "shop.overclockers.at": [12164], "scalesystemweb.tdcserviceonline.com": [15798], "*.walkingmen.com": [17959], "www.usbclientadvocacy.com": [17054], "www.mail.de": [9873], "pad.freifunk.net": [6192], "spade.twitch.tv": [16888], "arguggi.co.uk": [1187], "i.rgstatic.net": [13422], "zenimaxonline.com": [18829], "downloads.powerdns.com": [12990], "astro.uchicago.edu": [17245], "shared.ilovefreegle.org": [7892], "www.bargains4business.com.au": [1669], "zutphen.nl": [11132], "www.pet-portal.eu": [12240], "images.bizrate.com": [2033], "hsmr.cc": [7584], "www.timezero.ru": [16458], "www.bayareaamusements.com": [1701], "www.langui.sh": [9147], "*.theory.org": [16346], "www.hugendubel.info": [19265], "pugetsystems.com": [19527], "www.burstmedia.co.uk": [2446], "login.outspark.com": [12154], "checkout.springer.com": [15309], "player.fm": [12802], "ea.voyage-prive.it": [17858], "cluster016.ovh.net": [12173], "forum.bits.media": [2015], "telfort.nl": [16098], "extranet.wlb.at": [18284], "ssl.jumpline.com": [8676], "us.gizmodo.com": [6695], "ksiegarniawarszawa.pl": [9025], "piratepad.ca": [12706], "*.mediaspanonline.com": [10163], "drive.zipcar.com": [18872], "www.voucherexpress.co.uk": [7317], "icons.wxug.com": [18032], "www.infinow.net": [8096], "*.news-gazette.com": [11322], "vip.asus.com": [357], "www.meteor.com": [10313], "redir.evernote.com": [5450], "sacredcrystalsingingbowls.net": [14219], "alertonline.nl": [791], "dashboard.opendns.com": [11932], "help.pressable.com": [13036], "www.vmd.defra.gov.uk": [4314], "www.gsi.de": [6389], "m.highways.gov.uk": [19250], "online.birmingham.gov.uk": [19000], "www.qksrv.net": [3481], "*.computerworld.com": [3534], "net-security.org": [11181], "www.strava.com": [15513], "ice.cheshireeast.gov.uk": [3067], "techhub.osu.edu": [11760], "tpd.sk": [16622], "leap.se": [9067], "cdn4.spiegel.de": [15272], "clever.com": [3238], "lbrehr.stanford.edu": [15383], "es.corporate.walmart.com": [17964], "registration123.com": [13734], "www.ifightsurveillance.org": [7888], "forums.fanboy.co.nz": [5650], "blstc.msn.com": [9796], "builds.96boards.org": [209], "www.jlos.go.ug": [17115], "c.t4ft.de": [5870], "cdn5.fnmag.co": [5583], "adroll.com": [536], "stat.ethz.ch": [4975], "*.alienvault.com": [812], "*.ana.net": [1297], "www.globalnetwork.pl": [6727], "www.isshub.io": [8377], "www.fullcoin.com": [6249], "www.nameid.org": [11020], "tripodo.de": [16747], "www.internetbrands.com": [8280], "demonoid.ph": [4358], "kb.gfi.com": [6324], "www.hub.sciverse.com": [14375], "mailinabox.email": [9880], "cvis.vutbr.cz": [17522], "*.foolcdn.com": [10613], "www.seagate.com": [14437], "imgc.nxjimg.com": [11591], "studentchaptergrants.acs.org": [929], "blog.mdosche.de": [10130], "users.dal.net": [4003], "demonoid.pw": [4358], "support.mattermark.com": [19387], "list.jd.com": [8423], "samsung.cn": [14265], "www.opentechfund.com": [11983], "images.mobilism.me": [19404], "kotex.com": [8994], "et01.xhcdn.com": [18514], "godzilla.websitealive.com": [18149], "walthamforest.gov.uk": [17966], "*.gettyimages.com": [6621], "secure2.techxpress.net": [16022], "www.microchipdirect.com": [10354], "i1.zst.com.br": [18915], "lists.emergingthreats.net": [5207], "www.net-dns.org": [10941], "towerhamlets.greenparty.org.uk": [6925], "habracdn.net": [7128], "www.gifsauce.us": [6640], "*.c.yimg.jp": [18685], "secure.commbank.com.au": [3477], "bi.formstack.com": [6046], "www.three.ne.jp": [15814], "www.cuidadodesalud.gov": [3913], "*.a4uexpo.com": [227], "reviews.eastbay.com": [5016], "newsletter.canon-europe.com": [2809], "www.billund.dk": [1884], "lizardtech.com": [2930], "www.freshcode.club": [6202], "pkgs.clearlinux.org": [3233], "*.cybertip.ca": [3976], "emergency.illinois.edu": [17258], "*.linuxaudio.org": [9428], "hdfury.com": [7053], "mfi.re": [9738], "www.a1webstats.com": [221], "ubuntuusers.de": [17103], "bancastato.ch": [19333], "axantum.com": [1467], "www.keygens.nl": [8869], "www.portsmouth.gov.uk": [19508], "www.echoditto.com": [5046], "trustedreviews.com": [16792], "www.connecticon.org": [3582], "easylist-downloads.adblockplus.org": [561], "gulesider.no": [7017], "aviris.fi": [1450], "billetnet.dk": [16421], "eyeos-apps.org": [19461, 19462], "selfcare.tdc.dk": [15796], "www.sportys.com": [15292], "wilsoncenter.org": [18321], "weather.yandex.kz": [18652], "sciencedirect.com": [14375], "*.coe.int": [3701], "*.mesh-internet.co.uk": [10289], "*.spreadshirt.de": [15300], "intranet.fch.vutbr.cz": [17522], "sportbookings.ipswich.gov.uk": [8351], "www.wyenet.net": [18487], "www.mediademocracyfund.org": [10144], "img14.360buyimg.com": [112], "webmail.shaw.ca": [14687], "info.anz.com": [315], "sudo.ubuntu-tr.net": [17101], "mtna.org": [9800], "ca.godaddy.com": [6773], "www.kollegorna.se": [8964], "chatserver.comm100.com": [3471], "www.poistenie.financnahitparada.sk": [5828], "support.comixology.com": [3465], "www2.fdic.gov": [5710], "onamae-server.com": [11820], "my.npre.illinois.edu": [17258], "www.get.pictos.cc": [12669], "jeeptopsdirect.com": [8544], "www.ourskillsforce.co.uk": [19472], "eram.umich.edu": [17266], "getfinal.com": [6590], "*.scribus.net": [14417], "www.freethoughtblogs.com": [6186], "arch.usc.edu": [17278], "www.euobserver.com": [4982], "ict.swisscom.ch": [15698], "lourdas.name": [9624], "biggestloserclub.com": [1862], "nathnac.org": [11087], "b.rad.msn.com": [9796], "ebanking.cic.ch": [1654], "www.ipvanish.com": [7799], "www.f-secure.com": [5541], "slanted.de": [14943], "t.eml.office.co.uk": [11742], "fribid.se": [6209], "cryptdown.eu": [3843], "*.bendigobank.com.au": [1774], "*.muni.cz": [10704], "*.memory-alpha.org": [10251], "arxiv.org": [1148], "stg.getfedora.org": [6589], "secure.techrepublic.com": [16016], "city.yandex.com.tr": [18649], "s5.boxcdn.net": [2253], "www.snelserver.com": [15033], "ipower.com": [7794], "www.real-debrid.com": [13621], "sysaid.com": [15747], "ru.bem.info": [1511], "acronis.com": [483], "forum.clara.io": [3210], "intuitpayments.com": [8303], "ori.hhs.gov": [7062], "hootsuite.com": [7488], "bestmastersdegrees.com": [1803], "www.postoffice.travelmoneycard.co.uk": [12954], "downloads.iridiumbrowser.de": [8356], "www.uden.nl": [11132], "www.fr.lastminute.com": [9165], "mapping.milton-keynes.gov.uk": [10401], "app.solarlist.com": [15110], "payments.leeds.gov.uk": [19353], "static.dangpu.com": [4139], "rigzone.com": [13888], "milodev.com": [10399], "freewheel.tv": [6135], "partners.a2hosting.com": [222], "7ny.tv": [1920], "sonobi.com": [15139], "networkredux.com": [11261], "www.spaceindustrynews.com": [15210], "linux.oracle.com": [12082], "www.dps.uiuc.edu": [16956], "www.holtstrom.com": [7459], "home.wistia.com": [18377], "gpfi.org": [6370], "*.wyndhamvrap.com": [18490], "internationalpayments.co.uk": [8267], "*.manchester.ac.uk": [17327], "www.equity.org.uk": [5336], "wwws.whitehouse.gov": [18251], "crazespaces.pw": [19089], "strategyanalytics.com": [15510], "editor.flipboard.com": [5925], "ameliaandersdotter.eu": [927], "masterspaswi.com": [10056], "static.alipayobjects.com": [817], "dongxi.douban.com": [4707], "www.ebroder.net": [5041], "www.cdkeys.com": [2916], "www.rightscon.org": [13887], "*.javelinstrategy.com": [8531], "www.idrtrade.com": [9743], "singularityhub.com": [14849], "*.avinc.com": [1448], "m.hava.yandex.com.tr": [18649], "www.volunteermatters.com": [17836], "www.op-co.de": [11901], "uneddit.com": [17162], "m.focus.de": [5974], "cottageselection.co.uk": [18490], "blog.nazwa.pl": [11117], "*.contextly.com": [3615], "www.opus-codec.org": [12078], "gaug.es": [6996], "idp.data.gov": [4175], "entrust.webtrust.org": [18093], "kfwebs.net": [8720], "www.linuxcounter.net": [9392], "maplight.org": [9969], "brightcontext.com": [2319], "images.thebookpeople.co.uk": [16218], "www.securityweek.com": [14525], "maemo.org": [9844], "msnbc.com": [9797], "www.trueachievements.com": [16771], "alterapraxis.com": [877], "*.thegazette.co.uk": [16280], "blog.flirble.org": [16191], "devstructure.com": [4418], "safety.stanford.edu": [15383], "www.swisscom.com": [15698], "renew.norton.com": [11505], "rocketnet.jp": [13940], "www.privacytools.io": [13091], "cdn2.onlinelaw.wustl.edu": [17993], "assets.okfn.org": [12017], "rbcommons.com": [13401], "service.msicomputer.com": [9793], "wisoreisen.zdf.de": [19800], "support.dell.com": [4335], "limango.de": [9354], "bettercgi.com": [1825], "static.mythic-beasts.com": [10850], "i4.rgstatic.net": [13422], "elements.yandex.com.ua": [18650], "www.litecoin.org": [9462], "www.xmpp.net": [18525], "cdn01.boxcdn.net": [2253], "avia.yandex.by": [18648], "www.kuppingercole.com": [9040], "*.gymglish.co.uk": [7037], "popcorntime.io": [12915], "www.accesslabs.org": [446], "feedback2.yandex.com": [18651], "www.rallydev.com": [13537], "www.findmyorder.com": [5841], "reactor.osu.edu": [11760], "reviewboard.kde.org": [8718], "support.ucsf.edu": [17302], "www.islington.gov.uk": [8370], "sott.net": [15155], "*.comodo.com": [3504], "ntnu.edu": [10963], "webtransfer.vs.ch": [19648], "djw.cs.washington.edu": [17291], "www.justice.sk": [14972], "tutorials.getclouder.com": [6568], "cdn4.sure-assist.com": [15644], "training.obfs.uillinois.edu": [16960], "cdn.evergage.com": [5447], "help.xapo.com": [18541], "talk.jekyllrb.com": [19320], "iyouport.com": [7885], "chat.koumbit.net": [8998], "open.exmail.qq.com": [13285], "safari.tampermonkey.net": [15939], "www.cern.ch": [2575], "bisformat.nazwa.pl": [11117], "istar-chla.usc.edu": [17278], "www.scripps.edu": [14418], "image.adjug.com": [526], "*.penninecare.nhs.uk": [10913], "dujia.jd.com": [8423], "www.incommon.org": [8031], "*.mndcdn.com": [9766], "www.usplusu.com": [17447], "swisssign.com": [12949], "*.speakyweb.com": [15238], "eis.uow.edu.au": [17350], "syndetics.com": [15733], "diety.wp.pl": [17920], "phantompeer.com": [12615], "iact.atdmt.com": [10360], "www.hostcenter.com": [2156], "bm.img.com.ua": [7991], "www.moderncrypto.org": [10520], "accountonline.com": [462], "portal.roadworks.org": [19554], "www.bostonglobemedia.com": [2234], "crimecommission.gov.au": [1386], "www.trumanlibrary.org": [7214], "www.tradeleaks.com": [16636], "*.kpn.com": [8744], "connect.brunel.ac.uk": [19021], "coinforum.de": [3395], "dagensgetaway.dk": [4109], "www.animenfo.com": [1024], "www.registrar.cornell.edu": [3676], "*.e-prawnik.pl": [4858], "bibl.sh.se": [14114], "liftsecurity.io": [9337], "stg.m.here.com": [7326], "fileconnect.symantec.com": [15715], "www.quadrant.org.au": [13322], "temai.alitrip.com": [818], "ning.com": [11415], "camdenactive.camden.gov.uk": [2772], "www.cdwg.com": [2566], "in.norton.com": [11505], "earth.stanford.edu": [15383], "mobile.wwf.ch": [19768], "communicatoremail.com": [3500], "joindiaspora.com": [4448], "*.bdimg.com": [1718], "kattare.com": [8818], "www.rspamd.com": [14007], "jobsite.com": [8601], "oami.europa.eu": [5421], "www.braintreepaymentsolutions.com": [2274], "cdn.imgjam.com": [8503], "drupal.soundonsound.com": [15159], "learningcentral.cardiff.ac.uk": [2835], "www.landalskilife.fr": [18489], "www.canon-europe.com": [2809], "partners.smartname.com": [11021], "*.zapato.ru": [14295], "*.vistech.net": [17781], "www.net-housting.de": [11177], "beacon.guim.co.uk": [7014], "library.angus.gov.uk": [1020], "webcitz.com": [18057], "www.vegasdealhunter.com": [17588], "db-ip.com": [4009], "tdc.tdconline.se": [15799], "monarc.ift.ulaval.ca": [17229], "*.standup2cancer.ca": [15377], "customers.qwk.net": [13293], "quikpayasp.com": [13363], "media.newjobs.com": [11318], "www.polarnopyret.se": [12862], "secure.research.illinois.edu": [17258], "*.us.hsbc.com": [7098], "assets.api.qbrick.com": [13300], "s.ntv.io": [11558], "campaigner.com": [2779], "friend.weblogin.umich.edu": [17266], "*.frys.com": [6237], "freebusy.io": [6125], "barracudanetworks.com": [1680], "www.flixster.com": [5933], "storage.outbrain.com": [12150], "channel.jd.com": [8422], "maldon.gov.uk": [19378], "*.vanillamastercard.com": [17559], "files.sans.org": [14072], "armatactics.com": [18962], "bandpass.me": [1637], "videolab.cc.kuleuven.be": [8816], "stories.doublerobotics.com": [4711], "tornadoweb.org": [16574], "standup2cancer.ca": [15377], "forums.d2jsp.org": [3997], "www.retailmenot.com": [13822], "kupschke.net": [19344], "ecaforums.com": [5294], "behemoth.nlnetlabs.nl": [10940], "www.security-portal.cz": [14520], "support.therocktrading.com": [16307], "www.ricoh.sg": [13879], "cyphdbyhiddenbhs.onion": [3984], "www.joindiaspora.com": [4448], "conference2006.kde.org": [8718], "essex.police.uk": [5366], "community.sharefilesupport.com": [14664], "*.kobobooks.com": [8949], "*.justapple.com": [8694], "matt.ucc.asn.au": [17296], "sync.teads.tv": [15995], "blog.yammer.com": [18647], "prediction.io": [13023], "vellemanusa.com": [17596], "*.1d4.us": [57], "help.tvsupport.net": [16862], "*.wizard.ca": [18385], "www.handtekening.nl": [7192], "nti.org": [10961], "www.ovscruise.com": [18490], "nbcnews.com": [10874], "mayoclinic.org": [10106], "powerspeaking.com": [12996], "yakala.co": [18641], "e1.cdn.qnsr.com": [13306], "wiki.webmoney.ru": [18076], "kronix.xeneris.net": [18560], "*.timesrecordnews.com": [16465], "www.thinkpad.com": [9251], "magellanmodels.com": [9848], "app.upatient.com": [17010], "sysdata.cl.cam.ac.uk": [17243], "forum.girlsoutwest.com": [6667, 19219], "glenoit.com": [6707], "www.policia.es": [12865], "i4.services.social.microsoft.com": [10364], "*.nd.edu": [17329], "trackingtool.ncwit.org": [10889], "webmail.domaindiscount24.com": [19123], "schuelervz.net": [14367], "pay4bugs.com": [12466], "*.pixnet.cc": [12744], "*.mbsvr.net": [10550], "m.habrahabr.ru": [7129], "www.codeascraft.com": [3358], "assets-animated.rbl.ms": [13592], "www.wickedfiber.com": [18280], "moevideo.net": [10530], "www.globalnetworkinitiative.org": [6728], "www.renater.fr": [13764], "*.ethicaldata.co.uk": [5381], "mauras.ch": [10085], "ssl.synovite-scripts.com": [15740], "business.wales.gov.uk": [17957], "licensing.scarborough.gov.uk": [19567], "www.metaproducts.com": [10301], "download.gimp.org": [19218], "piwik.enahost.com": [5228], "www.era.int": [4948], "gogobot.com": [6808], "www.audicon.net": [1350], "cdn.dealerfire.com": [4257], "vc-server.de": [17472], "clear-link.com": [3228], "www.quantummansite.com": [13342], "pgeverydaysolutions.com": [13121], "www.bbsey.es": [1714], "perle.com": [12577], "wearewizards.io": [18027], "stockport.greenparty.org.uk": [6925], "www.bbcshop.com": [1712], "www.literatureandlatte.com": [9466], "*.theeca.com": [5295], "www.comlaude.com": [3459], "*.consumersunion.org": [3604], "huzs.net": [7635], "www.trinityfi.org": [16737], "*.alliedmods.net": [853], "mototradeup.com": [10616], "fuerzapopular.pe": [6244], "americanexpress.com": [935], "rdc.bremer.com": [2300], "finance.socrata.com": [15082], "globusvoyages.ch": [19262], "www.myfreecopyright.com": [10760], "www.kraxel.org": [9007], "www.judici.com": [8662], "www.tilburguniversity.edu": [16445], "www.deciduouspress.com.au": [4282], "daily.co.uk": [4113], "www.all4xs.net": [826], "job.alipay.com": [817], "congstar.de": [3577], "www.focus.de": [5974], "wijchen.nl": [11132], "www.nvidia.eu": [10984], "*.shopwiki.com": [14721], "ulakbim.gov.tr": [16980], "reelvidz.com": [13712], "www.gmoserver.jp": [6347], "bitquick.me": [1942], "nl.godaddy.com": [6773], "facilities.ucsd.edu": [16939], "bedfordhospital.nhs.uk": [10913], "ondemand.cisco.com": [3162], "weitao.taobao.com": [15952], "www.ce1.com": [3776], "blog.paperspace.io": [12381], "secular.org": [14472], "www.videoaidedinstruction.com": [17691], "amazon.co.uk": [917], "petrogen.com": [12600], "apis.live.net": [9482], "runscope.com": [14038], "barnebys.com": [1676], "*.host1plus.com": [7505], "cn.bter.com": [2382], "community.marketdojo.com": [10010], "bugzilla.netfilter.org": [11225], "info.bitsighttech.com": [1947], "active-srv02.de": [496], "activatie.kuleuven.be": [8816], "marx.org": [10042], "rss.seagate.com": [14437], "www.isoc.org.br": [7828], "filecrypt.cc": [19178], "gloucestershire.gov.uk": [6749], "www.evm.dk": [5461], "grilletlab.stanford.edu": [15383], "i.blip.tv": [2079], "www.avadirect.com": [1438], "*.njit.edu": [10932], "info.publicintelligence.net": [13210], "blog.irccloud.com": [8354], "xumaa.com": [18604], "lists.osgeo.org": [11669], "mail.be": [9871], "livingforsport.skysports.com": [14931], "www.securestudies.com": [14495], "www.tsbohemia.cz": [19702], "rd.bizrate.com": [2033], "altimatewellness.com": [890], "tenants.southampton.gov.uk": [15191], "static.avast.com": [1444], "bitinstant.com": [1933], "www.botbot.me": [2238], "reslife.wustl.edu": [17993], "www.rows.io": [13990], "earlyhelp.bedford.gov.uk": [18986], "www.rtbf.be": [14011], "falconjet.com": [4166], "www.ncric.org": [10885], "www.nedcc.org": [10896], "gt5-jres2015.univ-montp3.fr": [17223], "biz.wangyin.com": [17972], "www.mariadb.org": [9988], "www.biotrimlabs.com": [1909], "bitaddress.org": [1954], "www.f5networks.*": [5545], "i3.rgstatic.net": [13422], "im.gifbt.com": [8061], "www1.pfizerpro.com": [12612], "dental.washington.edu": [17291], "login.unifiedsocial.com": [17184], "diy.rescue.org": [19546], "dev.evernote.com": [5450], "clasohlson.se": [3215], "amoena.us": [979], "fis.dudley.gov.uk": [4795], "www.thirddoormedia.com": [16366], "cdn.bunadformenn.info": [2423], "webftp.vas-hosting.cz": [19729], "tvnutt.com": [15889], "www.ysu.edu": [18742], "twcardsonline.anz.com": [315], "*.53.com": [5781], "tetra.osmocom.org": [12126], "saforms.stanford.edu": [15383], "s2c.aol.com": [321], "et08.xhcdn.com": [18514], "springy.libapps.com": [9287], "modlife.com": [10526], "1.usa.gov": [1920], "www.gpadmissions.osu.edu": [11760], "www.chocolatey.org": [3095], "www.uchastings.edu": [16941], "www.paymentwall.com": [12479], "workshop.chromeexperiments.com": [3117], "sidibouras.com": [14766], "translations.cacert.org": [2520], "*.roi.ru": [13445], "www.solidalert.com": [15118], "*.akamaihd.net": [762], "bugs.gnupg.org": [6762], "cdn3.iconfinder.com": [7921], "sam.sso.bluewin.ch": [2157], "www.zilog.com": [18866], "usdoedregistration.ed.gov": [4889], "employment.harvard.edu": [7219], "tuftsmedicalcenter.org": [16820], "*.riseup.net": [13900], "account.playwarz.com": [17975], "currents.plos.org": [12271, 13206], "embed.vidyard.com": [17705], "*.noc.ac.uk": [17276], "telekom-profis.de": [16085], "s2.gismeteo.ua": [6670], "www.showcase.ca": [14741], "www.youtube.com.au": [18709], "avatar.xboxlive.com": [18551], "lists.aktivix.org": [771], "ecm.nationalgrid.com": [11081], "www.packer.io": [12315], "*.cleanprint.net": [3226], "k.yimg.jp": [18685], "www.staffordshireandstokeontrent.nhs.uk": [10913], "assets.gradwellcloud.com": [6884], "blogs.citrix.com": [3178], "www.speedppc.com": [15253], "imageslocal.fineartamerica.com": [5844], "haas.variety.com": [17565], "dbs.com": [4010], "*.dabs.com": [4100], "fluttertoday.com": [5955], "www.500px.com": [166], "contact.familysearch.org": [5646], "i.wpimg.pl": [19766], "igolder.com": [7954], "gsu.edu": [6391, 6392], "www.gov1.info": [6861], "*.affec.tv": [699], "staging.muttscomics.com": [10731], "colorado.edu": [17247], "click-west.acuityplatform.com": [505], "toptip.ch": [3645], "navigator.web.de": [18050], "www.myinteriordecorator.com": [10764], "fws.tmall.com": [19684], "hertz247.fr": [7345], "adfs.brunel.ac.uk": [19021], "www.agrisupply.com": [735], "static.telus.com": [16103], "www.motherlessmedia.com": [10608], "zycie-wsrod-kamer.panoptykon.org": [12365], "wiki-zeuthen.desy.de": [4399], "titanshare.to": [16503], "dropboxforum.com": [4769], "ent.ro.vutbr.cz": [17522], "www.homebuzz.co.uk": [7475], "i2.zst.com.br": [18915], "wiki.eclipse.org": [5049], "www.xrel.to": [18589], "courrielweb.videotron.com": [17700], "eastlancs.greenparty.org.uk": [6925], "ct.tms.pl": [19686], "giving.cornell.edu": [3676], "edwardtufte.com": [5104], "observer.com": [18428], "offensivebits.com": [11737], "press.internet.org": [8278], "kfz-versicherung.faz.net": [5554], "zipapps.lincolnshire.gov.uk": [9364], "antpool.com": [1072], "*.trulia-cdn.com": [16777], "represent.us": [13788], "www.securitykiss.com": [14522], "delicious.com": [4328], "publicaccess.canterbury.gov.uk": [2811], "www.fujitsu-webmart.com": [6245], "www.airtop-pc.com": [756], "darch.ch": [4007], "hackaday.com": [18428], "www.creator.zoho.com": [18884], "imca.ic.nhs.uk": [10913], "pod.geraspora.de": [6552], "www.clickerheroes.com": [3259], "fusion-lifestyle.com": [6274], "*.blog.alwaysdata.com": [897], "www.powerlineman.com": [13002], "profile.federalreserve.org": [5717], "cdn0.sbnation.com": [14079], "directory.rbwm.gov.uk": [19539], "www.normation.com": [11488], "appv2.adextent.com": [521], "frauen.htwk-leipzig.de": [7114], "www.spbas.com": [14152], "frs.monotypeimaging.com": [10562], "www.fuzeqna.com": [1410], "www.cloudproven.net": [3301], "www.travelrepublic.com": [16695], "careers.americanexpress.com": [935], "one2buy.com": [11829], "developer.opensignal.com": [11974], "www.foxydeal.com": [6089], "n-somerset.gov.uk": [10857], "mais.uol.com.br": [16998], "www.btcjam.com": [1560], "en-ru.dict.cc": [4455], "secure.acceptiva.com": [443], "konachan.com": [8972], "www.hastrk1.com": [7235], "c.affil.walmart.com": [17964], "www.tmbc.gov.uk": [15827], "www.sv.no": [14201], "fshare.vn": [6238], "*.perfectmarket.com": [12561], "ftb.ca.gov": [2742], "*.pszaf.hu": [12301], "virtualenv.pypa.io": [13265], "www.llis.dhs.gov": [4035], "bandinelli.net": [1639], "gsx.apple.com": [1120], "admin.ias.edu": [7669], "www.altmetric.com": [892], "www.de.adjug.com": [526], "pt.cloudflare.com": [3285], "banki.ru": [1646], "blog.udemy.com": [17111], "game.msi.com": [9792], "www.bilddb.gta.arch.ethz.ch": [4975], "blog.mariadb.org": [9988], "it.desy.de": [4399], "vestacp.com": [17653], "www.infradead.org": [8132], "easywallet.org": [5037], "www-robotics.jpl.nasa.gov": [10869], "lh5.google.com.*": [6837], "klm.com": [8736], "domainfest.com": [12169], "orhelp.osu.edu": [11760], "www.hertz.com.jo": [7353], "locdeva.hertz.com": [7372], "widget.shopstyle.fr": [14719], "developer.baidu.com": [1619], "showmecon.parametersecurity.com": [12393], "www.wifidb.net": [18272], "documentation.onesignal.com": [11843], "painelhost.uol.com.br": [16998], "webmail.opentransfer.com": [12049], "source-elements.com": [15168], "simplybusiness.co.uk": [14833], "www.brixwork.com": [2344], "forums.xfinity.com": [19784], "*.meetup.com": [10219], "www.project-syndicate.org": [13136], "www.levny-hosting.cz": [9274], "static.itunes.apple.com": [1120], "www.sevenonemedia.de": [14636], "www.elderscrolls.com": [18829], "www.precisionmarinetools.com": [13020], "www.studivz.net": [15539], "support.youmail.com": [18706], "smartrecruiters.com": [14994], "www.ezaccessory.com": [5535], "*.appsecusa.org": [1132], "www.optimise.com.br": [12069], "myaccount.aol.com": [321], "sitizens.com": [14886], "assets.blog.start.me": [15405], "my.civilservice.gov.uk": [19066], "twitchinstalls.com": [16889], "www.nesl.edu": [10901], "hidepay.net": [7397], "lib.doteasy-nocookie.com": [4700], "dd-wrt.com": [4018], "www.das-parlament.de": [4160], "bedrockformskaw.msn.com": [9796], "emaileri.net": [5192], "www.oyoony.de": [19475], "www.portugal.gov.pt": [12943], "www.bisnow.com": [1918], "webtorrentsearch.mrcarch.com": [16228], "portal.distil.it": [4572], "awscf.cdngeek.net": [2920], "hp.msn.com": [9796], "www.talentsmart.com": [15920], "www.shrinktheweb.com": [14746], "tracking-stage.websitealive.com": [18149], "www.guifi.net": [7010], "my.blood.co.uk": [2115], "stumbleupon.com": [15544], "oldham.greenparty.org.uk": [6925], "m.exmail.qq.com": [13285], "euim.mstar.com": [10678], "cdnsl.coveritlive.com": [3735], "www.just-eat.com": [19328], "irc.gitter.im": [6684], "sitegeist.sunlightfoundation.com": [15601], "trycelery.com": [16804], "s.imgrap.com": [7999], "support.zoho.com": [18884], "www.medstop.se": [10203], "sso-cas.rmit.edu.au": [13437], "www.onemancan.org": [11849], "www.blamestella.com": [2058], "cams.pornworms.com": [12929], "services.retsinformation.dk": [13830], "assetstore.unity3d.com": [17220], "blog.cloudfoundry.org": [3299], "as-sec.casalemedia.com": [2870], "*.corp.google.com": [6834], "*.sandsmedia.com": [14212], "partners.kaspersky.ua": [8808], "enro.dict.cc": [4455], "ssl14.ovh.net": [12173], "www.worldlandscapearchitect.com": [18456], "expomobilehomes.com": [5627], "www.performancealley.com": [12569], "media.go2app.org": [7222], "*.wgea.gov.au": [18444], "auth.gfx.ms": [6624], "ksplice.com": [9026], "www.fbdatesecure.com": [8426], "holoscripter.org": [7458], "www.igb.uiuc.edu": [16956], "downloads.canon.com": [2809], "www.ejabberd.im": [5130], "booredatwork.com": [2210], "ereturns.wirral.gov.uk": [18371], "askubuntu.com": [15359], "www.earthlink.net": [5007], "git.devuan.org": [4433], "myeddebt.com": [9814], "thenanfang.com": [16300], "esad.ulaval.ca": [17229], "support.aetherflyff.com": [694], "kaimi.ru": [19332], "www.fuelcdn.com": [6243], "cdn.cxense.com": [2694], "www.privacynotprism.org.uk": [13088], "s3.freepress.net": [6147], "myfbo.com": [10756], "gdata.at": [6293], "wordstat.yandex.by": [18648], "footprints02.main.ad.rit.edu": [13434], "geo.data.gov": [4175], "arsca.linneanet.fi": [9386], "www.euronuclear.org": [5424], "www.fmv.se": [5579], "jazzy.id.au": [8537], "in.godaddy.com": [6773], "*.adjust-net.jp": [596], "flixbus.se": [5931], "www.opendesktop.org": [19461], "scrambl3.com": [14404], "apidev.accuweather.com": [465], "ericw.us": [5342], "support.zynga.com": [18933], "images.amazon.com": [915], "nordichardware.com": [11474], "drdobbs.com": [16927], "commercialappeal.com": [4989], "quotemedia.com": [13377], "bcobandits.com": [1716], "www.transip.nl": [16660], "web.consumerreports.org": [3600], "dt.developer.here.com": [7326], "kiss.tdc.no": [15797], "www.mashery.com": [10046], "prg.computerandvideogames.com": [6280], "itunes.stanford.edu": [15383], "yaca.yandex.by": [18648], "vladikavkaz.rt.ru": [13469], "ambitiousaboutautism.org.uk": [18952], "andytyson.com": [1010], "www.gettyimages.co.*": [6621], "suche.web.de": [18050], "holarse-linuxgaming.de": [7446], "ip.casalemedia.com": [2870], "*.altlinux.org": [303], "www.lenta.ru": [19356], "www.shopinfo.net": [14726], "emory.edu": [5212], "haskell.org": [7229], "www.engineering.wustl.edu": [17993], "shop.sky.com": [14924], "security.ias.edu": [7669], "gameladen.com": [6432], "mediapart.fr": [10180], "www.afsp.org": [931], "api.forecast.io": [6023], "archives-ouvertes.fr": [1168], "iconnect.cathaypacific.com": [2904], "vpnglobe.com": [17502], "demworks.org": [4341], "ld-6.itunes.apple.com": [1120], "www.eroakirkosta.fi": [5348], "wupd.wustl.edu": [17993], "sonderdesign.com": [15133], "*.ebay.com": [4874], "baidu.com": [1619], "admeld.com": [607], "scholarship.berkeley.edu": [17240], "tigger.uic.edu": [17231], "medstop.se": [10203], "www.rsbac.org": [13456], "download.vzaar.com": [17883], "dayz.com": [4236], "university.cpanel.net": [2653], "getawaygrey.com": [6565], "*.tfag.de": [5974], "www.flinkster.de": [19184], "*.azabani.com": [1479], "web-app.usc.edu": [17278], "paste.ubuntu.com": [17102], "c1.microsoft.com": [10364], "*.resultspage.com": [13818], "www.frieslandcampina.nl": [2782], "www.naturvardsverket.se": [11106], "www.istanbulhs.org": [8380], "boardzoo.com": [2167], "middleeastmonitor.com": [10375], "av-comparatives.org": [370], "www.space.dtu.dk": [16031], "servage.*": [14598], "guildford.firmstep.com": [19183], "www.cobalt.io": [3340], "garnet.openmandriva.org": [11956], "256.com": [81], "www.cyphertite.com": [3986], "handbrake.fr": [7185], "bugs.wireshark.org": [18369], "www.hitbox.tv": [7424], "planet.com": [12760], "www.frascatiproducties.nl": [6107], "blkb.ch": [19333], "communities.acs.org": [929], "binaryapi.ap.org": [1291], "mpg.de": [9780], "windowsitpro.com": [18345], "*.palbin.com": [12340], "*.pairnic.com": [12336], "platform.bitly.com": [2001], "myaccount.coventry.gov.uk": [19085], "m.xkcd.com": [19786], "t-mobile.com": [15772], "wsio.buttercoin.com": [2463], "twofactorauth.org": [16899], "assets2.vice.com": [17667], "shop.southbankcentre.co.uk": [15192], "ind.pn": [1920], "employees.usc.edu": [17278], "www.shaaaaaaaaaaaaa.com": [14651], "acs.ucsd.edu": [16939], "monitor.ccccloud.com": [2539], "bigcartel.com": [1850], "www.wholeearth.com": [18262], "www.asianfanfics.com": [1259], "illinois.edu": [17258], "objectsecurity.com": [11701], "emknowledge.gov.au": [1389], "searchcode.com": [14443], "www.mytatasky.com": [15974], "www.gowork.pl": [6791], "schuilenburg.org": [14368], "www.dulwich.io": [4800], "dell.com": [4334, 4335], "thmb.inkfrog.com": [8146], "*.clicktracks.com": [9686], "diybanter.com": [4037], "rackspace.com": [13506], "fotomarburg.digitale-diathek.net": [4504], "museum.stanford.edu": [15383], "status.udacity.com": [17109], "repo1.maven.org": [10088], "www.liftdna.com": [9338], "lrcd.com": [9642], "expert.bger.ch": [18996], "forums.digitalpoint.com": [4498], "err.ee": [5369], "*.santander.co.uk": [14291], "localbitcoins.com": [9540], "*.cansecwest.com": [2789], "websense.com": [18083], "www.pipni.cz": [12257], "lciapi.ninthdecimal.com": [11420], "infinow.net": [8096], "www.jewelosco.com": [8562], "deals.boston.com": [2233], "truenudists.com": [16775], "support.netapp.com": [11183], "system.spektrix.com": [19617], "photosugar.com": [12643], "html5.org": [7589], "www.academics.de": [437], "directtoyou.derby.gov.uk": [4380], "*.wishpot.com": [18374], "*.eltatar.com": [5189], "www.gradsch.ohio-state.edu": [11761], "www.quamnet.com": [13334], "*.bellinghamschools.org": [1767], "www.orangegeek.com": [12090], "sport.leeds.gov.uk": [19353], "heasarc.gsfc.nasa.gov": [10869], "www.openmarket.org": [11957], "reiseauskunft.bahn.de": [1617], "paste.leloop.org": [9191], "adobeid-na1.services.adobe.com": [615], "limelight.assets.stitcher.com": [15476], "im.sohu.net": [15104], "www.tachanka.org": [15900], "archi-strasbourg.org": [1161], "www3.student.liu.se": [9084], "ad.mail.ru": [9874], "trust-center.verisign.es": [17623], "www.engagemedia.org": [5260], "hdw.artsci.wustl.edu": [17993], "www.dakko.us": [4126], "blog.digicert.com": [4473], "inwx.es": [8231], "www.radartv.nl": [13509], "info.puppetlabs.com": [13232], "*.payson.se": [12488], "ews-sdc.federalreserve.org": [5717], "revv-static.rubiconproject.com": [14014], "nkl.fi": [11014], "www.syspectr.com": [15757], "viaf.org": [17487], "support.redbubble.com": [13660], "www.get-digital.it": [6561], "static.bpddn.com": [1737], "getharvest.com": [6576], "asic.gov.au": [348], "ventoso.org": [17609], "assets.aarp.org": [234], "nl.norton.com": [11505], "eoportal.org": [5314], "navynews.co.uk": [13995], "content9.flixster.com": [5933], "laforge.gnumonks.org": [6766], "www.mobilism.me": [19404], "zc-paimai.taobao.com": [15952], "www.geog.illinois.edu": [17258], "jeffnabers.com": [8547], "secure.currys.co.uk": [3933], "www.ammec.de": [309], "*.teamsales.eastbay.com": [5017], "hub.docker.com": [4616], "zcomm.org": [18756], "tv.bt.com": [1551], "axisbank.com": [1474], "console.ipinyou.com": [7803], "pizzahut.co.uk": [12750], "gutenberg.org": [7028], "www.allmychanges.com": [833], "im2.smartadserver.com": [14982], "bookie.io": [2201], "xui.ptlogin2.tenpay.com": [16114], "accountcenter.mediatemple.net": [10165], "www.vestacp.com": [17653], "*.khoc.co": [8723], "ixquick.com": [8405], "redfin.com": [13696], "co-operativebank.co.uk": [3332], "www.area17.com": [1179], "doc.ddg.lth.se": [9104], "dishonored.com": [18829], "passport.bitmain.com": [2003], "web.lib.aalto.fi": [390], "blogs.studyinsweden.se": [19635], "www.dosowisko.net": [4688], "anon-ib.co": [1034], "cas.thm.de": [15811], "*.giphy.com": [6665], "myuhc.com": [10793], "tag.researchnow.com": [13798], "portalsp.acs.ncsu.edu": [11492], "mlpforums.com": [9757], "feedback.unity3d.com": [17220], "new.jd.com": [8423], "connectbyhertz.com": [7372], "svn.php.net": [12250], "artsedge.kennedy-center.org": [19335], "images.nationalarchives.gov.uk": [11065], "www.blumenthals.com": [2158], "www.cacert.net": [2520], "www.nfb.org": [11096], "soundcloud-wpengine.netdna-ssl.com": [15161], "silktide.com": [14796], "*.marionstar.com": [10001], "team-share.net": [15997], "www.polyu.edu.hk": [12891], "www.bwurst.org": [1585], "southernct.edu": [15195], "br.norton.com": [11505], "www.mmoculture.com": [9764], "*.r.msn.com": [9796], "*.wwte10.com": [17937], "www.osutravel.osu.edu": [11760], "knowledge.allianz.com": [18950], "*.mmahq.com": [9762], "www.arlt.com": [1201], "mondemp3.com": [10543], "p16.qhimg.com": [13302], "mountainreservations.com": [10620], "www.jackandjillraffle.org": [8481], "www.atech.io": [366], "mail.sohu.com": [15103], "list.taobao.com": [15952], "baichuan.taobao.com": [15952], "www.ail.htwk-leipzig.de": [7114], "*.nwf.org": [11088], "www.blocketsannonswebb.se": [2095], "*.secunia.com": [14475], "filebox.tv": [5788], "c3.rgstatic.net": [13422], "cdon.fi": [2562], "arhivach.org": [18960], "www.uplay.ubi.com": [17390], "*.ihgmerlin.com": [7737], "student.societyforscience.org": [15078], "affiliates.esellerate.net": [5357], "*.uni-greifswald.de": [17313], "www.tmobile.com": [15834], "*.thenewsmarket.com": [16301], "cimbbank.com.my": [2606], "*.mango.com": [9951], "www.biddeal.com": [1846], "popgoestheweek.com": [12913], "hacktionlab.org": [7160], "tel.mail.ru": [9874], "a.ichiba.jp.rakuten-static.com": [13533], "*.vzw.com": [17628], "secure.www.mercurynews.com": [10280], "www.womensaid.ie": [18409], "musictemp.xbox.com": [18550], "visit.stanford.edu": [15383], "impulse.net": [8021], "*.anb.com.sa": [313], "ipsidixit.net": [8348], "jobs.lincolnshire.gov.uk": [9364], "100r.org": [9], "www.powerdns.net": [12991], "jacobsstudent.ucsd.edu": [16939], "blogs.jetbrains.com": [8558], "*.moneyadviceservice.org.uk": [10548], "recruiter.jobfinder.dk": [8596], "hurricaneelectric.net": [7629], "www.berniesanders.com": [1796], "olioboard.com": [11782], "www.startech.com": [15395], "backoffice.sedo.de": [14543], "bugs.cse.iitb.ac.in": [7744], "forum.openmpt.org": [11951], "bato.to": [18985], "tech.safehubcollective.org": [14229], "stag.cntraveler.com": [3555], "www.316space.harralmedia.com": [2132], "*.meetme.com": [10211], "*.ada.edu.au": [1387], "www.zylon.net": [18930, 18931], "www.gradwellcloud.com": [6884], "nso.wustl.edu": [17993], "www.gesetze-im-internet.de": [6559], "cup-of-tea.it.ox.ac.uk": [17271], "i.li.ru": [9487], "cdn.fronter.com": [19200], "mentalhealth.asn.au": [10263], "home.web.cern.ch": [2575], "www.seedboxes.cc": [14550], "yooco.de": [18691], "gammae.com": [6449], "my.appcelerator.com": [1113], "www.porvoo.fi": [19509], "depositfiles.com": [4374], "www.echosign.adobe.com": [615], "partner.archive-it.org": [1163], "istore.ccccloud.com": [2539], "refeds.org": [13413], "vtnews.vt.edu": [17740], "account.aliyun.com": [821], "care.bluecatnetworks.com": [2127], "apac.redhat.com": [13675], "accom.brunel.ac.uk": [19021], "twibright.com": [16875], "www.fhserve.com": [5767], "makibox.com": [9919], "oit.ncsu.edu": [11492], "*.buffalostate.edu": [2401], "ehcb.westminster.gov.uk": [18220], "signup.jiveon.com": [8586], "www.osmand.cz": [12123], "www.gawker-labs.com": [6475], "secure2.mastermindpro.com": [10058], "dee.uidaho.edu": [18428], "roi.ru": [13445], "www.ccs.com": [2551], "zhaocaibao.alipay.com": [817], "www.keksbude.net": [8842], "tcrl.osu.edu": [11760], "mbi.mbnet.fi": [9723], "lancashire.firmstep.com": [19182], "app-us4.resrc.it": [13599], "my.ixwebhosting.com": [7882], "ouya.tv": [11684], "fehm2016.unizar.es": [17356], "managers.usc.edu": [17278], "business.kaspersky.com": [8806], "www.tolvutaekni.is": [16539], "www.tg.ethz.ch": [4975], "www.jobsite.com": [8601], "lite.apan.org": [329], "beta.nativo.net": [11092], "no.godaddy.com": [6773], "fw.cdn.technolutions.net": [16042], "store.xamarin.com": [18540], "noelia.fi": [11456], "www.all-about-security.de": [843], "resortpro.net": [13810], "*.crypteianetworks.com": [3849], "www.instapanel.com": [8188], "postimg.org": [12978], "questionnaires.ecn.ulaval.ca": [17229], "sunroofwinddeflectors.com": [15606], "www.fastwebhost.com": [5679], "www.uscurrency.gov": [17057], "my.goldsborowebdevelopment.com": [6817], "*.sdss3.org": [14967], "store.ssl2buy.com": [14177], "*.cagw.org": [2513], "*.mycanvas.com": [10750], "ny.curbed.com": [3926], "www.globalscaletechnologies.com": [6739], "swiftype.com": [15689], "g.alicdn.com": [805], "servery.cz": [18938], "www.english.ox.ac.uk": [17271], "www.massdrop.com": [10050], "t1.stormiq.com": [15499], "forums.hubic.com": [7597], "s1.reutersmedia.net": [16381], "www.sideshowtoy.com": [14765], "www.babeljs.io": [1592], "www.evidence.nhs.uk": [10913], "faz.net": [5554], "www.distraction.gov": [4574], "cdn.rooof.com": [13966], "zarkzork.com": [18799], "info.profitbricks.com": [13129], "*.ets.org": [4976], "*.videogateway.tv": [3505], "www.heidelberg.de": [7283], "*.tradedirect.ch": [19333], "mpi-soft.mpg.de": [10089], "c3tag.com": [2503], "www.thechangelog.com": [16256], "au.prime7.yahoo.com": [18635], "www.slax.org": [14951], "www.ihc.ru": [7736], "*.bodyworkmovementtherapies.com": [8642], "upic.me": [17388], "paw.princeton.edu": [13064], "www.tickermadness.com": [16413], "cyberguerrilla.info": [3960], "blog.echoplex.us": [5047], "cdimage.deepin.com": [4302], "www.45millionvoices.org": [147], "tt.vutbr.cz": [17522], "*.storesecured.com": [15493], "www.fcpablog.com": [5559], "medieval.history.ox.ac.uk": [12187], "files.tv2.dk": [15881], "www.business.spectrum.com": [15248], "www.wishlistgranted.com": [18373], "www.proxer.me": [13176], "chango.com": [2997], "pilegaarden.kk.dk": [8730], "inuits.eu": [8309], "storystudio.oculusvr.com": [11722], "reap.mit.edu": [9749], "voice.megapath.com": [10229], "support.gogetssl.com": [6780], "www.dragonsreach.it": [4741], "*.tsl.state.tx.us": [16153], "www.iki.fi": [7961], "www.globalsign.com.*": [6718], "www.cdon.fi": [2562], "www.aaenhunze.nl": [11132], "www.krebsdaten.de": [9011], "media.marketwire.com": [10022], "intel.co.uk": [8205], "law.stanford.edu": [15383], "data1.bell.ca": [1763], "www.kuleuven.be": [8816], "scholar.google.*": [6837], "m.sockassist.com.au": [16101], "www.hydraproxy.party": [19270], "blendle.nl": [2068], "www.kdelive.org": [8830], "www.insurance.wustl.edu": [17993], "www.tronixcomputers.com": [16757], "youtube.com.om": [18709], "www.dr.dk": [4078], "images.excaliburfilms.com": [5483], "www.cronkitenewsonline.com": [3810], "cnes.fr": [2634], "funkyandroid.com": [6267], "flex.atdmt.com": [10360], "sonypictures.co.uk": [15151], "lists.posteo.de": [12969], "blog.ludialudom.sk": [9652], "status.fitbit.com": [5887], "arbitrary.ch": [1153], "*.fishwrapper.com": [5885], "amsterdam.nl": [11132], "www.xkcd.com": [19786], "www.googleartproject.com": [6833], "www.thetvdb.com": [16352], "www.accelaworks.com": [440], "deadspin.com": [4251], "photos.nsrc.org": [10958], "jwchat.org": [8466], "onedrive.com": [11831], "www.organicconsumers.org": [12103], "www2.netflix.com": [11229], "hr.carnegiescience.edu": [2857], "www.mangolanguages.com": [9952], "erowid.com": [5351], "mappingmediafreedom.org": [9974], "si0.rgstatic.net": [13422], "cs.lpi.org": [9095], "www.chaturbate.com": [3035], "zmtr.zscaler.com": [18913], "www.connecttosupport.org": [19076], "www.courthousenews.com": [3721], "brainpickings.org": [2268], "*.manta-r1.com": [9960], "listart.mit.edu": [9749], "www.atomicorp.com": [1328], "gb.youcanbook.me": [18703], "torrents-time.com": [19689], "peerlibrary.org": [12516], "cms.fightforthefuture.org": [5784], "www.it.umd.edu": [17263], "monitor.wpm.neustar.biz": [11280], "jamieoliver.com": [8505], "www.humanresources.illinois.edu": [17258], "luckyshare.net": [9651], "provision.relay.kaseya.net": [8803], "airshipventures.com": [752], "www.soylent.com": [15199], "*.npd.com": [10947], "www.excelsior-usa.com": [5484], "alpha.irccloud.com": [8354], "finansportalen.no": [5830], "www.pebblepad.co.uk": [12509], "file.answcdn.com": [1059], "samples.mplayerhq.hu": [9784], "vh2.vutbr.cz": [17522], "sandilands.info": [14279], "www.werstreamt.es": [18203], "*.ua.edu": [16925], "highland.objective.co.uk": [19454], "www.3suisses.de": [137], "findtbresources.cdc.gov": [19046], "*.ndi.org": [10893], "scwd.stockport.gov.uk": [19628], "www.gmx.ch": [6350], "notanet.com.br": [11519], "www.scapsync.com": [14087], "goto.ucsd.edu": [16938], "ipv6.nebezi.cz": [11126], "opc.gov.au": [11749], "nzbplanet.net": [11600], "indymedia.nl": [8082], "franceserv.fr": [6098], "www.heifer.org": [7284], "siff.net": [14121], "www.gaos.com": [6908], "www.onapp.com": [11808], "*.nsm.stat.no": [11039], "acms.ucsd.edu": [16939], "www.f5networks.co.uk": [5545], "css-cdn.7digital.com": [193], "opensourcehacker.com": [12026], "contacts.msn.com": [9796], "fr.canon.be": [2809], "www.trakt.tv": [19692], "northstaffs.greenparty.org.uk": [6925], "little.my": [9475], "guildmc.com": [7012], "syscan.org": [15748], "assets.huggies-cdn.net": [7602], "westandsouthdorset.greenparty.org.uk": [6925], "www.eater.com": [5038], "www.gnuheter.com": [12767], "cryptotec.com": [19093], "www.pr.co": [13007], "ajax.aspnetcdn.com": [354], "www.flattr.net": [5910], "experts.stanford.edu": [15383], "learning.gov.wales": [6860], "idp.hs-esslingen.de": [7441], "contactus.aol.com": [321], "www.landliebe.de": [2783], "digifense.com": [4477], "www.coopathome.ch": [3645], "www.bihira.com": [1868], "estore.perle.com": [12577], "pages.github.com": [6680], "buyiphone2.apple.com": [1120], "tydenik.echo24.cz": [19146], "www.hhh.umn.edu": [17268], "www.slidedeck.com": [14960], "radware.com": [13524], "compass.xboxlive.com": [18551], "intern.arch.ethz.ch": [4975], "*.longurl.it": [10768], "www.vps.net": [17509], "www.alitrip.com": [818], "www.videoplaza.tv": [17698], "kldp.org": [8735], "ziedot.lv": [18858], "tp2.sinaimg.cn": [14845], "au.gwn7.yahoo.com": [18635], "protectwise.com": [13166], "secure.friendfinder.com": [6213], "photonconsulting.com": [12647], "alt.altmetric.com": [892], "vps1.roffey.org": [13947], "www.cksource.com": [2622], "www.goke.me": [6811], "shop.nero.com": [11162], "viestintavirasto.fi": [17708], "publicaccess.nih.gov": [11052], "playboystore.com": [12800], "www.thuisbezorgd.nl": [16400], "ev.kde.org": [8718], "goduke.com": [4799], "publish.illinois.edu": [17258], "csiac.org": [2670], "www.sferra.com": [14649], "help.asana.com": [1242], "shop.vodafone.co.uk": [17813], "www.cusu.cam.ac.uk": [17243], "u-blox.com": [16921], "www.google.com.kapsobor.de": [8792], "emi.wpengine.com": [5532], "www.hosting.com": [19260], "www.tripwell.com": [16748], "www.reethus-adeline.de": [13714], "puppetlabs.com": [13232], "www.xara.com": [18542], "blog.perfectaudience.com": [12559], "www.hamppu.net": [7183], "wusmapply.wustl.edu": [17993], "plimus.com": [12817], "*.media.smithsonianmag.com": [15009], "www.abiresearch.com": [244], "sks-keyservers.net": [14127], "et.libreoffice.org": [9311], "audtd.com": [1363], "*.clara.net": [3212], "exedweb.cc.uic.edu": [17231], "mail.fa.vutbr.cz": [17522], "wwwow.osumc.edu": [11676], "www.lnf.infn.it": [7766], "resiprocate.org": [13598], "www.jekyllrb.com": [19320], "cache.iwowcase.com": [7873], "www.bnw.im": [19010], "www.proxybay.la": [16227], "hostingcon.com": [7529], "philadelphiabar.org": [12621], "youtube.ca": [18709], "*.asmp.org": [947], "www.zandvoort.nl": [11132], "sh.ch": [19648], "www.telushealth.com": [16103], "www.array.is": [1213], "www.sparklit.com": [15223], "youtube.cl": [18709], "www.taskforceonshalegas.uk": [15969], "youtube.co": [18709], "contests.nvidia.eu": [10984], "my.maricopa.edu": [9989], "cdn4.kongcdn.com": [8976], "m.news.mail.ru": [9874], "dl.360safe.com": [108], "studiegids.tue.nl": [15874], "02.files.namecheap.com": [11019], "www.ebas.ch": [4870], "suas.ie": [15553], "omaze.com": [11789], "jesus.cam.ac.uk": [17243], "www.fluendo.com": [5951], "*.snapengage.com": [15027], "sandbox.sandvine.com": [14284], "*.domain.com": [4648], "schulte.org": [14369], "new.bulkorder.ftc.gov": [5720], "monitoring-plugins.org": [10556], "www.epa.ie": [4939], "m.bw.com": [1584], "laptop.hu": [9155], "m.prace.cz": [13008], "static0.twilio.com": [16876], "www.forum.1and1.ca": [52], "i3.gallery.technet.microsoft.com": [10364], "pixel.redditmedia.com": [13691], "otley.greenparty.org.uk": [6925], "www.fafsa.ed.gov": [4889], "xprize.org": [18495], "groups.inovem.com": [19294], "www.binrev.com": [1887], "sipb.mit.edu": [9749], "subscribe.ft.com": [5826], "blaagaarden.kk.dk": [8730], "feide.no": [5743], "services.libis.be": [9302], "*.cas.org": [3059], "be.ch": [19648], "searchmobius.org": [9770], "dalemacartney.com": [4127], "www.pogoda.yandex.com": [18651], "www.titanfile.com": [16500], "www.mcclurken.org": [17261], "argeweb.nl": [1181], "ct-mkt.sakura.ne.jp": [14246], "stopwatching.us": [15488], "h.msn.com": [9796], "webmail.tiggerswelt.net": [16441], "blog.pagefair.com": [12329], "www.codefisher.org": [3367], "www.pushover.net": [13254], "business.illinois.edu": [17258], "kaiserslautern.de": [8770], "www.whamcat.com": [18226], "nevistashealth.com": [11287], "helpcenter.stanford.edu": [15383], "highpeak.objective.co.uk": [19454], "senate.gov.ph": [14575], "web.stanford.edu": [15383], "parking.hastings.gov.uk": [7234], "pewrsr.ch": [1920], "www.protectnetwork.org": [13167], "policy.greenparty.org.uk": [6925], "www.nuclearcat.com": [11568], "pharmacy.buffalo.edu": [17297], "graphene-lda.com": [6893], "objednavka.active24.cz": [18938], "www.regalii.com": [13727], "discovermerchants.com": [4550], "cem.danskebank.dk": [4145], "munchies.vice.com": [17667], "www.entrust.com": [5303], "www.skat.dk": [14897], "maeweb.ucsd.edu": [16939], "boundarydevices.com": [19014], "store.apple.com": [1120], "*.consumerreports.org": [3603], "kurly.fr": [9042], "rarediseases.org": [13567], "wegotwax.com": [18020], "facebook.fr": [5623], "www.chef.io": [3057], "en.greatfire.org": [6907], "ece.osu.edu": [11760], "forum.torrentbit.net": [16585], "lacaixa.es": [9114], "blogs.bing.com": [1895], "www.pizza.fr": [12748], "*.m01.eu": [9694], "www.gamingonlinux.com": [6447], "www.access-kaiseki-tools.com": [444], "www.bugcrowd.com": [2406], "globalhivmeinfo.org": [6725], "rki.de": [13912], "humankode.com": [7605], "i3a.unizar.es": [17356], "embed.tumblr.com": [16826], "charterbusiness.com": [3022], "2016.appseccalifornia.org": [1133], "sbucciami.com": [14324], "www.galaxis.at": [6407], "cme-online.wustl.edu": [17993], "periscope.io": [12572], "*.wesnoth.org": [18204], "blu.stb.s-msn.com": [14059], "transcend.org": [16663], "w1.buysub.com": [2564], "cc2.dealer.com": [4256], "www.einslive.de": [18015], "redmatrix.me": [13678], "housingwire.com": [7564], "sidebar.issuu.com": [8378], "www.hivelocity.net": [7429], "www.headphone.com": [7255], "www.truelife.com": [16769], "static.adzerk.net": [675], "secureselfservice.northwarks.gov.uk": [11498], "lwssvcs.lowes.com": [9636], "www.comic-con.net": [3466], "www.2020mobile.es": [70], "www.virtualnewscenter.com": [17753], "geodacenter.org": [1194], "www.balboa.io": [1626], "thainetizen.org": [16167], "moja.postovabanka.sk": [12982], "www.ustream.tv": [17451], "gusto.com": [7027], "pidpic.stanford.edu": [15383], "*.massrelevance.com": [10048], "www.gdatasoftware.co.uk": [6293], "beautybar.com": [1741], "ikoula.com": [7963], "lbrundb.cern.ch": [2575], "springpadit.com": [15311], "ub.retargeter.com": [13600], "static.sascdn.com": [14982], "www.tritonlink.ucsd.edu": [16939], "www.arbornetworks.com": [1154], "sales.admin.cam.ac.uk": [17243], "www.bitnz.com": [1940], "service.upc.nl": [17002], "www.eddieizzard.com": [5074], "macgamestore.com": [9827], "liu.se": [9084], "info.giffgaff.com": [19217], "www.linksalpha.com": [9378], "freelauri.com": [6143], "www.kateheddleston.com": [8814], "vjs.zencdn.net": [18816], "careers.tvnz.co.nz": [15886], "www.gtt.net": [6395], "www.darkreading.com": [4150], "project-voisins.web.cern.ch": [2575], "sophievipescort.com": [15153], "licensingprograms.symantec.com": [15715], "www.nsa.gov": [11061], "kb.uwm.edu": [17294], "kicknews.co.uk": [8878], "propublica.net": [13111], "www.garlandscience.com": [8118], "rs.gwallet.com": [13522], "www.url2png.com": [17411], "www.tms.va.gov": [17019], "support.microsoft.com": [10364], "mibew.org": [10339], "www.cryptomaths.com": [3877], "doctorswithoutborders.org": [4625], "newmatilda.com": [11289], "privatbanka.sk": [13096], "int.anon-ib.la": [1036], "l.de": [9057], "magicalbutter.com": [9857], "buyiphone1.apple.com": [1120], "www.digits.com": [4509], "www.kinox.ag": [19337], "mail.capsd.usc.edu": [17278], "geocaching.com": [6541, 6542], "mspartnerlp.mspartner.microsoft.com": [10364], "paperspace.io": [12382], "www.lef.org": [9226], "img.alipay.com": [817], "www.pastebin.ca": [12442], "dante-analytics.net": [4004], "www.codeigniter.com": [19070], "*.vitalcred.com.br": [12328], "webirc.skynet.ie": [16210], "ganzestore.com": [6456], "qlgroup.quickline.ch": [19530], "www.suma-ev.de": [15589], "www.sofort.com": [15089], "www.raphaelhertzog.com": [13552], "harland.net": [7207], "*.foresters.com": [6030], "www.virginmobile.com.au": [17736], "www.tradeinchecker.com": [16641], "publons.com": [13219], "noxamail.de": [19444], "mlv-cdn.com": [10768], "www.delish.com": [4331], "dev.nsslabs.com": [10959], "static.shorte.st": [14735], "ew-online.de": [4990], "beacon.classrooms.walmart.com": [17964], "www.hashicorp.com": [7227], "delivery.switchadhub.com": [15701], "1.life.taobao.com": [15952], "www.footlocker.eu": [6010], "hiconversion.com": [7386], "www.hostasaurus.com": [7520], "notenoughshaders.com": [11516], "dynatrace.com": [4825], "turnonsocial.com": [16844], "drweb.com": [4783], "yahoo.tw.weibo.com": [18187], "*.carestream.com": [2848], "secunet.com": [14474], "computing.scs.illinois.edu": [17258], "api.creator.zoho.com": [18884], "secure.aarp.org": [234], "internationalsos.com": [8268], "el-tramo.be": [5137], "static2.businessinsider.com": [2454], "silentcircle.com": [14786], "dns.dynect.net": [4835], "techpresident.com": [16014], "snelserver.com": [15033], "leadlander.com": [9194], "www.e14n.com": [4861], "www.highland.gov.uk": [19249], "www.sitelabs.co.uk": [19594], "img.grouponcdn.com": [6978], "dev.maxmind.com": [10097], "checkmyrota.com": [19055], "*.anonym-surfen.de": [8623], "www.levonline.com": [9277], "ign.com": [7729], "www3.citymapper.com": [3193], "www.stewilliams.com": [19626], "tisarana.ca": [16497], "adsecurity.org": [274], "www.digitaldefenders.org": [4491], "enhancedsteam.com": [5273], "xpd.se": [18533], "*.ens-lyon.org": [5285], "www.nesea.org": [10900], "ru.redhat.com": [13675], "researchmatch.org": [13797], "m.money.mail.ru": [9874], "teenshealth.org": [8883], "atsevents.neustar.biz": [11280], "challenge.gov": [2985], "ws.sharethis.com": [14668], "www.512pixels.net": [170], "mcvuk.com": [8227], "community.liveperson.com": [9494], "www.onlychange.com": [11881], "ads.chango.ca": [2997], "www.mulliner.org": [19416], "uit.stanford.edu": [15383], "gitcop.com": [6677], "console.lingospot.com": [9372], "imediaconnection.com": [7761], "www.sacredcrystalsingingbowls.com": [3894], "iapt-sglos.awp.nhs.uk": [10913], "*.gamefactory.jp": [6431], "ltu.se": [9657], "hotukdeals.com": [7549], "www.fotki.yandex.kz": [18652], "v4.windowsupdate.microsoft.com": [10363], "www.nodeserv.com": [11450], "on.maxspeedcdn.com": [10093], "www.adform.com": [585], "hugedomains.com": [7601], "wiki.umeahackerspace.se": [17143], "www.telerik-web-assets.com": [16093], "www.gruen.net": [6384], "archlinux.de": [1169], "dialogue.shareholder.com": [14677], "smileysnetwork.com": [15006], "www.ibens.ens.fr": [4930], "hiawatha-webserver.org": [7390], "www.chbe.illinois.edu": [17258], "*.sternkom.de": [15468], "*.unr.li": [17367], "kivikakk.ee": [19339], "dbs.com.cn": [4010], "www.openprinting.org": [12041], "support.enthought.com": [5299], "www.podcast.at": [12843], "rohc-lib.org": [13444], "www.thehoxton.com": [16291], "nyt.com": [10997], "www.namebright.com": [11016], "neos.typo3.org": [15894], "*.dmri-library.com": [4602], "indiegala.com": [8071], "www.internet.org": [8278], "portfolio.debian.net": [4273], "*.haymarketmedia.com": [7249], "*.joyent.com": [8651], "delico.se": [4330], "www.startengine.com": [15408], "polybrowser.com": [12889], "www.projectsecretidentity.org": [13140], "www.yourlogicalfallacyis.com": [18730], "*.eventbrite.com": [5442], "mathoverflow.net": [15359], "code.msdn.microsoft.com": [10364], "tanki.mail.ru": [9874], "evernote.com": [5450], "retargeting.sklik.cz": [14915], "mail.ntu.edu.tw": [10971], "doxygen.openinfosecfoundation.org": [12016], "*.accordancebible.com": [457], "dms.wiiings.com": [18288], "www.hotel.ch": [19261], "fertecon.agra-net.com": [733], "nomino.openstreetmap.fr": [12045], "csa-cee-summit.eu": [2662], "*.flyasite.com": [5960], "www.fablabtacoma.com": [5614], "hideman.net": [7394], "www.sta.sh": [15356], "wck2.companieshouse.gov.uk": [3508], "owlfolio.org": [12179], "www.teamxlink.co.uk": [16006], "silverrushstyle.com": [14800], "www.livestock-transport.com": [9513], "lp.longtailvideo.com": [9589], "www.arne.schuldt.info": [1207], "hh.ru": [7060], "m.proxfree.com": [13175], "media.univcomm.cornell.edu": [3676], "images.thecarconnection.com": [7398], "phpbb.com": [12650], "www.counterpartychain.io": [3707], "celiac.org": [2931], "plannedgiving.com": [12773], "pizza.de": [12747], "collector.opensvc.com": [11972], "rss.packetstormsecurity.com": [12317], "loisirs2.cff.ch": [15693], "svn.keksbude.net": [8842], "secure.acpa.ca": [745], "jotter.educ.cam.ac.uk": [17243], "www.scottevest.com": [14398], "ads.ign.com": [7730], "honcode.ch": [7089], "vook.com": [17842], "archive.anon-ib.la": [1036], "partner.symantec.com": [15715], "jiadian.taobao.com": [15952], "www.it-sicherheit.de": [8193], "secure.runbox.com": [14037], "jobs.fitbit.com": [5887], "smc.cybercon.com": [3968], "www.shareholder.anz.com": [315], "dev.c-ware.de": [2497], "journal.paul.querna.org": [13350], "www.lullabot.com": [9658], "whatimg.com": [18233], "summertime.fazekas.hu": [5697], "bancopostaclick.poste.it": [12965], "teamgaslight.com": [16001], "intercom.io": [8244], "happylaptop.chef.io": [3057], "wosign.cn": [18392], "m.my.t-mobile.com": [15772], "pixel.facebook.com": [5620], "www.foresters.biz": [6030], "www.tpg.com": [15850], "www.otakumode.com": [12129], "yellowpages.superpages.com": [15633], "thp.io": [16388], "www.lxcenter.org": [9679], "www.hornbach.nl": [7496], "www.fragdenstaat.de": [6093], "me.jd.com": [8423], "media.mnn.com": [9768], "developers.facebook.com": [5620], "www.sandofsky.com": [14280], "modelmayhem.com": [10517], "ultimatebootcd.com": [17129], "espanol.smokefree.gov": [19603], "leviathansecurity.com": [9272, 9273], "nutrition.gov": [11584], "ybitcoin.com": [18611], "sendvid.com": [14584], "hellerlab.stanford.edu": [15383], "www.buddycube.com": [2390], "ohiostatealumni.org": [11764], "isis.jhu.edu": [16296], "watch.yandex.kz": [18652], "jigsaw.w3.org": [17888], "huffingtonpost.com": [7600], "billing.ivacy.com": [8398], "www.questia.com": [13354], "images.hertz247.com": [7372], "gypsy.freedesktop.org": [6126], "turris.cz": [16846], "www.bydavidwittig.com": [2484], "goldenpass.ch": [19225], "owa.connect.kent.ac.uk": [17317], "www.movieposter.com": [10643], "www.tailormadeanswers.com": [15913], "*.webmail.sk": [15676], "1x.com": [49], "dbforums.com": [4011], "pactf.com": [12203], "mailerlite.com": [9882], "www.codebasehq.com": [3360], "rpm4.zarb.org": [18796], "huff.to": [1920], "www.libreofficebox.org": [9312], "*.couragecampaign.org": [3713], "ahpra.gov.au": [1394], "online-go.com": [11868], "www.loginza.ru": [9560], "developer.leafly.com": [9204], "www.oculusvr.com": [11722], "cms.here.com": [7326], "mysql.ut.ee": [17069], "www.liquidmatrix.org": [9445], "*.blackvpn.com": [2042], "www.checksconnect.com": [7207], "www.xroxy.com": [18590], "www.piratenpartei-bayern.de": [12719], "testssl.sh": [16147], "me.com": [9735], "unblocked.red": [17151], "www.zoneedit.com": [18893], "www.frequentis.com": [6197, 6198], "*.liberalamerica.org": [9295], "ehawaii.gov": [7245], "buyaplan.co.uk": [19030], "portal.gigaclear.com": [6647], "press.walthamforest.gov.uk": [17966], "tvlicensing.co.uk": [16861], "workfor.greenpeace.org": [6937], "*.swt.com": [14209], "training.ebsco.com": [4872], "secure.bizland.com": [2029], "mailings.gmx.net": [6350], "www.htwk-leipzig.de": [7114], "pengpod.com": [12534], "sites.fastspring.com": [5677], "zerocater.com": [18842], "leroyfcpress.com": [9257], "businesshelp.comcast.com": [3461], "glimmerblocker.org": [6709], "id.secondlife.com": [14462], "www.seba-geek.de": [15129], "volunteerbooking.london.gov.uk": [9578], "cdn3.sbnation.com": [14079], "www.fora.tv": [5585], "wiki.projectmeshnet.org": [13139], "genius-2.itunes.apple.com": [1120], "livestock-transport.com": [9513], "www.carrier-lost.org": [2863], "api-v1.websitealive.com": [18149], "www.vanderbilthealth.com": [17556], "www.metabunk.org": [10304], "www.teendriversource.org": [16058], "lijit.com": [9349], "*.lockerdome.com": [9544], "frype.com": [4742], "vivad.aolcdn.com": [322], "www.trustifier.com": [16795], "vpn-service.us": [17499], "scripts.sil.org": [14122], "gorsel.yandex.com.tr": [18649], "*.unilever.com": [17189], "www.mozo.com.au": [10665], "cdn.mouseflow.com": [10624], "widgets.amazon.com": [910], "gmx.info": [6350], "politi.co": [1920], "www.stefan-betz.net": [15461], "ss.knet.cn": [8739], "puritan.com": [13247], "keyserver2.pgp.com": [12245], "www.hostingsolutions.cz": [7531], "*.longaccess.com": [9590], "www.groupme.com": [6970], "ingenuity.net.au": [8140], "iwcp.usuhs.edu": [17052], "*.aerlingus.com": [682], "portal.azure.com": [1483], "*.creativepartnershipsaustralia.org.au": [3780], "www.onesignal.com": [11843], "secdev.com": [14458], "www.mbed.org": [10109], "expo.engineering.osu.edu": [11760], "jedec.com": [8430], "developer.marvel.com": [10038], "api.cloudcontrol.com": [3283], "dashboard.eindhoven.nl": [5127], "edoceo.com": [5089], "*.jstor.org": [8460], "www.chbtc.com": [3036], "riksgalden.se": [13890], "*.legacyconnect.ning.com": [9227], "www.undergraduateresearch.osu.edu": [11760], "ir-de.amazon-adsystem.com": [909], "smtrcs.redhat.com": [13675], "media.memrise.com": [10254], "www.dataxu.com": [4190], "www.direct.gov.uk": [4531], "paste.debian.net": [4273], "www.mantisbt.org": [19383], "www.scripturaengage.com": [14426], "dribper.com": [19127], "images2.sanalmarket.com.tr": [14275], "a4.websitealive.com": [18149], "*.sanoma.fi": [14288], "scholarcommons.usf.edu": [17274], "gotvape.com": [6854], "www.european-privacy-seal.eu": [5408], "partner.just-eat.be": [19328], "www.o2tv.cz": [16076], "www.dealspwn.com": [7549], "*.skitch.com": [14914], "atmia.com": [18969], "*.comingolstadt.de": [3468], "gallup.com": [6409], "feature.rescue.org": [19545], "math.ias.edu": [7669], "kiwiirc.com": [8930], "spotseeker.cac.washington.edu": [17291], "www.resonant.org": [13809], "www.yt-dl.org": [18744], "*.crunchboard.com": [12585], "tasha.serversaurus.com.au": [14619], "www.red-dove.com": [13656], "provost.illinois.edu": [17258], "lists.young-pirates.eu": [18716], "unbound.net": [17154], "a.ucsd.edu": [16939], "answers.nei.nih.gov": [11052], "fr.norton.com": [11505], "www.microsoftventures.com": [10370], "p6.qhimg.com": [13302], "www.wordtothewise.com": [18431], "buddycube.com": [2390], "derwesten.de": [4384], "glx-dock.org": [16856], "epayments.ipswich.gov.uk": [8351], "trello.com": [16710], "www.codefund.io": [3369], "sknvibes.com": [14126], "estore.drweb.com": [4783], "www.cstatic-graphics.com": [3899], "adressbuch.mail.de": [9873], "webfolio.spla.ulaval.ca": [17229], "jve.linuxwall.info": [9437], "*.linuxquestions.org": [9415], "www.verisign.co.uk": [17623], "www.kids.org.uk": [19336], "*.moovweb.com": [10582], "asada.govspace.gov.au": [6867], "m.internet.org": [8278], "solola.ca": [15123], "stitcher.com": [15476], "blog.babbel.com": [1589], "bhamcommunity.nhs.uk": [10913], "understanding.webtrends.com": [5177], "umich.edu": [17266], "www.openideo.com": [11944], "supportprofile.apple.com": [1120], "www.alumniweb.ox.ac.uk": [17271], "www.dotdeb.org": [4699], "starwoodhotels.com": [15414], "m.cygnus.cc.kuleuven.be": [8816], "www.northern-indymedia.org": [11500], "www.polleverywhere.com": [12880], "www.broadbandbuyer.co.uk": [2351], "debbugs.gnu.org": [6357], "ib24.csob.sk": [3896], "snapdeal.com": [15030], "wms.assoc-amazon.co.uk": [1287], "artsprojekt.com": [18803], "exchange.ulaval.ca": [17229], "en-sk.dict.cc": [4455], "*.brownpapertickets.com": [2366], "our.intel.com": [8209], "images.palcdn.com": [12206], "btc.diet": [1555], "desertory.de": [4386], "fr.pcisecuritystandards.org": [12224], "trk.tidaltv.com": [16433], "www.edigitalresearch.com": [4900], "stunnish.com": [15546], "www.myshadow.org": [10816], "small.linncdn.com": [9385], "aarhus.dk": [392], "partner.etracker.de": [5390], "www.girlsoutwest.com": [6667], "customerhub.net": [8136], "cdn.btrcdn.com": [1573], "www.wyzerme.com": [18492], "listbox.com": [9449], "www.turku.fi": [19706], "www.sharenice.org": [19585], "www.timeclockdeals.com": [16459], "apexea.oracle.com": [12082], "cityoflondon.gov.uk": [3190], "three.ma": [16399], "inkfrog.com": [8147], "pro-linux.de": [13106], "www.linuxvoice.com": [9425], "ufa.rt.ru": [13469], "my.newark.ohio-state.edu": [11761], "sealswithclubs.eu": [14439], "zeeland.nl": [11132], "report.nrls.nhs.uk": [10913], "itrusteauth.nih.gov": [11052], "bitnami.org": [1944], "cs.libreoffice.org": [9311], "*.sabayon.org": [14214], "*.networksgroup.com": [11210], "discover.com": [4547], "qis.hs-karlsruhe.de": [7582], "doc.mageia.org": [9847], "akademy2006.kde.org": [8718], "www.dbs.com.cn": [4010], "telefoniczna-kopalnia.panoptykon.org": [12365], "*.kpn.nl": [8744], "formassembly.com": [6040], "www.cronius.nl": [3809], "s5.mt-cdn.net": [9798], "developer.bluetooth.org": [2155], "www.worldhealth.net": [18463], "wwwstage.cityoflondon.gov.uk": [3190], "blog.hslu.ch": [7583], "www.openinventionnetwork.com": [11906], "coveredcacertifiedpartners.com": [3731], "www.thefrozenfire.com": [16336], "edirectdebit.com": [4902], "forum.palemoon.org": [12341], "dmjx.dk": [4600], "humblebundle.com": [7615], "e.lvme.me": [9492], "cdn.elegantthemes.com": [5156], "jiscmail.ac.uk": [8439], "www.bitservicex.com": [4883], "healthiernorthwestlondon.nhs.uk": [10913], "passsource.com": [12424], "*.verkkomaksut.fi": [17629], "iwork.com": [7878], "www.olin.edu": [6104], "swissinfo.ch": [19621], "environmental-impact.web.cern.ch": [2575], "miamire.com": [10336], "publish.escholarship.org": [4970], "jobscout24.de": [8591], "*.ebay.com.sg": [4874], "playlists.net": [12807], "rdns.cc": [3996], "forum.dee.su": [4294], "www.icanlocalize.com": [7695], "www.sickdaysurfshop.com": [14758], "dlitz.net": [4042], "public01.milton-keynes.gov.uk": [10401], "buckid.osu.edu": [11760], "esp.ap.equinix.com": [5334], "www1.netflix.com": [11229], "www.joslin.org": [8636], "www.airsoftgi.com": [754], "nifty.com": [10925], "theengineroom.org": [16329], "www.tv4play.se": [15882], "butlerandthechef.com": [16181], "jobs.newscientist.com": [11298], "burymbc.firmstep.com": [19183], "www.icefilms.info": [7911], "www.cluster1.easy-hebergement.net": [5033], "*.ally.com": [865], "europython.eu": [5409], "sft.its.cern.ch": [2574], "openwebmail.org": [11913], "www.fav.me": [4422], "www.a-ads.com": [215], "secure.teamforge.net": [15999], "www.coinwallet.eu": [3400], "xt-commerce.co.uk": [18594], "open.com.au": [11914], "*.moses.com": [14881], "macromedia.com": [9833], "projects.vpsfree.cz": [19743], "wa236.teamviewer.com": [16004], "nciphub.org": [19427], "login.seznam.cz": [14648], "www.jabber.org.uk": [8476], "gupnp.org": [6354], "www.koumbit.net": [8998], "re.taobao.com": [15952], "www.r00tz-org.theidentityproject.com": [13390], "twitch.tv": [16888], "www.aviris.fi": [1450], "pass.yandex.com.tr": [18649], "u3.uicdn.net": [16958], "*.togevi.com": [8400], "music.jd.com": [8422], "www.lifehacker.com": [9331], "cdn.krxd.net": [9016], "downloads.mamp.info": [19379], "itc.mzstatic.com": [10852], "1in3campaign.org": [11852], "4qinvite.4q.iperceptions.com": [19275], "mae-hpc.engineering.osu.edu": [11760], "cp.win-sv.jp": [18326], "nz.godaddy.com": [6773], "youlun.jd.com": [8423], "www.lazycoins.com": [9184], "smartfacts.cr.yp.to": [3748], "manisec.com": [9934], "media.bizj.us": [16180], "www.citi.com": [3168], "www.efinancialcareers.com": [4911], "sparkfun.com": [15222], "web.archive.org": [1166], "snipcart.com": [15037], "whistleout.co.uk": [18248], "grad.uic.edu": [16953], "coursefinder.uow.edu.au": [17350], "id.itradecimb.com.sg": [2607], "stg.here.com": [7326], "litlab.stanford.edu": [15383], "coinmarketcap.com": [19071], "harlandforms.com": [7207], "jobs.urbandictionary.com": [16234], "book.majordomo.ru": [9901], "*.wyndham.com": [18490], "www.invest.dha.gov.au": [4308], "escrowlive.net": [5355], "sr.libreoffice.org": [9311], "api.deferpanic.com": [4312], "content.s8bbs.com": [14639], "arbornetworks.com": [1154], "getmailbird.com": [6596], "www.internet.org.nz": [8277], "www.webfonts.fonts.com": [5993], "www.studiegids.tue.nl": [15874], "www.getmondo.co.uk": [19215], "blogs.law.stanford.edu": [15383], "c.bing.com": [1895], "partner.fastdomain.com": [5672], "staff.snel.com": [15034], "cecpp.cheshireeast.gov.uk": [3067], "intranet.creatis.insa-lyon.fr": [7771], "www.hongkongpost.gov.hk": [19259], "security.alibaba.com": [809], "goodlucktrunk.com": [6828], "developer.onedrive.com": [11831], "cospar-assembly.org": [2641], "s3.reutersmedia.net": [16381], "pinkong.taobao.com": [15952], "caseking.de": [2876], "*.aans.org": [928], "docs.id.yahoo.co.jp": [18640], "healthysteps.stanford.edu": [15383], "*.cduniverse.com": [2568], "www.manitu.net": [9957], "www.zend.com": [18821], "vantage.rubiconproject.com": [14014], "rackspace.com.hk": [13502], "www.understood.org": [17159], "clearchain.com": [3231], "*.ukfast.co.uk": [16969], "internal.pti.iu.edu": [8064], "apm.com": [332], "arbor.net": [1154], "cdn.etrade.net": [5391], "iinet.net.au": [7958], "app.qualaris.com": [13327], "hugendubel.info": [19265], "languageperfect.com": [9146], "fundusze-inwestycyjne.money.pl": [10546, 10547], "*.intuitcdn.net": [8304], "courses.it.ox.ac.uk": [17271], "www.jodel-app.com": [8606], "www.cuny.edu": [3189], "mozilla.com": [10654], "*.secusmart.com": [14539], "munin.debian.org": [4275], "www.atlantis.sk": [1319], "www.shotgunclub.com": [14737], "www.365ticketscentral.com": [115], "www.infektionsschutz.de": [8090], "pcworld.com": [12232], "hmv.co.jp": [7086], "account.longtailvideo.com": [9589], "efukt.com": [4914], "denso-wave.com": [4367], "webmail.forthnet.gr": [6054], "register.smext.faa.gov": [5713], "acg.taobao.com": [15952], "eyereturnmarketing.com": [5532], "onlinebenefitclaim.basildon.gov.uk": [18984], "api.jquery.com": [8451], "www.minijob-zentrale.de": [10424], "www.tipp10.com": [16493], "*.pinme.ru": [12695], "shop.medikamente-per-klick.de": [10196], "www.notesappstore.com": [10102], "cloud.loggn.de": [9555], "www.allstartire.com": [847], "www.alternativlos.org": [885], "www.heroesofnewerth.com": [14062], "www.dslreports.com": [4081], "surftown.com": [15652], "static.weboffice.uwa.edu.au": [17293], "backstage.forgerock.com": [19189], "www.abanet.org": [938], "help.yandex.kz": [18652], "www.atmos.illinois.edu": [17258], "www.layerbnc.org": [9182], "www.copernico.net": [3650], "youtube.com.hr": [18709], "api.blockspring.com": [2098], "aquilaclothing.co.uk": [1146], "infowar.com": [8105], "dev.ashampoo.com": [1250], "www.rottnestfastferries.com.au": [13984], "tableau.com": [15897], "cdni.condenast.co.uk": [3553], "www.mileiq.com": [10392], "olvi.fi": [11785], "thinkculturalhealth.hhs.gov": [7062], "asada.gov.au": [345], "ee.co.uk": [5457], "*.uakron.edu": [17082], "lists.xenserver.org": [18557], "base.liveperson.net": [9493], "lh6.google.co.*": [6837], "img.sanet.me": [14077], "rebeltorrent.net": [13639], "meeting.teamviewer.com": [16004], "switchplus.ch": [15706], "buy.symantec.com": [15715], "s.gr-assets.com": [6877], "justfordomino.com": [10101], "webmerge.me": [18075], "www.kismetwireless.net": [8919], "democracy.kent.gov.uk": [8851], "www.woodgreen.org.uk": [18418], "*.www.dialdirect.co.uk": [4442], "support.firmstep.com": [19183], "cdn.css-tricks.com": [2678], "sourcefabric.com": [15179], "www.aulo.in": [1368], "forum.e-hentai.org": [4840], "media.umbel.com": [17142], "www.beforeyoudig.nationalgrid.com": [11081], "www.tauceti.org.au": [15976], "www.codecentric.de": [3362], "xenomai.org": [18565], "euscripts.msi.com": [9792], "*.prf.hn": [12567], "labs.chevronwp7.com": [9127], "*.gullipics.com": [19232], "awaps.yandex.com.tr": [18649], "hubspot.com": [7594], "kickass.to": [8879], "blog.jessfraz.com": [8555], "*.awm.gov.au": [1405], "www.dynamics.com": [4829], "www.bistudio.com": [2179], "*.egnyte.com": [5115], "search.disconnect.me": [4543], "www.jhsmh.org": [8854], "zeltser.com": [18813], "assets.puma.com": [13227], "seacloud.cc": [14434], "square.com": [15329], "biofitt.com": [1906], "tsapps.nist.gov": [11051], "desk.dict.cc": [4455], "garage.maemo.org": [9844], "quamnet.com": [13334], "seecrypt.com": [14548], "overpass-turbo.eu": [19474], "posta.ch": [12949], "media.skyandtelescope.com": [14932], "www.btc100.com": [1556], "publicfeed.stubhub.com": [15534], "duckduckgo.com": [4792], "s.ixiaa.com": [7881], "*.rfecom.com": [13854], "optimisemedia.com": [12070], "images.h.switchadhub.com": [15701], "www.optimizegoogle.com": [12072], "www.thebrighttag.com": [2324], "vc-kundencenter.de": [17472], "williamhill.com": [18315], "cnre.vt.edu": [17740], "*.landslide.com": [9143], "8r.com": [202], "seravo.fi": [14594], "www.fod.osu.edu": [11675], "which.co.uk": [18240], "www.mixtapeleak.com": [10469], "r.ad6media.fr": [515], "intern.connecthr.nl": [2783], "www.login.vutbr.cz": [17522], "www.passwordscon.org": [19480], "www.wikileaks.org": [18291], "support.ispbilling.com": [16817], "imis.the-dma.org": [16185], "www.buildbetter.software": [2411], "www.warmlyyours.com": [17980], "pep.foundation": [12502], "katalog.bib.htwk-leipzig.de": [7114], "au.org": [949], "puck.nether.net": [11235], "kumu.io": [9036], "www.dgex.com": [4033], "guildwars2.com": [7011], "www.bitcoin.org": [1930], "vanillamastercard.com": [17559], "www.techfreedom.org": [16011], "bluetooth.org": [2155], "alliedmedia.org": [854], "yandex.by": [18648], "ondemand.sans.org": [14072], "citmedialaw.org": [4046], "services.community.lego.com": [9068], "sptag.com": [15322], "d.adroll.com": [536], "mzl.la": [19423], "dagbladet.no": [4106], "wiki.myportal.im": [10776], "www.vc-kundenservice.de": [17472], "www.jackandjill.ie": [8481], "hackint.org": [19234], "jiwire.com": [8565], "docxpress.stanford.edu": [15383], "apply-berkeley-edu.cdn.technolutions.net": [16042], "www.ca.niif.hu": [10929], "j-schmitz.net": [8408], "factoryexpo.net": [5627], "cdn.vni.la": [17558], "www.edihealth.com": [4894], "my.gmocloud.us": [6344], "www.usc.edu": [17278], "help2.talktalk.co.uk": [15929], "talktalk.co.uk": [15929], "no.norton.com": [11505], "assets.wantful.com": [17974], "distilleryimage3.instagram.com": [8182], "*.eetgroup.com": [4905], "*.omnitec.com": [11800], "pasazfin.wp.pl": [17921], "www.opticsinfobase.org": [12066], "estavisas.org.uk": [4966], "caremad.io": [2847], "www.transit.land": [16670], "wiki.aalto.fi": [390], "www.it-cube.net": [7839], "style.omniture.com": [11803], "mobypicture.com": [10506], "wbs-law.de": [18306], "www.nedlinux.com": [11131], "bbs.boingboing.net": [2181], "bleep.com": [2065], "*.epson.jp": [5330], "novosoft.net": [11532], "secure.victoriassecret.com": [17672], "pathofexile.com": [12453], "www.cardiff.gov.uk": [19039], "www.active24.sk": [18938], "*.opensuse.org": [11971], "pythonanywhere.com": [13273], "lillypad.lilly.ca": [5163], "nixsrv.com": [11431], "2kgames.com": [87], "t.btstatic.com": [1580], "www.djangoproject.com": [4590], "i1.iis.net": [7741], "shipto.com": [14707], "*.shurgardpayment.eu": [14751], "www.staticgen.com": [15427], "ucuzu.com": [17108], "mcmelectronics.com": [9728], "webmail.ukeer.de": [17124], "foreverinfamous.com": [8089], "campusactivities.usc.edu": [17278], "snowmagazineonline.com": [15042], "bullguard.com": [2420], "beanbaginc.com": [1731], "open-mesh.org": [12020], "www.peerj.com": [12515], "www.cp.pt": [3744], "api.ccbill.com": [2534], "oshkosh.com": [12121], "www.trustlogo.com": [3504], "ss3.vas-hosting.cz": [19729], "support.leboncoin.fr": [19351], "firstcentralsb.com": [5867], "delivery.d.switchadhub.com": [15701], "www.harland.com": [7207], "hosting.wedos.com": [17901], "img.tnastatic.com": [16517], "masspirg.org": [9714], "sata-io.org": [14075], "*.levexis.com": [9271], "order.nexcess.net": [11356], "*.hungryforchange.tv": [7620], "volusion.com": [17837], "xerxes.calpoly.edu": [2747], "myheritage.se": [10834], "secure.xaraonline.com": [18544], "www.rothaconference.leeds.ac.uk": [17318], "vsipprogram.com": [17513], "uicbookstore.org": [16954], "cache.addthiscdn.com": [571], "andyet.com": [1012], "blog.honest.com": [7481], "bmf-steuerrechner.de": [1530], "www.three.ie": [16397], "*.loopiasecure.com": [9607], "*.panel.home.pl": [7465], "www.betterbills.com.au": [1823], "tribalfusion.com": [16725], "images.ccs.com": [2551], "www.dental.washington.edu": [17291], "blog.mandriva.com": [9947], "getbootstrap.com": [6609], "*.adrxmedia.com": [17540], "i.computerbild.de": [19075], "*.abiliba.net": [418], "www.mi-ms.com": [9991], "www.bahn.de": [1617], "disconnect.me": [4543], "aggregateknowledge.com": [726], "www.fictionpress.com": [5772], "businessforums.verizon.net": [9468], "www.csa-cee-summit.eu": [2662], "scripts.verticalacuity.com": [17638], "www.h-node.org": [7042], "diasp.eu": [4446], "extremetracking.com": [5528], "www.watchmedier.dk": [17996], "www.tag1consulting.com": [15903], "www.xhamster.biz": [785], "www.wingolog.org": [18353], "ui.streamate.doublepimp.com": [4717], "*.nwtime.org": [11271], "thankyou.com": [16173], "house.resource.org": [13207], "cdn.knightlab.com": [8945], "www.stgeorge.com.au": [19627], "evotronix.evotronix.netdna-cdn.com": [5463], "www.screendaily.com": [14409], "alsoactebis.com": [301], "images.travelnow.com": [16692], "idprotect.vip.symantec.com": [15715], "bugzilla.untangle.com": [17370], "rbss.wirral.gov.uk": [18371], "kgs.steampowered.com": [15450], "kulcs-soft.hu": [9033], "bath.greenparty.org.uk": [6925], "mythtv.org": [10849], "www.ukfsn.org": [16966], "www.mychatagent.com": [8689], "cdn-static.liverail.com": [9495], "www.postto.me": [12956], "*.axa-winterthur.ch": [381], "autoitscript.com": [1417], "partner.quickline.ch": [19530], "argos-spain.co.uk": [1186], "www.thalysthecard.com": [16172], "images.costco-static.com": [3693], "sip.derby.gov.uk": [4380], "participant.identrust.com": [7934], "main.exoclick.com": [5499], "arkos.io": [1196], "teamtailor.com": [16003], "*.yahoo.com": [18638], "mersenne.org": [10286], "go2.trendmicro.com": [16717], "www.peterbroderick.com": [12589], "www.transportstyrelsen.se": [16683], "www.systembolaget.se": [15763], "www.oebb.at": [19455], "*.ipxe.org": [7800], "www.notabug.org": [11514], "help.snapengage.com": [15026], "api.toster.ru": [16598], "adwords.google.co.*": [6837], "*.msnbc.msn.com": [9794], "1phads.com": [61], "moinmo.in": [10533], "gmx.biz": [6350], "signin.epek.com": [5318], "www.alphassl.com": [867], "www.habets.se": [7125], "defcon.ru": [4304], "blogs.cisco.com": [3162], "redmine.replicant.us": [13779], "bricklink.com": [2313], "riverisland.fr": [13906], "affiliate.law.yale.edu": [18642], "uno.im": [17361], "blackpoolfylde.greenparty.org.uk": [6925], "evermap.com": [5445], "support.opencorporates.com": [11931], "www.trademark.harvard.edu": [7219], "www.lexmachina.com": [9279], "www.gl.ciw.edu": [2857], "www.pcpartpicker.com": [12497], "gigafreak.net": [6648], "blossoms.mit.edu": [9749], "complice.spla.ulaval.ca": [17229], "www.mequoda.com": [10268], "wiki.leloop.org": [9191], "www.mi-pro.co.uk": [8226], "dacapoalfine-dd.de": [4099], "quantcast.com": [13337], "ballerup.dk": [1630], "cdn.corporate.walmart.com": [17964], "accounts.hants.gov.uk": [7196], "app-us2.resrc.it": [13599], "d2.nal.usda.gov": [17209], "ums.adtech.de": [638], "aka-cdn-ns.adtech.de": [638], "images.cdn.static.malwarebytes.org": [9929], "www.contiki-os": [3617], "myhailprotector.com": [7164], "users.venturebeat.com": [17611], "*.media.tumblr.com": [16826], "meynconnect.com": [10328], "sallie-info.stanford.edu": [15383], "www.websupport.at": [18091], "convar.com": [3625], "staffsmoorlands.greenparty.org.uk": [6925], "www.gammagroup.com": [6448], "ideas.hubspot.com": [17440], "cwisdb.kuleuven.be": [8816], "webcruiter.no": [18114], "hipaa.wustl.edu": [17993], "www.physics.osu.edu": [11760], "www.hkw.de": [7080], "www.enhanceie.com": [5272], "api.vistumbler.net": [13544], "www.map.pol.ulaval.ca": [17229], "software.nasa.gov": [10869], "dramaticarts.usc.edu": [17278], "trk.cetrk.com": [2589], "ofb.net": [11620], "*.ticketsnow.com": [16427], "www.da.isy.liu.se": [9084], "jaguar.cis.vutbr.cz": [17522], "www.jfrog.com": [8433], "events.geogebra.org": [6537], "kau.toke.dk": [16533], "uploads.billiondigital.com": [1882], "www.gnomejournal.org": [6354], "*.wwte1.com": [17937], "forum.lowyat.net": [9637], "www.cryptocoincharts.info": [3872], "*.pimienta.org": [12985], "community.adobe.com": [615], "sabb.com": [7098], "gemeentewesterveld.nl": [11132], "*.sheppyware.net": [14700], "playframework.com": [12798], "usps.com": [17049], "m.wolverhampton.gov.uk": [18404], "payment.empflix.com": [5213], "lug.mtu.edu": [9802], "mail.uu.se": [17074], "www.opcw.org": [11653], "www.qtcloudservices.com": [13316], "ads.neudesicmediagroup.com": [11281], "ddktoday.niddk.nih.gov": [11052], "*.gulli.com": [19232], "www.haveibeenpwned.com": [19238], "www5.nottingham.ac.uk": [11528], "www.mathinf.uni-heidelberg.de": [17174], "suppliers.cheshire.gov": [3065], "getclicky.com": [6610], "campaigns.paypal.com": [12467], "www.uniblue.com": [17180], "learnerview.ofsted.gov.uk": [19456], "coisas.com": [3412], "jailbreakingisnotacrime.org": [8493], "talks.stanford.edu": [15383], "statics.meetic-affinity.com": [10214], "manabalss.lv": [9937], "*.quora.com": [13375], "export.skat.dk": [14897], "db.debconf.org": [4268], "alta.com": [873], "portal.etc.cmu.edu": [2858], "webcon.japias.jp": [8516], "ubuntu-mate.boutique": [17097], "vttts.readspeaker.com": [13610], "ige.ch": [15696], "www.formilux.org": [6044], "swale-consult.objective.co.uk": [19454], "prdownloads.sourceforge.net": [15174], "*.no-ip.com": [17791], "wokingham.gov.uk": [19762], "service.eudoxus.gr": [6912], "opinionmeter.com": [12055], "www.macgamestore.com": [9827], "images.placesonline.com": [12755], "www.linuxslut.net": [9436], "www.sektioneins.de": [14563], "www.commentarymagazine.com": [3478], "www.blackironbeast.com": [2046], "download.spiceworks.com": [15266], "techworld.idg.se": [7705], "www.commercialappeal.com": [4989], "m.feedback.yandex.com": [18651], "www2.mrc-lmb.cam.ac.uk": [17243], "ssl-tools.net": [19622], "www.plantcommunity.de": [12775], "bellingcat.com": [1766], "sierraware.com": [14772], "knowledge.seagate.com": [14437], "www.iwowcase.com": [7873], "il.srgssr.ch": [19621], "hrweb.cdn-apple.com": [2553], "www.nothing.ch": [11526], "movie2k.pe": [10635], "wpc.*.edgecastcdn.net": [5079], "indiemerchandising.com": [8069], "www.agar.io": [719], "community.norton.com": [11505], "midandeastcornwall.greenparty.org.uk": [6925], "www.mint.com": [10432], "namecheap.com": [11019], "ipvanish.com": [7799], "*.inburke.com": [8040], "www.lolzparade.com": [4118], "panel.preyproject.com": [13045], "support.avast.com": [1444], "cpf.engineering.osu.edu": [11760], "1deg.org": [50], "buffalo-technology.com": [2398], "epetitionslincolnshire.firmstep.com": [19182], "reviews.argos.ie": [1185], "www.videolan.org": [17688], "sav.sk": [14972], "pixel.crosspixel.net": [3812], "spring.io": [15303], "hwsw.hu": [7119], "*.typography.com": [16916], "southtyneside.greenparty.org.uk": [6925], "accounts.adafruit.com": [550], "*.volkswagenbank.de": [17830], "app.peer5.com": [12514], "medicinenet.com": [10192], "discoverbsd.com": [4548], "sp.nl": [14151], "fonts.typotheque.com": [16917], "payments.sky.com": [14924], "ws-ea.amazon-adsystem.com": [909], "survey.hslu.ch": [7583], "www.domenkozar.com": [4668], "postfinance.ch": [12949], "internetbanking.bnz.co.nz": [1534], "biowarestore.com": [1903], "query.yahooapis.com": [18639], "mmixr.com": [10476], "denman.osu.edu": [11760], "forum.freifunk.net": [6192], "img.coxnewsweb.com": [3740], "www.daha.net": [15090], "www.totalboox.com": [16600], "yun.taobao.com": [15952], "yelp.com": [18673], "www.sendmail.com": [14581], "digium.com": [4510], "s.ign.com": [7730], "store.fileforum.com": [1817], "videos.ti.com": [16152], "gpt.nserver.ru": [11548], "webmail.sydney.edu.au": [19649], "dev.yandex.com": [18651], "slashdot.org": [14947], "mytm.tm.com.my": [16083], "webwsp.aps.kuleuven.be": [8816], "ses.leeds.ac.uk": [17318], "forum.nasaspaceflight.com": [10870], "www.coolwebscripts.com": [3640], "*.netindex.com": [11211], "collector.statowl.com": [15415], "www.webtrends.com": [18171], "bugs.freenetproject.org": [6181], "sueddeutsche-tickets.de": [15579], "nesterov.pw": [11167], "*.myconan.net": [10826], "chisel.eecs.berkeley.edu": [17240], "secure.classmates.com": [3218], "global.sky.com": [14924], "r3.mail.ru": [9874], "www.engineering.illinois.edu": [17258], "drivertraining.hertsdirect.org": [7334], "cryengine.com": [3838], "nodejitsu.com": [11453], "www.affair-guide.com": [697, 698], "solar.engineering.osu.edu": [11760], "maxcdn.com": [10091], "api.mixcloud.com": [10465], "www.hqpower.eu": [17596], "www.govwaste.co.uk": [6869], "connect.tms.pl": [19686], "trafficholder.com": [16646], "s1.2mdn.net": [94], "webtype.com": [18095], "www.msf.org.uk": [9789], "app.marketo.net": [10015], "*.jalopnik.com": [8497], "www.cdn-net.com": [2917], "sourceforge.net": [15174], "pearsonvue.com": [12506], "www.350zevolution.com": [105], "alumni.ntnu.no": [10964], "www.newstral.com": [11347], "blog.getcloudapp.com": [9370], "boingohotspot.net": [2182], "www.wog.ch": [18451], "bookcase.chromeexperiments.com": [3117], "www.pharmacievirtuelle.pha.ulaval.ca": [17229], "sourceconference.com": [15177], "csat.apple.com": [1120], "p2-u.itunes.apple.com": [1120], "iforgot.apple.com": [1120], "sso.amd.com": [925], "de-es.dict.cc": [4455], "employerview.ofsted.gov.uk": [19456], "t.webtracker.jp": [18165], "legal.yandex.com": [18651], "h.atdmt.com": [10360], "www.dealnews.com": [4261], "secure.blood.co.uk": [2115], "prepaid.onlinesbi.com": [11873], "proxybay.la": [16227], "basemap.stanford.edu": [15383], "www.kmpt.nhs.uk": [10913], "rating-widget.com": [13576], "*.youversion.com": [18710], "readings.owlfolio.org": [12179], "wgo.mmstat.com": [10477], "www.climatecentral.org": [3265], "maxcdn.bootstrapcdn.com": [2217], "awin1.com": [4486], "tunnelsup.com": [19705], "amstelveen.nl": [11132], "www.encryptallthethings.net": [5236], "printmojo.com": [13067], "kariera.hofer.si": [299], "*.tradenetworks.com": [16638], "www.geekify.com.au": [6504], "moonpig.com": [10578], "static.pressable.com": [13036], "rugby.gov.uk": [14027], "www.nic.cz": [11379], "www.gixen.com": [6693], "emu.freenetproject.org": [6181], "www.insidecelebs.com": [8168], "sundance.tv": [19638], "minfil.org": [10403], "discuss.synapsepay.com": [19650], "www.kantarainitiative.org": [8787], "hpcloud.com": [7091], "hereford.greenparty.org.uk": [6925], "eus-www.sway-cdn.com": [15680], "images.newrepublic.com": [11309], "modulus.io": [10527], "wa103.teamviewer.com": [16004], "www.doncaster.engagedoncaster.co.uk": [5261], "*.helpdocsonline.com": [7308], "www.dcsec.uni-hannover.de": [17168], "assetweb.psc.gov": [19525], "www.dyson.co.uk": [4837], "orchid.hosts.jhmi.edu": [8436], "reut.rs": [1920], "www.fxphd.com": [6290], "hamptons.curbed.com": [3926], "campamentos.unizar.es": [17356], "ui.tescoassets.com": [16135], "www.lexity.com": [9280], "tradelab.fr": [16642], "3c.m.tmall.com": [19684], "forums.catalysttg.com": [2898], "vision.gel.ulaval.ca": [17229], "staging.piwik.org": [12733], "blackboard.ncl.ac.uk": [10884], "kantarainitiative.org": [8787], "npower.com": [11543], "mathiasbynens.be": [10069], "*.ethn.io": [5384], "uproxy.org": [17012], "*.cdn.office.net": [11744], "*.eetimes.com": [4907], "api.clever.com": [3238], "www.rememberthemilk.jp": [13758], "i6.walmartimages.com": [17965], "www.virginiamason.org": [17739], "*.e-junkie.com": [4852], "*.mmixr.com": [10476], "americanancestors.org": [937], "a1000words.com": [383], "embed.wakelet.com": [17953], "www.ringrevenue.com": [13892], "cdn.thejournal.ie": [16224], "gp2x.de": [6369], "forum.bittiraha.fi": [2022], "www.sedo.com": [14542], "ras.jpl.nasa.gov": [10869], "govwaste.co.uk": [6869], "prstatics.com": [12294], "gridcoin.us": [6950], "blog.malcovery.com": [9922], "*.filmdates.co.uk": [5809], "www.beeldengeluid.nl": [1748], "*.healthcare.gov": [7261], "www.nces.ed.gov": [4889], "banners.8ch.net": [203], "piwik.piraten-schwaben.de": [12716], "hiring.monster.com": [10564], "www.modmypi.com": [10512], "help-ja-jp.nike.com": [11401], "www.scepsis.ru": [14344], "www.storebrand.no": [15494], "*.wolfram.com": [18396], "*.eager.io": [5005], "anonabox.com": [1044], "*.vogel.de": [17818], "vpp.itunes.apple.com": [1120], "dpmbapps.lowes.com": [9636], "www.dentistry.osu.edu": [11760], "volgistics.com": [17828], "hardenedbsd.org": [7204], "*.viepratique.fr": [17706], "www.likeyed.com": [9351], "ssl.drgnetwork.com": [4079], "staging.syncplicity.com": [15730], "www.securityheaders.io": [14534], "www.verifiedvoting.org": [17620], "chnm.gmu.edu": [6544], "www.delta.no": [4337], "blogs.uw.edu": [17077], "shmoocon.org": [14709], "*.bookware3000.ca": [19012], "developer.musixmatch.com": [10723], "billingproxy.enaza.ru": [5230], "salon.com": [14253], "*.pg.com": [13121], "cf6.100r.org": [9], "pccu.edu.tw": [12220], "www.netcompetition.org": [11175], "mobilitaet2050.vcd.org": [17474], "mobile.1und1.de": [68], "online.contractsfinder.businesslink.gov.uk": [2460], "www.linkomanija.net": [9377], "mentor.ieee.org": [7713], "*.oracleoutsourcing.com": [12083], "www.whoisology.com": [18261], "forum.porteus.org": [12937], "apps.uat.splash.riverbed.com": [13907], "iq.adtechus.com": [639], "desjs.zamimg.com": [18782], "www.digi77.com": [4471], "www.mixbit.com": [10464], "mit150.mit.edu": [9749], "diaspora.subsignal.org": [15567], "www.padlet.com": [12325], "tml.osu.edu": [11760], "www.euromail.se": [16091], "dudle.inf.tu-dresden.de": [15871], "blablacar.fr": [2035], "thinglinkblog.com": [16357], "corp.zaif.jp": [18780], "ad.crwdcntrl.net": [9613], "schoolforge.net": [14363], "baja.osu.edu": [11760], "forum.susliving.org": [15663], "animallaw.info": [1023], "*.moonfruit.com": [10579], "hackinthebox.org": [7154], "*.lurkmo.re": [9673], "login.qt.io": [13315], "auth.vt.edu": [17740], "www.vagrantcloud.com": [17528], "linuxaudio.org": [9428], "www.assemble.me": [1279], "funoverip.net": [19204], "gradsch.osu.edu": [11760], "lillypad.lilly.com": [5163], "zenfolio.com": [18827], "c.kum.com": [9035], "shop.wwf.ch": [19768], "www.dwarffortresswiki.org": [4814], "publish.omniture.com": [11803], "wooconf.com": [18415], "www.privateinternetaccess.com": [13097], "www.freesoundeffects.com": [6132], "*.blogcatalog.com": [2100], "www3.smartadserver.com": [14982], "coverartarchive.org": [3728], "capita.bathnes.gov.uk": [1689], "prezident.sk": [14972], "vip.jd.com": [8423], "export.delicious.com": [4328], "blogburst.com": [4343], "files.edx.org": [5070], "ad.ipredictive.com": [8347], "*.meetrics.com": [10218], "eticketing.co.uk": [16421], "bttrack.com": [2384], "twitcasting.tv": [16886], "wdc-cmp01.mollom.com": [10537], "mecca.ca": [5119], "rainforestrescue.sky.com": [14924], "www.syslog-ng.org": [15754], "www.sfa.osu.edu": [11760], "vistumbler.net": [13544], "rimg06.rl0.ru": [13914], "www.defcon.org": [4305], "floridatoday.com": [5943], "www.huk.de": [7117], "slough.gov.uk": [14971], "zanox.com": [18787], "www.aimpulse.com": [743], "cdon.eu": [2562], "www.wpveda.com": [18470], "www.posten.se": [12968], "rutlandcounty.moderngov.co.uk": [19405], "www.focuscamera.com": [5975], "chronicle.com": [3122], "www.peercraft.com": [12519], "clear.com": [3229], "ch.godaddy.com": [6773], "www.uniformwares.com": [17186], "sfa.osu.edu": [11760], "www.genomicseducation.hee.nhs.uk": [10913], "trac.ffmpeg.org": [5565], "annett.piware.de": [10034], "www.rapidleaf.com": [13556], "nccam.nih.gov": [11052], "cupid.com": [3920], "www.iis.net": [7741], "hofer.at": [299], "localist.com": [9541], "a3-images.myspacecdn.com": [10848], "*.bankoftaipei.com.tw": [1645], "www.krystal.info": [19342], "forum.kimsufi.com": [8892], "*.hailguardian.com": [7165], "owenservices.com": [12177], "www.getdropbox.com": [4768], "debian.org": [4275], "awsinsider.net": [375], "www.ministerialtidende.dk": [10426], "service.wienit.at": [18284], "confianzaonline.es": [3568], "www.youtube.co.ae": [18709], "photos.travelblog.org": [16690], "brendaneich.com": [2301], "beyondsecurity.com": [1832], "dev.sourcefabric.org": [15180], "kontoapi.de": [8982], "usyd.edu.au": [19723], "portal.bobcares.com": [2172], "login.dotomi.com": [4702], "www3.gotomeeting.com": [6787], "guarantorusloans.co.uk": [6998], "plantronics.com": [12780], "volume.itunes.apple.com": [1120], "gigamon.com": [6649], "*.sitemasonmail.com": [14881], "pki.google.com": [6834], "style.codeforamerica.org": [3359], "5vpn.net": [179], "www.martineve.com": [10033], "giblod.no": [6634], "www.envoymediagroup.com": [5311], "help.skrill.com": [14919], "gdata.it": [6293], "premier.fortiguard.com": [6055], "www.bike24.de": [1871], "www.youtube.ng": [18709], "passport.yandex.com": [18651], "www.tv.yandex.by": [18648], "lbo-news.com": [18428], "emsonline.eastriding.gov.uk": [5015], "*.forums.sabnzbd.org": [14215], "forum.zentyal.org": [18834], "www.klinikum.uni-heidelberg.de": [17174], "bernardportal.axosoft.com": [1477], "www.walletgenerator.net": [17962], "www.codebeamer.com": [3348], "swww22.glam.com": [6697], "forum-en.msi.com": [9792], "zylon.net": [18930, 18931], "data.aad.gov.au": [1382], "www.elitekeyboards.com": [5166], "www.doclerholding.com": [4619], "lego.com": [9068], "maps.halton.gov.uk": [19236], "www.qrz.com": [13313], "s-eu.thebrighttag.com": [2325], "iraaa.org": [7811], "weisf.essex.gov.uk": [5365], "*.secure-payment-processing.com": [14483], "*.ipower.com": [7794], "www.bamsoftware.com": [1635], "tcsm.creatavist.com": [3770], "www22.glam.com": [6697], "jobs.calderdale.gov.uk": [2735], "www.webgility.com": [18118], "*.avo.gov.au": [1404], "pathologyservices.wustl.edu": [17993], "justseed.it": [19329], "shop.oracle.com": [12082], "openswan.org": [12046], "*.cloudhexa.com": [3305], "action.dccc.org": [4014], "pooi.tk": [3533], "strato-pro.com": [14194], "question-defense.com": [13355], "www.weoinvoice.com": [18202], "*.fundageek.com": [6259], "www.sadecehosting.com": [14221], "www.centili.com": [2952], "www.koinify.com": [8957], "www.spring.org.uk": [15304], "static.hupso.com": [7625], "www.veggiekarte.de": [19731], "www.tilburguniversity.nl": [16445], "www.alertonline.nl": [791], "divitup.com": [4579], "b6.yahoo.co.jp": [18640], "*.crimethinc.com": [3797], "surespot.me": [15646], "www.telekom-profis.de": [16085], "intelligence.house.gov": [17027], "vidling.com": [17712], "www.gyft.com": [7036], "charity.acnc.gov.au": [263], "foreninger.canaldigital.dk": [2803], "www.buzzhosting.org": [2480], "idp.micropolia.com": [10349], "*.euroflorist.no": [5407], "portal.iitb.ac.in": [7744], "hub.jhu.edu": [16296], "www.mailgun.net": [9885], "give.stanford.edu": [15383], "www.vivaldi.net": [17797], "xkcd.com": [19786], "www.crowdjustice.co.uk": [3821], "www.tuftsgiving.org": [16819], "pantherportal.cdnetworks.com": [2560], "iraiser.eu": [8353], "www.amiga.adage.com": [3758], "community.spot.im": [15293], "olat.skolaonline.cz": [19598], "viz.polleverywhere.com": [12880], "blog.sigfig.com": [14774], "engine.trklnks.com": [16754], "spreadshirt.ie": [15300], "ccc.berkeley.edu": [17240], "rockhursthawks.com": [13941], "prod.idrix.fr": [7708], "*.arm.com": [340], "static1.readyflowers.com": [13620], "secure.momentusmedia.com": [10538], "adxpansion.com": [545], "uberads.com": [17086], "spreadshirt.it": [15300], "dejure.org": [4321], "teachingexcellence.mit.edu": [9749], "citizensforscience.org": [3175], "associatie.kuleuven.be": [8816], "cointrader.net": [3411], "www.nikhef.nl": [11402], "www.delicious.com": [4328], "www.voicestar.com": [9984], "508surveys.com": [168], "express.co.uk": [4110], "radioshack.com": [13515], "merlinux.eu": [10285], "rnl.ist.utl.pt": [16033], "stayfriends.at": [15444], "recettes.univers-libre.net": [17226], "segpay.com": [14556], "*.miles-and-more-kreditkarte.com": [10394], "publicaccess.barnet.gov.uk": [18982], "portalen.dtu.dk": [16031], "metrics.extremetech.com": [5530], "www.thecustomizewindows.net": [19675], "ripe67.ripe.net": [13895], "wb.mysql.com": [10780], "sapseod.mindtouch.us": [10410], "stats.economist.com": [5060], "api.maillift.com": [9877], "blekko.com": [2066], "qualaris.com": [13327], "opentrackers.org": [12048], "s.wldcdn.net": [17913], "*.sharethrough.com": [14680], "www.spyderco.com": [15326], "git.coderouge.co": [3375], "x-cart.com": [18494], "logs.spatialbuzz.com": [15230], "tivi.de": [19800], "bournetocode.com": [2250], "www.ems-ph.org": [5222], "wlogin.icq.com": [7690], "wearechoosy.com": [1186], "ssl.ptlogin2.qq.com": [13285], "www.finnchristiansen.de": [5850], "owncloud.com": [12181], "transmarine.org": [16661], "s.zst.com.br": [18915], "www.prometric.com": [13152], "checkout.adultshopping.com": [644], "blicko.com": [2072], "*.wsjpro.com": [11320], "webmail07.register.com": [13732], "theleanstartup.com": [16198], "taobao.com": [15952], "ita.hsr.ch": [17236], "redmine.darktable.org": [4154], "store.virginmedia.com": [17737], "foia.fbi.gov": [5708], "www.mysitemyway.com": [10845], "www.polleninfo.org": [12883], "forum.vodafone.de": [17814], "www.visn2.va.gov": [17019], "www.embeddedarm.com": [5198], "asset-e.soupcdn.com": [15167], "www.re-publica.de": [13597], "www.inventhelp.com": [8313], "log.otaserve.net": [19470], "api.stevesie.com": [15471], "*.tweetreach.com": [16871], "ekmpowershop.com": [5132], "srs.synology.com": [15738], "www.vdownloader.com": [17479], "www.vadino.com": [19727], "www.mythicalcreatureslist.com": [10851], "findababysitter.com.au": [5835], "careers.jazz.co": [8536], "*.realrobothigh.com": [13628], "hizliresim.com": [7433], "www.lovefood.com": [9631], "lv.foursquare.com": [6082], "domaintank.hu": [4665], "be.redhat.com": [13675], "sportisimo.de": [14158], "fbsbx2q4mvcl63pw.onion": [5621], "niceadminreview.web.cern.ch": [2575], "retrousb.com": [13828], "community.wbgames.com": [3502], "img07.rl0.ru": [13914], "mobile.learnerview.ofsted.gov.uk": [19456], "sivers.org": [14888], "*.chessbase.com": [3069], "ezinearticles.com": [5538], "fang.taobao.com": [15952], "blog.peopleschoice.com": [18428], "prod6.magentohotel.dk": [9853], "www.techempower.com": [16009], "forum.ovh.cz": [12173], "www.bircko.com": [1911], "creare.co.uk": [3769], "skat.dk": [14897], "www.wetransfer.com": [18025], "www.plumbr.eu": [12827], "trac.aircrack-ng.org": [18948], "i1.gmx.com": [6350], "www.imo.im": [8008], "sigterm.no": [14783], "optimizely.com": [12073], "www.ticketea.com": [16419], "familie.rh.aok.de": [317], "www.ruc.dk": [13971], "jipiao.alitrip.com": [818], "www.mapillary.com": [9971], "bekb.ch": [19333], "illinoistech.org": [7967], "www.sendpepper.com": [14578], "www.netdoktor.se": [11223], "plugins.serverdensity.com": [14614], "www.gwrymca.org": [7031], "deciduouspress.com.au": [4282], "images2.q8car.com": [13278], "my.edinburgh.gov.uk": [5084], "forum.transmissionbt.com": [16676], "msb.sbi.co.in": [14082], "enrol.norfolk.gov.uk": [19436], "macpaper.com": [9704], "www.tgthr.com": [16166], "photos-a.ak.fbcdn.net": [5700], "wwwd.amd.com": [925], "www.androidpolice.com": [1007], "corp.riyadonline.com": [13910], "www.adaptivecomputing.com": [558], "www.buch.ch": [16171], "www.kbc.com": [8709], "blog.cir.ca": [3153], "www.cihr.eu": [2603], "getmeadow.com": [6598], "www.rackspace.com": [13501, 13506], "blogmaverick.com": [18428], "www.post-gazette.com": [12948], "condor.de": [3561], "hilfe.vodafone.de": [17814], "extranet.fkl.fi": [5831], "cardiff.moderngov.co.uk": [19405], "commercecentral.lexity.com": [9280], "www.dexmedia.com": [4434], "cdn.emilstahl.dk": [5208], "gemeentenoordenveld.nl": [11132], "www.sysaid.com": [15747], "office.com": [11743], "people.stanford.edu": [15383], "support.privatelayer.com": [13098], "feedpress.me": [5735], "a.triggit.com": [16734], "symbeta.symantec.com": [15715], "moderngiver.com": [10521], "www.forgefields.com": [6036], "*.9gag.com": [212], "odmenazadobiti.cz": [16076], "girlscouts.org": [6666], "123rf.com": [25], "*.rrts.com": [13450], "just-eat.be": [19328], "uni.yandex.com.tr": [18649], "cloud.ihme.washington.edu": [17290], "bugtracker.rsbac.org": [13455], "photo.cypouz.com": [3987], "blogs.hopkins-interactive.com": [7494], "nfsec.pl": [10906], "contacts.live.com": [9483], "agency.brassring.com": [19017], "store.jfklibrary.org": [8432], "www4.va.gov": [17019], "blogs.akamai.com": [761], "demo-res.cloudinary.com": [3307], "lists.ocaml.org": [11612], "webfonts.fonts.com": [5993], "thewallacecenter.rit.edu": [13434], "www.blacksuitit.com": [2040], "*.performgroup.com": [12565], "cdon.no": [2562], "medialayer.net": [10156], "farmaciforbundet.se": [5663], "alumni.brunel.ac.uk": [19021], "photos-e.ak.fbcdn.net": [5700], "titania.com": [16501], "thecthulhu.com": [16334], "*.staples.com": [15388], "www.lfov.net": [9076], "sgcdn.startech.com": [15395], "www.aat-net.de": [844], "www.do-it.org": [4609], "iam.hhs.gov": [7062], "www.sehirfirsati.com": [14562], "dreamhost.com": [4748], "www.freeporngif.com": [6145, 6146], "technologyreview.com": [16041], "zugaina.org": [18919], "voyagegroup.com": [17859], "*.carepackage.org": [2516], "wmjobs.co.uk": [17915], "ideas.pardot.com": [12398], "edri.org": [4898], "www.bitgamer.su": [1996], "www1.sunybroome.edu": [2365], "*.crowdfactory.com": [3818], "www.songkick.com": [19609], "premier.dell.com": [4335], "www.ras.org.uk": [13992], "*.hochschule-trier.de": [7442], "my.nyi.net": [10993], "www.hosting.cz": [18938], "www1.cnsi.ucla.edu": [17241], "www.obi.de": [19452], "kirkusreviews.com": [8917], "lotro.mail.ru": [9874], "infobox.ru": [8107], "theory.stanford.edu": [15382], "www.100fans.de": [10], "search.secondlife.com": [14462], "pirateparty.org.au": [12713], "*.gandi.net": [6451], "latex-project.org": [9116], "www.bit-sentinel.com": [1919], "*.hostelworld.com": [18042], "ems.staffordshire.gov.uk": [15370], "bitbucket.org": [1926], "*.calchamer.com": [2726], "*.wire.com": [18360], "inphi.com": [8157], "mvn.tocco.ch": [16524], "computerandvideogames.com": [6281], "orange.co.il": [12088], "widget.barnebys.com": [1676], "whamcat.com": [18226], "cyanogenmod.org": [3954], "glenscott.net": [6706], "lcamtuf.blogspot.*": [2113], "www.sjd.net": [8631], "www.megapath.com": [10229], "abs.twimg.com": [16877], "ntsb.gov": [11086], "*.uwinnipeg.ca": [17079], "booking.clickvoyage.ru": [3253], "twf.wales.gov.uk": [17957], "www.theticketfactory.com": [16416], "www.liveperson.com": [9494], "www.star-pool.com": [15390], "registration.cesnet.cz": [2585], "www.primedice.com": [13060], "s.w.org": [17885], "flsenate.gov": [19186], "udk.com": [16946], "www.securesuite.co.uk": [13452], "*.cad-comic.com": [3904], "shop.jolla.com": [8622], "www.gearhog.com": [6486], "www.geti2p.net": [6593], "www.uniregistry.com": [17196], "portal.erp.ohio-state.edu": [11761], "community.obi.de": [19452], "edu.cookingschools.com": [3636], "www.atechmedia.com": [368], "sumac.stanford.edu": [15383], "arlen.io": [1200], "dada.cs.washington.edu": [17291], "switch.co": [15700], "gpugrid.net": [6374], "lists.ciphershed.org": [3151], "mathjobs.org": [10070], "result.cntraveler.com": [3555], "itunes.osu.edu": [11760], "www.haarlemmermeer.nl": [11132], "*.orkut.com": [12110], "worldcommunitygrid.org": [18447], "visualsonline.cancer.gov": [2805], "sslstatic.wix.com": [18383], "login.beckerproxy.wustl.edu": [17993], "picshareunit.com": [12668], "progressreport.cancer.gov": [2805], "dap.digitalgov.gov": [4489], "www.dafdirect.org": [4102], "textpad.com": [16158], "magro.nikhef.nl": [11402], "pages.kiva.org": [8926], "www.media.mit.edu": [9749], "*.up0.net": [17379], "networksolutions.com": [11263], "indymedia.org": [8085], "www.isy.liu.se": [9084], "tmall.hk": [16513], "www.fusion.net": [18428], "pgp.com": [12245], "www.macmillandictionary.com": [9832], "swt.com": [14209], "librivox.org": [9318], "walderwyss.com": [17956], "help.sixapart.com": [14889], "mykplan.com": [270], "www.myitworksevents.com": [10807], "www.zazzle.com": [18804], "openaccess.bournemouth.gov.uk": [2251], "hotelmangaby.com": [7552], "www.o2.co.uk": [16076], "www.gratisoft.us": [6897], "www.ribblevalley.gov.uk": [13865], "morethantwo.com": [10586], "tools.taskcluster.net": [15968], "awards.indexoncensorship.org": [8059], "www.schiphol.nl": [14353], "www.rubyforge.org": [14019], "caniusepython3.com": [2790], "*.wolrdssl.net": [18402], "askf5.f5.com": [5546], "personforce.com": [12586], "b2b.amoena.us": [979], "*.dennogumi.org": [19110], "s2.jrnl.ie": [19326], "109.201.146.247": [18607], "stavropol.rt.ru": [13469], "verigames.com": [17621], "secure.extensis.com": [5523], "cds1.yospace.com": [18698], "tehconnection.eu": [16062], "bitmazk.com": [2006], "logasnet.communities.gov.uk": [19073], "www.icez.net": [7917], "yandexadexchange.net": [18658], "racetohealth.co.uk": [13492], "www.mauivaaircruise.com": [10084], "www.psy.ulaval.ca": [17229], "*.tyndall.ie": [16906], "go2.microsoft.com": [10364], "s1.linkvp.com": [17782], "tools.google.com": [6834], "export.yandex.com.tr": [18649], "media.monster.com": [10564], "www.cru.fr": [3829], "www.kr36.co": [9003], "www.secure-resumption.com": [14484], "www.dutchbulbs.co.uk": [4812], "www.pabo.nl": [12306], "www.mandrillapp.com": [9946], "quantifiedcode.com": [13338], "browser.yandex.kz": [18652], "*.quoracdn.net": [13375], "coe.int": [3701], "login.umd.edu": [17263], "*.emsisoft.com": [5223], "www.majesticseo.com": [9898], "www.tampermonkey.net": [15939], "shangjia.tmall.com": [19684], "maps.cheshire.gov": [3064], "ld-3.itunes.apple.com": [1120], "revstr.com": [13851], "www.ticketweb.co.uk": [16421], "www.fedoramagazine.org": [5728], "youtube.com.gh": [18709], "bill.ccbill.com": [2534], "*.carleton.edu": [2853], "helpdesk.easyspace.com": [5035], "www.quackquackgo.nl": [13320], "dynadot.com": [4824], "collection.bnz.co.nz": [1534], "wiki.schokokeks.org": [19570], "www.banym.de": [1659], "b1.raptrcdn.com": [19533], "pharmgradprograms.usc.edu": [17278], "releases.flowplayer.org": [5948], "www.hackertarget.com": [7145], "meeting.zoho.com": [18884], "piwik.mutantbrains.com": [10727], "www.isalo.org": [8364], "www.brandensittich.de": [2282], "www.pathdefender.com": [12452], "p.simg.uol.com.br": [16998], "www.ovh-hosting.fi": [12173], "testnet.bitmex.com": [1935], "ereceptionist.co.uk": [4951], "sflogo.sourceforge.net": [15174], "patchofland.com": [12447], "www.secure.avahost.net": [1436], "spark.bazaarvoice.com": [1708], "kcvids.com": [8715], "kde-files.org": [19461, 19462], "*.sellaband.com": [14569], "bs.mail.ru": [9874], "www.email-lists.org": [5191], "supportforums.blackberry.com": [2050], "spcs.stanford.edu": [15383], "www.bof.nl": [1537], "informationsecurity.wustl.edu": [17993], "docstoc.com": [4622], "renewals.symantec.com": [15715], "whatdotheyknow.com": [18230], "zorrovpn.com": [18910], "cdn.jariangibson.com": [8521], "www.hostingcatalog.com": [7533, 7534], "www.cryptrader.com": [3840], "www.office365.com": [11745], "www.measuredvoice.com": [2824], "blottr.com": [2125], "aldi.ie": [299], "www.msnbc.com": [9797], "nazwa.pl": [11117], "oraweb.web.cern.ch": [2575], "www.appharbor.com": [1107], "benchmarkdevelopment.mitre.org": [10459], "sigdet.nu": [14776], "ziplist.com": [18874], "www.myvolunteerpage.com": [17834], "backoffice.cdn.arkena.com": [1198], "www.zohocorp.com": [18885], "vimention.com": [17716], "www.jsna.portsmouth.gov.uk": [19508], "wap.dating.sxnarod.com": [14640], "linuxslut.net": [9436], "moderngov.halton.gov.uk": [19236], "*.tenderapp.com": [4933], "cryptovpn.me": [19094], "s3.www.universalsubtitles.org": [17227], "download.teamviewer.com": [16004], "art.stanford.edu": [15383], "search.vuze.com": [17879], "st7.gismeteo.ru": [6669], "www.charitynavigator.org": [3009], "dnsleaktest.com": [4068], "www.mpetroff.net": [10082], "northclicks.com": [11494], "auth.mayday.us": [10104], "www.eurodiet.co.uk": [5411], "www.mahoneshomedecor.com": [9866], "secure.nationaljournal.com": [1316], "*.golf2go.net": [1506], "e-boks.dk": [4848], "earthsystems.stanford.edu": [15383], "media.corp.whiskeymedia.com": [18244], "*.iinet.net.au": [7958], "jingzhi.jd.com": [8423], "*.janrain.com": [8508], "www.creativelittlereaders.com": [3784], "ssum-sec.casalemedia.com": [2870], "greatdomains.com": [6906], "licensing.plymouth.gov.uk": [19500], "c.fsdn.com": [216], "www.completelyprivatefiles.com": [3523], "www.secular.org": [14472], "jappix.com": [8518], "clientservices.quinstreet.com": [13366], "groups.google.com.*": [6837], "next.co.uk": [11359], "www.le-vpn.com": [9189], "ticketcorner.ch": [16418], "dr.exactag.com": [5479], "voltaicsystems.com": [17833], "alliance.cisecurity.org": [2617], "oppo.com": [12060], "*.beatport.com": [1737], "portuguesbrasileiro.istockphoto.com": [19309], "bh.contextweb.com": [3616], "www.kattare.com": [8818], "*.boots.com": [2213], "www.itmb.nl": [7848], "ir.convio.com": [3629], "trial.resrc.it": [13599], "*.btdigg.org": [1570], "h5.taobao.com": [15952], "www.arsq.asso.ulaval.ca": [17229], "hg.debian.org": [4275], "att-i.shoebuy.com": [14714], "*.repost.us": [13786], "www.collectifstoptafta.org": [3422], "www.whitehouse.gov": [18251], "gcc.gnu.org": [6357], "kentcc.firmstep.com": [19183], "moechel.com": [10528], "www.comic-rocket.com": [3467], "asbestossafety.gov.au": [1243], "prolific.com.tw": [13147], "www.prace.cz": [13008], "www6.homedepot.com": [7469], "*.sysproserver.de": [19652], "www.waitrose.com": [17950], "*.vippy.co": [17730], "pao-pao.net": [12376], "nationalgeographic.com": [11080], "www.browser.yandex.kz": [18652], "pro.whitepages.com": [18257], "intuitivepassword.com": [8307], "lubswww.leeds.ac.uk": [17318], "m.legal.yandex.ua": [18656], "atagar.com": [1309], "www.nwswimshop.com": [11503], "math.williams.edu": [18316], "www.tradelab.fr": [16642], "www.os3.nl": [11663], "blog.sourcetreeapp.com": [15176], "support.alexa.com": [795], "www.rockhursthawks.com": [13941], "*.nature.org": [16202], "trust.jivesoftware.com": [8585], "kredyty-gotowkowe.money.pl": [10546, 10547], "everything4bet.net": [5456], "supporterz.jp": [15639], "www.barkbox.com": [1670], "www.studentgrantreview.acs.org": [929], "my.maximintegrated.com": [10096], "bitsapphire.com": [2016], "ciphershed.org": [3151], "archive.kororaproject.org": [8990], "*.copy.com": [3654], "os.uk": [11662], "je-s.rcuk.ac.uk": [13408], "alts.trade": [302], "xmlrpc2.mollom.com": [10537], "vogogo.com": [19740], "youtube.co.kr": [18709], "engemannshc.usc.edu": [17278], "ssl2.cdngc.net": [2560], "www.hypanova.com": [7642], "routingpacketsisnotacrime.uk": [19557], "www.projectslice.com": [14955], "kent.gov.uk": [8851], "homementors.com": [7472], "s4.mt-cdn.net": [9798], "roccat.org": [13931], "pullingladies.com": [12266], "bugs.php.net": [12250], "es.libreoffice.org": [9311], "www.blog.kaspersky.com": [8806], "info.drweb.com": [4783], "www.floatinghospital.org": [5934], "www.railsconf.com": [13528], "mochahost.com": [10507], "www.usb.org": [17035], "forum.icefilms.info": [7911], "*.firstcentralsb.com": [5867], "www.asecus.ch": [1249], "www.clic-study.org": [2623], "stat.onestat.com": [11844], "wireedit.com": [18361], "www.fontdeck.com": [5990], "tunnelbroker.net": [16834], "apollo.krystal.co.uk": [9024], "www.newclimateforpeace.org": [11302], "a1webstats.com": [221], "speakyweb.com": [15238], "behr.com": [1758], "res-3.cloudinary.com": [3307], "gentoo.wheel.sk": [18237], "my.turbobytes.com": [16837], "cas.fbm.vutbr.cz": [17522], "www.adweek.com": [672], "ecitizen.tameside.gov.uk": [19660], "scripts.cocubes.com": [3335], "*.hailstormproducts.com": [7165], "oculus.com": [11721], "lbre-apps.stanford.edu": [15383], "*.export.gov": [17027], "www.contentreserve.com": [19077], "*.fool.com": [10613], "cruzcat.ucsc.edu": [17305], "ma1.twimg.com": [16877], "12.191.21.228": [3430], "or.berkeley.edu": [17240], "cdn-sec.optmd.com": [12063], "hosting.0x539.de": [5], "*.ytimg.com": [18709], "blog.snipt.net": [15038], "www.vpstudentsblog.utoronto.ca": [17343], "www.jacoblangvad.com": [8488], "www.soundonsound.com": [15159], "bst7.gismeteo.ru": [6669], "cpsc.gov": [2649], "www.cip.ikea.com": [7959], "datalogix.com": [4202], "ipfs.com": [7791], "www.slov-lex.sk": [14972], "wwwcdn.channel5.com": [2998], "login.effectivemeasure.com": [5108], "www.appetize.io": [1115], "polylearn.calpoly.edu": [2747], "www.hexplo.it": [7382], "docs.maxcdn.com": [10091], "www.ticketdriver.com": [16415], "earlyyears.valeofglamorgan.gov.uk": [17532], "*.allyoucanarcade.com": [848], "www.n-somerset.gov.uk": [10857], "scottish-country-cottages.co.uk": [18490], "www.hackerrank.com": [7143], "gw.alicdn.com": [805], "pro.stubhub.de": [15534], "glassdoor.com": [6701], "mybenefits.aol.com": [321], "news.ycombinator.com": [7141], "www.website.ws": [18086], "www.tinychat.com": [16480], "www.duiven.nl": [11132], "mechon-mamre.org": [10136], "ivacy.com": [8398], "idp.aalto.fi": [390], "www.fonticons.com": [5991], "fast.animenewsnetwork.com": [18957], "sentineldiscussion.safenet-inc.com": [14227], "cartoons.osu.edu": [11760], "auth.demandbase.com": [4342], "gktw.org": [6686], "knightswarm.com": [8944], "support.tango.me": [15946], "www.cs.drexel.edu": [4758], "www.ikk-gesundplus.de": [7748], "domains.live.com": [9483], "parking.bedford.gov.uk": [18986], "securelogin.org": [14505], "www.hidekibin.hidekisaito.com": [7393], "www.netdev01.org": [11220], "engelschall.com": [5263], "meego.com": [10207], "forum.geizhals.de": [6511], "www.infinet.com.au": [8093], "*.vendetta-online.com": [17604], "defsounds.com": [4315], "info.tiki.org": [16444], "my.rethink.org": [19549], "phaser.io": [12616], "konami.com": [8974], "www.narodnipanel.cz": [19425], "wargaming.net": [17978], "goodsearch.com": [6830], "static.php.net": [12250], "organizer.gmx.com": [6350], "dirs.cis.rit.edu": [13434], "rdgate01.newark.ohio-state.edu": [11761], "gr.godaddy.com": [6773], "cdn.ch2.xfinity.com": [19784], "wizbangblog.com": [18388], "cache-www.linksys.com": [9382], "mega.nz": [10223], "imgrush.com": [8000], "info.thoughtworks.com": [16386], "pde.cc": [12581], "hostcenter.com": [2156], "www.barnebys.co.uk": [1675], "www.youtube.com.lv": [18709], "munzinger.de": [10706], "www.fukuchi.org": [6246], "*.bigdinosaur.org": [1861], "www.dynavision.de": [4833], "downstreamtoday.com": [4729], "www.ensigniamail.com": [5287], "gearworkstire.com": [6489], "www1c.medicare.gov": [19392], "www.youtube.com.lb": [18709], "*.actionkit.com": [491], "support.skype.com": [14938], "www.rossulbricht.org": [13972], "www.first.org": [5576], "p.raasnet.com": [13655], "*.redbullmobile.at": [13669], "srcclr.help": [15338], "*.fool.co.uk": [10613], "*.airbnb.es": [749], "kvm-vps.com": [8755], "saucelabs.com": [14303], "emailsrvr.com": [5193], "fybsg.com": [5612], "childrens.mycareinbirmingham.org.uk": [10802], "configuration.apple.com": [1120], "research.hks.harvard.edu": [7219], "www.springer-gabler.de": [15307], "formscentral.acrobat.com": [480], "whispersystems.org": [18247], "documentation.cpanel.net": [2653], "static.theadex.com": [16331], "www.bve.ulaval.ca": [17229], "downloads.mariadb.org": [9988], "filologiainglesa.unizar.es": [17356], "www.codeforamerica.org": [3359], "www.tfsprays.com": [15808], "www.ico.ee": [15936], "*.anonymous-proxy-servers.net": [8623], "erdt.plymouth.ac.uk": [12833], "new.1lotstp.com": [44], "site.ya.ru": [18626], "forum.syncthing.net": [15732], "apps.lincolnshire.gov.uk": [9363], "gsfn.us": [6991], "www.rca.org": [13403], "a.rad.msn.com": [9796], "www.digicert.com": [4473], "axelsimon.net": [1471], "addons.opera.com": [12050], "steamcommunity.com": [15451], "content.newegg.com": [11316], "www.freeunlocks.com": [6133], "www.nc.me": [10878], "adminer9.vas-hosting.cz": [19729], "nick.30boxes.com": [99], "www.mbusa.com": [9724], "my.milton-keynes.gov.uk": [10401], "www.geocaching.com": [6541, 6542], "billettservice.no": [16421], "www.ao2.it": [1083], "andover.edu": [12623], "www.revbens.manchester.gov.uk": [9944], "www.sciencedaily.com": [14377], "perimetertrail.stanford.edu": [15383], "mano.tele2.lt": [16069], "analytics.performable.com": [12566], "cimbniaga.com": [2605], "*.launchpad.net": [9169], "*.infinity-tracking.net": [8095], "vpnreviewer.com": [17508], "www.westlandutrecht.nl": [18217], "mitmproxy.org": [10457], "stijl.kuleuven.be": [8816], "www.alt.ac.uk": [1295], "bitbay.net": [1924], "www.gnome-help.org": [19461], "mauivaaircruise.com": [10084], "outlook.com": [12153], "biomechanics.osu.edu": [11760], "barnesjewish.org": [1677], "footlocker.ca": [6009], "www.woodtreeswing.com": [18420], "b-link.bucknell.edu": [2387], "assets.gusto.com": [7027], "hailstormproducts.com": [7165], "www.evdrive.com": [4984], "asmp.org": [947], "www.nativo.net": [11092], "www.xagyl.com": [18500], "btwholesale.com": [1578], "www.defensetravel.dod.mil": [17028], "www.spring.io": [15303], "www.elsevierhealth.com.au": [5186], "www.howtoforge.de": [7575], "a.tumblr.com": [16826], "applications.contactatonce.com": [3607], "www.quitter.se": [13371], "geoportal.statistics.gov.uk": [19625], "fakedomains.accessnow.org": [447], "maps.telford.gov.uk": [19669], "cache.lifehacker.com": [9331], "learn.websecurify.com": [18146], "www.fstoppers.com": [6239], "applyweb.com": [1129], "www.ertos.nicta.com.au": [10922], "adbuyer.com": [566], "www.vpnreviewer.com": [17508], "tokyo-tosho.net": [16537], "sfederation.intel.com": [8209], "hostinglabs.pe": [7530], "wineaustralia.com": [18351], "blog.zencoder.com": [18820], "www.digitalcourage.de": [4503], "morals.ias.edu": [7669], "diplomaframe.com": [3129], "images.brightidea.com": [2330], "cf.komo.com": [8740], "www.domainmarket.com": [4654], "massrelevance.com": [10048], "servers.opennicproject.org": [19466], "my.phone.coop": [12635], "allyours.virginmedia.com": [17737], "*.aboutads.info": [423], "www.stubhub.co.uk": [15534], "www.register.bg": [13731], "points.yahoo.co.jp": [18640], "www.identrustssl.com": [7935], "clicktoverify.truste.com": [15856], "elstatic.weborama.fr": [18138], "edas.info": [5073], "www.mycommerce.com": [10753], "swissreg.ch": [15696], "www.silabs.com": [14788], "*.apwg.org": [1066], "adm.leeds.ac.uk": [17318], "slovari.yandex.ua": [18656], "*.rejseplanen.dk": [13749], "*.hetzner.de": [7376], "www.soundslice.com": [15165], "foldingcoin.net": [5983], "assets.thump.vice.com": [17667], "education-stage.oracle.com": [12082], "*.simmarket.com": [14807], "content.developer.mashery.com": [10046], "domain.de": [4649], "s3.chuug.com": [3130], "blogs.kent.ac.uk": [17317], "mbs.microsoft.com": [10364], "*.slsp.sk": [14974], "www.gacollege411.org": [6304], "acp.stanford.edu": [15383], "workwithcolor.com": [18438], "claimconnect.net": [4894], "www.cmswire.com": [2629], "unknowncheats.me": [17357], "testdrive.alfresco.com": [802], "afisha.mail.ru": [9874], "www.777coin.com": [188], "maxkitap.com": [10094], "*.www.freelancer.co.uk": [6176], "www.ovh.cz": [12173], "bovpg.net": [2252], "learning.ausport.gov.au": [1400], "www.moodle.net": [10574], "ttv.tv2.dk": [15880], "*.musiciansfriend.com": [10718], "www.odoo.com": [11727], "www.tiaa-cref.org": [15816], "dmesg.gr": [4598], "rivals.n.rivals.com": [19553], "cubplat.bidsystem.com": [3910], "quickline.com": [19530], "redirect.1and1.co.uk": [53], "juniperresearch.com": [8681], "corporate.eastsussexlearning.org.uk": [19144], "www.csirt.cz": [2672], "metrica.yandex.by": [18648], "m-pindemo.certivox.org": [2966], "www.schnellno.de": [14361], "www.art.com": [1219], "mail.dielinke-sachsen.de": [4459], "now.eloqua.com": [5178, 5179], "speedppc.com": [15253], "lth.se": [9104], "cmascenter.org": [2625], "orioninc.com": [12109], "www.sebastianwick.net": [14456], "*.squarefree.com": [8556], "bitlendingclub.com": [1934], "www.aaronbrotherscircular.com": [393], "assets2.vzaar.com": [17883], "m.fotki.yandex.by": [18648], "www.sitecontrol.us": [14877], "paste.fedoraproject.org": [5726], "factiva.com": [11321], "www.pviq.com": [13260], "unbound.nlnetlabs.nl": [10941], "app.syspectr.com": [15757], "kapiton.se": [8789], "skipscreen.com": [15203], "swapspace.net": [15678], "artsinstitute.stanford.edu": [15383], "www.nccgroupdomainservices.com": [10881], "www.opensource.com": [12044], "www.campaign.cam.ac.uk": [17243], "centennialbulb.org": [9510], "p2p.chbtc.com": [3036], "*.hhmi.org": [7572], "w.sunybroome.edu": [2365], "eindhoven.cr.yp.to": [3748], "store.theonion.com": [11861], "sbiapp.sbi.co.in": [14082], "cdnstage.lynda.com": [9682], "paf-spsu.web.cern.ch": [2575], "www.lumesse.com": [9663], "*.visa.com": [17761], "hs.fi": [7312], "wiki.mumble.info": [10702], "www.leaderlandnews.com": [9200], "ads2.where.com": [18238], "shadowofmordor.com": [14654], "consumeraffairs.com": [3599], "localmotors.com": [19369], "jdi.na.ro.vutbr.cz": [17522], "whonix.org": [18266], "www2.polskieradio.pl": [12887], "new.edit.bulkorder.ftc.gov": [5720], "developerbugs.linuxfoundation.org": [9412], "ajax.googleapis.com": [6839], "www.muut.com": [10735], "*.brooklinecollege.edu": [2363], "*.startssl.eu": [15407], "www.cyph.com": [3982], "www.filenuke.com": [5792], "strato-hosting.co.uk": [14192], "siteblindado.com": [14876], "services.bostonglobe.com": [16251], "hometab.boldchat.com": [2187], "binaries.mpc-hc.org": [19412], "fiksu.com": [5787], "0x41.no": [4], "www.opensc-project.org": [11968], "broadcom.com": [2355], "www.elburg.nl": [11132], "supportapj.dell.com": [4335], "oip.sc.egov.usda.gov": [17209], "www.eforms.gov.ie": [19150], "www.voxmedia.com": [17852], "verizonbusiness.com": [17626], "www.boxuk.com": [2255], "www.sanet.me": [14077], "minimed.wustl.edu": [17993], "sig.ias.edu": [7669], "mork.no": [10592], "www.jamtrackcentral.com": [8499], "dero.dict.cc": [4455], "partners.xhamster.com": [18515], "cda.nl": [10935], "www.click4assistance.co.uk": [3242], "www.macromedia.com": [9833], "stats.ox.cx": [7641], "wtfuzz.com": [17932], "www.nae.edu": [11075], "services.social.microsoft.com": [10364], "keksbude.net": [8842], "emeajobs.oracle.com": [12082], "www.acunetix.com": [507], "service.nemid.nu": [11142], "fass.se": [5669], "tiles.cdnst.net": [2557], "hadrons.org": [7161], "www.adsonar.com": [539], "linuxmonk.ch": [9433], "settrade.com": [14634], "static.prsa.pl": [12293], "era.nih.gov": [11052], "blog.recurly.com": [13652], "hkn.de": [7079], "service.govdelivery.com": [6863], "*.marktplaats.nl": [19385], "www.posteshop.it": [12966], "nabconnect1.nab.com.au": [10865], "cryptomator.org": [3878], "scaleway.com": [14328], "hypem.com": [7643], "thegrandtheatre.com": [16283], "*.powerhousemuseum.com": [13001], "help.basespace.illumina.com": [7968], "www.memphiscourtside.com": [10253], "effectivemeasure.com": [5108], "ethereum.org": [5379], "giganews.com": [6650], "wrapbootstrap.com": [18471], "pubdash.q1media.com": [13275], "www.timeinc.net": [16460], "renew.acs.org": [929], "www.woahh.com": [18394], "paddleapi.com": [12324], "docs.synapsepay.com": [19650], "notebook-kisker.hu": [9155], "n-aana.org": [11093], "my.gov.au": [19417], "s4.media.ft.com": [5826], "blog.osysadmin.net": [11692], "*.spreadshirt.ie": [15300], "cask.scotch.io": [14395], "*.mediaite.com": [10171], "col.stb01.s-msn.com": [14059], "blog.ibutsu.org": [19279], "*.wikispaces.com": [16111], "opensource.srlabs.de": [14521], "cdn.riastatic.com": [13428], "static.myitworks.com": [7858], "bank.simple.com": [14820], "*.clbr.tv": [3257], "www.singlehop.com": [14847], "www.regmedia.co.uk": [13740], "www.icstars.com": [7923], "shopping.e2enetworks.com": [4862], "*.kidsfootlocker.com": [8884], "www.jambit.com": [8500], "analytics.freedom.press": [6168], "support.goldenfrog.com": [6814], "target.mail.ru": [9874], "www.bitcoin.co.th": [1963], "tug.org": [15991], "secretcon.com": [14468], "golfrev.com": [6821], "media.supplychain.nhs.uk": [10913], "www.cal.net": [2724], "www1.va.gov": [17019], "usmint.gov": [17062], "www.t-engine.org": [15768], "univ-brest.fr": [17222], "files.yandex.com.tr": [18649], "opentransfer.com": [12049], "ecsi.com": [4881], "shop.teac.com": [15804], "gymglish.*": [7037, 7038], "goke.me": [6811], "hayward-pool.com": [7251], "cdn.assets-phoenix.net": [12633], "www.youtube.be": [18709], "my.opera.com": [12050], "cryptoanarchy.freed0m4all.net": [6163], "www.gusto.com": [7027], "buy.stubhub.de": [15534], "www.skinflint.co.uk": [14913], "www.demand-driver.com": [4346], "www.velleman.eu": [17596], "tvnz.co.nz": [15886], "qxl.dk": [13295], "ticketsnow.com": [16427], "vid.me": [17676], "*.csis.org": [2674], "0nl1ne.at": [3], "developers.cloudflare.com": [3285], "f.e.ccs.com": [2551], "register.mitre.org": [10459], "anyfi.net": [1079], "nexac.com": [11354], "bankofscotland.de": [1650], "fkl.fi": [5831], "media.campaign.harvard.edu": [7219], "ientry.com": [19273], "www.nruns.com": [10859], "tl.r7ls.net": [13394], "www.lobbyradar.de": [19800], "prdownloads.sf.net": [15174], "tube4.me": [16813], "pad.jhalderm.com": [8470], "*.marketplace.org": [10018], "my.hscic.gov.uk": [19264], "hightail.com": [7407], "www.bgr.com": [1515], "gallery.op-co.de": [11901], "sandstorm-media.de": [14281], "s.sharethis.com": [14668], "www.poradte.cz": [19506], "pluscontrollers.com": [3624], "opendatacity.de": [19463], "snelis.com": [15033], "www.assured.se": [18967], "tacoma.uw.edu": [17077], "img.empstatic.com": [5220], "www.benthamsgaze.org": [1780], "www.tweakhound.com": [16864], "static.opml.org": [11655], "www.lihm.net": [9347], "www.rooof.com": [13965], "buch.ch": [16171], "*.helpshift.com": [7310], "www.ditii.com": [3993], "forums.getfoxyproxy.org": [6591], "www.pcp.ch": [12496], "quiz.tivi.de": [19800], "image-store.slidesharecdn.com": [14963], "nikeplus.nike.com": [11401], "blog.gitorious.org": [18428], "vf.fifedirect.org.uk": [5779], "zhiku.tmall.com": [19684], "danbooru.donmai.us": [19125], "wupaymentsolutions.com": [17935], "siggraph.org": [14777], "simmarket.com": [14807], "www.synology.com.tw": [15737], "mansfield.objective.co.uk": [19454], "my.adap.tv": [554], "account.xbox.com": [18550], "fop.thecthulhu.com": [16334], "nightcode.info": [11396], "vdownloader.com": [17479], "www.blah.im": [2057], "opensecrets.org": [2946], "alumni.pragmaticstudio.com": [13014], "sslimgs.xkcd.com": [19786], "nixos.org": [11430], "www.horde-llc.com": [7495], "naytev.com": [11116], "overijssel.nl": [11132], "pse.osu.edu": [11760], "protect.tacticaltech.org": [15901], "*.orange.ch": [12088], "ii.techdirt.com": [16026], "overlay.ringtonematcher.com": [13893], "linode.com": [9387], "soundcloud.com": [15161], "site-cdn3.ghosteryenterprise.com": [6630], "www.booklog.jp": [2203], "www.aboutairportparking.com": [12169], "marketingsolutions.masslive.com": [10047], "www.amazon.co.jp": [918], "libreoffice-from-collabora.com": [9309], "wap.mail.ru": [9874], "www.notanet.com.br": [11519], "beli.cisco.com": [3162], "emacswiki.org": [5190], "weeklyplus.com": [18183], "neos.eu": [10899], "tour.girlsoutwest.com": [6667], "clothingattesco.com": [3275], "ben.debian.net": [4273], "*.sjrdesign.net": [15533], "call.stopwatching.us": [15488], "www.plantronics.com": [12780], "www.kkh.se": [8733], "icons-ak.wxug.com": [18032], "www.kinox.me": [19337], "dataxu.com": [4190], "sure-assist.com": [15644], "eforms2.westlothian.gov.uk": [19755], "www.mythtv.org": [10849], "zakird.com": [18781], "sunshineweek.org": [15607], "p19.qhimg.com": [13302], "speedworldgrafix.com": [15255], "www.e-gold.com": [4851], "ethersheet.org": [5380], "wikispaces.asu.edu": [1195], "developers.filepicker.com": [5801], "de.colocation-datacenter.com": [19228], "www.takeaway.com": [15915], "www.sketchthemes.com": [14905], "makeagift.stanford.edu": [15383], "render.groupon-content.net": [14562], "blogs.oracle.com": [12082], "www.lifesaving.com": [9334], "*.oculus.com": [11721], "accessories.sky.com": [14924], "*.mypressplus.com": [13034], "a3.websitealive.com": [18149], "www.mathoverflow.net": [15359], "blog.viddler.com": [17682], "msdn.microsoft.com": [10364], "*.jimg.dk": [8573], "company.here.com": [7326], "www.jitec.ipa.go.jp": [7787], "rubygems.org": [14021], "*.bay.livefilestore.com": [9503], "*.kintera.org": [8912], "www.pricegrabber.com": [13052], "hi4em.derby.gov.uk": [4380], "www.gradle.org": [6882], "littlecms.com": [9477], "forum.mediatemple.net": [10165], "www.cuttlefish.com": [3945], "www.nic.ad.jp": [10918], "osp.vt.edu": [17740], "www.gdata.pt": [6293], "everyanglemedia.com": [5452], "qd.alibaba.com": [809], "www.dshield.org": [4084], "metrika.yandex.kz": [18652], "www.ecosia.org": [5063], "www.femtoduino.com": [5746], "digid.nl": [11132], "www.helmholtz-berlin.de": [7302], "edusoft.hslu.ch": [7583], "www.familie.rps.aok.de": [317], "www.apkmirror.com": [1095], "www.exhaleprovoice.org": [5492], "www.infonline.de": [7767], "www.marum.de": [10036], "doncaster.greenparty.org.uk": [6925], "banki.wp.pl": [17921], "publicappointments.cabinetoffice.gov.uk": [2701], "www.jino.ru": [8575], "*.udel.edu": [17249], "de-pl.dict.cc": [4455], "developer.getcloudapp.com": [9370], "www.wj32.org": [18390], "www.thurrott.com": [16407], "account.netflix.com": [11229], "creditcards.citi.com": [3168], "www.stripe.com": [15525], "clickberry.tv": [3257], "beta.dzone.com": [4095], "jbeekman.nl": [8415], "medium.com": [10197], "post.audioscrobbler.com": [1360], "www.freetvonline.com": [6153], "www.zencoder.com": [18820], "domaintools.com": [4660], "login.youku.com": [18713], "cardiffnetwork.cf.ac.uk": [2835], "assets1.sendgrid.com": [14577], "www.genges.com": [6521], "www.serve.com": [14599], "lumension.com": [9662], "andrewmunsell.com": [1002], "testing.drupal.org": [4780], "s.jtvnw.net": [16888], "blog.dbrgn.ch": [4238], "www.twit.tv": [15892], "actualidad.rt.com": [13468], "www.volgistics.com": [17828], "wiki.trustthevote.org": [16784], "naughtydog.com": [11107], "www.7springs.com": [191], "forums.whirlpool.net.au": [18243], "uscyberchallenge.org": [17416], "www.forums.playfire.com": [12805], "cyph.com": [3982], "dbs.com.tw": [4010], "bcaa.com": [1504], "www.theappendix.net": [16243], "www.uni-ulm.de": [19715], "www.securejoinsite.com": [14502], "btdigg.org": [1570], "www.kinesis-ergo.com": [8894], "dev.windows.com": [18342], "addresspicker.io": [578], "gigaom.com": [6644], "printink.si": [13071], "workforce.oracle.com": [12082], "www.exposefacts.org": [5513], "psmedia.playstation.com": [12795], "www.edonorcentral.com": [4903], "privacyenforcement.net": [13087], "barnesandnoble.com": [1678], "www.ttip-stoppen.at": [15867], "1and1.co.uk": [53], "www.dignityindying.org.uk": [4514], "ctunnel.com": [2687], "gamefly1.gameflycdn.com": [6420], "tba.stanford.edu": [15383], "www.familie.niedersachsen.aok.de": [317], "iwight.com": [7877], "*.stelladot.com": [15463], "affutd.com": [696], "xs4all.nl": [18535], "univers-libre.net": [17226], "peteraba.com": [12591], "spark.ru": [15219], "blogs.ncl.ac.uk": [10884], "fortiguard.com": [6055], "img.domaintools.com": [4660], "www.cossacklabs.com": [3692], "www.anonimag.es": [1043], "www.goodzer.com": [6832], "www.tinfoil.co": [16472], "umu.se": [17144], "www.aweirdimagination.net": [387], "bluestatedigital.com": [2144], "*.comparis.ch": [3513], "www.jura.uni-potsdam.de": [17333], "gestespaceprive.moncompteformation.gouv.fr": [19407], "ublearns.buffalo.edu": [17297], "sagecell.sagemath.org": [14239], "www.silverum.cz": [14804], "ad1.netshelter.net": [11208], "cypouz.com": [3987], "image.logmein-inc.com": [9548], "*.onamae.com": [11821], "stanfordmedicine.stanford.edu": [15383], "www.jcrosoft.com": [8421], "mcc.gov": [19388], "hjr-verlag.de": [7072], "ctracking.gpehosting.com": [6376], "assets2.sendgrid.com": [14577], "phusionpassenger.com": [12654], "www.periscope.tv": [12573], "www.acyba.com": [510], "widgets.awe.sm": [1460], "justice.gov.uk": [10427], "familie.niedersachsen.aok.de": [317], "luxsci.com": [9675], "getmango.com": [6597], "onescreen.com": [11842], "static.wonderwall.com": [18413], "www.piratpartiet.no": [12724], "go.berniesanders.com": [1796], "www.fusionforge.org": [6275], "www.ricoh.com.hk": [13879], "www.leetmedia.com": [9224], "my.talktalk.co.uk": [15929], "www.spiil.org": [15274], "passport.alipay.com": [817], "www.reporter-ohne-grenzen.de": [13783], "www.authorizenet.com": [1410], "npmawesome.com": [11541, 11542], "register.plos.org": [13206], "jlist.com": [8442], "awxcnx.de": [1465], "shared.aces.illinois.edu": [17258], "www.websitealive6.com": [18149], "www.calpolyarts.org": [2729], "www.townnews365.com": [16614], "disk.yandex.com.tr": [18649], "www.apoteket.se": [1099], "*.escapistexpo.com": [16188], "www.site.biz.id": [7504], "cn1.websitealive.com": [18149], "worldcat.org": [18446], "www.tmall.hk": [16513], "offlinemode.org": [11755], "regiobankadviseurs.nl": [13730], "docs.google.com": [6834], "www.trustees.osu.edu": [11675], "secured.sandbag.uk.com": [14276], "theamericanscholar.org": [16242], "www.olcf.ornl.gov": [11693], "www.securedrop.org": [14491], "pinknews.co.uk": [12692], "cta.cern.ch": [2575], "gmads.mookie1.com": [10576], "sc.cdnma.com": [11179], "www.icecat.biz": [7914], "secure.leadback.advertising.com": [662], "www.zillowstatic.com": [18865], "www.audubon.org": [1364], "cdn.tele2.lt": [16069], "mattwilcox.net": [10081], "svn.postgresqlfr.org": [12973], "evolvesocially.org": [5467, 5468], "wichmann.indymedia.org": [8085], "www.ooyala.jp": [11899], "www.vonage.com": [17838], "oeit-tsa.mit.edu": [9749], "mythic-beasts.com": [10850], "jobs.ch": [19322], "shop.interkassa.com": [8251], "s-static.ak.facebook.com": [5620], "*.makerble.com": [9914], "cloudconnect.norton.com": [11505], "hotmail.com": [7559], "www.glimmerblocker.org": [6709], "opticsinfobase.org": [12066], "ca-fr.norton.com": [11505], "helsinki.fi": [17255], "widget.us.criteo.com": [3801], "liquid.piratenpartei.at": [12720], "www.aclusocal.org": [257], "freedompop.com": [6169], "concierge.apple.com": [1120], "malwarebytes.org": [9929], "www.amstelveen.nl": [11132], "arretsurimages.net": [18965], "www.novoed.com": [11531], "www.threat2alert.com": [16391], "www.entroware.com": [5302], "outspark.com": [12154], "btcmedia.org": [1568], "www.blocket.se": [2094], "porlaputa.com": [12924], "www.sysdig.com": [19651], "playertest.longtailvideo.com": [9589], "img.mail.ru": [9874], "www.bva.bund.de": [5716], "www.itau.com.br": [8386], "www.zombeewatch.org": [18891], "www.ekiga.net": [5131], "trust-center.verisign.co.uk": [17623], "www.adultdp.portsmouth.gov.uk": [19508], "www.1pipfix.com": [45], "i1.connect.microsoft.com": [10364], "thinkmobile.appcelerator.com": [1113], "nohats.ca": [11443], "www.brockman.com": [2358], "groupon.com": [6974], "onetaste.us": [11845], "www.welcomecottages.com": [18490], "gcs.civilservice.gov.uk": [19066], "dev.mobileread.com": [10498], "thoughtworks.com": [16386], "vdownloader.es": [17479], "syspectr.com": [15757], "powweb.com": [12987], "unoeuro.com": [17362], "infrequently.org": [8134], "hillingdon.firmstep.com": [19183], "mobil.tdc.dk": [15796], "www.southend-on-the-move.org.uk": [19612], "www.sensic.net": [11581], "artcoordination.aalto.fi": [390], "www.wethegoondas.in": [18030], "bobcares.com": [2172], "esf-works.com": [4958], "*.datstathost.com": [4169], "traffic.lan.switch.ch": [15699], "codecentric.de": [3362], "u.fsf.org": [5600], "*.pixlr.com": [12743], "www.digipaper.fi": [10140], "orel.rt.ru": [13469], "umd2.mycdn.me": [10824], "www.fsrwiwi.htwk-leipzig.de": [7114], "www.simplesharebuttons.com": [14824], "ld.svt.se": [14205], "s0.plays.tv": [12809], "cdn.xs4all.nl": [18535], "login.trustwave.com": [16799], "forum.adium.im": [595], "fornex.com": [6047], "signals.com": [14782], "*.agu.org": [287], "cspbuilder.info": [3897], "status.run.pivotal.io": [12730], "rredc.nrel.gov": [11057], "www.vellemanusa.com": [17596], "svn.sukimashita.com": [15588], "*.fastclick.net": [17541], "mysql.carezone.cz": [2849], "jobsgopublic.com": [8600], "vm.ag": [17803], "vault.fbi.gov": [5708], "finforms.wigan.gov.uk": [18286], "s8.uicdn.net": [16958], "*.cfda.gov": [2894], "result.webplatform.org": [18079], "g.tbcdn.cn": [15982], "designova.net": [4389], "www.spnet.nl": [14161], "assets.newsinc.com": [11335], "givingprograms.com": [6691], "forms.canonical.com": [2810], "www.lunarmods.com": [569], "www.linux-tips.org": [9399], "esetnod32.ru": [4956], "dudley.greenparty.org.uk": [6925], "northeastjobs.org.uk": [19437], "panel.kei.pl": [8841], "www.marinsoftware.de": [9996], "emunewz.net": [5224], "*.tso.co.uk": [15863], "www.getnikola.com": [19216], "www.direktmarketingcenter.de": [19112], "zuhah.com": [18921], "codewords.recurse.com": [13653], "www.frederikssund.dk": [6118], "aldi.com.au": [299], "www.meraki.com": [10272], "*.rpmfusion.org": [13448], "assets.adobedtm.com": [620], "huodong.fanli.com": [5655], "static1.wonderwall.com": [18413], "www.cimbniaga.com": [2605], "www.feralinteractive.com": [5753], "uni-ulm.de": [19715], "www.alex.se": [793], "*.sdsc.edu": [14093], "developer.mulesoft.com": [10691], "dfa.cornell.edu": [3676], "dtc.*.gplhost.com": [6372], "www.cli-apps.org": [19461], "indiemerch.com": [8068], "track.omguk.com": [11634], "sy.taobao.com": [15952], "youtube.com.ua": [18709], "nymity.ch": [11598], "www.ab9il.net": [237], "*.jotform.com": [8637], "mobile.cc.stonybrook.edu": [15480], "gc.agar.io": [719], "*.marketingresearch.org": [10013], "www.bluemountain.com": [2142], "www.runabove.com": [14034], "www.hs-rm.de": [7580], "www.previa.se": [13043], "stbeehive.oracle.com": [12082], "business2.comcast.com": [3461], "stats.xmission.com": [18530], "what.cd": [18229], "internet.yandex.kz": [18652], "ecn.t2.tiles.virtualearth.net": [17755], "www.syllabusshare.com": [15712], "www.recode.net": [13647], "www.his.se": [7069], "emcraft.com": [5201], "infolinks.com": [8111], "download.winzip.com": [18333], "tfsprays.com": [15808], "lists.openafs.org": [11915], "getnikola.com": [19216], "solus-project.com": [15124], "noris.net": [11484], "applianceshop.eu": [1125], "hds.ucsd.edu": [16939], "kaazing.com": [8759], "mysociety.org": [10786], "seeedstudio.com": [14552], "exacttarget.com": [5478], "www.pogoplug.com": [12851], "free.mail.de": [9873], "www.apricorn.com": [1138], "cache.img.gmo.jp": [6345], "hamradioscience.com": [7180], "billing.epoch.com": [5325], "www.codepoet.com": [18428], "unm.edu": [16991, 16993], "maas360.com": [9817], "www.bitmazk.com": [2006], "ilearn.cathaypacific.com": [2904], "www.boathousecrewshop.com": [2169], "www.mathiasbynens.be": [10069], "donottrack-doc.com": [4611], "www.aeolusproject.org": [680], "cdn2.outspark.com": [12154], "yolotrain.oebb.at": [19455], "contact.bad-dragon.com": [18979], "stats.mediciglobal.com": [10191], "universalenroll.dhs.gov": [4035], "www.bsidesslc.org": [1546], "www.buzzbytes.net": [2476], "www.sketchfab.com": [14906], "www.diasporafoundation.org": [4451], "www.sensiolabs.com": [14586], "assange.rt.com": [13468], "grassroots.groupon.com": [6974], "community.spotify.com": [15296], "www.pony.fm": [12897], "my.screenname.aol.com": [321], "jabber.linuxlovers.at": [9432], "secunia.com": [14475], "www.vaultproject.io": [17576], "static4.wonderwall.com": [18413], "www.resilientsystems.com": [13805], "kotulas.com": [8996], "slp4.somerset.gov.uk": [15127], "review.openstack.org": [11975], "*.socialsecurity.gov": [15060], "autodiscover.cs.berkeley.edu": [17240], "allcrypt.com": [829], "priberam.pt": [13048], "*.de-cix.net": [4022], "img3.wsimg.com": [14507], "www.hf.ntnu.no": [10964], "name.com": [11015], "www.clippod.com": [3270], "laprox.com": [9154], "cdn.executive.mit.edu": [9749], "forums.adobe.com": [615], "www.sigdet.nu": [14776], "br.de": [1539], "m.voyage-prive.it": [17858], "*.alcatel-lucent.com": [782], "tp1.sinaimg.cn": [14845], "my.profitbricks.com": [13129], "www.poolp.org": [12899], "htc.com": [7103], "naturvardsverket.se": [11106], "madmimi.com": [9835], "www.dimauro.osu.edu": [11760], "globalvoicesonline.org": [6735], "www.secondmarket.com": [14461], "id.washingtonpost.com": [17990], "www.glype.com": [6753], "macapi.xamarin.com": [18540], "docs.zoho.com": [18884], "forum.typo3.org": [15894], "gwhois.org": [6400], "vast.com": [17572], "www.tracking-point.com": [16632], "learning.microsoft.com": [10364], "www.eatnow.com.au": [19145], "protectedtext.com": [13168], "*.becu.org": [2175], "lshtm.ac.uk": [9576], "www.linear.com": [9368], "plantsolution.de": [12776, 12777], "*.inwx.com": [8231], "www.greenbillion.org": [6922], "pen.org": [12238], "ws.pagseguro.uol.com.br": [16998], "*.our-hometown.com": [12141], "www.sportschau.de": [18015], "login.virginmedia.com": [17737], "backstreetmerch.com": [1603], "images.icecat.biz": [7914], "www.pauldotcom.com": [12460], "img2.thalasseo.com": [16168], "www.alternativeto.net": [884], "jrnl.ie": [1920], "www.golf2go.net": [1507], "www.dangpu.com": [4139], "pro.syncsearch.jp": [15731], "www.abhayagiri.org": [416], "winsupersite.com": [18330], "creativecow.net": [3779], "pt.norton.com": [11505], "groupon.de": [6977], "admin.hosts.co.uk": [7545], "appseccalifornia.org": [1133], "supporthtml.oracle.com": [12082], "administrace.hosting90.cz": [7527], "portal.miun.se": [9751], "fimc.net": [10163], "website.1and1.co.uk": [53], "2dialog.com": [84], "www.opentabs.net": [12047], "eat.ch": [4867], "www.commandoboxing.com": [3476], "npmjs.com": [11539], "*.clicksor.com": [3263], "stateoftheinternet.com": [15422], "labs.opendatacity.de": [19463], "securepaths.com": [14506], "pilgrimagesoftware.com": [12674], "bgamed.de": [1516], "www.carrefoursa.com": [2862], "icecat.biz": [7914], "www.123ehost.com": [26], "login.proxy.lib.ohio-state.edu": [11761], "mail.desy.de": [4399], "metroethernetforum.com": [10323], "chroot-me.in": [3124], "my.rackspace.com": [13506], "www.orchiddiva.com": [12094], "hotmail.msn.com": [9796], "*.grinnell.edu": [6957], "*.viber.com": [17664], "*.24ways.org": [78], "vansso.harland.net": [7207], "www.greenpeace.de": [6936], "my.lib.ncsu.edu": [11492], "*.drinkaware.co.uk": [4761], "www.lsi.com": [9100], "freemovement.org.uk": [6144], "community.snsbank.nl": [14144], "show.zoho.com": [18884], "sp.itunes.apple.com": [1120], "app-de.resrc.it": [13599], "stedebroec.nl": [11132], "aea.se": [679], "rockpapershotgun.com": [13937], "www.apigility.org": [1094], "*.winzip.com": [18332], "keepsthelightson.vpsboard.com": [17863], "updates.oracle.com": [12082], "s1.lemde.fr": [9244], "i.c.dk": [2498], "nemendafelog.hi.is": [7066], "www.unknowncheats.me": [17357], "ar.udacity.com": [17110], "here.com": [7326], "forgottenlands.eu": [6038], "consult.barnsley.gov.uk": [18983], "taschenorakel.de": [15967], "hashtalk.org": [7224], "www.sankakucomplex.com": [19563], "cdn0.onlinelaw.wustl.edu": [17993], "zidisha.org": [18857], "game.jd.com": [8423], "tmobile.ecustomersupport.com": [5065], "exchange.dnv.com": [4073], "bpf.deathmask.net": [4266], "toonpool.com": [16555], "*.feralhosting.com": [5752], "*.opensecrets.org": [2946], "photo.kaywa.com": [8826], "www.freenetproject.org": [6181], "movie2k.cm": [10635], "der-preis-jaeger.de": [4378], "pclob.gov": [12226], "lsf.uni-due.de": [17165], "www.ablegamers.com": [420], "auth.smext.faa.gov": [5713], "www.srihash.org": [14167], "givetocal.berkeley.edu": [17240], "raiffeisen.ch": [13527], "ra4-gifs.weather.gov": [18034], "*.pentontech.com": [12545], "static.justhookup.com": [8425], "*.epfl.ch": [4942], "v.calameo.com": [2731], "ifb.htwk-leipzig.de": [7114], "www.digitalgov.gov": [4488], "gscdn.nl": [19211], "mta.openssl.org": [11970], "www.mitro.co": [10460], "*.www.final-score.com": [5818], "images3.bovpg.net": [2252], "www.omarandwill.com": [11788], "l2.51fanli.net": [171], "sustainable.stanford.edu": [15383], "cpxl.golem.de": [6819], "www.do.de": [4647], "*.younited.com": [18719], "quantixtickets8.com": [13339], "linuxluddites.com": [9424], "ece.ucsd.edu": [16939], "tocco.ch": [16524], "uhrada.vas-hosting.cz": [19729], "sandwell.greenparty.org.uk": [6925], "www.krautchan.net": [9006], "sandsmedia.com": [14212, 14213], "www.federalreserve.org": [5717], "www.bloomingtonfools.org": [6110], "wegohealth.com": [18185], "www.marmotte.net": [10027], "www.utopia.ai": [17456], "gerrit.beaker-project.org": [1729], "cdn3.xsolla.com": [18593], "d.calameo.com": [2732], "metrics.aftonbladet.se": [716], "fold.liqd.net": [9442], "www.historytoday.com": [7419], "customer.convio.net": [3630], "secure.freshbsd.org": [6200], "www.slb.com": [14355], "www.one.com": [11828], "www2.whipplehill.com": [18242], "www.us-cert.gov": [17415], "*.dating.superforum.org": [14640], "cdn2.sbnation.com": [14079], "www.mybitcointrade.com": [1956], "store.digitalriver.com": [4483], "barclays.co.uk": [1662], "www.fanfiction.net": [5648], "crissp.poly.edu": [12888], "androidpit.de": [1009], "nine.ch": [11412], "content.presspage.com": [13033], "my.plexapp.com": [12815], "*.shmoop.com": [14710], "monster-wow.com": [10566], "au2.uicdn.net": [16958], "api.data.gov": [4175], "aspirationtech.org": [1273], "hilfe.web.de": [18050], "winners.flonline.eu": [5578], "kundencenter.telekom.de": [4410], "elementaryos.org": [5159], "webauth.ncsu.edu": [11492], "sportifik.com": [15290], "listenerapproved.com": [9451], "www.articulate.com": [1232], "www.rts.ch": [19621], "sharpmen.com": [14684], "*.halifax.co.uk": [7174], "trac-plugins.gajim.org": [6406], "www.freebarrettbrown.org": [6138], "autodiscover.earth.leeds.ac.uk": [17318], "aa.com": [229], "forms.brent.gov.uk": [2304], "ecn.t5.tiles.virtualearth.net": [17755], "forensischinstituut.nl": [11132], "madeinafreeworld.com": [9837], "www.ymcastlouis.org": [18618], "docs.prediction.io": [13023], "opnotes.stanford.edu": [15383], "counter.theconversation.edu.au": [16262], "my.oracle.com": [12082], "lam.norton.com": [11505], "ifightsurveillance.org": [7888], "ratingsportal.food.gov.uk": [19187], "cn.forums.oracle.com": [12082], "pl.cloudflare.com": [3285], "*.phparch.com": [12652], "wiki.unbit.it": [17148], "www.nationalarchives.gov.uk": [11065], "sldvs.uic.edu": [17231], "www.checkmyrota.com": [19055], "delivery.com": [4333], "direct.govdelivery.com": [6862], "myinmon.com": [10809], "static-azeroth.cursecdn.com": [3934], "avosapi.delicious.com": [4328], "*.wpmudev.org": [18469], "www.cryptonetwork.com": [3860], "www.zipy.co.il": [18875], "pa.bandinelli.net": [1639], "www.cryptoseal.com": [3864], "www.hotmail.msn.com": [9796], "typography.com": [16916], "ticketone.it": [16414], "harbour.jolla.com": [8622], "cereproc.com": [2963], "content.prnewswire.com": [12286], "westwilts.greenparty.org.uk": [6925], "*.gameological.com": [6434], "www.anibis.ch": [18956], "usplusu.com": [17447], "drupal.org": [4780], "developer.axosoft.com": [1477], "yandex.com.tr": [18649], "cve.mitre.org": [10459], "www.jakearchibald.com": [8495], "your-file-system.com": [18720], "kingston.greenparty.org.uk": [6925], "hrkgame.com": [7579], "translate.yandex.com.tr": [18649], "www.comkort.com": [3469], "safariflow.com": [14223], "*.advertstream.com": [657], "*.mayoclinic.org": [10106], "hupstream.com": [7626], "*.vtrenz.net": [14802], "*.r.axf8.net": [3544], "tuv.com": [3625], "drawingbynumbers.org": [4745], "infobaselistexpress.com": [509], "*.blogo.it": [2112], "ahpcrc.stanford.edu": [15382], "api.elsevier.com": [5185], "cdn.oreillystatic.com": [11661], "morphis.com": [10598], "*.optionsanimal.com": [12076], "cdn.mobify.com": [10494], "webservices.web.cern.ch": [2575], "bits.debian.org": [4275], "images.f.switchadhub.com": [15701], "mail.ru": [9874], "apideva.hertz.com": [7372], "shaunlorrain.com.au": [14686], "ssl.facebook.com": [5620], "www.imerys.com": [7989], "davidlazar.org": [4227], "community.jivesoftware.com": [8585], "www.httpsnow.org": [4908], "my.firstvds.ru": [5872], "img.auctiva.com": [1346], "safe-mail.net": [14225], "tuscany.apache.org": [1086], "payment.schibsted.no": [14351], "*.websocially.com": [18087], "savethekoala.com": [1381], "o2.sk": [16076], "es.gamigo.com": [6445], "wodc.nl": [11132], "support.kaspersky.ru": [8807], "si3.rgstatic.net": [13422], "trendmicro.eu": [16716], "ihub.co.ke": [19274], "mdh.se": [9732], "metrics.ikea.com": [7959], "ntchosting.com": [10960], "www.coinmarketcap.com": [19071], "lists1.mail.ruhr-uni-bochum.de": [14031], "usertags.jeremybieger.com": [17087], "portalpilot.equinix.com": [5334], "www.crbug.com": [3768], "*.media.net": [10148], "www.radioeins.de": [13518], "static.strawpoll.me": [15515], "3dsupply.de": [133], "ai.taobao.com": [15952], "mail.qwknetllc.com": [13294], "www.tkqlhce.com": [3481], "xt-commerce.com": [18595], "filmlair.com": [5810], "www.pcbsd.org": [12216], "marketplace.constantcontact.com": [3592], "albinoloverats.net": [780], "*.argos.co.uk": [1186], "reinsurance.tdc.dk": [15796], "seller.flipkart.com": [5926], "www.humanaction.com": [7607], "affiliate.itunes.apple.com": [1120], "www.hostingcon.com": [7529], "app.recurly.com": [13652], "*.ucm.es": [16936], "blog.sitelock.com": [14867], "www.usi.edu": [17232], "mednews.wustl.edu": [17993], "i.fuwu.taobao.com": [15952], "ngvpn15.nvidia.com": [10985], "www.servage.com": [14598], "c.jp.msn.com": [9796], "www.vozpopuli.com": [17861], "stratechery.com": [15508], "www.digitalforensicsmagazine.com": [4487], "www.berkeley.edu": [17240], "aircargoworld.com": [16927], "www.linuxmusicians.com": [9414], "*.www.cadsoft.de": [2711], "www.thecityuk.com": [16220], "oracle-base.com": [12080], "voys.nl": [17860], "talkactive.net": [15925], "*.lucent.com": [782], "mah.se": [9709], "domino.research.ibm.com": [7675], "www.coventgarden.london": [19083], "media.sundance.tv": [19638], "*.media6degrees.com": [10149], "people.uwm.edu": [17294], "time.yandex.com.tr": [18649], "startlab.sk": [15411], "*.flyingmeat.com": [5966], "labs.parabola.nu": [12384], "vishnu.netfilter.org": [11225], "willleathergoods.com": [18311], "consumersupport.lenovo.com": [9251], "*.mypcbackup.com": [8689], "www.cvl.isy.liu.se": [9084], "c.amazon-adsystem.com": [909], "deepsec.net": [4298], "mongodb.org": [10554], "missinglinkelectronics.com": [10455], "www.onthe.io": [11890], "surveydaddy.com": [15660], "*.qwobl.net": [1351], "maxserv.com": [10092], "archaea.ucsc.edu": [17304], "www.appiehein.com": [1116], "imap-02.ct.infn.it": [7766], "redletter.link": [13676], "translatewiki.net": [16673], "api.coderwall.com": [3377], "thumb.mais.uol.com.br": [16998], "forum.sabayon.org": [14214], "atlas.web.cern.ch": [2575], "beauteprivee.fr": [1739], "autodiscover.ya.ru": [18626], "myaccount.n-somerset.gov.uk": [10857], "wandsworth.greenparty.org.uk": [6925], "help.just-eat.co.uk": [19328], "www.fazekas.hu": [5697], "api.steampowered.com": [15450], "www.filmlair.com": [5810], "www.europe.redhat.com": [13675], "davidtisch.com": [4224], "carenet.fnfismd.com": [5970], "edx.org": [5070], "shoptiques.com": [14731], "mci4me.at": [10126], "holidays.cathaypacific.com": [2904], "www.axelarnbak.nl": [1470], "www.playonlinux.com": [12793], "www.clinicalkey.com": [3267], "cir.ca": [3153], "www.btckan.com": [1561], "stage.mbusa.com": [9724], "myheritage.no": [10834], "myheritage.nl": [10834], "star-pool.com": [15390], "www.soundonsight.org": [15160], "teruel.stanford.edu": [15383], "playmates.com": [12808], "apcmag.com": [330], "so.awe.sm": [1460], "pixel.alexametrics.com": [795], "developers.elsevier.com": [5185], "www.domainfest.com": [12169], "*.norid.no": [11483], "cdn.postovoy.org": [19512], "secure.plymouth.gov.uk": [19500], "cottagesdirect.co.uk": [18490], "*.makeagif.com": [9910], "ads.adap.tv": [554], "origin.www.upc-cablecom.ch": [19716], "labs.sign-up.to": [14780], "auth.ohiolink.edu": [11762], "*.ussco.com": [17218], "www.ooyala.com": [11900], "oae.stanford.edu": [15383], "lhc.web.cern.ch": [2575], "dnt.twimg.com": [16877], "isc1.sans.org": [14072], "raspbian.org": [13570], "*.joomlart.com": [8626], "www.bit.nl": [1523], "adagio.com": [551], "fool.com.au": [10613], "irish-country-cottages.co.uk": [18490], "www.caimao.com": [2719], "www.virwox.com": [17731], "www.bayden.com": [1705], "gitbook.io": [6675], "game.co.uk": [6417], "www.sfn.org": [15077], "www.kommaer.dk": [8965], "www.redhat.com": [13675], "realmedia.channel4.com": [3003], "www.ambx.com": [923], "www.vouchers.bt.com": [1551], "ssl-i.cdn.openx.com": [11995], "thl.osu.edu": [11760], "*.elitecastingnetwork.com": [5167], "fr.nakedcitizens.eu": [11013], "satoshidice.com": [14301], "btp.police.uk": [2383], "blog.hubspot.com": [7594], "web2.login.cornell.edu": [3676], "jabber.org.uk": [8476], "cryptostorm.is": [3890], "sunglasswarehouse.com": [15600], "metamap.nlm.nih.gov": [11052], "www.mitre.org": [10459], "graph.renren.com": [13769], "www.reservation-desk.com": [13802], "accounts.apigee.com": [1093], "dmp.theadex.com": [16331], "parkinsonsblog.stanford.edu": [15383], "campusship.ups.com": [17007], "cheapssls.com": [3042], "sustainability-ornl.org": [11693], "stork.eid.lt": [5122], "resistsurveillance.org": [13808], "profile.weather.com": [18033], "kalbookings.kirklees.gov.uk": [8916], "ssl-product-images.www8-hp.com": [7378], "acs.onlinesbi.com": [11873], "sso.dell.com": [4335], "new-nations.net": [11295], "affiliate.niteflirt.com": [11424], "inc.com": [8041, 8042], "orderstatus.earthlink.net": [5007], "www.publichealth.wustl.edu": [17993], "pki.irisgrid.es": [13661], "my.nottingham.ac.uk": [11528], "www.libreswan.org": [9316], "www.w3counter.com": [17889], "www.brabysads.com": [2263], "set.tidaltv.com": [16433], "www.wcfia.harvard.edu": [7219], "synology.com.tw": [15737], "pol.fronter.com": [19200], "subs.yandex.com": [18651], "hmapps.net": [7437], "i2.code.msdn.microsoft.com": [10364], "svn.osgeo.org": [11669], "voicestar.com": [9984], "www.swissdigicert.ch": [15698], "sharedvalue.org": [14673], "www.visual-paradigm.com": [17782], "www.gatag.it": [14216], "logika.net": [9557], "shopperapproved.com": [14727], "be.contentful.com": [3614], "business-blog.zomato.com": [18890], "www.kinox.sg": [19337], "gabriel.fca.org.uk": [5557], "www.zuse-crew.de": [18924], "learn.uvm.edu": [17075], "www.rockcreek.com": [13935], "tracking.m6r.eu": [9700], "www.filebox.tv": [5788], "time.com": [15819], "movian.tv": [10634], "acceptonline.leeds.ac.uk": [17318], "condor.com": [3561], "pda.drweb.com": [4783], "www.waffles.fm": [17945], "www.analysis.avira.com": [1449], "www.ubuntu-fr.org": [17096], "www.expandedsupport.com": [5502], "www.mbank.pl": [9722], "vp1-voiceportal.megapath.com": [10229], "*.australia-unsc.gov.au": [1380], "branch.com": [2276], "www.schijndel.nl": [11132], "enrol.kirklees.gov.uk": [8916], "trac.enlightenment.org": [5280], "digilinux.ru": [4478], "patriotssuperbowl.us": [12458], "www.engineeringforchange.org": [5267], "lithium.com": [9469], "m.eat.ch": [4867], "exoclick.com": [5499], "www.netzpolitik.org": [11278], "jobs.wellcome.ac.uk": [19752], "jobs.telegraph.co.uk": [16082], "*.gpshopper.com": [6373], "www2.citymapper.com": [3193], "go.wustl.edu": [17993], "passport.everydayhero.com": [5454], "img5.picload.org": [12661], "itv.com": [7853], "www.yed24hr.com": [18666], "remusexhauststore.com": [13763], "www.atmail.com": [1323], "www.chiphell.com": [3088], "jobcloud.ch": [19322], "accounts.surfeasy.com": [15649], "makershed.com": [9913], "sstatic.net": [15359], "jarosz.stanford.edu": [15384], "www.youtube.co.il": [18709], "jumpinformatiqueportal.axosoft.com": [1477], "www.youtube.co.in": [18709], "pay.gov": [12465], "www.simplegiver.com": [10521], "www.mymediamagnet.com": [10811], "hlat.us": [7123], "us.7digital.com": [193], "privacytool.org": [13090], "sso.cc.stonybrook.edu": [15480], "mullet.se": [10693], "jottit.com": [8639], "verisigninc.com": [17623], "treasurydirect.gov": [16705], "www.manage.cm": [9938], "m.fotki.yandex.kz": [18652], "*.duke.edu": [4799], "p.fr33tux.org": [6091], "*.nyx.com": [10996], "static.manutan.fr": [9965], "krakenbenchmark.mozilla.org": [10652], "springboard.fastspring.com": [5677], "discovermeteor.com": [4551], "ripoffreport.com": [13896], "www.tarsnap.com": [15966], "partner.just-eat.no": [19328], "bbhelp.cit.cornell.edu": [3676], "endchan.xyz": [5245], "gq-magazine.co.uk": [6378], "dg54.mycdn.me": [10824], "dotmailer.com": [4695], "wiki.osgeo.org": [11669], "onemonth.com": [11850], "*.justcloud.com": [8689], "admissions.calpoly.edu": [2728], "chat1.ap.dell.com": [4335], "www.sanwork.com": [14294], "emea3.recruitmentplatform.com": [13651], "fbi.gov": [5708], "descience06.carbonmade.com": [2831], "www.pbwebdev.com": [12212], "*.westjet.com": [18206], "www.piwik.univention.de": [17225], "vpic.video.qq.com": [13285], "freesnowden.is": [6150], "www.aldi-sued.de": [299], "filetrip.net": [5795], "inoreader.com": [8156], "adminer.pipni.cz": [12257], "flixbus.cz": [5931], "flixden.com": [5932], "www.mcwhirter.com.au": [10123], "www.wishmich.org": [9903], "www.ifc.org": [8258], "*.bennetts.co.uk": [1779], "ui.aggregateknowledge.com": [726], "p5.raasnet.com": [13655], "zap2it.com": [18788], "hu.libreoffice.org": [9311], "www.hamburg.de": [7181], "cloudworks.nu": [3298], "cao.stanford.edu": [15383], "static.thefullsignal.com": [6254], "cgit.collabora.co.uk": [3419], "documentation.mailgun.com": [9883], "savethechildren.org.uk": [14314, 14315], "3.vgc.no": [17484], "*.rdoproject.org": [13409], "dyankov.eu": [4818], "ld-2.itunes.apple.com": [1120], "wpx.ne.jp": [18468], "www.weather.yandex.com.tr": [18649], "kommaer.dk": [8965], "bitcoinfoundation.org": [1980], "berkeley.edu": [17240], "survs.com": [15662], "www.pamconsult.com": [12352], "soulmates.guardian.co.uk": [7000], "www.nordichardware.com": [11474], "includes.okccdn.com": [11770], "*.adsrvmedia.com": [633], "osmfoundation.org": [11672], "es.support.t-mobile.com": [15772], "tailgatersparking.com": [15912], "www.postgresql.eu": [12974], "pdftoword.com": [12237], "www.hdfury.com": [7053], "bitmissile.com": [1939], "www.youtube.com.tn": [18709], "*.backlift.com": [1600], "apobox.com": [334], "forums.unrealengine.com": [17365], "webmail.names.co.uk": [11026], "pin.harvard.edu": [7219], "www.resurs.se": [13819], "www.kanotix.de": [8782], "developer.berkeley.edu": [17240], "www.bt.no": [1550], "ooda.com": [11651], "youtube.co.uk": [18709], "content-public-dc2.govdelivery.com": [6862], "auctions.godaddy.com": [6773], "nextstudioapps.com": [9129], "www.skeptic.org.uk": [14901], "451unavailable.org": [146], "www.companiesintheuk.co.uk": [3507], "www.maxcdn.com": [10091], "edc1.healthtap.com": [7258], "announce.ft.com": [19202], "www.magazin.io": [9845], "ilogo.in": [7755], "dmca.com": [4045], "www.quotemedia.com": [13377], "api.facebook.com": [5620], "youtube.co.ug": [18709], "warez-bb.org": [17976], "www.usecryptos.com": [17421], "vbg.de": [17468], "developers.bitinvest.com.br": [1998], "spreadshirt.at": [15300], "tweetreach.com": [16871], "static5.readyflowers.com": [13620], "ymcmbofficial.com": [18619], "dnscurve.org": [4062], "help.elsevier.com": [5185], "www.tradepub.com": [16639, 16645], "sbiforsme.sbi.co.in": [14082], "*.photoprintit.com": [12648], "*.meebo.com": [10206], "eastdevon.greenparty.org.uk": [6925], "www.munzinger.de": [10706], "www.proxy.org": [13180], "b11.yahoo.co.jp": [18640], "domain-dns.com": [4646], "*.weissinc.com": [18188], "securedrop.org": [14491], "espanol.istockphoto.com": [19309], "openclassrooms.com": [11928], "static.thinksteroids.com": [9737], "p2.qhimg.com": [13302], "ox.ac.uk": [17271], "interlan.se": [8252], "status.acuityscheduling.com": [504], "mightyupload.com": [10380], "v2ex.com": [17463], "apps.ubuntu.com": [17102], "ighome.com": [7948], "labconnect.wustl.edu": [17993], "myitworks.com": [7858], "license.psoft.net": [12945], "openhub.net": [12013], "bycraft.cz": [2483], "global.alipay.com": [817], "www.cryptojedi.org": [3875], "profil.topnet.cz": [15845], "www.topuniversities.com": [16563], "cloudafrica.net": [3281], "proxpn.com": [19519], "www.diasporabrazil.org": [4450], "www.bnf.org": [2342], "thechangelog.com": [16256], "blog.bandcamp.com": [18428], "om.tdc.dk": [15796], "accountkiller.com": [459], "www.yamgo.com": [18644], "www.stationlrowingclub.com": [15434], "*.woot.com": [18424], "loopiasecure.com": [9606], "metadata.ftp-master.debian.org": [4274], "volunteermatters.com": [17836], "www.sundance.tv": [19638], "accountsupport.com": [460], "2013.eurobsdcon.org": [5403], "www.mailnull.com": [9878], "linkomanija.net": [9377], "undergrad.usc.edu": [17278], "www.addtoany.com": [573], "public.medicaid.gov": [19391], "*.moddb.com": [10515], "www.diskcryptor.net": [4562], "theads.me": [16332], "payrollapp.com": [12485], "blogs.netapp.com": [11183], "www.threatmetrix.com": [16392, 16393], "www.courtsofnz.govt.nz": [3722], "licensing.west-lindsey.gov.uk": [18205], "assistive.usablenet.com": [17419], "scache.microsoft.com": [10364], "beget.ru": [1752], "my.ucsc.edu": [17305], "www.es.gy": [5352], "arrl.org": [342], "jogos.zwame.pt": [18925], "printfriendly.com": [13066], "secure.n-able.com": [10858], "mexicoleaks.mx": [10327], "www.datacell.is": [4177], "m.yandex.ua": [18656], "www.veber.co.uk": [17585], "www.mdh.se": [9732], "www.paloaltonetworks.com": [12349], "freebaselibs.com": [6158], "www.iyouport.com": [7885], "beta.mining.bitcoin.cz": [10425], "www.userreport.com": [17437], "comcenter.netcologne.de": [11188], "www.opensrs.com": [16816], "www.dave.org.uk": [4222], "www.itella.fi": [19310], "domainmarket.com": [4654], "training.drweb.com": [4783], "www.ipay.uillinois.edu": [16960], "www.zoner.fi": [18894], "www.adultfriendfinder.com": [643], "www.amazon.es": [917], "www.mitls.org": [10334], "pypy.org": [10285], "*.flowtab.com": [5949], "ssl0.ovh.net": [12173], "whyblockme.info": [3533], "ieeexplore.ieee.org": [7714, 7715], "grail.cs.washington.edu": [17291], "www.scubbly.com": [14429], "secure.i.uat1.telegraph.co.uk": [16082], "www.voltaicsystems.com": [17833], "www.goeshow.com": [6799], "vabali.de": [17525], "i1.services.social.s-msft.com": [14058], "hub2.lfg.com": [19360], "utexas.edu": [17286], "portsmouth.gov.uk": [19508], "intranet.law.ox.ac.uk": [17271], "bbcdn-bbnaut.ibillboard.com": [7679], "www.dccomics.com": [4015], "www.t-shirtmojo.com": [15775], "vms.drweb.com": [4783], "scanmyserver.com": [14332], "*.mystockoptions.com": [10787], "neutrons.ornl.gov": [11693], "www.voyage-prive.it": [17858], "*.oxfordjournals.org": [12190], "www.mtekk.us": [10681], "stations.fcc.gov": [5709], "emoryhealthcare.org": [5211], "*.ligatus.com": [9341], "openhost.net.nz": [12036], "www.4plebs.org": [161], "www.stavrovski.net": [15439], "blogs.windows.com": [18342], "www.trailofbits.com": [16656], "*.dolphin-emu.org": [4644], "*.heteml.jp": [7375], "www.trustedshops.*": [16787], "www.d2jsp.com": [3997], "tandfonline.com": [8118], "venuemaps.virtualearth.net": [17755], "ajax.cloudflare.com": [3285], "za1.effectivemeasure.net": [5109], "chat.zoho.com": [18884], "japantimes.co.jp": [16196], "esue.ohio-state.edu": [11761], "www.aioe.org": [744], "foresight.org": [6028], "abbonati.tiscali.it": [16498], "knightlab.com": [8945], "ws.mytemp.email": [10790], "justmoon.net": [8700], "www.rbwm.gov.uk": [19539], "mitderzeitspielen.sbb.ch": [15693], "liwenhaosuper.com": [9519], "*.ofcom.org.uk": [11733], "dev.gogetssl.com": [6780], "individual-villas.co.uk": [18490], "code.jquery.com": [8451], "sourcetreeapp.com": [15176], "m.baifubao.com": [1621], "chat.linuxlovers.at": [9432], "warframe.com": [17977], "www.hertzarabic.com": [7361], "dornsife.usc.edu": [17278], "capify.org": [2817], "gidapp.com": [6331], "www.threatpost.com": [16394], "*.gaiahost.coop": [6302], "finavia.fi": [5834], "www.mcgrhill-warez.com": [10121], "cdn-staging.demandstudios.com": [4344], "neonmob.com": [11155], "www.psychologytoday.com": [13189], "media.uow.edu.au": [17350], "arte.tv": [18966], "gnomejournal.org": [6354], "www.sport.bt.com": [1551], "www.freakattack.com": [5593], "download.untangle.com": [17370], "help.gmx.com": [6350], "evision.brunel.ac.uk": [19021], "www.kde-apps.org": [19461], "www.cooperating-objects.eu": [3647], "www.worlddab.org": [18448], "www.onecloudsecurity.com": [11830], "www.linuxmonk.ch": [9433], "caprioli.se": [12590], "www.kabelmail.de": [8760], "www.uppsalahem.se": [17397], "libdlo.freedesktop.org": [6126], "media.podcasts.it.ox.ac.uk": [17271], "doodle.com": [4681], "manifesto.kde.org": [8718], "www.popcorntime.io": [12915], "www.bebo.com": [1743], "www.howto.gov": [7568], "ornl.gov": [11693], "are.berkeley.edu": [17240], "www.publicknowledge.org": [13205], "www.commoncrawl.org": [3486], "accounts.zoho.com": [18884], "www.canadahelps.org": [2792], "www.bcgolf.com": [1507], "spicebox.co.jp": [15265], "consultationhub.edinburgh.gov.uk": [5084], "easylist.adblockplus.org": [561], "spreadshirt.net": [15300], "dma.org.uk": [4522], "s.map.qq.com": [13285], "en.gamigo.com": [6445], "ssl.google-analytics.com": [6839], "*.shopstyle.de": [14720], "www.roddis.net": [13943], "www-misc.chpc.utah.edu": [17288], "modul.tivi.de": [19800], "www.megashare.im": [10231], "blogs.iis.net": [7741], "store.malwarebytes.org": [9929], "byo.com": [2308], "sex8.cc": [14639], "micropage.opera.com": [12050], "www.businesslink.gov.uk": [2460], "kyani.net": [9049], "s2.qhimg.com": [13302], "blog.veracode.com": [17614], "zyan.scripts.mit.edu": [9749], "www.expo-virtuelle.fss.ulaval.ca": [17229], "www.ovh.sn": [12173], "cms.elderscrolls.com": [18830], "testing.gimp.org": [19218], "uajobs.hr.uillinois.edu": [16960], "imgssl.superpages.com": [15633], "*.komro.net": [8971], "*.tor2web.com": [16566], "yourdatelink.com": [18727], "community.ally.com": [864], "planningpublicaccess.southampton.gov.uk": [15191], "m.3dcenter.org": [122], "docs.rtems.org": [13472], "*.cubics.com": [3910], "www.hatatorium.com": [7237], "sbi.co.in": [14082], "myaccount.earthlink.net": [5007], "www.darlinghq.com": [4155], "forums.hubspot.com": [7594], "*.dawandastatic.com": [4098], "translink.co.uk": [16675], "blog.bufferapp.com": [2402], "worksthatwork.com": [18445], "space.hgo.se": [7058], "www.localmedia.org": [9539], "*.nudevista.com": [11569], "www.sozialwissenschaften.htwk-leipzig.de": [7114], "www.onjive.com": [11811], "*.globalamicistore.com": [6721], "blog.alipay.com": [817], "can01.anibis.ch": [18956], "web.datemas.de": [4217], "www.shtuff.it": [14748], "epa-sprg.ornl.gov": [11693], "bhiab.se": [1836], "www.sharefest.me": [14676], "vmm.cern.ch": [2575], "www2.ulaval.ca": [17229], "wiki.libsdl.org": [9290], "media.vodafone.de": [17814], "spatialbuzz.com": [15231], "2006.weblogawards.org": [18128], "*.greenvilleonline.com": [6939], "sl-div.web.cern.ch": [2575], "anon-ib.su": [1039], "crysys.hu": [3837], "today.lbl.gov": [9065], "secure.remotelyanywhere.com": [13762], "support.mashery.com": [10046], "gotoassist.com": [6786], "registrierung.gmx.net": [6350], "*.codeplex.com": [3373], "imagemagick.org": [7978], "uat-net.technoratimedia.com": [16044], "apex.go.sonobi.com": [15139], "videogamegeek.com": [17685], "static.shoutback.com": [14738], "reportcard.wmflabs.org": [18296], "1stwarning.com": [64], "www.ala.org": [298], "www.f5networks.com.br": [5545], "*.falconjet.com": [4166], "your-freedom.net": [18721], "encrypted.google.com": [6834], "www.fortum.com": [6059], "sso.seagate.com": [14437], "yourvideofile.org": [18740], "dragonflydigest.com": [4739], "partiality.itunes.apple.com": [1120], "bytemark.co.uk": [2489], "bestwebhostinggeek.com": [870], "grupotriton.com": [6987], "www.ch-edoc-passantrag.admin.ch": [19648], "www.hanford.gov": [7194], "*.ksl.com": [8751], "roundcube.xeneris.net": [18560], "chakraos.org": [2984], "thunder.cdn.overdrive.com": [12160], "bkb.ch": [19333], "slp.somerset.gov.uk": [15127], "budsgunshop.com": [2395], "backup.com": [11506], "tizen.org": [16506], "download.xdk.intel.com": [8209], "script.ioam.de": [7783], "www.beanbaginc.com": [1731], "s2.thejournal.ie": [16224], "webtrends.telegraph.co.uk": [16082], "www.bugzil.la": [2409], "oas.monster.com": [10564], "search.zoho.com": [18884], "cdn.zeeagency.com": [18809], "login.variety.com": [17565], "www.ml314.com": [9756], "www.lightthenight.org": [9344], "domainskate.com": [4657], "www.iab.org": [7663, 7664], "rim.ponemon.org": [12896], "verisign.ch": [17623], "smart-invests.biz": [14983], "cengagebrain.com": [2937], "hollywoodreporter.com": [7454], "pressbooks.ch": [19516], "*.hetnet.nl": [8744], "forestsangha.org": [6029], "www.mibew.org": [10339], "es.explore.t-mobile.com": [15772], "piwik.vandyke.com": [17549], "abo.faz.net": [5554], "www.kaazing.com": [8759], "public.bizo.com": [2031], "*.suppliesfordreams.org": [15636], "*.mci.edu": [10125], "tk.de": [16037], "*.ads.neudesicmediagroup.com": [11281], "catlinseaviewsurvey.com": [2905], "www.shmoocon.org": [14709], "on.msnbc.com": [1920], "wiki.vorratsdatenspeicherung.de": [295], "samara.rt.ru": [13469], "movie4k.org": [10636], "gin.collabora.co.uk": [3419], "www.carrefour.es": [19042], "www.g5.gov": [6300], "antispam-ev.de": [1069], "planet.xamarin.com": [18540], "www.scambs.gov.uk": [19566], "vespermarine.com.au": [17651], "scjobs.sciencemag.org": [14382], "owncloud.lebsanft.org": [19352], "businessaffairs.stanford.edu": [15383], "nowsecure.com": [11533], "status.transifex.com": [16669], "*.fairphone.com": [5636], "www.ihgplc.com": [7738], "www.osdisc.com": [19468], "emskr.chefkoch.de": [3058], "braintreepayments.com": [2274], "www.ansa.it": [1055], "a3li.li": [224], "*.meritrustcu.org": [10284], "csirt.vutbr.cz": [17522], "www.cyberfret.com": [3970], "archives.williams.edu": [18316], "drive.google.com": [6834], "www.jedec.org": [19319], "redbullmobile.com.au": [13670], "cstatic.weborama.fr": [18138], "*.umonitor.com": [16982], "nikevideo.nike.com": [11401], "www.btsportbusiness.com": [1577], "*.thenation.com": [16200], "cashback.co.uk": [2881], "winzip.com": [18332, 18333], "pgbrandsampler.ca": [13121], "www.floridalobbyist.gov": [19185], "www.qxl.no": [13385], "www.skandia.se": [14894], "auth.univ-paris-diderot.fr": [12401], "bugs.pcbsd.org": [12216], "synology.com": [15738], "cubify.com": [3911], "www.iweb.com": [7875], "3suisses.de": [137], "goeswhere.com": [6805], "*.centrum.cz": [2959], "p.sfx.ms": [14650], "nic.ad.jp": [10918], "classic.fastmail.com": [5688], "booklog.jp": [2203], "images.minalyzer.com": [10405], "passport.yandex.by": [18648], "fool.co.uk": [10613], "www.elfa.se": [5161], "*.ed2go.com": [2937], "instat.com": [8026], "*.msu.edu": [19414], "donate.splcenter.org": [14157], "cult-labs.com": [3914], "fp.intego.com": [8201], "ec-cdn-assets.stitcher.com": [15476], "sakha.rt.ru": [13469], "www.chasepaymentech.com": [3027], "www.mett.tk": [3533], "*.superbreak.com": [7452], "schneierfacts.com": [19569], "bioinformatics.knowledgeblog.org": [8948], "rsvp.com.au": [13466], "banking.spkrb.de": [19619], "autodiscover.sedoholding.com": [14545], "forums.obdev.at": [11695], "www.ylilauta.org": [19792], "www.privatecore.com": [13100], "account.aol.com": [321], "ac.qq.com": [13284], "secure.paytoll.eu": [12489], "tracker.bugcrowd.com": [2406], "atlas.thecthulhu.com": [16334], "www.chicagotribune.com": [3072], "lh4.google.com.*": [6837], "s.tbcdn.cn": [15982], "www.scotch.io": [14395], "www.fivethirtyeight.com": [5894], "www.eduroam.es": [5101], "www.hsbc.*": [7098], "club.360buy.com": [111], "gmx.ph": [6350], "local.amazon.co.uk": [917], "dotsec.com": [4696], "folio.jhu.edu": [16296], "*.fiercemarkets.com": [5776], "www.jolla.com": [8622], "msi.world.tmall.com": [19684], "www.esiss.ac.uk": [4961], "review.opencontrail.org": [11929], "statuspage.io": [15438], "my.medicare.gov": [19392], "identity.stanford.edu": [15383], "cruisersforum.com": [3832], "ssl.connextra.com": [3585], "www.mediastorehouse.net": [10146], "*.kotaku.com": [8993], "www.scsk.jp": [14090], "canddi.com": [19036], "seatgeek.com": [14451], "static.jsconf.us": [8458], "myesi.esi-group.com": [4959], "community.dell.com": [4335], "favorites.live.com": [9483], "desv.dict.cc": [4455], "g.microsoftonline.com": [10367], "api.deepin.org": [4302], "maplesoft.com": [9972], "uslaw.link": [17445], "www.conversejs.org": [3626], "gmplib.org": [6348], "instalacja.tms.pl": [19686], "www.aspectsecurity.com": [1271], "hounddogcentral.com": [7563], "www.ipv6-adresse.dk": [7807], "ondemandui.webtrends.com": [18171], "studentbenefits.ca": [15537], "www.intand.com": [15941], "kore.io": [8985], "*.uploading.com": [17394], "tr.support.tomtom.com": [16540], "open.bufferapp.com": [2402], "www.seo.com": [14102], "tandridge.gov.uk": [15943], "bugs.exim.org": [5494], "whatbox.ca": [18232], "secure.pangaea.de": [12207], "ubuntu-nl.org": [17099], "*.partypoker.com": [12420], "spicybite-dublin1.just-eat.ie": [19328], "domeinenrz.nl": [11132], "www.jeffnabers.com": [8547], "www.vvztahy.vutbr.cz": [17522], "emapawards.com": [5196], "static.pubmed.gov": [13195], "bluewin.ch": [2157], "kolektiva.com": [8963], "www.mims.com.sg": [9743], "mdshooters.com": [10043], "poodletest.com": [12278], "myaccount.stubhub.de": [15534], "kde-help.org": [19461, 19462], "*.redbullmediahouse.com": [13668], "4.darkroom.shortlist.com": [14734], "pubster.twitch.tv": [16888], "seo.com": [14102], "tox.im": [16617], "service.xs4all.nl": [18535], "www.sstic.org": [14185], "portal.thalysnet.com": [16172], "maps.hants.gov.uk": [7196], "globalpublicsquare.blogs.cnn.com": [18428], "www.craigmurray.org.uk": [19087], "*.lohud.com": [9564], "nicereply.com": [11385], "www.fe-ddis.dk": [5563], "unicentre.uow.edu.au": [17350], "*.devconf.cz": [4416], "dassaultfalcon.com": [4166], "netgear.com": [11232], "staging-blogs.intel.com": [8209], "pinkong.bbs.taobao.com": [15952], "ticketonline.de": [16417], "www.sac.se": [14217], "notif.bonadza.com": [2194], "www.astronomicaltours.net": [1305], "cdn.makeagif.com": [9911], "catalog.plsinfo.org": [12537], "exjobb.meb.ki.se": [8725], "towelroot.com": [19691], "www.ks.uiuc.edu": [16956], "gullipics.com": [19232], "motion-store.adtile.me": [640], "www.cs.stanford.edu": [15383], "ezcrypt.it": [5001], "checkout.looppay.com": [9605], "www.ourlocality.org": [12144], "daohang.taobao.com": [15952], "it-sicherheit.de": [8193], "geak.tk": [3533], "aur.pacbsd.org": [12307], "berrange.com": [4142], "secure.progress.com": [13132], "dehr.dict.cc": [4455], "*.consumerreportscdn.org": [3600], "firstvds.ru": [5872], "campina.com": [2782], "torridge.greenparty.org.uk": [6925], "grupy-dyskusyjne.money.pl": [10547], "www.gemcutter.org": [14021], "tittygram.com": [16504], "industrybrains.com": [9984], "www.matrix.org": [10077], "downloads9.mamp.info": [19379], "nanjing.jhu.edu": [16296], "g.microsoft.com": [10364], "shop.tdc.dk": [15796], "nsa-observer.net": [11547], "www.encrypteverything.ca": [5237], "stratum0.org": [15512], "clm.globalcapacity.com": [6723], "s.sample.yahoo.co.jp": [18640], "ww3.lawschool.cornell.edu": [3676], "static0.gac.edu": [6301], "unsw.edu.au": [16995], "buyiphone.apple.com": [1120], "cr2c.stanford.edu": [15383], "ebid.net": [19133], "www.freedom-ip.com": [6164], "www.helpdesk.umd.edu": [17263], "invasion-turnonsocial.netdna-ssl.com": [8310], "donate.perlfoundation.org": [12575], "www.tepamine.com": [4057], "assets.filestackapi.com": [5801], "www.clicktotweet.com": [3256], "www.git-scm.com": [6673], "www.verisign.it": [17623], "*.duckduckgo.com": [4792], "static.miniclipcdn.com": [10423], "www.efa.org.au": [5152], "www.imagerights.com": [7980], "radioplayer.co.uk": [13521], "youtube.sg": [18709], "youtube.si": [18709], "youtube.sk": [18709], "lumosity.com": [9668], "youtube.sn": [18709], "www.securityinnovation.com": [14530], "yabs.yandex.kz": [18652], "wiki.aircrack-ng.org": [750], "lumendatabase.org": [9661], "www.zcarc.com": [7372], "www.youtube.com.eg": [18709], "www.twinsornot.net": [16881], "*.fh-kiel.de": [17298], "i.iucnredlist.org": [7866], "www.upi.com": [17004, 17005], "www.directbox.net": [4529], "www.law.washington.edu": [17291], "wscont.apps.microsoft.com": [10364], "www.lastenrad.vcd.org": [17474], "origin.static.ctctcdn.com": [3903], "cbdreader.christianbook.com": [3112], "donate.greenparty.org.uk": [6925], "www.offensive-security.com": [11736], "www.admin.ias.edu": [7669], "www.fiscal.treasury.gov": [16704], "jobs.groupon.com": [6974], "dice.com": [4452, 4453], "www.openpgpjs.org": [11965], "media.familychristian.com": [5645], "cuidadodesalud.gov": [3913], "www.fws.gov": [17060], "www.houndci.com": [7562], "oo.opinionlab.com": [12054], "moneybookers.com": [10550], "arena.westsussex.gov.uk": [18211], "dicht.nlnetlabs.nl": [10941], "blog.zdf.de": [19800], "ar.libreoffice.org": [9311], "www.tindie.com": [16471], "info.digitalriver.com": [4483], "www.mybenefitscalwin.org": [10745], "www.visahq.com": [17762], "helpforum.sky.com": [14924], "accounts.google.*": [6837], "www.conoha.jp": [3587], "ideastations.org": [7927], "www.mywot.com": [10798], "www.ookla.com": [11895], "cdn.nejm.org": [11303], "downtownhost.com": [4730], "tu-chemnitz.de": [15869], "www.library.nuigalway.ie": [11063], "*.vast.com": [17572], "*.janraincapture.com": [8508], "reporter-ohne-grenzen.de": [13783], "sms.cam.ac.uk": [17243], "www.valueclick.com": [17541], "tv.com": [15878], "rpw.sh": [14006], "www.clickfunnels.com": [3246], "jobs.thenextweb.com": [16302], "pp-shop.vodafone.co.uk": [17813], "www.ebenefits.va.gov": [17019], "*.bible.com": [18710], "tuki.zoner.fi": [18894], "*.extatic.org": [5519], "ssl.brucon.org": [2376], "liberalamerica.org": [9295, 9296], "www.octopoos.com": [11715], "erpm.umich.edu": [17266], "www.cryptography.com": [3895], "webapp.halton.gov.uk": [19236], "eromang.zataz.com": [18800, 18801], "china.mims.com": [9743], "static.velvetcache.org": [17602], "oberoesterreich.neos.eu": [10899], "www.luciosgold.ca": [9648], "9gag.com": [212], "*.groupon.co.uk": [6977], "developers.google.com": [6834], "aboutairportparking.com": [12169], "magix.com": [9708], "project.tmt.org": [16370], "www.suntech.cz": [19639], "target.smi2.net": [15005], "addictionhelpchat.com": [575], "vodafone.ie": [17815], "au.support.tomtom.com": [16540], "amazontrust.com": [919], "www.posterstoreuk.com": [12970], "www.contentful.com": [3614], "subscriptions-dsms.consilium.europa.eu": [5421], "www.youtube.com.tw": [18709], "affl.sucuri.net": [15575], "www.petridish.org": [12598], "i-cdn.openx.com": [11995], "www.youtube.com.tr": [18709], "translationproject.org": [16674], "uas.osu.edu": [11760], "bizchannel.cimbbank.com.kh": [2604], "onename.io": [11837], "kabeldeutschland.com": [8760], "mdgx.com": [9731], "www.folksam.se": [5987], "*.usni.org": [17046], "download-ssl.halowaypoint.com": [7176], "www.weltbild.ch": [18197], "solihull.greenparty.org.uk": [6925], "allplayers.com": [834], "go.bostonglobemedia.com": [2235], "help.fronter.com": [19200], "*.gentooquebec.org": [6532], "www.ekomi-us.com": [4921], "*.cryptomonkeys.com": [3881], "www.natoonline.org": [11047], "www.bitquick.tw": [1943], "offeredby.net": [12388], "freespeech.org": [6151], "crainsnewyork.com": [3758], "passwordcard.org": [12434], "static.hsappstatic.net": [7101], "www.websitealive5.com": [18149], "www.daemon-systems.org": [4101], "static.garagegames.com": [6457], "details.payment.yahoo.co.jp": [18640], "tmblr.co": [16514], "bignerdranch.com": [1859], "beckerweb2.wustl.edu": [17993], "www.intechnology.co.uk": [8035], "us1.siteimprove.com": [14880], "demo.hitbtc.com": [7420], "onetoone.apple.com": [1120], "ecc-platform.org": [4879], "lite.socialcube.net": [15070], "upc.es": [12895], "us.icecat.biz": [7914], "hyperboria.net": [7646], "software.topcoder.com": [13070], "debt.wmtransfer.com": [18076], "www.cdmp.allianz.com": [18950], "nolp.dhl.de": [4034], "wiki.wmtransfer.com": [18076], "readcube.com": [13606], "vip.bitcoin.co.id": [1964], "login.yellowbot.com": [18669], "www.bluegiga.com": [2148], "exch-eu.atdmt.com": [10360], "i6.c.dk": [2498], "images.contentreserve.com": [19077], "jubii.dk": [8659], "*.footballfanatics.com": [6013], "office365.microsoft.com": [10364], "checkdomain.de": [3049], "help.goodsie.com": [4931], "www.yeah.net": [18665], "bmmetrix.com": [2161], "piwik.1u1s.de": [67], "horizon.halton.gov.uk": [19236], "app.zingcheckout.com": [18871], "stonewall.org.uk": [19629], "northyorks.greenparty.org.uk": [6925], "tribal.hants.gov.uk": [7196], "r.i.ua": [7654], "status.pagerduty.com": [12332], "jquery.com": [8451], "socializer.cc": [15071], "play.google.com": [6834], "surveillancelaw.org": [15656], "legacy.kingston.com": [8901], "www.coinimal.com": [3405], "www.247filmz.com": [79], "bugs.webkit.org": [18125], "marshallapps.usc.edu": [17278], "video.fosdem.org": [6069], "m.friendlyduck.com": [6214], "www.intern.arch.ethz.ch": [4975], "www.afcom.com": [281], "cas.nottingham.ac.uk": [11528], "www.raspbian.org": [13570], "plancompare.medicare.gov": [19392], "kat-de-paris.fr": [8813], "www.harperreed.com": [7209], "gamebillet.com": [6429], "www.braintreepayments.com": [2274], "www.rack911.com": [13495], "www.Avanza.se": [1443], "withsix.com": [18379], "freescorenation.com": [6131], "r7.mzstatic.com": [1119], "tech.just-eat.com": [19328], "www.maemo-apps.org": [19461], "imap.ct.infn.it": [7766], "calcentral.berkeley.edu": [17240], "youtube.com.tr": [18709], "i4.connect.microsoft.com": [10364], "www.mathjobs.org": [10070], "www.goduke.com": [4799], "www.sohh.com": [14149], "portal.triggit.com": [16734], "careers.sky.com": [14924], "ur.taobao.com": [15952], "*.yottaa.net": [18701], "www.kettering.gov.uk": [8861], "www.umassathletics.com": [17264], "www.aartdevos.dk": [397], "jackrabbit.apache.org": [1086], "www2.seetickets.com": [14547], "media.office.co.uk": [11742], "www.thechinastory.org": [16257], "web.eloqua.com": [5178], "www.reparieren.ch": [19733], "www.oskuro.net": [12122], "lqttswr.readspeaker.com": [13610], "ultimatepoker.com": [17130], "trygghansa.se": [16808], "stats.ipinyou.com": [7803], "expert.yandex.com.tr": [18649], "burstnet.eu": [2445], "ipv4.nebezi.cz": [11126], "commonroom.engagedoncaster.co.uk": [5261], "www.evolvesocially.org": [5468], "beta.skypeassets.com": [14939], "ncds.netflix.com": [11229], "www.digikam.org": [4474], "www.insightcommunity.com": [5940], "srdrvp.com": [15340], "ru-golos.ru": [13477], "status.online.net": [11870], "account.kuleuven.be": [8816], "www.hostdeclaration.ru": [4287], "www.fortresslinux.org": [6058], "svn.filezilla-project.org": [5796], "www.opencores.org": [11930], "us1.effectivemeasure.net": [5109], "cloudns.net": [3276], "snip2code.com": [15036], "www.hwsw.hu": [7119], "www.uneddit.com": [17162], "tiki.org": [16444], "fccsyd.unizar.es": [17356], "djangoeurope.com": [4591], "ciw.edu": [2857], "osdir.com": [11668], "dragoonarmy.msi.com": [9792], "www.cloutoday.nl": [3277], "*.pair.com": [12336], "upstart.com": [17400], "*.freelancer.com": [6176], "www.xm1math.net": [18578], "doi.org": [4075], "merethis.com": [10283], "www.dataprotection.ie": [4172], "www.agra-net.net": [734], "art.com": [1219], "linux-magazine.com": [9394], "secure.cryptocapital.co": [3867], "groups.google.*": [6837], "www.interaction.bell.ca": [1763], "sunybroome.edu": [15609], "www.asmallorange.com": [214], "www.allegro.pl": [849], "www.skyacademy.com": [14928], "www.internationalman.com": [8262], "*.stadtwerke-bamberg.de": [15368], "facepunch.com": [5624], "*.samsung.cn": [14265], "content.foto.my.mail.ru": [9874], "iwmnetwork.com": [7872], "is.vutbr.cz": [17522], "www.lplogin.com": [569], "www.coreos.com": [3665], "smyl.es": [14141], "status.simple.com": [14820], "zwame.pt": [18925], "www.crc.id.au": [2656], "metrics.tape.tv": [15956], "www.document.no": [4626], "*.hackerspace.gr": [6915], "sso-prod1.cisco.com": [3162], "redwoodsinyosemite.com": [13703], "www.zugaina.org": [18919], "m.mobile.de": [19403], "cache.boston.com": [2233], "www.talgov.com": [15924], "*.aoe.com": [316], "www.x10hosting.com": [18498], "plugin.mediavoice.com": [12860], "springrts.com": [15306], "ebuyer.com": [5043], "webmail.fastdomain.com": [5672], "engineyard.com": [5265], "feedproxy.google.com": [6834], "*.frim.nl": [6220], "pond.imperialviolet.org": [8017], "www.cryptosanta.xyz": [3869], "prod-web.neu.edu": [10902], "energylinx.co.uk": [19159], "events.jquery.org": [8450], "carlsbad.org": [2855], "myportal.lacie.com": [9117], "www.onboardkit.com": [11823], "acnfp.food.gov.uk": [19187], "hw.infowars.com": [8129], "passport.wmtransfer.com": [18076], "login.wustl.edu": [17993], "www.searx.me": [14449], "personaldemocracy.com": [12582], "cortera.com": [3695], "system.netsuite.com": [11209], "www.individual-villas.co.uk": [18490], "jobs.datacenterknowledge.com": [14829], "www.sklik.cz": [14915], "www.dolartoday.com": [4639], "dh2011.stanford.edu": [15383], "iopscience.iop.org": [8195], "reason.com": [13635], "cloudorado.com": [3311], "autographicsportal.axosoft.com": [1477], "www.verisign.com.sg": [17623], "www.postscapes.com": [12983], "portals.radware.com": [13524], "www.concrete5.org": [3549], "cdn.sonyentertainmentnetwork.com": [15149], "archive.is": [1164], "*.pumo.com.tw": [13228], "codeascraft.com": [3358], "media5.congstar-media.de": [3576], "*.napoleonmakeupacademy.com.au": [11036], "dryicons.com": [4785], "rights.1688.com": [36], "cloud.feedly.com": [5738], "www.demo.com": [4027], "c9.io": [3280], "developer.nvidia.com": [10985], "samples.libav.org": [9291], "docs.aliyun.com": [821], "ez-download.com": [4999], "www.genome.gov": [17027], "www.baratikor.com": [4742], "measuredvoice.com": [2824], "trendblog.deichmann.com": [4317], "player.twitch.tv": [16888], "hollywoodlife.com": [7455], "c1-blog.flirble.org": [16191], "www.communicatoremail.com": [3500], "www.cm.be": [3109], "www.bioshockinfinite.com": [1901], "spil.tv2.dk": [15881], "risparmiopostale.it": [13903], "xpra.org": [18587], "res.cloudinary.com": [3307], "intranet.humber.nhs.uk": [10913], "leap3.singlehop.com": [14847], "www.energiedesign.htwk-leipzig.de": [7114], "plus.google.com": [6834], "www.gfsfrance.com": [6326], "utsandiego.com": [17070], "aimatch.com": [742], "www.subterraneangames.com": [15568], "lis.illinois.edu": [17258], "starbucks.com": [15400], "www.trustedshops.co.uk": [16787], "passagebank.com": [12426], "www.factorable.net": [5626], "www3.rbwm.gov.uk": [19539], "www.trustedreviews.com": [16792], "youtube.ng": [18709], "opswat.com": [11657], "clientes.wiroos.com": [19761], "domenovyprohlizec.cz": [4671], "www.n0where.org": [10860], "youtube.no": [18709], "feedburner.com": [5734], "*.redcross.org.uk": [2343], "youtube.nl": [18709], "coursefinder.io": [3717], "jpcsp.org": [5224], "www.n-aana.org": [11093], "knowledgebase.musicmetric.com": [10719], "*.nuggad.net": [11571], "ebppprod.alipay.com": [817], "www.financnahitparada.sk": [5828], "w.forumwizard.net": [6064], "www.rockvalleycollege.edu": [13938], "www.fashiondip.com": [5666], "developer.gimp.org": [19218], "u.osu.edu": [11760], "sobitia.ya.ru": [18626], "arts.leeds.ac.uk": [17318], "www.lime-technology.com": [19365], "wifilogin.xfinity.com": [19784], "reelseo.com": [13711], "www.lanayachocolate.com": [9120], "login.e.bibl.liu.se": [9084], "i4.zst.com.br": [18915], "forsakringskassan.se": [6050], "piraten-ufr.de": [12717], "*.rutgers.edu": [14048], "shop.cryptalloy.de": [3845], "www.newstatesman.com": [11310], "blogs.yandex.by": [18648], "www.emubrightfutures.org": [18428], "*.zkb.ch": [19333], "guardianproject.info": [7001], "ads.ibibo.com": [7900], "dnshistory.org": [4067], "www.zayo.com": [18802], "library.williams.edu": [18316], "*.seafile-server.de": [14435], "nagios.debian.org": [4275], "avonmaquiagem.com.br": [1455], "admin.solicitor-concierge.com": [15116], "wiki.cse.buffalo.edu": [17297], "static0.urbandictionary.com": [17407], "www.hope.net": [7493], "jaim.at": [8494], "www.nicereply.com": [11385], "buzzurl.jp.eimg.jp": [2481], "www.securingthehuman.org": [14517], "videodroid.org": [17694], "verdadmedia.com": [17618], "reg.ft-static.com": [19201], "life.tenpay.com": [16113], "supermedia.com": [15615], "*.stack.nl": [15360], "pharmacies.usc.edu": [17278], "aplicar.internetessentials.com": [19300], "www.leapmotion.com": [9209], "hertz.com": [7372], "community.bluejeans.com": [2139], "*.articulate.com": [1233], "my.faa.gov": [5713], "thesatanictemple.com": [16308], "dzone.com": [4095], "jamanetwork.com": [8411], "*.mozdevgroup.com": [10648], "cryptome.org": [3879], "*.myshopify.com": [14725], "*.owkb.ch": [19333], "chs.us": [3126], "wiki.nci.nih.gov": [11052], "www.drchrono.com": [4747], "ffa.vutbr.cz": [17522], "kriminalvarden.se": [9012], "*.tennessee.edu": [17342], "contest.yandex.com": [18651], "zandvoort.nl": [11132], "zmanda.com": [18880], "dela.dict.cc": [4455], "stations.itunes.apple.com": [1120], "blog.bofh.it": [2178], "pokerstarsapps.com": [19504], "www.musopen.org": [10725], "*.r26.net": [15964], "mail.invitel.hu": [8327], "img.vidup.me": [17704], "registry.hub.docker.com": [4616], "coy.im": [3741], "aka.hmrc.gov.uk": [7084], "store.axosoft.com": [1477], "www.sipgate.co.uk": [14855], "partner.skylink.cz": [14937], "www.ashlandfiber.net": [1253], "blog.intercom.io": [8244], "virtualinventions.com": [17752], "freundewerben.congstar.de": [3577], "*.jobcloud.ch": [19322], "pfa.idg.se": [7705], "deltager.no": [4338], "giroloyal.web.de": [18050], "www.easy-hebergement.fr": [5033], "img.fastshare.cz": [5674], "aitao.taobao.com": [15952], "sandeen.net": [14277], "www.cumulusnetworks.com": [3919], "www.bcobandits.com": [1716], "apps.telford.gov.uk": [19669], "fb.answers.microsoft.com": [10364], "sedo.co.uk": [14541], "www.igd.fraunhofer.de": [6112], "rosettacode.org": [13969, 13970], "portal.acs.ncsu.edu": [11492], "regional.osu.edu": [11760], "www.opennet.ru": [11961], "socrates.stanford.edu": [15382], "www4.plymouth.ac.uk": [12833], "www.snapdeal.com": [15030], "cn.forums-stage.oracle.com": [12082], "www.wavpin.com": [18009], "paydirtgold.com": [12471], "nhseportfolios.org": [10914], "investor.shareholder.com": [14677], "propublica.org": [13111], "launch.stellar.org": [15464], "www.hertz247.es": [7365], "smbmarketplace.cisco.com": [3162], "d.alipayobjects.com": [817], "www.perspectives-project.org": [18428], "playfire.com": [12805], "councildecisions.bury.gov.uk": [19027], "optimized-by.rubiconproject.com": [14014], "www.jellynote.com": [8550], "www.studentaffairs.illinois.edu": [17258], "yuba.harvard.edu": [7218], "www.is.vutbr.cz": [17522], "secure.accountsupport.com": [460], "eblastengine.upickem.net": [17389], "groupees.com": [6971], "www.wickedlasers.com": [18279], "posteo.de": [12969], "www.cair.com": [2514], "savecrypto.org": [14311], "s.zumzi.com": [18923], "services.fit.edu": [5942], "myaccountholding.talktalk.co.uk": [15929], "autoimg.rtl.de": [13474], "newsletter.f-secure.com": [5541], "www.hertz.com": [7372], "www.probmods.org": [13118], "bot.ngx.cc": [11376], "touch.otvet.mail.ru": [9874], "metrics.carphonewarehouse.com": [2861], "jupiterartland.org": [8685], "wwwdc2.cinelease.com": [7372], "w03.hillingdon.gov.uk": [7410], "a.disquscdn.com": [4570], "www.vpnsecure.me": [17505], "*.cwrap.org": [19097], "agendaless.com": [724], "img04.rl0.ru": [13914], "wikimedia.de": [18296], "cdn.zeltser.com": [18813], "minside.amnesty.no": [974], "headphone.com": [7255], "nextpowerup.com": [11370], "m.tune.yandex.by": [18648], "charterourcommunity.com": [3023], "files.srb2.org": [14165], "www.botfrei.de": [2241], "*.nykeurope.com": [10994], "ohloh.org": [11766], "weather.bartbania.com": [1682], "cornell-classic.univcomm.cornell.edu": [3676], "proxy5.switchadhub.com": [15701], "www.htwk-alumni.de": [7114], "piwik.org": [12733], "simonsfoundation.org": [14817], "nice.freedesktop.org": [6126], "uni-stuttgart.de": [17282], "such001.reichelt.de": [13744], "portal.acs.org": [929], "www.computerbase.de": [3538], "www.pogoda.yandex.by": [18648], "test-dmtotem.web.cern.ch": [2575], "www.housing.uic.edu": [17231], "natureshop.com": [11105], "dslreports.ca": [4081], "us.gamespot.com": [6426], "www.trafficprivacy.com": [16649], "www.commsys.isy.liu.se": [9083], "www.myedaccount.com": [10755], "www.familie.san.aok.de": [317], "www.ivorde.com": [8402], "theiconic.com.au": [16292], "www.devon.gov.uk": [4428], "telesis.wustl.edu": [17993], "techempower.com": [16009], "*.overcast.fm": [12161], "www.auscert.org.au": [1372], "help.channel5.com": [2998], "rapidbuyr.com": [13555], "*.vimg.net": [12272], "df-feeds.live.net": [9482], "a127-ess.nyc.gov": [11292], "www.kosimak.com": [8992], "art2po.com": [1220], "www.ourcommonplace.com": [12142], "www.api.picatcha.com": [12659], "www.511tactical.com": [169], "sigmaxi.org": [14779], "retailers.comixology.com": [3465], "*.thomascook.com": [16375], "nordkapp.net": [11478], "db.risk.io": [13901], "www.dedicatedgaming.com.au": [4291], "www.quantixtickets8.com": [13339], "simplifydigital.co.uk": [19593], "app-de5.resrc.it": [13599], "www.webtorrentsearch.com": [16228], "penza.rt.ru": [13469], "gotpantheon.com": [12373], "ext.err.ee": [5369], "cb.sailthru.com": [14243], "greyhole.net": [6946], "www.campusjob.com": [2784], "finance.google.*": [6837], "www.wdr.de": [18015], "www.voxility.com": [17855], "billing.axeso5.com": [1473], "healthymeals.nal.usda.gov": [17209], "*.rp-api.com": [13786], "hubzero.org": [7116], "oeticket.com": [11731], "www.rhein-neckar-loewen.de": [13859], "www.gismeteo.ua": [6670], "extensiondefender.com": [5521], "sbvimprover.com": [14084], "www.teamviewer.com": [16004], "appetize.io": [1115], "www.iajapan.org": [7671], "*.indabamusic.com": [8049], "npl.stanford.edu": [15383], "www.europe-consommateurs.eu": [19166], "www.varnish-software.com": [17569], "www.iaea.org": [7666], "wireclub.com": [18362], "www.healthcareers.nhs.uk": [10913], "www.riscos.com": [13432], "taylorandfrancis.com": [8118], "*.directory.live.com": [9483], "*.easyspace.com": [5036], "ovh.pt": [12173], "ok.de": [11626], "account.tectonic.com": [16055], "ovh.pl": [12173], "cartersoshkosh.ca": [2869], "docs.bleachbit.org": [19007], "youmiwang.tmall.com": [19684], "www.4kdownload.com": [151], "apidev.snip2code.com": [15036], "marketplace-used.com": [10019], "unitedsafcu.org": [17208], "buy.fineproxy.org": [5846], "stats.bedis.eu": [1745], "www.dacapoalfine-dd.de": [4099], "alchemyglobal.com": [784], "pixelexit.com": [12737], "majors.stanford.edu": [15383], "hkw.de": [7080], "ofono.org": [19451], "webfaction.com": [18063], "r.web.de": [18050], "ibm.biz": [19278], "open-pc.com": [19461, 19462], "www.webdesignmarketing.eu": [18100], "paypass.livingsocial.com": [9517], "www3.physics.ox.ac.uk": [17271], "bsideslv.org": [1545], "asirobots.com": [349], "www.ims-dm.com": [8237], "eeic.osu.edu": [11760], "no.citrix.com": [3178], "theguardian.com": [16288], "signout.live.com": [9483], "www.catlinseaviewsurvey.com": [2905], "mod.gnutls.org": [6763], "patexia.com": [12449], "ejournals.bc.edu": [1503], "democracy.tmbc.gov.uk": [15827], "ui.adsabs.harvard.edu": [7219], "www.maker.tv": [9912], "www.webpower.nl": [18041], "developer.buscape.com.br": [2452], "testreserveaspace.wustl.edu": [17993], "cs.stanford.edu": [15383], "greenparty.org": [6926], "www.ernaehrung-per-klick.de": [10196], "partner.googleadservices.com": [6843], "action.amnesty.org": [956], "www.cjs-cdkeys.com": [2620], "www.wtpx-telekom.com": [18479], "www.xpiconly.com": [18534], "www.bhodisoft.com": [1837], "www.world-airport-codes.com": [19764], "gse-it.stanford.edu": [15383], "www.ushmm.org": [17444], "emailmarketing.mastermindsdigital.com": [10059], "assets.intego.com": [8201], "agentportal.westernunion.com": [18216], "www.bdone.hu": [1719], "www.wza.us": [18493], "*.paysafecard.com": [12486], "cars.webjet.co.nz": [18124], "theconversation.com": [16262], "images.tchibo.de": [15985], "eon-uk.com": [4860], "webmail2.cesky-hosting.cz": [19051], "*.ahpra.gov.au": [1394], "az31609.vo.msecnd.net": [8850], "fsfeurope.org": [5602], "*.aleavia.com": [786], "www.cem.danskebank.dk": [4145], "*.ucsf.edu": [17303], "*.thefind.com": [16335], "*.ctep-ebp.com": [2682], "store.bgr.com": [1515], "*.core.cdn.streamfarm.net": [15518], "tpc.googlesyndication.com": [6843], "status.mail.ru": [9874], "api-cdn.embed.ly": [5197], "whitepages.com": [18257], "portal.ripe.net": [13895], "c3voc.de": [2501], "cloud1.arc.nasa.gov": [10869], "3sat.de": [135], "apply.berkeley.edu": [17240], "usrportage.de": [19722], "*.thomas-krenn.com": [16374], "www.technoratimedia.com": [16044], "kasperskypartners.com": [8810], "*.manticoretechnology.com": [9961], "publicaffairs.stanford.edu": [15383], "certible.com": [2967], "www.millenniumseating.com": [10397], "simplysecure.org": [14834], "itnotices.iu.edu": [8064], "myip.ms": [10806], "servicios.afip.gob.ar": [18945], "*.rnw.nl": [13439], "electradl.iplayer.bbc.co.uk": [1496], "www.crcpress.com": [8118], "healthcareers.nhs.uk": [10913], "staff.snelis.com": [15033], "earth.leeds.ac.uk": [17318], "divshare.com": [19120], "bremer.com": [2300], "intlprograms.aces.illinois.edu": [17258], "apps2.nlm.nih.gov": [11052], "my.gogetssl.com": [6780], "eng.rkn.gov.ru": [13913], "demo.sympa.org": [15720], "www.stockport.nhs.uk": [10913], "community.ustream.tv": [17451], "help.cir.ca": [3153], "coub.com": [3697], "www.burtcorp.com": [2448], "www.ofono.org": [19451], "developers.zomato.com": [18890], "www.cryptocon.org": [3857], "www.owncube.com": [12183], "symbolab.com": [15716], "www.theworkdept.com": [16327], "ddg.gg": [4792], "secure5.vend-o.com": [17605], "nzpug.org": [19449], "store.richarddawkins.net": [13871], "ala.org": [298], "*.crsspxl.com": [3813], "doc.tiki.org": [16444], "www.onlandscape.co.uk": [11817], "a1.nyt.com": [10997], "now.symassets.com": [15715], "itslearning.com": [8395], "www.rightnow.com": [13883], "www.bootsthai.com": [2216], "renrencaopan.com": [13770], "www.home.bt.com": [1551], "rescue.org": [19546], "www.marvel.com": [10037, 10038], "*.pbs.org": [12211], "www.nuevocloud.com": [19446], "www.wageworks.com": [17946], "*.freelancer.co.uk": [6176], "www.musicbrainz.org": [10717], "join.jolla.com": [8622], "www.kissmetrics.com": [8727], "pt-br.cloudflare.com": [3285], "www.velocitymicro.com": [17598], "tall.ut.ee": [17069], "eventbookingonline.com": [5440], "i.annihil.us": [1030], "selfservice.nottingham.ac.uk": [11528], "www.sitefinity.com": [14879], "fr.discussions.tomtom.com": [16540], "www.nzpug.org": [19449], "nuimagemedical.com": [11565], "www.trustico.com": [16794], "nagradnaigra.hofer.si": [299], "registratie.powned.tv": [12986], "openscholarship.wustl.edu": [17992, 17993], "sso-prod3.cisco.com": [3162], "www.avon.cz": [373], "skycure.com": [19599], "copiny.com": [3652], "piflc.xboxlive.com": [18551], "i1.visualstudiogallery.msdn.s-msft.com": [14058], "www.serversforhackers.com": [14618], "web.satd.uma.es": [17140], "journals.uchastings.edu": [16941], "release.thegreatcoursesplus.com": [16284], "profiles.google.com": [6834], "blog.comsigntrust.com": [3455], "www.redcoon.pt": [13686], "status.dyn.com": [4820], "belgorod.rt.ru": [13469], "adserver.adtech.de": [638], "twky.in": [16895], "www.thetechnoskeptic.com": [16317], "www.williamhill.com": [18315], "www.gemius.pl": [6517], "forrester.com": [6049], "emulex.com": [5226], "xlhost.com": [18518], "appleseedcdn.apple.com": [1120], "www.new-nations.net": [11295], "nplusonemag.com": [11537], "nruns.com": [10859], "s.360.cn": [106], "gloucestershire.police.uk": [6750], "www.petermolnar.eu": [12592], "image.tmdb.org": [15829], "entwickler.dhl.de": [4034], "smart.ciifad.cornell.edu": [3676], "www.westmercia.police.uk": [18207], "www.ekomi.*": [4921], "ws.cex.io": [2587], "hvpe.osu.edu": [11760], "aboutus.lego.com": [9068], "spriza.com": [15318], "securetransfer.portsmouth.gov.uk": [19508], "www.mktemp.org": [6897], "*.everydayhealth.com": [5453], "plugins.roundcube.net": [13986], "m.contact2.yandex.com.tr": [18649], "cdn.yldbt.com": [18680], "www.en.wiki.hidekisaito.com": [7393], "www.wbs-law.de": [18306], "europeancensorship.eu": [5427], "letmechoose.barclaycard.co.uk": [1664], "dellchat.ap.dell.com": [4335], "*.americanbar.org": [938], "gcentral.biz": [6292], "claws-mail.org": [3221], "lsblaw.birmingham.gov.uk": [19000], "www.gdata-software.com": [6293], "static.quidco.com": [13362], "www.subeta.net": [15557], "pariloto.net": [7732], "www.mysn.de": [10846], "forum.openoffice.org": [1084], "community.atechmedia.com": [368], "trailer.zdf.de": [19800], "serialist.net": [14595], "www.the42.ie": [19673], "i.aol.com": [321], "cccure.training": [2542, 2543], "fr.lastminute.com": [9165], "newzbin.com": [11351], "clubnix.fr": [3321], "www.voodooping.com": [17841], "pubdirecte.com": [13200], "cs.is": [1920], "www.rtek2000.com": [13471], "www.safelinking.net": [14233], "media-titanium.cursecdn.com": [3934], "www.wolframscience.com": [18400], "kaw.stb.s-msn.com": [14059], "w3roi.com": [1464], "cnrsformation.cnrs.fr": [6195], "yellowpages.apnaindia.com": [1096], "live.qq.com": [13285], "security-tracker.debian.org": [4275], "www.miun.se": [9751], "licensing.ofcom.org.uk": [11732], "*.cru.org": [3830], "irclogs.linaro.org": [9361], "404.foxnews.com.edgesuite.net": [11320], "nhw.se": [11474], "www.entadsl.com": [5289], "events.ucsc.edu": [17305], "au3.uicdn.net": [16958], "www.fidoalliance.org": [5572], "richrelevance.com": [13870], "beusergroup.co.uk": [16075], "yandex.ru": [18657], "iceo.mit.edu": [9747], "confidence.org.pl": [3569], "*.upr.edu": [17334], "mayoclinic.com": [10106], "www.gun.io": [7022], "www.unitedrepublic.org": [17217], "hs-esslingen.de": [7441], "blog.docsend.com": [4613], "dg.ens.fr": [4930], "*.online.nl": [11871], "www.kiraka.de": [18015], "anbg.gov.au": [1399], "forums.ubuntulinux.jp": [17105], "www.occupycorporatism.com": [11708], "npdgroup.com": [10947], "www.keelog.com": [8835], "www.kryptosfera.pl": [9021], "selinc.com": [14098], "d0wn.biz": [3996], "www.crowdin.com": [3825], "logobuilder.mspartner.microsoft.com": [10364], "www.pmf.gov": [19501], "secure.echomedia.cz": [19146], "carleton.edu": [2853], "*.lvoc.org": [9111], "et07.xhcdn.com": [18514], "www.bourgeois.me": [2249], "*.duke-energycenter.com": [4797], "webapp2.targusinfo.com": [15785], "*.blog.ajc.com": [293], "*.louhi.net": [9619], "accesspass.wifi.comcast.com": [3461], "design.staging.yammer.com": [18647], "btcjam.com": [1560], "www.moelleken.org": [10529], "transfer.emea.symantec.com": [15715], "secure.php.net": [12250], "accessgudid.nlm.nih.gov": [11052], "thebureauinvestigates.com": [16253], "www.youtube.bh": [18709], "moneta.trove.com": [16762], "thestanfordchallenge.stanford.edu": [15382], "www.pidg.in": [12671], "support.namecheap.com": [11019], "soapboxcms.com": [15054], "www.youtube.ba": [18709], "shop.amnesty.ch": [959], "www.iwmnetwork.com": [7872], "ftp.spatialbuzz.com": [15230], "nppa.org": [11054], "veredelungslexikon.htwk-leipzig.de": [7114], "cos.h-cdn.co": [7040], "www.racked.com": [13497], "www.cebit.de": [2924], "events.webmoney.ru": [18076], "*.nrao.edu": [10955], "login.yourkarma.com": [18728], "itu.dk": [7841], "darkmoney.cc": [4149], "vogel.de": [17818], "pt.witness.org": [18382], "adserver.iminent.com": [8005], "public.tableau.com": [15897], "herdict.org": [7325], "unileoben.ac.at": [17178], "cdn.xww.ro": [18605], "m.maps.yandex.by": [18648], "tso.co.uk": [15863], "cgsinc.axosoft.com": [1477], "markets.blockchain.info": [2090], "www.hover.com": [7566], "www.argus.ch": [1188], "app.overdrive.com": [12160], "supermileage.osu.edu": [11760], "victoriaforms.com": [19736], "voicefive.com": [17820], "content.minimundosonline.com": [10420], "nonstop.tms.pl": [19686], "exposure.co": [5515], "nbct02.baidupcs.com": [1620], "*.liv.ac.uk": [9479], "*.testcloud.io": [16145], "independent.co.uk": [8053], "www.aeapri.asso.ulaval.ca": [17229], "todo.ly": [16527], "www.nestlepurinacareers.com": [11169], "watchmaxx.com": [17997], "customercare.kansas.com": [8783], "www.torrentprivacy.com": [16582], "www.rankwise.net": [13549], "www.webhungary.hu": [18123], "elpueblo.com": [5138], "blogs.uni-erlangen.de": [17311], "wifipineapple.com": [18273], "tosback.org": [15848], "*.cartercenter.org": [2867], "northerntool.com": [11501], "accessguardian.com": [445], "resizes.over-blog.com": [12156], "redditgifts.com": [13693], "gwh.moderngov.co.uk": [19405], "educate.intel.com": [8209], "www.ficora.fi": [5771], "*.iberia.com": [7898], "*.inc.com": [8042], "roketfiyat.com": [13953], "www.history.ox.ac.uk": [12187], "code.ionicframework.com": [8340], "nuigalway.ie": [11064], "origin-www.nike.com": [11401], "c0.thejournal.ie": [16224], "my.ams-ix.net": [983], "t-shirtmojo.com": [15775], "detail.huobi.com": [7624], "po.st": [12834], "venda.cp.pt": [3744], "www.a2zinc.net": [223], "de.support.tomtom.com": [16540], "channelspro.ap.dell.com": [4335], "web202.tape.tv": [15956], "ws.engr.illinois.edu": [17258], "onjive.com": [11811], "locator.symantec.com": [15715], "www.business.ftc.gov": [5720], "*.transloadit.com": [4277], "nationalrail.co.uk": [11056], "idp.geoplatform.gov": [6538], "*.optimost.com": [12074], "www.aolo.tk": [3533], "static.globalweb.co.uk": [6736], "hush-hush.com": [7630], "*.accuvant.com": [468], "*.cunb.com": [2750], "xnet.cz": [18531], "srv2.shoutlet.com": [19588], "wusmproserv.wustl.edu": [17993], "my.getambassador.com": [6584], "blog.asana.com": [1242], "www.comp.polyu.edu.hk": [12891], "rte.ie": [13470], "w3.org": [17888], "www.carbonfund.org": [2830], "smartbrief.com": [14987], "istheinternetonfire.com": [19307], "cpm.hostanalytics.com": [7515], "*.uni-karlsruhe.de": [8798], "gradcenter.wustl.edu": [17993], "responsive.io": [13814], "ocharles.org.uk": [11614], "roundcube.net": [13986], "developer.washingtonpost.com": [17990], "filefactory.com": [5789], "www.kintera.com": [8912], "www.energy.ch": [19158], "*.bgpmon.com": [1514], "f.fontdeck.com": [5990], "multibit.org": [10695], "www.zeltser.com": [18813], "www.openresty.org": [12043], "*.ticketonline.de": [16417], "beta.xmpp.net": [18525], "dearbytes.com": [4263], "*.greenvehicleguide.gov.au": [6921], "kuai.alipay.com": [817], "pics.qxlstatic.no": [13297], "*.mecca.ca": [5119], "img-hx.newjobs.com": [11318], "packages.python.org": [13272], "siliconrepublic.com": [14790], "www.blackarch.org": [2036], "*.datacloudmail.ru": [4200], "www.quickline.com": [19530], "dev.vpsfree.cz": [19743], "www.cygwin.com": [3978], "impo.ch": [3645], "bano.openstreetmap.fr": [12045], "ssl.enfield.gov.uk": [5258], "deimos.fr": [4318], "www.j-schmitz.net": [8408], "bitmaintech.com": [2004], "s-omniture.yell.com": [19790], "www.cathaypacifichost.com": [2904], "securepurchaseserver.com": [14510], "cpaste.org": [19086], "www.sustainablefuture.cornell.edu": [3676], "*.liftconference.com": [9335], "fantasygames.telegraph.co.uk": [16081], "www.matkahuolto.info": [10074], "applepartsstore.com": [1123], "i.yimg.jp": [18685], "img10.360buyimg.com": [112], "coderwall.com": [3377], "planet.collabora.com": [3419], "www.sogou.com": [19606], "nlbb.osu.edu": [11760], "kproxy.com": [8746], "exe.icq.com": [7690], "media.vocativ.com": [17811], "s01.esupport.sony.com": [15144], "skygfx.live.com": [9483], "i.creativecommons.org": [3778], "www3.basildon.gov.uk": [18984], "i0.poll.fm": [12881], "images.scanalert.com": [14331], "zerodium.com": [18761], "www.elementaryos.org": [5159], "karwansaraypublishers.com": [8801], "ph.redhat.com": [13675], "hak5.org": [7167, 7168], "www.prozeny.cz": [13115], "www.coop.ch": [3644], "nihongo.istockphoto.com": [19309], "scienceandtechnology.jpl.nasa.gov": [10869], "office.microsoft.com": [10364], "*.google.com": [6835, 6845, 6848], "courseevalum.umd.edu": [17263], "clientcenter.thomasnet.com": [16376], "wiki.qt.io": [13315], "www.litecoinlocal.net": [9465], "ldn.linuxfoundation.org": [9412], "www.abiggersociety.com": [384], "www.ceneo.pl": [2936], "www.mysql.it": [10780], "mercurynews.com": [10280], "www.roeck-us.net": [13945], "www.baremetrics.io": [1667], "cdn.sourcefednews.com": [15172], "status-ksplice.oracle.com": [12082], "static.songcoleta.com": [15134], "control.akamai.com": [761], "*.getoutofdebt.org": [6599], "www.sidibouras.com": [14766], "m.bnz.co.nz": [1534], "status.npmjs.org": [11540], "support.xbox.com": [18550], "www.sportsauthority.com": [15291], "nav.mageia.org": [9847], "*.londonist.com": [9584], "davpack.co.uk": [4234], "bestlawyers.com": [1802], "age.lenta.ru": [19356], "bluekrypt.be": [2134], "edwardsnowden.com": [5103], "profitbricks.de": [13128], "www.jonasboserup.dk": [19323], "arabic.kaspersky.com": [8806], "www.niskanencenter.org": [11423], "*.systemcenteradviser.com": [15760], "www.lrz.de": [9238], "jobfinder.dk": [8596], "codefisher.org": [3367], "e10.xhamsterpremiumpass.com": [18516], "exchange.coinbase.com": [3402], "slickdeals.net": [14958], "udemy.com": [17111], "freepracticetests.org": [6156], "www.notebookitalia.it": [11522], "subscribenww.com": [11267], "crazybump.com": [3765], "quora.com": [13375], "beta.disk.yandex.com": [18651], "travisf.net": [16702], "src.responsive.io": [13814], "www.superfast-openreach.co.uk": [15629], "co.norton.com": [11505], "*.ntop.org": [11556], "media.linuxdistrocommunity.com": [9421], "us.support.tomtom.com": [16540], "carrierbagcharge.wales.gov.uk": [17957], "join.exgf.com": [13039], "*.dreamwidth.org": [4756], "www.user-agents.org": [17429], "medallion.kachingle.com": [8764], "laaclu.org": [250], "tomorrow-focus-media.de": [16542], "static3.uk.businessinsider.com": [2454], "www.technocrat.net": [16040], "blu.berkeley.edu": [17240], "static3.readyflowers.com": [13620], "www.tapirex.com": [12351], "selfservice.eastlothian.gov.uk": [5014], "www9.handelsbanken.fi": [7186], "anfrage.os-cillation.de": [12115], "102.alibaba.com": [809], "www.lankylife.com": [9150], "news.microsoft.com": [10364], "www.vitalads.com": [17787], "forum.avira.com": [1449], "woopra.com": [18423], "tls.li": [16511], "online.cheshireeast.gov.uk": [3066], "discussions.nokia.co.uk": [9468], "www.*.unibe.ch": [17239], "www.rcking.eu": [13405], "windows.github.com": [6680], "www.mylivechat.com": [10810], "glasses.com": [6702], "www.csail.mit.edu": [9749], "www.networking4all.com": [11274], "login.adaramedia.com": [559], "smart-mail.de": [14984], "*.baifendian.com": [1759], "www.webhost.biz": [18120], "cdn.samssoftware.com.au": [14262], "digitalfreedom.io": [4506], "podbean.com": [12842], "*.stardock.net": [15401], "wiki.secondlife.com": [14462], "www.devonjobs.gov.uk": [19115], "lapatilla.com": [9115], "en.wiki.hidekisaito.com": [7393], "www.twistlock.com": [19707], "prefetch-maps.yandex.com": [18651], "arteradio.com": [18966], "www.rlrose.co.uk": [13436], "s.pony.fm": [12897], "www.digitalfreedom.io": [4506], "www12.qth.com": [13291], "www.who.int": [17908], "parago.ehosts.net": [5120], "www.pornworms.com": [12928], "media.3dsupply.de": [133], "www.journalxtra.com": [8644], "uk.norton.com": [11505], "wald.intevation.org": [17955], "xvideosx.tv": [18537], "content.shaklee.com": [14656], "store.counterpunch.org": [3706], "media.zipcar.com": [18872], "account.microsoft.com": [10364], "ludialudom.sk": [9652], "www.virurl.com": [17489], "accounts.flipboard.com": [5925], "www.ageuk.org.uk": [18946], "iframed.cqrcengage.com": [2654], "myaccount.mutualofamerica.com": [10733], "www.halcyon.sh": [7172], "img.alicdn.com": [805], "www.pen.org": [12238], "ovirt.org": [11690], "www.payeer.com": [12474], "www.wetlandpark.gov.hk": [19253], "static.3dsupply.de": [133], "hipservice.live.com": [9483], "cyberaide.ca": [3976], "tracker.coreboot.org": [3669], "thepermitstore.com": [16226], "*.italian-country-cottages.co.uk": [18490], "api.kinja.com": [8906], "sinonptik-cdn1.un.net.ua": [14852], "www.cbpweb.nl": [4813], "ussco.com": [17218], "tr.netsalesnetwork.com": [19431], "www.stud.uni-stuttgart.de": [17281], "*.givex.com": [6689], "www.uline.com": [17128], "cryptome.thecthulhu.com": [16334], "mycard.ukash.com": [17122], "provost.umd.edu": [17263], "*.kobobooks.es": [8949], "parse.com": [12412], "web.weixin.qq.com": [13285], "activities.sugarlabs.org": [15581], "arne.schuldt.info": [1207], "forums.epicgames.com": [5320], "eregulations.ct.gov": [2680], "www.condenaststore.com": [3557], "www.gexpro.com": [6622], "lj.rossia.org": [9522], "www.fullcirclestudies.com": [6248], "transparencytoolkit.org": [16680], "dshield.org": [4084], "hastings.gov.uk": [7234], "www.xmpp.ru.net": [18527], "business.upc.ie": [17001], "developer.blackberry.com": [2050], "uss.emetriq.de": [18585], "*.rsshog.com": [14008], "zoink.it": [5004], "www.onehealthtalk.org": [11848], "beacon.jumptime.com": [8673], "www.cathaypacific-campaign.com": [2904], "*.bethere.co.uk": [16076], "www.johoobuy.com": [8614], "promo.vedomosti.ru": [19730], "respekt.cz": [19548], "gentoo-overlays.zugaina.org": [18919], "www.timtaubert.de": [16452], "gayromeo.com": [12764], "filter.impactradius.com": [8011], "www.uic.edu": [17231], "askapatient.com": [1265], "*.ausgovboards.gov.au": [1393], "pamconsult.com": [12352], "community.teespring.com": [16060], "origin-www.marketplace.org": [10017], "lists.01.org": [1], "support.nanorep.com": [11032], "parking.tmbc.gov.uk": [15827], "www.bitvps.com": [1960], "www.remotelyanywhere.com": [13762], "www.steg-electronics.ch": [14189], "login-p2.constantcontact.com": [3592], "t1beta.mediamath.com": [10157], "phpmyadmin.online.net": [11870], "leloop.org": [9191], "opensrs.net": [11969], "support.theplatform.com": [16230], "helpx.adobe.com": [615], "seagm.com": [14095], "musicweek.com": [10716], "seflorida.bbb.org": [1821], "technomedia.com": [16043], "netbsd.org": [11184], "www.infowar.com": [8105], "jobs.enfield.gov.uk": [5258], "crm.it-agenten.com": [7838], "queminova.catracalivre.com.br": [2908], "lawblog.de": [9179], "rpc1.mail.aol.com": [321], "dspace.mit.edu": [9749], "my.balabit.com": [1624], "www.armscontrol.org": [18963], "urlparser.com": [17015], "register.fca.org.uk": [5557], "*.redbull.de": [13666], "petersen.mysql.cesky-hosting.cz": [19051], "data.cnbc.com": [2631], "static-cdn.fullcontact.com": [6250], "site.yandex.com.tr": [18649], "diffchecker.com": [4461], "static.sl.lumosity.com": [9668], "tradepub.com": [16639, 16645], "thl.engineering.osu.edu": [11760], "res.freebase.com": [6157], "trilogygolfclub.com": [8431], "test.channel4.com": [3003], "www.womenonweb.org": [18407], "start.advent.com": [654], "ssl-stat.ameba.jp": [926], "*.kaimi.ru": [19332], "voices.com": [17823], "download.cloud.secondlife.com": [14462], "www.hosted-oswa.org": [7521], "chi.taobao.com": [15952], "www.phpmagazin.de": [12252], "video.flixster.com": [5933], "www.romab.com": [13963], "legacy.macfound.org": [9818], "www.linux-mips.org": [9413], "extranet.bls.ch": [1526], "moerdijk.nl": [11132], "ep2.vzp.cz": [17524], "www.timeshighereducation.com": [16464], "www.ethics.uillinois.edu": [16960], "avatar.fsl.cs.sunysb.edu": [15480], "forgefields.com": [6036], "api.sklik.cz": [14915], "www.zuno.eu": [18768], "mae-hpc.osu.edu": [11760], "*.compari.ro": [3512], "revv.rubiconproject.com": [14014], "moderation.lego.com": [9068], "plymouth.ac.uk": [12833], "*.zohostatic.com": [18887], "ssl1.gmti.com": [6453], "wiki.gnupg.org": [6761], "pfizerpro.com": [12612], "www.mjanja.ch": [10473], "siwgallery.stanford.edu": [15383], "lockbox.com": [9543], "*.unanimis.co.uk": [17147], "arisebitcoin.com": [1193], "www.tomtom.com": [16540], "*.religionnews.com": [13755], "min.us": [10436], "stock.walmart.com": [17964], "www.torrentz.to": [16590], "opensignal.com": [11974], "loctudy.fr": [9546], "tracking.thehut.net": [16223], "telerik.com": [16094], "seconfig.sytes.net": [14465], "www.cineble.com": [3144], "french-country-cottages.co.uk": [18490], "www.wz2100.net": [17987], "www.tchibo.de": [15985], "circulationportal.sacbee.com": [14218], "www.fanoe.dk": [5656], "images.securycast.com": [14538], "culturesforhealth.com": [3917], "uk.godaddy.com": [6773], "pspudb.com": [5224], "leadershipcircle.stanford.edu": [15383], "www.mir.wustl.edu": [17993], "pages.wustl.edu": [17993], "*.shef.ac.uk": [17339], "www.t37.net": [15779], "tasb.org": [16150], "www.indacoin.com": [8050], "webcampus.wilmu.edu": [18320], "aboutus.godaddy.net": [6772], "*.pubdirecte.com": [13200], "license.steeleye.com": [15459], "corelan.be": [3675], "cs.ucsd.edu": [16939], "static.somethingawful.com": [15130], "www.givekidstheworld.org": [6686], "www.duckdns.org": [4793], "uploads.va.gov": [17019], "wsjpro.com": [11320], "www.aits.uillinois.edu": [16960], "livesales.snelis.com": [15033], "www.tmdn.org": [15828], "ar.tns-counter.ru": [16519], "halley.ens.fr": [4930], "protecciondelconsumidor.gov": [11078], "tacticaltech.org": [15901], "kat.cr": [8879], "devimperium.com": [4425], "*.spreadshirt.it": [15300], "searchlight.sourcedna.com": [15171], "kinsta.com": [8911], "www.bypassingcensorshipinthe.uk": [19032], "svenskakyrkan.se": [15671], "ca.redhat.com": [13675], "ed.gov": [4889], "www.administrator.de": [18939], "www.2ndvote.com": [95], "book.douban.com": [4707], "www.getpocket.com": [6579], "www.digitalpoint.com": [4498], "careers.annsummers.com": [1028], "www.sciamdigital.com": [14384], "dyn.emetriq.de": [18585], "www.canon.si": [2809], "www.actionsalvage.com": [490], "www.eth-0.nl": [5376], "www.canon.se": [2809], "*.chaton.com": [3030], "kuvat2.huuto.net": [19267], "blacksuitit.com": [2040], "www.cjs.leeds.ac.uk": [17318], "s.xbox.com": [18550], "www.nyaa.eu": [11595], "hr.uillinois.edu": [16960], "webmail.uu.se": [17074], "jaan.ut.ee": [17069], "www.businessinsider.com": [2454], "unishop.uow.edu.au": [17350], "www.emunewz.net": [5224], "store.bistudio.com": [2179], "epa-sdcc.ornl.gov": [11693], "neuronline.sfn.org": [15077], "socialsafety.org": [15059], "advq.yandex.kz": [18652], "www.reco.se": [13646], "meet.jitsi.org": [8583], "www.gr.ch": [19648], "biovendor.cz": [1902], "courtneyluv.com": [2132], "www.avoinyliopisto.fi": [18975], "www.airbnb.com.*": [749], "img.new.livestream.com": [9514], "emas.portsmouth.gov.uk": [19508], "securecoding.cert.org": [2583], "users.soe.ucsc.edu": [17305], "sunriseprintonline.com": [15605], "www.mimsonline.com": [9743], "www.alphabankcards.gr": [6911], "wdm.org.uk": [18454], "app.chartmogul.com": [3016], "support.subgraph.com": [15558], "support.paper.li": [12379], "*.xx.fbcdn.net": [5700], "www.utsystem.edu": [17284], "rootbsd.net": [13967], "www.norwalkreflector.com": [11507], "www.blog.edoeb.admin.ch": [19648], "libssh.org": [9320], "www.gibraltar.gov.gi": [6637], "skhynix.com": [14129], "notacon.org": [11520], "autodiscover.yandex.kz": [18652], "bitvc.com": [1949], "abi.org.uk": [242], "ilive.bury.gov.uk": [19027], "help.issuu.com": [8378], "rxs1.answcdn.com": [1059], "engagesciences.com": [5259], "www.thefoundry.co.uk": [16278], "server3.web-stat.com": [18047], "autolinkmaker.itunes.apple.com": [1120], "www.mouseflow.de": [10624], "pics.mobygames.com": [10505], "askollie.warrington.gov.uk": [17984], "cz.icecat.biz": [7914], "www.spot.im": [15293], "www.globaltestsupply.com": [6719], "nodeserv.com": [11450], "m.travelrepublic.co.uk": [16695], "www.linux.cn": [9402], "secure.funio.com": [6265], "alternate-b2b.nl": [880], "www.licensing.biz": [8226], "admin.artsy.net": [1235], "www.slanted.de": [14943], "torchbox.com": [16572], "forums.geforce.com": [6482], "bountysource.com": [2248], "e-grants.ed.gov": [4889], "threatmatrix.com": [19680], "gfx7.hotmail.com": [7559], "bvg.de": [1582], "sso.talktalk.co.uk": [15929], "parkinggw.calderdale.gov.uk": [2735], "www.bitcoinstore.com": [1973], "www.shopmanhattanite.com": [9954], "peer2peer.giffgaff.com": [19217], "*.spriza.com": [15318], "m.google.co.*": [6837], "yourchoiceyourhome.org.uk": [19794], "*.joyentcloud.com": [8652], "myheritage.fi": [10834], "www.encryptr.org": [5239], "merchants.gamersfirst.com": [6435], "services.justaguy.pw": [8696], "modules.fd.ulaval.ca": [17229], "www.gofundme.com": [6779], "autodiscover.its.leeds.ac.uk": [17318], "www.plausible.coop": [12791], "www.cloudns.net": [3276], "bugs.centos.org": [2942], "myheritage.fr": [10834], "support.filefactory.com": [5789], "my.thechive.com": [16258], "alternatifbilisim.org": [881], "library.uwb.edu": [17078], "*.woodgreenshop.org.uk": [18419], "botfrei.de": [2241], "myaccount.laterooms.com": [19348], "sampa.cs.washington.edu": [17291], "www.aspirationtech.org": [1273], "www.cardiffnetwork.cf.ac.uk": [2835], "styles-uat.freescale.com": [6183], "mwellner.de": [10737], "www.audioboom.com": [18970], "klub.com.pl": [8935], "safeprofile.f-secure.com": [5541], "www.photoblab.com": [12639], "pantherexpress.net": [2560], "mileiq.com": [10392], "unique-vintage.com": [17195], "espionageapp.com": [5362], "files.itunes.apple.com": [1120], "www.finlex.fi": [19181], "www.wearewizards.io": [18027], "www.aesnet.org": [930], "a15.ysicdo002.com": [18708], "www.suitabletech.com": [15585], "tekgoblinmedia.com": [16064], "channel9.msdn.com": [9788], "smap.jpl.nasa.gov": [10869], "shopwiki.com": [14721], "x10hosting.com": [18498], "healthiertogethergm.nhs.uk": [10913], "www.arlen.io": [1200], "berlinonline.de": [1793], "*.lacaixa.es": [9114], "efa.org.au": [5152], "*.networksolutions.com": [11263], "try-smart.jd.com": [8423], "js.kattare.com": [8818], "www.tiki.org": [16444], "ejobs.umd.edu": [17263], "hostoople.com": [7539, 7540], "edc2.healthtap.com": [7258], "zsl.org": [18900], "www.freebsdfoundation.org": [6122], "citizensadvice.citizensadvice.org.uk": [19062], "linguistlist.org": [9081], "docreader.readspeaker.com": [13610], "www.butterflynetinc.com": [2464], "p3.zdassets.com": [18806], "web.north-herts.gov.uk": [11493], "www.longdate.pl": [9588], "www.brabant.nl": [11132], "ds.vutbr.cz": [17522], "zhihu-web-analytics.zhihu.com": [18856], "www.iop.org": [8195], "food.gov.uk": [19187], "shacknews.com": [14652], "overleaf.com": [12167], "commerce.guidestar.org": [7007], "cloudstorage.iu.edu": [8064], "www.secure-os.org": [14480], "releases.linaro.org": [9361], "www.voa.va.gov": [17019], "docs.database.com": [4194], "*.channelx.biz": [3005], "v3.co.uk": [17464], "math.uchicago.edu": [17246], "theeca.com": [5295], "*.chinapaymentservices.com": [3082], "fml.osu.edu": [11760], "cnnmon.ie": [1920], "netstorage.metrolyrics.com": [10322], "shop.icracked.com": [7702], "gradwellcloud.com": [6884], "passport.baidu.com": [1619], "static.soup.io": [15166], "jabber.ru": [8477], "sitelabs.co.uk": [19594], "yamal.rt.ru": [13469], "enel.dict.cc": [4455], "univie.ac.at": [17353], "www.selinc.com": [14098], "*.alaska.gov": [15419], "*.hr.columbia.edu": [3448], "bgentry.io": [1835], "www.tinybytes.me": [16479], "*.uu.nl": [17073], "adadvisor.net": [15785], "kenengba.com": [8846], "ax.phobos.apple.com.edgesuite.net": [1121], "answers.argos.co.uk": [1185], "www.looppay.com": [9605], "www.minimundosonline.com": [10420], "www.whistleout.co.uk": [18248], "www.swarmapp.com": [19646], "daw.apple.com": [1120], "4kdownload.com": [151], "mind.org.uk": [10407], "www.regress.admin.ch": [19648], "tt.1und1.de": [68], "*.hostmonster-cdn.com": [7537], "support.mastermindsdigital.com": [10059], "opennicproject.org": [19466], "minted.com": [10434], "hakasiya.rt.ru": [13469], "perishablepress.com": [12574], "www.cryptostorm.org": [3891], "*.canadapost.ca": [2793], "briandunning.com": [2312], "gigantic.com": [6651], "www.chris.lu": [3102], "www.stupidcensorship.com": [15548], "store3.esellerate.net": [5357], "www.dmachoice.org": [4044], "nrkbeta.no": [10957], "ru.gamigo.com": [6445], "www.anonfiles.com": [1041], "www.lth.se": [9104], "nei.nih.gov": [11052], "ws.edu.isoc.org": [7829], "fullslate.com": [6251], "tppro.oag.com": [11604], "easynews.com": [5027], "*.bangor.ac.uk": [1641], "blog.octopart.com": [11714], "winhistory-forum.net": [18356], "www.meinvz.net": [10237], "www.westorangehistory.com": [18210], "hr.uic.edu": [17231], "*.finna.fi": [5851], "stylist.co.uk": [15552], "www.verivox.de": [17625], "passport.taobao.com": [15952], "ebook.money.pl": [10547], "lot.sample.yahoo.co.jp": [18640], "vanillatest.geogebra.org": [6537], "www.samharris.org": [14259], "epson.ca": [5330], "www.pgbrandsampler.ca": [13121], "myapp.itunes.apple.com": [1120], "accounts.google.com.*": [6837], "www.pamfax.biz": [12352], "thingsquare.com": [16359], "www.amerika21.de": [952], "pkimber.net": [12305], "www.retriever-info.com": [13825, 13826], "mediamir.medialand.ru": [10172], "aralbalkan.com": [1150], "nvzhuang.taobao.com": [15952], "media.codeweavers.com": [3353], "fb-cdn.ghsrv.com": [13622], "litmus.com": [9471], "atxpo.stanford.edu": [15383], "corporate.fitbit.com": [5887], "www.connect.gov": [3579], "choon.net": [3098], "carousell.com": [2860], "www-nds.iaea.org": [7666], "www.extensiblewebmanifesto.org": [5520], "www.snowmagazineonline.com": [15042], "gymglish.co.uk": [7037, 7038], "accounts.songkick.com": [19609], "beatport.com": [1737], "forms.bostonfed.org": [19013], "2012.asiabsdcon.org": [1258], "www.webbyawards.com": [18110], "beta.falkirk.gov.uk": [5641], "www.cts-strasbourg.eu": [3905], "www.imediaconnection.com": [7761], "www.romab.se": [13963], "*.viewcentral.com": [17709], "southparkstudios-intl.mtvnimages.com": [9803], "miles-and-more-kreditkarte.com": [10394], "www.terasic.com.tw": [15960], "indiegogo.com": [8072], "manhattan.ikea.com": [7959], "www.zidisha.org": [18857], "*.uni-tuebingen.de": [17346], "dtu.dk": [16031], "sports.williamhill.com": [18315], "www.cpaste.org": [19086], "echothrust.com": [5048], "www.hplusdigitalseries.com": [7092], "*.directrev.com": [4534], "www.primabanka.sk": [13057], "www.nebula.com": [11127], "myaccount.cheshireeast.gov.uk": [3067], "mein.1und1.de": [68], "wdc-api04.mollom.com": [10537], "eng.staging.yammer.com": [18647], "nowness.com": [11534], "entertainment.ie": [5296], "www.amsl.com": [311], "www.getcashboard.com": [15559], "yourpshome.net": [18726], "equinix-direct.equinix.com": [5334], "www.techreport.com": [16050], "www.imgrind.com": [7758], "www.savethekoala.com": [1381], "assets.motherboard.tv": [10607], "cic.ch": [1654], "fr.aldi.lu": [299], "*.geotrust.com": [6549], "i.i.ua": [7654], "interhyp.de": [8250], "www.whatsmychaincert.com": [18235], "press.malwarebytes.org": [9929], "i1.rgstatic.net": [13422], "apps.opera.com": [12050], "webmail.bananian.org": [1636], "robert.sesek.com": [14630], "www.quantixtickets.com": [13339], "s1.uicdn.net": [16958], "secure.xhamster.com": [18515], "clubcompy.com": [3320], "zopa.com": [18907], "store.sonyentertainmentnetwork.com": [15149], "bitso.com": [2018], "www4dev.uwm.edu": [17294], "www.productsandservices.bt.com": [1551], "eao.rt.ru": [13469], "www.securedcontent.net": [14501], "go.pol.bbelements.com": [1713], "roem.ru": [13946], "www.soobest.com": [15152], "myexpenses.nytco.com": [10998], "wifilib.fr": [18285], "moodle-ext.thm.de": [15811], "images.online.microfocus.com": [10348], "www.redfern.me": [13695], "ads.glispa.com": [6710], "tinypng.com": [16483], "rec-registry.gov.au": [13412], "info.securityinabox.org": [14533], "c5.rgstatic.net": [13422], "photopay.net": [12641], "www.wireclub.com": [18362], "www.fybsg.com": [5612], "wiki.rz.htw-berlin.de": [7112], "leadpages.net": [9195], "uptonhomehardware.co.uk": [17402], "*.gamestop.com": [6427], "mc1.maps.live.com": [9483], "s1.pir.fm": [12725], "*.clickberry.tv": [3257], "cryptocloud.com": [3871], "multiply.crwdcntrl.net": [9613], "www3.olx.com.br": [11632], "es-es.facebook.mx": [5623], "sched.org": [14348], "cqrollcall.com": [2655], "login.webgo.de": [18064], "euroforum.com": [5413], "www.vpsboard.com": [17863], "static.xmarks.com": [18579], "websitealive8.com": [18149], "tally.upsideout.com": [17398], "*.cleverbridge.com": [3240], "embed.polskieradio.pl": [12887], "intranet.cnrs.fr": [6195], "www.ignum.cz": [7731], "wirral.firmstep.com": [19183], "webmail4.hosts.co.uk": [7545], "www.mindtouch.us": [10410], "codeigniter.com": [19070], "socialboxusa.com": [15057], "www.glassesusa.com": [6703], "www.ordermychecks.com": [7207], "widget.weibo.com": [18186], "waag.org": [17940], "womenonwaves.org": [18408], "acpa.ca": [745], "www.peacecenter.org": [12503], "www.idrbiz.com": [9743], "codepicnic.com": [3351], "blog.montyprogram.com": [10569], "*.kirjoitusalusta.fi": [8915], "banners.store.apple.com": [1120], "www.memorydealers.com": [10252], "support.unity3d.com": [17220], "www.tofinosecurity.com": [16528], "*.filmthreat.com": [5805], "hubic.com": [7597], "mojandroid.sk": [10535], "download.documentfoundation.org": [16221], "www.hsph.harvard.edu": [7219], "intranet.tue.nl": [15874], "password-hashing.net": [12432], "*.dvidshub.net": [4089], "edgesnapbacks.com": [5080], "rewrite.ca.com": [2511], "www.purevpn.com": [13240], "update.microsoft.com": [10363], "*.sqsp.com": [15328], "qub.ac.uk": [13348], "fuwu.jd.com": [8422], "ntrs.larc.nasa.gov": [17026], "dentalxchange.com": [4894], "ghash.io": [6329], "api.5min.com": [178], "www.tinyteenpass.com": [16490], "news.google.com.*": [6837], "*.wellsfargo.com": [18196], "australia-unsc.gov.au": [1380], "gamingonlinux.com": [6447], "www.kralenstart.nl": [9005], "forums.alfresco.com": [802], "intechnology.co.uk": [8035], "mysloan.mit.edu": [9749], "fusiontools.clickmotive.com": [3248], "audience-discovery.com": [1352], "www.zutphen.nl": [11132], "rascal999.co.uk": [19535], "bugzilla.freedesktop.org": [6126], "gift.stanford.edu": [15383], "www.clear-code.com": [3227], "www.a2hosting.com": [222], "mm.sitecompass.com": [14864], "mobileapps.lowes.com": [9636], "word.camera": [19763], "www.stat.onestat.com": [11844], "bridge.simplefin.org": [14821], "edit.bulkorder.ftc.gov": [5720], "fh-kiel.de": [17298], "www.careers.dyson.com": [4837], "hsbc.*": [7098], "www.fr.tchibo.ch": [15985], "iais.fraunhofer.de": [6112], "domaining.com": [4663], "secure.shared.live.com": [9483], "www.iem.thm.de": [15811], "static.playmates.com": [12808], "cdn.comparethemarket.com": [3511], "readability.com": [13615], "iphone-api.fitbit.com": [5887], "www.alternc.org": [878], "www.theblueskylife.com": [16249], "ripe69.ripe.net": [13895], "modernrepo.com": [10523], "directory.fsf.org": [5600], "*.ufies.org": [16950], "www3.havant.gov.uk": [19237], "bugsy.grid.aau.dk": [389], "developer.tizen.org": [16506], "cdn4.thr.com": [15813], "bouncebidder.com": [2244], "jedec.org": [19319], "safebilling.com": [14230], "thenation.com": [16200], "pgl.co.uk": [7452], "www-2.danskebank.dk": [4145], "forms.fbi.gov": [5708], "securityadvisories.paloaltonetworks.com": [12349], "einstein.phys.uwm.edu": [17294], "videos.mtvnn.com": [17661], "www.mxtoolbox.com": [9812], "*.zonza.tv": [18763], "www.ca-pca.fr": [2507], "tomsofmainestore.com": [16544], "mirrors.xmission.com": [18530], "*.offerscdn.net": [11740], "advertising.yandex.com.tr": [18649], "music.xbox.com": [18550], "piwik.vates.fr": [17574], "id.cloudflare.com": [3285], "leads.infousa.com": [8110], "i0.cz": [7655], "appstatus.osu.edu": [11760], "www.carphonewarehouse.com": [2861], "export.yandex.kz": [18652], "fjellner.eu": [3113], "www.challenge25.go.jp": [8515], "*.stcllctrs.com": [9733], "www.lesterchan.net": [9262], "mobile.services.lovtidende.dk": [13830], "scontent-b.cdninstagram.com": [2558], "demo.whappodo.com": [18227], "www.canadianwebhosting.com": [2795], "files.*.geblogs.com": [6522], "ncjrs.gov": [10883], "account.dexmedia.com": [4434], "podjetje.hofer.si": [299], "tvline.com": [15884], "huan.jd.com": [8423], "*.app.com": [1244], "projects.blender.org": [2067], "squirrel-webmail.surftown.com": [15335], "mahachkala.rt.ru": [13469], "www.adspeed.net": [541], "*.wepay.com": [18022], "aviris.nkl.fi": [1450], "ptrace.fefe.de": [5742], "serval.lib.vutbr.cz": [17522], "universe2.us": [17228], "www.navigantresearch.com": [11114], "old.majordomo.ru": [9902], "www.broadland.gov.uk": [2357], "www.herbal-nutrition2.net": [7323], "*.good.net": [6826], "*.cfspx.digitalriver.com": [4483], "www.youtube.co.za": [18709], "www.imn.htwk-leipzig.de": [7114], "geekify.com.au": [6504], "qupzilla.com": [13380], "catalogue.ic.nhs.uk": [10913], "csmm.osu.edu": [11760], "track.securedvisit.com": [14499], "btbsecure.business.bt.com": [1551], "vaultproject.io": [17576], "bytejail.com": [2488], "uat.splash.riverbed.com": [13907], "*.acquia.com": [478], "jobs.flowingdata.com": [5946], "pro.marinsoftware.com": [9997], "*.sears.com": [14445], "cdn.www.hbo.com": [19240], "disc.yandex.com.tr": [18649], "astore.amazon.com": [911], "www.fressnapf.de": [6207], "www.wavecon.de": [18008], "oldpiratebay.org": [11780], "forums.halowaypoint.com": [7176], "dance.smugmug.com": [15014], "umag.ca": [17080], "managedservices.otenet.gr": [12132], "www.bitnik.org": [2012], "secure.insightexpressai.com": [8172], "api.mixbit.com": [10464], "login.uic.edu": [17231], "science.williams.edu": [18316], "delivery.w00tads.com": [17886], "doc.see.leeds.ac.uk": [17318], "monmouthshire.gov.uk": [10560], "go.utah.edu": [17288], "xsolla.com": [18593], "secure.johnstonpress.co.uk": [8613], "mozest.org": [10649], "freeutopia.org": [6154], "gimmickwear.com": [6662], "www.tv.yandex.com.ua": [18650], "www.twinings.co.uk": [16880], "codebeamer.com": [3348], "ppdb.hslu.ch": [7583], "app-us6.resrc.it": [13599], "help.redbubble.com": [13660], "e-portfolio.plymouth.ac.uk": [12833], "elearning.hslu.ch": [7583], "www.connectpros.com": [13018], "clkrev.com": [3272], "torrentz.eu": [16591], "mail.carezone.cz": [2849], "brabysads.com": [2263], "support.1btcxe.com": [42], "go.padsdel.com": [12326], "videoapi.my.mail.ru": [9874], "pcp.cancer.gov": [2805], "academy.frieslandcampina.com": [2783], "mcb.net": [9966], "secure.hospital.uic.edu": [17231], "zaption.com": [18793], "judge.me": [8661], "tableschecking.education.gov.uk": [19149], "www.google.*": [6838, 6840, 6845, 6848], "www.drm.info": [4080], "couchbase.com": [3699], "backpackerslucerne.ch": [1601], "interact.f5.com": [5546], "www.rawstudio.org": [13583], "eweb.acs.org": [929], "images.shaklee.com": [14656], "cdn.petri.com": [12597], "gumroad.com": [7020], "www.aquent.us": [1144], "www-stats.kaltura.com": [8775], "www.m-w.co.uk": [9689], "schneider-electric.com": [14357], "www.css-tricks.com": [2678], "echomedia.cz": [19146], "xmlsearch.yandex.by": [18648], "fsa.usda.gov": [17209], "vox.com": [17851], "project-lbs.web.cern.ch": [2575], "media.techonline.com": [16013], "www.oneserver.cz": [11645], "bitcalm.com": [1927], "images.dealnews.com": [4261], "www.payu.ru": [12490], "accessprivacy.com": [451], "www.tuleap.net": [16822], "firedrive.com": [5858], "outlet.lenovo.com": [9251], "cdn1.spiegel.de": [15272], "www.desmume.org": [4243], "jobs.pcworld.com": [14829], "www.buzzfocus.com": [2474], "3questionsgetthegirl.com": [17719], "archomedia.com": [1170], "simplegiver.com": [10521], "virtkick.io": [17744], "*.smjg.org": [15010], "mail.tdc.dk": [15796], "hbr.org": [7048], "www.e-ksf.org": [4841], "cfs1.gcaptain.com": [6311], "www.teslamotors.com": [16142], "*.goaruna.com": [6770], "www.safecount.net": [14232], "lca2014.linux.org.au": [9406], "www.melkweb.com": [2783], "cclcm.ccf.org": [3236], "spam.fit.edu": [5942], "www.enthought.com": [5299], "www.thompson.com": [16377], "*.oreilly.com": [11661], "ad.aim4media.com": [741], "www.r-hpc.com": [13387], "www.mind.org.uk": [10407], "fjallfoss.fcc.gov": [5709], "postnewsads.com": [12981], "www.oumedicine.staywellsolutionsonline.com": [12140], "bios-mods.com": [1907], "support.cxense.com": [2694], "secretariat.nanog.org": [11490], "datared.dk": [4213], "nvenergy.com": [10981], "siteheart.com": [14866], "static4.boligportal.dk": [2191], "mein.webprospector.de": [18080], "service.burst.net": [2445], "peterborough.greenparty.org.uk": [6925], "www.cable-tv-deals.com": [18486], "kundcenter.prq.se": [12289], "www.wakelet.com": [17953], "www.pwmt.org": [13262], "assets-origin.nytimes.com": [11000], "nutricentre.com": [11583], "www.feistyduck.com": [5744], "cdn3.emilstahl.dk": [5208], "esv.de": [4968], "internet2.edu": [8279], "doc.yunohost.org": [18751], "piwik.xplr.com": [18586], "spoor-api.ft.com": [5826], "www.landalcampings.nl": [18490], "wcfia.harvard.edu": [7219], "comsecuris.com": [3545], "www.rareaviation.com": [13565], "csis.gc.ca": [2802], "www.katylee.com": [8819], "heatball.de": [7277], "www.thereadingroom.com": [16232], "stix.mitre.org": [10459], "domena.cz": [4669], "jad-journal.com": [8645], "www.nsupdate.info": [11552], "ats.stanford.edu": [15383], "mybbcentral.com": [10744], "cm.commerce5.com": [3479], "boe.es": [1536], "status.compose.io": [3526], "keygens.nl": [8869], "courses.lis.illinois.edu": [17258], "www.pkimber.net": [12305], "www.lobste.rs": [9534], "androidapi.xamarin.com": [18540], "www.yoursole.com": [18731], "www.smartlife.swisscom.com": [15698], "*.ssa.gov": [15060], "grove.io": [6981], "www.pureinfo.com": [13239], "www.bluecatnetworks.com": [2127], "www.metro.yandex.by": [18648], "shop.scooter-attack.com": [14390], "www.kriminalvarden.se": [9012], "j.kissinsights.com": [8726], "www.leagueoflegends.com": [9206], "uniregistry.com": [17196], "performancewheel.com": [12570], "*.facdn.net": [6270], "*.rhul.ac.uk": [13423], "help-de-de.nike.com": [11401], "shop.skanetrafiken.se": [14896], "partner.dota2.com": [4697], "www.meebey.net": [10205], "www.hotfile.com": [7556], "*.onstreamsecure.com": [11886], "app.stitcher.com": [15476], "www.arbeitsagentur.de": [1152], "shoplocal.com": [14716], "vdp.mycdn.me": [10824], "resume.submittable.com": [19636], "developer.kaazing.com": [8758, 8759], "imgd.nxjimg.com": [11591], "flixbus.com": [5931], "deezer.com": [4303], "fraedom.com": [19193], "icompass.insightexpressai.com": [8172], "bright-things.com": [2318], "www.marketdojo.com": [10010], "cb.qq.com": [13284], "calibre-ebook.com": [2740], "*.imagesbn.com": [7984], "idm.east.cox.net": [3739], "owa.portal.srgssr.ch": [19621], "cryptocointalk.com": [3855], "windows.net": [18343], "*.dlisted.com": [4595], "braintree.gov.uk": [2273], "tor.freedom.press": [6168], "apprenticeships.scot": [18959], "wtac.hinxton.wellcome.ac.uk": [19752], "metrics.washingtonpost.com": [17990], "www-edge.tnaflix.com": [16518], "rotlogix.com": [13980], "s0.life.itc.cn": [8388], "*.lighthouseapp.com": [9345], "www.ua-hosting.com.ua": [17081], "www.eyetechds.com": [5533], "indiasmbmarketplace.cisco.com": [3162], "www2.cisco.com": [3162], "m-vg.de": [9688], "www.illumos.org": [7970], "kennetnorthwilts.greenparty.org.uk": [6925], "national.virginmedia.com": [17737], "adbusters.org": [565], "zeuscat.com": [18853], "www.whoshiring.io": [18269], "www.brokentoaster.com": [2359], "www.googletagmanager.com": [6843], "eas4.emediate.eu": [5203], "wweek.com": [18312], "talk.hbo.com": [7047], "www.drive2.ru": [4762], "r.mail.ru": [9874], "cdn3.gbot.me": [6808], "factorydirectcabins.com": [5627], "research.yammer.com": [18646], "www.haystacksoftware.com": [7250], "www.momentusmedia.com": [10538], "www2.halton.gov.uk": [19236], "cryptedmemo.com": [3848], "www.boardzoo.com": [2167], "scs.uic.edu": [17231], "spin.de": [15276], "www.myportableworld.com": [10814], "bnc4free.com": [2164], "kickflip.io": [8880], "t.rasp.yandex.by": [18648], "www.feefighters.com": [5731], "www.1and1.es": [54], "tauntondeane.objective.co.uk": [19454], "pic4.zhimg.com": [18856], "uhhospitals.org": [17119], "foi.cardiff.gov.uk": [19039], "welcomeweek.gmu.edu": [6544], "homepage.1und1.de": [68], "network.feral.io": [5751], "www.anthonycameron.com": [1064], "ehostpros.com": [5679], "www.store.acs.org": [929], "www.journal-republican.com": [12657], "www.verfassungsschutz.de": [2427], "wurfljs.com": [18484], "*.uvic.ca": [17076], "bartbania.com": [1682], "doris.desy.de": [4399], "eneo.dict.cc": [4455], "meeting-reg.com": [10012], "www.searchdatacenter.de": [16018], "mlkscholars.mit.edu": [9747], "it.redhat.com": [13675], "secure.goemerchant.com": [6776], "static.lovefilm.*": [9625], "www.ocaml.org": [11612], "*.myhailprotector.com": [7164], "blackfire.io": [2052], "r-hpc.com": [13387], "*.autotrack.nl": [1418], "imss-test-storage.ads.caltech.edu.s3.amazonaws.com": [2757], "www.abbott.com": [402], "shop.education.lego.com": [9068], "www.avcosystems.com": [18971], "ems.sbi.co.in": [14082], "www.spin.de": [15276], "www.techidiots.net": [16028], "tfaforms.com": [16163], "tfl.gov.uk": [16681], "rareaviation.com": [13565], "d2jsp.com": [3997], "security.tiki.org": [16444], "tchibo.cz": [15985], "signin.comparethemarket.com": [3511], "whisky.de": [19756], "www.getvoip.com": [6582], "www.mrp.illinois.edu": [17258], "www.moava.org": [10486], "gls.gls-service.de": [6340], "apps.hackney.gov.uk": [7155], "www.professionalsecuritytesters.org": [13126], "thinkingchristian.net": [16365], "fnmag.co": [5582], "webadvisor.uchastings.edu": [16942], "feeds.trendmicro.com": [16717], "*.beyondsecurity.com": [1832], "astyle.alicdn.com": [805], "fw.to": [6287], "*.tlug.jp": [16535], "community.sabayon.org": [14214], "*.documentcloud.org": [4627], "www.huizen.nl": [11132], "hertzequipmentrentals.com": [7372], "www.arbor.net": [1154], "lists.wireless.org.au": [18366], "uptobox.com": [19718], "www.xagyl.us": [18501], "uweb2.host.ie": [4512], "goo.im": [6825], "edexchange.adobe.com": [615], "www.videopros.com": [17690], "starmoney.de": [15392], "www.threema.ch": [16399], "djkit.com": [4038], "www.jquery.com": [8451], "*.artsprojekt.com": [18803], "monsterdivx.com": [10565], "story.br.de": [1539], "disl.osu.edu": [11760], "joker.com": [8619], "downloads.realviewdigital.com": [13633], "dhi-scotland.com": [19118], "tepid.litle.com": [9470], "www.usrportage.de": [19722], "zerorobotics.org": [18838], "www.wayskinny.com": [18012], "finkmanufacturing.com": [1901], "vpnsearch.net": [17504], "managedforexprogram.com": [9942], "www.browser.yandex.by": [18648], "medialinx-academy.de": [10173], "projects.dm.id.lv": [4043], "www.dn.com": [4053], "bb24.csob.sk": [3896], "deviantart.net": [4423], "cj2.nl": [2618], "crmondemand.oracle.com": [12082], "www.sdilej.cz": [14431], "rave.ohiolink.edu": [11762], "laweval.neu.edu": [10902], "www.plan.gs": [15465], "1c-bitrix.ru": [56], "www.firstamendmentcenter.org": [5873], "utils.kde.org": [8718], "*.chatme.im": [3029], "curate.vbstatic.co": [17470], "ozvoucher.com.au": [12195], "gameinfo.na.leagueoflegends.com": [9205], "solicitor-concierge.com": [15116], "www.out-law.com": [12146], "www.th-mittelhessen.de": [15809], "www.applications.sciverse.com": [14375], "blog.codecentric.de": [3362], "press.udemy.com": [17111], "spd.de": [15201], "www.rotaryview.com": [13975], "www.browserid.org": [2370], "www.archive.is": [1164], "www.star.bnl.gov": [19009], "streifband.de": [7114], "www.synthetix.net": [15743], "www.cavirtex.com": [2910], "nic.ar": [10917], "s2.adform.net": [585], "statics.plurk.com": [12828], "www.openarchives.org": [12000], "www.howtowriteabookasap.com": [6716], "nic.ac": [11380], "www.mirrorbingo.com": [10444, 10445], "dropboxatwork.com": [4768], "register.apple.com": [1120], "www.glo.wustl.edu": [17993], "www.surfline.com": [15651], "business.udemy.com": [17111], "rantoulpress.com": [13550], "cdn.amazon.jobs": [912], "onlineservices.milton-keynes.gov.uk": [10401], "mirakar.com": [10439], "www.theartstack.com": [16244], "nb-no.facebook.com": [5620], "www.lucidpress.com": [9646], "*.350.org": [104], "cablemystreet.virginmedia.com": [17737], "a1.twimg.com": [16877], "hailavenger.com": [7165], "www.ceredigion.gov.uk": [2964], "upp.itunes.apple.com": [1120], "render.lv3.hbo.com": [19240], "static.localphone.com": [19370], "gis.ncdc.noaa.gov": [11083], "www.mea.elsevierhealth.com": [5187], "support-fr.upc-cablecom.ch": [19716], "www.wordentropy.org": [18432], "www.globalways.net": [6741], "www.inf.tu-dresden.de": [15871], "jaymart.co.th": [8535], "trainingindustry.com": [16657], "css.gov.au": [3495], "www.coverstand.com": [3727], "wallet.google.com": [6834], "endora.cz": [5248], "www.sublimetext.com": [15562], "cdn.mars-one.com": [10029], "tildedave.com": [16446], "aei.org": [277], "shop.sloanreview.mit.edu": [9749], "cdn7.iconfinder.com": [7921], "www.tr.im": [16624], "login.weixin.qq.com": [13285], "ab9il.net": [237], "studyabroad.washington.edu": [17291], "forumatic.com": [6065], "cdn.els-cdn.com": [5182], "*.doe.gov": [17210], "www.habrastorage.org": [7130], "michaelwlucas.com": [10341], "bx.in.th": [1586], "livewire.amnesty.org": [956], "*.blkb.ch": [19333], "postmaster.msn.com": [9796], "blog.bing.com": [1895], "cinema.arte.tv": [18966], "systemintegra.ru": [15759], "www.ja-sig.org": [8522], "university.appcelerator.com": [1113], "www.ondarossa.info": [11825], "gifsauce.us": [6640], "portal.iter.org": [7847], "www.kiwiirc.com": [8930], "www.fomnetworks.com": [5584], "www.prudentbear.com": [13184], "css.cals.cornell.edu": [3676], "www.checktls.com": [3053], "eroshare.com": [5350], "democracyinaction.org": [4354], "discovercard.com": [4549], "tjoos.com": [16507], "secure.nildram.net": [11405], "writer.zoho.com": [18884], "umaine.edu": [17321], "www.internetfreedomfestival.org": [19301], "downloads.haskell.org": [7229], "itch.io": [8389], "medwiki.stanford.edu": [15383], "www.enpass.io": [5282], "panel.djangoeurope.com": [4592], "n.pr": [1920], "images.path.com": [12451], "distfiles.macports.org": [9821], "www.yellowbook.acs.org": [929], "api.freebase.com": [6157], "www.nypost.com": [18428], "chris.lu": [3102], "www.angreifer.org": [1018], "softcreatr.de": [15091], "wayfsp.wayf.dk": [17896], "v2.retargeter.com": [13601], "jiveworld.jivesoftware.com": [8585], "postaffiliatenetwork.com": [12952], "thebodyshop.ch": [3645], "partspider.com": [12417], "a.pgtb.me": [10159], "www.interdiscount.ch": [3645], "www.popatomic.org": [12904], "milkandmore.co.uk": [10396], "businessfinder.mlive.com": [9760], "tortoisegit.org": [16595], "www.hoteltotravel.com": [7555], "*.pokylinux.org": [12858], "tokbox.com": [16532], "renewablefreedom.org": [13766], "astronomicaltours.net": [1305], "ads-by.yieldselect.com": [18679], "vanlanschot.nl": [17552], "webapps.cs.umd.edu": [17263], "linksalpha.com": [9378], "software.ucsd.edu": [16939], "globalweb.co.uk": [6736], "maninthemirror.org": [9936], "preview.npmjs.com": [11539], "www.fastcodesign.com": [5680], "algorithms.rdio.com": [13595], "video.ecc-platform.org": [4879], "www.ico.org.uk": [7688], "reg.confuzzled.org.uk": [3574], "www.cdon.eu": [2562], "www.cimbclicks.com.my": [2606], "zh.chaturbate.com": [3035], "metastatuspage.com": [15438], "*.reviewjournal.com": [9160], "*.tfl.gov.uk": [16681], "static.picload.org": [12661], "*.wegohealth.com": [18185], "i.bigmir.net": [1866], "suggests.rasp.yandex.com": [18651], "*.frcanalytics.com": [6113], "www.returnpath.com": [13833], "adam.amnesty.org": [956], "edu.kde.org": [8718], "naturfotografen-forum.de": [6067], "businesscatalyst.com": [2457], "nike.com": [11401], "*.lexpress.fr": [9071], "youtube.com.lv": [18709], "www.autobytel.com": [1424], "privacy.stanford.edu": [15383], "forum.vpn.ac": [19742], "jslib.iweb.com": [7875], "leics.police.uk": [9240], "www.ind.ie": [8048], "www.securepurchaseserver.com": [14510], "astronomy.fas.harvard.edu": [7219], "mjdk.dk": [19401], "www.dearbytes.com": [4263], "umw.edu": [17262], "item.jd.com": [8423], "www.appcanary.com": [1103], "pi.pardot.com": [12399], "monitoring.pipni.cz": [12257], "www.evanced.info": [5434], "www.browser-update.org": [19020], "m.desy.de": [4399], "*.macfarlanepackaging.com": [9826], "www.yuilibrary.com": [18625], "static-hearth.cursecdn.com": [3934], "static1.bentasker.co.uk": [1772], "images.thoughtbot.com": [16387], "flashgot.net": [5904], "www.nos-oignons.org": [11511], "factoryselecthomes.com": [5627], "uowdubai.ac.ae": [17350], "www.instasync.com": [19297], "devolo.com": [4427], "wsjeuropesubs.com": [11321], "jobs.sciencecareers.org": [14379], "www.51fanli.net": [171], "7elements.co.uk": [190], "www.ohloh.org": [11766], "cas.myuni.sydney.edu.au": [19649], "hackerspace.gr": [6915], "www.piratenpartei.at": [12720], "*.wral.com": [17929], "muse.mu": [10709], "opendaylight.org": [11934], "www.amiunique.org": [904], "code.google.com": [6834], "*.redcatsecom.com": [13684], "cpanel.net": [2653], "sirrix.de": [14859], "i.imm.io": [12743], "oascentral.bostonherald.com": [75], "*.bloxcms.com": [1525], "images.variety.com": [17565], "*.gamesplanet.com": [6437], "profileapi.services.microsoft.com": [10364], "detektor.fm": [4403], "acmsf.food.gov.uk": [19187], "www.accountkiller.com": [459], "scacommunity.usc.edu": [17278], "www2.bt.com": [1551], "*.twenga.com": [16874], "nslds.ed.gov": [4889], "takeonthegame.com": [19657], "yuba.stanford.edu": [15382], "*.pld-linux.org": [12268], "www.anon-ib.com": [1035], "iki.fi": [7961], "iis.net": [7741], "debian-administration.org": [4269], "www.zakird.com": [18781], "www.lezlovevideo.com": [9281], "lintian.debian.org": [4275], "login.carbook.com": [3116], "loopliving.wustl.edu": [17993], "blinksale.com": [2077], "www.ecsi.com": [4881], "origin-assets.clickmotive.com": [3248], "luck.betcoin.tm": [1813], "travaux.web4all.fr": [18052], "prelive.bvg.de": [1582], "wiki.openoffice.org": [1084], "circleofmoms.com": [3156], "www.axelsimon.net": [1471], "www.theme-fusion.com": [16339], "pre.zohodiscussions.com": [18886], "resellers.guidancesoftware.com": [7006], "js.washingtonpost.com": [17990], "bluegenio.com": [2131], "shrew.net": [19589], "info.maths.ed.ac.uk": [5067], "www.pbs-erhverv.dk": [12494], "www.unirel.vt.edu": [17740], "www.inschrijven.nl": [8161], "www.nandos.com": [11029], "hamstudy.org": [7179], "*.ting.com": [16473], "www.southampton.ac.uk": [17276], "smolensk.rt.ru": [13469], "p.yieldlab.net": [18682], "www.ncsi.com": [10887], "to.pbs.org": [1920], "www.prgmr.com": [13047], "*.illuminated-pots.com": [7969], "www.saintaardvarkthecarpeted.com": [14245], "www.parrot.com": [12409], "www.hertzvans.co.uk": [7371], "dsum-sec.casalemedia.com": [2870], "www.dhs.gov": [4035], "textualapp.com": [16162], "pinboard.in": [12677], "www.getpersonas.com": [6578], "afra-berlin.de": [285], "www.internetsafetyproject.org": [8274], "cyseclabs.com": [3991], "secureportal.stockport.gov.uk": [19628], "statichukd.com": [7549], "stablehost.com": [15357], "barclaycard.co.uk": [1664], "eforensicsmag.com": [4912], "www.agcs.allianz.com": [18950], "*.digibib.net": [4472], "www.splitreason.com": [15282], "secure2.convio.net": [3630], "www.corporatecardapplication.com": [3681], "0x539.se": [6], "www.katalog.yandex.by": [18648], "webcontrol.savana.cz": [14308], "www.womenshealthspecialists.org": [18410], "accessories-cdn.dell.com": [4335], "*.patternsinthevoid.net": [12459], "www.intensitylab.com": [8225], "activestatic.net": [502], "www.powys.gov.uk": [19513], "test.uat.groupon.com": [6974], "*.www.wikinvest.com": [18297], "www.thewesternworld.com": [16324], "*.redbull.com": [13666], "isc.sans.edu": [14071], "api.intercom.io": [8244], "cloud.mongodb.com": [10553], "login.truelife.com": [16768], "ssl-certificate-center.verisign.co.uk": [17623], "lists.egenix.com": [19134], "m.metro.ya.ru": [18626], "h5n.us": [7044], "*.hotels.com": [7554], "www.connman.net": [3578], "static01.nyt.com": [10997], "www.browserhacker.com": [2374], "collectdata.education.gov.uk": [19149], "www.mygirlfund.com": [10763], "www.neos.io": [11156], "www.over-yonder.net": [12157], "www.digitalis.leeds.ac.uk": [17318], "account.schwartzmedia.com.au": [14373], "www.erooups.com": [5349], "geografia.unizar.es": [17356], "www.rizon.net": [13911], "owa.uaa.alaska.edu": [17233], "ems-ph.org": [5222], "www.linux.it": [8385], "www.norwegianclass101.com": [11509], "piwik.broadcasthe.net": [2354], "netfirms.com": [11226], "m-w.co.uk": [9689], "webmail.banan.cz": [1489], "oauth.accounts.firefox.com": [5859], "www.npmjs.com": [11539], "www.andrewbrookins.com": [1003], "www.jitscale.com": [8581], "curesec.com": [3928], "www.insidehighered.com": [8163], "bankid.no": [1643], "checkout.coinjar.com": [3397], "newsletter.manageengine.com": [9940], "*.pay.gov": [12465], "www.aylesburyvaledc.gov.uk": [18976], "*.artlebedev.ru": [1223], "labs.runabove.com": [14034], "weather.boston.com": [2233], "c4ss.org": [2504], "hack.ens.fr": [4930], "adserver.msn.com": [9796], "leadback.advertising.com": [662], "dome.mit.edu": [9749], "calsky.com": [2727], "si4.rgstatic.net": [13422], "www2.sites.uidaho.edu": [17257], "newsroom.shaw.ca": [14687], "infrastructure.gov.au": [4371], "ycharts.com": [18613], "defcongroups.org": [4026], "ssl.intevation.net": [8297], "youtube.fr": [18709], "whispergifts.com": [18245], "www.imgrush.com": [8000], "www.terrabank.ru": [16129], "webarchitects.coop": [18109], "www.exiledonline.com": [4997], "www.buffalo-technology.com": [2398], "pda.metro.ya.ru": [18626], "canarywatch.org": [2804], "ww5.gloucestershire.gov.uk": [6749], "it.leeds.ac.uk": [17318], "swarmapp.com": [19646], "sanoma.fi": [14288], "static.slickdealz.net": [14958], "*.jobthread.com": [8593], "ovh-hosting.fi": [12173], "engineering.osu.edu": [11760], "www.flonline.eu": [5578], "securityconference.de": [14526], "www.bitballoon.com": [1923], "eliminatejunkemail.com": [12336], "mx.01.org": [1], "stowesports.com": [294], "liuwg.web.cern.ch": [2575], "www.t3.io": [15777], "wholefoodsmarket.com": [18264], "analytics.slashdotmedia.com": [14948], "weihnachtsbaumspiel.tivi.de": [19800], "www.studentmoney.uillinois.edu": [16960], "profilocommercialeprivati.poste.it": [12965], "qt-apps.org": [19461, 19462], "m.yandex.kz": [18652], "www.adentifi.com": [583], "swisscex.com": [14207], "static01.vg.no": [17484], "www.cloudshark.org": [19068], "tampabay.com": [15937], "newsroom.t-mobile.com": [15772], "www.talentopoly.com": [15921], "ifcext.ifc.org": [8258], "libopenraw.freedesktop.org": [6126], "www.obi.hu": [19452], "gu.tdconline.se": [15799], "c1.rgstatic.net": [13422], "ylilauta.org": [19792], "it.jhu.edu": [16296], "pathways2gsfa.org": [12454], "www.qrpedia.org": [13311], "ipv6.doesnotwork.eu": [4632], "static.cdn.realviewdigital.com": [13633], "www.dragonair.com": [4740], "jonathanmayer.org": [8624], "e.gettyimages.com": [6620], "dematec.ens.fr": [4930], "updateframework.com": [17386], "calendars.com": [2738], "secure.security.nl": [14524], "mikemasin.com": [10385], "zvv.ch": [19806], "*.fernuni-hagen.de": [5755], "adindex.de": [275], "encrypted.redteam.net": [13679], "*.yplanapp.com": [19798], "newyorkvocalcoaching.com": [11300], "www.gsfc.org": [6387], "www.gls-group.eu": [6523], "abcnews.go.com": [240, 241], "fws.gov": [17060], "sites.7-eleven.com": [187], "secdn.williamhill.com": [18315], "www.cemetech.net": [2933], "forbrukerportalen.no": [6019], "www.gcmasia.com": [6309], "tags.news.com.au": [11338], "www.postlapsaria.com": [12980], "autodiscover-s.outlook.com": [12153], "cdn.pro186.com": [13109], "i.local.ch": [9536], "www.tonergiant.co.uk": [16545], "fiercepharma.com": [5777], "www.cits.ruhr-uni-bochum.de": [14030, 14031], "ercnsm.osu.edu": [11760], "workspace.v2ex.com": [17463], "consent.live.com": [9483], "rxs3.answcdn.com": [1059], "app-de6.resrc.it": [13599], "phoenix.edu": [12633], "www.dionyziz.com": [6915], "apps.peterborough.gov.uk": [12594], "www.verisign.com.hk": [17623], "hotelplan.ch": [19262], "public.govdelivery.com": [6863], "ad.z5x.net": [4082], "cce.engineering.osu.edu": [11760], "cchtml.com": [2914], "businessservices.usc.edu": [17278], "www.znaturalfoods.com": [18773], "vidia.swisscom.ch": [15698], "imx.solid-run.com": [15117], "billing.purevpn.com": [13240], "scopus.com": [14391], "next.delicious.com": [4328], "cmnf.osu.edu": [11760], "www.matrox.com": [10079], "kundencenter.web.de": [18050], "www.btplc.com": [1547], "www.bitquick.co": [1943], "ca-securem.ikea.com": [7959], "pop.com.br": [12279], "www.ll.mit.edu": [9749], "www.youtube.com.gr": [18709], "blog.zugaina.org": [18919], "computersweden.idg.se": [7705], "www.cs.ncsu.edu": [11491], "engineering.opendns.com": [11932], "support.canonical.com": [2810], "www.newit.co.uk": [11296], "*.linuxnewmedia.com": [9396], "spotify.com": [15296], "docs.libreoffice.org": [9311], "www.twitthis.com": [16887], "www.igowild.com": [7955], "sixapart.com": [14889], "www.getclouder.com": [6568], "*.burstmedia.com": [2446], "reader.wustl.edu": [17993], "*.airbnb.ru": [749], "nextbus.com": [11360], "www.jdkasten.com": [8427], "rareconnect.org": [13566], "touch2.groupon.com": [6974], "peacefire.org": [12504], "scholar.google.co.*": [6837], "faasand.gpehosting.com": [6376], "auto.ricardo.ch": [13866], "compari.ro": [3512], "m.openwireless.org": [12029], "www.stura.htwk-leipzig.de": [7114], "heino-cykler.dk": [7287], "post2.audioscrobbler.com": [1360], "freebase.com": [6157], "r5.mzstatic.com": [1119], "www.easynews.com": [5027], "bitcard.org": [1928], "assets.seedrs.com": [14551], "*.medicinenet.com": [10192], "support.sucuri.net": [15575], "customers.gfi.com": [6324], "si4.twimg.com": [16877], "enes.dict.cc": [4455], "www.somethingawful.com": [15130], "wms.assoc-amazon.ca": [1285], "msgme.com": [19413], "simple-talk.com": [14819], "www.weheartit.com": [18017], "maricopa.edu": [9990], "desy2.desy.de": [4399], "s-media-cache-ec0.pinimg.com": [12691], "cl.godaddy.com": [6773], "heliosiq.adtechus.com": [639], "pkr.com": [12751], "firmas.lv": [5865], "fmaba.com": [5647], "alternatives.ca": [882], "developer.xamarin.com": [18540], "bingplaces.com": [1896], "medgadget.com": [10141], "*.confirmit.com": [3570], "wikinformatica.unizar.es": [17356], "eroakirkosta.fi": [5348], "secure.utopia-web.com": [17455], "pixel.sitescout.com": [14871], "lucidpress.com": [9646], "jbox.com": [19318], "webapps.kent.gov.uk": [8851], "planet.nuug.no": [10979], "www.yourls.org": [19795], "freestyle.vc": [6185], "www.diasp.org": [4447], "www.ghosteryenterprise.com": [6630], "*.www.footlocker.com": [6008], "migrosmagazine.ch": [19399], "sheffield.moderngov.co.uk": [19405], "speeddl.com": [10121], "a-v2.sndcdn.com": [15032], "*.agari.com": [720], "melkweb.com": [2783], "hs10.snstatic.fi": [14145], "reparti.gel.ulaval.ca": [17229], "www.bouncerstation.com": [2245], "appvault.com": [1111], "m.burt.io": [2449], "tuples.random.org": [13545], "store.23andme.com": [74], "fpp.wustl.edu": [17993], "www.networkadvertising.org": [11268], "zdbb.net": [18759], "cdn.sparkfun.com": [15222], "www.privacyinternational.org": [13082], "kunk.org": [10950], "diversityandaccess.stanford.edu": [15383], "www.kennedy-center.org": [19335], "dhcpforum.isc.org": [7821], "www.allybank.com": [865], "flipboard.com": [5925], "meet.jit.si": [8583], "www.niap-ccevs.org": [10915], "www.b-link.bucknell.edu": [2387], "imgs.xkcd.com": [19786], "svn.mdk3.aircrack-ng.org": [18948], "instartlogic.com": [8190], "www.l0cal.com": [9058], "update.drweb.com": [4783], "campus.uni-due.de": [17165], "*.pro-linux.de": [13106], "lucaspetter.com": [9641], "fema.gov": [5715], "apps.canvas.uw.edu": [17077], "www.ancud.de": [995], "www.taylorandfrancis.com": [8118], "blog.slideshare.net": [14962], "mein.ktk.de": [8753], "securabit.com": [14477], "www.ederdrom.de": [5076], "whitehatsec.com": [18250], "www.braindecoder.com": [2267], "www.zerties.org": [18847], "torrentshack.me": [16584], "repost.us": [13786], "www.tagged.com": [15909], "awesomejar.com": [1462], "downloads.raspberrypi.org": [13569], "fiercefinance.com": [5775], "maliit.org": [9923], "appelli.amnesty.it": [965], "visistat.com": [17768], "chip01.chipimages.de": [2596], "virtualnewscenter.wpengine.netdna-cdn.com": [17753], "www.wdr3.de": [18015], "*.stkittszipline.com": [15354], "sso.alfa-openmedia.de": [800], "www.rebornbuddy.com": [2230], "www.webmagazin.de": [18129], "www.article19.org": [1231], "*.keymile.com": [8870], "www.nttdocomo.co.jp": [10969], "beta.leboncoin.fr": [19351], "*.tutsplus.com": [16853], "mewsite.com": [10326], "www.nrf.com": [11059], "helpdesk.umd.edu": [17263], "artoncampus.rit.edu": [13434], "www.cis.rit.edu": [13434], "www.frictionalgames.com": [6210], "extranet.ic.nhs.uk": [10913], "www.interpol.int": [8293], "yahoo.domaintools.com": [4660], "www.just-eat.dk": [19328], "wikilov.es": [18296], "cse.umich.edu": [17266], "massagemag.com": [10049], "www.kabelbw.de": [19331], "paste.proxy.sh": [13181], "storage.jd.com": [8423], "noiselessvault.org": [11459], "vmail.connect.comcast.net": [3460], "www.improvely.com": [8020], "imat.nottingham.ac.uk": [11528], "seer.cancer.gov": [2805], "secure.junodownload.com": [8683], "tr.libreoffice.org": [9311], "www.berlin.de": [1791], "www.kickass-torrents.to": [8879], "steadfast.net": [15446], "tunbridgewells.objective.co.uk": [19454], "app.domainskate.com": [4657], "www.teststackoverflow.com": [15359], "www.kimberly-clark.com": [8889], "kinox.to": [19337], "socialconnect.axosoft.com": [1477], "mxr.theplatform.com": [16229], "paypal.adtag.where.com": [18238], "www.pariloto.net": [7732], "justcloud.com": [8689], "*.cdn.kixeye.com": [8729], "etoro.com": [4978], "*.schibsted.se": [14352], "wtsdc.nlm.nih.gov": [11052], "piraten-basel.ch": [12284], "hpcf.upr.edu": [17006], "ucla.in": [1920], "stage-mas.wiiings.com": [18288], "www.cloudmining.guru": [3310], "www.monkeysaudio.com": [10559], "publicaccess.leeds.gov.uk": [19353], "astronautix.com": [5240], "*.linux.lu": [9405], "*.examiner.com": [5480], "secure.buypremiumtech.net": [2466], "www.vitrinepix.com.br": [19738], "www.cmascenter.org": [2625], "www.hideme.today": [7395], "maysoft.com": [10102], "nj02all01.baidupcs.com": [1620], "newblood.anonops.com": [1042], "www.hpi.uni-potsdam.de": [17333], "www.portalen.dtu.dk": [16031], "*.esi.dz": [4960], "researchport.umd.edu": [17263], "igalia.com": [7950], "waitrose.com": [17950], "www.dentistry.leeds.ac.uk": [17318], "i.h-t.co": [7041], "rangenetworks.com": [13548], "api.o.qcloud.com": [13301], "barnard.edu": [1674], "veranstaltungen.wienenergie.at": [18284], "ddragon.leagueoflegends.com": [9206], "gigya.com": [6659], "secure.iows.ikea.com": [7959], "freebsdfoundation.org": [6122], "cdn1.hubspot.com": [7594], "mpbio.com": [9783], "openadultdirectory.com": [11917], "selenic.com": [10279], "www.bupa.com": [2439], "www.lovtidende.dk": [9634], "*.peer39.net": [12513], "www.socialcampaign.com": [3818], "www.marketing.allianz.com": [18950], "www.oktatas.hu": [11777], "bridgeways.com": [2315], "www.gymglish.co.uk": [7038], "www.synchronicer.dk": [15729], "forum-de.msi.com": [9792], "www.jacksfetishtube.com": [8484], "www.metro.yandex.kz": [18652], "ad.reklamport.com": [13750], "prism.nts.wustl.edu": [17992], "cdn.asset.geek.net": [6493], "www.alpha.gr": [6911], "skylineregistrations.co.uk": [14936], "www.cccure.training": [2542, 2543], "www.di.ens.fr": [4930], "brueckenbauer.ch": [19399], "www.openrce.org": [11967], "www.my.calpoly.edu": [2747], "login.centreon.com": [2957], "villahostels.com": [17714], "getscroll.com": [6603], "www.attendesource.com": [1337], "www.browseraddon.com": [2373], "order.1and1.com": [51], "dyson.co.uk": [4837], "netveano.com": [11255], "login.monster.com": [10564], "cinestar.de": [3143], "www.oeis.org": [11619], "atos.net": [1330], "rm.yieldmanager.com": [13881], "passport.yandex.com.tr": [18649], "*.tds.net": [15803], "fedoramagazine.org": [5728], "thumbs.crakpass.com": [3759], "www.freebieber.org": [5783], "technet.microsoft.com": [10364], "gearsourceeurope.com": [6485], "websupport.at": [18091], "fust.ch": [3645], "7gwc-kbhkort.kk.dk": [8730], "www.vhlcentral.com": [17486], "www.givingcomfort.org": [6690], "www.languageperfect.co.nz": [9146], "msm.mitre.org": [10459], "cybermill.com": [3973], "www.maxmind.com": [10097], "knowledge.rapidssl.com": [13557], "hr-skyen.dk": [7093], "aamc.org": [232], "courses.cites.illinois.edu": [17258], "cyberfret.com": [3970], "www.executiveinterviews.biz": [5488], "skroutz.gr": [14921], "*.marksandspencer.com": [9945], "cdn.syndication.twimg.com": [16877], "edu.simplebooklet.com": [14825], "optimizedby.rmxads.com": [13881], "*.co3sys.com": [3333], "*.london.hackspace.org.uk": [9581], "www.irpa.umd.edu": [17263], "newdream.net": [11288], "systems.cse.iitb.ac.in": [7744], "bbbsilicon.org": [1495], "www.cadsoft.de": [2711], "assets.tribalhosting.net": [16726], "translate.yandex.ua": [18656], "www.mork.mo": [10593], "anglomedia.net": [1016], "academics.usc.edu": [17278], "bloggerei.de": [2108], "fuzeqna.com": [1410], "envirocallservice.newcastle.gov.uk": [11315], "norfolk.cs.washington.edu": [17291], "www.neovim.io": [19429], "www.sunbeltsoftware.com": [15596], "www.verisign.nl": [17623], "demo.pritunl.com": [13078], "a1.lscdn.net": [9102], "www.sciencemag.org": [14382], "lyrishq.com": [9686], "*.as.utexas.edu": [17285], "wikivs.com": [18299], "galogin.ntu.edu.tw": [10971], "scrs.gc.ca": [2802], "totemapp.com": [16606], "style.alibaba.com": [809], "*.pixnet.net": [12745], "otldisclosure.stanford.edu": [15383], "npmrds.ext.here.com": [7326], "partnernet-qa.symantec.com": [15715], "konami-korea.kr": [8973], "nlnetlabs.nl": [10941], "www.webgo.de": [18064], "tracker.cloud.hhs.gov": [7062], "eventbrite.com": [5442], "*.3m.com": [127], "opendoors.org": [12009], "enfuse.co": [7006], "api.jquerymobile.com": [8452], "www.bluetoad.com": [2137], "eportal.schools.doncaster.gov.uk": [4678], "www.whms.com": [17907], "www.disk42.com": [4561], "tpptraining.com": [15853], "pikpok.com": [12673], "cdn.altex.ro": [886], "*.justia.com": [8697], "www.midphase.com": [10378], "www.observium.org": [11706], "news.wmtransfer.com": [18076], "webaccounts.arcgis.com": [1155], "whlove.taobao.com": [15952], "tall.it.da.ut.ee": [17069], "cdn2.openculture.com": [12006], "www.humanrightsfirst.org": [7611], "www-10.lotus.com": [9617], "stackoverflow.com": [15359], "it.provost.usc.edu": [17278], "2.taobao.com": [15952], "jkry.org": [8441], "tapatalk.com": [15955], "dealers.car.com": [2826], "*.webstarts.com": [18090], "my.choopa.com": [3099], "www.aqueousvapor.com": [1145], "mixxx.org": [10471], "*.autotraderstatic.com": [1419], "clickandpledge.com": [3255], "www.earth.illinois.edu": [17258], "clubillico.videotron.com": [17700], "ugenr.dk": [17116], "wizbangpop.com": [18389], "wiki.commotionwireless.net": [3496], "www.peopleconnect.scot.nhs.uk": [10913], "anz.co.nz": [18958], "secure.myrtlebeachshows.com": [10844], "avropa.se": [1456], "fr.ricardo.ch": [13866], "heasarc.nasa.gov": [10869], "www.livejournal.com": [9490], "sts.wustl.edu": [17993], "www.davincivaporizer.com": [4231], "www.wdws.com": [17899], "www.medium.com": [10197], "nucleus.con.ohio-state.edu": [11761], "www.formstack.com": [6046], "cpfp.cancer.gov": [2805], "*.harakahdaily.net": [7202], "e2e.ti.com": [16152], "postalinspectors.uspis.gov": [17027], "choicecheapies.co.nz": [12195], "gocart.valueclickmedia.com": [17540], "www.tvshowtime.com": [15888], "rubytogether.org": [14022], "display.yandex.com.tr": [18649], "mycdsglobal.com": [2564], "www.togevi.com": [8401], "codesearch.debian.net": [4273], "www.mojandroid.sk": [10535], "kivo.com": [8927], "epilepsyontario.org": [5322], "wegoted.com": [18019], "blog.bigcartel.com": [1850], "accessories.stanford.edu": [15383], "rspamd.com": [14007], "*.intuitivepassword.com": [8307], "forum.federalsoup.com": [5719], "www.hornbach.ch": [7496], "www.poodletest.com": [12278], "*.filerio.in": [5794], "*.judiciary.gov.uk": [8664], "ebis.ne.jp": [5040], "*.nextag.de": [11363], "www.humankode.com": [7605], "distil.it": [4572], "www.enygf.eu": [5425], "datacenterknowledge.com": [4178], "pic.dhe.ibm.com": [7675], "www.instraffic.com": [8197], "tutanota.com": [16850], "voiceteachertraining.com": [11300], "mplayerhq.hu": [9784], "www.bernalbucks.org": [1794], "ads.nytimes.com": [11000], "eastlothian.gov.uk": [5014], "edge.halldata.com": [7175], "films.deathmask.net": [4266], "desjardins.com": [4391], "c.rgstatic.net": [13422], "www.swisspost.ch": [12949], "cadence.com": [2713], "search.edwardsnowden.com": [5103], "*.joomag.com": [8625], "www.quakenet.org": [13326], "otavamedia.fi": [12131], "otakumode.com": [12129], "www.mozillians.org": [10664], "ul.ie": [16978, 16979], "reparieren.ch": [19733], "trip.washington.edu": [17291], "linuxcounter.net": [9392], "w10.hillingdon.gov.uk": [7410], "*.spreadshirt.co.uk": [15300], "en-eo.dict.cc": [4455], "uct.ac.za": [17306], "www.awin1.com": [4486], "www.searchengineland.com": [16367], "*.warwick.ac.uk": [17348], "www.corningcu.org": [3678], "*.insight.com": [8170], "policyalternatives.ca": [19505], "comingolstadt.de": [3468], "aqueousvapor.com": [1145], "scitation.aip.org": [291], "kolabsys.com": [8960], "static4.startnext.com": [15412], "www.prv.se": [12290], "cocubes.com": [3335], "planet.moodle.org": [10575], "checkpoint.com": [3048], "section9.co.uk": [14470], "imgix.8tracks.com": [205], "quitter.is": [13369], "www.8win88win.com": [206], "store.blackphone.ch": [2048], "backupblog.cir.ca": [3153], "pulse.w3counter.com": [17889], "linuxcontainers.org": [9420], "www.eon-hungaria.com": [19161], "*.cloudfront.net": [3304], "kb.safenet-inc.com": [14227], "ftp.fau.de": [17311], "www.bloggerei.de": [2108], "facebookcorewwwi.onion": [5621], "www.malwaretech.net": [9927], "aaulan.dk": [399], "www.buywithconfidence.gov.uk": [19031], "qmail.jms1.net": [8587], "mid.live.com": [9483], "support.ookla.com": [11895], "allistene.fr": [855], "agwa.name": [736], "s.troveread.com": [16763], "hackerspaces.nl": [7150], "zhongaiyisheng.tmall.com": [19684], "collect.cn.miaozhen.com": [10337], "firstamendmentcoalition.org": [5874], "london.gov.uk": [9578], "alice-collaboration.web.cern.ch": [2575], "necdisplay.com": [10895], "www.kangurum.com.tr": [8781], "reverb.echo.nasa.gov": [10869], "c.wpimg.pl": [19766], "knowledge.kaltura.com": [8775], "www.calgaryoutdoorcentre.ca": [16943], "organicconsumers.org": [12103], "www.jewishpress.com": [8563], "services.forthnet.gr": [6054], "webarch.net": [18108], "www.newsyslog.org": [6897], "www.mobile-ent.biz": [8227], "www.ventrachicago.com": [17610], "*.localedge.com": [9538], "computeruniverse.net": [3541], "uformia.com": [17114], "www.blogoverflow.com": [15359], "www.coveredca.com": [3731], "www.cuinfo.cornell.edu": [3676], "*.cognitivedissidents.com": [3388], "mirbsd.org": [10437], "ovh.cz": [12173], "flyersrights.com": [5962], "digitalis.leeds.ac.uk": [17318], "artizone.com": [1234], "www.mommyslittlesunshine.com": [10539], "*.ndchost.com": [10892], "*.pitt.edu": [17332], "www.rki.de": [13912], "forum.ovh.sn": [12173], "www.webtranslateit.com": [18168], "copyright.com": [3657], "milton-keynes.gov.uk": [10401], "www.townsvillebottomfishingcharters.com.au": [16615], "order.jd.com": [8423], "dotcloud.com": [4693], "coolminiornot.com": [3638], "app3.salesmanago.pl": [14069], "set.io": [14632], "bigstockimages.com": [1867], "webmail.ncl.ac.uk": [10884], "vh2.ro.vutbr.cz": [17522], "sudo.ws": [6897], "liftdna.com": [9338, 9339], "*.domena.pl": [4670], "account.washingtonpost.com": [17990], "was-3.umd.edu": [17263], "*.aacqa.gov.au": [231], "stat.drweb.com": [4783], "*.quickbase.com": [8304], "spectator.org": [15245], "www.wigle.net": [18274], "naturalskinshop.com": [11103], "diis.unizar.es": [17356], "*.nsm.uh.edu": [17315], "www.system76.com": [15758], "ocaml.org": [11612], "oneservices.bracknell-forest.gov.uk": [19016], "moovweb.com": [10582], "forum.hitbtc.com": [7420], "hi-tech.mail.ru": [9874], "www.cointrader.net": [3411], "www.topatoco.com": [16564], "login.constantcontact.com": [3592], "hipchat.com": [7414], "btcgreece.com": [1558], "www.damtp.cam.ac.uk": [17243], "jsis.washington.edu": [17291], "tchibo.com.tr": [15985], "editmysite.com": [5085], "rasende.dk": [13568], "www.jucy.co.nz": [8463], "events.msdn.microsoft.com": [10364], "coccoc.com": [3342], "www.deichmann.com": [4317], "sil.org": [14123], "nandos.com": [11029], "heute.de": [19800], "www.infopackets.com": [8113], "chuangye.bbs.taobao.com": [15952], "cryptocoinsnews.com": [3856], "update.openmpt.org": [11951], "noscript.net": [11438], "allods.mail.ru": [9874], "exclusions.oig.hhs.gov": [7062], "socialtheater.com": [15068], "*.dmslocal.com": [6453], "sanwork.com": [14294], "www.youm7.com": [18714], "buy.entrust.net": [5304], "jira.mongodb.org": [10554], "distilleryimage11.instagram.com": [8182], "panopticlick.com": [12363], "www.virt-manager.org": [17743], "nl.sitestat.com": [14885], "*.crashspace.org": [3761], "www.ohio-state.edu": [11761], "cdn.whmcs.com": [17906], "it.chaturbate.com": [3035], "www.inside.com": [8164], "my.yunos.com": [18749], "tescobank.com": [16136], "findnsave.nj.com": [10931], "mordoviya.rt.ru": [13469], "beta.rsaconference.com": [13454], "experimental.docker.com": [4616], "*.newzbin.com": [11351], "www.nhs.uk": [10913], "cam.ac.uk": [17243], "first.org": [5576], "s.skimresources.com": [14912], "plymouth.greenparty.org.uk": [6925], "realtech-vr.com": [13630], "www.engr.washington.edu": [17291], "www.net-safe.info": [11180], "core.hostdime.com": [7510], "cas.pdcnet.org": [12625], "ukrnames.com": [17126], "blogs.strategyanalytics.com": [15510], "www.freewebsitetemplates.com": [19197], "help.getpocket.com": [6579], "www.fosscon.us": [6070], "blog.mangolanguages.com": [9952], "rawgit.com": [13580], "rawstudio.org": [13583], "forum.nginx.org": [11374], "www.hipchat.com": [7414], "xiangqing.taobao.com": [15952], "www.hairsmize.com": [7166], "modelaircraft.org": [438], "www.eiskent.co.uk": [4919], "www.groton.org": [6966], "www.kde-look.org": [19461], "8.baidu.com": [1619], "www.zamg.ac.at": [18783], "*.redferret.net": [13673], "adsurve.com": [636], "winehq.org": [18352], "social.dw.de": [4090], "jobboerse.web.de": [18050], "staging.wordvine.sydney.edu.au": [19649], "www.roughtradegear.com": [13985], "www.europython.eu": [5409], "piwik.pixcept.de": [12735], "vfh.wustl.edu": [17993], "www.cimsasia.com": [9743], "www.cloudtrax.com": [3297], "ps.w.org": [17885], "www.clicktools.com": [3264], "scottevest.com": [14398], "vip.knet.cn": [8739], "dailyherald.com": [4111], "business.carphonewarehouse.com": [2861], "crpk.ornl.gov": [11693], "releases.wildfiregames.com": [18308], "vf.com": [3551], "www.bitcointoyou.com": [1986], "www.alien.net.au": [811], "fomori.org": [5988], "shop.moaf.org": [10481], "eureka.berkeley.edu": [17240], "mail.unizar.es": [17356], "wiwi.htwk-leipzig.de": [7114], "www.shareit.com": [14669], "www.thebodyshop.co.uk": [16250], "www.kantarworldpanel.com": [8786], "cdn.psychologytoday.com": [13189], "media.compete.com": [3519], "www.skynet.ie": [16210], "search.mywot.com": [10798], "vanguard.com": [19728], "r00tz.org": [13390], "wageningen.nl": [11132], "webmail.barvaux.org": [1685], "az698912.vo.msecnd.net": [10633], "golang.org": [6792], "www.alloscomp.com": [858], "studiumundbehinderung.kit.edu": [8797], "www.acrobat.com": [480], "api.recurly.com": [13652], "*.easyjet.com": [5025], "justhost.com": [8689], "plugins.smyl.es": [14141], "53.com": [5781], "discussions.zoho.com": [18884], "pkcsecurity.com": [12264], "ccsdlib-preprod.ccsd.cnrs.fr": [6195], "www.neustar.biz": [11280], "cartercenter.org": [2867], "wiiings.com": [18288], "www.privacy-handbuch.de": [13081], "filerio.in": [5794], "blog.discourse.org": [4545], "insight.bn-mclp.org": [2162], "jobs.crick.ac.uk": [19090], "alien.net.au": [811], "carecareersdevon.org.uk": [19040], "img1.linuxdeepin.com": [4302], "rws.maxcdn.com": [10091], "gatorchryslercllc.mycars.dealer.com": [4256], "banner.euroads.se": [5402], "thebodyshop.co.uk": [16250], "*.ujf-grenoble.fr": [16962], "www.mbsportsweb.ca": [9721], "eurexrepo.com": [5399], "code.wireshark.org": [18369], "cfsi.pgcdn.com": [12246], "101.taobao.com": [15952], "xmpp.net": [18525], "*.vtracy.de": [17867], "www.ce.jhu.edu": [16296], "vitalads.com": [17787], "www.pubkey.is": [13201], "www.cryptocointalk.com": [3855], "www.odevzdej.cz": [11725], "inet.se": [8087], "*.store.pgp.com": [12245], "androidguiden.idg.se": [7705], "forms.dundeecity.gov.uk": [4801], "lsbu.ac.uk": [9098], "pass.yandex.by": [18648], "s3.mediamatters.org": [10158], "www.havelockinvestments.com": [7243], "greenhouse.lotus.com": [9617], "docs.indymedia.org": [8085], "images.sankakucomplex.com": [19563], "secpriv.wusm.wustl.edu": [17993], "piwik.tutanota.de": [16851], "www.clevelandclinicmeded.com": [3236], "fluxbb.org": [5957], "*.asbestossafety.gov.au": [1243], "browserleaks.com": [2371], "www.greenserver.ch": [19228], "www.movie4k.org": [10636], "stateof.creativecommons.org": [3778], "firstclassmagazine.se": [5875, 5876], "blog.cnes.fr": [2634], "www.optionbit.com": [12075], "microsites.lincolnshire.gov.uk": [9364], "engagemedia.org": [5260], "www.damnsmalllinux.org": [4129], "prntscr.com": [19517], "www.picload.org": [12661], "labs.data.gov": [4175], "helpjuice.com": [7309], "www.equinix.com": [5333], "mydatapipe.com": [10803], "www.ysubookstore.com": [18743], "www.diygadget.com": [4587], "a.wattpad.com": [18006], "www.dzone.com": [4095], "dsp.hscic.gov.uk": [19264], "lists.linuxfoundation.org": [9412], "cryptocapital.co": [3867], "licensing.jamendo.com": [8502], "www.pypip.in": [13266], "www.draugiem.lv": [4742], "*.hanselman.com": [14396], "www.webclaim.net": [4894], "www.puma.com": [13227], "no.cloudflare.com": [3285], "www.pulpcentral.com": [12304], "lab.neos.eu": [10899], "*.airbnb.com.br": [749], "*.start.me": [15404], "infopaginas.com": [8114], "gitlab.labs.nic.cz": [11379], "hsdo.stanford.edu": [15383], "wiki.cyanogenmod.org": [3953], "ingdirect.com": [7768], "hjcms.de": [7071], "*.verizon.com": [17626], "mymail.asus.com": [357], "www.gravity.com": [6900], "eoft.eu": [4935], "*.stc.org": [15075], "artlebedev.ru": [1223], "prod01-piwik.firstlook.org": [5878], "summerinstitutes.stanford.edu": [15382], "js.revsci.net": [13840], "si.libreoffice.org": [9311], "www.house.resource.org": [13207], "www.pinboard.in": [12677], "leaserig.net": [9214], "democracynow.org": [4355], "spenden.correctiv.org": [3685], "requires.io": [13792], "sdc.countquest.se": [3709], "saas.harvard.edu": [7219], "www.confuzzled.org.uk": [3574], "www.aclu-wa.org": [255], "fightaging.org": [5785], "www.spotware.com": [15298], "*.techwebonlineevents.com": [16021], "stanfordhospital.org": [15386], "blogg.se": [2106], "www.datenspuren.de": [4219], "*.naver.net": [11112], "www.securitymouse.com": [14532], "acs-webmail.ucsd.edu": [16939], "smetrics.aclu.org": [256], "acuityplatform.com": [505], "jabber.at": [8473], "secure.backblaze.com": [1595], "www.pace2race.com": [12310], "nordnet.se": [11479], "fonts.sbnation.com": [14079], "www.yandex.com": [18651], "privacyfoundation.de": [6557], "cdn.spiegel.de": [15272], "mobility.vutbr.cz": [17522], "*.atlassian.com": [1321], "status.livechatinc.com": [9480], "www.mailpoet.com": [9879], "omarandwill.com": [11788], "cdn.livefyre.com": [9508], "*.getchute.com": [6566], "ac.els-cdn.com": [5183], "coham.osu.edu": [11760], "tepamine.com": [4057], "www.varusteleka.fi": [17571], "media.disquscdn.com": [4570], "business.t-mobile.com": [15772], "specifications.freedesktop.org": [6126], "feefighters.com": [5731], "www.levoleague.com": [9276], "*.api.livestream.com": [9514], "www.utbm.fr": [19724], "hidekibin.hidekisaito.com": [7393], "sdc.fiscal.treasury.gov": [16704], "admin.fedoraproject.org": [5726], "xiaozu.fanli.com": [5655], "lists.openhatch.org": [11941], "www.ikea.com": [7959], "newswhip.com": [11332], "trekaroo.com": [16708], "tips.fbi.gov": [5708], "*.cftc.gov": [3482], "bitcurex.com": [1987], "www.pdf.yt": [12235], "3.*.wdfiles.com": [18294], "commerce.us.reuters.com": [13836], "www.walmart.com": [17964], "www.letsencrypt.org": [9264], "did.hscic.gov.uk": [19264], "sp.lenta.ru": [19356], "crossrider.com": [3817], "sun.onthe.io": [11890], "www.nomachine.com": [11437], "mtoza.vzaar.com": [17883], "kiks.yandex.com.tr": [18649], "www.comsecuris.com": [3545], "www.retrofestive.ca": [13827], "rs-linkz.info": [13451], "flixster.com": [5933], "ea.twimg.com": [16877], "status.haskell.org": [7229], "andaluciapropertyrentals.com": [996], "images.travelpod.com": [16693], "cdn.colocationamerica.com": [3435], "aldi.fr": [299], "stadt-zuerich.ch": [15366], "www.borne.nl": [11132], "www.inet.se": [8087], "cdkeys.com": [2916], "inverse.ca": [8315], "buy.norton.com": [11505], "baylor.edu": [1706], "*.samba.com": [14070], "londonstockexchange.com": [9577], "tickets.com": [16425], "www.cumbriapartnership.nhs.uk": [10913], "news.33option.com": [103], "*.schoolloop.com": [14364], "try.diffoscope.org": [4463], "cert.pl": [2577], "pub.lmmp.nasa.gov": [10869], "internetstaff.com": [8285], "ebiz.sfn.org": [15077], "*.ticketmaster.co.uk": [16421], "blog.silktide.com": [14796], "openbittorrent.com": [11923], "ukpayments.org.uk": [16976], "tuki.kapsi.fi": [8791], "www.dvatril.cz": [4097], "dreamwidth.org": [4756], "*.louisville.edu": [17320], "regulatory.usc.edu": [17278], "www.marc.info": [9711], "o2.cz": [16076], "huntcal.com": [7622], "elafnettv.com": [5139], "support.transifex.com": [16669], "webmail.impulse.net": [8021], "www.jbeekman.nl": [8415], "etrade.com": [5391], "www.mndigital.com": [10160], "s4.reutersmedia.net": [16381], "www.zyvoxassist.com": [18771], "www.dm-mailinglist.com": [4050], "catalysttg.com": [2898], "de.mouseflow.com": [10624], "lovingsupport.nal.usda.gov": [17209], "www.westoxon.gov.uk": [18221], "*.admitad.com": [610], "www2.toyota.es": [16620], "*.jodohost.com": [8607], "www.demonsaw.com": [4359], "*.eukhosting.net": [4980], "www.kuro5hin.org": [9043], "autotools.io": [1433], "www.directbox.biz": [4529], "yroo.com": [18741], "www.openvz.org": [11991], "www.myfonts.com": [10758], "passwortwechsel.hslu.ch": [7583], "lists.fit.edu": [5942], "www.bgpstream.com": [1513], "www.irssi.org": [8359], "cryptonomicon.com": [3885], "www.facebook.fr": [5623], "rylwarfare.net": [13483], "*.oculu.com": [11720], "netloan.cardiff.gov.uk": [19039], "dfri.se": [4437], "www.weather.yandex.kz": [18652], "docs.pnp4nagios.org": [12275], "sitola.cz": [14887], "payments.n-kesteven.gov.uk": [10856], "grosskunden.bahn.de": [1617], "www.ktk.de": [8753], "www.ztunnel.com": [18767], "manager.submittable.com": [19636], "zakovska.skolaonline.cz": [19598], "static3.startnext.com": [15412], "viaforensics.com": [17658], "www.nccih.nih.gov": [11052], "cdn.scriptfodder.com": [14421], "onepanel.digitalpacific.com.au": [4496], "www.knsaber.com": [16550], "www.manchester.gov.uk": [9944], "mail.scs.uiuc.edu": [16956], "static.fas.harvard.edu": [7219], "foundingfathers.info": [6079], "archives.somethingawful.com": [15130], "blah.im": [2057], "apt.securelist.com": [14492], "pres.sso.bluewin.ch": [2157], "ssls.com": [14181], "mail.sans.org": [14072], "www.peersm.com": [12524], "your.burnley.gov.uk": [2444], "www.pinkpaislee.com": [12693], "store.xkcd.com": [19786], "www.kungfunation.com": [9037], "bugs.vestacp.com": [17653], "primarycare.nhs.uk": [10913], "remnux.org": [13414], "mysql2.cesky-hosting.cz": [19051], "certs.godaddy.com": [6773], "*.beautybar.com": [1741], "www.webtrekk.com": [18170], "lipetsk.rt.ru": [13469], "www.reaganlibrary.gov": [19541], "legitbs.net": [9233], "safebrowsing-cache.google.com": [6834], "www.flinq.de": [5922], "dshs.state.tx.us": [16151], "gl.libreoffice.org": [9311], "iuf.alternatifbilisim.org": [881], "www.personaldataecosystem.org": [12581], "thetoadfly.com": [16523], "cl.ly": [3206], "support.click-sec.com": [3241], "cms.winoptions.com": [18358], "www.crowdculture.se": [3820], "stat100.ameba.jp": [926], "sslcdce.internapcdn.net": [8254], "gamebase.dealspwn.com": [7549], "cpubenchmark.net": [2650], "bernalbucks.org": [1794], "cards.dbs.com.hk": [4010], "delecorp.delaware.gov": [15420], "scooter-attack.com": [14390], "sinnfein.ie": [14851], "images.yandex.by": [18648], "fastmail.fm": [5688], "www.devdocs.io": [4417], "www.timesofmoney.com": [16466], "cotsworld.objective.co.uk": [19454], "*.kirkusreviews.com": [8917], "www.openoffice.org": [1084], "www.trollingeffects.org": [16756], "*.osuosl.org": [12099], "www.tumutanzi.com": [16828], "*.itex.com": [8390], "familie.bayern.aok.de": [317], "europe.redhat.com": [13675], "ticker.mobile.de": [19403], "www.literotica.com": [9467], "www.poste.it": [12965], "photos-g.ak.fbcdn.net": [5700], "secure.netpr.pl": [11203], "www.guardian.co.tt": [6999], "www.openingscience.org": [12037], "www.osumarion.osu.edu": [11760], "www.gumroad.com": [7020], "cilkplus.org": [3135], "www.shkspr.mobi": [14116], "www.theapp.voicelessonstotheworld.com": [11300], "gentoo.ussg.indiana.edu": [8063], "www.perlentaucher.de": [12578], "origin-www.nbcudigitaladops.com": [10875], "svn.mozdev.org": [10647], "craigsmith.net": [19088], "scheduleonce.com": [14349], "www.schuilenburg.org": [14368], "www.unglue.it": [17163], "keepallthethings.com": [8839], "moana-surfrider.com": [10482], "stadt.zh.piratenpartei.ch": [12284], "imf.org": [7757], "www.nowwhere.com.au": [19443], "media.razoo.com": [13588], "netpartnerstudent.wustl.edu": [17993], "s.webtrends.com": [18171], "www.pinocc.io": [12696], "www.zenmate.com": [18818], "www.hinckleyandbosworthonline.org.uk": [7413], "qubes-os.org": [13344], "bromley.objective.co.uk": [19454], "forum.mandriva.com": [9947], "tpssl.weibo.cn": [14844], "pin.aliyun.com": [821], "www.pol.ulaval.ca": [17229], "*.cdnme.se": [2922], "employment.uow.edu.au": [17350], "redditmedia.com": [13691], "secure.fogcreek.com": [5980], "massdrop.com": [10050], "st.directadvert.ru": [4524], "www.nwprogressive.org": [11590], "www.somevid.com": [15131], "www.telusmobility.com": [16103], "antifraud.drweb.com": [4783], "www.cleverbridge.org": [3240], "www.mcc.gov": [19388], "xenogamers.org": [18563], "www.garygoddard.com": [6803], "creativecdn.com": [3782], "a5.lscdn.net": [9102], "www.xserver.*.jp": [18592], "glype.com": [6753], "victoriassecret.com": [17672], "www.diplomaframe.com": [3129], "megapath.com": [10229], "yourbittorrent.com": [18723], "directories.piers.com": [12256], "appsec.aarp.org": [234], "www.freelancersunion.org": [6177], "telepathy.freedesktop.org": [6126], "btunnel.com": [1581], "gateway.ipfs.io": [8343], "www3.eduid.cz": [5097], "ihouseonline.berkeley.edu": [17240], "www.sourcedna.com": [15171], "www.auctionthing.net": [1345], "github.io": [6680], "tls.so": [15825], "www.gsfacket.se": [6990], "timezero.ru": [16458], "www.bikeability.org.uk": [18998], "spreadshirt.no": [15300], "www.mail.ru": [9874], "sourcegraph.com": [15182], "cloud.quickline.com": [19530], "standaard.be": [15379], "hounslow.greenparty.org.uk": [6925], "www.ebuyer.com": [5042], "secure.leaseweb.com": [9215], "www.theaj.co.uk": [1162], "secureimg2.allposters.com": [835], "suffolkcoastalandwaveney.firmstep.com": [19183], "www.ruby-forum.com": [14016], "es.redhat.com": [13675], "www.888173.net": [200], "qisserver.htwg-konstanz.de": [7113], "www.ozon.ru": [12199], "*.gnome.org": [6354], "www.mirakar.com": [10439], "www.intentmedia.co.uk": [8227], "secure.skype.com": [14938], "hardwarebug.org": [7205], "connect.facebook.net": [5619], "freelancer.co.uk": [6176], "*.launchrock.com": [9168], "www.tvnzzshop.ch": [19450], "www.wallabag.org": [17960], "askjane.stanford.edu": [15383], "mirror.thecthulhu.com": [16334], "tokage.celartem.com": [2929], "www.imagemagick.org": [7978], "e-cosm2015.osu.edu": [11760], "www.usweeklysubscriptions.com": [17418], "abhayagiri.org": [416], "upc-cablecom.ch": [19716], "www.specimens.cancer.gov": [2805], "ltms.ncl.ac.uk": [10884], "webmail.ucsd.edu": [16939], "bringthegig.com": [2333], "shopinfo.net": [14726], "www.pornel.net": [12930], "hipmunk.com": [7416], "beta.mugenmonkey.com": [10689], "www.diasporabr.com.br": [4449], "odee.osu.edu": [11760], "quantamagazine.org": [13336], "diverse.direct": [4581], "*.jrrt.org.uk": [8632], "www.youtube.jo": [18709], "derpy.me": [4382], "arris.com": [1214], "ht.vc": [7587], "contentdn.net": [3613], "pipejump.recurly.com": [13652], "me.sailthru.com": [14243], "spreadshirt.nl": [15300], "myreslife.wustl.edu": [17993], "git.marmotte.net": [10027], "realvnc.com": [13627], "lovettpublishinghouse.com": [9633], "ripe.net": [13895], "techlive.adobe.com": [615], "dc2.learningcast.jp": [9212], "biblegateway.com": [1842], "www.qabel.de": [13298], "otalliance.org": [11680], "www.portal.scot.nhs.uk": [10913], "www.wildlifeofyourbody.org": [1768], "webmetrics.com": [18133], "xparkmedia.com": [18582], "*.bekb.ch": [19333], "adrxmedia.com": [17540], "*.alice-dsl.de": [810], "ronna.apan.org": [329], "www2.charterbusiness.com": [3022], "www.quickhash.com": [13358], "*.yahoo.net": [18637], "www.hostica.com": [7523], "*.thestranger.com": [16315], "www.2ton.com.au": [89], "www.cathaypacificcargo.com": [2904], "kaseya.com": [8802], "nigms.nih.gov": [11052], "mcafee.com": [10114], "discussions.citrix.com": [3178], "worlddab.org": [18448], "laneblog.stanford.edu": [15383], "go.forgerock.com": [19189], "www.porteus-kiosk.org": [12936], "www.mcb.net": [9966], "wauland.de": [18007], "www.mapquestapi.com": [9970], "libcom.org": [19361], "go.smashfly.com": [15003], "webprod.admin.uillinois.edu": [16960], "pass.etao.com": [4973], "interdiscount.ch": [3645], "www.cindercooks.com": [3140], "www.claudiodangelis.com": [3220], "girdle-assets.net-a-porter.com": [11171], "mochtu.de": [10510], "inspiredgifts.unicefusa.org": [17182], "helpdesk.pcc.nhs.uk": [10913], "microspot.ch": [3645], "cbe.osu.edu": [11760], "myresearch.uillinois.edu": [16960], "parentportal.enfield.gov.uk": [5258], "www.ezding.com.tw": [5536], "git.vpsfree.cz": [19743], "www.cloudfoundry.org": [3299], "www.argosonline.es": [1186], "media.andersonvalleypost.com": [4988], "asset-0.java.net": [8525], "slidedeck.com": [14960], "docs.intercom.io": [8243], "pavpanchekha.com": [12463], "www.intersango.com": [8294], "resilience.engineering.osu.edu": [11760], "moodle.unizar.es": [17356], "xorg.freedesktop.org": [6126], "staff.rice.edu": [13869], "tools.sli-systems.com": [14132], "crnt.osu.edu": [11760], "home.live.com": [9483], "securityresponse.symantec.com": [15715], "research.ibm.com": [7675], "www.kth.se": [8752], "www.sungardhe.com": [15593], "koding.com": [8953], "votewatch.eu": [17846], "nanxie.taobao.com": [15952], "www.homementors.com": [7472], "android-api.fitbit.com": [5887], "lokun.is": [9565], "pastemonitor.com": [12440], "iuma.unizar.es": [17356], "thepiratebay-proxylist.org": [16227], "clyp.it": [3326], "leginfo.legislature.ca.gov": [2746], "www.kgnb.am": [8721], "www.claimformsplus.com": [3208], "highland.oneclickdigital.eu": [19457], "www.copiny.com": [3652], "omniture.com": [11803], "i.o2active.cz": [16076], "jiaofei.jd.com": [8423], "messages.easymail.ca": [5026], "resharper-support.jetbrains.com": [8559], "plos.org": [12271, 13206], "www.devon-cornwall.police.uk": [4429], "igl.net": [2877], "crm.leboncoin.fr": [19351], "www.kickflip.io": [8880], "www.questcomp.com": [13352], "mail.exratione.com": [5473], "*.wp.com": [18429], "lide.cz": [9326], "www.pde.cc": [12581], "*.dane.verisignlabs.com": [17624], "www.youvisit.com": [18711], "maymay.net": [10105], "www.plati.ru": [12786], "*.visiblegains.com": [17771], "affiliatezone.doteasy.com": [4701], "macfound.org": [9818], "*.hackers.fi": [7147], "www.rvlution.net": [13481], "*.kbb.com": [8844], "payment.tnaflix.com": [16518], "fuscia.info": [6272], "mccdn.qcloud.com": [13301], "*.gostorego.com": [9852], "www.ghash.io": [6329], "support.embed.ly": [5197], "www.torusknot.com": [16596], "yar.fruct.org": [5595], "storminternet.co.uk": [15497], "www.m-vg.de": [9688], "s.w-x.co": [17884], "tubemogul.com": [16814], "*.roloil.com": [13962], "dot.swiss": [19126], "at.on.aol.com": [321], "da.libreoffice.org": [9311], "codesearch.chromium.org": [3119], "static.bitvc.com": [1949], "downloads.realviewtechnologies.com": [13634], "pre-software-security.sans.org": [14072], "athena10.mit.edu": [9749], "www.swisssign.com": [12949], "io.playstation.com": [12795], "www.affutd.com": [696], "cdn.citizenweb.io": [3173], "jobs.cpanel.com": [2651], "consult.highland.gov.uk": [19249], "hdlab.stanford.edu": [15384], "1337x.to": [31], "connectpros.com": [13018], "wiki.teamfortress.com": [19664], "liftshare.com": [9336], "slotsgaminator.com": [6446], "www.snel.com": [15034], "1177.se": [18], "manchester.objective.co.uk": [19454], "amazon.it": [917], "mycharity.ie": [10751], "*.koreatimes.co.kr": [8987], "*.morningstar.com": [10596], "apps.liveperson.com": [9494], "ammec.de": [309], "www.openwebmail.org": [11913], "swartzfiles.com": [15679], "www.reelhd.com": [13710], "www.chillingeffects.org": [3079], "www.babbel.com": [1590], "image10.bizrate-images.com": [2033], "ensv.dict.cc": [4455], "eclipse.github.com": [6680], "easports.com": [4868], "ndpeeps.mobigum.com": [10489], "es-es.facebook.es": [5623], "*.fc2.com": [5556], "*.checkmarx.com": [3050], "www.online-go.com": [11868], "www.allizom.org": [856], "i3.code.msdn.microsoft.com": [10364], "www.liftshare.com": [9336], "www.ams-ix.net": [983], "www.myplaydirect.com": [10774], "kraxel.org": [9007], "clockworkmod.com": [3273], "informer.com": [8126], "static.wipmania.com": [17912], "cancerresearchuk.org": [19035], "www.robotshop.com": [13928], "mail.ya.ru": [18626], "domains.jino.ru": [8575], "houdask.tmall.com": [19684], "ple.com.au": [12269], "a2.twimg.com": [16877], "directorystore.com": [4533], "preprod.www.hispeed.ch": [19716], "lfhair.com": [9075], "violetdarkling.com": [17727], "worldtour.kartfighter.com": [8800], "ssl-sl-retargeting.adsonar.com": [539], "www.elsteronline.de": [5188], "coursetalk.com": [3718], "*.libav.org": [9291], "*.imimg.com": [8061], "*.meetrics.de": [10218], "i-share.carli.illinois.edu": [17258], "www.fonts.com": [5992, 5993], "faaaccess.ed.gov": [4889], "thetechnoskeptic.com": [16317], "onlineforms.northyorks.gov.uk": [19440], "support.jlist.com": [8442], "www.ninite.com": [11416], "premium.youmail.com": [18706], "chroniclevitae.com": [3123], "www.spacecomm.nasa.gov": [10869], "antiphishing.org": [1066], "www.dollarshaveclub.com": [4642], "appiehein.com": [1116], "www.sony-europe.com": [15141], "cdromland.nl": [2567], "tar-jx.bz": [15959], "russian.rt.ru": [13469], "newsvine.com": [11348], "img.marvelstore.com": [10040], "www.bol.de": [16171], "bitmi.de": [2434], "*.simpli.fi": [14828], "www.warwickshire.police.uk": [17986], "www.intevation.org": [8297], "*.bloomberg.net": [2118], "www.elgiganten.se": [5162], "www.next.co.uk": [11359], "kostroma.rt.ru": [13469], "www.abdussamad.com": [406], "www.railscloud.de": [13530], "areweslimyet.com": [1177], "ib.mookie1.com": [10576], "www.be.ch": [19648], "cdn-static-secure.liverail.com": [9496], "necessaryandproportionate.net": [11128], "alumni.thm.de": [15811], "www.focusonlearningcenter.com": [5976], "icmail.com": [7687], "vh3.vutbr.cz": [17522], "cms.gameflycdn.com": [6420], "codesion.com": [3287], "kyleschaeffer.com": [2132], "www.buffered.io": [2404], "hcdapreview.usc.edu": [17278], "www.n-joy.de": [10855], "apps.community.freescale.com": [6183], "www.firsttechfed.com": [5871], "userlike.com": [17436], "teststackoverflow.com": [15359], "ngvpn36.nvidia.com": [10985], "scan.botscanner.com": [2239], "img.nber.org": [11077], "ux.joomla.org": [8627], "trakk247.com": [16659], "www.hashnest.com": [7228], "batransandbareports.voa.gov.uk": [19739], "unite.opera.com": [12050], "cdn.joomla.org": [8627], "bitcoinarmory.com": [1976], "ar.atwola.com": [318], "www.maine.gov": [9894], "profile-photos.hackerone-user-content.com": [7142], "bolehvpn.net": [2188], "omegaup.com": [11792], "redbullracingadmin.kartfighter.com": [8800], "bugs.exherbo.org": [5493], "cs-cart.com": [2661], "i3.sndcdn.com": [15032], "ntacdn1.net": [11553], "www.cdn.newsvine.com": [11348], "local-www.nlm.nih.gov": [11052], "media2.bazaarvoice.com": [1707], "buyonline.rackspace.co.uk": [13499], "*.globalsign.eu": [6718], "www.gfmtrader.com": [6325], "parents.wustl.edu": [17993], "ipfs.io": [8343], "www.canvasndecor.com": [2815], "morello.se": [10589], "profile.theguardian.com": [16288], "*.rollingstonesubscriptions.com": [13961], "bnz.co.nz": [1534], "www.aarhus.dk": [392], "coindl.com": [3392], "www.conferences.uillinois.edu": [16960], "m.google.com.*": [6837], "*.nocdirect.com": [11448], "altng.ucsd.edu": [16939], "*.factoryexpohomes.com": [5627], "nodpi.org": [11435], "*.healthdirect.gov.au": [7263], "getasgard.com": [6583], "api.gem.co": [6512], "www.goldsborowebdevelopment.com": [6817], "www.atom.io": [1324], "pantheos.com": [12374], "mountsinai.org": [10618], "kochanski.mysql.cesky-hosting.cz": [19051], "empflix.com": [5213], "www.ahorroentinta.com": [16525], "forum.ovh.co.uk": [12173], "user.hao123.com": [7177], "gorod.yandex.ua": [18656], "www.paypalgivingfund.org": [12484], "r7.tv2.dk": [15881], "www.fsfla.org": [5599], "px.owneriq.net": [12186], "cdn.thesn.net": [16351], "aeryon.com": [691], "marinsoftware.com": [9997], "demandbase.com": [4342], "itau.com.br": [8386], "www.voicerepublic.com": [17822], "www.bctr.cornell.edu": [3676], "edfenergy.com": [4890], "osa.org": [12066], "bet555.eu": [1812], "ness.ncl.ac.uk": [10884], "2.vgc.no": [17484], "krystal.co.uk": [9024], "app.gmat.economist.com": [5060], "*.hs.llnwd.net": [9357], "www.ijreview.com": [7747], "dialogue.openboard.info": [10871], "www.bt.com": [1551], "ripe66.ripe.net": [13895], "jura.uni-potsdam.de": [17333], "duc.wustl.edu": [17993], "de-cix.net": [4022], "engineering.illinois.edu": [17258], "www.waterfoxproject.org": [18001], "bsi-fuer-buerger.de": [5711], "expedia.com": [5503], "*.devever.net": [4421], "tampabaysod.com": [15938], "piwik.bytemark.co.uk": [2489], "thegreatdiscontent.com": [16285], "www.site.ya.ru": [18626], "stubhub.de": [15534], "www.lastlog.de": [9164], "blog.guetersloh.freifunk.net": [6192], "*.sugester.pl": [15583], "elearning.rhb.ch": [13857], "data.otaserve.net": [19470], "mypostbusiness.ch": [12949], "swsblog.stanford.edu": [15383], "*.mentor.com": [10264], "www.cloudaccess.net": [3278], "tsp.gov": [19703], "www.pdr.leeds.ac.uk": [17318], "*.wvu.edu": [18213], "www.impulse.net": [8021], "muscleandstrength.com": [10708], "instantlocatedemo.loc-aid.com": [9535], "www.lichtblick.de": [9325], "creativecommons.net": [3778], "campaignforosu.org": [12098], "secure.hslda.org": [7099], "*.championcasino.net": [2989], "clp.ly": [3923], "wiki.earthdata.nasa.gov": [10869], "customer.pdc.prd.xfinity.com": [19784], "movabletype.org": [10627], "*.builtwith.com": [2413], "secure.eu.playstation.com": [12795], "as.on.aol.com": [321], "debekijkerie.nl": [4244], "*.golfdigest.com": [6823], "www.kayak.com": [8823], "vn.norton.com": [11505], "teamintraining.org": [16002], "www.revosec.ch": [13850], "chinapaymentservices.com": [3082], "blog.23andme.com": [74], "p4.focus.de": [5974], "cbi.boldchat.com": [2187], "issues.openmandriva.org": [11956], "*.mypayquake.com": [12470], "www.flightglobalshop.com": [5921], "donateinmemory.cancerresearchuk.org": [19035], "www.milwaukeemakerspace.org": [10402], "sharedfacilities.stanford.edu": [15383], "dreamsolution.nl": [4753], "proxy.piratenpartij.nl": [12708], "heartbleed.com": [7276], "trafficjunky.net": [16648], "www.studentchaptergrants.acs.org": [929], "spring.org.uk": [15304], "menpiao.jd.com": [8423], "aps.org": [932], "code.highcharts.com": [7404, 7405], "*.civicscience.com": [3201], "forms.dudley.gov.uk": [4795], "omniture.nvidia.com": [10985], "www.glasscraftexpo.com": [6700], "static.truckingunlimited.com": [16765], "*.crn.com": [2659], "*.xg4ken.com": [18570], "5kbhkort.kk.dk": [8730], "paste2.org": [12438], "www.dti.ulaval.ca": [17229], "market.douban.com": [4707], "ak2.static.dailymotion.com": [4125], "*.loanscience.com": [9531], "filmy.panoptykon.org": [12365], "tnaflix.com": [16518], "leedsbuildingsociety.co.uk": [9223], "www.securecode.com": [10052], "productvisio.com": [13125], "live.startmail.com": [15410], "registrace.seznam.cz": [14648], "asset-d.soupcdn.com": [15167], "www.twrp.me": [15891], "pastebin.com": [12443], "*.swordfishdc.com": [15707], "boutique.liberal.ca": [9294], "www.tcs.ch": [19663], "snap.licdn.com": [9085], "coyote.srv1.oms.eu": [11637], "bloadr.com": [2081], "starrez.com": [15394], "nocworx.nexcess.net": [11356], "dyn.webtraffic.se": [18167], "www.niveusluna.org": [9670], "cloud.datapipe.com": [4212], "c.sankakucomplex.com": [19563], "storage.evozi.com": [5469], "think.usc.edu": [17277], "www.kathrein.de": [8817], "asctrust.com": [346], "kernel-recipes.org": [8856], "*.getty.edu": [6619], "rudloff.pro": [14024], "investors.godaddy.net": [6772], "www.ar.ch": [19648], "www.ubmaviation.com": [16927], "smart.ly": [14985], "zuche.jd.com": [8422], "grillingishappiness.com": [6956], "gus-humsci.stanford.edu": [15383], "www.iconfinder.com": [7921], "portal.cp.pt": [3744], "consecur.de": [3548], "bhmc.tmall.com": [19684], "thecreatorsproject.vice.com": [17667], "it.uu.se": [17074], "blackbaud.com": [2049], "achenglab.stanford.edu": [15383], "*.fender.com": [5749], "bittrex.com": [2025], "ghc.haskell.org": [7229], "ep2015.europython.eu": [5409], "www.anon-ib.su": [1039], "s-media-cache-ec1.pinimg.com": [12691], "*.geccdn.net": [6490], "seomon.com": [19582], "wayf.switch.ch": [15699], "www.opendz.org": [11933], "*.advertserve.com": [656], "www.vdc-sy.org": [2945], "si.rgstatic.net": [13422], "netdoktor.se": [11223], "www.refer.ly": [13716], "store.sony.com.mx": [15150], "www.gpg4win.org": [6875], "www.lendeavor.com": [9245], "*.bytelove.de": [2490], "openhome.alipay.com": [817], "rackspace.co.za": [13500], "dn.mail.ru": [9874], "www.tiltedwindmillpress.com": [16449], "www.invizbox.io": [8328], "ceneo.pl": [2936], "etherpad.fr": [19162], "www.xapo.com": [18541], "www.pccasegear.com": [12221], "uglymugs.ie": [17117], "bosso.ikoula.com": [7963], "envirotrend.com.au": [5309], "www.cgmarketingsystems.com": [2977], "cdn-cf.mywot.net": [10798], "frys.com": [6236], "gdata.de": [6293], "mailoo.org": [9888], "afiestas.org": [706], "www.bleep.com": [2065], "server1.nimzone.com": [11410], "7terminals.com": [197], "nuclearblast.de": [11567], "*.tvlim.com": [15885], "www.bussit.turku.fi": [19706], "css.redblue.de": [13680], "gawain.websanity.com": [18082], "loa.org": [9527], "arqbackup.com": [1210], "apps.grad.uw.edu": [17077], "www.fewo-mehrtens.de": [5764], "a.tcimg.net": [15794], "www.ampatico.com": [980], "phihold.be": [12619], "auto-verkaufen.mobile.de": [19403], "auth.uillinois.edu": [16960], "www.classes.osu.edu": [11760], "duellspiele.web.de": [18050], "img.tenpay.com": [16114], "securem.ar.ikea.com": [7959], "exist.de": [4994], "www.united-internet.de": [17205], "www.sozwes.htwk-leipzig.de": [7114], "subscription.mims.com": [9743], "www.dailykos.com": [4117], "www.edihealth.net": [4894], "lewisham.greenparty.org.uk": [6925], "www.librarything.com": [9305], "new.zataz.com": [18801], "*.glassdoor.com.au": [6701], "www.davidlazar.org": [4227], "www.feed2js.org": [5732], "*.pcmd.ac.uk": [12536], "communityservice.wustl.edu": [17993], "bww.com": [888], "citizen.org": [13208], "portal.hud.gov": [17018], "www.verisign-japan-domain.com": [17623], "funio.com": [6265], "www.1f0.de": [58], "www.cstatic-images.com": [3900], "telecolumbus.com": [16073], "static.bia2.com": [1838], "stc.org": [15075], "*.vk.se": [17492], "www.f2.htw-berlin.de": [7112], "www.cam.illinois.edu": [17258], "coloradoan.com": [3444], "hr-innovation.htwk-leipzig.de": [7114], "opendata.camden.gov.uk": [2772], "tickets.puppetlabs.com": [13232], "radsafety.wustl.edu": [17993], "7search.com": [195], "advconversion.com": [652], "www.aruc.rlt.ulaval.ca": [17229], "status.asmallorange.com": [214], "www.ucommand.com": [17107], "www.tpc.com": [15849], "login.wmtransfer.com": [18076], "www.andover.edu": [12623], "365ticketsscotland.com": [117], "www.sec.escapistexpo.com": [16188], "*.pbase.com": [12213], "*.talkingphonebook.com": [9538], "undergrad.cs.umd.edu": [17263], "110.alipay.com": [817], "www.deb.li": [4267], "sport.uni-ulm.de": [19715], "pokerstars.com": [19503], "admissions.valeofglamorgan.gov.uk": [17532], "talkingpoint.leedsbuildingsociety.co.uk": [9223], "www.b3n.org": [1487], "n.thestar.com": [16575], "support.returnpath.net": [13834], "www.gemeenteberkelland.nl": [11132], "factoryhomesale.com": [5627], "*.webspectator.com": [18089], "whoshiring.io": [18269], "*.123-reg.co.uk": [22], "red-dove.com": [13656], "rogueamoeba.com": [13949], "www.jazzy.id.au": [8537], "www.sitetagger.co.uk": [14873], "www.dslshop.vodafone.de": [17814], "intranet.nes.scot.nhs.uk": [10913], "www.cfa.harvard.edu": [7219], "*.arbitrary.ch": [1153], "*.mailchimp.com": [9876], "billdesk.com": [1876], "www.consul.io": [3595], "marketplace.ricoh.com.sg": [13879], "jamesvillas.co.uk": [18490], "fasttrack.va.gov": [17019], "www.helsingebilpleje.dk": [7311], "*.storify.com": [15496], "fprnt.com": [6090], "medocmall.co.uk": [10201], "*.net-results.com": [11179], "www.t-com.sk": [16088], "*.rakdigital.co.uk": [13485], "www.verlagsherstellung.de": [7114], "irma.sydney.edu.au": [19649], "img.chefkoch.de": [3058], "www.checkmarx.com": [3051], "*.fmh.de": [5833], "loggly.com": [9554], "www.doesnotwork.eu": [4632], "www.ovpn.se": [11688], "www.vpnreactor.com": [17503], "*.freshdesk.com": [6203], "blog.haskell.org": [7229], "www.secondlife.com": [14462], "auth.opera.com": [12050], "sandstorm.io": [14283], "realtimestats.com": [13626], "cloudforge.com": [3288], "www.torrentr.eu": [16583], "www.customerlobby.com": [3940], "softserve.8ch.net": [203], "wtgrants.wellcome.ac.uk": [19752], "www.philosophersguild.com": [12624], "webmail.1and1.com": [51], "unitednuclear.com": [17207], "app-uk2.resrc.it": [13599], "youngminds.org.uk": [18717], "philosophersguild.com": [12624], "blog.eloqua.com": [5179], "service.velaro.com": [17595], "blog.ansibleworks.com": [18428], "www.aggregateknowledge.com": [726], "www.pendle.gov.uk": [12532], "sharefilesupport.com": [14665], "patternsinthevoid.net": [12459], "myplatinumpak.com": [12787], "dietrolldie.com": [18428], "www.wtfismyip.com": [17933], "community.hide.me": [7391], "jobs.uif.uillinois.edu": [16960], "redmine.enaza.ru": [5230], "ccs.wustl.edu": [17993], "static.ucsc.edu": [17305], "neocities.org": [11148], "book.jd.com": [8423], "bitservicex.com": [4883], "jabbr.net": [8472], "wiki.associatie.kuleuven.be": [8816], "infocentre.dsi.cnrs.fr": [6195], "cityoflondon.police.uk": [3194], "alphadominche.com": [868], "*.vimeocdn.com": [17717], "docs.opensvc.com": [11972], "www.smackcoders.com": [14978], "admin.testandtarget.omniture.com": [11803], "www.automx.org": [1430], "aok-gesundheitspartner.de": [317], "help-en-cn.nike.com": [11401], "r.qq.com": [13285], "www.ox.cx": [7641], "learn.jquery.com": [8451], "myhearstnewspaper.com": [7272], "www.linuxdays.cz": [9409], "ergonomics.osu.edu": [11760], "www.bugmenot.com": [2405], "cdn.head-fi.org": [7254], "whois.icann.org": [7681], "careerfoundry.com": [2844], "*.push.io": [13248], "jobs.arstechnica.com": [3551], "constructor.maps.yandex.com.tr": [18649], "media.villahostels.com": [17713], "nulab-inc.com": [11572], "*.usfsp.edu": [17275], "*.globalsign.com": [6718], "www.weboolu.com": [18137], "its-proposals-dev.ucsc.edu": [17305], "*.gamestarmechanic.com": [6441], "c-spanvideo.org": [2494], "*.webd.am": [18058], "www.kilometrikisa.fi": [8888], "www.insightexpressai.com": [8172], "portal.nitrosell.com": [11427], "www.abine.com": [419], "tribecafilminstitute.org": [16728], "isst.fraunhofer.de": [6112], "*.laprox.com": [9154], "aldi.co.uk": [299], "www.github.com": [6680], "www.sertifikatai.lt": [14597], "www.htw-berlin.de": [7112], "1u1s.de": [67], "helix.apache.org": [1086], "ca.isohunt.com": [8372], "ehs.osu.edu": [11760], "artifacts.alfresco.com": [802], "*.recalls.gov.au": [13123], "oneserver.cz": [11645], "cathaypacific.com": [2904], "www.mysubwaycard.com": [19418], "www.feral.io": [5751], "www-thphys.physics.ox.ac.uk": [17271], "www.levesoninquiry.org.uk": [9270], "wiki.debianforum.de": [4276], "translate.gajim.org": [6406], "cdn2.iconfinder.com": [7921], "www.thefastandthefurious.com": [5683], "us.wa.ui-portal.de": [16952], "tw.carousell.com": [2860], "vsix.whmcs.com": [17906], "project.webplatform.org": [18079], "blog.ebuyer.com": [5042], "www.tacar.org": [15782], "press.parsely.com": [12413], "upxth.com": [17406], "store-images.comixology.com": [3465], "*.asic.gov.au": [348], "epay.bg": [4944], "www.theprivacyblog.com": [16231], "www.godpraksis.no": [6802], "www.virtkick.com": [17745], "www.soros.org": [11910], "de.manjaro.org": [9958], "lkjs.zamimg.com": [18782], "www.fas.harvard.edu": [7219], "www.neooffice.org": [11150], "hypovereinsbank.de": [7649], "www.partnernet.avira.com": [1449], "wtfismyip.com": [17933], "foriswine.com": [6039], "kronos-time.nytco.com": [10998], "secure.pqarchiver.com": [12285], "support.infoblox.com": [8106], "friendlybracelets.com": [6215], "marketplace.rackspace.com": [13506], "www.thenewsfunnel.com": [11336], "ccavenue.com": [2533], "www.altera.com": [876], "www.bulletproofexec.com": [2419], "helsingebilpleje.dk": [7311], "styles.domainwho.is": [4661], "www.opencpu.org": [11925], "www.scientificlinux.org": [14386], "dedra.cz": [4024], "tspr.ng": [16810], "www.boxoffice.com": [2254], "www.crrev.com": [3828], "origin.business.upc.ie": [17001], "reactjsnews.com": [13603], "indonesia.bitcoin.co.id": [1964], "servicedesk.lrz.de": [9238], "epaper.ntu.edu.tw": [10970], "er.lrc.usuhs.edu": [17052], "www.organdonation.nhs.uk": [10913], "bethblog.com": [18829], "mujucet.vzp.cz": [17524], "piwik.openstreetmap.org": [11979], "visionairlines.com": [17773], "www.hide.me": [7391], "api.tldr.io": [19683], "*.guttmacher.org": [7029], "www.ots.treas.gov": [17059], "newsdaily.com": [11328], "mypassword.ysu.edu": [18742], "members.vbulletin.com": [17471], "scs.cals.cornell.edu": [3676], "review.udacity.com": [17110], "www.robinbarnard.com": [13923], "www.30boxes.com": [99], "images.dice.com": [4453], "control.tierra.net": [16435], "sohosted.com": [15049], "cdn.embed.ly": [5197], "myfinances.nottingham.ac.uk": [11528], "www.erowid.org": [5351], "www.astro.cardiff.ac.uk": [2835], "upa.aberdeenshire.gov.uk": [412], "www.onenetworkdirect.com": [11838], "apps.dealer.com": [4256], "blog.trendmicro.com": [16713, 16717], "*.foundationsource.com": [6077], "mis.cc.ntu.edu.tw": [10971], "whatsapp.com": [18234], "www.salk.edu": [14251], "studentaffairs.stanford.edu": [15383], "incapsula.com": [8043], "memberclicks.net": [10246], "www.vimention.com": [17716], "www.smuxi.org": [15016], "data.information.dk": [8123], "sgkb.ch": [19333], "*.umanitoba.ca": [17260], "*.indiegogo.com": [8072], "support.code.org": [3345], "*.happyknowledge.com": [7199], "marketplace.ucsd.edu": [16939], "*.hitb.org": [7070], "*.financialcontent.com": [5822], "downloads.checkpoint.com": [3048], "policyreview.info": [12867], "codeofconduct.wustl.edu": [17993], "mega.com": [10221], "www.newsoffice.mit.edu": [9749], "www.nachtjeweg.nl": [7451], "blog.whiteout.io": [18256], "addons.videolan.org": [19461, 19462], "*.ubisoftgroup.com": [17092], "vos.symantec.com": [15715], "www.recurly.com": [13652], "eseries.pajustice.org": [12539], "hazing.cornell.edu": [3676], "apimg.alipay.com": [817], "es.manage.my.t-mobile.com": [15772], "freecause.com": [6159], "www.pegelf.de": [12528], "www.iovisor.org": [19303], "m.vk.com": [17493], "www.toplist.cz": [15846, 15847], "affiliates.adultshopping.com": [644], "serversforhackers.com": [14618], "www.sparxtrading.com": [15229], "*.kryptronic.com": [9023], "www.atomicobject.com": [1327], "www.viglink.com": [17710], "*.ticketweb.com": [16421], "pix.bit.ly": [2002], "fetshop.co.uk": [5762], "cdn.pardot.com": [12399], "stubconnect.stubhub.co.uk": [15534], "www.dezertdepot.com": [4436], "its-prod-www2-1.ucsc.edu": [17305], "webcijfers.nl": [18056], "merchant.linksynergy.com": [9381], "www.xpra.org": [18587], "forum.vestacp.com": [17653], "americanaexchange.com": [948], "plf.zarb.org": [18796], "regencesecure.snowfly.com": [15044], "www.interactiveonline.com": [8241], "game-static.msi.com": [9792], "inwx.com": [8231], "herefordshire.greenparty.org.uk": [6925], "byfiles.storage.msn.com": [9796], "atlassian.com": [1321], "www.fourecks.de": [6080], "www.final4ever.com": [5819], "www.adsimilis.com": [631], "research.gigaom.com": [6644], "blog.libtoxcore.so": [9322], "www.dslreports.ca": [4081], "auto.yandex.kz": [18652], "frog.qrq.de": [13312], "paradox-interactive.teamtailor.com": [16003], "www.anonabox.com": [1044], "ir.telecolumbus.com": [16073], "advancement.umd.edu": [17263], "www1.citymapper.com": [3193], "update.dedyn.io": [19107], "forums.novell.com": [11530], "goubiquiti.com": [6797], "myiuhealth.org": [7867], "www.blogs.com": [14319], "riga.lv": [13880], "shop.flixbus.it": [5931], "couragecampaign.org": [3713], "www.peer5.com": [12514], "securecode.com": [10052], "prosody.im": [13161], "www.gettyimages.*": [6621], "www.static-cisco.com": [15425], "emv3.com": [5194], "britac.ac.uk": [2335], "easyodds.com": [5034], "ivorde.com": [8402], "panstwomiasto.pl": [12369], "www.askubuntu.com": [15359], "assets3.clickfunnels.com": [3246], "upload.proxer.me": [13176], "dealfish.co.th": [4260], "www.eduroam.no": [5099], "www.jqueryui.com": [8454], "corporativo.walmart.com": [17964], "www.thebodyshop.ch": [3645], "xap.com": [18502], "*.kaizencrossfit.com": [4020], "www.adblade.com": [560], "www.feedbackify.com": [5736], "secure.rec1.com": [13641], "forums.desmume.org": [4243], "www.yagi-antennas.com": [18632], "callcenter.reservation-desk.com": [13802], "www.sigterm.no": [14783], "*.chitika.net": [3091], "haasawards.berkeley.edu": [17240], "noisey.com": [11460], "*.research.de.com": [10218], "cax.com": [2912], "www.latticechallenge.org": [19349], "registrars.registry.asia": [13736], "hannovermesse.de": [7195], "media.intermundomedia.com": [8253], "wufoo.com": [18481], "icann.org": [7682], "openmedianow.net": [11960], "*.alliedmedia.org": [854], "secure.paysol.se": [12487], "www.fsa.usda.gov": [17209], "maps.ngdc.noaa.gov": [11083], "segmentfault.com": [14560], "www.alternatifbilisim.org": [881], "seati.ms": [1920], "buysub.com": [2563], "tracker.marinsm.com": [9995], "*.on24.com": [11639], "www.aldi.be": [299], "dennogumi.org": [19110], "kundservice.svd.se": [15669], "www.tubemogul.com": [16814], "*.reethibeach.com": [13713], "git.korelogic.com": [8986], "www.*.onsugar.com": [11815], "www.flyersrights.org": [5962], "i.lvme.me": [9492], "lurkmore.to": [9673], "www.hungryhouse.co.uk": [7621], "www.wattpad.com": [18006], "www.wilmerhale.com": [18319], "millenniumseating.com": [10397], "support.intego.com": [8201], "c64.assets-yammer.com": [1283], "ja.hideki.hclippr.com": [7051], "www.alldebrid.fr": [831], "*.pusher.com": [13252], "makewebeasy.com": [9917], "privacy.truste.com": [15856], "connect.webtrends.com": [18171], "getaddr.bitnodes.io": [2013], "www.linuxgamepublishing.com": [9423], "www.itactic.com": [7861], "www.arris.com": [1214], "chooseblocks.com": [3100], "webanalytics2.ovh.net": [12173], "bitwig.com": [2027], "carbonfund.org": [2830], "www.pet-nanny.net": [12587], "app.vogogo.com": [19740], "customers.percona.com": [12557], "moviease.com": [10640], "www.intux.de": [8308], "prisms.deewr.gov.au": [4025], "usertags.com": [17087], "lean-hochschulgruppe.htwk-leipzig.de": [7114], "givekidstheworld.org": [6686], "www.kyleschaeffer.com": [2132], "agilewebsolutions.com": [727], "nightdev.com": [11394], "tptq-arabic.com": [15854], "*.musicnotes.com": [10720], "tienda.astrocentro.com": [1304], "cdn.onscroll.com": [11813], "snort.org": [15041], "onlineshop.nero.com": [11162], "www.urospace.de": [17414], "www.encipher.it": [5231], "bostonbuilt.org": [2231], "www.aquabounty.com": [1142], "cxcloud.com": [3949], "www.glasses.com": [6702], "modrice.biovendor.cz": [1902], "www.raspberrypi.org": [13569], "skandia.se": [14894], "apwustore.org": [933], "securemail.zg.ch": [19648], "servercraft.co": [14613], "blog.unseen.is": [17369], "secure.us.playstation.com": [12795], "hcsportal.studaff.calpoly.edu": [2747], "www.kaos.to": [8788], "panel.medianova.com": [10178], "puborder.ncjrs.gov": [10883], "netflix.com": [11229], "*.siemens.com": [14770], "www.diigo.com": [4515], "www.aaspring.com": [398], "datenspuren.de": [4219], "www.uniqueoffersghana.com": [17194], "www.fs02.androidpit.info": [1009], "www.agwa.name": [736], "suchen.mobile.de": [19403], "*.irish-country-cottages.co.uk": [18490], "efile.boe.ca.gov": [2508], "hr-info.web.cern.ch": [2575], "www.fkl.fi": [5831], "*.pactf.com": [12203], "uni-saarland.de": [17172], "clickfuncasino.com": [3260], "nicennaughty.co.uk": [11384], "intentmedia.co.uk": [8227], "action-intell.com": [492], "phonedirectory.vanderbilt.edu": [17557], "watchmedier.dk": [17996], "fullcoin.com": [6249], "www.creditrepairtrust.com": [3790], "*.surpasshosting.com": [15654], "stc-now.s-msn.com": [14059], "www.ptt.br": [12303], "coastalmicrosupply.com": [3339], "*.citizen.org": [13208], "www.audiencetargeting.com": [1356], "slp1.somerset.gov.uk": [15127], "cache.thumbs.sbstatic.com": [14797], "similarweb.com": [14811], "northdorset.greenparty.org.uk": [6925], "www.rossendale.gov.uk": [13973], "myapps.developer.ubuntu.com": [17102], "www.footprintnetwork.org": [6713], "sf.mail.ru": [9874], "vinumeris.com": [17725], "mg2mobile.com": [10329], "networkadvertising.org": [11268], "*.hjcms.de": [7071], "gtt.net": [6395], "underhandedcrypto.com": [17157], "siw.stanford.edu": [15383], "www.packetflagon.uk": [19477], "m.anibis.ch": [18956], "www.theiconic.com.au": [16292], "payment.outspark.com": [12154], "rub.de": [13478], "d.xp1.ru4.com": [14012], "static.polskieradio.pl": [12887], "www.epls.gov": [5324], "www.fotki.yandex.by": [18648], "www.plos.org": [12271, 13206], "fisonline.bury.gov.uk": [19027], "www.gmx.fr": [6350], "www.nanog.org": [11490], "*.coochey.net": [3633], "ratanagiri.org.uk": [13572], "alssl.askleomedia.com": [1264], "forums.openfiler.com": [12034], "jawbone.com": [8533], "www.autoitscript.com": [1417], "*.ubuntuusers.de": [17103], "slhc-rip1.web.cern.ch": [2575], "maven.co": [10087], "www.virustotal.com": [17757], "b4.yahoo.co.jp": [18640], "sbb.ch": [15693], "www.sheffieldchildrens.nhs.uk": [10913], "scontent.xx.fbcdn23dssr3jqnq.onion": [5621], "www.ftc.gov": [5720], "www.puush.me": [13259], "my.getclouder.com": [6568], "maps.openstreetmap.org": [11979], "www.keyworddiscovery.com": [8871], "*.mentalhealth.asn.au": [10263], "www.hra-news.org": [7094], "www.myphilanthropedia.org": [12622], "jason.cnes.fr": [2634], "brainsonic.com": [2271], "g.twimg.com": [16877], "www.kicktraq.com": [8882], "deadline.com": [4250], "safello.com": [14234], "manual.pipni.cz": [12257], "www.privacychoice.org": [13086], "www.binsearch.net": [1888], "www2.hgst.com": [7059], "worldremit.com": [18452], "xquartz.macosforge.org": [9820], "icc.blackberry.com": [2050], "sslcert14.com": [15345], "hertzarabic.com": [7361], "prod-web.northeastern.edu": [11499], "*.service-now.com": [14620], "www.bortarsasag.hu": [2225], "deutschepost.de": [19112], "netzclub.net": [19432], "demo.phpdoc.org": [12653], "youtube.com.br": [18709], "uptime.centrify.com": [19048], "fca.org.uk": [5557], "pagodabox.com": [12335], "booking.aalto.fi": [390], "tracking.lengow.com": [9248], "applipedia.paloaltonetworks.com": [12349], "ebusiness.voa.gov.uk": [19739], "www.magazinesdirect.com": [9846], "www.shellspace.net": [14696], "spb.rt.ru": [13469], "icis.jpl.nasa.gov": [10869], "leisureworldbookings.colchester.gov.uk": [3414], "segpaychat.com": [14556], "typecast.com": [16911], "www.instacominc.com": [8179], "city.com.ua": [3186], "fcac.org": [5635], "myuni.sydney.edu.au": [19649], "www.knab.nl": [8939], "dnscurve.net": [4062], "ivanovo.rt.ru": [13469], "anyterm.skynet.ie": [16210], "www.helpjuice.com": [7309], "moot.it": [10581], "forum.hostican.com": [7524], "www.deadline.com": [4250], "clevercoin.com": [3239], "dino.sr": [2292], "cryptomaths.com": [3877], "*.alternet.org": [875], "audicon.net": [1350], "www.netlify.com": [11239], "www.twitchinstalls.com": [16889], "js.adsonar.com": [539], "kerbalspaceprogram.com": [8855], "*.eds.com": [7378], "blogs.drweb.com": [4783], "www.unrealengine.com": [17365], "en-da.dict.cc": [4455], "as.au.edu": [16923], "im.typotheque.com": [16917], "pico-app.com": [12663], "www.jyllands-posten.dk": [8703], "arcor.de": [1173], "i5.c.dk": [2498], "*.eet.eu": [4905], "identity.virginmedia.com": [17737], "buhta.zarkzork.com": [18798], "*.jeffmitchell.me": [8545], "inmotionhosting.com": [8033], "dps.illinois.edu": [17258], "cryptolux.org": [3859], "assets.onestore.ms": [11857], "www.soundcloud.com": [15161], "boxcast.lasallehs.net": [9161], "www.anz.com": [315], "scanmarker.com": [14336], "metrics.adzip.co": [677], "webchat.oftc.net": [11622], "www.scordit.com": [2292], "halc.kk.dk": [8730], "www.technoportal.ua": [16039], "librarything.com": [9305], "*.yourlocaledge.com": [18729], "peterkieser.com": [19489], "designer.shoebuy.com": [14714], "dailymotion.com": [4125], "www.nikecsolutions.com": [11378], "android-port.de": [1005], "dealer.com": [4256], "summitroute.com": [15591], "dotster.com": [4705], "portaldaempresa.pt": [6873], "www.tt.vutbr.cz": [17522], "static-ak.facebook.com": [5620], "www.schneier.com": [14360], "shopping.tetu.com": [16148], "hot-chilli.net": [7546], "german-design-council.de": [6554], "www.youtube.ua": [18709], "www.trustedcs.com": [16790], "static.360buyimg.com": [112], "anarplex.net": [991], "www.zerodayinitiative.com": [18845], "www.patchofland.com": [12447], "www.nzz-libro.ch": [19450], "krebsonsecurity.com": [9010], "tiaa-cref.org": [15816], "minix.org": [10428], "www.ojrq.net": [11768], "edge.org": [5078], "tipseri.net": [7732], "mouserepository.cancer.gov": [2805], "binefreund.de": [5937], "www.elcorteingles.es": [19772], "docs.cpanel.net": [2653], "storesecured.com": [15493], "www.netiq.com": [11194], "www.printchomp.com": [13069], "vr.preferred-reservations.com": [13024], "www.gem.co": [6512], "promote.ie": [4513], "cn.earthvpn.com": [19141], "mpc-hc.org": [19412], "fusion-net.co.uk": [6277], "www.coinkite.com": [3406], "www.jacquelinegold.com": [8490], "arm.koji.fedoraproject.org": [5730], "*.forumblog.org": [6063], "www.openuniversity.ac.uk": [11986], "libraries.mit.edu": [9749], "*.gamehouse.com": [6421], "speed-dreams.org": [15251], "cricketwireless.com": [3795], "hq.huobi.com": [7624], "acehotel.com": [470], "giving.umd.edu": [17263], "www.poderpda.com": [12845], "theplatform.com": [16230], "kiwi.freed0m4all.net": [6163], "www.btunnel.com": [1581], "adobelogin.com": [619], "bt.com": [1551], "cup.msgfocus.com": [584], "direct.yandex.kz": [18652], "wiki.alfresco.com": [802], "int.anon-ib.su": [1039], "complex-systems.com": [3524], "sharenice.org": [19585], "www.eu.elsevierhealth.com": [5187], "submit.nal.usda.gov": [17209], "www.4tulemar.com": [155], "www.betterbills.com": [1824], "*.cdn1.cloudfiles.rackspacecloud.com": [13507], "www.pirateparty.org.uk": [12714], "i.wp.pl": [17921], "ipfs.pics": [8344], "ci.uchicago.edu": [17246], "*.orange.co.uk": [12088], "carnegiescience.edu": [2857], "www.cms.fss.ulaval.ca": [17229], "www.openstat.ru": [11977], "licensing.bury.gov.uk": [19027], "servicesblog.redhat.com": [18428], "wakatime.com": [17952], "edit.tilburguniversity.edu": [16445], "fluxx.io": [5959], "discuss.nubits.com": [11561], "ias.edu": [7669], "www.dftba.com": [4031], "ello.co": [5172], "honorrolls.stanford.edu": [15383], "alastore.ala.org": [298], "indonesia.allianz.com": [18950], "fbme.htwk-leipzig.de": [7114], "secure.zdnet.com": [18757], "consult.maidstone.gov.uk": [9868], "doubleclick.com": [4715], "fd.ulaval.ca": [17229], "tickets.stanford.edu": [15383], "metacpan.org": [10297], "verisign.com.br": [17623], "www.sustainability.cornell.edu": [3676], "distilleryimage4.instagram.com": [8182], "www.interstices.info": [8296], "www.tpptraining.com": [15853], "thomashunter.name": [19679], "minimundosonline.com": [10420], "www.dynstatus.com": [4823], "*.medscape.com": [10202], "fafsademo.test.ed.gov": [4889], "www.openaccessbutton.org": [11999], "www.care-net.org": [2837], "3ds.com": [4167], "agilisys.tms-media.co.uk": [19685], "account.meraki.com": [10272], "*.saurik.com": [14307], "joinos.com": [8618], "ems.wolverhampton.gov.uk": [18404], "urlfiltering.paloaltonetworks.com": [12349], "image-cdn.zap2it.com": [18788], "psearch.vuze.com": [17879], "taiga.io": [15911], "www.odnoklassniki.ru": [11726], "galleries.girlsoutwest.com": [6667], "www.buycott.com": [2471], "godoc.org": [6775], "tag.microsoft.com": [10364], "hg.edgewall.org": [5083], "sicontact.at": [14760], "*.protonmail.com": [13169], "www.barclays.co.uk": [1662], "app4.admin.cam.ac.uk": [17243], "udel.edu": [17249], "classic.torrentday.com": [16579], "bitcoinwisdom.com": [1974], "webnium.co.jp": [18135], "www.crew.co": [3794], "www.livingroutes.org": [9518], "www.kpt.ch": [8745], "food.osu.edu": [11760], "www.hakko.com": [7171], "www.mijnsimpel.nl": [19592], "homecomputing.fr": [7477], "fr.community.dell.com": [4335], "redmine.digitaria.com": [4507], "frank.geekheim.de": [6503], "www.papakaya.com": [12378], "faz-community.faz.net": [5554], "s9.mt-cdn.net": [9798], "maildomain.web.de": [18050], "webpower.nl": [18041], "bcove.me": [1717], "www.swan.sk": [15676], "connects.catalyst.harvard.edu": [7219], "www.ioplex.com": [7778], "info4derby.derby.gov.uk": [4380], "dustin.eu": [4809], "www.doc.ic.ac.uk": [8016], "sites.google.com": [6834], "*.desertnews.com": [4385], "cue.me": [3912], "haskell.fpcomplete.com": [5591], "www.financialcryptography.com": [5823], "partnernetprogram.com": [12418], "docs.zone": [4621], "pdwl.htwk-leipzig.de": [7114], "vmss.boldchat.com": [2187], "instart2.flixster.com": [5933], "library.cardiff.ac.uk": [2835], "*.mapraider.com": [9975], "hr.leeds.ac.uk": [9222], "help.metasploit.com": [10310], "career.paradoxplaza.com": [12386], "atech.io": [366], "btwifi.com": [1579], "h-t.co": [7041], "elster.de": [5188], "culm.unizar.es": [17356], "forum.vuze.com": [17878], "onlinethreatalerts.com": [11878], "masty.nl": [10061], "www.moveonpac.org": [10631], "valuehost.ru": [17543], "www.frenchtv.to": [6196], "dd4c.hscic.gov.uk": [19264], "liberal.ca": [9294], "www.scribit.com": [14415], "wechat.com": [18018], "*.rec-registry.gov.au": [13412], "www.nextpowerup.com": [11370], "www.hubic.com": [7597], "quality-abo.de": [13329], "*.factoryexpodirect.com": [5627], "api.sharedcount.com": [14674], "git.collabora.co.uk": [3419], "docs.chef.io": [3057], "www.projecteuclid.org": [13138], "diagnostics.sky.com": [14924], "ads.asnetworks.de": [1270], "www.marksdailyapple.com": [19384], "autodiscover.rsc.org.uk": [13457], "puttytray.goeswhere.com": [6805], "mypassword.provost.usc.edu": [17278], "laughingsquid.com": [19350], "www.ipfs.com": [7791], "themes.getbootstrap.com": [6609], "350zevolution.com": [105], "kent.ac.uk": [17317], "issh.ac.jp": [8270], "ooyala.com": [11900], "uploads.www.theplatform.com": [16230], "tdrevolution.com": [15802], "*.swapspace.net": [15678], "filepicker.com": [5801], "planning.walthamforest.gov.uk": [17966], "www.golfdigestinsiders.com": [6823], "*.ds-static.com": [4779], "learning.ornl.gov": [11693], "www.parrot.org": [12411], "test.winehq.org": [18352], "dev.pdr.leeds.ac.uk": [17318], "scout.sunlightfoundation.com": [15601], "help.instantatlas.com": [19296], "wto.org": [17934], "www.thaliproject.org": [16170], "secure1.plymouth.gov.uk": [19500], "federalreserve.gov": [5718], "vectorborne.fralin.vt.edu": [17740], "trac.gajim.org": [6406], "exam.consumerfinance.gov": [3602], "analytics.yandex.com": [18651], "www.myvarian.com": [10796], "www-stats-so.f-secure.com": [5541], "www.lib.calpoly.edu": [2747], "ui.phn.doublepimp.com": [4717], "www.whonix.org": [18266], "www.fitocracy.com": [5890], "bangor.ac.uk": [1641], "gd1.alicdn.com": [805], "www.mpx.no": [10672], "product.adingo.jp": [592], "members.sina.com.cn": [14842], "*.tvnewscheck.com": [15887], "www.distrowatch.org": [4577], "bugreports.qt-project.org": [13314], "partners.appsflyer.com": [1131], "*.targetimg2.com": [15961], "2010.asiabsdcon.org": [1258], "www.fnmag.co": [5582], "cdn.warmlyyours.com": [17980], "www.streammygame.com": [15517], "www.litetree.com": [9459], "*.thefnf.org": [16273], "www.irs.gov": [7819], "ecn.t6.tiles.virtualearth.net": [17755], "www.lngs.infn.it": [7766], "bentley.edu": [1781], "www.kanyebay.com": [16227], "www.iaata.info": [7662], "payments.coventry.gov.uk": [19085], "gongyi.fanli.com": [5655], "stc.pagseguro.uol.com.br": [16998], "deals.dell.com": [4335], "fastdomain.com": [5672], "www.ccccloud.com": [2539], "computerfulfillment.com": [3535], "*.web.com": [18049], "*.time.com": [15819, 18428], "ssl-cdn-assets.tmz.com": [15832], "act.greenpeace.org": [6937], "haveyoursay.westsussex.gov.uk": [18211], "portal.5ninesdata.com": [174], "support.playwire.com": [12810], "*.sw-i.de": [15369], "www.soa.org": [14147], "*.franken.de": [6102], "www.rugby.gov.uk": [14027], "www.tokyotosho.info": [16537], "databricks-prod-cloudfront.cloud.databricks.com": [4197], "dating.thechive.com": [16258], "www.archomedia.com": [1170], "iosco.org": [7779], "www.abma.de": [421], "s4.mzstatic.com": [10852], "rollingstone.com": [13960], "answers.uchicago.edu": [17246], "masspirgedfund.org": [9715], "360yield.com": [110], "*.fotocommunity.de": [6076], "coindesk.com": [3394], "secure.vandyke.com": [17549], "media-proweb.de": [10145], "i2.microsoft.com": [10364], "www.hertzautovermietung.com.pl": [7358], "studien-sb-service.th-mittelhessen.de": [15809], "cinapalace.com": [3137], "*.targetimg1.com": [15961], "landscapephotographymagazine.com": [9142], "www.falcon-uav.com": [5640], "www.iceleads.com": [7916], "symfony.fi": [15718], "innovation.wwf.ch": [19768], "*.provantage.com": [13170], "autoconfig.yandex.kz": [18652], "www.aera.at": [683], "login.wx2.qq.com": [13285], "loisirs3.cff.ch": [15693], "blog.groupees.com": [6971], "*.nejm.org": [11304], "spreadshirt.se": [15300], "dev.arma3.com": [1202], "dealflow.flippa.com": [5927], "banners.adultfriendfinder.com": [643], "so.ch": [19648], "www.ambitiousaboutautism.org.uk": [18952], "notendur.hi.is": [7066], "so.cl": [15046], "asiointi.hel.fi": [7314], "www.stopthinkconnect.org": [15487], "businesslink.gov.uk": [2460], "utsystem.edu": [17284], "www-secure.symantec.com": [15715], "urx.com": [17016], "zhoumo.taobao.com": [15952], "www.grandmargherita.com": [6890], "pokemon.truelife.com": [16769], "donmai.us": [19125], "wilhelm-gym.net": [18310], "365tickets.com": [114], "www.argosemails.co.uk": [1186], "srb2.org": [14165], "*.misadventureswithandi.com": [10450], "www.americaslongestwar.com": [951], "cluster-1.skillclub.com": [14907], "*.sonymobile.com": [15145], "isorno.com": [8375], "www.archi-strasbourg.org": [1161], "help.cloudtrax.com": [3297], "*.trialpay.com": [16724], "hosting-advantage.com": [11192], "go.cpanel.net": [2653], "uprod.biz": [17011], "www.everydayhero.com.au": [5454], "adn.impactradius.com": [8011], "www.mercadobitcoin.net": [10274], "www4.gotomeeting.com": [6787], "petsathome.com": [12601], "etarget.hu": [5371], "*.cleanenergyfinancecorp.com.au": [3225], "uk.pcpartpicker.com": [12497], "www.coinbase.com": [3402], "chemistry.williams.edu": [18316], "i3.social.microsoft.com": [10364], "2007.asiabsdcon.org": [1258], "host1.aberdeenshire.gov.uk": [412], "www.gorails.com": [6782], "ws.amazon.de": [910], "mediaarea.net": [10154], "lhncbc.nlm.nih.gov": [11052], "images.ironsolutions.com": [7818], "retailmenot.com": [13822], "levo.com": [9275], "bingads.microsoft.com": [10364], "fandago.com": [5651], "ssl.s.xnimg.cn": [18581], "community.ussf2010.org": [17025], "www.marine.scotland.gov.uk": [19575], "store2.esellerate.net": [5357], "moroccanbazaar.co.uk": [10597], "*.blog.usf.edu": [17274], "*.kneon.com": [8941], "play.vidyard.com": [17705], "badoo.com": [1609], "requestpolicy.com": [13791], "shop.kingston.com": [8901], "leptop.hu": [9155], "britishairways.com": [1488], "gavinhungry.io": [6473], "crn.com": [2659], "*.yelp.com": [18673], "www.skillsmatter.com": [14908], "eu.citrix.com": [3178], "mars.jpl.nasa.gov": [10868, 10869], "newportmotorsports.com": [11319], "searchstorage.de": [16018], "terrorismlegislationreviewer.independent.gov.uk": [8054], "www.domaining.com": [4663], "www.teamweek.com": [16005], "md02.plex.tv": [12814], "ukreg.com": [5685], "www.docsend.com": [4613], "p3smysqladmin01.secureserver.net": [14511], "meet.fm": [10208], "*.feedblitz.com": [5733], "staradvertiser.com": [7485], "www.clothingattesco.com": [3275], "9.fanli.com": [5655], "cs.ut.ee": [17069], "www.theepochtimes.com": [5327], "wustl.edu": [17993], "www.online-mahnantrag.de": [11865], "www.zlatkovic.com": [18877], "edihealth.com": [4894], "tawk.to": [15979], "support.xapo.com": [18541], "links.laughingsquid.com": [19350], "www.pressbooks.ch": [19516], "ouad.unizar.es": [17356], "komi.rt.ru": [13469], "*.sslcert19.com": [15346], "telnic.org": [16100], "syllabusshare.com": [15712], "ca.debian.net": [4273], "www.pastevault.com": [12441], "ada.lt": [547], "vwp.su": [17881], "over-blog.com": [12156], "wwwstg.lg.com": [9077], "serviceo.xfinity.com": [19784], "www.mysql.fr": [10780], "www.migrosmagazine.ch": [19399], "www.pr0gramm.com": [19514], "photos-f.ak.fbcdn.net": [5700], "www.gmo-registry.com": [6346], "www.healthfuze.com": [7264], "etapestry.com": [5370], "*.javascriptmvc.com": [8528], "www.igiveonline.com": [7889], "webcare.estara.com": [5367], "www.agendaless.com": [724], "my.alipay.com": [817], "account.nvidia.com": [10985], "pharus.thm.de": [15811], "admissions.portsmouth.gov.uk": [19508], "redletterdays.co.uk": [13677], "regilite.nytimes.com": [11000], "global.nytimes.com": [11000], "schoolpress.cdn.whipplehill.net": [18242], "euwest1-beta-pix.dsp.io": [4787], "forum.lenovo.com": [9251], "ogt.jp": [8108], "ssbcpib01.nottingham.ac.uk": [11528], "wiganandleigh.greenparty.org.uk": [6925], "pntl.enaza.ru": [5230], "www.dieselnet.com": [4460], "breuninger.com": [2306], "familie.hessen.aok.de": [317], "ulive.pccu.edu.tw": [12220], "opengarden.com": [12035], "nyu.edu": [11294], "www.reviewingcomics.com": [13845], "www.rocketnet.jp": [13940], "www.homebid.org.uk": [19255], "www.bx.in.th": [1586], "zimbrablog.com": [18868], "autodiscover.adm.leeds.ac.uk": [17318], "argos.resinfo.org": [13807], "www.theinspirationroom.com": [16194], "www.ee.washington.edu": [17291], "ai.ai": [1428], "capitolmachine.com": [2821], "developer.mashery.com": [10046], "www.schrodinger.com": [14747], "*.tmcdn.org": [15833], "*.pbworks.com": [12215], "cdn1.vendocdn.com": [17606], "discovery.com": [4554], "analytics.mashape.com": [10044], "www.fulltraffic.net": [6253], "shambhalamountain.org": [14658], "knowledge.verisign.es": [17623], "onlinebanking.bankcoop.ch": [3645], "authorize.net": [1410], "pfizer.com": [12610], "scenetap.com": [14342], "beta.musicbrainz.org": [10717], "my.green.ch": [19228], "feeds.live.net": [9482], "www.ludismedia.com": [9654], "*.noris.net": [11484], "ebill.t-mobile.com": [15772], "developer.cloud.unity3d.com": [17220], "egk.mkk.com.tr": [9754], "microad.jp": [10346], "www.w3.org": [17888], "de-nl.dict.cc": [4455], "support.tapatalk.com": [15955], "www.ship-ment.com": [14705], "yumpu.com": [18747], "www.parkingeye.co.uk": [12406], "www.1105media.com": [15], "secure.dd-wrt.com": [4018], "*.redbullcontentpool.com": [13667], "www.secondlookforensics.com": [14463], "www.pando.com": [12357], "rxf1.answcdn.com": [1059], "priv.gc.ca": [13080], "www.clickon.com.ar": [3249], "amazon.com": [913], "www.computer.ly": [3537], "*.multicastmedia.com": [10699], "gnusocial.de": [6361], "www.kryptnostic.com": [9018], "track.eyeviewads.com": [5534], "*.ladesk.com": [9484], "convention.bio.org": [1522], "robokassa.ru": [13927], "linuxdaily.com": [19461, 19462], "www.rocketmail.com": [18638], "www.pepephone.com": [19776], "blogsmithmedia.com": [319], "americanbar.org": [938], "sympa.org": [15720], "myfolder.net": [10830], "pnp4nagios.org": [12275], "*.gumgum.com": [7019], "nykeurope.com": [10994, 10995], "www.dinahosting.pt": [4520], "www.studentessentials.cornell.edu": [3676], "beaker-project.org": [1729], "mail.websupport.sk": [18160], "securetrust.com": [14512], "libraries.ucsd.edu": [16939], "www.redteam-pentesting.de": [13664], "my.southwark.gov.uk": [15196], "dota2.com": [4697], "loisirs1.cff.ch": [15693], "led.htwk-leipzig.de": [7114], "*.usps.com": [17049], "howtogeek.com": [7570], "kodi.tv": [8952], "forum.slysoft.com": [14975], "www.plymouth.ac.uk": [12833], "ccs.cabinetoffice.gov.uk": [2701], "cbssportsnetwork.com": [2525], "www.choiceofgames.com": [3097], "classic.fastmail.fm": [5688], "enaza.ru": [5230], "startnext.com": [15412], "channel4.com": [3003], "api.adrtx.net": [591], "xpc.cloudpath.net": [3312], "carousel.rsc.org": [13997], "*.mun.ca": [10250], "img.godaddy.com": [6773], "www.electrum.org": [5155], "freemail.web.de": [18050], "cms.rugby.gov.uk": [14027], "www.jpberlin.de": [8446], "www.websecurify.com": [18146], "nyti.ms": [1920], "vscl.osu.edu": [11760], "p.twimg.com": [16877], "floridalobbyist.gov": [19185], "status.coinbase.com": [3402], "th.foursquare.com": [6082], "www.audioscrobbler.com": [1360], "www.bokelskere.no": [2184], "www.hobbyking.com": [7438], "research.facebook.com": [5620], "cdn.psddev.com": [12564], "spsn.net": [15321], "ocrete.ca": [11712], "www.paydirekt.de": [12473], "www.springfiles.nl": [15305], "www.vn5socks.com": [17807], "ws.coresecurity.com": [3668], "support.gamigo.com": [6445], "facebook.se": [5623], "api.nextgen.guardianapps.co.uk": [19231], "kunde.comdirect.de": [19072], "www.quadpoint.org": [13321], "www5.basildon.gov.uk": [18984], "bridgeroadmarketing.com": [2314], "www.cambodiadaily.com": [2766], "www.kinox.nu": [19337], "wikidevi.com": [18293], "www.edgesnapbacks.com": [5080], "*.stumbleupon.com": [15544], "denx.de": [4028], "media.secondstreetapp.com": [14464], "battelle.org": [1692], "b2bmediaportal.com": [1486], "www.bio.org": [1522], "wolfsonmicro.com": [18401], "www.clusterconnection.com": [3324], "ticketdriver.com": [16415], "eastriding.gov.uk": [5015], "w1.fi": [17887], "officiel-des-vacances.com": [11754], "www.journalistforbundet.dk": [8648], "blog.suitabletech.com": [18428], "cm.htw-berlin.de": [7112], "services.devon.gov.uk": [4428], "dogsbodytechnology.com": [4635], "sslwidget.criteo.com": [3801], "alexandrasangelgifts.co.uk": [798], "rss.acast.com": [18935], "machineslikeus.com": [9830], "wiki.manjaro.org": [9958], "en.mail.qq.com": [13285], "rapidleaf.com": [13556], "mygenerositywater.dntly.com": [4608], "cdn.dmtmag.com": [4603], "www.visioncritical.com": [17775], "library.wellcome.ac.uk": [19752], "truthdig.com": [16803], "cdn2.content.compendiumblog.com": [3517], "www.yarddigital.com": [18661], "global.content.compendiumblog.com": [3517], "*.psswrdbx.com": [12433], "www.stacklet.com": [15364], "generationawake.eu": [4387], "metrics.pisces-penton.com": [12545], "palaute.olvi.fi": [11785], "westconsincu.org": [18215], "simblee.com": [14809], "s2.mt-cdn.net": [9798], "xe.com": [18509], "sonatype.com": [15132], "www.fineartamerica.com": [5844], "affiliates.nitetimetoys.com": [11425], "mencap.org.uk": [10256], "i.daxue.taobao.com": [15952], "www.faxcritics.com": [5694], "webmail.hosteurope.de": [7516], "acquisition.jpl.nasa.gov": [10869], "cdn.securelist.com": [14492], "atlas.ripe.net": [13895], "freelancersunion.org": [6177], "www.coxdigitalsolutions.com": [3738], "*.controlscan.com": [3621], "photos.modelmayhem.com": [10516], "www.hush.technology": [7631], "www.surfconext.nl": [14198], "engineering.cloudscaling.com": [3314], "*.wush.net": [18485], "securityevaluators.com": [14527], "webtraffiq.com": [18166], "www.netelligent.ca": [11224], "stewilliams.com": [19626], "resus.org.uk": [13820], "cdn.brandisty.com": [2285], "my.crypteron.com": [3850], "account.jetbrains.com": [8559], "www.educacursos.com": [5093], "www.cleveland.police.uk": [3237], "earn.greensmoke.com": [6928], "www.collada.org": [2637], "www.bitcoin.pl": [1967], "namecentr.al": [11018], "certifications.apple.com": [1120], "www.dtc.umn.edu": [17268], "www.it.liu.se": [9084], "www.namecheap.com": [11019], "shapeshift.io": [14660], "docs.vagrantup.com": [17529], "tip.net.au": [15820], "static.ant1.gr": [6913], "pushover.net": [13254], "www.u-bordeaux.fr": [16918], "linuxnewmedia.de": [9395], "e9.xhamsterpremiumpass.com": [18516], "www.granitephone.com": [14785], "www.cybercon.com": [3968], "r.mzstatic.com": [10852], "ashleymadison.com": [1255], "www.servicesonline.opm.gov": [11654], "api.soundcloud.com": [15161], "fakaheda.eu": [5638], "patriotpost.us": [16305], "onehub.com": [11834], "www.bankofamerica.com": [1648], "aidsinfo.nih.gov": [11052], "info.movableink.com": [10628], "twisted4life.com": [16884], "docs.roundcube.net": [13986], "help.netflix.com": [11229], "*.delawareonline.com": [4322], "*.moatads.com": [10485], "domoticz.com": [4675], "www.manutan.fr": [9965], "shop.heifer.org": [7284], "keys.qubes-os.org": [13344], "*.myus.com": [10794], "trac.macports.org": [9821], "blog.bibliothek.kit.edu": [8797], "buytrezor.com": [2469], "secureleisure.telford.gov.uk": [19669], "withknown.com": [18381], "asset-0.netbeans.org": [11185], "s1.online2pdf.com": [11872], "asia.adform.net": [585], "bugs.mysql.com": [10780], "www.chiliproject.org": [3077], "www.ss.prbrds.com": [13110], "vendor.tv2.dk": [15881], "wrzru.com": [19767], "edc.intel.com": [8209], "publicaccess2.tmbc.gov.uk": [15827], "www.google.com": [6846], "icanlocalize.com": [7695], "images.whatwg.org": [17904], "catgirlsare.sexy": [2903], "top.mail.ru": [9874], "www.fazschule.net": [5554], "*.dmlimg.com": [4105], "www.piraten-mfr.de": [12707], "www.housingauthority.gov.hk": [7076], "answerology.cosmopolitan.com": [3690], "in2code.de": [8028], "koumbit.org": [8999], "balboa.io": [1626], "www.reactjsnews.com": [13603], "www.palgrave.com": [12343], "*.webresint.com": [18042], "www.nowness.com": [11534], "ircreviews.org": [7813], "projectwonderful.com": [13142], "www.aklamio.com": [767], "pogo.com": [12850], "nars.engineering.osu.edu": [11760], "kinkontap.com": [8908], "www.ecc-platform.org": [4879], "m.edu.tue.nl": [15874], "africangreyparrotcentre.co.uk": [710], "*.rosettacode.org": [13969], "cs.idg.se": [7705], "stickhet.com": [15473], "iaea.org": [7666], "shop.idg.se": [7705], "www.business.usa.gov": [17029], "amctv.com": [306], "*.propublica.net": [13111], "kabel.canaldigital.se": [2803], "o-zone.vanco-asiapac.com": [17554], "*.copy.me": [4978], "amnesty.at": [958], "www.standishmanagement.com": [15381], "gweb.io": [7032], "registerresnet.northeastern.edu": [11499], "a2.ec-images.myspacecdn.com": [10848], "lwn.net": [9112], "www.mg2mobile.com": [10329], "secure.instantssl.com": [8185], "*.biomedcentral.com": [1900], "my.incapsula.com": [8043], "analytics.webtrends.com": [18171], "*.geizhals.at": [6510], "photos.live.com": [9483], "*.nehta.gov.au": [11067], "*.merca20.com": [10273], "catalog.loc.gov": [9528], "globes.co.il": [6744], "*.cdn-hotels.com": [7554], "foolz.us": [6007], "shib.ncsu.edu": [11492], "desy.de": [4399], "www.yfrog.com": [19791], "nccgroupdomainservices.com": [10881], "cdgcommerce.com": [2552], "connochaetos.org": [3586], "pl.vc": [12752], "www.flyingcameras.ca": [5965], "genumedia.htwk-leipzig.de": [7114], "thehut.com": [16223], "*.nexway.com": [11355], "collabprojects.linuxfoundation.org": [9412], "www.mdgx.com": [9731], "dinclinx.com": [9841], "*.heart.org": [7275], "www.mthode.org": [10682], "assets.insnw.net": [8174], "adminer12.vas-hosting.cz": [19729], "systemausfall.org": [15762], "*.atgsvcs.com": [1311], "butler.freecycle.org": [6162], "btc-e.com": [1553], "chcidoo2.cz": [16076], "calum.org": [2758], "www.smart-invests.biz": [14983], "arturkim.com": [1236], "*.bkb.ch": [19333], "www.thepiratebay.se": [16227], "www.snakehosting.dk": [15025], "voice.connect.comcast.net": [3460], "etracker.com": [5390], "account.jolla.com": [8622], "www.llvm.org": [9090], "sitefinity.com": [14879], "img06.taobaocdn.com": [15953], "spacescout.uw.edu": [17077], "www-print.rus.uni-stuttgart.de": [17281], "stura.htwk-leipzig.de": [7114], "help.lendingclub.com": [9246], "*.shopzilla.com": [14733], "www.kfwebs.net": [8720], "www.masterchan.org": [10053], "aer.gov.au": [1390], "mobify.me": [10492], "discovernetwork.com": [4552], "makeloveland.com": [9908], "admbugs.freebsd.org": [6120], "www.epicgames.com": [5320], "crashspace.org": [3761], "hackerexperience.com": [7144], "community.fitbit.com": [5887], "kickasstorrents.to": [8879], "agariomods.com": [721], "www.transip.de": [19694], "*.glassdoor.co.uk": [6701], "meteorhacks.com": [10314], "vpncritic.com": [17507], "coxbusiness.com": [3739], "www.finmozg.ru": [5848], "packages.linuxdeepin.com": [4302], "acikakademi.com": [474], "orbit.cites.illinois.edu": [17258], "marge.fa.vutbr.cz": [17522], "www.nicennaughty.co.uk": [11384], "fedregistry.renater.fr": [13764], "webhost355.asu.edu": [1195], "services.netapp.com": [11183], "siia.net": [15100], "phobos.apple.com": [1120], "subscribe.livingsocial.com": [9517], "clientchat.minacs.com": [10404], "stc.synology.com": [15738], "*.onsugar.com": [11815], "static.hackerspace.pl": [7149], "www.ote.gr": [12132], "code.freent.de": [6180], "img.autobytel.com": [1425], "abysmal.nl": [433], "greenparty.org.uk": [6925], "www.4freeproxy.com": [156], "saic.com": [14067], "zonomi.com": [18897], "www.virtualbox.org": [17748], "www.hacdc.org": [7131], "crosskeyshomes.co.uk": [19091], "moi.gov.sa": [14306], "www.gearman.org": [6487], "js.chefkoch-cdn.de": [3058], "www.midlothian.gov.uk": [10376], "aai-logon.fhnw.ch": [5569], "secondlife.com": [14462], "edge.ie": [19148], "redmine.openinfosecfoundation.org": [12016], "tag1consulting.com": [15903], "mybenefitsplan.osu.edu": [11760], "deliciousgreencoffee.com": [4329], "www.zsl.org": [18900], "greenvehicleguide.gov.au": [6921], "televize.kn.vutbr.cz": [17522], "googleprojectzero.blogspot.com.*": [2113], "coloradoattorneygeneral.gov": [3439], "raymii.org": [13584], "ourtesco.com": [12143], "www.gogoair.com": [6807], "heifer.org": [7284], "apture.com": [6833], "segment-data.zqtk.net": [18766], "webmail02.register.com": [13732], "www.upickem.net": [17389], "www.stacksity.com": [15365], "1914.zdf.de": [19800], "forms.moon-ray.com": [10577], "ihm.nlm.nih.gov": [11052], "extralunchmoney.com": [5524], "wuissrv20.wustl.edu": [17993], "*.tweakers.net": [16866], "cdn.static1.marvelstore.com": [10040], "suggest.atechmedia.com": [368], "rapid7.com": [13553], "translate.yandex.kz": [18652], "emskr.chefkoch-cdn.de": [3058], "customworks.ca": [9579], "*.tuxfamily.org": [16856], "shop.nknews.org": [10934], "tsv.fi": [16436], "nextbit.com": [11364], "sports.vice.com": [17667], "gruppen.greenpeace.de": [6936], "pizzacharts.com": [12749], "theintercept.com": [16294], "www.nrc-cnrc.gc.ca": [11058], "poistenie.financnahitparada.sk": [5828], "embed-ssl.wistia.com": [18377], "libreofficebox.org": [9312], "online1.drweb.com": [4783], "www.securityconference.de": [14526], "holderdeord.no": [7449], "flights.webjet.com.au": [18124], "app-coding.de": [1101], "leedsforlife.leeds.ac.uk": [17318], "jaast.com": [12351], "www.hounddogcentral.com": [7563], "spokane.wustl.edu": [17993], "athena.iubenda.com": [8396], "soldierx.com": [15114], "isd.hscic.gov.uk": [19264], "login.comcast.net": [3460], "*.adf.ly": [523], "*.edublogs.org": [5092], "www.adelphi.de": [582], "www.sunroofwinddeflectors.com": [15606], "status.popcorntime.io": [12915], "twistlock.com": [19707], "ocforums.com": [12165], "trumanlibrary.org": [7214], "m.washington.edu": [17291], "forum.ovh.lt": [12173], "www.searchsecurity.de": [16018], "thalysthecard.com": [16172], "privacychoice.org": [13086], "password.uow.edu.au": [17350], "codepoet.com": [18428], "studentlife.osu.edu": [11760], "www.goodreads.com": [6829], "www.ryot.org": [13484], "www.video.yandex.com": [18651], "theinternetco.net": [16295], "www295.americanexpress.com": [935], "databits.net": [4196], "a.taobao.com": [15952], "gototraining.com": [6788], "voip.mephi.ru": [10266], "www.facebook.nl": [5623], "feedback.yammer.com": [18646], "www.facebook.no": [5623], "surveys.ofsted.gov.uk": [19456], "mep-store.engineering.osu.edu": [11760], "247filmz.com": [79], "bitrig.org": [2014], "gchq.gov.uk": [6871], "issues.piwik.org": [12733], "citi.com": [3168], "www.redcross.org": [13672], "www.gay180.com": [6478], "500ish.com": [165], "kolab.org": [8959], "www.hyperledger.org": [19271], "forums.libsdl.org": [9290], "punto.ar": [13231], "truecrypt.ch": [16766], "kredyty-samochodowe.money.pl": [10546, 10547], "guidefaq.com": [7008], "www.eshop.kensington.com": [8850], "plastc.com": [12781], "flightglobal.com": [5921], "www.tectonic.com": [16055], "www.everydayrewards.com.au": [18422], "debian-handbook.info": [16186], "consult.wealden.gov.uk": [19750], "wiki.ciphershed.org": [3151], "gzhls.at": [13026], "www.2ch.cm": [91], "intranet.uillinois.edu": [16960], "*.cables.com": [2704], "forum.openstreetmap.fr": [12045], "zimbra.webstyle.ch": [18159], "blankslate.io": [2059], "blog.magellanmodels.com": [18428], "influencersconference.com": [8098], "*.patriotpost.us": [16305], "www.virag.si": [17732], "www.akira.org": [765], "secure.omg.org": [11700], "theappendix.net": [16243], "r.teads.tv": [15995], "www.bellingcat.com": [1766], "mywebsitepersonal.1and1.com": [51], "givingtostanford.stanford.edu": [15383], "www.snapwidget.com": [15028], "nat.ms": [11041], "imgur.com": [8002], "www.zoink.it": [5004], "digitalcommons.wustl.edu": [17992, 17993], "alumni1.brunel.ac.uk": [19021], "homepages.thm.de": [15811], "www.ibm.biz": [19278], "dexmedia.com": [4434], "scdn.cxense.com": [2694], "webmail.brenet.de": [2295], "slu.se": [14135], "just-eat.ie": [19328], "vdio.com": [17581], "internetsociety.org": [8275], "openmrs.org": [11952], "www.vidahost.com": [17679], "resources.superherostuff.com": [15631], "myra.gov": [10778], "collectors.sumologic.com": [15592], "*.ensimag.fr": [5288], "www6.slac.stanford.edu": [15383], "*.turtlebeach.com": [16848], "issibn.swm.de": [14208], "git.beaker-project.org": [1729], "cas.fsf.org": [5600], "static.kabelmail.de": [8760], "cs.ap.dell.com": [4335], "opendesktop.org": [19461, 19462], "*.svn.sf.net": [15174], "www.yar.fruct.org": [5595], "www.visionartforum.com": [17774], "blog.runbox.com": [14037], "pt.chaturbate.com": [3035], "sony.eu": [15142], "cdn.cakecentral.com": [2722], "devmonk.com": [4426], "www.auto.ro": [1414], "*.donotcall.gov.au": [4610], "api.runabove.com": [14034], "wishpot.com": [18374], "www84.smartadserver.com": [14982], "*.viedemerde.fr": [1815], "ece1jngec.blogspot.com.*": [2113], "images.42floors.com": [143], "click.intel.com": [8209], "blogdaredacao.catracalivre.com.br": [2908], "*.alternate.nl": [880], "www.sethvargo.com": [14633], "www.goldenfrog.com": [6814], "lms.wiss.ch": [18375], "www.aolplatforms.com": [325], "www.artemis-ia.eu": [1228], "static.eurodns.com": [5406], "peopleschoice.com": [12553], "editions.thing.net": [16354], "connect.microsoft.com": [10364], "*.netnod.se": [11245], "socialtwist.com": [15062], "wp01.dudley.gov.uk": [4795], "informahealthcarestore.com": [8120], "pagead2.googlesyndication.com": [6843], "textbooks.com": [16159], "*.koderoot.net": [8951], "csync.org": [3902], "www.dianomi.com": [4444], "drupalwatchdog.com": [4782], "search.creativecommons.org": [3778], "6wunderkinder.com": [184], "labs.nationalarchives.gov.uk": [11076], "gephardtinstitute.wustl.edu": [17993], "www.gpugrid.net": [6374], "lp0.eu": [9639], "movieposter.com": [10643], "medipreis.de": [10142], "www.enlightenment.org": [5280], "nr.qq.com": [13284], "www.masty.nl": [10061], "*.keybase.io": [8868], "doc.wallabag.org": [17960], "education.isc2.org": [7822], "password.it.umich.edu": [17266], "tvshowtime.com": [15888], "limesurvey.org": [9356], "marthastewart.com": [10032], "usil.logmein.com": [9549], "www.playfire.com": [12805], "*.eucalyptus.com": [5398], "masspirgstudents.org": [9716], "chromestatus.com": [3118], "3min.de": [134], "www.ovh.com": [12173], "wiki.deimos.fr": [4318], "images.outbrain.com": [12150], "www.kinguin.net": [8902], "douglas.firmstep.com": [19182], "www.forum.avira.com": [1449], "scs.publish.uic.edu": [17231], "careers.symantec.com": [15715], "bourgeois.me": [2249], "*.reservationcounter.com": [13803], "lansforsakringar.se": [9151], "*.i-kiz.de": [7651], "www.getinvolved.wustl.edu": [17993], "pccasegear.com.au": [12221], "apps.opendatacity.de": [19463], "forms.southwark.gov.uk": [15196], "www.avis.com": [1451], "igg.me": [8072], "m.ndr.de": [11119], "www.teylingen.nl": [11132], "support.plex.tv": [12814], "reputation.com": [13790], "m.feedback.yandex.com.tr": [18649], "admin.noxa.de": [19444], "aptdeco.com": [1141], "ds2.static.rtbf.be": [14011], "stats.kkh-allianz.de": [8732], "cdn.torrentfunk.com": [16581], "ep.jhu.edu": [16296], "broadbandmap.gov": [2350], "blog.honeynet.org.mx": [19256], "ctf.eindbazen.net": [5126], "www.isc.vutbr.cz": [17522], "rdoproject.org": [13409], "justsecurity.org": [8695], "garron.net": [6462], "demand.assets.adobe.com": [615], "www-cache1.extensis.com": [5523], "www.archive.today": [1164], "whatbrowser.org": [18228], "shibboleth.stanford.edu": [15383], "planet.ubuntu-fr.org": [17096], "kennedy-center.org": [19335], "worldhealth.net": [18463], "*.customerhub.net": [8136], "*.processnet.hu": [4665], "shadow.cs.umn.edu": [17268], "trustedsec.com": [16789], "www.wd2go.com": [17898], "airbnb.*": [749], "lksc.stanford.edu": [15382], "*.demandprogress.org": [4345], "uni-due.de": [17165], "www.math.uchicago.edu": [17246], "*.kobo.com": [8949], "www.penfoldgolf.com": [12533], "www.skolaonline.cz": [19598], "swfdec.freedesktop.org": [6126], "findnsave.oregonlive.com": [12100], "xm.techxpress.net": [16022], "www.nku.gov.sk": [14972], "p8.qhimg.com": [13302], "welsh-country-cottages.co.uk": [18490], "manage.ukfsn.org": [16966], "wpmudev.org": [18469], "mwl.telekom.de": [4410], "www.xemail.de": [18555], "piwik.deimos.fr": [4318], "www.meetbsd.com": [10209], "gotfuturama.com": [6853], "www.edri.org": [4898], "backup.f-secure.com": [5541], "identicons.github.com": [6680], "*.kobobooks.pt": [8949], "itea3.org": [7846], "www.maximintegrated.com": [10096], "www.chartbeat.com": [3018], "www.trygghansa.se": [16808], "www.gasngrills.com": [6465], "www.empeopled.com": [5214], "www.netload.in": [11241], "origin.www.upcbusiness.nl": [17003], "www.projectcounter.org": [2643], "watford.gov.uk": [19747], "leisure.cheshireeast.gov.uk": [3067], "srna.sk": [15341], "onehockey.com": [11833], "iam.edp.pt": [4896], "static-www.elastic.co": [5142], "cdnjpg.dmjx.dk": [4600], "geenstijl.nl": [19211], "radioeins.de": [13518], "blog.startech.com": [15395], "imsl.engineering.osu.edu": [11760], "www.debian.org": [4275], "internetretailer.com": [17640], "www.ccbill.com": [2534], "communities.sas.com": [14074], "dean-faculty.williams.edu": [18316], "www.okfn.org": [12017], "www.govspace.gov.au": [6867], "www.fsl.cs.sunysb.edu": [15480], "support.gradwell.com": [6883], "www.ngx.cc": [11376], "downloads.2kgames.com": [87], "www.sempervideo.de": [14573], "amway.com": [888], "www.tokyotosho.se": [16537], "fluiddynamics.osu.edu": [11760], "obfs.uillinois.edu": [16960], "postdocs.stanford.edu": [15382], "asset-1.soupcdn.com": [15167], "reporting.here.com": [7326], "whms.com": [17907], "cdn.leagueoflegends.com": [9206], "www.faiusa.org": [5998], "creditreportnation.com": [3791], "www.jquerymobile.com": [8452], "masterh4.adriver.ru": [534], "www.8ch.net": [203], "www.tech.plymouth.ac.uk": [12833], "www.meeting-reg.com": [10012], "my.southend.gov.uk": [15193], "brulinesfuelsolutions.com": [17663], "www.infoblox.com": [8106], "soundstrue.com": [15164], "www.vpn4all.com": [17500], "status.yammer.com": [18646], "theatlantic.com": [16245], "iovation.com": [8342], "*.westpac.com.au": [18222], "vpsportal.gmocloud.com": [6343], "solariz.de": [19607], "krb-jobs.brassring.com": [19017], "www.kitepackaging.co.uk": [8923], "www.roleplaychat.org": [13955], "webmail.atlantis.sk": [1319], "www.jackandjillraffle.com": [8481], "www.evoluted.net": [5466], "cure53.de": [3927], "www.hgo.se": [7058], "www.davidgold.co.uk": [4226], "e.weibo.com": [18187], "help.gawker.com": [6476], "*.virginia.edu": [17289], "www.ionicframework.com": [8339, 8340], "www.wolverhampton.gov.uk": [18404], "faq.lookout.com": [9601], "rscweb.org": [13997], "kth.se": [8752], "aarondcampbell.com": [394], "condenaststore.com": [3557], "*.likes-media.com": [9350], "ars.els-cdn.com": [5182], "emubrightfutures.org": [18428], "www.torreycommerce.net": [16592], "www.gac.edu": [6301], "www.marketpress.com": [10009], "copernico.net": [3650], "static.rust-lang.org": [14047], "olimex.com": [11781], "www.northeastern.edu": [11499], "www.coverageforall.org": [3729], "surveys.cardiff.ac.uk": [2835], "www.adisc.org": [269], "cdnsecakmi.kaltura.com": [8775], "www.kinotehnik.com": [8910], "www.epoch.com": [5325], "www.act.ulaval.ca": [17229], "static.flocabulary.com": [5935], "onthehub.com": [19460], "achaea.com": [18937], "*.pssap.gov.au": [13212], "www.giantbomb.com": [6636], "standards.freedesktop.org": [6126], "forums.serversforhackers.com": [14618], "*.myyearbook.com": [10821], "www.stealthnet.de": [15448], "m.mail.ru": [9874], "jobs.nottingham.ac.uk": [11528], "www.mycareinbirmingham.org.uk": [10802], "jyllands-posten.dk": [8703], "cdn.rawgit.com": [13580], "mrm.freewheel.tv": [6136], "blog.evernote.com": [5450], "forum.openmw.org": [11954], "wiki.openstack.org": [11975], "myjobscotland.gov.uk": [10838], "xteam.brookings.edu": [2362], "www.incloak.es": [8030], "owncloud.dkit.ie": [4040], "www.odpadnes.sk": [18879], "store.androidguys.com": [10490], "snelpanel.com": [15033], "miranda-im.org": [10441], "cockpit.mykolab.com": [10765], "www.vistumbler.net": [13544], "kuvat.huuto.net": [19267], "strongswan.org": [19634], "sso.vodafone.ie": [17815], "store.manageengine.com": [9940], "heatss.civicalg.com.au": [19065], "otr.to": [11682], "gentoo.petteriraty.eu": [12603], "store.omnigroup.com": [11793], "www.holytransaction.com": [7462], "s3.trafficmaxx.de": [16655], "static.bitcoinity.org": [1984], "subversion.renater.fr": [13764], "membershiprewards.com": [10248], "ilovefreegle.org": [7892], "demandprogress.org": [4345], "www.xsolla.com": [18593], "dc2.client.hip.live.com": [9483], "www.inspirationgreen.com": [8177], "opnsense.org": [11656], "www.opensource.apple.com": [1120], "uline.com": [17128], "ede-look.org": [19461, 19462], "www.codesourcery.com": [10264], "bioinformatics.vt.edu": [17740], "www.itspa.org.uk": [7851], "cdn.websharks-inc.com": [18084], "viaverio.com": [17660], "strategicmanagement.net": [15509], "www.xm.com": [18520], "coreboot.org": [3669], "www.piwik.ei.rub.de": [13478], "belezanaweb.net.br": [1760], "landing.newsinc.com": [11335], "www.everyoneisgay.com": [5455], "contests.nvidia.com": [10985], "medialoot.com": [10174], "kids.greenpeace.de": [6936], "drinkaware.co.uk": [4761], "www.osmfoundation.org": [11672], "i1.adis.ws": [593], "player.sky.com": [14924], "auth0.com": [1407], "www.visitor.wustl.edu": [17993], "asset-2.java.net": [8525], "patentbaristas.com": [12448], "cryptad.com": [3842], "www.pfizerpro.com": [12612], "light-paint.com": [9342], "www.harlandclarkegiftcard.com": [7207], "www.bitbucket.com": [1926], "*.postimg.org": [12978], "*.bosch.com": [2227], "includes.ncl.ac.uk": [10884], "www.brandweeruitgeest.nl": [2287], "bitx.co": [1951], "www.canterbury.gov.uk": [2811], "api.mywot.com": [10797], "rabota.mail.ru": [9874], "4runnerforex.com": [153], "www.yandex.ua": [18656], "clients.microtronix-tech.com": [10372], "clarionledger.com": [3213], "autoadmanager.com": [1420], "milwaukeemakerspace.org": [10402], "www5.hertz.com": [7372], "aip.org": [291], "policy.isis.poly.edu": [12888], "www.dnscurve.com": [4062], "www.websitealive9.com": [18149], "wsstatic.govmetric.com": [6866], "ch-fr.norton.com": [11505], "ssl.post-gazette.com": [12728], "binera.de": [7217], "fictionpress.com": [5772], "www.zimbrablog.com": [18868], "manage.coreix.net": [3671], "taxpayersalliance.com": [15980], "www.tuleap.org": [16823], "engine.lingospot.com": [9372], "mypcbackup.com": [8689], "my.backpage.com": [1602], "ask.threatmatrix.com": [19680], "www.wartstick.com": [17985], "www.reklamport.com": [13750], "www.bitsharestalk.org": [2017], "cdwg.com": [2566], "netdna.bootstrapcdn.com": [2217], "recurse.com": [13653], "vzw.com": [17628], "tibetaction.net": [16410], "conference2010.kde.org": [8718], "www.finn.no": [5849], "wiki.smzdm.com": [15017], "lfait.com": [9072], "www.androidfilehost.com": [1008], "www.juneoven.com": [8678], "www.fibank.bg": [5769], "emsonline.blackpool.gov.uk": [2056], "mydrive.ch": [10829], "sedo.com": [14542], "jobs.lever.co": [9269], "vidahost.com": [17679], "www.miamire.com": [10336], "www.doncaster.greenparty.org.uk": [6925], "webstats.maths.ed.ac.uk": [5067], "support.lucidchart.com": [9645], "tb.cn": [15981], "enru.dict.cc": [4455], "bluecava.com": [2129], "www.signal-spam.fr": [14781], "www.redditmade.com": [13694], "svn.gnumonks.org": [6766], "*.boozallen.com": [2220], "djoserwandelenfiets.nl": [7452], "esdiscuss.org": [4969], "nwschat.weather.gov": [18034], "www.coreix.net": [3671], "auphonic.com": [1370], "hdnux.com": [7271], "www.bootswatch.com": [2218], "app-uk.resrc.it": [13599], "help-de-eu.nike.com": [11401], "zonglovani.info": [18896], "directadvert.ru": [4524], "beta.maps.yandex.com": [18651], "www.americanflyertrains.com": [942], "www.silvertunnel.org": [14803], "desktop.ucsd.edu": [16939], "app.arachnys.com": [1149], "www.emas.portsmouth.gov.uk": [19508], "www.secure-endpoints.com": [14479], "paszport.money.pl": [10547], "www.chain.com": [2980], "find.es.t-mobile.com": [15772], "www.gavinhungry.com": [6474], "www.parkrun.org.uk": [12407], "oir.nih.gov": [11052], "siteparc.fr": [14884], "bikeji.com": [1872], "self.alipay.com": [817], "www.vdv.de": [17478], "rt.ru": [13469], "mail.monkeybrains.net": [10558], "www.your-freedom.net": [18721], "www.persona.org": [10662], "statswales.wales.gov.uk": [17957], "cannex.com": [2515], "virwox.com": [17731], "s.uploadhero.co": [17392], "intranet.study.fce.vutbr.cz": [17522], "www.dna.land": [4056], "developers.asana.com": [1242], "usuz.unizar.es": [17356], "dreamstime.com": [4755], "*.blinkeye.ch": [2076], "hbokids.com": [19241], "www.internationalpayments.co.uk": [8267], "ravendb.net": [13578], "*.moverall.com": [10633], "*.cyberduck.io": [3969], "panel.dataspace.pl": [4186], "play.spotify.com": [15296], "rally.stopwatching.us": [15488], "output1s.rssinclude.com": [13463], "mxgm.org": [9810], "opis.cmft.nhs.uk": [10913], "action.aarp.org": [234], "cch.com": [2547], "*.3cdn.net": [131], "calchamer.com": [2726], "burthub.com": [2451], "www.hr-s.co.jp": [7095], "tags.bluekai.com": [2133], "orbitalatk.com": [12092], "*.theatlanticcities.com": [1316], "www.bugzilla.org": [2410], "www.advocate-europe.eu": [669], "s.ukrnames.com": [17126], "i.newsvine.com": [11348], "cll.conted.ox.ac.uk": [17271], "*.villas.com": [17715], "www.cites.illinois.edu": [17258], "mini.bugs.opera.com": [12050], "sitecdn.answcdn.com": [1059], "www.nxtgn.org": [11594], "lh2.google.com.*": [6837], "www.reverbnation.com": [13842], "connect.colchester.gov.uk": [3414], "imgs1-video.msn.com": [9796], "chinafile.com": [19059], "snapwidget.com": [15028], "forums.virtualbox.org": [17748], "www.konami-korea.kr": [8973], "torrentz-proxy.com": [16589], "iacr.org": [8255], "hamradio.com": [7184], "drone.io": [4766], "www.simbad.cnrs.fr": [6195], "www.infogr.am": [8109], "cruises.webjet.com.au": [18124], "members.fas.org": [5723], "*.arukereso.hu": [1237], "wuliu.taobao.com": [15952], "linksfu.com": [9379], "marvel.com": [10037, 10038], "media.glasses.com": [6702], "www.iipvv.nl": [7740], "localoffer.bradford.gov.uk": [2264], "webmail.nasa.gov": [10869], "esac.osu.edu": [11760], "a4.jimstatic.com": [8571], "m.slashdot.org": [14947], "www.vianetfuelsolutions.com": [17663], "joomlainfo.ch": [19325], "*.euroforum.de": [5413], "www.habervision.com": [7124], "www.verisignlabs.com": [17624], "www.amnesty.org.tr": [970], "cyon.ch": [3981], "frugalware.org": [6234], "*.schulte.org": [14369], "cdig.me": [2915], "ifixit-meta.dozuki.net": [7726], "www.yourvideohost.com": [18733], "account.cern.ch": [2575], "ekiga.net": [5131], "songkick.com": [19609], "voxility.com": [17855], "static5.startnext.com": [15412], "kuruc.info": [9045], "bugs.siedler25.org": [13832], "webstac.wustl.edu": [17993], "democracy.kirklees.gov.uk": [8916], "ecommerce.oblic.com": [11608], "fishnetsecurity.com": [5882], "8gwc-kbhkort.kk.dk": [8730], "forums.groundspeak.com": [6967], "www.nice.nhs.uk": [10913], "support.pipni.cz": [12257], "wholeearth.com": [18262], "www.dnschain.net": [4060], "cdnma.com": [11179], "burp.renderfarming.net": [13765], "api.basespace.illumina.com": [7968], "starkist.com": [15391], "saptraining.ncl.ac.uk": [10884], "forum.bitcoin.co.id": [1964], "it24.idg.se": [7705], "www.gna.org": [6758], "assoc-amazon.de": [1289], "dataconsole.kruxdigital.com": [9015], "www.virusec.com": [17760], "comptracker.rigzone.com": [1916], "talgov.com": [15924], "www.cachethq.io": [2709], "opencores.org": [11930], "mpagano.com": [10669], "rally1.rallydev.com": [13537], "mozaik.axosoft.com": [1477], "www.guarantorusloans.co.uk": [6998], "spreadshirt.de": [15300], "l.longtailvideo.com": [9589], "blog.kaywa.com": [8827], "jewishpress.com": [8563], "ugyfelkapu.digi.hu": [4470], "www.efinancialcareers.cn": [4910], "openlistings.co": [12019], "help.yandex.com.tr": [18649], "www.nurdspace.nl": [10977], "spreadshirt.dk": [15300], "ly.zdf.de": [19800], "www.ibtimes.co.uk": [7677], "ibanking.stgeorge.com.au": [19627], "digibond.wpengine.netdna-cdn.com": [4480], "site24x7.com": [14861], "etraining.wto.org": [17934], "mamp.info": [19379], "church.ez-web-hosting.com": [5000], "kenexa.com": [8848], "jariangibson.com": [8521], "www.webtatic.com": [18162], "nlgcdn.com": [11432], "workiva.com": [18442], "www2.amnesty.org.uk": [971], "*.datacard.com": [4198], "www.wpenginestatus.com": [17924], "cdn.pulpix.co": [13223], "dc801.org": [4012], "*.pjtv.com": [12262], "www.seower.com": [14590], "englearn.osu.edu": [11760], "www.hackinthebox.org": [7154], "rui.gwallet.com": [13522], "*.blazonco.com": [2064], "security-master.debian.org": [4274], "amnesty.org.ru": [969], "support.qacafe.com": [19529], "www.ercnsm.osu.edu": [11760], "www.betnet.fr": [11186], "verfassungsschutz.de": [2427], "store.symantec.com": [15715], "ssl7.net": [14496], "flixbus.fr": [5931], "ssc.osu.edu": [11760], "parallax.com": [12390], "www.openbittorrent.com": [11923], "www.globusonline.org": [6746], "wigan.gov.uk": [18286], "explorer.dot-bit.org": [4691], "home.wpm.neustar.biz": [11280], "user-agents.org": [17429], "*.kpnmail.nl": [8744], "www.mitpress.mit.edu": [9749], "quadrantsec.com": [13323], "tools.sparklabs.com": [15220], "upgnation.com": [16200], "essaysreasy.net": [5364], "wikitest.geogebra.org": [6537], "www.connecthr.nl": [2783], "fee.org": [5564], "coophotellkupp.no": [3646], "www.imfreedom.org": [8183], "hps.org": [19263], "red-pill.eu": [13658], "amnesty.or.jp": [966], "www.usfreeads.com": [17043], "haskoin.com": [7231], "files.thirdpresence.com": [16369], "hongkongpost.gov.hk": [19259], "hackerboard.de": [7146], "*.hsbc.co.uk": [7098], "45millionvoices.org": [147], "avatar.threema.ch": [16399], "consult.cotswold.gov.uk": [19081], "*.ppjol.com": [13034], "onlandscape.co.uk": [11817], "www.hakin9.org": [7169], "www.stitcher.com": [15476], "www.vetdepot.com": [17654], "multimedia.pol.dk": [12859], "hungerhost.com": [7619], "bugbase.adobe.com": [615], "support.novell.com": [11530], "ionicframework.com": [8339, 8340], "admin.theatlanticwire.com": [1316], "www.sonypictures.co.uk": [15151], "news.eastsussex.gov.uk": [19142], "businessclass.comcast.net": [3460], "*.www.o2.cz": [16076], "www.cups.org": [2690], "educationnext.hks.harvard.edu": [5095], "bluecastle.nottingham.ac.uk": [11528], "coe.uaa.alaska.edu": [17233], "beaconreader.com": [1727], "www.mariestopes.org.au": [9992], "www.postimage.org": [19511], "www.discovery.org": [4555], "tor.lugons.org": [9108], "*.hostpoint.ch": [7541], "apps.cheshireeast.gov.uk": [3066], "apigee.com": [1093], "1.downloader.disk.yandex.com": [18651], "phabricator.haskell.org": [7229], "go.eset.com": [5358], "secure.redflush.com": [13674], "files.williamhill.com": [18315], "www.st.org": [14187], "www.louiseharrisoncouture.com": [9621], "spain.palsolidarity.org": [12338], "www.udacity.com": [17110], "support.udemy.com": [17111], "www.digitalwpc.com": [4502], "forum.games.mail.ru": [9874], "linuxpenguins.xyz": [19367], "www.citizenlab.org": [16183], "svn.aircrack-ng.org": [18948], "cvut.cz": [3992], "savedeo.com": [14312], "trade.2.taobao.com": [15952], "delish.com": [4331], "student.liu.se": [9084], "www.peerreach.com": [12517], "clic.reussissonsensemble.fr": [13835], "at.norton.com": [11505], "klibert.pl": [8932], "iptv.canaldigital.dk": [2803], "www.psykologteam.dk": [13541], "login.hscic.gov.uk": [19264], "es.videos.t-mobile.com": [15770], "waze.com": [18014], "www.amwaygrand.com": [887], "i-secure.walmartimages.com": [17965], "owa.student.kuleuven.be": [8816], "host-tracker.com": [7503], "de-sr.dict.cc": [4455], "hostdime.com": [7510], "guardian.co.tt": [6999], "wap.baidu.com": [1619], "www.ncta.com": [10888], "adminit.usc.edu": [17278], "images.springer.com": [15309], "customercare.inyt.com": [7772], "just-eat.dk": [19328], "www.trumpia.com": [16779], "www.corrent.org": [3686], "staticorigin.wixstatic.com": [18384], "*.robtex.com": [13920], "www.picmet.org": [12255], "infusedsystems.com": [8135], "jobb.blocket.se": [2094], "www2.scribblelive.com": [14412, 14413], "skolaonline.cz": [19598], "www.championsofregnum.com": [2990], "i.literotica.com": [9467], "www.unwantedwitness.or.ug": [17375], "www.postaffiliatepro.com": [12953], "*.american.edu": [934], "trojansalert.usc.edu": [17278], "favorite.taobao.com": [15952], "liferay.com": [9333], "www.cdw.com": [2566], "docs.openpgpjs.org": [11965], "www.1xbet.com": [69], "meinprivatkaffee.tchibo.de": [15985], "www.gjopen.com": [6336], "www.maksukaista.fi": [19377], "nyx.com": [10996], "myeaccount.islington.gov.uk": [8370], "*.sdlcdn.com": [14432], "www.cyberpowerpc.com": [19098], "g5.gov": [6300], "www.alumni.utah.edu": [17288], "www.udemy.com": [17111], "forums.wxwidgets.org": [19779], "www.offog.org": [11756], "linsrv104.linuxcontrolpanel.co.uk": [9426], "www.jwplayer.com": [9589], "jekkt.com": [8542], "tongji.alicdn.com": [805], "advertiser.adknowledge.com": [599], "*.kde-look.org": [19462], "www.tcpalmextras.com": [15793], "bell.ca": [1763], "bollettino.poste.it": [12965], "www.gamecraft.cz": [19206], "www.supersec.com": [15634], "userecho.com": [17430], "cp.pt": [3744], "www.nationaldefensemagazine.org": [11049], "pensionsmyndigheten.se": [12540], "www.totaltravel.co.uk": [18638], "flinto.com": [5923], "mgel.osu.edu": [11760], "makeapledgepayment.stanford.edu": [15383], "foundationsource.com": [6077], "modelviewculture.com": [10518], "otl.stanford.edu": [15383], "ll-assets.tmz.com": [15832], "fotoforensics.com": [7140], "aulani.jobs": [1367], "www.itea3.org": [7846], "jwpsrv.com": [8701], "static9.startnext.com": [15412], "readme.io": [13608], "apps.evozi.com": [5469], "skyriderplay.com": [14940], "www.justice.gov.uk": [10427], "*.zeit.de": [18812], "www.bvg.de": [1582], "*.malina.hu": [4665], "www.octopart.com": [11714], "www.identitytheft.gov": [7938], "pindropsecurity.com": [19495], "opentpx.org": [11980], "www.starwars.com": [15396], "mail.re-publica.de": [13597], "riverisland.com": [13906], "www.numergy.com": [11579], "nap.rkn.gov.ru": [13913], "*.myspace.com": [10847], "www.7-eleven.com": [187], "peliaika.fi": [6394], "info.nowsecure.com": [11533], "www.btcturk.com": [1564], "studi.f4.htw-berlin.de": [7112], "dealchicken.com": [12631], "pp.vk.com": [17493], "admin.exmasters.com": [5497], "openai.com": [11916], "publicaccess.glasgow.gov.uk": [6699], "support.cex.io": [2587], "www.leetway.com": [9225], "gethashing.com": [6577], "vtbrussia.ru": [17515], "*.sitesense-oo.com": [11021], "my.fireclick.com": [5856], "www.baltimoresun.com": [16730], "malcovery.com": [9922], "www.torrent.tm": [16577], "tonergiant.co.uk": [16545], "www.mykolab.com": [10765], "torrentz.to": [16590], "www.peerlibrary.org": [12516], "*.fanhattan.com": [5654], "www.canvaslms.com": [2814], "netsale.aktiiviraha.fi": [7186], "www.leboncoin.fr": [19351], "www.cryptologie.net": [3876], "rackspace.hk": [13504], "bitme.com": [2007], "contextly.com": [3615], "www.icp.uni-stuttgart.de": [17281], "sjs.bizographics.com": [2032], "connect.astaro.com": [5177], "informers.sinoptik.ua": [14852], "een.ec.europa.eu": [5420], "kirklees.gov.uk": [8916], "*.moneysavingexpert.com": [10549], "lists.kde.org": [8718], "community.lls.org": [9089], "boston.com": [2233], "mixi.jp": [10467], "jhalderm.com": [8470], "www.labp.htwk-leipzig.de": [7114], "www.linotype.com": [9388], "www.videoly.co": [17697], "feeds.jivesoftware.com": [8585], "subscription.people.com": [12547], "numsys.eu": [11580], "static.stubhub.de": [15534], "sakerhet.idg.se": [7705], "ecn.t4.tiles.virtualearth.net": [17755], "www.onthewire.io": [11819], "www.newzsec.com": [11352], "www.drivee.ne.jp": [4764], "plastidipuruguay.com": [12782], "www.dsi.cnrs.fr": [6195], "artday.co.kr": [1226], "www.niehs.nih.gov": [11052], "www.androidpit.de": [1009], "account.ubnt.com": [17084], "*.autistici.org": [1413], "www.apertureinsight.com": [13226], "datatracker.ietf.org": [7721], "www.aeon.co": [681], "www.stshrt.com": [15352], "explore.t-mobile.com": [15772], "www.nadaguidesstore.com": [10867], "jobs.daringfireball.net": [4147], "*.getshine.com": [6605], "www.stopwatching.us": [15488], "i2.gmx.com": [6350], "www.namebrightstatic.com": [11017], "cbps.canon.com": [2809], "burningshed.com": [2442], "oceandiscoveryportal.xprize.org": [18495], "goparallel.sourceforge.net": [15174], "hydra.nixos.org": [11430], "www.schneierfacts.com": [19569], "www.clkmon.com": [3272], "noembed.com": [11457], "datadirect.com": [4180], "*.kinghost.net": [8898], "www.sso.bluewin.ch": [2157], "www.gigenet.com": [6656], "chat.cari.net": [2518], "www.lokun.is": [9565], "www.cotse.net": [3696], "www.xt-commerce.com": [18595], "www.1337x.to": [31], "*.reelstatic.com": [13711], "mmedia.ozon.ru": [12199], "asset.xmission.com": [18529], "std3.ru": [15445], "ian.com": [7895], "accountchooser.com": [461], "www.reclaim-your-privacy.com": [13645], "*.santanderbillpayment.co.uk": [14292], "*.frieslandbank.nl": [6219], "www.panicbutton.io": [12362], "*.wsod.com": [10024], "www.1984hosting.com": [41], "muckrock.com": [10684], "*.player.fm": [12802], "checkmyping.com": [3052], "edge.fscdn.org": [5604], "nl-marketing.tradepub.com": [16645], "automotivelinux.org": [1429], "tvheadend.org": [16860], "scottbrand.com": [14397], "www.here.com": [7326], "ugla.hi.is": [7066], "www.ihgagent.com": [8230], "siim.ut.ee": [17069], "sms.sknvibes.com": [14126], "mikeconley.ca": [10384], "library.cwi.nl": [2958], "acp.planningportal.gov.uk": [19499], "id.trove.com": [16762], "it.malwarebytes.org": [9929], "www.erhvervsstyrelsen.dk": [5341], "workorder.aliyun.com": [821], "trunk.evernote.com": [5450], "peterodding.com": [12593], "ccfn.ncsu.edu": [11492], "www.rnengage.com": [13440], "fulcrumbiometrics.com": [6247], "purinastore.com": [13246], "eugene.kaspersky.com": [8806], "login.libproxy.aalto.fi": [390], "registro.br": [13735], "htrnews.com": [7322], "*.cli-apps.org": [19462], "studentaccounting.wustl.edu": [17993], "www.complianceoffice.wustl.edu": [17993], "www.uno.im": [17361], "stipendia.vutbr.cz": [17522], "www.eba.europa.eu": [5421], "www.nustarz.com": [11563], "invoiceocean.com": [8332], "www.argoscareers.com": [1186], "d.mhcache.com": [10331], "dataskydd.net": [4215], "*.h5n.us": [7044], "parkright.westminster.gov.uk": [18220], "www.upgnation.com": [16200], "cdn.stablehost.com": [15357], "www.eauth.usda.gov": [17209], "*.esetstatic.com": [4957], "www.vodafone.de": [17814], "*.ciao.com": [3132], "www.barracudanetworks.com": [1680], "en.verbling.com": [17615], "360buy.com": [111], "*.ecampus.no": [4882], "www2.healthunlocked.com": [7259], "dml.kuleuven.be": [8816], "gearhog.com": [6486], "www.jd.hk": [8424], "*.icims.com": [7685], "cloud-cp.hostingsolutions.cz": [7531], "cafepress.co.uk": [2716], "cisofy.com": [2616], "*.4rx.com": [152], "shop.flixbus.at": [5931], "www.iti.illinois.edu": [17258], "www.heartbleed.com": [7276], "www.retronaut.com": [13829], "www.biallo.de": [1839], "www.lambdaops.com": [9137], "zno.yandex.ua": [18656], "help.theplatform.com": [16230], "delivery.ad.newsnow.net": [11331], "quadrant.org.au": [13322], "www.oecdilibrary.org": [11618], "www.shellterproject.com": [14697], "tescoshareandearn.com": [16141], "www.volatilesystems.com": [17825], "www.rettighedsalliancen.dk": [13831], "www.vibrantmedia.com": [17665], "*.habets.pp.se": [7126], "www.automatak.net": [1426], "sbaglobal.com": [14625], "login.nemlog-in.dk": [11143], "cybershambles.com": [3964], "www5.dudley.gov.uk": [4795], "*.showmecon.com": [14739], "globaltestsupply.com": [6719], "para.maximintegrated.com": [10096], "www.terveysportti.net": [16133], "static.ylilauta.org": [19792], "status.zen.co.uk": [18815], "fiannafail.ie": [5768], "beacon.rubiconproject.com": [14014], "www.esolangs.org": [5359], "www.kcl.ac.uk": [8899], "www.vanlanschot.nl": [17552], "www.javvin.com": [8532], "reyn.ir": [13852], "www.dcboee.org": [4013], "correlatedvm.netspi.com": [11206], "eng.fronter.com": [19200], "www.nsslabs.com": [10959], "mutualofamerica.com": [10733], "verisign.com.tw": [17623], "a0.jimstatic.com": [8571], "www.cof.ens.fr": [4930], "mtu.edu": [9802], "image12.bizrate-images.com": [2033], "awesome-it.de": [1461], "help.conoha.jp": [3587], "cebit.de": [2924], "aldi.nl": [299], "on.wsj.com": [1920], "mthode.org": [10682], "cp.win-rd.jp": [18325], "uk.hosting.adjug.com": [526], "bugs.freedesktop.org": [6126], "s3.lbrcdn.net.s3-external-3.amazonaws.com": [9177], "www.civilservice.gov.uk": [19066], "www.cert.pl": [2577], "igiveonline.com": [7889], "vdoth.com": [17583], "sg.redhat.com": [13675], "*.rpxnow.com": [13449], "online.mbank.cz": [9722], "auth.illinois.edu": [17258], "press.11main.com": [20], "train.jd.com": [8423], "forum.fineproxy.org": [5846], "www.otalk.im": [12130], "git.centos.org": [2942], "tecnica.ist.utl.pt": [16032], "www.camaya.net": [2764], "auto.ya.ru": [18626], "winterswijk.nl": [11132], "mail.subsignal.org": [15566], "mylikes.com": [10768], "pilgrim.ceredigion.gov.uk": [2964], "gcm.atechmedia.com": [368], "www.sqlconverter.com": [14162], "www.incloak.com": [8029], "nekvapor.com": [10897], "grondalmulticenter.kk.dk": [8730], "email.usc.edu": [17278], "intelish.com": [8213], "www.highways.gov.uk": [19250], "onemancan.org": [11849], "secure.informaction.com": [8121], "addisonlee.com": [577], "mediademocracyfund.org": [10144], "encase.com": [7006], "blog.freenode.net": [19196], "gitlab.lrz.de": [9238], "techfreedom.org": [16011], "community.vodafone.ie": [17815], "schokokeks.org": [19570], "equalit.ie": [4947], "sir.cern.ch": [2575], "satoshilabs.com": [19564], "*.stardock.com": [15401], "tcd.ie": [16736], "omniti.com": [11794], "www.oneplus.net": [11841], "www.inverse.ca": [8315], "rad.msn.com": [9796], "www.dareboost.com": [4146], "fox-it.com": [6084], "nationaleyegene.nei.nih.gov": [11052], "mijnwestlandutrecht.nl": [18217], "www.chroniclevitae.com": [3123], "dnswatch.info": [4066], "*.propellerads.com": [13156], "alrc.gov.au": [1396], "devx.com": [18074], "webpg.org": [18078], "buyboard.com": [2467], "hynek.me": [7641], "turn.com": [16840], "habrastorage.org": [7130], "*.www.loopia.se": [9606], "ex.ac.uk": [17251], "www.privnote.com": [13105], "www.ofsted.gov.uk": [19456], "www.netvibes.com": [11257], "*.silobreaker.com": [14797], "be.godaddy.com": [6773], "dojotoolkit.org": [4637], "www.rarbg.to": [19534], "coin-swap.net": [3390], "mobile-ent.biz": [8227], "apan.org": [329], "www.softwarefreedom.org": [15098], "*.makerbot.com": [9915], "highseer.com": [7403], "peerreach.com": [12517], "qsstats.com": [13289], "*.questadmin.net": [6283], "notice.taobao.com": [15952], "support.ipvanish.com": [7799], "quinstreet.com": [13365], "*.networkdepot.com": [11260], "green-wood.com": [6916], "*.abusix.com": [432], "www.ianthehenry.com": [7896], "www.linuxwall.info": [9437], "www.deeppoliticsforum.com": [4300], "www.photosynth.net": [12649], "memberprod.alipay.com": [817], "xml.yandex.kz": [18652], "gpul.org": [6375], "atfp.co": [1920], "mediaxus.com": [10183], "web.uillinois.edu": [16960], "assets2.motherboard.tv": [10607], "student-affairs.buffalo.edu": [17297], "www.varnish-cache.org": [17568], "careers.fi": [2845], "parti-pirate.ch": [12284], "www.el-tramo.be": [5137], "dolphin.kde.org": [8718], "openmailbox.org": [11955], "www.synthetix.info": [15743], "www.uwm.edu": [17294], "*.maxroam.com": [9717], "www.madboa.com": [9836], "*.rememberthemilk.com": [13758], "forums.pragprog.com": [13012], "tomsk.rt.ru": [13469], "download.halowaypoint.com": [7176], "go.linuxfoundation.org": [9412], "*.spreadshirt.net": [15300], "aas.org": [235], "www.cbcblueprint.com": [2521], "www.cic.ch": [1654], "de17a.com": [4242], "hypersend.labcorp.com": [9122], "fortresslinux.org": [6058], "softether.org": [15092], "*.readwrite.com": [13613], "itstools.ornl.gov": [11693], "rubenerd.com": [14013], "email.ixwebhosting.com": [7882], "profile.surfconext.nl": [14198], "zopim.com": [18908], "community.amd.com": [925], "unigine.com": [17187], "pics.computerbase.de": [3538], "www.vehicular.isy.liu.se": [9084], "thr.com": [15813], "bugcrowd.com": [2406], "shuddle.us": [14750], "ng-book.com": [11371], "*.bundestag.de": [4414], "www.multiseek.net": [10696], "www.csbaacademy.com": [2664], "bookdepository.com": [16217], "charter.com": [3020], "www.cybergolf.com": [3971], "evisa-vietnam.com": [5460], "red-gate.com": [13657], "*.cachefly.net": [2708], "statinfo.ksh.hu": [8750], "scene7.com": [14340], "www.ukrnames.com": [17126], "uat.dwolla.com": [4816], "www.philadelphiabar.org": [12621], "s4.test.ft-static.com": [19201], "www.mikrotik.com": [10388], "milliways.cryptomilk.org": [3880], "cemas.osu.edu": [11760], "glljobs.org": [19222], "www.educationnext.org": [5095], "www.alliancebernstein.com": [851], "www.ticketmaster.*": [16421], "www.aktivix.org": [771], "mobile.southdevon.ac.uk": [15188], "www.krebsonsecurity.com": [9010], "w1.sndcdn.com": [15032], "assets.bugcrowdusercontent.com": [2407], "media.dustin.eu": [4809], "slovari.yandex.by": [18648], "*.travelzoo.com": [16700], "admob.com": [532], "hirlevel.aldi.hu": [299], "my.usda.gov": [17209], "piwik.vm.ag": [17803], "communities.ca.com": [2511], "cloudstor.aarnet.edu.au": [233], "blog.gnupg.org": [6761], "*.ontsi.red.es": [13659], "www.vh3.vutbr.cz": [17522], "*.tedcdn.com": [15806], "overflow.bufferapp.com": [2402], "www.ssl.gostats.com": [6785], "www.imh.liu.se": [9084], "code.djangoproject.com": [4590], "stanfordcareers.stanford.edu": [15383], "*.u-tokyo.ac.jp": [16920], "elections.transformativeworks.org": [16666], "hits.epochstats.com": [5326], "*.d3.ru": [3998], "mapquesthelp.com": [9970], "es.stock.walmart.com": [17964], "professionalprivacypolicy.com": [6716], "pacw.org": [12204], "docs.blesta.com": [2070], "getdigital.co.uk": [6570], "media.intellipoker.bg": [19298], "visaeurope.com": [17764], "alumni.stanford.edu": [15383], "estatico.vozpopuli.com": [17861], "itunesconnect.apple.com": [1120], "extidp.ornl.gov": [11693], "investor.fitbit.com": [5887], "namespace.us": [11023], "www.newspaperdirect.com": [11346], "community.opendns.com": [11932], "www.bitinvest.com.br": [1998], "metro.srgssr.ch": [19621], "community.secondlife.com": [14462], "rocketmail.com": [18638], "securema.ikea.com": [7959], "downloadeu1.teamviewer.com": [16004], "my.m3xs.net": [9698], "www.suicidepreventionlifeline.org": [11097], "miniatur-wunderland.de": [10422], "blog.conformal.com": [3572], "a.dyndns.com": [4820], "www.ccodearchive.net": [3528], "petermolnar.eu": [12592], "blog.bytemark.co.uk": [2489], "pomoc.nazwa.pl": [11117], "www.jcp.org": [8419], "www.exploit.in": [5508], "novosibirsk.rt.ru": [13469], "tibeti.xfce.org": [18511], "chicagotribune.com": [3072], "fau.de": [17311], "*.360yield.com": [110], "www.ageriul.asso.ulaval.ca": [17229], "www.holoscripter.org": [7458], "resourcestore.plymouth.ac.uk": [12833], "www.tampabaysod.com": [15938], "nodesecurity.io": [11452], "www.pas.org.my": [12353], "webauth1.slac.stanford.edu": [15383], "papercut.ics.illinois.edu": [17258], "*.searchmarketing.com": [14444], "*.williams.edu": [18317], "indberet.virk.dk": [17741], "data.birmingham.gov.uk": [19000], "curetheitch.com": [3929], "oc.ederdrom.de": [5076], "sops.news.com.au": [11338], "www.pornhub.com": [12926], "www.gitshell.com": [6683], "www.lesestoff.ch": [19358], "www1.handelsbanken.fi": [7186], "stem.fi.ncsu.edu": [11492], "ard.yahoo.co.jp": [18640], "wiki.netbsd.org": [11184], "joyent.com": [8651], "alex.dojotoolkit.org": [4637], "ontrac.com": [11892], "aftonbladet.se": [716], "stats.salford.gov.uk": [19562], "apperdeck.com": [7461], "calendar.mit.edu": [9747], "zerve.com": [18848], "instapanel.com": [8188], "thefund.stanford.edu": [15383], "teardowniq.com": [16007], "*.css.gov.au": [3495], "archiv.mobile.de": [19403], "www.fallout4.com": [5643], "pcpartpicker.com": [12497], "opentechfund.org": [11983], "msg.telus.com": [16103], "elan.plexapp.com": [12815], "www.fightaging.org": [5785], "www.nos-oignons.net": [11511], "ecdn.liveclicker.net": [9505], "ru.cryptonator.com": [3883], "2checkout.com": [83], "mcitizen.com": [9865], "swisscom.ch": [15698], "m.ut.ee": [17069], "bluehost-cdn.com": [2149], "www.planet-lab.org": [12763], "sait.usc.edu": [17278], "*.coremotives.com": [3664], "jobs.1und1.de": [68], "ngvpn03.nvidia.com": [10985], "chat.iptorrents.com": [7798], "cdn.iqcontentplatform.de": [7810], "developerforums.blackberry.com": [2050], "www.meanstinks.com": [10133], "static-cdn.jtvnw.net": [16888], "teachingcenter.wustl.edu": [17993], "www.avicoder.me": [18973], "www.westminster.gov.uk": [18220], "kayak.com": [8823], "cdn-website.nanorep.com": [11033], "bloggeek.me": [2101], "roundup.kolab.org": [8959], "m.games.mail.ru": [9874], "services.angus.gov.uk": [1020], "*.mlpforums.com": [9757], "identityworkshop.eu": [7940], "www.yceml.net": [3481], "stelladot.com": [15463], "anunciou.com": [1074, 1075], "innerbody.com": [19293], "coinkite.com": [3406], "www.play0ad.com": [12792], "*.shuddle.us": [14750], "his.com": [7293], "www.denic.de": [4362], "chartio.com": [3024], "talky.io": [15935], "*.ew.com": [5297], "www.pogoda.yandex.kz": [18652], "es.gy": [5352], "img.ashampoo.com": [1250], "researchnews.osu.edu": [11760], "tuleap.net": [16822], "godscloud.zdf.de": [19800], "rewards.vodafone.co.uk": [17813], "mkateb.com": [10474], "www.kornerstoneadmin.com": [8989], "forge.gluster.org": [6752], "nimenhuuto.com": [11409], "cornify.com": [3677], "777coin.com": [188], "support.mariadb.com": [9987], "pypa.io": [13265], "neiyi.taobao.com": [15952], "www.vutbr.cz": [17522], "blog.kaspersky.ru": [8807], "adminklient.ppl.cz": [12283], "img.a4apphack.com": [226], "web-ast.dsi.cnrs.fr": [6195], "status.freed0m4all.net": [6163], "schoolapplications.kirklees.gov.uk": [8916], "qz.com": [13386], "www.adbusters.org": [565], "host1.jabbi.pl": [8480], "wms.geo.admin.ch": [19648], "khabarovsk.rt.ru": [13469], "cgmanager.linuxcontainers.org": [9420], "www.eventim.fi": [9440], "graphics.adultfriendfinder.com": [643], "forensics.sans.org": [14072], "ei.rlcdn.com": [13435], "vipserv.org": [17488], "feral.io": [5751], "negativesum.net": [11135], "panel-beta.bytemark.co.uk": [2489], "p6.zdassets.com": [18806], "www.bishopfox.com": [1915], "www.tickets.calpoly.edu": [2747], "freedome.f-secure.com": [5541], "globalhumanrights.org": [6726], "www.sesamstrasse.de": [14629], "expeditedssl.com": [5505], "aftontrailrun.com": [714], "www.websitealive2.com": [18149], "snel.com": [15034], "sick.com": [14757], "legal.yandex.ua": [18656], "*.argos.ie": [1186], "hamburg.de": [7181], "underthehood.myob.com": [9815], "openleaks.org": [11949], "blocklist.rkn.gov.ru": [13913], "content7.flixster.com": [5933], "covisint.com": [3736], "schooladmissions.cheshirewestandchester.gov.uk": [19057], "widget.criteo.com": [3801], "www.staempfliverlag.com": [19623], "www.apcmag.com": [330], "media-hearth.cursecdn.com": [3934], "a1.websitealive.com": [18149], "celebritybabies.people.com": [12546], "aishelp.wustl.edu": [17993], "ymstat.com": [18621], "ubmaviationnews.com": [16927], "www.kickasstorrents.eu": [8879], "*.gu.se": [6396], "discuss.io": [4558], "wdfiles.com": [18294], "www.telekom.sk": [16088], "lists.ocamlcore.org": [11613], "ehow.com": [19137], "beta.metooo.io": [10317], "icpen.org": [7689], "insurancetech.com": [16927], "*.startingpage.com": [8405], "dom.bg": [4645], "www.oeffentliche.de": [11730], "*.epi.org": [5059], "eprotocol.stanford.edu": [15383], "webmail.osu.edu": [11760], "prv.se": [12290], "www.enahost.com": [5228], "peertech.org": [12525], "www.shop.skanetrafiken.se": [14896], "extranet.dft.gov.uk": [19116], "www.domainsite.com": [19124], "*.webstat.com": [18156], "www.datadoghq.com": [4201], "www.centreforeffectivealtruism.org": [2955], "partnerships.register.com": [13732], "*.vara.nl": [17563], "nz.pcpartpicker.com": [12497], "dok.ut.ee": [17069], "blog.vulnhub.com": [17871], "rightscentral.copyright.com": [3657], "i3.social.s-msft.com": [14058], "work4labs.com": [18436], "spinics.net": [15277], "www.projectgus.com": [19522], "blog.livefyre.com": [9507], "mediaed.org": [10150], "calyxinstitute.org": [2760], "kkh-allianz.de": [8732], "cs.mycommerce.com": [10753], "archive.cheshire.gov": [3065], "www.dynatrace.com": [4825], "democracy.wirral.gov.uk": [18370], "www.netspi.com": [11206], "widget.plugrush.com": [12824], "www.jura.ch": [19648], "25live.collegenet.com": [3429], "ashford.com": [1252], "pda-passport.yandex.com.tr": [18649], "aweber.com": [379], "globaltap.com": [6740], "download.guardian.co.uk": [7000], "virtualnewscenter.com": [17753], "secure.boxwoodtech.com": [2261], "www.hellholecheesefactory.org": [7292], "www.twitch.tv": [16888], "templatemonster.com": [16106], "peertransfer.com": [12518], "my.taobao.com": [15952], "zugerkb.ch": [19333], "dm.nazwa.pl": [11117], "www.gimp.org": [19218], "digboston.com": [4466], "*.365ticketsglobal.com": [116], "ispbilling.com": [16816], "www.ethos-os.org": [5386], "abo.freitag.de": [6194], "*.icij.org": [8264], "sociomantic.com": [15079], "browser-update.org": [19020], "mms.10gen.com": [14], "fluxcards.de": [5958], "swdlp.apple.com": [1120], "lessigforpresident.com": [9261], "livecoding.tv": [9506], "blog.hartwork.org": [7217], "www.quitter.no": [13370], "spacelaunchreport.com": [15211], "yeahtv.com": [18614], "api.sailthru.com": [14243], "broadcaster.email-tickets.com": [16425], "bugs.downthemall.net": [4722], "wexnermedical.osu.edu": [11760], "store.berniesanders.com": [1796], "sitemasonmail.com": [14881], "www.whatimg.com": [18233], "buildsecurityin.us-cert.gov": [17415], "www.vereinigte-ikk.de": [17619], "hiring.cs.stonybrook.edu": [15480], "community.sophos.com": [15154], "dotplex.de": [4703], "akamaicovers.oreilly.com": [11660], "www.panopticlick.com": [12363], "www.wiwi.htwk-leipzig.de": [7114], "vmware.com": [17495], "www5.informe.org": [8116], "money.mail.ru": [9874], "pact14.cs.illinois.edu": [17258], "fuzzing-project.org": [6286], "simonswain.com": [14816], "guides.github.com": [6680], "en-tr.dict.cc": [4455], "youtube.mk": [18709], "www.davidsontutoring.com": [4230], "www.codemilltech.com": [3356], "glue.umd.edu": [17263], "3v4l.org": [139], "youtube.me": [18709], "help.openstreetmap.org": [11979], "youtube.mx": [18709], "youtube.my": [18709], "www.accountsupport.com": [460], "www.anonine.com": [1046], "portal.leeds.ac.uk": [17318], "samwhited.com": [14260], "www.loverslab.com": [9632], "www.ubuntu-nl.org": [17099], "www2.technologyreview.com": [16041], "tweetdeck.com": [16869], "t35.com": [15778], "uvt.nl": [16445], "www.office.com": [11743], "www.ifb.htwk-leipzig.de": [7114], "mandtbank.spatialpoint.com": [9690], "proxy6.switchadhub.com": [15701], "spnet.nl": [14161], "static3.urbandictionary.com": [17407], "forms.valeofglamorgan.gov.uk": [17532], "www.ifolor.ch": [19282], "dccomics.com": [4015], "www.law.umich.edu": [17266], "ico.org.uk": [7688], "buckeyemail.osu.edu": [11760], "www.hr.uillinois.edu": [16960], "upload.api.weibo.com": [18187], "justia.com": [8697], "appear.in": [1114], "unclineberger.org": [16986], "h2hc.com.br": [7043], "www.bedford.gov.uk": [18986], "www.alltop.com": [861], "young-pirates.eu": [18716], "cap.stanford.edu": [15383], "pcmall.websitealive.com": [18149], "www.xavisys.com": [18547], "r.mradx.net": [10675], "eupt.unizar.es": [17356], "demo.cachethq.io": [2709], "chartsinfrance.net": [3025], "*.mxlogic.com": [10113], "www.copyleft.org": [3655], "arewecompressedyet.com": [1178], "prowebsector.gr": [13114], "omnigroup.com": [11793], "mechbunny.com": [10135], "bluejeanscable.com": [2140], "eat.seasonal.ly": [14450], "www.ballotmeasuredomains.com": [1632], "developer.windriver.com": [18338], "*.eztv.it": [5004], "www.ecatering.irctc.co.in": [7812], "sxp.microsoft.com": [10364], "open.alipay.com": [817], "pim.kde.org": [8718], "spreadsheets.google.com": [6834], "pssl.com": [12299], "www.hexspoorwms.nl": [7383], "www.journalism.co.uk": [8647], "postdirekt.de": [19112], "supportline.microfocus.com": [10348], "vimention.mobi": [17716], "financial.ucsc.edu": [17305], "bradmail.bradford.gov.uk": [2264], "touch.horo.mail.ru": [9874], "apps.olin.wustl.edu": [17993], "support.godaddy.com": [6773], "zona.telekom.sk": [16088], "cesiumjs.org": [2973], "bitcoinmagazine.com": [1981], "api.bitcoincharts.com": [1977], "*.advertise.com": [659], "*.hometheaterreview.com": [7474], "bisente.com": [1914], "ecoff.org": [5055], "ico.gov.uk": [16967], "revselfservegg.eastlothian.gov.uk": [5014], "us.mcafee.com": [10114], "*.globaloneteam.com": [6738], "blog.geogebra.org": [6537], "xml.yandex.by": [18648], "cryptobib.di.ens.fr": [4930], "doubleclickbygoogle.com": [4708], "ubuntuforums.org": [17104], "data.fcc.gov": [5709], "immunicity.uk": [19288], "www.placeimg.com": [12753], "www.nines.nl": [11413], "notalwaysfriendly.com": [19441], "witness.theguardian.com": [16288], "scriptfodder.com": [14421], "*.ticketmaster.com": [16421], "picker.mit.edu": [9749], "www.onebitbug.me": [11854], "visioncritical.com": [17775], "www.heise.de": [7288], "itek.di.dk": [3566], "calazan.com": [2733], "bronto.com": [2361], "www.huffingtonpost.ca": [7599], "aws.passkey.com": [12430], "www.gartner.com": [6463], "launchpad.ufcfit.com": [16949], "conversion.7search.com": [195], "www.lavaboom.com": [9173], "library.uvm.edu": [17075], "www.moodle.org": [10575], "www.validlab.de": [7114], "api.uow.edu.au": [17350], "*.garmin.com": [19208], "docs.ansible.com": [1057], "invoice.zoho.com": [18884], "www.hertzequipmentsales.com": [7372], "www.backed.io": [1599], "www.matthewsmarking.com": [10083], "findit.library.jhu.edu": [16296], "neomailbox.*": [11154], "ysp.wusm.wustl.edu": [17993], "www.hautelook.com": [7240], "liveperson.hosted.jivesoftware.com": [9494], "www.getclef.com": [6587], "api.stripe.com": [15525], "pda-passport.yandex.com": [18651], "webmailcluster.perfora.net": [19487], "netlib.re": [11195], "butterflynetinc.com": [2464], "www.myaccount.earthlink.net": [5007], "begun.ru": [1755], "store.kagi.com": [8766], "www.stringeditions.leeds.ac.uk": [17318], "cnbc.com": [2632], "www.burstnet.eu": [2445], "webmail.freecycle.org": [6162], "www-acs.ucsd.edu": [16939], "img.okcoin.com": [11628], "triplebyte.com": [16746], "dozuki.com": [4732], "www.wildplanetphotomagazine.com": [18302], "ff.hrw.org": [7612], "r.casalemedia.com": [2870], "www.ouvaton.coop": [12155], "www.numato.com": [11576], "blogs.nvidia.com": [10982], "www.etipos.sk": [5388], "apc.org": [1294], "martineve.com": [10033], "www.ovh.lt": [12173], "comstern.at": [3456], "forums.playfire.com": [12805], "secure.livestream.com": [9514], "secure.hrw.org": [7612], "sourcecoast.com": [15170], "www.slate.fr": [14949], "netherlands.indymedia.org": [8085], "www.prism-break.org": [12287], "www.plugrush.com": [12824], "git.jcrosoft.com": [8421], "360cities.net": [107], "campus.oracle.com": [12082], "f3.thejournal.ie": [16224], "pydio.com": [13269], "tescofinance.com": [16136], "people.inf.ethz.ch": [4975], "*.nagano.cz": [11009], "liberty.me": [9299], "www.flyertalk.com": [5963], "parkingcrew.com": [12405], "www.bussgods.se": [2461], "tagx.nytimes.com": [11000], "*.booklooker.de": [2204], "secure.phabricator.com": [12614], "www.bizchannel.cimbthai.com": [2608], "www.snabb.co": [15018], "f.curbed.cc": [3925], "www.huobi.com": [7624], "www.torrents.to": [16587], "mellanox.com": [10241], "absolventi.vutbr.cz": [17522], "fp.advertising.microsoft.com": [10364], "www.websupport.cz": [18092], "*.accelacomm.com": [440], "m.odnoklassniki.ru": [11726], "gfmtrader.com": [6325], "*.sslcert14.com": [15345], "www.livingsocial.co.uk": [9516], "microsoftstore.com": [10368], "t3.io": [15777], "doc.qt.io": [13315], "corporateblog.progress.com": [13132], "api.kickstarter.com": [8881], "www.litebit.eu": [9455], "*.www.fbo.gov": [5714], "my.swiss.com": [15695], "pilot.ix.equinix.com": [5334], "assets.thecreatorsproject.com": [16263], "dotaznik.vutbr.cz": [17522], "www.unbubble.eu": [19714], "helpdesk.canadianwebhosting.com": [2795], "taleo.com": [15923], "wiki.ut.ee": [17069], "support.websupport.sk": [18160], "boneblast.com": [2196, 2197], "bluemanticketing.com": [2141], "www.tescoshareandearn.com": [16141], "www.securelist.ru": [14504], "www.uhhospitals.org": [17119], "www.gruene.de": [850], "givedirectly.org": [6688], "*.shoplocal.com": [14716], "staticassets.zanesvilletimesrecorder.com": [18785], "www.addictionhelpchat.com": [575], "bib.kuleuven.be": [8816], "*.sweetpepper.org": [12985], "linksunten.indymedia.org": [8085], "meilenrechner.de": [10394], "mathbuntu.org": [10067], "kmymoney.org": [8738], "chemefacsrch.mit.edu": [9749], "scpd.stanford.edu": [15383], "www.lkd.org.tr": [9086], "scorecardresearch.com": [14393], "support.freezone.co.uk": [6187], "qianbao.qukuai.com": [13319], "www.ultratools.com": [17133], "static.justromeo.com": [8425], "weatherzone.com.au": [18037], "support.warframe.com": [17977], "mybrand.tmall.com": [19684], "www.cancer.fi": [15744], "giac.org": [6330], "www.speakeasy.net": [15235], "www.tube4.me": [16813], "*.popphoto.com": [12922], "orbit.shazamid.com": [14690], "register.tmall.com": [19684], "ar.ch": [19648], "www.akzonobel.acs.org": [929], "c.eblastengine.com": [4877], "playingwithtime.sbb.ch": [15693], "qip.ru": [13283], "www.popcash.net": [12905], "in.support.tomtom.com": [16540], "websupport.cz": [18092], "services.wsje.com": [11321], "x-info.org": [18497], "www.okopnik.com": [11775], "www.fime.me": [5575], "*.getpocketbook.com": [12838], "www.sourcefoundry.org": [19611], "auth.gamespot.com": [6426], "hostpoint.ch": [7541], "de.malwarebytes.org": [9929], "rednerd.com": [13699], "www.garyjohnson2012.com": [6464], "support.intand.com": [15941], "www.bnd.bund.de": [2430], "ianthehenry.com": [7896], "api.sofort.com": [15089], "www.markup.io": [10026], "www.dnsleaktest.com": [4068], "myesri.com": [5363], "www.washington.edu": [17291], "www.theinquirer.fr": [11198], "*.nowybip.pl": [11535], "lighthouseapp.com": [9345], "omron.com": [11804], "www.aviris.nkl.fi": [1450], "spendmanagement.barclaycard.co.uk": [1664], "www.atlatszo.hu": [1322], "ovh.sn": [12173], "o3.aolcdn.com": [323], "jci.org": [8646], "itespresso.fr": [11198], "circl.wustl.edu": [17993], "webevent.wustl.edu": [17993], "*.deusm.com": [4405], "checkin.continental.com": [3619], "www.weather.yandex.com": [18651], "www.vocaroo.com": [17810], "classx.stanford.edu": [15383], "manitu.de": [9957], "secur1ty.com": [14476], "webftp.wedos.net": [17901], "downloadarchive.documentfoundation.org": [16221], "www.just-eat.ie": [19328], "www.cryptocoding.net": [19092], "habervision.com": [7124], "zerigo.com": [18835], "www.verisign.co.jp": [17623], "www.webonic.hu": [18136], "www.dolphin.com": [19122], "filecloud.io": [5798], "*.groupersocialclub.com.au": [6972], "slyar.com": [14976], "git.popcorntime.io": [12915], "assessment.vt.edu": [17740], "vlada.gov.sk": [14972], "www.edinburgh.gov.uk": [5084], "*.econsumer.equifax.ca": [5332], "status.mailchimp.com": [9875], "inductionsolutions.com": [8073, 8074], "sites.krieger.jhu.edu": [16296], "stproxy.lsbu.ac.uk": [9098], "secure.istockphoto.com": [19309], "ticketingnetworkeastmidlands.co.uk": [16420], "bahn.de": [1617], "*.pirateparty.ch": [12284], "tmcnet.com": [16515], "itwinterclosure.stanford.edu": [15383], "host1plus.com": [7505], "jud.ct.gov": [2680], "www.vipvpn.com": [17729], "www.fco.gov.uk": [5558], "crashplan.com": [3762], "grouponworks.com": [6979], "www.buildsecurityin.us-cert.gov": [17415], "issuu.com": [8378], "www3.cs.stonybrook.edu": [15480], "ac.ebis.ne.jp": [5040], "www.tito.io": [16408], "support.github.com": [6680], "forum.siedler25.org": [13832], "northpole.fi": [11502], "www.students.unibe.ch": [17238], "rt.com": [13468], "totalbarcode.com": [16599], "holidaybreak.co.uk": [7452], "officeworks.com.au": [11753], "reports.boldchat.com": [2187], "emeapressoffice.oracle.com": [12082], "shellmix.com": [14160], "world-airport-codes.com": [19764], "box.osu.edu": [11760], "osemagazine.osu.edu": [11760], "support.laquadrature.net": [9113], "status.digitalocean.com": [4495], "cf8.100r.org": [9], "garfield.com": [6459], "www.dropdeadpaper.com": [4770], "haber.yandex.com.tr": [18649], "music-cache.xbox.com": [18550], "*.dawanda.com": [4098], "www.rackspace.co.za": [13500], "titanfile.com": [16500], "adblockplus.org": [561], "fresh-hotel.org": [6199], "www.crossdresser-forum.de": [3816], "static3.boligportal.dk": [2191], "siteorigin.com": [14868], "tag.yieldoptimizer.com": [18683], "www.allerderm.com": [14993], "pics.paypal.com": [12467], "*.samsungchaton.com": [3030], "provider.wirral.gov.uk": [18371], "www.battelle.org": [1692], "ordnancesurvey.co.uk": [12097], "mediatakeout.com": [10164], "wikimedia.or.id": [18296], "netnewscheck.com": [11200], "tvnzzshop.ch": [19450], "www.d2jsp.org": [3997], "*.lrb.co.uk": [9582], "i3wm.org": [7660], "squid.academics.de": [437], "forum.videolan.org": [17688], "effectivemeasure.net": [5109], "motherpipe.co.uk": [10610], "img9.warez-bb.org": [17976], "bugzilla.xfce.org": [18512], "ec-media.soundcloud.com": [15161], "spbas.com": [14152], "compteur.fr": [3529], "www.rochester.edu": [13932], "dcpower.eu": [4016], "physics.williams.edu": [18316], "*.creativecow.net": [3779], "design.1105media.com": [15], "www.loctudy.fr": [9546], "r00tshell.lighthouseapp.com": [13389], "www.amoena.fr": [979], "wiki.openmamba.org": [19465], "nuand.com": [11566], "pdflabs.com": [12236], "familie.nordwest.aok.de": [317], "file12.bizrate-images.com": [2033], "moon-ray.com": [10577], "vpnreactor.com": [17503], "ar15.com": [337], "ads.indeed.com": [8051], "mail.whitelisbon.com": [18253], "virtual-server.org": [17747], "www.bitsapphire.com": [2016], "www.b3.manchester.gov.uk": [9944], "www.scanmarker.com": [14336], "academy.kaspersky.ru": [8807], "secure.hostcentric.com": [7509], "octopoos.com": [11715], "pacdn.500px.org": [167], "*.cincinnati.com": [3138], "forum.3sat.de": [135], "history.lds.org": [16219], "kintera.org": [8912], "cdn.v2ex.co": [17462], "*.maas360.com": [9817], "*.zendesk.com": [18824], "store.2k.com": [86], "biicode.com": [1869], "www.monkeybrains.net": [10558], "dnsquery.org": [4063], "mailgun.net": [9885], "tetu.com": [16148], "premiumize.me": [13028], "jobs.sheffield.gov.uk": [14694], "manage.cm": [9938], "about.pinterest.com": [12699], "*.french-country-cottages.co.uk": [18490], "www.arkos.io": [1196], "ediplomacy.afp.com": [723], "education.illinois.edu": [17258], "segments.webtrends.com": [18171], "my.virginmedia.com": [17737], "roundcube.serveriai.lt": [14616], "winterthur.zh.piratenpartei.ch": [12284], "wirelessmedia.ign.com": [7730], "searslabs.com": [14448], "*.guitarcenter.com": [7015], "www.wireedit.com": [18361], "www.ghowen.me": [6633], "cdn.42floors.com": [143], "help.hover.com": [7566], "www.nserver.ru": [11548], "blog.tierra.net": [16435], "www.emaileri.com": [5192], "www.mediacru.sh": [10170], "www.shop.bt.com": [1549], "www.one-tab.com": [11827], "fbapp.telegraph.co.uk": [16082], "www.deutscher-radiopreis.de": [4413], "app-de1.resrc.it": [13599], "*.dt07.net": [9739], "xui.ptlogin2.qq.com": [13285], "wpymedia.nhm.ac.uk": [10908], "www.youtube.com.br": [18709], "*.marketgid.com": [10008], "www.scooter-attack.com": [14390], "submit.ioccc.org": [7775], "pkg.hardenedbsd.org": [7204], "www.inlinkz.com": [8032], "www.itmatrix.eu": [7860], "my.lsu.edu": [9622], "bedford.firmstep.com": [19183], "uolr3.leeds.ac.uk": [17318], "www.antok.co": [1071], "pkware.com": [12265], "ups.xplosion.de": [18585], "www.clergyproject.org": [3235], "www.cafegate.com": [2717], "wholesale.swisscom.com": [15698], "www.blicko.com": [2072], "dashboard.resin.io": [13806], "trustedmessenger.com": [16788], "usfreeads.com": [17043], "manage.serverpilot.io": [14607], "ascendapp.com": [1245], "*.staticsfly.com": [14754], "errors.ubuntu.com": [17102], "www.notalwaysright.com": [19441], "robertsspaceindustries.com": [13922], "merton.greenparty.org.uk": [6925], "mail.azet.sk": [1481], "blogs.mail.ru": [9874], "rochester.edu": [13932], "www.canadiandimension.com": [2798], "bsturm.htwk-leipzig.de": [7114], "eiskent.co.uk": [4919], "klinika.zdravie.sk": [8934], "scontent-a.igcdn.com": [7951], "www.recordedbooks.com": [19543], "www.logmein.com": [9549], "mail-index.netbsd.org": [11184], "tickets.london2012.com": [9573], "www.esetnod32.ru": [4956], "imagefilter.app.compendium.com": [3516], "campina.es": [2782], "www.esr.org": [5009], "online.norfolk.gov.uk": [19436], "bitstampede.com": [1953], "www.easports.com": [4868], "desktop-client.fitbit.com": [5887], "resources.guild-hosting.net": [5277], "barnardos.org.uk": [18981], "cvedetails.com": [3947], "webento.com": [18115], "*.libreplanet.org": [9313], "skinflint.co.uk": [14913], "www.publishing-technology.de": [7114], "smuxi.org": [15016], "*.blogspot.be": [2107], "southern-electric.co.uk": [15194], "www.livecoding.tv": [9506], "its-prod-www2-2.ucsc.edu": [17305], "www.idr-trade.com": [9743], "consult.peterborough.gov.uk": [12594], "console.ubertags.com": [17088], "evotronix.com": [5463], "primecdn.500px.org": [167], "kryo.se": [9017], "wiki.data.gov": [4175], "actionautowreckers.com": [490], "forums.bakabt.me": [1622], "admin.ccbill.com": [2534], "beta.incoin.io": [8046], "www.mysweetiq.com": [10788], "static.iptorrents.com": [7798], "interstices.info": [8296], "ffx.subsignal.org": [15566], "www.webdevstudios.com": [18060], "tumblr.com": [16826], "soton.ac.uk": [17276], "*.anbg.gov.au": [1399], "www.redding.com": [4989], "img09.rl0.ru": [13914], "www.devalate.com": [19114], "rtp.vc": [13475], "valueclick.com": [17541], "eng.yammer.com": [18647], "www.kickass.to": [8879], "www.shiftpayments.com": [14703], "www.hivos.nl": [7430], "jamesthebard.net": [8504], "www.speedof.me": [15257], "www.annonce.cz": [1031], "*.georgetown.edu": [6546], "dellupdater.dell.com": [4335], "translate.googleapis.com": [6847], "www3.sunybroome.edu": [2365], "blogbr.ashleymadison.com": [1254], "shop.t-mobile.nl": [15771], "www.hostingas.lt": [7535], "asiabsdcon.org": [1258], "duckdns.org": [4793], "i.cmpnet.com": [2627], "www.planningportal.gov.uk": [19499], "copia.is": [3651], "ps-img.lasallehs.net": [9161], "sslcert19.com": [15346], "de-de.facebook.de": [5623], "hsbc.co.*": [7098], "runforyourlives.com": [14033], "tomlee.wtf": [16541], "www.hosting90.cz": [7527], "www.linux-magazin.de": [9393], "apricorn.com": [1138], "e.mail.ru": [9874], "novara.ie": [4513], "cloudfront.omgubuntu.co.uk": [11633], "www.youtube.gr": [18709], "tickets.zvv.ch": [19806], "www.disneyprivacycenter.com": [4567], "bt.x-cart.com": [18494], "*.ato.gov.au": [1402], "www.questacon.edu.au": [13353], "aclu-wa.org": [255], "www.keepass.info": [8833], "gfx.aftonbladet-cdn.se": [715], "poodle.io": [12277], "retina.news.mail.ru": [9874], "agra-net.net": [734], "distilleryimage8.instagram.com": [8182], "palemoon.org": [12341], "www.brsmblog.com": [1540], "content.etilize.com": [6623], "techdirt.com": [16026], "proxer.me": [13176], "sebastian.mysql.cesky-hosting.cz": [19051], "v.admaster.com.cn": [530], "esri.ie": [4965], "blogs.rcuk.ac.uk": [13407], "widgets.itunes.apple.com": [1120], "elections.dailykos.com": [4116], "forums.netiq.com": [11194], "en.bitcoin.it": [1961], "rit.edu": [13434], "bst1.gismeteo.ru": [6669], "cdn-dbapp.netdna-ssl.com": [4108], "*.serato.com": [14593], "ssl-fromcs.2cnt.net": [93], "meter.cern.ch": [2575], "oncampus.harvard.edu": [7219], "www.sourcesoftdownload.com": [15183], "*.spylog.com": [15327], "buy.drweb.com": [4783], "*.gamesports.net": [6424], "www.prochoice.org": [11074], "putlocker.com": [13257], "lonesurvivor.co.uk": [9585], "japan.norton.com": [11505], "mxtoolbox.com": [9812], "mailpile.is": [9890], "devchannel.modern.ie": [10519], "cfs.canon.com": [2809], "www.optify.net": [12067], "www.openpgpkey.info": [12040], "www.youtube.co.id": [18709], "img2.linuxdeepin.com": [4302], "tendatta.com": [16110], "longform.org": [9592], "web.tuxfamily.net": [16856], "feistyduck.com": [5744], "ovh.nl": [12173], "consumidor.ftc.gov": [5720], "cdn.dwolla.com": [4816], "taginfo.openstreetmap.org": [11979], "icio.us": [7920], "*.wolfire.com": [18395], "learning.unisys.co.jp": [17202], "varnish-software.com": [17569], "automatak.net": [1426], "www.cityemail.com": [3183], "www.akademikerf\u00f6rs\u00e4kring.se": [758], "forum.ovh.de": [12173], "www.freechelsea.com": [6140], "blog.checkpoint.com": [3048], "specials.mtvnn.com": [17661], "www.dbackpolice.com": [4237], "media.8ch.net": [203], "www.itradecimb.com.my": [2606], "www4.smartadserver.com": [14982], "db.riskwaters.com": [8045], "subeta.net": [15557], "greenserver.ch": [19228], "www.rbt.asia": [13593], "browser.yandex.com": [18651], "4chan.org": [158], "mediacru.sh": [10170], "map.apan.org": [329], "*.t411.me": [15781], "www.linksunten.indymedia.org": [8085], "elsteronline.de": [5188], "www.metoffice.gov.uk": [10295], "api.adsymptotic.com": [18941], "www.mechbunny.com": [10135], "www.immunityinc.com": [8007], "www.classzone.com": [3217], "www.wxwidgets.org": [19779], "*.tipseri.net": [7732], "www.codethink.co.uk": [3381], "fpdownload.macromedia.com": [9833], "www.mvg-mobil.de": [9806], "my.boldchat.com": [2187], "*.secure.co1.msn.com": [9796], "cdn3.thr.com": [15813], "virtualspirits.com": [17754], "provenance.org": [13172], "isc.org": [7821], "www.eroshare.com": [5350], "cloudtools.access.iu.edu": [8064], "*.shopstyle.com": [14720], "www.zom.im": [18889], "shp.qpic.cn": [13309], "www.fbm.htwk-leipzig.de": [7114], "www.xt-commerce.co.uk": [18594], "trustifier.com": [16795], "dntx.com": [4071], "*.gnome-help.org": [19462], "netbank.danskebank.dk": [4145], "cusp.com": [15851], "briteobjects.com": [2338], "mitpressjournals.org": [9750], "incommon.org": [8031], "halo.xbox.com": [18550], "standagainstspying.com": [15376], "support.norton.com": [11505], "proxy.xelerance.com": [18554], "www.jsao.io": [8461], "www.citrix.com": [3178], "www.syndetics.com": [15733], "ssl.intevation.de": [8297], "www.disabledgo.com": [4539], "mvd.jd.com": [8423], "libbsd.freedesktop.org": [6126], "www.reuters.tv": [13836], "lists.drupal.org": [4780], "support.stripe.com": [15525], "vinothek.hofer.at": [299], "juliareda.eu": [8671], "app.etapestry.com": [5370], "thoughtbot.com": [16387], "pic.alipayobjects.com": [817], "ppd.sydney.edu.au": [19649], "www.clickdelivery.gr": [3258], "*.libguides.com": [9289], "qstack.com": [13290], "support.pay4bugs.com": [12466], "*.upc.es": [12895], "mp.weixin.qq.com": [13285], "r.dcs.redcdn.pl": [13685], "sussan.com.au": [15664], "www.kampyle.com": [8778], "*.blog.gov.uk": [6366], "www.zcarot.com": [18755], "www.blip.tv": [2079], "cun.jd.com": [8423], "talkhealthpartnership.com": [15931], "boersenlexikon.faz.net": [5554], "www.dealerrater.com": [4258], "irclogs.canonical.com": [2810], "arch.umd.edu": [17263], "rhul.ac.uk": [13423], "hs.ias.edu": [7669], "changemakers.com": [2996], "twoseventy.net": [16900], "cdn.vedomosti.ru": [19730], "ikeepincloud.com": [7750], "www.buzzeff.com": [2479], "sync.audtd.com": [1363], "www.vulnscan.org": [17872], "www.oauth.net": [11607], "secure1.tagonline.com": [15783], "www.mysql.de": [10780], "basespace.illumina.com": [7968], "www.btcmarkets.net": [1567], "crew.co": [3794], "www.jamstec.go.jp": [8413], "www.uvm.edu": [17075], "*.zenfs.com": [18638], "bath.ac.uk": [17300], "www.kubieziel.de": [9028], "policies.ncsu.edu": [11492], "images.mcafee.com": [10114], "blog.balboa.io": [1626], "epfl.ch": [4942], "speedyshare.com": [15259], "peelregion.ca": [12510], "internet.org": [8278], "dashboard.pantheon.io": [12372], "guug.de": [6398], "ebill2.virginmedia.com": [17737], "programmableweb.com": [13130], "www.assetinsightinc.com": [1282], "www.gmocloud.com": [6343], "huk.de": [7117], "hboeck.de": [7049], "www.sslmate.com": [14178], "resolv.org": [13415], "sc.edu": [14085], "games.web.de": [18050], "www.izquierda-unida.es": [8406], "zxidp.org": [18770], "blog.neustar.biz": [11280], "*.tek.no": [16063], "complianceoffice.wustl.edu": [17993], "www.us.playstation.com": [12795], "1xbet.com": [69], "account.iweb.com": [7875], "booster.qnetp.net": [13305], "narro.mozest.com": [10649], "*.piwik.prisma-it.com": [13075], "nzherald.co.nz": [11004], "www.mauras.ch": [10085], "stripefees.com": [15527], "enis.dict.cc": [4455], "allcoin.com": [828], "stats.fs.usc.edu": [17278], "wildstar-online.com": [18303], "www.ideoclick.com": [7942], "www.sns.ias.edu": [7669], "support.ideel.com": [7931], "www.connect.sensiolabs.com": [14586], "*.newsandevents.buffalostate.edu": [2401], "uidaho.edu": [17257], "in.redhat.com": [13675], "nccs.nasa.gov": [10869], "www.vas-hosting.cz": [19729], "tittygram.ru": [16505], "researchfestival.nih.gov": [11052], "www.lulzbot.com": [9660], "www.pythonhosted.org": [13274], "*.umwblogs.org": [17261], "www.mojeid.cz": [10536], "acunetix.com": [507], "t.mookie1.com": [10576], "www.mail.be": [9871], "piwik.icts.kuleuven.be": [8816], "rimg04.rl0.ru": [13914], "clients.comcate.com": [3462], "www.rackspace.dk": [13503], "www.eforensicsmag.com": [4912], "cs.illinois.edu": [17258], "static.issuu.com": [8378], "*.r.worldssl.net": [2556], "www.desec.io": [19107], "*.store.micgadget.com": [9742], "www.bitx.co": [1951], "*.cryptocloud.org": [3871], "bugs.xmms2.org": [18522], "*.vaforvets.va.gov": [17019], "macports.org": [9821], "ssl.cdn-redfin.com": [2554], "www.esportsea.com": [4846], "cdn.zamimg.com": [18782], "www.beautifuldecay.com": [1740], "8ch.net": [203], "support.recurly.com": [13652], "www.protectwise.com": [13166], "www.balkanleaks.eu": [1628], "www.secunet.com": [14474], "meetbsd.com": [10209], "1.baidu.com": [1619], "www.peterkieser.com": [19489], "help.axosoft.com": [1477], "www.dropboxforum.com": [4769], "android.com": [1006], "gnuheter.org": [6764], "avatars1.githubusercontent.com": [6680], "soubrette.decadent.org.uk": [4280], "*.joker.com": [8619], "www.accessnow.org": [447], "ubank.com.au": [16930], "rabotilnica.com.mk": [13490], "acs-stage.eventpoint.com": [5444], "e3.boxcdn.net": [2253], "*.centrum.sk": [2959], "pyweek.org": [13267], "downloads.egenix.com": [19134], "hurleymc.com": [7628], "mobile.uw.edu": [17077], "blog.gov.uk": [6366], "openrce.org": [11967], "chatdepot.twitch.tv": [16888], "finance.aliyun.com": [821], "www.hass.de": [7232], "business.bookitsecure.com": [19011], "daringfireball.net": [4147], "rt.fsl.cs.sunysb.edu": [15480], "www.superkuh.com": [15632], "rottenecards.com": [13982], "cybersitter.com": [2695], "downloads.dell.com": [4335], "admin.springer.com": [15309], "jobs.newcastle.gov.uk": [11315], "store.steampowered.com": [15450], "seafile-server.de": [14435], "swapoff.org": [15677], "growth.bufferapp.com": [2402], "napoleonmakeupacademy.com.au": [11036], "ebayclassifieds.com": [4874], "i2.walmartimages.com": [17965], "www.pro-xy.com": [8820], "*.uksrv.co.uk": [17127], "signon.shaw.ca": [14687], "adme.ru": [606], "*.washingtontimes.com": [17991], "qune.kuluttajavirasto.fi": [13374], "siteprotect.neustar.biz": [11280], "www.manabalss.lv": [9937], "rightscon.org": [13887], "ldpreload.com": [9188], "agresso2.plymouth.ac.uk": [12833], "foodallergy.org": [6003], "www.x-cart.com": [18494], "mysql10.vas-hosting.cz": [19729], "worstpills.org": [18466], "www.upaymobile.co.uk": [17384], "apps.ipswich.gov.uk": [8351], "www.yousendit.com": [18708], "hsr.ch": [17237], "astrobiology.nasa.gov": [10869], "*.gettyimages.com.au": [6621], "community.monash.edu": [10541], "security.trustsign.com.br": [16783], "idp.kantarainitiative.org": [8787], "*.chatango.com": [3032], "www.hitta.se": [19252], "*.myaloecleanse.com": [10800], "exposingtheinvisible.org": [5514], "static.woopra.com": [18423], "utdallas.edu": [17287], "devconf.cz": [4416], "wiki.voidlinux.eu": [19741], "www.maninthemirror.org": [9936], "mikrocontroller.net": [10389], "*.forbes.com": [6016], "www.extensiondefender.com": [5521], "www.spi.ens.fr": [4930], "mnaonline.org": [10345], "conference2009.kde.org": [8718], "libreswan.org": [9316], "www.tmall.com": [19684], "www.collateralmurder.com": [3420], "www.normalesup.org": [11485], "courses.edx.org": [5070], "urbanterror.info": [17408], "bls.ch": [1526], "triplemint.com": [16745], "softwarefreedom.org": [15098], "peijian.jd.com": [8423], "contact2.yandex.com.tr": [18649], "esi-group.com": [4959], "onforb.es": [11859], "lists.tox.chat": [16616], "travel.nytimes.com": [11000], "erlang.org": [5345], "www.swissinfo.ch": [19621], "login.caller.com": [2753], "www.blackphone.ch": [2048], "ucsd.edu": [16939], "support.aolonnetwork.com": [324], "*.willowgarage.com": [18318], "youtube.dk": [18709], "mymoustache.net": [10770], "*.davis.com": [4233], "www.brandisty.com": [2285], "openmandriva.org": [11956], "publishers.viglink.com": [17710], "zaehlwerk.net": [18778], "alt.ac.uk": [1295], "*.openxenterprise.com": [11997], "airbnb.co.*": [749], "*.generationawake.eu": [4387], "blog.rstudio.org": [18428], "static.a.gs-cdn.net": [6965], "webkit.org": [18125], "www.worldsecuresystems.com": [613], "usa.canon.com": [2809], "*.sinica.edu.tw": [14850], "optimise.com.br": [12069], "www.ssn.uillinois.edu": [16960], "app.weekplan.net": [18181], "www.privacy.org.au": [13085], "mednews.stanford.edu": [15382], "consult.scotland.gov.uk": [19575], "appsupport.commonapp.org": [3483], "planningpublicaccess.havant.gov.uk": [19237], "hypanova.com": [7642], "*.hbanet.org": [7046], "images.grab-media.com": [6880], "unternehmen.aldi-sued.de": [299], "backpack.openbadges.org": [12001], "soroush.secproject.com": [14466], "epay.cardiff.gov.uk": [19039], "en-el.dict.cc": [4455], "passmark.com": [12422, 12423], "img.chefkoch-cdn.de": [3058], "contentreserve.com": [19077], "dashboard.web.cern.ch": [2575], "www.girlsoutwestfreestuff.com": [6668], "blog.jcea.es": [8540], "datapath.io": [4209], "webfusion.co.uk": [18117], "*.zerista.com": [18837], "*.cyberghostvpn.com": [3959], "www.ixit.cz": [7883], "*.europeanssl.eu": [5428], "images.superherostuff.com": [15631], "ie.godaddy.com": [6773], "nwk-as-images.apple.com": [1120], "www.browser.yandex.com.ua": [18650], "mail.yandex.ua": [18656], "dirxion.com": [4537], "*.bgpmon.net": [1514], "*.cvut.cz": [3992], "synapsepay.com": [19650], "*.balpa.org": [2339], "digitalcommons.law.scu.edu": [14289], "www.astaro.com": [1298], "remote.tripadvisor.com": [16741], "www.greenhost.nl": [6930], "mypayquake.com": [12470], "fashionfix.net-a-porter.com": [11171], "infosecurity-magazine.com": [13704], "cursos.ecommercebrasil.com.br": [4885], "*.cirrusmedia.com.au": [3158], "pulse-forum.ind.ie": [8048], "*.sony.com": [15144], "naturalmessage.com": [11101], "www.paste2.org": [12438], "ftccomplaintassistant.gov": [5607], "*.fsb.org.uk": [5724], "www.uicbookstore.org": [16954], "datacenter.illinois.edu": [17258], "ouifm.fr": [12138], "wifigw.cis.vutbr.cz": [17522], "i2.connect.microsoft.com": [10364], "*.greatnonprofits.org": [6910], "postoffice.insure-systems.co.uk": [12954], "master.yandex.com.tr": [18649], "loveletters.boston.com": [2232], "scanmail.trustwave.com": [16799], "blog.nexcess.net": [11356], "www.jquery.org": [8450], "www.protectedtext.com": [13168], "bitfetch.com": [1994], "clientupdater.raptr.com": [13562], "data.sparkfun.com": [15222], "www.jaast.net": [12351], "pma.web4all.fr": [18052], "getambassador.com": [6584], "www.planet.com": [12760], "cr.yp.to": [3748], "www.donationcoder.com": [4677], "rise.osu.edu": [11760], "connectiveportal.axosoft.com": [1477], "www.iar.com": [7668], "ur.wustl.edu": [17993], "discovery.nationalarchives.gov.uk": [11065], "pages.chef.io": [3057], "parentview.ofsted.gov.uk": [19456], "decorrespondent.nl": [4245], "easycottages.com": [18490], "*.oneexchange.com": [11832], "static2.wonderwall.com": [18413], "*.hp-ww.com": [7378], "pritunl.com": [13078], "translate.google.com": [6847], "cdn2.hubspot.net": [7593], "drserver.net": [4736], "*.uspto.gov": [17065], "bugfiles.operasoft.com": [12050], "www.indyreader.org": [8080], "www.1stwarning.com": [64], "downloads1.mamp.info": [19379], "www.webmproject.org": [18073], "peterborough.objective.co.uk": [19454], "www.phpartners.org": [12253], "washingtonpost.com": [17990], "ivdopia.com": [17582], "cdn.rt.com": [13468], "shop.telus.com": [16103], "*.fairwork.gov.au": [5633], "console.gigya.com": [6659], "www.trmm.net": [16755], "domaindiscount24.com": [19123], "login.postini.com": [12979], "podcast.cpanel.net": [2653], "myoptimizerplus.com": [10813], "www.askleo.com": [1263], "www.freedomnotfear.org": [6172], "brighttag.com": [2324], "mcdee.com.au": [10124], "www.tomlee.wtf": [16541], "*.artemis.net": [1229], "broking.postbank.de": [12959], "*.highbeam.com": [2937], "www.tatepublishing.com": [15975], "gila.deathmask.net": [4266], "dev.stackauth.com": [15359], "silverflint.com": [14801], "devblog.more-onion.com": [10585], "logotype.se": [9563], "a.catgirlsare.sexy": [2903], "m.vineyardvines.com": [17723], "personenverkehr.oebb.at": [19455], "plays.tv": [12809], "www.schuelervz.net": [14367], "www.usessh001.com": [17424], "www.polybrowser.com": [12889], "www.fastspringblog.com": [5676], "www.toynews-online.biz": [8226], "mutuals.cabinetoffice.gov.uk": [2701], "ukfsn.org": [16966], "clientservices.automatedqa.com": [14986], "ampatico.com": [980], "jobs.osu.edu": [11760], "norden.org": [11472], "cptr.cancer.gov": [2805], "pollenwarndienst.at": [12884], "ts.faz.net": [5554], "ba.yandex.com": [18651], "intra.kth.se": [8752], "p9.qhimg.com": [13302], "www.foodallergy.org": [6003], "openpetition.de": [11966], "mymerchantguard.com": [8689], "*.cchtml.com": [2914], "cdn.insights.gravity.com": [6900], "sony.com": [15144], "poppysports.com": [12917], "www.royaldns.net": [19558], "info.sourcefire.com": [15181], "xagyl.us": [18501], "tourbox.songkick.com": [19609], "s.thestar.com": [16575], "thecisogroup.com": [16182], "www.dandb.com": [4137], "syndication.exoclick.com": [5499], "new.research.illinois.edu": [17258], "yui-s.yahooapis.com": [18639], "gsn.com": [6416], "*.payza.com": [12491], "*.alta.com": [873], "www.ctan.org": [2681], "www.bet365affiliates.com": [18992], "next.ft.com": [5826], "billing.nodeserv.com": [11450], "auth.williamhill.com": [18315], "7digital.com": [193], "redeem.nvidia.com": [10985], "igvita.com": [7972], "xnet-x.net": [18580], "history.com": [7417], "chemspider.com": [13997], "www.canon.pt": [2809], "mail2008.sina.com.cn": [14842], "trusteer.com": [16793], "vates.fr": [17574], "xtube.com": [18602], "images.waterfrontmedia.com": [5453], "alertlogic.com": [790], "geoclub.de": [6543], "elfa.se": [5161], "mapzen.com": [9978], "www.tdconline.se": [15799], "www.vbulletin.com": [17471], "app-us3.resrc.it": [13599], "encosia.com": [5233], "codeaurora.org": [3347], "kammeratadam.dk": [8777], "morrisons-corporate.com": [10600], "hostingxtreme.com": [7532], "wtr.nhtsa.gov": [17027], "www.netzfreiheit.org": [11275], "cdn2.shoptiques.net": [14731], "googleprojectzero.blogspot.*": [2113], "omnetpp.org": [11636], "standishmanagement.com": [15381], "www.silktide.com": [14796], "pushplay.com": [13249], "partner.just-eat.es": [19328], "binarybiz.com": [1889], "ro.libreoffice.org": [9311], "media.kickstatic.com": [8876], "leo.org": [9256], "billing.globaltap.com": [6740], "api-latam.groupon.com": [6974], "humfrage.imn.htwk-leipzig.de": [7114], "gaaturustigslapen.nl": [6401], "email-comparethemarket.com": [19155], "rfcexpress.com": [13419], "ambest.com": [305], "www.praktikpladsen.dk": [19515], "members.aas.org": [235], "www.scorerestore.com": [14392], "portal.settrade.com": [14634], "bam.nr-data.net": [10954], "core.cloudfoundry.com": [3300], "lambda-linux.io": [9135], "versions.nodejitsu.com": [11453], "order.gmocloud.com": [6343], "www.stupid.com": [15547], "yui.yahooapis.com": [18639], "*.data.fm": [4174], "genges.com": [6521], "tehtri-security.com": [15807], "intelfreepress.com": [8211], "seznam.cz": [14648], "mysciencework.com": [10781], "pinpai.smzdm.com": [15017], "wms-na.amazon-adsystem.com": [909], "corporate.leboncoin.fr": [19351], "faithinmotion.com.au": [5637], "schnellverkaufen.ricardo.ch": [13866], "*.dmca.com": [4045], "jobs.onesignal.com": [11843], "*.discshop.se": [4557], "chi-10g-1-mirror.fastsoft.net": [5675], "www.dojotoolkit.org": [4637], "blogbeta.namecheap.com": [11019], "overclock.net": [12162], "support.wordfence.com": [18433], "www.resinfo.org": [13807], "fellowship.berkeley.edu": [17240], "www.myuni-form.com": [19421], "verio.com": [17622], "edocket.anpost.ie": [986], "start.fedoraproject.org": [5726], "squirrelmail.org": [15336], "account.mouseflow.com": [10624], "usecryptos.com": [17421], "adultdp.portsmouth.gov.uk": [19508], "status.nodejitsu.com": [11453], "www.topbuy.com.au": [16559], "staging-api.challenge.gov": [2985], "imation.com": [7986], "tescocompare.com": [16137], "ssl.xui.ptlogin2.qq.com": [13285], "thenewsfunnel.com": [11336], "*.maricopa.edu": [9990], "foresters.*": [6030], "dvdfab.net": [4088], "www.imiclk.com": [8003], "www.torrentfunk.com": [16581], "hitta.se": [19252], "fr.gamigo.com": [6445], "*.helpocean.com": [7304], "www.naacpimageawards.net": [10863], "www.prometeus.net": [13148], "cdn.feedbackify.com": [5736], "licensing.biz": [8226], "ads.nicovideo.jp": [11389], "*.bigo.net": [1520], "www.ag.ch": [19648], "proisp.no": [12288], "getinvolved.wustl.edu": [17993], "start.unblu.com": [17152], "postovabanka.sk": [12982], "www.liveclicker.com": [9504], "onlinedoctor.superdrug.com": [15627], "open-mesh.com": [11908], "wescom.wirral.gov.uk": [18371], "bleachbit.org": [19007], "bluejeans.com": [2139], "partner.m3connect.de": [19375], "www.screenshotmachine.com": [14411], "revresponse.com": [13839], "piclist.friendfinder.com": [6213], "oxfordlearnersdictionaries.com": [12191], "my.reflected.net": [13718], "lirportal.ripe.net": [13895], "donate.libreoffice.org": [9311], "secureimg.stitcher.com": [15476], "isolde-project-rilis.web.cern.ch": [2575], "www.anon-ib.co": [1034], "arabic.norton.com": [11505], "www.icbit.se": [7683], "ds.eduid.cz": [5097], "cdn.v2ex.com": [17463], "minbzk.nl": [11132], "www.its.th-mittelhessen.de": [15809], "radsec.org": [13508], "www.sourced.fm": [15178], "qrobe.it": [13310], "ws.amazon.co.uk": [910], "voodoo.com": [17840], "securemail.powys.gov.uk": [19513], "www.nytimes.com": [11000], "wellsfargo.com": [18196], "*.prolexic.com": [13146], "adweek.com": [672], "www.fml.osu.edu": [11760], "transactionsexplorer.cabinetoffice.gov.uk": [2701], "www.einsteinathome.org": [5128], "wildplanetphotomagazine.com": [18302], "*.vungle.com": [17876], "static.zdbb.net": [18759], "www.kakao.com": [8705], "www.nigms.nih.gov": [11052], "tracks.unhcr.org": [16989], "alternate.be": [880], "infogr.am": [8109], "www.greyhound.com": [6947], "gogotraining.com": [6806], "flixbus.nl": [5931], "poddery.com": [12844], "images2.bovpg.net": [2252], "www.oss.nl": [11132], "mobile.alipay.com": [817], "www.sphair.admin.ch": [19648], "www.leedsbuildingsociety.co.uk": [9223], "docusign.com": [4629], "skydsl.eu": [14934], "online.t-mobilebankowe.pl": [19654], "*.staticflickr.com": [15429], "code.breakfastquay.com": [2298], "www.transifex.com": [16669], "payson.se": [12488], "warframe.partner.uol.com.br": [16998], "benchmarks.cisecurity.org": [2617], "www.engagesciences.com": [5259], "gannettridge.com": [6455], "www.skypeassets.com": [14939], "www.chinalaborwatch.org": [3083], "gzip.static.woot.com": [18424], "*.cox.com": [3739], "www.londonsockcompany.com": [9583], "*.webmdhealthservices.com": [18072], "*.crucial.com": [3831], "foreseeresults.com": [6022], "www.shop.cryptalloy.de": [3845], "aezoo.compute.dtu.dk": [16031], "jskom.lysator.liu.se": [9084], "slitaz.org": [14954], "www.billing.flokinet.com": [5938], "www.nattstad.se": [11099], "www.yieldselect.com": [18679], "www.myplatinumpak.com": [12787], "secure.post.harvard.edu": [7219], "itrust.org.cn": [8393], "cultura.no": [3915], "ciclops.org": [2602], "partners.yandex.kz": [18652], "maddcalifornia.org": [9705], "feedback.rackspace.com": [13506], "viglink.com": [17710], "www.cdn.jsdelivr.net": [8655], "secure.smugmug.com": [15014], "*.hostname.sk": [7538], "ntr.ndc.nasa.gov": [10869], "outreach.ors.nih.gov": [11052], "ssb.no": [14172], "www.celiac.org": [2931], "alaska.edu": [17235], "www.ndr.de": [11119], "www.sonderdesign.com": [15133], "staging-assets-news.vice.com": [17667], "www.theeroticreview.com": [16222], "polygrant.com": [12890], "*.cottages4you.co.uk": [18490], "lib.washington.edu": [17291], "www.elttam.com.au": [19154], "board.perfect-privacy.com": [12558], "spp.seagate.com": [14437], "www.baomoi.com": [1660], "scribblelive.com": [14413], "alumnimagazine.rmit.edu.au": [13437], "linux.cn": [9402], "szkb.ch": [19333], "discuss.codecademy.com": [3361], "www.thinkwithgoogle.com": [16364], "vpn.unizar.es": [17356], "www.growery.org": [6983], "okturtles.org": [11774], "isdewinkelopen.nl": [19277], "*.morrisons.com": [10601], "academia.edu": [436], "admission.tameside.gov.uk": [19660], "www.above.com": [429], "www.tns-counter.ru": [16519], "nursing.osu.edu": [11760], "resources.joomla.org": [8627], "*.odmp.org": [11751], "jrbp.stanford.edu": [15383], "www.wealth.anz.com": [315], "compliancesigns.com": [3525], "qdomain-saenew.stor.sinaapp.com": [14838], "www.ewebscapes.com": [4991], "www.meltin.net": [10242], "i05.c.aliimg.com": [813], "www.itradecimb.co.id": [2605], "elms.warrington.gov.uk": [17984], "adserverwc.adtechus.com": [639], "www.nextiva.com": [11369], "www.digitaldollhouse.com": [4492], "cesium.di.uminho.pt": [17267], "tron-delta.org": [15855], "www.ukonlinecentres.com": [16977], "enphaseenergy.com": [5284], "mantodea.mantisadnetwork.com": [9962], "netlogin.kuleuven.be": [8816], "thejournal.ie": [16224], "forum.openhatch.org": [11941], "bayden.com": [1705], "apps.community-uat.freescale.com": [6183], "video.yandex.by": [18648], "www.frys.com": [6236], "m.kinja-static.com": [8905], "europeana.eu": [19167], "*.easydns.net": [5024], "patches.linaro.org": [9361], "maintenance.fastly.com": [5687], "suite.websecurify.com": [18146], "unid.utah.edu": [17288], "de-cs.dict.cc": [4455], "becker-wustl.libapps.com": [9287], "wicworks.fns.usda.gov": [17209], "*.shodan.io": [14712], "dgex.com": [4033], "*.adbooth.net": [562], "baltimoresun.com": [16730], "three.libsyn.com": [9321], "threatexchange.fb.com": [5698], "www.sealswithclubs.eu": [14439], "baby.jd.com": [8423], "tweakers.net": [16866], "prefs.connect.comcast.net": [3460], "ooyala.jp": [11899], "a0.websitealive.com": [18149], "press.livefyre.com": [9507], "static.hackaday.io": [7138], "www.jupiterartland.org": [8685], "123systems.net": [27], "quiz.isis.poly.edu": [12888], "mirrorservice.org": [10448], "*.avaya.com": [1446], "payments.basildon.gov.uk": [18984], "api.sh": [1091], "vp-studentaffairs.stanford.edu": [15383], "www.macosforge.org": [9820], "*.iheart.com": [7739], "thalasseo.com": [16168], "npjhub.org": [8317], "www3.truecorp.co.th": [19700], "cic.fr": [1653], "barrierbusting.communities.gov.uk": [19073], "help.tenmarks.com": [16107], "thethemefoundry.com": [16318], "www.peterborough.gov.uk": [12594], "www.ultimedecathlon.com": [19712], "*.sundancechannel.com": [15597], "*.bidz.com": [1849], "cryptonetwork.com": [3860], "tapad.app10.hubspot.com": [15954], "forums.absolute.com": [430], "maven.stanford.edu": [15383], "hr-dept.web.cern.ch": [2575], "www.peertransfer.com": [12518], "*.www.vispashop.com": [17780], "www.liberalamerica.org": [9296], "gkb.ch": [19333], "comsuper.gov.au": [3458], "www.alamy.com": [775], "www.freemarketlite.cc": [6128], "portland2013.drupal.org": [4780], "evolmed.com": [5464], "blog.gustavus.edu": [7026], "wiki.eth0.nl": [5376], "cfif.org": [2949], "virtualearth.net": [17755], "ruxconbreakpoint.com": [14050], "wecar.osu.edu": [11760], "*.authorize.net": [1410], "kicktraq.com": [8882], "lists.mayfirst.org": [10100], "www.cse.ucsd.edu": [16939], "greenbillion.org": [6922], "bikt.de": [1521], "wilderssecurity.com": [18307], "www.sberbank.ru": [14322], "gnu.org": [6357], "business.yell.com": [19790], "www.dps.illinois.edu": [17258], "www.twisted4life.com": [16884], "www.joshbegley.com": [8634], "analyticssl.clickpathmedia.com": [3250], "www.wyndhamjobs.com": [18489], "s0.playscdn.tv": [12809], "qnetp.net": [13305], "www.kochava.com": [8950], "city.yandex.kz": [18652], "www.chessbase-shop.com": [3068], "kriso.*": [9013], "flonline.eu": [5578], "surveymonkey.com": [15659], "scriptsource.org": [14420], "ctep-ebp.com": [2682], "results.ielts.org": [7719], "css.riastatic.com": [13428], "bse.havering.gov.uk": [7244], "www.sympa.org": [15720], "answers.unrealengine.com": [17365], "static.marketwatch.com": [10021], "tescophoto.com": [16140], "assetcdn.500px.org": [167], "media.regjeringen.no": [13739], "www.getfinal.com": [6590], "www.iosafe.com": [8337], "bbs.deepin.org": [4302], "buzzworthy.buzzbytes.net": [2476], "static.insided.nl": [8034], "m.behr.com": [1758], "capdesign.idg.se": [7705], "www.apomedifot.de": [1097], "www.tchibo.sk": [15985], "www.lbo-news.com": [18428], "*.indiemerch.com": [8068], "kuleuven.ezproxy.kuleuven.be": [8816], "www.zaltbommel.nl": [11132], "ngvpn01.nvidia.com": [10985], "*.thomsonreuters.com": [16382], "threatpost.ru": [16396], "www.telethon.it": [16095], "www.freepress.net": [6147], "enfr.dict.cc": [4455], "jobzonen.dk": [8604], "www.xlhost.com": [18518], "www.aaronlindsay.com": [395], "www.planetnetbeans.com": [12081], "www.planet-source-code.com": [12757], "cdn.techdirt.com": [16026], "www.dfri.se": [4437], "anquanbao.com": [1054], "instart3.flixster.com": [5933], "certigna.fr": [2971], "www.softaculous.com": [15096], "image.artizone.com": [1234], "moodle.thm.de": [15811], "pbx.uno.im": [17361], "spreadshirt.com.au": [15300], "login.bazaarvoice.com": [1708], "www.changingclimate.osu.edu": [11760], "trac.mplayerhq.hu": [9784], "www.kinox.io": [19337], "workspace.nottingham.ac.uk": [11528], "ausgehen.tageswoche.ch": [15907], "cwp.stanford.edu": [15383], "themuse.com": [16344], "www.oldpiratebay.org": [11780], "insidecelebs.com": [8168], "www.richmondshire.gov.uk": [13876], "www.greenleft.org.au": [6924], "www.hepe.com": [7319], "www.hertz.com.pt": [7359], "creditdisputeprogram.com": [3789], "cdon.se": [2562], "deaconess.com": [4248], "mhsa.aihw.gov.au": [10262], "billing.eoreality.net": [4936], "*.rfparts.com": [13420], "support.proxpn.com": [19519], "suicidegirls.com": [15584], "groupersocialclub.com": [6972], "www.image-maps.com": [7976], "teespring.com": [16060], "dulwich.io": [4800], "www.blogs.zoho.com": [18884], "missions.opencorporates.com": [11931], "www.hertz.com.pl": [7358], "ntldstats.com": [10962], "mongodb.com": [10553], "appnexus.adperium.com": [624], "*.simplytechnology.net": [14835], "google.co.*": [6838, 6840, 6845, 6848], "hollywoodoutlaws.com": [7456, 7457], "goodreads.com": [6829], "www.dshop.se": [4786], "secure.i.telegraph.co.uk": [16082], "kaernten.neos.eu": [10899], "survivetheclaireperryinter.net": [15661], "superdrug.com": [15627], "dkc3.digikey.com": [4469], "personnels.u-bordeaux.fr": [16918], "www.vzp.cz": [17524], "play.podtrac.com": [19502], "securehnw.northwarks.gov.uk": [11498], "www.senate.gov.ph": [14575], "ident.familysearch.org": [5646], "dev.equityzen.com": [5337], "www.foodprotectiontaskforce.com": [6001], "*.yourfone.de": [18735], "www.lib.polyu.edu.hk": [12891], "selger.canaldigital.no": [2803], "www2.postdanmark.dk": [12962], "blog.aldi.us": [299], "www.zen.co.uk": [18815], "eloconcursos.com.br": [5175], "www.telecom.sk": [16088], "blog.loomio.org": [18428], "support.zoneedit.com": [18893], "securesso.ieee.org": [7715], "www.miapple.me": [10333], "gesetzessammlungen.ag.ch": [19648], "www.alumniandfriends.usyd.edu.au": [19723], "biciperros.org": [1843], "www.bisente.com": [1914], "gazeta.yandex.com.tr": [18649], "connect.hbo.com": [7047], "www.snipt.net": [15038], "www.m86security.com": [9701], "www02.fonts.com": [5993], "www.proxy.uchicago.edu": [17246], "www.cheapassfiction.com": [3044], "s3.fightforthefuture.org": [5784], "litehosting.org": [9456], "www.slysoft.com": [14975], "a4.ec-images.myspacecdn.com": [10848], "c.kinja-static.com": [8905], "new.edit.ftc.gov": [5720], "www.osgeo.org": [11669], "www.beget.ru": [1752], "managed.entrust.net": [5304], "affili.net": [700], "widget.shopstyle.co.uk": [14719], "aliceinfo.cern.ch": [2574], "www.hackerspaces.nl": [7150], "globat.com": [6742], "annuaire.inria.fr": [8159], "*.uni-saarland.de": [17172], "aera.at": [683], "osrfoundation.org": [11674], "ewents.ya.ru": [18626], "stand.org": [15375], "sell.taobao.com": [15952], "youtube.com.tw": [18709], "gemeentebest.nl": [11132], "www.tinypass.com": [16489], "gowalker.org": [6798], "www.hopkins-interactive.com": [7494], "stash.sourcefabric.org": [15180], "blog.advance.net": [649], "eveger.de": [5433], "globalwitness.org": [6717], "www.verio.com": [17622], "uow.edu.au": [17350], "flockport.com": [5936], "www.timetrade.com": [16455], "secure-niketown.nike.com": [11401], "mdadmissions.wustl.edu": [17993], "pilot-coupons.paypal.com": [12467], "www.notalone.gov": [11515], "www2.swisscom.ch": [15698], "www.cubify.com": [3911], "www.eset.com": [5358], "1.darkroom.shortlist.com": [14734], "vorstand.piratenpartei.de": [12721], "capstechops.usc.edu": [17278], "ie.norton.com": [11505], "trafikozeti.yandex.com.tr": [18649], "ask.barnet.gov.uk": [18982], "www.meteoprog.kz": [10312], "www.sipgate.de": [14857], "www.clarendon.ox.ac.uk": [17271], "dnt.abine.com": [419], "*.tunespeak.com": [16830], "www.seznam.cz": [14648], "img02.final4ever.com": [5819], "ticketea.com": [16419], "b.yandex.by": [18648], "www.bud.tid.gov.hk": [7077], "www.porter.io": [12935], "stat.yandex.by": [18648], "sharerepo.com": [14666], "snapnames.com": [8865], "www.library.ethz.ch": [4975], "freezone.co.uk": [6187], "account.courierpostonline.com": [3715], "wageworks.com": [17946], "thenextweb.com": [16204], "rigov.firmstep.com": [19183], "static.thejournal.ie": [16224], "mmtx.nlm.nih.gov": [11052], "www.jubii.dk": [8659], "sedo.fr": [14544], "dev.wix.com": [18383], "www.wikimedia.org.il": [18296], "glittering.blue": [19221], "www.rbb-online.de": [13591], "et10.xhcdn.com": [18514], "volotea.com": [17831], "staging.bia2.com": [1838], "build.chromium.org": [3119], "static.ustream.tv": [17451], "*.vook.com": [17842], "my.resrc.it": [13599], "redir2.info.giffgaff.com": [19217], "evilsocket.net": [19169], "k.ilius.net": [10216], "www.halowaypoint.com": [7176], "*.mindhealthconnect.org.au": [10412], "m.animenewsnetwork.com": [18957], "webmail.uic.edu": [17231], "www.gogoyoko.com": [6809], "smartronix.massrel.io": [10051], "websecurify.com": [18146], "www.beaconreader.com": [1727], "schema.org": [19568], "clicky.com": [6610], "*.byu.edu": [1587], "www.entropay.com": [5300], "www.abdn.ac.uk": [405], "liikenneturva.fi": [9348], "adactio.com": [549], "www.eng.umd.edu": [17263], "accounts.www.umich.edu": [17266], "*.fullslate.com": [6251], "monarch.co.uk": [10540], "www.flexinvestments.net": [5914], "content.magix.com": [9708], "dudley.firmstep.com": [19183], "skillsdevelopmentscotland.co.uk": [19597], "samba.com": [14070], "sourcefabric.org": [15180], "bcaws.aviationweather.gov": [18972], "pvac-forum.leeds.ac.uk": [17318], "fotki.yandex.by": [18648], "webmail.talktalk.co.uk": [15929], "*.sustatic.com": [15544], "www.riksgalden.se": [13890], "www.openclassrooms.com": [11928], "www.zonglovani.info": [18896], "us.adform.net": [585], "blake2.net": [19006], "www.dal.net": [4003], "moodsmith.com": [10570], "www.ciscolearningsystem.com": [3164], "ruxcon.org.au": [14049], "olcf.ornl.gov": [11693], "news.sunybroome.edu": [2365], "mobify.net": [10493], "www.commscope.com": [3473], "www.cs.kent.ac.uk": [17317], "secure.sprintbuyback.com": [15315], "my.sailthru.com": [14243], "fmv.se": [5579], "nutritionhistory.nal.usda.gov": [17209], "oval.mitre.org": [10459], "st0.unitedplatform.com": [17219], "*.fedorapeople.org": [5729], "www.coverartarchive.org": [3728], "totalrecall.switchingon.com": [17183], "online.cheshirewestandchester.gov.uk": [19057], "tools.cisco.com": [3162], "unodc.org": [16994], "www.racetohealth.co.uk": [13492], "ctan.org": [2681], "cdn.userreport.com": [17437], "www.fotoforensics.com": [7140], "www.abila.com": [417], "slettmeg.no": [4216], "mpetroff.net": [10082], "search.freefind.com": [6127], "*.okpay.com": [11629], "bittit.info": [2023], "blog.cloudfoundry.com": [3300], "frederikshavn.dk": [6117], "en.faq.buffalo-global.com": [2397], "dolartoday.com": [4639], "static.hubspotqa.com": [7595], "bit.nl": [1523], "supervalu.com": [14196], "lpi.org": [9095], "*.nationalpriorities.org": [11085], "*.siliconrus.cmtt.ru": [3329], "4tulemar.com": [155], "ecocampus.ens.fr": [4930], "help.adfox.ru": [524], "tunisia-sat.com": [16832], "mozillazine-fr.org": [19411], "ar.verbling.com": [17615], "*.squarespace.com": [15333], "www.ausregistry.com.au": [1374], "earwolf.com": [5010], "psdev.transform.nottingham.ac.uk": [11528], "blog.tox.chat": [16616], "www.element5.com": [5157], "www.tinkersoup.de": [16475], "www.ask-inc.com": [16665], "www.opendemocracy.net": [12032], "mnmdl.osu.edu": [11760], "*.pflag.org": [12243], "www.notedcode.com": [11524], "help.hbonow.com": [19242], "www.derstandard.at": [19111], "desire2learn.com": [4390], "gettyimages.*": [6621], "images1.ivoox.com": [7871], "help.slideshare.com": [14962], "birmingham.objective.co.uk": [19454], "www.hotmail.com": [7559], "sl-retargeting.adsonar.com": [539], "blog.archive.org": [8271], "ep2013.europython.eu": [5409], "img.bzimages.com": [2288], "hideme.today": [7395], "lewesdc.firmstep.com": [19183], "m1.nsimg.net": [11550], "publictools.tiaa-cref.org": [15816], "chickensoup.com": [3074], "code.x2go.org": [18499], "www.ng-book.com": [11371], "legacy.illinois.edu": [17258], "thermoscientific.com": [16349], "poivron.org": [12985], "blog.xamarin.com": [18540], "*.vantiv.com": [17562], "rand.org": [13398], "login.wx.qq.com": [13285], "musiciansfriend.com": [10718], "prioritysubmit.com": [13073], "sportys.com": [15292], "jcrosoft.com": [8421], "www-ee.stanford.edu": [15383], "careers.peopleclick.com": [12550, 12551], "lenovopicks.com": [9253], "earth.illinois.edu": [17258], "trust-center.verisign.ch": [17623], "cuinfo.cornell.edu": [3676], "app-de7.resrc.it": [13599], "www.urz.uni-heidelberg.de": [17174], "ovp.lenovo.com": [9251], "public-online.hmrc.gov.uk": [7084], "investor.logmeininc.com": [9550], "umbel.com": [17142], "www.epsom-sthelier.nhs.uk": [10913], "*.ubs.com": [16929], "compulab.co.il": [3530], "filippo.io": [5804], "blackfoot.co.uk": [2053], "www.epilepsyontario.org": [5322], "cms.medianova.com": [10178], "hkex.com.hk": [7484], "efiliale.de": [19112], "cme.wustl.edu": [17993], "abbott.com": [402], "adaptivecomputing.com": [558], "go.brighttalk.com": [2323], "packetstormsecurity.com": [12317], "www.squirrelmail.org": [15336], "gatwickairport.com": [6469], "www.superstart.se": [15635], "m.agar.io": [719], "manage.rackspacecloud.com": [13507], "netis.cis.vutbr.cz": [17522], "www.sysprovide.de": [19652], "www.volksverschluesselung.de": [17829], "cts.tradepub.com": [16645], "www.talktalk.co.uk": [15929], "download.libsodium.org": [9319], "cdn.xfinity.com": [19784], "passport.apan.org": [329], "www.sportisimo.ro": [14158], "pp.pingdom.com": [12687], "manasource.org": [9943], "www.ehic.org.uk": [4916], "appwiki.checkpoint.com": [3048], "httpsnow.org": [4908], "fundinfo.com": [6263], "www.incircle.com": [15851], "suitey.com": [15587], "uofmhealth.org": [17378], "www.mims.com.hk": [9743], "clkads.com": [3272], "www.sohopelesslybroken.com": [14150], "music.yandex.by": [18648], "mcssl.com": [10127], "www.mobilism.org": [19404], "btsportbusiness.com": [1577], "go.magento.co.uk": [9849], "synthetix.info": [15743], "asset-1.netbeans.org": [11185], "e-mail-made-in-germany.de": [4842], "dz2cdn1.dzone.com": [4095], "debug.siedler25.org": [13832], "www.outnow.ch": [19473], "nationaldefensemagazine.org": [11049], "*.bitsontherun.com": [2019], "lastenrad.vcd.org": [17474], "*.nbc.com": [11048], "myfitnesspal.com": [10757], "console.qcloud.com": [13301], "*.lovemoney.com": [9631], "stonelab.osu.edu": [11760], "sas.kaspersky.com": [8806], "olasagasti.info": [10386], "federation.amd.com": [925], "e8.xhamsterpremiumpass.com": [18516], "www.subply.com": [15555], "cdn.duelinganalogs.com": [4796], "keys.bankofengland.co.uk": [1644], "smartos.org": [14990], "www.bsdconsulting.co.jp": [1543], "cloud.rockzi.com": [13443], "status.xsolla.com": [18593], "www.tunnelbroker.net": [16834], "switch.atdmt.com": [10360], "staminus.thecthulhu.com": [16334], "www-s.dakko.us": [4126], "abebooks.com": [408], "healthcarestaffbenefits.org": [7262], "services.comparethemarket.com": [3511], "secure.live.sipgate.de": [14857], "www.mayday.us": [10104], "r6.mzstatic.com": [1119], "billing.gitter.im": [6684], "tchibo.pl": [15985], "ztan.tk": [16548], "valdhaus.co": [17531], "www.rockzi.com": [13443], "www.magicalbutter.com": [9857], "www.kubuntu.org": [9029], "www.plugin-planet.com": [12826], "ihg.com": [8230], "www.trustthevote.org": [16784], "torbay.gov.uk": [16569], "nl.icecat.biz": [7914], "zeronet.io": [18843], "img04.findgravy.com": [5843], "taxbenefits.coventry.gov.uk": [19084], "mycanvas.com": [10749, 10750], "reviews.thegreatcourses.com": [16192], "www.panstwomiasto.pl": [12369], "www.linuxplumbersconf.com": [9397], "wpstartbox.com": [15406], "sso.swiss-va.com": [15694], "bayan.ir": [1704], "de.hosting.adjug.com": [526], "securepurchaseserver2.com": [14510], "uplinklabs.net": [17391], "*.haymarket.com": [7248], "*.meteonews.net": [10311], "blogtw.ashleymadison.com": [1254], "*.airbnb.jp": [749], "blog.eurodns.com": [5405], "publishpartner.com.au": [19526], "ispam.nl": [7834], "wiki.ocf.berkeley.edu": [17240], "jobs.github.com": [6680], "samssoftware.com.au": [14262], "www.associatie.kuleuven.be": [8816], "www.getkeepsafe.com": [6594], "biostatistics.wustl.edu": [17993], "maelsoucaze.com": [9843], "auction.jd.com": [8423], "picard.musicbrainz.org": [10717], "www.easychair.org": [5022], "codecov.io": [3366], "www.ox.ac.uk": [17271], "games.mirrorbingo.com": [10444, 10445], "successchef.com": [15573], "en-bs.dict.cc": [4455], "static-7headlines.pixfs.net": [12741], "login.aliexpress.com": [806], "vhil.stanford.edu": [15383], "www.xmarks.com": [18579], "*.totaltravel.com": [18638], "kb.hostingsolutions.cz": [7531], "smetrics.skype.com": [14938], "blog.chromium.org": [3119], "chef.io": [3057], "www.gethashing.com": [6577], "wikimedia.f4.htw-berlin.de": [7112], "nemid.nu": [11142], "pbsrc.com": [12495], "www.dittdistrikt.no": [4578], "cdn.geekwire.com": [6496], "stlbeacon.org": [15355], "cryptsy.com": [3892], "static.libsyn.com": [9321], "msec.xp1.ru4.com": [14012], "uat.communities.coverity.com": [3734], "postlapsaria.com": [12980], "www.alexhaydock.co.uk": [799], "defenceandsecurity.ca": [2512], "js-sec.casalemedia.com": [2870], "childcare.milton-keynes.gov.uk": [10401], "donationcoder.com": [4677], "buy.itunes.apple.com": [1120], "bitcoinity.org": [1984], "zeromq.org": [18846], "titanpad.com": [16499], "www.dc801.org": [4012], "zumzi.com": [18923], "innovation.mit.edu": [9749], "wgea.gov.au": [18444], "www.csirt.vutbr.cz": [17522], "ricoh.co.in": [13879], "yunos.tmall.com": [19684], "youtube.co.th": [18709], "static.kent.ac.uk": [17317], "www.ecaforums.com": [5294], "blazingthyme.com": [2063], "fr.pornworms.com": [12928], "eurosmartz.com": [5410], "iosapi.xamarin.com": [18540], "weedtraqr.com": [18180], "cisomb.dhs.gov": [4035], "bangong.jd.com": [8423], "www.vitamindcouncil.org": [17793], "smodus.nike.com": [11401], "secure.getprice.com.au": [6616], "food.list.co.uk": [16199], "shop.lego.com": [9068], "www.libsdl.org": [9290], "repsvcs-prod2.wustl.edu": [17993], "hebdo.ch": [19244], "www.ffgg.ulaval.ca": [17229], "*.cf-example.com": [2975], "www.vlissingen.nl": [11132], "contribuez.cnnumerique.fr": [3589], "pgapps.nottingham.ac.uk": [11528], "time.yandex.kz": [18652], "ecocar.osu.edu": [11760], "sweflix.to": [15685], "portal.nottingham.ac.uk": [11528], "www.smartertools.com": [14996], "pscorp.pstprod.peoplestrategy.com": [12549], "www.amazon.com.mx": [18951], "ic3.gov": [17022], "ladyfootlocker.com": [9128], "www.shirazlug.ir": [14708], "forbesmagazine.com": [6018], "www.atheists.org": [1313], "sc1.rgstatic.net": [13422], "www.albumarsiv.com": [781], "www.statistik.bayern.de": [15435], "www.aquagear.com": [1143], "bcportal.symantec.com": [15715], "www.lolagrove.com": [9568], "www.macworld.com.au": [9823], "wwte7.com": [17937], "stackauth.com": [15359], "pstprod.peoplestrategy.com": [12549], "usa.gov": [17029], "myitsm.nih.gov": [11052], "6xq.net": [186], "*.djoser.nl": [7452], "image.istella.it": [8381], "www.myoptplussecure.com": [10812], "gro.seagate.com": [14437], "hg.quakenet.org": [13326], "login.independentmail.com": [8055], "img3.thalasseo.com": [16168], "www.gimmickwear.com": [6662], "blog.radware.com": [13524], "partner.solarflare.com": [15112], "www.velleman.be": [17596], "storefront.verisign.co.jp": [17623], "framasphere.org": [6096], "atlas.arbor.net": [1154], "ideal.snsbank.nl": [14144], "plugins.jetbrains.com": [8559], "www.avast.com": [1444], "ton.twimg.com": [16877], "fastlane.nsf.gov": [11060], "iosdevweekly.ly": [7782], "img.pr0gramm.com": [19514], "www.settrade.com": [14634], "pear2.php.net": [12250], "www.meerssen.nl": [11132], "www.cloudcracker.com": [3284], "wallet.mynxt.info": [10771], "www.susyradio.com": [15667], "renkum.nl": [11132], "ekmsecure.co.uk": [5133], "mail.eclipso.de": [5051], "embanner.univcomm.cornell.edu": [3676], "www.ecommerce.com": [5056], "svp.vgc.no": [17484], "vtcsec.ru": [17516], "www.escan.com": [17760], "memset.com": [10255], "csc-test1.cisco.com": [3162], "www.rumorscity.com": [14032], "cru-inc.com": [2660], "*.tech-recipes.com": [16008], "www.cornify.com": [3677], "*.hotpics-amateur.com": [7550], "evoluted.net": [5466], "cdn5.sure-assist.com": [15644], "carekris.com": [2846], "cdn1.xvideosx.tv": [18537], "tumutanzi.com": [16828], "www.pbagalleries.com": [12209], "yosemite.ucc.ie": [16933], "www.connectmyphone.com": [3581], "classic.iridiumbrowser.de": [8356], "www.whisper.sh": [18246], "bit9.com": [1922], "www.twoseasons.co.uk": [16896], "en-fi.dict.cc": [4455], "prad.de": [13009], "portal.cedexis.com": [2926], "vod.transformersmovie.com": [12394], "es.xfinity.com": [19784], "kallithea-scm.org": [8772], "linuxserver.io": [9435], "etrieve.htzpartners.com": [7372], "auth.firebase.com": [5855], "www.eurobsdcon.org": [5404], "skylink.cz": [14937], "help.flavors.me": [4931], "*.planet-work.com": [12758], "consumidor.gov": [3598], "wiki.openmoko.org": [12039], "www.geoplatform.gov": [6538], "dnld.lime-technology.com": [19365], "www.cs.sunysb.edu": [15480], "*.arstechnica.net": [1217], "submissions.epetitions.direct.gov.uk": [4531], "billing.prgmr.com": [13047], "assets.gratipay.com": [6898], "smallfarms.cornell.edu": [3676], "*.phoenix.edu": [12633], "www.cs.ucsd.edu": [16939], "www.prometheusgroup.com": [13150], "thecommunicationtrust.org.uk": [19674], "edg.com": [4891], "malina.hu": [4665], "www.planboardapp.com": [12756], "llportal.aylesburyvaledc.gov.uk": [18976], "hp.thecthulhu.com": [16334], "tenten.vn": [16117], "macmillandictionary.com": [9832], "www.wandisco.com": [17893], "static.newamerica.org": [11301], "ssrn.com": [14183], "cdn.discourse.org": [4545], "giffgaff.com": [19217], "www.marsocial.com": [9713], "offensive-security.com": [11736], "www.atomiccowlick.com": [1325], "hiplogin.stanford.edu": [15383], "plugins.vuze.com": [17879], "www.estavisas.org.uk": [4966], "*.memecenter.com": [10249], "nwtime.org": [11271], "suppliers.oracle.com": [12082], "www.orcid.org": [11909], "www.cryptanalysis.eu": [3846], "www.instantchat.io": [8184], "www.periscope.io": [12572], "petstore.com": [12602], "intranet.plymouth.ac.uk": [12833], "pharmacycorefacilities.usc.edu": [17278], "awaps.yandex.by": [18648], "gruene.de": [850], "prized.na.leagueoflegends.com": [9205], "www.adigital.org": [590], "www.aeryon.com": [691], "stanfordevents.stanford.edu": [15383], "www.piratenpartei.de": [12721], "*.heritage.org": [7329], "vias.symantec.com": [15715], "checkout.paddle.com": [12324], "www.bolehvpn.net": [2188], "skylarkcloud.com": [14935], "cms.kiva.org.s3.amazonaws.com": [8926], "tookapic.com": [16553], "www.transformationmadeeasy.com": [16665], "disk42.com": [4561], "autodiscover.lsbu.ac.uk": [9098], "allure.com": [3551], "cdn.tectonic.com": [16055], "hepo.fi": [7320], "bussgods.se": [2461], "www.cryptoins.com": [3874], "alumni.kuleuven.be": [8816], "youtube.es": [18709], "mozillalabs.com": [10660], "beta.cironline.org": [2614], "www.urlquery.net": [17412], "*.ngpvanhost.com": [10907], "www.vpnincome.com": [8024], "tools.digitale-diathek.net": [4504], "www.rxportalexpress.com": [14052], "*.wordpress.tv": [18428], "www.incoin.io": [8046], "dub.washington.edu": [17290], "opendns.com": [11932], "news.usni.org": [17045], "*.crossmediaservices.com": [14716], "www.simplystamps.com": [14832], "*.2o7.net": [96], "m2.ttxm.co.uk": [15868], "eur.bitcurex.com": [1987], "*.mozilla-russia.org": [10651], "phab.enlightenment.org": [5280], "static.daniweb.com": [4141], "atom.io": [1324], "news.lenovo.com": [9251], "*.mini-dweeb.org": [4791], "easywhois.com": [5032], "www.sophievipescort.com": [15153], "aesload.de": [692], "cdn1.recombu.com": [13648], "hertsdirect.org": [7335], "epic.org": [4943], "contests.newsnet5.com": [11344], "perf.weborama.fr": [18138], "support.cloudflare.com": [3285], "www.wijchen.nl": [11132], "segment.io": [14559], "www.vitalmend.com": [17788], "fluffyclouds.dnainfo.com": [19121], "confluence.freeswitch.org": [6130], "democracy.blackpool.gov.uk": [2056], "attracta.com": [1341], "www.moreal.co": [10587], "store.openfiler.com": [12034], "www.emory.edu": [5212], "wwws.lemonde.fr": [9192], "get.it": [6564], "alliancebernstein.com": [851], "fcm.dhl.de": [4034], "ak1.abmr.net": [762], "www.espo.nasa.gov": [10869], "jira.secondlife.com": [14462], "www.schwabplan.com": [14372], "digcoin.com": [4467], "www.toster.ru": [16598], "essex.gov.uk": [5365], "elanex.biz": [5141], "www.pandasoph.de": [19478], "sizzlejs.com": [14892], "my.torbay.gov.uk": [16569], "cdn2.ustream.tv": [17450], "tdg.csis.dk": [2673], "localview.birmingham.gov.uk": [19000], "*.soton.ac.uk": [17276], "opintoluotsi.fi": [12056], "amsl.com": [311], "www.tdcserviceonline.com": [15798], "www.cia.gov": [2600], "rfparts.com": [13420], "mixi.co.jp": [10467], "www.webpg.org": [18078], "drops.htw-berlin.de": [7112], "si5.twimg.com": [16877], "my.megapath.com": [10229], "www.coolutils.com": [3639], "frivillighetshuset.no": [6221], "dcvote.org": [4017], "autodiscover.1x.com": [49], "serving.portal.dmflex.com": [4052], "app.quotemedia.com": [13377], "supadupa.me": [15611], "kicknews.*": [8878], "*.rootbsd.net": [13967], "www.dropboxteam.com": [4768], "www.mork.no": [10592], "www.inoreader.com": [8156], "nhaap.ornl.gov": [11693], "vcint.com": [17670], "reserve.apple.com": [1120], "tl63.co.uk": [16508], "darlinghq.com": [4155], "www.idrsolutions.com": [7709], "*.discountclick.com": [651], "petitions.whitehouse.gov": [18251], "ok.sberbank.ru": [14322], "victorinox.com": [17674], "static2.flattr.net": [5910], "www.getfoxyproxy.org": [6591], "snapengage-3.wpengine.netdna-cdn.com": [15027], "*.uct.ac.za": [17306], "livertox.niddk.nih.gov": [11052], "www.adindex.de": [275], "energinet.dk": [5253], "www.kanbox.com": [8779], "my.itdashboard.gov": [7856], "www.tv-release.net": [16858], "frequentis.com": [6198], "gpg4win.org": [6875], "www.mbnet.pt": [10111], "udc.msn.com": [9796], "*.cloudsponge.com": [3295], "www.store4geeks.com": [15492], "lacie.com": [9117], "www.nvidia.co.uk": [10983], "www.myhealth.va.gov": [17019], "bioxfel.org": [1904], "www.noembed.com": [11457], "*.alertbot.com": [788], "sec.ch9.ms": [2979], "es.premium.members.webs.com": [18144], "www.pti.iu.edu": [8064], "noblogs.org": [19435], "artsdashboard.stanford.edu": [15383], "vulnhub.com": [17871], "www.doel.kuleuven.be": [8816], "athumbnails.5min.com": [178], "www.someserver.de": [15129], "starawardssecure.snowfly.com": [15044], "www.raynersw.com": [13586], "royalmailgroup.com": [14001], "*.iggcdn.com": [8072], "ads.chartbeat.com": [3018], "static.encyclopediadramatica.se": [5241], "mobile.washington.edu": [17291], "*.storenvy.com": [15495], "paymentssource.com": [12478], "*.plone.org": [12819], "zapier.com": [18791], "tdc.dk": [15796], "yedxxx24hr.com": [18667], "www.haskoin.com": [7231], "www.ovh.de": [12173], "www.zerobin.net": [18839], "www.ncsu.edu": [11492], "www.realtech-vr.com": [13630], "www.president.osu.edu": [11760], "*.strongloop.com": [15530], "ref.evoliatis.com": [5465], "brunel.ac.uk": [19021], "www.subscriberconcierge.com": [10011], "forums.vandyke.com": [17549], "catracalivre.com.br": [2908], "publications.usa.gov": [17029], "www.hertz.hu": [7348], "www.hertz.hr": [7343], "www.verigames.com": [17621], "trade.1688.com": [36], "assets1.github.com": [6680], "tracker.leadforensics.com": [9197], "www.ca.cz": [18938], "ir.supermedia.com": [15614], "*.edupage.org": [5091], "new.devon.gov.uk": [4428], "www.ayyildiz.de": [1478], "www.nintendoworldreport.com": [11419], "*.links.mkt41.net": [14802], "mobilevikings.com": [10502], "static.uniregistry.net": [17197], "x14.eu": [17488], "blog.adafruit.com": [550], "beta.webapps.blackberry.com": [2050], "www.law.uw.edu": [17077], "www.bettercrypto.org": [1826], "axa-winterthur.ch": [381], "www.ozbargain.com.au": [12195], "tamlab.osu.edu": [11760], "careers.dandb.com": [4137], "jsonresume.org": [8459], "www.infoq.com": [8101], "familie.bremen.aok.de": [317], "xelerance.com": [18554], "*.e-sea.net": [4846], "askives.com": [1267], "www.appseccalifornia.org": [1133], "solid-run.com": [15117], "submit.comixology.com": [3465], "mediavoice.com": [12860], "secure.trustico.com": [16794], "creativegallery.axa.com": [380], "*.gutenberg.org": [7028], "blogs.securiteam.com": [14514], "build.origami.ft.com": [5826], "compliance.chef.io": [3057], "ece.unm.edu": [16992], "hoku.co.jp": [14740], "dobrovolnici.ludialudom.sk": [9652], "pentestmag.com": [12544], "s.pixfs.net": [12741], "www.cerit-sc.cz": [2571], "unternehmen.bvg.de": [1582], "piraten-partei.ch": [12284], "sellerhelp.taobao.com": [15952], "southern-africa.hivos.org": [7431], "www.contributoria.com": [3620], "addthis.com": [571], "www.couchpota.to": [3698], "student.plymouth.ac.uk": [12833], "static.kirklees.gov.uk": [8916], "origin-ars.els-cdn.com": [5182], "pages.balabit.com": [1624], "oauth.net": [11607], "www.indexoncensorship.org": [8059], "shotgunclub.com": [14737], "cruises.webjet.co.nz": [18124], "bugs.python.org": [13272], "f9.fi": [5548], "www.crazybates.com": [3766], "billing.qth.com": [13291], "*.feide.no": [5743], "clusterhq.com": [3323], "www.fortinet.com": [6056], "csc-stage.cisco.com": [3162], "mail.opera.com": [12050], "www.eclipso.de": [5051], "secure.dormproject.ch": [4686], "www.islenzka.net": [8369], "verisign.de": [17623], "theinquirer.fr": [11198], "www.telusinternational.com": [16103], "www.gamebillet.com": [6429], "www.afilias.info": [707], "*.thomashunter.name": [19679], "verisign.dk": [17623], "websecweekly.org": [18145], "www.ac.infn.it": [7766], "mywell-being.com": [10799], "elilabs.com": [5165], "omniture.chip.eu": [2597], "coloradocollege.edu": [3442], "www.roccat.org": [13931], "ns1.leboncoin.fr": [19351], "www.gismeteo.ru": [6669], "akademy2007.kde.org": [8718], "*.cdn.gaiaonline.com": [6405], "jivesoftware.com": [8585], "ikea.com": [7959], "nodejsmodules.org": [11449], "forum.antergos.com": [1062], "people.freebsd.org": [6120], "sv.rentalserver.jp": [13774], "podcasting.rtbf.be": [14011], "share.sandia.gov": [14278], "64px.com": [180], "65.98.18.218": [16200], "shippingwatch.dk": [14706], "www.pluscontrollers.com": [3624], "bytenoc.nl": [2491], "owncube.com": [12183], "mousematrix.com": [10625], "wsws.org": [17931], "renovationexperts.com": [13768], "www.illiad.wustl.edu": [17993], "au1.uicdn.net": [16958], "www.temando.com": [16104], "bitdeli.com": [1989], "projects.fivethirtyeight.com": [5893], "oms.symantec.com": [15715], "hashcat.net": [7226], "games.d2jsp.org": [3997], "rttire.com": [13476], "internot.info": [8291], "fod.osu.edu": [11675], "www.federatedmedia.net": [5722], "ere.stanford.edu": [15383], "securingthehuman.org": [14517], "www.renewablefreedom.org": [13766], "quitter.no": [13370], "www.honest.com": [7481], "waterfoxproject.org": [18001], "cdn.slidesharecdn.com": [14963], "www.appnexus.com": [1109], "contact.voyagegroup.com": [17859], "r.advg.jp": [664], "www.privatelayer.com": [13098], "opencpu.org": [11925], "media.wnyc.org": [17916], "zohodiscussions.com": [18886], "silabs.com": [14788], "*.realtime.co": [13632], "images.derstandard.at": [19111], "tg.ethz.ch": [4975], "www.habpl.us": [7127], "www.mediate.com": [10182], "aphrodite.krystal.co.uk": [9024], "www.csc.ncsu.edu": [11491], "download.cyanogenmod.org": [3954], "police.illinois.edu": [17258], "rc4nomore.com": [19540], "downloads2.mamp.info": [19379], "shorte.st": [14735], "monitor1.returnpath.net": [13834], "wiki.ubuntu.com": [17102], "ge.ch": [19648], "x.skimresources.com": [14912], "risparmiopostaleonline.poste.it": [12965], "www.all-inkl.*": [825], "account.xsolla.com": [18593], "www.kuther.net": [9046], "www.angular-gantt.com": [1019], "fonts.iu.edu": [8064], "www.gamespot.com": [6425], "morpho.hu": [10599], "verizon.com": [17626], "ion.postclickmarketing.com": [12947], "www.ppcoin.org": [12282], "wimdu.co.uk": [18322], "compete.org": [3518], "m.www.linksynergy.com": [9381], "www.enjoy.com": [5278], "final-score.com": [5818], "learn.open.ac.uk": [11986], "shareideas.parature.com": [12396], "cryptocloud.org": [3871], "*.marchex.com": [9984], "www.so.ch": [19648], "rapidshare.com": [13558], "forum.owncloud.org": [12182], "enomcentral.com": [4934], "*.myheritage.de": [10834], "*.myheritage.dk": [10834], "www.vc-kundencenter.de": [17472], "www.obitalk.com": [19453], "osdisc.com": [19468], "aarnet.edu.au": [233], "standagainstspying.net": [15376], "whodoyou.trust": [18260], "tagesschau.de": [19656], "www.responsys.com": [13815], "mdts.uk.com": [9734], "selfservice.wokingham.gov.uk": [19762], "waindigo.org": [17949], "anirena.com": [1021], "reactos.org": [13604], "www.pastemonitor.com": [12440], "getlantern.org": [6595], "www.techenclave.com": [16010], "phone.coop": [12635], "www.hq.nasa.gov": [10869], "sec.gov": [17023], "tp.postbank.de": [12959], "feedarea.de": [12843], "www.kentico.com": [8853], "status.viaduct.io": [17662], "bonadza.com": [2194], "photos.barvaux.org": [1685], "www.superantispyware.com": [15612], "www.innerbody.com": [19293], "a1s.unicdn.net": [17176], "bin.mediatemple.net": [10165], "download.fedoraproject.org": [5726], "elastic.co": [5142], "konstfack.se": [8979], "scalingbitcoin.org": [14329], "protonmail.com": [13169], "ticket.www.wp.pl": [17921], "secure-software.intel.com": [8209], "www.airtricity.com": [757], "be-nl.norton.com": [11505], "*.codecoop.org": [3365], "tipmobile.sbb.ch": [15693], "marum.de": [10036], "vt.tumblr.com": [16826], "tt.se": [15866], "posts.kirlism.ga": [19338], "www.applyweb.com": [1129], "work.taobao.com": [15952], "*.sonnettech.com": [15138], "blog.vpn.ac": [19742], "stubconnect.stubhub.com": [15534], "vilistlane.ut.ee": [17069], "www.pgcon.org": [12244], "vendrevite.ricardo.ch": [13866], "zentralbahn.ch": [19802], "fool.com": [10613], "www.ooshirts.com": [11898], "content.atomz.com": [1329], "cn.redhat.com": [13675], "account.wellcome.ac.uk": [19752], "www.ctswholesalesunglasses.com": [2686], "pd-nk.itunes.apple.com": [1120], "pix.isalo.org": [8364], "community.ubnt.com": [17084], "secure.identrust.com": [7934], "btc-trade.ru": [1554], "content.aimatch.com": [742], "www.addictech.com": [574], "www.nodpi.org": [11435], "calendar.ferris.edu": [5756], "advertserve.com": [656], "portix.bitbucket.org": [1925], "maps.tunbridgewells.gov.uk": [19704], "www.nhsdirect.wales.nhs.uk": [10913], "essaysreasy.com": [5364], "www.hideme.ru": [7392], "gaos.com": [6908], "photos.meetic.fr": [10214], "www.fox-it.com": [6084], "*.thinkgeek.com": [16361], "bitmovin.com": [2010], "me.uaa.alaska.edu": [17233], "www.catalysttg.com": [2898], "community.geogebra.org": [6537], "transifex.net": [16668], "www.4sevens.com": [162], "*.analystone.com": [987], "*.addisonlee.com": [577], "sutton.greenparty.org.uk": [6925], "www.cz.redhat.com": [13675], "committeepapers.barnet.gov.uk": [18982], "tu-ilmenau.de": [15873], "www.bitcasino.io": [1929], "api.bizographics.com": [2032], "lijst.wirelessleiden.nl": [18367], "forums2.openfiler.com": [12034], "memberful.com": [10247], "nullday.de": [11574], "photographytalk.com": [12646], "mypressplus.com": [13034], "security.webmoney.ru": [18076], "samsunglfd.com": [14269], "community.dynatrace.com": [4825], "dev.openwrt.org": [11992], "www.fightforthefuture.org": [5784], "ubisoftgroup.com": [17092], "www.vdi-wissensforum.de": [17476], "www.web10.dk": [15925], "steg-electronics.ch": [14189], "lcsrv1.myhsphere.biz": [8607], "*.aetherflyff.com": [693], "www.netmeister.org": [11243], "hizook.com": [7434], "slhost.com": [15090], "www.adversary.org": [655], "www.goeswhere.com": [6805], "www.citibank.com.au": [3170], "furaffinity.net": [6270], "kenneth.io": [8849], "data.nal.usda.gov": [17209], "no-ip.com": [17791], "gdtl.osu.edu": [11760], "passwort-generator.com": [12435], "www.coinmate.io": [3398], "www.texaco.com": [16149], "articles.braintreepayments.com": [2274], "forex-metal.com": [6032], "www.coderbits.com": [3374], "zefflin.com": [18811], "footballfanatics.com": [6013], "boxwoodtech.com": [2261], "openxchange.stanford.edu": [15383], "leicestershire.gov.uk": [9239], "www.koenrouwhorst.nl": [8955], "www.bokon.se": [2185], "portal.servercentral.net": [14604], "1105media.com": [15], "gentoo.org": [6531], "netmediaeurope.fr": [11198], "oia.osu.edu": [11760], "secure.quotestream.com": [13379], "courtsofnz.govt.nz": [3722], "*.thejournalnews.com": [9564], "globalpolicy.org": [6730], "gsehelpsu.stanford.edu": [15383], "readyflowers.com": [13620], "mail.scipy.org": [14374], "convar.de": [3625], "a0.twimg.com": [16877], "*.mibbit.com": [10338], "www.fastweb.com": [5689], "lime-technology.com": [19365], "mindhealthconnect.org.au": [10412], "help.gmobb.jp": [6342], "ipv6-adresse.dk": [7807], "secure.cato.org": [2906], "www.youthscape.co.uk": [19796], "img.gawkerassets.com": [6477], "www.mwrinfosecurity.com": [9809], "ru.cloudflare.com": [3285], "side.cr": [14761], "theiabm.org": [7665], "service.wienenergie.at": [18284], "criticalthinking.org": [3804], "geldermalsen.nl": [11132], "cdn.worldreader.org": [18464], "www.mediabistro.com": [10169], "onlinebanking.tdbank.com": [15795], "wiki.backbox.org": [1597], "www.repozitar.cz": [13787], "sync.americanexpress.com": [935], "fr.piwik.org": [12733], "familychristian.com": [5645], "2912a.v.fwmrm.net": [6136], "changedetection.com": [2993], "suicidepreventionlifeline.org": [11097], "sv-se.facebook.com": [5620], "kralenstart.nl": [9005], "www.northdevontheatres.org.uk": [11495], "www.zataz.com": [18801], "forum.userstyles.org": [19721], "www-cse.ucsd.edu": [16939], "sell.stubhub.co.uk": [15534], "apan.net": [328], "www.trafficsafetymarketing.gov": [16653], "alternativlos.org": [885], "lulu.com": [9659], "www.nzbindex.nl": [11002], "www.ing.com": [7769], "lavasoft.com": [9174], "osdv.org": [11666, 11667], "velleman.eu": [17596], "*.tehconnection.eu": [16062], "support.tilera.com": [16447], "powertraveller.com": [13005], "herefordshire.gov.uk": [7327], "login.icommons.harvard.edu": [7219], "lumimart.ch": [3645], "www.hornbach.de": [7496], "images.aidsmap.com": [740], "data.sheffield.gov.uk": [14694], "www.whatdotheyknow.com": [18230], "fast.wistia.com": [18377], "www.bundlestars.com": [2437], "deb.li": [4267], "*.flashtalking.com": [5907], "btctrade.com": [2381], "aap.cornell.edu": [3676], "beta.ipredator.se": [7804], "serverstack.com": [14608], "odl.mit.edu": [9749], "static.rottentomatoes.com": [13981], "*.litmus.com": [9471], "www.pep.uni-potsdam.de": [17333], "osc.hul.harvard.edu": [7219], "gpo.zugaina.org": [18920], "tasteofthenorthend.org": [15972], "www.christophertruncer.com": [3114], "nordstromrack.com": [11480], "trader.flowbtc.com": [5944], "cl.norton.com": [11505], "www.hostinglabs.pe": [7530], "mobileidentity.telus.com": [16103], "developer.valvesoftware.com": [17548], "www.siggraph.org": [14777], "metrics.lowes.com": [9636], "www.fueleconomy.gov": [6242], "rf.osu.edu": [11760], "landing.lyris.com": [9685], "www.wauland.de": [18007], "scoop.it": [14389], "conference.civica.co.uk": [19064], "*.opensrs.net": [11969], "feeds.laughingsquid.com": [19350], "boxuk.com": [2255], "andywalsh.com": [1011], "assets.ixwebhosting.com": [7882], "www.rtems.org": [13472], "www.unrealitytv.co.uk": [17366], "papers.xtremepapers.com": [18601], "icm.cherwell.gov.uk": [3063], "purechat.com": [13242], "www.arrl.org": [342], "tipstricks.itmatrix.eu": [7860], "service.meltwaternews.com": [10243], "public.create.msdn.com": [9788], "site-cdn1.ghosteryenterprise.com": [6630], "our-hometown.com": [12141], "www.playstation.com": [12795], "knoll.google.com": [6834], "www.develop-online.net": [8227], "middlesbrough.firmstep.com": [19183], "adfs.geant.org": [6314], "auksjon.qxl.no": [13385], "www.perfectmoney.com": [12563], "rnrwheels.com": [13438], "www.smzdm.com": [15017], "onenews.cz": [11644], "www.kidshealth.org": [8883], "stanford.edu": [15383], "www.mispy.me": [10454], "blog.udacity.com": [17109], "*.astrill.com": [1302], "fls-eu.amazon.com": [915], "www.blackboard.cornell.edu": [3676], "tracking.verisign.co.nz": [17623], "forums.lanik.us": [9148], "metallica.com": [10307], "www.cnaf.infn.it": [7766], "insecure.ws": [8162], "wscont1.apps.microsoft.com": [10364], "cdn2.a1.net": [217], "www.iridiumbrowser.de": [8356], "dsinternals.com": [4083], "secure3.vend-o.com": [17606], "videos.cpanel.net": [2653], "it.taobao.com": [15952], "www.postauto.ch": [12949], "www.stopfasttrack.com": [15484], "blog.ipvanish.com": [7799], "adium.im": [595], "de.libreoffice.org": [9311], "www.interfacelift.com": [8247], "favstar.fm": [5693], "*.curate.us": [3923], "www.dict.cc": [4455], "safe.jd.com": [8423], "gsxapp.apple.com": [1120], "ifortuna.sk": [7947], "alumni.cam.ac.uk": [17243], "www.debuggify.net": [4279], "technoportal.ua": [16039], "*.vidplay.net": [17702], "www.centennialbulb.org": [9510], "annualcreditreport.com": [1032], "www.photographer.io": [12645], "pix.revsci.net": [13840], "chorder.dosowisko.net": [4688], "blog.usni.org": [17045], "neuroscience.stanford.edu": [15383], "www.jako-o.lu": [8496], "cozmedics.com.au": [2644], "regalii.com": [13727], "www.ananda.org": [989], "encontro.libreoffice.org": [9311], "newsletter.sky.com": [14924], "store.earthlink.net": [5007], "mailinglist.bis.doc.gov": [17058], "monitoring.websitealive.com": [18149], "blogs.alfresco.com": [802], "trac.pcbsd.org": [12216], "embedded.edc.intel.com": [8209], "www.winswitch.org": [18341], "mh21.piware.de": [10034], "rijswijk.nl": [11132], "www.semor.cz": [14101], "internet.bs": [8276], "myhelprequests.sky.com": [14924], "www.cryptonator.com": [3883], "*.gourmetgiftbaskets.com": [6859], "primetime.unrealitytv.co.uk": [17366], "www.subtome.com": [15569], "www.coopzeitung.ch": [3645], "heanet.ie": [7268], "www.browsealoud.com": [2368], "sadclwscom.lowes.com": [9636], "secure.serve.com": [14599], "t4ft.de": [5870], "cbo.gov": [17017], "status.quantopian.com": [13340], "blog.fau.de": [17311], "post-gazette.com": [12948], "ucc.dk": [16932], "jabber.ietf.org": [7721], "ro.norton.com": [11505], "*.nextag.ca": [11363], "intra.brunel.ac.uk": [19021], "*.waitrosedirect.com": [17951], "*.neomailbox.com": [11154], "shop.telegraph.co.uk": [16082], "static2.startnext.com": [15412], "clients.x10hosting.com": [18498], "vzaar.com": [17883], "netsciwestpoint.org": [11262], "www2.sans.org": [14072], "www.espacejeux.com": [5360], "e.issuu.com": [8378], "amersfoort.nl": [11132], "buzzdock.com": [2477], "ae.utbm.fr": [19724], "christianprayercenter.com": [3110], "shoucang.taobao.com": [15952], "www.bitmaintech.com": [2004], "www.onioncat.org": [11862], "*.ncsoft.com": [10891], "vegasinc.com": [17480], "itx.com": [7855], "simg.uol.com.br": [16998], "lesterchan-lesterchan.netdna-ssl.com": [9262], "bel.fi": [1510], "www.edp.pt": [4896], "www.trakk247.com": [16659], "mvg-mobil.de": [9806], "vb-paradise.de": [17578], "gw1.alicdn.com": [805], "webapps.brunel.ac.uk": [19021], "*.quotes.bennetts.co.uk": [1779], "alioth.debian.org": [4275], "usalliance.org": [17033], "www.banan.cz": [1489], "www.udk.com": [16946], "secure.smartplanet.com": [14992], "idofoundation.org": [7650], "www.linksys.com": [9382], "www.cj2.nl": [2618], "pas.org.my": [12353], "rdsecure.org": [13512], "m.draugiem.lv": [4742], "www.berkman.harvard.edu": [7219], "www.picshareunit.com": [12668], "chloe.re": [3093], "iam.netelligent.ca": [11224], "eventoverload.com": [5439], "*.sankaty.com": [14286], "www.ciw.edu": [2857], "support.isc.org": [7821], "a.adrolays.de": [625], "pix04.revsci.net": [13840], "www.bitminter.com": [1937], "www.ukwebsolutionsdirect.com": [16968], "trendin.com": [16718], "www.sofurry.com": [15048], "championsofregnum.com": [2990], "success.mindtouch.com": [10409], "springfiles.nl": [15305], "www.lexisnexis.com": [13704], "www.abi.org.uk": [242], "paws.uwm.edu": [17294], "mobile.jingwei.com": [8574], "salford.greenparty.org.uk": [6925], "jacobinmag.com": [8489], "trust-center.verisign.com.tw": [17623], "summit.alfresco.com": [802], "qzs.qq.com": [13285], "static.tierra.net": [16435], "www.zaragoza.es": [19778], "*.worldofwarplanes.ru": [18461], "konferenzen.telekom.de": [4410], "*.leadpages.net": [9195], "www.genome.ucsc.edu": [17305], "www.drwho.virtadpt.net": [4784], "papermart.com": [12380], "www.vtecdirect.com": [17517], "backupify.com": [1604], "eip.stanford.edu": [15383], "www.go2arena.com": [6767], "arenavc.com": [1180], "parentalcontrol.eset.com": [5358], "vaes.vt.edu": [17740], "ds5.static.rtbf.be": [14011], "coloman.nl": [3438], "itemname.com": [19311], "assets0.frndcdn.net": [6218], "account.3playmedia.com": [128], "mxptint.net": [10741], "content.adfox.ru": [524], "moodle.lasallehs.net": [9161], "*.revision3.com": [13846], "www.e621.net": [4865], "pay.netverify.com": [11256], "safety.usc.edu": [17278], "lists.srlabs.de": [14521], "support.paloaltonetworks.com": [12349], "www.pollenwarndienst.at": [12884], "*.meetrics.net": [10218], "henvis.tdc.no": [15797], "*.dotmailer.com": [4695], "www.democracy.io": [4353], "morningstar.co.uk": [10595], "*.riverisland.com": [13906], "eu-u.openx.net": [11993], "linux-dev.org": [9400], "www.moviii.isy.liu.se": [9084], "linuxlovers.at": [9432], "*.tynt.com": [16908], "demo.webassign.net": [18054], "nos-oignons.fr": [11511], "www.tracfone.com": [16626], "tracking.verisign.com.au": [17623], "status.vinilox.eu": [17724], "cryptobin.org": [3854], "nicta.com.au": [10923], "*.sciencedirect.com": [14375], "tl.itunes.apple.com": [1120], "billund.dk": [1884], "efinancialnews.com": [11321], "bloomingtonfools.org": [6110], "clck.yandex.com": [18651], "cdn3.a1.net": [217], "openclipart.org": [11905], "www.stgeorges.nhs.uk": [10913], "www.usmagazine.com": [17417], "*.torservers.net": [16594], "envoydirect.com": [5310], "press.avast.com": [1444], "lotame.com": [9613], "www.dealfish.co.th": [4260], "ideabank.opendns.com": [11932], "*.ovi.com": [12174], "splitreason.com": [15282], "netbel.oxfamireland.org": [12189], "security.vt.edu": [17740], "*.immerda.ch": [19287], "t.rasp.yandex.kz": [18652], "hertzequipmentsales.com": [7372], "www.chat-place.org": [3028], "mit.information.dk": [8123], "myaccount.news.com.au": [11338], "www.domaincontext.com": [4653], "lgo.mit.edu": [9749], "www.online.cyberaces.org": [3956], "www.salisbury.greenparty.org.uk": [6925], "directory.osu.edu": [11760], "www.friendpaste.com": [6216], "www.bbc.com": [1497], "bookit.rmit.edu.au": [13437], "www.store.3drobotics.com": [124], "wiki.tizen.org": [16506], "*.twibright.com": [16875], "shop.flixbus.be": [5931], "www.trademarkia.com": [16644], "blog.qt.io": [13315], "boligejer.dk": [2189], "visa.com": [17761], "www.html5sec.org": [7105], "webmail.pipni.cz": [12257], "www.docstorepro.com": [4623], "webmail.vodafone.co.nz": [17812], "mosoblast.rt.ru": [13469], "careers.oculusvr.com": [11722], "tor.thecthulhu.com": [16334], "*.ogt.jp": [8108], "*.hamradioscience.com": [7180], "www.kotte-zeller.de": [8995], "sallybeauty.com": [14252], "cdn.agilebits.com": [727], "rocket.chat": [13939], "finnchristiansen.de": [5850], "courses.soe.ucsc.edu": [17305], "www.is.ut.ee": [17069], "likes.com": [9350], "samsu.accu-weather.com": [465], "blog.opendz.org": [18428], "www.cannex.com": [2515], "appproxy.3sat.de": [135], "blackarrowsoftware.com": [19005], "www.uie.com": [16955], "audience.umbel.com": [17142], "www.properpet.com": [13158], "movie.to": [10636], "m.library.usyd.edu.au": [19723], "*.v2cigs.com": [17461], "hfsvwr.london-fire.gov.uk": [19371], "wf.typotheque.com": [16917], "dptcourses.wusm.wustl.edu": [17993], "virtualbox.org": [17748], "www.fraudlabs.com": [6111], "hackertarget.com": [7145], "seg.sharethis.com": [14668], "static5.twilio.com": [16876], "www.internetcoup.org": [8281], "lab.email.seznam.cz": [14648], "qa-coupons.paypal.com": [12467], "mobile.xmarks.com": [18579], "duihuan.smzdm.com": [15017], "blog.asciinema.org": [1247], "wiki.haskell.org": [7229], "steaw.com": [15457], "tlscompare.org": [15826], "*.btwifi.com": [1579], "news.gnome.org": [6353], "reviews.ti.com": [16152], "static-2.gumroad.com": [7020], "marketing.1688.com": [36], "bitnami.com": [2011], "www.scaleway.com": [14328], "www.coreyabramson.com": [3673], "store.lds.org": [16219], "manchester.gov.uk": [9944], "www.video-dean.com": [17692], "*.ecwid.com": [5066], "*.exportawards.gov.au": [1391], "shop.a1.net": [217], "www.html5.org": [7589], "images.ichkoche.at": [7918], "symlynx.com": [15719], "*.crittercism.com": [3805], "myshadow.org": [10816], "a2.sndcdn.com": [15032], "liukanshan.zhihu.com": [18856], "*.airbnb.com.au": [749], "img1.thalasseo.com": [16168], "www.evil32.com": [5459], "jmldirect.uat.venda.com": [8443], "argus.ch": [1188], "plesk2.thephone.coop": [16347], "icij.org": [8264], "lob.com": [9533], "koti.kapsi.fi": [8791], "decisionbriefs.com": [4285], "www.insa-strasbourg.fr": [8192], "spoonful.com": [15288], "www.hypovereinsbank.de": [7649], "openpgpkey.info": [12040], "www.nursing.osu.edu": [11760], "reg.test.ft-static.com": [19201], "luvit.io": [9674], "domainsite.com": [19124], "www.barclayscorporate.com": [1663], "*.bronto.com": [2361], "www.findgravy.com": [5843], "*.udmedia.de": [16947], "www.serversaurus.com.au": [14619], "vault.studio.ndnmediaservices.com": [10894], "lp.chartbeat.com": [3018], "eleccomm.ieee.org": [7715], "www.tpvs.hmrc.gov.uk": [7084], "omc.overdrive.com": [12160], "reasoncoresecurity.com": [13636], "chaturbate.com": [3035], "feedblitz.com": [5733], "tomtomrunningrace.com": [16540], "zarb.org": [18796], "easyedi.tietoenator.com": [16438], "online.bezeqint.net": [1833], "uber.com": [17089], "jira.zarafa.com": [18795], "audubon.org": [1364], "dionysus.krystal.co.uk": [9024], "www.slough.gov.uk": [14971], "liberiangeek.net": [9298], "www.osicodesinc.com": [11671], "www.animenewsnetwork.com": [18957], "assistance-multimedia.fr": [1284], "normdaten.digitale-diathek.net": [4504], "avatar3.status.net": [15437], "sendpepper.com": [14578], "pro.jamendo.com": [8502], "www.antpool.com": [1072], "cdn.earthdata.nasa.gov": [10869], "feefo.com": [5741], "dtc.gplhost.com": [6372], "www.cryptothrift.com": [3865], "monkeyguts.com": [10557], "www.regex101.com": [13728], "www.aei.org": [277], "roble.unizar.es": [17356], "openmedia.ca": [11958], "www.battleforthenet.com": [1695], "vms.boldchat.com": [2187], "www.railsbox.io": [13529], "picsity.com": [12667], "ayudica.unizar.es": [17356], "desertnews.com": [4385], "dhgate.com": [4036], "wiki.musl-libc.org": [10724], "corbettreport.com": [3659], "sohu.wrating.com": [18473], "netloan.southwark.gov.uk": [15196], "www.newsmaxhealth.com": [11343], "zhanzhang.baidu.com": [1619], "validator.yandex.com.tr": [18649], "cdn.cooldestinations.net": [3641], "landalskilife.*": [18490], "monkeybrains.net": [10558], "www.homelessworldcup.org": [7480], "www.netfilter.org": [11225], "billiger.de": [1881], "gateway.threema.ch": [16399], "www.pubmed.gov": [13195], "www.maps.yandex.by": [18648], "amazonwebservices.com": [915], "www.roundcube.net": [13986], "*.pss.gov.au": [13213], "admin.legislation.gov.uk": [19354], "ricoh.sg": [13879], "jackandjillraffle.com": [8481], "metoffice.gov.uk": [10295], "e14.xhamsterpremiumpass.com": [18516], "extranet.dotprojects.be": [4704], "liftconference.com": [9335], "www.unitymedia.de": [17221], "lists.bufferbloat.net": [2403], "uat.rsaconference.com": [13454], "partnersignup.srsplus.com": [14169], "cdn.xsolla.com": [18593], "info.dynatrace.com": [4825], "cdn.comcast.com": [3461], "api.smartrecruiters.com": [14994], "aax-eu.amazon-adsystem.com": [909], "dpacksupport.dell.com": [4335], "www.av18mov.com": [1434], "financialcryptography.com": [5823], "*.signon.org": [10630], "www.pv.gov.sa": [14306], "superstrands.com": [15618], "www.news9daily.org": [11325], "www.charles-carreon.com": [18428], "wusmhealth.wustl.edu": [17993], "*.megaglest.org": [10228], "rgj.com": [13767], "www.lrz-munich.eu": [9238], "*.tvbrowser.org": [15883], "www-cs-students.stanford.edu": [15383], "id.bigmir.net": [1866], "bugs.kubuntu.org": [9029], "*.avg.com": [371], "njit.edu": [10932], "shop.1and1.co.uk": [53], "netload.in": [11241], "accounts.ft.com": [5826], "enta.net": [5290], "proxy.ohiolink.edu": [11762], "yardim.yandex.com.tr": [18649], "onionoo.thecthulhu.com": [16334], "offerpop.com": [11739], "analytics.xsolla.com": [18593], "cn.bing.com": [1895], "www.fromorbit.com": [6222], "notefly.org": [11521], "www.vodafone.co.nz": [17812], "webprospector.de": [18080], "www.thalia.de": [16171], "craphound.com": [3760], "www.forgerock.com": [19189], "passport.gigabyte.com": [6646], "escan.com": [17760], "status.stripe.com": [15525], "amara.org": [907], "*.nydailynews.com": [10991], "www.cspinet.org": [2675], "wsgfl.westsussex.gov.uk": [18211], "tags.bkrtx.com": [2133], "trustedshops.*": [16787], "bintray.com": [1897], "www.konklone.com": [8978], "s.btstatic.com": [1580], "intranet.cardiff.ac.uk": [2835], "puppet.ocf.berkeley.edu": [17240], "digitalaccess.bostonglobe.com": [16251], "briggs-riley.com": [2317], "www.btcgear.com": [1566], "animenfo.com": [1024], "ihgmerlin.com": [7737], "leaf.dragonflybsd.org": [4738], "earhart.flameeyes.eu": [5901], "app.compete.com": [3519], "apps.cheshirewestandchester.gov.uk": [19056], "lists.opensource.org": [12024], "pl.norton.com": [11505], "pa.hinckley-bosworth.gov.uk": [7412], "gurulabs.com": [7024], "git.leloop.org": [9191], "southampton.firmstep.com": [19183], "www.maelsoucaze.com": [9843], "btobonline.com": [3757], "spn.sr": [17489], "*.brightkidsnyc.com": [2327], "*.img.digitalrivercontent.net": [4499], "mailman.nanog.org": [11490], "ihgplc.com": [7738], "boca.gov.tw": [2165], "europa.d66.nl": [4000], "*.totalchoicehosting.com": [16601], "bedis.eu": [1745], "failuremag.com": [5630], "www.rus.uni-stuttgart.de": [17282], "doublefine.com": [4710], "store.winzip.com": [18333], "craftstats.com": [3753], "de-el.dict.cc": [4455], "laproxsites.com": [9154], "www.pizzahut.co.uk": [12750], "mspartner.microsoft.com": [10364], "www.gihyo.jp": [6660], "labs.integrity.pt": [8203], "support2.magix.com": [9708], "*.custhelp.com": [3936], "redcross.org.uk": [2343], "clery-dev.ucsc.edu": [17305], "*.sourcemaking.com": [15175], "content.mkt941.com": [14802], "origin.scdn.co": [15295], "www.motorola.de": [10615], "hostr.co": [7543], "*.hsbctrinkaus.de": [7098], "tw.norton.com": [11505], "dining.osu.edu": [11760], "stores-assets.stackcommerce.com": [15361], "*.uknof.org.uk": [16973], "ld-5.itunes.apple.com": [1120], "jhweb.dev.jhu.edu": [16296], "consumerswin.com": [3605], "*.wiggle.co.uk": [18287], "mychatagent.com": [8689], "site-cdn4.ghosteryenterprise.com": [6630], "*.img-dpreview.com": [4497], "secure.marketwatch.com": [10021], "*.mobilenations.com": [10501], "latticechallenge.org": [19349], "secwiki.org": [14459], "wusmregistrar.wustl.edu": [17993], "contact.gmocloud.com": [6343], "geeklan.co.uk": [6495], "easy-share.com": [3806], "www.easyodds.com": [5034], "ddos.arbornetworks.com": [1154], "*.dartmouth.edu": [4158], "onsalesit.com": [11884], "spacecomm.nasa.gov": [10869], "login.1688.com": [36], "mercurial.selenic.com": [10279], "mycrains.crainsnewyork.com": [3757], "docs.playstation.com": [12795], "platform4.liverail.com": [9496], "cdnph.upi.com": [17005], "retail-link.gr": [13821], "www.angus.gov.uk": [1020], "livedemo.xsolla.com": [18593], "webmail.zen.co.uk": [18815], "support.ubnt.com": [17084], "www.appdynamics.com": [1104], "googlemail.com": [6843], "shop.typo3.org": [15894], "www.moa.idmanagedsolutions.com": [7710], "*.eurobilltracker.com": [19165], "soundonsight.org": [15160], "akb.ch": [19333], "faq.weblog.tudelft.nl": [4326], "bell-labs.com": [1764], "admin.animenewsnetwork.com": [18957], "www.huntcal.com": [7622], "www.webhostone.de": [18121], "initlab.org": [8144], "www.crypto.cat": [3851], "hacker.lugons.org": [9108], "springer-gabler.de": [15307], "infomaniak.ch": [8112], "moje.zuno.sk": [18768], "mail.com": [9872], "cdn.switchadhub.com": [15701], "medconfidential.org": [10137], "hg.libsdl.org": [9290], "froggynet.com": [19199], "ticket.threema.ch": [16399], "nolb.dhl.de": [4034], "bugs.eclipse.org": [5049], "docs.cerit-sc.cz": [2571], "*.afx.ms": [717], "hava.yandex.com.tr": [18649], "upload.picload.org": [12661], "app.engagesciences.com": [5259], "download.attachmate.com": [1336], "eclevelandclinic.org": [3236], "community.muselive.com": [10710], "dev.mozilla.jp": [10655], "*.energylivenews.com": [5257], "s11.postimg.org": [12977], "*.lovelens.ch": [9630], "www.veil-framework.com": [17592], "cdn.flipboard.com": [5925], "nightlove.me": [11395], "reverseheartbleed.com": [13843], "bizchannel.cimbthai.com": [2608], "bulksms.co.uk": [2415], "picostocks.com": [12665], "emploi.cnrs.fr": [6195], "www.amnesty.tw": [973], "blogs.progress.com": [13132], "*.compendiumblog.com": [3517], "ananda.org": [989], "www.arlanda.se": [1199], "wealden.objective.co.uk": [19454], "www.studentrecords.wustl.edu": [17993], "cmp.onlinesbi.com": [11873], "stories.californiasunday.com": [2749], "lists.bnl.gov": [19009], "www.awsinsider.net": [375], "account.golem.de": [6819], "resources.convio.com": [3629], "sysstaff.ucsd.edu": [16939], "kinko.me": [8909], "usa.anon-ib.net": [1037], "citywerkz.com": [3198], "www.ngpvan.com": [10907], "store.guidancesoftware.com": [7006], "www.ziedot.lv": [18858], "coinurl.com": [3399], "www.west-lindsey.gov.uk": [18205], "osec.pl": [11911], "online.danskebank.dk": [4145], "wordpress2.trustthevote.org": [16784], "thumbzilla.com": [16402], "www.tnaflix.com": [16518], "scholar.google.com.*": [6837], "lookingglass.email": [9598], "researchblogging.org": [13793], "*.slitaz.org": [14954], "verticalacuity.com": [17637], "*.uni.lui": [17175], "www.electronicintifada.net": [5154], "togahotels.com": [16529], "www.pekwm.org": [12529], "dashboard.liveramp.com": [9497], "www.rmcybernetics.com": [13794], "nero.com": [11162], "citl.illinois.edu": [17258], "sunrisetech.gr": [15604], "goldenadventures.com": [6812], "securenet.com": [14493], "support.wwf.ch": [19768], "*.hypem.com": [7643], "*.geneseephoto": [6525], "www.nvisium.com": [10986], "intranet.engineering.wustl.edu": [17992], "hs13.snstatic.fi": [14145], "www.shop.heise.de": [7288], "www.kvack.org": [9047], "www.insouciant.org": [8175], "campustechnology.com": [19034], "sapato.ru": [14295], "tigernet.princeton.edu": [13064], "www.os-cillation.de": [12115], "developers.xapo.com": [18541], "mirror.datapipe.net": [4211], "*.wsjsafehouse.com": [11321], "status.podio.com": [12846], "www.videointerchange.com": [17693], "www.gonewsoft.com": [6781], "www.instaradio.com": [13400], "webpayments.rutland.gov.uk": [19560], "tnsglobal.com": [15841], "www.quadrantsec.com": [13323], "jon.endpoint.com": [5243], "www.mijnwestlandutrecht.nl": [18217], "yacuna.com": [18630], "voxel.net": [17853], "www.speedtree.com": [15254], "media.rbl.ms": [13592], "www.salsacommons.org": [14254], "jorsika.com": [2776], "imensa.de": [7988], "mechse.illinois.edu": [17258], "firstgiving.com": [5869], "hm.baidu.com": [1619], "www.privatesearch.io": [13104], "www.66option.com": [181], "torservers.net": [16594], "www.spideroak.com": [15269], "feeds.pinboard.in": [12677], "bugs.xenserver.org": [18557], "avaya.com": [1446], "fapmc.ru": [5551], "friendlyduck.com": [6214], "rother.gov.uk": [13978], "cdn.snipcart.com": [15037], "www.weblogawards.org": [18128], "weekplan.net": [18181], "www.speedcoin.org": [15256], "8.*.wdfiles.com": [18294], "www.randischumann.dk": [13541], "recordedfuture.com": [13650], "blog.zamzar.com": [18428], "moodle.bury.gov.uk": [19026], "vlc-addons.org": [19461, 19462], "*.seecrypt.com": [14548], "robustirc.net": [19555], "beam.stanford.edu": [15383], "*.lufthansa.com": [9655], "www.cokecce.com": [3413], "www.mexicoleaks.mx": [10327], "www.nublue.co.uk": [11560], "global.acs.org": [929], "sw.nohold.net": [11436], "neo-interactive.hu": [11145], "*.halifax-online.co.uk": [7174], "www.myworldofwork.co.uk": [19422], "www.companic.nl": [19074], "www.vub.sk": [17869], "disabilityresources.uic.edu": [17231], "www.petrogen.com": [12600], "cufp.org": [2688], "fws.arts.cornell.edu": [3676], "offog.org": [11756], "piphone.lqdn.fr": [9113], "chrisjean.com": [3105], "*.btguard.com": [1571], "deals.slashdot.org": [14947], "rotaryview.com": [13975], "www.openhost.net.nz": [12036], "www.swingfree.co.uk": [15692], "showcase.ionicframework.com": [8339], "app.danskebank.dk": [4145], "mssql.active24.cz": [18938], "www.bettershopping.eu": [1830], "talktalkbusiness.co.uk": [15930], "woods.stanford.edu": [15383], "www.requestpolicy.com": [13791], "identity.linuxfoundation.org": [9412], "cdn.su.edu": [14698], "static1.gac.edu": [6301], "gistmarks.com": [6671], "www.newcastle.gov.uk": [11315], "creation.co.uk": [3775], "www.samsungdirect.com": [14267], "sz-media.sueddeutsche.de": [15577], "whirlpool.net.au": [18243], "allizom.org": [856], "pobierak.jeja.pl": [8549], "www.shortlist.com": [14734], "myuofmhealth.org": [17378], "convio.berkeley.edu": [17240], "www.nsa-observer.net": [11547], "*.cloudforce.com": [3303], "blog.junglee.com": [8680], "www.hinckley-bosworth.gov.uk": [7412], "nieman.de": [11392], "debian-fr.org": [4271], "www.tyk.io": [16904], "static.scripting.com": [14422], "www.collegeclublife.com": [2638], "nestleusa.taleo.net": [15922], "www.consumerswin.com": [3605], "www.ifap.ed.gov": [4889], "webmail.illinois.edu": [17258], "devops.profitbricks.com": [13129], "training.citrix.com": [3177, 3178], "pricerunner.com": [13053], "www.familie.nordwest.aok.de": [317], "app.thestorefront.com": [16314], "rightnow.com": [13883], "js.cdn.static.malwarebytes.org": [9929], "svenskaspel.se": [15672], "www.cwspodmusic.com": [2693], "fujitsu-webmart.com": [6245], "a2.lscdn.net": [9102], "www.rising.jhu.edu": [16296], "*.voxer.com": [17854], "www.gitbook.io": [6675], "espanol.victoriassecret.com": [17672], "ecs.osu.edu": [11760], "privatecore.com": [13100], "lilithlela.cyberguerrilla.org": [3961], "blog.movableink.com": [10628], "www.elegantthemes.com": [5156], "civicalg.com.au": [19065], "utop.inria.fr": [8159], "www.archlinux.fr": [1159], "www.tcfmailvault.info": [15791], "www.tofour.net": [16520], "mega.co.nz": [10223], "hkk.de": [7078], "www.introversion.co.uk": [8301], "www.novosoft.net": [11532], "partnerportal.sophos.com": [15154], "lib.newsvine.com": [11348], "xkcd.org": [19786], "*.neoseeker.com": [11157], "uk.zopa.com": [18907], "www.secure-mobiles.com": [14482], "newsmax.com": [11342], "sparkhub.databricks.com": [4197], "site.yandex.by": [18648], "www.mainelegislature.org": [9895], "lists.freebsoft.org": [6123], "*.snagajob.com": [15024], "max.jotfor.ms": [8637], "www.neqos.nhs.uk": [10913], "www.northwest.greenparty.org.uk": [6925], "www.projects.unbit.it": [17148], "www.ubermedia.com": [17086], "pinpoint.microsoft.com": [10364], "argusleader.com": [1189], "buffalo.edu": [17297], "steaknshake.com": [15447], "ir.gmocloud.com": [6343], "wiki.openjdk.java.net": [8525], "uitalerts.stanford.edu": [15383], "journals.cambridge.org": [2767], "supplierhelp.due-north.com": [19129], "gynecomastia.org": [7039], "wt.cherry.de": [3062], "gls-group.eu": [6523], "www.openmicroscopy.org": [12021], "rehber.yandex.com.tr": [18649], "*.applepartsstore.com": [1123], "franken.de": [6102], "opengl.org": [11939], "static.hungryhouse.co.uk": [7621], "forensicinstitute.nl": [6027], "*.readcube.com": [13606], "mailhost.ut.ee": [17069], "www.malcovery.com": [9922], "edvina.net": [5102], "www.turktk.com": [16839], "tempolibero3.ffs.ch": [15693], "www.nypf.org.uk": [19448], "profesia.sk": [19521], "piwik.disconnect.me": [4543], "www.thebureauinvestigates.com": [16253], "indystar.com": [8067], "webtrends-sdc.niehs.nih.gov": [11052], "controller.osu.edu": [11760], "payments.dudley.gov.uk": [4795], "onehealthtalk.org": [11848], "emarketing.thestar.com": [16575], "fanfiction.net": [5648], "images.womenshealth.de": [18411], "soundslice.com": [15165], "nealpoole.com": [11120], "die-linke.de": [4456], "erdgeist.org": [5339], "www.alumni.buffalo.edu": [17297], "varnish-cache.org": [17568], "www.shamansgarden.com": [14657], "www.medialinx-academy.de": [10173], "thestar.com": [16575], "opdaterdinpc.tdc.dk": [15796], "www.wokingham.gov.uk": [19762], "mail.yandex.com": [18651], "www.os.uk": [11662], "www.executiveinterviews.com": [5489], "flatlinesecurity.com": [5909], "productsandservices.bt.com": [1551], "*.csmres.co.uk": [8306], "www.snl.com": [14143], "blog.safello.com": [14234], "www.serverstack.com": [14608], "www.lis.illinois.edu": [17258], "subterraneangames.com": [15568], "lkcss.zamimg.com": [18782], "developer.apple.com": [1120], "*.schwab.com": [14370], "exoticads.com": [5501], "literotica.com": [9467], "community.1and1.com": [51], "ripe72.ripe.net": [13895], "saucytime.com": [14304], "*.city.ac.uk": [3187], "account.login.aol.com": [321], "engr.washington.edu": [17291], "wiki.bnl.gov": [19009], "mims.com": [9743], "www.offcloud.com": [11735], "sciencenews.org": [14380], "secure.drivee.ne.jp": [4764], "arteus.aerohosting.cz": [689], "diasporafoundation.org": [4451], "medias.myskreen.com": [10784], "*.bstatic.com": [2202], "www.habrahabr.ru": [7129], "www.bluemanticketing.com": [2141], "valuedopinions.co.uk": [17545], "www.octoshape.com": [11718], "education.symantec.com": [15715], "www.zapchain.com": [18789], "ssl.xrel.to": [18589], "www.chathamhouse.org": [3033], "dailyfantasyradio.com": [4119], "ontogenesis.knowledgeblog.org": [8948], "www.appsto.re": [1136], "freedominc.nl": [6170], "bitcoinstore.com": [1973], "campinaopschool.nl": [2783], "imgflip.com": [7997], "ext.vt.edu": [17740], "vocms0153.cern.ch": [2574], "dor.stanford.edu": [15383], "www.gladrags.com": [6696], "rt.ocf.berkeley.edu": [17240], "tcfmailvault.info": [15791], "ics.imensa.de": [7988], "www.brmlab.cz": [2345], "blog.synology.com": [15738], "images.tomsofmainestore.com": [16544], "blogs.sophos.com": [15154], "pixelh8.co.uk": [12739], "modmypi.com": [10512], "www.youtube.fi": [18709], "www.licensebuttons.net": [9324], "*.ning.com": [11415], "mysql.geektechlabs.com": [6499], "pass.1688.com": [36], "www.oyunhizmetleri.com": [12193], "msi-shop.de": [9791], "www.therocktrading.com": [16307], "*.secure.xtenit.com": [18599], "forums.informaction.com": [8121], "serviceplus.cengage.com": [2937], "sheet.zoho.com": [18884], "idearcmedia.com": [15614], "portal.clickandpledge.com": [3255], "www.flattr.com": [5911], "cryptothrift.com": [3865], "aussieperthtours.com.au": [1376], "transmission.xmission.com": [18530], "voice.fi": [17819], "welcome.webmaker.org": [10663], "developers.over-blog.com": [12156], "sunlightfoundation.com": [15601], "www.i2coalition.com": [7657], "*.hartware.de": [7216], "front-admin.voyage-prive.it": [17858], "thinkup.com": [16363], "*.bravemedia.org": [2292], "search.ams.usda.gov": [17209], "sunbeltsoftware.com": [15596], "home.wabi.com": [17938], "anchor.net.au": [18955], "motherless.com": [10609], "www.names.co.uk": [11026], "www.manilaprinciples.org": [9956], "pw.mail.ru": [9874], "wiki.debconf.org": [4268], "*.www.cloudhexa.com": [3305], "www.anyfi.net": [1079], "maps.stanford.edu": [15382], "img.en25.com": [5227], "impact.leeds.ac.uk": [17318], "vaforvets.va.gov": [17019], "lovefood.com": [9631], "hotels.nationalrail.co.uk": [11055], "trafficshop.com": [16647], "community.mega.com": [10222], "yagi-antennas.com": [18632], "interkassa.com": [8251], "recordstoreday.com": [13649], "alumfx.com": [895], "*.theiet.org": [7720], "xssposed.org": [18536], "secure.fanboy.co.nz": [5650], "hackread.com": [7134], "*.disneyinternational.com": [4566], "freebsdnews.com": [6121], "mobilecore.com": [10496], "punchouttest.digikey.com": [4469], "wolfram.com": [18396], "www.wickr.com": [18281], "barnet.gov.uk": [18982], "www.bsi.bund.de": [5711], "cdn.coverstand.com": [3727], "discuss.zoho.com": [18884], "farmlogs.com": [5662], "rabota.yandex.by": [18648], "aclj.org": [939], "internetsuccess.at": [8289], "climate.wwf.ch": [19768], "www.sick.com": [14757], "www.forecast.io": [6023], "*.okpartypix.com": [6525], "cache.cheapassgamer.com": [3039], "wiki.zmanda.com": [18880], "netid.usc.edu": [17278], "lnkd.in": [9526], "www.silvawoodflooring.co.uk": [14798], "code.facebook.com": [5620], "www.cxholidays.com": [2904], "dashboard.covad.com": [3725], "netstat.cern.ch": [2575], "lists.ruhr-uni-bochum.de": [14031], "git.eclipse.org": [5049], "unity.com": [17220], "*.nifty.com": [10925], "fuse.gamespot.com": [6426], "www.rebeltorrent.net": [13639], "www.bestattungwien.at": [18284], "*.memset.com": [10255], "www.noordwijkerhout.nl": [11132], "er.ntnu.no": [10964], "mentoringcentral.net": [10265], "www.mekanist.net": [10238], "webmail.cari.net": [2517], "asu.edu": [1194], "elotouchexpress.com": [5176], "svazurich.ch": [19644], "www.nimbledeals.com": [11407], "www.afp548.com": [283, 284], "reevoo.com": [13715], "www.tuitam.pl": [15872], "askezra.cornell.edu": [3676], "www.hertz.com.hk": [7347], "www.idevelop.ro": [7944], "declaredthoughtfulness.co": [19108], "*.cengagebrain.com": [2937], "samsungtechwin.co.kr": [14270], "projects.parabolagnulinux.org": [12385], "espoarchive.nasa.gov": [10869], "vehivial.unizar.es": [17356], "videogateway.tv": [3505], "webstatistieken.xs4all.nl": [18535], "ifightsurveillance.net": [7888], "*.isorno.com": [8375], "honors.uw.edu": [17077], "blog.documentfoundation.org": [16221], "portals.clevelandclinic.org": [3236], "webmaster.yandex.com": [18651], "info.threatmatrix.com": [19680], "www.apschedule.com": [336], "jiasule.com": [8566], "www.zendition.net": [18825], "connect.squareup.com": [15329], "details.com": [4401], "dotnettools-support.jetbrains.com": [8559], "wuphysicians.wustl.edu": [17993], "blog.hackerspace.pl": [7149], "www.canyouseeme.org": [17790], "arts.stanford.edu": [15383], "www.lhncbc.nlm.nih.gov": [11052], "*.ashlands.net": [10559], "www.primesecoenergie.com": [13061], "adkontekst.pl": [600], "support.serverbase.ch": [19583], "www.elkosmas.gr": [19153], "edge2.digicert.com": [4473], "theglobeandmail.com": [6743], "astrill.com": [1302], "tuwien.ac.at": [17707], "payments.ncl.ac.uk": [10884], "*.dynamitedeals.com": [4830], "ru.pcisecuritystandards.org": [12224], "ca.cz": [18938], "www.scriptsource.org": [14420], "www.source.uillinois.edu": [16960], "1cart.com": [43], "babymed.com": [1593], "taoeffect.com": [15950], "gearman.org": [6487], "www.clickssl.com": [3251], "interfacelift.com": [8247], "people.live.com": [9483], "www.opentrackers.org": [12048], "www.vidling.com": [17712], "i.walmartimages.com": [17965], "www.hackover.de": [7157], "leadwerks.com": [9202], "www.rfxn.com": [13856], "www.defenceimagery.mod.uk": [16975], "www-cache4.extensis.com": [5523], "csul.iii.com": [9374], "*.itsfogo.com": [7733], "ghostery.com": [6629], "thisismynext.com": [16371], "*.itsanhonour.gov.au": [8394], "thetfp.com": [16316], "direct.money.pl": [10547], "chakasmmm.com": [2983], "thedrum.com": [16270], "www.travelhouse.ch": [19262], "www.mangaupdates.com": [9950], "www.staffordshire.gov.uk": [15370], "www.ixwebhosting.com": [7882], "kinfolk.com": [8896], "meduza.io": [10204], "geoamigo.com": [6535], "lists.wald.intevation.org": [17955], "www.amberswann.com": [921], "www.jsbi.org": [8456], "bitballoon.com": [1923], "connect.soundcloud.com": [15161], "www.hillingdon.gov.uk": [7410], "www.roofclimb.com.au": [19556], "*.mytextgraphics.com": [10791], "www.myapnic.net": [1257], "creativevirtual.com": [3785], "admin.instantpage.me": [8187], "umeahackerspace.se": [17143], "www.mozdev.org": [10647], "*.adkontekst.pl": [601], "ssl15.ovh.net": [12173], "yummynames.com": [16816], "sapphireforum.com": [14298], "comm.stanford.edu": [15383], "grepular.com": [6944], "www.zomato.com": [18890], "gdata.ch": [6293], "statistik.bayern.de": [15435], "cryptocon.org": [3857], "myprofile-mktas.oracle.com": [12082], "webmail.nedlinux.com": [11131], "simplebooklet.com": [14825], "cdnslssl.coveritlive.com": [3735], "nym.ag": [1920], "cbscorporation.com": [19044], "support.livechatinc.com": [9480], "*.jad-journal.com": [8645], "guide-images.ifixit.net": [7726], "smartadserver.com": [14982], "*.readthedocs.com": [13611], "freevps.us": [6134], "www.kura.io": [9041], "blast.ncbi.nlm.nih.gov": [11052], "support.taobao.com": [15951], "www.insidehw.com": [8165], "www.i.cx": [7652], "www.apac.redhat.com": [13675], "discuss.pirateparty.org.au": [12713], "www.sonymusic.com": [15146], "typepad.com": [16914], "kickstarter.com": [8881], "*.eusecwest.com": [4981], "www.designova.net": [4389], "nihpublications.od.nih.gov": [11052], "migrosbank.ch": [19399], "www.openmrs.org": [11952], "sektioneins.de": [14563], "buy.vedomosti.ru": [19730], "www.6xq.net": [186], "www.luckymarmot.com": [9650], "myaccount.talktalk.co.uk": [15929], "appguru.com": [1106], "ras.org.uk": [13992], "www.doublepimp.com": [4717], "en.spontex.org": [15287], "level3cdn.kiva.org": [8926], "www.openmedia.ca": [11958], "institute.lds.org": [16219], "dwin1.com": [4093], "facebook.freifunk.net": [6192], "zoklet.net": [18888], "videos.somethingawful.com": [15130], "static.fncash.com": [5581], "www.thecanadianpress.com": [2801], "static.uclinics.com": [16945], "secure.innocenceproject.org": [8150], "autorimsandaccessories.com": [1422], "www.genymotion.com": [6534], "bitquick.tw": [1943], "fatcow.com": [5690], "kutv.com": [8754], "yieldlab.de": [18681], "pl.piwik.org": [12733], "www.muscleandstrength.com": [10708], "nc-unbrick1.apple.com": [1120], "liquidlight.co.uk": [9444], "*.hds.com": [7422], "*.volunteer2.com": [17834], "www.walthamforest.gov.uk": [17966], "commondreams.org": [3487], "www.portnerpress.com.au": [12941], "jobs.usc.edu": [17278], "wingware.com": [18354], "sickdaysurfshop.com": [14758], "tersee.com": [19670], "www.lchost.co.uk": [9066], "online.mbank.sk": [9722], "ifttt.fitbit.com": [5887], "fldemo.nsf.gov": [11060], "www.budgetgolf.se": [2393], "www.chatsecure.org": [3031], "*.westlotto.com": [18219], "esinet.norfolk.gov.uk": [19436], "www.yworks.de": [19788], "www.fass.se": [5669], "coinjabber.com": [3396], "corporate.aldi.com.au": [299], "compete.com": [3519], "westcornwall.greenparty.org.uk": [6925], "emergingthreats.net": [5206], "swiss-virtual.com": [15695], "www.malware-research.org": [9926], "inspirehep.net": [8178], "legislature.maine.gov": [9894], "my.segpay.com": [14556], "nmap.org": [11433], "www.lastminute.com": [9165], "account.fas.harvard.edu": [7219], "www.mobify.net": [10493], "www.answers.com": [1060], "regmedia.co.uk": [13740], "totally.awe.sm": [1460], "www.myswitzerland.com": [19419], "tuleap.org": [16823], "www.userstyles.org": [19721], "adk2cdn.cpmrocket.com": [2648], "kikatek.com": [8885], "www.abovealloffers.com": [824], "cdneu.wahanda.net": [17948], "www.europeana.eu": [19167], "*.happyherbivore.com": [7200], "secure.pdcnet.org": [12626], "responsys.com": [13815], "www.fireflycarrental.com": [7372], "hoseasons.co.uk": [18490], "sc2.maps.live.com": [9483], "resources.openmpt.org": [11951], "www.yoursupportservices.co.uk": [18732], "jobs.netflix.com": [11229], "writelatex.com": [18474], "www.skatemall.com": [14898], "connect.wilmerhale.com": [18319], "www.simpel.nl": [19592], "olc1.ohiolink.edu": [11762], "blocktrail.com": [2086], "cyphertite.com": [3986], "www.eeqj.com": [4904], "app.paymo.biz": [12481], "sandbox.itunes.apple.com": [1120], "www.lessbuttons.com": [19359], "link.eml.skyandtelescope.com": [14933], "intranet.huit.harvard.edu": [7219], "feeds.itunes.apple.com": [1120], "*.infile.com": [8091], "cms.artsy.net": [1235], "www.who.is": [18258], "bcy.ca": [6892], "brighteroption.com": [2329], "medlem.amnesty.se": [972], "www.solidarity-us.org": [15121], "vervehosting.com": [17645], "ivents.ya.ru": [18626], "hjaelp.virk.dk": [17741], "geektechlabs.com": [6499], "uclinics.com": [16945], "print-server.st-edmunds.cam.ac.uk": [17243], "extreme.idg.se": [7705], "www.readcomicsinpublic.com": [13605], "chromeadblock.com": [517], "images.mcafeesecure.com": [10116], "americanscientist.org": [946], "www.crp.gov.sk": [14972], "gamesites.cz": [6438], "static.dezeen.com": [4435], "buzz.typo3.org": [15894], "www.opendaylight.org": [11934], "www.neave.tv": [11124], "openbookpublishers.com": [12002], "www.numa.paris": [11575], "*.worldremit.com": [18452], "ministerialtidende.dk": [10426], "kalveboderne-rundt.hvidovrekajakklub.dk": [7636], "cdn.cathaypacific.com": [2904], "wordsapi.com": [18435], "chasepaymentech.com": [3027], "www.gateshead.gov.uk": [6467], "census.gov": [17027], "id.nlm.nih.gov": [11052], "strato-hebergement.fr": [14192], "208.68.106.8": [9073], "secularstudents.org": [14471], "be.norton.com": [11505], "spa.lastminute.com": [9165], "labs.aweber.com": [378], "www.gayromeo.com": [12764], "circleci.com": [3155], "www.wello.com": [18195], "htbridge.com": [7115], "backend.alumnenet.dtu.dk": [16031], "www.qt-project.org": [13314], "worldwinner.com": [6416], "www.chronixradio.com": [3120], "api.sndcdn.com": [15032], "portal.smartertools.com": [14996], "blog.zanox.com": [18786], "8chan.co": [204], "login.webgo24.de": [18065], "gayswap.com": [6479], "www.returnpath.net": [13834], "webshopapp.com": [18147], "goldmann.pl": [6816], "www.ufcfit.com": [16949], "www.asctrust.com": [346], "script.wpm.neustar.biz": [11280], "kollegorna.se": [8964], "mail.usp.br": [17048], "stayfriends.de": [15444], "www.condor.de": [3561], "*.samsungknox.com": [14268], "pressdisplay.com": [11345], "soulmates.guim.co.uk": [7014], "www.joomlainfo.ch": [19325], "zendylabs.com": [18826], "1f0.de": [58], "ld-7.itunes.apple.com": [1120], "watchdog.truste.com": [15856], "pixelated-project.org": [12738], "banx.io": [1657], "it.icecat.biz": [7914], "careercenter.wustl.edu": [17993], "www.mazacoin.org": [10107], "www.benchmarkjs.com": [18990], "tcr.tynt.com": [16907], "whitelabeldating.alcuda.com": [785], "skyid.sky.com": [14924], "*.gaiaonline.com": [6405], "www.ispam.nl": [7834], "search.oracle.com": [12082], "login.raiffeisen.ch": [13527], "sipgate.de": [14857], "vitalgamers.com": [17789], "feedback.yandex.com": [18651], "*.informabtl.com": [13721], "*.groupon.de": [6977], "webstore.gemalto.com": [6514], "*.prisms.deewr.gov.au": [4025], "st8.gismeteo.ru": [6669], "*.zagony.ru": [18779], "chart.googleapis.com": [6839], "www.mailvelope.com": [9892], "forum.popcorn-time.se": [12914], "secure2.insideknc.com": [8762], "storage.cloud.kargo.com": [8795], "standup2cancer.org": [15377], "www.findababysitter.com.au": [5835], "cdn1.thr.com": [15813], "box.com": [2253], "ftp.gnu.org": [6357], "*.nintendo.com": [11417], "clinicalinformatics.stanford.edu": [15383], "mail.hover.com": [7566], "*.poppyuk.com": [12918], "genius.itunes.apple.com": [1120], "*.serialist.net": [14595], "theweekendedition.com.au": [18182], "www.xmlgold.eu": [18521], "www.gosi.gov.sa": [14306], "csaw.isis.poly.edu": [12888], "oes.umd.edu": [17263], "www.simplebooklet.com": [14825], "fewo-mehrtens.de": [5764], "svn.siedler25.org": [13832], "*.inwx.ch": [8231], "www.coreboot.org": [3669], "www.zorrovpn.com": [18910], "*.tweetmeme.com": [16870], "irishbroadband.ie": [8357], "kenexa.jobs": [8847], "theprivacyblog.com": [16231], "belgacoin.com": [1761], "u2.uicdn.net": [16958], "*.instellaplatform.com": [8191], "www.longtailvideo.com": [9589], "citeulike.org": [3167], "s.vinilox.eu": [17724], "indymedia.org.uk": [8084], "eidq.org": [4918], "special-trade.de": [15239], "cas.oebb.at": [19455], "geekisp.com": [6494], "www.verisign.be": [17623], "kasperskycontenthub.com": [8812], "studentaffairs.illinois.edu": [17258], "nytimes.com": [11000], "pcbooking.bradford.gov.uk": [2264], "www.i-cares.wustl.edu": [17993], "www.gajim.org": [6406], "cherkessk.rt.ru": [13469], "bhodisoft.com": [1837], "media.defcon.org": [4305], "curryrice.stanford.edu": [15382], "skeptic.org.uk": [14901], "randombit.net": [13546], "*.win-rar.com": [18328], "*.mybalsamiq.com": [1634], "www.websmithing.com": [18153], "gamezebo.com": [6444], "support.name.com": [11015], "jslog.krxd.net": [9016], "sungardhe.com": [15593], "*.thirdage.com": [16368], "beta.asana.com": [1242], "www.trafficshop.com": [16647], "www.youtube.qa": [18709], "developer.foursquare.com": [6082], "moodle.org": [10575], "kb.umd.edu": [17263], "styles.wienerstadtwerke.at": [18284], "lhc-mpwg.web.cern.ch": [2575], "makeapledge.stanford.edu": [15383], "interspire.com": [1853], "kmd.easycruit.com": [5023], "geoplatform.gov": [6538], "muspy.com": [10726], "www.operatingsystems.io": [12051], "swtor.com": [15708], "developerforce.com": [14249], "sso.ens.fr": [4930], "logger.scot.nhs.uk": [10913], "pgi.billdesk.com": [1876], "mail.jesus.cam.ac.uk": [17243], "citibank.com.au": [3170], "accounts.stanford.edu": [15382], "digikam.org": [4474], "primo.uvm.edu": [17075], "documents.plymouth.ac.uk": [12833], "www.yandex.kz": [18652], "meez.crwdcntrl.net": [9613], "ea1.earcu.com": [4869], "telex.cc": [16097], "tnm.ext.here.com": [7326], "www.mod.gnutls.org": [6763], "tiles.mapbox.com": [9968], "assets1.jimstatic.com": [8571], "www.more-ip-event.net": [10584], "fpcomplete.com": [5591], "accounts.icharts.net": [7696], "blog.logentries.com": [9553], "aulo.in": [1368], "www.remotestorage.io": [13761], "bromley.greenparty.org.uk": [6925], "feeds.alestic.com": [792], "www.thestamp.umd.edu": [17263], "eed.osu.edu": [11760], "admin.iovation.com": [8342], "www.canvas.net": [2812], "*.enjin.com": [5277], "*.light-paint.com": [9342], "resource.dopus.com": [4532], "cas.edutheque.cndp.fr": [2633], "www.watsoninstitute.org": [18005], "www.recruitmentplatform.com": [13651], "ru.support.tomtom.com": [16540], "creators.ning.com": [11414], "www.commoncraft.com": [3489], "hostingcatalog.com": [7534], "update.tdesktop.com": [15989], "www.computersnyou.com": [3540], "careers.globalways.net": [6741], "korbit.co.kr": [8984], "www.tvlicensing.co.uk": [16861], "consultations.southwark.gov.uk": [15196], "api.rasp.yandex.kz": [18652], "static.trustedshops.com": [16787], "fast10.fonts.com": [5993], "qianggou.taobao.com": [15952], "privnote.com": [13105], "online2.statefarm.com": [15418], "cdn.dynatrace.com": [4825], "playwarz.com": [17975], "mobile.jd.com": [8422], "startlogic.com": [15409], "www.lunarpages.com.mx": [569], "psc.edu": [12298], "blog.nustarz.com": [11563], "education.staffordshire.gov.uk": [15370], "www.efax.co.uk": [5107], "ncdc.noaa.gov": [11083], "www.oesrc.researchcompliance.vt.edu": [17740], "databricks.com": [4197], "developer.qualcomm.com": [13328], "use.typekit.net": [16912], "journal-news.net": [8641], "diffuse.ca": [4464], "assets.software.eu.playstation.com": [12795], "open.login.yahooapis.com": [18639], "www.ekmsecure.co.uk": [5133], "auto.yandex.ua": [18656], "www.arachnys.com": [1149], "img06.rl0.ru": [13914], "search.no.citrix.com": [3178], "rtmpdump.mplayerhq.hu": [9784], "*.overleaf.com": [12167], "www.purduealum.org": [13233], "browsercan.rapid7.com": [13553], "client.museter.com": [10713], "www.directbox.com": [4529], "forms.bracknell-forest.gov.uk": [19016], "www.securosis.com": [14536], "cdn.yemeksepeti.com": [18674], "www.enderunix.org": [5246], "xpda.com": [19787], "*.uc.edu": [17308], "parkingonline.lincoln.gov.uk": [9362], "heathkit.com": [7278], "www.morgenweb.de": [10591], "pimage.timespeople.nytimes.com": [11000], "investors.com": [8323], "*.denh.am": [4361], "cctools.wustl.edu": [17993], "eindbazen.net": [5126], "*.pingidentity.com": [12684], "entportal.ieeeusa.org": [7716], "groupbuy.topbuy.com.au": [16559], "www.horizon.tv": [19716], "app.prospecteye.com": [13163], "help.spike.newswhip.com": [11333], "build.hmailserver.com": [7087], "crikey.com.au": [3796], "www.experian.com": [5506], "greenpeace-magazin.de": [6935], "www.sapphireforum.com": [14298], "www.hosthorde.com": [7513], "booleweb.ucc.ie": [16933], "www.gorickshaw.com": [6795], "ne-web.ucsd.edu": [16939], "account.skrill.com": [14919], "www.kea.nu": [2292], "www.nbcudigitaladops.com": [10875], "common.staticskynet.be": [15433], "disaster.nlm.nih.gov": [11052], "blog.cr.yp.to": [3748], "www.wpstartbox.com": [15406], "verisign.com.au": [17623], "bleutrade.com": [2071], "ch.norton.com": [11505], "samba.catracalivre.com.br": [2908], "faq.kaywa.com": [8827], "www.myiuhealth.org": [7867], "www.healthtap.com": [7258], "*.nardikt.ru": [7325], "*.gameswelt.de": [6442], "*.translink.co.uk": [16675], "www.obsproject.com": [11609], "rtek2000.com": [13471], "maps.yandex.com.tr": [18649], "www.aswirlgirl.com": [1307], "secure.walmartimages.com": [17965], "images.akban.org": [764], "*.huffingtonpost.com": [7600], "www.drownedinsound.com": [4774], "docs.freeswitch.org": [6130], "mi-pro.co.uk": [8226], "www.tescofinance.com": [16136], "catarse.me": [2899], "uniblue.com": [17180], "www.hifx.co.uk": [7387], "envy.zenspider.com": [18832], "deportes.unizar.es": [17356], "croscill.com": [3811], "chiclet.ymlp.com": [18722], "medienstiftung-hsh.de": [10195], "svbtle.com": [15670], "pitt.edu": [17332], "www.vindico.com": [17720], "piwik.accessnow.org": [447], "hinckley-bosworth.gov.uk": [7412], "static.1wt.eu": [48], "trust.taobao.com": [15951], "www.publicsuffix.org": [13215], "jobs.upc-cablecom.ch": [19716], "www.code.osu.edu": [11760], "www.m6d.com": [10149], "dezertdepot.com": [4436], "tac.bis.doc.gov": [17058], "www.filterdigital.com": [5813], "www.kickstarter.com": [8881], "ads.hospitalityleaders.com": [7500], "docs.gimp.org": [19218], "mail.kde.org": [8718], "fanpagegeneratorpro.rhinosupport.com": [13862], "www.womeninnovatemobile.com": [18405], "www.wolfsonmicro.com": [18401], "leads.demandbase.com": [4342], "static.rbl.ms": [13592], "www.intelligentexploit.com": [8216], "youtube.com.ar": [18709], "www.thisismynext.com": [16371], "www.getbootstrap.com": [6609], "skilldrum.com": [1111], "apac.littlehotelier.com": [9474], "go.twenga-solutions.com": [16872], "edelivery-hqdc-test.oracle.com": [12082], "www.me.washington.edu": [17290], "media.cdn.liquidweb.com": [9443], "www.trustly.se": [16797], "qpbs.imageg.net": [6388], "wiki.argonit.cz": [1183], "perfectmarket.com": [12560], "cathaypacifichost.com": [2904], "help.dyn.com": [4820], "static.media.ccc.de": [2538], "ezgram.com": [5002], "failai.serveriai.lt": [14616], "stg-coupons.paypal.com": [12467], "ekt.rt.ru": [13469], "www.partspider.com": [12417], "i9.c.dk": [2498], "instantpage.me": [8187], "osmglobal.com": [11673], "www.code.org": [3345], "campuspack.eu": [2785], "bizrate.com": [2033], "www.lookingglass.email": [9598], "export.cr.yp.to": [3748], "www.syncany.org": [15727], "thesaturdaypaper.com.au": [16309], "printservice.web.cern.ch": [2575], "www.asc.osu.edu": [11760], "support.rovio.com": [13989], "hypernews.cern.ch": [2574], "debuggify.net": [4279], "sell.2.taobao.com": [15952], "fins.com": [11321], "chatango.com": [3032], "www.it.arch.ethz.ch": [4975], "webroot.com": [18140], "sts.psc.gov": [19525], "cff.ch": [15693], "filmlush.com": [5811], "*.modernlivingmedia.com": [17540], "secure.fangamer.com": [5653], "account.infousa.com": [8110], "vpnsecure.me": [17505], "media.8chan.co": [204], "ph.godaddy.com": [6773], "www.cs.washington.edu": [17291], "bedford.gov.uk": [18986], "www.neverddos.com": [11285], "support.mozillamessaging.com": [10661], "login.modernus.is": [10525], "www.ewent.ya.ru": [18626], "wyndhamrentals.com": [18490], "mc.skycure.com": [19599], "www.pantheos.com": [12374], "i.shareasale.com": [14661], "www.yts.to": [18623], "vantiv.com": [17562], "polisforbundet.se": [12869], "figue.com": [5574], "www.wimp.com": [18323], "www.giving.acs.org": [929], "www.webcitz.com": [18057], "lessig2016.us": [9260], "success.parature.com": [12396], "equella.nottingham.ac.uk": [11528], "www.mythic-beasts.com": [10850], "shoeshow.com.au": [14713], "www.fye.osu.edu": [11760], "questcomp.com": [13352], "kmart.com": [8937], "dollaraday.co": [4643], "www.orioninc.com": [12109], "wykop.pl": [18488], "www.poweredbypaquin.com": [12999], "www.dispenser.tf": [4568], "s.thebrighttag.com": [2325], "feeds.tv2.dk": [15881], "b-linked.bbyo.org": [18978], "www.cornell.edu": [3676], "tmz.com": [15832], "globalnetwork.pl": [6727], "gavelbuddy.com": [6470], "www2.eiffel.com": [5124], "img1.leboncoin.fr": [19351], "gathering.geogebra.org": [6537], "spreturns.eastsussex.gov.uk": [19142], "www.itpol.dk": [8392], "people.collabora.com": [3419], "*.ssrn.com": [14183], "sources.debian.net": [4273], "www.greenpeace-jugend.de": [6934], "youtube.sa": [18709], "tdp-feedback.truste.com": [15856], "traq.exitec.com": [5496], "www.moodsmith.com": [10570], "nyc.gov": [11292], "biox.stanford.edu": [15383], "www.certivox.com": [2966], "www.precursorapp.com": [13022], "ucsdbkst.ucsd.edu": [16939], "www.filecrypt.cc": [19178], "www.ct.gov": [2680], "suite.tiki.org": [16444], "www.praegnanz.de": [13010], "feedback.yandex.by": [18648], "kbb.com": [8844], "www.evaske.com": [5435], "heidelberg.de": [7283], "csie.org": [2671], "blackpool.gov.uk": [2056], "www.attac.at": [1334], "eu-st.xhamster.com": [18515], "codeclubpro.org": [3355], "bitmessage.org": [2008], "www.firstvds.ru": [5872], "www.versioneye.com": [17634], "servedbyadbutler.com": [518], "mathsys.aalto.fi": [390], "www.endesa.pt": [5247], "*.cyon.ch": [3981], "www.uefidk.com": [17113], "collada.org": [2637], "wd2go.com": [17898], "rprportal.wustl.edu": [17993], "*.siteor.com": [14883], "www.icommunity.fr": [7701], "ssl7.ovh.net": [12173], "www.sirrix.com": [14859], "cdn.flowtab.mobi": [5949], "spendvision.com": [19618], "gifts.wustl.edu": [17993], "maps.me": [9976], "www.iai.inf.tu-dresden.de": [15871], "portalcontent.johnshopkins.edu": [8611], "learningbizpackage.com": [9213], "*.online-convert.com": [11867], "sso.liveperson.net": [9493], "bebo.com": [1743], "www.dosomething.org": [4687], "mail.action.at": [266], "acls.org": [249], "forum.hornbach.de": [7496], "www.hackerexperience.com": [7144], "scratch.mit.edu": [9749], "www.statefarm.com": [15418], "*.drugstore.com": [4779], "efadatacollections.education.gov.uk": [19149], "jud2.ct.gov": [2680], "city.yandex.com": [18651], "magicalbutter.com.au": [9857], "flic.kr": [5916], "training.linuxfoundation.org": [9412], "*.unix4lyfe.org": [17354], "www.sharefile.com": [14663], "dialshield.com": [1463], "bidtellect.com": [1848], "*.database.com": [4195], "s.brighthub.com": [2326], "wachtwoord.kuleuven.be": [8816], "myaccount.charter.com": [3020], "jmall.360buy.com": [111], "nic.br": [10919], "app.cloudforge.com": [3288], "www.mah.se": [9709], "nasastg.gpehosting.com": [6376], "artchristina.com": [1221], "ubuntu-eu.org": [17094], "www.xgaming.com": [18513], "media.ign.com": [7730], "news.usc.edu": [17278], "blogs.intel.com": [8209], "tr.apsislead.com": [1140], "catalysts.osu.edu": [11760], "fedoraproject.org": [5726], "www.mercurynews.com": [10280], "wammo.co.nz": [8928], "aspectsecurity.com": [1271], "passwort.gmx.net": [6350], "www.nervous.io": [11163], "realperson300.net": [12071], "soundonsound.com": [15159], "*.domaintank.hu": [4665], "webmail.graasmilk.net": [6878], "www.evermeet.cx": [5448], "www.freecode.com": [6161], "cdn.webtrends.com": [18171], "www.blog.nodejitsu.com": [11453], "www.sbrf.ru": [14322], "courtlistener.com": [3720], "es.pcpartpicker.com": [12497], "i.kfs.io": [8872], "ifc.org": [8258], "www.linuxacademy.com": [9418], "*.mephi.ru": [10267], "www.visualstudio.com": [17785], "movie4k.tv": [10636], "www.fastcompany.com": [5670], "forum.nationstates.net": [11044], "a7.sphotos.ak.fbcdn.net": [5700], "oxforddictionaries.com": [12191], "theinformation.com": [16293], "www.mobihand.com": [10491], "www.actel.com": [489], "communitiestest.acs.org": [929], "www.privatelee.com": [13103], "*.panasonic.com": [12354], "movie4k.to": [10636], "ssl.informatics.uow.edu.au": [17350], "www.hertz.pl": [7358], "metadata.eduid.cz": [5097], "www.avonmaquiagem.com.br": [1455], "www.orgreenoptics.com": [12105], "securepaynet.net": [14507], "hifx.co.uk": [7387], "register.sparklabs.com": [15220], "shop.haymarket.com": [7249], "filmthreat.com": [5805], "wms.assoc-amazon.fr": [1290], "interference.cc": [8248], "miapple.me": [10333], "www.hertz.pt": [7359], "www.crowdrise.com": [3827], "designernews.co": [4388], "ecc.earthdata.nasa.gov": [10869], "www.freedomboxfoundation.org": [6174], "rhinosoft.com": [13861], "www.nytm.org": [10988], "*.naacp.org": [10861], "afcea.org": [280], "adamcaudill.com": [553], "*.whstatic.com": [18290], "www.ethicspoint.com": [5383], "bst6.gismeteo.ru": [6669], "www.itunes.com": [7865], "www.directbox.eu": [4529], "secure.sextoy.com": [14644], "doncasterhrportal.rotherham.gov.uk": [13979], "www.wpi.edu": [18426], "api-devint.dwolla.com": [4816], "warosu.org": [17983], "*.kriso.lv": [9013], "nqsb.io": [11544], "santuario.apache.org": [1086], "bbc.in": [1920], "photo.kaywa.biz": [8826], "kino.web.de": [18050], "www.applytracking.com": [1128], "lift.awp.nhs.uk": [10913], "filmon.com": [5812], "1800quitnow.cancer.gov": [2805], "bio-ontologies.knowledgeblog.org": [8948], "scaleengine.com": [14327], "aircrack-ng.org": [750], "www.solihull.gov.uk": [15122], "www.spsn.net": [15321], "api.qunitjs.com": [13292], "devblog.mediamath.com": [10157], "www.pricezombie.com": [13054], "www.hunchlab.com": [7618], "lternet.edu": [9103], "pointshound.com": [12853], "dvdfab.com": [4088], "www.oucs.ox.ac.uk": [17271], "studentaid.ed.gov": [4889], "www.tryzen99.com": [16807], "anubisnetworks.com": [1073], "www.egenix.com": [19134], "www.thehackerblog.com": [16289], "ssl.email.163.com": [35], "secure.somethingawful.com": [15130], "nsrl.bnl.gov": [19009], "www.mewsite.com": [10326], "rossiercareers.usc.edu": [17278], "partnerlocator.trendmicro.eu": [16716], "www.food.gov.uk": [19187], "*.bizjournals.com": [16180], "docs.webplatform.org": [18079], "www.panoramio.com": [12366], "facebook.de": [5623], "youtube.com.my": [18709], "awempire.com": [647], "connect.sensiolabs.com": [14586], "uhub.org": [17121], "www.unmitigatedrisk.com": [17360], "www.gnuradio.org": [6359], "facebook.dk": [5623], "suprizkizlar.com": [15641], "studentportal.strode-college.ac.uk": [15528], "digitalwpc.com": [4502], "media8.congstar-media.de": [3576], "www.lib.washington.edu": [17291], "restaurants.just-eat.co.uk": [19328], "regi.laptop.hu": [9155], "www.equalit.ie": [4947], "apps.staffordshire.gov.uk": [15370], "i.techweb.com": [16021], "pipni.cz": [12257], "neowiki.neooffice.org": [11150], "prochoice.org": [11074], "packages.deepin.com": [4302], "*.4chan.org": [158], "www.earcu.com": [4869], "content.thunderkick.com": [16406], "passwd.hu": [12431], "nm.newegg.com": [11316], "devilteam.pl": [4424], "*.rtfd.org": [13611], "www.hertz247.pt": [7359], "belnet.be": [1769], "gentoo-handbook.lugons.org": [9108], "dns-oarc.net": [4059], "www.up1.ca": [17380], "static.shaun.net": [14685], "di.dk": [3566], "*.pixiq.com": [12742], "shop.hbo.com": [7047], "lkd.org.tr": [9086], "brasil.fronter.com": [19200], "zerzar.com": [18849], "heg.com": [7502], "electroscience-new.engineering.osu.edu": [11760], "www.chriscowley.me.uk": [3103], "lohud.com": [9564], "www.ycharts.com": [18613], "www.greatnet.de": [6909], "www.cabforum.org": [2506], "static.zenimax.com": [18830], "account.live.com": [9483], "centrallancs.greenparty.org.uk": [6925], "ya.ru": [18626], "upvoted.com": [17403], "www.christianbook.com": [3112], "www.jivesoftware.com": [8585], "store.office.com": [11743], "subscribe.newstatesman.com": [11311], "*.ufl.edu": [17253], "superherotrainingnetwork.com": [15630], "www-amsweb-ext.imf.org": [7757], "imageshack.*": [7981], "go.nasa.gov": [1920], "www.cryptodesign.org": [3868], "*.wegotwax.com": [18020], "investor.gov": [8321], "s3.mt-cdn.net": [9798], "www.dd-wrt.com": [4018], "www.gitter.im": [6684], "www.frascaticafe.nl": [6106], "p3nmssqladmin.secureserver.net": [14511], "*.umii.umass.edu": [17265], "youtube.cz": [18709], "audioscrobbler.com": [1360], "assets.newscheckmedia.com": [11340], "gdata.com.mx": [6293], "wiki.debian-fr.org": [4271], "wierden.nl": [11132], "extras.altoonamirror.com": [894], "www.skm.io": [14916], "beartalk.berkeley.edu": [17240], "ssl.cdngc.net": [2560], "bradford.moderngov.co.uk": [19405], "autodiscover.comp.leeds.ac.uk": [17318], "et09.xhcdn.com": [18514], "www.risi.com": [13433], "cdn.ycombinator.com": [7141], "www.urltrends.com": [17413], "ahmia.fi": [738], "wiki.pirateparty.ca": [12712], "abdn.ac.uk": [405], "housing.voa.gov.uk": [19739], "*.tox.im": [16617], "squarefree.com": [15331], "*.shutterfly.com": [14754], "b3.manchester.gov.uk": [9944], "mail.live.com": [9483], "secure.skandiabanken.no": [14895], "www.nzbindex.com": [11002], "adobe.com": [615], "cybermap.kaspersky.com": [8806], "carlosprioglio.com": [2854], "elie.im": [5164], "raceforlife.cancerresearchuk.org": [19035], "sc4.rgstatic.net": [13422], "orderbook.net": [12096], "www.ris.bka.gv.at": [13431], "*.emulex.com": [5226], "looktothestars.org": [9596], "coloradocaptures.com": [3441], "www.cilkplus.org": [3135], "accounts.bizo.com": [2031], "*.voicefive.com": [17820], "www.counterwallet.io": [3708], "champssports.com": [2991], "nabtrade.com.au": [10865], "*.ittoolbox.com": [7857], "fnh.utoronto.ca": [17343], "33bits.org": [102], "cryptonator.com": [3883], "www.skrill.com": [14919], "analytics.freepress.net": [6147], "ceasefiremagazine.co.uk": [2925], "euobserver.com": [4982], "emailmarketing.techxpress.net": [16022], "www.specialforces.com": [15240], "www.patentbaristas.com": [12448], "selfservice.peterborough.gov.uk": [12594], "webmail.iu.edu": [8064], "sockassist.com.au": [16102], "support.cumulusnetworks.com": [3919], "dl.fedoraproject.org": [5726], "scottishpower.co.uk": [14400], "www.library.jhu.edu": [16296], "fex.rus.uni-stuttgart.de": [17281], "research.de.com": [10218], "tbray.org": [15788], "dedyn.io": [19107], "bund.de": [17647], "monitoring.stanford.edu": [15383], "transformativeworks.org": [16667], "webthumbnail.org": [18163], "zkb.ch": [19333], "support.surfeasy.com": [15649], "cdn.hymnal.voxmedia.com": [17852], "mmoga.com": [9763], "www.eastsussexlearning.org.uk": [19144], "fanboy.co.nz": [5650], "www.mca-marines.org": [9726], "www.spankwire.com": [15217], "foxydeal.com": [6088, 6089], "vimeo.com": [17717], "mailxchange.1and1.co.uk": [53], "yorkfitness.com": [18696], "fxn.ws": [1920], "bgr.com": [1515], "readynas.com": [13619], "webmercs.com": [4170], "isiknowledge.com": [18107], "invitation.chaisdoeuvre.fr": [2982], "special.megamozg.ru": [19394], "www.gdata.es": [6293], "www.wolframcdn.com": [18398], "exhibition.ecc-platform.org": [4879], "mara.gov.au": [11750], "blazonco.com": [2064], "inted.oie.buffalo.edu": [17297], "new.aol.com": [321], "*.further.co.uk": [6271], "codeweavers.com": [3353], "shopping.rspb.org.uk": [13460], "www.superherotrainingnetwork.com": [15630], "staticstuff.net": [6610], "www.snacktools.com": [15020], "www.inuits.eu": [8309], "www.jauce.com": [19317], "cacher.dozuki.net": [4731], "gemoney.com.au": [6315], "files8.adme.ru": [606], "east-northamptonshire.gov.uk": [5012], "www.leastfixed.com": [9217], "www.avonandsomerset.police.uk": [1454], "support.socrata.com": [15082], "econnect.stanfordmed.org": [15387], "member.1688.com": [36], "www.simple.com": [14820], "data.glasgow.gov.uk": [6699], "truste.com": [15856], "survey.usa.gov": [17029], "rnpdigital.com": [13441], "arbeitsagentur.de": [1152], "secure.critpath.org": [3803], "www.ventoso.org": [17609], "img01.bt.co.uk": [1548], "www.easy2coach.net": [5021], "*.totemapp.com": [16606], "active.com": [497], "*.insightmgr.com": [4507], "www.lendingclub.com": [9246], "api.snelis.com": [15033], "www.broadbandreports.com": [4081], "activemq.apache.org": [1086], "b-europe.com": [14142], "completion.amazon.co.uk": [910], "nacdl.org": [10866], "pipping.org": [12702], "article19.org": [1231], "fbdatesecure.com": [8426], "webmail.orkz.net": [12111], "ferroh.com": [5758], "www.intelexit.org": [8212], "*.das-elena-verfahren.de": [4922], "gismeteo.ua": [6670], "anarchistnews.org": [990], "ceviri.yandex.com.tr": [18649], "www.thalescomminc.com": [16169], "prepaid-phones.t-mobile.com": [15772], "www.tacoma.uw.edu": [17077], "www.mullvad.net": [10694], "nvidianews.nvidia.com": [10982], "edinburgh.pirateparty.org.uk": [12714], "dane.xelerance.com": [18554], "nadaguides.com": [10867], "www.epay.bg": [4944], "comparethemarket.com": [3511], "research.brown.edu": [2367], "umass.edu": [17265], "archlinux.fr": [1159], "www.vorratsdatenspeicherung.de": [295], "*.wikimedia.ch": [18296], "booking.hillingdon.gov.uk": [7410], "www.trustworthyinternet.org": [16800], "static.oculusvr.com": [11722], "*.chdir.org": [3038], "img01.taobaocdn.com": [15953], "trustedshops.co.uk": [16787], "cdn.softlayer.com": [15093], "www.energystar.gov": [5256], "www.dobrochan.ru": [4612], "www.ifortuna.sk": [7947], "s3.mzstatic.com": [10852], "syndie.de": [15734], "mtrics.cdc.gov": [19046], "mousejack.com": [19410], "www.bato.to": [18985], "sofurry.com": [15048], "app.balboa.io": [1626], "*.pirate-party.ch": [12284], "dev.rsaconference.com": [13454], "aktivix.org": [771], "remedyweb.stanford.edu": [15383], "teac.co.jp": [15804], "static.chefkoch-cdn.de": [3058], "nettica.com": [11252], "accounts.gigaom.com": [6644], "www.allianz-fuer-cybersicherheit.de": [852], "wiki.fsfe.org": [5601], "sll.org.uk": [15076], "consult.cheshirewestandchester.gov.uk": [19057], "motorolasolutions.com": [10615], "orders.cspinet.org": [2675], "www.firmas.lv": [5865], "www.mountspace.com": [10621], "alwaysdata.com": [898], "geekevents.org": [6501], "www.cryptocapital.co": [3867], "afsp.org": [931], "help.5apps.com": [176], "clinicalkey.com": [3267], "datapipe.com": [4212], "go4gold.uol.com.br": [16998], "licensee.garfield.com": [6459], "www.gchq-careers.co.uk": [6307], "cimjsea.engineering.osu.edu": [11760], "school-of-engineering-faculty-search.mit.edu": [9749], "d.pcs.baidu.com": [1619], "www.vectorborne.fralin.vt.edu": [17740], "devel.rtems.org": [13472], "online.dudley.gov.uk": [4794], "cdn.mytemp.email": [10790], "ads.ventivmedia.com": [17608], "fastwebmedia.com": [5671], "ssl-certificate-center.verisign.dk": [17623], "scotch.io": [14395], "3down.mit.edu": [9749], "backstreet-merch.com": [1603], "www.newscientistsubscriptions.com": [11299], "2ch.hk": [92], "liveclicker.com": [9504], "www.davpack.co.uk": [4234], "newsmaxhealth.com": [11343], "gigenetcloud.com": [6657], "wachtwoord.xs4all.nl": [18535], "acw.elsevier.com": [5185], "anonsvn.wireshark.org": [18369], "www.bluemovie.eu": [2126], "webtraxs.com": [18169], "mbeta.efinancialcareers.com": [4911], "ncifrederick.cancer.gov": [2805], "epaper.derstandard.at": [19111], "2015.asiabsdcon.org": [1258], "cp.beastnode.com": [1735], "zapis.cesa.vutbr.cz": [17522], "airasiamegastore.com": [746], "vorarlberg.neos.eu": [10899], "www.archos.com": [1171], "backbonesecurity.com": [1596], "www.piratpartiet.se": [12723], "kali.org": [8771], "studyinaustralia.gov.au": [15543], "www.acluidaho.org": [16176], "2011.eurobsdcon.org": [5404], "ebill.neustar.biz": [11280], "collegeclublife.com": [2638], "serpdisplay.yandex.com.tr": [18649], "mediamemo.allthingsd.com": [840], "paysafecard.com": [12486], "taskflow-portal.dundeecity.gov.uk": [4801], "email.osu.edu": [11760], "formsanity.com": [6042], "jd2008.jd.com": [8423], "openwrt.org": [11992], "developer.yammer.com": [18647], "subscriptions.marvel.com": [10038], "lakome.com": [9134], "fluidhosting.com": [5952], "westjet.com": [18206], "democratic.bracknell-forest.gov.uk": [19016], "libs.iraiser.eu": [8353], "*.lelo.com": [9243], "techbriefings.stanford.edu": [15383], "medstudents3.wustl.edu": [17993], "www.portaldaempresa.pt": [6873], "linac4-project.web.cern.ch": [2575], "dansekapellet.kk.dk": [8730], "ti.to": [16408], "bittylicious.com": [2026], "liliani.com.br": [9352], "iljmp.com": [7964], "li.ru": [9487], "www.tarlogic.com": [15965], "hands.com": [7190], "*.lilux.lu": [9284], "cas.cnrs.fr": [6195], "img.buch.de": [16171], "*.hawkhost.com": [7247], "shockmedia.nl": [14711], "assets.picoville.com": [12666], "mudgum.net": [10685], "box-look.org": [19461, 19462], "addons.mozilla.jp": [10655], "velex.htwk-leipzig.de": [7114], "www.phantompeer.com": [12615], "mooc-list.com": [9777], "ausflugstipps.zvv.ch": [19806], "sinsofasolarempire.com": [14853], "bromley.gov.uk": [2360], "tieto.com": [16437], "www.soscisurvey.de": [15050], "sample-default.readme.io": [13608], "doncaster.gov.uk": [4678], "www.v2ex.com": [17463], "www.obi.ru": [19452], "www.tickengo.*": [16411], "assets-cdn.github.com": [6680], "acoustics.org": [477], "*.spreadshirt.se": [15300], "img.washingtonpost.com": [17990], "quiz-uscc.cyberquests.org": [3974], "math.stanford.edu": [15382], "www.listener.co.nz": [9450], "account.nicovideo.jp": [11389], "www.silicon.com": [14789], "www.krita.org": [9014], "lptag.liveperson.net": [9493], "proofwiki.org": [13153], "dieselnet.com": [4460], "webapps.lsa.umich.edu": [17266], "secure.suggest.search.sky.com": [14924], "www.demonbuddy.com": [2230], "changeip.com": [2994], "datacamp.com": [4176], "requester.mturk.com": [9805], "*.naver.com": [11111], "pewdiepie.net": [12605], "corelib.trendmicro.com": [16717], "www.gyazo.com": [7035], "prov.wifi.xfinity.com": [19784], "weboolu.com": [18137], "*.newdream.net": [11288], "security.cpanel.com": [2651], "www.boe.ca.gov": [2508], "jayisgames.com": [8534], "humanityplus.org": [7614], "ul.to": [3952], "info.centrify.com": [19048], "campstaffusa.com": [2776], "*.azchampion.com": [5627], "kfs-prod.adminapps.cornell.edu": [3676], "blog.mthode.org": [10682], "support.zen.co.uk": [18815], "www.renkum.nl": [11132], "*.mobypicture.com": [10506], "messenger.ngageics.com": [11372], "corvisacloud.com": [3688], "techmeme.com": [16029], "petekeen.net": [12588], "www.buergerkraftwerke.at": [18284], "rudi.net": [13479], "cdn.sencha.io": [14576], "www.bluenote.io": [2153], "gcdn.org": [6306], "moikrug.ru": [10532], "login.eloqua.com": [5179], "www.ucat.osu.edu": [11760], "pastas.serveriai.lt": [14616], "ovh.com": [12173], "celartem.com": [2929], "www.triplemint.com": [16745], "learn.sparkfun.com": [15222], "www.talktalktechnology.com": [15928], "www.autorimsandaccessories.com": [1422], "enose.jpl.nasa.gov": [10869], "www.dsp.io": [4787], "*.boingohotspot.net": [2182], "*.reefbuilders.com": [13708], "inews.berkeley.edu": [17240], "www.carsabi.com": [2865], "*.api.sh": [1091], "ramsis.engineering.osu.edu": [11760], "pictures.vimention.com": [17716], "www.rotlogix.com": [13980], "nc-as-images.apple.com": [1120], "checkout.cias.rit.edu": [13434], "learningnetworkstore.cisco.com": [3162], "marvelheroes.com": [10039], "aviation.osu.edu": [11760], "*.eventim.se": [5443], "www.alternalabs.com": [879], "www.jaqpot.net": [8519], "united.com": [17212], "forschung.imn.htwk-leipzig.de": [7114], "img6.leboncoin.fr": [19351], "spdns.de": [14154], "etouches.com": [5389], "webassetsg.scea.com": [14089], "alpinelinux.org": [869], "rabota.yandex.kz": [18652], "www.learnshare.com": [9210], "www.foxitsoftware.com": [6086], "www.issuu.com": [8378], "vivaciti.net": [17796], "help-en-eu.nike.com": [11401], "www.waeplus.co.uk": [17892], "my.mechse.illinois.edu": [17258], "superpetusa.com": [15622], "www.creditreportnation.com": [3791], "icloud.com": [7698], "www.overijssel.nl": [11132], "account.1and1.co.uk": [53], "www.billycreative.com": [1885], "www.ric.org": [13429], "itnews.iu.edu": [8064], "www.webfwd.org": [18062], "www.howtoforge.com": [7574], "www.hmapps.net": [7437], "learn.polyu.edu.hk": [12891], "trial.f-secure.com": [5541], "www.gannett.cornell.edu": [3676], "activate.eiffel.com": [5124], "www.carbonmade.com": [2831], "sbs.e-paycapita.com": [19132], "ems.northlincs.gov.uk": [19439], "searchandpromote.omniture.com": [11803], "*.logilab.fr": [9559], "mediaplex.com": [17541], "bmc.com": [1527], "myservice.xbox.com": [18550], "my.mail.de": [9873], "foreignaffairs.com": [6025], "www.flexnow.rub.de": [13478], "cdn.101domain.com": [12], "frascaticafe.nl": [6106], "cisl.stanford.edu": [15382], "thumb.ccsd.cnrs.fr": [6195], "cs.chromium.org": [3119], "s.lmncdn.com": [9525], "wwwlacie.seagate.com": [14437], "fronter.com": [19200], "spilnu.dk": [15275], "www.bittiraha.fi": [2022], "*.blogs.nytimes.com": [11000], "podpora.endora.cz": [5248], "blog.shopstyle.com.au": [14719], "rs.mail.ru": [9874], "springshare.com": [15313], "www.yp4h.osu.edu": [11760], "staticassets.courierpostonline.com": [3715], "epa-bprg.ornl.gov": [11693], "test.uptobox.com": [19718], "www.phoenix.de": [19492], "www.omnetpp.org": [11636], "visualwebsiteoptimizer.com": [17783], "www.podio.com": [12846], "partners.nvidia.eu": [10984], "realworldocaml.org": [13629], "qualys.com": [13333], "ethernetportal.equinix.com": [5334], "www.upc-cablecom.ch": [19716], "*.sywcdn.net": [14210], "egenix.com": [19134], "landscape.io": [9141], "backlot.ooyala.com": [11900], "slides.google.com": [6834], "wifidb.net": [18272], "ad.adlegend.com": [602], "forum.doom9.org": [4682], "ucom.osu.edu": [11760], "www.hosting9000.com": [7528], "simulab.fsaa.ulaval.ca": [17229], "www.education.gov.uk": [19149], "www.adap.tv": [554], "ftp.rnl.ist.utl.pt": [16033], "vodafone.de": [17814], "*.atsb.gov.au": [1403], "en-es.dict.cc": [4455], "tirerack.com": [16495], "access-kaiseki-tools.com": [444], "hoeringsportalen.dk": [7443], "threattracksecurity.com": [16395], "www.gamesrocket.de": [6439], "payment.neustar.com": [11282], "exratione.com": [5473], "www.hiconversion.com": [7386], "cryptoseal.com": [3864], "metager.de": [10298], "andrewblum.net": [1001], "www.arts.cornell.edu": [3676], "www.jimshaver.net": [8570], "www.blackberry.com": [2050], "sumologic.com": [15592], "rbdigital.com": [19537], "honeynet.org": [19257], "cp.gohsphere.com": [8607], "popads.net": [12902], "*.powerhosting.dk": [13000], "crypto.stanford.edu": [15383], "*.buzzfed.com": [2473], "*.cbsstatic.com": [2526], "*.democracyinaction.org": [4354], "jsna.portsmouth.gov.uk": [19508], "zoho.jp": [18883], "www-sop.inria.fr": [8159], "cgi.stanford.edu": [15383], "*.nibcdirect.nl": [10916], "levonline.com": [9277], "xperiencedays.com": [18584], "www.jako-o.de": [8496], "www.forms.portsmouth.gov.uk": [19508], "tchibo.hu": [15985], "api.scratch.mit.edu": [9749], "www.techweekeurope.fr": [11198], "ohm2013.org": [11624], "www.pengpod.com": [12534], "*.thewire.com": [16325, 16326], "sinergie.misy.eu": [4896], "conferencecenter.stanford.edu": [15382], "impsec.org": [8010], "ratgeber-verbraucherzentrale.de": [17617], "www.firelady.com": [5862], "t.onthe.io": [11890], "findip-address.com": [19180], "myaccount.dedicatedgaming.com.au": [4291], "c0-blog.flirble.org": [16191], "www.f5.com.cn": [5545], "auctionthing.net": [1345], "www.playboystore.com": [12800], "www.internetweek.jp": [8287], "cdn.pcpartpicker.com": [12497], "transmode.com": [16678], "download.bethere.co.uk": [16075], "www.taskforce.is": [15970], "www.codingteam.net": [3384], "forums.site24x7.com": [14861], "www.pheedcontent.com": [12617], "gogetssl.com": [6780], "affiliate.mediatemple.net": [10165], "forum.mamp.info": [19379], "c4tw.net": [2505], "unity.ubuntu.com": [17102], "www.redditgifts.com": [13693], "www.bediff.com.br": [1723], "research.stonybrook.edu": [15480], "greystripe.com": [6948], "content.ad": [3610], "*.allpoetry.com": [860], "fsrio.nal.usda.gov": [17209], "community.us.playstation.com": [12795], "www.freescale.com": [6183], "adaptavist.com": [555], "assets.qa.medicare.gov": [19392], "jcore.fr": [8420], "mivamerchant.com": [10463], "toughchoices.co.uk": [19690], "myaccount.nytimes.com": [11000], "link.p0.com": [8110], "fsf.org": [5600], "emergency.wustl.edu": [17993], "www.kaspersky-cyberstat.com": [8805], "api.chain.com": [2980], "www.panic.com": [12361], "abusix.com": [432], "dof.dk": [4633], "plug.dj": [12822], "efile.fara.gov": [19175], "blog.webplatform.org": [18079], "www.yoyogames.com": [19797], "ripe65.ripe.net": [13895], "gettyimages.com.au": [6621], "www.grouplogic.com": [6969], "*.clusters.de": [3325], "helpdesk.crashplan.com": [3762], "blog.creativecommons.org": [3778], "mobigum.com": [10489], "*.mersenne.org": [10286], "toplink.weforum.org": [17902], "rocrsubmissions.ic.nhs.uk": [10913], "full.pr0gramm.com": [19514], "citizensadvice.org.uk": [19062], "cdn.cpnscdn.com": [3712], "twoseasons.co.uk": [16896], "sendcloud.sohu.com": [15103], "hsprod.investis.com": [8320], "share.confex.com": [3567], "mbhd2013.stanford.edu": [15383], "checkip6.dedyn.io": [19107], "rpxnow.com": [13449], "csis.org": [2674], "www.maysoft.com": [10102], "*.tamu.edu": [16154], "uni-hannover.de": [17168], "www.monmouthshire.gov.uk": [10560], "www.loopt.com": [9608], "os-cillation.de": [12115], "www.mailpile.is": [9890], "install.winzip.com": [18333], "s6.uicdn.net": [16958], "piwik.ovpn.se": [11688], "plugins.longtailvideo.com": [9589], "files.cloudprivacy.net": [3279], "www.secureholidays.com": [18490], "www.danielmiessler.com": [4143], "footprintnetwork.org": [6713], "www.frack.nl": [6092], "hits.dealer.com": [4256], "learningzone.northyorks.gov.uk": [19440], "public.gamedev.net": [6418], "degreeaudit.osu.edu": [11760], "support.bistudio.com": [2179], "fiber.google.com": [6834], "static.nortoncdn.com": [11505], "*.harriscomputer.com": [7212], "computec-academy.de": [3532], "advantagemedia.com": [650], "wp-poc.details.com": [4400], "melectronics.ch": [19399], "secure.vexxhost.com": [17657], "webchat.cyberguerrilla.org": [3961], "e0.xhamsterpremiumpass.com": [18516], "www.threema-forum.de": [16398], "expense.console.aliyun.com": [821], "*.jeena.net": [8543], "performancehorizon.com": [12567], "blogs.cornell.edu": [3676], "www.popsugar.com": [12911], "www.stg.xfinity.com": [19783], "www.instapaper.com": [8189], "enom.com": [5281], "minilock.io": [10419], "techpageone.dell.com": [4335], "support.audioboom.com": [18970], "vitalmend.com": [17788], "csc.com": [2666], "enterprise.podomatic.com": [12839], "7headlines.com": [189], "ccem.osu.edu": [11760], "meetic.com": [10216], "headstrong.de": [7256], "zhstatic.zhihu.com": [18856], "kurgan.rt.ru": [13469], "static.ddmcdn.com": [4019], "libreboot.org": [9315], "*.rgj.com": [13767], "virginmedia.com": [17737], "fossbazaar.org": [5588], "forums.somethingawful.com": [15130], "www.ctftime.org": [2684], "www.bigbrotherawards.de": [1852], "paloaltonetworks.com": [12349], "my.st.com": [14186], "beamyourscreen.de": [1730], "usni.org": [17046], "karmankardon.nl": [7208], "www.myeddebt.com": [9814], "qt-project.org": [13314], "0images-production.ideeli.com": [7931], "pt.libreoffice.org": [9311], "www.digitaltrends.com": [4501], "cindercooks.com": [3140], "alt.fedoraproject.org": [5726], "stats.capitalone360.com": [2819], "*.weblate.org": [18127], "oascentral.businessinsider.com": [2454], "www.switchadhub.com": [15701], "*.mozdev.org": [10646], "services-sj.mediusviewer.com": [10199], "www.blocktogether.com": [2088], "www.relate.org.uk": [13751], "karriere.rewag.de": [13416], "www.phishd.com": [12630], "access.redhat.com": [13675], "*.hitbtc.com": [7420], "www.inkscape.org": [8149], "www.frascatitheater.nl": [6108], "thehoxton.com": [16291], "sct.gov.au": [15624], "2014.wooconf.com": [18415], "swww.tokbox.com": [16532], "www.dovetailservices.com": [4719], "pma.ocf.berkeley.edu": [17240], "www.1337x.org": [30], "*.actonsoftware.com": [486], "account.level3.com": [9267], "express.ikoula.com": [7963], "www.broadbandchoices.co.uk": [2352], "www.family.utoronto.ca": [17343], "amahi.org": [906], "www.webjet.co.nz": [18124], "beartracks.berkeley.edu": [17240], "bodyworkmovementtherapies.com": [8642], "commonimages.web.cern.ch": [2575], "www.saas.harvard.edu": [7219], "pistoncloud.com": [12727], "www.sustainability.wustl.edu": [17993], "www2.barnsley.gov.uk": [18983], "www.flowbtc.com": [5944], "telia.se": [16099], "zipler.ru": [18873], "go.jd.com": [8423], "href.li": [7578], "simmtester.com": [14814], "www.las.portsmouth.gov.uk": [19508], "career.balabit.com": [1624], "www.franceserv.fr": [6098], "www.youtube.pe": [18709], "simplystamps.com": [14832], "careers.scs.illinois.edu": [17258], "www.youtube.pl": [18709], "deda.dict.cc": [4455], "userstyles.org": [19721], "blogs.brown.edu": [2367], "images.freescale.com": [6183], "wiki.15m.cc": [32], "on.ft.com": [5826], "www.zyngaplayersupport.com": [18934], "blog.epa.gov": [4938], "docs.syncthing.net": [15732], "www.youtube.pr": [18709], "trendmicro.de": [16715], "support.citrixonline.com": [3179], "cdn.leafletjs.com": [9203], "www.getdigital.fr": [6572], "cimbsecurities.co.th": [2608], "jaspan.com": [8524], "www.niif.hu": [10929], "prudentbear.com": [13184], "www.crikey.com.au": [3796], "buzzeff.com": [2479], "app.compendium.com": [3516], "thecenterforrights.org": [16255], "nedstat.com": [3453], "thread.com": [16389], "norwegianclass101.com": [11509], "www.gkg.net": [6337], "www.des.ikea.com": [7959], "www.ohiostatealumni.org": [11764], "www.politie.nl": [11132], "git.anomos.info": [1033], "www.openinfosecfoundation.org": [12015], "gsi.de": [6389], "autoconfig.cs.berkeley.edu": [17240], "uifw.ekmsecure.com": [5134], "www4.basildon.gov.uk": [18984], "www.cybermill.com": [3973], "bitcoin.de": [1966], "phishtank.com": [12629], "sitemason.com": [14881], "education.mongodb.com": [10553], "unibet.com.au": [17179], "uzman.yandex.com.tr": [18649], "signature.microsoft.com": [10364], "appstream.debian.org": [4275], "dl.heroesofnewerth.com": [14061], "app.musicmetric.com": [10719], "april.org": [1139], "graasmilk.net": [6878], "tbcdn.talentbrew.com": [19658], "us.elsevierhealth.com": [5187], "www.stonewallscotland.org.uk": [19631], "www.cryptoexperts.com": [3858], "www.htbridge.com": [7115], "dutchbulbs.co.uk": [4812], "da.virginmedia.com": [17737], "www.altinget.dk": [891], "*.theserverexpress.com": [14611], "bookings.jucy.co.nz": [8463], "metrics.defenseone.com": [4311], "spocc.walthamforest.gov.uk": [17966], "timetrade.com": [16455], "e-prawnik.pl": [4858], "focus.ti.com": [16152], "windowmaker.org": [18339], "search.debian.org": [4275], "*.syncboss.com": [15726], "jonathan.porta.codes": [12933], "thedailybeast.com": [16265], "1and1.ca": [52], "aokplus-online.de": [317], "adsimilis.com": [631], "forum.ovh.ie": [12173], "arangodb.com": [1151], "*.golang.org": [6792], "www.ivarch.com": [8399], "doubleclick.net": [4716], "www.sockshare.com": [15081], "vle.cam.ac.uk": [17243], "www.anarchistnews.org": [990], "www.soeren-hentzschel.at": [15086], "events.venturebeat.com": [17611], "theses.cz": [16350], "www.aquilaclothing.co.uk": [1146], "wiki.xfce.org": [18512], "connect.linaro.org": [9361], "forum.librivox.org": [9318], "lockerdome.com": [9544], "mailgate.phys.ens.fr": [4930], "www.rent2buy.com.br": [7340], "app.waterfall.com": [19746], "www.ousa.org.uk": [11986], "broker.bitcointoyou.com": [1986], "www.nuimagemedical.com": [11565], "www.vocativ.com": [17811], "myoptplussecure.com": [10812], "desktop.vip.symantec.com": [15715], "www.livelingua.com": [9501], "donate.greenpeace.org": [6937], "support.untangle.com": [17370], "ebar.ohiobar.org": [11763], "www.lunarpages.co.uk": [569], "www.vitalgamers.com": [17789], "platform.html5.org": [7589], "*.solution.weborama.fr": [18138], "online-offshore.lloydstsb.com": [9523], "wiki.automotivelinux.org": [1429], "www-zeuthen.desy.de": [4399], "stda.ilius.net": [10216], "memcenter.maximintegrated.com": [10096], "www.sparkfun.com": [15222], "homer.ornl.gov": [11693], "114.1688.com": [36], "www.cryptonit.net": [3884], "tucowsdomains.com": [16816], "maykop.rt.ru": [13469], "*.zillow.com": [18865], "virk.dk": [17741], "blog.zazzle.com": [18804], "www.google-melange.com": [6842], "slysoft.com": [14975], "e.huffpost.com": [7599], "highfidelity.io": [7402], "js-fr.thinksteroids.com": [9737], "login.dynatrace.com": [4825], "chatter.com": [3034], "sociamonials.com": [15074], "myposte.poste.it": [12965], "msoftdl.360.cn": [106], "uz.taobao.com": [15951], "www.xpda.com": [19787], "idenyt.dk": [7941], "es.witness.org": [18382], "www.netnewscheck.com": [11200], "tcli.ed.gov": [4889], "socrata.com": [15082], "results.gentlelabs.com": [6528], "cdn-img.fimfiction.net": [5816], "www.rohc-lib.org": [13444], "deusm.com": [4405], "www3.formassembly.com": [6040], "atlanticmetro.net": [1317], "secure.eth0.nl": [5376], "www.bro.org": [2346], "www.btczone.com": [1565], "www.freedom-to-connect.net": [6166], "cityofchicago.org": [3184], "www.sourceconference.com": [15177], "umail.iu.edu": [8064], "handy.de": [7193], "forms.sophos.com": [15154], "itdashboard.gov": [7856], "w.mlv-cdn.com": [10768], "www.national-lottery.co.uk": [11071], "js.adlink.net": [604], "*.adtraxx.de": [641], "lists.cam.ac.uk": [17243], "russianamericancompany.com": [14046], "gozluk.hizlisaat.com": [7432], "townnews365.com": [16614], "nccc.nl": [11131], "api.bintray.com": [1897], "ssl6.ovh.net": [12173], "www.reasoncoresecurity.com": [13636], "www.verkkouutiset.fi": [17630], "verisign.it": [17623], "purduealum.org": [13233], "www.iter.org": [7847], "careers.talemetry.com": [15919], "tbp.osu.edu": [11760], "partitopirata.ch": [12284], "westminster.gov.uk": [18220], "docs.nuget.org": [11562], "northlancs.greenparty.org.uk": [6925], "xfce-help.org": [19461, 19462], "www.realtimestats.com": [13626], "l2c.co.kr": [9062], "*.subscribenww.com": [11267], "hu.support.tomtom.com": [16540], "www.balkongshoppen.se": [1629], "petfinder.com": [12596], "www.cinemovies.fr": [3141], "*.japantimes.co.jp": [16197], "join.tv": [8615], "bugs.dojotoolkit.org": [4637], "system.vovici.com": [17849], "crypteron.com": [3850], "www.pointshound.com": [12853], "wiki.inka.f4.htw-berlin.de": [7112], "cache.gawker.com": [6476], "torrentfreak.com": [16580], "et05.xhcdn.com": [18514], "tech-recipes.com": [16008], "italian-country-cottages.co.uk": [18490], "thegoodfight.fm": [16282], "beacon.fastly.com": [5687], "apphub.io": [1108], "www.infopankki.fi": [8115], "pentesterlab.com": [19485], "pusher.com": [13252], "familie.nordost.aok.de": [317], "cert.gov.uk": [2578], "apps.stanford.edu": [15383], "cdn.lsistatic.com": [9263], "*.freshmilk.de": [6204], "mcwhirter.com.au": [10123], "*.getgo.de": [6613], "silvertunnel.org": [14803], "www.e17-stuff.org": [19461], "www.covacations.com": [3619], "globaloneteam.com": [6738], "www.marineshop.net": [9999], "fav.m.taobao.com": [15952], "smashfly.com": [15002], "pln.bitcurex.com": [1987], "www.intelrad.com": [8221], "invenio-software.org": [8312], "www.cafemakers.com": [2718], "2012.devcup.evernote.com": [5449], "ctrack.metrics34.com": [10318], "www.sickbits.net": [14759], "www.cpunks.org": [3747], "my.xyratex.com": [18609], "*.wallst.com": [10024], "metapress.org": [10300], "en.flossmanuals.net": [5577], "sopastrike.com": [5783], "www.map.cam.ac.uk": [17243], "ftp.cryptopp.com": [3888], "customer.stg.xfinity.com": [19784], "www.pageloc.com": [18126], "ipxe.org": [7800], "colwizlive.andover.edu": [12623], "webmail.uni-potsdam.de": [17333], "banners.itunes.apple.com": [1120], "avicoder.me": [18973], "www.summitroute.com": [15591], "r9.mzstatic.com": [1119], "alumni.uvm.edu": [17075], "ripe62.ripe.net": [13895], "v.gd": [19726], "wiki.tocco.ch": [16524], "cdn.media.zylom.com": [18929], "home.truelife.com": [16769], "o.qcloud.com": [13301], "*.fcla.edu": [5941], "*.dreamstime.com": [4755], "www.corelio.be": [3672], "common-lisp.net": [3484], "willowgarage.com": [18318], "finmozg.ru": [5848], "apps.fedoraproject.org": [5726], "lists.fedorahosted.org": [5727], "1shoppingcart.com": [46], "noxa.de": [19444], "www.vpncompare.co.uk": [17501], "autorank.jd.com": [8423], "www.capitaloneconnect.*": [2818], "jeth.tk": [3533], "hk.taobao.com": [15952], "www.cl.cam.ac.uk": [17243], "media-cdn.ubuntu-de.org": [17093], "elmbridge.gov.uk": [5174], "ideas.foreignpolicy.com": [6024], "*.scoop.it": [14389], "lightthenight.org": [9344], "apply.commonapp.org": [3483], "www.dfn-cert.de": [4030], "m6r.fr": [9699], "sf2010.drupal.org": [4780], "golinks.magento.com": [9850], "communities.opentext.com": [11984], "www.expeditedssl.com": [5505], "devwiki.pfsense.org": [12607], "locate.apple.com": [1120], "www.ssl2buy.com": [14177], "expresslane.apple.com": [1120], "savvysme.com.au": [14318], "front.facetz.net": [5625], "www.teach-ats.ed.gov": [4889], "pvac-sites.leeds.ac.uk": [17318], "www.techhouse.org": [16012], "freedom.press": [6168], "1ty.me": [66], "account.app.net": [1102], "help.here.com": [7326], "img.store.sogou.com": [19606], "vgc.no": [17484], "apps.openobjects.com": [12022], "speedtree.com": [15254], "track.tiara.daum.net": [4221], "www.myhappyoffice.com": [10833], "www.home.ch": [7464], "iflygo.com": [19223], "securelp.longtailvideo.com": [9589], "cvs.linux-mips.org": [9413], "compass-ssl.surface.com": [15647], "stpeter.im": [15503], "secure.wellcome.ac.uk": [19752], "xing.com": [18574], "www.quikpayasp.com": [13363], "tricolumbia.org": [16732], "*.zipcloud.com": [8689], "metrotransit.org": [10325], "win-rar.com": [18328], "sw.vutbr.cz": [17522], "cart.jd.com": [8423], "b2bshop.cinestar.de": [3143], "www.carezone.cz": [2849], "sankaty.com": [14286], "pantarhei.sk": [12370], "www.pewdiepie.net": [12605], "www.openbsdstore.com": [11921], "www.menulog.com.au": [19395], "otpdirekt.sk": [12133], "b.grvcdn.com": [6989], "webstyle.ch": [18159], "blackironbeast.com": [2046], "wangyin.com": [17972], "weike.taobao.com": [15952], "www.path-follower.com": [12450], "*.locaweb.com.br": [9542], "blog.coresecurity.com": [3668], "leader-manager.com": [9198], "forums.aws.amazon.com": [915], "www.316space.com": [2132], "blog.assembla.com": [1277], "hub.turnkeylinux.org": [16841], "minfin.nl": [11132], "lists.tizen.org": [16506], "webfestglobal.com": [18116], "pmf.gov": [19501], "refog.com": [13723], "mobile.willhaben.at": [18313], "homepages-fb.thm.de": [15811], "*.richrelevance.com": [13870], "*.gametreelinux.com": [6428], "www.womenonwaves.org": [18408], "www.advantageseoservices.com": [651], "eeqj.com": [4904], "www.ecigpros.com": [4884], "www.suse-art.org": [19461], "partnernet-internal.symantec.com": [15715], "sitefinitysts.psc.gov": [19525], "qunitjs.com": [13292], "i2.technet.microsoft.com": [10364], "slm-assets3.secondlife.com": [14462], "static-cdn.ashleymadison.com": [1255], "debg.dict.cc": [4455], "med.stanford.edu": [15383], "www.verifiedvotingfoundation.org": [17620], "www.domaincamp.de": [4651], "lakebtc.com": [9133], "pcisecuritystandards.org": [12224], "ad.71i.de": [14636], "www.custodianvaults.com.au": [3937], "sib.swedbank.nl": [15682], "insidescience.org": [8167], "*.eimg.com.tw": [5125], "blog.openstreetmap.org": [11979], "translate.centreon.com": [2957], "*.formspring.me": [6045], "www.bizchannel.cimb.com.sg": [2607], "digicert.com": [4473], "www.dailyedge.ie": [19099], "www.kodi.tv": [8952], "wcl.greenparty.org.uk": [6925], "bugzilla.suse.com": [14199], "groupwise.boell.de": [2176], "s3.lbrcdn.net": [9177], "www.cccure.com": [2540], "www.swartzfiles.com": [15679], "freecode.club": [19194], "mzstatic.com": [10852], "www.transitionnetwork.org": [16671], "wt.proquest.com": [13112], "www.rother.gov.uk": [13978], "www.bequiet.com": [1725], "ask.barclayscorporate.com": [1663], "irc.lc": [19305], "forms.westoxon.gov.uk": [18221], "www.compendium.com": [3516], "*.aktion-deutschland-hilft.de": [770], "live.stanford.edu": [15383], "*.irishbroadband.ie": [8357], "movie2k.nu": [10635], "*.xfce-look.org": [19462], "www.globusreisen.ch": [19262], "fteorica.unizar.es": [17356], "f.newsletter.sky.com": [14924], "mailman.stanford.edu": [15383], "static.infowars.com": [8129], "*.sarava.org": [14299], "media.business.shaw.ca": [14687], "ethicalhacker.net": [5382], "www.hirlevel.aldi.hu": [299], "admin.names.co.uk": [11026], "down.360safe.com": [108], "wx.qq.com": [13285], "*.wildapricot.org": [18304], "securitymetrics.com": [14523], "jobs.lshtm.ac.uk": [9576], "https-everywhere.badssl.com": [1611], "www.tawk.to": [15979], "i-koruna.com": [7751], "www.doublefine.com": [4710], "cse.osu.edu": [11760], "www.the-dma.org": [16185], "bandaancha.eu": [18980], "bank.barclays.co.uk": [1662], "simage2.pubmatic.com": [13194], "sendgrid.com": [14577], "appsecute.com": [1134], "surfermag.com": [15650], "mutterschaftsgeld.de": [10730], "*.hwbot.org": [7638], "www.impo.ch": [3645], "zaif.jp": [18780], "www.mobify.me": [10492], "mydiscussion.gofrugal.com": [6778], "www.netnow.co": [11201, 11202], "*.onegreenplanet.org": [11847], "betterplace.org": [1828], "www.savannah.vc": [14309], "www.entropywave.com": [5301], "nvxie.taobao.com": [15952], "onegreenplanet.org": [11847], "service.qq.com": [13284], "info.arte.tv": [18966], "prv-web.eng.buffalo.edu": [17297], "analystone.com": [987], "acc-stats.web.cern.ch": [2575], "hostedservices.panopto.com": [12364], "*.sap.com": [14073], "thepirategoogle.com": [16228], "st1.openlistings.co": [12019], "europa.neos.eu": [10899], "shield.sitelock.com": [14867], "www.tibetaction.net": [16410], "windowsupdate.microsoft.com": [10363], "b.ngx.cc": [11376], "ruby-forum.com": [14016], "*.etrade.com": [5391], "www.panovski.me": [12368], "m.hilfe-center.1und1.de": [68], "registry.neustar.biz": [11280], "www.skortekaas.nl": [14130], "www.papermart.com": [12380], "www.pentesterlab.com": [19485], "admin-vh.es.clara.net": [3211], "api.mediatemple.net": [10165], "www.informer.com": [8126], "www.consumer.gov": [3598], "www.takuu-saatio.fi": [15916], "rec-log.jp": [13640], "www.heavy.com": [7280], "cdn.playwire.com": [12810], "*.dante.net": [4005], "www2.firsttechfed.com": [5871], "publicaccess.aylesburyvaledc.gov.uk": [18976], "www.eticketing.co.uk": [16421], "lists.spdx.org": [14155], "glassdoor.com.au": [6701], "xjobs.brassring.com": [19017], "www.leroyfcpress.com": [9257], "marcrogers.org": [9981], "webmail.stanford.edu": [15383], "goalworthy.com": [6800], "www.johnshopkins.edu": [8611], "*.netfirms.com": [11226], "dz2cdn3.dzone.com": [4095], "foldingforum.org": [5984], "servicedesk.idoxgroup.com": [19281], "tigerdirect.com": [16440], "squarespace.com": [15333], "dev.tiki.org": [16444], "vdopia.com": [17582], "libproxy.aalto.fi": [390], "www.qconsf.com": [13281], "usca.logmein.com": [9549], "wustlconnections.com": [17994], "team.enaza.ru": [5230], "www.youtube.com.my": [18709], "malwaretracker.com": [9928], "admin.1and1.ca": [52], "students.berkeley.edu": [17240], "www.estavisas.org": [4967], "stats.sandstorm-media.de": [14281], "looloo.com": [9602], "www.barnesjewish.org": [1677], "www.speedworldgrafix.com": [15255], "cybersecuritychallenge.org.uk": [3955], "store.encase.com": [7006], "www.facultydiversity.org": [5628], "virusbulletin.com": [17758], "www.bcaa.com": [1504], "postoffice.co.uk": [12954], "compteperso.leboncoin.fr": [19351], "www.gemnasium.com": [6519], "*.njedge.net": [10933], "www.morrisons-corporate.com": [10600], "it.lastminute.com": [9165], "icp.uni-stuttgart.de": [17281], "contentful.com": [3614], "store.corsair.com": [3687], "fabianfranke.de": [5616], "www.faancollegenetwork.org": [5549], "www.xxxbunker.com": [18607], "shortlist.com": [14734], "www.donottrack-doc.com": [4611], "redmine.ruby-lang.org": [14018], "www.fbme.htwk-leipzig.de": [7114], "www.simflight.*": [14806], "www.nic.ar": [10917], "tuva.rt.ru": [13469], "bransonzipline.com": [2288], "abo.heise.de": [7288], "www.bitquick.me": [1942], "shadowproof.com": [14655], "www.genesis-technologies.com": [6526], "pub.dreamboxcart.com": [4751], "www.nic.ac": [11380], "howtoforge.de": [7575], "c.velaro.com": [17595], "www.cardsagainsthumanity.com": [2836], "git.linuxtv.org": [9416], "blog.anthonycameron.com": [1064], "15mpedia.org": [33], "www.bitterwallet.com": [7548], "www.coccoc.com": [3342], "www.fefe.de": [5742], "www.citrusbyte.com": [3181], "rabbitmq.com": [13487], "static.seetickets.com": [14547], "www.eforsa.pl": [4913], "www.dennikn.sk": [4365], "ics.ws.hmrc.gov.uk": [7084], "segs.btrll.com": [2322], "www.buddyauth.com": [2230], "www.sidn.nl": [14120], "applications.telford.gov.uk": [19669], "changingclimate.osu.edu": [11760], "rohieb.name": [13950], "www.legiscan.com": [9230], "www.craftysyntax.com": [3755], "webmail4.names.co.uk": [11026], "crossdresser-forum.de": [3816], "www.spyshelter.com": [15325], "websitealive.com": [18149], "www.proxery.com": [13177], "www.oswatch.net": [11679], "courthousenews.com": [3721], "testcloud.de": [16145], "cloudfront.bitmovin.com": [2010], "account.blesta.com": [2070], "people.xiph.org": [18575], "visit.pixcept.de": [12735], "www.provencredible.com": [13171], "effi.org": [5110], "lightning.bitflyer.jp": [1931], "nodes.dk": [11455], "sas.com": [14074], "secure.elcomsoft.com": [5145], "www.biostatistics.wustl.edu": [17993], "loveplanet.ru": [9627], "planet.diasporafoundation.org": [4451], "acluva.org": [254], "*.unique-vintage.com": [17195], "cwspod.com": [2692], "reg.cologne-cfd.de": [3437], "*.hertz-carsales.com": [7372], "jamendo.com": [8502], "*.lithive.com": [9454], "salzburg.neos.eu": [10899], "www.pubpeer.com": [13198], "aphyr.com": [1090], "ssl.submissiontechnology.co.uk": [15563], "visionartforum.com": [17774], "www.canon.ee": [2809], "malaysia.norton.com": [11505], "dn.com": [4053], "www.wilmu.edu": [18320], "www.hitleap.com": [7421], "www.bverfg.de": [2435], "www.canon.es": [2809], "bracknell.firmstep.com": [19183], "touch.news.mail.ru": [9874], "a2.mzstatic.com": [10852], "s3.india.com": [8060], "itbit.com": [8384], "hkn.eecs.berkeley.edu": [17240], "*.bepress.com": [1783], "openuserjs.org": [11987], "www.assoc-amazon.ca": [1285], "eide-itc.no": [5123], "internetvotes.org": [2947], "www.youtube.ee": [18709], "www.freegeoip.net": [6175], "store.naturalskinshop.com": [11103], "rediris.es": [13661], "youtube.co.hu": [18709], "realtime.co": [13632], "falcon-uav.com": [5640], "8tracks.com": [205], "dev.bukkit.org": [19024], "sunxi.org": [9401], "en.jd.com": [8422], "wikispaces.com": [16111], "micampuscompact.org": [10344], "northumberland.objective.co.uk": [19454], "login.oca.ucsc.edu": [17305], "shop.performancealley.com": [12569], "fightforthefuture.org": [5784], "advertising.washingtonpost.com": [17990], "*.box.com": [2253], "levesoninquiry.org.uk": [9270], "scripts.liftshare.com": [9336], "sanoma.com": [14287], "*.archbang.org": [1158], "www.prisonphonejustice.org": [13077], "images1.variety.com": [17565], "directory.live.com": [9483], "fenland.gov.uk": [5750], "portal.skolaonline.cz": [19598], "swan.sk": [15676], "helpdesk.uic.edu": [17231], "parking.bournemouth.gov.uk": [2251], "posthaven.com": [12976], "coldhak.ca": [3415], "*.ezoshosting.com": [5003], "intellipoker.bg": [19298], "www.isst.fraunhofer.de": [6112], "de-sk.dict.cc": [4455], "i3.connect.microsoft.com": [10364], "data-secure.solvemedia.com": [15126], "*.www.fujitsu-webmart.com": [6245], "mcmaster.ca": [10122], "www.shippingwatch.dk": [14706], "radiox.ch": [13516], "digitaltrends.com": [4501], "equip.org": [5335], "spanish.101domain.com": [11, 12], "*.manitu.de": [9957], "*.voxcdn.com": [17853], "www.httpswatch.com": [7108], "*.archlinux.org": [1157], "*.llnl.gov": [9181], "www.39dollarglasses.com": [121], "*.ds01.swisscom.com": [15698], "tv.sport1.de": [15289], "*.itespresso.fr": [11198], "spacex.com": [15209], "mathias-kettner.de": [10068], "*.data.gov.au": [4181], "download.jabberd.org": [8479], "www.truthmarket.com": [16801], "bivol.bg": [2028], "*.discover.com": [4547], "www1.gotomeeting.com": [6787], "*.powells.com": [12988], "wildlifeofyourbody.org": [1768], "www.sysmocom.de": [15756], "sa.www4.irs.gov": [7819], "secure.ikea.com": [7959], "www.betterscience.org": [18993], "sns.ias.edu": [7669], "beta.n-somerset.gov.uk": [10857], "www.sec-consult.com": [14097], "rivalseek.com": [13905], "discuss.dev.twitch.tv": [16888], "www.afcd.gov.hk": [7074], "lh4.google.co.*": [6837], "unbridled.info": [17155], "merchants.ozon.ru": [12199], "www.icts.kuleuven.be": [8816], "*.tlsfun.de": [16512], "secured.leeds.gov.uk": [19353], "irtf.org": [7820], "signup.bigv.io": [1855], "answers.openmrs.org": [11953], "christ-swiss.ch": [3645], "helloworld.letsencrypt.org": [9264], "www.aim.com": [290], "www.levels.io": [9268], "fcsh.unizar.es": [17356], "advq.yandex.com.tr": [18649], "www.sanalmarket.com.tr": [14275], "consilium.europa.eu": [5421], "www.ovh.es": [12173], "nla.gov.au": [11070], "paste.sh": [12437], "badges.gitter.im": [6684], "www.gratipay.com": [6898], "eff.org": [4908], "www.systemli.org": [15765], "fixmystreet.com": [5895], "fiuza.me": [5891], "*.mochimedia.com": [10509], "*.expedia.co.uk": [5503], "a.tbcdn.cn": [15982], "quotes.nyi.net": [10993], "web4.login.cornell.edu": [3676], "*.highqsolutions.com": [7400], "0.vgc.no": [17484], "secure.voyage-prive.co.uk": [17856], "*.humpi.at": [7616], "studentwellness.stanford.edu": [15383], "www-cdn.sitescout.com": [14871], "www.snagajob.com": [15024], "chroniclesofgeorge.com": [16259], "www.nabtrade.com.au": [10865], "seower.com": [14590], "www-test.sec.gov": [17023], "signups.braintreepayments.com": [2274], "www.journal-news.net": [8641], "www.bitcoinsil.co.il": [1985], "eprofile.osu.edu": [11760], "beta.fastly.com": [5687], "wallet.baidu.com": [1619], "mylivechat.com": [10810], "x.ntldstats.com": [10962], "search.norton.com": [11505], "dating.zoosk.com": [18906], "pcforalla.idg.se": [7705], "mobilepki.org": [10503], "www.franklinveaux.com": [6103], "m.rts.ch": [19621], "parking.kirklees.gov.uk": [8916], "c.gcaptain.com": [6311], "www.thesatanictemple.org": [16308], "lung.ca": [2794], "features.hrw.org": [7612], "ftp.leboncoin.fr": [19351], "www.mikewest.org": [19400], "secure.yoursole.com": [18731], "globalsources.com": [6733], "static.horizon.tv": [19716], "www.texthelp.com": [16160], "delivery.pbgrd.com": [12493], "www.annevankesteren.nl": [1029], "hits.truehits.in.th": [16774], "www.fylde.gov.uk": [6291], "m.rasp.yandex.com.tr": [18649], "favrskov.dk": [5692], "telusinternational.com": [16103], "krasnoyarsk.rt.ru": [13469], "poczta.agmk.net": [729], "m.hertsdirect.org": [7335], "jabber.dk": [8474], "aboutads.info": [423], "www.milton-keynes.gov.uk": [10401], "xcat.nl": [18503], "*.zorpia.com": [18909], "olark.com": [11779], "www.tersesystems.com": [16132], "cce.mitre.org": [10459], "support.techxpress.net": [16022], "www.t-mobile.co.uk": [15769], "*.khn.nl": [8722], "www.mygnu.de": [10762], "vpnbook.com": [17862], "lincs.firmstep.com": [19183], "scadacs.org": [14086], "si1.rgstatic.net": [13422], "newclimateforpeace.org": [11302], "forms.lincoln.gov.uk": [9362], "www.si.se": [14118], "webmail.hosting.earthlink.net": [5007], "sockshare.com": [15081], "store.isc.org": [7821], "forge.ipsl.jussieu.fr": [8688], "www.csie.org": [2671], "www.honeynet.org.mx": [19256], "wiki.namecoin.info": [11024], "www.engelschall.com": [5263], "dangpu.com": [4139], "www.embed.ly": [5197], "eu-securem.ikea.com": [7959], "f5rsrc.wustl.edu": [17993], "www.tandridge.gov.uk": [15943], "acesso.uol.com.br": [16998], "secure.gaug.es": [6996], "affiliate.finanzcheck.de": [19179], "hospital.uillinois.edu": [16960], "swww35.glam.com": [6697], "bugzilla.lysator.liu.se": [9084], "www.dash-player.com": [4161], "www.amnesty-in-bewegung.de": [957], "static.springer.com": [15309], "www.velox-project.eu": [17600], "inf.tu-dresden.de": [15871], "ua.godaddy.com": [6773], "app.farmlogs.com": [5662], "www.amazon.com": [913], "uspsoig.gov": [17027], "web.ondarossa.info": [11825], "www.gearworkstire.com": [6489], "ensigniamail.com": [5287], "www.comodo.net": [3504], "static4.readyflowers.com": [13620], "*.startupsort.com": [15413], "www.tucowsinc.com": [16816], "atheists.org": [1313], "www-public.slac.stanford.edu": [15383], "images-cdn.lowyat.net": [9637], "www.slipplate.com": [14133], "www.reading.ac.uk": [17335], "downthemall.net": [4722], "login.oracle.com": [12082], "cdn.dataopedia.com": [4208], "www.vanlanschot.com": [17551], "www.cutedigi.com": [3944], "www.cdt.org": [2565], "trustsealinfo.websecurity.norton.com": [11505], "hie-isolde.web.cern.ch": [2575], "addons.palemoon.org": [12341], "www.gametracker.com": [6443], "www.wholefoodsmarket.com": [18264], "kochava.com": [8950], "crux.nu": [3836], "www.donate.acs.org": [929], "flightopportunities.nasa.gov": [10869], "kimpluscraig.com": [8891], "sempervideo.de": [14573], "trac.openstreetmap.org": [11979], "blog.fastmail.com": [5688], "gmail.ncsu.edu": [11492], "*.bluecava.com": [2129], "sv.cloudflare.com": [3285], "sieciovo.pl": [14768], "b3.mookie1.com": [10576], "glasscraftexpo.com": [6700], "planete.insa-lyon.fr": [7771], "portlandoregon.gov": [3195], "www.wrongplanet.net": [18475], "selfserve.n-kesteven.gov.uk": [10856], "www.qconnewyork.com": [13280], "identity.uchicago.edu": [17246], "cloudconnectors.eloqua.com": [5179], "www.uniteddomains.com": [17213], "www.radsec.org": [13508], "beginlinux.com": [1753], "www.hps.org": [19263], "dps.uiuc.edu": [16956], "www.mxcursos.com": [9813], "hostdeclaration.ru": [4287], "cdn.teads.tv": [15995], "cloud.sagemath.org": [14239], "www.library.wustl.edu": [17993], "forum.ivorde.com": [8402], "io6.cloudup.com": [3316], "usainteanne.ca": [19720], "commonplacebooks.com": [3488], "*.wsj.com": [11321], "dk.godaddy.com": [6773], "www.ethack.org": [5377], "elderscrollsonline.com": [5146], "www.thesafety.us": [16236], "sycom.co.jp": [15710], "www.fokus.no": [5981], "www.factoryhomesale.com": [5627], "loadaverage.org": [9530], "help.scribblelive.com": [14413], "img.thalia.ch": [16171], "onlinebackup.elgiganten.dk": [5162], "assets.sky.com": [14924], "www.edlund.dk": [5088], "akismet.com": [766], "stats.videolan.org": [17688], "commencement.berkeley.edu": [17240], "rejseplanen.dk": [13749], "*.htrnews.com": [7322], "www.teamtailor.com": [16003], "www.trycelery.com": [16804], "*.dirxion.com": [4537], "primorye.rt.ru": [13469], "*.openttd.org": [11982], "www.lab-nation.com": [9121], "static.zoomerang.com": [18903], "i.holder.com.ua": [7448], "biblioteca.unizar.es": [17356], "encs.dict.cc": [4455], "numa.paris": [11575], "trachea.stanford.edu": [15383], "www.tmcnet.com": [16515], "www.rhinosupport.com": [13862], "richmondshire.firmstep.com": [19182], "itservices.webtrends.com": [18171], "milepoint.com": [10393], "wordnik.com": [18434], "laughingsquid.us": [9166], "cdn.mommyish.com": [859], "www.capnproto.org": [2822], "*.infolinks.com": [8111], "*.cdn2.cloudfiles.rackspacecloud.com": [13507], "kuleuven.be": [8816], "erhvervsstyrelsen.dk": [5341], "bulletinmessenger.net": [2418], "www.wulife.wustl.edu": [17993], "riscon.cz": [13898], "asktom.oracle.com": [12082], "www.librivox.org": [9318], "*.marvell.com": [10041], "reuffel.de": [19550], "my2.begun.ru": [1755], "graph.facebook.com": [5620], "www.bestmastersdegrees.com": [1803], "store.space.com": [15204], "gavinnewsom.com": [6472], "www.revresponse.com": [13839], "wiki.umiacs.umd.edu": [17263], "blog.golflink.com": [4343], "krlmedia.nl": [8748], "www.scmagazineus.com": [14325], "www.daniweb.com": [4141], "www.peopleschoicecu.com.au": [12552], "irwinlaw.com": [8360], "rabbitporno.com": [13488], "egopay.com": [5116], "www.spdx.org": [14155], "mycomputer.com": [10754], "creative.metalyzer.com": [10308], "blackpearlpdm.com": [2039], "installgentoo.net": [18699], "daniweb.com": [4141], "www.servedbyadbutler.com": [518], "linnrecords.com": [9385], "literaryreview.co.uk": [19368], "*.iii.com": [8155], "rl.mail.qq.com": [13285], "www.theguardian.com": [16288], "www.naturalskinshop.com": [11103], "www.votervoice.net": [17847], "discover.aol.com": [321], "www.supplychain.nhs.uk": [10913], "janestreet.com": [8511], "www.ymlp.com": [18722], "www.theconversation.edu.au": [16262], "www.mywell-being.com": [10799], "advertising.yandex.com": [18651], "c3noc.net": [2502], "www.autotools.io": [1433], "w.soundcloud.com": [15161], "www.pin.ed.gov": [4889], "discoversignage.com": [4553], "*.dab-bank.de": [4001], "h.fastcompany.net": [5681], "itradecimb.co.id": [2605], "hashnest.com": [7228], "dpmbappsqa.lowes.com": [9636], "www.weswap.com": [18024], "piwik.raceforward.org": [13491], "agent.directadvert.ru": [4524], "*.artday.co.kr": [1226], "discovery.org": [4555], "alteeve.ca": [874], "smartlivingnetwork.com": [14995], "www.marketingoops.com": [10014], "kiks.yandex.by": [18648], "blogs.zoho.jp": [18883], "www.umdrightnow.umd.edu": [17263], "uplay.ubi.com": [17390], "www.fortune.com": [6061], "retrofestive.ca": [13827], "www.partners.servicenow.com": [14622], "talk.openmrs.org": [11953], "google.com": [6840, 6846, 6848], "www.thebluealliance.com": [16333], "www.kupschke.net": [19344], "www.coub.com": [3697], "portland.freedesktop.org": [6126], "golfdigest.com": [6823], "admin.open.kent.gov.uk": [8851], "producthelp.webtrends.com": [18171], "img.x-cart.com": [18494], "irecruitment.oracle.com": [12082], "nrao.edu": [10955], "vimeopro.com": [17718], "www.teo.lt": [16118], "he.com": [7629], "www.ssls.com": [14181], "vpn.usainteanne.ca": [19720], "cac.cas.usuhs.edu": [17052], "www.youtube.mx": [18709], "scepsis.ru": [14344], "ppmobileimages.lowes.com": [9636], "travelhouse.ch": [19262], "businesscare.tdc.dk": [15796], "www.leap.se": [9067], "site.yandex.com": [18651], "www.onegooddriver.com": [11826], "acs.org": [929], "aclutx.org": [253], "www.cpfp.cancer.gov": [2805], "vippy.co": [17730], "gumgum.com": [7019], "*.turbotax.com": [8304], "titanic-magazin.de": [16502], "123ehost.com": [26], "tunnelbear.com": [16833], "cambodiadaily.com": [2766], "secure.rosehosting.com": [13968], "forums.oculusvr.com": [11722], "www.kraken.com": [9004], "landalskilife.com": [18489], "mysports.tomtom.com": [16540], "static.shared.sx": [14672], "www.sankatyadvisors.com": [14286], "fcs.dell.com": [4335], "www.fasttrack.va.gov": [17019], "www.adsecurity.org": [274], "premium.members.webs.com": [18144], "planet.mageia.org": [9847], "tracker.adaptavist.com": [555], "cassinoestrela.com": [2888], "payeer.com": [12474], "*.zassets.com": [18792], "delivery.h.switchadhub.com": [15701], "www.powerbuy.co.th": [12998], "orange.sk": [12087], "extranet.wienerstadtwerke.at": [18284], "circanews.com": [3154], "*.northwestern.edu": [11504], "mirantis.com": [10442], "domeny.cz": [18938], "idgmedia.idg.se": [7705], "amigo.mail.ru": [9874], "www.foreignpolicy.com": [6024], "pulllist.comixology.com": [3465], "www.parallax.com": [12390], "www.dpfoc.com": [4733], "news.tid.al": [16429], "www.correctiv.org": [3685], "jobs2web.com": [8598], "www.avira.com": [1449], "janovas.unizar.es": [17356], "www.isocpp.org": [7831], "t.teads.tv": [15995], "patreon.thecthulhu.com": [16334], "images.domainwho.is": [4661], "admin.sitelock.com": [14867], "*.gotpantheon.com": [12373], "authorea.com": [1409], "opaskartta.turku.fi": [19706], "feedburner.google.com": [6834], "scg.ulaval.ca": [17229], "compass.xbox.com": [18550], "privacysolutions.no": [13089], "export.openstreetmap.fr": [12045], "reddit.com": [13690], "tonytan.cn": [16548], "pages.ebay.com": [4873], "si1.twimg.com": [16877], "www.bnc4free.com": [2164], "kibble.centrify.com": [19048], "nibcdirect.nl": [10916], "www.wyenet.co.uk": [18487], "static.smallworldlabs.com": [14979], "homebuzz.co.uk": [7475], "21.co": [71], "ashdown.recurly.com": [13652], "pbsz.ebank.cmbchina.com": [2626], "sso.acs.org": [929], "uktools.aol.co.uk": [320], "teenrevenue.com": [16059], "hungryforchange.tv": [7620], "lg.com": [9077], "buyiphone4.apple.com": [1120], "www.flashback.org": [5905], "gewinnspiel.congstar.de": [3577], "cdn.plug.dj": [12822], "earlyyears.kirklees.gov.uk": [8916], "www.xssposed.org": [18536], "static.xperiencedays.com": [18584], "www.shibboleth.net": [14702], "davidgold.co.uk": [4226], "vinoteka.hofer.si": [299], "*.anonymizer.com": [1048], "jqueryui.com": [8454], "geeksquad.co.uk": [6498], "var.thejh.net": [8512], "*.dolimg.com": [4641], "365ticketscentral.com": [115], "pace2race.com": [12310], "javascriptmvc.com": [8528], "multiweb.junge-piraten.de": [8679], "www.canlialem.com": [2807], "www.epixmedia.co.uk": [5323], "devnet.kentico.com": [8853], "s7.static.hootsuite.com": [7488], "art.bathnes.gov.uk": [1689], "my.freezone.co.uk": [6187], "www.syscan.org": [15748], "*.details.com": [4401], "media.nips.cc": [10930], "www.shareholder.ru": [14678], "www.deepdyve.com": [4296], "www.spartafx.com": [15225], "form.cz.mbank.eu": [9722], "www.f.switchadhub.com": [15701], "mysky.sky.com": [14924], "blog.gemini.com": [6515], "calendars.mit.edu": [9749], "northwest.greenparty.org.uk": [6925], "iwoulddo.it": [7879], "eir.cisco.com": [3162], "*.s2member.com": [14064], "www.familie.nordost.aok.de": [317], "www.newamerica.org": [11301], "audiko.net": [1357], "wiki.sabayon.org": [14214], "bezosexpeditions.com": [1834], "3d88duefqgf2d7l2p18hja4194m.wpengine.netdna-cdn.com": [9509], "woobox.com": [18417], "support.linaro.org": [9361], "shop.flixbus.de": [5931], "www.ictu.nl": [7693], "www.tfaforms.com": [16163], "*.algolia.com": [803], "www.ssdp.org": [15538], "myaccount.sky.com": [14924], "*.attracta.com": [1341], "jsuol.com.br": [8657], "www.more-onion.com": [10585], "shop.flixbus.dk": [5931], "*.psnt.ebay.eu": [4874], "epochstats.com": [5326], "lotto.web.de": [18050], "lizard-cloud.htwk-leipzig.de": [7114], "rising.jhu.edu": [16296], "selfhelp.carphonewarehouse.com": [2861], "security-database.com": [14519], "www.womenshealth.de": [18411], "eresources.jjc.edu": [8440], "tech.appear.in": [1114], "www.microchip.com": [10353], "www.kuleuven.ezproxy.kuleuven.be": [8816], "wiki.c-base.org": [2492], "process-one.net": [13119], "livingsocial.co.uk": [9516], "fahrkarten.bahn.de": [1617], "docs.convox.com": [3632], "sankatyadvisors.com": [14286], "videogold.de": [17686], "idp.touchstonenetwork.net": [16611], "www.nyc.gov": [11292], "www.songlist.hclippr.com": [7051], "www.mypoints.com": [10775], "vcd.org": [17474], "splone.com": [15284], "data.aggregateknowledge.com": [726], "*.codefuel.com": [3368], "lispac.lsbu.ac.uk": [9098], "www.secretmaryo.org": [14467], "cdn.embedly.com": [5200], "registration.fsfe.org": [5601], "lpc.web.cern.ch": [2575], "www.ilogo.in": [7755], "*.gannettlocal.com": [6454], "www.mammut.ch": [9933], "www.springrts.com": [15306], "www.youtube.mk": [18709], "secure.maxcdn.com": [10091], "www.treasury.gov": [16704], "profiles.nlm.nih.gov": [11052], "nrc.nl": [10956], "www.trellian.com": [16709], "rxs2.answcdn.com": [1059], "blog.nic.cz": [11379], "c1.websitealive.com": [18149], "mediamarkt.es": [19774], "transversal.com": [16684], "www.arqbackup.com": [1210], "www.revolet.com": [13848], "goodsie.com": [6831], "portal.isoc.org": [7829], "www.delawaretoday.com": [4324], "www.tnsglobal.com": [15841], "blogs.secondlife.com": [14462], "www.newyorkcasual.com": [11350], "www.ppcw.osu.edu": [11675], "www.thegef.org": [8259], "dcboee.org": [4013], "www.raptureready.com": [13563], "sell.stubhub.de": [15534], "*.divide.com": [4583], "www.freestyle.vc": [6185], "desec.io": [19107], "www.aoptix.com": [326], "local.brent.gov.uk": [2304], "www.cosmo.org": [3689], "happyhardcore.com": [7198], "www.beryl-themes.org": [19461], "static.quto.ru": [13381], "h2.ft.com": [5826], "www.lainchan.org": [9132], "www.gamigo.com": [6445], "*.sapato.ru": [14295], "dl.mail.com": [9872], "*.imgix.net": [7998], "packtpub.com": [12320], "www.wellbid.com": [18192], "gfi.nl": [6320], "e-klase.lv": [4853], "www.navercorp.com": [11113], "www.services-prefecture.com": [14626], "public.webfoundation.org": [18102], "www.nooelec.com": [11470], "gic2.mycdn.me": [10824], "www.funio.com": [6265], "apps.sourceforge.net": [15174], "www.dxw.com": [4817], "liuliang.jd.com": [8423], "www.machineslikeus.com": [9830], "fotoblur.com": [6075], "commercialwaste.westminster.gov.uk": [18220], "listas.unizar.es": [17356], "meetrics.com": [10218], "www.mondo2000.net": [10544], "delawareonline.com": [4322], "pulpcentral.com": [12304], "www.hboshopeu.com": [19243], "*.artinstitutes.edu": [16177], "*.mmoga.com": [9763], "*.pepperjamnetwork.com": [12554], "www.imagecurl.com": [19284], "www.gq.com": [6379], "ipo.uchicago.edu": [17246], "www.gamesites.cz": [6438], "piratelinux.org": [12711], "a.wpimg.pl": [19766], "www.kat-de-paris.fr": [8813], "support.opendns.com": [11932], "khronos.org": [8874], "guardiansubscriptions.co.uk": [7004], "b.yandex.com": [18651], "hydra.geht.net": [6509], "amnestyusa.org": [975], "apps.ntid.rit.edu": [13434], "www.openhatch.org": [11942], "lists.linux.it": [8385], "*.storage-bin.com": [15491], "panoramio.com": [12366], "www.windowsazure.com": [18344], "cdn.webmail.aol.com": [321], "mirror.netcologne.de": [11188], "youversion.com": [18710], "slovensko.sk": [14972], "digital.community-journalism.net": [16155], "mm.taobao.com": [15952], "bagatoo.se": [1614], "www.mysecureconnect.com": [10783], "*.benefitsweb.com": [1777], "moderngov.redbridge.gov.uk": [13683], "blog.openhpi.de": [11940], "surfeasy.com": [15649], "www.fatwallet.com": [5691], "www.aldi.ie": [299], "cpmstar.com": [2647], "help.sourcefabric.org": [15180], "*.mooc-list.com": [9776], "oag.ca.gov": [2745], "www.onehockey.com": [11833], "ask.barclays.co.uk": [1662], "golfdigestinsiders.com": [6823], "vijaypath.sbi.co.in": [14082], "www.perimeterinstitute.ca": [19488], "amiando.com": [955], "www.protecciondelconsumidor.gov": [11078], "unanimis.co.uk": [17146], "rais.ornl.gov": [11693], "*.verisign.com": [17623], "www.upgradedself.com": [17387], "atbk.alicdn.com": [805], "listening.aldi.ie": [299], "jifo.co": [8568], "www.flixbus.be": [5931], "psrecruiting.brookings.edu": [2362], "nrf.com": [11059], "*.ssl.qihucdn.com": [13303], "webmail.atl.earthlink.net": [5007], "hackney.greenparty.org.uk": [6925], "acaf.food.gov.uk": [19187], "www.americanfuturefund.com": [944], "up1.ca": [17380], "penctu.psmd.plymouth.ac.uk": [12833], "de-la.dict.cc": [4455], "vdc-sy.org": [2945], "service.mcafee.com": [10114], "www.37signals.com": [118], "www04.fonts.com": [5993], "web.com": [18049], "support.formstack.com": [6046], "digitalunion.osu.edu": [11760], "techblog.constantcontact.com": [3592], "scotpho.nhsnss.scot.nhs.uk": [10913], "conferencing.swisscom.ch": [15698], "net-housting.de": [11177], "*.ckom.de": [3205], "vote.usa.gov": [17029], "infosactu.com": [19291], "scrambl.is": [14403], "zocalopublicsquare.org": [18881], "guifi.net": [7010], "www.youneedabudget.com": [18707], "www.ricoh.com": [13879], "my.intency.com": [8222], "bbcchildreninneed.co.uk": [1500], "m.megamozg.ru": [19394], "bookshop.iseas.edu.sg": [7824], "s.glbimg.com": [6704], "friendfinder.com": [6213], "emergency.uic.edu": [17231], "pcbooster.com": [12233], "www.datstat.com": [4169], "bst2.gismeteo.ru": [6669], "www.oseems.com": [12120], "*.iamnoone-solutions.net": [7894], "easternfusion-terenure.just-eat.ie": [19328], "envoyer.io": [5312], "hotelwifi.com": [7553], "career.ru": [2840], "www.fb-assets.com": [6201], "fidelity.com": [5774], "*.siosm.fr": [14854], "www.justeat.it": [19328], "*.alioth.debian.org": [4275], "wnyc.org": [17916], "popular.com.tw": [12919], "old.lwn.net": [9112], "b3.yahoo.co.jp": [18640], "blog.webtrh.cz": [18173], "xignite.com": [18572], "rsbac.org": [13456], "pirate-party.ch": [12284], "comic-con.org": [3466], "*.us.archive.org": [8271], "*.nbnco.com.au": [10876], "www.ilivid.com": [7754], "olmn.org": [11630], "mitsubishi.com": [10461], "coeus.buffalo.edu": [17297], "www.freebsdnews.com": [6121], "researchcompliance.stanford.edu": [15383], "www.albinoloverats.net": [780], "sipgate.io": [14856], "www.tahetorn.ut.ee": [17069], "asciinema.org": [1247], "www.gloucestershire.police.uk": [6750], "www.conetix.com.au": [3565], "micro.vinilox.eu": [17724], "my.vt.edu": [17740], "*.campstaffusa.com": [2776], "*.wservices.ch": [18477], "finance.google.co.*": [6837], "slice.com": [14955], "developers.acuityscheduling.com": [504], "on.us.playstation.com": [12795], "www.siteuptime.com": [14875], "www.bitcalm.com": [1927], "bounce.io": [2243], "coremotives.com": [3664], "ssl-certificate-center.verisign.com.tw": [17623], "kosmas.cz": [8742], "www.verisign.se": [17623], "fourmilab.ch": [6081], "www.reflected.net": [13718], "tr.prospecteye.com": [13163], "s8.mt-cdn.net": [9798], "business.americanexpress.com": [935], "www.irishtimes.com": [16195], "*.wdfiles.com": [18294], "inlinkz.com": [8032], "*.policemutual.co.uk": [12864], "roughtradegear.com": [13985], "shurgardpayment.eu": [14751], "auth.hitbtc.com": [7420], "nb-no.facebook.no": [5623], "holytransaction.com": [7462], "mall.brands.com.tw": [2286], "all-inkl.*": [825], "groton.org": [6966], "vesselbags.com": [17652], "www.jms1.net": [8587], "goo.gl": [6844], "etradesbi.onlinesbi.com": [11873], "afrinic.net": [709], "habpl.us": [7127], "trac.i2p2.de": [7658], "assets9.wwf.ch": [19768], "m.addison.vt.edu": [17740], "www.getcomposer.org": [6588], "login.domains.live.com": [9483], "www.hertz.co.uk": [7371], "*.unvienna.org": [17216], "magazine.joomla.org": [8627], "ca.mit.edu": [9749], "progllc.com": [13151], "privatewifi.com": [13102], "bbpress.org": [1711], "shop.ubuntu.com": [17102], "exactag.com": [5479], "*.cbc.ca": [2797], "www.crazybump.com": [3765], "www.131002.net": [29], "it.iu.edu": [8064], "www.coverity.com": [3734], "www.loa.org": [9527], "dunkelangst.org": [4802], "www.imageoptim.com": [7979], "gentoo-euetib.upc.es": [12894], "blog.ikeepincloud.com": [7750], "canadiandimension.com": [2798], "os.hiig.de": [7068], "verkkokauppa.duodecim.fi": [4804], "help.twitch.tv": [16888], "theme.co": [16340], "bracknell-forest-consult.objective.co.uk": [19454], "www.xxx24hr.com": [18606], "ngvpn05.nvidia.com": [10985], "www.alsoactebis.com": [301], "raceforward.org": [13491], "www.bkrtx.com": [2133], "promonitor.strode-college.ac.uk": [15528], "www.hertztrucks.com.au": [7336], "bose.co.uk": [2228], "applyonline.leeds.ac.uk": [17318], "webassetsi.scea.com": [14089], "machtfaktorerde.zdf.de": [19800], "widgets.guidestar.org": [7007], "widgets.jamendo.com": [8502], "www.nkl.fi": [11014], "cia.gov": [2600], "cf7.100r.org": [9], "www.reignofgaming.net": [3934], "providesupport.jp": [13173], "www.airshipventures.com": [752], "redstate.com": [13663], "pappp.net": [12208], "custom.search.yahoo.co.jp": [18640], "www.flameeyes.eu": [5901], "shiftboard.com": [14704], "content.dealnews.com": [4261], "www.vk.com": [17493], "adserver.adtechus.com": [639], "www.fs.isy.liu.se": [9084], "nationalcareersservice.direct.gov.uk": [4531], "api.v2.badgeville.com": [1607], "ideafit.com": [7926], "korruption.dk": [8991], "*.yandex.ru": [18657], "m.webtrends.com": [18171], "www.warez-bb.org": [17976], "*.ignimgs.com": [7730], "singlefeed.com": [14848], "petridish.org": [12598], "a2.websitealive.com": [18149], "www.surprisinglyfree.com": [15655], "creator.zoho.com": [18884], "consejosocial.unizar.es": [17356], "*.franktimis.com": [6101], "surveygizmo.com": [15658], "img.taobaocdn.com": [15953], "www.dailystar.co.uk": [4123], "resources2.spiceworks.com": [15266], "www.greatcareers.co.uk": [1186], "tv4play.se": [15882], "tipmobiletest.sbb.ch": [15693], "xagasoft.com": [18538], "www.vh1.ro.vutbr.cz": [17522], "bug.freifunk.net": [6192], "dns-ip.net": [4606], "it.foursquare.com": [6082], "mercola.com": [19396], "ticket.yandex.by": [18648], "www.eecs.mit.edu": [9749], "weather.yandex.com": [18651], "book.cathaypacfic.com": [2904], "www.bookit.nl": [7452], "www.flsenate.gov": [19186], "webmail.xmission.com": [18530], "ai-online.com": [1428], "maas.ubuntu.com": [17102], "static-secure.guim.co.uk": [7014], "*.coldhak.ca": [3415], "resellerratings.com": [13801], "www.naacpcompanystore.org": [10862], "www.lovefilm.*": [9625], "www.adafruit.com": [550], "pyd.io": [13268], "newschallenge.org": [11334], "links.sonatype.com": [15132], "*.chambal.com": [2988], "server2.web-stat.com": [18047], "live.com": [9483], "browser-statistik.de": [2369], "www.unpac.org": [17145], "index.docker.io": [4617], "www.youtube.com.ro": [18709], "www.opengarden.com": [12035], "support.exmail.qq.com": [13285], "doc.owncloud.com": [12181], "cloudfront.assets.stitcher.com": [15476], "virginmobileusa.com": [17736], "secure.studiesabroad.com": [15540], "cr0.org": [3749], "site.yandex.kz": [18652], "libcat.dudley.gov.uk": [4795], "resources.bingads.microsoft.com": [10364], "s1.daumcdn.net": [4220], "click-finder.jp": [14740], "origin.varcentral.com.au": [17466], "pad.okfn.org": [12017], "opinionlab.com": [12054], "www.bookonline.saudiairlines.com": [14305], "www.icukhosting.co.uk": [7694], "jobs.gigaom.com": [6644], "www.jobs.nih.gov": [11052], "*.modlife.com": [10526], "mail.yandex.com.tr": [18649], "*.radioshackcorporation.com": [16380], "*.target.com": [15961], "pub.idqqimg.com": [7925], "ert.cern.ch": [2575], "*.cryptalloy.de": [3844], "antitheft.norton.com": [11505], "www.openafs.org": [11915], "newark.osu.edu": [11760], "www.wilderssecurity.com": [18307], "*.clicktale.com": [3252], "secure.mastermindpro.com": [10058], "www.tvnutt.com": [15889], "data.whicdn.com": [17905], "www.fashionara.com": [5667, 5668], "newsoffice.mit.edu": [9749], "*.californiaunitedbank.com": [2750], "analytics.paste.ee": [12436], "hs12.snstatic.fi": [14145], "www.trilogygolfclub.com": [8431], "*.mos.org": [10715], "siparistakip.yemeksepeti.com": [18674], "www.osvehicle.com": [19469], "www.stellar.org": [15464], "websitealive3.com": [18149], "hsselite.com": [7560], "www.philzimmermann.com": [12620], "virag.si": [17732], "forums.webnms.com": [18077], "ssm.upickem.net": [17389], "www.sportisimo.pl": [14158], "reisen.tchibo.de": [15985], "geneva.usmission.gov": [17063], "wusmforms.wustl.edu": [17993], "www.selangorku.com": [14564], "apply2jobs.com": [1127], "*.ztan.tk": [16548], "onionshare.org": [11863], "blog.tinfoilsecurity.com": [16472], "www.festival.london2012.com": [9573], "www.musikerforbundet.se": [10721], "turtlebay.foreignpolicy.com": [6024], "www.xchatdata.net": [18506], "www.thepiratebay.org": [16227], "*.brainsonic.com": [2271], "www.misadventureswithandi.com": [10451], "www.mtnafoundation.org": [9801], "rc.ouvaton.coop": [12155], "*.www-cse.ucsd.edu": [16938], "smi2.net": [15005], "www.shopstyle.*": [14720], "shopkeeper.kagi.com": [8766], "vpncompare.co.uk": [17501], "www.sonyentertainmentnetwork.com": [15149], "*.gaiaonlinehelp.com": [6405], "rh.ulaval.ca": [17229], "*.gamelink.com": [6415], "www.stopcyberspying.com": [15483], "sso.americanexpress.com": [935], "image2.ceneo.pl": [2936], "master.php.net": [12250], "mail.cablesurf.de": [2705], "downloads4.mamp.info": [19379], "www.ukash.com": [17122], "www.gweb.io": [7032], "www.rantoulpress.com": [13550], "greensmoke.com": [6928], "openstack.cern.ch": [2575], "www.firmware.netgate.com": [5866], "www.perfecthair.ch": [19486], "www.account3000.com": [458], "dnssec-tools.org": [4064], "www.ukpayments.org.uk": [16976], "www.bluestatedigital.com": [2144], "upmlive.hants.gov.uk": [7196], "sur.ly": [15642], "tem.fi": [16909], "wiltshire.objective.co.uk": [19454], "greetings.icq.com": [7690], "admin.jobfinder.dk": [8596], "www.kameleoon.com": [8776], "static.ucuzu.com": [17108], "*.wurfljs.com": [18484], "helpscout.net": [7307], "joomlart.com": [8626], "investor.twitterinc.com": [16894], "fontconfig.freedesktop.org": [6126], "mozy.co.uk": [10667], "www.unbounce.com": [17153], "bugzilla.penango.com": [12531], "onboardkit.com": [11823], "www.santafenewmexican.com": [16208], "*.switchnetworks.com.au": [15703], "advertising.yandex.kz": [18652], "makerbot.com": [9915], "membercentral.com": [10244], "www.superstrands.com": [15618], "www.pantelligent.com": [12371], "www.stonearch.net": [14572], "darkroom.shortlist.com": [14734], "gweb03.webstorepackage.com": [18151], "webcal.maricopa.edu": [9989], "contact.intelish.com": [8213], "www.itx.com": [7855], "wikis-stage.oracle.com": [12082], "www.irtf.org": [7820], "www.pubsoft.org": [13199], "uploaded.net": [17393], "*.marthastewartweddings.com": [10032], "biomechanics.engineering.osu.edu": [11760], "cas.usuhs.edu": [17052], "www.bridgeroadmarketing.com": [2314], "btcbuy.info": [1552], "www.security.vt.edu": [17740], "ausmbmarketplace.cisco.com": [3162], "www.canon.fr": [2809], "myfoxdetroit.com": [11320], "*.rebelmouse.com": [13638], "alamy.com": [775], "fstoppers.com": [6239], "g4.std3.ru": [15445], "people.ysu.edu": [18742], "www.occupywallst.org": [11709], "naturalresources.wales": [11102], "corp.galois.com": [6410], "www.btcs.com": [1562], "nooelec.com": [11470], "123-reg.co.uk": [22], "www.mycharity.ie": [10751], "pentacon-dresden.de": [14358], "dentistry.uic.edu": [17231], "www.arch.umd.edu": [17263], "perfect-privacy.com": [12558], "admin.beamyourscreen.de": [1730], "bitly.is": [1920], "*.visabuxx.com": [17763], "www.nets-danid.dk": [11247], "*.russia.ru": [14044], "spcala.com": [14153], "www.ivegotkids.com": [8401], "pliktverket.se": [12816], "tdnam.com": [15990], "lordsoftheblog.net": [9609], "openttdcoop.org": [11982], "livewyer.com": [9498], "wyzerme.com": [18492], "www.jlist.com": [8442], "www.ist.utl.pt": [16033], "moto-g.com": [10614], "roski.usc.edu": [17037], "assets-news.vice.com": [17667], "ozlabs.org": [12197], "images1.dailykos.com": [4116], "www.ipsos-mori.com": [8349], "logos.visioncriticalpanels.com": [17776], "www.multisoft.com": [10697], "www.ygnition.com": [18677], "recon.cx": [13417], "*.channelme.tv": [3004], "media.scriptfodder.com": [14421], "novel.stanford.edu": [15383], "*.annualcreditreport.com": [1032], "account.mypostoffice.co.uk": [12954], "www.justin.tv": [16888], "forum.t-mobile.nl": [15771], "fineartamerica.com": [5844], "www.pdflabs.com": [12236], "engine.rk.doublepimp.com": [4717], "www.bedis.eu": [1745], "www.ekwb.com": [4920], "www.priceonomics.com": [13055], "www.esi-group.com": [4959], "sdsurf.workforcehosting.com": [18441], "www.tapiture.com": [15958], "hee.nhs.uk": [10913], "bme.osu.edu": [11760], "jobs.economist.com": [5060], "catalog.yandex.by": [18648], "podupti.me": [12841], "origin.images.webs.com": [18144], "web10.dk": [15925], "ssl.price.ua": [13050], "packer.io": [12315], "mirg.osu.edu": [11760], "www.fsras.htwk-leipzig.de": [7114], "passwordwolf.com": [19481], "websites.thm.de": [15811], "www.vacanteen.va.gov": [17019], "drupal.engineering.osu.edu": [11760], "wp.mail.qq.com": [13285], "adminmedia.spontex.org": [15287], "www.hebdo.ch": [19244], "www.itslearning.com": [8395], "icez.net": [7917], "www.postofficeshop.de": [19112], "www.voyage-prive.com": [17857], "getclouder.com": [6568], "myaccount.lib.ncsu.edu": [11492], "urbanartcloud.com": [17410], "www.mosr.sk": [14972], "www.archive.org": [8271], "www.ashleymadison.com": [1255], "secureprosoftware.com": [14494], "www.sandstorm.de": [14282], "landal.*": [18490], "cfmueller.de": [2698], "advq.yandex.com": [18651], "pardus.org.tr": [12400], "telemetrics.symantec.com": [15715], "*.asterisk.org": [1299], "kkh.se": [8733], "pokemon-world-online.net": [12856], "www.csync.org": [3902], "*.vanityfair.com": [17561], "wunderground.com": [18032], "www.marhababrighton.co.uk": [9986], "content-ssl.yieldmanager.com": [13881], "bookworm.oreilly.com": [2207], "www.sanitarium.se": [14285], "bt.no": [1550, 1784], "verivox.de": [17625], "admin.clarahost.co.uk": [3212], "www.pages03.net": [14802], "www.suicidegirls.com": [15584], "sheetmusicplus.com": [14693], "vozpopuli.com": [17861], "ngvpn17.nvidia.com": [10985], "www.provenance.org": [13172], "bit.namecoin.info": [11024], "decryptcryptolocker.com": [4289], "www.requires.io": [13792], "corporate.aldi.ie": [299], "collectiveip.com": [3424], "www.bedfordshireccg.nhs.uk": [10913], "www.webnium.co.jp": [18135], "www.providesupport.cn": [13173], "biapy.fr": [1840], "cdn.globalcloudxchange.com": [6724], "www.hertz.co.nz": [7356], "spaces.live.com": [9483], "about.fundinfo.com": [6262], "www.safeshepherd.com": [14236], "piflc.xbox.com": [18550], "intranet.dbbs.wustl.edu": [17993], "skch.me": [14900], "gu.tt": [7029], "www.ovh.it": [12173], "www.zh.ch": [19648], "schulthess.com": [19573], "www.popehat.com": [12916], "*.catn.com": [2893], "account.lego.com": [9068], "www.quantcast.com": [13337], "www.ovh.ie": [12173], "comstern.de": [3457], "www.cbscorporation.com": [19044], "underskog.no": [17158], "cardiff.gov.uk": [19039], "communities.coverity.com": [3734], "www.usalliance.org": [17033], "www.omaze.com": [11789], "www.o2extra.cz": [16076], "ctf-team.vulnhub.com": [17871], "www.makeshop.jp": [9906], "accounts.nice.org.uk": [10921], "www.hertz.es": [7365], "*.hrcdn.net": [7143], "account.jesus.cam.ac.uk": [17243], "fr.rt.com": [13468], "ffa.ro.vutbr.cz": [17522], "assets.levoleague.com": [9276], "www.quantopian.com": [13340], "www.febas.de": [5705], "webrtc-experiment.com": [18081], "saratov.rt.ru": [13469], "www.laptoplap.hu": [9155], "alac.macosforge.org": [9820], "static.studiegids.tue.nl": [15874], "www.outlook.com": [12153], "releases.cpanel.com": [2651], "www.dwin1.com": [4093], "uncsd2012.org": [17206], "www.leukemiafoundation.org": [11094], "global.engineering.osu.edu": [11760], "adjust.com": [597], "stevesie.com": [15471], "*.uproxy.org": [17012], "media.yoox.biz": [18692], "beta.apple.com": [1120], "www.tunnelbroker.com": [16834], "pinkbike.com": [12694], "tigr.net": [16442], "wiki.openttdcoop.org": [11981], "dlvr.it": [4597], "www.middendrenthe.nl": [11132], "googleblog.blogspot.co.*": [2113], "priorygroup.com": [13074], "itzl.jd.com": [8423], "home.cisco.com": [3162], "www.talktalkbusiness.co.uk": [15930], "netmarketshare.com": [11197], "cas.u-bordeaux.fr": [16918], "www.lpdedicated.com": [569], "feedjit.com": [5737], "infragard.net": [8133], "www.bedfordcornexchange.co.uk": [18987], "feedback.mendeley.com": [10257], "whatif.xkcd.com": [19786], "www.publicinsightnetwork.org": [13209], "hml.lsbu.ac.uk": [9098], "nemertes.com": [11144], "www.freshports.org": [6206], "ruby-lang.org": [14018], "service.byte.nl": [2486], "*.comsuper.gov.au": [3458], "file.bizrate.com": [2033], "*.spreadshirt.at": [15300], "thehill.com": [16290], "*.webmail.brenet.de": [2296], "www.melectronics.ch": [19399], "*.scribol.com": [14416], "malware-research.org": [9926], "shop.netways.de": [11259], "mivolunteers.org": [17835], "www.rudloff.pro": [14024], "www.acpica.org": [264], "uis.kaspersky.com": [8806], "cdn1.sure-assist.com": [15644], "www.sceper.eu": [14343], "www.theaa.com": [16216], "wush.net": [18485], "mett.tk": [3533], "publikdemand.com": [13218], "www.wit.ai": [18378], "avinc.com": [1448], "rubyforge.org": [14019], "ares.wustl.edu": [17993], "paket.de": [12337], "www.mpbio.com": [9783], "static.hgmsites.net": [7398], "avira.com": [1449], "mitei-members.mit.edu": [9749], "duke-energycenter.com": [4797], "verify.cpanel.net": [2653], "wiki.loadaverage.org": [9530], "projects.fruct.org": [5595], "www-prod-storage.cloud.caltech.edu.s3.amazonaws.com": [2757], "infoblox.com": [8106], "blogs.gnome.org": [6353], "nylas.com": [11597], "certify.gpwa.org": [6414], "www.deepbit.net": [4301], "api.appear.in": [1114], "time.orioninc.com": [12109], "*.windstream.com": [18349], "*.btrstatic.com": [1574], "rma.scea.com": [14089], "annotum.org": [18428], "hello.tokyo": [7296], "img.limango-media.de": [9354], "invenio-demo.cern.ch": [2574], "www.goslice.com": [14955], "www.privatetunnel.com": [13099], "www.bullguard.com": [2420], "rcicruiseholidays.com": [18489], "publicfiling.infousa.com": [8110], "adserverec.adtechus.com": [639], "bidbubble.com": [1844], "partners.manageengine.com": [9940], "steganos.com": [15462], "www.g.switchadhub.com": [15701], "img.car.com": [2826], "vstech.net": [17636], "*.downloadster.net": [4728], "www.epilepsyfoundation.org": [5321], "www.hertz-autovermietung.com.pl": [7358], "ovh.co.uk": [12173], "cms.paypal.com": [12467], "johnsonking.com": [8612], "ih.constantcontact.com": [3592], "www.trustkeeper.net": [16782], "blog.jquery.com": [8451], "oops.org": [11897], "officeredir.microsoft.com": [10364], "assets.iu.edu": [8064], "bu.edu": [2237], "analysis.f-secure.com": [5541], "presscoders.com": [13030], "store4geeks.com": [15492], "*.nationbuilder.com": [11043], "www.cualbr.com": [3481], "www.americorpsconnect.org": [11090], "partnernet.symantec.com": [15715], "community.spiceworks.com": [15266], "*.nrelate.com": [11545], "www.xbee.net": [18548], "pastebin.ca": [12442], "www.readspeaker.com": [13610], "notebooknagyker.hu": [9155], "blog.safaribooksonline.com": [14222], "pk.an.de": [985], "rylands.wigan.gov.uk": [18286], "www.theengineroom.org": [16329], "www.my.osu.edu": [11760], "wayskinny.com": [18012], "hsto.org": [7585], "strategysignals.com": [15511], "www.asia.elsevierhealth.com": [5187], "telebrands.net": [16072], "www.exootlab.com": [5500], "t.rasp.yandex.com": [18651], "www.bandinelli.net": [1639], "*.venmo.com": [17607], "*.eerdmans.com": [5105], "www.employeeexpress.gov": [5217], "www.verasafe.com": [17613], "www.hostpointpartner.ch": [7542], "nikecsolutions.com": [11378], "jsperf.com": [8656], "jscss.cp.ctscdn.com": [15851], "bitfinex.com": [1995], "strato.*": [14192], "projecthoneypot.org": [13135], "help.perle.com": [12577], "milbencheck.at": [10390], "www.twittercommunity.com": [16893], "coinaxis.com": [3391], "www.webtrh.cz": [18173], "www.everything4bet.net": [5456], "pvac-webhost.leeds.ac.uk": [17318], "www.tipico.de": [16492], "www.passwordcard.org": [12434], "rimg08.rl0.ru": [13914], "webmail.axboe.dk": [1468], "www.beonespark.com": [1512], "www.tunnelsup.com": [19705], "www.topiama.com": [16565], "*.bluehost.com": [2150], "orkut.com.br": [12110], "isoc.org": [7829], "perm.rt.ru": [13469], "hmailserver.com": [7087], "www.apmebf.com": [3481], "www.collegebeschermingpersoonsgegevens.nl": [4813], "popphoto.com": [12922], "salaryservice.ieeeusa.org": [7717], "*.kit.edu": [8798], "12foothedgehog.com": [28], "tronixcomputers.com": [16757], "netzfreiheit.org": [11275], "support.globusonline.org": [6746], "*.blockr.io": [2097], "a1community.net": [217], "webmail.wildwestdomains.com": [18300], "yify-torrent.org": [18616], "cdn2.teads.tv": [15995], "parlament.neos.eu": [10899], "cme.mitre.org": [10459], "bitcoinaverage.com": [1968], "www.cozmedics.com.au": [2644], "*.datahc.com": [4182], "scholcomm.columbia.edu": [3448], "api.buttercoin.com": [2463], "www.onsiteconcierge.com": [13392], "www.fuscia.info": [6272], "www.eclevelandclinic.org": [3236], "www.toppreise.ch": [19688], "my.gartner.com": [6463], "git.iridiumbrowser.de": [8356], "webmail.bln.de.clara.net": [3212], "www.pushbullet.com": [13251], "extranet.skat.dk": [14897], "innovateuk.org": [8152], "www.mountaincode.eu": [10619], "london-nano.com": [9574], "bulletin.cern.ch": [2575], "terneuzen.nl": [11132], "*.peopleschoice.com": [12553], "*.livestatserver.com": [9512], "electroscience.osu.edu": [11760], "investors.btcs.com": [1562], "assets.red-gate.com": [13657], "people.openmoko.org": [12039], "www.cio.com.au": [2610], "indicators.ic.nhs.uk": [10912], "webstats.genesis4gamer.de": [6527], "showcase-tv.com": [14740], "opensource.osu.edu": [11760], "dmu.ac.uk": [4048], "www.refeds.org": [13413], "1000.chromeexperiments.com": [3117], "hoodline.com": [7486], "client.cdn77.com": [2556], "iar.com": [7668], "www.ctc.usma.edu": [17044], "www.wienerstadtwerke.at": [18284], "deru.dict.cc": [4455], "www.mghocd.org": [9702], "auto.yandex.com.tr": [18649], "accounts.wmflabs.org": [18296], "*.wikispooks.com": [18298], "www.steenwijkerland.nl": [11132], "www.carasutra.co.uk": [2829], "aaronbrotherscircular.com": [393], "skylink.sk": [14937], "gettingreal.37signals.com": [118], "undergradpreview.usc.edu": [17278], "forex.com": [6033], "southampton.gov.uk": [15191], "watershed.co.uk": [18002], "assets.soundowl.net": [15163], "slp2.somerset.gov.uk": [15127], "rekonq.kde.org": [8718], "freebsd.org": [6120], "*.caller.com": [2753], "terminal.securenet.com": [14493], "api.itunes.apple.com": [1120], "pt.wustl.edu": [17993], "gatag.it": [14216], "security.switch.ch": [15699], "m.tune.yandex.kz": [18652], "cluster1.easy-hebergement.net": [5033], "www.thecenterforrights.org": [16255], "www.cscprotectsbrands.com": [3683], "members.mayfirst.org": [10100], "www.datenschutzzentrum.de": [8052], "webmail.cesky-hosting.cz": [19051], "leboncoin.fr": [19351], "spice-space.org": [15264], "www.gsb.stanford.edu": [15383], "petra3.desy.de": [4399], "boutique.arte.tv": [18966], "partners.netapplications.com": [11172], "*.chip-kiosk.de": [2595], "api.aimpulse.com": [743], "www.fanli.com": [5655], "rottnestexpress.com.au": [13983], "www.bakabt.me": [1622], "www.bitchmagazine.org": [1955], "astrakhan.rt.ru": [13469], "ws.amazon.com": [910], "www.userlike.com": [17436], "gameinfo.euw.leagueoflegends.com": [9205], "dsa.dft.gov.uk": [19116], "api.yamli.com": [18645], "vt.edu": [17740], "*.productsafety.gov.au": [13124], "photo-mark.com": [10002], "js.ui-portal.de": [16952], "research.csc.ncsu.edu": [11492], "permits.performance.gov": [12568], "goldenfrog.com": [6814], "voucherexpress.co.uk": [7317], "www.f3.htw-berlin.de": [7112], "tickengo.*": [16411], "www.littlecms.com": [9477], "www10.qth.com": [13291], "brave.pigg.ameba.jp": [926], "renderfarming.net": [13765], "nordvpn.com": [11482], "cache.tv.qq.com": [13284], "*.cld.me": [3206], "secureuk.net": [14513], "www.nttxstore.jp": [11557], "www.ubnt.com": [17084], "nessie.uihr.uillinois.edu": [16960], "ukashcardsatis.com": [17123], "www.casinoaffiliateprograms.com": [2882], "www.theparliamentmagazine.eu": [16304], "wiredout.osu.edu": [11760], "*.epb.net": [4940], "oss.oracle.com": [12082], "365.rsaconference.com": [13454], "www.vidble.com": [17681], "*.cityofchicago.org": [3184], "harlandclarkegiftcard.com": [7207], "www.tele-task.de": [16068], "clickdelivery.gr": [3258], "www.myed.ed.ac.uk": [5067], "www.brevado.com": [2307], "nytm.org": [10988], "img.tweetimag.es": [1814], "cdn.theatlantic.com": [16246], "thecalmzone.net": [16254], "www.soc.ulaval.ca": [17229], "www.suntec.net": [15608], "www.offcampus.osu.edu": [11760], "office.co.uk": [11742], "www.capris.no": [603], "bundanon.com.au": [2426], "imgb.nxjimg.com": [11591], "paymybill.uillinois.edu": [16960], "4.*.wdfiles.com": [18294], "dal.net": [4003], "certificate-transparency.org": [2968], "static-ssl.businessinsider.com": [2454], "faq.soylent.com": [15199], "staging.maxmind.com": [10097], "go.touchcommerce.com": [16608], "secure-inside.intel.com": [8209], "precisionmarinetools.com": [13020], "singlehop.com": [14847], "*.bbcimg.co.uk": [1499], "www.ichkoche.at": [7918], "pix01.revsci.net": [13840], "*.www.textbooks.com": [16159], "*.ebuyer.com": [5043], "somethingawful.com": [15130], "www.solola.ca": [15123], "gateway.audiencescience.com": [1353], "element.yandex.com.tr": [18649], "pharmacievirtuelle.pha.ulaval.ca": [17229], "images.mobilism.org": [19404], "reg.dtic.mil": [17028], "ne.edgecastcdn.net": [5079], "www.mysolarcity.com": [15109], "www2.youm7.com": [18714], "controlscan.com": [3621], "www.mandiant.com": [19381], "community.redhat.com": [13675], "www.hgi.rub.de": [13478], "catalyst.harvard.edu": [7219], "projectslice.com": [14955], "www.dawsonera.com": [4235], "x.bidswitch.net": [1847], "rewards.xbox.com": [18550], "braindecoder.com": [2267], "logicboxsoftware.com": [9556], "www.swinburne.edu.au": [15691], "referafriend.xfinity.com": [19784], "cpunks.org": [3747], "cadetnet.gov.au": [2714], "www.truthdig.com": [16803], "www.schweissgut.net": [12116], "*.internetbs.net": [8276], "shield.nvidia.com": [10985], "www.paymentaccuracy.gov": [12476], "login.advent.com": [654], "mouseflow.com": [10624], "mysql.cesky-hosting.cz": [19051], "static.car.com": [2826], "dribbble.com": [4759], "www.forensischinstituut.nl": [11132], "www.lawblog.de": [9179], "community.bitnami.com": [2011], "cloudtools.rackspace.com": [13506], "bootswatch.com": [2218], "www.cloudcontrol.com": [3283], "satern.nasa.gov": [10869], "bostonreview.net": [2236], "adcap.biz": [519], "dataclass.stanford.edu": [15383], "suppliesfordreams.org": [15636, 15637], "*.marhab.com": [9985], "ubuntu-mate.community": [17106], "imagecomics.com": [7977], "www.givedirectly.org": [6688], "*.grenoble-inp.fr": [6942], "fapa.edp.pt": [4896], "www.axisbank.co.in": [1474], "metanet.ch": [10309], "gentooquebec.org": [6532], "poppler.freedesktop.org": [6126], "*.ey.com": [5346], "1seculodeenergia.edp.pt": [4896], "scm.symantec.com": [15715], "bestcovery.com": [1809], "www.webfusion.co.uk": [18117], "loans.car.com": [2826], "image.unwire.com": [17376], "www.anthropologie-societes.ant.ulaval.ca": [17229], "www.naromax.com": [11037], "*.xfce-help.org": [19462], "polid.jppol.dk": [8445], "iss.leeds.ac.uk": [17318], "console.twistage.com": [16883], "library.stanford.edu": [15383], "my.dianomi.com": [4444], "kpopstage.co": [9002], "paste.lugons.org": [9108], "apps.nlm.nih.gov": [11052], "mdosche.de": [10130], "www.fokus.fraunhofer.de": [6112], "www.integrity.st": [8204], "praktikpladsen.dk": [19515], "unr.li": [17367], "maps.ilovefreegle.org": [7892], "gp.se": [6368], "opsmate.com": [12062], "thedma.org": [16264], "*.mongabay.com": [10552], "sitemgr.web.engineering.osu.edu": [11760], "oghalailab.stanford.edu": [15383], "www.instantpage.me": [8187], "www.noaddedsugar.com": [11446], "justaguy.pw": [8696], "support.webgo.de": [18064], "network23.org": [11265], "ucc.unizar.es": [17356], "mpi-sws.org": [10089], "Avanza.se": [1443], "escapistexpo.com": [16188], "www.7terminals.com": [197], "www.intelliserver.net": [8218], "donate.richarddawkins.net": [13871], "customz.nustarz.com": [11564], "onlinelaw.wustl.edu": [17993], "longtailvideo.com": [9589], "www.medicine.wustl.edu": [17993], "www.plexapp.com": [12815], "akademy2012.kde.org": [8718], "store.totalwebsolutions.com": [16605], "issuetracker.unity3d.com": [17220], "*.googlecode.com": [6844], "ecos.osu.edu": [11760], "support.itbit.com": [8384], "www.patriotssuperbowl.us": [12458], "illumos.org": [7970], "trainingcenter.nih.gov": [11052], "vangogh.teespring.com": [16060], "webmail.mbnet.fi": [9723], "*.spench.net": [15260], "www.freebiblesoftware.com": [6139], "jondos.org": [8623], "crypton.io": [3882], "*.markmonitor.com": [10003], "sc3.maps.live.com": [9483], "www.ecrimeresearch.org": [4887], "*.ensighten.com": [5286], "www.sure-assist.com": [15644], "mail-archive.com": [9869], "support.launchrock.com": [17440], "myaccount.shaw.ca": [14687], "www.debian-administration.org": [4269], "gaitaobao1.alicdn.com": [805], "digitalmars.com": [4493], "music.stanford.edu": [15383], "bviphotovideo.com": [1583], "www.litecoin.info": [9461], "pimages.xplosion.de": [18585], "zen-cart.com": [18819], "www-cdn.dell.com": [4335], "perfecthair.ch": [19486], "ei.chaturbate.com": [3035], "pasteup.guim.co.uk": [7014], "bitmit.net": [2009], "microcorruption.com": [10355], "lhc-beam-operation-committee.web.cern.ch": [2575], "*.neonmob.com": [11155], "ricoh.com": [13879], "www.bestchange.org": [1804], "www.priv.gc.ca": [13080], "kau.se": [8708], "regcheckcode.taobao.com": [15952], "neko.im": [11137], "members.tip.net.au": [12218], "fnacspectacles.com": [5969], "www.yourmembership.com": [18725], "www.hants.gov.uk": [7196], "*.forgifs.com": [6037], "www.masterxchange.com": [10055], "zarafa.com": [18795], "cio.wustl.edu": [17993], "www.whmcs.com": [17906], "www.swisscom.ch": [15698], "moodle.uaa.alaska.edu": [17233], "dobrochan.ru": [4612], "connect.apan.org": [329], "*.topoption.com": [16562], "masterh1.adriver.ru": [534], "mageia.org": [9847], "www.seacloud.cc": [14434], "re.is": [13411], "www.freepressunlimited.org": [6148], "p5.zdassets.com": [18806], "marsocial.com": [9713], "streaming-url.tape.tv": [15956], "ads.pubmatic.com": [13194], "www.midasgreentech.com": [10373, 10374], "elroy.twit.tv": [15892], "explore.co.uk": [7452], "plymouth.objective.co.uk": [19454], "www.trainingindustry.com": [16657], "it-security.usc.edu": [17278], "*.hit.gemius.pl": [6517], "myefc.efinancialcareers.com": [4911], "*.blendle.nl": [2068], "gentoo-blog.de": [6529], "registrierung.web.de": [18050], "journeyed.com": [8649], "libsdl.org": [9290], "bucklink.xtgem.com": [18596], "asee.osu.edu": [11760], "tulips.ntu.edu.tw": [10971], "get.how": [6575], "*.well.com": [18263], "auth.habrahabr.ru": [7129], "help.bigcartel.com": [1850], "gsspubssl.nci.nih.gov": [11052], "www.sony.se": [15143], "sharetobuy.com": [19586], "i2.services.social.microsoft.com": [10364], "blog.cachethq.io": [2709], "enlightenment.org": [5280], "eplanning.birmingham.gov.uk": [19000], "order.ifolor.ch": [19282], "www.cnrs.fr": [6195], "www.eiseverywhere.com": [5389], "www.ist-track.com": [8379], "internetgovernance.org": [8272], "relate.mit.edu": [9747], "medarbejdersignatur.dk": [10139], "telford.gov.uk": [19669], "*.ironwhale.com": [8358], "www.lenovo.com": [9251], "www.earthfirst.org.uk": [5008], "educause.edu": [5096], "match.adsrvr.org": [635], "muc.xmpp.org": [18526], "agedcarecomplaints.govspace.gov.au": [6867], "ubuntu.com": [17102], "www.hashcat.net": [7226], "cdn.mobclix.com": [10488], "soeren-hentzschel.at": [15086], "home.silentcircle.com": [14786], "fortune.com": [6061], "rimg05.rl0.ru": [13914], "motion-docs.adtile.me": [640], "tidbits.com": [16431], "kb.uaa.alaska.edu": [17233], "srv.asknet.de": [1268], "event.knowledgeblog.org": [8948], "wiki.xiph.org": [18575], "safeguarding.southwark.gov.uk": [15196], "static9.twilio.com": [16876], "kum.com": [9035], "useitandsee.com": [5178], "sysmocom.de": [15756], "www.robeco.nl": [13921], "cmnf.engineering.osu.edu": [11760], "stage.nortoncdn.com": [11505], "moje.zuno.cz": [18768], "www.healthunlocked.com": [7259], "*.posthaven.com": [12975], "www.test.de": [19671], "svn.jenkins-ci.org": [8551], "gfi-italia.com": [6319], "parking.wustl.edu": [17993], "dict.cc": [4455], "mycampina.com": [2783], "www.gamersfirst.com": [6435], "www.brent.gov.uk": [2304], "email.wustl.edu": [17993], "support.f5.com": [5546], "secure-js.adsonar.com": [539], "www.binsearch.info": [1888], "ondarossa.info": [11825], "dvidshub.net": [4089], "*.onlive.com": [11812], "www.facebook.it": [5623], "cl.exct.net": [5482], "yeas.yahoo.co.jp": [18640], "www.facebook.is": [5623], "www.suas.ie": [15553], "ibutsu.org": [19279], "iubenda.com": [8396], "marketwire.com": [10022], "*.palms.com": [12348], "pictures.meetic.com": [10214], "www.joinus.today": [8617], "metabunk.org": [10304], "pokey.ci.uchicago.edu": [17246], "miles-and-more.com": [10394], "*.lp0.eu": [9639], "www.firsts.com": [5880], "alertsite.com": [14986], "ols.nab.com.au": [10865], "www.interkassa.com": [8251], "www.bunkus.org": [19025], "brightfutures.portsmouth.gov.uk": [19508], "bdsc.webapps.blackberry.com": [2050], "www.cyseclabs.com": [3991], "more-ip-event.net": [10584], "www.dma.org.uk": [4522], "www.pandora.com": [12359], "fod-web-01.busfin.ohio-state.edu": [11761], "manage.my.t-mobile.com": [15772], "bawsi.org": [1493], "lesterchan.net": [9262], "demo.ethernetportal.equinix.com": [5334], "career.berkeley.edu": [17240], "mobile.yandex.com.ua": [18650], "wpad.leeds.ac.uk": [17318], "news.google.*": [6837], "vmpforms.easthants.gov.uk": [5013], "www-sandbox.buttercoin.com": [2463], "video.regjeringen.no": [13739], "www.squarepenguin.co.uk": [15330], "onecloudsecurity.com": [11830], "www.questioncopyright.org": [13356], "postsuisseid.ch": [12949], "www.vdqbulbs.com.au": [17477], "static1.sockshare.com": [15081], "bpa.gov": [2198], "moelleken.org": [10529], "*.networkedblogs.com": [11272], "robtex.com": [13920], "*.commercialappeal.com": [4988], "www.synthetix.com": [15742], "nice.org.uk": [10921], "help.talktalk.co.uk": [15929], "*.orangewebsite.com": [12089], "shop.freertos.org": [6129], "www.raceforward.org": [13491], "cmt.osu.edu": [11760], "personaldataecosystem.org": [12581], "tankafetast.com": [15947], "isc2cares.org": [7823], "iws.htwk-leipzig.de": [7114], "www.bmpharmacy.com": [1532], "connect.watford.gov.uk": [19747], "*.m.poczta.home.pl": [7465], "fsfe.org": [5601], "globalpay.westernunion.com": [18216], "*.pricerunner.co.uk": [13053], "www.arte.tv": [18966], "*.vstech.net": [17636], "waste.org": [17895], "crm.zoho.com": [18884], "podcasts.it.ox.ac.uk": [17271], "animal.ffa.vutbr.cz": [17522], "rkn.gov.ru": [13913], "xetra.com": [18567], "*.fsu.edu": [5603], "mainpage.pixfs.net": [12741], "www.heg.org": [7502], "frederik-braun.com": [6116], "drwho.virtadpt.net": [4784], "atypon.com": [1342], "denpa.moe": [4366], "www.stemulitefitnessformula.com": [15467], "evdrive.evdriveinfo.com": [4984], "leiajung.org": [9237], "thecityuk.com": [16220], "*.jiwire.com": [8565], "www.destroyallsoftware.com": [4396], "gongxiao.tmall.com": [19684], "l1.51fanli.net": [171], "inka.f4.htw-berlin.de": [7112], "www.ntu.ac.uk": [10972], "adfs.leeds.ac.uk": [17318], "dot.money.pl": [10547], "parkmodelsdirect.com": [12403], "tme.osu.edu": [11760], "firefox.net.cn": [5860], "owa.alfa.de": [800], "www.gigamon.com": [6649], "www.twistedmatrix.com": [16885], "unirel.vt.edu": [17740], "music.douban.com": [4707], "neverddos.com": [11285], "origin-cdn.els-cdn.com": [5182], "draugr.de": [4743], "viewablemedia.net": [17770], "ricoh.com.hk": [13879], "l0.51fanli.net": [171], "dialog.filepicker.io": [5801], "*.optorb.com": [12077], "commentarymagazine.com": [3478], "secure.ace.advertising.com": [662], "www.netsekure.org": [11249], "wz2100.net": [17987], "help.eset.com": [5358], "*.dafont.com": [4103], "www.it.uu.se": [17074], "citrixonline.com": [3179], "static.lanyrd.net": [9153], "xsens.com": [18591], "www.dotsec.com": [4696], "*.caintvnetwork.com": [2720], "www.virtualizationreview.com": [17756], "lists.nasa.gov": [10869], "signpostsheffield.sheffield.gov.uk": [14694], "itservices.usc.edu": [17278], "metrika.yandex.com.tr": [18649], "sb-innovation.de": [14078], "quicktranslate.com": [13361], "media.allyou.net": [842], "www.carecareersdevon.org.uk": [19040], "bugs.gnewsense.org": [5600], "customtiburon.com": [3939], "bsdhistory.discoverbsd.com": [4548], "mail.163.com": [34], "www.websitegrowers.com": [18150], "bigbrother.se": [1856], "b.stripecdn.com": [15526], "fr.cryptonator.com": [3883], "e-pages.dk": [4857], "diygadget.com": [4587], "www.fraedom-cdn.com": [19192], "stats.ftb.ca.gov": [2742], "control.vps.net": [17510], "ox-d.aa.com": [229], "www.nedstat.com": [3453], "codeforamerica.org": [3359], "www.amctv.com": [306], "listman.redhat.com": [13675], "www.codecoon.com": [3364], "offers.usatoday.com": [17032], "www.metager.de": [10298], "docsend.com": [4613], "localphone.com": [19370], "store.atmel.com": [984], "bananian.org": [1636], "tony.xyz": [16546], "carestream.com": [2848], "givekidstheworldstore.org": [6686], "signin.netapp.com": [11183], "8win88win.com": [206], "www.btsport.com": [1576], "eadmissions.westsussex.gov.uk": [18211], "*.jacksonville.com": [8487], "api-read.facebook.com": [5620], "www.keep2share.cc": [8704], "edenhost.com": [5075], "firstlook.pnas.org": [12273], "etsy.com": [5395], "www.pdfreaders.org": [12501], "www.madewithcode.com": [9838], "nelhage.com": [10904], "gn.apc.org": [1294], "googleartproject.com": [6833], "i.s-microsoft.com": [14057], "uservoice.com": [17441], "www.webmail.shaw.ca": [14687], "upload.sms.cam.ac.uk": [17243], "www.oagtravel.com": [16927], "hs-ws1.oracle.com": [12082], "leadertech.com": [9199], "759425240.r.cdn77.net": [18607], "www.insure-systems.co.uk": [4442], "www.mastermindsdigital.com": [10059], "*.softlayer.com": [15094], "www.chronicle-store.com": [3121], "instra.com": [8196], "webmaster.yandex.by": [18648], "pixel.rubiconproject.com": [14014], "forum.bitcoin.de": [1966], "www.c-base.org": [2492], "giveto.osu.edu": [11760], "shop.bite.lt": [1991], "bar.love.mail.ru": [9874], "cli.linksynergy.com": [9381], "cryptocloud.ca": [3870], "multiseek.net": [10696], "www.oiss.wustl.edu": [17993], "storage.aircrack-ng.org": [750], "ileansigma.osu.edu": [11760], "www6.northyorks.gov.uk": [19440], "*.readthedocs.org": [13611], "www.latam.citibank.com": [3171], "www.criticalthinking.org": [3804], "www.cybercrime.admin.ch": [19648], "a.academia-assets.com": [435], "www.atrpms.net": [369], "a.collective-media.net": [3423], "icewarp.com": [7913], "my.ti.com": [16152], "entadsl.com": [5289], "ubcdn.co": [17083], "foodprotectiontaskforce.com": [6001], "mysymantec.symantec.com": [15715], "www.omicron.at": [11635], "cdn0.dailydot.com": [4114], "fraunhofer.de": [6112], "ja.community.dell.com": [4335], "facultyinformationhandbook.wustl.edu": [17993], "mmoga.de": [9763], "training.github.com": [6680], "app.ghosteryenterprise.com": [6630], "*.nature.com": [11104], "gme.stanford.edu": [15382], "atsec.com": [1332], "*.tu-berlin.de": [16038], "explorer.namecoin.info": [11024], "secure.dilbertfiles.com": [4517], "www.aphyr.com": [1090], "www.itradecimb.com.sg": [2607], "www.aisec.fraunhofer.de": [6112], "cdn.viaduct.io": [17662], "web.flux.utah.edu": [17288], "insightexpressai.com": [8172], "www.mutelight.org": [10728], "sacredcrystalsingingbowls.com": [3894], "static2.boligportal.dk": [2191], "www.mrfile.me": [10673], "joomag.com": [8625], "www.logentries.com": [9553], "int.anon-ib.co": [1034], "spideroak.com": [15269], "namecoin.info": [11024], "www.law.illinois.edu": [17258], "review.tizen.org": [16506], "sq.ouvaton.coop": [12155], "widgets.getpocket.com": [6579], "ned.nih.gov": [11052], "000webhost.thecthulhu.com": [16334], "www.terveysportti.fi": [16133], "exclusivex.com": [5487], "fso-tapi.admatrix.jp": [531], "blogads.com": [13038], "aiasurety.com": [289], "systemcenteradvisor.net": [15760], "rossierstudents.usc.edu": [17278], "www.tapatalk.com": [15955], "processing.org": [13120], "de-bs.dict.cc": [4455], "g.mozest.com": [10649], "matrox.com": [10079], "planet.lysator.liu.se": [9084], "accessibility.kde.org": [8718], "www.ice.cam.ac.uk": [17243], "ipython.org": [7809], "online.pragmaticstudio.com": [13014], "www.dyndns.berlin": [4822], "vz46.brenet.de": [2295], "www.firstdedic.ru": [5868], "shop.dd-wrt.com": [4018], "es.calameo.com": [2731], "treasury.gov": [16704], "www.influencersconference.com": [8098], "*.systemcenteradvisor.com": [15760], "lxcenter.org": [9679], "hello.neustar.biz": [11280], "pgpru.com": [11964], "gpo.iitb.ac.in": [7744], "vonage.co.uk": [17838], "integrity.pt": [8203], "www.apple.com": [1120], "*.edweek.org": [5069], "blog.agilebits.com": [727], "online.osu.edu": [11760], "scontent-b.igcdn.com": [7951], "notalwayslearning.com": [19441], "www.cardcash.com": [2833], "www.klibert.pl": [8932], "p1.zdassets.com": [18806], "secure-www.6pm.com": [182], "cuckoosandbox.org": [19096], "internet.yandex.com": [18651], "*.webspace4clans.de": [18155], "q8car.com": [13278], "datamonitor.com": [4205], "www-05.ibm.com": [7675], "transfer.srgssr.ch": [19621], "gfx.nrk.no": [11546], "cache.smithmonitoring.com": [15007], "content.yieldmanager.com": [13881], "secure.bathnes.gov.uk": [1689], "www.idenyt.dk": [7941], "th.norton.com": [11505], "www.bitcoinplus.com": [1982], "linsrv101.linuxcontrolpanel.co.uk": [9426], "profitbricks.com": [13129], "www.careerfoundry.com": [2844], "www.nic.io": [11381], "vitamintalent.com": [17792], "ep09.pld-linux.org": [12267], "compasscard.ca": [3515], "*.discovercard.com": [4549], "hertz247.de": [7346], "simplednscrypt.org": [14826], "sns.isc.org": [7821], "esgwtdc.nts.jhu.edu": [16296], "www.horstaandemaas.nl": [11132], "teamboard.com": [15998], "*.justgiving.com": [8691], "magnet.ie": [9860], "tube.geogebra.org": [6537], "bulletin.engineering.columbia.edu": [3448], "*.docstoccdn.com": [4622], "www.ibphoenix.com": [7676], "devtalk.nvidia.com": [10985], "haritalar.yandex.com.tr": [18649], "tp4.sinaimg.cn": [14845], "www.telemetry.com": [16089], "mobile.thehill.com": [16290], "cdn.onenote.net": [11840], "lists.itnog.it": [7862], "www.cltglobal.com": [2624], "envirostyles.ca": [5308], "tp3.sinaimg.cn": [14845], "libappprod1.stanford.edu": [15383], "www.janhendrikpeters.de": [8509], "www.icg.isy.liu.se": [9084], "www.healthiertogethergm.nhs.uk": [10913], "bite.lt": [1991], "casecurity.org": [2519], "*.groceryserver.com": [6961], "digitalpoint.com": [4498], "image.email.argos.co.uk": [1186], "rubicondev.com": [14015], "p6.raasnet.com": [13655], "memberservices.beunlimited.co.uk": [16075], "typo3.sedo.de": [14540], "www.rigb.org": [13994], "www.cod.ed.gov": [4889], "terragalleria.com": [16125], "clients.evaske.com": [5435], "fabricatorz.com": [5618], "like.iwantmyname.com": [19313], "mynomadesk.com": [11463], "*.minijuegosgratis.com": [10418], "www.mail-archive.com": [9869], "mutualart.com": [10732], "upatient.com": [17010], "www.xplosion.de": [18585], "sg.norton.com": [11505], "*.usf.edu": [17275], "stumble-upon.com": [15544], "my.omniture.com": [11803], "i4.gallery.technet.s-msft.com": [14058], "eprihlaska.vutbr.cz": [17522], "community.zarafa.com": [18795], "www.packetstatic.com": [12317], "www.deutsche-rentenversicherung.de": [4407], "shenghuo.alipay.com": [817], "angelikafilmcenter.com": [1015], "gearslutz.com": [6488], "mazacoin.org": [10107], "cdn.xplosion.de": [18585], "idmsa.apple.com": [1120], "schlossbergstore.com": [14354], "vpsboard.com": [17863], "hrservices.plymouth.ac.uk": [12833], "pony.fm": [12897], "www.cacert.com": [2520], "ngvpn35.nvidia.com": [10985], "*.nationalexpress.com": [11050], "www.justfordomino.com": [10101], "illiad.wustl.edu": [17993], "www.bulletinoftheschoolofmedicine.wustl.edu": [17993], "www.1lotstp.com": [44], "autodiscover.coverity.com": [3734], "gsfc.org": [6387], "jet2.com": [8557], "bulletproofmeteor.com": [2416], "*.alaskaair.com": [778], "dtcc.edu": [4323], "rtdru.rt.com": [13468], "metric.yandex.by": [18648], "linuxdistrocommunity.com": [9421], "www.contentwatch.com": [3611], "*.actblue.com": [488], "api.artsy.net": [1235], "lansstyrelsen.tdconline.se": [15799], "images.riverbed.com": [13907], "www.safello.com": [14234], "www.mediaarea.net": [10154], "library.uchastings.edu": [16941], "www.nidcd.nih.gov": [11052], "s1.thejournal.ie": [16224], "www.imququ.com": [7974], "readthedocs.org": [13611], "thumbshots.*": [16401], "securecerts.ie": [4512], "www.makrotex.hu": [9920], "cipherlawgroup.com": [3150], "lewrockwell.com": [9278], "sc1.maps.live.com": [9483], "torcheck.xenobite.eu": [18564], "forums.gpgauth.org": [6876], "trustlogo.com": [3504], "ts.oebb.at": [19455], "sportisimo.com": [14158], "www.eis.kent.gov.uk": [8851], "embed.cs.utah.edu": [17288], "*.nine.ch": [11412], "derpibooru.org": [4381], "eliotsocietyvolunteer.wustl.edu": [17993], "www.wimp.no": [18275], "tjanster.idg.se": [7705], "www.bitcoinpool.com": [1969], "forums.oracle.com": [12082], "www.familie.aok.de": [317], "www.*.uidaho.edu": [17257], "*.suomi.fi": [19640], "aetolia.com": [18943], "ssn.uillinois.edu": [16960], "dns.lc.wix.com": [18383], "myportal.calpoly.edu": [2747], "secure.me": [14488], "www.mediamath.com": [10157], "chdir.org": [3038], "meebey.net": [10205], "en-fr.dict.cc": [4455], "sirrix.com": [14859], "dav.dropdav.com": [4767], "hub.united.com": [17212], "prsearch.juniper.net": [8682], "blog.tropo.com": [16759], "www.cs.utah.edu": [17288], "www.radioplayer.co.uk": [13521], "www.secur1ty.com": [14476], "3.darkroom.shortlist.com": [14734], "static-cdn1.ustream.tv": [17451], "www.dogsbodyhosting.net": [4635], "www.sussan.com.au": [15664], "multiplayer.unity3d.com": [17220], "forums.e-hentai.org": [4840], "wemonit.de": [18021], "www.dsinternals.com": [4083], "blogs.it.ox.ac.uk": [17271], "jp.msn.com": [9796], "console.aliyun.com": [821], "pen-testing.sans.org": [14072], "mulesoft.com": [10691], "help-es-la.nike.com": [11401], "www.consuwijzer.nl": [3594], "supportforums.cisco.com": [3162], "investor.activisionblizzard.com": [503], "www.adroll.com": [536], "hopkins-interactive.com": [7494], "twitter.freifunk.net": [6192], "img12.360buyimg.com": [112], "chip-digital.de": [2594], "store.checkpoint.com": [3048], "mai.taobao.com": [15952], "byte.nl": [2486], "rbb-online.de": [13591], "twilio.com": [16876], "www.makewebeasy.com": [9917], "assembly.wales": [1280], "img2.picload.org": [12661], "webooluinc.com": [18137], "pegelf.de": [12528], "wetlandpark.gov.hk": [19253], "preview.springer.com": [15309], "huabei.alipay.com": [817], "*.manufrog.com": [9964], "webgis.ornl.gov": [11693], "*.globalsign.co.uk": [6718], "api.opencorporates.com": [11931], "boposta.bo.infn.it": [7766], "piratenpartij.nl": [12708], "remit.onlinesbi.com": [11873], "geant3.archive.geant.net": [6313], "contact.camden.gov.uk": [2772], "appharbor.com": [1107], "www.evilsocket.net": [19169], "contact-privacy.com": [16817], "stanford.io": [1920], "travelingnuker.com": [16696], "www.southglos.gov.uk": [15189], "brsmblog.com": [1540], "www.securelime.com": [14503], "webassetsa.scea.com": [14089], "www.trillian.im": [16735], "sofort.com": [15089], "www.puckey.org": [13221], "stackcommerce.com": [15361], "*.awcloud.net": [377], "www.infusionsoft.com": [8136], "apps.usaspending.gov": [17034], "about.constantcontact.com": [3592], "www2.glam.com": [6697], "www.qz.com": [13386], "play.itunes.apple.com": [1120], "m.onlinesbi.com": [11873], "clevelandclinicmeded.com": [3236], "www.price.ua": [13049], "emea.centrify.com": [19048], "gd3.alicdn.com": [805], "femtoduino.com": [5746], "cst.usc.edu": [17278], "www.bioelectronics.leeds.ac.uk": [17318], "trm.brassring.com": [19017], "corner.squareup.com": [15329], "www.teamboard.com": [15998], "focaljet.com": [5973], "www.alldaycalm.com": [845], "www.pl.vc": [12752], "engin.cf.ac.uk": [2835], "tip4commit.com": [16491], "www.totse2.com": [16607], "www.drone.io": [4766], "pbagalleries.com": [12209], "forum.paradoxplaza.com": [12386], "www.c-spanvideo.org": [2494], "www.sisu.ut.ee": [17069], "slashdotmedia.com": [14948], "coinwallet.eu": [3400], "partnernet-sit.symantec.com": [15715], "sdilej.cz": [14431], "huit.harvard.edu": [7219], "tmobile.nl": [15835], "schraubenluchs.de": [19572], "politicasocial.unizar.es": [17356], "news.uga.edu": [17312], "*.tbe.taleo.net": [15922], "operationfabulous.com": [12052], "www.savedeo.com": [14312], "www.aktiiviraha.fi": [7186], "digital.cabinetoffice.gov.uk": [2701], "www.librarylicense.org": [9307], "habets.se": [7125], "flixbus.at": [5931], "www.searchmarketingexpo.com": [16367], "forum.zwame.pt": [18925], "amnesty.org.uk": [971], "cdn.taboolasyndication.com": [15899], "static.xsolla.com": [18593], "palmshop.hu": [9155], "wan.taobao.com": [15952], "googletagmanager.com": [6843], "www.libertyflailmowers.com": [9301], "portal.1link.mail.ru": [9874], "www.lps.ruhr-uni-bochum.de": [14030], "frozentux.net": [6233], "www.jdi.na.vutbr.cz": [17522], "avoinyliopisto.fi": [18975], "brianchristner.io": [19019], "nijc.brain.riken.jp": [13430], "*.zacks.com": [18775], "support.brightidea.com": [2330], "codefund.io": [3369], "review.coreboot.org": [3669], "snap.nal.usda.gov": [17209], "www.myfoxdetroit.com": [11320], "fi.ncsu.edu": [11492], "progreso.pl": [13131], "superteacherworksheets.com": [15623], "www.superherostuff.com": [15631], "attendee.gotowebinar.com": [6789], "forums.shutterfly.com": [14753], "i.microsoft.com": [10364], "cdn-static-1.medium.com": [10197], "marchforbabies.org": [9983], "rus.gogetssl.com": [6780], "www.s2member.com": [14065], "footlocker-inc.com": [6011], "adbutler.com": [518], "www.hitbtc.com": [7420], "litespeedtech.com": [9457], "kimsufi.com": [8892], "forum.sv.no": [14201], "planauskunft.swm.de": [14208], "savannah.nongnu.org": [5600], "www.webmercs.no": [4170], "www.raiffeisen.ch": [13527], "acsac.org": [265], "bydavidwittig.com": [2484], "proxfree.com": [13175], "cienciastierra.unizar.es": [17356], "ipv4.google.com": [6834], "kargo.com": [8795], "www.ranzcp.org": [13399], "about.zoosk.com": [18906], "eslabon.axosoft.com": [1477], "www.sel4.systems": [14433], "solutions.oracle.com": [12082], "news.techdirt.com": [16026], "ocronusa.net": [11713], "l0g.us": [9060], "diningservices.osu.edu": [11760], "g.ibtimes.co.uk": [7677], "openkeychain.org": [12038], "wms-na.assoc-amazon.com": [1288], "syndication.theguardian.com": [16288], "vipvpn.com": [17729], "dnscrypt.eu": [4061], "www.patrickbateman.biz": [12457], "downloads.chef.io": [3057], "scans.io": [14338], "www.uslaw.link": [17445], "s.iptorrents.com": [7798], "medicine.wustl.edu": [17993], "fx.yandex.by": [18648], "peepd.com": [12511], "*.exelator.com": [4996], "cryptovpn.com": [3866], "apachecon.com": [1088], "www.go.ncsu.edu": [11492], "www.simple-talk.com": [14819], "*.media.ipcdigital.co.uk": [7790], "alumni.leeds.ac.uk": [17318], "sidux-ev.org": [14767], "www.pornhublive.com": [12927], "hqpower.eu": [17596], "www.phpnet.org": [12251], "www.deepin.org": [4302], "www.mydigipass.com": [10828], "people.mit.edu": [9747], "trendmicro.com": [16717], "deprexis.com": [4376], "tarsnap.com": [15966], "*.gdata.pl": [6293], "www.policyreview.info": [12867], "*.barnesandnoble.com": [1678], "snagajob.com": [15024], "view.uk.adjug.com": [526], "www.vitamintalent.com": [17792], "www.nantes.indymedia.org": [8085], "soundgasm.net": [15162], "www.chrdnet.com": [19060], "www.grandhaventribune.com": [6891], "web.pipni.cz": [12257], "www.officiel-des-vacances.com": [11754], "disc-soft.com": [4540], "*.bytelove.it": [2490], "static.hsstatic.net": [7102], "browserid.org": [2370], "www.hertz.fr": [7345], "just-eat.com": [19328], "gamestop.com": [6427], "ysu.edu": [18742], "pims.copernico.net": [3650], "www.bintray.com": [1897], "usrjoy.com": [17448], "talklondon.london.gov.uk": [9578], "piwik.tiki.org": [16444], "pt.calameo.com": [2731], "www.startmail.com": [15410], "sitescout.com": [14871], "*.thingiverse.com": [16358], "pantelligent.com": [12371], "codecoon.com": [3364], "www.californiawalkintubcompany.com": [2751], "www.rally.org": [13535], "*.blogger.com": [2107], "donate.rsf.org": [13784], "exchange.plymouth.ac.uk": [12833], "*.hkyantoyan.com": [7081], "s2media.be": [14063], "webyog.com": [18175], "*.i.blip.tv": [2079], "*.planetdiscover.com": [12765], "lessthan3.com": [9259], "blog.gmocloud.com": [6343], "pentestpartners.com": [12530], "www.cue.me": [3912], "twosigma.com": [16898], "*.baylor.edu": [1706], "www.anybeat.com": [1077], "acrylicwifi.com": [485], "knowledge.verisign.com.sg": [17623], "kenai.com": [8845], "www.payrollapp.com": [12485], "www.medwatch.dk": [10138], "www.getjive.com": [8584], "buildd.debian.org": [4275], "www.mtna.org": [9800], "*.unc.edu": [16985], "egg.com": [5114], "smutty.com": [15015], "lists.ntp.org": [10965], "myus.com": [10794], "*.scribusstuff.org": [19462], "nomadesk.com": [11463], "mobile.dhl.de": [4034], "globalnews.iu.edu": [8064], "measure.richmetrics.com": [2450], "bannersnack.com": [1652], "se.wwte9.com": [17937], "webmail.eol.hu": [8327], "www.cui.uni-hamburg.de": [17167], "sys4.de": [15746], "www.amazon.ca": [913], "euroforum.de": [5412], "secure.manchester.gov.uk": [9944], "disneyprivacycenter.com": [4567], "dynstatus.com": [4823], "www.lpo.org.uk": [9097], "www.syxin.com": [15766], "www.mville.edu": [9955], "www.amazon.cn": [913], "www.stardrifter.org": [15402], "livestrong.com": [9502], "www.paodelicia.com": [12377], "eex.com": [5429], "scarborough.greenparty.org.uk": [6925], "www.mirrorreaderoffers.co.uk": [10447], "easypdfonline.com": [5028], "gemini.com": [6515], "www.sourceforge.net": [15174], "www.mtu.edu": [9802], "www.picomoney.com": [12664], "workspaces.acrobat.com": [480], "hertz247.is": [7349], "nkb.ch": [19333], "hertz247.it": [7352], "docs.fastly.com": [5687], "www.verdadmedia.com": [17618], "ensr.dict.cc": [4455], "www.andersonvalleypost.com": [4989], "advisor.wmtransfer.com": [18076], "www.searchlock.com": [19576], "www.academiapress.be": [434], "natmonitor.com": [11042], "www.soccerwaveuk.com": [15055], "hertz247.ie": [7351], "server314.com": [14603], "photomath.net": [12640], "www.jhalderm.com": [8470], "iq.intel.co.uk": [8207], "chrome.google.com": [6834], "api.picatcha.com": [12659], "www.tbspace.de": [19662], "ebas.ch": [4870], "neo900.org": [11146], "pdfreaders.org": [12501], "www.tlscompare.org": [15826], "clientarea.ewebscapes.com": [4991], "isohunt.to": [8371], "payu.ru": [12490], "mediaspace.nottingham.ac.uk": [11528], "discoveryplacekids.org": [4556], "centosblog.com": [2943], "www.lumimart.ch": [3645], "www.kkk.com": [8931], "*.ntwk45.com": [11559], "wavecon.de": [18008], "static.leboncoin.fr": [19351], "*.circleofmoms.com": [3156], "fotoalbumy.azet.sk": [1481], "howsmyssl.com": [7573], "ysubookstore.com": [18743], "broadly.vice.com": [17667], "market.jd.com": [8423], "www.elsevier.com": [5185], "*.yellowpages.ca": [18670], "assets.over-blog.com": [12156], "cdn10.iconfinder.com": [7921], "linksysbycisco.com": [9384], "jobandtalent.com": [19773], "m.washingtonpost.com": [17990], "*.www.ionaudio.com": [7777], "overviewproject.org": [12171], "www.a14electronics.com": [218], "www.lith.liu.se": [9084], "2pay.ru": [97], "*.motorolasolutions.com": [10615], "barnsley.objective.co.uk": [19454], "blog.silentcircle.com": [14786], "www.researchgate.net": [13796], "mtnafoundation.org": [9801], "www.revstr.com": [13851], "bbs.arkos.io": [1196], "ipage.com": [7802], "images.salon.com": [14253], "news.nationalgeographic.com": [11079], "i.groupme.com": [6970], "kanotix.de": [8782], "securitycenter.alipay.com": [817], "www.sade.com": [14220], "whatson.tameside.gov.uk": [19660], "www.essex.police.uk": [5366], "womenshealthspecialists.org": [18410], "pagpop.com.br": [12328], "*.fontspring.com": [5995], "anonguide.cyberguerrilla.org": [3961], "hostica.com": [7523], "showroom.qt.io": [13315], "docs.askives.com": [1267], "cdn.yb0t.com": [18680], "tr.godaddy.com": [6773], "www.anon-ib.net": [1037], "hh.se": [7061], "blog.101domain.com": [12], "lauramercier.com": [888], "www.bitcoinaverage.com": [1968], "www.cgran.org": [2591], "dsl.vodafone.de": [17814], "intra.fa.vutbr.cz": [17522], "www.iblocklist.com": [7902], "www.bhamcommunity.nhs.uk": [10913], "md01.plex.tv": [12814], "www.thegoodfight.fm": [16282], "khist.digitale-diathek.net": [4504], "paymentaccuracy.gov": [12476], "www.chromeexperiments.com": [3117], "www.nhseportfolios.org": [10914], "developers.dwolla.com": [4816], "www.jappix.org": [8517], "www.olioboard.com": [11782], "www.secure.switchkonnect.com": [15702], "sysward.com": [15749], "document.no": [4626], "*.penguinwebhosting.com": [12535], "mos.org": [10714, 10715], "*.elte.hu": [4925], "redteam-pentesting.de": [13664], "www.guardianproject.info": [7001], "www.bikeji.com": [1872], "list.jabber.at": [8473], "musecdn2.businesscatalyst.com": [2458], "www.kohls.com": [8956], "www.cesg.gov.uk": [2584], "www.endrift.com": [5249], "wuala.com": [18480], "*.shopstyle.fr": [14720], "www.fveydocs.org": [5609], "www.nodesecurity.io": [11452], "www.xagasoft.com": [18538], "www.ubykotex.com.au": [16922], "api.allmyvideos.net": [857], "local-rximage.nlm.nih.gov": [11052], "*.postgresql.us": [12974], "icdn.lenta.ru": [19356], "studiopress.com": [15541], "openvirtualizationalliance.org": [12027], "www.ivpn.net": [7869], "*.equip.org": [5335], "www.cisecurity.org": [2617], "status.qtcloudservices.com": [13316], "www.asp.net": [353], "psychologytoday.com": [13189], "tapetv-slowjam.de": [15956], "*.marketo.com": [10016], "shopstyle.*": [14720], "i7.walmartimages.com": [17965], "*.burlingtonfreepress.com": [2441], "fdworlds.net": [5703], "verisign.co.nz": [17623], "www.studentloans.gov": [15535], "imageoptim.com": [7979], "secure.eu.ikea.com": [7959], "m.lispac.lsbu.ac.uk": [9098], "*.battle.net": [1693], "bibliotek.kk.dk": [8730], "planning.bury.gov.uk": [19027], "exchws.illinois.edu": [17258], "innovateu.osu.edu": [11760], "openmoko.org": [12039], "lhc-statistics.web.cern.ch": [2575], "motherindia.just-eat.ie": [19328], "cockpit.swisscom.ch": [15698], "webmail.hs-esslingen.de": [7441], "www.barnebys.com": [1676], "*.care2.com": [2838], "www.littlesis.org": [9476], "jms1.net": [8587], "assetscdn.students.uophx.edu": [12633], "canadahelps.org": [2792], "telus.com": [16103], "*.ssl.hwcdn.net": [7639], "www.okturtles.org": [11774], "cdn.shortlist.com": [14734], "mywickr.com": [18281], "portal.sec.ibm.com": [7675], "namei.org": [11025], "www.domain-dns.com": [4646], "www.projectwonderful.com": [13142], "global.taobao.com": [15952], "www.allyou.net": [842], "www.illinoislawreview.org": [7966], "serverfault.com": [15359], "careers.nvidia.com": [10985], "www.webcruiter.no": [18114], "action.careinternational.org.uk": [19041], "*.specificclick.net": [15244], "nhncorp.com": [10909], "dashboard.jwplatform.com": [8467], "source.schokokeks.org": [19570], "avatars0.githubusercontent.com": [6680], "blog.stefan-betz.net": [15461], "undergraduateresearch.osu.edu": [11760], "fueleconomy.gov": [6242], "www.berkeleychessschool.org": [1786], "cpanel.com": [2651], "library.linode.com": [9387], "subscriberservices.mcclatchy.com": [10117], "cdn4.hola.org": [7445], "www.clara.io": [3210], "www.mkssoftware.com": [9755], "www.readyflowers.com": [13620], "www.clearlinux.org": [3233], "www.ledger.co": [9219], "www.atypon.com": [1342], "economy.com": [5062], "cpe.mitre.org": [10459], "reportingitc2.apple.com": [1120], "www.myesri.com": [5363], "www.notalwaysworking.com": [19441], "s-hertogenbosch.nl": [11132], "projectcounter.org": [2643], "sony.co.uk": [15144], "www.fhs.se": [5570], "hostbillapp.com": [7508], "mail.google.com": [6834], "openapi.baidu.com": [1619], "www.t-analytics.com": [19653], "apps.doncaster.gov.uk": [4678], "www.pantheon.io": [12372], "cibot.bufferapp.com": [2402], "getrave.com": [6601], "blogcatalog.com": [2100], "*.neimanmarcus.com": [15851], "www.ubjobs.buffalo.edu": [17297], "secure.adultshopping.com": [644], "www.bcash.com.br": [1715], "activtracker.johnshopkins.edu": [8611], "client.hip.live.com": [9483], "strikingly.com": [15523], "mailpoet.com": [9879], "www.sipgate.io": [14856], "www.bsdcan.org": [1542], "mtmweb.com": [10188], "heatmap.it": [7279], "login.skype.com": [14938], "geology.illinois.edu": [17258], "simplekb.com": [14827], "evanced.info": [5434], "sxnarod.com": [14640], "*.rtp.vc": [13475], "payoneer.com": [12483], "login.novell.com": [11530], "geoiptool.com": [19213], "anonymousspeech.com": [1050], "www.ibutsu.org": [19279], "webmail.mit.edu": [9747], "www.mint.ca": [10431], "postbydnx.com": [12961], "www.sedonaaz.gov": [3185], "democracy.io": [4353], "xact.spiceworks.com": [15266], "help.libreoffice.org": [9311], "cchgroup.com": [2547], "*.craigslist.org": [3756], "mypack.ncsu.edu": [11492], "deutsche-boerse.com": [4408], "citpmo.wusm.wustl.edu": [17993], "admin.over-blog.com": [12156], "www.savana.cz": [14308], "news-cdn.efinancialcareers.com": [4911], "khms.google.com": [6841], "chartmogul.com": [3016], "neobits.com": [11152], "www.workiva.com": [18442], "www.watson.ch": [19748], "goodmancenter.stanford.edu": [15382], "lmmp.nasa.gov": [10869], "*.eniro.se": [5276], "freecultr.com": [5594], "fitgeld.raiffeisen.ch": [13527], "taskforce.is": [15970], "hideki.hclippr.com": [7051], "www.myloc.de": [10769], "imgjam2.jamendo.com": [8502], "feedback.vodafone.co.nz": [17812], "coolutils.com": [3639], "cdn.findnsave.com": [5836], "centrum.active24.cz": [18938], "wp.outbrain.com": [12150], "blog.lizdenys.com": [9520], "kids.usa.gov": [17029], "numergy.com": [11579], "gratipay.com": [6898], "chillicothegazette.com": [3078], "myaccount.avira.com": [1449], "www.kirlism.ga": [19338], "ztunnel.com": [18767], "highland.gov.uk": [19249], "www.cell.com": [2932], "post.smzdm.com": [15017], "www.npmawesome.com": [11542], "www.uk2img.net": [16963], "uk.support.tomtom.com": [16540], "blackphone.ch": [2048], "sst.kirklees.gov.uk": [8916], "mrzine.monthlyreview.org": [10568], "www.gitian.org": [6681], "careers.bremer.com": [2300], "*.madmimi.com": [9835], "lib.polyu.edu.hk": [12891], "delta.no": [4337], "*.nexac.com": [11354], "surveys.fi.ncsu.edu": [11492], "*.80spurple.com": [198], "blog.details.com": [3551], "hackerspace.pl": [7149], "file.status.net": [15437], "www.landalcampings.de": [18490], "idnet.net": [7706], "www.poliisi.fi": [12868], "32red.com": [100], "secure.gktw.org": [6686], "mirc.com": [9746], "kde-apps.org": [19461, 19462], "www.parship.nl": [12416], "www.classpath.org": [6357], "dash.readme.io": [13608], "devices.yammer.com": [18647], "fr.spontex.org": [15287], "domainmanager.otenet.gr": [12132], "download.nos.nl": [10945], "mcdelivery.com.my": [10119], "nachhaltigesbauen.htwk-leipzig.de": [7114], "www.youtube.co.ug": [18709], "www.heapanalytics.com": [7270], "javelinstrategy.com": [8531], "onlinebackup.elgiganten.se": [5162], "www.hs.ias.edu": [7669], "*.lendo.se": [9247], "rooof.com": [13965], "learning.isc2.org": [7822], "www.gradimages.com": [6881], "download.formscentral.acrocomcontent.com": [482], "static1.businessinsider.com": [2454], "ssl.intel.com": [8209], "*.rbi.com.au": [13707], "ui.ptlogin2.tenpay.com": [16114], "www.path.com": [12451], "formkeep.com": [6041], "panopto.con.ohio-state.edu": [11761], "www.l2c.co.kr": [9062], "www.eduroam.cz": [5098], "catalysts.engineering.osu.edu": [11760], "tracking.borderfree.com": [2221], "recycling.org.ohio-state.edu": [11761], "sproutinc.com": [15319], "www.smartadserver.com": [14982], "a1.adform.net": [585], "www.pentestmag.com": [12544], "wishlistgranted.com": [18373], "www.tony.xyz": [16546], "csaf.cz": [2663], "myendnoteweb.com": [5242], "*.getadblock.com": [517], "polygon.com": [12892], "asia.allianz.com": [18950], "www.tvsupport.net": [16862], "privatetunnel.com": [13099], "provost.stanford.edu": [15383], "www.tcli.ed.gov": [4889], "oig.nasa.gov": [10869], "isyvmon.com": [8383], "home.f-secure.com": [5541], "center.atomz.com": [1329], "events.nyu.edu": [11293], "www.caktusgroup.com": [2723], "www.medialayer.com": [10155], "track.campaigneq.com": [2778], "spendbitcoins.com": [15262], "res-2.cloudinary.com": [3307], "www.foldingcoin.net": [5983], "spacetelescope.org": [7596], "yourmoney.ch": [19333], "soundviz.com": [15158], "manage.passkey.com": [12430], "authy.com": [1411], "gitweb.dragonflybsd.org": [4738], "www.brainstorage.me": [2272], "premiertaxfree.com": [13027], "ameba.jp": [18954], "tinkerforge.com": [16476], "my.securepoint.de": [14509], "cacert.org": [2520], "mwop.net": [10738], "www.cqrcengage.com": [2654], "eps.stanford.edu": [15383], "visitestonia.com": [17778], "intranet.fce.vutbr.cz": [17522], "www.clasohlson.se": [3215], "www.sendgrid.com": [14577], "mailarchive.ietf.org": [7721], "*.re-pear.com": [1123], "www.coverfire.com": [3732], "pool.telekom.hu": [9863], "6.darkroom.shortlist.com": [14734], "brandfolder.com": [2283], "www.honestpolicy.com": [7482], "www.guidefaq.com": [7008], "*.shopmania.org": [14717], "helpdesk.rz.ruhr-uni-bochum.de": [14031], "trust-center.verisign.com.au": [17623], "blog.sourcefabric.org": [15180], "*.wt-eu02.net": [18170], "*.bucyrustelegraphforum.com": [2389], "app.sourcedna.com": [15171], "mybitcointrade.com": [1956], "www.myhearstnewspaper.com": [7272], "ws.ghash.io": [6329], "www.microfocus.com": [10348], "magicaffiliateplugin.com": [9855], "forum.ubuntu-fr.org": [17096], "www.marshut.net": [10028], "services-prefecture.com": [14626], "www.nikon-lenswear.com": [11403], "helpdesk.samfox.wustl.edu": [17992], "*.thedailybeast.com": [16265], "www.inbenta.com": [8037], "compass-ssl.xbox.com": [18550], "www.e-mail-made-in-germany.de": [4842], "shib.raven.cam.ac.uk": [17243], "www.buycraft.net": [2472], "ctera.com": [2683], "www.marieclaire.co.uk": [9993], "snaps.php.net": [12250], "danforthuniversitycenter.wustl.edu": [17993], "lichfielddc.gov.uk": [19364], "my.cs.illinois.edu": [17258], "www.cloudsleuth.net": [3294], "photos.cams.com": [2787], "support.serverdensity.com": [14614], "*.research.net": [15659], "e56.taobao.com": [15952], "stanfordfund.stanford.edu": [15383], "*.involver.com": [8333], "www.certificate-transparency.org": [2968], "connect.jhu.edu": [16296], "fundfill.com": [6257], "fukuchi.org": [6246], "phil.camera": [19491], "static-cdn2.ustream.tv": [17451], "broadbandchoices.co.uk": [2352], "www.mixxx.org": [10471], "*.sagepay.com": [14238], "www.geenstijl.nl": [19211], "pay02.zong.com": [18895], "dashboard.fiksu.com": [5787], "epoch.com": [5325], "www.bbseyes.com": [1714], "nzbindex.nl": [11002], "apply.mebank.com.au": [9736], "ovhtelecom.fr": [11687], "msns.engineering.osu.edu": [11760], "*.craigsmith.net": [19088], "www.boxopus.com": [2259], "www.documentfreedom.net": [4628], "announcements.telegraph.co.uk": [16082], "api.joomla.org": [8627], "xslt.alexa.com": [795], "www.journeyed.com": [8649], "www.grc.com": [6380], "*.swu.de": [15709], "assets.sussan.com.au": [15664], "kohalibrary.halton.gov.uk": [19235], "learningzone.eastsussex.gov.uk": [19142], "www.pacw.org": [12204], "nypost.com": [18428], "help.avast.com": [1444], "classpath.org": [6357], "www.hellowebapp.com": [7300], "santander.co.uk": [14291], "www.paydirtgold.com": [12471], "www.silicon.fr": [11198], "*.virginmobileusa.com": [17736], "www-lt.net-a-porter.com": [11171], "healthyforkids.wpengine.netdna-cdn.com": [7267], "finaid.med.wustl.edu": [17993], "www.static.androidpit.info": [1009], "*.secure-donor.com": [14481], "monash.edu": [10541], "supertracker.usda.gov": [17209], "bb.cdn.gmru.net": [6349], "www2.gotomeeting.com": [6787], "i.duck.co": [4792], "25live-a.collegenet.com": [3429], "blog.mybb.com": [10823], "www.piratenlogin.de": [12718], "*.airtricity.com": [757], "vegasdealhunter.com": [17588], "kch.nhs.uk": [10913], "*.888173.net": [199], "www.rewag.de": [13416], "www.bufferbloat.net": [2403], "www.triodos.com": [16739], "cachemobile.williamhill.com": [18315], "desmume.org": [4243], "investigativedashboard.org": [8318], "readthedocs.com": [13611], "burlingtonfreepress.com": [2441], "sgno.org": [14112], "www.paradoxplaza.com": [12386], "www.simplysecure.org": [14834], "self.highland.gov.uk": [19249], "sitemanager2.adicio.com": [588], "global.stanford.edu": [15383], "manchester.ac.uk": [17327], "webmail.fsdata.se": [5605], "bib.schema.org": [19568], "www.win.tue.nl": [15874], "www.habbo.fi": [7122], "dft.gov.uk": [19116], "www.brighttag.com": [2324], "wifilib.com": [18285], "www.cryptocloud.ca": [3870], "corporate.livingsocial.com": [9517], "www.youtube.co.uk": [18709], "sadecehosting.com": [14221], "xato.net": [18545], "www.bosch-sensortec.com": [2226], "ssllabs.com": [14180], "www.cimbbank.com.my": [2606], "zamg.ac.at": [18783], "www.unitednuclear.com": [17207], "www.kapsi.fi": [8791], "www.pixoto.com": [12746], "www.oes.umd.edu": [17263], "ah.yimg.jp": [18685], "www.convertkit.com": [3628], "www.honcode.ch": [7089], "www.exploithub.com": [5509], "www.homebase.com": [7476], "origin-res.windows.microsoft.com": [10364], "soyoustart.com": [15052], "forms.ncl.ac.uk": [10884], "neu.directbox.com": [4529], "store.gentlelabs.com": [6528], "www.zdfsport.de": [19800], "parent.osu.edu": [11760], "*.goldencharter.co.uk": [6813], "australianclinicaltrials.gov.au": [1384], "www.forbesmagazine.com": [6018], "*.monitis.com": [10555], "politicalwire.com": [12872], "www.suburban.nl": [15570], "livememe.com": [9492], "www.visn23.va.gov": [17019], "madewith.unity.com": [17220], "www.oagaviation.com": [16927], "www.gfi.nl": [6320], "f1.support.mindtouch.com": [10409], "www.supercard.ch": [3645], "bro.org": [2346], "www.notalwayslearning.com": [19441], "cdn.animenewsnetwork.com": [18957], "calendario.cc": [2737], "grandhaventribune.com": [6891], "urs.earthdata.nasa.gov": [10869], "www.jobandtalent.com": [19773], "www.iospp.org": [7780], "jobs.web.de": [18050], "thepiratebay.se": [16227], "csis.dk": [2673], "bugs.debian.org": [4275], "manage.hosting.digiweb.ie": [4513], "threatpost.com": [16394], "www.dundeecity.gov.uk": [4801], "*.xe.com": [18509], "laynepublications.com": [9183], "*.gweb.io": [7032], "www.audits.uillinois.edu": [16960], "eventim.co.*": [5443], "ppn.nottingham.ac.uk": [11528], "tcga.cancer.gov": [2805], "www.dedigitaletopschool.nl": [4246], "crate.io": [3763], "www.opendnssec.org": [10941], "crm.fsfe.org": [5601], "www.435bymjc.com": [144], "cdn1.timminchin.com": [16450], "a3.sphotos.ak.fbcdn.net": [5700], "my.comscore.com": [3453], "www.irunsafe.com": [14035], "kunversion.recurly.com": [13652], "online.cyberaces.org": [3956], "*.wikinvest.com": [18297], "bedfordcornexchange.co.uk": [18987], "environment.leeds.ac.uk": [17318], "*.techopedia.com": [16047], "xmlgold.eu": [18521], "connect.mail.ru": [9874], "foodler.com": [6005], "secure.swisspostbox.com": [12949], "www.netbank.de": [11216], "communication.sikur.com.br": [14785], "*.cengagebrain.co.uk": [2937], "tickets.gwr.com": [16426], "www.themonthly.com.au": [16298], "*.startpage.com": [8405], "apps.rhb.ch": [13857], "fb.finam.ru": [5821], "holtwick.it": [7460], "www.mujbiz.cz": [10690], "www.prospect.org": [16241], "net-safe.info": [11180], "www2.hs-esslingen.de": [7441], "prace.cz": [13008], "webtask.io": [18161], "blog.trailofbits.com": [16656], "blog.zimperium.com": [18869], "artpractical.com": [1218], "www.irccloud.com": [8354], "www.cimacorp.net": [5627], "abine.com": [419], "xserver.*.jp": [18592], "federatedmedia.net": [5722], "stockport.nhs.uk": [10913], "*.worldofwarplanes.com": [18461], "austinfitmagazine.com": [1377], "shop.corsair.com": [3687], "socialsecurity.gov": [15060], "www.it-agenten.com": [7838], "eshopbrokers.co.uk": [19131], "www.bullockinc.com": [2422], "mailtest.nanog.org": [11490], "www.billdesk.com": [1876], "ak-c.ooyala.com": [11900], "powerlineman.com": [13002], "www.rethink.org": [19549], "garagegames.com": [6457], "starsearchcasting.com": [15398], "online.sberbank.ru": [14322], "intelligence.org": [8215], "support.ukrnames.com": [17126], "cdn02.gitter.im": [6684], "jboss.org": [8417], "www.petakillsanimals.com": [12241], "about.gitlab.com": [6678], "*.genivi.org": [6317], "www.codehs.com": [3349], "coupons.paypal.com": [12467], "campaigns.f-secure.com": [5541], "arc.osu.edu": [11760], "stacks.stanford.edu": [15383], "piwik.univention.de": [17225], "mytalkdesk.com": [19420], "www.doesburg.nl": [11132], "ecustomeropinions.com": [4888], "www.sci.uma.es": [17140], "akolaproject.org": [768], "www.markmail.biz": [10004], "www.simlar.org": [14812], "s.dsimg.com": [4541], "ncsi.com": [10887], "www.oesar.osu.edu": [11760], "iseclab.org": [8365], "adafruit.com": [550], "udd.debian.org": [4275], "fox-toolkit.org": [5589], "dl.lib.brown.edu": [2367], "*.vcommerce.com": [17580], "download-cdn.gfe.nvidia.com": [10985], "london.greenparty.org.uk": [6925], "www.aea.se": [679], "web1.dist.maricopa.edu": [9989], "163.com": [35], "weebly.com": [18178, 18179], "metric.yandex.com": [18651], "*.ideafit.com": [7926], "teylingen.nl": [11132], "ad3.netshelter.net": [11208], "gavelbuddylive.com": [6471], "searchmarketingnow.com": [16367], "a2-images.myspacecdn.com": [10848], "www.happyassassin.net": [7201], "www.moerdijk.nl": [11132], "cdn.underwearexpert.com": [17161], "services.salford.gov.uk": [19562], "*.fbo.gov": [5714], "www.labelsig.com": [9125], "www.teamsciencetoolkit.cancer.gov": [2805], "code.not-your-server.de": [11513], "china.taobao.com": [15952], "console.theplatform.com": [16230], "www.clkrev.com": [3272], "www.i0.cz": [7655], "www.dbforums.com": [4011], "www.osdv.org": [11666], "api.drupal.org": [4780], "komments.net": [8966], "watersgeo.epa.gov": [4937], "fe-ddis.dk": [5563], "www.museumsarbeit.htwk-leipzig.de": [7114], "www.mousematrix.com": [10625], "vtechworks.lib.vt.edu": [17740], "www-conf.slac.stanford.edu": [15383], "mt.libreoffice.org": [9311], "labelsig.com": [9125], "assets.flameeyes.eu": [5901], "wiki.answers.com": [1060], "cdn.ology.com": [11784], "marketing.yell.com": [19790], "cdn.fnmag.co": [5583], "portal.fastserv.com": [5682], "thisproxykillscensors.uk": [19678], "utrecht.nl": [11132], "*.fasthosts.co.uk": [5685], "autodiscover.posteo.de": [12969], "www.erc.edu": [4949], "secure-u.de": [14486], "*.synopsys.com": [15739], "www.starwoodhotels.com": [15414], "scea.com": [14089], "projectlava.xyratex.com": [18609], "build.kde.org": [8718], "www.eplus-gruppe.de": [4845], "origin.urbandictionary.com": [17407], "internal.ncl.ac.uk": [10884], "uk.sitestat.com": [14885], "www.threattracksecurity.com": [16395], "www.bitcoin-central.net": [1957], "websense.stanford.edu": [15383], "emsonline.cardiff.gov.uk": [19039], "ebank.spdb.com.cn": [19615], "kabelkiosk.de": [8761], "realfavicongenerator.net": [19542], "a.uguu.se": [17118], "visitante.acesso.uol.com.br": [16998], "cee.mitre.org": [10459], "*.icinga.org": [7919], "dev.groupme.com": [6970], "members.orcid.org": [11909], "www.backbox.org": [1597], "session.snel.com": [15034], "neovim.io": [19429], "sitesearch.sli-systems.com": [14132], "accesslink.ucsd.edu": [16939], "media.kb.iu.edu": [8064], "slf.se": [14131], "my.robokassa.ru": [13927], "endrift.com": [5249], "www.dpbolvw.net": [3481], "securelogin.poste.it": [12965], "volksverschluesselung.de": [17829], "developer-dev.allizom.org": [856], "support.jwplayer.com": [9589], "www.soyoustart.com": [15052], "cdn.static2img.com": [3922], "icares.wustl.edu": [17993], "www.webmaster.yandex.kz": [18652], "s-passets-cache-ak1.pinimg.com": [12691], "sejour.officiel-des-vacances.com": [11754], "mining.cex.io": [2587], "backstage.pragmaticstudio.com": [13014], "www.6connect.com": [185], "*.crainsnewyork.com": [3758], "www.thedma.org": [16264], "c.itunes.apple.com": [1120], "www.clearxchange.com": [3232], "www.sandstorm-media.de": [14281], "mariadb.org": [9988], "aits.uillinois.edu": [16960], "genome-cancer.ucsc.edu": [17305], "crowdcontrol.lotame.com": [9613], "tdc-wholesale.com": [15796], "www.hea.net": [7057], "iipvv.nl": [7740], "intellij-support.jetbrains.com": [8559], "assets-sports.vice.com": [17667], "assetspost.com": [2986], "*.justgive.org": [8690], "cdn.motorola-2.com": [10615], "lbre.stanford.edu": [15383], "www.bestwebhostinggeek.com": [870], "*.tonytan.cn": [16548], "www.vce.com": [17475], "cricket.redbull.in": [13666], "gimp.org": [19218], "wicworks.nal.usda.gov": [17209], "www.flux.utah.edu": [17288], "htc2.accu-weather.com": [465], "official.contest.yandex.com": [18651], "www.hollywoodoutlaws.com": [7457], "caskstore.com": [2884], "www.justeat.nl": [19328], "redweb.com": [13702], "www.mikeash.com": [10383], "www.nordu.net": [11481], "cdn.cpmstar.com": [2647], "couchsurfing.org": [3700], "humanbrainproject.eu": [7608], "rpc.mail.aol.com": [321], "catalog.wustl.edu": [17993], "1link.mail.ru": [9874], "sproutvideo.com": [15320], "www.fluidhosting.com": [5952], "secure.acuityscheduling.com": [504], "*.savecrypto.org": [14311], "uvic.ca": [17076], "*.incisivemedia.com": [8045], "support.covad.com": [3725], "cutedigi.com": [3944], "adpselect.com": [271], "mappedinisrael.com": [9973], "pixel.fsg.ulaval.ca": [17229], "killscreen.com": [8887], "www.localphone.com": [19370], "styles.freescale.com": [6183], "bugs.openmamba.org": [19465], "kabelmail.de": [8760], "sqsp.com": [15328], "xanmod.org": [19782], "portal.velleman.eu": [17596], "*.pearson.com": [12506], "nextgen-gallery.com": [11367], "*.csis.gc.ca": [2802], "www.slickproductsusa.com": [14957], "www.quitter.is": [13369], "io-gw.vutbr.cz": [17522], "*.truecrypt.org": [16772], "www.dentistry.uic.edu": [17231], "hccdashboard.web.cern.ch": [2575], "sublime.wbond.net": [19749], "www.appguru.com": [1106], "boutique.lemonde.fr": [9192], "tv.yandex.com.tr": [18649], "www.cis-india.org": [2615], "www1.ethz.ch": [4975], "cvs.debian.org": [4275], "dafdirect.org": [4102], "www.opinionlab.com": [12054], "delta.com": [4336], "s-pankki.fi": [14060], "zlatkovic.com": [18877], "www.thinksteroids.com": [9737], "applet.danid.dk": [4132], "news.mit.edu": [9749], "www.simplefin.org": [14821], "*.cmu.edu": [2859], "applebees.com": [1124], "qgazette.com": [13347], "liberty-human-rights.org.uk": [9300], "www.bioinfobank.com": [1899], "finanzcheck.de": [19179], "rfxn.com": [13856], "coolwebscripts.com": [3640], "secure.websitealive.com": [18149], "www.ntualumni.org.uk": [10972], "examiner.com": [5480], "vitrinepix.com.br": [19738], "ads.ookla.com": [11894], "*.unicaondemand.com": [17181], "*.gotvape.net": [6854], "www.coursefinder.io": [3717], "webplatform.org": [18079], "www.web4all.fr": [18052], "kornerstoneadmin.com": [8989], "preferences-mgr.truste.com": [15856], "youtube.hu": [18709], "slimerjs.org": [19600], "neosmart.net": [11151], "q3.qlogo.cn": [13304], "www.hs-esslingen.de": [7441], "z.jd.com": [8422], "riot.mail.ru": [9874], "cdn.lib.newsvine.com": [11348], "openrightsgroup.org": [12023], "americaslongestwar.com": [951], "noisey.vice.com": [17667], "www.freesound.org": [6184], "www.math.ens.fr": [4930], "sas.fazekas.hu": [5697], "www.steamrep.com": [15455], "meinfernbus.de": [10236], "www.vz-nrw.de": [17617], "www.ceop.police.uk": [19049], "geizhals.at": [6510], "www.benefit.nl": [1776], "theoldreader.com": [16225], "*.superstats.com": [15617], "broadcomfoundation.org": [2356], "www.ttu.ee": [15936], "ambx.com": [923], "beacon.savingscatcher.walmart.com": [17964], "niteflirt.com": [11424], "omiai.yahoo.co.jp": [18640], "*.smartplanet.com": [14991], "static.prediction.io": [13023], "plista.com": [12818], "ll.*.utorrent.com": [19708], "ec.europa.eu": [5421], "proxy4.switchadhub.com": [15701], "thechive.com": [16258], "www.fareham.gov.uk": [5660], "osscvs.cern.ch": [2574], "dev.mutt.org": [10729], "jobmarket.nytimes.com": [11000], "hohndel.org": [3503], "*.startjesucces.nl": [19277], "*.chapman.edu": [3008], "curiosity-driven.org": [3930], "wsjsafehouse.com": [11321], "*.spreadshirt.ch": [15300], "common.mutualofamerica.com": [10733], "remotestorage.io": [13761], "admin.carezone.cz": [2849], "myaccount.stubhub.com": [15534], "www.developer.blender.org": [2067], "www.imagecomics.com": [7977], "lexisnexis.com": [13704], "harakah.net.my": [7202], "www.videogold.de": [17686], "cloudsso1.cisco.com": [3162], "tr1.kaspersky.com": [8806], "www.fidh.org": [5571], "www.homebase.co.uk": [7476], "www.apps4.lbhf.gov.uk": [9064], "symplicity.com": [15721], "*.ad-srv.net": [15962], "httpswatch.nz": [7109], "www.nerdsnook.com": [11160], "www.ativismo.org.br": [1315], "jobs.stacksocial.com": [15363], "kb.optimisemedia.com": [12070], "bugs.dokuwiki.org": [4638], "jiaofei.alipay.com": [817], "tachanka.org": [15900], "connman.net": [3578], "trend.omnitecinc.com": [11801], "b3-uk.mookie1.com": [10576], "itsupport.usc.edu": [17278], "sedorset.greenparty.org.uk": [6925], "aa.uw.edu": [17077], "www.s-3.com": [14056], "steenwijkerland.nl": [11132], "go.coverity.com": [3734], "d.turn.com": [16840], "secure.infotoday.com": [8103], "muse.jhu.edu": [16296], "content8.flixster.com": [5933], "cte.ace.beta.advertising.com": [661], "api.cyph.com": [3982], "haka-ds.funet.fi": [6264], "zerotier.com": [18844], "netways.de": [11259], "www.orb-international.com": [11659], "*.csulb.edu": [2744], "*.badgeville.com": [1606], "knappschaft-bahn-see.de": [8940], "npac.com": [10946], "*.safe-mail.net": [14225], "unrestrict.li": [17367], "www.deutsche-boerse.com": [4408], "orionmagazine.org": [12108], "www.zend2.com": [18822], "www.fcitx-im.org": [5702], "is.seagate.com": [14437], "status.jiveon.com": [8586], "abo.spiegel.de": [15272], "companieshouse-online.hmrc.gov.uk": [7084], "communities.oracle.com": [12082], "webmail.wilmerhale.com": [18319], "inspiration.dal.net": [4003], "atlantis.sk": [1319], "tarlogic.com": [15965], "*.reporo.com": [13780], "shopmania.com": [14717], "www.kdenlive.org": [8831], "wwte1.com": [17937], "www.pritunl.com": [13078], "support.groundspeak.com": [6967], "noblehour.com": [11447], "readwrite.com": [13613], "www.shoppingcartelite.com": [14729], "asset-7.soupcdn.com": [15167], "www.beatsmedia.com": [1738], "manchester.pirateparty.org.uk": [12714], "glo.bo": [1920], "trustpilot.com": [16798], "www.cendio.com": [2934], "*.codecov.io": [3366], "cozumpark.com": [3742], "pirateparty.org.uk": [12714], "tv.yandex.kz": [18652], "entcss.s-msn.com": [14059], "applications.cpanel.com": [2651], "www.pubs.ext.vt.edu": [17740], "italerts.usc.edu": [17278], "decisionneurosciencelab.org": [4284], "auction1.taobao.com": [15952], "www.mcmaster.ca": [10122], "www.skylineregistrations.co.uk": [14936], "yaroslavl.rt.ru": [13469], "www.engr.uw.edu": [17077], "collabora.com": [3419], "www.sil.org": [14123], "metrics1.citibank.com": [3171], "images.obi.de": [19452], "www.ninthdecimal.com": [11420], "quiterss.org": [13368], "www.goodcrypto.com": [6827], "targobank-kredit.web.de": [18050], "porteus-kiosk.org": [12936], "ee.stanford.edu": [15383], "media.ldscdn.org": [16219], "ticketnet.fr": [16422], "www.upvoted.com": [17403], "img.books.ch": [16171], "lh5.google.co.*": [6837], "louiseharrisoncouture.com": [9621], "lists.freedesktop.org": [6126], "forocoches.com": [6048], "connect.charter-business.com": [3019], "traffic.outbrain.com": [12150], "webmail.szm.com": [15767], "files.choicecheapies.co.nz": [12195], "www.iseclab.org": [8365], "cs.fit.edu": [5942], "pjrc.com": [12261], "jococruise.com": [8588], "oblic.com": [11608], "redding.com": [4989], "montyprogram.com": [10569], "www.openmw.org": [11954], "velox-project.eu": [17600], "portal.ultradns.com": [17131], "*.omniupdate.com": [11797], "musicnotes.com": [10720], "press.blip.tv": [2079], "www.bluecoat.com": [2130], "www.staffordshire.police.uk": [15371], "epsom-sthelier.nhs.uk": [10913], "labsafety.jhu.edu": [8437], "*.cms.gov": [17027], "odi.osu.edu": [11760], "www.mochahost.com": [10507], "101domain.com": [12], "carrier-lost.org": [2863], "*.exacttarget.com": [5478], "imagery.pragprog.com": [13012], "www.4gamer.net": [160], "test1.southend-on-the-move.org.uk": [19612], "www.b.switchadhub.com": [15701], "om.zdnet.com.au": [18757], "pic2.zhimg.com": [18856], "commonapp.org": [3483], "www.alkohol.cz": [823], "autisticadvocacy.org": [1412], "download.cc.ntu.edu.tw": [10971], "www.plant-world-seeds.com": [12774], "ncatools.education.gov.uk": [19149], "download.f-secure.com": [5541], "www.whitehothair.co.uk": [18252], "uwm.edu": [17294], "airpair.com": [747], "blog.atechmedia.com": [368], "digital.freitag.de": [6194], "jira.upc-cablecom.ch": [19716], "culturalsurvival.org": [3916], "comkort.com": [3469], "fa.law.yale.edu": [18642], "inspirationgreen.com": [8177], "lists.openitp.org": [11947], "*.helpserve.com": [8824], "xtraz.icq.com": [7690], "asjo.org": [1260], "inside.wustl.edu": [17993], "www.despora.de": [4394], "coveralls.io": [3730], "www.construx.com": [3593], "ens-lyon.org": [5285], "justgetflux.com": [5956], "www.sciencenode.org": [14381], "www.szm.com": [15767], "patientslikeme.com": [12455], "mail.telekom.sk": [16088], "www.southeasternhampshireccg.nhs.uk": [10913], "matsuev.com": [4364], "www.syncthing.net": [15732], "www.trideci.com": [16722], "www.klimaschutzpartner-berlin.de": [8933], "www.compaq.com": [3510], "vpn.c3noc.net": [2502], "www.metooo.io": [10317], "www.adadvisor.net": [15785], "stanfordhealthcare.org": [15385], "sourcesup.cru.fr": [3829], "traktr.news.com.au": [11338], "portfolio.ncl.ac.uk": [10884], "www.the-fca.org.uk": [16190], "administrator.de": [18939], "blog.rackspace.com": [13506], "*.eurexrepo.com": [5399], "www.lugons.org": [9108], "business2.danskebank.dk": [4145], "www.casetext.com": [2878], "www.rackspace.nl": [13505], "www.campusvisit.osu.edu": [11760], "rankwise.net": [13549], "www.opentemplate.org": [19461], "*.ibtimes.com": [8256], "mbsportsweb.ca": [9721], "youtube.ch": [18709], "oneeyedman.net": [11846], "s.tribalfusion.com": [16725], "lh3.google.*": [6837], "beginnertriathlete.com": [1754], "www.badgekit.org": [1605], "wpveda.com": [18470], "communicatelive.co.uk": [3499], "blog.filestack.com": [5801], "www.theoldreader.com": [16225], "tele2.lt": [16069], "forums.uberent.com": [17085], "www.just-eat.no": [19328], "startpage.com": [8405], "alojamiento.unizar.es": [17356], "register.nzpug.org": [19449], "static.projects.iq.harvard.edu": [7219], "www.feedly.com": [5738], "www.godvillegame.com": [6804], "chelyabinsk.rt.ru": [13469], "www.cpge.utexas.edu": [17285], "www.modern.ie": [10519], "ieonline.microsoft.com": [10364], "emporioalberghiero.com": [5219], "csszengarden.com": [3898], "yaprobki.ru": [18660], "mvastorage.microsoft.com": [10364], "mba.local.ch": [9536], "derpicdn.net": [4381], "nextag.*": [11363], "bugzilla-dev.allizom.org": [856], "castel-bayart.com": [2890], "wholesalelabels.com": [18265], "*.soundstrue.com": [15164], "static.eat.ch": [4867], "megastock.ru": [10232], "westmidlands.greenparty.org.uk": [6925], "*.ametsoc.org": [312], "c.fixunix.com": [5896], "www.marvelstore.com": [10040], "thegreatcoursesplus.com": [16284], "vivolab.unizar.es": [17356], "syndication.washingtonpost.com": [17990], "digia.com": [4475], "fc.webmasterpro.de": [19751], "hgo.se": [7058], "de.foursquare.com": [6082], "www.admatic.com.br": [605], "lists.opencsw.org": [11926], "www.ul.to": [3952], "blog.plex.tv": [12814], "jlos.go.ug": [17115], "secure.disc-soft.com": [4540], "wiki.engr.illinois.edu": [17258], "owamail.stanford.edu": [15383], "fluiddynamics.engineering.osu.edu": [11760], "www.cryptad.com": [3842], "tada.com": [15902], "www.pinkbike.com": [12694], "vip.vodafone.co.uk": [17813], "bgt.taobao.com": [15952], "sale.jd.com": [8422], "ironsearch.com": [7817], "fcns.eu": [6223], "www.tlhp.cf": [15823], "centrum.vas-hosting.cz": [19729], "support.splashthat.com": [15281], "www.tailgatersparking.com": [15912], "www.keen.io": [8836], "onlineregistrationcenter.com": [11877], "kosimak.com": [8992], "*.jumptap.com": [8677], "devfaq.kaywa.com": [8827], "static.ichkoche.at": [7918], "www.firstamendmentcoalition.org": [5874], "www.securityledger.com": [14531], "craftysyntax.com": [3755], "padmapper.com": [12323], "spctrm.stanford.edu": [15382], "veil-framework.com": [17592], "esuite.pjm.com": [12260], "www.viviscal.co.uk": [17799], "www.barikat.gr": [6915], "gnu.pl": [6358], "shop.oo-software.com": [11893], "tdcws01.tandridge.gov.uk": [15944], "goodcrypto.com": [6827], "proteansec.com": [13165], "auth.elsevier.com": [5185], "mail.metasploit.com": [10310], "www.simquadrat.de": [14836], "domcomp.com": [4666], "nc.me": [10878], "www.bitkonan.com": [1999], "www.justmoon.net": [8700], "app.xaraonline.com": [18544], "karty.skylink.cz": [14937], "pogoda.yandex.com": [18651], "clevelandclinic.org": [3236], "*.mediaworks.co.nz": [10167], "tamlab.engineering.osu.edu": [11760], "database.com": [4194], "www.kernel-recipes.org": [8856], "sbfs.spatialbuzz.com": [15230], "www.tribecafilm.com": [16727], "piper.sbb.ch": [15693], "bbbonline.org": [1494], "giving.illinois.edu": [17258], "www.codebutler.com": [12971], "namgate.nes.scot.nhs.uk": [10913], "pebblepad.co.uk": [12509], "www.aeriagames.com": [686], "genius-download-2.itunes.apple.com": [1120], "forum.fruct.org": [5595], "www.hamstudy.org": [7179], "ads.admarvel.com": [529], "www.venturebeat.com": [17611], "tunnelbroker.com": [16834], "future.mit.edu": [9749], "ads.aftonbladet.se": [716], "cal1card.berkeley.edu": [17240], "freedom-to-tinker.com": [6167], "cryptalloy.de": [3844], "highon.coffee": [7399], "www.madeinafreeworld.com": [9837], "houten.nl": [11132], "webmail.netscape.com": [11248], "www.serviceuptime.com": [14624], "asseenontv.com": [1240], "www.aidsmap.com": [740], "contributors.gettyimages.com": [6620], "watch.yandex.by": [18648], "hilfe-center.1und1.de": [68], "catedras.unizar.es": [17356], "es.lastminute.com": [9165], "profile.accounts.firefox.com": [5859], "trip.jd.com": [8423], "appsplus1.woolworths.com.au": [18422], "policy.cookiereports.com": [3635], "www.nasaimages.org": [4089], "phpmyadmin.ouvaton.coop": [12155], "webxmedia.co.uk": [17900], "pdcnet.org": [12626], "www.cosmote.gr": [3691], "www.advancedligo.mit.edu": [9747], "tld.pl": [16509], "janus.dsi.cnrs.fr": [6195], "ezrss.it": [5004], "*.elearnsecurity.com": [4928], "mssqlbackup.active24.cz": [18938], "www.familie.rh.aok.de": [317], "webedit.medsci.ox.ac.uk": [17271], "blog.webmaker.org": [10663], "cabal.ws": [2699], "mybuys.com": [10747], "uclan.ac.uk": [17307], "www.webglobe.sk": [18119], "incloak.es": [8030], "www.staytoday.com": [15443], "www.peeringdb.com": [12520], "*.ucsb.edu": [17242], "www.photo-mark.com": [10002], "idportal.polyu.edu.hk": [12891], "www.thegreatcourses.com": [16193], "euronuclear.org": [5424], "ads11.contentabc.com": [3612], "www.freezone.co.uk": [6187], "en.bbs.deepin.org": [4302], "balpa.org": [2339], "business.gov.au": [2453], "www.dietmardreier.de": [19119], "www.energiesparcheck.at": [18284], "arb.rt.com": [13468], "internews.org": [8290], "*.image-repository.com": [17670], "www.are.berkeley.edu": [17240], "icewarp.savana.cz": [14308], "splashdata.com": [15280], "www.gml.cz": [6757], "devel.gajim.org": [6406], "dellin.ru": [19109], "www.zen-cart.com": [18819], "www.pistoncloud.com": [12727], "modelnprod.zilog.com": [18866], "bugsnag.com": [2408], "packages.qa.debian.org": [4275], "pk.godaddy.com": [6773], "styles.ofcom.org.uk": [11732], "www.alainwolf.ch": [773], "spidweb.com": [15270], "maps.tmbc.gov.uk": [15827], "www.amazonsupply.com": [916], "image.bilio.com": [1875], "*.esupport.acenet-inc.net": [471], "www.rasp.yandex.by": [18648], "comicstore.marvel.com": [10038], "*.adverticum.net": [658], "riscos.com": [13432], "rega.ch": [13726], "store.agra-net.com": [733], "a2zinc.net": [223], "support.onelogin.com": [11835], "consult.cityoflondon.gov.uk": [3190], "*.dynamitedata.com": [4831], "digital.gamefly.com": [6419], "*.decipherinc.com": [4283], "*.singlefeed.com": [14848], "*.publicwhip.org.uk": [13216], "taxi.ya.ru": [18626], "agrisupply.com": [735], "na.apachecon.com": [1088], "www.mysociety.org": [10786], "atohio.engineering.osu.edu": [11760], "img.mixi.net": [10467], "www.dopplr.com": [4684], "secure.sendyourfiles.com": [14579], "www.netsemi.com": [11215], "lk.redhat.com": [13675], "peopleschoicecu.com.au": [12552], "*.prx.org": [12292], "onedrive.live.com": [9483], "www.256.com": [81], "*.m-net.de": [9691], "www1.tauntondeane.gov.uk": [15978], "wipik.bit.nl": [1523], "www2.nero.com": [11162], "www.mapy.cz": [9977], "*.docelu.pl": [4614], "br.godaddy.com": [6773], "www.asseenonresponsetv.com": [1276], "worldsecuresystems.com": [613], "seedprod.com": [14549], "wosign.com": [18393], "*.withknown.com": [18381], "www.beginlinux.com": [1753], "macosforge.org": [9820], "opencryptoaudit.org": [12004], "publisher.assetstore.unity3d.com": [17220], "www.frauen.htwk-leipzig.de": [7114], "staging.www.gigya.com": [6659], "www.avuecentral.com": [1458], "collaborate.admin.uillinois.edu": [16960], "*.listonic.com": [9452], "www.materiel.net": [10065], "f0.thejournal.ie": [16224], "lib.rus.ec": [9285], "www.nlnetlabs.nl": [10941], "www.regiobank.nl": [13729], "sovereignman.com": [15198], "cybercamp.es": [3958], "lhc-div-miwg.web.cern.ch": [2575], "dotcomhost.com": [4692], "wilmerhale.com": [18319], "*.invoca.net": [8330], "kitematic.com": [8924], "media-dev.ycharts.com": [18613], "www.catchy.com": [2900], "abiggersociety.com": [384], "lejournal.cnrs.fr": [6195], "www.paddle.com": [12324], "plannedparenthood.org": [12772], "forums.lshtm.ac.uk": [9576], "*.lyris.com": [9686], "www.maplesoft.com": [9972], "*.datamappi.fi": [4203], "www.shopperapproved.com": [14727], "www.weakdh.org": [18031], "isshub.io": [8377], "bloom.bg": [1920], "www.o2-tv.cz": [16076], "get.adobe.com": [615], "assets.microsoft.com": [10364], "*.righttobuy.communities.gov.uk": [19073], "*.thewordpro.com": [18430], "www.union.uiuc.edu": [16956], "surfingip.info": [3533], "www.dmv.ca.gov": [2741], "pwmt.org": [13262], "auth.dtu.dk": [16031], "www.gresille.org": [6945], "embeddedanalytics.com": [5199], "www.donorregister.nl": [11132], "www.openlistings.co": [12019], "gnupg.org": [6762], "secure.vidyard.com": [17705], "www.res-x.com": [2972], "www.fit.edu": [5942], "z.mozest.com": [10649], "api.wienerstadtwerke.at": [18284], "www.bitcoincharts.com": [1978], "blog.cartercenter.org": [2866], "www.rpw.sh": [14006], "www.fantlab.ru": [5657], "transip.nl": [16660], "planetblood.deathmask.net": [4266], "www.dinclinx.com": [9841], "statistieken.groenlinks.nl": [6962], "www.nieuwsblad.be": [11393], "mysn.de": [10846], "www.ort.fi": [15610], "brandnewbooty.com": [2280], "edplivebands.edp.pt": [4896], "poste.it": [12965], "*.leadlander.com": [9194], "www.allcoin.com": [828], "store.servicenow.com": [14622], "ieee.osu.edu": [11760], "portal.mytum.de": [10789], "images.autobytel.com": [1425], "forum-pl.msi.com": [9792], "398-fz.rkn.gov.ru": [13913], "timtaubert.de": [16452], "*.fireeye.com": [5852], "www.gemseek.com": [6520], "bchydro.com": [1509], "wie.osu.edu": [11760], "flyersrights.org": [5962], "www.sheffield.indymedia.org.uk": [8084], "secure-hwcdn.libsyn.com": [9321], "s3.drafthouse.com": [774], "www.mybenefitscalwin.com": [10745], "*.ex.ac.uk": [17251], "selinuxproject.org": [14099], "api.metooo.io": [10317], "jenkins.linuxcontainers.org": [9420], "subscribe.theguardian.com": [16288], "www.adview.pl": [666], "svn.boost.org": [2211], "support.soe.ucsc.edu": [17305], "*.lastpass.com": [9163], "www.internetlivestats.com": [8283], "spin.atomicobject.com": [1327], "tpvs2.hmrc.gov.uk": [7084], "www.edrcdn.com": [4897], "*.imgsmail.ru": [8001], "app.netlify.com": [11239], "iis.se": [7742], "www.c-ware.de": [2497], "mediastorehouse.net": [10146], "makerble.com": [9914], "wwwwwwwwwwwwwwwwwwwwww.bitnik.org": [2012], "img3.leboncoin.fr": [19351], "ebanking.cash.ch": [19043], "onthemap.staffordshire.gov.uk": [15370], "mrcote.info": [10674], "www.mymoustache.net": [10770], "www.timeweb.ru": [16457], "ritningar.uppsalahem.se": [17397], "visuals.soundcloud.com": [15161], "sr.stanford.edu": [15383], "*.flinto.com": [5923], "*.hosting2go.nl": [7526], "imp2.bizographics.com": [2032], "www.enfuse.co": [7006], "binaryturf.com": [1890], "victorops.com": [17671], "www.technovelty.org": [16046], "webmaptcs.trafficmap.ch": [19663], "frab.cccv.de": [2544], "www.ssl-trust.com": [14175], "transparencycamp.org": [15601], "blog.affiliatewindow.com": [4485], "thinkfaster.co": [16360], "euroland.com": [5418], "*.top.list.ru": [9448], "www.tema.liu.se": [9084], "www.umeahackerspace.se": [17143], "enalean.com": [5229], "winscp.net": [18329], "globalhealth.stanford.edu": [15382], "*.hoseasons.co.uk": [18490], "static.packagelab.com": [12314], "fr.ch": [19648], "rogerfederershop.com": [13948], "www.flitto.com": [5929], "bugzilla.quagga.net": [13325], "www.themler.com": [16343], "ovh.it": [12173], "www.drawception.com": [4744], "desilva.biz": [4247], "5apps.com": [177], "www.commsy.uni-hamburg.de": [16951], "www.utica.edu": [17454], "secure.*.onsugar.com": [11815], "ovh.ie": [12173], "blog.jetbrains.com": [8558], "www.cs-cart.com": [2661], "shop.bestpractical.com": [1807], "www.daft.ie": [4104], "www.antifa.cz": [1068], "www.libsyn.com": [9321], "immunityinc.com": [8007], "news.istella.it": [8381], "socallinuxexpo.org": [15047], "www.microsoftstudios.com": [10369], "aoptix.com": [326], "del.icio.us": [7920], "www.runscope.com": [14038], "www.koen.io": [8954], "order.hbonow.com": [19242], "ngvpn12.nvidia.com": [10985], "booking.swiss.com": [15695], "www.cloudflareapp1.info": [13811], "d3.advertisers-openx.com": [660], "www.azt.allianz.com": [18950], "www.pvac.leeds.ac.uk": [17318], "www.restorethefourth.net": [13817], "siit.tk": [3533], "*.samba.org": [14261], "metro.ya.ru": [18626], "developers.livechatinc.com": [9480], "acast.com": [18935], "www.tvline.com": [15884], "csirt.cesnet.cz": [2585], "www.advancement.osu.edu": [11760], "cftc.gov": [3482], "miun.se": [9751], "www.gavelbuddylive.com": [6471], "www.coinforum.de": [3395], "www.seroundtable.com": [14105], "ditii.com": [3993], "*.adspeed.biz": [540], "east-africa.hivos.org": [7431], "nanorep.com": [11033], "imbo.vgc.no": [17484], "ads.adswitcher.com": [18940], "enroll.entrust.net": [5304], "status.linode.com": [9387], "www.crazespaces.pw": [19089], "www.wolframcloud.com": [18399], "pubpeer.com": [13198], "www.realmatch.com": [13624], "rachelbythebay.com": [13493], "janus.cnrs.fr": [6195], "purdueplantdoctor.com": [13234], "www.tor.com": [9831], "www.tinyapps.org": [16486], "landscape.canonical.com": [2810], "www.rfcexpress.com": [13419], "paramountmovies.com": [12394], "schoolsupportservices.camden.gov.uk": [2772], "bookdepository.co.uk": [16217], "f.chtah.com": [3055], "asianfanfics.com": [1259], "www.maxserv.com": [10092], "chinalaborwatch.org": [3083], "ckom.de": [3205], "collateralmurder.com": [3420], "*.urkb.ch": [19333], "images.kingdomofloathing.com": [1308], "dr.dk": [4078], "lesscss.org": [9069], "wwwcms.tkk.fi": [15821], "careers.dyson.com": [4837], "www.middleeastmonitor.com": [10375], "*.grupotriton.com": [6987], "silkn.com": [14793], "helloneighbour.com": [7295], "www.tripadvisor.ca": [19696], "analytics.tacticaltech.org": [15901], "www.cs.jhu.edu": [16296], "uam.engineering.osu.edu": [11760], "purchase.youneedabudget.com": [18707], "code.directadvert.ru": [4524], "www.lifeinthefastlane.ca": [9329], "static.sparkfun.com": [15222], "client.macfound.org": [9818], "orchiddiva.com": [12094], "rushbucks.com": [14040], "richmond.greenparty.org.uk": [6925], "sourcedna.com": [15171], "www.websupport.sk": [18160], "www.open-mesh.org": [12020], "www.hacoder.com": [7121], "git.php.net": [12250], "app-us1.resrc.it": [13599], "accessibility.harvard.edu": [7219], "www.password-hashing.net": [12432], "www.netid.cornell.edu": [3676], "*.nasdaqomx.com": [10871], "es.medicare.gov": [19392], "www.laproxsites.com": [9154], "coop.ch": [3644], "desktopsummit.org": [4393], "*.freshmilk.tv": [6205], "www.platformadmin.com": [12785], "www.deepdotweb.com": [4299], "guidebook.com": [7009], "eservices.dynatrace.com": [4825], "firefox.yandex.com.tr": [18649], "studentessentials.cornell.edu": [3676], "ssologin.palmcoastd.com": [12346], "av18mov.com": [1434], "www.omha.net": [11889], "ko.chaturbate.com": [3035], "registrierung.raiffeisen.ch": [13527], "ensk.dict.cc": [4455], "a16z.com": [219], "www.dedikuoti.lt": [4292], "*.blogs.technet.com": [16030], "www.bycraft.cz": [2483], "store5.esellerate.net": [5357], "i.cloudup.com": [3316], "spendabit.co": [15261], "images.lowes.com": [9636], "learning.internetessentials.com": [19300], "*.hbr.org": [7048], "securityheaders.io": [14534], "dataview.ofsted.gov.uk": [19456], "www.yakala.co": [18641], "brainyquote.com": [2275], "www.pagerduty.com": [12332], "mbnet.fi": [9723], "vektorbank.com": [17593], "api.dwolla.com": [4816], "bareos.org": [1668], "samia.gidnetwork.com": [6333], "www.netforumpro.com": [11190], "sugarcrm.com": [15582], "www.informatick.net": [8122], "ecode360.com": [5054], "pornel.net": [12930], "www.qfxsoftware.com": [13282], "sapgw.ro.vutbr.cz": [17522], "*.phpbb.com": [12650], "gamedev.net": [6418], "sallybeauty.ugc.bazaarvoice.com": [14252], "tno.nl": [15839], "www.pica.army.mil": [17028], "programpartner.vas-hosting.cz": [19729], "files.app.net": [1102], "www.vtb.com": [17514], "360totalsecurity.com": [109], "engine.doublepimp.com": [4717], "ftp.formilux.org": [6044], "www.xtube.com": [18602], "m.efinancialcareers.com": [4911], "pda.blogs.yandex.kz": [18652], "forums.oneplus.net": [11841], "distribution.zoom.com.br": [18901], "www.cateee.net": [2901], "hostingsolutions.cz": [7531], "liberdade.digital": [9297], "dev.filestack.com": [5801], "main-ws.tmi.twitch.tv": [16888], "franchisegator.com": [6099], "www.lessigforpresident.com": [9261], "lists.blockstream.com": [2099], "www.adda-sr.org": [268], "macworld.com.au": [9823], "calendar.live.com": [9483], "mail.gna.org": [6758], "rc.codexns.io": [3383], "thinkprogress.org": [2944, 16362], "events.joomla.org": [8627], "download.openoffice.org": [1084], "www.upc.cz": [17000], "cisco.com": [3162], "susyradio.com": [15667], "payments.redbridge.gov.uk": [13683], "sdr.stanford.edu": [15383], "xmarks.com": [18579], "www.goob.tk": [3533], "cryptomonkeys.com": [3881], "storefront.steampowered.com": [17547], "nuget.org": [11562], "www.rogerfederershop.com": [13948], "www.usdoedregistration.ed.gov": [4889], "amazon.jobs": [912], "*.umext.maine.edu": [17321], "openbeta.usaspending.gov": [17034], "java.net": [8525], "support.pivotal.io": [12730], "www.freshbsd.org": [6200], "musicbrainz.org": [10717], "frog.wix.com": [18383], "www.tshaonline.org": [15861], "static.dealnews.com": [4261], "acml.engineering.osu.edu": [11760], "*.semiaccurate.com": [14572], "www.websitesettings.com": [18152], "*.cchgroup.com": [2547], "www.rijswijk.nl": [11132], "www.schiedam.nl": [11132], "webmagazin.de": [18129], "maidstone.objective.co.uk": [19454], "research.isis.poly.edu": [12888], "store.xfinity.com": [19784], "s0.2mdn.net": [94], "myplace.havering.gov.uk": [7244], "www.responsive.io": [13814], "booking.com": [2202], "www.dornsife.usc.edu": [17278], "visabuxx.com": [17763], "www.curated.co": [3924], "www.tucowsdomains.com": [16816], "philshobbyshop.com": [12628], "thinkgeek.com": [16361], "tracking-protection.truste.com": [15856], "eastsussexlearning.org.uk": [19144], "stacksity.com": [15365], "esdominios.com": [5356], "kasperskyclub.ru": [8809], "symfony.com": [15717], "*.bitcasa.com": [19001], "s.amazon-adsystem.com": [909], "optimalpayments.com": [12068], "verifier.login.persona.org": [10662], "static.tue.nl": [15874], "www.socialreader.com": [15066], "subconadmin.com": [15556], "cengagebrain.co.uk": [2937], "dpspreview.usc.edu": [17278], "cdn.wcdc.comcast.com": [3461], "guide.macports.org": [9821], "process.knowledgeblog.org": [8948], "www.cyrus.foundation": [3989], "www.law.resource.org": [13207], "download.freedesktop.org": [6126], "cornerstone.wustl.edu": [17993], "deutschepost.com": [19112], "docs.voicethread.com": [17821], "tickets.kirklees.gov.uk": [8916], "compgeo.stanford.edu": [15383], "www.glenoit.com": [6707], "www.renew.acs.org": [929], "www.technomedia.com": [16043], "rossierfaculty.usc.edu": [17278], "ultradns.*": [17132], "futurelearn.com": [6282], "www.blazingthyme.com": [2063], "checkout.unity.com": [17220], "mbox.uni-stuttgart.de": [17281], "www.es.lastminute.com": [9165], "www.mycomputer.com": [10754], "sourceafrica.net": [15169], "cgi.f-secure.com": [5541], "babergh.firmstep.com": [19183], "*.co-operativebank.co.uk": [3332], "northwarks.gov.uk": [11498], "launchpadlibrarian.net": [9169], "*.education.gov.au": [4368], "sport.mail.ru": [9874], "engees.unistra.fr": [17177], "www.blog.uni-erlangen.de": [17311], "www.plantappstore.com": [12778, 12779], "www.movie4k.pe": [10636], "app.dumptruck.goldenfrog.com": [6814], "selz.com": [14570], "lmsl.engineering.osu.edu": [11760], "outreach.web.cern.ch": [2575], "*.opengroup.org": [16205], "careers.7-eleven.com": [187], "blog.scraperwiki.com": [14406], "jalopnik.com": [8497], "www.unisg.ch": [17200], "adults.eastsussexlearning.org.uk": [19144], "www.dnsexit.com": [4607], "rxportalexpress.com": [14052], "www.tinfoilsecurity.com": [16472], "clusterconnection.com": [3324], "casa.tiscali.it": [16498], "*.lulu.com": [9659], "peixun.tmall.com": [19684], "www.acpa.ca": [745], "customer.innometrics.com": [8151], "marcansoft.com": [9982], "recruit.smashfly.com": [15003], "www.kosmetik-per-klick.de": [10196], "www.*.doe.gov": [17210], "www.powertothepooch.com": [12997], "ppl.cz": [12283], "bucyrustelegraphforum.com": [2389], "familie.san.aok.de": [317], "merchdirect.com": [10276], "www.tickets.london2012.com": [9573], "landslide.com": [9143], "finka.pl": [5847], "12wbt.com": [10343], "store.youmail.com": [18706], "*.uclouvain.be": [17230], "carma.astro.umd.edu": [17263], "www.united.com": [17212], "code.qt.io": [13315], "xhamster.biz": [785], "bgpmon.com": [1514], "cryptopia.co.nz": [3887], "catalogue.yandex.by": [18648], "www.webplatform.org": [18079], "previa.se": [13043], "auscert.org.au": [1372], "secondlookforensics.com": [14463], "signin1.bt.com": [1551], "vel.joomla.org": [8627], "archive.anon-ib.net": [1037], "events.oracle.com": [12081], "howtoforge.com": [7574], "nos-oignons.org": [11511], "secure.law.yale.edu": [18642], "www.torrentfreak.com": [16580], "item.taobao.com": [15952], "rad.atdmt.com": [10360], "backissues.people.com": [12547], "schools.dl.ed.gov": [4889], "rumorscity.com": [14032], "easy.myfonts.net": [10759], "my.studiopress.com": [15541], "e-fibank.bg": [5769], "robeco.nl": [13921], "www.researchstore.com": [4206], "csync.yahooapis.com": [18639], "fold.cm": [5982], "www.villahostels.com": [17714], "blog.travelrepublic.co.uk": [16695], "shopsite.com": [14718], "sydostran.se": [15711], "lgosdm.mit.edu": [9749], "www.dribbble.com": [4759], "crm-fusioncrm.oracle.com": [12082], "www.irb.fraunhofer.de": [6112], "www.ri.gov": [19552], "static.wpm.neustar.biz": [11280], "german.tags.literotica.com": [9467], "env.leeds.ac.uk": [17318], "www.hornstrafarms.com": [7497], "files.status.net": [7936], "m.pogoda.yandex.kz": [18652], "*.exxile.net": [4995], "www.replicant.us": [13779], "telushealth.co": [16103], "kcart.alipay.com": [817], "www.forensic.to": [18831], "www.page.ly": [12331], "downloads7.mamp.info": [19379], "login.talemetry.com": [15919], "www.getrave.com": [6601], "mtswelding.co.uk": [19415], "jdeslippe.com": [8469], "www.servercircle.com": [14610], "datstat.com": [4169], "cdn.ustatik.com": [17449], "www.pliktverket.se": [12816], "www.chakasmmm.com": [2983], "www.stealthy.io": [15449], "erooups.com": [5349], "webmail.desy.de": [4399], "www.kop11.com": [8741], "messenger.com": [10292], "www.artskills.com": [1222], "documentcloud.org": [4627], "*.mpg.de": [9780], "www.math.ias.edu": [7669], "atomic-clock.org.uk": [17120], "help.calameo.com": [2731], "armservers.com": [18428], "*.n-ergie.de": [10854], "images.slashdot.org": [14947], "*.nbcnews.com": [10874], "uen.org": [17452], "bugzilla.clamav.net": [3209], "ulife.gmu.edu": [6544], "cloudaccess.net": [3278], "secure.syllabushare.com": [15713], "www.freebsd.org": [6120], "static.opentok.com": [11985], "groupon.se": [6976], "services.share.aarp.org": [234], "*.cnn.com": [2636], "techjourney.net": [16023], "vh3.ro.vutbr.cz": [17522], "www.graphene-lda.com": [6893], "novell.com": [11530], "www.cwi.nl": [2958], "cas.lis.illinois.edu": [17258], "*.animoto.com": [1025], "www.petekeen.net": [12588], "data.calameo.com": [2732], "www.bttrack.com": [2384], "trader.skandiabanken.no": [14895], "www.bitflyer.jp": [1931], "water.org": [17999], "meetmecorp.com": [10212], "www.medicalert.org": [10185], "www.as.au.edu": [16923], "albert.apple.com": [1120], "l.5min.com": [178], "hizlisaat.com": [7432], "delta.affinix.com": [704], "www.thecoastnews.com": [16260], "emcs.ws.hmrc.gov.uk": [7084], "jobs.illinois.edu": [17258], "thecustomizewindows.net": [19675], "dealextreme.com": [4253], "support.incapsula.com": [8043], "cahub.cancer.gov": [2805], "search.f-secure.com": [5541], "overstock.com": [12170], "www.greenqloud.com": [6919], "rushmypassport.com": [14041], "www.uocpres.uillinois.edu": [16960], "x.bitcoin.co.id": [1964], "*.media.collegehumor.cvcdn.com": [3427], "www.vliegtickets.nl": [17802], "www.pravydiplom.cz": [13015], "divxpress.com": [4580], "tuningworld.com.au": [16831], "static2.chartbeat.com": [3018], "www.quantifiedcode.com": [13338], "estavisas.org": [4967], "trumba.com": [16778], "exploit.in": [5508], "pacadmin.ucc.ie": [16933], "*.estat.com": [10176], "www.youtube.bg": [18709], "gfxpro.hu": [9155], "contura.rhb.ch": [13857], "freebarrettbrown.org": [6138], "ageofmine.com": [722], "s.ophan.co.uk": [12053], "ese.osu.edu": [11760], "voronezh.rt.ru": [13469], "ordercourses.com": [2937], "arabic.rt.com": [13468], "techrepublic.com": [16016], "eu1.snoobi.com": [15039], "qt.io": [13315], "i.dslr.net": [4081], "info.iet.unipi.it": [8099], "asmp.a1.net": [217], "*.acessoseguro.net": [472], "www.jobs.nhs.uk": [10913], "northlincolnshire.firmstep.com": [19182], "reethibeach.com": [13713], "www.worldcat.org": [18446], "www.whatsuccesstakes.com": [6716], "www.ncsc.nl": [10886], "dev.windowsphone.com": [18346], "just-eat.ca": [19328], "*.pictos.cc": [12669], "herts.police.uk": [7333], "upforit.com": [785], "fsisac.com": [5606], "www.web.de": [18050], "www.vanhaaren.net": [17550], "wiki.ubuntulinux.jp": [17105], "*.footaction.com": [6012], "medapps.wustl.edu": [17993], "tobtr.com": [16522], "www.apereo.org": [1089], "pr0gramm.com": [19514], "dl.btjunkie.org": [19022], "*.fb.me": [5699], "axess.sahr.stanford.edu": [15383], "www.sav.sk": [14972], "encipher.it": [5231], "trials.ca.com": [2511], "mastermindsdigital.com": [10059], "bcex.bedford.gov.uk": [18986], "taboola.com": [15898], "www.hacklab.to": [7133], "i1.ooshirts.com": [11898], "cdn.gigantic.com": [6651], "motox.accu-weather.com": [465], "travel.mongabay.com": [10551], "www.smart-mail.de": [14984], "lenovoorders.com": [9252], "assist-erp.osu.edu": [11760], "fifengine.net": [5573], "en.ad-stir.com": [513], "t.trackedlink.net": [4695], "mbdcs.osu.edu": [11760], "accounts.expresscoin.com": [5517], "myheritage.de": [10834], "mosaic.re.taobao.com": [15952], "firefox.enhancedsteam.com": [5273], "interns.org": [8292], "forums.openvpn.net": [11989], "www.rbkc.gov.uk": [19538], "www.quest.com": [13351], "library.unc.edu": [16984], "www.wwte3.com": [17937], "www.meldium.com": [10239], "www.movabletype.org": [10627], "undergrad.stanford.edu": [15383], "change.org": [2992], "wow.zamimg.com": [18782], "hofer.si": [299], "seal.stellaservice.com": [14190], "www.worlde-idcongress.com": [18459], "www.esa.int": [5430], "www.lindtusa.com": [9366], "cherry.de": [3062], "flash-mp3-player.net": [5903], "install.sandstorm.io": [14283], "www.creocommunico.com": [7501], "ctr.stanford.edu": [15383], "epa.ie": [4939], "*.goldstar.com": [6818], "*.muscache.com": [749], "l2020.org": [9061], "developer.forecast.io": [6023], "motorregister.skat.dk": [14897], "gmx.tw": [6350], "newsroom.unsw.edu.au": [16995], "www-images.comixology.com": [3465], "www.kwiksurveys.com": [9048], "alitrip.com": [818], "www.maplight.org": [9969], "www.serveriai.lt": [14616], "www.aldi-suisse.ch": [299], "dogzonline.com.au": [4636], "analytics.pubnxt.net": [13196], "consortiumlibrary.org": [3591], "www.philanthropy.cam.ac.uk": [17243], "csr.engineering.osu.edu": [11760], "service.taobao.com": [15952], "wayf.ukfederation.org.uk": [16964], "ask.fm": [1261], "ares.umd.edu": [17263], "www.freeyourandroid.org": [6155], "larrysalibra.com": [9158], "www.congstar.de": [3577], "static.couponfinder.com": [12169], "tsonlinepermit.wusm.wustl.edu": [17993], "intake.credability.org": [3788], "content.xap.com": [18502], "s0.thejournal.ie": [16224], "*.isle.jp": [8368], "blogs.tageswoche.ch": [15907], "www.sbaglobal.com": [14625], "*.alertir.com": [789], "feeds.podtrac.com": [19502], "saechsdsb.de": [4377], "climatecentral.org": [3265], "eu.hunchlab.com": [7618], "online.citibank.com": [3171], "paodelicia.com": [12377], "www.colocation-datacenter.com": [19228], "news.efinancialcareers.com": [18428], "bdone.hu": [1719], "cbpweb.nl": [4813], "chppe.engineering.osu.edu": [11760], "*.gsn.com": [6416], "*.r.cdn77.net": [2555], "www.clicky.com": [6610], "secure.gamblingcommission.gov.uk": [6413], "codespeak.net": [3380], "www.hepo.fi": [7320], "www.timroes.de": [16451], "www.coveredca.org": [3731], "stats.liqd.net": [9442], "tokyotosho.info": [16537], "status.mythic-beasts.com": [10850], "api.sso.biglobe.ne.jp": [1864], "7eer.net": [194], "flixbus.it": [5931], "meetme.com": [10211], "www.gynecomastia.org": [7039], "mcc.godaddy.com": [6773], "authorizenet.com": [1410], "ef.gy": [5106], "fsm.education.gov.uk": [19149], "*.hsselite.com": [7560], "onlychange.com": [11881], "consent.truste.com": [15856], "urospace.de": [17414], "www.smugmug.com": [15014], "aat-net.de": [844], "me.onthe.io": [11890], "resnet.rit.edu": [13434], "*.mhsa.aihw.gov.au": [10262], "www.genumedia.htwk-leipzig.de": [7114], "mining.bitcoin.cz": [10425], "www.willleathergoods.com": [18311], "docs.djangoproject.com": [4590], "webink.com": [18068], "suse-art.org": [19461, 19462], "facultyaffairs-humsci.stanford.edu": [15383], "api.media.ccc.de": [2538], "mi4urinsk.ru": [10332], "video.fortinet.com": [6056], "www.piratetimes.net": [12709], "lcamtuf.blogspot.co.*": [2113], "jobs.hubspot.com": [7594], "lists.openmoko.org": [12039], "degica.com": [3336], "help.sakura.ad.jp": [14068], "www.byo.com": [2308], "store.seagate.com": [14437], "bittiraha.fi": [2022], "gotomeeting.com": [6787], "style.com": [15550], "www.globalbersih.org": [6722], "enno.dict.cc": [4455], "mail.scs.illinois.edu": [17258], "*.zemanta.com": [18814], "flickr.com": [5918], "lulzbot.com": [9660], "majordomo.ru": [9902], "jepso.com": [8554], "www.casascius.com": [2872], "mbusa.com": [9724], "mekanist.net": [10238], "www.tco.osu.edu": [11760], "www.lpice.eu": [9096], "checkout.netsuite.com": [11209], "*.aquent.com": [1144], "www.usfsco.uillinois.edu": [16960], "*.soap.com": [15053], "elttam.com.au": [19154], "www.brainshark.com": [2270], "bacas.southampton.gov.uk": [15191], "giving.jhu.edu": [16296], "trust-center.verisign.com.sg": [17623], "groenlinks.nl": [6962], "www.portalmasq.com": [12280], "events.uchastings.edu": [16940], "cdn.b5media.com": [859], "extabit.com": [5518], "blink-182.com": [2075], "www.lakome.com": [9134], "selangorku.com": [14564], "www.theleanstartup.com": [16198], "ouvadmin.ouvaton.coop": [12155], "lansquared.com": [9063], "dftba.com": [4031], "www.toptip.ch": [3645], "packetwerk.com": [12318], "hetlnvloket.nl": [11132], "biz.points.yahoo.co.jp": [18640], "seal.entrust.net": [5304], "www.ploum.net": [12821], "porterdrive.stanford.edu": [15383], "nl.libreoffice.org": [9311], "www.primarycare.nhs.uk": [10913], "m.mk2.com": [19402], "kiva.org": [8926], "ns-cdn.neustar.biz": [11280], "ca.evanced.info": [5434], "haskellonheroku.com": [7230], "d1.parature.com": [12396], "www.quidco.com": [13362], "mariestopes.org.au": [9992], "affiliates.streamray.com": [15454], "firstamendmentcenter.org": [5873], "cdn.overclock.net": [12163], "www.ycombinator.com": [7141], "bulletin.stanford.edu": [15383], "bigboxsave.com": [1860], "creativecow.com": [3779], "verisign.com.sg": [17623], "webmail.nitro.dk": [11426], "*.adserver01.de": [629], "sevenoaks.gov.uk": [14638], "99bitcoins.com": [211], "www.srsplus.com": [14169], "verisign.co.uk": [17623], "r3.res.outlook.com": [12153], "gimmebar.com": [6661], "downforeveryone.com": [4723], "crunchbangplusplus.org": [3835], "www.philosophynow.org": [12627], "www.stackoverflow.com": [15359], "www.grml.org": [6382], "philosophynow.org": [12627], "d.ghostery.com": [6631], "secure.roboform.com": [13925], "cdn.smugmug.com": [15014], "saintaardvarkthecarpeted.com": [14245], "developer.swisscom.ch": [15698], "ml314.com": [9756], "abacus.com": [400], "isleaked.com": [8362], "cdn.statimgs2.com": [3922], "www.bayan.ir": [1704], "scribd.com": [14414], "webjet.com.au": [18124], "hhmi.org": [7572], "upgradedself.com": [17387], "www.subconadmin.com": [15556], "fr.aldi.be": [299], "www.sharethefiles.com": [14679], "change4life.wales.gov.uk": [17957], "download.xmarks.com": [18579], "visitor.wustl.edu": [17993], "*.blackducksoftware.com": [2045], "www.joomlacode.org": [8628], "anwers.billiondigital.com": [1882], "reg.tmall.com": [19684], "partito-pirata.ch": [12284], "urhome.umd.edu": [17263], "chitika.com": [3092], "www.torrentz.me": [16591], "s2.uicdn.net": [16958], "reefledlights.com": [13709], "www.dota2.com": [4697], "*.tu-darmstadt.de": [15870], "www.mytemp.email": [10790], "secureapi.escrow.com": [5354], "www.dejure.org": [4321], "*.groups.et.byu.net": [1587], "packet.net": [12316], "www.su.nottingham.ac.uk": [11528], "www.unbit.it": [17148], "www.purecars.com": [13236], "www.nccc.nl": [11131], "nvidia.eu": [10984], "demo.virtkick.com": [17745], "bookings.aberdeenshire.gov.uk": [412], "www.denso-wave.com": [4367], "*.qrobe.it": [13310], "steepandcheap.com": [15460], "www.bitcoin-otc.com": [1962], "home.netscape.com": [11248], "datenretter.de": [3625], "www.timeanddate.com": [16461], "login.1und1.de": [68], "globalchokepoints.org": [4908], "www.designernews.co": [4388], "www.svgopen.org": [14202], "mbasic.facebook.com": [5620], "www.lshtm.ac.uk": [9576], "mail.yandex.kz": [18652], "pc.openx.com": [11995], "www.fraglive.cl": [6094], "community.riverbed.com": [13907], "blog.bandinelli.net": [1639], "community.velaro.com": [17594], "bnf.org": [2342], "www.spogo.co.uk": [15285], "*.so36.net": [19605], "biderundtanner.ch": [18997], "idstronghold.com": [7937], "bcop.nanog.org": [11490], "okta.com": [11776], "golflink.net": [6820], "shibboleth2.uchicago.edu": [17246], "cdn1.campuslabs.com": [2786], "adspeed.com": [542], "images.websitealive.com": [18149], "aclusocal.org": [257], "support.500px.com": [166], "sprav.yandex.by": [18648], "www.wnyc.org": [17916], "www.cff.ch": [15693], "www.resus.org.uk": [13820], "prettyeasyprivacy.com": [12502], "www.netbsd.org": [11184], "cz.o2.com": [16076], "email.xnet.cz": [18531], "www.edenhost.com": [5075], "bsdcan.org": [1542], "cdn.ads.ookla.com": [11894], "cdn.*.truenudists.com": [16775], "www.okturtles.com": [11773], "www.orbital.com": [12093], "www.freecode.club": [19194], "netsemi.com": [11215], "beetailer.com": [1751], "avon.cz": [373], "nomachine.com": [11437], "epa-prgs.ornl.gov": [11693], "www.awxcnx.de": [1465], "scheduler.worldcommunitygrid.org": [18447], "hosting.1und1.de": [68], "pr.zwame.pt": [18925], "www.istockphoto.com": [19309], "solutionpartner.cisco.com": [3162], "domreg.lt": [4676], "ikk-suedwest.de": [7749], "oss-binaries.phusionpassenger.com": [12654], "*.buzzurl.jp": [2481], "mail.qq.com": [13285], "*.googlesyndication.com": [6844], "www.brreisen.de": [1539], "www.rec-log.jp": [13640], "hyb.pw": [19268], "blossom.io": [2121], "networking4all.com": [11274], "eu.soyoustart.com": [15052], "www.alaskarobotics.com": [777], "lagunita.stanford.edu": [15383], "katylee.com": [8819], "computing-images.web.cern.ch": [2575], "my.kinsta.com": [8911], "www.drivee.jp": [4764], "*.ivegotkids.com": [8400], "provost.buffalo.edu": [17297], "*.servertastic.com": [14609], "images-static.trustpilot.com": [16798], "www.syncplicity.com": [15730], "a.tribalfusion.com": [16725], "www.fsaregistration.ed.gov": [4889], "campaignercrm.com": [2780], "tails.thecthulhu.com": [16334], "gitcafe.com": [6676], "wiki.videolan.org": [17688], "www.bigboxsave.com": [1860], "duolingo.com": [4805], "paimai.taobao.com": [15952], "uical.uic.edu": [17231], "i1.gallery.technet.s-msft.com": [14058], "www.shop.infinet.com.au": [8093], "dslreports.com": [4081], "*.edfenergy.com": [4890], "dixcart.com": [4586], "dmachoice.org": [4044], "instagr.am": [8181], "cgc.gov.au": [3493], "www.openstreetmap.fr": [12045], "contacts-df.live.com": [9483], "myidp.sciencecareers.org": [14379], "people.freedesktop.org": [6126], "www.crystaldelights.com": [3893], "www.campina.com": [2782], "www.hertz.com.kw": [7354], "*.virtualtourist.com": [17751], "editor.torrentday.com": [16579], "editorial.outbrain.com": [12150], "sportsblogs.post-gazette.com": [12728], "www.fr.ricardo.ch": [13866], "sesame.dsi.cnrs.fr": [6195], "*.avisservices.com": [1452], "togevi.com": [8400, 8401], "www.sanger.ac.uk": [18193], "wizards.com": [18387], "yoklapi.com": [18690], "www.blockitpocket.com": [2096], "*.namecentral.com": [11018], "www.devolo.com": [4427], "radar.osu.edu": [11760], "avoiceformen.com": [386], "www.browserscope.org": [19770], "hkyantoyan.com": [7082], "y6xjgkgwj47us5ca.onion": [18610], "*.branchable.com": [2277], "customersupport.symantec.com": [15715], "dbus.freedesktop.org": [6126], "www.3sat.de": [135], "tribecafilm.com": [16727], "emember.heraldcorp.com": [7321], "medieninformatik.imn.htwk-leipzig.de": [7114], "ask.f5.com": [5546], "*.dreamhost.com": [4748], "www.kasperskypartners.ru": [8811], "www.visitormotion.com": [5390], "ext.host-tracker.com": [7503], "webonic.hu": [18136], "help.burthub.com": [2451], "someserver.de": [15129], "audioboo.fm": [1359], "s1.percona.com": [12557], "www.bookacourse.com": [2200], "campinaboerderijdag.nl": [2782], "puppet-dashboard.debian.org": [4274], "dos.cornell.edu": [3676], "content.dyson.co.uk": [4837], "www.wpp.com": [17923], "postnord.se": [12950], "trademarkia.com": [16644], "www.dropboxatwork.com": [4768], "tns-counter.ru": [16519], "his.se": [7069], "www.sunriseprintonline.com": [15605], "www.zscaler.com": [18913], "security.debian.org": [4275], "www.greenpeace-energy.de": [6933], "teachersassurance.co.uk": [15993], "www.maxim-ic.com": [10095], "aulis.plaza.fi": [12131], "www.parisschoolofeconomics.eu": [12402], "freshmeat.club": [19198], "activate.esellerate.net": [5357], "www.projecteuler.net": [13134], "bookings.see.leeds.ac.uk": [17318], "urbandictionary.com": [17407], "www.posteo.de": [12969], "wwww.limesurvey.org": [9356], "sa-as.com": [17768], "www.kids.greenpeace.de": [6936], "uni-karlsruhe.de": [8798], "magix.info": [9707], "www.namepros.com": [11022], "icme.stanford.edu": [15382], "www.eam-gmbh.com": [4866], "www.dudleyfoi.org.uk": [19128], "www304.americanexpress.com": [935], "www.antergos.com": [1062], "dkg.fifthhorseman.net": [5782], "downloads.mysql.com": [10780], "www.lincolnshire.gov.uk": [9364], "www.admob.com": [532], "www.ohling.com": [11765], "buzzvpn.com": [2475], "www.coursedirectoryproviderportal.org.uk": [19082], "66option.com": [181], "systembolaget.se": [15763], "computerlabsolutions.com": [3536], "*.unimi.it": [17190], "trustnet.wellcome.ac.uk": [19752], "www.youtube.my": [18709], "ipv6.tunnelbroker.com": [16834], "www.arcadeflex.com": [5224], "www.herox.com": [7330], "www.havering.gov.uk": [7244], "fsinfo.fme.vutbr.cz": [17522], "websocially.com": [18087], "ampush.com": [982], "ecw.hmrc.gov.uk": [7084], "aspapps.lincolnshire.gov.uk": [9364], "www.campina.es": [2782], "developer.windows.com": [18342], "secure.palmcoastd.com": [12346], "espanol.crocs.com": [3807], "s1.mt-cdn.net": [9798], "mysubwaycard.com": [19418], "meta.mathoverflow.net": [15359], "www.calispora.org": [2752], "www.smartplanet.com": [14992], "images.vg247.com": [5416], "www.pledgie.com": [12812], "de-it.dict.cc": [4455], "museodelprado.es": [10711], "sso.datapipe.com": [4212], "www.google.com.*": [6838, 6840, 6845, 6848], "buffered.io": [2404], "epic.hpi.uni-potsdam.de": [17171], "youngcancer.scot.nhs.uk": [10913], "about.bizrate.com": [2033], "thenew10.treasury.gov": [16704], "mensaplan.de": [10260], "discogs.com": [4541], "lfgss.com": [9074], "www.movableink.com": [10628], "scribusstuff.org": [19461, 19462], "puls.uni-potsdam.de": [17333], "brennannovak.com": [2303], "www.secularhumanism.org": [14473], "upc.cz": [17000], "online2pdf.com": [11872], "www3.hants.gov.uk": [7196], "staging.data.gov": [4175], "zx.jd.com": [8423], "beacon.stage.walmart.com": [17964], "forums.docker.com": [4616], "kelcomaine.com": [8843], "*.h-da.de": [4156], "cdn.blog.hubspot.com": [7594], "*.o2online.de": [11602], "*.livefyre.com": [9509], "ssl.opera.com": [12050], "www.dnscurve.org": [4062], "customerservice.kirklees.gov.uk": [8916], "sfprep.symantec.com": [15715], "my.psoft.net": [12945], "cmsresources.windowsphone.com": [18346], "tsdd.org": [15860], "www.statuscake.com": [15436], "s7sps3.scene7.com": [14340], "edit.vas-hosting.cz": [19729], "proofpoint.com": [13154], "openf2.org": [11936], "www.hostr.co": [7543], "webinars.intercom.io": [8243], "www.kildarestreet.com": [8886], "xmpp.jp": [18524], "wholesale.tdc.dk": [15796], "www.bhw.de": [1517], "meetups.jquery.com": [8451], "www.telegeography.com": [16071], "casperogfrank.dk": [2886], "piwik.cable6.net": [2702], "nzbindex.com": [11002], "www.rogueamoeba.com": [13949], "community2.newcastle.gov.uk": [11315], "walkit.com": [19745], "liqd.net": [9442], "geni.net": [6318], "powys.moderngov.co.uk": [19405], "cancer-fi.directo.fi": [15744], "gametreelinux.com": [6428], "www.alfresco.com": [802], "alloscomp.com": [858], "www.mooddisorders.ca": [10571], "www.axantum.com": [1467], "banners.victor.com": [17670], "www.save-notes.com": [14310], "support.inventivedesigners.com": [8314], "binrev.com": [1887], "support.gyazo.com": [7035], "enwp.org": [18296], "*.english-country-cottages.co.uk": [18490], "www.rte.ie": [13470], "store.startrek.com": [15399], "www.bilddb.arch.ethz.ch": [4975], "www.informatik.uni-hamburg.de": [16951], "*.ucla.edu": [16934], "www.vpnglobe.com": [17502], "www.astro.cf.ac.uk": [2835], "piwik.gwdg.de": [7030], "broadbandbuyer.co.uk": [2351], "regjeringen.no": [13739], "atelier.gresille.org": [6945], "faq.amextravel.com": [902], "iai.inf.tu-dresden.de": [15871], "snacktools.com": [15020], "citizenfour.thecthulhu.com": [16334], "www.discoverbsd.com": [4548], "purecambogia.com": [13241], "honuser.hon.ch": [7088], "hig.se": [7067], "weike.jd.com": [8422], "www.netzclub.net": [19432], "zhaopin.jd.com": [8423], "sassets.j2global.com": [8410], "api.ftp-master.debian.org": [4275], "www.cryptobin.org": [3854], "secure.clearcenter.com": [3230], "estore.ti.com": [16152], "www.sunglasswarehouse.com": [15600], "consul.io": [3595], "fb.me": [5699], "babelzilla.org": [1591], "forgestagingapi.puppetlabs.com": [13232], "www.mbdetox.com": [9720], "i2.msdn.microsoft.com": [10364], "www.selinuxproject.org": [14099], "www.secretcon.com": [14468], "pictures.dealer.com": [4256], "infotomb.com": [8104], "www.sloanconsortium.org": [14968], "www.playwarz.com": [17975], "a2.hertzrent2buy.com.br": [7340], "www.paperspace.io": [12382], "www.delaware.gov": [15420], "sas.css.microsoft.com": [10364], "fanoe.dk": [5656], "issues.jasig.org": [8522], "www.onlineforms.edgarfiling.sec.gov": [17023], "healthyeater.com": [7266], "leahscape.com": [9207], "www.onepagerapp.com": [11856], "col.stc.s-msn.com": [14059], "sohopelesslybroken.com": [14150], "wanikani.com": [17973], "www.e-rewards.com": [4859], "*.2roads.com": [16897], "*.insft.com": [8135], "webapps.jhu.edu": [16296], "www.flipagram.com": [5924], "garlandscience.com": [8118], "www.arewecompressedyet.com": [1178], "www.bis.doc.gov": [17058], "www.vidaysalud.com": [17678], "barna.org": [1673], "sebastianwick.net": [14456], "www.thc.org": [15810], "www.segger.com": [14557], "dailyinfo.co.uk": [4124], "pskov.rt.ru": [13469], "djangoproject.com": [4590], "*.lww.com": [9438], "common.i12.de": [7656], "www.synergy-foss.org": [15736], "met1.hp.com": [7377], "www.apress.com": [1137], "eventim.fi": [9440], "www.mouseflow.com": [10624], "www.commbank.com.au": [3477], "*.gotransit.com": [6367], "nervoussystems.org": [11164], "www.freedom-to-tinker.com": [6167], "gamefly.gameflycdn.com": [6420], "www.alloresto.fr": [19328], "www.bidtellect.com": [1848], "www.safecharge247.com": [14231], "classes.osu.edu": [11760], "yunbi.com": [18750], "lurkmo.re": [9673], "pecl.php.net": [12250], "internal.psychology.illinois.edu": [17258], "ngdc.noaa.gov": [11083], "sports-images.vice.com": [17667], "www.sciencealert.com": [19574], "mysmartrend.com": [14981], "tuvdotcom.com": [3625], "slipplate.com": [14133], "itsc.umd.edu": [17263], "account.asus.com": [357], "www.jolexa.net": [8620], "freeyourandroid.org": [6155], "www.anchor.net.au": [18955], "www.careers.tvnz.co.nz": [15886], "ma3.twimg.com": [16877], "cdngw.ustream.tv": [17450], "netpivotal.*": [11204], "www.tandlakarforbundet.se": [15942], "*.mellanox.com": [10241], "hvidovrekajakklub.dk": [7636], "*.internet.bs": [8276], "cdn.whappodo.com": [18227], "fi.support.tomtom.com": [16540], "adv.reklama.wp.pl": [17921], "myconan.net": [10826], "www.inhumanity.com": [8142], "president.mit.edu": [9748], "trustee.ietf.org": [7721], "www.consortiumlibrary.org": [3591], "orderit-pmg.stanford.edu": [15383], "navigantresearch.com": [11114], "vsco.co": [17512], "lihm.net": [9347], "joomlancers.com": [8629], "ibqonline.com": [7904], "www.youtube.hk": [18709], "*.posterous.com": [12972], "assets.start.me": [15405], "healthfuze.com": [7264], "skepticink.com": [14903], "groupava1.mycdn.me": [10824], "secure.wistia.com": [18377], "www.livememe.com": [9492], "labs.bad-dragon.com": [18979], "www.gradschool.utah.edu": [17288], "www.finka.pl": [5847], "www.f3mimages.com": [5544], "itwinterclose.stanford.edu": [15383], "contact.boat.voyagegroup.com": [17859], "css2.open.ac.uk": [11986], "eagle.gmu.edu": [6544], "www.mims.com.my": [9743], "status.bytemark.co.uk": [2489], "kismetwireless.net": [8919], "gngr.info": [6759], "www.siit.tk": [3533], "demo.odoo.com": [11727], "www.poste-impresa.it": [12963], "www.tv.com": [15878], "app.wistia.com": [18377], "staysmartonline.gov.au": [15442], "cen.acs.org": [929], "mastermindpro.com": [10058], "bunkus.org": [19025], "intellnews.net": [19299], "ff.connextra.com": [3585], "louismilan.com": [9620], "shop.joomla.org": [8627], "www.nsn.com": [11462], "superbrightleds.com": [15619], "www.popgoestheweek.com": [12913], "old.metal-detector-town.com": [10305], "www.server.cpmstar.com": [2647], "cineble.com": [3144], "gigenet.com": [6656], "protect724.arcsight.com": [7378], "searchcommander.com": [14442], "sec.crain.com": [3758], "cdn.bonosrama.newsvine.com": [11348], "gdtl.engineering.osu.edu": [11760], "www.grit.io": [6958], "brinkster.com": [2334], "www.hbonow.com": [19242], "sgi.com": [14111], "labs.tageswoche.ch": [15907], "twitpic.com": [16890], "artsinitiative.osu.edu": [11760], "img02.taobaocdn.com": [15953], "www.fencecenter.com": [5747], "blog.gigaserver.cz": [14589], "www.intermundomedia.com": [8253], "www.emailpref.acs.org": [929], "es.icecat.biz": [7914], "netnanny.com": [11214], "www.emilstahl.dk": [5208], "www.renrencaopan.com": [13770], "francais.istockphoto.com": [19309], "eztv.it": [5004], "forum.419eater.com": [141], "mtmweb.biz": [10188], "poolp.org": [12899], "lacrossealerts.com": [9118], "sitecheck.sucuri.net": [15575], "www.hackaday.io": [7138], "static2.gac.edu": [6301], "qa.fastmail.com": [5688], "systemli.org": [15765], "tech.yandex.com": [18651], "goaruna.com": [6770], "vevo.com": [17481], "korelogic.com": [8986], "www.envoyer.io": [5312], "www.womensexpova.com": [18406], "shared.sx": [14671], "otse.err.ee": [5369], "h.alipayobjects.com": [817], "parkingtickets.portsmouth.gov.uk": [19508], "www.verisign.ch": [17623], "tvsupport.net": [16862], "online-emr.com": [11876], "www.informatick.com": [8122], "blogtalkradio.com": [2103], "www.avuedigitalservices.com": [1459], "www.osmglobal.com": [11673], "mast.stanford.edu": [15383], "idp.kuleuven.be": [8816], "www.agilebits.com": [727], "file.wx2.qq.com": [13285], "*.creativevirtual.com": [3785], "myaccount.edinburgh.gov.uk": [5084], "qa-advertising.paypal.com": [12467], "www.pythonanywhere.com": [13273], "webmail05.register.com": [13732], "pervasive.aau.at": [236], "communications.williams.edu": [18316], "ask.derby.ac.uk": [17309], "wcmaas.dhs.gov": [4035], "kinox.io": [19337], "samsungmobile.accu-weather.com": [465], "www.inaturalist.org": [7773], "www.cryptovpn.com": [3866], "odhistory.shopping.yahoo.co.jp": [18640], "aeis.bassetlaw.gov.uk": [1688], "library.brown.edu": [2367], "mint.com": [10432], "orgreenoptics.com": [12105], "sd.sharethis.com": [14668], "trust-center.verisign.fr": [17623], "www.viaf.org": [17487], "extranet.websitepipeline.com": [18151], "secretmaryo.org": [14467], "www.isohunt.to": [8371], "www.collectiveip.com": [3424], "www.stirling.gov.uk": [15475], "*.accc.gov.au": [1385], "*.culi.org": [2950], "www.sfsite.com": [14110], "ui2web2.apps.uillinois.edu": [17231], "hitslink.com": [7426], "ads.contextweb.com": [3616], "my.enahost.com": [5228], "www.smacktls.com": [14136], "telecom.sk": [16088], "www.proisp.no": [12288], "js.final4ever.com": [5819], "electronicinsanity.com": [5153], "services.seagate.com": [14437], "www.bike24.com": [1870], "smartplanet.com": [14992], "www.movie2k.nu": [10635], "www.wyndhamrentals.com": [18490], "*.bangordailynews.com": [1642], "riigiteataja.ee": [13889], "forum.monster-wow.com": [10566], "weblogin.umich.edu": [17266], "russki.istockphoto.com": [19309], "*.tmpwebeng.com": [15831], "2013.asiabsdcon.org": [1258], "disruption.birmingham.gov.uk": [19000], "www.mit-dem-rad-zur-arbeit.de": [10456], "www.streetlife.com": [19633], "nic.ch": [10920], "bitsharestalk.org": [2017], "docs.wto.org": [17934], "doublepimp.com": [4717], "invoca.com": [8329], "ecn.t7.tiles.virtualearth.net": [17755], "userscape.com": [17431], "sonymusic.com": [15146], "www.hongkongfp.com": [19258], "www.urbandictionary.com": [17407], "lu.taobao.com": [15952], "www.colorlines.com": [3445], "www.mysql.com": [10780], "wagner.edu": [17947], "studios.streamray.com": [15454], "heart.org": [7275], "*.strugee.net": [15532], "www.refog.com": [13723], "googlesource.com": [6844], "qtastatic.com": [13318], "*.vanillaforums.com": [17558], "addison.com.hk": [576], "www.drugpolicy.org": [4775], "projet-coclico.org": [3343], "cms.citrixonline.com": [3179], "www.wolfson.cam.ac.uk": [2762, 17243], "video.yandex.com": [18651], "sf.net": [15174], "canvaslms.com": [2814], "pollendiary.com": [12882], "www.blognone.com": [2111], "blogs.plos.org": [12271, 13206], "thoughtstreams.io": [16385], "www.dnssec-tools.org": [4064], "www.gnunet.org": [6360], "www.sitepoint.com": [14870], "www.publicidees.com": [13204], "withgoogle.com": [18380], "www.mxguarddog.com": [9811], "home-bap.navigator.web.de": [18050], "www.tppnocertification.org": [15852], "*.shopco.com": [14715], "wms.assoc-amazon.com": [1288], "lighttpd.net": [9346], "www.wto.org": [17934], "80.93.17.6": [4512], "api.ashampoo.com": [1250], "blog.pinboard.in": [12677], "*.berlios.de": [1789], "skimlinks.me": [14910], "www.jadi.net": [8491], "read.timesprintingdigital.com": [16462], "secure.game.se": [6303], "www.bmdw.org": [1529], "getfoxyproxy.org": [6591], "alumni.princeton.edu": [13064], "zdnet.com.au": [18757], "www.impulsedriven.com": [8022], "status.chatlio.com": [19053], "3dvisionlive.com": [125], "saga.co.uk": [14237], "static1.theiconic.com.au": [16292], "*.porn-w.org": [12925], "lumo.me": [9667], "vorteile.gmx.net": [6350], "status.modern.ie": [10519], "preview.msn.com": [9796], "yahooapis.com": [18639], "aktiiviraha.fi": [7186], "hrpo.wustl.edu": [17993], "corbycam.firmstep.com": [19182], "*.shkb.ch": [19333], "userium.com": [17435], "transit.land": [16670], "gmail.com": [6843], "thepublicindex.org": [16206], "www.aldi.com.au": [299], "gondor.io": [6824], "*.tu-chemnitz.de": [15869], "walgreens.com": [17958], "sheffield.indymedia.org.uk": [8084], "cbs.com": [2526], "www.ietf.org": [7721], "www.disc-soft.com": [4540], "cash.square.com": [15329], "www.gearsourcecdn.com": [6484], "www.larrysalibra.com": [9158], "www.damballa.com": [4128], "www.pdadb.net": [12499], "fishwrapper.com": [5884, 5885], "barbican.org.uk": [1661], "kinklink.me": [8907], "citservices.med.wustl.edu": [17993], "finance.car.com": [2826], "*.this-download-would-be-faster-with-a-premium-account-at-good.net": [6826], "magentocommerce.com": [9851], "ntualumni.org.uk": [10972], "img.s-msn.com": [14059], "nj02all02.baidupcs.com": [1620], "webresource.its.calpoly.edu": [2747], "forms.aweber.com": [378], "datasheets.maximintegrated.com": [10096], "service.t-mobile.nl": [15771], "se.itunes.apple.com": [1120], "internationalman.com": [8262], "go.uwm.edu": [17294], "www.li.admin.ch": [19648], "lists.gforge.inria.fr": [8159], "community.vodafone.co.nz": [17812], "netnod.se": [11245], "ping.dozuki.com": [4732], "givingday.cornell.edu": [3676], "www.jeth.tk": [3533], "nadir.org": [11008], "epars.wustl.edu": [17993], "openbsdeurope.com": [11920], "*.posportal.com": [12281], "ezaccessory.com": [5535], "support.web-hosting.com": [18044], "ghowen.me": [6633], "i.hh.ru": [7060], "cadastro.uol.com.br": [16998], "fordele.tdc.dk": [15796], "tz.de": [15895], "wiki.vuze.com": [17879], "contribute.jquery.org": [8450], "loggn.de": [9555], "*.kmart.com": [8937], "bwin.com": [7733], "www.prospecteye.com": [13163], "flex.htwk-leipzig.de": [7114], "hvosting.ua": [7637], "7springs.com": [191], "www.hackable-devices.org": [7137], "lists.ubuntu-eu.org": [17094], "lists.parabola.nu": [12384], "cdn.coderwall.com": [3377], "do.de": [4647], "www.envoydirect.com": [5310], "dl.google.com": [6834], "kcc.webhostone.de": [18121], "store.economist.com": [5060], "www.adultshopping.com": [644], "ems.southglos.gov.uk": [15189], "wepay.com": [18022], "www.popular.com.tw": [12919], "demo.picnichealth.com": [12662], "www.newmoon.com": [11290], "*.3ds.com": [4167], "images.yandex.com.tr": [18649], "ccccloud.com": [2539], "mylevel3.net": [10839], "esupport.trendmicro.com": [16717], "sso.nikhef.nl": [11402], "www.ht.vc": [7587], "www-structures.ucsd.edu": [16939], "*.foxydeal.com": [6088], "benedikt-bitterli.me": [1775], "www.brendaneich.com": [2301], "viagem.catracalivre.com.br": [2908], "train2web.wustl.edu": [17993], "*.ccavenue.com": [2533], "piwik.sysmocom.de": [15756], "iufoundation.iu.edu": [8064], "www.video.yandex.kz": [18652], "graphics8.nytimes.com": [11000], "www.openhpi.de": [11940], "hcc.web.cern.ch": [2575], "services.eoportal.org": [5313], "crowdfactory.com": [3818], "www.redwoodsinyosemite.com": [13703], "ploum.net": [12821], "era.int": [4948], "www.huntingbears.nl": [7623], "cmscdn.staticcache.org": [15431], "eecs.mit.edu": [9749], "account.xapo.com": [18541], "oam.tdc.dk": [15796], "app.tinyletter.com": [16482], "2ndvote.com": [95], "ticketsage.com": [15818], "lufthansa.com": [9655], "www.datacoup.com": [4179], "support.octoshape.com": [11718], "www.litecointalk.org": [9464], "es.verbling.com": [17615], "www.soundviz.com": [15158], "*.jamfsoftware.com": [8412], "media2.wnyc.org": [17916], "www.aldi.dk": [299], "samsung.net": [14271], "vdv.de": [17478], "daneszajutri.hofer.si": [299], "download.tizen.org": [16506], "feralinteractive.com": [5753], "www.digitalocean.com": [4495], "*.sheffield.ac.uk": [17339], "psychologicalscience.org": [1296], "*.verizon.net": [17626], "rentler.com": [13776], "www.trustedsec.com": [16789], "my.vestacp.com": [17653], "fixingtao.com": [5899], "shop.evernote.com": [5450], "www.frootvpn.com": [6228], "miniand.com": [10421], "tbib.org": [15983], "www.telekom.de": [4410], "www.cio.illinois.edu": [17258], "www.energylinx.co.uk": [19159], "zeushash.com": [18852], "static-dev.ycharts.com": [18613], "wired.com": [18363], "secure.creocommunico.com": [7501], "statics2.beauteprivee.fr": [1739], "www.evga.com.au": [4986], "www.tenon.com": [16112], "hostingmanager.secureserver.net": [14511], "jwplayer.com": [9589], "hjv.kursuslogin.dk": [7436], "touch.forum.deti.mail.ru": [9874], "cme.stanford.edu": [15382], "engineeringforchange.org": [5267], "www.cablesurf.de": [2705], "commando.io": [3475], "www.zg.ch": [19648], "adminnationalcareersservice.direct.gov.uk": [4531], "*.datacamp.com": [4176], "delivery.o.switchadhub.com": [15701], "*.widgetbox.com": [18282], "thefire.org": [16277], "www.green-wood.com": [6916], "www.gourl.io": [6790], "cloud.gmo.jp": [6345], "www.monthlyreview.org": [10568], "ma2jic.osu.edu": [11760], "tante.cc": [15949], "maps.bradford.gov.uk": [2264], "iform.zg.ch": [19648], "www.lib.vutbr.cz": [17522], "bookshop.theguardian.com": [16288], "git.openssl.org": [11970], "deno.dict.cc": [4455], "www.sportisimo.de": [14158], "lambeth.greenparty.org.uk": [6925], "fishelp.wustl.edu": [17993], "app.formassembly.com": [6040], "media.quantopian.com": [13340], "m.google.*": [6837], "just-eat.co.uk": [19328], "www.redbullmobile.at": [13670], "www.cimb.com": [2606], "mujbiz.cz": [10690], "*.strongswan.org": [19634], "getcloak.com": [6567], "www.engin.cf.ac.uk": [2835], "cs.joensuu.fi": [17250], "static.hugedomains.com": [7601], "i4.c.dk": [2498], "mixer.cz": [10466], "dan.me.uk": [4131], "www.plannedgiving.com": [12773], "downloads.commotionwireless.net": [3496], "de.pcisecuritystandards.org": [12224], "pod.orkz.net": [12111], "tripwell.com": [16748], "www.supervalu.com": [14196], "lists.nuug.no": [10980], "tonybianco.com.au": [16547], "myphotos4.virginmedia.com": [17737], "www.neo900.org": [11146], "torrent.tm": [16577], "www.pure-privacy.org": [13237], "projectplace.com": [13144], "enjoy.com": [5278], "habrahabr.ru": [7129], "savage2.com": [14062], "soobest.com": [15152], "assets.filemobile.com": [5800], "*.visistat.com": [17768], "www-mpy.desy.de": [4399], "forum.hackinthebox.org": [7154], "groups.io": [6980], "community.1und1.de": [68], "canyouseeme.org": [17790], "bitcointalk.org": [1959], "statefarm.com": [15418], "chalmers.se": [2987], "*.mozillalabs.com": [10660], "miranda.hemscott.com": [8320], "www.canon.com.au": [19037], "photoblab.com": [12639], "tenable.com": [16109], "browsermob.com": [2375], "www.optimalpayments.com": [12068], "www.meetic.com": [10216], "www.courtneyluv.com": [2132], "anonine.com": [1046], "secure.clickability.com": [4827], "catn.com": [2893], "www.jethrocarr.com": [8560], "workaround.org": [18440], "www.mankier.com": [9959], "lists.linuxcontainers.org": [9420], "x.annihil.us": [1030], "forum.voidlinux.eu": [19741], "www.fullstory.com": [6252], "www.q7.com": [13277], "www.lotto.de": [9614], "*.giving.buffalostate.edu": [2401], "www.pixelexit.com": [12737], "lokaty-bankowe.money.pl": [10546, 10547], "help-assets.soundcloud.com": [15161], "www.labcorpsolutions.com": [9123], "*.rigzone.com": [13888], "pcvlab.ceegs.ohio-state.edu": [11761], "loanliner.com": [9532], "myresumeagent.com": [10779], "product.getsatisfaction.com": [6617], "go.idmnet.bbelements.com": [1713], "nagano.cz": [11009], "fr.canon.ch": [2809], "polycat.lib.calpoly.edu": [2728], "login.sucuri.net": [15575], "www.nets.ec": [11205], "ekomi.co.*": [4921], "embed.spotify.com": [15296], "bigstockphoto.com": [1867], "c3pb.net": [2499], "bluecoat.com": [2130], "www.blackznc.net": [2043], "aviationweather.gov": [18972], "www.osha.gov": [11670], "cm.ipinyou.com": [7803], "www.postfinance.ch": [12949], "api-v1-stage.websitealive.com": [18149], "c-ware.de": [2497], "slovari.yandex.kz": [18652], "www.greenpeace-magazin.de": [6935], "ir.i.wp.pl": [17921], "createspace.com": [3772], "avoinministerio.fi": [18974], "www.etretouchy.com": [5394], "www.wiiings.com": [18288], "wunderlist.com": [18483], "vbstatic.co": [17470], "wt.taobao.com": [15952], "www.woz.ch": [18467], "www3.cisco.com": [3162], "www.zmanda.com": [18880], "*.mrporter.com": [9787], "app.cactuscompletecommerce.com": [2710], "shodan.io": [14712], "image2.bilio.com": [1875], "*.portforward.com": [12931], "lounge.zohocrm.com": [18882], "s3.rationalcdn.com": [19536], "people.maths.ox.ac.uk": [17271], "e-iper.stanford.edu": [15383], "images.partner.windowsphone.com": [18346], "coverstand.com": [3727], "tidalhifi.com": [16432], "*.hosted.exlibrisgroup.com": [5472], "freewebsitetemplates.com": [19197], "totalchoicehosting.com": [16601], "mediapost.com": [10162], "p.sf.net": [15174], "www.fastserv.com": [5682], "www.shellfish.io": [14695], "s.po.st": [12834], "dmp.springserve.com": [15312], "ssltor.bvg.de": [1582], "beta.southlanarkshire.gov.uk": [15190], "docs.jivesoftware.com": [8585], "www.uplinklabs.net": [17391], "*.webassets.scea.com": [15144], "www.capify.org": [2817], "www.europeancensorship.eu": [5427], "pairlite.com": [12336], "disabilitystudies.osu.edu": [11760], "schooltoprison.org": [14365], "teach.udemy.com": [17111], "www.torrents-time.com": [19689], "core.telegram.org": [16080], "dietmardreier.de": [19119], "hornbach.ch": [7496], "bayfiles.com": [1698], "bonding.de": [2195], "login.szn.cz": [14648], "login.opendns.com": [11932], "is.gd": [19306], "techpowerup.com": [16049], "static3.flattr.net": [5910], "forum.hornbach.at": [7496], "medapps.wusm.wustl.edu": [17993], "futureboy.us": [6284], "www.maymay.net": [10105], "vehiclevisuals.com": [17591], "kyberia.sk": [9050], "plantappstore.com": [12778, 12779], "*.re.is": [13411], "sesame.syncplicity.com": [15730], "owasp.org": [11691], "assets.kachingle.com": [8764], "unizar.es": [17356], "eecm.cr.yp.to": [3748], "*.ru.nl": [13510], "ad4.netshelter.net": [11208], "e2.boxcdn.net": [2253], "omnitruck.chef.io": [3057], "pamela.biz": [12352], "forum.bitcoin.org": [1930], "www.quantixtickets1.com": [13339], "app.littlehotelier.com": [9474], "bendigobank.com.au": [1774], "www.tripadvisor.co.nz": [19697], "detr.dict.cc": [4455], "itsanhonour.gov.au": [8394], "www.ai-radio.org": [288], "cap.csail.mit.edu": [9749], "*.marchforbabies.org": [9983], "info.peertransfer.com": [12518], "coxdigitalsolutions.com": [3738], "www.cryptdown.eu": [3843], "www.youtube.com.es": [18709], "issues.shibboleth.net": [14702], "usmile.at": [17446], "www.little.my": [9475], "*.wikidot.com": [18294], "*.walk.sc": [18191], "found.cern.ch": [2575], "www.landalskilife.com": [18489], "www.myprojects.ncl.ac.uk": [10884], "www.hiveage.com": [7428], "www.gimpfoo.de": [6334], "vpsadmin.vpsfree.cz": [19743], "*.cortera.com": [3695], "blog.compose.io": [3526], "discounts.aarp.org": [234], "*.hadrons.org": [7161], "www-cache3.extensis.com": [5523], "employment.jjc.edu": [8440], "www.livestream.com": [9514], "rad1o.badge.events.ccc.de": [2538], "assets0.github.com": [6680], "planete.inrialpes.fr": [8160], "*.innovateuk.org": [8152], "*.upc.edu": [12895], "www.v6ak.com": [17465], "sea.hivos.org": [7431], "public.dhe.ibm.com": [7675], "www.publons.com": [13219], "cdn.mypypeline.com": [4500], "mytritonlink.ucsd.edu": [16939], "www.tricue.com": [16721], "realty.mail.ru": [9874], "ak.c.ooyala.com": [11900], "jobs.adweek.com": [672], "www.boots.ie": [2214], "fightcopyrighttrolls.com": [18428], "recruiters.newscientist.com": [11298], "huuto.net": [19267], "redirect.skimlinks.com": [14909], "hivelocity.net": [7429], "cloud.cloudfoundry.org": [3299], "free-tv-video-online.me": [6119], "turktk.com": [16839], "m3.idg.se": [7705], "egov.scambs.gov.uk": [19566], "*.frooition.com": [6227], "www.cdrs.columbia.edu": [3448], "strangeworlds.co.uk": [15504], "www.goexplore.net": [6777], "darkmatter.cyberguerrilla.org": [3961], "card.wustl.edu": [17993], "downloadcenter.intel.com": [8209], "secure.monash.edu": [10541], "mequoda.com": [10268], "rightscale.com": [13884], "www.hauke-m.de": [7239], "foodsharing.de": [19188], "wiki.debian.org": [4275], "4gwc-kbhkort.kk.dk": [8730], "bid.openx.net": [11993], "www.eforms.rbkc.gov.uk": [19538], "opennet.ru": [11961], "iana.org": [7667], "www.isoc24.com": [7830], "www.livenation.*": [9481], "envirocall.newcastle.gov.uk": [11315], "intel.com": [8209], "bitvps.com": [1960], "*.brainyquote.com": [2275], "*.bigmir.net": [1865], "www.btp.police.uk": [2383], "cyberpowerpc.com": [19098], "www.ionaudio.com": [7777], "pidg.in": [12671], "deeo.dict.cc": [4455], "pizza.fr": [12748], "info.local.ch": [9536], "www.cryptostocks.com": [3889], "element.yandex.com": [18651], "www.xamarin.com": [18540], "*.opt.fimserve.com": [5817], "www.ispgids.com": [7832], "www.tdc.dk": [15796], "www.dogsbodytechnology.com": [4635], "mycoresite.coresite.com": [3666], "remote.hslu.ch": [7583], "www.sproutinc.com": [15319], "registration.hinxton.wellcome.ac.uk": [19752], "smartronix.com": [15001], "www.regiobankadviseurs.nl": [13730], "search.americanexpress.com": [935], "facebook.it": [5623], "subscriptions.nzherald.co.nz": [11314], "facebook.is": [5623], "trillian.im": [16735], "www.officeworks.com.au": [11753], "i4.services.social.s-msft.com": [14058], "store.norton.com": [11505], "support.appsflyer.com": [1131], "www.easypress.ca": [5030], "lagen.nu": [9131], "origin.pubmatic.com": [13194], "localize.drupal.org": [4780], "knowledge.servicenow.com": [14622], "hraunfoss.fcc.gov": [5709], "*.zulius.com": [18922], "downloads.ubnt.com": [17084], "www.trello.com": [16710], "blog.wearewizards.io": [18027], "statcounter.com": [15417], "www.blackarrowsoftware.com": [19005], "*.gkb.ch": [19333], "smg.axosoft.com": [1477], "www.citibank.com": [3171], "www.class-central.com": [3216], "campbx.com": [2775], "www.gdata.fr": [6293], "www.mrsmcnastys.com": [10676], "www.register.ie": [4513], "login.digicert.com": [4473], "traveldoctor.com.au": [16691], "fhserve.com": [5767], "dragonair.com": [4740], "foundation.walmart.com": [17964], "oascentral.globalpost.com": [75], "classifieds.nncogannett.com": [6453], "filialen.migros.ch": [19399], "pads.ci.uchicago.edu": [17246], "42floors.com": [143], "hotmail.co.jp": [7557], "support.allcrypt.com": [829], "login.truste.com": [15856], "images.somethingawful.com": [15130], "psychiatry.stanford.edu": [15383], "media-curse.cursecdn.com": [3934], "hilfe.webgo24.de": [18065], "api-secure.solvemedia.com": [15126], "api.choicestream.com": [3096], "www.bitex.la": [1993], "postecert.poste.it": [12965], "fiesta.gamigo.com": [6445], "appdb.winehq.org": [18352], "piao.163.com": [34], "websharks-inc.com": [18084], "*.jumpingjack.com": [8675], "images.modelviewculture.com": [10518], "service1.internet2.edu": [8279], "ibphoenix.com": [7676], "www.voys.nl": [17860], "mail.franziskawellner.de": [6105], "prosystemfx.com": [13164], "www.enovance.com": [19138], "delivery.f.switchadhub.com": [15701], "www.magic.fr": [9854], "curo.co.za": [3932], "www.realone.com": [13622], "shop.acehotel.com": [470], "www.dwheeler.com": [4092], "mashery.com": [10046], "essentials.guardianoffers.co.uk": [7003], "www.ncdc.noaa.gov": [11083], "havelockinvestments.com": [7243], "hints.macworld.com": [9824], "lsy-www.swiss.com": [15695], "troveread.com": [16763], "dartlang.org": [4157], "www.nileshgr.com": [11406], "versacart.com": [17633], "*.ihg.com": [8230], "www.au.org": [949], "guide-images.makeprojects.org": [9904], "www.soup.io": [15166], "www.usrjoy.com": [17448], "www.trustsign.com.br": [16783], "ii.nlm.nih.gov": [11052], "www.gi.de": [6558], "www.dms-sweden.com": [4047], "careers.tableau.com": [15897], "bmb.htwk-leipzig.de": [7114], "www.boca.gov.tw": [2165], "*.collegiatelink.net": [3431], "people.nasa.gov": [10869], "teresa.cce.com": [2871], "hackage.haskell.org": [7229], "firemail.de": [5863], "wcms-prod-web-4.ucsc.edu": [17305], "secure.techxpress.net": [16022], "support.arpnetworks.com": [4931], "ccp.cloudaccess.net": [3278], "img.gmo.jp": [6345], "northnorfolk.greenparty.org.uk": [6925], "register.bg": [13731], "ir-na.amazon-adsystem.com": [909], "www.encase.com": [7006], "inapub.co.uk": [8036], "serveriai.lt": [14616], "laravel-news.com": [9156], "president.osu.edu": [11760], "library.wustl.edu": [17993], "download.tvnz.co.nz": [15886], "www.fnacspectacles.com": [5969], "discuss.vultr.com": [17873], "www.cve.mitre.org": [10459], "*.jugger.ru": [8666], "bank.vutbr.cz": [17522], "dagensbedste-dbapp.netdna-ssl.com": [4108], "hsivonen.fi": [7120], "tid.al": [16430], "et.nytimes.com": [11000], "*.silkn.com": [14793], "forums.satellitecyprus.com": [3988], "www.reportingproject.net": [13785], "*.dmstatic.com": [4105], "www.imperial.nhs.uk": [10913], "www.angelikafilmcenter.com": [1015], "all4xs.net": [826], "wiki.filezilla-project.org": [5796], "moneyadviceservice.org.uk": [10548], "static.youcaring.com": [18704], "bbs.pacbsd.org": [12307], "yaca.yandex.kz": [18652], "*.asnbank.nl": [352], "schoolpro.axosoft.com": [1477], "www.comsigntrust.com": [3455], "schooladmissions.wirral.gov.uk": [18371], "fantoniogargallo.unizar.es": [17356], "*.forocoches.com": [6048], "www.pacsec.jp": [12308], "isecpartners.com": [7825], "microfocus.com": [10348], "www.newint.org": [11297], "germantv.net": [6555], "www.roffey.org": [13947], "www.worldforpets.com.au": [18460], "www.pacs.wustl.edu": [17993], "www.dein.dk": [4319], "*.namecentr.al": [11018], "hotlineplus.mutualofamerica.com": [10733], "damballa.com": [4128], "support.allizom.org": [856], "ads.integral-marketing.com": [8202], "avis.com": [1451], "www.detectify.com": [4402], "*.pbwiki.com": [12214], "adk2.com": [598], "system.opendns.com": [11932], "markeedragon.com": [10007], "eservices.solihull.gov.uk": [15122], "session.snelis.com": [15033], "placehold.it": [12754], "www.we-energies.com": [18016], "borrowsmart.afford.com": [705], "ovidsp.tx.ovid.com": [12175], "www.effectivemeasure.net": [5109], "*.boots.no": [2215], "www.giftedandtalented.com": [6642], "www.exratione.com": [5473], "mshare.net": [10414], "anatoomikum.ut.ee": [17069], "*.ciuvo.com": [3199], "chuvashiya.rt.ru": [13469], "www.handmadekultur.de": [7189], "hillingdon.gov.uk": [7410], "www.acronymfinder.com": [484], "groupme.com": [6970], "*.mumzworld.com": [10703], "s.tapirex.com": [12351], "entp.hud.gov": [17018], "lirias.kuleuven.be": [8816], "hanty.rt.ru": [13469], "dax-files.comscore.com": [3453], "thejns.org": [8643], "smetrics.aem.playstation.com": [12795], "*.carleton.ca": [2852], "cdn.anonfiles.com": [1041], "subscribe.courierpostonline.com": [3715], "cint.com": [3149], "theeroticreview.com": [16222], "www.autoadmanager.com": [1420], "atomicobject.com": [1327], "alt.coxnewsweb.com": [3740], "photo.tinhte.vn": [16474], "hivtest.cdc.gov": [19046], "t.album.youmix.co.uk": [18715], "www.givingprograms.com": [6691], "email.freenet.de": [6180], "myradiocreative.com": [10815], "*.propublica.org": [13111], "youtube.com.au": [18709], "www.rvm.io": [13482], "cacert.net": [2520], "a.yimg.jp": [18685], "server.adformdsp.net": [585], "bi.adview.pl": [666], "data.nasa.gov": [10869], "www.beusergroup.co.uk": [16075], "directa.cat": [4528], "www.fruct.org": [5595], "flitto.com": [5929], "*.moovweb.net": [10582], "rsync.videolan.org": [17688], "images.shrinktheweb.com": [14746], "secure.goldmann.pl": [6816], "ml01.ispgateway.de": [8376], "ticket.yandex.com": [18651], "assets.libsyn.com": [9321], "eresearch.umich.edu": [17266], "easyprint.idoxgroup.com": [19281], "kids.rts.ch": [19621], "www.projects.dm.id.lv": [4043], "video.golem.de": [6819], "www.newschallenge.org": [11334], "ssl-certificate-center.verisign.ch": [17623], "libs.a2zinc.net": [223], "portal.rz.htw-berlin.de": [7112], "elq.to": [5181], "*.whatbox.ca": [18232], "gwent.police.uk": [7033], "www.justsecurity.org": [8695], "getsafeonline.org": [6602], "affair-guide.com": [697, 698], "lp.outbrain.com": [12150], "*.hackint.org": [19234], "www.symplicity.com": [15721], "git.cyrus.foundation": [3989], "agenda.infn.it": [7766], "ayyildiz.de": [1478], "www.godownloadsongs.com": [15203], "*.t-online.de": [15774], "community.nationalarchives.gov.uk": [11065], "www.onlinesbi.com": [11873], "www.thoughtbot.com": [16387], "www.wimdu.co.uk": [18322], "blog.geocaching.com": [6541], "blog.jolexa.net": [8621], "moatads.com": [10485], "www.creare.co.uk": [3769], "docs.buttercoin.com": [2463], "darkroom.taskforceonshalegas.uk": [15969], "*.nextstudioapps.com": [9129], "temai.etao.com": [4973], "freegeoip.net": [6175], "funstockdigital.co.uk": [6268], "int-mas.wiiings.com": [18288], "literatureandlatte.com": [9466], "pixelx.de": [12736], "www.linearcollider.org": [9369], "i.cdnpark.com": [2561], "find.my.t-mobile.com": [15772], "cinemacon.com": [3146], "krystal.info": [19342], "dev.enaza.ru": [5230], "*.kenai.com": [8845], "www.harita.yandex.com.tr": [18649], "romdashboard.com": [13447], "motigo.com": [10612], "static.brandfolder.com": [2283], "discussions.tenable.com": [16109], "nhsdirect.nhs.uk": [10911], "subversion.cru.fr": [3829], "jp.norton.com": [11505], "www.readrobreid.com": [13609], "give.everydayhero.com": [5454], "lists.crux.nu": [3836], "www.weneedtoknow.info": [18029], "p1-u.itunes.apple.com": [1120], "webassetsj.scea.com": [14089], "campusjob.com": [2784], "voxer.com": [17854], "www.operationfabulous.com": [12052], "piware.de": [10034], "glamorousuk.com": [6698], "*.microsoftstoreassets.com": [10368], "tog.ie": [15844], "ondemand.webtrends.com": [18171], "www.hornbach.at": [7496], "t2rknowledge.bt.co.uk": [1548], "www.wiki.hidekisaito.com": [7393], "wwwdev.lbl.gov": [9065], "www.netpivotal.eu": [11204], "coveredca.org": [3731], "www.konami.com": [8974], "11footballclub.com": [21], "secure.touchnet.com": [16609], "www.racf.bnl.gov": [19009], "mincommsy.uni-hamburg.de": [9744], "*.vtourist.com": [17751], "blog.fastly.com": [5687], "secure.vcab.com": [17473], "demo.sipgate.io": [14856], "*.http.cdn.softlayer.net": [15094], "centos.org": [2942], "program-think.blogspot.*": [2113], "www.frozen-yogurt-franchise.org": [6232], "community.understood.org": [17159], "www.inxpo.com": [8334], "www.pingtest.net": [11894], "pureloto.com": [13244], "rapidgator.net": [13560], "*.visaliatimesdelta.com": [17767], "www.consumidor.ftc.gov": [5720], "consumer.ftc.gov": [5720], "*.powerspeaking.com": [12996], "*.nextag.fr": [11363], "www.underground-gamer.com": [17156], "www.sbb.ch": [15693], "asset-6.soupcdn.com": [15167], "www.geeklan.co.uk": [6495], "webtv.netcologne.de": [11188], "komoona.com": [8968], "btcturk.com": [1564], "safecount.net": [14232], "sendfiles.educ.cam.ac.uk": [17243], "www.mises.org": [10453], "www.cloudup.com": [3316], "truthmarket.com": [16801], "java.twistedmatrix.com": [16885], "www.knappschaft.de": [8940], "www.lowes.com": [9636], "d.stavrovski.net": [15439], "www.developermail.io": [4420], "opac.library.usyd.edu.au": [19723], "cendio.com": [2934], "whois.domaintools.com": [4660], "licensebuttons.net": [9324], "c.compete.com": [3519], "banym.de": [1659], "es.godaddy.com": [6773], "www.victoriassecretcanada.ca": [17673], "guides.thenextweb.com": [16302], "*.what.cd": [18229], "spamicity.info": [15215], "wsio-sandbox.buttercoin.com": [2463], "unglue.it": [17163], "roku.com": [13954], "solutions.symantec.com": [15715], "www.kkh.de": [8732], "www.sweetandsourstudio.com": [15683], "*.sitemeter.com": [14882], "software.intel.com": [8209], "www.uspsoig.gov": [17027], "arch-stuff.org": [19461, 19462], "help-nl-eu.nike.com": [11401], "proxy.video.sky.com": [14924], "exmail.qq.com": [13285], "www.ifixit.com": [7727], "svn.alfresco.com": [802], "yahoo.yieldmanager.com": [13881], "www.deater.net": [4265], "*.c-col.com": [3519], "snipt.net": [15038], "www.submissiontechnology.co.uk": [15563], "eindhoven.nl": [5127], "wellbid.com": [18192], "www4-static1.gog.com": [6365], "www.thehut.com": [16223], "pcrdist.com": [19484], "insight.sensiolabs.com": [14586], "www.deri.ie": [11064], "openit.de": [11945], "atom.iop.org": [8195], "www4.uwm.edu": [17294], "*.sprint.com": [15314], "www.grad.washington.edu": [17291], "www.alumni.cam.ac.uk": [17243], "www.hkk.de": [7078], "*.webhostingpad.com": [18104], "jobs.bathnes.gov.uk": [1689], "api.random.org": [13545], "securemedia.newjobs.com": [11318], "www.ageofmine.com": [722], "pixel.adblade.com": [560], "torreycommerce.com": [16593], "barmer-gek.de": [1672], "knowledge.verisign.ch": [17623], "www.controllermax.com": [3622, 3623], "www.coloman.nl": [3438], "werstreamt.es": [18203], "www.engineyard.com": [5265], "my.hivelocity.net": [7429], "tsbmag.com": [15859], "freesoundeffects.com": [6132], "init.unizar.es": [17356], "faster.symantec.com": [15715], "fdic.gov": [5710], "mirg.engineering.osu.edu": [11760], "temp-mail.ru": [16105], "www.vonage.ca": [17838], "www.daily.co.uk": [4113], "youthorchestra.stanford.edu": [15383], "www.freifunk-goettingen.de": [6190], "www.affiliate-b.com": [701], "www.lindy.com": [9367], "help.grooveshark.com": [14248], "oblivia.vc": [11704], "fellowship.fsfe.org": [5601], "*.routledgeweb.com": [8118], "wiki.bitnami.com": [2011], "www.trafficmaxx.de": [16655], "emergency.cites.illinois.edu": [17258], "new.interkassa.com": [8251], "salestraining.apple.com": [1120], "trailofbits.com": [16656], "admissions.warrington.gov.uk": [17984], "desimg.zamimg.com": [18782], "tech.coursera.org": [3719], "metrika.yandex.by": [18648], "*.vespermarine.co.uk": [17651], "dealspwn.com": [7549], "uvo.gov.sk": [14972], "www.economy.com": [5062], "search.maven.org": [10088], "anonyproz.com": [1081], "www.ceasefiremagazine.co.uk": [2925], "*.skrill.com": [14919], "*.bundespolizei.de": [2432], "www.vip.vetbiz.gov": [17019], "www.hofer.si": [299], "nasadrones.thecthulhu.com": [16334], "sc.wustl.edu": [17993], "www.zopa.com": [18907], "www.owlfolio.org": [12179], "zpchips.com": [18765], "www.shiftboard.com": [14704], "*.jorsika.com": [2776], "www.va.gov": [17019], "*.informit.com": [8117], "ccrma.stanford.edu": [15383], "sysconfig.org.uk": [15752], "www.lifeline.org.au": [9332], "utopianet.org": [17457], "perfectmoney.is": [12562], "www.v2c.lrz.de": [9238], "www.neustarlocaleze.biz": [11283], "captcha.aol.com": [321], "epixmedia.co.uk": [5323], "shop.geocaching.com": [6542], "signin.dell.com": [4335], "directv2.ilovefreegle.org": [7892], "m.static.newsvine.com": [11348], "netbank.de": [11216], "eval.fi.ncsu.edu": [11492], "kimberly-clark.com": [8889], "www.tpd.sk": [16622], "jessfraz.com": [8555], "bing.com": [1895], "mycliplister.com": [10825], "konto.money.pl": [10547], "*.photoshelter.com": [12642], "neweb.ucsd.edu": [16939], "nutritiondata.self.com": [11585], "ecaf.peterborough.gov.uk": [12594], "iic.cisecurity.org": [2617], "runabove.com": [14034], "staging-our.intel.com": [8209], "www.thephone.coop": [16347], "copy.me": [4978], "genius-upload.itunes.apple.com": [1120], "www.bruno.postle.net": [2378], "pycon.sg": [13264], "xjzt.jd.com": [8423], "pressable.com": [13036], "www.buchhaus.ch": [19023], "kde.org": [8718], "shpock.com": [14745], "recode.net": [13647], "prospect.rsc.org": [13996], "www.shadertoy.com": [14653], "enfuseconf.com": [7006], "www.globusvoyages.ch": [19262], "*.imageshack.us": [7981], "noordwijkerhout.nl": [11132], "www.mer.io": [10270], "clinkle.com": [3269], "fullcontact.com": [6250], "www.isyvmon.com": [8383], "secure.lenos.com": [9250], "www.haritalar.yandex.com.tr": [18649], "neustar.com": [11282], "zeitungsarchiv.nzz.ch": [19450], "www.mathias-kettner.de": [10068], "amblog.ashleymadison.com": [1255], "cdn.comparitech.com": [3514], "*.meilenrechner.de": [10394], "cloud.disk42.com": [4561], "analytics.turn.com": [16840], "firm24.com": [5864], "www.bigcartel.com": [1850], "www.siemens.co.*": [14770], "cdn9.sure-assist.com": [15644], "h2o.examp1e.net": [5481], "macfound.fluxx.io": [5959], "autotrader.com": [1419], "moh.nhs.uk": [10913], "staging.ycharts.com": [18613], "registrationcenter.intel.com": [8209], "collegehumor.com": [3428], "www.systemintegra.ru": [15759], "code.downthemall.net": [4722], "www.admin.ox.ac.uk": [17271], "alienvault.com": [812], "www.emailcenter.acs.org": [929], "*.us1.cloud.oracle.com": [12082], "bootstrap.debian.net": [4273], "softwareintegrity.coverity.com": [3734], "assistance.ouvaton.org": [12155], "secure.gacollege411.org": [6304], "www.theses.cz": [16350], "www.htaccessbook.com": [7588], "git.linaro.org": [9361], "www.bayleaks.com": [1699], "www.engelsystem.de": [5264], "www.deutsch.peerius.com": [12522], "www.goo.gl": [6844], "www.gloucestershire.gov.uk": [6749], "gorod.yandex.kz": [18652], "arrisi.com": [1215], "www.resistsurveillance.org": [13808], "www.exmo.com": [5498], "secure.38degrees.org.uk": [120], "gogoyoko.com": [6809], "chppe.osu.edu": [11760], "ox-d.pubgears.com": [13193], "boinc.berkeley.edu": [17240], "open.hpi.de": [7090], "cduniverse.com": [2568], "na.llnet.bioware.cdn.ea.com": [1903], "www.guaranibitcoin.com": [6997], "memrise.com": [10254], "sseeventsgroup.com": [14173], "www.cbp.net.br": [2524], "gitorious.org": [6682], "www.w.th-mittelhessen.de": [15809], "learnmyway.com": [9211], "feeder.livingsocial.com": [9517], "linkbox.argonit.cz": [1183], "vircurex.com": [17733], "diewildenkerle.spiel.tivi.de": [19800], "docs.nubits.com": [11561], "*.min.us": [10436], "www.dollaraday.co": [4643], "www.exist.de": [4994], "hscj.ufl.edu": [17252], "api.musixmatch.com": [10723], "run.pivotal.io": [12730], "net-mobile.com": [11178], "merca20.com": [10273], "img08.taobaocdn.com": [15953], "efinancialcareers.com": [4911], "twiki.cern.ch": [2575], "clicklogger.rm.uol.com.br": [16998], "webhostone.de": [18121], "*.infotech-team.com": [18098], "polarnopyret.se": [12862], "lanyrd.com": [9153], "www.freedm.ncsu.edu": [11492], "www.iovation.com": [8342], "puckey.org": [13221], "artwork-cdn.7static.com": [196], "cart.taobao.com": [15952], "*.radioshack.com": [13515], "ot.ca-mpr.jp": [2510], "www.gemius.com": [6516], "git.tocco.ch": [16524], "www.idefix.com": [7933], "lindy.com": [9367], "owkb.ch": [19333], "zh.pcisecuritystandards.org": [12224], "ipinvite.iperceptions.com": [19275], "sandvine.com": [14284], "is.puma.com": [13227], "www.typepad.com": [16914], "www.collabora.com": [3419], "piwik.cbendt.de": [2531], "www.agilewebsolutions.com": [727], "www.dotmailer.co.uk": [4695], "arpnetworks.com": [341], "*.strategicmanagement.net": [15509], "betvictor.com": [17670], "portaltest.equinix.com": [5334], "przewodniki.panoptykon.org": [12365], "*.ria.com": [13425], "newcastleccas.firmstep.com": [19183], "filterbypass.me": [5814], "issues.adblockplus.org": [561], "www.lenr-forum.com": [19355], "dev.heg.com": [7502], "pacs.wustl.edu": [17993], "www.airtime.pro": [755], "*.dpreview.com": [4497], "videointerchange.com": [17693], "forums.juniper.net": [8682], "cinfu.com": [3148], "member.oregonlive.com": [12100], "hosting.unseen.is": [17369], "res.axeso5.com": [1473], "listboxservices.web.cern.ch": [2575], "snakehosting.dk": [15025], "www.alianza.tv": [807], "www.hieber.de": [19248], "temp-mail.org": [16105], "btcs.com": [1562], "en-sr.dict.cc": [4455], "levels.io": [9268], "ohling.com": [11765], "www.systeme.familie-redlich.de": [5644], "static8.startnext.com": [15412], "www.socialshows.com": [15061], "www.webzilla.com": [18099], "www.jd.com": [8423], "forum.linuxserver.io": [9435], "webmail.loxinfo.co.th": [18130], "www.blackhat.com": [2037], "okpay.com": [11629], "crcpress.com": [8118], "www.xfinity.com": [19784], "bitcoin.at": [1961], "www.military.ncpw.gov": [11078], "secure.iwantmytvmagazine.com": [10973], "b5.yahoo.co.jp": [18640], "werkenbijdeoverheid.nl": [11132], "*.bounce.io": [2243], "zencoder.com": [18820], "parabola.nu": [12384], "names.co.uk": [11026], "istockphoto.com": [19309], "mailinator.com": [9887], "heft.ivw.eu": [7870], "telework.jpl.nasa.gov": [10869], "soscisurvey.de": [15050], "pbs-erhverv.dk": [12494], "delfogo.com": [4325], "blog.avast.com": [1444], "iwdc.ucsd.edu": [16939], "fcs.unizar.es": [17356], "www.linuxjournal.com": [9430], "images.sockshare.com": [15081], "static.smi2.net": [15005], "vh1.ro.vutbr.cz": [17522], "bbs.jide.com": [8438], "labs.opendns.com": [11932], "api.accuweather.com": [465], "upload.youcanbook.me": [18703], "www.dei.gr": [6915], "www.thehackernews.com": [16338], "pittsburghmassageandwellness.com": [12729], "www.globalchokepoints.org": [4908], "api.tech.yandex.com": [18651], "mail.mcb.net": [9966], "info.jetbrains.com": [8559], "prev.prediction.io": [13023], "www.unizar.es": [17356], "www.herefordshire.gov.uk": [7327], "codepen.io": [3350], "www.klubitus.org": [8936], "globaltradeday.org": [6734], "www.viestintavirasto.fi": [17708], "globusonline.org": [6746], "www.birmingham.gov.uk": [19000], "nda.amd.com": [925], "www.mrmcd.net": [9786], "www.lokus.no": [9566], "fashionshop.telegraph.co.uk": [16081], "tastselv.skat.dk": [14897], "waytools.com": [18010], "www.aftership.com": [713], "primalblueprint.com": [13058], "minetest.ru": [10417], "www.tox.chat": [16616], "*.flightaware.com": [5919], "www.securepaths.com": [14506], "msevents.microsoft.com": [10364], "analytics.cooldestinations.net": [3641], "pfizerhelpfulanswers.com": [12611], "ethicaldata.co.uk": [5381], "tip.sbb.ch": [15693], "nebula.wsimg.com": [14507], "ethoscustombrands.com": [5387], "www.peacefire.org": [12504], "internetconsultatie.nl": [11132], "royalsociety.org": [14002], "*.pricerunner.com": [13053], "frederick.cancer.gov": [2805], "dotmailer.co.uk": [4695], "aeon.lib.umd.edu": [17263], "wavpin.com": [18009], "hive.hostanalytics.com": [7515], "www.kiva.org": [8926], "wornthrough.com": [18465], "img.yumpu.com": [18747], "freedom-ip.com": [6164], "partner.dhl.de": [4034], "seedrs.com": [14551], "www.gitcafe.com": [6676], "cloudfoundry.org": [3299], "mail.webonic.hu": [18136], "signon.org": [10630], "trac.adium.im": [595], "*.dynamicyield.com": [4828], "www.binarydefense.com": [1891], "student.andover.edu": [12623], "www.euroforum.de": [5412], "emeraldinsight.com": [5205], "www.youtube.ug": [18709], "rss.final4ever.com": [5819], "www.seedrs.com": [14551], "trip.m.taobao.com": [15952], "login.mailigen.com": [9886], "shinystat.com": [19587], "*.mayoclinic.com": [10106], "police.stanford.edu": [15383], "status.rubygems.org": [14020], "ntu.ac.uk": [10972], "www.artsy.net": [1235], "enterpriseportal.accuweather.com": [465], "templates.hostgator.com": [7511], "*.gsu.edu": [6392], "www.remoteapp.windowsazure.com": [18344], "labspace.open.ac.uk": [11986], "wiki.nikhef.nl": [11402], "bethsoft.com": [1818, 1819], "refer.onemonth.com": [11850], "s.svtrd.com": [15675], "www.arenavc.com": [1180], "usenix.org": [17040], "www.suppliesfordreams.org": [15637], "www.human.cornell.edu": [3676], "iisp.org": [7743], "www.nab.com.au": [10865], "abestweb.com": [246], "taverna.knowledgeblog.org": [8948], "www.lpac.co.uk": [9094], "www.eset.de": [4955], "login.eset.com": [5358], "www.dns-oarc.net": [4059], "*.dfn.de": [4415], "cdn.atdmt.com": [10360], "app.maven.co": [10087], "pabo.nl": [12306], "www.prevention.cancer.gov": [2805], "einsteinathome.org": [5128], "*.heacademy.ac.uk": [7406], "tiresnwheels.ca": [16496], "downloads.vagrantup.com": [17529], "partner.wienernetze.at": [18284], "avast.com": [1444], "clk.atdmt.com": [10360], "dosomethingreal.govspace.gov.au": [6867], "umdrightnow.umd.edu": [17263], "donate.familysearch.org": [5646], "ripmixmake.org": [4908], "www.ftp.rnl.tecnico.ulisboa.pt": [19203], "*.ona.gov.au": [11748], "www.searslabs.com": [14448], "www.hipointinc.com": [7389], "www.jdpay.com": [8429], "translations.documentfoundation.org": [16221], "www.sweb.ru": [15208], "taxes.recurly.com": [13652], "mediamath.com": [10157], "getclef.com": [6587], "hellobond.com": [7299], "wiki.refeds.org": [13413], "social.msdn.microsoft.com": [10364], "www.whappodo.com": [18227], "www.nccgroup.trust": [10880], "turkey.thecthulhu.com": [16334], "www.onlinewellnessassociation.com": [11879], "reader.qq.com": [13285], "cdn1.kongcdn.com": [8976], "www.sofurryfiles.com": [15048], "thefappening.sexy": [16274], "www.photographytalk.com": [12646], "eservice.websupport.novell.com": [11530], "sv2.biz": [15668], "usesthis.com": [17442], "admin.sans.org": [14072], "*.telemetryverification.net": [16090], "*.compliancesigns.com": [3525], "pandora.com": [12359], "nsf.gov": [11060], "getcloudapp.com": [9371], "frontier.co.uk": [6224], "www.nih.gov": [11052], "www.amnesty.gr": [963], "www.praetorian.com": [13011], "nlm.nih.gov": [11052], "thejournalnews.com": [9564], "www.sf.se": [14108], "hrep.nhmrc.gov.au": [7606], "*.bigcommerce.com": [1853], "s0.static.hootsuite.com": [7488], "mazacha.in": [10108], "dog.ro.vutbr.cz": [17522], "help.livingsocial.com": [9517], "www.syncsearch.jp": [15731], "www.digitalcreations.no": [4490], "*.1c-bitrix.ru": [56], "safesmokedfish.food.gov.uk": [19187], "secure.join.me": [8616], "quadrigacx.com": [13324], "www.profitbricks.co.uk": [13127], "eyes.nasa.gov": [10869], "*.store.thesims3.com": [5151], "www.flamingspork.com": [5902], "*.webroot.com": [18140], "xerte.plymouth.ac.uk": [12833], "alltop.com": [861], "www.iubenda.com": [8396], "cs.drexel.edu": [4758], "www.sj.se": [14125], "precharge.com": [13016], "rg3.github.com": [6680], "www.infotomb.com": [8104], "dashboard.demandbase.com": [4342], "rebelmouse.com": [13638], "www.facebook.de": [5623], "www.web-stat.com": [18047], "www.belspo.be": [1771], "www.speakerdeck.com": [15236], "www.freeswitch.org": [6130], "i.answers.microsoft.com": [10364], "icm.intan.net": [8200], "www.facebook.dk": [5623], "*.fusionio.com": [6276], "www.mrcote.info": [10674], "cdn.ultrahdtv.net": [17136], "cf4.100r.org": [9], "content.mkt51.net": [14802], "www.tk.de": [16037], "*.byteark.com": [2487], "www.tastselv.skat.dk": [14897], "www.infosecindustry.com": [8102], "iter.org": [7847], "stanfordyou.stanford.edu": [15383], "www.thesprawl.org": [15299], "openpgpjs.org": [11965], "www.shoppbs.org": [12211], "www.togetherjs.com": [16530], "greenwire.greenpeace.org": [6937], "*.mediafactory.fm": [10168], "netdev01.org": [11220], "kva.se": [19345], "*.biblesociety.co.za": [18710], "hosting.de.inter.net": [8229], "*.cpni.gov.uk": [2956], "widgets.lotame.com": [9613], "kiosk.onlinesbi.com": [11873], "perf.cloud.unity3d.com": [17220], "chtah.com": [3055], "support.leagueoflegends.com": [9206], "norx.io": [11510], "mab.sbi.co.in": [14082], "www.elft.nhs.uk": [10913], "chevereto.com": [3070], "armsglobe.chromeexperiments.com": [3117], "chipworks.com": [3089], "www.laeditorialupr.com": [17334], "wwwstatic.spiceworks.com": [15266], "www.jdeslippe.com": [8469], "static-1.gumroad.com": [7020], "ycombinator.com": [7141], "www.speedcrunch.org": [15252], "www.nisit69.com": [11422], "mobile.github.com": [6680], "www.mouseflow.nl": [10624], "secure-store.nike.com": [11401], "ndchost.com": [10892], "www.freespeech.org": [6151], "secure.s.telegraph.co.uk": [16082], "gl.dinahosting.com": [4519], "shared.5min.com": [178], "parking.newcastle.gov.uk": [11315], "trip.163.com": [34], "medschool.wustl.edu": [17993], "coloradonocall.com": [3440], "crossroads.ias.edu": [7669], "vlog.leadformix.com": [9193], "garyjohnson2012.com": [6464], "enterprise.com": [5291], "b.scorecardresearch.com": [14393], "www.uguu.se": [17118], "*.cbsnews.com": [2526], "www.stonewallcymru.org.uk": [19630], "www.btwifi.co.uk": [1579], "mail.internet2.edu": [8279], "www.vanityfair.com": [3551], "*.saga.co.uk": [14237], "www.studentaid2.ed.gov": [4889], "www.snowdrift.coop": [15043], "join.fuckyoucash.com": [6241], "www.recordstoreday.com": [13649], "assets.drupal.ku.edu": [17259], "tlsfun.de": [16512], "labp.htwk-leipzig.de": [7114], "*.tryprocleanse.com": [10800], "theeventdiva.com": [16189], "depkatalog.no": [4373], "insurance.va.gov": [17019], "www.no1366.org": [11441], "gifts.stanford.edu": [15383], "apps8.cardiff.gov.uk": [19039], "getshine.com": [6605], "aerosollab.osu.edu": [11760], "cancer2.cse.ucsc.edu": [17305], "www.galerievirtuelle.bve.ulaval.ca": [17229], "*.siteor.pl": [14883], "weblogin2.geant.net": [6313], "jobs.uwm.edu": [17294], "media-cdn.tripadvisor.com": [16741], "elkosmas.gr": [19153], "*.linkbucks.com": [9375], "arue.stanford.edu": [15383], "video.ted.com": [15805], "posteshop.it": [12966], "redaktorext.polskieradio.pl": [12886], "bux.cz": [19029], "gforge.inria.fr": [8159], "vtb.ru": [8457], "choquecultural.catracalivre.com.br": [2908], "mercatus.org": [10275], "plugrush.com": [12824], "secure.powys.gov.uk": [19513], "www.smartbrief.com": [14987], "iceheberg.fr": [7912], "www.onamae-server.com": [11820], "www.fpcomplete.com": [5591], "www.rushbucks.com": [14040], "platform.appcelerator.com": [1113], "tmobile.com": [15834], "images.b.switchadhub.com": [15701], "livecorp.com.au": [9486], "hex.getdigital.de": [6611], "www.top.de": [16558], "www.itsdanbull.com": [4130], "webtranslateit.com": [18168], "ngvpn13.nvidia.com": [10985], "register4less.com": [13733], "talkingphonebook.com": [9538], "l.sharethis.com": [14668], "stag-result.cntraveler.com": [3555], "www.accountchooser.com": [461], "amctheatres.com": [307], "blog.names.co.uk": [11026], "www.onarbor.com": [11822], "gallery.hackerspace.pl": [7149], "door.desy.de": [4399], "www.hex-rays.com": [7379], "*.boum.org": [2242], "www.ohm2013.org": [11624], "bprc.osu.edu": [11760], "www.crunchbase.com": [3833], "www.brueckenbauer.ch": [19399], "onlinelibrarystatic.wiley.com": [18309], "*.uidaho.edu": [17257], "healthlibrary.stanford.edu": [15382], "search.cam.ac.uk": [17243], "affil.walmart.com": [17964], "www.quicktranslate.com": [13361], "feitbulbs.com": [5745], "service.maxymiser.net": [10098], "url2png.com": [17411], "thumbs.sbstatic.com": [14797], "bsn.console.aliyun.com": [821], "moonpig.com.au": [10578], "unmaintained.git.collabora.com": [3419], "onename.com": [11836], "secure.metoffice.gov.uk": [14489], "outnow.ch": [19473], "syntevo.com": [15741], "ixwebhosting.com": [7882], "*.viamichelin.com": [17659], "openid.yubico.com": [18745], "forums.netapp.com": [11183], "www.ioam.de": [7783], "me.huobi.com": [7624], "careers.vodafone.co.uk": [17813], "www.hellobond.com": [7299], "www.l.de": [9057], "franklinveaux.com": [6103], "*.lovelens.li": [9630], "forum.zen.co.uk": [18815], "equity.org.uk": [5336], "roe.ch": [13944], "altai.rt.ru": [13469], "mullvad.net": [10694], "imdb.com": [7756], "hummingbird.sandiegoreader.com": [14272], "royal.gov.uk": [13999], "*.royalmailgroup.com": [14001], "www.registrar.osu.edu": [11760], "federation.renater.fr": [13764], "opensrs.com": [11969], "info.ooyala.com": [11900], "xpl.theadex.com": [16331], "escueladoctorado.unizar.es": [17356], "distrib-coffee.ipsl.jussieu.fr": [8687], "jmldirect.com": [8443], "www.avaaz.org": [1437], "secure.southampton.gov.uk": [15191], "shop.threema.ch": [16399], "www.brand.osu.edu": [11760], "*.kym-cdn.com": [8756], "*.hr.wvu.edu": [18212], "standagainstspying.org": [15376], "brand.osu.edu": [11760], "blog.hqcodeshop.fi": [7576], "marksandspencer.com": [9945], "sso.forgerock.com": [19189], "pci.trustwave.com": [16799], "psswrdbx.com": [12433], "partnernet-uat.symantec.com": [15715], "dapeigou.jd.com": [8422], "www.wtop.com": [18478], "ksp.mff.cuni.cz": [19343], "www.rackspace.co.uk": [13499], "www.idfpr.com": [7965], "*.wikimedia.es": [18296], "atbank.nl": [358], "*.cooliris.com": [3643], "hoover.org": [7489], "wj32.org": [18390], "cms.vervehosting.com": [17646], "www.geodacenter.org": [1194], "www.safesource.org.nz": [14228], "forums.freebsd.org": [6120], "infodev-d7-live.nsms.ox.ac.uk": [17271], "the-group.net": [16287], "element.yandex.by": [18648], "storage.filemobile.com": [5800], "iphone-client.fitbit.com": [5887], "haproxy.com": [7045], "www.popvote.hk": [12912], "www.myinterfase.com": [10836], "*.fwmapps.co.uk": [5671], "www.tecnocode.co.uk": [16054], "*.tripodo.de": [16747], "mobilflex.tdc.no": [15797], "www.retsinformation.dk": [13830], "books.sonatype.com": [15132], "www.alias.io": [808], "www.union.illinois.edu": [17258], "www.centzy.com": [2960], "www.banki.ru": [1646], "www.sr.se": [15673], "lolagrove.com": [9568], "bpsshop.org.uk": [1538], "kotaku.com": [8993], "social-engineer.com": [15056], "jobbik.hu": [8595], "billing.hudsonvalleyhost.com": [7598], "static6.startnext.com": [15412], "www.physicsforums.com": [12655], "authoring.lsbu.ac.uk": [9098], "mea.elsevierhealth.com": [5187], "cf.gcaptain.com": [6311], "www.omron.com": [11804], "ece1jngec.blogspot.*": [2113], "newspix.nzherald.co.nz": [11314], "politicalcompass.org": [12871], "www.globalpromote.com": [6731], "e15.xhamsterpremiumpass.com": [18516], "support.webmoney.ru": [18076], "*.moderngiver.com": [10521], "www.fsadownload.ed.gov": [4889], "www.stormpath.com": [15500], "*.expomobilehomes.com": [5627], "*.cio.com": [2611], "resilientsystems.com": [13805], "assets2.github.com": [6680], "ch.icecat.biz": [7914], "www.f35.com": [5542], "*.nicta.com.au": [10923], "www.irrlab.com": [18428], "uim.tifbs.net": [19682], "5.*.wdfiles.com": [18294], "list.nih.gov": [11052], "media.headphone.com": [7255], "vaers.hhs.gov": [7062], "*.umass.edu": [17265], "imapfis.ct.infn.it": [7766], "jira.spring.io": [15303], "www.depkatalog.no": [4373], "ifightsurveillance.com": [7888], "*.e-plus.de": [4844], "heg.org": [7502], "www.gwinnettcounty.com": [7034], "secure.cmax.americanexpress.com": [935], "www.beauteprivee.fr": [1739], "dna1.mookie1.com": [10576], "es.amnesty.org": [956], "multicore-devcon.com": [10700], "dfranke.us": [4096], "npp.org.hk": [19445], "lilliputti.com": [9353], "carehomes.derby.gov.uk": [4380], "*.cmbi.ru.nl": [13510], "hca.twimg.com": [16877], "branding.tiki.org": [16444], "www.france-universite-numerique-mooc.fr": [6097], "www.politicshome.com": [12875], "pobox.com": [12835], "www.karma.mg": [8799], "wordpress.com": [18429], "email.163.com": [34], "www.typecast.com": [16911], "www.wanglibao.com": [17971], "genome-cancer.cse.ucsc.edu": [17305], "*.conduit-data.com": [3562], "appcenter.html5tools-software.intel.com": [8209], "nsd.rdc.noaa.gov": [11083], "www.noisey.com": [11460], "licenses.javacoolsoftware.com": [8529], "cdn.msf.org.uk": [9789], "www.fraserxu.me": [6109], "*.van.fedex.com": [5706], "*.atariage.com": [1310], "www.nestle.de": [11168], "*.furaffinity.net": [6270], "*.your-server.de": [7376], "lund.zozs.se": [18912], "www.vpn.ac": [19742], "www.sis.umd.edu": [17263], "parametersecurity.com": [12393], "rows.io": [13990], "www.bignerdranch.com": [1859], "it.stonybrook.edu": [15480], "dropoff.brunel.ac.uk": [19021], "cert-test.sandbox.google.com": [6834], "*.gymglish.com": [7038], "wiki.xenserver.org": [18557], "aful.org": [286], "gatorchrysler.net": [4255], "www.midkemiaonline.com": [19398], "pro-managed.com": [13107], "*.ratfishoil.com": [13574], "get-digital.it": [6561], "www.barnskospecialisten.se": [1679], "www.davidsopas.com": [4228], "blogs.microsoft.com": [10364], "www.kablepackaging.com": [8763], "*.mybetter.com": [10746], "www.torrentz.eu": [16591], "travelblog.org": [16690], "*.pagpop.com.br": [12328], "www.youtube.ro": [18709], "ledger.co": [9219], "tracking.wix.com": [18383], "nm.contextweb.com": [3616], "fusion.net": [18428], "spaceweatherphone.com": [15213], "online.billdesk.com": [1876], "secure.yellowpages.ca": [18671], "www.socialscreamer.com": [15067], "gitlab.awesome-it.de": [1461], "selfservice.mville.edu": [9955], "ws.audioscrobbler.com": [1360], "inkbunny.net": [8148], "dev.hackaday.io": [7138], "www.podvertiseonline.com": [12840], "surveillance.rsf.org": [13784], "www.po.st": [12834], "login.aarp.org": [234], "js.stormiq.com": [15499], "archive.wix.com": [18383], "www.cmdev.com": [2630], "onarbor.com": [11822], "www.samsung.net": [14271], "brainshark.com": [2270], "www.dataspace.pl": [4186], "kaggle.com": [8765], "toster.ru": [16598], "lww.com": [9438], "www.0x41.no": [4], "text.nanog.org": [11490], "ria.com": [13425], "secure.flickr.com": [5918], "billing.owncube.com": [12183], "buckeyevoices.osu.edu": [11760], "swin.edu.au": [15690], "dtp.cancer.gov": [2805], "www.welsh-country-cottages.co.uk": [18490], "images2.hertz.com": [7372], "notex.ch": [11439], "xcb.freedesktop.org": [6126], "www.ida.liu.se": [9084], "*.live1.mintedcdn.net": [10434], "amp.twimg.com": [16877], "www.zohodiscussions.com": [18886], "www.geak.tk": [3533], "www.linuxdaily.com": [19461], "skytal.es": [6915], "app.embed.ly": [5197], "www.springerzahnmedizin.de": [15310], "ih1.redbubble.net": [13660], "hostvirtual.com": [7518], "gorails.com": [6782], "insurance.thecthulhu.com": [16334], "lezlovevideo.com": [9281], "stats.linode.com": [9387], "community.crisis.org.uk": [3800], "*.ezinearticles.com": [5538], "www.canon.ba": [2809], "postmaster.xmission.com": [18530], "status.mantisadnetwork.com": [9962], "alumniconnections.com": [896], "systemed.net": [15764], "cashboardapp.com": [15559], "proposal.illinois.edu": [17258], "tum.de": [16824], "gnats.netbsd.org": [11184], "chipin.com": [3086], "hstor.org": [7586], "joomlacode.org": [8628], "nokiausa.com": [11461], "democratic.lincoln.gov.uk": [9362], "youtube.co.ke": [18709], "vav.vutbr.cz": [17522], "web.enlightenment.org": [5280], "planetnetbeans.org": [12081], "typekit.com": [16913], "www.fsisac.com": [5606], "efurnitureny.com": [4915], "cashplatoon.com": [2879], "www.russia2all.com": [14045], "thestorefront.com": [16314], "subgenius.com": [3128], "openbeta-comm.usaspending.gov": [17034], "f5networks.com.br": [5545], "serviceuptime.com": [14624], "www.sogo.nu": [14148], "www.zumzi.com": [18923], "thedailyedge.thejournal.ie": [16224], "www.photopay.net": [12641], "daft.ie": [4104], "citrixonlinecdn.com": [3180], "www.fusion-net.co.uk": [6277], "qa.linuxcontainers.org": [9420], "www.pydio.com": [13269], "www.xparkmedia.com": [18582], "*.teachersassurance.co.uk": [15993], "network.drweb.com": [4783], "files.adbrite.com": [564], "propellerpops.com": [13157], "help-fr-eu.nike.com": [11401], "www.radikale.dk": [13514], "jp.twimg.com": [16877], "production.nursing.osu.edu": [11760], "www.flirble.org": [16191], "cdn.coderouge.co": [3375], "cleanprint.net": [3226], "www.greasyfork.org": [6905], "www.youtube.com.mk": [18709], "courses.cs.ut.ee": [17069], "*.ku.edu": [17259], "www.bibbitec.com": [1841], "dabney.caltech.edu": [2756], "pbebank.com": [13203], "dmv.ca.gov": [2741], "www.nventio.com": [11589], "feed.mikle.com": [10387], "www.daydeal.ch": [19103], "ecocar2.osu.edu": [11760], "www.onlineregister.com": [11866], "www.stroud.greenparty.org.uk": [6925], "owa.macfound.org": [9818], "enrollmentcenter.medicare.gov": [19392], "piwik.fsf.org": [5600], "fxprime.com": [5610], "ii-public2.nlm.nih.gov": [11052], "www.auth0.com": [1407], "registrar.stanford.edu": [15383], "www.db-ip.com": [4009], "www.nia.nih.gov": [11052], "wiki.selfhtml.org": [19580], "*.humanrights.gov.au": [1395], "dashpay.io": [4164], "list.zerties.org": [18847], "reviews.argos.co.uk": [1185], "www.royal.gov.uk": [13999], "www.apwustore.org": [933], "www.opendoor.com": [12008], "shop.tvnz.co.nz": [15886], "www.red-pill.eu": [13658], "imagesa.btol.com": [1623], "mediadaten.sueddeutsche.de": [15577], "thegazette.co.uk": [16280], "static.paste2.org": [12439], "ct.jd.com": [8423], "geovation.uk": [6550], "lunarpages.co.uk": [569], "phytopedia.fsaa.ulaval.ca": [17229], "oadeposit.wellcome.ac.uk": [19752], "pubservice.com": [13220], "www.vumanity.net": [17875], "www.triplebyte.com": [16746], "lists.isc.org": [7821], "markit.com": [10023], "cms.permits.performance.gov": [12568], "account.jamplay.com": [8498], "cdn3.openculture.com": [12006], "www.united-domains.de": [17213], "thinkingtogether.educ.cam.ac.uk": [17243], "www.sitelock.com": [14867], "www.cottageselection.co.uk": [18490], "www.dialshield.com": [1463], "ba.yandex.kz": [18652], "eddie.ds.uillinois.edu": [16959], "mmonit.com": [9765], "www.febo.com": [19176], "adminer10.vas-hosting.cz": [19729], "biz-form.ec.yahoo.co.jp": [18640], "bugs.funtoo.org": [6269], "gsb.download.bva.bund.de": [5716], "ruralchampions.govspace.gov.au": [6867], "forums.ispbilling.com": [16816], "www.tdcanadatrust.com": [15800], "www.imgdino.com": [7993], "www.unodc.org": [16994], "static.oc-static.com": [11610], "onepagerapp.com": [11856], "bugzilla.org": [2410], "jetico.com": [8561], "pastevault.com": [12441], "www.c3noc.net": [2502], "www.opennicproject.org": [19466], "pd-st.itunes.apple.com": [1120], "lists.quagga.net": [13325], "marketoversight.fca.org.uk": [5557], "pauldotcom.com": [12460], "kb.juniper.net": [8682], "*.swetswise.com": [15687], "imperialcollegeunion.org": [8015], "webfusion-support.co.uk": [18117], "www.skrilnetz.net": [14920], "kb.web-hosting.com": [18044], "en.site1.answcdn.com": [1059], "niehs.nih.gov": [11052], "help.agilebits.com": [727], "adultwork.com": [645], "fm.163.com": [35], "rest-production.mollom.com": [10537], "klubitus.org": [8936], "ws.mail.qq.com": [13285], "www.cmth.bnl.gov": [19009], "filecache.drivetheweb.com": [12286], "www.syndie.de": [15734], "help.disqus.com": [4570], "fpp.wusm.wustl.edu": [17993], "www.oblivia.vc": [11704], "hasylab.desy.de": [4399], "best-pariuri-online.com": [7732], "www.jal.co.jp": [8514], "www.marcansoft.com": [9982], "www.cs.berkeley.edu": [17240], "*.litespeedtech.com": [9457], "*.rockstargames.com": [13942], "www.twimler.com": [16878], "kirsle.net": [8918], "security.wmtransfer.com": [18076], "tinypass.com": [16489], "www.surfcanyon.com": [15648], "www.cz-hosting.com": [2697], "portal.nexcess.net": [11356], "learningnetwork.cisco.com": [3162], "files.random.org": [13545], "www.trakehner-nord-west.de": [16658], "data.ct.gov": [2680], "q3k.org": [13276], "virtualqube.com": [17750], "careers.wustl.edu": [17993], "adultshopping.com": [644], "mobility.telus.com": [16103], "inwx.de": [8231], "*.courant.com": [16731], "adigital.org": [590], "airsoftgi.com": [754], "borne.nl": [11132], "inddrivelse.skat.dk": [14897], "sans.org": [14072], "sell.stubhub.com": [15534], "www-q.kaufland.cz": [8822], "www.toxme.se": [16618], "login.barracudanetworks.com": [1680], "www.sphere.com": [15263], "systemcenteradviser.com": [15760], "www.bitmex.com": [1935], "www.myradiocreative.com": [10815], "bunchball.net": [2425], "acom.azurecomcdn.net": [1485], "picasaweb.google.co.*": [6837], "www.amnesty.org.nz": [967], "www.gehrcke.de": [6508], "bitminter.com": [1937], "static.greenwire.greenpeace.org": [6937], "www.arma3.com": [1202], "quest.com": [13351], "www.sous-surveillance.fr": [15185], "marathonbet.com": [9979], "www.xenforo.com": [18561], "www.btnapps.net": [2354], "briehost.com": [2316], "www.eastriding.gov.uk": [5015], "moava.org": [10486], "www.edubuntu.org": [5068], "www.canon.sk": [2809], "bigconcerts.co.za": [1858], "panoptykon.org": [12365], "scieneo.de": [14383], "eso.org": [5426], "www.brightfort.com": [2321], "community.rackspace.com": [13506], "en.over-blog.com": [12156], "sfsecuremail.statefarm.com": [15418], "admin.cms.lg.com": [9077], "www.ucpi.org.uk": [16937], "www.virusbtn.com": [17758], "narodnipanel.cz": [19425], "*.thcdn.com": [16223], "passwd.ut.ee": [17069], "dig.domains": [4465], "vladimir.rt.ru": [13469], "www.solid-run.com": [15117], "pixels.livingsocial.com": [9517], "islenzka.net": [8369], "m.online.t-mobilebankowe.pl": [19654], "*.unica.com": [17181], "foxnews.ramp.com": [6085], "thunderclap.it": [16405], "myshannonconnection.org": [14659], "bakabt.me": [1622], "onebit.cz": [11642], "cortellis.thomsonreuterslifesciences.com": [16384], "inhumanity.com": [8142], "www.nhscareers.nhs.uk": [10913], "cms.surf.nl": [14197], "assets.dandb.com": [4137], "fi.godaddy.com": [6773], "oumedicine.com": [12139], "www.adultwork.com": [645], "shoebuy.com": [14714], "www.bluewin.ch": [2157], "acquia.com": [478], "www.mountainreservations.com": [10620], "datawrapper.dwcdn.net": [4091], "boligportal.dk": [2190], "shop.ticketpro.hu": [16424], "ehs.stanford.edu": [15383], "shop.vice.com": [17666], "static.suite.io": [15586], "fbs.admin.utah.edu": [17288], "www.imperian.com": [19289], "dune.bnl.gov": [19009], "neck2neck.com": [11129], "myfonts.com": [10758], "www.progressreport.cancer.gov": [2805], "youtube.co.za": [18709], "www.robustirc.net": [19555], "www.mpv.io": [10671], "newslook.com": [11330], "www.maybemaimed.com": [10103], "*.simosnap.com": [14818], "www.zarb.org": [18796], "en-bg.dict.cc": [4455], "*.heroku.com": [7332], "myitcv.org.uk": [10837], "ak1s.abmr.net": [762], "*.bytelove.fr": [2490], "amberswann.com": [921], "harvardpilgrim.org": [7220], "cdn.thomasnet.com": [16376], "piping.unizar.es": [17356], "webchat.pirateirc.net": [12710], "sales.epochstats.com": [5326], "www.storycubes.com": [15501], "gdata.fr": [6293], "jp.calameo.com": [2731], "www.notebooknagyker.hu": [9155], "it-pol.dk": [8392], "www.bigv.io": [1855], "kb.wedos.com": [17901], "coredump.gr": [3670], "childrens.eastsussexlearning.org.uk": [19144], "chathamhouse.org": [3033], "magazin.tchibo.de": [15985], "www2.handelsbanken.fi": [7186], "aolcdn.com": [322], "omnibus.hscic.gov.uk": [19264], "smuxi.de": [15016], "peopleclick.com": [12551], "www.windows.net": [18343], "new.x2go.org": [18499], "go.oclaserver.com": [11711], "images.smartertools.com": [14996], "f-droid.org": [5540], "ecx.images-amazon.com": [914], "*.benaughty.com": [1721], "www.voipdistributor.net": [17808], "mcgrhill-warez.com": [10121], "www.ideastations.org": [7927], "a3.twimg.com": [16877], "ubuntu-de.org": [17093], "mijn.ing.nl": [7769], "dpfoc.com": [4733], "preview.buildsecurityin.us-cert.gov": [17415], "sso.andover.edu": [12623], "www.piratepad.ca": [12706], "api.listenerapproved.com": [9451], "www.eurovision.de": [5431], "www.curry.uvt.nl": [16445], "open.nasa.gov": [10869], "profile.live.com": [9483], "*.e-boks.dk": [4848], "southsomerset.greenparty.org.uk": [6925], "www.nutrition.gov": [11584], "origin.www.ieee.org": [7715], "dealerrater.com": [4258], "trafficprivacy.com": [16649], "www.lumiblade-shop.com": [9664], "soup.io": [15166], "www.optoutprescreen.com": [12064], "ology.com": [11783], "datatables.net": [4188], "serverdensity.com": [14614], "torcache.net": [16571], "webstats.unizar.es": [17356], "strawpoll.me": [15515], "www.energinet.dk": [5253], "thecreatorsproject-images.vice.com": [17667], "aqua.lib.vt.edu": [17740], "c4.rgstatic.net": [13422], "www.sharpmen.com": [14684], "mh17.correctiv.org": [3685], "itsalm1.swisscom.com": [15698], "lubin82.pl": [9640], "atsb.gov.au": [1403], "registrace.skylink.cz": [14937], "www.g2play.net": [6297], "*.zeiss.com": [2851], "openvz.org": [11991], "hoorn.nl": [11132], "btcguild.com": [1559], "highbeam.com": [2937], "rt.grc.nasa.gov": [10869], "*.netpivotal.com": [11204], "global2000.at": [6720], "starnet.com": [15393], "status.fsf.org": [5600], "www.dataexchangewales.org.uk": [19101], "*.axisbank.com": [1474], "www.guardiansubscriptions.co.uk": [7004], "apply.whitehouse.gov": [18251], "ibtimes.co.uk": [7677], "ping-fast.com": [12680], "image.guardian.co.uk": [7000], "www.fpjintel.com": [5590], "globalamicistore.com": [6721], "outernet.is": [12151], "lowpowerlab.com": [9635], "getify.com": [6614], "segurosuniversales.net": [14561], "build.enlightenment.org": [5280], "deepfield.net": [4297], "*.handelsblatt.com": [7187], "www.comp.leeds.ac.uk": [17318], "hdsa.org": [7054], "wholesale.greensmoke.com": [6928], "*.allure.com": [3551], "www.alice-dsl.de": [810], "api.nanigans.com": [11030], "ps3crunch.net": [12296], "city.yandex.ua": [18656], "stage-digitalmedia.hhs.gov": [7062], "mooshi.com.au": [10580], "www.slyar.com": [14976], "www.nitrocloud.com": [11428], "woodtreeswing.com": [18420], "victoriassecretcanada.ca": [17673], "norton.com": [11505], "lesincroyablesrencontres.leboncoin.fr": [19351], "richannel.org": [13993], "*.admtl.com": [690], "city.ac.uk": [3187], "www.bn.com": [1678], "mail.aerohosting.cz": [689], "bugzilla.xamarin.com": [18540], "hits-secure.theguardian.com": [16288], "nestle.com": [11168], "www.nebezi.cz": [11126], "myworkplace.ncl.ac.uk": [10884], "www.stockcharts.com": [15477], "wiki.openmandriva.org": [11956], "hartwork.org": [7217], "loadtest.ftc.gov": [5720], "git.in.moodle.com": [10572], "www.phcheats.com": [12254], "www.worldcubeassociation.org": [18453], "facultyaffairs.wusm.wustl.edu": [17993], "www.yadg.cc": [19789], "redir.adap.tv": [554], "bloombergsports.com": [2120], "www.whatismyip.com": [18231], "www.sata-io.org": [14075], "launchkit.io": [9167], "wikide.openmpt.org": [11951], "cdn.vgc.no": [17484], "*.wrzuta.pl": [18476], "nbcnews.to": [1920], "docs.onapp.com": [11808], "tierra.net": [16435], "*.blogger.co.uk": [2107], "youraccount.glasgow.gov.uk": [6699], "napoleonmakeupacademy.com": [11036], "knet.hks.harvard.edu": [7219], "cln.cisco.mobi": [3161], "thersa.org": [16306], "www.rs-linkz.info": [13451], "ind.ie": [8048], "gmx.fr": [6350], "www.epson.ca": [5330], "www.postalheritage.org.uk": [12958], "*.gnomefiles.org": [19462], "www.firstfloor.org": [5879], "forum-3dcenter.org": [19190], "my.rmit.edu.au": [13437], "doc.ubuntu-fr.org": [17096], "www.alestic.com": [792], "ipv6.wtfismyip.com": [17933], "*.egg.com": [5114], "physicaltherapy.wustl.edu": [17993], "fs02.androidpit.info": [1009], "www.everydayhero.com": [5454], "www.askapatient.com": [1265], "www.numsys.eu": [11580], "control.snel.com": [15034], "www.liikenneturva.fi": [9348], "www.ohloh.com": [11766], "thumbs.dreamstime.com": [4754], "www.tomtomrunningrace.com": [16540], "webmail.planet-school.de": [12295], "cfweb.cc.ysu.edu": [18742], "www.simplifydigital.co.uk": [19593], "fingate.stanford.edu": [15383], "register.ft.com": [5826], "govtrack.us": [6868], "marxists.org": [10042], "lovelens.ch": [9630], "www.faa.gov": [5713], "anonymissexpress.cyberguerrilla.org": [3961], "careerperfect.com": [2843], "bitsquare.io": [2020], "kinox.ag": [19337], "pac.osu.edu": [11760], "tracker.debian.org": [4275], "hilfe.gmx.net": [6350], "bewerben.htw-berlin.de": [7112], "m.xkcd.org": [19786], "securitylunch.stanford.edu": [15382], "calpolyarts.org": [2729], "www.owncloud.org": [12182], "mail.gnu.org": [6357], "engine.vliegtickets.nl": [17802], "files.foreignaffairs.com": [6025], "mobile.tiscali.it": [16498], "*.bcn.ch": [19333], "boathousecrewshop.com": [2169], "contacts.ats.aq": [361], "sg.carousell.com": [2860], "findgravy.com": [5843], "www.zoum.ca": [18764], "menulog.com.au": [19395], "*.subscribeonline.co.uk": [4720], "starttls.info": [14188], "foswiki.stanford.edu": [15382], "pricerunner.co.uk": [13053], "www.business.hsbc.co.uk": [7098], "cdn.webrtc-experiment.com": [18081], "www.cdnjs.com": [2921], "avonandsomerset.police.uk": [1454], "server.ffa.vutbr.cz": [17522], "studentweb.con.ohio-state.edu": [11761], "govzone.psc.gov": [19525], "mail.schibsted.no": [14351], "cdn.gbot.me": [6808], "a.t.webtracker.jp": [18165], "bench.cr.yp.to": [3748], "cafepress.com": [2716], "www.datapath.io": [4209], "images.nordichardware.com": [11473], "*.kriso.lt": [9013], "tahoe-lafs.org": [15910], "hackerrank.com": [7143], "ucpi.org.uk": [16937], "*.wsj.net": [11321], "healths.biz": [7265], "www.sub.uni-goettingen.de": [17166], "www.fnh.utoronto.ca": [17343], "swift.hydranodes.de": [19269], "openconnect.netflix.com": [11229], "ldtp.freedesktop.org": [6126], "fastly.com": [5687], "members.gwh.nhs.uk": [10913], "*.nationwide.co.uk": [11091], "kasiopea.matfyz.cz": [19334], "homepages-fb.th-mittelhessen.de": [15809], "www.spendbitcoins.com": [15262], "engineering.com": [5266], "ecn.t0.tiles.virtualearth.net": [17755], "internet-radio.com": [8273], "www1.elfa.se": [5161], "engineering.stanford.edu": [15382], "www.team-share.net": [15997], "oisshome.wustl.edu": [17993], "magserv.com": [9862], "providesupport.ru": [13173], "legacy.pfizerpro.com": [12612], "www.betabeat.com": [1816], "www.nrkbeta.no": [10957], "zapunited.com": [18794], "*.sis.maricopa.edu": [9990], "wiki.qubes-os.org": [13344], "www.thehill.com": [16290], "www.ectc-online.org": [5019], "pharmgkb.org": [19490], "www.onlinecensorship.org": [11875], "ytchannelembed.com": [18624], "content.mobileasiaexpo.com": [10499], "birmingham.gov.uk": [19000], "www.opennet.net": [11962], "wyndham.com": [18490], "wwte9.com": [17937], "pti.iu.edu": [8064], "www.ilovebluesea.com": [7893], "git.collabora.com": [3419], "*.nationalrail.co.uk": [11056], "metrika.yandex.com": [18651], "www.nickyhager.info": [11387], "www.diasp.eu": [4446], "www.icares.wustl.edu": [17993], "www.pappp.net": [12208], "*.rssing.com": [13464], "freebsd.kde.org": [8718], "news.walmart.com": [17964], "www.fanboy.co.nz": [5650], "managebeta.smartadserver.com": [14982], "alumni-gsb.stanford.edu": [15383], "www.brianchristner.io": [19019], "www.reefledlights.com": [13709], "www.nuwear.com": [11587], "jersey.java.net": [8525], "*.omnovia.com": [11786], "ot.wustl.edu": [17993], "partnerportal.f-secure.com": [5541], "itrade.cimbsecurities.co.th": [2608], "www.rochesterhomepage.*": [13933], "filestack.com": [5801], "www.piwik.rrzn.uni-hannover.de": [17168], "fatwallet.com": [5691], "blog.veber.co.uk": [17585], "*.creativecow.com": [3779], "greenhouse.io": [6931], "ixquick-proxy.com": [8405], "s.torrentday.com": [16579], "*.inwx.de": [8231], "*.stevenroddis.com": [15469], "projects.tigase.org": [16439], "*.uberspace.de": [17090], "www.deekayen.net": [4295], "gostats.com": [6785], "activestate.com": [499], "dgl.cx": [4438], "zend.com": [18821], "*.hatena.ne.jp": [7238], "css-tricks.com": [2678], "opentemplate.org": [19461, 19462], "archive2013.tacticaltech.org": [15901], "pyneo.org": [13270], "web.telegram.org": [16080], "customers.drweb.com": [4783], "oyunhizmetleri.com": [12193], "www.portokalkulator.de": [19112], "*.downloadbox.me": [4727], "mtailor.com": [9804], "www.gifbook.io": [6638], "track.ft.com": [5826], "accounts.alipay.com": [817], "www.cesky-hosting.cz": [19051], "trollingeffects.org": [16756], "www2.argylesocial.com": [1190], "greensky.com": [6920], "recordedbooks.com": [19543], "bupa.com": [2439], "eforms.rbkc.gov.uk": [19538], "beaconinitiative.com": [1726], "freemailer.ch": [6179], "scopeblog.stanford.edu": [15383], "m.now.msn.com": [9794], "dashboard.stelter.com": [15465], "grooveshark.com": [6965], "libregraphicsworld.org": [9314], "kb.osu.edu": [11760], "urbanvilla.nl": [17409], "playstationnetwork.com": [12796], "nber.org": [11077], "www.deco.proteste.pt": [4288], "sysprovide.de": [19652], "www.sipsolutions.net": [14124], "www.java.com": [8526], "portal.strode-college.ac.uk": [15528], "roundcube.utsc.utoronto.ca": [17343], "www.istlsfastyet.com": [8363], "downloadmirror.intel.com": [8209], "bugzil.la": [2409], "www.kali.org": [8771], "myapnic.net": [1257], "gladrags.com": [6696], "hotmail.live.com": [9483], "www.idofoundation.org": [7650], "www.aftontrailrun.com": [714], "www.nytimesathome.com": [11001], "www.betclair.com": [7732], "transifex.com": [16669], "www.flashrom.org": [5906], "www.darkcoinfoundation.org": [4151], "www.ghostery.com": [6629], "palliative.stanford.edu": [15383], "blackmesh.com": [2038], "s3.roosterteeth.com": [13974], "wp-eng-static.washingtonpost.com": [17990], "ftp.kevag-telekom.de": [8862], "care2.com": [2838], "mobot.net": [7549], "support.levo.com": [9275], "courscrypto.org": [3716], "trafficmaxx.de": [16655], "login.ubuntu.com": [17102], "search.vodafone.co.nz": [17812], "demand-driver.com": [4346], "witopia.net": [18278], "www.leiajung.org": [9237], "cdn-net.com": [2917], "www.ncats.nih.gov": [11052], "nbnco.com.au": [10876], "www.pin.harvard.edu": [7219], "app-de2.resrc.it": [13599], "www.bux.cz": [19029], "www.medleyads.com": [10200], "playerauctions.com": [12803], "*.invitemedia.com": [8326], "gss.civilservice.gov.uk": [19066], "internetessentials.com": [19300], "v.somethingawful.com": [15130], "myuw.uw.edu": [17077], "fedbizopps.gov": [5714], "nh.loggn.de": [9555], "magaza.bilio.com": [1875], "www.walkit.com": [19745], "www.defuse.ca": [4316], "stats.thermitic.net": [16348], "www.privatevpn.com": [13095], "csmm.engineering.osu.edu": [11760], "crbug.com": [3768], "forum.chroniclesofgeorge.com": [16259], "beo.piratenpartei.de": [12721], "www.statistics.gov.uk": [19625], "www.mysliderule.com": [10818], "cinemanow.com": [3147], "www.digboston.com": [4466], "secure.thebodyshop.co.uk": [16250], "community.coinbase.com": [3402], "rvlution.net": [13481], "ask-inc.com": [16665], "leadership.opm.gov": [11654], "voicedailydeals.com": [17497], "bitlove.org": [2000], "popularmechanics.com": [12921], "stj-now.s-msn.com": [14059], "h5.m.taobao.com": [15952], "s2member.com": [14065], "www.faxbigbrother.com": [5695], "freedomonlinecoalition.com": [6171], "bluetoad.com": [2137], "www.mypack.ncsu.edu": [11492], "www.ceskaposta.cz": [2974], "iosafe.com": [8337], "aeolusproject.org": [680], "*.fluctishosting.com": [5950], "share.oculusvr.com": [11722], "www.uchicago.edu": [17246], "www.in-disguise.com": [8024], "bin.mailgun.net": [9884], "ssrc.food.gov.uk": [19187], "axs.yts.to": [18623], "www.vorpal.io": [17844], "bulletinoftheschoolofmedicine.wustl.edu": [17993], "*.fbhexpo.com": [5627], "www.erowid.com": [5351], "www.friedhoff.org": [6212], "www.lessig2016.us": [9260], "onclickads.net": [11824], "validlab.de": [7114], "taxii.mitre.org": [10459], "*.kickapps.com": [8876], "kentico.com": [8853], "*.archives-ouvertes.fr": [1168], "*.mybcvs.ch": [1655], "theme2.status.net": [15437], "data.com": [4173], "aldi.hu": [299], "blog.litespeedtech.com": [9458], "bookshare.org": [2205], "static1.money.pl": [10547], "londondrugs.com": [9579], "ru.thinksteroids.com": [9737], "m.ask.fm": [1261], "test7.gsb.bva.bund.de": [5716], "calendar.csail.mit.edu": [9749], "www.enfuseconf.com": [7006], "www.gefpmis.org": [8259], "www.aldi.lu": [299], "i.nuseek.com": [11582], "yt-dl.org": [18744], "cals.cornell.edu": [3676], "mail.lumiere.ens.fr": [4930], "mail.rotherham.gov.uk": [13979], "*.blog.gustavus.edu": [7026], "email.dynect.net": [4835], "developer.axonix.com": [1476], "acuityscheduling.com": [504], "amnesty.ch": [959], "www.piraten-schwaben.de": [12716], "www.tsoshop.co.uk": [15864], "app.snipcart.com": [15037], "mail.lsbu.ac.uk": [9098], "communitydirectory.kirklees.gov.uk": [8916], "mad.tv2.dk": [15880], "*.alice.de": [810], "wiki.eigenlab.org": [19151], "roffey.org": [13947], "www.oderland.se": [11723], "www.screenit.com": [14407], "bccla.org": [1505], "*.snacktv.de": [15022], "mathworks.com": [10066], "cshall.alipay.com": [817], "www.thalia.ch": [16171], "utilityservices.no.citrix.com": [3178], "mozillians.org": [10664], "*.instructables.com": [8198], "stylehatch.co": [15551], "www.hypeshell.com": [14160], "storage.pardot.com": [12399], "*.jobvite.com": [8602], "autodiscover.asus.com": [357], "www.fixmystreet.com": [5895], "email.ucsc.edu": [17305], "www.mail-tester.com": [9870], "wonderlandmovies.de": [18412], "office365.com": [11745], "*.phone-analytics.com": [12634], "woodgreenshop.org.uk": [18419], "x1.xingassets.com": [18574], "angular-gantt.com": [1019], "blog.vidyard.com": [17705], "www.zoomerang.com": [18903], "*.digium.com": [4510], "www.minfil.org": [10403], "tweetmeme.com": [16870], "dot.kde.org": [8718], "nanoengineering.ucsd.edu": [16939], "static.www.turnto.com": [16842], "moveon.org": [10631], "shop.dft.gov.uk": [19116], "www.bleachbit.org": [19007], "democracy.plymouth.gov.uk": [19500], "console.qtcloudservices.com": [13316], "adpe.csod.com": [1427], "netcologne.de": [11188], "curry.uvt.nl": [16445], "cdn.rivals.com": [19553], "www.websitealive10.com": [18149], "etd.ohiolink.edu": [11762], "cloudcracker.com": [3284], "www.gawker.com": [6476], "jujucharms.com": [8670], "system.data.sqlite.org": [14163], "www.scottbrand.com": [14397], "www.hashtalk.org": [7224], "www.crz.gov.sk": [14972], "i.technoportal.ua": [16039], "*.userfox.com": [17434], "www.zxidp.org": [18770], "store.nvidia.com": [10985], "www.redmine.org": [13697], "poweredbyprogress.progress.com": [13132], "www.xenvps.com": [18559], "benefactor.stanford.edu": [15383], "www.interactivemediaawards.com": [8238], "www.orkut.com.br": [12110], "akademy2008.kde.org": [8718], "www.telepigeon.com": [16092], "webmail.kn.vutbr.cz": [17522], "help-es-eu.nike.com": [11401], "*.storage.googleapis.com": [6839], "www.takecontrolbooks.com": [15914], "static.chefkoch.de": [3058], "www.marx.org": [10042], "*.militarysuper.gov.au": [10395], "mail.haskell.org": [7229], "ap2.pccu.edu.tw": [12220], "www.hdnux.com": [7271], "certificatedetails.com": [19050], "badge.waffle.io": [17944], "plantcommunity.de": [12775], "uk.icecat.biz": [7914], "*.tudelft.nl": [4327], "*.litmuscdn.com": [9472], "deaddrops.com": [4249], "listes.renater.fr": [13764], "images-4.gog.com": [6365], "wiki.bnc4free.com": [2163], "cdn.wcdc.xfinity.com": [19784], "onlineservices.glasgow.gov.uk": [6699], "security.dxw.com": [4817], "psmprogram.gov.au": [13211], "ccc.shareit.com": [14669], "shopatron.com": [14724], "prx.org": [12292], "www.w00tads.com": [17886], "a4.ucsd.edu": [16939], "projecteuler.net": [13134], "www.sevenoaks.gov.uk": [14638], "forum.parallels.com": [12392], "korndesign.com": [8988], "*.hmv.co.jp": [7086], "dmp.scot.nhs.uk": [10913], "fashionara.com": [5667, 5668], "*.pcboc.com": [2750], "static.seagm.com": [14096], "www.oftc.net": [11622], "logbuch.c-base.org": [2492], "www.userscape.com": [17431], "*.openas.org": [12030], "www.brandfolder.com": [2283], "invitemedia.com": [8326], "www.awp.is": [1292], "vefir.hi.is": [7065], "yabs.yandex.by": [18648], "streams.museter.com": [10712], "www.hurleymc.com": [7628], "www.radware.com": [13524], "baselland.ch": [19648], "*.moot.it": [10581], "www2.adm.ku.dk": [17248], "media.shaw.ca": [14687], "451research.com": [145], "www.youtube.com.jo": [18709], "events.osrfoundation.org": [11912], "api.prospecteye.com": [13163], "www.telegram.org": [16080], "image.www.gametracker.com": [6443], "4plebs.org": [161], "mitstory.mit.edu": [9749], "developer.here.com": [7326], "fixubuntu.com": [5897], "ria.ua": [13426], "www.wacken.com": [17942], "partner.vxcp.de": [17625], "artemis.net": [1229], "gifyo.com": [6643], "www.magix.com": [9708], "www.cypherpunk.at": [2696], "ask.wireshark.org": [18369], "slipfire.com": [14965], "netpay.cmbchina.com": [2626], "finra.org": [5824], "modcloth.com": [10511], "login.rz.htwg-konstanz.de": [7113], "barkbox.com": [1670], "www.blockexplorer.nu": [2084], "www.corporatedomains.com": [3683], "timesrecordnews.com": [16465], "*.filecloud.io": [5798], "newyear.aktivix.org": [771], "www.fodevarewatch.dk": [5977], "risk.io": [13901], "vanwinkles.com": [17553], "fazekas.hu": [5697], "gamestarmechanic.com": [6441], "blockspring.com": [2098], "www.astreea.ens.fr": [4930], "sitewranglers.freedesktop.org": [6126], "login.entrust.net": [5304], "owa.nottingham.ac.uk": [11528], "ca-pca.fr": [2507], "canvas.andover.edu": [12623], "www.aerofs.com": [688], "streams.twitch.tv": [16888], "*.bu.edu": [2237], "reiner-sct.com": [13747], "www.bger.ch": [18996], "images.marketing.eloqua.com": [5179], "nmugroup.com": [10942], "*.optimix.asia": [7697], "www.thecompassionclub.org": [16261], "flashback.org": [5905], "ifrype.com": [4742], "dpmc.gov.au": [4076], "nae.edu": [11075], "cloudinary.com": [3307], "tb.popcash.net": [12905], "*.targetimg3.com": [15961], "reportingproject.net": [13785], "www.serverpros.com": [13018], "*.data.com": [4173], "pinterest.com": [12699], "static-freedomusainc1.netdna-ssl.com": [1438], "successfactors.com": [15572], "www.formkeep.com": [6041], "www.itpc.uillinois.edu": [16960], "mysociety.co.uk": [10785], "www.bprc.osu.edu": [11760], "sticker.yadro.ru": [18631], "benthamsgaze.org": [1780], "www.netways.de": [11259], "www.youtube.com.mx": [18709], "uefidk.com": [17113], "*.precharge.net": [13017], "subscribeonline.co.uk": [4720], "prod.lists.apple.com": [1120], "liteaddress.org": [9460], "bureau.koumbit.net": [8998], "centralcontent.fco.gov.uk": [5558], "espace.cern.ch": [2575], "hsph.harvard.edu": [7219], "brenet.de": [2296], "www.cmbchina.com": [2626], "emailnew.azet.sk": [1481], "cybercompex.org": [3967], "intranet.projectplace.com": [13143], "verisign.se": [17623], "madstein.at": [9842], "*.turbosquid.com": [16836], "intra.thm.de": [15811], "api.huobi.com": [7624], "www.cax.com": [2912], "login.gawker.com": [6476], "f.fastcompany.net": [5681], "www.dnsstuff.com": [4070], "www.moi.gov.sa": [14306], "pearsoncomputing.net": [12507], "*.secure.nonprofitsoapbox.com": [11467], "pl.support.tomtom.com": [16540], "update.cabinetoffice.gov.uk": [2701], "extremetech.com": [18859], "*.business.gov.au": [2453], "www.hostit.hu": [7536], "*.airbnb.de": [749], "tmbizonline.tm.com.my": [16083], "ces.williams.edu": [18316], "www.wildcardcorp.com": [18305], "umanitoba.ca": [17260], "zoneedit.com": [18893], "ledgerwallet.com": [9220], "guest-services.desy.de": [4399], "*.passwordbox.com": [12433], "lane.stanford.edu": [15383], "mysite.somerset.gov.uk": [15127], "gadgets.stanford.edu": [15383], "living.livingsocial.com": [9517], "education.github.com": [6680], "*.ep.elitem.net": [5168], "ubuntu-mate.org": [17098], "status.clever.com": [3238], "aber.ac.uk": [414], "www.winbond.com": [18334], "app.ipswich.gov.uk": [8351], "hopstudios.com": [7491], "www.icpen.org": [7689], "cfnproposals.bnl.gov": [19009], "*.dkb.de": [4039], "onpatient.com": [11883], "p100-sandbox.itunes.apple.com": [1120], "trustly.com": [16796], "i.jd.com": [8423], "www.eth0.nl": [5376], "fedorahosted.org": [5727], "lawnandlandscape.com": [9180], "www.serverdensity.com": [14614], "reimanpub.com": [13746], "my.f-secure.com": [5541], "www.minaterm.com": [10406], "i3.c.dk": [2498], "www.offensivebits.com": [11737], "leedsportal.leeds.ac.uk": [17318], "www.upc.nl": [17002], "www.tele2.se": [16070], "www.lens.io": [9254], "wiki.parabola.nu": [12384], "deviantart.com": [4423], "visit.mashery.com": [10046], "*.idg.de": [7945], "www.tandemcal.com": [15941], "jpgmag.com": [8448], "nardikt.ru": [7325], "terminal.com": [16122], "support-stg.norton.com": [11505], "www.4sysops.com": [164], "on.iptorrents.com": [7798], "nnovgorod.rt.ru": [13469], "lavabit.com": [9172], "www.digitabportals.com": [4479], "www.static.rtbf.be": [14011], "*.dotster.com": [4705], "www.hs.fi": [7312], "www.broadbandconvergent.com": [2349], "www.broadbandmap.gov": [2350], "adminlogon.liveperson.net": [9493], "mit-amps.mit.edu": [9749], "www.queervids.com": [13349], "*.rainn.org": [13396], "*.atos.net": [1330], "cp-hv.myvps.jp": [10795], "www.gipsprojekt.de": [6335], "*.theresumator.com": [16235], "ncsu.edu": [11492], "sylvancompany.com": [15714], "www.doncaster.gov.uk": [4678], "www.confirmsubscription.com": [3571], "*.look.co.uk": [9594], "ecitizen.maidstone.gov.uk": [9868], "www.seethisinaction.com": [14555], "guitarcenter.com": [7015], "ouaza.com": [12137], "www.postnord.se": [12950], "www.gmo.com": [6341], "mco-pb.sensic.net": [11581], "imgjam1.jamendo.com": [8502], "battle.net": [1693], "sk.libreoffice.org": [9311], "civilservice.gov.uk": [19066], "onenetworkdirect.com": [11838], "fdo.osgeo.org": [11669], "thewatershed.com": [16320], "login.yahoo.co.jp": [18640], "status.contentful.com": [3614], "retrace.fedoraproject.org": [5726], "www.movietickets.com": [10639], "www.rubicondev.com": [14015], "fairssl.se": [5631], "*.orange.jobs": [12086], "registrar.illinois.edu": [17258], "*.e.final-score.com": [5818], "www.cxcloud.com": [3949], "www.burningshed.com": [2442], "gallery.technet.microsoft.com": [10364], "app-de-lb1.resrc.it": [13599], "i3.services.social.microsoft.com": [10364], "www.hardenedbsd.org": [7204], "*.lfchosting.com": [9073], "acswebcontent.acs.org": [929], "catalog.data.gov": [4175], "www.gdata.nl": [6293], "wral.com": [17929], "chat.icq.com": [7690], "www.landalskilife.*": [18490], "mail.de": [9873], "powerhousemuseum.com": [13001], "www.pixid.ideeinc.com": [16468], "cars.webjet.com.au": [18124], "staging.ghosteryenterprise.com": [6630], "www.jwchat.org": [8466], "twattle.net": [16863], "m.rabota.yandex.kz": [18652], "frenchtv.to": [6196], "*.ebayrtm.com": [4874], "kaisersysteme.com": [8769], "www.animallaw.info": [1023], "www.thersa.org": [16306], "dia-grid.org": [4440], "modern.ie": [10519], "www.maps.me": [9976], "bugreport.apple.com": [1120], "tinybytes.me": [16479], "www.cfmueller.de": [2698], "tersesystems.com": [16132], "www.uscyberchallenge.org": [17416], "mywot.net": [10798], "www.srdrvp.com": [15340], "stealthnet.de": [15448], "*.exeter.ac.uk": [17251], "blog.flurry.com": [5953], "projectdent.com": [13137], "khms2.google.com": [6841], "paccoweb.poste.it": [12965], "northdevon.greenparty.org.uk": [6925], "jobvite.com": [8602], "mulberrymail.com": [10692], "cardealerstudy.com": [1531], "*.desk.com": [4392], "xtrazone.sso.bluewin.ch": [2157], "support.whitepages.com": [18257], "*.ultimatepoker.com": [17130], "www.kickassapp.com": [8875], "www.lantmateriet.se": [9152], "www.zoklet.net": [18888], "www.airbnb.*": [749], "joppix.com": [8630], "nanren.taobao.com": [15952], "vmwareblogs.com": [17496], "*.cambridge.org": [2768], "re-pear.com": [1123], "*.ecom.attccc.com": [364], "img.xcart.com": [18505], "www.simplepickup.com": [14823], "owa.calderdale.gov.uk": [2735], "gefpmis.org": [8259], "wiki.hacdc.org": [7131], "max.sup.live.com": [9483], "upv.cz": [17009], "static-curse.cursecdn.com": [3934], "votervoice.net": [17847], "boltbus.com": [2193], "www.toggl.com": [16531], "itservices.stanford.edu": [15383], "colino.net": [3416], "*.smartmoney.com": [11321], "*.surveymonkey.com": [15659], "de.cryptonator.com": [3883], "sandbox.evernote.com": [5450], "www.universe2.us": [17228], "sds.kent.ac.uk": [17317], "www.firstclassmagazine.se": [5876], "www.ebi.ac.uk": [5039], "consultation.rbkc.gov.uk": [19538], "vishakeswwwabcde.trappedinsidethecomputer.net": [16685], "thalys.com": [16172], "suggestqueries.google.com": [6834], "*.lsu.edu": [9623], "ideas.spkcn.com": [15279], "kic.f-secure.com": [5541], "www.kachingle.com": [8764], "ruderich.org": [14023], "www.bsi-fuer-buerger.de": [5711], "3m.com": [127], "content.fandango.com": [5652], "faqs.channel5.com": [2998], "s3.qhimg.com": [13302], "www.ibl.liu.se": [9084], "gac.edu": [6301], "knowledge.verisign-grs.com": [17623], "mail.piware.de": [10034], "*.ftccomplaintassistant.gov": [5607], "uptrack.ksplice.com": [9026], "doesburg.nl": [11132], "kemerovo.rt.ru": [13469], "*.wordpress.com": [18429], "pages03.net": [14802], "cdn.bnc4free.com": [2164], "colossal.com": [16373], "www.rz.ruhr-uni-bochum.de": [14031], "yellow.local.ch": [9536], "theconversation.edu.au": [16262], "download.srcclr.com": [15337], "www.movabletype.com": [10629], "www.umail.utah.edu": [17288], "monoprice.com": [10561], "www.castle-technology.co.uk": [2891], "peterborough.gov.uk": [12594], "www.secureupload.eu": [14497], "mtac.org": [9799], "it.calameo.com": [2731], "status.playstation.com": [12795], "conference.inc.com": [8041], "history.google.com": [6834], "*.dbapp.netdna-cdn.com": [4108], "esr.org": [5009], "*.systemcenteradviser.net": [15760], "www.minix.org": [10428], "spreadshirt.pl": [15300], "fbapp12.tchibo.de": [15985], "redirect1903.tagcommander.com": [15904], "needmorehits.com": [11133], "movie.jd.com": [8423], "itradecimb.com.sg": [2607], "aisinfo.wustl.edu": [17993], "static.sourceforge.jp": [15174], "m.groupon.com": [6974], "assets-9gag-lol.9cache.com": [212], "app.webinspector.com": [18040], "expertbail.com": [289], "alumni.wustl.edu": [17993], "guldencoin.com": [7016], "www.chip-digital.de": [2594], "*.sinefa.com": [14846], "panel.research-int.se": [15843], "ssl3.ovh.net": [12173], "youmail.com": [18706], "www.flownative.com": [5947], "americanheart.org": [945], "youngstonewall.org.uk": [19793], "cdn.images.reevoo.com": [13715], "en-la.dict.cc": [4455], "www.iwork.com": [7878], "anker.to": [1026], "www.onlinelaw.wustl.edu": [17993], "profil.netzclub.net": [19432], "www.csctrustedsecure.com": [2667], "nsec.osu.edu": [11760], "quote.comparethemarket.com": [3511], "bitnz.com": [1940], "www.thijsalkema.de": [16353], "www.capitaller.ru": [2820], "www.hertz.co.kr": [7364], "netstat.green.ch": [19228], "nzz-libro.ch": [19450], "blog.zerties.org": [18847], "*.uni-kl.de": [17170], "survey.o2active.cz": [16075], "www.lea.manchester.gov.uk": [9944], "uic.edu": [17231], "sweb.ru": [15208], "aan.amazon.co.uk": [917], "attach.s8bbs.com": [14639], "nieuws.kuleuven.be": [8816], "www.echo24.cz": [19146], "www.firstlook.org": [5878], "www.htc.com": [7103], "www.ksh.hu": [8750], "encryptr.org": [5239], "www.redbull.*": [13666], "forms.sign-up.to": [14780], "static.gay-torrents.net": [6480], "*.expedia.com": [5503], "www.unifiedtracking.com": [17185], "*.icann.org": [7682], "icc-cpi.int": [7684], "coopathome.ch": [3645], "www.espanol.smokefree.gov": [19603], "ask.hover.com": [7566], "*.compteur.fr": [3529], "www.svb.com": [14791], "fi.somethingawful.com": [15130], "maxymiser.com": [10098], "app.upc.cz": [17000], "www.micahflee.com": [10340], "*.spreadshirt.no": [15300], "ssl11.ovh.net": [12173], "www.freecycle.org": [6162], "tenderapp.com": [4933], "pamnews.com": [12351], "osgeo4w.osgeo.org": [11669], "www.iais.fraunhofer.de": [6112], "sso.skrill.com": [14919], "www.myshazam.com": [10817], "unop.uk": [17363], "fifengine.de": [5573], "www.moat.com": [10484], "www.mooc-list.com": [9777], "account2.lego.com": [9068], "connect.stripe.com": [15525], "events.lugons.org": [9108], "fastwebhost.com": [5679], "www.theeventdiva.com": [16189], "*.mxcdn.net": [10218], "forum.1and1.com": [51], "www.avropa.se": [1456], "glasneost.neos.eu": [10899], "www.springfiles.com": [15305], "planet-energy.de": [12759], "ads.flatdy.com": [5943], "forum.percona.com": [12557], "www.biology.wustl.edu": [17993], "csr.osu.edu": [11760], "business.idg.se": [7705], "c2.popads.net": [12902], "rem.co": [13756], "eth-0.nl": [5376], "www.blogmint.com": [2110], "giving.mit.edu": [9749], "shop.seagate.com": [14437], "*.ebuzzing.de": [5044], "gficloud.com": [6321], "vxstream-sandbox.com": [17882], "public.era.nih.gov": [11052], "captcha.360.cn": [106], "amnistia.cl": [976], "5.darkroom.shortlist.com": [14734], "*.shopmania.com": [14717], "www.faq-o-matic.net": [5658], "inbenta.com": [8037], "*.jariangibson.com": [8520], "frwp.org": [18296], "depolitiezoekt.nl": [11132], "www.newhumanist.org.uk": [19433], "aartdevos.dk": [397], "www.toorcon.net": [16557], "riemann.unizar.es": [17356], "static03.vg.no": [17484], "account.nasuni.com": [11040], "autodiscover.leeds.ac.uk": [17318], "alpha.fortnite.com": [6057], "blocktogether.com": [2088], "web.theplatform.com": [16229], "www.thenanfang.com": [16300], "www.coderouge.co": [3375], "imgrind.com": [7758], "secure3.convio.net": [3630], "downloads.f5.com": [5546], "www.give.stanford.edu": [15383], "www.amnestyusa.org": [975], "forum.pokemon-world-online.net": [12856], "floek.net": [5937], "www.collingsfoundation.org": [3433], "www.becker.wustl.edu": [17993], "www.muenchen.tv": [10687], "www.publishpartner.com.au": [19526], "omaze.info": [11790], "truelife.com": [16769], "myiu.org": [10808], "ngvpn30.nvidia.com": [10985], "www.mtsystems.ch": [10680], "www.leadership.opm.gov": [11654], "www.scanmyserver.com": [14332], "cz.support.tomtom.com": [16540], "www.lubin82.pl": [9640], "www.fogcreek.com": [5980], "www.webcampus.wilmu.edu": [18320], "encyclopediadramatica.se": [5241], "personalsavings.americanexpress.com": [935], "drupal.bnl.gov": [19009], "*.viewablemedia.net": [17770], "elements.yandex.com": [18651], "lookinglocal.gov.uk": [9599], "now.msn.com": [9796], "photos-d.ak.fbcdn.net": [5700], "assets.sunlightfoundation.com": [15601], "systemoverlord.com": [15761], "www.hertz247.nl": [7355], "community.rallydev.com": [13537], "www.askmonty.org": [1262], "widgets.yandex.by": [18648], "consumentenbond.nl": [3597], "verisign.es": [17623], "eweb.research.sunysb.edu": [15480], "secure.dict.cc": [4455], "blog.whitehatsec.com": [18250], "www.confex.com": [3567], "www.webmetrics.com": [18133], "pt.gamigo.com": [6445], "he.net": [7629], "*.jugendschutzprogramm.de": [8665], "smuxi.net": [15016], "static.video.sky.com": [14924], "www.joomla-security.de": [19324], "developer.cisco.com": [3162], "issues.oasis-open.org": [11606], "img.disc-soft.com": [4540], "community.mobify.com": [10494], "adview.pl": [666], "www.hertz.fi": [7344], "*.afrinic.net": [709], "cdns.tblsft.com": [15984], "stats.slideshare.net": [14962], "help.filefactory.com": [5789], "www.youtube.com.co": [18709], "csob.sk": [3896], "comscore.com": [3453], "juju.ubuntu.com": [17102], "fr.tickengo.ca": [16411], "www.icsi.berkeley.edu": [17240], "*.accountonline.com": [462], "help.fanli.com": [5655], "sprites.pcpro.co.uk": [12228], "recapthelaw.org": [13643], "www.fotisl.com": [6072], "darkroom.sundayworld.com": [15598], "faxrobot.com": [5696], "nismonline.org": [11082], "*.navy.gov.au": [13998], "comodo.net": [3504], "memberplus.raiffeisen.ch": [13527], "www.apianalytics.com": [331], "linux.lu": [9405], "m.vodafone.de": [17814], "thumbnails.domaintools.com": [4660], "*.2co.com": [83], "isen.com": [8366], "svn.debian.org": [4275], "www.centos.org": [2942], "www.york.cuny.edu": [18695], "apne.ws": [1920], "twib.anz.com": [315], "www.geoclub.de": [6543], "file.wx.qq.com": [13285], "www.friendlyduck.com": [6214], "www.qsli.com": [13288], "vote.fsfe.org": [5601], "ksgexecprogram.harvard.edu": [7219], "getintoteaching.education.gov.uk": [19149], "svn.dd-wrt.com": [19106], "9kbhkort.kk.dk": [8730], "*.huggies.com.au": [7602], "www.competitionsbywyndham.com.au": [18490], "myworldofwork.co.uk": [19422], "www.giffgaff.com": [19217], "gdatasoftware.co.uk": [6293], "support2.seagate.com": [14437], "amp.collective.com": [3423], "*.wsodcdn.com": [10024], "www.21.co": [71], "bcn.ch": [19333], "northern-indymedia.org": [11500], "www.replicaperfection.com": [13778], "mt.cpanel.net": [2653], "www.wustlconnections.com": [17994], "huffingtonpost.ca": [7599], "www.vtunnel.com": [17520], "forum.eurofurence.org": [5414], "marijuanamajority.com": [9994], "go.goldbachpoland.bbelements.com": [1713], "erowid.org": [5351], "www.publeaks.nl": [13202], "www.unibet.com.au": [17179], "ai.stanford.edu": [15383], "secure.zamzar.com": [18784], "www.glasgow.gov.uk": [6699], "www-am.bahn.de": [1617], "www.information.dk": [8123], "i4.social.microsoft.com": [10364], "webfwd.org": [18062], "get.proxpn.com": [19519], "www.opencart.com": [11927], "cygnus.cc.kuleuven.be": [8816], "blogs.nasa.gov": [10869], "jugger.mail.ru": [9874], "api.autopilothq.com": [1431], "blogblog.com": [2107], "www.virk.dk": [17741], "webmail.merton.gov.uk": [10287], "vereinigte-ikk.de": [17619], "www.snellman.net": [15035], "ascenderfonts.com": [1246], "misweb.cc.ntu.edu.tw": [10971], "*.use-enco.com": [17420], "lang.moodle.org": [10575], "www.dbs.com.hk": [4010], "www.canon.co.uk": [2809], "forms.camden.gov.uk": [2772], "calomel.org": [2755], "www.fontmarketplace.com": [5989], "www.gameladen.com": [6432], "www.kagi.com": [8766], "origin.com": [12106], "www.armservers.com": [18428], "wwf.ch": [19768], "support.gemalto.com": [6513], "i04.c.aliimg.com": [813], "www.jako-o.at": [8496], "w.piratenpartei.at": [12720], "www.f5.com": [5546], "mondovino.ch": [3645], "www.impsec.org": [8010], "baekdal.com": [1613], "banking.postbank.de": [12959], "www.geef.nl": [6491], "ndi.org": [10893], "www.globalperspectivescanada.com": [6729], "answers.com": [1060], "mendeley.com": [10257], "www.cosmopolitan.com": [3690], "www.youtube.co.hu": [18709], "m.alloresto.fr": [19328], "opera.yandex.com.tr": [18649], "files.goenergetix.com": [5251], "www.regonline.com": [13725], "nsupdate.info": [11552], "www.ideel.com": [7931], "oeis.org": [11619], "images.politico.com": [12873], "karriere.hofer.at": [299], "shiftpayments.com": [14703], "profile.microsoft.com": [10364], "api.centili.com": [2952], "diario.org.aalto.fi": [390], "www.remnux.org": [13414], "gic1.mycdn.me": [10824], "wiki.openmw.org": [11954], "www.goaldet.com": [6801], "*.mylikes.com": [10768], "voting.pirateparty.org.au": [12713], "hosthorde.com": [7513], "www.visiba.com": [17769], "askmonty.org": [1262], "www.eecs.umich.edu": [17266], "myftp.utechsoft.com": [10831], "support.maximintegrated.com": [10096], "vacareers.va.gov": [17019], "4.cn": [140], "billboard.com": [1879], "preview.catalog.usmint.gov": [17062], "sakhalin.rt.ru": [13469], "masterh6.adriver.ru": [534], "cmdata.groupon.com": [6974], "correctiv-upload.org": [3684], "live.ssl-cert-shop.com": [14174], "wangpu.taobao.com": [15952], "cironline.org": [2614], "subscribe.technologyreview.com": [16041], "allianz-fuer-cybersicherheit.org": [852], "www.irf.se": [7814], "www.ul.ie": [16978], "motherboard-cdn-assets.vice.com": [17667], "mirror.umd.edu": [17263], "altika-saral.cnes.fr": [2634], "www.familie.bremen.aok.de": [317], "www.stuvel.eu": [15549], "www.techmeme.com": [16029], "www.directorystore.com": [4533], "myupc.upc-cablecom.ch": [19716], "gobby.debian.org": [4275], "secure.reichelt.de": [13744], "*.fabricatorz.com": [5618], "mpv.io": [10671], "branchprod.harland.net": [7207], "nfb.org": [11096], "www.allmyvideos.net": [857], "usi.edu": [17232], "www.host.co.id": [7504], "forums.mumble.info": [10702], "vk.nomovok.com": [11465], "stage-mobioinsider.com": [10504], "dodspeople.com": [4631], "cedia.org.ec": [2570], "static.hwpi.harvard.edu": [7219], "www.palemoon.org": [12341], "www-cdn2.pardot.com": [12399], "iti.illinois.edu": [17258], "tnation.t-nation.com": [15773], "silverstripe.org": [19591], "pda-passport.yandex.by": [18648], "civilcontingencies.dundeecity.gov.uk": [4801], "www.securityinabox.org": [14533], "*.junostatic.com": [8684], "investments.osu.edu": [11675], "ssl.sntech.de": [14146], "www.poivy.com": [12854], "www.c3pb.net": [2499], "ticket.yandex.com.tr": [18649], "apertureinsight.com": [13226], "avatar.guim.co.uk": [7014], "techoffice.sedo.de": [14540], "service.ess.apple.com": [1120], "iospp.org": [7780], "cdnetworks.co.jp": [2560], "t.track.youmix.co.uk": [18715], "forum.young-pirates.eu": [18716], "divdata.ucsc.edu": [17305], "m.heise.de": [7288], "thalia.ch": [16171], "www.loggly.com": [9554], "www.dhl.de": [4034], "craft-staging.atomicobject.com": [1327], "www.cpj.org": [2646], "www.pro.whitepages.com": [18257], "www.nttcoms.com": [10967], "www.palfrader.org": [12342], "*.uninett.no": [17192], "www.suite.io": [15586], "www.forsec.nl": [6051], "utt.mtvnn.com": [17661], "carmenconnect.osu.edu": [11675], "www.datasaveslives.eu": [4185], "radioshackwireless.com": [13515], "careerdean.com": [2842], "employers.sciencecareers.org": [14379], "support.musixmatch.com": [10723], "entertainment.guardianoffers.co.uk": [7003], "training.partner.microsoft.com": [10364], "www.aucklandairport.co.nz": [1343], "startssl.com": [15407], "www.naughtydog.com": [11107], "www.utl.pt": [16033], "housing.usc.edu": [17278], "*.evga.com": [4986], "www.myuhc.com": [10793], "ams-ix.net": [983], "images.playmates.com": [12808], "www.gameoapp.com": [6433], "kkbox.com": [8731], "cdn01.gitter.im": [6684], "impactsoftcompany.com": [8012], "www.riaa.com": [13427], "informahealthcare.com": [8120], "visitorboost.com": [1464], "mosis.com": [9778], "iab.net": [8236], "real-debrid.com": [13621], "*.legolas-media.com": [9235], "blog.thijsalkema.de": [16353], "blog.3sat.de": [135], "www.campiba.be": [2782], "previous.delicious.com": [4328], "webmail.prq.se": [12289], "brannerlibrary.stanford.edu": [15383], "www.prezident.sk": [14972], "identity.uillinois.edu": [16960], "www.trysuperbgreencoffee.com": [16806], "gju4.alicdn.com": [805], "www.jhu.edu": [16296], "img.zumzi.com": [18923], "codeux.com": [3382], "a5.mzstatic.com": [10852], "register.guardian.co.uk": [7000], "tz.mail.ru": [9874], "www.lg.com": [9077], "www.rage4.com": [19531], "media.salon.com": [14253], "betterbills.com.au": [1823], "haitao.smzdm.com": [15017], "eeiccourses.engineering.osu.edu": [11760], "nejm.org": [11304], "spogo.co.uk": [15285], "www.edge.org": [5078], "www.duodecim.fi": [4804], "*.amazonaws.com": [915], "img.jp.fujitsu.com": [6245], "*.on-web.fr": [11807], "visahq.com": [17762], "2shared.com": [98], "www.malcontentsgambit.com": [9921], "mediciglobal.com": [10190, 10191], "www.ebankingmasicuro.ch": [4870], "docs.npmjs.com": [11539], "webinspector.com": [18040], "www.uni-heidelberg.de": [17174], "resellers.trustico.com": [16794], "www.browsermob.com": [2375], "ecosia.org": [5063], "fbhexpo.com": [5627], "pr.co": [13007], "www.dmesg.gr": [4598], "dxw.com": [4817], "www.mercyships.org": [10282], "hackerspaces.org": [7151], "www.kirsle.net": [8918], "giocarecoltempo.ffs.ch": [15693], "icm.aexp-static.com": [678], "vacanteen.va.gov": [17019], "www.mynomadesk.com": [11463], "nventio.com": [11589], "www.penango.com": [12531], "www.weebly.com": [18178], "www.boxpn.com": [2260], "www.sodiumshop.com": [15084], "atlatszo.hu": [1322], "returnpath.com": [13833], "www.rbu.sh": [13594], "shop.web.de": [18050], "ruby-toolbox.com": [14017], "jethrocarr.com": [8560], "owa.nexus.ox.ac.uk": [17271], "whitelabel.domaintools.com": [4660], "imagestore2.boomerang.com": [2209], "tuitam.pl": [15872], "dynu.com": [4836], "theskoop.ca": [14917], "sexkompas.net": [14643], "*.oberlin.edu": [11698], "resources.cisnet.cancer.gov": [2805], "wasilczyk.pl": [17995], "s1.c4tw.net": [2505], "assets.vice.com": [17667], "www.serverbase.ch": [19583], "cars.mail.ru": [9874], "www.rollbar.com": [13958], "www.etarget.hu": [5371], "cimjsea.osu.edu": [11760], "investor.logmein.com": [9549], "*.herokuapp.com": [7332], "www.nationalreview.com": [11073], "azhca.org": [382], "watford.greenparty.org.uk": [6925], "linuxdays.cz": [9409], "civicrm.org": [3200], "parallel.illinois.edu": [17258], "*.vpnsearch.net": [17504], "www.internap.co.jp": [8254], "store.comcast.com": [3461], "apps.usa.gov": [17029], "yeswescan.org": [13207], "www.russianamericancompany.com": [14046], "acdd.tk": [3533], "www.tonybianco.com.au": [16547], "mj.taobao.com": [15952], "www.httpswatch.nz": [7109], "seals.trust-guard.com": [16780], "www.webhostingtalk.com": [18039], "kimberly-clark.com.*": [8889], "projectgus.com": [19522], "newsletters.cnes.fr": [2634], "careers.11main.com": [20], "www.etreshop.com": [5393], "backoffice.efinancialcareers.com": [4911], "intux.de": [8308], "wiki.urel.berkeley.edu": [17240], "www.ps3crunch.net": [12296], "ads.lucidmedia.com": [9643], "manager.bigv.io": [1855], "jiagu.360.cn": [106], "info-slhc-pp.web.cern.ch": [2575], "www.malwarebytes.org": [9929], "www.integrity.pt": [8203], "*.intel.co.uk": [8205], "www.youtube.rs": [18709], "deri.ie": [11064], "bankia.es": [19769], "ennl.dict.cc": [4455], "bedrockformssgnext.msn.com": [9796], "www.debian-handbook.info": [16186], "darkmail.info": [4153], "data.sankakucomplex.com": [19563], "www.open-pc.com": [19461], "secure.coinjar.com": [3397], "www.perens.com": [2377], "www.nykeurope.com": [10995], "calderdale.greenparty.org.uk": [6925], "*.reactos.org": [13604], "yaha.no": [18633], "www.sozialismus.info": [15202], "a.alipayobjects.com": [817], "mail.bnl.gov": [19009], "archive-it.org": [1163], "*.charityweb.net": [3011], "www.ruxconbreakpoint.com": [14050], "brandweeruitgeest.nl": [2287], "forge.typo3.org": [15894], "www.debuggex.com": [4278], "www.servery.cz": [18938], "www.thiswebhost.com": [16372], "image4.pubmatic.com": [13194], "pariuri.pariloto.net": [7732], "genymotion.com": [6534], "psal.cs.drexel.edu": [4758], "www.perfect-privacy.com": [12558], "go.yourkarma.com": [18728], "groups.eiffel.com": [5124], "kb.mit.edu": [9749], "www.praktica.de": [14358], "genius-download.itunes.apple.com": [1120], "telemetry.com": [16089], "zorpia.com": [18909], "herox.com": [7330], "spankwire.com": [15217], "axess.stanford.edu": [15383], "rimg07.rl0.ru": [13914], "registrierung.mail.de": [9873], "usenetjunction.com": [17426], "www.terneuzen.nl": [11132], "win-sv.jp": [18326], "*.pspudb.com": [5224], "www.charnwood.gov.uk": [3015], "magix-online.com": [9706], "www.x.ai": [19780], "smacktls.com": [14136], "www.watkins.edu": [18003], "health.mail.ru": [9874], "sweetslyrics.com": [15684], "www.tinyletter.com": [16482], "dataquest.io": [4184], "researchonline.org.uk": [19547], "*.artemisinternet.com": [1229], "cia.com": [2599], "salvetas.just-eat.ie": [19328], "www.sourcefabric.com": [15179], "www.nevistashealth.com": [11287], "dev.opera.com": [12050], "www.hostcentric.com": [7509], "flex.msn.com": [9796], "*.bucketexplorer.com": [2386], "images.dailystar.co.uk": [4112], "creative.rev2pub.com": [13838], "virginmedia.ie": [17738], "www.youtube.me": [18709], "*.quantserve.com": [13341], "*.openf2.org": [11936], "www.samsclass.info": [14263], "www.youtube.ma": [18709], "review.typo3.org": [15894], "www.toogl.com": [16552], "janraincapture.com": [8508], "weswap.com": [18024], "razoo.com": [13589], "intand.com": [15941], "ausgamers.com": [1373], "www.nesterov.pw": [11167], "www.techpowerup.com": [16049], "www.userecho.com": [17430], "docs.vid.me": [17676], "meeting.jd.com": [8422], "ncpw.gov": [11078], "jobs.dailymail.co.uk": [4120], "bitcoin.in": [1961], "www.ecodissident.net": [5053], "www.youtube.ru": [18709], "bitcoin.it": [1961], "perfectaudience.com": [12559], "www.multiply.com": [10701], "lplogin.com": [569], "storage.proboards.com": [13110], "zipy.co.il": [18875], "sso.mims.com": [9743], "www.escrow.com": [5354], "pubkey.is": [13201], "www.milkandmore.co.uk": [10396], "*.final-score.com": [5818], "worlde-idcongress.com": [18459], "www.mips.com": [9745], "donate.creativecommons.org": [3778], "www.motesplatsen.se": [10605], "pix.dsp.io": [4787], "heeseminars.engineering.osu.edu": [11760], "accertify.mzstatic.com": [10852], "hobbyking.com": [7438], "www.cede.fd.ulaval.ca": [17229], "svn.opendnssec.org": [10941], "bplaced.net": [19015], "www.legal.nodejitsu.com": [11453], "rasp.yandex.by": [18648], "medportal.wustl.edu": [17993], "mail.yandex.by": [18648], "plurk.com": [12828], "m.jh.edu": [8435], "*.swin.edu.au": [15690], "www.jasig.org": [8522], "workplacegiving.co.uk": [18443], "spaces.internet2.edu": [8279], "people.icq.com": [7690], "bankieren.triodos.nl": [16740], "www.engineering.leeds.ac.uk": [17318], "frieslandcampina.nl": [2782], "www.glx-dock.org": [16856], "www.riigiteataja.ee": [13889], "www.s2mediadigital.com": [14063], "admin.pingone.com": [12683], "www.packetstormsecurity.com": [12317], "uam.osu.edu": [11760], "wolverhampton.gov.uk": [18404], "community.obi.at": [19452], "www.enaza.ru": [5230], "bva.bund.de": [5716], "jastusa.com": [19316], "drive2.ru": [4762], "www.ksplice.com": [9026], "www.richannel.org": [13993], "knol.google.com": [6834], "elegantthemes.com": [5156], "tv.yandex.by": [18648], "pirateparty.ca": [12712], "onamae.com": [11821], "www.zendylabs.com": [18826], "opensource.apple.com": [1120], "pirateparty.ch": [12284], "*.atipso.com": [1314], "www.fightcopyrighttrolls.com": [18428], "alestic.com": [792], "m.baidu.com": [1619], "hola.org": [7445], "wordpress.mattermark.com": [19387], "yandex.kz": [18652], "pictshare.net": [12670], "oeffentliche.de": [11730], "us.hunchlab.com": [7618], "lolware.net": [9570], "www.rt.ru": [13469], "www.teracomconsulting.com": [16120], "www2.redbridge.gov.uk": [13682], "enphase.com": [5283], "*.becuonlinebanking.org": [2175], "www.surge.sh": [15653], "ftc.gov": [5720], "volcanoecigs.com": [17826], "s3.netdialog.se": [11221], "www.app.net": [1102], "www.solarlist.com": [15110], "imodules.com": [7762], "www.themuse.com": [16344], "quandl.com": [13335], "secureimages.capwiz.com": [2825], "www.faradaysec.com": [5659], "root.cern.ch": [2574], "securityledger.com": [14531], "www.earth.leeds.ac.uk": [17318], "*.tron-delta.org": [15855], "dwheeler.com": [4092], "my.vidahost.com": [17679], "www.cpanel.guru": [2652], "kr.forums-stage.oracle.com": [12082], "pkptest.projects.dm.id.lv": [4043], "syndication.traffichaus.com": [16652], "www.yoursav.me": [18738], "shellspace.net": [14696], "dailykos.com": [4117], "www.efficios.com": [5111], "epilepsyfoundation.org": [5321], "*.dlnws.com": [4596], "hmrc.gov.uk": [7084], "cambridgesoft.com": [2769], "debian.netcologne.de": [11188], "cdn.kaltura.com": [8775], "projects.iq.harvard.edu": [7219], "a.abcnews.go.com": [240, 241], "zillow.com": [18865], "*.gcmcomputers.com": [6310], "3dqcaseofmonth.stanford.edu": [15383], "my.supermedia.com": [15615], "hipeac.org": [7388], "iwantmytvmagazine.com": [10973], "gchq-careers.co.uk": [6307], "thegrommet.com": [16286], "blog.buttercoin.com": [2463], "hostvoice.com": [7519], "*.jigsaw.com": [8569], "hospital.uic.edu": [17231], "startvaekst.virk.dk": [17741], "wiki.musicbrainz.org": [10717], "gephi.org": [6551], "www.hbbtv.org": [7252], "careers.appnexus.com": [1109], "www.ybitcoinmagazine.com": [18612], "*.amd.co.at": [924], "lists.apple.com": [1120], "www.miniatur-wunderland.de": [10422], "www.greentechmedia.com": [6938], "dornsifecms.usc.edu": [17278], "www.buckeyevoices.osu.edu": [11760], "www.milonic.com": [10400], "static1.worldcat.org": [18446], "www.outbrain.com": [12150], "asset-3.java.net": [8525], "search.jd.com": [8423], "golfdigestschool.com": [3551], "www.waffle.io": [17944], "www.designcentersearch.com": [3551], "spiderwebsoftware.com": [15270], "api.usersnap.com": [17439], "e-cegjegyzek.hu": [4849], "deekayen.net": [4295], "www.upforit.com": [785], "techinasia.com": [16025], "webmail.crick.ac.uk": [19090], "metrika.ya.ru": [18626], "awstrust.com": [376], "*.customer.io": [3941], "registrar.osu.edu": [11760], "www.powernotebooks.com": [13004], "lonap.net": [9093], "hrg.stanford.edu": [15383], "swiss.com": [15695], "www.bohoomil.com": [2180], "epls.gov": [5324], "www.thesixthaxis.com": [16237], "louderthanwar.com": [9618], "twitthis.com": [16887], "casetext.com": [2878], "cdn.gstreamer.com": [6393], "moxiesoft.com": [10645], "www.shrew.net": [19589], "kastatic.org": [8873], "ip.e-paycapita.com": [19132], "blogs.com": [14319], "www.dixcart.com": [4586], "www.casecurity.org": [2519], "zenmate.com": [18818], "www.lb.ca": [9186], "releng.netbsd.org": [11184], "www.hideki.hclippr.com": [7051], "pic3.zhimg.com": [18856], "myheritage.com.br": [10834], "www.wemineltc.com": [18200], "*.cheetahmail.com": [3055], "ps3media.ign.com": [7730], "ciscoconnectcloud.com": [3163], "coverageforall.org": [3729], "www.gigadesign.cz": [14589], "service.tmall.com": [19684], "stackapps.com": [15359], "gsfacket.se": [6990], "collections.stanford.edu": [15383], "analytics.clickdimensions.com": [3244], "sso.openx.com": [11995], "www.bitcoin.it": [1961], "www.gurulabs.com": [7024], "usa.kaspersky.com": [8806], "auth-key.berkeley.edu": [17240], "sc-css-1.omniture.com": [11803], "www.bitcoin.in": [1961], "t-online.de.intellitxt.com": [15774], "s2.adformdsp.net": [585], "help.relevate.ru": [13753], "*.com.edgesuite.net": [760], "seller-taojinbi.taobao.com": [15952], "datart.cz": [4008], "www.unsearcher.org": [17368], "jdc.jd.com": [8423], "cp.adform.net": [585], "*.searchmobius.org": [9770], "www.lorea.org": [9610], "www.mousejack.com": [19410], "www.streetartutopia.com": [15520], "wildapricot.org": [18304], "files.adform.net": [585], "ripe64.ripe.net": [13895], "blog.nodejitsu.com": [11453], "blog.pythonanywhere.com": [13273], "transition.fcc.gov": [5709], "*.ace.advertising.com": [662], "wallst.com": [10024], "help.virginmedia.com": [17737], "git.io": [6672], "www.ncp-e.com": [19428], "filezilla-project.org": [5796], "ar.cloudflare.com": [3285], "ipsos-mori.com": [8349], "planning.hillingdon.gov.uk": [7410], "rockcreek.com": [13935], "ntst.umd.edu": [17263], "bangalore.btcxindia.com": [1575], "www.xiscosoft.org": [18576], "allunmanaged.com": [841], "www.gnu.io": [6356], "www.otumm.com": [12135], "www.tahoe-lafs.org": [15910], "www.easycruit.com": [5023], "*.financialtrans.com": [5827], "wpdev.ms": [17928], "mochajs.org": [10508], "cdn.stg.comcast.com": [3461], "image.wemakeprice.com": [18198], "english-country-cottages.co.uk": [18490], "paymoapp.com": [12482], "gacs.food.gov.uk": [19187], "www.cope-it.at": [3648], "www.support.sensiolabs.com": [14586], "adda-sr.org": [268], "style.sndcdn.com": [15032], "www.thewebindex.org": [16322], "aspi.org.au": [1401], "transact.nab.com.au": [10865], "top.de": [16558], "artemisinternet.com": [1229], "scan5.coverity.com": [3734], "secure.engineering.wustl.edu": [17993], "lequipe.avanis.fr": [1440], "cca.kaspersky.com": [8806], "secure.cdgcommerce.com": [2552], "*.distributed.net": [4575], "www.html5test.com": [7107], "prous01.netforumpro.com": [11190], "whdn.williamhill.com": [18315], "sii.itcelaya.edu.mx": [7845], "www.bitnami.com": [2011], "tacar.org": [15782], "mnmdl.engineering.osu.edu": [11760], "johnrennie.net": [18428], "static.ocamlcore.org": [11613], "d.pr": [3995], "kitchenriddles.com": [8922], "*.passionfruitads.com": [12429], "professionals.bikeability.org.uk": [18998], "*.gambleid.com": [6412], "cdn8.iconfinder.com": [7921], "aberdeenshire.gov.uk": [412], "www.encrypt.today": [5234], "cpanel.guru": [2652], "netzguerilla.net": [11276], "www.alertlogic.com": [790], "encuestas.unizar.es": [17356], "bb.wustl.edu": [17993], "s.huobi.com": [7624], "cy.libreoffice.org": [9311], "brasshouse.birmingham.gov.uk": [19000], "d3.ru": [3998], "www.vbg.de": [17468], "www.data.gov": [4175], "www.abclinuxu.cz": [404], "www.news.dk": [11324], "develop100.com": [8226], "bigrecycle.portsmouth.gov.uk": [19508], "www.denx.de": [4028], "partipirate.ch": [12284], "collectd.org": [3421], "*.blogspot.com": [2107], "html5test.com": [7107], "www.smack.co.uk": [14977], "bewerbungen.bvg.de": [1582], "rade.tk": [3533], "fisolive.cheshireeast.gov.uk": [3067], "osdc.com.au": [11665], "penguinwebhosting.com": [12535], "www.markonefoods.com": [10025], "www.gnosis.cx": [6760], "www.fabianfranke.de": [5616], "blog.codesion.com": [3379], "*.iaapa.org": [7661], "hub.funio.com": [6265], "dosomething.org": [4687], "ecpic.gov": [4880], "*.utoronto.ca": [17344], "webmail.riverbed.com": [13907], "static.addtoany.com": [573], "osmi.osu.edu": [11760], "www.gcdn.org": [6306], "hartvoorinternetvrijheid.nl": [7215], "rockstargames.com": [13942], "ucw.cz": [17215], "tradedirect.ch": [19333], "www.evozi.com": [5469], "*.postdocs.ucsf.edu": [17302], "gitshell.com": [6683], "*.inq.com": [16608], "static2.avast.com": [1444], "www.moinmo.in": [10533], "eu-gmtdmp.gd1.mookie1.com": [10576], "bugs.kali.org": [8771], "totse2.com": [16607], "cmeonline.wustl.edu": [17993], "*.tekgoblin.com": [16064], "kybernetes.htwk-leipzig.de": [7114], "cyberphoto.se": [3963], "*.bannersnack.com": [1652], "jazz.co": [8536], "autohits.vn": [1415], "nationalarchives.gov.uk": [11065], "www.stream.cz": [15516], "rusi.org": [13480], "www.yuri.org.uk": [18752], "ssl.com": [14176], "www.yandex.com.tr": [18649], "www.license.avira.com": [1449], "www.usnwc.edu": [17047], "www.weert.nl": [11132], "anonymous-proxy-servers.net": [8623], "tr.chaturbate.com": [3035], "geti2p.net": [6593], "integrity.st": [8204], "www.adaptavist.com": [555], "www.dgdr.cnrs.fr": [6195], "mmos.websitealive.com": [18149], "sittard-geleen.nl": [11132], "smart-dsl.net": [19601], "selfhost.de": [14567], "dynamicweb.it": [4826], "ubjobs.buffalo.edu": [17297], "www.deaddrops.com": [4249], "pass.yandex.com": [18651], "*.newsday.com": [11341], "social.microsoft.com": [10364], "plant-world-seeds.com": [12774], "www.kuix.de": [9032], "images.deciduouspress.com.au": [4282], "akincludes.okccdn.com": [11770], "broadband-forum.org": [2348], "media1.break.com": [2297], "semabuzz.com": [14100], "www.sakittome.com": [5308], "alt-sheff.org": [871], "skandiabanken.no": [14895], "*.bluefly.com": [2147], "layer-ads.de": [14063], "volatilesystems.com": [17825], "www.ciscolive.com": [3165], "www.billettservice.no": [16421], "www.skepticalscience.com": [14904], "www.corelan.be": [3675], "swca.org": [14206], "www.ikk-suedwest.de": [7749], "eurodns.com": [5406], "www.carlsbad.org": [2855], "www.ogr.uillinois.edu": [16960], "www.etarget.ro": [5372], "www.sharideangelo.com": [14681, 14682], "js.hs-analytics.net": [7097], "www.inkbunny.net": [8148], "travelrepublic.co.uk": [16695], "realrobothigh.com": [13628], "docs.codehaus.org": [3370], "api.xrel.to": [18589], "torguard.net": [16567], "c-mid.live.com": [9483], "endpoint.com": [5243], "thesprawl.org": [15299], "op5.com": [11902], "forum.techidiots.net": [16028], "hosteuropegroup.com": [7502], "cpx.golem.de": [6819], "medistack.com": [10143], "img04.taobaocdn.com": [15953], "www.voicedailydeals.com": [17497], "syndication-o.twimg.com": [16877], "www.deepsec.net": [4298], "crypto.graphics": [3852], "bitmex.com": [1935], "www.ltradio.com": [9105], "sciencemag.org": [14382], "barnebys.co.uk": [1675], "bank.demdex.com": [4350], "img.bizrate-images.com": [2033], "campaign.usc.edu": [17278], "www.turnkeylinux.org": [16841], "services.nvidia.eu": [10984], "lifars.com": [9328], "www.360buy.com": [111], "www.iot.uk": [19302], "expedia.co.uk": [5503], "webmail.mayfirst.org": [10100], "htwk-alumni.de": [7114], "reviews.virginmobileusa.com": [17734], "aegee-enschede.nl": [276], "cart-products.ifixit.net": [7726], "*.madisonlogic.com": [9841], "files.yandex.com": [18651], "www.biostars.org": [1908], "rewards.thankyou.com": [16173], "koralle.htwk-leipzig.de": [7114], "eo-sso-idp.eo.esa.int": [5430], "www.overclockers.at": [12164], "pensions.southwark.gov.uk": [15196], "*.northerntool.com": [11501], "*.experian.experiandirect.com": [5506], "cal.leloop.org": [9191], "www.stop-ttip.org": [15482], "*.lyrk.de": [9687], "*.matrixgroup.net": [10078], "clouds.chromeexperiments.com": [3117], "static.slickdealscdn.com": [14958], "*.beender.co": [1750], "ampersandjs.com": [981], "app.codesion.com": [3379], "3kbhkort.kk.dk": [8730], "www.*.vba.va.gov": [17019], "www.attic-backup.org": [1338], "*.socallinuxexpo.org": [15047], "www.zooku.ro": [18899], "public.wolverhampton.gov.uk": [18404], "accesstojustice.gov.au": [455], "www.tizen.org": [16506], "partners.yandex.by": [18648], "projectsecretidentity.org": [13140], "dxdialog.wusm.wustl.edu": [17993], "incircle.com": [15851], "emailselfdefense.fsf.org": [5600], "i2.ooshirts.com": [11898], "faf.ornl.gov": [11693], "fas.org": [5723], "www.infosactu.com": [19291], "worldcubeassociation.org": [18453], "*.totalinvestor.co.uk": [16604], "js.live.net": [9482], "www.sintjansbrug.nl": [8513], "atlasofprejudice.com": [1320], "www.intellipoker.bg": [19298], "progress.com": [13132], "streak.com": [19632], "www.pjm.com": [12260], "meta.ifixit.com": [7727], "munchkin.marketo.net": [10015], "mybb.com": [10823], "amoena.fr": [979], "www.adacore.com": [548], "my.tmobile.com": [15834], "www.courseevalum.umd.edu": [17263], "www.demandstudios.com": [4344], "assured.se": [18967], "webaccess.uaa.alaska.edu": [17233], "archive.c3s.cc": [2500], "jf.alipay.com": [817], "www.oodaloop.com": [11652], "media.ccc.de": [2538], "braintreepaymentsolutions.com": [2274], "aises.osu.edu": [11760], "groceryserver.com": [6961], "*.backcountry.com": [1598], "fenxiao.taobao.com": [15952], "*.sched.org": [14348], "static.wistia.com": [18377], "mbdetox.com": [9720], "www.feedjit.com": [5737], "help.habbo.fi": [7122], "www.globalsign.*": [6718], "*.thecutestsiteontheblock.com": [16184], "my.serverbase.ch": [19583], "photosynth.net": [12649], "www.ffrf.org": [6165], "clickfunnels.com": [3246], "decipherinc.com": [4283], "www.bruteforce.gr": [2379], "www.libreoffice.org": [9311], "fantlab.ru": [5657], "fpjintel.com": [5590], "www.plannedparenthood.org": [12772], "www.decryptedmatrix.com": [4290], "www.pjrc.com": [12261], "edge.avangate.net": [1439], "sarava.org": [14299], "blog.cryptomilk.org": [3880], "qrpedia.org": [13311], "*.webhostinggeeks.com": [18103], "content6.flixster.com": [5933], "myutm.sophos.com": [15154], "signin.intel.com": [8209], "images.d.switchadhub.com": [15701], "vms.admin.qbrick.com": [13300], "ift.tt": [1920], "www.viaverio.com": [17660], "greenhost.nl": [6930], "static.returnpath.net": [13834], "www.tandfonline.com": [8118], "jobs.nih.gov": [11052], "www.ocf.berkeley.edu": [17240], "www.robtex.net": [13929], "www.oecd.org": [11617], "benmarshall.me": [1773], "www.hdh.ucsd.edu": [16939], "powermore.dell.com": [4335], "status.mailgun.com": [9883], "elitecastingnetwork.com": [5167], "coinbase.com": [3402], "www.projects.ed.ac.uk": [5067], "bw.com": [1584], "getsharex.com": [6604], "www.layer-ads.de": [14063], "county-star.com": [3710], "karaoke.spiel.tivi.de": [19800], "webindicator.siteheart.com": [14866], "cdnpi.pe": [2923], "webmaster.yandex.ua": [18656], "toyfoundry.net": [16619], "lh3.google.com.*": [6837], "1l-go.mail.ru": [9874], "www1.lowes.com": [9636], "connections.lsbu.ac.uk": [9098], "direct.ukash.com": [17122], "www.pingdom.com": [12687], "registration.xenegrade.com": [18562], "sso.origin.com": [12106], "percona.com": [12557], "*.chillicothegazette.com": [3078], "clicktracks.com": [9686], "dha.gov.au": [4308], "cpf.osu.edu": [11760], "www.privacyrights.org": [13093], "bugzilla.mozdev.org": [10647], "blog.gigya.com": [6659], "*.wolframalpha.com": [18397], "mijnsimpel.nl": [19592], "www.kaggle.com": [8765], "scripts.mit.edu": [9749], "list.tmall.com": [19684], "www.ian.com": [7895], "www.debianforum.de": [4276], "www.seatgeek.com": [14451], "www.selfharm.co.uk": [19579], "namebrightstatic.com": [11017], "www.spontex.org": [15287], "www.salesmanago.pl": [14069], "mecoffee.nl": [10131], "www.downloadverse.com": [4726], "www.publish.illinois.edu": [17258], "blogs.balabit.com": [1624], "www.ctovision.com": [2685], "asset-9.soupcdn.com": [15167], "mail.achelem.org": [473], "wiredforchange.com": [14254], "millionenklick.web.de": [18050], "service-now.com": [14620], "bugs.merproject.org": [10269], "www.ixicorp.com": [7880], "*.top.mail.ru": [9874], "*.surveydaddy.com": [15660], "trialpay.com": [16724], "production-assets.bundle.media": [2436], "stormpath.com": [15500], "wintiewin.com": [18331], "supermarket.chef.io": [3057], "luxhv.com": [9675], "www.ehrensenf.de": [5121], "okpartypix.com": [6525], "avatars.motherlessmedia.com": [10608], "api.digitalocean.com": [4495], "www.webhostlist.de": [18122], "css.cdn.static.malwarebytes.org": [9929], "www.opencorporates.com": [11931], "www0.maths.ox.ac.uk": [17271], "enroll.allclearid.com": [827], "torrentz.in": [16591], "support.cyberguerrilla.org": [3961], "tuts4you.com": [16854], "easyvoicebiometrics.com": [5031], "www.tue.nl": [15874], "ethack.org": [5377], "arsenalnews.net": [8878], "www.caseking.biz": [2875], "myaccount.wigan.gov.uk": [18286], "otalk.im": [12130], "www.onguardonline.gov": [11810], "spoki.lv": [15286], "www.ipsec.pl": [7806], "ubs.com": [16929], "policymic.com": [12866], "www.aberdeencity.gov.uk": [410], "www.kreativvonalak.hu": [9009], "secure.sparklabs.com": [15220], "www.allthingsd.com": [840], "clock.yandex.com.ua": [18650], "www.occrp.org": [11611], "wtop.com": [18478], "www.suse.com": [14199], "thuisbezorgd.nl": [16400], "www.youtube.com.bh": [18709], "slp3.somerset.gov.uk": [15127], "sbforge.org": [14081], "www.siteground.com": [14865], "amnesty.org.pl": [968], "www.virusbulletin.com": [17758], "tecnocode.co.uk": [16054], "s-3.com": [14056], "et00.xhcdn.com": [18514], "support.steadfast.net": [15446], "www.kinklink.me": [8907], "ngvpn34.nvidia.com": [10985], "www.weatherspark.com": [18035], "*.resellerratings.com": [13801], "www.freestateproject.org": [6152], "sport.bt.com": [1551], "scribit.com": [14415], "planning.lichfielddc.gov.uk": [19364], "itsm.polyu.edu.hk": [12891], "m.btcxindia.com": [1575], "help.vodafone.co.uk": [17813], "forum.bitmain.com": [2003], "cloudron.io": [3313], "s5.uicdn.net": [16958], "www.sediarreda.com": [19578], "www.blockspring.com": [2098], "prd1idz.cps.intel.com": [8209], "ftp.heanet.ie": [7269], "openculture.com": [12005], "password.1and1.co.uk": [53], "sophos.com": [15154], "firefox.com": [5859], "shop.canonical.com": [2810], "autos.aarp.org": [234], "www.cryoutcreations.eu": [3839], "activiti.alfresco.com": [802], "www.scandinavianphoto.fi": [14334], "www.todo.ly": [16527], "privacytools.io": [13091], "archive.data.jhu.edu": [16296], "*.igl.net": [2877], "sharedservices.dhs.gov": [4035], "ringrevenue.com": [13892], "pcreditprod.alipay.com": [817], "events.shirazlug.ir": [14708], "campact.de": [2777], "wheretobuy.seagate.com": [14437], "tags.unicefusa.org": [17182], "safeweb.norton.com": [11505], "status.github.com": [6680], "kldp.net": [8734], "www.finra.org": [5824], "direct.ilovefreegle.org": [7892], "flexport.com": [5915], "www.bountysource.com": [2248], "techcrunch.com": [18428], "travelplan.gr": [16694], "cart.sxsw.com": [15186], "www.otavamedia.fi": [12131], "*.dataminelab.com": [4183], "www.leader-manager.com": [9198], "www.oron.com": [12112], "communication.on24.com": [11638], "www.gigantic.com": [6651], "questions.medicare.gov": [19392], "myopenid.com": [10772], "www.bandcamp.mu": [1638], "cloudforce.com": [3303], "www.recipelab.org": [13644], "www.aaulan.dk": [399], "sac.se": [14217], "www.govhack.org": [6865], "enhanced.rsbac.org": [13455], "www.dannymekic.com": [4144], "www.disruptionlab.org": [4571], "goals.ar.gy": [1191], "newsletter.kabelmail.de": [8760], "l1.osdimg.com": [12119], "zilog.com": [18866], "oudesite.uvt.nl": [16445], "www.perform.illinois.edu": [17258], "seacloud.zaehlwerk.net": [18778], "3gwc-kbhkort.kk.dk": [8730], "haringey.greenparty.org.uk": [6925], "shop.ashampoo.com": [1250], "www1.guidancesoftware.com": [7006], "wales.greenparty.org.uk": [6925], "www.nordstromrack.com": [11480], "www.rhinosoft.com": [13861], "fuerzapopularpe.keikoperu.com": [6244], "sc0.rgstatic.net": [13422], "phoenix.de": [19492], "kf.qq.com": [13285], "www.reportlab.com": [13782], "insights.ubuntu.com": [17102], "edge4.digicert.com": [4473], "twitter.yfrog.com": [19791], "ilxgroup.com": [7753], "shareconnect.com": [14662], "*.refinedads.com": [13717], "wm4.pacific.net.au": [12321], "onsecure.gov.au": [11814], "www.acf.hhs.gov": [7062], "shop.pirati.cz": [12722], "osufoundation.org": [12099], "*.uni-passau.de": [17331], "www.nokia.co.uk": [11461], "nws.upc-cablecom.ch": [19716], "photos-h.ak.fbcdn.net": [5700], "libre.adacore.com": [548], "www.skylarkcloud.com": [14935], "gdata.nl": [6293], "build.cloud.unity3d.com": [17220], "webmail.claranet.pt": [3212], "www.mvptitle.com": [9807], "labs.igalia.com": [7950], "forums.code.org": [3345], "randomhouse.com": [13543], "www.mindmodeling.org": [10408], "www.apigee.com": [1093], "www.creatavist.com": [3770], "www.tum.de": [16824], "flixbus.de": [5931], "flixbus.dk": [5931], "okfn.org": [12017], "www.mozy.com": [10667], "static2.twilio.com": [16876]}} \ No newline at end of file
+{"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\" 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=\"0xacab.org\" f=\"0xacab.org.xml\"><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=\"100-gute-gruende.de\" f=\"100-Gute-Gruende.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"100R.org\" 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\" f=\"101domain.com-falsemixed.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"101domain.com (partial)\" 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=\"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 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://(?:www\\.)?1177\\.se/\" to=\"https://www.1177.se/\"/></ruleset>", "<ruleset name=\"118 Information (partial)\" default_off=\"mismatch\" 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\" f=\"11footballclub.xml\"><securecookie host=\"^\\.11footballclub\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"123-reg\" default_off=\"failed ruleset test\" 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=\"131002.net\" f=\"131002.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"1337x.org\" 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\" f=\"1431am.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Wiki.15m.cc\" f=\"15Mcc.xml\"><rule from=\"^http://wiki\\.15m\\.cc/+\" to=\"https://15mpedia.org/\"/></ruleset>", "<ruleset name=\"15Mpedia\" f=\"15Mpedia.xml\"><securecookie host=\"^(www\\.)?15mpedia\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"163.com-problematic\" f=\"163.com-problematic.xml\"><exclusion pattern=\"^http://1.163.com/$\"/><rule from=\"^http://1\\.163\\.com/favicon\\.ico\" to=\"https://1.163.com/favicon.ico\"/><rule from=\"^http://1\\.163\\.com/appguide/getconfig\\.do\" to=\"https://1.163.com/appguide/getconfig.do\"/><rule from=\"^http://1\\.163\\.com/goods/query\\.do\" to=\"https://1.163.com/goods/query.do\"/><rule from=\"^http://1\\.163\\.com/hd/oneact/validActlist\\.do\" to=\"https://1.163.com/hd/oneact/validActlist.do\"/><rule from=\"^http://1\\.163\\.com/kpimission/actregu\\.do\" to=\"https://1.163.com/kpimission/actregu.do\"/><rule from=\"^http://1\\.163\\.com/user/global\\.do\" to=\"https://1.163.com/user/global.do\"/><exclusion pattern=\"^http://baoxian.163.com/$\"/><rule from=\"^http://baoxian\\.163\\.com/(activity|car|message)/(.+)\\.html\" to=\"https://baoxian.163.com/$1/$2.html\"/><exclusion pattern=\"^http://e?mail.163.com/$\"/><rule from=\"^http://(e?mail)\\.163\\.com/favicon\\.ico\" to=\"https://$1.163.com/favicon.ico\"/><exclusion pattern=\"^http://i.money.163.com/$\"/><rule from=\"^http://i\\.money\\.163\\.com/(.+)\\.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/(.+)\\.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/\"/><exclusion pattern=\"^http://trip.163.com/$\"/><rule from=\"^http://trip\\.163\\.com/favicon\\.ico/\" to=\"https://trip.163.com/favicon.ico/\"/><rule from=\"^http://trip\\.163\\.com/ticket/queryTicketBookingCount\\.do\" to=\"https://trip.163.com/ticket/queryTicketBookingCount.do\"/></ruleset>", "<ruleset name=\"163.com (partial)\" f=\"163.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"1688.com (partial)\" f=\"1688.com.xml\"><securecookie host=\"^\\.\" name=\"^(?:ad_prefer|ali_ab|ali_beacon_id|aliBeacon_bcookie)$\"/><securecookie host=\"^\\w\" 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\" 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\" default_off=\"failed ruleset test\" 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://(?:www\\.)?17track\\.net/\" to=\"https://www.17track.net/\"/></ruleset>", "<ruleset name=\"1984.is\" 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\" default_off=\"failed ruleset test\" 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\" f=\"1LotSTP.com.xml\"><securecookie host=\"^\\.1lotstp\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"1PipFix\" f=\"1PipFix.xml\"><securecookie host=\"^(?:w*\\.)?1pipfix\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"1ShoppingCart.com (partial)\" 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\" 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\" f=\"1_Deg.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"1and1.com\" 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)\" 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&amp;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\" 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\" f=\"1d4.us.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\" 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)\" 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\" f=\"1s_and_0s.nl.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"1st ART Studio\" default_off=\"mismatch\" f=\"1st-ART-Studio.xml\"><rule from=\"^http://(?:www\\.)?1art\\.cz/\" to=\"https://www.1art.cz/\"/></ruleset>", "<ruleset name=\"1stWarning.com\" f=\"1stWarning.com.xml\"><securecookie host=\"^(?:.*\\.)?1stwarning\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"1time.co.za (Expired)\" default_off=\"Expired\" f=\"1time.co.za.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)\" 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=\"21.co\" f=\"21.co.xml\"><securecookie host=\"^(www\\.)?21\\.co$\" 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.com\" f=\"2345.com.xml\"><exclusion pattern=\"^http://haozip\\.2345\\.com/$\"/><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\" default_off=\"failed ruleset test\" 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=\"247filmz\" f=\"247filmz.xml\"><securecookie host=\"^(?:www\\.)?247filmz\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"24img.com\" f=\"24img.com.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"254a.com\" f=\"254a.com.xml\"><securecookie host=\"^d\\.254a\\.com$\" name=\".+\"/><rule from=\"^http://d\\.254a\\.com/\" to=\"https://d.254a.com/\"/></ruleset>", "<ruleset name=\"256.com\" default_off=\"expired\" f=\"256.com.xml\"><rule from=\"^http://www\\.256\\.com/\" to=\"https://256.com/\"/><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)\" f=\"2K_Games.xml\"><securecookie host=\".+\\.2kgames\\.com\" name=\".+\"/><rule from=\"^http://2kgames\\.com/\" to=\"https://www.2kgames.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"2K Sports.com\" f=\"2K_Sports.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"2 Ton.com.au\" 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\" 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=\"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=\"connection 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 (partial)\" f=\"3.cn.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"30 Boxes.com\" default_off=\"expired\" f=\"30_Boxes.com.xml\"><securecookie host=\"^\\.30boxes\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"31tv.ru\" f=\"31tv.ru.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\" f=\"33option.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"350 (partial)\" f=\"350.xml\"><securecookie host=\"^act\\.350\\.org$\" name=\".+\"/><rule from=\"^http://act\\.350\\.org/\" to=\"https://act.350.org/\"/><rule from=\"^http://pacific\\.350\\.org/(bundl|imag)es/\" to=\"https://posterous.com/$1es/\"/></ruleset>", "<ruleset name=\"350zEvolution.com\" default_off=\"connection refused\" f=\"350zEvolution.com.xml\"><securecookie host=\"^(?:.*\\.)?350zevolution\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"360.cn (partial)\" 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\" f=\"360_Yield.xml\"><securecookie host=\".*\\.360yield\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?360yield\\.com/\" to=\"https://admin.360yield.com/\"/><rule from=\"^http://ad(min)?\\.360yield\\.com/\" to=\"https://ad$1.360yield.com/\"/></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://(?:www\\.)?39dollarglasses\\.com/\" to=\"https://www.39dollarglasses.com/\"/></ruleset>", "<ruleset name=\"3DCenter.org (cacert)\" platform=\"cacert\" f=\"3DCenter.org.xml\"><securecookie host=\"^(www|m)?\\.3dcenter\\.org$\" name=\".+\"/><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)\" 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://account\\.3playmedia\\.com/\" to=\"https://account.3playmedia.com/\"/></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\" f=\"3bbwifi.com.xml\"><rule from=\"^http://(?:www\\.)?3bbwifi\\.com/\" to=\"https://www.3bbwifi.com/\"/></ruleset>", "<ruleset name=\"3cdn\" f=\"3cdn.xml\"><rule from=\"^http://(\\w+)\\.3cdn\\.net/\" to=\"https://$1.3cdn.net/\"/></ruleset>", "<ruleset name=\"3conline.com (partial)\" 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\" default_off=\"failed ruleset test\" f=\"3scale.xml\"><securecookie host=\".+\\.3scale\\.net$\" name=\".+\"/><rule from=\"^http://([\\w-]+\\.)?3scale\\.net/\" to=\"https://$13scale.net/\"/></ruleset>", "<ruleset name=\"3suisses.de\" f=\"3suisses.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"3taps\" 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=\"3v4l.org\" f=\"3v4l.org.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://forum\\.419eater\\.com/\" to=\"https://forum.419eater.com/\"/></ruleset>", "<ruleset name=\"42Floors.com (partial)\" f=\"42Floors.com.xml\"><securecookie host=\"^(?:www\\.)?42floors\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"435 by MJC.com\" 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=\"451 Unavailable.org\" default_off=\"mismatched\" f=\"451_Unavailable.org.xml\"><securecookie host=\"^(?:www\\.)?451unavailable\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"45 Million Voices\" default_off=\"mismatched\" f=\"45_Million_Voices.xml\"><rule from=\"^http://(?:www\\.)?45millionvoices\\.org/\" to=\"https://45millionvoices.org/\"/></ruleset>", "<ruleset name=\"48months.ie\" default_off=\"failed ruleset test\" f=\"48months.ie.xml\"><securecookie host=\"^community\\.48months\\.ie$\" name=\".+\"/><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=\"mismatch\" 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=\"4RX.com\" default_off=\"failed ruleset test\" f=\"4RX.com.xml\"><securecookie host=\"^\\.4rx\\.com$\" name=\".+\"/><rule from=\"^http://(?:secure\\.|www\\.)?4rx\\.com/\" to=\"https://secure.4rx.com/\"/></ruleset>", "<ruleset name=\"4Shared (experimental)\" f=\"4Shared.xml\"><exclusion pattern=\"^http://(?:blog|forum)\\.4shared\\.com/\"/><securecookie host=\"^(?:.*\\.)?4shared\\.com$\" name=\".*\"/><rule from=\"^http://([^/:@]*\\.)?4shared\\.com/\" to=\"https://$14shared.com/\"/></ruleset>", "<ruleset name=\"4Tulemar\" platform=\"mixedcontent\" 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://(www\\.)?500ish\\.com/\" to=\"https://500ish.com/\"/></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://(www\\.)?511tactical\\.com/\" to=\"https://www.511tactical.com/\"/></ruleset>", "<ruleset name=\"512 Pixels.net\" f=\"512_Pixels.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"51 Fanli.net (partial)\" f=\"51_Fanli.net.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://l[1-4]\\.51fanli\\.net/\" to=\"https://l0.51fanli.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"55ch.org\" 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://pic2\\.58\\.com/\" to=\"https://pic2.58cdn.com.cn/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"58 CDN.com.cn\" f=\"58cdn.com.cn.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"5NINES (partial)\" 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=\"5apps (mismatches)\" default_off=\"tender certificate\" f=\"5apps.com-mismatches.xml\"><securecookie host=\"^help\\.5apps\\.com$\" name=\".*\"/><rule from=\"^http://help\\.5apps\\.com/\" to=\"https://help.5apps.com/\"/></ruleset>", "<ruleset name=\"5apps (partial)\" f=\"5apps.com.xml\"><securecookie host=\"^5apps\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?5apps\\.com/\" to=\"https://5apps.com/\"/><rule from=\"^http://(develop|libs)\\.5apps\\.com/\" to=\"https://$1.5apps.com/\"/></ruleset>", "<ruleset name=\"5dec.ru\" f=\"5dec.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"5min.com (partial)\" 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=\"connection refused\" f=\"6Scan.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"6Wunderkinder (partial)\" default_off=\"mismatch\" 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 (CAcert)\" platform=\"cacert\" default_off=\"failed ruleset test\" f=\"6xq.net.xml\"><rule from=\"^http://(?:www\\.)?6xq\\.net/\" to=\"https://6xq.net/\"/></ruleset>", "<ruleset name=\"7-Eleven.com (partial)\" 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\" f=\"7_Elements.co.uk.xml\"><securecookie host=\"^(?:www\\.)?7elements\\.co\\.uk$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"7 Springs.com\" default_off=\"failed ruleset test\" 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\" default_off=\"failed ruleset test\" 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\" 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\" 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\" 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 (partial)\" f=\"911.gov.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"918autoloans.com\" default_off=\"failed ruleset test\" f=\"918autoloans.com.xml\"><securecookie host=\"^\\.918autoloans\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"95516.com\" 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 (partial)\" f=\"9gag.xml\"><exclusion pattern=\"^http://(?:m\\.|www\\.)?9gag\\.com/+(?!(?:about|advertise|faq|login|privacy|recover|signup|tos)(?:$|[?/])|favicon\\.ico|img/)\"/><securecookie host=\"^admin\\.9gag\\.com$\" name=\".+\"/><rule from=\"^http://((?:admin|api|comment|m|www)\\.)?9gag\\.com/\" to=\"https://$19gag.com/\"/><rule from=\"^http://images-cdn\\.9gag\\.com/\" to=\"https://d24w6bsrhbeh9d.cloudfront.net/\"/><rule from=\"^http://assets-9gag-lol\\.9cache\\.com/\" to=\"https://assets-9gag-lol.9cache.com/\"/></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=\"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=\"FSDN.com\" f=\"A.fsdn.com.xml\"><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\" 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\" default_off=\"failed ruleset test\" 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=\"mismatch\" 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=\"a4apphack (partial)\" f=\"A4apphack.xml\"><rule from=\"^http://img\\.a4apphack\\.com/\" to=\"https://s3.amazonaws.com/img.a4apphack.com/\"/></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\" f=\"AA.xml\"><securecookie host=\"^(?:.*\\.)aa\\.com$\" 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\" f=\"AACQA.xml\"><rule from=\"^http://(?:www\\.)?aacqa\\.gov\\.au/\" to=\"https://www.aacqa.gov.au/\"/></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)\" 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)\" 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://pervasive\\.aau\\.at/\" to=\"https://pervasive.aau.at/\"/></ruleset>", "<ruleset name=\"AB9IL.net\" f=\"AB9IL.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ABC Music Publishing\" default_off=\"mismatch\" 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\" 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)\" 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\" default_off=\"failed ruleset test\" 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\" 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 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 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 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 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\" f=\"ACLU.xml\"><securecookie host=\"^secure\\.aclu\\.org$\" name=\".+\"/><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=\"^(?:www\\.)?aclunc\\.org$\" 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\" 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://track\\.adcocktail\\.com/\" to=\"https://track.adcocktail.com/\"/></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\" default_off=\"failed ruleset test\" 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=\"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\" 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://afnic\\.fr/[^?]*(\\?.*)?\" to=\"https://www.afnic.fr/$1\"/><rule from=\"^http://www\\.(sandbox\\.)?afnic\\.fr/\" to=\"https://www.$1afnic.fr/\"/></ruleset>", "<ruleset name=\"AFP548.com (false MCB)\" platform=\"mixedcontent\" f=\"AFP548.com-falsemixed.xml\"><securecookie host=\"^afp548\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AFP548.com (partial)\" f=\"AFP548.com.xml\"><rule from=\"^http://(www\\.)?afp548\\.com/(?=favicon\\.ico|wp-content/|wp-includes/)\" to=\"https://$1afp548.com/\"/></ruleset>", "<ruleset name=\"AFRA-Berlin.de\" f=\"AFRA-Berlin.de.xml\"><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\" 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=\"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)\" 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)\" default_off=\"mismatched\" f=\"AJC.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AJ's Ski &amp; 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\" 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)\" 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\" 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\" 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=\"A.M. Best Company (partial)\" default_off=\"failed ruleset test\" f=\"AM-Best-Company.xml\"><securecookie host=\"^www3\\.ambest\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?ambest\\.com/(CSS|SpryAssets)/\" to=\"https://www3.ambest.com/$1/\"/><rule from=\"^http://(?:www\\.)?ambest\\.com/images/\" to=\"https://www3.ambest.com/simages/\"/><rule from=\"^http://www3\\.ambest\\.com/\" to=\"https://www3.ambest.com/\"/><rule from=\"^http://dev-www3/\" to=\"https://www3.ambest.com/\"/></ruleset>", "<ruleset name=\"AMC TV.com (partial)\" platform=\"mixedcontent\" 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 (partial)\" f=\"AMS.org.xml\"><rule from=\"^http://(www\\.)?ams\\.org/(?=animated_favicon1\\.gif|css/|favicon\\.ico|images/)\" to=\"https://$1ams.org/\"/></ruleset>", "<ruleset name=\"AMSl.com\" f=\"AMSl.com.xml\"><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\" f=\"AMoAd.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ANB\" default_off=\"failed ruleset test\" 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\" 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\" f=\"AOL-Advertising.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AOL (mismatches)\" default_off=\"mismatch\" 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)\" f=\"AOL.co.uk.xml\"><exclusion pattern=\"^http://uktools\\.aol\\.co\\.uk/(?!media/)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AOL.com (partial)\" f=\"AOL.xml\"><exclusion pattern=\"^http://my\\.screenname\\.aol\\.com/_cqr/logout/\"/><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\"><exclusion pattern=\"^http://o\\.aolcdn\\.com/(?:hss/storage(?!/adam/|/midas/)|mars|myfeeds|portaleu|winamp/dp)/\"/><rule from=\"^http://o3?\\.aolcdn\\.com/\" to=\"https://s.aolcdn.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AOL On Network.com (partial)\" 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)\" f=\"APAN.org.xml\"><securecookie host=\"^(?:\\w+\\.)?apan\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"APC Magazine\" default_off=\"connection 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\" f=\"APM.com.xml\"><securecookie host=\"^(?:myapm|www)\\.apm\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"APN News &amp; Media (partial)\" default_off=\"failed ruleset test\" f=\"APN_News_and_Media.xml.xml\"><rule from=\"^http://media2\\.apnonline\\.com\\.au/\" to=\"https://d159yll7hxyh2o.cloudfront.net/\"/></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)\" 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=\"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\" default_off=\"failed ruleset test\" 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)\" 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/)\"/><exclusion pattern=\"^http://www\\.asus\\.com/zenbook(?:$|[?/])\"/><exclusion pattern=\"^http://www\\.asus\\.com/zentalk/\"/><securecookie host=\"^\\.asus\\.com$\" name=\"^frontend$\"/><securecookie host=\"^\\w\" 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\" default_off=\"failed ruleset test\" 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&amp;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://ssl\\.atbar\\.org/\" to=\"https://ssl.atbar.org/\"/></ruleset>", "<ruleset name=\"aTech.io\" 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\" 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\" 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\" default_off=\"failed ruleset test\" 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\" 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\" default_off=\"failed ruleset test\" 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=\"AAAI.org\" f=\"Aaai.org.xml\"><rule from=\"^http://aaai\\.org/\" to=\"https://www.aaai.org/\"/><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)\" 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\" 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://aaronparecki\\.com/\" to=\"https://aaronparecki.com/\"/></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\" f=\"Aastatus.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Aaulan.dk\" 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=\"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)\" default_off=\"failed ruleset test\" f=\"AbenteuerLand.at.xml\"><rule from=\"^http://psara\\.abenteuerland\\.at/\" to=\"https://psara.abenteuerland.at/\"/></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)\" 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 (mismatches)\" default_off=\"expired, self-signed\" f=\"Aberystwyth-University-mismatches.xml\"><securecookie host=\"^connect\\.aber\\.ac\\.uk$\" name=\".+\"/><rule from=\"^http://connect\\.aber\\.ac\\.uk/\" to=\"https://connect.aber.ac.uk/\"/></ruleset>", "<ruleset name=\"Aberystwyth University (partial)\" f=\"Aberystwyth-University.xml\"><exclusion pattern=\"^http://cadair\\.aber\\.ac\\.uk/(?!dspace/ldap-login)\"/><exclusion pattern=\"^http://(?:connect|www\\.inf|jump|nexus|users)\\.\"/><exclusion pattern=\"^http://primo\\.aber\\.ac\\.uk(?:80)?/primo_library/libweb/\"/><securecookie host=\"^[^cp][\\w\\.]+\\.aber\\.ac\\.uk$\" name=\".+\"/><rule from=\"^http://(?:beta\\.)?aber\\.ac\\.uk/\" to=\"https://www.aber.ac.uk/\"/><rule from=\"^http://([\\w\\.]+)\\.aber\\.ac\\.uk/\" to=\"https://$1.aber.ac.uk/\"/></ruleset>", "<ruleset name=\"abftracker.com\" f=\"Abftracker.com.xml\"><rule from=\"^http://affiliate\\.abftracker\\.com/\" to=\"https://affiliate.abftracker.com/\"/></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\" f=\"Abila.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Abiliba\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Abiliba.xml\"><securecookie host=\"^secure\\.abiliba\\.net$\" name=\".*\"/><rule from=\"^http://(?:secure\\.|www\\.)?abiliba\\.net/\" to=\"https://secure.abiliba.net/\"/></ruleset>", "<ruleset name=\"Abine.com\" f=\"Abine.xml\"><securecookie host=\"^(?:w*\\.)?abine\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AbleGamers\" default_off=\"failed ruleset test\" f=\"AbleGamers.xml\"><securecookie host=\"^www\\.ablegamers\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"abma.de\" default_off=\"self-signed\" f=\"Abma.de.xml\"><rule from=\"^http://(?:ssl|www)\\.abma\\.de/\" to=\"https://abma.de/\"/><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)\" 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\" 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=\"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\" 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://a\\.academia-assets\\.com/\" to=\"https://a.academia-assets.com/\"/></ruleset>", "<ruleset name=\"Academia.edu (partial)\" f=\"Academia.edu.xml\"><rule from=\"^http://(assets|images|photos)\\.academia\\.edu/\" to=\"https://s3.amazonaws.com/academia.edu.$1/\"/><rule from=\"^http://(independent\\.|www\\.)?academia\\.edu/\" to=\"https://$1academia.edu/\"/></ruleset>", "<ruleset name=\"academics.de\" 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://secure\\.acceptiva\\.com/\" to=\"https://secure.acceptiva.com/\"/></ruleset>", "<ruleset name=\"access-kaiseki-tools.com\" f=\"Access-kaiseki-tools.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AccessGuardian.com\" f=\"AccessGuardian.com.xml\"><securecookie host=\"^(?:www\\.)?accessguardian\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AccessLabs\" default_off=\"failed ruleset test\" f=\"AccessLabs.xml\"><securecookie host=\"^(?:www\\.)?accesslabs\\.(?:net|org)$\" 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\" 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)\" 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=\"Access to Justice.gov.au\" default_off=\"expired\" f=\"AccesstoJustice.xml\"><rule from=\"^http://accesstojustice\\.gov\\.au/\" to=\"https://www.accesstojustice.gov.au/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"accesstrade.net (partial)\" f=\"Accesstrade.net.xml\"><securecookie host=\"^member\\.accesstrade\\.net$\" name=\".+\"/><rule from=\"^http://member\\.accesstrade\\.net/\" to=\"https://member.accesstrade.net/\"/></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)\" f=\"AccuWeather.xml\"><securecookie host=\"^enterpriseportal\\.accuweather\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Accuen (problematic)\" default_off=\"connection refused\" f=\"Accuen-problematic.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Accuen (partial)\" default_off=\"connection dropped\" f=\"Accuen.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Accuvant.com\" 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=\"Achelem.org (partial)\" default_off=\"self-signed\" f=\"Achelem.org.xml\"><securecookie host=\"^mail\\.achelem\\.org$\" name=\".+\"/><rule from=\"^http://mail\\.achelem\\.org/\" to=\"https://mail.achelem.org/\"/></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\" 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\" 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=\"acrocomcontent.com\" f=\"Acrocomcontent.com.xml\"><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=\"Act.demandprogress.org\" f=\"Act.demandprogress.org.xml\"><rule from=\"^http://act\\.demandprogress\\.org/\" to=\"https://act.demandprogress.org/\"/></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=\"mismatch\" 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\" f=\"Active_static.net.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://cloud\\.aculab\\.com/\" to=\"https://cloud.aculab.com/\"/></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)\" 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://ads\\.ad-center\\.com/\" to=\"https://ads.ad-center.com/\"/></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://r\\.ad6media\\.fr/\" to=\"https://r.ad6media.fr/\"/></ruleset>", "<ruleset name=\"AdBit.co\" f=\"AdBit.co.xml\"><securecookie host=\"^\\.?adbit\\.co$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AdBlock\" f=\"AdBlock.xml\"><rule from=\"^http://(www\\.)?getadblock\\.com/\" to=\"https://$1getadblock.com/\"/><rule from=\"^http://support\\.getadblock\\.com/(?=favicon\\.ico|help/theme\\.css|pkg/|stylesheets/)\" to=\"https://help.tenderapp.com/\"/><rule from=\"^http://(?:www\\.)?chromeadblock\\.com/\" to=\"https://chromeadblock.com/\"/></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)\" 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 (buggy)\" default_off=\"trips on its own referrers\" f=\"AdF.ly.xml\"><securecookie host=\"^adf\\.ly$\" name=\".+\"/><securecookie host=\"^\\.adf\\.ly$\" name=\"^(?:adf[12]|__cfduid|FLYSESSID)$\"/><rule from=\"^http://(www\\.)?adf\\.ly/\" to=\"https://$1adf.ly/\"/><rule from=\"^http://cdn\\.adf\\.ly/\" to=\"https://adf.ly/\"/></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)\" 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)\" 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=\"^(?:www\\.)?admatrix\\.jp$\" 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://adserver\\.adreactor\\.com/\" to=\"https://adserver.adreactor.com/\"/></ruleset>", "<ruleset name=\"AdRiver.ru (partial)\" 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\" 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\" 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)\" 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)\" default_off=\"failed ruleset test\" 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)\" 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)\" f=\"Adaptec.com.xml\"><rule from=\"^http://(?:www\\.)?adaptec\\.com/\" to=\"https://www.adaptec.com/\"/></ruleset>", "<ruleset name=\"Adapteva.com (partial)\" f=\"Adapteva.com.xml\"><rule from=\"^http://shop\\.adapteva\\.com/\" to=\"https://adapteva.myshopify.com/\"/></ruleset>", "<ruleset name=\"Adaptive Computing (partial)\" 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\"><exclusion pattern=\"^http://(?:www\\.)?adblade\\.com/+(?!css/|favicon\\.ico|images/|img/|registration/)\"/><securecookie host=\"^\\.adblade\\.com$\" name=\"^__sgs$\"/><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\" 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=\"mismatch\" 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\" 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=\"AddToAny.com\" f=\"AddToAny.xml\"><securecookie host=\".\" name=\".\"/><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\" default_off=\"failed ruleset test\" 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=\"addy.co\" f=\"Addy.co.xml\"><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=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"adentifi.com\" f=\"Adentifi.com.xml\"><securecookie host=\"^(?:www\\.)?adentifi\\.com$\" 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 (partial)\" f=\"Adform.xml\"><exclusion pattern=\"^http://(?:academy|blog|creative)\\.adform\\.com/\"/><securecookie host=\"^\\w.*\\.adform\\.com$\" name=\".\"/><securecookie host=\"\\.adform\\.net$\" name=\".\"/><securecookie host=\"\\.adformdsp\\.net$\" name=\".\"/><rule from=\"^https://(academy|blog|creative)\\.adform\\.com/\" to=\"http://$1.adform.com/\" downgrade=\"1\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Adgenie.co.uk (partial)\" f=\"Adgenie.co.uk.xml\"><rule from=\"^http://adverts\\.adgenie\\.co\\.uk/\" to=\"https://adverts.adgenie.co.uk/\"/></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://ad\\.afy11\\.net/\" to=\"https://ad.afy11.net/\"/></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 (partial)\" f=\"Adingo.xml\"><securecookie host=\"^product\\.adingo\\.jp$\" name=\".+\"/><rule from=\"^http://www\\.adingo\\.jp/\" to=\"https://adingo.jp/\"/><rule from=\"^http://product\\.adingo\\.jp\\.eimg\\.jp/\" to=\"https://product.adingo.jp/\"/><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\" 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\" 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\" 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\" 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\" 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=\"adshostnet.com\" default_off=\"failed ruleset test\" f=\"Adshostnet.com.xml\"><rule from=\"^http://n5\\.adshostnet\\.com/\" to=\"https://n5.adshostnet.com/\"/></ruleset>", "<ruleset name=\"Adsimilis\" platform=\"mixedcontent\" 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)\" 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\" 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://blog\\.advance\\.net/\" to=\"https://blog.advance.net/\"/></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)\" 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=\"Adversary\" default_off=\"self-signed\" f=\"Adversary.org.xml\"><rule from=\"^http://(?:www\\.)?adversary\\.org/\" to=\"https://www.adversary.org/\"/></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\" 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://r\\.advg\\.jp/\" to=\"https://r.advg.jp/\"/></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\" 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=\"mismatch\" 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)\" 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://metrics\\.adzip\\.co/\" to=\"https://metrics.adzip.co/\"/></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=\"Aeolus\" default_off=\"failed ruleset test\" f=\"Aeolus.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Aeon.co (partial)\" default_off=\"expired, self-signed\" platform=\"mixedcontent\" f=\"Aeon.co.xml\"><rule from=\"^http://(?:www\\.)?aeon\\.co/\" to=\"https://aeon.co/\"/></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=\"aerio.biz\" f=\"Aerio.biz.xml\"><rule from=\"^http://www\\.aerio\\.biz/\" to=\"https://www.aerio.biz/\"/></ruleset>", "<ruleset name=\"AeroFS.com\" 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&#233;roports de Montr&#233;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=\"Aesload.de\" default_off=\"failed ruleset test\" f=\"Aesload.de.xml\"><rule from=\"^http://(?:www\\.)?aesload\\.de/\" to=\"https://www.aesload.de/\"/></ruleset>", "<ruleset name=\"Aether Flyff.com\" 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=\"Affair-Guide.com (false MCB)\" platform=\"mixedcontent\" f=\"Affair-Guide.com-falsemixed.xml\"><securecookie host=\"^\\.?affair-guide\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Affair-Guide.com (partial)\" f=\"Affair-Guide.com.xml\"><rule from=\"^http://(www\\.)?affair-guide\\.com/(?=favicon\\.ico|wp-content/|wp-includes/)\" to=\"https://$1affair-guide.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=\"Affinix.com (partial)\" default_off=\"expired\" f=\"Affinix.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\" 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\" 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\" default_off=\"failed ruleset test\" f=\"Aftonbladet-CDN.se.xml\"><rule from=\"^http://gfx2?\\.aftonbladet-cdn\\.se/\" to=\"https://www.aftonbladet.se/\"/></ruleset>", "<ruleset name=\"Aftonbladet.se (partial)\" default_off=\"failed ruleset test\" 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\" 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\" default_off=\"failed ruleset test\" 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=\"Age of Mine.com\" 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=\"mismatch\" 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\" 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=\"AgileBits\" f=\"AgileBits.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://(?:www\\.)?agilewebsolutions\\.com/\" to=\"https://agilebits.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=\"Agnitum\" default_off=\"failed ruleset test\" f=\"Agnitum.com.xml\"><rule from=\"^http://www\\.agnitum\\.com/\" to=\"https://www.agnitum.com/\"/><rule from=\"^http://agnitum\\.com/\" to=\"https://www.agnitum.com/\"/></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\" default_off=\"failed ruleset test\" f=\"Agora_Voting.com.xml\"><securecookie host=\"^\\.agoravoting\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"agra-net.com (partial)\" 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\" 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\" 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\" default_off=\"expired\" f=\"Aioe.org.xml\"><rule from=\"^http://(?:www\\.)?aioe\\.org/\" to=\"https://aioe.org/\"/></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=\"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=\"^\\.airbnb\\.(?:ca|co\\.kr|co\\.uk|com|com\\.au|com\\.br|de|es|fr|it|jp|ru)$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?airbnb\\.(ca|co\\.kr|co\\.uk|com|com\\.au|com\\.br|de|es|fr|it|jp|ru)/\" to=\"https://www.airbnb.$1/\"/><rule from=\"^http://(m\\.|www\\.)?airbnb\\.com/\" to=\"https://$1airbnb.com/\"/><rule from=\"^http://a(0|1)\\.muscache\\.com/\" to=\"https://a$1.muscache.com/\"/></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\" default_off=\"expired, self-signed\" f=\"Airs.xml\"><rule from=\"^http://(?:www\\.)?airs\\.com/\" to=\"https://airs.com/\"/></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=\"mismatch\" f=\"Airshow-Journal.xml\"><rule from=\"^http://(\\w+)\\.airshowjournal\\.com/\" to=\"https://$1.airshowjournal.com/\"/></ruleset>", "<ruleset name=\"AirsoftGI.com\" 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=\"AkademikerF&#246;rs&#228;kring.se\" default_off=\"failed ruleset test\" f=\"AkademikerForsakring.se.xml\"><rule from=\"^http://(?:www\\.)?akademikerf[o&#246;]rs[a&#228;]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=\"mismatch\" f=\"Akamai-mismatches.xml\"><rule from=\"^http://(\\w+\\.\\w+)\\.edgesuite\\.net/\" to=\"https://$1.edgesuite.net/\"/></ruleset>", "<ruleset name=\"Akamai.com (partial)\" 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/\"/><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=\"Aktien Check.de (partial)\" default_off=\"expired, self-signed\" f=\"Aktien_Check.de.xml\"><rule from=\"^http://partner\\.aktiencheck\\.de/\" to=\"https://partner.aktiencheck.de/\"/></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\" 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=\"Akvorrat.at\" f=\"Akvorrat.at.xml\"><securecookie host=\".+\" name=\".+\"/><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=\"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=\"mismatch\" 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&#8217;s Place\" platform=\"mixedcontent\" f=\"Alastairs-Place.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Albennet Hosting Provider\" 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\" 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)\" 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=\"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\" f=\"Alecomm.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AlertBot\" f=\"AlertBot.xml\"><securecookie host=\"^w*\\.alertbot\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?alertbot\\.com/\" to=\"https://www.alertbot.com/\"/></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=\"Alexhaydock.co.uk\" f=\"Alexhaydock.co.uk.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"alfa Media Partner (partial)\" default_off=\"failed ruleset test\" 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\" 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\" f=\"Alfresco.com.xml\"><securecookie host=\"^my\\.alfresco\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Algolia.com\" f=\"Algolia.com.xml\"><securecookie host=\"^www\\.algolia\\.com$\" name=\".+\"/><rule from=\"^http://((?:blog|hn|status|www)\\.)?algolia\\.com/\" to=\"https://$1algolia.com/\"/></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=\"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\" default_off=\"failed ruleset test\" f=\"Alias.io.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Alibaba.com (partial)\" 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\" 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://job\\.alipay\\.com/\" to=\"https://job.alibaba.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\" 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\" 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\" default_off=\"failed ruleset test\" 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=\"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&#252;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\" default_off=\"failed ruleset test\" 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)\" 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=\"allmyvideos.net (partial)\" f=\"Allmyvideos.net.xml\"><securecookie host=\"^(?:api|cacti)?\\.allmyvideos\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Alloscomp.com\" platform=\"cacert\" default_off=\"expired\" f=\"Alloscomp.com.xml\"><rule from=\"^http://(?:www\\.)?alloscomp\\.com/\" to=\"https://www.alloscomp.com/\"/></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\" default_off=\"expired, self-signed\" f=\"Alltop.xml\"><rule from=\"^http://(?:www\\.)?alltop\\.com/\" to=\"https://alltop.com/\"/></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=\"connection 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 (partial)\" f=\"AlterNet.xml\"><exclusion pattern=\"^http://(?:www\\.)?alternet\\.org/(?!images/)\"/><exclusion pattern=\"^http://beta\\.alternet\\.org/+(?!sandbox/)\"/><rule from=\"^http://blogs\\.alternet\\.org/speakeasy/wp-content/avatars/\" to=\"https://images.alternet.org/images/avatars/\"/><rule from=\"^http://((?:beta|donate|files|images|www)\\.)?alternet\\.org/\" to=\"https://$1alternet.org/\"/></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)\" f=\"AlternC.xml\"><securecookie host=\"^(?:www\\.)?alternc\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AlternaLabs (partial)\" f=\"AlternaLabs.xml\"><rule from=\"^http://(www\\.)?alternalabs\\.com/(assets/|favicon\\.ico|wp-content/)\" to=\"https://$1alternalabs.com/$2\"/></ruleset>", "<ruleset name=\"Alternate\" platform=\"mixedcontent\" 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\" default_off=\"failed ruleset test\" f=\"Alternatif_Bilisim.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\" 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 (mismatches)\" default_off=\"Akamai certificate, expired\" f=\"Alticore-mismatches.xml\"><securecookie host=\"^(?:.*\\.)?amwaygrand\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?amwaygrand\\.com/\" to=\"https://www.amwaygrand.com/\"/><rule from=\"^http://lauramercier\\.ugc\\.bazaarvoice\\.com/\" to=\"https://lauramercier.ugc.bazaarvoice.com/\"/></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://(www\\.)?altmetric.com/blog/\"/><rule from=\"^https://(www\\.)?altmetric\\.com/blog/\" to=\"http://$1altmetric.com/blog/\" downgrade=\"1\"/><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\" 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)\" default_off=\"failed ruleset test\" 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://cdnsecureservep1\\.amexserve-static\\.com/\" to=\"https://cdnsecureservep1.amexserve-static.com/\"/></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)\" 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 (false MCB)\" platform=\"mixedcontent\" f=\"Amara.xml\"><securecookie host=\"^www\\.amara\\.org$\" name=\".+\"/><rule from=\"^https?://(www\\.)?amara\\.org/\" to=\"https://www.amara.org/\"/></ruleset>", "<ruleset name=\"amazingweb\" f=\"Amazingweb.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Amazon-Adsystem.com (partial)\" 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\" 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=\"Amazon Web Services (break zoom)\" default_off=\"breaks image zoom\" f=\"AmazonAWS-breakzoom.xml\"><rule from=\"^http://ecx\\.images-amazon\\.com/\" to=\"https://images-na.ssl-images-amazon.com/\"/></ruleset>", "<ruleset name=\"Amazon Web Services\" f=\"AmazonAWS.xml\"><exclusion pattern=\"^http://webservices\\.amazon\\.com/scratchpad/\"/><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://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=\"AmazonSupply.com\" f=\"AmazonSupply.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></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\" 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://amblin\\.io/\" to=\"https://amblin.io/\"/></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\"><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)\" 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=\"American Epilepsy Society (partial)\" default_off=\"failed ruleset test\" f=\"American-Epilepsy-Society.xml\"><rule from=\"^http://(?:www\\.)?aesnet\\.org/erc/\" to=\"https://www.aesnet.org/erc/\"/></ruleset>", "<ruleset name=\"American Foundation for Suicide Prevention\" f=\"American-Foundation-Suicide-Prevention.xml\"><exclusion pattern=\"^http://(?:www\\.)?afsp\\.org/indiana$\"/><rule from=\"^(?:http://(?:www\\.)?|https://)afsp\\.org/\" to=\"https://www.afsp.org/\"/></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=\"ACS.org (problematic)\" default_off=\"mismatched\" f=\"American_Chemical_Society-problematic.xml\"><rule from=\"^http://chemistryjobs\\.acs\\.org/\" to=\"https://chemistryjobs.acs.org/\"/></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\" default_off=\"failed ruleset test\" f=\"American_Future_Fund.xml\"><securecookie host=\"^(?:www\\.)?americanfuturefund\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"American Heart.org (partial)\" default_off=\"failed ruleset test\" 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\" 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 Charities\" default_off=\"failed ruleset test\" f=\"Americas-Charities.xml\"><securecookie host=\"^www\\.charities\\.org$\" name=\".+\"/><rule from=\"^(?:http://(?:www\\.)?|https://)charities\\.org/\" to=\"https://www.charities.org/\"/></ruleset>", "<ruleset name=\"America's Longest War\" default_off=\"failed ruleset test\" 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=\"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)\" 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 (partial)\" f=\"Amnesty.fr.xml\"><securecookie host=\"^\\w\" name=\".\"/><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\" 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\" 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=\"ampatico.com\" default_off=\"mismatched\" f=\"Ampatico.com.xml\"><rule from=\"^http://(?:www\\.)?ampatico\\.com/\" to=\"https://ampatico.com/\"/></ruleset>", "<ruleset name=\"Ampersandjs.com (partial)\" f=\"Ampersandjs.com.xml\"><rule from=\"^http://ampersandjs\\.com/\" to=\"https://ampersandjs.com/\"/></ruleset>", "<ruleset name=\"Ampush.com\" default_off=\"failed ruleset test\" f=\"Ampush.com.xml\"><securecookie host=\"^(?:w*\\.)?ampush\\.com$\" name=\".+\"/><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=\"mismatch\" 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\" 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\" default_off=\"self-signed\" f=\"AnarchistNews.xml\"><securecookie host=\"^anarchistnews.org$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?anarchistnews\\.org/\" to=\"https://anarchistnews.org/\"/></ruleset>", "<ruleset name=\"Anarplex.net\" f=\"Anarplex.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ancestry.com (partial)\" 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://rpt\\.anchorfree\\.net/\" to=\"https://rpt.anchorfree.net/\"/></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\" 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=\"mismatch\" 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\" f=\"Androidpit.xml\"><securecookie host=\"^(www\\.)?androidpit\\.de\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Andy Tyson.com\" 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=\"Angola 3.org\" default_off=\"expired, self-signed\" f=\"Angola_3.org.xml\"><rule from=\"^http:\" to=\"https:\"/></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=\"Anker\" default_off=\"expired\" f=\"Anker.xml\"><securecookie host=\"^anker\\.to$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ann Summers.com (partial)\" 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.co\" f=\"Anon-IB.co.xml\"><securecookie host=\"^\\.anon-ib\\.co$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Anon-IB.com\" f=\"Anon-IB.com.xml\"><securecookie host=\"^\\.anon-ib\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Anon-IB.la\" f=\"Anon-IB.la.xml\"><securecookie host=\"^\\.anon-ib\\.la$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Anon-IB.net\" f=\"Anon-IB.net.xml\"><securecookie host=\"^\\.anon-ib\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Anon-IB.ru\" f=\"Anon-IB.ru.xml\"><securecookie host=\"^\\.anon-ib\\.ru$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Anon-IB.su\" f=\"Anon-IB.su.xml\"><securecookie host=\"^\\.anon-ib\\.su$\" 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\" 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\" f=\"Anonabox.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"anonbox.net\" platform=\"cacert\" f=\"Anonbox.net.xml\"><rule from=\"^http://www\\.anonbox\\.net/\" to=\"https://anonbox.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Anonine.com\" f=\"Anonine.com.xml\"><securecookie host=\"^(?:www\\.)?anonine\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?anonine\\.com/\" to=\"https://anonine.com/\"/></ruleset>", "<ruleset name=\"AnonySurfer.com\" 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=\"connection dropped\" 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=\"Anquanbao.com\" f=\"Anquanbao.com.xml\"><rule from=\"^http://(?:www\\.)?anquanbao\\.com/\" to=\"https://www.anquanbao.com/\"/></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)\" 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=\"Antizapret.info\" f=\"Antizapret.info.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Antok.co\" default_off=\"missing certificate chain\" f=\"Antok.co.xml\"><securecookie host=\"^\\.antok\\.co$\" name=\".+\"/><rule from=\"^http://www\\.antok\\.co/\" to=\"https://antok.co/\"/><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)\" 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\" f=\"Anybalance.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Anybeat\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Anybeat.com.xml\"><rule from=\"^http://(?:www\\.)?anybeat\\.com/\" to=\"https://www.anybeat.com/\"/></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\" f=\"Anyproz.xml\"><securecookie host=\"^www\\.anonyproz\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Anzen.org.uk\" default_off=\"failed ruleset test\" f=\"Anzen.org.uk.xml\"><securecookie host=\"^(?:w*\\.)?anzen\\.org\\.uk$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ao2.it (CAcert)\" platform=\"cacert\" default_off=\"failed ruleset test\" f=\"Ao2.it.xml\"><securecookie host=\"(?:.*\\.)ao2\\.it$\" name=\".*\"/><rule from=\"^http://(www\\.)?ao2\\.it/\" to=\"https://$1.ao2.it/\"/></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://(?:ci|feathercast|git|ooo-forums|vmgump)\\.apache\\.org/\"/><exclusion pattern=\"^http://(?:activemq|aries|attic|geronimo|helix|jackrabbit|lucy|oodt|santuario|tuscany)\\.apache\\.org/+(?!css/|favicon\\.ico|images/|oodt\\.css|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\" f=\"Aphyr.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"api.sh\" default_off=\"failed ruleset test\" f=\"Api.sh.xml\"><securecookie host=\"^\\.?api\\.sh$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?api\\.sh/\" to=\"https://api.sh/\"/></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\" f=\"Apkmirror.com.xml\"><securecookie host=\"^(www\\.)?apkmirror\\.com\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Apna India\" 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=\"App.net\" f=\"App.net.xml\"><securecookie host=\"^(?:(?:account|alpha|\\.?join|www)\\.)?app\\.net$\" name=\".+\"/><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\" 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=\"AppHarbor.com\" f=\"AppHarbor.com.xml\"><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=\"AppNexus.com (partial)\" 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)\" default_off=\"failed ruleset test\" 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=\"Appcelerator.com (partial)\" 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\" f=\"Appie_Hein.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Appinn (partial)\" f=\"Appinn.xml\"><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 (false MCB)\" platform=\"mixedcontent\" f=\"Apple-falsemixed.xml\"><securecookie host=\"^support\\.apple\\.com$\" name=\".+\"/><rule from=\"^http://support\\.apple\\.com/\" to=\"https://support.apple.com/\"/></ruleset>", "<ruleset name=\"Apple (mismatches)\" default_off=\"Akamai certificate\" f=\"Apple-mismatches.xml\"><rule from=\"^http://a\\d+\\.phobos\\.apple\\.com/\" to=\"https://a1.mzstatic.com/\"/><rule from=\"^http://(adcdownload|www\\.info|static-mynews|trailers)\\.apple\\.com/\" to=\"https://$1.apple.com/\"/><rule from=\"^http://(r\\d|store)\\.mzstatic\\.com/\" to=\"https://$1.mzstatic.com/\"/></ruleset>", "<ruleset name=\"Apple.com (partial)\" f=\"Apple.xml\"><exclusion pattern=\"^http://concierge\\.apple\\.com/(?!resources/)\"/><exclusion pattern=\"^http://store\\.apple\\.com/(?!$|Catalog/|[\\w/]+/css/|rs/)\"/><exclusion pattern=\"^http://trailers\\.apple\\.com/(?!(?:app/*|.+\\.(?:css|gif|jpg|png|svg))(?:$|\\?))\"/><exclusion pattern=\"^https://trailers\\.apple\\.com/(?:app/*|.+\\.(?:css|gif|jpg|png|svg|xml))(?:$|\\?)\"/><exclusion pattern=\"^http://www\\.apple\\.com/(?:\\w\\w/)?shop(?:$|[?/])\"/><exclusion pattern=\"^http://www\\.apple\\.com/apple-events/\"/><securecookie host=\"^\\.apple\\.com$\" name=\"^s_.+$\"/><securecookie host=\"^(?!\\.?(?:concierge|store|www)\\.apple\\.com).+\\.apple\\.com$\" name=\".+\"/><rule from=\"^http://devimages\\.apple\\.com/\" to=\"https://devimages.apple.com.edgekey.net/\"/><rule from=\"^http://images\\.apple\\.com/\" to=\"https://ssl.apple.com/\"/><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://www\\.opensource\\.apple\\.com/\" to=\"https://opensource.apple.com/\"/><rule from=\"^http://storeimages\\.apple\\.com/\" to=\"https://storeimages.apple.com.edgekey.net/\"/><rule from=\"^http:\" to=\"https:\"/><rule from=\"^https://trailers\\.apple\\.com/\" to=\"http://trailers.apple.com/\" downgrade=\"1\"/></ruleset>", "<ruleset name=\"Apple CDN buckets\" f=\"Apple_CDN_buckets.xml\"><exclusion pattern=\"^http://a772\\.g\\.akamai\\.net/(?!7/772/51/ef865529940b9e/www\\.apple\\.com/)\"/><rule from=\"^http://ax\\.phobos\\.apple\\.com\\.edgesuite\\.net/\" to=\"https://s.mzstatic.com/\"/></ruleset>", "<ruleset name=\"Apple.com.cn\" default_off=\"mismatched\" f=\"Apple_China.xml\"><rule from=\"^http://apple\\.com\\.cn/\" to=\"https://www.apple.com.cn/\"/><rule from=\"^http:\" to=\"https:\"/></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://app\\.applyyourself\\.com/\" to=\"https://app.applyyourself.com/\"/></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\" 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=\"Apress.com\" 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\" platform=\"mixedcontent\" f=\"April.org.xml\"><securecookie host=\"^.*\\.april\\.org$\" name=\".+\"/><rule from=\"^http://([^/:@]+\\.)?april\\.org/\" to=\"https://$1april.org/\"/></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\" 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\" 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\" default_off=\"failed ruleset test\" f=\"Arachnys.xml\"><securecookie host=\"^(?:app)?\\.arachnys\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Aral Balkan.com\" 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\" 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=\"Arch Linux.org\" f=\"Arch.xml\"><securecookie host=\".\" 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.moe\" f=\"Archive.moe.xml\"><securecookie host=\"^archive\\.moe$\" name=\".+\"/><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=\"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://id\\.arduino\\.cc/\" to=\"https://id.arduino.cc/\"/></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\" 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://webmail\\.argewebhosting\\.nl/\" to=\"https://webmail.argewebhosting.nl/\"/></ruleset>", "<ruleset name=\"Argonit.cz\" default_off=\"mismatched\" f=\"Argonit.cz.xml\"><securecookie host=\"(?:.+\\.)?argonit\\.cz$\" name=\".+\"/><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=\"mismatch\" 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\" default_off=\"failed ruleset test\" 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=\"mismatch\" f=\"Argyle-Social-mismatches.xml\"><rule from=\"^http://www2\\.argylesocial\\.com/\" to=\"https://www2.argylesocial.com/\"/></ruleset>", "<ruleset name=\"Argyle Social (partial)\" default_off=\"failed ruleset test\" f=\"Argyle-Social.xml\"><rule from=\"^http://goals\\.ar\\.gy/\" to=\"https://goals.ar.gy/\"/></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=\"connection refused\" f=\"Arisebitcoin.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Arizona State University (partial)\" 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\" f=\"ArkOS.io.xml\"><securecookie host=\"^bbs\\.arkos\\.io$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Arkane Studios\" default_off=\"mismatch\" 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=\"ArmA 3 (Partial)\" default_off=\"Bad Cert\" f=\"Arma3.com.xml\"><rule from=\"^http://(?:www\\.)?arma3\\.com/\" to=\"https://www.arma3.com/\"/><rule from=\"^http://(?:www\\.)?(?:feedback\\.|dev\\.)?arma3\\.com/\" to=\"https://feedback.arma3.com/\"/></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\" 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://content\\.azorus\\.com/\" to=\"https://content.azorus.com/\"/></ruleset>", "<ruleset name=\"arpxs.com\" 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\" 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)\" f=\"Ars-Technica.xml\"><exclusion pattern=\"^http://(?:www\\.)?arstechnica\\.com/(?!ads/|civis/ucp\\.php|favicon\\.ico|public-shared/|services/incr\\.php|subscriptions(?:$|[?/])|wp-content/)\"/><securecookie host=\"^\\.arstechnica\\.com$\" name=\"^(?:mbox|s_\\w+|timeSpent|__utm\\w)$\"/><rule from=\"^http://ars\\.to/\" to=\"https://bit.ly/\"/><rule from=\"^http://((?:cms|coins|hq|www)\\.)?arstechnica\\.com/\" to=\"https://$1arstechnica.com/\"/><rule from=\"^http://feeds\\.arstechnica\\.com/(?:\\?.*)?$\" to=\"https://feedburner.google.com/fb/a/home\"/><rule from=\"^http://stats2\\.arstechnica\\.com/\" to=\"https://condenast.112.2o7.net/\"/><rule from=\"^http://api\\.arstechnica\\.net/\" to=\"https://api.arstechnica.net/\"/><rule from=\"^http://(?:(?:media|origin)\\.arstechnica\\.com|(?:cdn|static)\\.arstechnica\\.net)/\" to=\"https://cdn.arstechnica.net/\"/></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)\" 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=\"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\" 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\" 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=\"ArturKim (partial)\" default_off=\"mismatch\" f=\"ArturKim.xml\"><rule from=\"^http://(?:www\\.)?arturkim\\.com/wp-content/\" to=\"https://arturkim.com/wp-content/\"/></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=\"arvm.de\" default_off=\"failed ruleset test\" f=\"Arvm.de.xml\"><rule from=\"^http://i\\.arvm\\.de/\" to=\"https://i.arvm.de/\"/></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 (partial)\" f=\"Asana.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://connect\\.asana\\.com/\" to=\"https://t.trackedlink.net/\"/><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)\" default_off=\"failed ruleset test\" 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)\" 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://portal\\.ascio\\.com/\" to=\"https://portal.ascio.com/\"/></ruleset>", "<ruleset name=\"Asecus\" f=\"Asecus.xml\"><securecookie host=\"^asecus\\.ch$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ashampoo.com (partial)\" f=\"Ashampoo.com.xml\"><securecookie host=\"^(?:.+\\.)?ashampoo\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Asheville Citizen-Times\" default_off=\"failed ruleset test\" 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)\" default_off=\"failed ruleset test\" 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=\"mismatch\" 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=\"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\" default_off=\"failed ruleset test\" 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=\"connection dropped\" 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)\" 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 for Psychological Science\" f=\"Association_for_Psychological_Science.xml\"><securecookie host=\"^.+\\.psychologicalscience\\.org$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?psychologicalscience\\.org/\" to=\"https://www.psychologicalscience.org/\"/><rule from=\"^http://aps\\.psychologicalscience\\.org/\" to=\"https://aps.psychologicalscience.org/\"/></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\" 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://tienda\\.astrocentro\\.com/\" to=\"https://tienda.astrocentro.com/\"/></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)\" 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=\"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=\"atipso.com\" default_off=\"failed ruleset test\" 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 (partial)\" default_off=\"failed ruleset test\" f=\"Ativismo.org.br.xml\"><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 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)\\.atlassian\\.com/\"/><exclusion pattern=\"^http://(?:.+\\.(?:ams|dyn\\.syd|inf|internal|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)\" default_off=\"md5, self-signed\" f=\"Atlatszo.hu.xml\"><securecookie host=\"^www\\.atlatszo\\.hu$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?atlatszo\\.hu/\" to=\"https://www.atlatszo.hu/\"/></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\" default_off=\"self-signed\" f=\"Atomic-Insights.xml\"><securecookie host=\"^atomicinsights\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?atomicinsights\\.com/\" to=\"https://atomicinsights.com/\"/></ruleset>", "<ruleset name=\"Atomic Object.com (partial)\" 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)\" f=\"Attachmate-Group.xml\"><securecookie host=\"^(?:esp|login)\\.attachmategroup\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Attachmate.com (partial)\" 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\" 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\" f=\"Auctionbunker.xml\"><securecookie host=\"^(?:w*\\.)?auctionbunker\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"auctionthing.net\" default_off=\"failed ruleset test\" 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\" default_off=\"failed ruleset test\" 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\" default_off=\"failed ruleset test\" 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\" 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=\"Audience-Discovery.com\" default_off=\"failed ruleset test\" f=\"Audience-Discovery.com.xml\"><securecookie host=\"^(?:w*\\.)?audience-discovery\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></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=\"mismatch\" 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\" 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)\" 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=\"Auditorius.ru\" default_off=\"expired, mismatched\" f=\"Auditorius.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Audtd.com (partial)\" f=\"Audtd.com.xml\"><securecookie host=\"^\\.audtd\\.com$\" name=\".+\"/><rule from=\"^http://audtd\\.com/\" to=\"https://auditorius.ru/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Audubon.org\" 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)\" default_off=\"failed ruleset test\" f=\"Aufbix.org.xml\"><securecookie host=\"^hydra\\.aufbix\\.org$\" name=\".+\"/><rule from=\"^http://hydra\\.aufbix\\.org/\" to=\"https://hydra.aufbix.org/\"/></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=\"aunggo.com\" default_off=\"failed ruleset test\" f=\"Aunggo.com.xml\"><rule from=\"^http://tracking\\.aunggo\\.com/\" to=\"https://gunggo.go2cloud.org/\"/></ruleset>", "<ruleset name=\"Auphonic.com\" f=\"Auphonic.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Aurous.me (partial)\" 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\" f=\"AustraliaUNSC.xml\"><rule from=\"^http://(?:www\\.)?australia-unsc\\.gov\\.au/\" to=\"https://australia-unsc.gov.au/\"/></ruleset>", "<ruleset name=\"Australian Koala Foundation\" default_off=\"failed ruleset test\" f=\"Australian-Koala-Foundation.xml\"><rule from=\"^http://(?:www\\.)?savethekoala\\.com/\" to=\"https://www.savethekoala.com/\"/></ruleset>", "<ruleset name=\"Australian Antarctic Data Centre\" default_off=\"failed ruleset test\" 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\" f=\"AustralianCrimeCommission.xml\"><rule from=\"^http://(?:www\\.)?crimecommission\\.gov\\.au/\" to=\"https://www.crimecommission.gov.au/\"/></ruleset>", "<ruleset name=\"Australian Data Archive\" 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\" 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\" default_off=\"failed ruleset test\" 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\" 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\" default_off=\"failed ruleset test\" 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=\"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\" 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)\" default_off=\"failed ruleset test\" 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\" 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 &amp; Accessories\" default_off=\"failed ruleset test\" f=\"Auto_Rims_and_Accessories.xml\"><securecookie host=\"^(?:.*\\.)?autorimsandaccessories\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Auto VPS.net\" default_off=\"failed ruleset test\" f=\"Auto_VPS.net.xml\"><securecookie host=\"^\\.www\\.autovps\\.net$\" 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=\"Automatak.net\" default_off=\"failed ruleset test\" f=\"Automatak.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Automatic Data Processing (partial)\" default_off=\"failed ruleset test\" 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&amp;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=\"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://(?:www\\.)?autotools\\.io/\" to=\"https://autotools.io/\"/></ruleset>", "<ruleset name=\"av18mov.com\" default_off=\"failed ruleset test\" f=\"Av18mov.com.xml\"><securecookie host=\"^(?:w*\\.)?av18mov\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AvaDomains.com\" default_off=\"expired\" f=\"AvaDomains.com.xml\"><rule from=\"^http://(?:www\\.)?avadomains\\.com/\" to=\"https://www.avadomains.com/\"/></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=\"Avaaz.org\" f=\"Avaaz.xml\"><securecookie host=\"^\\.avaaz\\.org$\" 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\"><securecookie host=\"^\\.\" name=\"^s_vi$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://an\\.avast\\.com/\" to=\"https://avast-co-jp-ldc.d3.sc.omtrdc.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AvatarPicker.com\" f=\"AvatarPicker.com.xml\"><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=\"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\" 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&#228;&#246;nv&#228;lineet\" default_off=\"failed ruleset test\" 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\" f=\"Avonmaquiagem.com.br.xml\"><securecookie host=\"^(?:w*\\.)?avonmaquiagem\\.com\\.br$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Avropa.se\" default_off=\"failed ruleset test\" f=\"Avropa.se.xml\"><rule from=\"^http://www\\.avropa\\.se/\" to=\"https://www.avropa.se/\"/><rule from=\"^http://avropa\\.se/\" to=\"https://avropa.se/\"/></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=\"awe.sm (partial)\" 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=\"mismatch\" 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\" default_off=\"self-signed\" f=\"Axel_Simon.net.xml\"><securecookie host=\"^axelsimon\\.net$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?axelsimon\\.net/\" to=\"https://axelsimon.net/\"/></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)\" default_off=\"failed ruleset test\" 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 (partial)\" f=\"Axonify.xml\"><rule from=\"^http://cdn\\.axonify\\.com/\" to=\"https://cdn.axonify.com/\"/></ruleset>", "<ruleset name=\"Axonix.com (partial)\" f=\"Axonix.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Axosoft.com\" 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=\"Azingsport.se\" default_off=\"failed ruleset test\" f=\"Azingsport.se.xml\"><rule from=\"^http://www\\.azingsport\\.se/\" to=\"https://www.azingsport.se/\"/><rule from=\"^http://azingsport\\.se/\" to=\"https://azingsport.se/\"/></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\" 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)\" default_off=\"failed ruleset test\" 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://ssl\\.bbc\\.com/\" to=\"https://ssl.bbc.com/\"/></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=\"mismatch\" 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\" f=\"BECU.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BEL Solution\" default_off=\"self-signed\" f=\"BEL-Solutions.xml\"><rule from=\"^http://(?:www\\.|zeus\\.)?bel\\.fi/\" to=\"https://zeus.bel.fi/\"/></ruleset>", "<ruleset name=\"BEM.info\" 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\" 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)\" 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\" default_off=\"failed ruleset test\" 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\" 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=\"BMW China Custom Login\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"BMW-China-Custom-Login.xml\"><securecookie host=\"^.*\\.cardealerstudy\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?cardealerstudy\\.com/\" to=\"https://www.cardealerstudy.com/\"/></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\" default_off=\"failed ruleset test\" f=\"BOE.xml\"><rule from=\"^http://boe\\.es/\" to=\"https://www.boe.es/\"/><rule from=\"^http://([^/:@\\.]+)\\.boe\\.es/\" to=\"https://$1.boe.es/\"/></ruleset>", "<ruleset name=\"BoF.nl\" f=\"BOF.nl.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BPS (partial)\" default_off=\"failed ruleset test\" f=\"BPS.xml\"><rule from=\"^http://(?:www\\.)?bps\\.org\\.uk/sites/default/(files/cs|theme)s/\" to=\"https://www.bps.org.uk/sites/default/$1s/\"/><rule from=\"^http://login\\.bps\\.org\\.uk/\" to=\"https://login.bps.org.uk/\"/><rule from=\"^http://(?:www\\.)?bpsshop\\.org\\.uk/((?:App_Theme|Asset|image)s/|login\\.aspx)\" to=\"https://www.bpsshop.org.uk/$1\"/></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=\"mismatch\" 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\" 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\" 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)\" 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=\"BTC-E.com\" f=\"BTC-E.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BTC-Trade.ru\" default_off=\"failed ruleset test\" f=\"BTC-Trade.ru.xml\"><securecookie host=\"^\\.btc-trade\\.ru$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?btc-trade\\.ru/\" to=\"https://www.btc-trade.ru/\"/></ruleset>", "<ruleset name=\"BTC.Diet\" f=\"BTC.Diet.xml\"><securecookie host=\"^\\.btc\\.diet$\" name=\".+\"/><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\" 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\" 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\" default_off=\"failed ruleset test\" 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\" f=\"BTunnel.xml\"><securecookie host=\"^(?:.+\\.)?btunnel\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?btunnel\\.com/\" to=\"https://btunnel.com/\"/></ruleset>", "<ruleset name=\"BVG.de\" 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=\"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\" default_off=\"failed ruleset test\" 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\" default_off=\"expired\" f=\"BabelZilla.xml\"><securecookie host=\"^\\.?babelzilla\\.org$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?babelzilla\\.org/\" to=\"https://babelzilla.org/\"/></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=\"Backed.io\" f=\"Backed.io.xml\"><securecookie host=\"^www\\.backed\\.io$\" name=\".+\"/><rule from=\"^http://backed\\.io/\" to=\"https://www.backed.io/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Backlift.com\" default_off=\"failed ruleset test\" f=\"Backlift.com.xml\"><securecookie host=\"^(?:\\w+\\.)?backlift\\.com$\" name=\".+\"/><rule from=\"^http://((?:blog|docs|www)\\.)?backlift\\.com/\" to=\"https://$1backlift.com/\"/></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\" 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=\"Badongo (partial)\" default_off=\"failed ruleset test\" f=\"Badongo.xml\"><rule from=\"^http://(?:www\\.)?badongo\\.com/(inc/|(?:imag|styl)es/|login)\" to=\"https://www.badongo.com/$1\"/><rule from=\"^http://cdn\\d\\w\\.badongo\\.com/\\w{1,6}/(imag|styl)es/\" to=\"https://www.badongo.com/$1es/\"/></ruleset>", "<ruleset name=\"Badoo.com\" f=\"Badoo.com.xml\"><rule from=\"^http://www\\.badoo\\.com/\" to=\"https://www.badoo.com/\"/><rule from=\"^http://badoo\\.com/\" to=\"https://www.badoo.com/\"/></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)\" 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\" 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\"><exclusion pattern=\"^http://downpack\\.baidu\\.com/$\"/><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://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 avaiable in China\" f=\"Baidu_CN.xml\"><rule from=\"^http://baike\\.bdimg\\.com/static/wiki-\" to=\"https://baike.bdimg.com/static/wiki-\"/><rule from=\"^http://baike\\.bdimg\\.com/static/usercenter/images/growuptask/task2/flash/(\\w+)\\.swf\" to=\"https://baike.bdimg.com/static/usercenter/images/growuptask/task2/flash/$1.swf\"/><rule from=\"^http://baike\\.bdimg\\.com/cms/static/cooperation/(\\w+)\\.pdf\" to=\"https://baike.bdimg.com/cms/static/cooperation/$1.pdf\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Baidupcs.com\" f=\"Baidupcs.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Baifubao.com (partial)\" f=\"Baifubao.com.xml\"><rule from=\"^http://baifubao\\.com/\" to=\"https://www.baifubao.com/\"/><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\" 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\" 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\" default_off=\"failed ruleset test\" 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=\"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=\"BandPass.me\" default_off=\"connection dropped\" f=\"BandPass.me.xml\"><rule from=\"^http://(?:www\\.)?bandpass\\.me/\" to=\"https://bandpass.me/\"/></ruleset>", "<ruleset name=\"Bandcamp\" f=\"Bandcamp.xml\"><exclusion pattern=\"^http://blog\\.\"/><securecookie host=\"^\\.bandcamp\\.com$\" name=\".+\"/><rule from=\"^http://([\\w-]+\\.)?bandcamp\\.com/\" to=\"https://$1bandcamp.com/\"/><rule from=\"^http://(www\\.)?bandcamp\\.mu/\" to=\"https://$1bandcamp.com/\"/><rule from=\"^http://(f|s)0\\.bcbits\\.com/\" to=\"https://$10.bcbits.com/\"/></ruleset>", "<ruleset name=\"Bandinelli.net\" f=\"Bandinelli.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bandisoft\" 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 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\" f=\"Banking.co.at.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bankinter.com\" f=\"Bankinter.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BankofAmerica.com (buggy)\" default_off=\"breaks some URLs\" f=\"BankofAmerica.com-problematic.xml\"><rule from=\"^http://(?:www\\.)?bankofamerica\\.com/\" to=\"https://www.bankofamerica.com/\"/></ruleset>", "<ruleset name=\"BankofAmerica.com (partial)\" f=\"BankofAmerica.xml\"><rule from=\"^http://webmedia\\.bankofamerica\\.com/\" to=\"https://webmedia.bankofamerica.com/\"/></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\" 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\" default_off=\"failed ruleset test\" 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\" 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\" 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\" 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)\" default_off=\"failed ruleset test\" 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=\"Bargains 4 Business\" default_off=\"connection 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\" 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)\" 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\" default_off=\"failed ruleset test\" 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\" default_off=\"failed ruleset test\" 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\" f=\"Bart.gov.xml\"><rule from=\"^http://(www\\.)?bart\\.gov/\" to=\"https://www.bart.gov/\"/></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\" default_off=\"untrusted root\" f=\"Barvaux.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Base INC!\" default_off=\"failed ruleset test\" f=\"Base_INC.xml\"><securecookie host=\"^(?:www)?\\.base-valid\\.com$\" name=\".+\"/><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)\" 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\" 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\" default_off=\"failed ruleset test\" 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\" default_off=\"failed ruleset test\" 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\" f=\"BayLeaks.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BayLibre.com\" 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\" 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=\"Bayden.com\" f=\"Bayden.com.xml\"><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=\"mismatch\" f=\"Bazaarvoice-problematic.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bazaarvoice.com (partial)\" 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=\"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\" default_off=\"failed ruleset test\" 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://www\\.bbcshop\\.com/\" to=\"https://www.bbcshop.com/\"/></ruleset>", "<ruleset name=\"bbelements.com (partial)\" 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)\" default_off=\"failed ruleset test\" 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=\"bcobandits.com\" default_off=\"failed ruleset test\" f=\"Bcobandits.com.xml\"><securecookie host=\"^\\.bcobandits\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bcove.me\" f=\"Bcove.me.xml\"><rule from=\"^http://bcove\\.me/\" to=\"https://bcove.me/\"/></ruleset>", "<ruleset name=\"Bdimg.com (partial)\" f=\"Bdimg.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bdone.hu\" default_off=\"failed ruleset test\" f=\"Bdone.hu.xml\"><rule from=\"^http://(?:www\\.)?bdone\\.hu/\" to=\"https://www.bdone.hu/\"/></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\" 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=\"Beacon Reader.com\" f=\"Beacon_Reader.com.xml\"><securecookie host=\"^www\\.beaconreader\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?beaconreader\\.com/\" to=\"https://www.beaconreader.com/\"/></ruleset>", "<ruleset name=\"Beagle Street (partial)\" f=\"Beagle_Street.xml\"><securecookie host=\"^quotes\\.beaglestreet\\.com$\" name=\".+\"/><rule from=\"^http://quotes\\.beaglestreet\\.com/\" to=\"https://quotes.beaglestreet.com/\"/></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://app\\.beanstalkdata\\.com/\" to=\"https://app.beanstalkdata.com/\"/></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\" 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)\" f=\"BeautifulDecay.com.xml\"><securecookie host=\"^\\.beautifuldecay\\.com$\" 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=\"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\" 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://www\\.belspo\\.be/\" to=\"https://www.belspo.be/\"/></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\" default_off=\"failed ruleset test\" 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)\" default_off=\"failed ruleset test\" 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\" default_off=\"failed ruleset test\" 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=\"Berkeley Chess School (partial)\" default_off=\"404\" f=\"Berkely-Chess-School.xml\"><securecookie host=\"^(?:.*\\.)?berkeleychessschool\\.org$\" name=\".*\"/><rule from=\"^http://(www\\.)?berkeleychessschool\\.org/(imgs|images|stylesheets)/\" to=\"https://$1berkeleychessschool.org/$2/\"/></ruleset>", "<ruleset name=\"Berklee College of Music\" f=\"Berklee.edu.xml\"><rule from=\"^http://apply\\.berklee\\.edu/\" to=\"https://apply.berklee.edu/\"/></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&amp;=]+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=\"self-signed\" f=\"BerliOS.xml\"><securecookie host=\"^.+\\.berlios\\.de$\" name=\".*\"/><rule from=\"^http://([^/:@\\.]+)\\.berlios\\.de/\" to=\"https://$1.berlios.de/\"/></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\" default_off=\"http redirect\" f=\"Berlin.de.xml\"><exclusion pattern=\"^http://action\\.berlin\\.de/\"/><exclusion pattern=\"^http://daten\\.berlin\\.de/\"/><rule from=\"^http://berlin\\.de/\" to=\"https://www.berlin.de/\"/><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://(www|boss)\\.berlinonline\\.de/\" to=\"https://$1.berlinonline.de/\"/><rule from=\"^http://berlinonline\\.de/\" to=\"https://www.berlinonline.de/\"/><securecookie host=\"^boss\\.berlinonline\\.de\" name=\".*\"/><securecookie host=\"www\\.berlinonline\\.de\" 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=\"berniw.org\" default_off=\"mismatch\" 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\" default_off=\"failed ruleset test\" 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=\"mismatch\" 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=\"bestmx.ru (partial)\" default_off=\"self-signed\" f=\"Bestmx.ru.xml\"><rule from=\"^http://mail\\.bestmx\\.ru/\" to=\"https://mail.bestmx.ru/\"/></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\" f=\"BetCoin.tm.xml\"><securecookie host=\"^(?:luck|www)?\\.betcoin\\.tm$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Beta &amp; Cie (mismatches)\" default_off=\"mismatch\" f=\"Beta-and-Cie-mismatches.xml\"><rule from=\"^http://img\\.tweetimag\\.es/\" to=\"https://img.tweetimag.es/\"/></ruleset>", "<ruleset name=\"Beta &amp; 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=\"Betabeat.com\" default_off=\"failed ruleset test\" f=\"Betabeat.com.xml\"><securecookie host=\"^\\.betabeat\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></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\" default_off=\"failed ruleset test\" 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=\"mismatches\" 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=\"BetterCrypto.org\" f=\"BetterCrypto.org.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\" 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)\" 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=\"BhodiSoft.com\" f=\"BhodiSoft.com.xml\"><securecookie host=\"^\\.bhodisoft\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></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\" default_off=\"failed ruleset test\" 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\" 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\" 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\" f=\"Bidtellect.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bidz.com (partial)\" default_off=\"connection 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\" f=\"BigV.io.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Big Brother.se (partial)\" 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\" 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://api\\.sso\\.biglobe\\.ne\\.jp/\" to=\"https://api.sso.biglobe.ne.jp/\"/></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)\" 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 (partial)\" f=\"Bigstock.xml\"><exclusion pattern=\"^http://(?:www\\.)?bigstockphoto\\.com/(?!(?:cart|login|subscribe)(?:$|\\?|/)|css/|files/|images/|javascript/|js_translation/|serverside/login\\.php|thumbs/)\"/><securecookie host=\"^\\.bigstockimages\\.com$\" name=\".+\"/><rule from=\"^http://(www\\.)?bigstockimages\\.com/\" to=\"https://$1bigstockimages.com/\"/><rule from=\"^http://(?:static\\d*\\.|(www\\.))?bigstockphoto\\.com/\" to=\"https://$1bigstockphoto.com/\"/><rule from=\"^http://help\\.bigstockphoto\\.com/(generated|system)/\" to=\"https://assets.zendesk.com/$1/\"/></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\" 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://www\\.bike24\\.com/\" to=\"https://www.bike24.com/\"/></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\" 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=\"Bilibili.com (partial)\" f=\"Bilibili.com.xml\"><exclusion pattern=\"^http://api\\.bilibili\\.com/$\"/><exclusion pattern=\"^http://data\\.bilibili\\.com/$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bilio.com (partial)\" 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\" 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)\" 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\" f=\"Billund.dk.xml\"><securecookie host=\"^\\.?billund\\.dk$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Billy Creative\" default_off=\"mismatch\" 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=\"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:\" 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\" default_off=\"expired, mismatched, self-signed\" f=\"BioInfo.pl.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BioInfoBank.com\" default_off=\"mismatched, self-signed\" f=\"BioInfoBank.com.xml\"><rule from=\"^http://(?:www\\.)?bioinfobank\\.com/\" to=\"https://bioinfo.pl/\"/></ruleset>", "<ruleset name=\"BioMed Central (false MCB)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"BioMed-Central.xml\"><securecookie host=\"^(?:.*\\.)?biomedcentral\\.com$\" name=\".+\"/><rule from=\"^http://(?:w\\d\\d\\.|(www\\.))?biomedcentral\\.com/\" to=\"https://$1biomedcentral.com/\"/><rule from=\"^http://oas\\.biomedcentral\\.com/\" to=\"https://oasc-eu1.247realmedia.com/\"/></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=\"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=\"mismatches\" 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\" 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=\"Bitcoin.org\" f=\"BitCoin.xml\"><rule from=\"^http://forum\\.bitcoin\\.org/\" to=\"https://bitcointalk.org/\"/><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://dashboard\\.bitgravity\\.com/\" to=\"https://dashboard.bitgravity.com/\"/></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=\"mismatch\" 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\" 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\" 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)\" f=\"BitTorrent.xml\"><exclusion pattern=\"^http://live\\.bittorrent\\.com/(?!create|css/|img/|js/|login|styles/)\"/><securecookie host=\"^forum\\.bittorrent\\.com$\" name=\".+\"/><rule from=\"^http://(forum|live|remote|torque)\\.bittorrent\\.com/\" to=\"https://$1.bittorrent.com/\"/></ruleset>", "<ruleset name=\"BitVC.com\" 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\" f=\"BitYes.com.xml\"><securecookie host=\"^\\.bityes\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bit Stampede.com\" default_off=\"failed ruleset test\" 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)\" 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&#246;rse\" default_off=\"connection 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=\"expired\" platform=\"cacert\" f=\"Bitcoin-Contact.org.xml\"><securecookie host=\"^bitcoin-contact\\.org$\" name=\".+\"/><rule from=\"^http://www\\.bitcoin-contact\\.org/\" to=\"https://bitcoin-contact.org/\"/><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.com\" f=\"Bitcoin.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bitcoin.pl (partial)\" 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 (CAcert)\" platform=\"cacert\" f=\"Bitcoin_Charts.com-cacert.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bitcoin Charts.com (partial)\" f=\"Bitcoin_Charts.xml\"><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\" 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=\"Bitcoins il.co.il (false MCB)\" platform=\"mixedcontent\" f=\"Bitcoinsil.co.il.xml\"><securecookie host=\"^\\.bitcoinsil\\.co\\.il$\" 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\" 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\" 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=\"mismatch\" 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=\"Bitex.la\" f=\"Bitex.la.xml\"><securecookie host=\"^\\.?bitex\\.la$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"bitfetch\" default_off=\"mismatch\" f=\"Bitfetch.xml\"><securecookie host=\"^(?:www\\.)?bitfetch\\.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=\"bitGamer\" default_off=\"failed ruleset test\" f=\"Bitgamer.xml\"><rule from=\"^http://(?:www\\.)?bitgamer\\.su/\" to=\"https://bitgamer.su/\"/><rule from=\"^http://(?:www\\.)?bitgamer\\.com/\" to=\"https://bitgamer.su/\"/></ruleset>", "<ruleset name=\"Bitin.io\" f=\"Bitin.io.xml\"><securecookie host=\"^\\.bitin\\.io$\" name=\"^__cfduid$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bitinvest.com.br (partial)\" 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)\" 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\" f=\"Bitmask.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bitmazk.com\" f=\"Bitmazk.com.xml\"><securecookie host=\"^bitmazk\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bitme.com\" f=\"Bitme.com.xml\"><securecookie host=\"^\\.bitme\\.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://getaddr\\.bitnodes\\.io/\" to=\"https://getaddr.bitnodes.io/\"/></ruleset>", "<ruleset name=\"Bitrig\" f=\"Bitrig.xml\"><securecookie host=\"^(?:www\\.)?bitrig\\.org$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"bits.media (partial)\" 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\" f=\"Bitsnoop.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bitso.com\" 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://bittit\\.info/\" to=\"https://bittit.info/\"/></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=\"Bittorrenthub.me\" f=\"Bittorrenthub.me.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bittrex.com\" f=\"Bittrex.com.xml\"><securecookie host=\"^\\.bittrex\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bittylicious.com\" f=\"Bittylicious.com.xml\"><securecookie host=\"^\\.bittylicious\\.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=\"mismatch\" 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)\" 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\" default_off=\"self-signed\" f=\"BlackArch.org.xml\"><rule from=\"^http://www\\.blackarch\\.org/\" to=\"https://blackarch.org/\"/><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\" default_off=\"failed ruleset test\" 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\" f=\"BlackPearl_PDM.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BlackSuit IT.com\" default_off=\"failed ruleset test\" f=\"BlackSuit_IT.com.xml\"><securecookie host=\"^\\.blacksuitit\\.com$\" 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 Iron Beast.com\" f=\"Black_Iron_Beast.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Black Lotus\" f=\"Black_Lotus.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Black Phone.ch\" 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)\" 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\" 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/\"/><securecookie host=\"^\\.?blendle\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Blesk.sk (partial)\" default_off=\"failed ruleset test\" f=\"Blesk.sk.xml\"><rule from=\"^http://((?:horoskopy|img|isport|pocasi|prozeny|tv|tvprogram|wiki|www)\\.)?blesk\\.sk/\" to=\"https://$1blesk.sk/\"/></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)\" 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=\"Blicko.com (partial)\" default_off=\"expired\" f=\"Blicko.com.xml\"><exclusion pattern=\"^http://(?:cdn|www)\\.blicko\\.com/+(?![Cc]ontent/|favicon\\.ico)\"/><rule from=\"^http://cdn\\.blicko\\.com/\" to=\"https://www.blicko.com/\"/><rule from=\"^http:\" to=\"https:\"/></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=\"connection 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\" 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=\"BlockBuster UK\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"BlockBuster.xml\"><rule from=\"^http://(?:www\\.)?blockbuster\\.co\\.uk/\" to=\"https://www.blockbuster.co.uk/\"/></ruleset>", "<ruleset name=\"BlockExplorer.com\" f=\"BlockExplorer.com.xml\"><securecookie host=\"^\\.blockexplorer\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BlockExplorer.nu\" 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 Metrics.com\" default_off=\"shows another domain\" f=\"Block_Metrics.xml\"><securecookie host=\"^(?:www\\.)?blockmetrics\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Block Together.com\" default_off=\"failed ruleset test\" f=\"Block_Together.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Block Together.org\" 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\" f=\"Blockstream.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BlogCatalog\" default_off=\"failed ruleset test\" 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\" 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=\"Blogmark.me\" default_off=\"failed ruleset test\" f=\"Blogmark.me.xml\"><securecookie host=\"^(?:www\\.)?blogmark\\.me$\" name=\".+\"/><rule from=\"^http://(www\\.)?blogmark\\.me/\" to=\"https://$1blogmark.me/\"/><rule from=\"^http://blog\\.blogmark\\.me/\" to=\"https://blogmark.me/blog/\"/></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\" 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\" 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)\" 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\" 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=\"blosxom.com\" default_off=\"Certificate mismatch\" f=\"Blosxom.com.xml\"><rule from=\"^http://(?:www\\.)?blosxom\\.com/\" to=\"https://blosxom.com/\"/></ruleset>", "<ruleset name=\"Blot.im\" 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)\" 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\" f=\"BlueCoat.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BlueGenio.com\" default_off=\"shows default page\" f=\"BlueGenio.com.xml\"><securecookie host=\"^(?:www)?\\.bluegenio\\.com$\" name=\".+\"/><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=\"blueSSL.com\" f=\"BlueSSL.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><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)\" 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)\" 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\" 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=\"Bluenote.io\" f=\"Bluenote.io.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bluepoint.com.ph\" default_off=\"expired\" platform=\"cacert\" f=\"Bluepoint.com.ph.xml\"><securecookie host=\"^(?:mail|www)\\.bluepoint\\.com\\.ph$\" name=\".+\"/><rule from=\"^http://bluepoint\\.com\\.ph/\" to=\"https://www.bluepoint.com.ph/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bluetooth.org (partial)\" f=\"Bluetooth.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"HostCenter.com\" f=\"Bluewin-HostCenter.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bluewin.ch (partial)\" 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\" default_off=\"failed ruleset test\" 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=\"Bmibaby.com\" default_off=\"failed ruleset test\" f=\"Bmibaby.com.xml\"><rule from=\"^http://www\\.bmibaby\\.com/\" to=\"https://www.bmibaby.com/\"/></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\" f=\"Bnc4free.com-falsemixed.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"bnc4free.com (partial)\" f=\"Bnc4free.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BoCA.gov.tw\" 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\" 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)\" 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://groupwise\\.boell\\.de/\" to=\"https://groupwise.boell.de/\"/></ruleset>", "<ruleset name=\"B&#246;rse Frankfurt\" default_off=\"failed ruleset test\" 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\" default_off=\"failed ruleset test\" 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\" 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=\"BoneBlast.com (false MCB)\" platform=\"mixedcontent\" f=\"BoneBlast.com-falsemixed.xml\"><securecookie host=\"^\\.boneblast\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BoneBlast.com (partial)\" f=\"BoneBlast.com.xml\"><rule from=\"^http://(www\\.)?boneblast\\.com/(?=images/|landpage/img/|wp-content/|wp-includes/)\" to=\"https://$1boneblast.com/\"/></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=\"BookMyName\" f=\"BookMyName.xml\"><rule from=\"^http://(?:www\\.)?bookmyname\\.com/\" to=\"https://www.bookmyname.com/\"/></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\" f=\"Bookie.io.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Booking.com\" f=\"Booking.com.xml\"><exclusion pattern=\"^http://(?:(?!m\\.admin\\.booking\\.com/)(?:[^./]+\\.){2,}|(?:[^./]+\\.){3,})b(?:ooking|static)\\.com/\"/><exclusion pattern=\"^http://(?:blog|suite)\\.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=\"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\" default_off=\"failed ruleset test\" f=\"Bookworm.xml\"><securecookie host=\"^bookworm\\.oreilly\\.com$\" name=\".*\"/><rule from=\"^http://bookworm\\.oreilly\\.com/\" to=\"https://bookworm.oreilly.com/\"/></ruleset>", "<ruleset name=\"Boomads\" f=\"BoomAds.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Boomerang (partial)\" 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&#225;rsas&#225;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=\"mismatch\" 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 (false MCB)\" platform=\"mixedcontent\" f=\"Boston.com-falsemixed.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Boston.com (partial)\" f=\"Boston.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://deals\\.boston\\.com/+\" to=\"https://finds.boston.com/\"/><rule from=\"^http://weather\\.boston\\.com/\" to=\"https://www.boston.com/weather/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Boston Globe Media.com (false MCB)\" platform=\"mixedcontent\" f=\"Boston_Globe_Media.com-falsemixed.xml\"><rule from=\"^http://bostonglobemedia\\.com/\" to=\"https://www.bostonglobemedia.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Boston Globe Media.com (partial)\" f=\"Boston_Globe_Media.com.xml\"><exclusion pattern=\"^http://go\\.bostonglobemedia\\.com/+(?!l/)\"/><rule from=\"^http://go\\.bostonglobemedia\\.com/\" to=\"https://pi.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\" 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://boum\\.org/\" to=\"https://boum.org/\"/><rule from=\"^http://([^/:@\\.]+)\\.boum\\.org/\" to=\"https://$1.boum.org/\"/></ruleset>", "<ruleset name=\"Bounce.io\" 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://bouncebidder\\.com/\" to=\"https://bouncebidder.com/\"/></ruleset>", "<ruleset name=\"Bouncer Station.com\" default_off=\"failed ruleset test\" f=\"Bouncer_Station.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)\" 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 (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\" default_off=\"failed ruleset test\" 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\" 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://bpaste\\.net/\" to=\"https://bpaste.net/\"/></ruleset>", "<ruleset name=\"Brabysads.com (partial)\" default_off=\"connection 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://bradleyf\\.id\\.au/\" to=\"https://bradleyf.id.au/\"/></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\" 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\" default_off=\"failed ruleset test\" f=\"BrainyQuote.com.xml\"><securecookie host=\"^(?:www)?\\.brainyquote\\.com$\" name=\".+\"/><rule from=\"^http://((?:i|mobile|www)\\.)?brainyquote\\.com/\" to=\"https://$1brainyquote.com/\"/></ruleset>", "<ruleset name=\"Branch\" 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=\"mismatch\" 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=\"Brands.com.tw\" f=\"Brands.xml\"><securecookie host=\"^mall\\.brands\\.com\\.tw$\" name=\".+\"/><rule from=\"^http://mall\\.brands\\.com\\.tw/\" to=\"https://mall.brands.com.tw/\"/></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=\"Brashear.me\" f=\"Brashear.me.xml\"><rule from=\"^http://(www\\.)?brashear\\.me/\" to=\"https://brashear.me/\"/></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=\"mismatch\" 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)\" default_off=\"failed ruleset test\" 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://media1\\.break\\.com/\" to=\"https://media1.break.com/\"/></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=\"Bremer Bank\" 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\" 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=\"brevado\" default_off=\"failed ruleset test\" f=\"Brevado.xml\"><securecookie host=\"^\\.brevado\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Brew Your Own\" platform=\"mixedcontent\" f=\"Brew-Your-Own.xml\"><securecookie host=\"^(?:www\\.)?byo\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Brewtourism.com.ua\" default_off=\"failed ruleset test\" f=\"Brewtourism.com.ua.xml\"><securecookie host=\"^(?:www\\.)?brewtourism\\.com\\.ua$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></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\" default_off=\"failed ruleset test\" 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)\" 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)\" 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\" 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=\"connection 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 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 Gas (partial)\" f=\"British_Gas.xml\"><rule from=\"^http://88\\.208\\.232\\.88/wp-content/\" to=\"https://www.britishgas.co.uk/business/blog/wp-content/\"/><rule from=\"^http://(?:www\\.)?britishgas\\.co\\.uk/GetAQuote(\\?.*)?$\" to=\"https://www.britishgas.co.uk/GetAQuote/$1\"/><rule from=\"^http://(?:www\\.)?britishgas\\.co\\.uk/(apps/|content/|etc/|(?:BGBOnline|business/(?:blog/(?:scripts|wp-content)/|ManageAccount||manage-account|QuerryManageMent)|GetAQuote|HelpAndAdvice|HomeMove|Login|Registration|ViewQuoteDetails|Your_Account)(?:$|\\?|/)|images/|libs/|script/|style/)\" to=\"https://www.britishgas.co.uk/$1\"/></ruleset>", "<ruleset name=\"British Library (partial)\" f=\"British_Library.xml\"><securecookie host=\"^pressandpolicy\\.bl\\.uk$\" name=\".+\"/><rule from=\"^http://pressandpolicy\\.bl\\.uk/\" to=\"https://pressandpolicy.bl.uk/\"/></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\" default_off=\"failed ruleset test\" 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\" f=\"Broadband-Forum.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Broadband Convergent\" default_off=\"failed ruleset test\" 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://rs\\.broadcastjobs\\.co\\.uk/\" to=\"https://rs.broadcastjobs.co.uk/\"/></ruleset>", "<ruleset name=\"BroadcasTheNet\" f=\"Broadcasthe.net.xml\"><securecookie host=\"^(?:.*\\.)?broadcastthe\\.net$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Broadcom.com (partial)\" f=\"Broadcom.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Broadcom Foundation.org\" 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=\"mismatch\" 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)\" f=\"Brookings_Institution.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Brookline College.edu\" 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)\" 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)\" default_off=\"failed ruleset test\" 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)\" 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\" 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\" 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\" 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\" 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=\"btc.to\" default_off=\"timeout\" f=\"Btc.to.xml\"><securecookie host=\"^btc\\.to$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?btc\\.to/\" to=\"https://btc.to/\"/></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)\" default_off=\"failed ruleset test\" 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 (problematic)\" default_off=\"mismatched, self-signed\" f=\"Bucknell_University-problematic.xml\"><rule from=\"^http://(?:www\\.)?b-link\\.bucknell\\.edu/\" to=\"https://www.b-link.bucknell.edu/\"/></ruleset>", "<ruleset name=\"Bucknell University (partial)\" f=\"Bucknell_University.xml\"><securecookie host=\"^(?:www\\.)?bucknell\\.edu$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bucyrus Telegraph Forum\" default_off=\"failed ruleset test\" 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=\"BuddyCube.com\" f=\"BuddyCube.com.xml\"><securecookie host=\"^(?:www\\.)?buddycube\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></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&#252;rger-CERT\" default_off=\"failed ruleset test\" 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=\"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 (problematic)\" default_off=\"mismatched, self-signed\" f=\"Buffalo_State_College-problematic.xml\"><rule from=\"^http://alumni\\.buffalostate\\.edu/\" to=\"https://alumni.buffalostate.edu/\"/></ruleset>", "<ruleset name=\"Buffalo State College (partial)\" default_off=\"failed ruleset test\" f=\"Buffalo_State_College.xml\"><securecookie host=\"^.+\\.buffalostate\\.edu$\" name=\".+\"/><rule from=\"^http://((?:bscintra|bsclib01|catalog|chngpwd|giving|newsandevents|owa|president|sharepoint|www|wwwprod)\\.)?buffalostate\\.edu/\" to=\"https://$1buffalostate.edu/\"/><rule from=\"^http://email\\.buffalostate\\.edu/(?:.*)\" to=\"https://owa.buffalostate.edu/owa/\"/></ruleset>", "<ruleset name=\"Buffer app.com (partial)\" 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=\"Cacert signed\" f=\"BufferedIO.xml\"><securecookie host=\"^(?:.+\\.)?buffered\\.io$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?buffered\\.io/\" to=\"https://buffered.io/\"/></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.com\" f=\"Bugcrowd.com.xml\"><securecookie host=\".\" 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\" f=\"Build_Better.Software.xml\"><securecookie host=\"^\\.buildbetter\\.software$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Build it Break it.org\" f=\"Build_it_Break_it.org.xml\"><securecookie host=\"^www\\.builditbreakit\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BuiltWith.com\" f=\"BuiltWith.com.xml\"><rule from=\"^http://((?:api|blog|kb|s-orig|trends|trendspro|www)\\.)?builtwith\\.com/\" to=\"https://$1builtwith.com/\"/></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\" 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)\" f=\"Bunadformenn.info.xml\"><rule from=\"^http://cdn\\.bunadformenn\\.info/\" to=\"https://dml5atgx9m0j8.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Bunchball.com (partial)\" 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\" 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&#252;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://([^/:@]+)?\\.bmi\\.bund\\.de/\" to=\"https://$1.bmi.bund.de/\"/></ruleset>", "<ruleset name=\"Bundesnachrichtendienst\" f=\"Bundesnachrichtendienst.xml\"><rule from=\"^http://bnd\\.bund\\.de/\" to=\"https://www.bnd.bund.de/\"/><rule from=\"^http://([^/:@]+)?\\.bnd\\.bund\\.de/\" to=\"https://$1.bnd.bund.de/\"/></ruleset>", "<ruleset name=\"Bundesnetzagentur\" default_off=\"failed ruleset test\" f=\"Bundesnetzagentur.xml\"><securecookie host=\"^www\\.bundesnetzagentur\\.de$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?bundesnetzagentur\\.de/\" to=\"https://www.bundesnetzagentur.de/\"/></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=\"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\" default_off=\"failed ruleset test\" 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\" 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=\"mismatch\" 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://m\\.burt\\.io/\" to=\"https://m.burt.io/\"/></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\" f=\"Burt_hub.com.xml\"><securecookie host=\"^\\.burthub\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Buscap&#233; (mismatches)\" default_off=\"mismatch\" 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)\" default_off=\"failed ruleset test\" f=\"BusinessWeek.com.xml\"><rule from=\"^http://bx\\.businessweek\\.com/\" to=\"https://bx.businessweek.com/\"/></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\" 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=\"busybox.net (partial)\" default_off=\"self-signed\" f=\"Busybox.net.xml\"><securecookie host=\"^bugs\\.busybox\\.net$\" name=\".+\"/><rule from=\"^http://bugs\\.busybox\\.net/\" to=\"https://bugs.busybox.net/\"/></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\" f=\"BuzzFeed.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http://buzzfed\\.com/\" to=\"https://www.buzzfed.com/\"/><rule from=\"^http://buzzfeed\\.com/\" to=\"https://www.buzzfeed.com/\"/><rule from=\"^http://blog\\.buzzfeed\\.com/\" to=\"https://www.buzzfeed.com/blog/\"/><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=\"connection refused\" f=\"Buzz_VPN.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Buzzbytes.net\" default_off=\"failed ruleset test\" f=\"Buzzbytes.net.xml\"><securecookie host=\"^\\.buzzbytes\\.net$\" name=\".+\"/><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=\"mismatch\" 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=\"Bynum Law.net\" f=\"Bynum_Law.net.xml\"><securecookie host=\"^\\w\" name=\".\"/><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=\"Bytejail.com\" f=\"Bytejail.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bytemark.co.uk (partial)\" 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\" platform=\"cacert\" f=\"C-Base.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=\"C3PB.net\" default_off=\"failed ruleset test\" f=\"C3PB.de.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\" 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)\" f=\"C4tw.net.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://(?:www\\.)?ca-pca\\.fr/\" to=\"https://www.ca-pca.fr/\"/></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://cloudmonitor\\.nimsoft\\.com/\" to=\"https://cloudmonitor.nimsoft.com/\"/></ruleset>", "<ruleset name=\"CA-mpr.jp\" f=\"CA-mpr.jp.xml\"><rule from=\"^http://ot\\.ca-mpr\\.jp/\" to=\"https://ot.ca-mpr.jp/\"/></ruleset>", "<ruleset name=\"CA.com (partial)\" 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\" default_off=\"failed ruleset test\" 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 (partial)\" f=\"CAIR.com.xml\"><securecookie host=\"^(?:w*\\.)?cair\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CANNEX\" f=\"CANNEX.xml\"><rule from=\"^http://(?:www\\.)?cannex\\.com/\" to=\"https://www.cannex.com/\"/></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)\" 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\" 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\" default_off=\"failed ruleset test\" 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\" 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)\" default_off=\"failed ruleset test\" 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://dw\\.cbsi\\.com/\" to=\"https://dw.cbsi.com/\"/></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=\"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\" 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\" 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)\" 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://(?:www\\.)?ccedk\\.com/\" to=\"https://www.ccedk.com/\"/></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=\"CCH Information Solutions\" default_off=\"failed ruleset test\" f=\"CCH_Information_Solutions.xml\"><securecookie host=\"^(?:w*\\.)?cchcatalog\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></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)\" 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\" 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\" 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=\"mismatch\" 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=\"CDN WP.com\" f=\"CDN_WP.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CDNetworks (partial)\" default_off=\"failed ruleset test\" f=\"CDNetworks.xml\"><securecookie host=\"^pantherportal\\.cdnetworks\\.com$\" name=\".*\"/><rule from=\"^http://ssl(2)?\\.cdngc\\.net/\" to=\"https://ssl$1.cdngc.net/\"/><rule from=\"^http://cdnetworks\\.co\\.jp/$\" to=\"https://www.cdnetworks.co.jp/\"/><rule from=\"^http://pantherportal\\.cdnetworks\\.com/\" to=\"https://pantherportal.cdnetworks.com/\"/><rule from=\"^http://([\\w-]+)\\.sslcs\\.cdngc\\.net/\" to=\"https://$1.sslcs.cdngc.net/\"/><rule from=\"^http://(www\\.)?pantherexpress\\.net/\" to=\"https://$1pantherexpress.net/\"/><rule from=\"^http://([\\w\\-]+)\\.pantherssl\\.com/\" to=\"https://$1.pantherssl.com/\"/></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=\"mismatch\" f=\"CDS-Global-mismatches.xml\"><securecookie host=\"^buysub\\.com$\" name=\".*\"/><rule from=\"^http://buysub\\.com/\" to=\"https://buysub.com/\"/></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://w1\\.buysub\\.com/\" to=\"https://w1.buysub.com/\"/><rule from=\"^http://mycdsglobal\\.com/\" to=\"https://www.mycdsglobal.com//\"/><rule from=\"^http://(sso|www)\\.mycdsglobal\\.com/\" to=\"https://$1.mycdsglobal.com/\"/></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\" f=\"CERIT-SC.cz.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CERIT.cz\" 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.ch (partial)\" f=\"CERN.xml\"><exclusion pattern=\"http://directory\\.web\\.cern\\.ch/+(?!directory/(?:cern_toolbar/css|css|img|jquery-ui)/)\"/><securecookie host=\".\" name=\".\"/><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=\"^https://home\\.web\\.cern\\.ch/\" to=\"http://home.web.cern.ch/\" downgrade=\"1\"/><exclusion pattern=\"^http://home\\.web\\.cern\\.ch/\"/><rule from=\"^http://st\\.web\\.cern\\.ch/\" to=\"https://st-div.web.cern.ch/\"/><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\" default_off=\"failed ruleset test\" f=\"CERT-Polska.xml\"><securecookie host=\"^(?:.*\\.)?cert\\.pl$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CERT-UK\" default_off=\"failed ruleset test\" 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&amp;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=\"CGRAN.org\" default_off=\"connection refused\" f=\"CGRAN.org.xml\"><rule from=\"^http://(?:www\\.)?cgran\\.org/\" to=\"https://www.cgran.org/\"/></ruleset>", "<ruleset name=\"CHDK\" default_off=\"mismatch\" platform=\"cacert\" f=\"CHDK.xml\"><rule from=\"^http://(?:www\\.)?mighty-hoernsche\\.de/\" to=\"https://mighty-hoernsche.de/\"/></ruleset>", "<ruleset name=\"CHES 15 Challenge.com\" f=\"CHES_15_Challenge.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CHIP-Digital.de\" f=\"CHIP-Digital.de.xml\"><securecookie host=\"^www\\.chip-digital\\.de$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?chip-digital\\.de/\" to=\"https://www.chip-digital.de/\"/></ruleset>", "<ruleset name=\"CHIP-Kiosk.de\" default_off=\"failed ruleset test\" 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)\" default_off=\"failed ruleset test\" 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=\"CIA Cybersurf\" default_off=\"failed ruleset test\" f=\"CIA.com.xml\"><rule from=\"^http://([^/:@\\.]+)\\.cia\\.com/\" to=\"https://$1.cia.com/\"/></ruleset>", "<ruleset name=\"Central Intelligence Agency\" f=\"CIA.xml\"><rule from=\"^http://(?:www\\.)?cia\\.gov/\" to=\"https://www.cia.gov/\"/></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\" 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\" 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\" 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://www\\.cines\\.fr/\" to=\"https://www.cines.fr/\"/></ruleset>", "<ruleset name=\"CIO.com.au\" platform=\"mixedcontent\" f=\"CIO.com.au.xml\"><rule from=\"^http://(?:www\\.)?cio\\.com\\.au/\" to=\"https://www.cio.com.au/\"/></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\" f=\"CIRT.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CIR Online.org (partial)\" 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\" 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=\"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\" 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/$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CMPnet.com\" 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\" f=\"CM_Dev.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CNBC (mixed content)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"CNBC-mixed.xml\"><rule from=\"^http://data\\.cnbc\\.com/\" to=\"https://data.cnbc.com/\"/></ruleset>", "<ruleset name=\"CNBC (partial)\" default_off=\"failed ruleset test\" f=\"CNBC.xml\"><securecookie host=\"^(?:login|pro|register|www)\\.cnbc\\.com$\" name=\".+\"/><rule from=\"^http://((?:fm|login|pro|register|www)\\.)?cnbc\\.com/\" to=\"https://$1cnbc.com/\"/></ruleset>", "<ruleset name=\"CNDP.fr (partial)\" f=\"CNDP.fr.xml\"><rule from=\"^http://cas\\.edutheque\\.cndp\\.fr/\" to=\"https://cas.edutheque.cndp.fr/\"/></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://ws\\.cnetcontent\\.com/\" to=\"https://ws.cnetcontent.com/\"/></ruleset>", "<ruleset name=\"CNN.com (partial)\" f=\"CNN.com.xml\"><securecookie host=\"^(?:audience|markets\\.money)\\.cnn\\.com$\" name=\".+\"/><rule from=\"^http://(audience|(?:markets|portfolio)\\.money)\\.cnn\\.com/\" to=\"https://$1.cnn.com/\"/><rule from=\"^http://jobsearch\\.money\\.cnn\\.com/(c/|favicon\\.ico)\" to=\"https://cnnmoney.jobamatic.com/$1\"/></ruleset>", "<ruleset name=\"COLLADA\" f=\"COLLADA.xml\"><securecookie host=\"^collada\\.org$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?collada\\.org/\" to=\"https://collada.org/\"/></ruleset>", "<ruleset name=\"COLLEGEclubLIFE.com\" default_off=\"failed ruleset test\" f=\"COLLEGEclubLIFE.com.xml\"><securecookie host=\"^(?:.*\\.)?collegeclublife\\.com$\" 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\" f=\"COTC.edu.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"COUNTER\" default_off=\"mismatch\" 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\" 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)\" 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)\" 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)\" 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=\"CSAF\" default_off=\"self-signed\" f=\"CSAF.cz.xml\"><rule from=\"^http://(?:www\\.)?csaf\\.cz/\" to=\"https://csaf.cz/\"/></ruleset>", "<ruleset name=\"CSBA Academy.com (partial)\" 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\" 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\" 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://www\\.csrsupport\\.com/\" to=\"https://www.csrsupport.com/\"/><rule from=\"^http://csrsupport\\.com/\" to=\"https://www.csrsupport.com/\"/></ruleset>", "<ruleset name=\"CSS-Tricks.com\" f=\"CSS-Tricks.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CSdata1.com\" f=\"CSdata1.com.xml\"><rule from=\"^http://dsa\\.csdata1\\.com/\" to=\"https://dsa.csdata1.com/\"/></ruleset>", "<ruleset name=\"CT.gov (partial)\" 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\" 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\" 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\" f=\"CUHK.xml\"><exclusion pattern=\"^http://www\\.cuhk\\.edu\\.hk/(chinese|english)/(?!css/|fonts/|images|js/)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CUP.org\" f=\"CUP.org.xml\"><rule from=\"^http://jnls\\.cup\\.org/\" to=\"https://jnls.cup.org/\"/></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\" default_off=\"failed ruleset test\" 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=\"connection dropped\" 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://(?:www\\.)?cfmueller\\.de/\" to=\"https://www.cfmueller.de/\"/></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)\" 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=\"Cachet HQ.io\" f=\"Cachet_HQ.io.xml\"><securecookie host=\"^(?:demo|docs)?\\.cachethq\\.io$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cactus Complete Commerce (partial)\" 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\" default_off=\"failed ruleset test\" 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)\" 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\" f=\"Cafemakers.xml\"><securecookie host=\"^\\.cafemakers\\.com$\" name=\".+\"/><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=\"mismatch\" 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://sdsu-dspace\\.calstate\\.edu/\" to=\"https://sdsu-dspace.calstate.edu/\"/></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=\"Calazan.com\" 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\" 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.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"California Department of Motor Vehicles\" f=\"California-Department-of-Motor-Vehicles.xml\"><rule from=\"^http://(?:www\\.)?dmv\\.ca\\.gov/\" to=\"https://www.dmv.ca.gov/\"/></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)\" 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://leginfo\\.legislature\\.ca\\.gov/\" to=\"https://leginfo.legislature.ca.gov/\"/></ruleset>", "<ruleset name=\"Cal Poly.edu (partial)\" 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=\"California Walk In Tub Company.com\" f=\"California_Walk_In_Tub_Company.com.xml\"><securecookie host=\"^(?:\\.|www\\.)?californiawalkintubcompany\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Calispora\" default_off=\"failed ruleset test\" f=\"Calispora.xml\"><rule from=\"^http://(www\\.)?calispora\\.org/\" to=\"https://calispora.org/\"/></ruleset>", "<ruleset name=\"Caller.com (partial)\" default_off=\"failed ruleset test\" 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)\" 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&amp;gid=3&amp;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://ulysses\\.calvin\\.edu/\" to=\"https://ulysses.calvin.edu/\"/></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=\"camaya.net\" f=\"Camaya.net.xml\"><securecookie host=\"^camaya\\.net$\" 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://journals\\.cambridge\\.org/\" to=\"https://journals.cambridge.org/\"/></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://mobile\\.journals\\.cambridge\\.org/+\" to=\"https://jnls.cup.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)\" 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)\" 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)\" default_off=\"failed ruleset test\" 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\" default_off=\"failed ruleset test\" f=\"Canadian-Lung-Assoc.xml\"><rule from=\"^http://(?:www\\.)?lung\\.ca/\" to=\"https://www.lung.ca/\"/></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\" 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://user\\.lightsource\\.ca/\" to=\"https://user.lightsource.ca/\"/></ruleset>", "<ruleset name=\"The Canadian Press\" default_off=\"failed ruleset test\" 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\" 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&#305; Alem\" f=\"Canli_Alem.xml\"><securecookie host=\"^\\.?canlialem\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Intl Cannagraphic Magazine\" f=\"Cannagraphic.xml\"><rule from=\"^http://(?:www\\.)?icmag\\.com/\" to=\"https://www.icmag.com/\"/><rule from=\"^http://(?:www\\.)?icmag\\.com/ic/\" to=\"https://www.icmag.com/ic/\"/></ruleset>", "<ruleset name=\"Canon (partial)\" 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)\" 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\" default_off=\"failed ruleset test\" f=\"Canvas.xml\"><securecookie host=\"^(?:.*\\.)?canv\\.as\" name=\".+\"/><rule from=\"^http://(www\\.)?canv\\.as/\" to=\"https://$1canv.as/\"/><rule from=\"^http://i\\.canvasugc\\.com/\" to=\"https://i.canvasugc.com/\"/><rule from=\"^http://rt_(\\d)\\.canv\\.as/\" to=\"https://rt_$1.canv.as/\"/></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\" default_off=\"failed ruleset test\" 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\" f=\"CapitalOne.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Capitalone360.com\" 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\" default_off=\"failed ruleset test\" 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\" default_off=\"failed ruleset test\" 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\" 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 (mismatches)\" default_off=\"mismatched, self-signed\" f=\"Cardiff-University-mismatches.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cardiff University (partial)\" f=\"Cardiff-University.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://(www\\.astro|learningcentral)\\.cardiff\\.ac\\.uk/\" to=\"https://$1.cf.ac.uk/\"/><rule from=\"^http://surveys\\.cardiff\\.ac\\.uk/\" to=\"https://www.surveys.cardiff.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\" default_off=\"failed ruleset test\" 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\" 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)\" 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 (partial)\" platform=\"mixedcontent\" f=\"CareerBuilder.xml\"><securecookie host=\"^\\.careerbuilder\\.co\\.uk$\" name=\".+\"/><rule from=\"^http://(www\\.)?careerbuilder\\.com/\" to=\"https://$1careerbuilder.com/\"/><rule from=\"^http://(\\w+)\\.careerbuilder\\.co\\.uk/\" to=\"https://$1.careerbuilder.co.uk/\"/><rule from=\"^http://(?:img|secure)\\.icbdr\\.com/\" to=\"https://secure.icbdr.com/\"/></ruleset>", "<ruleset name=\"CareerDean.com\" 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=\"Carekris.com\" f=\"Carekris.com.xml\"><securecookie host=\"^\\.carekris\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></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)\" 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\" default_off=\"failed ruleset test\" 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=\"mismatch\" 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=\"CarterCenter.org\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"CarterCenter.org.xml\"><securecookie host=\"^(?:www\\.)?cartercenter\\.org$\" name=\".+\"/><rule from=\"^http://(www\\.)?cartercenter\\.org/\" to=\"https://$1cartercenter.org/\"/><rule from=\"^http://donate\\.cartercenter\\.org/(?:site/PageServer)?(?:\\?.*)?$\" to=\"https://cartercenter.org/\"/></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\" 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)\" 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\" default_off=\"failed ruleset test\" 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=\"CastRoller (partial)\" default_off=\"failed ruleset test\" f=\"CastRoller.xml\"><rule from=\"^http://s\\.cstrlr\\.com/\" to=\"https://d231qji2e2hste.cloudfront.net/\"/></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://wrms\\.catalyst\\.net\\.nz/\" to=\"https://wrms.catalyst.net.nz/\"/><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\" 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)\" 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)\" 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\" 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)\" 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://(?:www\\.)?cbb\\.dk/\" to=\"https://www.cbb.dk/\"/></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\" default_off=\"failed ruleset test\" f=\"Cdn-net.com.xml\"><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\" 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=\"cdnjs.com\" f=\"Cdnjs.xml\"><rule from=\"^http:\" to=\"https:\"/></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://cdnpi\\.pe/\" to=\"https://cdnpi.pe/\"/></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\" default_off=\"failed ruleset test\" f=\"Celartem.xml\"><rule from=\"^http://(?:www\\.)?lizardtech\\.com/\" to=\"https://lizardtech.com/\"/></ruleset>", "<ruleset name=\"Celiac Disease Foundation\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Celiac-Foundation.xml\"><rule from=\"^http://(?:www\\.)?celiac\\.org/\" to=\"https://www.celiac.org/\"/></ruleset>", "<ruleset name=\"Cell (partial)\" default_off=\"all infinite loops\" f=\"Cell.xml\"><securecookie host=\"^www\\.cell\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?cell\\.com/\" to=\"https://www.cell.com/\"/></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\" default_off=\"mismatched\" f=\"Census.xml\"><securecookie host=\"^census-labs.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?census-labs\\.com/\" to=\"https://census-labs.com/\"/></ruleset>", "<ruleset name=\"Censys.io\" f=\"Censys.io.xml\"><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 American Progress (partial)\" default_off=\"breaks site\" f=\"Center-for-American-Progress.xml\"><exclusion pattern=\"^http://thinkprogress\\.com/+(?!wp-content/|wp-includes/)\"/><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 Rights\" f=\"Center-for-Rights.xml\"><rule from=\"^http://(?:www\\.)?thecenterforrights\\.org/\" to=\"https://centerforrights.heroku.com/\"/><rule from=\"^http://(?:www\\.)?internetvotes\\.org/\" to=\"https://internetvotes.herokuapp.com/\"/></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)\" 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://community\\.centminmod\\.com/\" to=\"https://community.centminmod.com/\"/></ruleset>", "<ruleset name=\"Central Computers.com\" f=\"Central_Computers.com.xml\"><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)\" default_off=\"failed ruleset test\" 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)\" f=\"Centreon.com.xml\"><securecookie host=\"^(?:.+\\.)?centreon\\.com$\" name=\".+\"/><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)\" default_off=\"failed ruleset test\" 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\" 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=\"&#268;esk&#225; po&#353;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=\"cf-example.com\" default_off=\"failed ruleset test\" f=\"Cf-example.com.xml\"><securecookie host=\"^\\.cf-example\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?cf-example\\.com/\" to=\"https://www.cf-example.com/\"/></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)\" f=\"Chain.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Chainlove.com\" 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\" default_off=\"failed ruleset test\" f=\"Chais_dOeuvre.fr.xml\"><rule from=\"^http://invitation\\.chaisdoeuvre\\.fr/\" to=\"https://invitation.chaisdoeuvre.fr/\"/></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\" f=\"ChakraOS.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Challenge.gov\" 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=\"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://(?:www\\.)?championsofregnum\\.com/\" to=\"https://www.championsofregnum.com/\"/></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://(www\\.)?changeip\\.com/\" to=\"https://www.changeip.com/\"/></ruleset>", "<ruleset name=\"Changemakers\" f=\"Changemakers.xml\"><rule from=\"^http://(?:cdn\\.|www\\.)?changemakers\\.com/\" to=\"https://www.changemakers.com/\"/></ruleset>", "<ruleset name=\"Chango\" 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://t\\.channeladvisor\\.com/\" to=\"https://t.channeladvisor.com/\"/></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\" 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=\"chaox.net\" platform=\"cacert\" f=\"Chaox.net.xml\"><rule from=\"^http:\" to=\"https:\"/></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=\"Charity Navigator\" f=\"Charity-Navigator.xml\"><securecookie host=\"^(?:w*\\.)?charitynavigator\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Charity Wings\" default_off=\"connection 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=\"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=\"charity water.org\" f=\"Charity_Water.org.xml\"><securecookie host=\"^(?:www\\.)?charitywater\\.org$\" name=\".+\"/><rule from=\"^http://((?:d2p|f01|my|www)\\.)?charitywater\\.org/\" to=\"https://$1charitywater.org/\"/><rule from=\"^http://store\\.charitywater\\.com/\" to=\"https://charitywater.myshopify.com/\"/></ruleset>", "<ruleset name=\"charlie.bz\" f=\"Charlie.bz.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Charlotte Nature Museum.org (partial)\" 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)\" 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\" f=\"Charter-Business.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Charter.com\" 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\" f=\"CharterBusiness.com.xml\"><securecookie host=\"^(?:\\.|www2?\\.)?charterbusiness\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Charter our Community.com\" 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://(?:www\\.)?chasepaymentech\\.com/\" to=\"https://www.chasepaymentech.com/\"/></ruleset>", "<ruleset name=\"Chat Place\" default_off=\"mismatch\" 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)\" default_off=\"failed ruleset test\" 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=\"chdir.org (partial)\" f=\"Chdir.org.xml\"><rule from=\"^http://(?:(nico\\.)|www\\.)?chdir\\.org/\" to=\"https://$1chdir.org/\"/></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&amp;\"/><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)\" 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\" 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\" 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)\" 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)\" 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\" default_off=\"failed ruleset test\" f=\"Cherry.de.xml\"><securecookie host=\"^(?:www\\.)?cherry\\.de$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cherwell.gov.uk (partial)\" 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)\" default_off=\"self-signed\" f=\"ChessBase.com.xml\"><rule from=\"^http://(?:\\w\\w\\.|www\\.)?chessbase\\.com/(?=adv/|bundle/|content/|favicon\\.ico|thumb/)\" to=\"https://chessbase.com/\"/></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 (problematic)\" default_off=\"mismatched, self-signed\" f=\"Chicago_Tribune-problematic.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Chicago Tribune.com (partial)\" f=\"Chicago_Tribune.xml\"><exclusion pattern=\"^http://(?:[^./]+\\.){2,}myaccount2\\.chicagotribune\\.com/\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://advertise\\.chicagotribune\\.com/[^?]*\" to=\"https://advertise.chicagotribune.com/\"/><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\" default_off=\"failed ruleset test\" 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\" default_off=\"failed ruleset test\" f=\"Chime.in.xml\"><securecookie host=\"^(?:www\\.)?chime\\.in$\" name=\".*\"/><rule from=\"^http://(www\\.)?chime\\.in/\" to=\"https://$1chime.in/\"/><rule from=\"^http://support\\.chime\\.in/(assets|external|generated|images|registration|system)/\" to=\"https://chime.zendesk.com/$2/\"/></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=\"China Payment Services\" f=\"China-Payment-Services.xml\"><securecookie host=\"^(?:.*\\.)?chinapaymentservices\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?chinapaymentservices\\.com/\" to=\"https://chinapaymentservices.com/\"/><rule from=\"^http://sales\\.chinapaymentservices\\.com/\" to=\"https://sales.chinapaymentservices.com/\"/></ruleset>", "<ruleset name=\"China Labor Watch\" default_off=\"failed ruleset test\" f=\"China_Labor_Watch.xml\"><rule from=\"^http://(?:www\\.)?chinalaborwatch\\.org/\" to=\"https://www.chinalaborwatch.org/\"/></ruleset>", "<ruleset name=\"Chinabank.com.cn (partial)\" f=\"Chinabank.com.cn.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"chinadialogue.net\" f=\"Chinadialogue.net.xml\"><securecookie host=\"^\\.chinadialogue\\.net$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?chinadialogue\\.net/\" to=\"https://www.chinadialogue.net/\"/></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)\" default_off=\"failed ruleset test\" 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)\" 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=\"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\" 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\" 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\" f=\"Christian-Prayer-Center.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=\"Christopher Truncer.com\" f=\"Christopher_Truncer.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Chrome.com (partial)\" f=\"Chrome.com.xml\"><rule from=\"^http://developer\\.chrome\\.com/\" to=\"https://developer.chrome.com/\"/></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\" f=\"Chronicle-Store.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Chronicle.com (partial)\" 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=\"mismatch\" 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\" 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\" 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://forum\\.libcinder\\.org/\" to=\"https://forum.libcinder.org/\"/></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=\"CineMovies.fr (partial)\" default_off=\"missing certificate chain\" f=\"CineMovies.xml\"><securecookie host=\"^(?:www)?\\.cinemovies\\.fr$\" name=\".+\"/><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)\" 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\" default_off=\"failed ruleset test\" 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://static\\.cineclick\\.com\\.br/\" to=\"https://static.cineclick.com.br/\"/></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=\"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=\"Cipherli.st\" f=\"Cipherli.st.xml\"><rule from=\"^http://cipherli\\.st/\" to=\"https://cipherli.st/\"/></ruleset>", "<ruleset name=\"Cir.ca\" 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\" 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\" default_off=\"failed ruleset test\" 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\" default_off=\"failed ruleset test\" 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)\" f=\"Cisco.mobi.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cisco.com (partial)\" 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=\"^(?:_ga|s_v)\"/><securecookie host=\"^[bhjlst]\" 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\" 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=\"CitizenWeb.io\" f=\"CitizenWeb.io.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Citizenfour Film.com\" default_off=\"failed ruleset test\" f=\"Citizenfour_Film.com.xml\"><securecookie host=\"^citizenfourfilm\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Citizens for Science\" default_off=\"mismatch, self-signed\" f=\"Citizens-for-Science.xml\"><rule from=\"^http://(?:www\\.)?citizensforscience\\.org/\" to=\"https://citizensforscience.org/\"/></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)\" 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\" default_off=\"failed ruleset test\" 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\" 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=\"ClaimYourName.io\" f=\"ClaimYourName.io.xml\"><securecookie host=\"^(?:www\\.)?claimyourname\\.io$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></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 (partial)\" f=\"ClamAV.net.xml\"><rule from=\"^http://bugzilla\\.clamav\\.net/\" to=\"https://bugzilla.clamav.net/\"/></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\" default_off=\"failed ruleset test\" 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=\"connection 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.org\" platform=\"cacert\" f=\"Clear-Code.org.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)\" default_off=\"failed ruleset test\" f=\"ClearCenter.com.xml\"><securecookie host=\"^secure\\.clearcenter\\.com$\" name=\".+\"/><rule from=\"^http://secure\\.clearcenter\\.com/\" to=\"https://secure.clearcenter.com/\"/></ruleset>", "<ruleset name=\"ClearChain\" platform=\"cacert\" default_off=\"failed ruleset test\" f=\"ClearChain.xml\"><securecookie host=\"^www\\.clearchain\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?clearchain\\.com/\" to=\"https://www.clearchain.com/\"/></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=\"mismatch\" f=\"Clergy-Project.xml\"><rule from=\"^http://(?:www\\.)?clergyproject\\.org/\" to=\"https://clergyproject.org/\"/></ruleset>", "<ruleset name=\"ClevelandClinic (partial)\" default_off=\"failed ruleset test\" 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)\" 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\" 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)\" 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=\"Clickberry\" default_off=\"failed ruleset test\" f=\"Clickberry.xml\"><securecookie host=\"^clickberry\\.tv$\" name=\".+\"/><rule from=\"^http://(www\\.)?(\\w+\\.)?clickberry\\.tv/\" to=\"https://$2clickberry.tv/\"/><rule from=\"^http://(www\\.)?(\\w+\\.)?clbr\\.tv/\" to=\"https://$2clbr.tv/\"/></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\" 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=\"ClinicalTrials.gov\" f=\"ClinicalTrials.gov.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Clinkle.com\" 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\" 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://(?:www\\.)?cloudns\\.net/\" to=\"https://www.cloudns.net/\"/></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\" 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)\" f=\"CloudControl.com.xml\"><rule from=\"^http://cloudcontrol\\.com/\" to=\"https://www.cloudcontrol.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CloudCracker\" 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=\"^(?:.*\\.)?cloudflare\\.com$\" 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 (problematic)\" default_off=\"mismatch\" f=\"CloudForge-problematic.xml\"><rule from=\"^http://(?:www\\.)?codesion\\.com/\" to=\"https://www.cloudforge.com/codesion/\"/><rule from=\"^http://info\\.codesion\\.com/\" to=\"https://www.cloudforge.com/\"/></ruleset>", "<ruleset name=\"CloudForge.com (partial)\" 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\" 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)\" 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)\" 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\" 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=\"&amp;Signature=\"/><exclusion pattern=\"^http://d3biamo577v4eu\\.cloudfront\\.net/\"/><exclusion pattern=\"^http://d3s2wlph6mu7bx\\.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\" 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=\"clssl.org\" default_off=\"failed ruleset test\" f=\"Clssl.org.xml\"><securecookie host=\"^\\.clssl\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ClubCompy\" default_off=\"failed ruleset test\" f=\"ClubCompy.xml\"><securecookie host=\"^clubcompy\\.com$\" name=\".*\"/><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=\"connection dropped\" f=\"Club_Red_Gaming.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ClusterHQ.com\" 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\" 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 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 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.io\" f=\"Cobalt.io.xml\"><securecookie host=\"^\\.cobalt\\.io$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cobalt Mania.com\" 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\" default_off=\"failed ruleset test\" f=\"CodeHS.com.xml\"><rule from=\"^http://(www\\.)?codehs\\.com/\" to=\"https://$1codehs/\"/></ruleset>", "<ruleset name=\"CodePen.io\" f=\"CodePen.io.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\"^\\w\" 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)\" f=\"Code_for_America.org.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Codebase HQ.com\" 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\" 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\" f=\"Codecov.xml\"><rule from=\"^http://(?:www\\.)?codecov\\.io/\" to=\"https://codecov.io/\"/></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)\" 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)\" f=\"Coderbits.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Coderouge.co\" 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\" 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=\"Codesion (partial)\" default_off=\"failed ruleset test\" f=\"Codesion.xml\"><securecookie host=\"^(?:ap|hel)p\\.codesion\\.com$\" name=\".+\"/><rule from=\"^http://(ap|hel)p\\.codesion\\.com/\" to=\"https://$1p.codesion.com/\"/><rule from=\"^http://blog\\.codesion\\.com/\" to=\"https://blog.collab.net/\"/></ruleset>", "<ruleset name=\"codespeak\" default_off=\"failed ruleset test\" f=\"Codespeak.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Codethink\" default_off=\"mismatch\" 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=\"Codeux.com\" f=\"Codeux.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Codex NS.io (partial)\" 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\" 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\" 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\" default_off=\"500\" f=\"CoinDL.xml\"><securecookie host=\"^\\.?www\\.coindl\\.com$\" 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\" 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\" default_off=\"self-signed\" f=\"CoinJabber.com.xml\"><securecookie host=\"^(?:www\\.)?coinjabber\\.com$\" 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\" 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=\"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\" 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\" 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)\" 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\" default_off=\"failed ruleset test\" 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)\" default_off=\"failed ruleset test\" 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=\"Collegiate Peaks Bank\" f=\"Collegiate-Peaks-Bank.xml\"><securecookie host=\"(?:^|\\.)collegiatepeaksbank\\.com$\" name=\".+\"/><securecookie host=\"(?:^|\\.)cpbonlinebanking\\.com$\" name=\".+\"/><rule from=\"^http://12\\.191\\.21\\.228/\" to=\"https://www.collegiatepeaksbank.com/\"/><rule from=\"^http://cpbonlinebanking\\.com/\" to=\"https://www.cpbonlinebanking.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CollegiateLink.net\" f=\"CollegiateLink.xml\"><exclusion pattern=\"^http://(?:[^./]+\\.){2,}collegiatelink\\.net/\"/><securecookie host=\".\" name=\".\"/><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\" 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\" 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\" default_off=\"failed ruleset test\" f=\"Coloman.nl.xml\"><securecookie host=\"^www\\.coloman\\.nl$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Color Of Change\" 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\" 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://(?:www\\.)?coloradonocall\\.com/\" to=\"https://www.coloradonocall.com/\"/></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\" default_off=\"failed ruleset test\" 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=\"mismatch\" 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)\" f=\"Comcast.net.xml\"><securecookie host=\"^\\.\" name=\"^(?:NXCLICK2|OAX)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Comcast.com (partial)\" 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\" default_off=\"failed ruleset test\" 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=\"Comingolstadt\" f=\"Comingolstadt.xml\"><rule from=\"^http://(www\\.)?comingolstadt\\.de/\" to=\"https://comingolstadt.de/\"/></ruleset>", "<ruleset name=\"Comkort.com\" 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://chatserver\\.comm100\\.com/\" to=\"https://chatserver.comm100.com/\"/></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\" 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)\" default_off=\"failed ruleset test\" f=\"Commindo-media.xml\"><rule from=\"^http://auslieferung\\.commindo-media-ressourcen\\.de/\" to=\"https://auslieferung.commindo-media-ressourcen.de/\"/></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)\" 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 (partial)\" f=\"CommonDreams.xml\"><securecookie host=\"^commondreams\\.org$\" name=\".*\"/><rule from=\"^http://commondreams\\.org/\" to=\"https://commondreams.org/\"/></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=\"Commonwealth Superannuation Scheme\" f=\"CommonwealthSuperannuationScheme.xml\"><rule from=\"^http://(?:www\\.)?css\\.gov\\.au/\" to=\"https://www.css.gov.au/\"/></ruleset>", "<ruleset name=\"Commotionwireless.net\" 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.elgg.org\" f=\"Community.elgg.org.xml\"><rule from=\"^http://community\\.elgg\\.org/\" to=\"https://community.elgg.org/\"/></ruleset>", "<ruleset name=\"WB Games.com (partial)\" f=\"Community.wbgames.com.xml\"><securecookie host=\"community\\.wbgames\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Community Matters (partial)\" 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)\" 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=\"TransLink Compass Card\" f=\"Compasscard.ca.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Compendium.com (partial)\" 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=\"connection dropped\" f=\"Compete.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Compete (partial)\" 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\" 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=\"connection 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\" platform=\"cacert\" f=\"Comprehensive-C-Archive-Network.xml\"><rule from=\"^http://www\\.ccodearchive\\.net/\" to=\"https://ccodearchive.net/\"/><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=\"Computational Infrastructure for Operations Research (partial)\" default_off=\"failed ruleset test\" f=\"Computational-Infrastructure-for-Operations-Research.xml\"><securecookie host=\"^projects\\.coin-or\\.org$\" name=\".*\"/><rule from=\"^http://projects\\.coin-or\\.org/\" to=\"https://projects.coin-or.org/\"/></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=\"Computerbase.de\" f=\"Computerbase.de.xml\"><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\" default_off=\"failed ruleset test\" 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\" default_off=\"failed ruleset test\" f=\"ConSecur.xml\"><securecookie host=\"^www\\.consecur\\.de$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?consecur\\.de/\" to=\"https://www.consecur.de/\"/></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&#233; 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)\" 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&#233; 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&#233; 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\" 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)\" default_off=\"failed ruleset test\" f=\"Condesa.xml\"><rule from=\"^http://secure\\.prleap\\.com/\" to=\"https://secure.prleap.com/\"/></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=\"mismatch\" 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)\" 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\" 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\" 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\" 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=\"Conseil National du Num&#233;rique\" default_off=\"failed ruleset test\" f=\"Conseil_National_du_Numerique.xml\"><rule from=\"^http://contribuez\\.cnnumerique\\.fr/\" to=\"https://contribuez.cnnumerique.fr/\"/></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)\" 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=\"Consul.io (partial)\" f=\"Consul.io.xml\"><securecookie host=\"^\\.consul\\.io$\" name=\".+\"/><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.gov\" f=\"Consumer.gov.xml\"><rule from=\"^http://(?:www\\.)?consum(e|ido)r\\.gov/\" to=\"https://www.consum$1r.gov/\"/></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=\"connection 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\" default_off=\"failed ruleset test\" 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://applications\\.contactatonce\\.com/\" to=\"https://applications.contactatonce.com/\"/></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://contentdn\\.net/\" to=\"https://contentdn.net/\"/></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 (partial)\" f=\"Contextly.xml\"><exclusion pattern=\"^http://(?:www\\.)?contextly\\.com/+blog\"/><securecookie host=\"^dev\\.contextly\\.com$\" name=\".+\"/><rule from=\"^http://(?:((?:app|dev|rest)\\.)|www\\.)?contextly\\.com/\" to=\"https://$1contextly.com/\"/><rule from=\"^http://contextlysitescripts\\.contextly\\.com/\" to=\"https://c714015.ssl.cf2.rackcdn.com/\"/><rule from=\"^https://contextly\\.com/blog\" to=\"http://contextly.com/blog\" downgrade=\"1\"/></ruleset>", "<ruleset name=\"contextweb.com (partial)\" f=\"Contextweb.com.xml\"><exclusion pattern=\"http://blog\\.contextweb\\.com/(?!sellingdesk$)\"/><securecookie host=\"^\\.contextweb\\.com$\" name=\".+\"/><rule from=\"^http://blog\\.contextweb\\.com/sellingdesk$\" to=\"https://getsatisfaction.com/contextweb\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Contiki\" default_off=\"mismatched\" f=\"Contiki.xml\"><rule from=\"^http://(?:www\\.)?contiki-os\\.org/\" to=\"https://contiki-os.org/\"/></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\" f=\"Contributoria.com.xml\"><securecookie host=\"^\\.contributoria\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ControlScan.com\" default_off=\"failed ruleset test\" 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=\"ControllerMAX.com (false MCB)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"ControllerMAX.com-falsemixed.xml\"><securecookie host=\"^(?:www\\.)?controllermax\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ControllerMAX.com (partial)\" default_off=\"failed ruleset test\" f=\"ControllerMAX.com.xml\"><securecookie host=\"^(?:www\\.)?controllermax\\.com$\" name=\"^PHPSESSID$\"/><rule from=\"^http://(www\\.)?controllermax\\.com/(?!forums(?!/clientscript/|/css\\.php|/customavatars/|/favicon\\.ico|/images/))\" to=\"https://$1controllermax.com/\"/></ruleset>", "<ruleset name=\"Controller Plus\" f=\"Controller_Plus.xml\"><securecookie host=\"^\\.(?:www\\.)?pluscontrollers\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CONVAR (partial)\" platform=\"mixedcontent\" 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=\"Conversejs.org\" 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\" 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://policy\\.cookiereports\\.com/\" to=\"https://policy.cookiereports.com/\"/></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://(?:www\\.)?|https://)coolcart\\.net/\" to=\"https://www.coolcart.net/\"/></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\" 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\" default_off=\"failed ruleset test\" 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://jamadu\\.ch/\" to=\"https://www.jamadu.ch/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Coop\" f=\"Coop.ch.xml\"><rule from=\"^http://onlinebanking\\.bankcoop\\.ch/\" to=\"https://onlinebanking.bankcoop.ch/\"/><rule from=\"^http://(?:www\\.)?supercard\\.ch/\" to=\"https://www.supercard.ch/\"/><rule from=\"^http://(?:www\\.)?coopzeitung\\.ch/\" to=\"https://www.coopzeitung.ch/\"/><rule from=\"^http://(?:www\\.)?cooperazione\\.ch/\" to=\"https://www.cooperazione.ch/\"/><rule from=\"^http://(?:www\\.)?coopathome\\.ch/\" to=\"https://www.coopathome.ch/\"/><rule from=\"^http://(?:www\\.)?interdiscount\\.ch/\" to=\"https://www.interdiscount.ch/\"/><rule from=\"^http://(?:www\\.)?microspot\\.ch/\" to=\"https://www.microspot.ch/\"/><rule from=\"^http://(?:www\\.)?toptip\\.ch/\" to=\"https://www.toptip.ch/\"/><rule from=\"^http://(?:www\\.)?lumimart\\.ch/\" to=\"https://www.lumimart.ch/\"/><rule from=\"^http://(?:www\\.)?impo\\.ch/\" to=\"https://www.impo.ch/\"/><rule from=\"^http://(?:www\\.)?christ-swiss\\.ch/\" to=\"https://www.christ-swiss.ch/\"/><rule from=\"^http://(?:www\\.)?fust\\.ch/\" to=\"https://www.fust.ch/\"/><rule from=\"^http://([\\w-]+)\\.fust\\.ch/\" to=\"https://$1.fust.ch/\"/><rule from=\"^http://(?:www\\.)?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.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://www\\.cooperating-objects\\.eu/\" to=\"https://www.cooperating-objects.eu/\"/></ruleset>", "<ruleset name=\"Cope-IT\" f=\"Cope-IT.xml\"><securecookie host=\"^www\\.cope-it\\.at$\" name=\".+\"/><rule from=\"^http://www\\.cope-it\\.at/\" to=\"https://www.cope-it.at/\"/></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\" 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-Watch.org\" f=\"Copyright-Watch.org.xml\"><securecookie host=\"^\\.copyright-watch\\.org$\" name=\".+\"/><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://(?:www\\.)?corbinfisher\\.com/\" to=\"https://www.corbinfisher.com/\"/></ruleset>", "<ruleset name=\"CoreCode\" default_off=\"mismatch\" 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)\" f=\"CoreMetrics.xml\"><securecookie host=\"^testdata\\.coremetrics\\.com$\" name=\".+\"/><securecookie host=\"^\\.surfaid\\.ihost\\.com$\" name=\".+\"/><rule from=\"^http://data\\.cmcore\\.com/\" to=\"https://data.cmcore.com/\"/><rule from=\"^http://www\\.coremetrics\\.com/\" to=\"https://www.ibm.com/software/marketing-solutions/coremetrics/www.redirects/\"/><rule from=\"^http://(data|libs|testdata)\\.coremetrics\\.com/\" to=\"https://$1.coremetrics.com/\"/><rule from=\"^http://stats\\.surfaid\\.ihost\\.com/\" to=\"https://stats.surfaid.ihost.com/\"/></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://mycoresite\\.coresite\\.com/\" to=\"https://mycoresite.coresite.com/\"/></ruleset>", "<ruleset name=\"Core Infrastructure.org\" f=\"Core_Infrastructure.org.xml\"><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=\"coredump.gr\" f=\"Coredump.gr.xml\"><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\" 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)\" 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:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cornify\" default_off=\"mismatch\" 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\" default_off=\"failed ruleset test\" 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\" 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\" 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=\"mismatch\" 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://www\\.cosmote\\.gr/\" to=\"https://www.cosmote.gr/\"/></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)\" 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\" f=\"CouchPota.to.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Couchbase (partial)\" default_off=\"failed ruleset test\" 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=\"Couchsurfing\" f=\"Couchsurfing.xml\"><rule from=\"^http://www\\.couchsurfing\\.org/login\\.html$\" to=\"https://www.couchsurfing.org/login.html\"/></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=\"CounterMail.com\" f=\"CounterMail.com.xml\"><securecookie host=\"^support\\.countermail\\.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\" 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\" default_off=\"self-signed\" f=\"CourageCampaign.xml\"><securecookie host=\"^(?:main|www)\\.couragecampaign\\.org\" name=\".+\"/><rule from=\"^http://(?:main\\.|www\\.)?couragecampaign\\.org/\" to=\"https://www.couragecampaign.org/\"/><rule from=\"^http://act\\.couragecampaign\\.org/\" to=\"https://couragecampaign.actionkit.com/\"/></ruleset>", "<ruleset name=\"Courage Found.org\" f=\"Courage_Found.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Courier Post Online.com (partial)\" 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\" f=\"Cours_Crypto.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CourseFinder.io\" 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=\"Coursera.org\" f=\"Coursera.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CourtListener.com\" default_off=\"failed ruleset test\" f=\"CourtListener.com.xml\"><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)\" 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\" 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)\" default_off=\"failed ruleset test\" 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)\" 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\" default_off=\"failed ruleset test\" 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)\" default_off=\"failed ruleset test\" 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\" default_off=\"failed ruleset test\" f=\"Coxnewsweb.com.xml\"><rule from=\"^http://img\\.coxnewsweb\\.com/\" to=\"https://img.coxnewsweb.com/\"/><rule from=\"^http://alt\\.coxnewsweb\\.com/\" to=\"https://alt.coxnewsweb.com/\"/></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\" 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\" f=\"Cpunk.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cpunks.org\" 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=\"CrackStation.net\" f=\"CrackStation.net.xml\"><rule from=\"^http://(?:www\\.)?crackstation\\.net/\" to=\"https://crackstation.net/\"/></ruleset>", "<ruleset name=\"crackedconsole.com\" 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 (partial)\" f=\"Craigslist.org.xml\"><exclusion pattern=\"^http://blog\\.craigslist\\.org/\"/><exclusion pattern=\"^http://www\\.craigslist\\.org/$\"/><exclusion pattern=\"^http://geo\\.craigslist\\.org/\"/><securecookie host=\".+\" name=\".+\"/><rule from=\"^http://craigslist\\.org/\" to=\"https://www.craigslist.org/\"/><rule from=\"^https://geo\\.craigslist\\.org/\" to=\"http://geo.craigslist.org/\" downgrade=\"1\"/><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=\"Crbug.com\" f=\"Crbug.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Creare.co.uk\" 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=\"connection refused\" f=\"Create.xml\"><securecookie host=\"^create-dmgmedia\\.co\\.uk$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CreateSpace.com\" 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://ads\\.creative-serving\\.com/\" to=\"https://ads.creative-serving.com/\"/></ruleset>", "<ruleset name=\"Creative Commons (partial)\" 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\" 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\" default_off=\"failed ruleset test\" f=\"Creativeskills.be-falsemixed.xml\"><securecookie host=\"^\\.creativeskills\\.be$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Creativeskills.be (partial)\" default_off=\"failed ruleset test\" 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\" 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\" f=\"Credit_Repair_Trust.com.xml\"><securecookie host=\"^(?:[w.]*\\.)?creditrepairtrust\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Credit Report Nation\" 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://(?:www\\.)?cricketwireless\\.com/\" to=\"https://www.cricketwireless.com/\"/></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=\"CrimethInk.com (partial)\" f=\"CrimethInc.com.xml\"><rule from=\"^http://cloudfront\\.crimethinc\\.com/\" to=\"https://d33bhpqk8nwto8.cloudfront.net/\"/><rule from=\"^http://thecloud\\.crimethinc\\.com/\" to=\"https://s3.amazonaws.com/thecloud.crimethinc.com/\"/></ruleset>", "<ruleset name=\"Criminal Justice Inspectorates\" default_off=\"failed ruleset test\" 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)\" 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://cm1\\.criticalmass\\.com/\" to=\"https://cm1.criticalmass.com/\"/></ruleset>", "<ruleset name=\"Critical Path Internet Services\" f=\"Critical-Path-Internet-Services.xml\"><rule from=\"^http://secure\\.critpath\\.org/\" to=\"https://secure.critpath.org/\"/></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\" 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=\"mismatch\" 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 (partial)\" f=\"CrossRef.org.xml\"><rule from=\"^http://(api|crossmark)\\.crossref\\.org/\" to=\"https://$1.crossref.org/\"/><rule from=\"^http://help\\.crossref\\.com/(?=docs-view-\\d+\\.css|favicon\\.ico|favicon-\\d+-\\d+\\.gif|resources/|userfiles/)\" to=\"https://crossref.helpdocsonline.com/\"/></ruleset>", "<ruleset name=\"CrossWire.org\" default_off=\"self-signed\" f=\"CrossWire.org.xml\"><securecookie host=\"^www\\.crosswire\\.org$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?crosswire\\.org/\" to=\"https://www.crosswire.org/\"/></ruleset>", "<ruleset name=\"Crossdresser-Forum.de\" f=\"Crossdresser-Forum.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Crossrider (partial)\" 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 (partial)\" f=\"Crowdin.com.xml\"><securecookie host=\"^crowdin\\.com$\" 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 (partial)\" f=\"Crowdrise.com.xml\"><securecookie host=\"^\\.crowdrise\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Crrev.com\" f=\"Crrev.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"cru.fr (partial)\" 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\" default_off=\"failed ruleset test\" 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\" default_off=\"failed ruleset test\" 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)\" 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\" 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\" 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)\" default_off=\"failed ruleset test\" 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\" f=\"Cryptanalysis.xml\"><securecookie host=\"^cryptanalysis\\.eu$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cryptbin.com\" f=\"Cryptbin.com.xml\"><securecookie host=\"^cryptbin\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CryptedMemo.com\" 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.graphics\" f=\"Crypto.graphics.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Crypto.is (partial)\" f=\"Crypto.is.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CryptoBin.org\" f=\"CryptoBin.org.xml\"><securecookie host=\"^cryptobin\\.org$\" name=\".+\"/><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=\"CryptoCon.org\" f=\"CryptoCon.org.xml\"><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\" 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\" 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\" f=\"Crypto_Santa.xyz.xml\"><securecookie host=\"^\\.cryptosanta\\.xyz$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cryptocloud (partial)\" default_off=\"failed ruleset test\" f=\"Cryptocloud.xml\"><securecookie host=\"^(?:billing)?\\.cryptocloud\\.com$\" name=\".+\"/><securecookie host=\"^\\.cryptocloud\\.org$\" name=\".+\"/><rule from=\"^http://(billing\\.|www\\.)?cryptocloud\\.com/\" to=\"https://$1cryptocloud.com/\"/><rule from=\"^http://forum\\.cryptocloud\\.com/\" to=\"https://cryptocloud.org/\"/><rule from=\"^http://support\\.cryptocloud\\.com/\" to=\"https://cryptocloud.kayako.com/\"/><rule from=\"^http://(www\\.)?cryptocloud\\.org/\" to=\"https://$1cryptocloud.org/\"/></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=\"connection 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=\"Cryptomaths.com\" default_off=\"mismatched\" f=\"Cryptomaths.com.xml\"><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\" 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\"><securecookie host=\"^crypton\\.io$\" name=\".+\"/><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=\"mismatch\" f=\"Cryptonomicon.xml\"><rule from=\"^http://(?:www\\.)?cryptonomicon\\.com/\" to=\"https://cryptonomicon.com/\"/></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\" 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)\" 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\" 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\" f=\"CspBuilder.info.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"css Zen Garden\" default_off=\"mismatch\" f=\"Css-Zen-Garden.xml\"><rule from=\"^http://(?:www\\.)?csszengarden\\.com/\" to=\"https://csszengarden.com/\"/></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\" 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\" default_off=\"failed ruleset test\" f=\"Cts-strasbourg.eu.xml\"><rule from=\"^http://(?:www\\.)?cts-strasbourg\\.eu/\" to=\"https://www.cts-strasbourg.eu/\"/></ruleset>", "<ruleset name=\"CtsCDN.com (partial)\" f=\"CtsCDN.com.xml\"><rule from=\"^http://jscsecmat\\.ctscdn\\.com/\" to=\"https://jscsecmat.ctscdn.com/\"/></ruleset>", "<ruleset name=\"ctt.org\" 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\" 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://(?:www\\.)?|https://)cuidadodesalud\\.gov/\" to=\"https://www.cuidadodesalud.gov/\"/></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=\"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=\"Curate.Us (partial)\" default_off=\"failed ruleset test\" f=\"Curate.Us.xml\"><securecookie host=\"^\\.(?:secure\\.)?curate\\.us$\" name=\".+\"/><rule from=\"^http://(?:clp\\.ly|curate\\.us)/\" to=\"https://secure.curate.us/\"/><rule from=\"^http://(secure|www)\\.curate\\.us/\" to=\"https://$1.curate.us/\"/></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\" 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)\" 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=\"curiosity-driven.org\" f=\"Curiosity-driven.org.xml\"><rule from=\"^http://(?:www\\.)?curiosity-driven\\.org/\" to=\"https://curiosity-driven.org/\"/></ruleset>", "<ruleset name=\"Curious Cat\" f=\"Curiouscat.me.xml\"><rule from=\"^http:\" to=\"https:\"/><securecookie host=\"^curiouscat\\.me$\" name=\".+\"/></ruleset>", "<ruleset name=\"Curling World.com\" default_off=\"failed ruleset test\" f=\"Curling_World.com.xml\"><securecookie host=\"^\\.curlingworld\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></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://secure\\.currys\\.co\\.uk/\" to=\"https://secure.currys.co.uk/\"/></ruleset>", "<ruleset name=\"Curse\" 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\" f=\"CuteDigi.xml\"><securecookie host=\"^\\.www\\.cutedigi\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cuttlefish.com\" default_off=\"connection refused\" f=\"Cuttlefish.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cuusoo.com (partial)\" 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\" f=\"CyanogenMod.org-falsemixed.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CyanogenMod.org (partial)\" 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\" default_off=\"failed ruleset test\" 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=\"CyberGuerrilla.info\" f=\"CyberGuerilla.info.xml\"><securecookie host=\"^\\.cyberguerrilla\\.info$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CyberGuerrilla.org\" f=\"CyberGuerrilla.org.xml\"><securecookie host=\"^(?:\\w+\\.)?cyberguerrilla\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CyberPatrol.com (partial)\" f=\"CyberPatrol.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CyberPhoto AB\" 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=\"CyberShambles.com\" default_off=\"failed ruleset test\" f=\"CyberShambles.com.xml\"><securecookie host=\"^(?:www\\.)?cybershambles\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></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\" default_off=\"Bad Cert\" f=\"Cybercompex.org.xml\"><rule from=\"^http://(?:www\\.)?cybercompex\\.org/\" to=\"https://www.cybercompex.org/\"/></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\" 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=\"Cyberquests (Partial)\" f=\"Cyberquests.org.xml\"><rule from=\"^http://quiz-uscc\\.cyberquests\\.org/\" to=\"https://quiz-uscc.cyberquests.org/\"/></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\" f=\"Cyngn.com.xml\"><rule from=\"^http://builds\\.cyngn\\.com/\" to=\"https://d199yez36w5w8l.cloudfront.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cyph.com\" f=\"Cyph.com.xml\"><securecookie host=\"^\\.cyph\\.com$\" name=\".+\"/><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://(?:(lists\\.|otr\\.)|www\\.)?cypherpunks\\.ca/\" to=\"https://$1cypherpunks.ca/\"/></ruleset>", "<ruleset name=\"Cyphertite.com\" f=\"Cyphertite.com.xml\"><securecookie host=\"^(?:.*\\.)?cyphertite\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"cypouz.com\" platform=\"cacert\" f=\"Cypouz.com.xml\"><securecookie host=\"^photo\\.cypouz\\.com$\" 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\" f=\"Cyrus.Foundation.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"cyscon.net (partial)\" f=\"Cyscon.net.xml\"><rule from=\"^http://stats\\.cyscon\\.net/\" to=\"https://stats.cyscon.net/\"/></ruleset>", "<ruleset name=\"Cysec Labs.com\" f=\"Cysec_Labs.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Czech Technical University in Prague\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" 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=\"mismatch\" f=\"D-Technology-Weblog.xml\"><rule from=\"^http://(?:www\\.)?ditii\\.com/\" to=\"https://www.ditii.com/\"/></ruleset>", "<ruleset name=\"D.me\" 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\" 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=\"D66.nl\" f=\"D66.nl.xml\"><rule from=\"^http:\" to=\"https:\"/></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://www\\.dac\\.co\\.jp/\" to=\"https://www.dac.co.jp/\"/></ruleset>", "<ruleset name=\"DALnet\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" 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-analytics.net\" default_off=\"failed ruleset test\" f=\"DANTE-analytics.net.xml\"><securecookie host=\"^(?:www\\.)?dante-analytics\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></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=\"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 (false MCB)\" platform=\"mixedcontent\" f=\"DC_Power.eu.xml\"><securecookie host=\"^(?:w*\\.)?dcpower\\.eu$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DC Vote.org\" 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\" 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\" 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=\"mismatch\" 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\" default_off=\"failed ruleset test\" 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\" 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=\"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)\" 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=\"DL-rms.com\" f=\"DL-rms.com.xml\"><rule from=\"^http://content\\.dl-rms\\.com/\" to=\"https://content.dl-rms.com/\"/></ruleset>", "<ruleset name=\"DLitz.net\" f=\"DLitz.net.xml\"><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=\"DN.com\" f=\"DN.com.xml\"><securecookie host=\"^www\\.dn\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DN.dk (partial)\" 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=\"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=\"DNSCrypt.org\" f=\"DNSCrypt.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DNSCurve\" f=\"DNSCurve.xml\"><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 History.org\" f=\"DNS_History.org.xml\"><securecookie host=\"^dnshistory\\.org$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?dnshistory\\.org/\" to=\"https://dnshistory.org/\"/></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)\" 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://exchange\\.dnv\\.com/\" to=\"https://exchange.dnv.com/\"/></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\" f=\"DONGEnergy.xml\"><rule from=\"^http://dongenergy\\.dk/\" to=\"https://www.dongenergy.dk/\"/><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\"/><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)\" f=\"DTInt.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DTunnel\" platform=\"mixedcontent\" 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://social\\.dw\\.de/\" to=\"https://social.dw.de/\"/></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 (partial)\" default_off=\"expired, self-signed\" f=\"DYC.edu.xml\"><securecookie host=\"^\\.opensource\\.dyc\\.edu$\" name=\".+\"/><rule from=\"^http://(opensource|virtual)\\.dyc\\.edu/\" to=\"https://$1.dyc.edu/\"/></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=\"D Vatril.cz\" platform=\"cacert\" f=\"D_Vatril.cz.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Da.gd\" f=\"Da.gd.xml\"><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)\" default_off=\"expired\" f=\"Dafont.com.xml\"><exclusion pattern=\"^http://(?:www\\.)?dafont\\.com/(?:[\\w\\-]+\\.font$|css/|favicon\\.ico|forum/(?:$|read/)|img/|theme\\.php)\"/><rule from=\"^http://(?:img\\.|(www\\.))?dafont\\.com/\" to=\"https://$1dafont.com/\"/><rule from=\"^https://(www\\.)?dafont\\.com/([\\w\\-]+\\.font$|forum/(?:$|read/))\" to=\"http://$1dafont.com/$2\" downgrade=\"1\"/></ruleset>", "<ruleset name=\"Daft.ie\" default_off=\"causes image problems\" 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\" 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)\" 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)\" 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=\"Dagensgetaway.dk\" default_off=\"handshake fails\" f=\"Dagensgetaway.dk.xml\"><securecookie host=\"^(?:www)?\\.dagensgetaway\\.dk$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Daily Express (partial)\" default_off=\"Breaks site\" f=\"Daily-Express.xml\"><securecookie host=\"^www\\.express\\.co\\.uk$\" name=\".+\"/><rule from=\"^http://images\\.dailyexpress\\.co\\.uk/\" to=\"https://s3.amazonaws.com/images.dailyexpress.co.uk/\"/><rule from=\"^http://(?:www\\.)?express\\.co\\.uk/\" to=\"https://www.express.co.uk/\"/><rule from=\"^http://cdn\\.images\\.express\\.co\\.uk/\" to=\"https://d2gsbqw9zf5tyw.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Daily Herald\" 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)\" 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)\" 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=\"mismatch\" f=\"Dan-Bull.xml\"><securecookie host=\"^itsdanbull\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?itsdanbull\\.com/\" to=\"https://itsdanbull.com/\"/></ruleset>", "<ruleset name=\"Dan.me.uk\" f=\"Dan.me.uk.xml\"><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=\"dan blah.com (false MCB)\" platform=\"mixedcontent\" f=\"Dan_blah.com-falsemixed.xml\"><securecookie host=\"^\\.danblah\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"dan blah.com (partial)\" f=\"Dan_blah.com.xml\"><rule from=\"^http://(www\\.)?danblah\\.com/(?=modules/|sites/)\" to=\"https://$1danblah.com/\"/></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\" f=\"DandB.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"D&amp;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\" 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\" 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\" default_off=\"mismatched, self-signed\" f=\"Dark_Reading.com.xml\"><securecookie host=\"^\\.darkreading\\.com$\" name=\"^s_\\w+$\"/><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\" platform=\"cacert\" f=\"Darkfasel.net.xml\"><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\" 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)\" f=\"Das_Parlament.xml\"><rule from=\"^http://www\\.das-parlament\\.de/\" to=\"https://www.das-parlament.de/\"/></ruleset>", "<ruleset name=\"bitmovin GmbH\" 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)\" 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&#232;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=\"mismatch\" 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://secure\\.webmercs\\.com/\" to=\"https://secure.webmercs.com/\"/></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\" 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=\"Data.gov (partial)\" f=\"Data.gov.xml\"><exclusion pattern=\"^http://labs\\.data\\.gov/+(?!$|\\?)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://labs\\.data\\.gov/.*\" to=\"https://www.data.gov/labs\"/><rule from=\"^http:\" to=\"https:\"/></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\" default_off=\"failed ruleset test\" 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\" default_off=\"failed ruleset test\" 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\" 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\" default_off=\"failed ruleset test\" 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\" 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\" default_off=\"failed ruleset test\" 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)\" 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\" 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=\"Dataopedia.com (partial)\" default_off=\"failed ruleset test\" f=\"Dataopedia.com.xml\"><rule from=\"^http://cdn\\.dataopedia\\.com/\" to=\"https://d2hb7m70lgc5kn.cloudfront.net/\"/></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\" 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=\"dataskydd.net\" f=\"Dataskydd.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Datatilsynet\" default_off=\"failed ruleset test\" 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)\" default_off=\"failed ruleset test\" f=\"Datemas.de.xml\"><securecookie host=\"^web\\.datemas\\.de$\" name=\".+\"/><rule from=\"^http://web\\.datemas\\.de/\" to=\"https://web.datemas.de/\"/></ruleset>", "<ruleset name=\"Datenschutz-ist-Buergerrecht.de\" default_off=\"connection dropped\" 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=\"Dave Cross\" default_off=\"self-siged\" f=\"Dave_Cross.xml\"><rule from=\"^http://(?:www\\.)?dave\\.org\\.uk/\" to=\"https://dave.org.uk/\"/></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=\"mismatch\" f=\"David-Tisch.xml\"><rule from=\"^http://(?:www\\.)?davidtisch\\.com/\" to=\"https://www.davidtisch.com/\"/></ruleset>", "<ruleset name=\"David Adrian.org\" f=\"David_Adrian.org.xml\"><rule from=\"^http:\" to=\"https:\"/></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\" 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\" default_off=\"failed ruleset test\" 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=\"Dawsonera.com\" f=\"Dawsonera.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DayZ (Partial)\" default_off=\"Bad Cert\" f=\"DayZ.com.xml\"><rule from=\"^http://(?:www\\.)?dayz\\.com/\" to=\"https://www.dayz.com/\"/></ruleset>", "<ruleset name=\"DbackPolice.com\" default_off=\"connection 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\" 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\" default_off=\"failed ruleset test\" 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\" default_off=\"failed ruleset test\" f=\"Deaconess-Health-System.xml\"><exclusion pattern=\"^http://(?:www\\.)?deaconess\\.com/mobile(?:/|$)\"/><securecookie host=\"^(?:(?:www)?\\.)?deaconess\\.com$\" name=\".+\"/><rule from=\"^(?:http://(?:www\\.)?|https://)deaconess\\.com/\" to=\"https://www.deaconess.com/\"/></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://deakin\\.edu\\.au/\" to=\"https://deakin.edu.au/\"/></ruleset>", "<ruleset name=\"Deal Extreme\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" 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://sc\\.dealtime\\.com/\" to=\"https://sc.dealtime.com/\"/></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://cdn\\.dealerfire\\.com/\" to=\"https://cdn.dealerfire.com/\"/></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)\" 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=\"Dear FCC.org\" f=\"Dear_FCC.org.xml\"><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.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Debian-Administration.org (partial)\" 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 (self-signed)\" default_off=\"self-signed\" f=\"Debian-self-signed.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Debian.net (partial)\" f=\"Debian.net.xml\"><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\" 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\" 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=\"Decision Neuroscience Laboratory\" default_off=\"mismatch\" f=\"Decision-Neuroscience-Laboratory.xml\"><rule from=\"^http://(?:www\\.)?decisionneurosciencelab\\.org/\" to=\"https://decisionneurosciencelab.org/\"/></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\" default_off=\"failed ruleset test\" f=\"Deco.proteste.pt.xml\"><rule from=\"^http://(?:www\\.)?deco\\.proteste\\.pt/\" to=\"https://www.deco.proteste.pt/\"/></ruleset>", "<ruleset name=\"Decrypt CryptoLocker.com\" 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=\"Dee.su (partial)\" default_off=\"mismatched\" f=\"Dee.su.xml\"><securecookie host=\"^forum\\.dee\\.su$\" name=\".+\"/><rule from=\"^http://forum\\.dee\\.su/\" to=\"https://forum.dee.su/\"/></ruleset>", "<ruleset name=\"deekayen.net\" 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=\"mismatch\" 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=\"Deepbit.net\" default_off=\"missing certificate chain\" f=\"Deepbit.net.xml\"><rule from=\"^http://www\\.deepbit\\.net/\" to=\"https://deepbit.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Deepin (partial)\" f=\"Deepin.xml\"><rule from=\"^http://(packages|cdimage)\\.deepin\\.com/\" to=\"https://$1.linuxdeepin.com/\"/><rule from=\"^http://(packages)\\.deepin\\.org/\" to=\"https://$1.linuxdeepin.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Deezer.com\" 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=\"connection refused\" f=\"Defsounds.xml\"><securecookie host=\"^\\.defsounds\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Defuse.ca\" f=\"Defuse.ca.xml\"><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\" 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=\"Dejure.org\" f=\"Dejure.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Delaware Online (partial)\" default_off=\"failed ruleset test\" 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)\" default_off=\"failed ruleset test\" 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=\"mismatch\" 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.com\" f=\"Delicious.xml\"><securecookie host=\"^(?:.+\\.)?delicious\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Delicious Green Coffee.com\" 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=\"mismatch\" 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=\"^\\.dell\\.com$\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\"^(?:accessories|deals|ecomm|support\\.euro|m|marketing|premier|signin|support(?:apj|\\.software)?|channels\\.us)\\.dell\\.com$\" name=\".\"/><rule from=\"^http://(?:www-cdn\\.)?dell\\.com/\" to=\"https://www.dell.com/\"/><rule from=\"^https?://accessories-cdn\\.dell\\.com/\" to=\"https://accessories.dell.com/\"/><rule from=\"^http://i\\.dell\\.com/\" to=\"https://si.cdn.dell.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Delta.com\" 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=\"connection 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)\" 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=\"mismatch\" 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)\" f=\"Demand-Media.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Demand Progress\" f=\"Demand-Progress.xml\"><securecookie host=\"^(?:act)?\\.demandprogress\\.org$\" name=\".*\"/><rule from=\"^http://(act\\.|www\\.)?demandprogress\\.org/\" to=\"https://$1demandprogress.org/\"/><rule from=\"^http://s3\\.demandprogress\\.org/\" to=\"https://s3.amazonaws.com/s3.demandprogress.org/\"/></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=\"Demandware.com (mismatches)\" default_off=\"mismatch\" 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)\" 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=\"Demisto.com\" f=\"Demisto.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Democracy.io\" f=\"Democracy.io.xml\"><securecookie host=\"^democracy\\.io$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DemocracyInAction\" default_off=\"failed ruleset test\" f=\"DemocracyInAction.xml\"><securecookie host=\"^(?:.*\\.)?democracyinaction\\.org$\" name=\".+\"/><rule from=\"^http://((?:caf|hq-org2|hq-salsa|org2|salsa|secure|www2?)\\.)?democracyinaction\\.org/\" to=\"https://$1democracyinaction.org/\"/></ruleset>", "<ruleset name=\"DemocracyNow (partial)\" f=\"DemocracyNow.xml\"><rule from=\"^http://(www\\.)?democracynow\\.org/(?=(?:donate|images|resources|stylesheets)(?:$|[?/]))\" to=\"https://$1democracynow.org/\"/></ruleset>", "<ruleset name=\"Democrat and Chronicle (partial)\" default_off=\"failed ruleset test\" 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=\"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\" 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\" 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://g\\.denik\\.cz/\" to=\"https://g.denik.cz/\"/></ruleset>", "<ruleset name=\"Denis Matsuev\" 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://(www\\.)?dennikn\\.sk/\" to=\"https://dennikn.sk/\"/></ruleset>", "<ruleset name=\"denpa.moe\" f=\"Denpa.moe.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DENSO WAVE\" default_off=\"failed ruleset test\" 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=\"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\" 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=\"deprexis (partial)\" default_off=\"failed ruleset test\" f=\"Deprexis.xml\"><securecookie host=\"^.*\\.deprexis\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Der S&#228;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)\" f=\"Derby.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Derpibooru\" 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\" f=\"Designova.net.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Desire2learn.com\" default_off=\"failed ruleset test\" 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)\" default_off=\"failed ruleset test\" 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 (partial)\" default_off=\"expired\" f=\"Destructoid.xml\"><rule from=\"^http://bulk\\d\\.destructoid\\.com/\" to=\"https://bulk2.destructoid.com/\"/><rule from=\"^http://(?:www\\.)?destructoid\\.com/elephant/ul/\" to=\"https://bulk2.destructoid.com/ul/\"/></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)\" 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=\"mismatch\" 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 (partial)\" default_off=\"failed ruleset test\" f=\"DeusM.xml\"><securecookie host=\"^.*\\.deusm\\.com$\" name=\".*\"/><rule from=\"^http://(payment\\.)?deusm\\.com/\" to=\"https://$1deusm.com/\"/><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\" 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&#246;rse Group\" 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\" 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=\"mismatch\" 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\" default_off=\"mismatched, self-signed\" f=\"DevConf.cz.xml\"><securecookie host=\"^openshift\\.devconf\\.cz$\" name=\".+\"/><rule from=\"^http://(?:(openshift\\.)|www\\.)?devconf\\.cz/\" to=\"https://$1devconf.cz/\"/></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=\"Devimperium.com\" default_off=\"needs clearnet testing\" f=\"Devimperium.com.xml\"><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)\" 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\" f=\"DevonandCornwallPolice.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)\" default_off=\"cert warning\" f=\"Dezeen.com.xml\"><rule from=\"^http://static\\.dezeen\\.com/\" to=\"https://static.dezeen.com/\"/></ruleset>", "<ruleset name=\"Dezert Depot\" 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\" default_off=\"failed ruleset test\" 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)\" 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\" f=\"Diasp.eu.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Diasp.org (partial)\" f=\"Diasp.org.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\" 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\"><exclusion pattern=\"^http://[\\w-]+\\.dict\\.cc/dict/options\\.php\"/><rule from=\"^https://([\\w-]+)\\.dict\\.cc/dict/options\\.php\" to=\"http://$1.dict.cc/dict/options.php\" downgrade=\"1\"/><rule from=\"^http://dict\\.cc/\" to=\"https://www.dict.cc/\"/><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\" f=\"Die.net.xml\"><rule from=\"^http://(?:www\\.)?die\\.net/\" to=\"https://www.die.net/\"/></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=\"DiffNow\" f=\"DiffNow.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=\"Diffuse.ca\" default_off=\"failed ruleset test\" f=\"Diffuse.ca.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Difi.no (partial)\" 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\" 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)\" 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\" 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\" 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=\"Digitab Portals\" default_off=\"failed ruleset test\" f=\"Digitab-Portals.xml\"><securecookie host=\"^www\\.digitabportals\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?digitabportals\\.com/\" to=\"https://www.digitabportals.com/\"/></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=\"Digital-Future.it\" default_off=\"521\" f=\"Digital-Future.it.xml\"><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/)\"/><exclusion pattern=\"^http://info\\.digitalriver\\.com/(?!css/|images/|js/|rs/)\"/><securecookie host=\"^\\.digitalriver\\.com$\" name=\"^utag_\\w+$\"/><securecookie host=\"^(?:\\.?developers|gc|store)\\.digitalriver\\.com$\" name=\".+\"/><rule from=\"^http://info\\.digitalriver\\.com/\" to=\"https://na-sj03.marketo.com/\"/><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=\"mismatch\" 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\" 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)\" 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)\" 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\" f=\"Digitalfreedom.io.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Digitaria (partial)\" default_off=\"failed ruleset test\" 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\" 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://a\\.dilcdn\\.com/\" to=\"https://a.dilcdn.com/\"/></ruleset>", "<ruleset name=\"dinahosting.com\" f=\"Dinahosting.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"dinahosting.pt\" 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\" default_off=\"failed ruleset test\" 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=\"DirectAdvert.ru (partial)\" 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)\" 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)\" 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=\"Disability.gov (partial)\" f=\"Disability.gov.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></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)\" default_off=\"failed ruleset test\" 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=\"Discogs (partial)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Discogs.xml\"><rule from=\"^http://(?:www\\.)?discogs\\.com/((?:css|developers|users|images?)/|help$)\" to=\"https://www.discogs.com/$1\"/><rule from=\"^http://images\\.discogsmp3\\.com/\" to=\"https://images.juno.co.uk/\"/><rule from=\"^http://s\\.dsimg\\.com/\" to=\"https://www.discogs.com/\"/><rule from=\"^http://s\\.pixogs\\.com/\" to=\"https://s.pixogs.com/\"/></ruleset>", "<ruleset name=\"discojuice.org (partial)\" f=\"Discojuice.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Disconnect.me\" 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=\"Discordapp.com\" f=\"Discordapp.com.xml\"><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&amp;cds_mag_code=DSD&amp;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\" 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\" f=\"Discover_Signage.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Discovery.com (partial)\" 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\" 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\" 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)\" 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://secure\\.disney\\.co\\.jp/\" to=\"https://secure.disney.co.jp/\"/></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)\" 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 (partial)\" default_off=\"self-signed\" f=\"Distributed.net.xml\"><rule from=\"^http://(?:www\\.)?distributed\\.net/\" to=\"https://www.distributed.net/\"/><rule from=\"^http://blogs\\.distributed\\.net/\" to=\"https://blogs.distributed.net/\"/></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 (partial)\" default_off=\"self-signed\" f=\"Diygadget.com.xml\"><rule from=\"^http://(?:www\\.)?diygadget\\.com/(?=media/|skin/)\" to=\"https://www.diygadget.com/\"/></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=\"Django Project.com\" f=\"Django.xml\"><securecookie host=\"^\\w\" name=\".\"/><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://panel\\.djangoeurope\\.com/\" to=\"https://panel.djangoeurope.com/\"/></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=\"dlvr.it\" f=\"Dlvr.it.xml\"><rule from=\"^http://(?:(static\\.)|www\\.)?dlvr\\.it/\" to=\"https://$1dlvr.it/\"/></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\" 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\" 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\" 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\" 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://www\\.doclerholding\\.com/\" to=\"https://www.doclerholding.com/\"/></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\" f=\"Docstorepro.com.xml\"><securecookie host=\"^\\.docstorepro\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Doctor Trusted.org\" 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=\"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)\" default_off=\"failed ruleset test\" f=\"Dods_People.com.xml\"><rule from=\"^http://(?:photos\\.|www\\.)?dodspeople\\.com/\" to=\"https://photos.dodspeople.com/\"/></ruleset>", "<ruleset name=\"DoesNotWork.eu\" f=\"DoesNotWork.eu.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Dof.dk\" 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=\"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&amp;cof=FORID:1&amp;\"/><rule from=\"^http://search\\.dokuwiki\\.org/+\" to=\"https://www.google.com/cse?cx=009387785156597221763:mxrsu3_lmbs&amp;cof=FORID:1&amp;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\" 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\" default_off=\"failed ruleset test\" 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)\" 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\" 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\" 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=\"^(?:partner\\.|www\\.)?domaining\\.com$\" 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\" default_off=\"failed ruleset test\" 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\" 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=\"Domestic Abuse Helpline for Men and Women\" default_off=\"mismatch\" f=\"Domestic-Abuse-Hotline-for-Men-and-Women.xml\"><rule from=\"^http://(?:www\\.)?dahmw\\.org/\" to=\"https://dahmw.org/\"/></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\" default_off=\"missing certificate chain\" 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)\" 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 (partial)\" default_off=\"expired, mismatched, self-signed\" f=\"Doom9.xml\"><securecookie host=\"^forum\\.doom9\\.org$\" name=\".+\"/><rule from=\"^http://forum\\.doom9\\.org/\" to=\"https://forum.doom9.org/\"/></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=\"Dopplr.com\" default_off=\"200 error page\" f=\"Dopplr.xml\"><rule from=\"^http://(?:www\\.)?dopplr\\.com/\" to=\"https://www.dopplr.com/\"/></ruleset>", "<ruleset name=\"Dorian Color\" default_off=\"failed ruleset test\" f=\"Dorian-Color.xml\"><securecookie host=\"^(?:.*\\.)?doriancolor\\.com$\" name=\".*\"/><rule from=\"^http://65\\.181\\.183\\.157/\" to=\"https://doriancolor.com/\"/><rule from=\"^http://(www\\.)?doriancolor\\.com/\" to=\"https://$1doriancolor.com/\"/></ruleset>", "<ruleset name=\"dormproject.ch\" f=\"Dormproject.ch.xml\"><rule from=\"^http://secure\\.dormproject\\.ch/\" to=\"https://secure.dormproject.ch/\"/></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)\" 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\" 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://(?:www\\.)?dotomi\\.com/(display|storage|universal)/\" to=\"https://dotomi.squarespace.com/$1/\"/><rule from=\"^http://(ams-login|login)\\.dotomi\\.com/\" to=\"https://$1.dotomi.com/\"/></ruleset>", "<ruleset name=\"dotplex.de\" f=\"Dotplex.de.xml\"><securecookie host=\"^(www\\.|secure\\.)?dotplex\\.de$\" name=\".+\"/><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=\"dotultima.com\" default_off=\"failed ruleset test\" f=\"Dotultima.com.xml\"><securecookie host=\"^\\.dotultima\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Douban (partial)\" f=\"Douban.com.xml\"><securecookie host=\".\" name=\"^__utm\"/><rule from=\"^http://fm\\.douban\\.com/+\" to=\"https://douban.fm/\"/><rule from=\"^http://img([36])\\.douban\\.com/\" to=\"https://img$1.doubanio.com/\"/><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=\"^\\w\" name=\".\"/><rule from=\"^http://cdn\\.engine\\.phn\\.doublepimp\\.com/\" to=\"https://engine.phn.doublepimp.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Douyu\" f=\"Douyu.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=\"mismatch\" f=\"Dovetail_Services-problematic.xml\"><rule from=\"^http://(?:www\\.)?dovetailservices\\.com/\" to=\"https://www.dovetailservices.com/\"/></ruleset>", "<ruleset name=\"Dovetail Services (partial)\" 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=\"Downloadster\" default_off=\"failed ruleset test\" f=\"Downloadster.xml\"><securecookie host=\"^(?:w*\\.)?downloadster\\.net$\" name=\".+\"/><rule from=\"^http://(www\\.)?downloadster\\.net/\" to=\"https://$1downloadster.net/\"/><rule from=\"^http://media\\.downloadster\\.net/\" to=\"https://d227ccvjlkns26.cloudfront.net/\"/></ruleset>", "<ruleset name=\"DownstreamToday.com\" 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=\"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\" default_off=\"expired\" 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)\" 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=\"Draugr.de\" f=\"Draugr.de.xml\"><securecookie host=\"^\\.draugr\\.de$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></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\" f=\"Drchrono.com.xml\"><securecookie host=\"^(?:www\\.)?drchrono\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DreamHost.com (partial)\" 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\" 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\" default_off=\"failed ruleset test\" 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=\"mismatch\" 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)\" 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\" f=\"DriveStyle_Insure.xml\"><securecookie host=\"^(?:www\\.)?drivestyle.co.uk$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"drivee (partial)\" 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://([\\w-]+\\.)?dropbox\\.com/\" to=\"https://$1dropbox.com/\"/><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=\"Dropdeadpaper.com\" f=\"Dropdeadpaper.com.xml\"><securecookie host=\"^(www\\.)?dropdeadpaper\\.com\" 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\" 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 Forum\" platform=\"mixedcontent\" f=\"Drug_Forum.xml\"><securecookie host=\"^(?:www\\.)?drugs-forum\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Drug Science.org.uk\" default_off=\"mismatched\" f=\"Drug_Science.org.uk.xml\"><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.org\" f=\"Drupal.xml\"><rule from=\"^http:\" to=\"https:\"/></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\" 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=\"^duck\\.co$\" name=\".*\"/><rule from=\"^http://www\\.ddg\\.gg/\" to=\"https://ddg.gg/\"/><rule from=\"^http://www\\.duck\\.co/\" to=\"https://duck.co/\"/><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\" 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\" 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)\" default_off=\"failed ruleset test\" 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=\"dustri.org\" f=\"Dustri.org.xml\"><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\" default_off=\"failed ruleset test\" 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)\" 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\" default_off=\"failed ruleset test\" 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\" 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=\"connection 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\" 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)\" 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\" default_off=\"failed ruleset test\" 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\" default_off=\"failed ruleset test\" 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\" default_off=\"failed ruleset test\" 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://www\\.e-magin\\.se/\" to=\"https://www.e-magin.se/\"/></ruleset>", "<ruleset name=\"E-mielenterveys\" 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\" default_off=\"failed ruleset test\" 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)\" 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=\"E14N\" default_off=\"failed ruleset test\" f=\"E14N.xml\"><securecookie host=\"^e14n\\.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://shopping\\.e2enetworks\\.com/\" to=\"https://shopping.e2enetworks.com/\"/></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=\"EAM-GmbH.com\" f=\"EAM-GmbH.com.xml\"><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\" default_off=\"failed ruleset test\" 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=\"eBanking - aber sicher!\" f=\"EBAS.ch.xml\"><securecookie host=\"^(?:.*\\.)?ebas\\.ch$\" name=\".+\"/><securecookie host=\"^(?:.*\\.)?ebankingabersicher\\.ch$\" name=\".+\"/><securecookie host=\"^(?:.*\\.)?ebankingmasicuro\\.ch$\" name=\".+\"/><securecookie host=\"^(?:.*\\.)?ebankingentoutesecurite\\.ch$\" name=\".+\"/><securecookie host=\"^(?:.*\\.)?ebankingbutsecure\\.ch$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"EBSCO-content.com\" default_off=\"failed ruleset test\" f=\"EBSCO-content.com.xml\"><rule from=\"^http://global\\.ebsco-content\\.com/\" to=\"https://global.ebsco-content.com/\"/></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=\"mismatch\" 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://login\\.ec21\\.com/\" to=\"https://login.ec21.com/\"/></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\" 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)\" f=\"ECampus.no.xml\"><rule from=\"^http://tjenester\\.ecampus\\.no/\" to=\"https://getsatisfaction.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"eCash.io\" default_off=\"failed ruleset test\" f=\"ECash.io.xml\"><securecookie host=\"^(?:w*\\.)?ecash\\.io$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?bitservicex\\.com/\" to=\"https://ecash.io/\"/><rule from=\"^http://(www\\.)?ecash\\.io/\" to=\"https://$1ecash.io/\"/></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\" default_off=\"failed ruleset test\" 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\" 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\" 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=\"mismatches\" 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)\" f=\"EDI7.lu.xml\"><securecookie host=\"^www2\\.edi7\\.lu$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Edp.pt\" 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=\"eDigitalResearch.com (partial)\" 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)\" 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\" 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\"><securecookie host=\"^.*\\.eff\\.org$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"EFTPlus.asia\" default_off=\"failed ruleset test\" f=\"EFTPlus.asia.xml\"><securecookie host=\"^(?:w*\\.)?eftplus\\.asia$\" name=\".+\"/><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)\" 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\" 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)\" default_off=\"failed ruleset test\" f=\"ELabor.xml\"><securecookie host=\"^workforceportal\\.elabor\\.com$\" name=\".+\"/><rule from=\"^http://workforceportal\\.elabor\\.com/\" to=\"https://workforceportal.elabor.com/\"/></ruleset>", "<ruleset name=\"eLatinos.com\" 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=\"^members\\.elearnsecurity\\.com$\" name=\".+\"/><rule from=\"^http://((?:blog|members|www)\\.)?elearnsecurity\\.com/\" to=\"https://$1elearnsecurity.com/\"/></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=\"mismatch\" 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)/\"/><exclusion pattern=\"^http://support\\.optimizely\\.com/(?:help|pkg|stylesheets)/\"/><exclusion pattern=\"^http://support\\.preyproject\\.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/\"/><rule from=\"^http://support\\.optimizely\\.com/\" to=\"https://support.optimizely.com/\"/><rule from=\"^http://support\\.preyproject\\.com/\" to=\"https://support.preyproject.com/\"/></ruleset>", "<ruleset name=\"Lighthouse app.com (mismatches)\" default_off=\"Certificate mismatch\" f=\"ENTP-mismatches.xml\"><securecookie host=\"^help\\.lighthouseapp\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></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://billing\\.eoreality\\.net/\" to=\"https://billing.eoreality.net/\"/></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=\"ERA.int\" f=\"ERA.int.xml\"><rule from=\"^http://(?:www\\.)?era\\.int/\" to=\"https://www.era.int/\"/></ruleset>", "<ruleset name=\"ERC.edu\" 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\" 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\" default_off=\"failed ruleset test\" 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\" f=\"ESTA_Visas.org.uk.xml\"><securecookie host=\"^(?:www\\.|\\.)?estavisas\\.org\\.uk$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ESTA Visas.org\" 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://secure\\.esupport\\.com/\" to=\"https://secure.esupport.com/\"/></ruleset>", "<ruleset name=\"ETAO.com (partial)\" f=\"ETAO.com.xml\"><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)\" 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=\"mismatch\" 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)\" default_off=\"failed ruleset test\" 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=\"mismatch\" 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\" 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://(load(?:eu|m|r|us|xl)?|sandbox)\\.exelator\\.com/\" to=\"https://$1.exelator.com/\"/><rule from=\"^http://loadan\\.exelator\\.com/\" to=\"https://load.exelator.com/\"/></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-Download\" default_off=\"failed ruleset test\" f=\"EZ-Download.xml\"><securecookie host=\"^(?:www)?\\.ez-download\\.com$\" name=\".+\"/><rule from=\"^http://(downloader\\.|www\\.)?ez-download\\.com/\" to=\"https://$1ez-download.com/\"/><rule from=\"^http://media\\.ez-download\\.com/\" to=\"https://d227ccvjlkns26.cloudfront.net/\"/></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=\"EZCrypt\" f=\"EZCrypt.xml\"><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 &quot;Find Internet access numbers&quot; 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 &amp; 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)\" 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)\" 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)\" default_off=\"failed ruleset test\" 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\" 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\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Eastern Collegiate Taekwondo Conference\" default_off=\"mismatch\" 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)\" 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)\" 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)\" 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=\"easyPDF Cloud\" default_off=\"failed ruleset test\" f=\"EasyPDF_Cloud.xml\"><securecookie host=\"^(?:www)?\\.easypdfonline\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></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&#233;bergement\" 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\" default_off=\"failed ruleset test\" 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://img\\.ebyrcdn\\.net/\" to=\"https://img.ebyrcdn.net/\"/></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\" default_off=\"failed ruleset test\" 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)\" f=\"Ecm74.com.xml\"><rule from=\"^http://(?:www\\.)?ecm74\\.com/(?!rp/\\d+/ContestForm\\.clsp)\" to=\"https://ecm74.com/\"/></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)\" 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\" f=\"Ed_Uncovered.com.xml\"><securecookie host=\"^\\.eduncovered\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Edarabia.com\" 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\" f=\"Ederdrom.de.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Edfil.es\" default_off=\"failed ruleset test\" f=\"Edfil.es.xml\"><rule from=\"^http://(?:www\\.)?edfil\\.es/\" to=\"https://www.edfil.es/\"/></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=\"Edge Snapbacks.com\" default_off=\"failed ruleset test\" f=\"Edge_Snapbacks.com.xml\"><securecookie host=\"^(?:w*\\.)?edgesnapbacks\\.com$\" name=\".+\"/><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://store\\.edgerunner\\.com/\" to=\"https://store.edgerunner.com/\"/></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\" 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\" 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://(?:www\\.)?eduroam\\.org/\" to=\"https://www.eduroam.org/\"/></ruleset>", "<ruleset name=\"eduroam ES\" f=\"Eduroam_ES.xml\"><rule from=\"^http://www\\.eduroam\\.es/\" to=\"https://www.eduroam.es/\"/></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 Snowden.com\" f=\"Edward_Snowden.com.xml\"><rule from=\"^http://edwardsnowden\\.com/\" to=\"https://www.edwardsnowden.com/\"/><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)\" default_off=\"failed ruleset test\" 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=\"mismatch\" 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\" 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://(?:www\\.)?effi\\.org/\" to=\"https://effi.org/\"/></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://track\\.effiliation\\.com/\" to=\"https://track.effiliation.com/\"/></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=\"connection dropped\" f=\"EgoPay.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Egotastic\" f=\"Egotastic.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Egypt Independent\" default_off=\"expired, mismatch, self-signed\" f=\"Egypt-Independent.xml\"><rule from=\"^http://(?:www\\.)?egyptindependent\\.com/\" to=\"https://www.egyptindependent.com/\"/></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\" 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\" 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 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\" 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://secure\\.elcomsoft\\.com/\" to=\"https://secure.elcomsoft.com/\"/></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\" default_off=\"failed ruleset test\" 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)\" 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=\"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\" 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\" default_off=\"failed ruleset test\" 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\" 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=\"mismatch\" 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)\" 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|cdn)\\.els-cdn\\.com/\" to=\"https://origin-$1.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)\" 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\" default_off=\"failed ruleset test\" 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=\"Emanuel Duss.ch\" f=\"Emanuel_Duss.ch.xml\"><rule from=\"^http://(?:www\\.)?emanuelduss\\.ch/\" to=\"https://emanuelduss.ch/\"/></ruleset>", "<ruleset name=\"Emap Awards\" f=\"Emap_Awards.xml\"><securecookie host=\"^(?:www\\.)?emapawards\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Embed.ly (partial)\" 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)\" 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\" 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=\"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=\"Emilstahl.dk\" f=\"Emilstahl.dk.xml\"><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=\"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\" 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=\"EnmuNewz Network\" default_off=\"mismatch\" 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\" 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\" f=\"Encosia.xml\"><securecookie host=\"^(?:.+\\.)?encosia\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Encrypt.Today\" default_off=\"shows another domain\" f=\"Encrypt.Today.xml\"><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\" f=\"Encryptmas.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Encryptr.org\" 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\" default_off=\"failed ruleset test\" 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\" default_off=\"failed ruleset test\" 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=\"EnderUNIX (partial)\" default_off=\"expired, mismatch, self-signed\" f=\"EnderUNIX.xml\"><rule from=\"^http://(?:www\\.)?enderunix\\.org/\" to=\"https://enderunix.org/\"/></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\" 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)\" 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)\" 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\" 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\" f=\"English-Heritage_shop.org.uk.xml\"><securecookie host=\"^\\.english-heritageshop\\.org\\.uk$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"English Defence League.net (false MCB)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"English_Defence_League.net-falsemixed.xml\"><securecookie host=\"^(?:w*\\.)?englishdefenceleague\\.net$\" name=\".+\"/><rule from=\"^http://(www\\.)?englishdefenceleague\\.net/(?!ezportal/icons/|favicon\\.ico|gallery/thumb_|Themes/)\" to=\"https://$1englishdefenceleague.net/\"/></ruleset>", "<ruleset name=\"English Defence League.net (partial)\" f=\"English_Defence_League.net.xml\"><rule from=\"^http://(www\\.)?englishdefenceleague\\.net/(?=ezportal/icons/|favicon\\.ico|gallery/thumb_|Themes/)\" to=\"https://$1englishdefenceleague.net/\"/></ruleset>", "<ruleset name=\"EnhanceIE.com\" default_off=\"mismatch\" 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://(?:www\\.)?enigmail\\.net/\" to=\"https://www.enigmail.net/\"/></ruleset>", "<ruleset name=\"Eniro (partial)\" default_off=\"failed ruleset test\" 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\" 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://members\\.enlightenedperl\\.org/\" to=\"https://members.enlightenedperl.org/\"/></ruleset>", "<ruleset name=\"Enlightenment.org\" f=\"Enlightenment.xml\"><securecookie host=\".\" name=\".\"/><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\" platform=\"cacert\" f=\"Ens-lyon.org.xml\"><rule from=\"^http://((?:blog|cvs|git|svn|toccata|web|wiki|www)\\.)?ens-lyon\\.org/\" to=\"https://$1ens-lyon.org/\"/></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=\"mismatch\" 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=\"Entanet (partial)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Entanet.xml\"><securecookie host=\"^(?:.*\\.)?enta\\.net$\" name=\".*\"/><securecookie host=\"^(?:.*\\.)?voipuserportal\\.co\\.uk$\" name=\".*\"/><rule from=\"^http://enta\\.net/\" to=\"https://www.enta.net/\"/><rule from=\"^http://(billing|synergi|www)\\.enta\\.net/\" to=\"https://$1.enta.net/\"/><rule from=\"^http://(www\\.)?voipuserportal\\.co\\.uk/\" to=\"https://$1voipuserportal.co.uk/\"/></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=\"mismatch\" 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://shop\\.entheogene\\.de/\" to=\"https://shop.entheogene.de/\"/></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)\" 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=\"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=\"Epls.gov\" default_off=\"failed ruleset test\" f=\"Epls.gov.xml\"><securecookie host=\"(?:^|\\.)epls\\.gov$\" name=\".+\"/><rule from=\"^(?:http://(?:www\\.)?|https://)epls\\.gov/\" to=\"https://www.epls.gov/\"/></ruleset>", "<ruleset name=\"Epoch.com\" f=\"Epoch.com.xml\"><securecookie host=\"^(?:(?:billing|reports|www)\\.)?epoch\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"EpochStats.com\" 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\" 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\" f=\"Erinn.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Erlang (partial)\" default_off=\"expired, mismatched\" f=\"Erlang.xml\"><rule from=\"^http://(?:www\\.)?erlang\\.org/(?=\\w+\\.css$|doc/|images/|upload/)\" to=\"https://www.erlang.org/\"/></ruleset>", "<ruleset name=\"Ernst &amp; 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)\" 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\" 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=\"mismatch\" 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\" default_off=\"failed ruleset test\" f=\"Estonia_Evoting.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Estonian Public Broadcasting (partial)\" f=\"Estonian_Public_Broadcasting.xml\"><securecookie host=\"^(?:.+\\.)?err\\.ee$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"etapestry.com\" 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=\"^(?:www\\.)?etarget\\.hu$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Etarget.ro\" default_off=\"expired\" f=\"Etarget.ro.xml\"><securecookie host=\"^(?:www\\.)?etarget\\.ro$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Etarget.sk\" f=\"Etarget.sk.xml\"><securecookie host=\"^(?:www\\.)?etarget\\.sk$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Etarget.cz\" default_off=\"missing certificate chain\" 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\" f=\"Eth0.nl.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"EthACK.org\" f=\"EthACK.org.xml\"><securecookie host=\"^(?:www\\.)?ethack\\.org$\" name=\".+\"/><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)\" 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://www\\.ethnologue\\.com/\" to=\"https://www.ethnologue.com/\"/></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\" 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\" 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)\" 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\" default_off=\"failed ruleset test\" 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\" 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=\"Etsy (partial)\" f=\"Etsy.xml\"><exclusion pattern=\"^http://(?:de\\.|fr\\.|www\\.)?etsy\\.com/(?:\\w\\w/)?(?:apps|browse|error\\.php|forums(?:_user_threads\\.php)?|listing/\\d+|people|reopen_account\\.php|teams|treasury)(?:$|\\?|/)\"/><rule from=\"^http://((?:blog|de|fr|ny-image\\d|system|www)\\.)?etsy\\.com/\" to=\"https://$1etsy.com/\"/><rule from=\"^http://(img\\d|site|www)\\.etsystatic\\.com/\" to=\"https://$1.etsystatic.com/\"/></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=\"mismatch\" 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\" 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=\"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://banner\\.euroads\\.se/\" to=\"https://banner.euroads.se/\"/></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\" 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://forum\\.eurofurence\\.org/\" to=\"https://forum.eurofurence.org/\"/></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 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\" default_off=\"failed ruleset test\" f=\"European-Bioinformatics-Institute.xml\"><rule from=\"^http://www\\.ebi\\.co\\.uk/\" to=\"https://www.ebi.co.uk/\"/></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=\"mismatch\" 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)\" default_off=\"failed ruleset test\" 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=\"EuropeanCensorship.eu (partial)\" default_off=\"failed ruleset test\" f=\"EuropeanCensorshop.eu.xml\"><rule from=\"^http:\" to=\"https:\"/></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)\" 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\" f=\"Evanced.info.xml\"><securecookie host=\"^(?:ca\\.)?evanced\\.info$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Evaske.com\" 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://eventbookingonline\\.com/\" to=\"https://eventbookingonline.com/\"/></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)\" f=\"Eventpoint.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Events.ch\" 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\" f=\"Evermeet.cx.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Evernote.com (problematic)\" default_off=\"mismatched\" f=\"Evernote-problematic.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Evernote.com (partial)\" f=\"Evernote.xml\"><securecookie host=\"^(?:.*\\.)?evernote\\.com$\" 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=\"mismatch\" 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\" 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=\"everything4bet\" default_off=\"failed ruleset test\" f=\"Everything4bet.xml\"><securecookie host=\"^(?:w*\\.)?everything4bet\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></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)\" 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=\"connection 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 (partial)\" default_off=\"failed ruleset test\" f=\"EvoTronix.xml\"><rule from=\"^http://(?:www\\.)?evotronix(?:\\.netdna-cdn)?\\.com/\" to=\"https://evotronix.com/\"/><rule from=\"^https://f(aq|orum)\\.evotronix\\.com/\" to=\"http://f$1.evotronix.com/\" downgrade=\"1\"/></ruleset>", "<ruleset name=\"EvolMed.com\" f=\"EvolMed.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Evoliatis.com\" default_off=\"mismatched, self-signed\" f=\"Evoliatis.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=\"Evolve Socially.org (false MCB)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Evolve_Socially.org-falsemixed.xml\"><securecookie host=\"^(?:w*\\.)?evolvesocially\\.org$\" name=\".+\"/><rule from=\"^http://(www\\.)?evolvesocially\\.org/(?!favicon\\.ico|wp-content/|wp-includes/)\" to=\"https://$1evolvesocially.org/\"/></ruleset>", "<ruleset name=\"Evolve Socially.org (partial)\" default_off=\"failed ruleset test\" f=\"Evolve_Socially.org.xml\"><rule from=\"^http://(www\\.)?evolvesocially\\.org/(?=favicon\\.ico|wp-content/|wp-includes/)\" to=\"https://$1evolvesocially.org/\"/></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=\"mismatches\" 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)\" 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\" 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)\" 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://www\\.executiveinterviews\\.com/\" to=\"https://www.executiveinterviews.com/\"/></ruleset>", "<ruleset name=\"Exede (partial)\" f=\"Exede.xml\"><securecookie host=\"^order\\.exede\\.com$\" name=\".+\"/><rule from=\"^http://order\\.exede\\.com/\" to=\"https://order.exede.com/\"/></ruleset>", "<ruleset name=\"Exeter Friendly Society\" 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 Linux (CAcert, partial)\" platform=\"cacert\" default_off=\"failed ruleset test\" f=\"Exherbo-Linux.xml\"><securecookie host=\"^bugs\\.exherbo\\.org$\" name=\".*\"/><rule from=\"^http://bugs\\.exherbo\\.org/\" to=\"https://bugs.exherbo.org/\"/></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://traq\\.exitec\\.com/\" to=\"https://traq.exitec.com/\"/></ruleset>", "<ruleset name=\"Exlibris.ch\" f=\"Exlibris.ch.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Exmasters.com (partial)\" default_off=\"failed ruleset test\" f=\"Exmasters.com.xml\"><securecookie host=\"^admin\\.exmasters\\.com$\" name=\".+\"/><rule from=\"^http://admin\\.exmasters\\.com/\" to=\"https://admin.exmasters.com/\"/></ruleset>", "<ruleset name=\"Exmo.com\" 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=\"ExoticAds.com (partial)\" f=\"ExoticAds.com.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Expanded Support.com\" default_off=\"connection dropped\" 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)\" 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-VPN.com\" f=\"Express-VPN.xml\"><rule from=\"^http://(?:www\\.)express-vpn\\.com/\" to=\"https://www.express-vpn.com/\"/></ruleset>", "<ruleset name=\"expresscoin.com (partial)\" 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 (partial)\" f=\"Extatic.org.xml\"><rule from=\"^http://(?:secure|www)\\.extatic\\.org/\" to=\"https://secure.extatic.org/\"/></ruleset>", "<ruleset name=\"Extensible Web Manifesto.org\" f=\"Extensible_Web_Manifesto.org.xml\"><rule from=\"^http://www\\.extensiblewebmanifesto\\.org/\" to=\"https://extensiblewebmanifesto.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Extension Defender.com\" f=\"Extension_Defender.com.xml\"><securecookie host=\"^\\.extensiondefender\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Extensis.com (mismatched)\" default_off=\"mimatched\" f=\"Extensis.com-problematic.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Extensis.com (partial)\" 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\" 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\" default_off=\"failed ruleset test\" f=\"Extreme_Digital.xml\"><securecookie host=\"^www\\.edigital\\.hu$\" name=\".+\"/><rule from=\"^http://www\\.edigital\\.hu/\" to=\"https://www.edigital.hu/\"/></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://reports\\.eyereturn\\.com/\" to=\"https://reports.eyereturn.com/\"/></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)\" 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=\"f3mimages.com\" default_off=\"failed ruleset test\" f=\"F3mimages.com.xml\"><securecookie host=\"^\\.f3mimages\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"F5 (mismatches)\" default_off=\"mismatch\" 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) (CAcert)\" platform=\"cacert mixedcontent\" f=\"FAU.org.xml\"><rule from=\"^http://(?:www\\.)?fau\\.org/\" to=\"https://www.fau.org/\"/></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=\"FB18_Forum\" default_off=\"failed ruleset test\" f=\"FB18.de.xml\"><rule from=\"^http://(?:www\\.)?fb18\\.de/\" to=\"https://www.fb18.de/\"/></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=\"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\" f=\"FFSG.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FFTLive.org\" 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=\"FHI.se\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"FHI.se.xml\"><rule from=\"^http://www\\.fhi\\.se/\" to=\"https://www.fhi.se/\"/><rule from=\"^http://fhi\\.se/\" to=\"https://fhi.se/\"/></ruleset>", "<ruleset name=\"FHNW.ch (partial)\" f=\"FHNW.ch.xml\"><rule from=\"^http://aai-logon\\.fhnw\\.ch/\" to=\"https://aai-logon.fhnw.ch/\"/></ruleset>", "<ruleset name=\"FHS.se\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" 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\" 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)\" 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=\"FSF (self-signed)\" default_off=\"self-signed\" f=\"FSF-mismatches.xml\"><rule from=\"^http://(?:www\\.)?fsfla\\.org/\" to=\"https://www.fsfla.org/\"/></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)\" f=\"FSFE.org.xml\"><securecookie host=\"^(?:fellowship|vote)\\.fsfe\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FSFEurope.org (partial)\" f=\"FSFEurope.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\" default_off=\"failed ruleset test\" 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=\"FTC Complaint Assistant.gov\" f=\"FTC_Complaint_Assistant.gov.xml\"><securecookie host=\".\" name=\".\"/><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\" f=\"FVEYdocs.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FX Prime.com\" 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\" default_off=\"failed ruleset test\" 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 Franke.de\" f=\"Fabian_Franke.de.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\" 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://static\\.ak\\.facebook\\.com/\" to=\"https://s-static.ak.facebook.com/\"/><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\" 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)\" 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=\"mismatch\" 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)\" 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\" 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\" 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\" default_off=\"mixedcontent\" f=\"Fanli.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Fanoe.dk\" 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=\"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=\"Farmaciforbundet.se\" default_off=\"failed ruleset test\" f=\"Farmaciforbundet.se.xml\"><rule from=\"^http://farmaciforbundet\\.se/\" to=\"https://www.farmaciforbundet.se/\"/><rule from=\"^http://www\\.farmaciforbundet\\.se/\" to=\"https://www.farmaciforbundet.se/\"/></ruleset>", "<ruleset name=\"Farmers Development Organization (partial)\" default_off=\"expired, self-signed\" f=\"Farmers_Development_Organization.xml\"><rule from=\"^http://(?:www\\.)?fdopk\\.org/\" to=\"https://fdopk.org/\"/></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=\"Fashionara.com (false MCB)\" platform=\"mixedcontent\" f=\"Fashionara.com-falsemixed.xml\"><securecookie host=\"^\\.fashionara\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Fashionara.com (partial)\" f=\"Fashionara.com.xml\"><rule from=\"^http://(www\\.)?fashionara\\.com/(?=favicon\\.ico|customer/|media/|skin/)\" to=\"https://$1fashionara.com/\"/><rule from=\"^http://static\\.fashionara\\.com/\" to=\"https://d1x2ae5wsotp3k.cloudfront.net/\"/><rule from=\"^http://staticassets\\.fashionara\\.com/\" to=\"https://s3-ap-southeast-1.amazonaws.com/staticassets.fashionara.com/\"/></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=\"mismatch\" 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=\"mismatch\" 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)\" default_off=\"failed ruleset test\" 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://favstar\\.fm/\" to=\"https://favstar.fm/\"/></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\" f=\"Fax_Robot.com.xml\"><securecookie host=\"^\\.faxrobot\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Fazekas\" 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://forum\\.feathercoin\\.com/\" to=\"https://forum.feathercoin.com/\"/></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\" default_off=\"failed ruleset test\" 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)\" 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\" f=\"Federation-of-American-Scientists.xml\"><securecookie host=\".*\\.fas\\.org$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Federation of Small Businesses (partial)\" default_off=\"failed ruleset test\" 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\" f=\"Fedora.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Fedora Magazine.org\" f=\"Fedora_Magazine.org.xml\"><securecookie host=\"^(www\\.)?fedoramagazine\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Fedora Project.org (problematic)\" default_off=\"mismatched, self-signed, untrusted root\" f=\"Fedora_Project-problematic.xml\"><exclusion pattern=\"^http://koji\\.fedoraproject\\.org/packages/\"/><securecookie host=\"^\\w\" 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\" 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\" 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)\" 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\" f=\"Feide.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Feisty Duck.com\" f=\"Feisty_Duck.com.xml\"><rule from=\"^http://store\\.feistyduck\\.com/\" to=\"https://feistyduck.myshopify.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Feit Electric Company (partial)\" platform=\"mixedcontent\" 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\" 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=\"Fermi National Accelerator Laboratory (partial)\" f=\"Fermi_National_Accelerator_Laboratory.xml\"><securecookie host=\"^(?:.*\\.)?fnal\\.gov$\" name=\".+\"/><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=\"FetchBack.com (partial)\" f=\"FetchBack.xml\"><exclusion pattern=\"^http://imp\\.fetchback\\.com/serve/optout/pt-out\\.html\"/><exclusion pattern=\"^http://www\\.fetchback\\.com/\"/><securecookie host=\"^\\.fetchback\\.com$\" name=\"^(act|afl|apd|bpd|clk|cmp|cre|fbid|eng|kwd|ppd|scg|sit|uat|uid)$\"/><rule from=\"^http:\" to=\"https:\"/></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)\" 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\" 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://dkg\\.fifthhorseman\\.net/\" to=\"https://dkg.fifthhorseman.net/\"/></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://s3\\.fightforthefuture\\.org/\" to=\"https://s3.amazonaws.com/s3.fightforthefuture.org/\"/><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\" default_off=\"failed ruleset test\" 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)\" 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\" 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\" 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 (partial)\" 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=\"Filippo.io\" f=\"Filippo.io.xml\"><securecookie host=\"^\\.filippo\\.io$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></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)\" 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)\" default_off=\"failed ruleset test\" 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)\" 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 Cryptography.com\" platform=\"cacert\" default_off=\"weak hash\" f=\"Financial-Cryptography.xml\"><rule from=\"^http:\" to=\"https:\"/></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)\" f=\"Financial_Times.xml\"><exclusion pattern=\"^http://markets\\.ft\\.com/(?!favicon\\.ico|RESEARCH/uploadhandler/)\"/><securecookie host=\"^\\.ft\\.com$\" name=\"^(?:AYSC|AYSC_C|FTUserTrack)$\"/><rule from=\"^http://s4\\.media\\.ft\\.com/\" to=\"https://s4.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\" f=\"FinansWatch.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Finansportalen.no\" f=\"Finansportalen.no.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Finanssialan Keskusliitto\" 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)\" 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://connectssl\\.find\\.ly/\" to=\"https://connectssl.find.ly/\"/></ruleset>", "<ruleset name=\"FindLegalForms.com (partial)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"FindLegalForms.com.xml\"><rule from=\"^http://(?:www\\.)?findlegalforms\\.com/\" to=\"https://www.findlegalforms.com/\"/></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\" 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\" 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=\"FireFart.at\" f=\"FireFart.at.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FireHost (partial)\" 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)\" 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\" 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)\" 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 (false MCB)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"First_Class_Magazine.se-falsemixed.xml\"><securecookie host=\"^(?:w*\\.)?firstclassmagazine\\.se$\" name=\".+\"/><rule from=\"^http://(www\\.)?firstclassmagazine\\.se/(?!favicon\\.ico|wp-content/|wp-includes/)\" to=\"https://$1firstclassmagazine.se/\"/></ruleset>", "<ruleset name=\"First Class Magazine.se (partial)\" f=\"First_Class_Magazine.se.xml\"><exclusion pattern=\"^http://(?:www\\.)?firstclassmagazine\\.se/(?!favicon\\.ico|wp-content/|wp-includes/)\"/><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=\"First Look.org\" f=\"First_Look.org.xml\"><securecookie host=\"^\\.firstlook\\.org$\" 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\" f=\"Firsts.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FishBase.us\" default_off=\"handshake failure\" f=\"FishBase.us.xml\"><securecookie host=\"^www\\.fishbase\\.us$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?fishbase\\.us/\" to=\"https://www.fishbase.us/\"/></ruleset>", "<ruleset name=\"FishNet Security.com\" 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\" 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=\"Fiskeriverket.se\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Fiskeriverket.se.xml\"><rule from=\"^http://fiskeriverket\\.se/\" to=\"https://www.fiskeriverket.se/\"/><rule from=\"^http://www\\.fiskeriverket\\.se/\" to=\"https://www.fiskeriverket.se/\"/></ruleset>", "<ruleset name=\"FitBit\" f=\"FitBit.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FitStudio.com (partial)\" 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)\" 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=\"Fixing_Tao.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\" 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=\"mismatch\" 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=\"Flashback.org\" f=\"Flashback.org.xml\"><rule from=\"^http://flashback\\.org/\" to=\"https://www.flashback.org/\"/><rule from=\"^http://www\\.flashback\\.org/\" to=\"https://www.flashback.org/\"/><rule from=\"^http://static\\.flashback\\.org/\" to=\"https://static.flashback.org/\"/></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)\" 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://flavors\\.me/\" to=\"https://flavors.me/\"/></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=\"connection 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\"><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=\"mismatch\" 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 (redirects)\" default_off=\"redirect loops\" f=\"Flinq.de.xml\"><rule from=\"^http://(?:www\\.)?flinq\\.de/\" to=\"https://www.flinq.de/\"/></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\" f=\"FlixDen.xml\"><securecookie host=\"^(?:www\\.)?flixden\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Flixster (partial)\" 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\" default_off=\"failed ruleset test\" 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=\"mismatch\" 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 (false MCB)\" platform=\"mixedcontent\" f=\"FlowingData.com-falsemixed.xml\"><securecookie host=\"^\\.flowingdata\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FlowingData.com (partial)\" default_off=\"failed ruleset test\" f=\"FlowingData.com.xml\"><exclusion pattern=\"^http://(?:www\\.)?flowingdata\\.com/+(?!\\?custom-css=|wp-content/|wp-includes/)\"/><rule from=\"^http://((?:jobs|media|www)\\.)?flowingdata\\.com/\" to=\"https://$1flowingdata.com/\"/></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://releases\\.flowplayer\\.org/\" to=\"https://releases.flowplayer.org/\"/></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 Cameras\" f=\"Flying_Cameras.xml\"><securecookie host=\"^\\.(?:www\\.)?flyingcameras\\.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=\"mismatch\" 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)\" default_off=\"failed ruleset test\" f=\"Fnfismd.com.xml\"><rule from=\"^http://carenet\\.fnfismd\\.com/\" to=\"https://carenet.fnfismd.com/\"/></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)\" f=\"Focus.de.xml\"><exclusion pattern=\"^http://m\\.focus\\.de/+(?!favicon\\.ico|resources/)\"/><exclusion pattern=\"^http://www\\.focus\\.de/+(?!resources/)\"/><rule from=\"^http://p4\\.focus\\.de/\" to=\"https://p0.focus.de/\"/><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\" 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)\" 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)\" 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\" default_off=\"failed ruleset test\" 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=\"FoodSafety.gov\" default_off=\"Akamai\" f=\"FoodSafety.gov.xml\"><rule from=\"^http://(?:www\\.)?foodsafety\\.gov/\" to=\"https://www.foodsafety.gov/\"/></ruleset>", "<ruleset name=\"Food Hub\" default_off=\"failed ruleset test\" f=\"Food_Hub.xml\"><securecookie host=\"^(?:www\\.)?foodhub\\.co\\.nz$\" 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 &amp; Water Watch (partial)\" f=\"Food_and_Water_Watch.xml\"><securecookie host=\"^(?:w*\\.)?foodandwaterwatch\\.org$\" name=\".+\"/><rule from=\"^http://act\\.foodandwaterwatch\\.org/site/Donation\" to=\"https://secure3.convio.net/fww/site/Donation\"/><rule from=\"^http://(www\\.)?foodandwaterwatch\\.org/\" to=\"https://$1foodandwaterwatch.org/\"/></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\" default_off=\"Bad certificate\" 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://secure\\.footprint\\.net/\" to=\"https://secure.footprint.net/\"/></ruleset>", "<ruleset name=\"Forbes.com (partial)\" f=\"Forbes.com.xml\"><securecookie host=\"^www\\.newsletters\\.forbes\\.com$\" name=\"^fc\\w+$\"/><rule from=\"^http://(?:www\\.)?newsletters\\.forbes\\.com/(?=DRHM/|favicon\\.ico|store\\?Action=(?:AddItemToRequisition|DisplayPage)(?:$|[?/]))\" to=\"https://www.newsletters.forbes.com/\"/><rule from=\"^http://(e-subscriptions|safesource|secureads)\\.forbes\\.com/\" to=\"https://$1.forbes.com/\"/></ruleset>", "<ruleset name=\"Forbes.com (expired)\" default_off=\"expired\" f=\"Forbes_Magazine-mixed.xml\"><rule from=\"^http://blogs\\.forbes\\.com/\" to=\"https://blogs.forbes.com/\"/></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\" f=\"Forecast.io.xml\"><securecookie host=\"^developer\\.forecast\\.io$\" name=\"\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ForeignPolicy.com (partial)\" 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://cookie\\.fdih\\.dk/\" to=\"https://cookie.fdih.dk/\"/></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\" f=\"ForestSangha.org.xml\"><securecookie host=\"^(?:www)?(?:\\.)?forestsangha\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Foresters\" default_off=\"failed ruleset test\" 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\" 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)\" 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\" 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\" 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=\"Formspring (broken)\" default_off=\"invalid certificates\" f=\"Formspring.xml\"><rule from=\"^http://(?:www\\.)?formspring\\.me/\" to=\"https://www.formspring.me/\"/><rule from=\"^http://([\\w\\-]+)\\.formspring\\.me/\" to=\"https://$1.formspring.me/\"/></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)\" default_off=\"failed ruleset test\" 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\" default_off=\"failed ruleset test\" 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\" f=\"FortiGuard.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Fortinet.com (partial)\" f=\"Fortinet.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Fortnite.com\" 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\" default_off=\"failed ruleset test\" f=\"Fortum.xml\"><securecookie host=\"^(?:.*\\.)?fortum\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?fortum\\.com/\" to=\"https://www.fortum.com/\"/></ruleset>", "<ruleset name=\"Fortumo\" 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\" 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)\" f=\"Forumatic.xml\"><securecookie host=\"^\\.forumatic\\.com$\" name=\"^PHPSESSID$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Forums.nexusmods.com\" f=\"Forums.nexusmods.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Forums f&#252;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=\"FotoPigeon.com\" f=\"FotoPigeon.xml\"><securecookie host=\"^(?:www\\.)?fotopigeon\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Fotoblur\" 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=\"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\" f=\"Fourecks.de.xml\"><rule from=\"^http://www\\.fourecks\\.de/\" to=\"https://fourecks.de/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Fourmilab (partial)\" f=\"Fourmilab.xml\"><exclusion pattern=\"^http://(?:www\\.)?fourmilab\\.ch/(?:cgi-bin/(?:uncgi/)?Earth\\?|images/(?:c1995o1/$|flash/g-audio-player\\.swf))\"/><securecookie host=\"^www\\.fourmilab\\.ch$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?fourmilab\\.ch/\" to=\"https://www.fourmilab.ch/\"/><rule from=\"^https://www\\.fourmilab\\.ch/images/c1995o1/$\" to=\"http://www.fourmilab.ch/images/c1995o1/\" downgrade=\"1\"/><rule from=\"^https://www\\.fourmilab\\.ch/cship/figures/Gdoppler1\\.html\" to=\"http://www.fourmilab.ch/cship/figures/Gdoppler1.html\" downgrade=\"1\"/><rule from=\"^https://(?:www\\.)?fourmilab\\.ch/cgi-bin/(?:uncgi/)?Earth\\?\" to=\"http://www.fourmilab.ch/cgi-bin/Earth?\" downgrade=\"1\"/></ruleset>", "<ruleset name=\"Foursquare.com (partial)\" 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)\" 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\" 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)\" 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\" 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\" 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\" default_off=\"failed ruleset test\" 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=\"frcanalytics.com\" f=\"Frcanalytics.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Fred and Pickles\" f=\"Fred_and_Pickles.xml\"><securecookie host=\"^\\.fredandpickles\\.co\\.uk$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Fredericia.dk\" 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\" 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=\"FreeBin\" default_off=\"Certificate mismatch\" f=\"FreeBin.xml\"><rule from=\"^http://(?:www\\.)?freebin\\.org/\" to=\"https://freebin.org/\"/></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\" 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\" 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=\"FreeVPS.us\" f=\"FreeVPS.us.xml\"><securecookie host=\"^freevps\\.us$\" name=\".+\"/><rule from=\"^http://www\\.freevps\\.us/\" to=\"https://freevps.us/\"/><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\" 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:\" 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\" 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\" 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\" 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)\" 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\" f=\"Freebaselibs.com.xml\"><rule from=\"^http://freebaselibs\\.com/\" to=\"https://static.freebase.com/\"/></ruleset>", "<ruleset name=\"Freecause.com\" 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=\"connection 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=\"Freedom.Press\" f=\"Freedom.Press.xml\"><securecookie host=\"^\\.freedom\\.press$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FreedomBoxFoundation.org\" f=\"FreedomBoxFoundation.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\" 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\" 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)\" 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=\"Freescale.com (partial)\" 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)\" 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\" 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\" 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:\" 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)\" 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)\" default_off=\"failed ruleset test\" 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=\"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\" 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 of WikiLeaks\" default_off=\"failed ruleset test\" f=\"Friends-of-WikiLeaks.xml\"><securecookie host=\"^wlfriends\\.org$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?wlfriends\\.org/\" to=\"https://wlfriends.org/\"/></ruleset>", "<ruleset name=\"Friendster (partial)\" 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\" default_off=\"failed ruleset test\" f=\"Fromorbit.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Frontier Network and Computing Systems\" 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 Linux\" default_off=\"mismatched, self-signed\" f=\"Frugalware_Linux.xml\"><securecookie host=\"^.+\\.frugalware\\.org$\" name=\".+\"/><rule from=\"^http://(?:((?:bugs|forums|webmail|wiki)\\.)|www\\.)?frugalware\\.org/\" to=\"https://$1frugalware.org/\"/></ruleset>", "<ruleset name=\"Fruit Ninja (partial)\" default_off=\"failed ruleset test\" f=\"Fruit_Ninja.xml\"><securecookie host=\"^store\\.fruitninja\\.com$\" name=\".+\"/><rule from=\"^http://store\\.fruitninja\\.com/\" to=\"https://store.fruitninja.com/\"/></ruleset>", "<ruleset name=\"Frys (mismatches)\" default_off=\"mismatch\" 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=\"mismatch\" 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\" f=\"Fuelcdn.com.xml\"><securecookie host=\"^\\.fuelcdn\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Fuerza Popular (partial)\" 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)\" default_off=\"failed ruleset test\" 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\" 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\" default_off=\"failed ruleset test\" 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://about\\.fundinfo\\.com/\" to=\"https://about.fundinfo.com/\"/></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://bugs\\.funtoo\\.org/\" to=\"https://bugs.funtoo.org/\"/></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\" default_off=\"failed ruleset test\" 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\" 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\" 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\" default_off=\"failed ruleset test\" 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=\"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)\" 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=\"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=\"Fuzzing-Project.org\" f=\"Fuzzing-Project.org.xml\"><securecookie host=\"^blog\\.fuzzing-project\\.org$\" name=\".+\"/><rule from=\"^http://((?:blog|crashes|www)\\.)?fuzzing-project\\.org/\" to=\"https://$1fuzzing-project.org/\"/></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=\"connection refused\" f=\"G-Central.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"G DATA Software (partial)\" 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=\"g10 Code (partial)\" default_off=\"mismatched, self-signed\" f=\"G10_Code.xml\"><rule from=\"^http://(?:www\\.)?g10code\\.com/\" to=\"https://g10code.com/\"/><rule from=\"^http://(bugs|kerckhoffs)\\.g10code\\.com/\" to=\"https://$1.g10code.com/\"/></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\" default_off=\"failed ruleset test\" 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\" 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\" 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)\" 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)\" 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)\" f=\"GEANT.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GE Money\" f=\"GEMoney.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GENEVI.org (false MCB)\" platform=\"mixedcontent\" f=\"GENEVI.org-falsemixed.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GENEVI.org (partial)\" 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=\"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\" 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 (partial)\" default_off=\"broken\" f=\"GHacks.net.xml\"><rule from=\"^http://cdn\\.ghacks\\.net/\" to=\"https://ghacks-ghacks.netdna-ssl.com/\"/></ruleset>", "<ruleset name=\"GHash.IO\" 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)\" 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=\"GLAD (Gay &amp; Lesbian Advocates &amp; Defenders)\" platform=\"mixedcontent\" f=\"GLAD.xml\"><rule from=\"^http://(?:www\\.)?glad\\.org/\" to=\"https://www.glad.org/\"/><rule from=\"^http://([a-zA-Z0-9\\-]+)\\.glad\\.org/\" to=\"https://$1.glad.org/\"/></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)\" 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\" f=\"GNU.io.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GNU.org (partial)\" f=\"GNU.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://(?:www\\.)?classpath\\.org/$\" to=\"https://www.gnu.org/software/classpath/\"/><rule from=\"^http://mail\\.gnu\\.org/\" to=\"https://lists.gnu.org/\"/><rule from=\"^http://sv\\.gnu\\.org/+\" to=\"https://savannah.gnu.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GNU.pl\" f=\"GNU.pl.xml\"><rule from=\"^http://gnu\\.pl/\" to=\"https://www.gnu.pl/\"/><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=\"GNUnet.org\" f=\"GNUnet.xml\"><securecookie host=\"^(?:.*\\.)?gnunet\\.org$\" name=\".+\"/><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\" 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)\" 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=\"GP2X.de (partial)\" default_off=\"Certificate mismatch\" f=\"GP2X.de.xml\"><rule from=\"^http://(?:www\\.)?gp2x\\.de/shop\" to=\"https://gp2x.de/shop\"/></ruleset>", "<ruleset name=\"GPFI\" default_off=\"failed ruleset test\" f=\"GPFI.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GPGTools.org (partial)\" f=\"GPGTools.xml\"><exclusion pattern=\"http://support\\.gpgtools\\.org/\"/><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)\" 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\"><rule from=\"^http://(?:www\\.)?(cvsweb\\.|forums\\.|pax\\.)?grsecurity\\.net/\" to=\"https://$1grsecurity.net/\"/><securecookie host=\"^\\.forums\\.grsecurity\\.net$\" name=\".*\"/></ruleset>", "<ruleset name=\"GR&#220;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)\" f=\"GSA.gov.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GSFC.org\" default_off=\"failed ruleset test\" f=\"GSFC.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GSI Commerce\" default_off=\"mismatch\" 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=\"GStreamer (partial)\" f=\"GStreamer.xml\"><rule from=\"^http://cdn\\.gstreamer\\.com/\" to=\"https://d2688lj8lursqz.cloudfront.net/\"/></ruleset>", "<ruleset name=\"GTC's Online\" 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=\"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=\"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\" 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://wiki\\.galaxyproject\\.org/\" to=\"https://wiki.galaxyproject.org/\"/></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\" 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\" 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://secure\\.gamblingcommission\\.gov\\.uk/\" to=\"https://secure.gamblingcommission.gov.uk/\"/></ruleset>", "<ruleset name=\"Gambling Portal Webmasters Association (partial)\" f=\"Gambling_Portal_Webmasters_Association.xml\"><rule from=\"^http://certify\\.gpwa\\.org/\" to=\"https://certify.gpwa.org/\"/></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://www\\.gamespot\\.com/\" to=\"https://www.gamespot.com/\"/></ruleset>", "<ruleset name=\"GameSpot (partial)\" f=\"GameSpot.xml\"><securecookie host=\"^\\.gamespot\\.com$\" name=\"^(?:AD_SESSION|ads_firstpg)$\"/><securecookie host=\"^(?:auth|us)\\.gamespot\\.com$\" 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\" 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=\"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=\"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 (partial)\" default_off=\"failed ruleset test\" f=\"Gametracker.com.xml\"><rule from=\"^http://(?:www\\.)?gametracker\\.com/\" to=\"https://www.gametracker.com/\"/><rule from=\"^http://image\\.www\\.gametracker\\.com/\" to=\"https://image.www.gametracker.com/\"/></ruleset>", "<ruleset name=\"Gamezebo\" default_off=\"failed ruleset test\" 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)\" 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\" default_off=\"failed ruleset test\" 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\" 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&amp;$3$4\"/><rule from=\"^http://uk\\.gandi\\.net/([^?#]*)(?:\\?([^#]+))?(#.*)?$\" to=\"https://www.gandi.net/$1?lang=en&amp;$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\" 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=\"Garoa.net\" default_off=\"failed ruleset test\" f=\"Garoa.net.xml\"><rule from=\"^http:\" to=\"https:\"/></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\\?(?:.+&amp;)?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)\" 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=\"mismatch\" 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=\"gavinhungry.com\" default_off=\"failed ruleset test\" f=\"Gavinhungry.com.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://cache\\.gawker\\.com/\" to=\"https://cache.gawkerassets.com/\"/><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\" default_off=\"failed ruleset test\" 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=\"mismatch\" f=\"Gayakuman.xml\"><rule from=\"^http://(?:www\\.)?gayakuman\\.com/\" to=\"https://www.gayakuman.com/\"/></ruleset>", "<ruleset name=\"Gazeta.ru\" f=\"Gazeta.ru.xml\"><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 (false MCB)\" platform=\"cacert mixedcontent\" 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 (mismatched)\" default_off=\"Certificate mismatch\" f=\"Geek.com-problematic.xml\"><securecookie host=\"^(?:.*\\.)?geek\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?geek\\.com/\" to=\"https://www.geek.com/\"/></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=\"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\" 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)\" 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=\"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)\" 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://(?:www\\.)?geizhals\\.at/\" to=\"https://geizhals.at/\"/><rule from=\"^http://(forum|gewinnspiel|unternehmen)\\.geizhals\\.at/\" to=\"https://$1.geizhals.at/\"/></ruleset>", "<ruleset name=\"Geizhals.de\" f=\"Geizhals.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Gem.co (partial)\" 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)\" f=\"Gemalto.com.xml\"><securecookie host=\"^(?:boutique|webstore)\\.gemalto\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Gemini.com\" f=\"Gemini.com.xml\"><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&#233;mklub\" 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\" 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=\"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\" default_off=\"failed ruleset test\" f=\"Genesee_Photo_Systems.xml\"><securecookie host=\"^\\.(?:geneseephoto|okpartypix)\\.com$\" name=\".+\"/><rule from=\"^http://(www\\.)?(?:geneseephoto|okpartypix)\\.com/\" to=\"https://$1geneseephotos.com/\"/></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\" 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)\" f=\"Gentoo.xml\"><exclusion pattern=\"^http://(?:distfiles|forums-web1)\\.gentoo\\.org/\"/><securecookie host=\".*\\.gentoo\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GentooQuebec.org\" default_off=\"expired\" f=\"GentooQuebec.org.xml\"><securecookie host=\"^\\.?gentooquebec\\.org$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?gentooquebec\\.org/\" to=\"https://gentooquebec.org/\"/></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\" default_off=\"failed ruleset test\" f=\"GeoAmigo.xml\"><securecookie host=\"^(?:www\\.)?geoamigo\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GeoCoder.ca\" 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)\" 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&amp;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)\" 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\" f=\"Gephi.xml\"><securecookie host=\"^.+\\.gephi\\.org$\" name=\".+\"/><rule from=\"^http://((?:consortium|forum|marketplace|wiki|www)\\.)?gephi\\.org/\" to=\"https://$1gephi.org/\"/></ruleset>", "<ruleset name=\"Geraspora\" default_off=\"failed ruleset test\" f=\"Geraspora.xml\"><rule from=\"^http://(?:www\\.)?pod\\.geraspora\\.de/\" to=\"https://pod.geraspora.de/\"/></ruleset>", "<ruleset name=\"German Academic Exchange Service\" default_off=\"failed ruleset test\" 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\" default_off=\"failed ruleset test\" 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\" default_off=\"failed ruleset test\" 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\" 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\" default_off=\"failed ruleset test\" 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=\"GetPersonas.com\" f=\"GetPersonas.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\" 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)\" 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 Pelican.com\" default_off=\"expired, mismatched\" platform=\"cacert mixedcontent\" f=\"Get_Pelican.com.xml\"><rule from=\"^http://((?:blog|docs|www)\\.)?getpelican\\.com/\" to=\"https://$1getpelican.com/\"/></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\" 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\" 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\" 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\" 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)\" 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://secure\\.getprice\\.com\\.au/\" to=\"https://secure.getprice.com.au/\"/></ruleset>", "<ruleset name=\"Getsatisfaction.com (partial)\" 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)\" 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://content\\.etilize\\.com/\" to=\"https://content.etilize.com/\"/></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=\"Ghostery.com\" f=\"Ghostery.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ghostery Enterprise.com\" 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\" default_off=\"self-signed\" f=\"GiNaC.de.xml\"><rule from=\"^http://www\\.ginac\\.de/\" to=\"https://www.ginac.de/\"/></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=\"Gifsauce\" default_off=\"Certificate mismatch\" f=\"Gifsauce.xml\"><rule from=\"^http://(?:www\\.)?gifsauce\\.us/\" to=\"https://gifsauce.us/\"/></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=\"gifyo.com (partial)\" default_off=\"400, expired, missing certificate chain\" f=\"Gifyo.xml\"><securecookie host=\"^(?:www\\.)?gifyo\\.com$\" 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\" f=\"GigaSize.xml\"><securecookie host=\"^(?:.*\\.)?gigasize\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Gigabyte.com (partial)\" f=\"Gigabyte.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><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://www\\.gigantti\\.fi/\" to=\"https://www.gigantti.fi/\"/></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\" default_off=\"failed ruleset test\" 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)\" 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\" 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=\"Ginkel.com (partial)\" f=\"Ginkel.com.xml\"><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://media10\\.giphy\\.com/\" to=\"https://giphygifs.s3.amazonaws.com/\"/><rule from=\"^http://www\\.giphy\\.com/\" to=\"https://giphy.com/\"/><rule from=\"^http://((?:api|i|media\\d*)\\.)?giphy\\.com/\" to=\"https://$1giphy.com/\"/></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\" 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=\"GitCafe.com (partial)\" f=\"GitCafe.xml\"><securecookie host=\"^www\\.gitcafe\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GitCop.com\" f=\"GitCop.com.xml\"><securecookie host=\"^gitcop\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GitLab.com (partial)\" f=\"GitLab.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><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\"><securecookie host=\"^(?:.*\\.)?github\\.com$\" name=\".+\"/><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\"><exclusion pattern=\"^http://(?:blog|en)\\.gitorious\\.org/\"/><exclusion pattern=\"^http://issues\\.gitorious\\.org/+(?!$|\\?)\"/><securecookie host=\".*\\.gitorious\\.org$\" name=\".+\"/><rule from=\"^http://issues\\.gitorious\\.org/+(?=$|\\?)\" to=\"https://gitorious.org/projects/gitorious/issues\"/><rule from=\"^http://status\\.gitorious\\.org/\" to=\"https://gitorious-status.herokuapp.com/\"/><rule from=\"^http://([^/:@\\.]+\\.)?gitorious\\.org/\" to=\"https://$1gitorious.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\" 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)\" 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)\" f=\"Glasgow.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Glass Craft &amp; 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\"><exclusion pattern=\"^http://resources\\.glassdoor\\.com/(?!/*(?:$|\\?|css/|images/|rs/))\"/><securecookie host=\"^\\.\" name=\"^(?:__cfduid$|_gat?$|_gat_|cf_clearance$)\"/><securecookie host=\"^(?!resources\\.)\\w\" name=\".\"/><rule from=\"^http://resources\\.glassdoor\\.com/(?=/*(?:cs|image|r)s/)\" to=\"https://na-abm.marketo.com/\"/><rule from=\"^http://resources\\.glassdoor\\.com/.*\" to=\"https://www.glassdoor.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Glasses.com (partial)\" 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://s\\.glbimg\\.com/\" to=\"https://s.glbimg.com/\"/></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://ads\\.glispa\\.com/\" to=\"https://ads.glispa.com/\"/></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)\" 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=\"connection dropped\" 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\" default_off=\"failed ruleset test\" f=\"GlobalTestSupply.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 Amici\" default_off=\"expired\" f=\"Global_Amici.xml\"><securecookie host=\"^\\.globalamicistore\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?globalamicistore\\.com/\" to=\"https://www.globalamicistore.com/\"/></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)\" 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\" 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\" 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://store\\.globalresearch\\.ca/\" to=\"https://store.globalresearch.ca/\"/></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\" 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\" 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\" default_off=\"failed ruleset test\" 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=\"TheGlobeAndMail (cert warning)\" default_off=\"akamai\" f=\"GlobeAndMail.xml\"><rule from=\"^http://(?:www\\.)?theglobeandmail\\.com/\" to=\"https://www.theglobeandmail.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)\" 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\" 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\" 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&#225;zium Maty&#225;&#353;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=\"Gnosis Software\" default_off=\"Certificate mismatch\" f=\"Gnosis-Software.xml\"><rule from=\"^http://(?:www\\.)?gnosis\\.cx/\" to=\"https://gnosis.cx/\"/></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 (self-signed)\" default_off=\"self-signed\" f=\"GnuPG.org-problematic.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GnuPG.org (partial)\" 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=\"connection 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)\" f=\"GoDaddy.xml\"><securecookie host=\"^(?:.*\\.)?godaddy\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GoDaddy mobile.com (partial)\" 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\" default_off=\"failed ruleset test\" f=\"GoEmerchant.xml\"><securecookie host=\"^(?:secure)\\.gomerchant\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GoExplore.net\" 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\" default_off=\"failed ruleset test\" 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\" 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\" 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\" 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=\"connection dropped\" 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=\"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)\" 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\" 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\" f=\"Golem.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GolfLink.com (partial)\" default_off=\"failed ruleset test\" 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=\"Golf Digest (partial)\" f=\"Golf_Digest.xml\"><exclusion pattern=\"^http://(?:www\\.)?golfdigest\\.com/(?!css/|images/|favicon\\.ico$|sandbox/)\"/><securecookie host=\"^www\\.golfdigestinsiders\\.com$\" name=\".+\"/><rule from=\"^http://(?:secure\\.|www\\.)?golfdigest\\.com/\" to=\"https://secure.golfdigest.com/\"/><rule from=\"^http://subscribe\\.golfdigest\\.com/\" to=\"https://subscribe.golfdigest.com/\"/><rule from=\"^http://(www\\.)?golfdigestinsiders\\.com/\" to=\"https://$1golfdigestinsiders.com/\"/></ruleset>", "<ruleset name=\"Golfsuisse.ch (partial)\" platform=\"mixedcontent\" f=\"Golfsuisse.ch.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Gondor\" f=\"Gondor.xml\"><securecookie host=\".+\\.gondor\\.co$\" name=\".+\"/><securecookie host=\"^gondor\\.io$\" name=\".+\"/><rule from=\"^http://([\\w-]+)\\.gondor\\.co/\" to=\"https://$1.gondor.co/\"/><rule from=\"^http://(www\\.)?gondor\\.io/\" to=\"https://$1gondor.io/\"/></ruleset>", "<ruleset name=\"Goo.im\" default_off=\"expired\" f=\"Goo.im.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Good.net\" default_off=\"failed ruleset test\" f=\"Good.net.xml\"><exclusion pattern=\"^http://www\\.good\\.net/\"/><rule from=\"^http://([^/]+)/\" to=\"https://$1/\"/></ruleset>", "<ruleset name=\"GoodCrypto.com\" f=\"GoodCrypto.com.xml\"><securecookie host=\"^(?:www\\.)?goodcrypto\\.com$\" name=\".+\"/><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=\"mismatches\" 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\" 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[0-9]\\.google\\.com/ocsp\"/><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\" 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/\"/><rule from=\"^http://([\\w-]+\\.)?googlesource\\.com/\" to=\"https://$1googlesource.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&amp;\"/><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&amp;\"/><rule from=\"^http://(?:www\\.)?google\\.(?:at|ch|de)/videohp\\?\" to=\"https://www.google.com/videohp?hl=de&amp;\"/><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&amp;\"/><rule from=\"^http://(?:www\\.)?google\\.com?\\.(id|th|tr)/videohp\\?\" to=\"https://www.google.com/videohp?hl=$1&amp;\"/><rule from=\"^http://(?:www\\.)?google\\.com\\.il/videohp\\?\" to=\"https://www.google.com/videohp?hl=he&amp;\"/><rule from=\"^http://(?:www\\.)?google\\.com\\.kr/videohp\\?\" to=\"https://www.google.com/videohp?hl=ko&amp;\"/><rule from=\"^http://(?:www\\.)?google\\.com\\.kz/videohp\\?\" to=\"https://www.google.com/videohp?hl=kk&amp;\"/><rule from=\"^http://(?:www\\.)?google\\.com\\.jp/videohp\\?\" to=\"https://www.google.com/videohp?hl=ja&amp;\"/><rule from=\"^http://(?:www\\.)?google\\.com\\.vn/videohp\\?\" to=\"https://www.google.com/videohp?hl=vi&amp;\"/><rule from=\"^http://(?:www\\.)?google\\.com\\.br/videohp\\?\" to=\"https://www.google.com/videohp?hl=pt-BR&amp;\"/><rule from=\"^http://(?:www\\.)?google\\.se/videohp\\?\" to=\"https://www.google.com/videohp?hl=sv&amp;\"/><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/\"/><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\" default_off=\"failed ruleset test\" 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=\"mismatch\" 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=\"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\" f=\"Gov_Waste.co.uk.xml\"><securecookie host=\"^\\.govwaste\\.co\\.uk$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GSN Magazine.com (partial)\" default_off=\"failed ruleset test\" 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=\"mismatch\" f=\"Governmentattic.org.xml\"><rule from=\"^http://(?:www\\.)?governmentattic\\.org/\" to=\"https://governmentattic.org/\"/></ruleset>", "<ruleset name=\"Governo Portugu&#234;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\" default_off=\"self-signed\" 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\" 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=\"Grams flow.com\" f=\"Grams_flow.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></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\" default_off=\"failed ruleset test\" 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\" 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\" f=\"Graphene-lda.com.xml\"><securecookie host=\"^\\.graphene-lda\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Grassroots.org (mismatches)\" default_off=\"mismatch\" 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\" default_off=\"mismatch, self-signed\" f=\"GratiSoft.us.xml\"><rule from=\"^http://(?:www\\.)?courtesan\\.com/\" to=\"https://www.courtesan.com/\"/><rule from=\"^http://(?:www\\.)?gratisoft\\.us/\" to=\"https://www.gratisoft.us/\"/><rule from=\"^http://(?:www\\.)?(mktemp|newsyslog)\\.org/\" to=\"https://www.gratisoft.us/$1/\"/><rule from=\"^http://(?:www\\.)?sudo\\.ws/pipermail/\" to=\"https://www.gratisoft.us/pipermail/\"/><rule from=\"^http://(?:www\\.)?sudo\\.ws/\" to=\"https://www.gratisoft.us/sudo/\"/></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 (mismatches)\" default_off=\"expired, mismatched\" f=\"Gravity-mismatches.xml\"><rule from=\"^http://cdn\\.insights\\.gravity\\.com/\" to=\"https://cdn.insights.gravity.com/\"/><rule from=\"^http://i\\.grvcdn\\.com/gravity\\.com/\" to=\"https://www.gravity.com/\"/></ruleset>", "<ruleset name=\"Gravity.com (partial)\" f=\"Gravity.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Gravity4.com (partial)\" 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)\" default_off=\"failed ruleset test\" f=\"Greatnet.de.xml\"><securecookie host=\"^www\\.greatnet\\.de$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Greatnonprofits.org (partial)\" f=\"Greatnonprofits.org.xml\"><exclusion pattern=\"^http://api\\.greatnonprofits\\.org/+(?!whitelabel/reviews/[\\w-]+(?:$|\\?))\"/><securecookie host=\"^greatnonprofits\\.org$\" name=\".+\"/><rule from=\"^http://(?:api\\.|(www\\.))?greatnonprofits\\.org/\" to=\"https://$1greatnonprofits.org/\"/><rule from=\"^http://(?:cdn|static)\\.greatnonprofits\\.org/\" to=\"https://static.greatnonprofits.org/\"/></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=\"GreenIT-BB (mismatches)\" default_off=\"mismatch\" 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\" 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)\" default_off=\"failed ruleset test\" 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)\" default_off=\"failed ruleset test\" f=\"Greenbone.xml\"><rule from=\"^http://support\\.greenbone\\.net/\" to=\"https://support.greenbone.net/\"/></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)\" 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\" default_off=\"failed ruleset test\" 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)\" 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=\"Grilling is Happiness.com\" default_off=\"failed ruleset test\" f=\"Grilling_is_Happiness.com.xml\"><securecookie host=\"^(?:w*\\.)?grillingishappiness\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></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.io\" default_off=\"expired\" f=\"Grit.io.xml\"><rule from=\"^http:\" to=\"https:\"/></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\" default_off=\"failed ruleset test\" f=\"GroupLogic.xml\"><securecookie host=\"^www\\.grouplogic\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?grouplogic\\.com/\" to=\"https://www.grouplogic.com/\"/></ruleset>", "<ruleset name=\"GroupMe.com (partial)\" f=\"GroupMe.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Groupees.com\" f=\"Groupees.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Grouper Social Club.com\" 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\" f=\"Groupon.com.br.xml\"><securecookie host=\"^(?:www)?\\.groupon\\.com\\.br$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Groupon.com (partial)\" f=\"Groupon.com.xml\"><securecookie host=\"^(?:merchants|touch|www)\\.groupon\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Groupon.gr\" f=\"Groupon.gr.xml\"><securecookie host=\"^(?:.*\\.)?groupon\\.gr$\" name=\".*\"/><rule from=\"^http://(\\w+\\.)?groupon\\.gr/\" to=\"https://$1groupon.gr/\"/></ruleset>", "<ruleset name=\"Groupon.se\" 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\" 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\" 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\" f=\"Grove.io.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Grow HQ.com\" 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&#243;n\" default_off=\"mismatch\" 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 (partial)\" f=\"GrvCDN.com.xml\"><rule from=\"^http://i\\.api\\.grvcdn\\.com/\" to=\"https://api.gravity.com/\"/><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=\"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|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)\" 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)\" 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\" 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)\" 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=\"connection dropped\" 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)\" 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)\" 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\" f=\"Guldencoin.com.xml\"><securecookie host=\"^\\.guldencoin\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Gulesider\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" 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\" default_off=\"failed ruleset test\" 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\" 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\" 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\" 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)\" 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\" default_off=\"failed ruleset test\" 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\" 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://www\\.hdserviceproviders\\.com/\" to=\"https://www.hdserviceproviders.com/\"/></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\" 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=\"HHS.gov (partial)\" f=\"HHS.gov.xml\"><securecookie host=\"^\\.\" name=\"^_ga(?:t?$|t_)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://(?:www\\.)?hospitalcompare\\.hhs\\.gov/+\" to=\"https://www.medicare.gov/hospitalcompare/\"/><rule from=\"^http://thinkculturalhealth\\.hhs\\.gov/\" to=\"https://www.thinkculturalhealth.hhs.gov/\"/><rule from=\"^http:\" to=\"https:\"/></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\" 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\" 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=\"HKEdCity (partial)\" f=\"HKEdCity.xml\"><rule from=\"^http://(?:www\\.)?hkedcity\\.net/\" to=\"https://www.hkedcity.net/\"/></ruleset>", "<ruleset name=\"Agriculture, Fisheries and Conservation Department\" f=\"HKGov-AFCD.xml\"><rule from=\"^http://(?:www\\.)?afcd\\.gov\\.hk/\" to=\"https://www.afcd.gov.hk/\"/></ruleset>", "<ruleset name=\"Architectural Services Department\" f=\"HKGov-ArchSD.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=\"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)\" 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)\" 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)\" 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\" 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\" 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://static\\.hsstatic\\.net/\" to=\"https://static.hsstatic.net/\"/></ruleset>", "<ruleset name=\"HTC\" default_off=\"displays error message\" f=\"HTC.xml\"><rule from=\"^http://(?:www\\.)?htc\\.com/\" to=\"https://www.htc.com/\"/></ruleset>", "<ruleset name=\"HTML5 Rocks\" default_off=\"handshake failure\" f=\"HTML5-Rocks.xml\"><rule from=\"^http://(?:www\\.)?html5rocks\\.com/\" to=\"https://www.html5rocks.com/\"/></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 (false MCB)\" platform=\"mixedcontent\" f=\"HTML5Video.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"HTML5test.com\" f=\"HTML5test.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"HTTPSWatch.nz\" f=\"HTTPSWatch.nz.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"HTTP Security Report.com\" f=\"HTTP_Security_Report.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"HTTPwatch.com\" f=\"HTTPwatch.com.xml\"><rule from=\"^http://httpwatch\\.com/\" to=\"https://www.httpwatch.com/\"/><rule from=\"^http://(blog|www)\\.httpwatch\\.com/\" to=\"https://$1.httpwatch.com/\"/></ruleset>", "<ruleset name=\"HTW-Berlin.de (partial)\" 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=\"HVG Kiad&#243; Zrt.\" f=\"HVGKonyvek.xml\"><securecookie host=\"^www\\.hvgkonyvek\\.hu$\" name=\".*\"/><rule from=\"^http://www\\.hvgkonyvek\\.hu/\" to=\"https://www.hvgkonyvek.hu/\"/></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=\"H Sivonen.fi\" f=\"H_Sivonen.fi.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"HaCoder.com (false MCB)\" platform=\"mixedcontent\" 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.se (mismatches)\" default_off=\"mismatch\" platform=\"cacert\" f=\"Habets.se-mismatches.xml\"><rule from=\"^http://(?:www\\.)?habets(\\.pp)?\\.se/\" to=\"https://habets$1.se/\"/></ruleset>", "<ruleset name=\"habets.se (partial)\" platform=\"cacert\" f=\"Habets.se.xml\"><securecookie host=\"^blog\\.habets(?:\\.pp)?\\.se$\" name=\".*\"/><rule from=\"^http://(blog|cdn)\\.habets(\\.pp)?\\.se/\" to=\"https://$1.habets$2.se/\"/></ruleset>", "<ruleset name=\"habpl.us\" 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)\" 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\" default_off=\"self-signed\" f=\"HackLab.to.xml\"><rule from=\"^http://(?:www\\.)?hacklab\\.to/\" to=\"https://hacklab.to/\"/></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\" f=\"Hackademix.net.xml\"><securecookie host=\"^www\\.hackademix\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hacker Factor (partial)\" default_off=\"self-signed\" f=\"Hacker-Factor.xml\"><rule from=\"^http://(?:www\\.)?fotoforensics\\.com/\" to=\"https://fotoforensics.com/\"/></ruleset>", "<ruleset name=\"Y Combinator.com\" f=\"HackerNews.xml\"><securecookie host=\"^(?:.*\\.)?ycombinator\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"HackerRank.com\" default_off=\"failed ruleset test\" 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\" 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\" 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\" default_off=\"self-signed\" f=\"Hackerspaces.xml\"><securecookie host=\"^hackerspaces\\.org$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?hackerspaces\\.org/\" to=\"https://hackerspaces.org/\"/></ruleset>", "<ruleset name=\"Hackforums.net (mixed content)\" platform=\"mixedcontent\" f=\"Hackforums.net.xml\"><rule from=\"^http://(?:www\\.)?hackforums\\.net/\" to=\"https://www.hackforums.net/\"/></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\" platform=\"cacert\" f=\"Hackover.de.xml\"><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\" f=\"Hackthe.computer.xml\"><rule from=\"^http://www\\.hackthe\\.computer/\" to=\"https://hackthe.computer/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"HacktionLab.org\" f=\"HacktionLab.org.xml\"><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\" 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\" default_off=\"failed ruleset test\" 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\" default_off=\"failed ruleset test\" 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=\"hao123.com (partial)\" f=\"Halo123.xml\"><securecookie host=\"^\\.topic\\.\" name=\".\"/><securecookie host=\"^\\w\" name=\".\"/><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=\"mismatch\" f=\"Hamppu.net.xml\"><rule from=\"^http://(?:www\\.)?hamppu\\.net/\" to=\"https://hamppu.net/\"/></ruleset>", "<ruleset name=\"Hamradio.com\" 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=\"^trac\\.handbrake\\.fr$\" name=\".+\"/><rule from=\"^http://((?:forum|trac|www)\\.)?handbrake\\.fr/\" to=\"https://$1handbrake.fr/\"/></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://(?:www\\.)?handelsblatt\\.com/images/\" to=\"https://www.handelsblatt.com/images/\"/><rule from=\"^http://abo\\.handelsblatt\\.com/\" to=\"https://abo.handelsblatt.com/\"/><rule from=\"^http://staticef[12]\\.handelsblatt\\.com/\" to=\"https://d21rxpf5vn0rru.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Handelsregister.de\" 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\" platform=\"cacert\" f=\"Hands.com.xml\"><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&amp;url=http://www.mondiamedia.com%3FL%3D0%26redirect_from%3Dhandy.de&amp;lnkname=handy&amp;$1\"/><rule from=\"^http://(?:www\\.)?handy\\.de/.*\" to=\"https://www.etracker.de/lnkcnt.php?et=kbglnx&amp;url=http://www.mondiamedia.com%3FL%3D0%26redirect_from%3Dhandy.de&amp;lnkname=handy\"/><rule from=\"^http://img\\.handy\\.de/\" to=\"https://i.arvm.de/\"/></ruleset>", "<ruleset name=\"Hanford.gov\" default_off=\"connection dropped\" f=\"Hanford_Site.xml\"><securecookie host=\"^(?:www\\.)?hanford\\.gov$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hang Seng Bank\" f=\"HangSengBank.xml\"><exclusion pattern=\"^http://www\\.hangseng\\.com\\/cms\\/sidnet\\/files\\/hsbcnet\"/><rule from=\"^http://hangseng\\.com/\" to=\"https://www.hangseng.com/\"/><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)\" f=\"Hants.gov.uk.xml\"><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 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\" f=\"Happyassassin.net.xml\"><securecookie host=\"^(?:mail\\.|www\\.)?happyassassin\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Harakahdaily (partial)\" default_off=\"failed ruleset test\" 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)\" 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)\" default_off=\"failed ruleset test\" f=\"Harris-Interactive.xml\"><rule from=\"^http://www1\\.pollg\\.com/\" to=\"https://www1.pollg.com/\"/></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\" default_off=\"failed ruleset test\" 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=\"expired, missing certificate chain, self-signed\" 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\\.pin1|secure\\.post|www\\.seas)\\.harvard\\.edu$\" name=\".+\"/><rule from=\"^http://(berkman|hsph|pin|saas)\\.harvard\\.edu/\" to=\"https://www.$1.harvard.edu/\"/><rule from=\"^http://media\\.campaign\\.harvard\\.edu/\" to=\"https://dlv9ibhjf3gu3.cloudfront.net/\"/><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://www\\.pin\\.harvard\\.edu/(?:$|\\?.*)\" to=\"https://www.pin.harvard.edu/home.shtml\"/><rule from=\"^http://media\\.www\\.harvard\\.edu/\" to=\"https://d2i28rwvea3z9u.cloudfront.net/\"/><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://blog\\.haschek\\.at/\" to=\"https://blog.haschek.at/\"/></ruleset>", "<ruleset name=\"HashTalk.org\" default_off=\"connection refused\" f=\"HashTalk.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hashbang.ca\" 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=\"HashiCorp.com\" f=\"HashiCorp.com.xml\"><securecookie host=\"^\\.hashicorp\\.com$\" 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\" 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)\" f=\"Havering.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hawaii.gov (partial)\" default_off=\"failed ruleset test\" 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)\" f=\"Hbz.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=\"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\" default_off=\"failed ruleset test\" 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\" 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\" f=\"Healthcare.gov.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Healthcare Staff Benefits\" default_off=\"failed ruleset test\" 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 2 Heart\" default_off=\"expired, mismatch, self-signed\" f=\"Heart-2-Heart.xml\"><rule from=\"^http://(?:www\\.)?heart-2-heart\\.ca/\" to=\"https://heart-2-heart.ca/\"/></ruleset>", "<ruleset name=\"Heart.org (partial)\" default_off=\"failed ruleset test\" 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\" 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\" f=\"Heidelberg.de.xml\"><rule from=\"^http://heidelberg\\.de/\" to=\"https://www.heidelberg.de/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Heifer.org\" 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)\" 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\" 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)\" default_off=\"failed ruleset test\" f=\"Helsinki.xml\"><rule from=\"^http://asiointi\\.hel\\.fi/\" to=\"https://asiointi.hel.fi/\"/></ruleset>", "<ruleset name=\"Hemk.es (partial)\" default_off=\"untrusted root\" f=\"Hemk.es.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Heml.is\" 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\" 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\" 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\" f=\"Here.com.xml\"><securecookie host=\"^(.*\\.)?here\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Herefordshire.gov.uk (partial)\" 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\" f=\"HeroX.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hero Up.com\" 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\" f=\"Hertsdirect.org-falsemixed.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"hertsdirect.org (partial)\" 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\" f=\"Hertz-Australia.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hertz Austria\" 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\" 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\" f=\"Hertz-Canada.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hertz China\" f=\"Hertz-China.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hertz Croatia\" f=\"Hertz-Croatia.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hertz Finland\" 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\" f=\"Hertz-Germany.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hertz Hong Kong\" 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\" f=\"Hertz-Indonesia.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hertz Ireland\" f=\"Hertz-Ireland.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hertz Italy\" 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\" f=\"Hertz-Kuwait.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hertz Netherlands\" f=\"Hertz-Netherlands.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hertz New Zealand\" f=\"Hertz-New-Zealand.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hertz Norway\" 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\" f=\"Hertz-Portugal.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hertz Qatar\" 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\" f=\"Hertz-South-Korea.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hertz Spain\" f=\"Hertz-Spain.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hertz Sweden\" f=\"Hertz-Sweden.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hertz Switzerland\" f=\"Hertz-Switzerland.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hertz Taiwan\" 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\" f=\"Hertz-UAE.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hertz UK\" f=\"Hertz-UK.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hertz US\" f=\"Hertz-US.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hesapla Bakalim.com\" 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=\"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=\"Hewlett-Packard Company (mismatches)\" default_off=\"mismatch\" 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&amp;LOGIN_PASSWORD=test.passw0rd\"/></ruleset>", "<ruleset name=\"Hexplo.it\" 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=\"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)\" 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\" default_off=\"failed ruleset test\" f=\"Hiawatha-webserver.org.xml\"><rule from=\"^http://(www\\.)?hiawatha-webserver\\.org/\" to=\"https://$1hiawatah-webserver.org/\"/></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\" 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://shibboleth\\.highwire\\.org/\" to=\"https://shibboleth.highwire.org/\"/></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\"><exclusion pattern=\"^http://code\\.highcharts\\.com/+(?![\\d.]+/modules/)\"/><securecookie host=\"^\\.highcharts\\.com$\" name=\"^__cfduid$\"/><securecookie host=\"^(?:cloud|\\.shop)\\.highcharts\\.com$\" name=\".+\"/><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\" 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)\" 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\" default_off=\"failed ruleset test\" f=\"Hipmunk.com.xml\"><securecookie host=\"^(?:www)?\\.hipmunk\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"History.com (mismatches)\" default_off=\"mismatch\" f=\"History.com-mismatches.xml\"><rule from=\"^http://(?:www\\.)?history\\.com/\" to=\"https://www.history.com/\"/></ruleset>", "<ruleset name=\"History.com (partial)\" f=\"History.com.xml\"><securecookie host=\"^.*\\.history\\.com$\" name=\".*\"/><rule from=\"^http://s(?:ecure|shop)\\.history\\.com/\" to=\"https://secure.history.com/\"/></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\" default_off=\"failed ruleset test\" 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\" 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\" f=\"Hivos.org.xml\"><rule from=\"^http://m\\.hivos\\.org/\" to=\"https://hivos.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"H&#305;zl&#305; Saat\" f=\"Hizli_Saat.xml\"><securecookie host=\"^(?:.*\\.)?hizlisaat\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hizliresim.com\" f=\"Hizliresim.com.xml\"><securecookie host=\"^\\.hizliresim\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"hizook.com\" default_off=\"mismatch\" 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://hjv\\.kursuslogin\\.dk/\" to=\"https://hjv.kursuslogin.dk/\"/></ruleset>", "<ruleset name=\"Hlmod.ru\" platform=\"mixedcontent\" f=\"Hlmod.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"hmapps.net\" 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=\"Hobbyking\" default_off=\"failed ruleset test\" 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\" 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\" f=\"HolidayBullshit.com.xml\"><rule from=\"^http://(?:www\\.)?holidaybullshit\\.com/\" to=\"https://www.holidaybullshit.com/\"/></ruleset>", "<ruleset name=\"HolidayExtras.com\" 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=\"mismatch\" 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\"><exclusion pattern=\"^http://www\\.weekendjeweg\\.nl/$\"/><securecookie host=\"^(?:.*\\.)(?:bookit|weekendjeweg)\\.nl$\" name=\".*\"/><securecookie host=\"^(?:.*\\.)pgl\\.co\\.uk$\" name=\".*\"/><securecookie host=\"^(?:.*\\.)superbreak\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?bookit\\.nl/\" to=\"https://www.bookit.nl/\"/><rule from=\"^http://(?:www\\.)?djoser\\.nl/assets/\" to=\"https://djoser.nl/assets/\"/><rule from=\"^http://cache[12]\\.djoser\\.nl/assets/djoser_2012-1\\.0\\.56/\" to=\"https://djoser.nl/assets/djoser_2012/\"/><rule from=\"^http://(?:www\\.)?djoser(?:junior|wandelenfiets)\\.nl/(asset|cs|image)s/\" to=\"https://djoser.nl/assets/$1s/\"/><rule from=\"^http://(www\\.)?explore\\.co\\.uk/(images/|media/|templates/)\" to=\"https://$1explore.co.uk/$2\"/><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://(www\\.)?superbreak\\.com/\" to=\"https://$1superbreak.com/\"/><rule from=\"^http://(?:img1|static)\\.superbreak\\.(?:com|net)/\" to=\"https://www.superbreak.com/\"/><rule from=\"^http://(?:www\\.)?weekendjeweg\\.nl/(favicon\\.ico|resources/)\" to=\"https://www.weekendjeweg.nl/$1\"/></ruleset>", "<ruleset name=\"Hollywood Reporter (mismatches)\" default_off=\"mismatch\" f=\"Hollywood-Reporter-mismatches.xml\"><rule from=\"^http://thr\\d\\.pgmcdn\\.net/\" to=\"https://www.hollywoodreporter.com/\"/></ruleset>", "<ruleset name=\"Hollywood Reporter (partial)\" 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)\" default_off=\"failed ruleset test\" 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\" 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\" default_off=\"failed ruleset test\" 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\" default_off=\"self-signed\" f=\"Homecomputing.fr.xml\"><rule from=\"^http://homecomputing\\.fr/\" to=\"https://www.homecomputing.fr/\"/><rule from=\"^http://([^@/:]*)\\.homecomputing\\.fr/\" to=\"https://$1.homecomputing.fr/\"/></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)\" 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\" f=\"HoneyBeeLoans.com.xml\"><securecookie host=\"^(?:w*\\.)?honeybeeloans\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hong Kong Stock Exchange (partial)\" f=\"Hong_Kong_Stock_Exchange.xml\"><securecookie host=\"^www\\.hkex\\.com\\.hk$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?hkex\\.com\\.hk/\" to=\"https://www.hkex.com.hk/\"/></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)\" 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 \" 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\" 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\" f=\"Host.co.id.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Host1Plus\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Host1Plus.xml\"><securecookie host=\"^(?:.*\\.)?host1plus\\.com$\" name=\".*\"/><rule from=\"^http://(\\w+\\.)?host1plus\\.com/\" to=\"https://$1host1plus.com/\"/></ruleset>", "<ruleset name=\"host2.bg\" 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)\" 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)\" f=\"HostSearch.xml\"><rule from=\"^http://secure\\.hostsearch\\.com/\" to=\"https://secure.hostsearch.com/\"/></ruleset>", "<ruleset name=\"Host Analytics.com (partial)\" 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\" 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=\"hosted-oswa.org\" f=\"Hosted-oswa.org.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=\"connection dropped\" f=\"Hostican.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hosting Reviews (partial)\" default_off=\"mismatch\" 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\" 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.\" f=\"HostingSolutions.cz.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"HostingXtreme.com (partial)\" 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\" default_off=\"failed ruleset test\" 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=\"^\\.cdn-hotels\\.com$\" name=\".+\"/><securecookie host=\"^\\.hotels\\.com$\" name=\"^s_\\w+$\"/><securecookie host=\"^(?:customercare|(?:\\w\\w\\.)?service)\\.hotels\\.com$\" name=\".+\"/><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=\"Hoteltotravel.com\" default_off=\"shows incontri5stelle.com\" f=\"Hoteltotravel.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hotfile\" default_off=\"failed ruleset test\" f=\"Hotfile.xml\"><rule from=\"^http://(?:www\\.)?hotfile\\.com/\" to=\"https://hotfile.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)\" default_off=\"failed ruleset test\" 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\" default_off=\"failed ruleset test\" 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 Secure Is My Password.net\" f=\"How_Secure_Is_My_Password.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"How To Geek.com (partial)\" default_off=\"breaks images\" f=\"How_To_Geek.com.xml\"><rule from=\"^http://(www\\.)?howtogeek\\.com/(?=favicon\\.ico|pagespeed_static/|public/|thumbcache/|wp-content/|wp-includes/)\" to=\"https://$1howtogeek.com/\"/><rule from=\"^http://cdn8\\.howtogeek\\.com/\" to=\"https://www.howtogeek.com/\"/></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=\"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)\" 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:\" 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\" f=\"Hstor.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ht.vc\" f=\"Ht.vc.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"htaccessbook.com\" f=\"Htaccessbook.com.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)\" 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\" 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)\" 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://hubspot3.vanillaforums.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=\"Hubble (partial)\" f=\"Hubble.xml\"><exclusion pattern=\"^http://www\\.spacetelescope\\.org/(?:kidsandteachers/(?:drawings|education)|press/kits)/\"/><rule from=\"^http://(?:www\\.)?spacetelescope\\.org/(about|contact|kidsandteachers|press|projects|science|static|subscribe)/\" to=\"https://www.spacetelescope.org/$1/\"/></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=\"mismatch\" 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)\" f=\"HughesNet.xml\"><rule from=\"^http://s1\\.hughesnet\\.com/\" to=\"https://s1.hughesnet.com/\"/></ruleset>", "<ruleset name=\"Human Rights Campaign (partial)\" platform=\"mixedcontent\" f=\"Human-Rights-Campaign.xml\"><securecookie host=\"^www\\.hrc\\.org$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?hrc\\.org/\" to=\"https://www.hrc.org/\"/></ruleset>", "<ruleset name=\"Human Research Ethics Portal\" 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)\" 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)\" 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\" f=\"Hummingbird.me.xml\"><securecookie host=\"^(\\.?forums)?\\.?hummingbird\\.me$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Humpi.at\" f=\"Humpi.at.xml\"><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=\"mismatch\" 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\" f=\"Hunting_Bears.nl.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"huobi.com\" 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\" 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\" default_off=\"failed ruleset test\" 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)\" 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 (false MCB)\" platform=\"mixedcontent\" f=\"IAB.org-falsemixed.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"IAB.org (partial)\" f=\"IAB.org.xml\"><exclusion pattern=\"^http://(?:www\\.)?iab\\.org/+(?!favicon\\.ico|wp-content/|wp-includes/)\"/><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\" default_off=\"failed ruleset test\" f=\"IAR.com.xml\"><securecookie host=\"^www\\.iar\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?iar\\.com/\" to=\"https://www.iar.com/\"/></ruleset>", "<ruleset name=\"IAS.edu (partial)\" 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)\" 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=\"^PrefID$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://(research\\.)?ibm\\.com/\" to=\"https://www.$1ibm.com/\"/><rule from=\"^http://domino\\.watson\\.ibm\\.com/\" to=\"https://domino.research.ibm.com/\"/><rule from=\"^http://researchweb\\.watson\\.ibm\\.com/\" to=\"https://www.research.ibm.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"IBPhoenix.com\" 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\" platform=\"mixedcontent\" f=\"IBTimes.co.uk.xml\"><exclusion pattern=\"^http://[dg]\\.ibtimes\\.co\\.uk/\"/><rule from=\"^http:\" to=\"https:\"/><rule from=\"^https://(d|g)\\.ibtimes\\.co\\.uk/\" to=\"http://$1.ibtimes.co.uk/\" downgrade=\"1\"/></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\" 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=\"^\\.icij\\.org$\" 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\" 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://accounts\\.icharts\\.net/\" to=\"https://accounts.icharts.net/\"/></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=\"iCloud.com\" f=\"ICloud.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"iCommons (mismatches)\" default_off=\"mismatch\" 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\" 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\" default_off=\"failed ruleset test\" 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://media\\.idownloadblog\\.com/\" to=\"https://idownloadblog.plssl.com/\"/></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\" 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\" 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 (partial)\" f=\"IETF.xml\"><securecookie host=\"^\\.ietf\\.org$\" name=\"^(?:__cfduid|cf_clearance)$\"/><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)\" default_off=\"failed ruleset test\" 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\" f=\"IIPVV.nl.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"IIS.net\" 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\" default_off=\"failed ruleset test\" 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=\"iLivid (partial)\" f=\"ILivid.xml\"><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=\"IMDB (partial)\" f=\"IMDB.xml\"><exclusion pattern=\"^http://(?:[^/:@]+\\.)?imdb\\.com/images/(?:jwplayer|a/ifb/doubleclick/expand\\.html)\"/><rule from=\"^http://(?:www\\.)?imdb\\.com/(images|rg)/\" to=\"https://secure.imdb.com/$1/\"/><rule from=\"^http://(?:secure\\.|(?:i|www)\\.media-)imdb\\.com/\" to=\"https://secure.imdb.com/\"/></ruleset>", "<ruleset name=\"IMF.org\" f=\"IMF.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"IMGrind.com\" 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\" default_off=\"failed ruleset test\" 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=\"mismatch\" f=\"IN.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"INDURE\" 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)\" 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\" 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\"><exclusion pattern=\"^http://(?:www\\.)?inyt\\.com/+(?!$|\\?)\"/><securecookie host=\"^\\.\" name=\"^(?:__utm|_ga$)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://(?:www\\.)?inyt\\.com/+\" to=\"https://global.nytimes.com/\"/><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)\" 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=\"IOSPP\" default_off=\"failed ruleset test\" f=\"IOSPP.xml\"><securecookie host=\"^(?:www)?\\.iospp\\.org$\" 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=\"iOS Dev Weekly.ly\" f=\"IOS_Dev_Weekly.ly.xml\"><securecookie host=\"^iosdevweekly\\.ly$\" 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://support\\.iopus\\.com/\" to=\"https://support.iopus.com/\"/></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)\" 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\" platform=\"mixedcontent\" f=\"IPCC.ch.xml\"><rule from=\"^http://ipcc\\.ch/\" to=\"https://ipcc.ch/\"/><rule from=\"^http://www\\.ipcc\\.ch/\" to=\"https://www.ipcc.ch/\"/></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.xml\"><securecookie host=\"^.*\\.ipower\\.com$\" name=\".*\"/><rule from=\"^http://images\\.ipower\\.com/\" to=\"https://secure.ipower.com/images/\"/><rule from=\"^http://([\\w\\-]+\\.)?ipower\\.com/\" to=\"https://$1ipower.com/\"/></ruleset>", "<ruleset name=\"IPQualityScore.com\" default_off=\"failed ruleset test\" f=\"IPQualityScore.com.xml\"><securecookie host=\"^(?:www\\.)?ipqualityscore\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"iPR Software.com (partial)\" 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\" 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)\" f=\"IPredator.xml\"><securecookie host=\"^(?:.*\\.)?ipredator\\.se$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"IProduction\" 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\" default_off=\"expired, mismatched, self-signed\" f=\"IRC_Reviews.xml\"><rule from=\"^http://(?:www\\.)?ircreviews\\.org/\" to=\"https://ircreviews.org/\"/></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\" f=\"IRILL.org.xml\"><rule from=\"^http://www\\.irill\\.org/\" to=\"https://www.irill.org/\"/></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://images\\.ironsolutions\\.com/\" to=\"https://images.ironsolutions.com/\"/></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\" 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\" 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\" 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://connect\\.iso\\.org/\" to=\"https://connect.iso.org/\"/></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\" 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)\" default_off=\"failed ruleset test\" f=\"ISPsystem.xml\"><rule from=\"^http://my\\.ispsystem\\.com/\" to=\"https://my.ispsystem.com/\"/></ruleset>", "<ruleset name=\"ISS World (partial)\" f=\"ISS-World.xml\"><rule from=\"^http://portal\\.issworld\\.com/\" to=\"https://portal.issworld.com/\"/></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\" 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\" default_off=\"failed ruleset test\" 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=\"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\" 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://secure\\.itweb\\.co\\.za/\" to=\"https://secure.itweb.co.za/\"/></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 Dashboard.gov\" f=\"IT_Dashboard.gov.xml\"><securecookie host=\"^\\.my.itdashboard\\.gov$\" 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=\"ITalian Network Operators Group (partial)\" platform=\"cacert\" default_off=\"failed ruleset test\" f=\"ITalian_Network_Operators_Group.xml\"><rule from=\"^http://lists\\.itnog\\.it/\" to=\"https://lists.itnog.it/\"/></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=\"iTerm2.org\" default_off=\"failed ruleset test\" f=\"ITerm2.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"iTunes.com\" f=\"ITunes.com.xml\"><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\" 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://heft\\.ivw\\.eu/\" to=\"https://heft.ivw.eu/\"/></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=\"iWork.com\" f=\"IWork.com.xml\"><rule from=\"^http://iwork\\.com/\" to=\"https://www.iwork.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"IWouldDo.It (partial)\" 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=\"mismatch\" f=\"IXI-mismatches.xml\"><rule from=\"^http://(?:www\\.)?ixicorp\\.com/wp-content/\" to=\"https://www.ixicorp.com/wp-content/\"/></ruleset>", "<ruleset name=\"IXI (partial)\" 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\" 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)\" f=\"I_Want_U.xml\"><rule from=\"^http://cdn\\.keepstat\\.com/(?!(?:\\?.*)?$)\" to=\"https://cdn.keepstat.com/\"/></ruleset>", "<ruleset name=\"I love Freegle.org (partial)\" 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)\" f=\"Ibibo.com.xml\"><rule from=\"^http://ads\\.ibibo\\.com/\" to=\"https://ads.ibibo.com/\"/></ruleset>", "<ruleset name=\"Ibiza Rocks (partial)\" 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\" default_off=\"failed ruleset test\" 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\" default_off=\"failed ruleset test\" f=\"Ibs.sberbank.sk.xml\"><rule from=\"^http://ibs\\.sberbank\\.sk/\" to=\"https://ibs.sberbank.sk/\"/></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)\" 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)\" 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=\"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\" f=\"Icio.us.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://(?:www\\.|del\\.)?icio\\.us/\" to=\"https://delicious.com/\"/><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\" 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=\"id Software\" default_off=\"mismatch\" f=\"Id-Software.xml\"><rule from=\"^http://(?:www\\.)?idsoftware\\.com/\" to=\"https://www.idsoftware.com/\"/></ruleset>", "<ruleset name=\"IdQQimg.com\" f=\"IdQQimg.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><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)\" 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)\" 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\" 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.gov\" f=\"IdentityTheft.gov.xml\"><securecookie host=\"^\\w\" name=\".\"/><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\" 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\" f=\"IdeoClick.com.xml\"><securecookie host=\"^(?:www\\.)?ideoclick\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ideone.com\" 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=\"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)\" f=\"Igalia.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"igcdn.com\" 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\" 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\" default_off=\"failed ruleset test\" 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=\"^\\.ikea\\.com$\" name=\"^s_\\w+$\"/><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://www\\.ikgalekkerslapen\\.nl/\" to=\"https://www.ikgalekkerslapen.nl/\"/></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\" f=\"Ikoula.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Iljmp.com\" 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 &amp; 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=\"mismatch\" 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 (partial)\" f=\"ImageShack.us.xml\"><exclusion pattern=\"^http://imageshack\\.us/f/.*\"/><exclusion pattern=\"^http://iload\\d\\.imageshack\\.us/$\"/><exclusion pattern=\"^http://kb\\.imageshack\\.us/(?!img/favicon\\.ico$)\"/><securecookie host=\"^(?:.*\\.)?imageshack\\.us$\" name=\".+\"/><rule from=\"^http://(www\\.)?imageshack\\.com/\" to=\"https://$1imageshack.com/\"/><rule from=\"^http://kb\\.imageshack\\.us/img/favicon\\.ico$\" to=\"https://imageshack.us/favicon.ico\"/><rule from=\"^http://stream\\.imageshack\\.us/favicon\\.ico$\" to=\"https://imageshack.us/favicon.ico\"/><rule from=\"^http://img(\\d{1,3})\\.imageshack\\.us/\" to=\"https://img$1.imageshack.us/\"/><rule from=\"^http://(?:www\\.)?([ac-r]\\w+\\.)?imageshack\\.us/\" to=\"https://$1imageshack.us/\"/><rule from=\"^https://iload(\\d)\\.imageshack\\.us/\" to=\"http://iload$1.imageshack.us/\" downgrade=\"1\"/></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\" f=\"Imagestash.xml\"><securecookie host=\"^(?:www\\.)?imagestash\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Imation.com (partial)\" 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\" 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 (partial)\" f=\"Imgbox.xml\"><rule from=\"^http://(www\\.)?imgbox\\.com/(assets/|(?:dmca|help|login|register|tos)(?:$|\\?))\" to=\"https://$1imgbox.com/$2\"/></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\" 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=\"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://adserver\\.iminent\\.com/\" to=\"https://adserver.iminent.com/\"/></ruleset>", "<ruleset name=\"ImmobilienScout24\" 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\" default_off=\"failed ruleset test\" 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\" 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\" default_off=\"self-signed\" f=\"Imperial-College-London-Union.xml\"><securecookie host=\"^www\\.imperialcollegeunion\\.org$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?imperialcollegeunion\\.org/\" to=\"https://www.imperialcollegeunion.org/\"/></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\" 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\" 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\" f=\"In-Q-Tel.xml\"><rule from=\"^http://(?:www\\.)?iqt\\.org/\" to=\"https://www.iqt.org/\"/></ruleset>", "<ruleset name=\"In Stat.com\" default_off=\"connection 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\" 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)\" 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\" 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)\" 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\" 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://www\\.indacoin\\.com/\" to=\"https://indacoin.com/\"/><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 (partial)\" default_off=\"mismatched\" f=\"Independent.co.uk.xml\"><securecookie host=\"^\\.\" name=\"^s_v\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://independent\\.co\\.uk/\" to=\"https://www.independent.co.uk/\"/><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)\" default_off=\"failed ruleset test\" 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)\" 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\" 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=\"Indiana.edu (self-signed)\" default_off=\"expired, self-signed\" f=\"Indiana-University-self-signed.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"IU.edu (partial)\" 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=\"Indianna.edu (partial)\" f=\"Indiana.edu.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://soic\\.indiana\\.edu/\" to=\"https://www.soic.indiana.edu/\"/><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=\"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://soc\\.indusguard\\.com/\" to=\"https://soc.indusguard.com/\"/></ruleset>", "<ruleset name=\"Industry Botnet Group.org\" default_off=\"connection dropped\" f=\"Industry-Botnet-Group.xml\"><securecookie host=\"^(?:www\\.)?industrybotnetgroup\\.org$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Industry Mailout.com (partial)\" 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)\" 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=\"Inertianetworks.com\" f=\"Inertianetworks.com.xml\"><securecookie host=\"^inertianetworks\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Inet.se\" f=\"Inet.se.xml\"><rule from=\"^http://(?:www\\.)?inet\\.se/\" to=\"https://www.inet.se/\"/></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=\"connection dropped\" 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)\" default_off=\"failed ruleset test\" f=\"Infinet.com.au.xml\"><exclusion pattern=\"^http://(?:www\\.)?shop\\.infinet\\.com\\.au/+(?!epages/shop\\.sf/en_AU/\\?ObjectPath=/Shops/infinet&amp;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\" default_off=\"failed ruleset test\" f=\"Influencers_Conference.xml\"><securecookie host=\"^\\.influencersconference\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Info.iet.unipi.it\" default_off=\"HTTPS and HTTP content differ\" f=\"Info.iet.unipi.it.xml\"><rule from=\"^http://info\\.iet\\.unipi\\.it/\" to=\"https://info.iet.unipi.it/\"/></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\" 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=\"^\\w\" name=\".\"/><securecookie host=\"^\\.\" name=\"^_gat?$\"/><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)\" 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&#225;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)\" 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\" default_off=\"failed ruleset test\" f=\"InformationWeek.xml\"><securecookie host=\"^www\\.informationweek\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?byte\\.com/\" to=\"https://www.informationweek.com/byte/\"/><rule from=\"^http://(www\\.)?informationweek\\.com/\" to=\"https://$1informationweek.com/\"/></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&#252;rth\" f=\"Infra-Furth.xml\"><rule from=\"^http://www\\.infra-fuerth\\.de/\" to=\"https://www.infra-fuerth.de/\"/></ruleset>", "<ruleset name=\"infradead.org (partial)\" platform=\"cacert\" f=\"Infradead.xml\"><rule from=\"^http://(?:www\\.)?infradead\\.org/\" to=\"https://casper.infradead.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Infragard.net\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" 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://secure\\.innocenceproject\\.org/\" to=\"https://secure.innocenceproject.org/\"/></ruleset>", "<ruleset name=\"Innometrics.com (partial)\" 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=\"Innovative Interfaces (partial)\" f=\"Innovative_Interfaces.xml\"><exclusion pattern=\"^http://(?:linkplusaccess|sierra|www)\\.\"/><securecookie host=\"^.+\\.iii\\.com$\" name=\".+\"/><rule from=\"^http://(\\w+)\\.iii\\.com/\" to=\"https://$1.iii.com/\"/></ruleset>", "<ruleset name=\"InoReader\" f=\"InoReader.xml\"><securecookie host=\"^www\\.inoreader\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?inoreader\\.com/\" to=\"https://www.inoreader.com/\"/></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)\" 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://planete\\.inrialpes\\.fr/\" to=\"https://planete.inrialpes.fr/\"/></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=\"InsideHW.com\" default_off=\"self-signed\" f=\"InsideHW.com.xml\"><rule from=\"^http://(?:www\\.)?insidehw\\.com/\" to=\"https://www.insidehw.com/\"/><securecookie host=\"^www\\.insidehw\\.com$\" name=\".*\"/></ruleset>", "<ruleset name=\"Inside Illinois.info\" 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\" 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\" 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\" 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)\" 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&#233;es (partial)\" default_off=\"failed ruleset test\" 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&#252;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)\" 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\" default_off=\"mismatch\" f=\"Instructables.xml\"><rule from=\"^http://instructables\\.com/\" to=\"https://www.instructables.com/\"/><rule from=\"^http://cdn\\.instructables\\.com/\" to=\"https://s3.amazonaws.com/instruct-deriv/\"/><rule from=\"^http://(img|www)\\.instructables\\.com/\" to=\"https://$1.instructables.com/\"/><securecookie host=\"^\\.instructables\\.com$\" name=\".*\"/></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=\"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=\"mismatch\" 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 (partial)\" default_off=\"failed ruleset test\" f=\"Intel.co.jp.xml\"><securecookie host=\"^newsroom\\.intel\\.co\\.jp$\" name=\".+\"/><rule from=\"^http://newsroom\\.intel\\.co\\.jp/\" to=\"https://newsroom.intel.co.jp/\"/></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://newsroom\\.intel\\.com/\" to=\"https://newsroom.intel.com/\"/></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 Fellowships.com\" f=\"Intel_Fellowships.com.xml\"><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=\"Intency.com (partial)\" f=\"Intency.com.xml\"><securecookie host=\"^my\\.intencysrv\\.com$\" name=\".+\"/><rule from=\"^http://my\\.intencysrv\\.com/\" to=\"https://my.intencysrv.com/\"/></ruleset>", "<ruleset name=\"Intencysrv.com (partial)\" f=\"Intencysrv.com.xml\"><securecookie host=\"^\\.intencysrv\\.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://a\\.intentmedia\\.net/\" to=\"https://a.intentmedia.net/\"/></ruleset>", "<ruleset name=\"Inter.net (partial)\" platform=\"mixedcontent\" 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\" 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://interacposcentre\\.ca/\" to=\"https://interacposcentre.ca/\"/></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\" default_off=\"failed ruleset test\" 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\" default_off=\"failed ruleset test\" 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\" f=\"Intercom.io.xml\"><securecookie host=\"^webinars\\.intercom\\.io$\" name=\".+\"/><securecookie host=\"^(?:api\\.|www\\.)?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=\"mismatch\" 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\" default_off=\"failed ruleset test\" f=\"Interference.cc.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Intergi.com (partial)\" 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=\"Interkassa.com\" f=\"Interkassa.xml\"><securecookie host=\"^(?:.+\\.)?interkassa\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Interlan.se\" default_off=\"failed ruleset test\" 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\" 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\" 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\" default_off=\"failed ruleset test\" 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\" 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\"><exclusion pattern=\"^http://(?:graphite|pgdp01|s3|lending)\\.us\\.archive\\.org/\"/><securecookie host=\"^\\.archive\\.org$\" name=\".+\"/><rule from=\"^http://blog\\.openlibrary\\.archive\\.org/\" to=\"https://blog.openlibrary.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\" 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)\" 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 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 Staff.com\" f=\"Internet_Staff.com.xml\"><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\" 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=\"Interns.org\" default_off=\"self-signed\" f=\"Interns.org.xml\"><rule from=\"^http://(?:www\\.)?interns\\.org/\" to=\"https://www.interns.org/\"/></ruleset>", "<ruleset name=\"Interpol\" default_off=\"No longer supports HTTPS\" f=\"Interpol.xml\"><rule from=\"^http://(?:www\\.)?interpol\\.int/\" to=\"https://www.interpol.int/\"/></ruleset>", "<ruleset name=\"Intersango.com\" default_off=\"failed ruleset test\" f=\"Intersango.com.xml\"><securecookie host=\"^\\.intersango\\.com$\" name=\".+\"/><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 (partial)\" f=\"Intevation-GmbH.xml\"><securecookie host=\"^(ssl\\.|www\\.)?intevation\\.de$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Into Higher.com\" 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\" 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\" default_off=\"failed ruleset test\" 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=\"Invasion.com\" f=\"Invasion.com.xml\"><securecookie host=\"^(?:book)?\\.invasion\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"InvenSense.com (partial)\" f=\"InvenSense.com.xml\"><securecookie host=\"^store\\.invensense\\.com$\" name=\".+\"/><rule from=\"^http://store\\.invensense\\.com/\" to=\"https://store.invensense.com/\"/></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\" 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=\"mismatch\" 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=\"Investor.gov\" default_off=\"failed ruleset test\" f=\"Investor.gov.xml\"><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\"><exclusion pattern=\"^http://(?:www\\.)?io9\\.com/(?!$|\\?)\"/><securecookie host=\".\" name=\".\"/><rule from=\"^http://(?:www\\.)?io9\\.com/\" to=\"https://io9.gawker.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\" 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)\" 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\" f=\"Ipfs.pics.xml\"><securecookie host=\"^(www\\.)?ipfs\\.pics\" name=\".+\"/><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://ad\\.ipredictive\\.com/\" to=\"https://ad.ipredictive.com/\"/></ruleset>", "<ruleset name=\"ipsidixit.net\" 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=\"^irccloud\\.com$\" name=\".+\"/><securecookie host=\"^www\\.irccloud\\.com$\" name=\".+\"/><securecookie host=\"^alpha\\.irccloud\\.com$\" name=\".+\"/><securecookie host=\"^api\\.irccloud\\.com$\" name=\".+\"/><securecookie host=\"^blog\\.irccloud\\.com$\" 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=\"Iridium Browser.de\" f=\"Iridium_Browser.de.xml\"><securecookie host=\"^\\w\" 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)\" f=\"Isalo.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Iseclab.org (partial)\" f=\"Iseclab.org.xml\"><securecookie host=\"^anubis\\.iseclab\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"isen.com\" default_off=\"mismatch\" 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=\"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\" 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://ml01\\.ispgateway\\.de/\" to=\"https://ml01.ispgateway.de/\"/></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\" 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)\" default_off=\"failed ruleset test\" 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=\"Linux.it\" platform=\"cacert\" f=\"Italian-Linux-Society.xml\"><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 (partial)\" 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\" f=\"Ix.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ixquick\" f=\"Ixquick.xml\"><rule from=\"^http://ixquick\\.com/\" to=\"https://ixquick.com/\"/><rule from=\"^http://([^@/:]*)\\.ixquick\\.com/\" to=\"https://$1.ixquick.com/\"/><rule from=\"^http://ixquick-proxy\\.com/\" to=\"https://ixquick-proxy.com/\"/><rule from=\"^http://([^@/:]*)\\.ixquick-proxy\\.com/\" to=\"https://$1.ixquick-proxy.com/\"/><rule from=\"^http://startpage\\.com/\" to=\"https://startpage.com/\"/><rule from=\"^http://([^@/:]*)\\.startpage\\.com/\" to=\"https://$1.startpage.com/\"/><rule from=\"^http://startingpage\\.com/\" to=\"https://startingpage.com/\"/><rule from=\"^http://([^@/:]*)\\.startingpage\\.com/\" to=\"https://$1.startingpage.com/\"/><securecookie host=\"^\\.ixquick\\.com$\" name=\".*\"/></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 (partial)\" default_off=\"failed ruleset test\" f=\"Izvestia.ru.xml\"><rule from=\"^http://fb\\.izvestia\\.ru/\" to=\"https://fb.izvestia.ru/\"/></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://sassets\\.j2global\\.com/\" to=\"https://sassets.j2global.com/\"/></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://www\\.jamstec\\.go\\.jp/\" to=\"https://www.jamstec.go.jp/\"/></ruleset>", "<ruleset name=\"JA.NET (partial)\" default_off=\"failed ruleset test\" 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\" 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-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/.+&amp;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 (partial)\" 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=\"connection refused\" f=\"JDI-Dating.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"JD Kasten.com\" f=\"JD_Kasten.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"JD Supra\" default_off=\"failed ruleset test\" 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\" 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://store\\.jfklibrary\\.org/\" to=\"https://store.jfklibrary.org/\"/></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\" f=\"JIDE.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"JISCMail.ac.uk\" 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)\" 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\" 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://www\\.jpcert\\.or\\.jp/\" to=\"https://www.jpcert.or.jp/\"/></ruleset>", "<ruleset name=\"JPG Magazine (self-signed)\" default_off=\"self-signed\" f=\"JPGmag.xml\"><rule from=\"^http://(?:www\\.)?jpgmag\\.com/\" to=\"https://jpgmag.com/\"/></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\" 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.xml\"><rule from=\"^http://(?:www\\.)?jstor\\.org/((?:abs|betasearch/static|jawr|jawrcss|literatum|sda|stable|templates|userimages)/|action/(?:myJstorSettings|registration|show(?:Login|RegistrationUpdate))|rx(?:$|\\?))\" to=\"https://www.jstor.org/$1\"/><rule from=\"^http://about\\.jstor\\.org/(modul|sit)es/\" to=\"https://about.jstor.org/$1es/\"/></ruleset>", "<ruleset name=\"JSaO.io\" f=\"JSaO.io.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"JUA.com\" 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\" 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://www\\.juki\\.co\\.jp/\" to=\"https://www.juki.co.jp/\"/></ruleset>", "<ruleset name=\"JVN.jp\" f=\"JVN.jp.xml\"><rule from=\"^http://jvn\\.jp/\" to=\"https://jvn.jp/\"/></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)\" default_off=\"failed ruleset test\" f=\"JXT.net.au.xml\"><rule from=\"^http://images\\.jxt\\.net\\.au/\" to=\"https://images.jxt.net.au/\"/></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=\"J Halderm.com\" f=\"J_Halderm.com.xml\"><rule from=\"^http:\" to=\"https:\"/></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\" f=\"JabbR.net.xml\"><securecookie host=\"^\\.?jabbr\\.net$\" name=\".+\"/><rule from=\"^http://jabbr\\.net/\" to=\"https://jabbr.net/\"/></ruleset>", "<ruleset name=\"Jabber.at\" f=\"Jabber.at.xml\"><securecookie host=\"^list\\.jabber\\.at$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></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\" 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\" 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\" default_off=\"failed ruleset test\" 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)\" default_off=\"failed ruleset test\" 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\" 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://account\\.jamplay\\.com/\" to=\"https://account.jamplay.com/\"/></ruleset>", "<ruleset name=\"Jamtrackcentral\" default_off=\"failed ruleset test\" f=\"JamTrackCentral.xml\"><rule from=\"^http://(?:www\\.)?jamtrackcentral\\.com/\" to=\"https://jamtrackcentral.com/\"/></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 (partial)\" f=\"JanDan.xml\"><rule from=\"^http://(www\\.)?jandan\\.net/\" to=\"https://jandan.net/\"/><rule from=\"^http://(ssl)?cdn\\.jandan\\.net/\" to=\"https://sslcdn.jandan.net/\"/></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/\"/><rule from=\"^http://(\\d+)\\.myopenid\\.com/\" to=\"https://$1.myopenid.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=\"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=\"Japias.jp (partial)\" f=\"Japias.jp.xml\"><rule from=\"^http://webcon\\.japias\\.jp/\" to=\"https://webcon.japias.jp/\"/></ruleset>", "<ruleset name=\"Jappix.org\" f=\"Jappix.org.xml\"><securecookie host=\"^jappix\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Jappix (partial)\" 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)\" 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)\" 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://(?:www\\.)?java\\.com(?::80)?/\" to=\"https://www.java.com/\"/></ruleset>", "<ruleset name=\"JavaScriptKicks.com\" f=\"JavaScriptKicks.com.xml\"><rule from=\"^http://(?:www\\.)?javascriptkicks\\.com/\" to=\"https://javascriptkicks.com/\"/></ruleset>", "<ruleset name=\"JavaScriptMVC (partial)\" default_off=\"failed ruleset test\" 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)\" 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\" 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)\" default_off=\"failed ruleset test\" f=\"Jeff_Reifman.com.xml\"><rule from=\"^http://cloud\\.jeffreifman\\.com/\" to=\"https://d34gmh9gge3473.cloudfront.net/\"/></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=\"^www\\.jellynote\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Jenkins-CI.org\" 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\" default_off=\"missing certificate chain\" f=\"Jenner.ac.uk.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"jensge.org\" platform=\"cacert\" 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\" 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\" 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)\" 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\" f=\"Jim_static.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Jimdo.com (partial)\" f=\"Jimdo.xml\"><securecookie host=\"^(?:a|webmail|www51)\\.jimdo\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Jimg.dk\" 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\" 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\" 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=\"mismatch\" 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\" 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\" f=\"Jobsite.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Jobvite (partial)\" f=\"Jobvite.xml\"><exclusion pattern=\"^http://www\\.jobvite\\.com/(?!favicon\\.ico|wp-content/|wp-includes/)\"/><securecookie host=\"^(?:.+\\.)?jobvite\\.com$\" name=\".*\"/><rule from=\"^http://((?:careers|demo|hire|hire-stg|recruiting|search|source|source-stg|www|www-stg)\\.)?jobvite\\.com/\" to=\"https://$1jobvite.com/\"/><rule from=\"^http://web\\.jobvite\\.com/(?=css/|images/|js/|rs/)\" to=\"https://na-a.marketo.com/\"/></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\" 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://joeyh\\.name/\" to=\"https://joeyh.name/\"/></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=\"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=\"mismatch\" 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\" 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\" 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 (CAcert)\" platform=\"cacert\" default_off=\"mismatched\" f=\"Jolexa.net-cacert.xml\"><securecookie host=\"^(?:.*\\.)?jolexa\\.net$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"jolexa.net (partial)\" f=\"Jolexa.net.xml\"><securecookie host=\"^(?:www\\.)?blog\\.jolexa\\.net$\" name=\".*\"/><rule from=\"^http://www\\.blog\\.jolexa\\.net/\" to=\"https://blog.jolexa.net/\"/><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=\"joppix.com\" default_off=\"failed ruleset test\" f=\"Joppix.com.xml\"><securecookie host=\"^(?:www\\.)?joppix\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Josefsson.org\" platform=\"cacert\" default_off=\"failed ruleset test\" f=\"Josefsson.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Joseph Rowntree Reform Trust (mismatches)\" default_off=\"mismatch\" 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=\"Josh Triplett.org\" f=\"Josh_Triplett.org.xml\"><rule from=\"^http://(?:www\\.)?joshtriplett\\.org/\" to=\"https://joshtriplett.org/\"/></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.xml\"><rule from=\"^http://(?:www\\.)?jottit\\.com/\" to=\"https://www.jottit.com/\"/><rule from=\"^http://([^/:@\\.]+)\\.jottit\\.com/\" to=\"https://$1.jottit.com/\"/></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=\"mismatch\" 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)\" 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\" 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=\"^(?:blog\\.|www\\.)?jtlebi\\.fr$\" name=\".+\"/><rule from=\"^http://(?:blog\\.|www\\.)?jtlebi\\.fr/\" to=\"https://blog.jtlebi.fr/\"/></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=\"mismatch\" 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\" 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\" 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=\"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\" 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&amp;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\" default_off=\"failed ruleset test\" 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\" 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=\"JustGive\" f=\"JustGive.xml\"><securecookie host=\"^amex\\.justgive\\.org$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?justgive\\.org/\" to=\"https://www.justgive.org/\"/><rule from=\"^http://(amex|ido)\\.justgive\\.org/\" to=\"https://$1.justgive.org/\"/></ruleset>", "<ruleset name=\"JustGiving.com (partial)\" 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=\"JustPaste.it\" f=\"JustPaste.it.xml\"><securecookie host=\"^justpaste\\.it$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"JustTomatoes.com\" platform=\"mixedcontent\" f=\"JustTomatoes.com.xml\"><rule from=\"^http://(?:www\\.)?justtomatoes\\.com/\" to=\"https://www.justtomatoes.com/\"/></ruleset>", "<ruleset name=\"Just Apple.com (false MCB)\" platform=\"mixedcontent\" f=\"Just_Apple.com.xml\"><securecookie host=\"^\\.justapple\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?justapple\\.com/\" to=\"https://www.justapple.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\" 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=\"Justice 4 Assange.com\" f=\"Justice_4_Assange.com.xml\"><rule from=\"^http:\" to=\"https:\"/></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\" default_off=\"failed ruleset test\" 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\" f=\"KCVids.xml\"><securecookie host=\"^\\.?kcvids\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"KD2.us\" 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.org (partial)\" 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\" 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\" default_off=\"failed ruleset test\" f=\"KGNB.am.xml\"><securecookie host=\"^\\.kgnb\\.am$\" name=\".+\"/><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)\" 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\" 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\" f=\"KLDP.net.xml\"><rule from=\"^http://([\\w-]+\\.)?kldp\\.net/\" to=\"https://$1kldp.net/\"/></ruleset>", "<ruleset name=\"KLDP.org\" f=\"KLDP.org.xml\"><rule from=\"^http://([\\w-]+\\.)?kldp\\.org/\" to=\"https://$1kldp.org/\"/></ruleset>", "<ruleset name=\"KLM\" platform=\"mixedcontent\" 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)\" f=\"KNET.cn.xml\"><securecookie host=\"^ss\\.knet\\.cn$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"KOMO News (partial)\" default_off=\"failed ruleset test\" f=\"KOMO_News.xml\"><rule from=\"^http://cf\\.komo\\.com/\" to=\"https://d27odwwbded9xq.cloudfront.net/\"/></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)\" 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=\"KSA Glass.com\" default_off=\"502\" f=\"KSA_Glass.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"K&#246;zponti Statisztikai Hivatal\" default_off=\"failed ruleset test\" 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)\" f=\"Kaazing.com.xml\"><exclusion pattern=\"^http://developer\\.kaazing\\.com/+(?!wordpress/wp-content/)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Kabel Deutschland\" 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\" default_off=\"failed ruleset test\" 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)\" 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 (partial)\" 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_Linux.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\" f=\"Kapiton.se.xml\"><securecookie host=\"^\\.?kapiton\\.se$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Kaply.com (partial)\" f=\"Kaply.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Kapsi.fi (very partial)\" 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 (problematic)\" default_off=\"self-signed\" f=\"Karlsruhe_Institute_of_Technology-problematic.xml\"><rule from=\"^http://blog\\.bibliothek\\.kit\\.edu/\" to=\"https://blog.bibliothek.kit.edu/\"/><rule from=\"^http://(?:www\\.)?studiumundbehinderung\\.kit\\.edu/\" to=\"https://studiumundbehinderung.kit.edu/\"/></ruleset>", "<ruleset name=\"Karlsruhe Institute of Technology (partial)\" default_off=\"failed ruleset test\" f=\"Karlsruhe_Institute_of_Technology.xml\"><exclusion pattern=\"^http://blog\\.bibliothek\\.kit\\.edu/+(?!\\w+/wp-(?:content|includes)/)\"/><securecookie host=\"^.+\\.kit\\.edu$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?alumni\\.kit\\.edu/\" to=\"https://www.rsm.kit.edu/\"/><rule from=\"^http://(?:www\\.)?((?:bibliothek|informatik|innovation|lists|pst|ptka|radio|rsm|scc)\\.)?kit\\.edu/\" to=\"https://www.$1kit.edu/\"/><rule from=\"^http://(blog\\.bibliothek|campus|(?:jplag|svn)\\.ipd|intranet|owa|(?:idp|wsm10)\\.scc|(?:ilias\\.)?stadium|www\\.stiftung)\\.kit\\.edu/\" to=\"https://$1.kit.edu/\"/><rule from=\"^http://(?:www\\.)?cs\\.kit\\.edu/+\" to=\"https://www.informatik.kit.edu/\"/><rule from=\"^http://www\\.zib\\.kit\\.edu/(?:.*)\" to=\"https://www.kit.edu/studieren/3052.php\"/><rule from=\"^http://(?:www\\.)?(zvw\\.)?uni-karlsruhe\\.de/\" to=\"https://www.$1uni-karlsruhe.de/\"/><rule from=\"^http://(mensa\\.akk|www\\.ubka)\\.uni-karlsruhe\\.de/\" to=\"https://$1.uni-karlsruhe.de/\"/><rule from=\"^http://www\\.rz\\.uni-karlsruhe\\.de/+\" to=\"https://www.scc.kit.edu/\"/></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)\" 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)\" 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\" f=\"Kaspersky-cyberstat.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Kaspersky.com (partial)\" 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\" 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-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)\" 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://sueddeutsche\\.kaufdown\\.de/\" to=\"https://sueddeutsche.kaufdown.de/\"/></ruleset>", "<ruleset name=\"Kaufland.cz\" 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=\"mismatch\" 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)\" 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\" 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=\"Keenot.es (partial)\" default_off=\"failed ruleset test\" f=\"Keenot.es.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"keepTempo.com (partial)\" f=\"KeepTempo.com.xml\"><securecookie host=\"^app\\.keeptempo\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Keep all the things.com\" 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)\" default_off=\"failed ruleset test\" 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)\" 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=\"mismatch\" 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)\" 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)\" 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\" 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=\"mismatch\" 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 (expired)\" default_off=\"expired, md5 signed\" f=\"KeyGhost.com-problematic.xml\"><rule from=\"^http://(?:www\\.)?keyghost\\.com/\" to=\"https://www.keyghost.com/\"/></ruleset>", "<ruleset name=\"KeyGhost.com (partial)\" f=\"KeyGhost.com.xml\"><rule from=\"^http://secure\\.keyghost\\.com/\" to=\"https://secure.keyghost.com/\"/></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://i\\.kfs\\.io/\" to=\"https://i.kfs.io/\"/></ruleset>", "<ruleset name=\"Khan Academy\" f=\"Khan-Academy.xml\"><securecookie host=\"^www\\.khanacademy\\.org$\" name=\".*\"/><rule from=\"^http://(www\\.)?k(asandbox|astatic|hanacademy)\\.org/\" to=\"https://$1k$2.org/\"/></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\" 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\" 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 (false MCB)\" platform=\"mixedcontent\" f=\"Kinfolk.com-falsemixed.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Kinfolk.com (partial)\" f=\"Kinfolk.com.xml\"><exclusion pattern=\"^http://www\\.kinfolk\\.com/+(?!favicon\\.ico|(?:join|my-account)($|[?/])|wp-content/|wp-includes/)\"/><securecookie host=\"^kinfolk\\.com$\" 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)\" default_off=\"failed ruleset test\" 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=\"Kitchen Riddles.com\" f=\"Kitchen_Riddles.com.xml\"><securecookie host=\"^\\.kitchenriddles\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?kitchenriddles\\.com/\" to=\"https://kitchenriddles.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://kitenet\\.net/\" to=\"https://kitenet.net/\"/></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\" f=\"Kivo.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Kiwi FM\" default_off=\"mismatch\" 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\" f=\"Kiwiirc.com.xml\"><securecookie host=\"^\\.?kiwiirc\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Kkk.com\" 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\" 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=\"Kn007.net\" f=\"Kn007.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"KnCMiner.com (partial)\" 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)\" 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\" 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\" default_off=\"failed ruleset test\" 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\" f=\"Koinify.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Kokousalusta\" default_off=\"failed ruleset test\" f=\"Kokousalusta.xml\"><securecookie host=\"^(?:www\\.)?kokousalusta\\.fi$\" name=\".+\"/><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\" 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\" 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://www\\.komro\\.net/\" to=\"https://www.komro.net/\"/></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)\" 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=\"Kopiosto\" default_off=\"failed ruleset test\" 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=\"mismatch\" 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\" 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\" 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\" 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://secure\\.kreativmedia\\.ch/\" to=\"https://secure.kreativmedia.ch/\"/></ruleset>", "<ruleset name=\"Kreat&#237;v Vonalak\" f=\"Kreativvonalak.xml\"><rule from=\"^http://www\\.kreativvonalak\\.hu/\" to=\"https://www.kreativvonalak.hu/\"/></ruleset>", "<ruleset name=\"Krebs on Security.com (partial, broken MCB)\" platform=\"mixedcontent\" f=\"KrebsOnSecurity.com.xml\"><securecookie host=\"^(?:www\\.)?krebsonsecurity\\.com$\" 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\" 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\" 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=\"mismatch\" 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.co.uk\" f=\"Krystal_Hosting.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ksi&#281;garniaWarszawa.pl\" f=\"KsiegarniaWarszawa.pl.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ksplice (partial)\" default_off=\"failed ruleset test\" 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\" platform=\"cacert\" f=\"Kubieziel.de.xml\"><securecookie host=\"^(?:www\\.)?kubieziel\\.de$$\" 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=\"kuonamaoni.com\" default_off=\"expired\" f=\"Kuonamaoni.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"KuppingerCole.com\" f=\"KuppingerCole.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Kura.io\" default_off=\"connection dropped\" 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=\"Kurly.fr\" default_off=\"failed ruleset test\" f=\"Kurly.fr.xml\"><securecookie host=\"^(?:www)?\\.kurly\\.fr$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"kuro5hin.org\" 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\" default_off=\"failed ruleset test\" 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=\"Kyle Isom.net\" f=\"Kyle_Isom.net.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Kyn.me\" 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 (CAcert)\" platform=\"cacert\" f=\"L0cal.com-cacert.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"l0cal.com (partial)\" f=\"L0cal.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"l0g.us\" 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)\" 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\" 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)\" 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=\"mismatch\" f=\"LESS.xml\"><rule from=\"^http://(?:www\\.)?lesscss\\.org/\" to=\"https://lesscss.org/\"/></ruleset>", "<ruleset name=\"LEspace client.fr\" 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\" default_off=\"failed ruleset test\" 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=\"LFGSS.com\" f=\"LFGSS.com.xml\"><securecookie host=\"^www\\.lfgss\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></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\" 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\" 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)\" 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)\" 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\"><exclusion pattern=\"^http://(?:[^./]+\\.){2,}reviews\\.llvm\\.org/\"/><exclusion pattern=\"^http://(?:www\\.)?llvm\\.org/(?!/*(?:bugs|svn)/)\"/><rule from=\"^http://www\\.llvm\\.org/\" to=\"https://llvm.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"LM Uni Muenchen\" f=\"LMU-Muenchen.xml\"><securecookie host=\".*\\.uni-muenchen\\.de$\" name=\".+\"/><rule from=\"^http://(cms-static|www\\.en|(?:login|www)\\.portal|www)\\.uni-muenchen\\.de/\" to=\"https://$1.uni-muenchen.de/\"/></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\" platform=\"cacert\" f=\"LPICE.eu.xml\"><securecookie host=\"^www\\.lpice\\.eu$\" 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)\" 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\" default_off=\"failed ruleset test\" 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)\" 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\" 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=\"LaPatilla.com\" default_off=\"failed ruleset test\" 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=\"LaTeX project\" f=\"LaTeX.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"La Cie.com\" 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\" 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\" 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\" 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=\"Laffster\" default_off=\"failed ruleset test\" f=\"Laffster.xml\"><securecookie host=\"^(?:www)?\\.nextstudioapps\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?nextstudioapps\\.com/\" to=\"https://www.nextstudioapps.com/\"/></ruleset>", "<ruleset name=\"Lagard&#232;re Publicit&#233; (partial)\" 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=\"lainchan.org\" f=\"Lainchan.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"LakeBTC.com\" f=\"LakeBTC.com.xml\"><securecookie host=\"^(?:www)?\\.lakebtc\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Lakome.com\" default_off=\"521\" f=\"Lakome.com.xml\"><securecookie host=\"^\\.lakome\\.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=\"Land of Bitcoin.com\" f=\"Land_of_Bitcoin.com.xml\"><securecookie host=\"^(?:www)?\\.landofbitcoin\\.com$\" name=\".+\"/><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)\" default_off=\"failed ruleset test\" 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\" 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)\" 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\" 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+)&amp;SiteID=(\\w+)&amp;Zone=(\\w+)$\" to=\"https://ads.lanistaads.com/$2/$2_$1_$3.html\"/></ruleset>", "<ruleset name=\"Lansforsakringar.se\" platform=\"mixedcontent\" 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=\"Laprox Sites.com\" f=\"Laprox_Sites.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></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 (buggy)\" default_off=\"breaks streaming\" f=\"Last.fm.xml\"><rule from=\"^http://last\\.fm/\" to=\"https://www.last.fm/\"/><rule from=\"^http://www\\.last\\.fm/(?=join|login|settings/lost(?:password|username))\" to=\"https://www.last.fm/\"/><rule from=\"^http://cdn\\.la?st\\.fm/\" to=\"https://www.last.fm/static/\"/></ruleset>", "<ruleset name=\"LastPass.com\" f=\"LastPass.xml\"><securecookie host=\"^(?:.+\\.)?lastpass\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"lastlog.de\" f=\"Lastlog.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Lastminute.com (partial)\" 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\" default_off=\"failed ruleset test\" f=\"Laup.xml\"><securecookie host=\"^\\.laup\\.nu$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Lautre.net admin and webmail area\" default_off=\"failed ruleset test\" f=\"Lautre.net.xml\"><rule from=\"^http://admin\\.lautre\\.net/(admin|rc)/\" to=\"https://admin.lautre.net/$1/\"/></ruleset>", "<ruleset name=\"Lavabit\" default_off=\"revoked\" f=\"Lavabit.xml\"><securecookie host=\"^(?:.+\\.)?lavabit\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Lavaboom.com\" f=\"Lavaboom.com.xml\"><securecookie host=\"^technical\\.lavaboom\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Lavasoft (broken)\" default_off=\"https gone\" f=\"Lavasoft.com.xml\"><rule from=\"^http://lavasoft\\.com/\" to=\"https://secure.lavasoft.com/\"/><rule from=\"^http://www\\.lavasoft\\.com/\" to=\"https://secure.lavasoft.com/\"/></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 &amp; 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\" 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\" default_off=\"failed ruleset test\" f=\"Layne_Publications.xml\"><securecookie host=\"^\\.www\\.laynepublications\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"LazyCoins.com\" 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\" f=\"LeFebvre.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"LeTemps.ch\" f=\"LeTemps.ch.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Le Loop.org\" platform=\"cacert\" f=\"Le_Loop.org.xml\"><securecookie host=\"^(?:git|links)\\.leloop\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Le Monde.fr (partial)\" f=\"Le_Monde.fr.xml\"><securecookie host=\"^\\.?(?:abo|boutique|monabo)\\.lemonde\\.fr$\" 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\" default_off=\"failed ruleset test\" 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=\"mismatch\" 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:\" 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\" 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\" default_off=\"failed ruleset test\" 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=\"Learning Biz Package.com\" default_off=\"failed ruleset test\" f=\"Learning_Biz_Package.com.xml\"><securecookie host=\"^(?:w*\\.)?learningbizpackage\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"LeaseRig.net\" 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\" 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=\"Legacy.com (partial)\" 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\" f=\"LegiScan.com.xml\"><securecookie host=\"^\\.legiscan\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"legislationsurveys.com\" default_off=\"failed ruleset test\" 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\" 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=\"mismatch\" 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=\"Legtux (cacert)\" platform=\"cacert\" default_off=\"failed ruleset test\" f=\"Legtux.xml\"><securecookie host=\"^(?:faq|www)\\.legtux\\.org$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?legtux\\.org/\" to=\"https://www.legtux.org/\"/><rule from=\"^http://(davask|faq)\\.legtux\\.org/\" to=\"https://$1.legtux.org/\"/></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\" 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 (mixed content)\" platform=\"mixedcontent\" 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=\"lennier.info\" f=\"Lennier.info.xml\"><securecookie host=\".\" 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://secure\\.lenos\\.com/\" to=\"https://secure.lenos.com/\"/></ruleset>", "<ruleset name=\"Lenovo (partial)\" f=\"Lenovo.xml\"><exclusion pattern=\"^http://www\\.lenovo\\.com/(lenovorecovery|support|training)\"/><exclusion pattern=\"http://shop\\.lenovo\\.com/\\w\\w/\\w\\w/services-warranty($|\\?|/)\"/><exclusion pattern=\"^http://outlet\\.lenovo\\.com/(?!.+/images/|.+/js/|.+/seutil\\.workflow:LoadCombinedResource|ISS_Static/|SEUILibrary/)\"/><exclusion pattern=\"http://support\\.lenovo\\.com/+(?!(App|~)/.+\\.((css|png)($|[?/])|ashx\\?w=\\d)|~/media/images/system/icon/rss\\.ashx)\"/><exclusion pattern=\"^http://(www\\.)?lenovo\\.co\\.uk/(?!$)\"/><exclusion pattern=\"^http://(blog|consumersupport|news|ovp|www\\.partnerinfo|social)\\.lenovo\\.com/\"/><securecookie host=\"\\.lenovo\\.com$\" name=\"VISITORID\"/><securecookie host=\"(forums|\\.?support)\\.lenovo\\.com$\" name=\".+\"/><rule from=\"^http://(www\\.)?lenovo\\.co\\.uk/$\" to=\"https://www.lenovo.com/uk/en/\"/><rule from=\"^http://(www\\.)?lenovo\\.com/depotstatus/?$\" to=\"https://download.lenovo.com/lenovo/content/vru/depotstatus.html\"/><rule from=\"^http://(www\\.)?lenovo\\.com/friendsandfamily/?$\" to=\"https://shop.lenovo.com/SEUILibrary/controller/Lenovo:EnterStdAffinity?affinity=lenovofamily&amp;ConfigContext=StdAffinityPortal\"/><rule from=\"^http://((www\\.)?lenovo\\.com/link/redirect\\.www\\.lenovo\\.com/)?(www\\.)?thinkpad\\.com/.*\" to=\"https://www.lenovo.com/us/en/?cid=SEO-thinkpadcom\"/><rule from=\"^http://lenovo\\.com/\" to=\"https://www.lenovo.com/\"/><rule from=\"^http://forum\\.lenovo\\.com/\" to=\"https://forums.lenovo.com/\"/><rule from=\"^http:///shop\\.lenovo\\.com/us/en/?(\\?redir=y&amp;redirsrc=1)?$\" to=\"https://www.lenovo.com/us/en/?redir=y&amp;redirsrc=1\"/><rule from=\"^http://(www\\.)?lenovovision\\.com/.*\" to=\"https://www.lenovo.com/\"/><rule from=\"^http:\" to=\"https:\"/><rule from=\"^https://www\\.lenovo\\.com/training/\" to=\"http://www.lenovo.com/training/\" downgrade=\"1\"/><rule from=\"^https://(blog|consumersupport|news|ovp|www\\.partnerinfo|social)\\.lenovo\\.com/\" to=\"http://$1.lenovo.com/\" downgrade=\"1\"/></ruleset>", "<ruleset name=\"Lenovo Orders.com\" default_off=\"missing certificate chain\" f=\"Lenovo_Orders.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Lenovo Picks.com\" default_off=\"missing certificate chain\" f=\"Lenovo_Picks.com.xml\"><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\"><exclusion pattern=\"http://bar\\.leo\\.org/\"/><rule from=\"^http://(?:www\\.)?leo\\.org/\" to=\"https://www.leo.org/\"/><rule from=\"^http://([^/:@]+)\\.leo\\.org/\" to=\"https://$1.leo.org/\"/></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=\"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\" 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)\" default_off=\"failed ruleset test\" 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\" 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://account\\.level3\\.com/\" to=\"https://account.level3.com/\"/></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 (false MCB)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Leviathan_Security.com-falsemixed.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Leviathan Security.com (partial)\" default_off=\"failed ruleset test\" f=\"Leviathan_Security.com.xml\"><exclusion pattern=\"^http://(?:www\\.)?leviathansecurity\\.com/+blog(?:$|[?/])\"/><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\" 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)\" f=\"Liberty_Flail_Mowers.com.xml\"><rule from=\"^http://(www\\.)?libertyflailmowers\\.com/(?!/*(?:$|\\?))\" to=\"https://$1libertyflailmowers.com/\"/></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\" 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 (mixedcontent)\" f=\"LibreOffice-mixedcontent.xml\"><exclusion pattern=\"^http://extensions\\.libreoffice\\.org/$\"/><rule from=\"^http://extensions\\.libreoffice\\.org/(.+)(\\.css|\\.gif|\\.js|\\.png|\\/logo|\\/screenshot_thumb)$\" to=\"https://extensions.libreoffice.org/$1$2\"/><exclusion pattern=\"^http://templates\\.libreoffice\\.org/$\"/><rule from=\"^http://templates\\.libreoffice\\.org/(.+)(\\.css|\\.gif|\\.js|\\.png)$\" to=\"https://templates.libreoffice.org/$1$2\"/></ruleset>", "<ruleset name=\"LibreOffice\" f=\"LibreOffice.xml\"><securecookie host=\"^(?:donate|help|www)\\.libreoffice\\.org$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"LibreOffice-Box\" default_off=\"failed ruleset test\" 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=\"^(?:www\\.)?libreplanet\\.org$\" name=\".+\"/><rule from=\"^http://(?:(media\\.)|www\\.)?libreplanet\\.org/\" to=\"https://$1libreplanet.org/\"/></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=\"Libreboot.org\" f=\"Libreboot.org.xml\"><rule from=\"^http:\" to=\"https:\"/></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=\"libsodium.org (partial)\" f=\"Libsodium.org.xml\"><rule from=\"^http://download\\.libsodium\\.org/\" to=\"https://download.libsodium.org/\"/></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)\" 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&#233;.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)\" default_off=\"failed ruleset test\" 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|h|i)\\.ligatus\\.com/\" to=\"https://$1-ssl.ligatus.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Light-Paint.com\" default_off=\"failed ruleset test\" f=\"Light-Paint.com.xml\"><securecookie host=\"^light-paint\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?light-paint\\.com/\" to=\"https://light-paint.com/\"/><rule from=\"^http://secure\\.light-paint\\.com/\" to=\"https://secure.light-paint.com/\"/></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/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"lighttpd.net\" platform=\"cacert\" default_off=\"missing certificate chain\" 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\" default_off=\"failed ruleset test\" f=\"Likeyed.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Liliani\" default_off=\"failed ruleset test\" 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\" default_off=\"failed ruleset test\" f=\"Lilliputti.com.xml\"><rule from=\"^http://(?:www\\.)?lilliputti\\.com/\" to=\"https://lilliputti.com/\"/></ruleset>", "<ruleset name=\"limango\" 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\" 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=\"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=\"mismatch\" 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)\" f=\"Lingospot.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Linguee\" default_off=\"failed ruleset test\" f=\"Linguee.xml\"><rule from=\"^http://(?:www\\.)?linguee\\.(com|de)/\" to=\"https://www.linguee.$1/\"/><rule from=\"^http://tool\\.linguee\\.com/\" to=\"https://tool.linguee.com/\"/></ruleset>", "<ruleset name=\"Link+ Catalog\" f=\"Link-Plus-Catalog.xml\"><exclusion pattern=\"^https://csul\\.iii\\.com/search~S0\\?/(?:[^/]+/){3}bibimage(:$|[^a-zA-Z])\"/><rule from=\"^https://csul\\.iii\\.com/(?=search~S0\\?/(?:[^/]+/){3}/bibimage(?:$|[^a-zA-Z]))\" to=\"http://csul.iii.com/\" downgrade=\"1\"/><rule from=\"^http://csul\\.iii\\.com/\" to=\"https://csul.iii.com/\"/></ruleset>", "<ruleset name=\"LinkShare\" 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://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)\" 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=\"LinksFU.com\" default_off=\"mismatched, self-signed\" f=\"LinksFU.com.xml\"><rule from=\"^http://(?:www\\.)?linksfu\\.com/\" to=\"https://linksfu.com/\"/></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)\" 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\" 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\" default_off=\"failed ruleset test\" 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=\"mismatch\" 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-dev.org\" platform=\"cacert\" default_off=\"failed ruleset test\" f=\"Linux-dev.org.xml\"><securecookie host=\"^www\\.linux-dev\\.org$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?linux-dev\\.org/\" to=\"https://www.linux-dev.org/\"/></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.cn\" f=\"Linux.cn.xml\"><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.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)\" f=\"LinuxFoundation.xml\"><exclusion pattern=\"^http://collabprojects\\.linuxfoundation\\.org/+(?!sites/)\"/><exclusion pattern=\"^http://events(?:stg)?\\.linuxfoundation\\.org/+(?!sites/)\"/><exclusion pattern=\"^http://www\\.linuxfoundation\\.org/(?!about/join/individual(?:$|[?/])|cas\\?|misc/|sites/|user(?:$|\\?))\"/><securecookie host=\"^(?!collabprojects\\.|events\\.).\" name=\".\"/><rule from=\"^http://go\\.linuxfoundation\\.org/+(?:\\?.*)?$\" to=\"https://www.linuxfoundation.org/\"/><rule from=\"^http://go\\.linuxfoundation\\.org/\" to=\"https://pi.pardot.com/\"/><rule from=\"^http:\" to=\"https:\"/></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\" 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\" 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 (partial)\" default_off=\"mismatched, self-signed\" f=\"Linux_Voice.com.xml\"><rule from=\"^http://(?:www\\.)?linuxvoice\\.com/\" to=\"https://www.linuxvoice.com/\"/></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=\"linuxhostsupport.com\" f=\"Linuxhostsupport.com.xml\"><securecookie host=\"^linuxhostsupport\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></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)\" 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 &amp; 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 &amp; Wilkins (problematic)\" default_off=\"mismatch\" 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\" default_off=\"failed ruleset test\" f=\"Liquidmatrix.org.xml\"><securecookie host=\"^\\.liquidmatrix\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Lisonfan.com\" f=\"Lisonfan.com.xml\"><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=\"connection 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=\"LiteTree.com\" default_off=\"failed ruleset test\" f=\"LiteTree.com.xml\"><securecookie host=\"^\\.litetree\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></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=\"Litecoin24.nl\" f=\"Litecoin24.nl.xml\"><securecookie host=\"^(?:\\.|www\\.)?litecoin24\\.nl$\" 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\" 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\" f=\"Live.net.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Live.com\" f=\"Live.xml\"><securecookie host=\"^\\.?(?:account|consent|people\\.directory|(?:login\\.)?domains|login|mail|messenger|postmaster|profile|signup)\\.live\\.com$\" name=\".+\"/><rule from=\"^http://live\\.com/\" to=\"https://www.live.com/\"/><rule from=\"^http://[^@:/.]+\\.([^@:/.]+)\\.mail\\.live\\.com/\" to=\"https://$1.mail.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)\" 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)\" f=\"LiveMeme.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"LivePerson.net\" f=\"LivePerson.net.xml\"><securecookie host=\".*\\.liveperson\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"LivePerson (partial)\" platform=\"mixedcontent\" 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=\"mismatch\" f=\"LiveRail-problematic.xml\"><rule from=\"^http://(?:cdn-)?static\\.liverail\\.com/\" to=\"https://cdn-static.liverail.com/\"/></ruleset>", "<ruleset name=\"LiveRail.com (partial) \" 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=\"LiveWyer.com\" f=\"LiveWyer.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"LiveZilla.net (partial)\" 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://www\\.livebusinesschat\\.com/\" to=\"https://www.livebusinesschat.com/\"/></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 Strong.com (partial)\" platform=\"mixedcontent\" f=\"Live_Strong.com.xml\"><securecookie host=\"^(?:.*\\.)?livestrong\\.org$\" name=\".+\"/><rule from=\"^http://(?:livestrong\\.com|i\\.lsimg\\.net)/\" to=\"https://www.livestrong.com/\"/><rule from=\"^http://www\\.livestrong\\.com/(login/|remind/|register/|shop(?:$|\\?))\" to=\"https://www.livestrong.com/$1\"/></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://ecdn\\.liveclicker\\.net/\" to=\"https://ecdn.liveclicker.net/\"/></ruleset>", "<ruleset name=\"Livecoding.tv (partial)\" f=\"Livecoding.tv.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Livefyre (mismatches)\" default_off=\"mismatch\" 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\" f=\"LivingSocial.co.uk.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"LivingSocial.com (partial)\" 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\" default_off=\"failed ruleset test\" f=\"Lj.Rossia.Org.xml\"><rule from=\"^http://lj\\.rossia\\.org/\" to=\"https://lj.rossia.org/\"/></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)\" 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\" default_off=\"failed ruleset test\" 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\" default_off=\"failed ruleset test\" 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 (partial)\" f=\"Local.xml\"><rule from=\"^http://sifomedia\\.thelocal\\.se/\" to=\"https://oasc16.247realmedia.com/\"/><rule from=\"^http://d\\.thelocal\\.com/\" to=\"https://thelocal-d3.openxenterprise.com/\"/></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=\"Local Media.org\" f=\"Local_Media.org.xml\"><securecookie host=\"^www\\.localmedia\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"localbitcoins.com\" f=\"Localbitcoins.com.xml\"><securecookie host=\"^(?:w*\\.)?localbitcoins\\.com$\" 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\" 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=\"Lockbox.com\" default_off=\"failed ruleset test\" f=\"Lockbox.com.xml\"><rule from=\"^http://(support\\.|www\\.)?lockbox\\.com/\" to=\"https://$1lockbox.com/\"/><rule from=\"^http://client\\.lock-box\\.net/\" to=\"https://client.lock-box.net/\"/></ruleset>", "<ruleset name=\"LockerDome.com\" f=\"LockerDome.com.xml\"><rule from=\"^http://(cdn2?\\.|www\\.)?lockerdome\\.com/\" to=\"https://$1lockerdome.com/\"/></ruleset>", "<ruleset name=\"Lockerz (partial)\" default_off=\"failed ruleset test\" f=\"Lockerz.xml\"><rule from=\"^http://shop\\.lockerz\\.com/\" to=\"https://shop.lockerz.com/\"/><rule from=\"^http://static\\.lockerz\\.com/\" to=\"https://d8o6wu1tc2zf3.cloudfront.net/\"/><rule from=\"^http://support\\.lockerz\\.com/generated/\" to=\"https://generated.zendesk.com/generated/\"/><rule from=\"^http://api\\.plixi\\.com/\" to=\"https://api.plixi.com/\"/></ruleset>", "<ruleset name=\"Loctudy\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Loctudy.xml\"><securecookie host=\"^www\\.loctudy\\.fr$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?loctudy\\.fr/\" to=\"https://www.loctudy.fr/\"/></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 (self-signed)\" default_off=\"self-signed\" f=\"Logilab-self-signed.xml\"><rule from=\"^http://(?:www\\.)?logilab\\.org/data/\" to=\"https://www.logilab.org/data/\"/></ruleset>", "<ruleset name=\"Logilab (partial)\" f=\"Logilab.xml\"><securecookie host=\"^(?:.*\\.)?logilab\\.fr$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?logilab\\.fr/data/\" to=\"https://www.logilab.fr/data/\"/><rule from=\"^http://piwik\\.logilab\\.fr/\" to=\"https://piwik.logilab.fr/\"/></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=\"lohud.com (partial)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" 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\" 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\" 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://manager\\.londit\\.com/\" to=\"https://manager.londit.com/\"/></ruleset>", "<ruleset name=\"London 2012 (mismatches)\" default_off=\"mismatch\" 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 &amp; 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)\" 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\" 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)\" f=\"LongDate.pl.xml\"><securecookie host=\"^(?:www\\.)?longdate\\.pl$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"LongTail (partial)\" 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)\" 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=\"^\\.longform\\.org$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?longform\\.org/\" to=\"https://longform.org/\"/></ruleset>", "<ruleset name=\"Look.co.uk (mixed content)\" platform=\"mixedcontent\" 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=\"Look to the Stars.org\" f=\"Look_to_the_Stars.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Lookback.io\" f=\"Lookback.io.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"LookingGlass.email\" 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\" 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=\"LoopFuse (partial)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"LoopFuse.xml\"><exclusion pattern=\"^http://(?:www\\.)?loopfuse\\.net/webrecorder/js/listen\\.js\"/><securecookie host=\"^(?:.*\\.)?loopfuse\\.(?:com|net)$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?loopfuse\\.(com|net)/\" to=\"https://www.loopfuse.$1/\"/><rule from=\"^http://(blog|community|help)\\.loopfuse\\.com/\" to=\"https://$1.loopfuse.com/\"/></ruleset>", "<ruleset name=\"LoopPay\" 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\" default_off=\"failed ruleset test\" 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=\"Lorea\" default_off=\"expired\" f=\"Lorea.xml\"><rule from=\"^http:\" to=\"https:\"/></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=\"mismatch\" f=\"Lotus-Cars-mismatches.xml\"><rule from=\"^http://(?:www\\.)?lotuscars\\.com/\" to=\"https://lotuscars.com/\"/></ruleset>", "<ruleset name=\"Lotus Cars (partial)\" default_off=\"connection 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=\"Louis Milan\" default_off=\"failed ruleset test\" f=\"Louis_Milan.xml\"><securecookie host=\"^(?:.*\\.)?louismilan\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Louise Harrison Couture.com\" 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)\" default_off=\"failed ruleset test\" 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\" 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)\" 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\" 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\" 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\" 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)\" 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\" f=\"Loyal_Forex.xml\"><securecookie host=\"^\\.loyalforex\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"lp0.eu (CAcert)\" platform=\"cacert\" f=\"Lp0.xml\"><rule from=\"^http://(\\w+\\.)?lp0\\.eu/\" to=\"https://$1lp0.eu/\"/></ruleset>", "<ruleset name=\"Lubin 1982\" default_off=\"mismatch\" 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\" 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\" 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&#229; Municipality\" f=\"Lulea_Municipality.xml\"><securecookie host=\"^(?:www\\.)?lulea\\.se$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Lule&#229; 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 (partial)\" f=\"LulzBot.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)\" default_off=\"failed ruleset test\" 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\" 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://(?:(securesend\\.|webmail\\.|xpress\\.)|www\\.)?luxsci\\.com/\" to=\"https://$1luxsci.com/\"/><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\" 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)\" 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=\"mismatch\" 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\" f=\"M-W.co.uk.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"M&amp;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=\"M2fjob.com\" default_off=\"Breaks login functionality\" f=\"M2fjob.com.xml\"><rule from=\"^http://(?:www\\.)?m2fjob\\.com/\" to=\"https://www.m2fjob.com/\"/></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 &amp; Related Disorders Program\" f=\"MA-General-Hospital-OCD.xml\"><rule from=\"^http://(?:www\\.)?mghocd\\.org/\" to=\"https://mghocd.org/\"/></ruleset>", "<ruleset name=\"MAAWG\" default_off=\"failed ruleset test\" f=\"MAAWG.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MAC Paper.com (partial)\" 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\" 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\" 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\" 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=\"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\" 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)\" f=\"MBank.xml\"><securecookie host=\"^(?:cz|sk)\\.mbank\\.eu$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MBnet.fi (partial)\" 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)\" 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://mdts\\.uk\\.com/\" to=\"https://mdts.uk.com/\"/></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\" f=\"MERY.jp.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MESO-Rx\" 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\" default_off=\"failed ruleset test\" f=\"MFi.re.xml\"><rule from=\"^http:\" to=\"https:\"/></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://www\\.mi5\\.gov\\.uk/\" to=\"https://www.mi5.gov.uk/\"/></ruleset>", "<ruleset name=\"MI6.ua\" default_off=\"connection 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\" f=\"MIMS.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MIN_Commsy\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" 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)\" 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=\"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=\"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=\"^(?:\\.|www\\.)?mkssoftware\\.com$\" 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=\"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)\" 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=\"MNGinteractive.com\" default_off=\"timeout\" f=\"MNGinteractive.com.xml\"><rule from=\"^http://(?:secure\\.)?extras\\.mnginteractive\\.com/\" to=\"https://secure.extras.mnginteractive.com/\"/></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=\"connection dropped\" f=\"MOG.xml\"><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=\"MP3Skull\" f=\"MP3Skull.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http://(?:www\\.)?mp3skull\\.is/\" to=\"https://mp3skull.wtf/\"/><rule from=\"^http://(?:www\\.)?mp3skull\\.wtf/\" to=\"https://mp3skull.wtf/\"/></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\" f=\"MPlayer.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MPort.ua\" default_off=\"connection 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\" 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)\" 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\" default_off=\"expired, mismatch, self-signed\" f=\"MSFN.xml\"><securecookie host=\"^\\.msfn\\.org$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?msfn\\.org/\" to=\"https://www.msfn.org/\"/></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|sg)\\.msn\\.com/\" to=\"https://c.msn.co.jp/\"/><rule from=\"^http://h\\.msn\\.com/\" to=\"https://h.live.com/\"/><rule from=\"^http://imgs1-video\\.msn\\.com/\" to=\"https://imgs1-video.ssl.catalog.video.msn.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)\" 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\" default_off=\"failed ruleset test\" f=\"MTAC.xml\"><rule from=\"^http://(?:www\\.)?mtac\\.org/\" to=\"https://www.mtac.org/\"/></ruleset>", "<ruleset name=\"MTNA\" default_off=\"mismatch\" 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=\"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\" 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&amp;\"/><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&amp;O=SM&amp;\"/><rule from=\"^http://links\\.maas360\\.com/getStartedNow/*$\" to=\"https://trials.maas360.com/forms/register_service_m.php?A=YouTube&amp;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&amp;value=webinar&amp;type=1&amp;include=4&amp;search=1\"/></ruleset>", "<ruleset name=\"MacFound.org (partial)\" 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\" default_off=\"self-signed\" f=\"MacWorld.com.au.xml\"><securecookie host=\"^www\\.macworld\\.com\\.au$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?macworld\\.com\\.au/\" to=\"https://www.macworld.com.au/\"/></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\" default_off=\"failed ruleset test\" 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\" 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\" 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=\"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\" 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\" 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)\" 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\" f=\"Magazin.io.xml\"><rule from=\"^http://www\\.magazin\\.io/\" to=\"https://magazin.io/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"magazinesdirect.com\" default_off=\"failed ruleset test\" f=\"Magazinesdirect.com.xml\"><securecookie host=\"^www\\.magazinesdirect\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mageia.org\" 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 (false MCB)\" platform=\"mixedcontent\" 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 (partial)\" f=\"Magento.xml\"><rule from=\"^http://www\\.magento\\.com/\" to=\"https://magento.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Magento Commerce.com (buggy)\" default_off=\"breaks downloads\" f=\"Magento_Commerce.com.xml\"><exclusion pattern=\"^http://(?:www\\.)?magentocommerce\\.com/download\"/><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)\" 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=\"Mahones Home Decor\" default_off=\"failed ruleset test\" f=\"Mahones_Home_Decor.xml\"><securecookie host=\"^(?:.*\\.)?mahoneshomedecor\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></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.com\" 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 (mismatches)\" default_off=\"mismatch\" f=\"MailChimp-mismatches.xml\"><securecookie host=\"^status\\.mailchimp\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MailChimp (partial)\" f=\"MailChimp.xml\"><exclusion pattern=\"^http://mailchimp\\.com/+(?!(?:blog|login|signup)(?:$|[?/])|assets/)\"/><securecookie host=\"^.+\\.mailchimp\\.com$\" name=\".+\"/><rule from=\"^http://((?:(?:\\w+\\.)?admin|blog|cdn-images|connect|gallery|login|sfbloghost|www)\\.)?mailchimp\\.com/\" to=\"https://$1mailchimp.com/\"/><rule from=\"^http://downloads\\.mailchimp\\.com/\" to=\"https://d1zgderxoe1a.cloudfront.net/\"/><rule from=\"^http://experts\\.mailchimp\\.com/\" to=\"https://mc-experts.herokuapp.com/\"/><rule from=\"^http://static\\.mailchimp\\.com/\" to=\"https://dbfv8p2wljo34.cloudfront.net/\"/></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=\"Mail in a Box.email\" f=\"Mail_in_a_Box.email.xml\"><securecookie host=\"^discourse\\.mailinabox\\.email$\" name=\".+\"/><rule from=\"^http://www\\.mailinabox\\.email/\" to=\"https://box.occams.info/\"/><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)\" 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://(www\\.)?mailinator\\.com/\" to=\"https://$1mailinator.com/\"/><rule from=\"^http://([\\w-]+)\\.mailinator\\.com/\" to=\"https://www.mailinator.com/inbox.jsp?to=$1\"/></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)\" 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 (partial)\" f=\"Mailvelope.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"main-host.de\" default_off=\"failed ruleset test\" f=\"Main-host.de.xml\"><rule from=\"^http://(?:www\\.)?main-host\\.de/\" to=\"https://www.main-host.de/\"/><rule from=\"^http://kunden\\.main-host\\.de/\" to=\"https://kunden.main-host.de/\"/></ruleset>", "<ruleset name=\"Maine.gov (partial)\" 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 Designs Doll Fashions\" default_off=\"failed ruleset test\" f=\"Major-Designs-Doll-Fashions.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"major.io\" f=\"Major.io.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Majordomo.ru (false MCB)\" platform=\"mixedcontent\" f=\"Majordomo.ru-falsemixed.xml\"><securecookie host=\"^book\\.majordomo\\.ru$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Majordomo.ru (partial)\" 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\" default_off=\"failed ruleset test\" 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\" f=\"Makes.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Makewebeasy.com\" default_off=\"connection 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)\" 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=\"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\" default_off=\"failed ruleset test\" f=\"Malvern_Diabetic_Foot.org.xml\"><securecookie host=\"^www\\.malverndiabeticfoot\\.org$\" name=\".+\"/><rule from=\"^http://www\\.malverndiabeticfoot\\.org/\" to=\"https://www.malverndiabeticfoot.org/\"/></ruleset>", "<ruleset name=\"malware-research.org\" f=\"Malware-research.org.xml\"><securecookie host=\"^\\.malware-research\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MalwareTech.net\" 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 (partial)\" 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\" f=\"Malwaredomainlist.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Malwr.com (partial)\" f=\"Malwr.com.xml\"><rule from=\"^http://malwr\\.com/\" to=\"https://malwr.com/\"/></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\" 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=\"ManageWP.org\" f=\"ManageWP.org.xml\"><securecookie host=\"^\\.managewp\\.org$\" name=\"^(?:__cfduid|cf_clearance)$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Managed Forex Program.com (false MCB)\" platform=\"mixedcontent\" 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)\" 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 &amp; 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=\"Mandriva.com (false MCB)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Mandriva.com-falsemixed.xml\"><rule from=\"^http://(blog|forum)\\.mandriva\\.com/(?!cron\\.php|favicon\\.ico|style\\.php|\\w\\w/(?:styles|wp-content)/)\" to=\"https://$1.mandriva.com/\"/></ruleset>", "<ruleset name=\"Mandriva.com\" default_off=\"failed ruleset test\" f=\"Mandriva.com.xml\"><exclusion pattern=\"^http://(?:blog|forum)\\.mandriva\\.com/(?!cron\\.php|favicon\\.ico|style\\.php|\\w\\w/(?:styles|wp-content)/)\"/><securecookie host=\".+\\.mandriva\\.com$\" name=\".+\"/><rule from=\"^http://((?:blog|expert|forum|git|lists|my|qa|serviceplace|svn|webapps|www2?)\\.)?mandriva\\.com/\" to=\"https://$1mandriva.com/\"/><rule from=\"^http://store\\.mandriva\\.com/[^?]*\" to=\"https://serviceplace.mandriva.com/\"/></ruleset>", "<ruleset name=\"Manga (partial)\" 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\" 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\" f=\"Manx_Computer_Bureau.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ManyVids.com (partial)\" f=\"ManyVids.com.xml\"><securecookie host=\"^(?:www)?\\.manyvids\\.com$\" 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\" default_off=\"expired\" f=\"MapLight.xml\"><rule from=\"^http://(?:www\\.)?maplight\\.org/\" to=\"https://maplight.org/\"/></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\" 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=\"Marhaba Brighton\" default_off=\"failed ruleset test\" f=\"Marhaba_Brighton.xml\"><securecookie host=\"^\\.marhababrighton\\.co\\.uk$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></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 &amp; Associates\" default_off=\"mismatch\" 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\" default_off=\"failed ruleset test\" 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)\" 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\" default_off=\"failed ruleset test\" f=\"Marion_Star.xml\"><rule from=\"^http://(?:cmsimg\\.|www\\.)?marionstar\\.com/\" to=\"https://www.marionstar.com/\"/></ruleset>", "<ruleset name=\"Mark Meyer Photography\" default_off=\"mismatch\" 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\" 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=\"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\" 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 (problematic)\" default_off=\"cert mismatches\" f=\"Marketplace.org-problematic.xml\"><exclusion pattern=\"^http://(?:www\\.)?marketplace\\.org/(?:favicon\\.ico|misc/|modules/|sites/)\"/><securecookie host=\"^origin-www\\.marketplace\\.org$\" name=\".+\"/><rule from=\"^http://(?:(?:origin-)?www\\.)?marketplace\\.org/\" to=\"https://origin-www.marketplace.org/\"/></ruleset>", "<ruleset name=\"Marketplace.org (partial)\" f=\"Marketplace.org.xml\"><exclusion pattern=\"^http://(?:www\\.)?marketplace\\.org/(?!favicon\\.ico|misc/|modules/|sites/)\"/><securecookie host=\"^\\.marketplace\\.org$\" name=\"^WT_FPC$\"/><rule from=\"^http://thenumbers\\.marketplace\\.org/\" to=\"https://markets.financialcontent.com/\"/><rule from=\"^http://tracker\\.financialcontent\\.com/\" to=\"https://tracker.financialcontent.com/\"/></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\" platform=\"mixedcontent\" f=\"Marketwatch.com.xml\"><securecookie host=\"^\\.marketwatch\\.com$\" name=\".*\"/><rule from=\"^http://(www\\.)?marketwatch\\.com/\" to=\"https://secure.marketwatch.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Marketwire\" default_off=\"failed ruleset test\" 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=\"Markup\" default_off=\"mismatch\" f=\"Markup.xml\"><rule from=\"^http://(?:www\\.)?markup\\.io/\" to=\"https://markup.io/\"/></ruleset>", "<ruleset name=\"marmotte.net (partial)\" platform=\"cacert\" 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\" default_off=\"failed ruleset test\" 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=\"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 (false MCB)\" platform=\"mixedcontent\" f=\"Marvel.com-falsemixed.xml\"><rule from=\"^http://marvel\\.com:81/\" to=\"https://marvel.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Marvel.com (partial)\" f=\"Marvel.com.xml\"><exclusion pattern=\"^http://(?:www\\.)?marvel\\.com(?::81/|/+universe(?:$|[?/]))\"/><exclusion pattern=\"^http://marvel\\.com/universe3zx/index\\.php\"/><exclusion pattern=\"^http://secure\\.marvel\\.com/(?:\\?.*)?$\"/><exclusion pattern=\"^http://subscriptions\\.marvel\\.com/(?!$|css/|i/|images/|(?:login|store/shippingr)\\.asp|script/)\"/><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\" 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\\.)?marxists\\.org/\" to=\"https://www.marxists.org/\"/><rule from=\"^http://(?:www\\.)?marx\\.org/\" to=\"https://www.marxists.org/\"/></ruleset>", "<ruleset name=\"Maryland Shooters\" default_off=\"failed ruleset test\" f=\"Maryland_Shooters.xml\"><securecookie host=\"^(?:www\\.)?mdshooters\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mashape.com (partial)\" f=\"Mashape.com.xml\"><securecookie host=\"^(?:id|www)\\.mashape\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mashery clients\" default_off=\"failed ruleset test\" 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)\" 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)\" 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=\"Massdrop.com\" f=\"Massdrop.com.xml\"><securecookie host=\"^www\\.massdrop\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Massrel.io\" f=\"Massrel.io.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MasterCard\" 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\" 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\" 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=\"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)\" 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=\"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=\"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\" default_off=\"failed ruleset test\" 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=\"Matthew Petroff\" default_off=\"self-signed\" f=\"Matthew_Petroff.xml\"><securecookie host=\"^www\\.mpetroff\\.net$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?mpetroff\\.net/\" to=\"https://www.mpetroff.net/\"/></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)\" 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=\"^\\.(?:[\\w-]\\.)?maxcdn\\.com$\" name=\"^optimizely\\w+$\"/><securecookie host=\"^secure(?:-cdn)?\\.maxcdn\\.com$\" name=\".+\"/><rule from=\"^http://maxcdn\\.com/\" to=\"https://www.maxcdn.com/\"/><rule from=\"^http://blog\\.maxcdn\\.com/+\" to=\"https://www.maxcdn.com/blog/\"/><rule from=\"^http://support\\.maxcdn\\.com/+\" to=\"https://www.maxcdn.com/one/\"/><rule from=\"^http://status\\.maxcdn\\.com/\" to=\"https://maxcdn.statuspage.io/\"/><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=\"Maxim-IC.com\" 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)\" 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\" f=\"Maxon.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Maxymiser (partial)\" 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=\"mismatch\" 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=\"mismatch\" 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\" 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\" f=\"MazaCoin.org.xml\"><securecookie host=\"^(?:www\\.)?mazacoin\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"mazacha.in\" 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\" f=\"McAfee-SECURE.xml\"><securecookie host=\"^(support\\.|www\\.|www2\\.)?mcafeesecure\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"McAfee.com (partial)\" 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)\" default_off=\"failed ruleset test\" f=\"McClatchy_Interactive.com.xml\"><rule from=\"^http://media\\.mcclatchyinteractive\\.com/\" to=\"https://media.mcclatchyinteractive.com/\"/></ruleset>", "<ruleset name=\"McDelivery Malaysia\" f=\"McDelivery-Malaysia.xml\"><securecookie host=\"^(www\\.)?mcdelivery\\.com\\.my$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"McEvoy Group (partial)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" 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\" 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\" 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\" default_off=\"failed ruleset test\" 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=\"connection 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=\"mdosche.de\" 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\" 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\" 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)\" 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\" default_off=\"failed ruleset test\" f=\"Medgadget.xml\"><rule from=\"^http://(www\\.)?medgadget\\.com/\" to=\"https://$1medgadget.com/\"/><rule from=\"^http://cdn\\.medgadget\\.com/\" to=\"https://dsuktxmmtzwrn.cloudfront.net/\"/></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=\"mismatch\" 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)\" default_off=\"failed ruleset test\" 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=\"MediaEd.org\" 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 (buggy)\" default_off=\"https://www.eff.org/r.2arJ\" f=\"MediaFire.xml\"><rule from=\"^http://(?:www\\.)?mediafire\\.com/(?=blank\\.html|images/|js/|s(?:elect_account_type|sl_login)\\.php)\" to=\"https://www.mediafire.com/\"/><rule from=\"^http://(?:orig-|static)?cdn\\.mediafire\\.com/\" to=\"https://origin-cdn.mediafire.com/\"/><rule from=\"^http://(download\\d+|cdnssl)\\.mediafire\\.com/\" to=\"https://$1.mediafire.com/\"/></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=\"MediaInfo\" f=\"MediaInfo.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MediaLayer.com (mismatches)\" default_off=\"Certificate mismatch\" f=\"MediaLayer.com-mismatches.xml\"><rule from=\"^http://(?:www\\.)?medialayer\\.com/\" to=\"https://www.medialayer.com/\"/></ruleset>", "<ruleset name=\"MediaLayer.com (partial)\" default_off=\"failed ruleset test\" f=\"MediaLayer.com.xml\"><rule from=\"^http://(clients|support)\\.medialayer\\.com/\" to=\"https://$1.medialayer.com/\"/><rule from=\"^http://(?:www\\.)?medialayer\\.net/\" to=\"https://www.medialayer.net/\"/></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\" 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\" 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=\"mismatch\" f=\"Mediaite.xml\"><rule from=\"^http://(media|videos)\\.mediaite\\.com/\" to=\"https://$1.mediaite.com/\"/></ruleset>", "<ruleset name=\"Medialand.ru (partial)\" 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&#233;diam&#233;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)\" 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\" 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 Express\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Medical_Express.xml\"><rule from=\"^http://(www\\.)?medicalxpress\\.com/\" to=\"https://$1medicalxpress.com/\"/><rule from=\"^http://m\\.ph-cdn\\.com/tmpl/\" to=\"https://medicalxpress.com/tmpl/\"/></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\" default_off=\"failed ruleset test\" 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\" default_off=\"failed ruleset test\" f=\"MediciGlobal.com-falsemixed.xml\"><securecookie host=\"^mediciglobal\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MediciGlobal.com (partial)\" f=\"MediciGlobal.com.xml\"><exclusion pattern=\"^http://mediciglobal\\.com/+(?!css/|favicon\\.ico|images/|js/)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MedicineNet.com (broken)\" default_off=\"Bad redirects\" f=\"MedicineNet.com.xml\"><exclusion pattern=\"^http://images\\.medicinenet\\.com/css/\"/><exclusion pattern=\"^http://(?:www\\.)?medicinenet\\.com/(?!images/)\"/><rule from=\"^http://(?:images\\.|(www\\.))?medicinenet\\.com/\" to=\"https://$1medicinenet.com/\"/></ruleset>", "<ruleset name=\"MedicinesComplete.com\" f=\"MedicinesComplete.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mediekompaniet.com (partial)\" 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\" default_off=\"failed ruleset test\" 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)\" default_off=\"failed ruleset test\" f=\"Medius_Corp.com.xml\"><rule from=\"^http://services-sj\\.mediuscorp\\.com/\" to=\"https://services-sj.mediuscorp.com/\"/></ruleset>", "<ruleset name=\"Medius Viewer.com\" default_off=\"failed ruleset test\" 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\" 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\" 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=\"Meetey.com\" default_off=\"failed ruleset test\" f=\"Meetey.com.xml\"><securecookie host=\"^(?:w*\\.)?meetey\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></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)\" 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\" 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://community\\.mega\\.com/\" to=\"https://community.mega.com/\"/></ruleset>", "<ruleset name=\"Mega\" f=\"Mega.xml\"><securecookie host=\"^mega\\.(co\\.)?nz$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MegaBigPower.com\" f=\"MegaBigPower.com.xml\"><securecookie host=\"^(?:www\\.)?megabigpower\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MegaFiles.se\" default_off=\"self-signed\" f=\"MegaFiles.se.xml\"><securecookie host=\"^\\.megafiles\\.se$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?megafiles\\.se/\" to=\"https://megafiles.se/\"/></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)\" 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\" 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=\"Mega Youtube Views\" default_off=\"failed ruleset test\" f=\"Mega_Youtube_Views.xml\"><securecookie host=\"^(?:www\\.)?megayoutubeviews\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Megabus\" 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 (partial)\" f=\"MeiTuan.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\" 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=\"melpa.org\" f=\"Melpa.org.xml\"><rule from=\"^https://www\\.melpa\\.org/\" to=\"https://melpa.org/\"/><rule from=\"^https://www\\.stable\\.melpa\\.org/\" to=\"https://stable.melpa.org/\"/><rule from=\"^http://(www\\.)?melpa\\.org/\" to=\"https://melpa.org/\"/><rule from=\"^http://(www\\.)?stable\\.melpa\\.org/\" to=\"https://stable.melpa.org/\"/></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=\"Memberful.com\" 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=\"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\" 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=\"mismatch\" 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=\"MemphisCourtside.com\" default_off=\"expired, self-signed\" f=\"MemphisCourtside.xml\"><securecookie host=\"^memphiscourtside.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?memphiscourtside\\.com/\" to=\"https://memphiscourtside.com/\"/></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\" 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)\" 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\" 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)\" 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://bugs\\.merproject\\.org/\" to=\"https://bugs.merproject.org/\"/></ruleset>", "<ruleset name=\"mer.io\" f=\"Mer.io.xml\"><securecookie host=\"^(?:w*\\.)?mer\\.io$\" name=\".+\"/><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=\"Mercado Bitcoin.net\" f=\"Mercado_Bitcoin.net.xml\"><securecookie host=\"^(?:www\\.)?mercadobitcoin\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mercatus Center\" default_off=\"expired, self-signed\" f=\"Mercatus-Center.xml\"><rule from=\"^http://(?:www\\.)?mercatus\\.org/sites/\" to=\"https://mercatus.org/sites/\"/></ruleset>", "<ruleset name=\"MerchDirect (partial)\" 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\" 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)\" 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=\"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\" default_off=\"self-signed\" f=\"Mersenne.org.xml\"><securecookie host=\"^\\.mersenne\\.org$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?mersenne\\.org/\" to=\"https://www.mersenne.org/\"/></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=\"mismatch\" 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=\"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=\"MetaPress (partial)\" default_off=\"failed ruleset test\" f=\"MetaPress.org.xml\"><rule from=\"^http://(www\\.)?metapress\\.org/(dynamic-file\\.axd|images/)\" to=\"https://www.metapress.org/$2\"/></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\" 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\" 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=\"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\" 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\" 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://ctrack\\.metrics34\\.com/\" to=\"https://ctrack.metrics34.com/\"/></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=\"mismatch\" 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\" default_off=\"failed ruleset test\" 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\" 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=\"Mi4urinsk.ru\" default_off=\"self-signed\" f=\"Mi4urinsk.ru.xml\"><rule from=\"^http://(?:www\\.)?mi4urinsk\\.ru/\" to=\"https://mi4urinsk.ru/\"/></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\" default_off=\"missing certificate chain\" 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://collect\\.cn\\.miaozhen\\.com/\" to=\"https://collect.cn.miaozhen.com/\"/></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&#353;eck&#253;\" 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.jp\" f=\"MicroAd.jp.xml\"><securecookie host=\"^\\.(?:send\\.)?microad\\.jp$\" name=\".+\"/><rule from=\"^http://((?:d-track\\.)?send\\.|www\\.)?microad\\.jp/\" to=\"https://$1microad.jp/\"/><rule from=\"^http://d-cache\\.microad\\.jp/\" to=\"https://d-track.send.microad.jp/\"/></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)\" default_off=\"failed ruleset test\" 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\" 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=\"Microca.st\" default_off=\"failed ruleset test\" f=\"Microca.st.xml\"><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://www\\.tickerassist\\.co\\.uk/\" to=\"https://www.tickerassist.co.uk/\"/></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\" 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://tag\\.microsoft\\.com/(?!/*(?:[Aa]pp_[Tt]hemes/|favicon\\.ico|Images/|[Ll]ibraries/|[Ww]eb[Rr]esource\\.axd))\"/><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|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://events\\.microsoft\\.com/.*\" to=\"https://msevents.microsoft.com/cui/default.aspx?culture=en-US&amp;community=1\"/><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\" 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=\"Midas Green Tech.com (false MCB)\" platform=\"mixedcontent\" f=\"Midas_Green_Tech.com-falsemixed.xml\"><securecookie host=\"^(?:www\\.)?midasgreentech\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Midas Green Tech.com (partial)\" f=\"Midas_Green_Tech.com.xml\"><exclusion pattern=\"^http://(?:www\\.)?midasgreentech\\.com/+(?!data/|favicon\\.ico|images/|plugins/|theme/)\"/><rule from=\"^http:\" to=\"https:\"/></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\" default_off=\"failed ruleset test\" f=\"Midnight-Commander.xml\"><securecookie host=\"^(?:www\\.)?midnight-commander\\.org$\" 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\" 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)\" f=\"Migros-Kulturprozent.ch.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Migros\" 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=\"Mikel Olasagasti Uranga (partial)\" platform=\"cacert\" default_off=\"failed ruleset test\" f=\"Mikel-Olasagasti-Uranga.xml\"><rule from=\"^http:\" to=\"https:\"/></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=\"milodev.com\" default_off=\"failed ruleset test\" f=\"Milodev.com.xml\"><securecookie host=\"^\\.milodev\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Milonic (partial)\" default_off=\"failed ruleset test\" 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://clientchat\\.minacs\\.com/\" to=\"https://clientchat.minacs.com/\"/></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=\"Minaterm.com\" default_off=\"missing certificate chain\" f=\"Minaterm.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mind.org.uk (partial)\" f=\"Mind.xml\"><exclusion pattern=\"^http://shop\\.mind\\.org\\.uk/+(?!assets/|favicon\\.ico|images/|stylesheets/)\"/><exclusion pattern=\"^http://www\\.mind\\.org\\.uk/+(?!assets/|favicon\\.ico|images/|javascripts/|login(?:$|\\?|/)|shop/|stylesheets/)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MindModeling.org\" f=\"MindModeling.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MindTouch.com\" f=\"MindTouch.com.xml\"><securecookie host=\"^\\.mindtouch\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MindTouch.us\" 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\" 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 (mixed content)\" platform=\"mixedcontent\" f=\"Minecraft-falsemixed.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Minecraft\" f=\"Minecraft.xml\"><securecookie host=\"^www\\.minecraft\\.net$\" 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)\" 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\" f=\"MiniLock.io.xml\"><securecookie host=\"^\\.minilock\\.io$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MiniMundos online.com\" 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)\" 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 CDN.com\" default_off=\"Breaks functionality\" 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\" 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=\"Minus.com (mismatches)\" default_off=\"mismatched\" f=\"Minus.com-mismatches.xml\"><securecookie host=\"^\\.?feedback\\.minus\\.com$\" name=\".+\"/><rule from=\"^http://feedback\\.minus\\.com/\" to=\"https://feedback.minus.com/\"/></ruleset>", "<ruleset name=\"Minus.com (partial)\" platform=\"mixedcontent\" f=\"Minus.com.xml\"><exclusion pattern=\"^http://(?:blog|feedback)\\.\"/><securecookie host=\"^\\.?minus\\.com$\" name=\".+\"/><rule from=\"^http://([^/:@\\.]+\\.)?min(?:\\.us|us\\.com)/\" to=\"https://$1minus.com/\"/></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\" default_off=\"failed ruleset test\" 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\" default_off=\"self-signed\" f=\"Mirt.net.xml\"><rule from=\"^http://(?:www\\.)?mirt\\.net/\" to=\"https://www.mirt.net/\"/></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=\"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)\" f=\"Mitre.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mitro.co\" 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\" 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&#233;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\" default_off=\"failed ruleset test\" 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=\"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=\"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=\"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=\"moar.so\" f=\"Moar.so.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></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\" 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\" f=\"Mobile01.com.xml\"><exclusion pattern=\"^http://www\\.mobile01\\.com/(?!login\\.php)\"/><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=\"MobileRead (partial)\" default_off=\"failed ruleset test\" f=\"MobileRead.xml\"><securecookie host=\"^dev.mobileread.com$\" name=\".+\"/><rule from=\"^http://dev\\.mobileread\\.com/\" to=\"https://dev.mobileread.com/\"/></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\" 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\" 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\" 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\" 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\" default_off=\"failed ruleset test\" 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=\"Mismatch\" 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=\"Modlife\" default_off=\"failed ruleset test\" f=\"Modlife.xml\"><rule from=\"^http://(?:www\\.)?modlife\\.com/\" to=\"https://modlife.com/\"/><rule from=\"^http://images\\.modlife\\.com/\" to=\"https://d1gy20lpqgjyb5.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Modulus.io (partial)\" 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=\"Moechel.com\" f=\"Moechel.com.xml\"><securecookie host=\"^moechel\\.com$\" name=\".+\"/><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://moja\\.tatrabanka\\.sk/\" to=\"https://moja.tatrabanka.sk/\"/></ruleset>", "<ruleset name=\"Mojandroid.sk\" f=\"Mojandroid.sk.xml\"><rule from=\"^http://(?:www\\.)?mojandroid\\.sk/\" to=\"https://www.mojandroid.sk/\"/></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\" f=\"Monarch.co.uk.xml\"><rule from=\"^http://(?:www\\.)?monarch\\.co\\.uk/\" to=\"https://www.monarch.co.uk/\"/></ruleset>", "<ruleset name=\"Monash.edu (partial)\" 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=\"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=\"mismatch\" 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\" f=\"Monex.co.jp.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Money.pl (false MCB)\" platform=\"mixedcontent\" f=\"Money.pl-falsemixed.xml\"><securecookie host=\".\\.money\\.pl$\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Money.pl (partial)\" 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=\"mismatch\" 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&#8217;s Audio\" default_off=\"mismatch\" 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)\" 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\" f=\"Monster_WoW.xml\"><securecookie host=\"^(?:.*\\.)?monster-wow\\.com$\" name=\".+\"/><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\" f=\"Monthly_Review.org.xml\"><securecookie host=\"^monthlyreview\\.org$\" name=\".+\"/><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\" 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\" default_off=\"failed ruleset test\" 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=\"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=\"connection dropped\" f=\"Moreinterop.com.xml\"><rule from=\"^http://moreinterop\\.com/\" to=\"https://www.moreinterop.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Morello.se\" default_off=\"failed ruleset test\" f=\"Morello.se.xml\"><securecookie host=\"^\\.morello\\.se$\" name=\".+\"/><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=\"Mork Namnelag\" default_off=\"self-signed\" f=\"Mork_Namnelag.xml\"><rule from=\"^http://(?:www\\.)?mork\\.no/\" to=\"https://www.mork.no/\"/></ruleset>", "<ruleset name=\"Morning Star Online.co.uk\" 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\" 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\" default_off=\"failed ruleset test\" 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&amp;$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=\"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://www\\.motesplatsen\\.se/\" to=\"https://www.motesplatsen.se/\"/></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\" f=\"Motherpipe.co.uk.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Motherpipe.com (partial)\" 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)\" 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=\"MountainCode.eu\" f=\"MountainCode.eu.xml\"><securecookie host=\"^\\.mountaincode\\.eu$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></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\" 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=\"Mousematrix.com\" default_off=\"expired\" f=\"Mousematrix.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mov.ad\" 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\" default_off=\"failed ruleset test\" 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\" 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\" 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\" 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\" default_off=\"failed ruleset test\" 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\" 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\" default_off=\"mismatched, self-signed\" f=\"Movim.xml\"><securecookie host=\"^wiki\\.movim\\.eu$\" name=\".+\"/><rule from=\"^http://(?:((?:blog|planet|pod|wiki)\\.)|www\\.)?movim\\.eu/\" to=\"https://$1movim.eu/\"/></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=\"mismatch\" 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=\"Mozest\" default_off=\"expired\" f=\"Mozest.xml\"><rule from=\"^http:\" to=\"https:\"/></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)\" 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)\" 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://(?:cdn|getpersonas-cdn|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|(?!image)\\w+\\.e|graphs|krakenbenchmark|mig|sfx-images|symbolapi|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)\" 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=\"Persona.org\" f=\"Mozilla_Persona.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Webmaker.org\" 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 (false MCB)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Mozo.com.au-falsemixed.xml\"><rule from=\"^http://(www\\.mozo\\.co|(?:www\\.)?mozo\\.com\\.au)/\" to=\"https://$1/\"/></ruleset>", "<ruleset name=\"Mozo.com.au (partial)\" f=\"Mozo.com.au.xml\"><rule from=\"^http://(www\\.mozo\\.co|(?:www\\.)?mozo\\.com\\.au)/(?=favicon\\.ico|images/|mozo_favicon\\.ico)\" to=\"https://$1/\"/><rule from=\"^http://mozo4-assets\\.mozo\\.co/\" to=\"https://d2z6hwhdmvwrl2.cloudfront.net/\"/><rule from=\"^http://news-assets\\.mozo\\.com\\.au/\" to=\"https://d3ce7u6cfep64i.cloudfront.net/\"/></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\" default_off=\"failed ruleset test\" 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\" default_off=\"mismatched, self-signed\" f=\"Mpagano.com.xml\"><rule from=\"^http://(?:www\\.)?mpagano\\.com/\" to=\"https://www.mpagano.com/\"/></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\" 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)\" default_off=\"failed ruleset test\" f=\"Mstar.com.xml\"><rule from=\"^http://euim\\.mstar\\.com/\" to=\"https://euim.mstar.com/\"/></ruleset>", "<ruleset name=\"Mt.Gox\" 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\" 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=\"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\" 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)\" 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\" default_off=\"failed ruleset test\" 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&amp;profile=eds&amp;groupid=infolib&amp;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)\" 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)\" f=\"Muselive.com.xml\"><securecookie host=\"^community\\.muselive\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MuseoDelPrado.es\" 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://client\\.museter\\.com/\" to=\"https://client.museter.com/\"/></ruleset>", "<ruleset name=\"Museum of Science (problematic)\" default_off=\"expired, mismatched, self-signed\" f=\"Museum_of_Science-problematic.xml\"><exclusion pattern=\"^http://(?:www\\.)?mos\\.org/sites/dev-elvis\\.mos\\.org/themes/.*\\.(?:jp|pn)g$\"/><rule from=\"^http://(?:www\\.)?mos\\.org/\" to=\"https://mos.org/\"/></ruleset>", "<ruleset name=\"Museum of Science (partial)\" f=\"Museum_of_Science.xml\"><exclusion pattern=\"http://legacy\\.mos\\.org/(?!media/)\"/><securecookie host=\"^\\.mos\\.org$\" name=\"^MOS_store$\"/><rule from=\"^http://(?:www\\.)?mos\\.org/sites/dev-elvis\\.mos\\.org/themes/(.*)\\.(jp|pn)g$\" to=\"https://store.mos.org/common/themes/$1.$2g\"/><rule from=\"^http://(legacy|store)\\.mos\\.org/\" to=\"https://$1.mos.org/\"/></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)\" 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)\" 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=\".*\\.musixmatch\\.com$\" 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=\"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 (partial)\" default_off=\"self-signed\" f=\"Mutt.xml\"><securecookie host=\"^dev\\.mutt\\.org$\" name=\".*\"/><rule from=\"^http://bugs\\.mutt\\.org/\" to=\"https://dev.mutt.org/trac/\"/><rule from=\"^http://dev\\.mutt\\.org/\" to=\"https://dev.mutt.org/\"/></ruleset>", "<ruleset name=\"Mutterschaftsgeld.de\" 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\" default_off=\"failed ruleset test\" 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=\"Muusikoiden.net\" f=\"Muusikoiden.net.xml\"><securecookie host=\"^muusikoiden\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Muut.com\" f=\"Muut.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Branchenbuch M&#252;nchen\" 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=\"^\\.mxmcdn\\.net$\" 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=\"MyBB Central\" f=\"MyBB_Central.xml\"><securecookie host=\"^\\.mybbcentral\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MyBenefits CalWIN\" default_off=\"failed ruleset test\" 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 (false MCB)\" platform=\"mixedcontent\" f=\"MyCanvas.com-falsemixed.xml\"><securecookie host=\"^(?:.*\\.)?mycanvas\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?mycanvas\\.com/\" to=\"https://secure.mycanvas.com/\"/></ruleset>", "<ruleset name=\"MyCanvas.com (partial)\" f=\"MyCanvas.com.xml\"><exclusion pattern=\"^http://(?:www\\.)?mycanvas\\.com/+(?!App_Themes/|favicon\\.ico)\"/><rule from=\"^http://(?:secure\\.|www\\.)?mycanvas\\.com/\" to=\"https://secure.mycanvas.com/\"/></ruleset>", "<ruleset name=\"MyCharity.ie\" 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\" default_off=\"failed ruleset test\" 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=\"MyGNU.de\" default_off=\"expired\" f=\"MyGNU.de.xml\"><securecookie host=\"^www\\.mygnu\\.de$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MyGurlFund\" f=\"MyGirlFund.xml\"><securecookie host=\"^\\.mygirlfund\\.com$\" 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)\" 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=\"MyOpenID (buggy)\" default_off=\"https://www.eff.org/r.1apH\" f=\"MyOpenID.xml\"><exclusion pattern=\"http://www\\.myopenid\\.com/server\"/><rule from=\"^http://(?:www\\.)?myopenid\\.com/\" to=\"https://myopenid.com/\"/></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\" 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://pc2\\.mypreferences\\.com/\" to=\"https://pc2.mypreferences.com/\"/></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\" default_off=\"failed ruleset test\" 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)\" 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\" f=\"MySociety.org.xml\"><securecookie host=\"^www\\.mysociety\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"myStockOptions.com\" default_off=\"failed ruleset test\" f=\"MyStockOptions.com.xml\"><securecookie host=\"^(?:www)?\\.mystockoptions\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?mystockoptions\\.com/\" to=\"https://www.mystockoptions.com/\"/></ruleset>", "<ruleset name=\"mySweetIQ.com\" default_off=\"failed ruleset test\" f=\"MySweetIQ.com.xml\"><securecookie host=\"^mysweetiq\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MyTUM.de\" f=\"MyTUM.de.xml\"><securecookie host=\"portal.mytum\\.de$\" name=\".*\"/><rule from=\"^http://portal\\.mytum\\.de/\" to=\"https://portal.mytum.de/\"/></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\" 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\" default_off=\"failed ruleset test\" 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\" 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\" 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://secure\\.admin\\.myvirtualpaper\\.com/\" to=\"https://secure.admin.myvirtualpaper.com/\"/></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=\"Myanimelist.net\" f=\"Myanimelist.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mybb.com\" f=\"Mybb.com.xml\"><securecookie host=\"^(www\\.|blog\\.|mods\\.)?mybb\\.com\" name=\".+\"/><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://mycliplister\\.com/\" to=\"https://mycliplister.com/\"/></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)\" 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=\"connection 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\" 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://mylevel3\\.net/\" to=\"https://mylevel3.net/\"/></ruleset>", "<ruleset name=\"Mynaweb.com (partial)\" 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)\" 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\" 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://(?:www\\.)?mzstatic\\.com/\" to=\"https://www.apple.com/\"/><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\" 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\" 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://secure\\.n-able\\.com/\" to=\"https://secure.n-able.com/\"/></ruleset>", "<ruleset name=\"n.runs\" default_off=\"500\" f=\"N.runs.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"n0where.org\" f=\"N0where.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NAACP\" f=\"NAACP.xml\"><securecookie host=\"^\\.?donate\\.naacp\\.org$\" name=\".+\"/><rule from=\"^http://(?:donate\\.|www\\.)?naacp\\.org/\" to=\"https://donate.naacp.org/\"/></ruleset>", "<ruleset name=\"NAACP Company Store\" default_off=\"failed ruleset test\" f=\"NAACP_Company_Store.xml\"><securecookie host=\"^(?:www\\.)?naacpcompanystore\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NAACP Image Awards\" default_off=\"failed ruleset test\" f=\"NAACP_Image_Awards.xml\"><rule from=\"^http://www\\.naacpimageawards\\.net/\" to=\"https://www.naacpimageawards.net/\"/></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\" 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\" default_off=\"failed ruleset test\" 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\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://mars\\.nasa\\.gov/\" to=\"https://mars.jpl.nasa.gov/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NASA.gov (partial)\" f=\"NASA.gov.xml\"><exclusion pattern=\"^http://reverb\\.echo\\.nasa\\.gov/(?!/*(?:reverb/(?:(?:orders|shopping_cart)(?:$|[?/])|assets/)))\"/><exclusion pattern=\"^http://mars(?:\\.jpl)?\\.nasa\\.gov/(?!/*(?:favicon\\.ico|images/|layout/))\"/><exclusion pattern=\"^http://rosetta\\.jpl\\.nasa\\.gov/(?!/*(?:favicon\\.ico|modules/|sites/))\"/><exclusion pattern=\"^http://smap\\.jpl\\.nasa\\.gov/(?!/*(?:assets|system)/)\"/><securecookie host=\"^(?!reverb\\.echo\\.|smap\\.jpl\\.).\" name=\".\"/><rule from=\"^http://www\\.data\\.nasa\\.gov/\" to=\"https://data.nasa.gov/\"/><rule from=\"^http://heasarc\\.nasa\\.gov/\" to=\"https://heasarc.gsfc.nasa.gov/\"/><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://nccs\\.nasa\\.gov/\" to=\"https://www.nccs.nasa.gov/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NASASpaceFlight.com (partial)\" f=\"NASASpaceFlight.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NASDAQ (partial)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" 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=\"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=\"NBC News (partial)\" default_off=\"mismatch\" 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)\" 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\" f=\"NCISF.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NCJS.gov\" f=\"NCJRS.gov.xml\"><securecookie host=\"^(?:puborder\\.|www\\.)?ncjrs\\.gov$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NCL.ac.uk (partial)\" 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\" default_off=\"failed ruleset test\" 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=\"NElhage.com\" f=\"NElhage.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NFrance (partial)\" f=\"NFrance.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NFsec.pl\" f=\"NFsec.pl.xml\"><securecookie host=\"^\\w\" name=\".\"/><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\" default_off=\"failed ruleset test\" 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)\" 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)\" 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&#233;zet (partial)\" 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)\" 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 CACert\" platform=\"cacert\" f=\"NLnet-Labs-cacert.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NLnet Labs\" f=\"NLnet-Labs.xml\"><securecookie host=\"^wiki\\.opendnssec\\.org$\" name=\".*\"/><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\" 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\" 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)\" default_off=\"failed ruleset test\" 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://www\\.npted\\.org/\" to=\"https://www.npted.org/\"/></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://storefront\\.nr-assets\\.net/\" to=\"https://storefront.nr-assets.net/\"/></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=\"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\" 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\" 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)\" platform=\"cacert\" f=\"NTP.org.xml\"><securecookie host=\"^(?:support|lists)\\.ntp\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NTT.com\" 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=\"Nttdocomo.com\" default_off=\"400\" f=\"NTTDocomo.com.xml\"><rule from=\"^http://nttdocomo\\.com/\" to=\"https://www.nttdocomo.com/\"/><rule from=\"^http:\" to=\"https:\"/></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)\" 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\" 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\" 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 (false MCB)\" platform=\"cacert mixedcontent\" f=\"NUUG.no-falsemixed.xml\"><rule from=\"^http://memberdb\\.nuug\\.no/(?=favicon\\.ico|/*global\\.css)\" to=\"https://memberdb.nuug.no/\"/></ruleset>", "<ruleset name=\"NUUG.no (problematic)\" default_off=\"mismatched\" platform=\"cacert\" f=\"NUUG.no-problematic.xml\"><rule from=\"^http://(planet|wiki)\\.nuug\\.no/\" to=\"https://$1.nuug.no/\"/></ruleset>", "<ruleset name=\"NUUG.no (partial)\" platform=\"cacert\" f=\"NUUG.no.xml\"><exclusion pattern=\"^http://memberdb\\.nuug\\.no/+(?!favicon\\.ico|global\\.css)\"/><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)\" 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)\" f=\"NVidia.eu.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"nVidia.com (partial)\" f=\"NVidia.xml\"><exclusion pattern=\"^http://store\\.nvidia\\.com/(?!DRHM/|store\\?Action=(?:DisplayEditProfilePage|DisplayHelpPage)(?:$|&amp;)|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\" 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=\"mismatch\" f=\"NY-Tech-Meetup.xml\"><rule from=\"^http://(?:www\\.)?nytm\\.org/made/\" to=\"https://nytm.org/made/\"/></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)\" default_off=\"failed ruleset test\" 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\" f=\"NYI.net-falsemixed.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NYI.net (partial)\" 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 (partial)\" f=\"NYT.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NYT Co.com (partial)\" f=\"NYT_Co.com.xml\"><securecookie host=\"^\\.nytco\\.com$\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NYT eXaminer.com\" f=\"NYT_eXaminer.com.xml\"><securecookie host=\"^(?:www)?\\.nytexaminer\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NYTimes.com (needs ruleset tests)\" default_off=\"Needs ruleset tests\" f=\"NYTimes.xml\"><exclusion pattern=\"^http://www\\.nytimes\\.com/+(?!adx/|favicon\\.ico|(?:books|membercenter|store)(?:$|[?/]))\"/><exclusion pattern=\"^http://(?:www\\.)?nytimes\\.com/svc/community/V3/requestHandler\"/><exclusion pattern=\"^http://.+\\.blogs\\.nytimes\\.com/(?!favicon\\.ico)\"/><exclusion pattern=\"^http://graphics8\\.nytimes\\.com/bi/js/tagx/tagx\\.js\"/><exclusion pattern=\"^http://graphics8\\.nytimes\\.com/packages/flash/multimedia/\"/><exclusion pattern=\"^http://jobmarket\\.nytimes\\.com/(?!adx/|images/)\"/><exclusion pattern=\"^http://travel\\.nytimes\\.com/(?!\\d{4}/\\d\\d/\\d\\d/|adx/|js/)\"/><securecookie host=\"^\\.nytimes\\.com$\" name=\"^(?:___utm\\w+|adxc\\w|_chartbeat2|incap_ses_\\d+_\\d+|visid_incap_\\d+)$\"/><securecookie host=\"^(?:homedelivery|markets\\.on|wt\\.o)\\.nytimes\\.com$\" name=\".\"/><rule from=\"^http://\\w+\\.blogs\\.nytimes\\.com/\" to=\"https://www.nytimes.com/\"/><rule from=\"^http://(?:graphics\\d?|json8)\\.nytimes\\.com/\" to=\"https://static.nytimes.com/\"/><rule from=\"^http://pimage\\.timespeople\\.nytimes\\.com/\" to=\"https://s3.amazonaws.com/pimage.timespeople.nytimes.com/\"/><rule from=\"^http://travel\\.nytimes\\.com/\" to=\"https://www.nytimes.com/\"/><rule from=\"^http:\" to=\"https:\"/><rule from=\"^https://www\\.nytimes\\.com/svc/community/V3/requestHandler(?=$|\\?)\" to=\"http://www.nytimes.com/svc/community/V3/requestHandler\" downgrade=\"1\"/></ruleset>", "<ruleset name=\"NY Times at Home.com\" f=\"NYTimes_at_Home.com.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\" default_off=\"failed ruleset test\" 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=\"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\" 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=\"Naked citizens.eu\" default_off=\"expired\" f=\"Naked_citizens.xml\"><securecookie host=\"^(?:www\\.)?nakedcitizens\\.eu$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"N&#228;k&#246;vammaisten keskusliitto\" default_off=\"failed ruleset test\" 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\" 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=\"^(?:\\.community|support|\\.?www|manage\\.www)\\.namecheap\\.com$\" 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=\"NamePros.com\" f=\"NamePros.com.xml\"><securecookie host=\"^\\.namepros\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NameSpace.us\" default_off=\"expired\" f=\"NameSpace.us.xml\"><securecookie host=\"^(?:www\\.)?namespace\\.us$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></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 (partial)\" default_off=\"mismatched, self-signed\" f=\"Namei.org.xml\"><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=\"Nametiles.co\" f=\"Nametiles.co.xml\"><securecookie host=\".\" 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)\" 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)\" default_off=\"failed ruleset test\" 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\" 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=\"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\" 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://secure\\.arb-forum\\.com/\" to=\"https://secure.arb-forum.com/\"/></ruleset>", "<ruleset name=\"National Association of Theatre Owners (partial)\" default_off=\"mismatch\" f=\"National-Association-of-Theatre-Owners.xml\"><exclusion pattern=\"^http://(?:www\\.)?natoonline\\.org/blog(?:/?$|/(?:\\d{4}|about|author|category|comments|disclaimer|feed|tag)/)\"/><exclusion pattern=\"^http://(?:www\\.)?natoonline\\.org/images/(?:\\w+\\.(?:gif|jpg))$\"/><exclusion pattern=\"^http://(?:www\\.)?natoonline\\.org/infocus/(?:\\d\\d\\w+|infocusimages)/\"/><rule from=\"^http://(?:www\\.)?natoonline\\.org/(?:~natoonli/)?\" to=\"https://natoonline.org/~natoonli/\"/><rule from=\"^https://(?:www\\.)?natoonline\\.org/(?:~natoonli/)?images/(\\w+\\.(gif|jpg))$\" to=\"http://natoonline.org/images/$1\" downgrade=\"1\"/><rule from=\"^https://(?:www\\.)?natoonline\\.org/~natoonli/infocus/(\\d\\d\\w+)/\" to=\"http://natoonline.org/infocus/$1/\" downgrade=\"1\"/></ruleset>", "<ruleset name=\"National Broadcasting Company\" default_off=\"mismatch\" 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)\" default_off=\"failed ruleset test\" 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)\" 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=\"mismatch\" 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\"><rule from=\"^http://(?:((?:staging\\.)?extranet\\.|(?:integration\\.|qa\\.|staging\\.)?igloo\\.|integration\\.|monitor\\.|qa\\.|staging\\.)|www\\.)?nsidc\\.org/\" to=\"https://$1nsidc.org/\"/></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)\" 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)\" 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 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 Consumer Protection Week\" f=\"National_Consumer_Protection_Week.xml\"><rule from=\"^http://((?:military\\.)?ncpw|protecciondelconsumidor)\\.gov/\" to=\"https://www.$1.gov/\"/><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)\" default_off=\"failed ruleset test\" 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)\" 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=\"National Park Service (partial)\" f=\"National_Park_Service.xml\"><securecookie host=\"^.+\\.nps\\.gov$\" name=\".+\"/><rule from=\"^http://(irma|science\\.nature|ncptt|npssa|parkplanning|pepc|zionpermits)\\.nps\\.gov/\" to=\"https://$1.nps.gov/\"/></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)\" 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 (partial)\" default_off=\"failed ruleset test\" f=\"National_Wildlife_Foundation.xml\"><securecookie host=\"^www\\.nwf\\.org$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?nwf\\.org/\" to=\"https://www.nwf.org/\"/><rule from=\"^http://online\\.nwf\\.org/(?!site/PageServer)\" to=\"https://online.nwf.org/\"/></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)\" 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 Eating Disorders Association\" f=\"Natl-Eating-Disorders-Assoc.xml\"><exclusion pattern=\"^http://(?:www.)?nationaleatingdisorders\\.org/photo-gallery/\"/><exclusion pattern=\"^http://(?:www.)?nationaleatingdisorders\\.org/cmtadmin/\"/><rule from=\"^(?:http://(?:www\\.)?|https://)nationaleatingdisorders\\.org/\" to=\"https://www.nationaleatingdisorders.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 Suicide Prevention Lifeline\" platform=\"mixedcontent\" f=\"Natl-Suicide-Prevention-Lifeline.xml\"><rule from=\"^http://(?:www\\.)?suicidepreventionlifeline\\.org/\" to=\"https://www.suicidepreventionlifeline.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\" 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)\" default_off=\"failed ruleset test\" f=\"Natural-Environment-Research-Council.xml\"><securecookie host=\"^hds\\.nerc\\.ac\\.uk$\" name=\".*\"/><rule from=\"^http://hds\\.nerc\\.ac\\.uk/\" to=\"https://hds.nerc.ac.uk/\"/></ruleset>", "<ruleset name=\"Natural Message.com\" 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\" f=\"Natural_Skin_Shop.xml\"><securecookie host=\"^.*\\.naturalskinshop\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Nature (partial)\" f=\"Nature.xml\"><securecookie host=\"^secure\\.nature\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?nature\\.com/(cimages/|common/|favicon\\.ico|info/|myaccount|(?:view/(?:\\w+/)?)?(?:imag|styl)es/)\" to=\"https://secure.nature.com/$1\"/><rule from=\"^http://s(ecure|tatus)\\.nature\\.com/\" to=\"https://s$1.nature.com/\"/></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\" default_off=\"failed ruleset test\" f=\"Naughty_Dog.xml\"><securecookie host=\"^(?:w*\\.)?naughtydog\\.com$\" name=\".+\"/><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\" f=\"Naukri.xml\"><rule from=\"^http://login\\.naukri\\.com/\" to=\"https://login.naukri.com/\"/></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=\"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\" 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=\"Neave.tv\" default_off=\"redirects to http\" f=\"Neave.tv.xml\"><securecookie host=\"^\\.neave\\.tv$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Nebelwelt.net\" f=\"Nebelwelt.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Neb&#283;&#382;&#237;.cz\" f=\"Nebezi.cz.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"nebrija.com\" f=\"Nebrija.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Nebula\" 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://(\\w\\w\\.|www\\.)?necessaryandproportionate\\.(net|org)/\" to=\"https://$1necessaryandproportionate.$2/\"/></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=\"Neko.im\" f=\"Neko.im.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Nelly.com\" default_off=\"failed ruleset test\" 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\" 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\" 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)\" 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=\"NeoCities.org\" f=\"NeoCities.org.xml\"><rule from=\"^http:\" to=\"https:\"/></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=\"^(?:w*\\.)?neomailbox\\.(?:com|net)$\" name=\".+\"/><rule from=\"^http://(www\\.)?neomailbox\\.(com|net)/\" to=\"https://$1neomailbox.$2/\"/></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)\" 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\" 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.net (partial)\" f=\"Neowin.net.xml\"><rule from=\"^http://(?:www\\.)?neowin\\.net/(?=css/|favicon\\.ico|forum(?:$|[?/])|images/|js/)\" to=\"https://www.neowin.net/\"/></ruleset>", "<ruleset name=\"nerdpol.ch\" f=\"Nerdpol.ch.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Nerds Nook.com\" 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)\" 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://discussions\\.nessus\\.org/\" to=\"https://discussions.nessus.org/\"/></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&#233; (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&#233; Sch&#246;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)\" 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\" f=\"Net-Backup.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Net Communities (partial)\" default_off=\"failed ruleset test\" f=\"Net-Communities.xml\"><rule from=\"^http://cdn\\.itproportal\\.com/\" to=\"https://itpp.s3.amazonaws.com/\"/><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)\" 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)\" 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\" 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)\" f=\"NetClean.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NetCologne.de (partial)\" 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=\"^maxcdn\\.com$\" name=\".+\"/><securecookie host=\"^.+\\.netdna\\.com$\" name=\".+\"/><rule from=\"^http://(login\\.|www\\.)?hddn\\.com/\" to=\"https://$1hddn.com/\"/><rule from=\"^http://((?:blog|cp|developer|login|rws|status|(?:cp3)?support|www)\\.)?netdna\\.com/\" to=\"https://$1netdna.com/\"/><rule from=\"^http://netdnasite\\.wpengine\\.netdna-cdn\\.com/\" to=\"https://www.netdna.com/\"/></ruleset>", "<ruleset name=\"NetEase\" f=\"NetEase.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"netFORUMpro.com\" default_off=\"failed ruleset test\" f=\"NetFORUMpro.com.xml\"><securecookie host=\"^(?:prous01\\.|www\\.)?netforumpro\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NetFronts (mismatches)\" default_off=\"mismatch\" 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://www\\.netgo\\.hu/\" to=\"https://www.netgo.hu/\"/></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://secure\\.netpr\\.pl/\" to=\"https://secure.netpr.pl/\"/></ruleset>", "<ruleset name=\"NetPivotal\" default_off=\"failed ruleset test\" f=\"NetPivotal.xml\"><securecookie host=\"^www\\.netpivotal\\.(?:co\\.uk|com|eu)$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?netpivotal\\.(co\\.uk|com|eu)/\" to=\"https://www.netpivotal.$1/\"/><rule from=\"^http://alpha\\.netpivotal\\.com/\" to=\"https://alpha.netpivotal.com/\"/></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)\" 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://ssl\\.net-m\\.net/\" to=\"https://ssl.net-m.net/\"/></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=\"Netcloude.cz\" 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)\" f=\"Netelligent.xml\"><securecookie host=\"^(?:\\w+\\.)?netelligent\\.ca$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Netfilter.org (partial)\" platform=\"cacert\" 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\" 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://puck\\.nether\\.net/\" to=\"https://puck.nether.net/\"/></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)\" 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&amp;auid=(\\d+)&amp;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\" 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\" 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\" 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\" 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\" default_off=\"expired, self-signed\" f=\"Netveano.xml\"><rule from=\"^http://(?:www\\.)?netveano\\.com/\" to=\"https://netveano.com/\"/></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\" 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&amp;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=\"NetworkWorld (mismatches)\" default_off=\"mismatch\" 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://signup\\.network-maker\\.com/\" to=\"https://signup.network-maker.com/\"/></ruleset>", "<ruleset name=\"Network Time Foundation.org (partial)\" platform=\"cacert\" default_off=\"failed ruleset test\" f=\"Network_Time_Foundation.org.xml\"><securecookie host=\"^rt\\.nwtime\\.org$\" name=\".+\"/><rule from=\"^http://((?:ic|imap|shop|www)\\.)?networktimefoundation\\.org/\" to=\"https://$1networktimefoundation.org/\"/><rule from=\"^http://((?:ic|lists|rt|www)\\.)?nwtime\\.org/\" to=\"https://$1nwtime.org/\"/></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=\"^(?:(?:www\\.)?kundenserver42|stu)\\.kundenserver42\\.de$\" name=\".+\"/><rule from=\"^http://((?:www\\.)?kundenserver42|stu)\\.kundenserver42\\.de/\" to=\"https://$1.kundenserver42.de/\"/></ruleset>", "<ruleset name=\"Neustar.biz (partial)\" 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\" 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\" 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)\" 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=\"mismatch\" 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\" f=\"NewScientist_Subscriptions.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NewYorkVocalCoaching\" 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\" f=\"New_York_Needs_You.com.xml\"><securecookie host=\"^www\\.newyorkneedsyou\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"New York Times.com\" f=\"New_York_Times.com.xml\"><rule from=\"^http://(?:www\\.)?newyorktimes\\.com/\" to=\"https://www.nytimes.com/\"/></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)\" 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 (partial, broken)\" default_off=\"breaks shopping cart\" f=\"Newegg.xml\"><exclusion pattern=\"^http://(?:images10\\.newegg|c1\\.neweggimages)\\.com/WebResource/Themes/2005/Nest/\\w+.html(?:$|\\?)\"/><securecookie host=\"^content\\.newegg\\.com$\" name=\".+\"/><rule from=\"^http://(?:(?:images10|ssl-images)\\.newegg|c1\\.neweggimages)\\.com/\" to=\"https://ssl-images.newegg.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Newgrounds (partial, broken)\" default_off=\"reported broken\" f=\"Newgrounds.xml\"><rule from=\"^http://(?:www\\.)?newgrounds\\.com/\" to=\"https://www.newgrounds.com/\"/></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=\"mismatch\" 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\" f=\"NewsBlur.xml\"><exclusion pattern=\"^http://blog\\.newsblur\\.com/\"/><rule from=\"^http://(icons|pages)\\.newsblur\\.com/\" to=\"https://s3.amazonaws.com/$1.newsblur.com/\"/><rule from=\"^http://newsblur\\.com/\" to=\"https://www.newsblur.com/\"/><rule from=\"^http://([^/:@.]*)\\.newsblur\\.com/\" to=\"https://$1.newsblur.com/\"/><rule from=\"^https://popular\\.global\\.newsblur\\.com/\" to=\"http://popular.global.newsblur.com/\" downgrade=\"1\"/><securecookie host=\"^(?:www)?\\.newsblur\\.com$\" name=\".*\"/></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\" 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=\"NewsNow (partial)\" f=\"NewsNow.xml\"><securecookie host=\"^delivery\\.ad\\.newsnow\\.net$\" name=\".+\"/><rule from=\"^http://delivery\\.ad\\.newsnow\\.net/\" to=\"https://delivery.ad.newsnow.net/\"/></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)\" 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)\" 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\" 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=\"mismatch\" f=\"NewspaperDirect-mismatches.xml\"><exclusion pattern=\"^http://(?:www\\.)?pressdisplay/viewer\\.aspx\"/><rule from=\"^http://(?:www\\.)?pressreader\\.com/\" to=\"https://pressreader.com/\"/><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=\"^(?:www\\.)?newspaperdirect\\.com$\" 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=\"newtention.net\" f=\"Newtention.net.xml\"><securecookie host=\"^\\.newtention\\.net$\" name=\".+\"/><rule from=\"^http://(ads|www)\\.newtention\\.net/\" to=\"https://$1.newtention.net/\"/></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)\" f=\"Newzsec.com.xml\"><rule from=\"^http://(?:www\\.)?newzsec\\.com/+\" to=\"https://saltysailor.github.io/\"/><exclusion pattern=\"^http://(?:www\\.)?newzsec\\.com/(?!/*(?:$|\\?))\"/></ruleset>", "<ruleset name=\"nex.sx\" f=\"Nex.sx.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"nexac.com (partial)\" 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)\" 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.xml\"><rule from=\"^http://(?:www\\.)?nextbus\\.com/\" to=\"https://www.nextbus.com/\"/></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 (self-signed)\" default_off=\"self-signed\" f=\"Nextag-self-signed.xml\"><exclusion pattern=\"^http://nextagnews\\.nextag\\.com/\\d{4}/\\d\\d/\\d\\d/\"/><rule from=\"^http://nextagnews\\.nextag\\.com/\" to=\"https://nextagnews.nextag.com/\"/><rule from=\"^https://nextagnews\\.nextag\\.com/(\\d{4}/\\d\\d/\\d\\d/)\" to=\"http://nextagnews.nextag.com/$1\" downgrade=\"1\"/></ruleset>", "<ruleset name=\"Nextag (partial)\" f=\"Nextag.xml\"><securecookie host=\"^.*\\.nextag\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?nextag\\.(ca|com|de|fr|it)/\" to=\"https://www.nextag.$1/\"/><rule from=\"^http://img(?:srv)?\\.nextag\\.com/\" to=\"https://imgsrv.nextag.com/\"/><rule from=\"^http://(merchants|stores|travel)\\.nextag\\.com/\" to=\"https://$1.nextag.com/\"/><rule from=\"^http://tickets\\.nextag\\.com/la/\" to=\"https://www.fansnap.com/la/\"/><rule from=\"^http://www42\\.nextag\\.com/\" to=\"https://www.nextag.com/\"/><rule from=\"^http://img\\d\\d\\.static-nextag\\.com/\" to=\"https://imgsrv.nextag.com/\"/></ruleset>", "<ruleset name=\"Nextbit.com\" f=\"Nextbit.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Nexternal clients\" default_off=\"mismatch\" 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\" f=\"Ngrok.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ngx.cc\" 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\" f=\"Nicereply.com.xml\"><securecookie host=\"^(www\\.)?nicereply\\.com\" 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\" 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=\"Nieuwsblad.be (mismatches)\" default_off=\"cert warning\" f=\"Nieuwsblad.be.xml\"><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\" f=\"Nik_Cub.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Nik Software (partial)\" 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)\" 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\" f=\"Nikhef.nl.xml\"><securecookie host=\".\" name=\".\"/><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\" 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=\"nimzone.com\" default_off=\"mismatch\" f=\"Nimzone.com.xml\"><rule from=\"^http://server1\\.nimzone\\.com/\" to=\"https://server1.nimzone.com/\"/></ruleset>", "<ruleset name=\"nine-2-one\" default_off=\"failed ruleset test\" f=\"Nine-2-one.xml\"><securecookie host=\"^(?:www\\.)?nine-2-one\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></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) \" default_off=\"failed ruleset test\" 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\" default_off=\"failed ruleset test\" 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\" 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\" default_off=\"failed ruleset test\" f=\"Nitro_Cloud.com.xml\"><securecookie host=\"^\\.nitrocloud\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Nitrokey.com\" f=\"Nitrokey.com.xml\"><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\" f=\"Nixsrv.com.xml\"><securecookie host=\"^\\.nixsrv\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"nlgcdn.com\" 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://sw\\.nohold\\.net/\" to=\"https://sw.nohold.net/\"/></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\" 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 Hats.ca\" f=\"No_Hats.ca.xml\"><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\" 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\" 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\" f=\"Noelia.xml\"><securecookie host=\"^noelia\\.fi$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Noembed.com\" 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=\"Noiseless Vault.org\" default_off=\"failed ruleset test\" f=\"Noiseless_Vault.org.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)\" default_off=\"failed ruleset test\" 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=\"Nomura Research Institute\" default_off=\"failed ruleset test\" f=\"Nomura_Research_Institute.xml\"><rule from=\"^http://www\\.nri\\.co\\.jp/\" to=\"https://www.nri.co.jp/\"/></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=\"Noncombatant.org\" f=\"Noncombatant.org.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></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 (partial)\" f=\"Normalesup.org.xml\"><rule from=\"^http://www\\.normalesup\\.org/\" to=\"https://www.normalesup.org/\"/></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)\" 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)\" 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)\" 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=\"NorthClicks\" default_off=\"failed ruleset test\" 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.org.uk\" default_off=\"expired, self-signed\" f=\"North_Devon_Theatres.org.uk.xml\"><securecookie host=\"^northdevontheatres\\.org\\.uk$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?northdevontheatres\\.org\\.uk/\" to=\"https://northdevontheatres.org.uk/\"/></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\" default_off=\"failed ruleset test\" 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\" platform=\"mixedcontent\" f=\"Norwegian.com.xml\"><rule from=\"^http://www\\.norwegian\\.com/\" to=\"https://www.norwegian.com/\"/><rule from=\"^http://norwegian\\.com/\" to=\"https://www.norwegian.com/\"/></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://(www\\.)?nos-oignons\\.(fr|org)/\" to=\"https://nos-oignons.net/\"/></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=\"NotABug.org\" f=\"NotABug.org.xml\"><securecookie host=\"^(?:www\\.)?notabug\\.org$\" name=\".+\"/><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\" 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\" 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\" 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\" f=\"Novosoft.net.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://npmawesome\\.com/\" to=\"https://npmawesome.com/\"/></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)\" f=\"Nrk.no.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"nsa-observer.net\" default_off=\"failed ruleset test\" f=\"Nsa-observer.net.xml\"><rule from=\"^http://(?:www\\.)?nsa-observer\\.net/\" to=\"https://www.nsa-observer.net/\"/></ruleset>", "<ruleset name=\"Nserver.Ru\" 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 (partial)\" f=\"Nsnam.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"nsupdate.info\" f=\"Nsupdate.info.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ntacdn1.net\" default_off=\"self redirect\" f=\"Ntacdn1.net.xml\"><securecookie host=\"^\\.ntacdn1\\.net$\" name=\".+\"/><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\" 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\" 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)\" 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\" 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)\" 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\" 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=\"nuseek.com (partial)\" default_off=\"Akamai certificate\" f=\"Nuseek.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NutriCentre\" 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\" 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\" 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\" f=\"Nvcc.edu.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"nventio.com\" default_off=\"failed ruleset test\" f=\"Nventio.com.xml\"><securecookie host=\"^\\.?nventio\\.com$\" name=\".+\"/><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://nxtck\\.com/\" to=\"https://nxtck.com/\"/></ruleset>", "<ruleset name=\"Nxtgn.org\" f=\"Nxtgn.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Nyaa.eu\" f=\"Nyaa.eu.xml\"><securecookie host=\"^\\.nyaa\\.eu$\" name=\"^(?:__cfduid|cf_clearance)$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Nyaa.se\" 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=\"o0bc.com\" f=\"O0bc.com.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\" default_off=\"failed ruleset test\" 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)\" f=\"OASIS_Open.org.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OAuth\" default_off=\"mismatch\" f=\"OAuth.xml\"><rule from=\"^http://(?:www\\.)?oauth\\.net/\" to=\"https://oauth.net/\"/></ruleset>", "<ruleset name=\"OBLIC.com\" f=\"OBLIC.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OBS project.com\" f=\"OBS_project.com.xml\"><securecookie host=\"^\\.\" name=\"^__qca$\"/><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)\" f=\"OCaml.xml\"><rule from=\"^http://www\\.ocaml\\.org/\" to=\"https://ocaml.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OCamlCore.org (partial)\" 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://www\\.oecd\\.org/\" to=\"https://www.oecd.org/\"/></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&#8217;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\" 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\" 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=\"OLMN.org\" default_off=\"failed ruleset test\" f=\"OLMN.org.xml\"><securecookie host=\"^www\\.olmn\\.org$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?olmn\\.org/\" to=\"https://www.olmn.org/\"/></ruleset>", "<ruleset name=\"OLPC (partial)\" 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)\" default_off=\"failed ruleset test\" 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\" f=\"OMS.eu.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ON24 (mismatches)\" default_off=\"mismatch\" 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\" 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\" 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\" 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=\"O&#8217;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&#8217;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=\"OSDC.com.au\" 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\" 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\" 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\" 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://projetos\\.ossystems\\.com\\.br/\" to=\"https://projetos.ossystems.com.br/\"/></ruleset>", "<ruleset name=\"OSwatch.net\" 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\" 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\" 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=\"O SysAdmin.net (partial)\" f=\"O_SysAdmin.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ORNL.gov (partial)\" 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\" default_off=\"failed ruleset test\" 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://secure\\.omg\\.org/\" to=\"https://secure.omg.org/\"/></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\" 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\" 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=\"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\" f=\"Oculus.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Oculus VR\" 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\" default_off=\"failed ruleset test\" f=\"Oderland.se.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"odesk.by\" 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)\" 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)\" 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=\"Off-the-Record Messaging\" f=\"Off-the-Record_Messaging.xml\"><rule from=\"^http://otr\\.cypherpunks\\.ca/\" to=\"https://otr.cypherpunks.ca/\"/></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\" 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\" 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\" 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\" 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)\" 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)\" 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\" default_off=\"failed ruleset test\" f=\"OfficeofNationalAssessments.xml\"><rule from=\"^http://(?:www\\.)?ona\\.gov\\.au/\" to=\"https://www.ona.gov.au/\"/></ruleset>", "<ruleset name=\"Office of Parliamentary Counsel\" 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\" default_off=\"self-signed\" f=\"Offog.org.xml\"><rule from=\"^http://(?:www\\.)?offog\\.org/\" to=\"https://offog.org/\"/></ruleset>", "<ruleset name=\"Ogone.com (partial)\" f=\"Ogone.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Oh So Cool.org\" f=\"Oh-So-Cool.xml\"><rule from=\"^http://www\\.ohsocool\\.org/\" to=\"https://ohsocool.org/\"/><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)\" 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)\" 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)\" 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)\" 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\" default_off=\"breaks images on the OKC blog\" f=\"OkCDN.com.xml\"><securecookie host=\"^\\.okccdn\\.com$\" name=\".+\"/><rule from=\"^http://akincludes\\.okccdn\\.com/\" to=\"https://www.okcupid.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OkCimg.com (partial)\" 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)\" default_off=\"Redirects to HTTP\" f=\"OkCupid.xml\"><exclusion pattern=\"^http://blog\\.okcupid\\.com/+(?!wp-content/)\"/><securecookie host=\"^\\.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=\"connection refused\" f=\"Okopnik.xml\"><rule from=\"^http://(?:www\\.)?okopnik\\.com/\" to=\"https://okopnik.com/\"/></ruleset>", "<ruleset name=\"Okta.com (partial)\" 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&#225;si Hivatal\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" 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=\"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\" 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://www\\.omniture-static\\.com/\" to=\"https://www.omniture-static.com/\"/></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\" default_off=\"failed ruleset test\" 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\" default_off=\"failed ruleset test\" 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\" default_off=\"failed ruleset test\" f=\"OnBeing.org.xml\"><rule from=\"^http://(?:ssl\\.|www\\.)?onbeing\\.org/\" to=\"https://ssl.onbeing.org/\"/></ruleset>", "<ruleset name=\"OnGuard Online\" f=\"OnGuard_Online.xml\"><rule from=\"^http://(?:www\\.)?(alertaenlinea|onguardonline)\\.gov/\" to=\"https://www.$1.gov/\"/></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)\" 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://cdn\\.onscroll\\.com/\" to=\"https://do4jjo8w6mmm0.cloudfront.net/\"/></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\" 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\" 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-Tab.com\" f=\"One-Tab.com.xml\"><securecookie host=\"^\\.one-tab\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></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\" 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=\"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 (partial)\" 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=\"mismatch\" 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 Green Planet.org\" default_off=\"failed ruleset test\" f=\"One_Green_Planet.org.xml\"><securecookie host=\"^\\.onegreenplanet\\.org$\" name=\".+\"/><rule from=\"^http://(www\\.)?onegreenplanet\\.org/\" to=\"https://$1onegreenplanet.org/\"/><rule from=\"^http://cdn\\.onegreenplanet\\.org/\" to=\"https://www.onegreenplanet.org/\"/></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\" f=\"One_Man_Can.xml\"><securecookie host=\"^(?:\\.?www\\.)?\\.onemancan\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"One Month.com (partial)\" 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\" f=\"Onebillion.org.uk.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"onebitbug.me\" f=\"Onebitbug.me.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Onefeed.co.uk (partial)\" f=\"Onefeed.co.uk.xml\"><rule from=\"^http://tracking\\.onefeed\\.co\\.uk/\" to=\"https://tracking.onefeed.co.uk/\"/></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://store\\.theonion\\.com/\" to=\"https://store.theonion.com/\"/></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\" f=\"OnionTip.com.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\" 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\" 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 Censorship.org\" f=\"Online_Censorship.org.xml\"><rule from=\"^http:\" to=\"https:\"/></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=\"onpatient.com\" f=\"Onpatient.com.xml\"><securecookie host=\"^\\.onpatient\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></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=\"mismatch\" 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\" 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=\"mismatch\" 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=\"connection refused\" f=\"Oomphme.xml\"><rule from=\"^http://(?:www\\.)?oomphme\\.com/\" to=\"https://www.oomphme.com/\"/></ruleset>", "<ruleset name=\"oops.org\" 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=\"mismatch\" 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\" platform=\"cacert\" f=\"Op-co.de.xml\"><rule from=\"^http://www\\.op-co\\.de/\" to=\"https://op-co.de/\"/><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 Clipart.org\" f=\"Open-Clipart-Library.xml\"><securecookie host=\"^\\.openclipart\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></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=\"ORCID.org (partial)\" f=\"Open-Researcher-and-Contributor-ID.xml\"><exclusion pattern=\"^http://orcid\\.org/$\"/><exclusion pattern=\"^http://about\\.orcid\\.org/$\"/><exclusion pattern=\"^http://www\\.orcid\\.org/$\"/><securecookie host=\"(^|\\.)(about|members)\\.orcid\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Open Society Foundations\" default_off=\"mismatch\" 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 WebMail\" default_off=\"self-signed\" f=\"Open-WebMail.xml\"><rule from=\"^http://(?:www\\.)?openwebmail\\.org/\" to=\"https://openwebmail.org/\"/></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=\"OpenAdultDirectory.com (partial)\" default_off=\"failed ruleset test\" 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=\"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)\" 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=\"OpenContrail.org (partial)\" f=\"OpenContrail.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OpenCorporates.com (partial)\" 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=\"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=\"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=\"OpenEZX.org (CAcert, partial)\" platform=\"cacert\" default_off=\"failed ruleset test\" f=\"OpenEZX.org.xml\"><rule from=\"^http://svn\\.openezx\\.(?:com|net|org)/\" to=\"https://svn.openezx.org/\"/></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)\" default_off=\"failed ruleset test\" f=\"OpenHatch.org.xml\"><securecookie host=\"^\\.?openhatch\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OpenID.net\" f=\"OpenID.xml\"><securecookie host=\"^openid\\.net$\" 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\" 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)\" f=\"OpenITC.co.uk.xml\"><securecookie host=\"^forums\\.openitc\\.co\\.uk$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OpenITP.org (partial)\" 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\" platform=\"cacert\" f=\"OpenMandriva.xml\"><securecookie host=\"^(?:\\.?blog|doc|\\.ftp|issues|\\.?wiki|\\.www)?\\.openmandriva\\.org$\" 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\" default_off=\"mismatched, self-signed\" 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=\"OpenSSL.org (partial)\" f=\"OpenSSL.xml\"><securecookie host=\"^rt\\.openssl\\.org$\" name=\".+\"/><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\" 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://shop\\.openstreetmap\\.org/.*\" to=\"https://wiki.openstreetmap.org/wiki/Merchandise\"/><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=\"The Open University (buggy)\" default_off=\"https://www.eff.org/r.5E5\" f=\"OpenUniversity.xml\"><rule from=\"^http://([^@:/]+)\\.open\\.ac\\.uk/\" to=\"https://$1.open.ac.uk/\"/><rule from=\"^http://www\\.openuniversity\\.ac\\.uk/\" to=\"https://www.open.ac.uk/\"/><rule from=\"^http://www\\.ouw\\.co\\.uk/\" to=\"https://www.ouw.co.uk/\"/><rule from=\"^http://www\\.ousa\\.org\\.uk/\" to=\"https://www.ousa.org.uk/\"/></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=\"OpenVZ.org (missing certificate chain)\" default_off=\"missing certificate chain\" f=\"OpenVZ.org-falsemixed.xml\"><securecookie host=\"^\\.forum\\.openvz\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OpenVZ.org (partial)\" f=\"OpenVZ.org.xml\"><exclusion pattern=\"^http://static\\.openvz\\.org/+(?:$|\\?|supported_by_parallels_88x31\\.gif)\"/><securecookie host=\"^\\w\" 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)\" 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\" f=\"OpenXMPP.com.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 Access Button.org\" f=\"Open_Access_Button.org.xml\"><securecookie host=\"^(?:www\\.)?openaccessbutton\\.org$\" 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 Farm Game.com\" default_off=\"expired\" f=\"Open_Farm_Game.xml\"><securecookie host=\"^openfarmgame\\.com$\" name=\".+\"/><rule from=\"^http://www\\.openfarmgame\\.com/\" to=\"https://openfarmgame.com/\"/><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\" 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-Mesh.org\" platform=\"cacert\" f=\"Open_Mesh.xml\"><securecookie host=\"^www\\.open-mesh\\.org$\" name=\".+\"/><rule from=\"^http://open-mesh\\.org/\" to=\"https://www.open-mesh.org/\"/><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)\" 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 Wireless.org\" f=\"Open_Wireless_Movement.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Openas.org\" 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\" 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)\" f=\"Opengarden.com.xml\"><rule from=\"^http://www\\.opengarden\\.com/\" to=\"https://opengarden.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Openhost\" 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=\"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\" 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\" 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=\"mismatch\" 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)\" 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=\"connection dropped\" 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\" f=\"Oppelt.com.xml\"><securecookie host=\"^piwik\\.oppelt\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Oppo.com (partial)\" default_off=\"failed ruleset test\" 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://cdn-sec\\.optmd\\.com/\" to=\"https://cdn-sec.optmd.com/\"/></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=\"Optify\" default_off=\"failed ruleset test\" f=\"Optify.xml\"><securecookie host=\"^service\\.optify\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></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=\"optimize-it (partial)\" default_off=\"failed ruleset test\" f=\"Optimize-it.xml\"><rule from=\"^http://realperson300\\.net/\" to=\"https://realperson300.net/\"/></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\" f=\"Optimizely.xml\"><securecookie host=\"^(?:.*\\.)?optimizely\\.com$\" name=\".*\"/><rule from=\"^http://optimizely\\.com/\" to=\"https://www.optimizely.com/\"/><rule from=\"^http://(cdn\\d?|\\d+\\.log|log3|www)\\.optimizely\\.com/\" to=\"https://$1.optimizely.com/\"/><rule from=\"^http://support\\.optimizely\\.com/(help|pkg|stylesheets)/\" to=\"https://asset-2.tenderapp.com/$1/\"/></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\" 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=\"mismatch\" 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)\" 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\" default_off=\"failed ruleset test\" f=\"Orange.sk.xml\"><rule from=\"^http://(?:www\\.)?orange\\.sk/\" to=\"https://www.orange.sk/\"/></ruleset>", "<ruleset name=\"Orange\" 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\" 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=\"mismatch\" f=\"Oregon-State-University-mismatches.xml\"><rule from=\"^http://(?:www\\.)?campaignforosu\\.org/\" to=\"https://campaignforosu.org/\"/></ruleset>", "<ruleset name=\"Oregon State University (partial)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Oregon-State-University.xml\"><securecookie host=\"^\\.osuosl\\.org$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?oregonstate\\.edu/(favicon\\.ico$|u_central/images/)\" to=\"https://secure.oregonstate.edu/$1\"/><rule from=\"^http://(drupalweb\\.forestry|osulibrary|secure)\\.oregonstate\\.edu/\" to=\"https://$1.oregonstate.edu/\"/><rule from=\"^http://(?:www\\.)?osufoundation\\.org/\" to=\"https://osufoundation.org/\"/><rule from=\"^http://(www\\.)?osuosl\\.org/\" to=\"https://$1osuosl.org/\"/></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\" platform=\"cacert\" f=\"Orez_Praw.com.xml\"><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\" 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\" f=\"Orion_Systems_Integrators.xml\"><securecookie host=\"^(?:time)?\\.orioninc\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Orkut (partial)\" 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://www\\.orxrdr\\.com/\" to=\"https://www.orxrdr.com/\"/></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=\"OSChina.NET (partial)\" f=\"Oschina.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"osdimg.com\" f=\"Osdimg.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Oseems.com\" 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=\"oskuro.net\" f=\"Oskuro.net.xml\"><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 (mismatched)\" default_off=\"mismatched\" f=\"Osmocom.org-problematic.xml\"><securecookie host=\".+\\.osmocom\\.org$\" name=\".+\"/><rule from=\"^http://(openbsc|tetra)\\.osmocom\\.org/\" to=\"https://$1.osmocom.org/\"/></ruleset>", "<ruleset name=\"Osmocom.org (partial)\" platform=\"cacert\" f=\"Osmocom.org.xml\"><securecookie host=\"^(?:bb|gmr|sdr)\\.osmocom\\.org$\" name=\".+\"/><rule from=\"^http://(bb|gmr|lists|sdr|security|simtrace)\\.osmocom\\.org/\" to=\"https://$1.osmocom.org/\"/></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=\"Otalk.im\" f=\"Otalk.im.xml\"><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=\"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\" f=\"Otto.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Otumm.com\" 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=\"Otumm Store.se\" default_off=\"failed ruleset test\" f=\"Otumm_Store.se.xml\"><securecookie host=\"^\\.otummstore\\.se$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ouaza.com\" f=\"Ouaza.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ou&#239; FM (partial)\" f=\"Oui-FM.xml\"><securecookie host=\"^www\\.ouifm\\.fr$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?ouifm\\.fr/\" to=\"https://www.ouifm.fr/\"/></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\" 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\" default_off=\"Certificate mismatch\" f=\"Ourlocality.org.xml\"><rule from=\"^http://(www\\.)?(support\\.)?ourlocality\\.org/\" to=\"https://$2ourlocality.org/\"/></ruleset>", "<ruleset name=\"ourneighborhoodmilf.com\" f=\"Ourneighborhoodmilf.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Out-Law.com\" default_off=\"failed ruleset test\" 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=\"Out Campaign.org\" default_off=\"mismatched\" f=\"Out_Campaign.org.xml\"><securecookie host=\"^outcampaign\\.org$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?outcampaign\\.org/\" to=\"https://outcampaign.org/\"/></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\" default_off=\"failed ruleset test\" 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=\"connection dropped\" 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://www\\.over-yonder\\.net/\" to=\"https://www.over-yonder.net/\"/></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\" 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\" 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\" 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=\"Own-Mailbox.com\" f=\"Own-Mailbox.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ownCloud.com\" 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\" 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\" 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=\"Oxfam Unwrapped\" default_off=\"failed ruleset test\" f=\"OxfamIrelandUnwrapped.xml\"><rule from=\"^http://(?:www\\.)?oxfamirelandunwrapped\\.com/\" to=\"https://www.oxfamirelandunwrapped.com/\"/><rule from=\"^http://netbel\\.oxfamireland\\.org/\" to=\"https://netbel.oxfamireland.org/\"/></ruleset>", "<ruleset name=\"Oxford Journals (partial)\" f=\"Oxford-Journals.xml\"><securecookie host=\"^\\w+\\.oxfordjournals\\.org$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?oxfordjournals\\.org/resource/image/\" to=\"https://secure.oxfordjournals.org/resource/image/\"/><rule from=\"^http://(access|secure|services)\\.oxfordjournals\\.org/\" to=\"https://$1.oxfordjournals.org/\"/></ruleset>", "<ruleset name=\"Oxford Dictionaries\" f=\"Oxford_Dictionaries.xml\"><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\" f=\"OzBargain.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OzLabs.org (CAcert)\" platform=\"cacert\" f=\"OzLabs.org-cacert.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OzLabs.org (partial)\" f=\"OzLabs.xml\"><exclusion pattern=\"^http://(?:ccontrol|jk|librtas|powerpc-utils|rusty|yaboot)\\.ozlabs\\.org/\"/><securecookie host=\"^\\w\" 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\" default_off=\"failed ruleset test\" f=\"Ozon.Travel.xml\"><securecookie host=\"^www\\.ozon\\.travel$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ozon.ru (partial)\" 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://blog\\.p2pfoundation\\.net/\" to=\"https://blog.p2pfoundation.net/\"/></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\" default_off=\"failed ruleset test\" f=\"PAPPP.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PBA Galleries (mismatches)\" default_off=\"mismatch\" 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)\" 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=\"PC Users Group (ACT) (partial)\" platform=\"cacert mixedcontent\" f=\"PC-Users-Group-ACT.xml\"><securecookie host=\"^members\\.tip\\.net\\.au$\" name=\".*\"/><rule from=\"^http://(www\\.)?pcug\\.org\\.au/\" to=\"https://$1pcug.org.au/\"/><rule from=\"^http://members\\.tip\\.net\\.au/\" to=\"https://members.tip.net.au/\"/></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=\"PC World (broken)\" default_off=\"Doesn't support HTTPS anymore\" f=\"PCWorld.xml\"><rule from=\"^http://(www\\.)?pcworld\\.com/\" to=\"https://$1pcworld.com/\"/><rule from=\"^http://jobs\\.pcworld\\.com/c/\" to=\"https://jobs.pcworld.com/c/\"/></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=\"mismatch\" f=\"PDDOC.com.xml\"><rule from=\"^http://(?:www\\.)?pddoc\\.com/\" to=\"https://pddoc.com/\"/></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=\"mismatch\" 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, &amp; 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)\" 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)\" 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)\" 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\" 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\" 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)\" default_off=\"failed ruleset test\" 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=\"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=\"PLoS.org (false MCB)\" platform=\"mixedcontent\" f=\"PLoS.org-falsemixed.xml\"><securecookie host=\"^(?:.*\\.)?plos\\.org$\" name=\".*\"/><rule from=\"^http://((?:blogs|currents|www)\\.)?plos\\.org/\" to=\"https://$1plos.org/\"/></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\" 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\" 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\" 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\" 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)\" 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=\"^(?:www\\.)?prism-break\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></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://webmail\\.planet-school\\.de/\" to=\"https://webmail.planet-school.de/\"/></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\" 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&#193;F\" f=\"PSZAF.xml\"><rule from=\"^http://([^/:@]*)\\.pszaf\\.hu/\" to=\"https://$1.pszaf.hu/\"/></ruleset>", "<ruleset name=\"P&#233;csi Tudom&#225;nyegyetem\" default_off=\"failed ruleset test\" f=\"PTE.xml\"><rule from=\"^http://www\\.pte\\.hu/\" to=\"https://www.pte.hu/\"/></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=\"connection refused\" f=\"PULP.xml\"><securecookie host=\"^ssl\\.pulpcentral\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"P Kimber.net\" default_off=\"failed ruleset test\" f=\"P_Kimber.net.xml\"><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\" f=\"PacBSD.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PacSec.jp\" default_off=\"failed ruleset test\" 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)\" default_off=\"failed ruleset test\" 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://api\\.pachube\\.com/\" to=\"https://api.pachube.com/\"/></ruleset>", "<ruleset name=\"Package Control.io\" f=\"Package_Control.io.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Package Lab.com\" f=\"Package_Lab.com.xml\"><securecookie host=\"^www\\.packagelab\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Packer.io\" f=\"Packer.io.xml\"><securecookie host=\"^\\.packer\\.io$\" 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\" 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\" default_off=\"failed ruleset test\" 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://wm4\\.pacific\\.net\\.au/\" to=\"https://wm4.pacific.net.au/\"/></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\" f=\"PageKite.xml\"><securecookie host=\"^pagekite\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Pagely (partial)\" f=\"Pagely.xml\"><rule from=\"^http://(www\\.)?page\\.ly/(favicon\\.ico|public/|signup/|wp-content/)\" to=\"https://$1page.ly/$2\"/><rule from=\"^http://pagely\\.presscdn\\.com/wp-content/\" to=\"https://page.ly/wp-content/\"/></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&#225;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\" 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://www\\.palantir\\.com/\" to=\"https://www.palantir.com/\"/></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)\" f=\"Palm_Coast_Data.xml\"><securecookie host=\"^\\.palmcoastd\\.com$\" name=\"^:xCOOKIEx:$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Palmetto.com\" default_off=\"failed ruleset test\" 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)\" 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\" default_off=\"failed ruleset test\" 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\" 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://images\\.pangora\\.com/\" to=\"https://images.pangora.com/\"/></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\" f=\"Panopticlick.com.xml\"><securecookie host=\"^www\\.panopticlick\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Panopto.com (partial)\" 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\" f=\"Panoptykon.org.xml\"><rule from=\"^http://www\\.panoptykon\\.org/\" to=\"https://panoptykon.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Panoramio (problematic)\" default_off=\"mismatched\" f=\"Panoramio-problematic.xml\"><rule from=\"^http://(?:www\\.)?panoramio\\.com/\" to=\"https://www.panoramio.com/\"/></ruleset>", "<ruleset name=\"Panoramio (partial)\" f=\"Panoramio.xml\"><rule from=\"^http://ssl\\.panoramio\\.com/\" to=\"https://ssl.panoramio.com/\"/></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=\"connection 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\" f=\"Pao-pao.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"P&#227;oDel&#237;cia.com\" 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 (mismatched)\" default_off=\"mismatched\" f=\"Paperspace.io-problematic.xml\"><securecookie host=\"^\\.paperspace\\.io$\" name=\"^(?:__cfduid|cf_clearance)$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Paperspace.io (partial)\" f=\"Paperspace.io.xml\"><securecookie host=\"^(?:www\\.)?paperspace\\.io$\" 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\" platform=\"cacert\" f=\"Parabola.nu.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Parabola GNULinux.org\" platform=\"cacert\" f=\"Parabola_GNULinux.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Paradox Plaza.com (partial)\" f=\"Paradox-Interactive.xml\"><securecookie host=\".+\\.paradoxplaza\\.com$\" name=\".+\"/><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\" 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)\" 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\" 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 Diderot University (partial)\" f=\"Paris_Diderot_University.xml\"><securecookie host=\"^auth\\.univ-paris-diderot\\.fr$\" name=\".+\"/><rule from=\"^http://auth\\.univ-paris-diderot\\.fr/\" to=\"https://auth.univ-paris-diderot.fr/\"/></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.org.uk\" 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)\" 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=\"mismatch\" 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\" f=\"ParseCDN.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Parship.nl\" f=\"Parship.nl.xml\"><rule from=\"^http://www\\.parship\\.nl/\" to=\"https://www.parship.nl/\"/></ruleset>", "<ruleset name=\"Part Spider.com\" 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\" 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=\"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=\"PassThePopcorn\" f=\"PassThePopcorn.xml\"><rule from=\"^http://(?:tls\\.|www\\.)?passthepopcorn\\.me/\" to=\"https://tls.passthepopcorn.me/\"/><rule from=\"^http://static\\.passthepopcorn\\.me/\" to=\"https://static.passthepopcorn.me/\"/></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\" 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)\" 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.xml\"><rule from=\"^http://(?:www\\.)?passwordcard\\.org/\" to=\"https://www.passwordcard.org/\"/></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\" 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 (false MCB)\" platform=\"mixedcontent\" f=\"Paste2.org-falsemixed.xml\"><securecookie host=\"^\\.paste2\\.org$\" name=\"^(?:__cfduid|__qca)$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Paste2.org (partial)\" f=\"Paste2.org.xml\"><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\" default_off=\"No HTTPS support anymore\" f=\"Pastebin.ca.xml\"><rule from=\"^http://(?:www\\.)?pastebin\\.ca/\" to=\"https://pastebin.ca/\"/></ruleset>", "<ruleset name=\"Pastebin.com (buggy)\" default_off=\"breaks CSS on pastes\" f=\"Pastebin.com.xml\"><rule from=\"^http://(www\\.)?pastebin\\.com/(?=adserver/|cache/|etc/|favicon\\.ico|i/|raw\\.php)\" to=\"https://$1pastebin.com/\"/></ruleset>", "<ruleset name=\"Pastee.org\" f=\"Pastee.org.xml\"><rule from=\"^http://(?:www\\.)?pastee\\.org/\" to=\"https://pastee.org/\"/></ruleset>", "<ruleset name=\"Pastemarkdown.com\" f=\"Pastemarkdown.com.xml\"><securecookie host=\"^pastemarkdown\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></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=\"mismatch\" 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\" 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=\"patrickbateman.biz\" default_off=\"failed ruleset test\" f=\"Patrickbateman.biz.xml\"><rule from=\"^http:\" to=\"https:\"/></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=\"Patterns in the Void.net\" default_off=\"self-signed\" f=\"Patterns_in_the_Void.net.xml\"><securecookie host=\"^(?:blog|code|www)\\.patternsinthevoid\\.net$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?patternsinthevoid\\.net/\" to=\"https://www.patternsinthevoid.net/\"/><rule from=\"^http://(blog|code)\\.patternsinthevoid\\.net/\" to=\"https://$1.patternsinthevoid.net/\"/></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=\"paul schreiber.com\" f=\"Paul_schreiber.com.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=\"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\" 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=\"PaymentAccuracy.gov\" f=\"PaymentAccuracy.gov.xml\"><securecookie host=\".\" name=\".\"/><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\" 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\" f=\"Paypal_Giving_Fund.org.xml\"><securecookie host=\"^www\\.paypalgivingfund\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"payrollapp.com\" default_off=\"failed ruleset test\" f=\"Payrollapp.com.xml\"><securecookie host=\"^payrollapp\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?payrollapp\\.com/\" to=\"https://payrollapp.com/\"/></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\" 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\" platform=\"mixedcontent\" f=\"Pcpartpicker.com.xml\"><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=\"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=\"mismatch\" f=\"Pearson-mismatches.xml\"><rule from=\"^http://ptgmedia\\.pearsoncmg\\.com/\" to=\"https://ptgmedia.pearsoncmg.com/\"/></ruleset>", "<ruleset name=\"Pearson (partial)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" 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)\" default_off=\"failed ruleset test\" 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=\"mismatch\" 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)\" 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)\" 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=\"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\" 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://secure\\.pegazhosting\\.com/\" to=\"https://secure.pegazhosting.com/\"/></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=\"pekwm.org\" platform=\"cacert\" f=\"Pekwm.org.xml\"><securecookie host=\"^www\\.pekwm\\.org$\" name=\".+\"/><rule from=\"^http://pekwm\\.org/\" to=\"https://www.pekwm.org/\"/><rule from=\"^http:\" to=\"https:\"/></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=\"connection refused\" f=\"PengPod.com.xml\"><securecookie host=\"^(?:.*\\.)?pengpod\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PenguinWebHosting (partial)\" platform=\"mixedcontent\" 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 &amp; Dentistry (partial)\" default_off=\"connection 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\" default_off=\"failed ruleset test\" 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\" 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=\"Pentabarf\" default_off=\"expired\" platform=\"cacert\" f=\"Pentabarf.xml\"><securecookie host=\"^pentabarf\\.org$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?pentabarf\\.org/\" to=\"https://pentabarf.org/\"/></ruleset>", "<ruleset name=\"Pentest Geek.com\" 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)\" default_off=\"failed ruleset test\" 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=\"mismatch\" 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)\" 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 &amp; 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://pmetrics\\.performancing\\.com/\" to=\"https://pmetrics.performancing.com/\"/></ruleset>", "<ruleset name=\"Periscope.io\" f=\"Periscope.io.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Periscope.tv\" f=\"Periscope.tv.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Perishable Press.com\" f=\"Perishable_Press.com.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://donate\\.perlfoundation\\.org/\" to=\"https://donate.perlfoundation.org/\"/></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=\"Perot.me\" f=\"Perot.me.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Perry Ellis.com (partial)\" default_off=\"failed ruleset test\" 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=\"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\" 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=\"mismatch\" 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=\"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=\"mismatch\" 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\" 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)\" 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 (problematic)\" default_off=\"missing certificate chain, untrusted root\" f=\"Petfinder.com-problematic.xml\"><securecookie host=\"^profiles\\.petfinder\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Petfinder.com (partial)\" f=\"Petfinder.com.xml\"><rule from=\"^http://petfinder\\.com/+\" to=\"https://www.petfinder.com/\"/><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=\"mismatch\" 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\" 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&#228;ty (mismatches)\" default_off=\"mismatch\" f=\"Petteri-Raty-mismatches.xml\"><rule from=\"^http://gentoo\\.petteriraty\\.eu/\" to=\"https://gentoo.petteriraty.eu/\"/></ruleset>", "<ruleset name=\"Petteri R&#228;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)\" f=\"PfSense.org.xml\"><securecookie host=\".+\\.pfsense\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"pfefferkoerner.de\" 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://pform\\.net/\" to=\"https://pform.net/\"/></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 (partial)\" f=\"Phaser.io.xml\"><exclusion pattern=\"^http://phaser\\.io/+(?!content/|css/|favicon\\.ico|images/)\"/><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\" f=\"Philanthropedia.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Phillips Academy\" 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)\" default_off=\"failed ruleset test\" 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)\" 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=\"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)\" default_off=\"failed ruleset test\" 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.com\" 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\" default_off=\"failed ruleset test\" 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\" default_off=\"failed ruleset test\" 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\" 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\" 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=\"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://piatnik\\.de/\" to=\"https://piatnik.de/\"/></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)\" 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=\"Pico-app.com\" f=\"Pico-app.com.xml\"><securecookie host=\"^\\.pico-app\\.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\" default_off=\"mismatched, self-signed\" f=\"PicoStocks.com.xml\"><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\" f=\"Pidg.in.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Pidgin.im\" 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\" f=\"Pinboard.xml\"><securecookie host=\"^(?:www\\.)?pinboard\\.in$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Pine64.com\" f=\"Pine64.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PineGram.com\" default_off=\"failed ruleset test\" f=\"PineGram.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.fm (expired)\" default_off=\"cert expired\" f=\"Ping.fm.xml\"><rule from=\"^http://(?:www\\.)?ping\\.fm/\" to=\"https://ping.fm/\"/></ruleset>", "<ruleset name=\"ping.gg\" f=\"Ping.gg.xml\"><rule from=\"^http://ping\\.gg/\" to=\"https://ping.gg/\"/></ruleset>", "<ruleset name=\"PingOne.com\" default_off=\"failed ruleset test\" 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\" default_off=\"failed ruleset test\" f=\"Pingability.com.xml\"><securecookie host=\"^(?:www\\.)?pingability\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?pingability\\.com/\" to=\"https://pingability.com/\"/></ruleset>", "<ruleset name=\"Pingdom.net\" f=\"Pingdom.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Pingdom.com (partial)\" 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=\"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\" 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=\"Pinkbike (partial)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Pinkbike.xml\"><securecookie host=\"^\\.pinkbike\\.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)\" 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)\" f=\"Pinsent_Masons.xml\"><rule from=\"^http://extranets\\.pinsentmasons\\.com/\" to=\"https://extranets.pinsentmasons.com/\"/></ruleset>", "<ruleset name=\"Pinta-Outlet.fi\" 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://blog-assets\\.pinterest\\.com/\" to=\"https://d5eppwnwxs8d9.cloudfront.net/\"/><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\" 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\" 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\" 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\" 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\" 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\" f=\"Piratenpartei.at.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Piratenpartei.de (partial)\" 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\" 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\" f=\"Piratpartiet.se.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Piratpartiet\" 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 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\" f=\"Pizza_Charts.com.xml\"><securecookie host=\"^\\.?pizzacharts\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Pizzahut UK\" platform=\"mixedcontent\" 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=\"Pkgs.org\" f=\"Pkgs.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Pkr.com\" 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\" default_off=\"failed ruleset test\" 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\" default_off=\"failed ruleset test\" f=\"Planet-Source-Code.com.xml\"><securecookie host=\"^(?:www\\.)?planet-source-code\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Planet-Work\" default_off=\"failed ruleset test\" 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=\"mismatch\" f=\"PlanetLab-mismatches.org.xml\"><rule from=\"^http://monitor\\.planet-lab\\.org/\" to=\"https://monitor.planet-lab.org/\"/></ruleset>", "<ruleset name=\"PlanetLab (partial)\" 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 Discover\" default_off=\"failed ruleset test\" f=\"Planet_Discover.xml\"><securecookie host=\"^(?:.*\\.)?planetdiscover\\.com$\" name=\".+\"/><rule from=\"^http://([\\w\\-]\\.)?planetdiscover\\.com/\" to=\"https://$1planetdiscover.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://static\\.planetminecraft\\.com/\" to=\"https://static.planetminecraft.com/\"/></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=\"plantappstore.com (false MCB)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Plantappstore.com-falsemixed.xml\"><securecookie host=\"^(?:\\.|www\\.)?plantappstore\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"plantappstore.com (partial)\" f=\"Plantappstore.com.xml\"><rule from=\"^http://(www\\.)?plantappstore\\.com/(?=catalog/|favicon\\.ico|images/)\" to=\"https://$1plantappstore.com/\"/></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://images\\.plattstatic\\.com/\" to=\"https://images.plattstatic.com/\"/></ruleset>", "<ruleset name=\"Plausible.coop\" f=\"Plausible.coop.xml\"><securecookie host=\"^(?:www\\.)?plausible\\.coop$\" 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://(?:www\\.)?playonlinux\\.com/\" to=\"https://www.playonlinux.com/\"/></ruleset>", "<ruleset name=\"PlayStation.net\" f=\"PlayStation.net.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PlayStation.com (partial)\" 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\" f=\"PlayerAuctions.com.xml\"><securecookie host=\"^www\\.playerauctions\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PlayerIO.com\" default_off=\"failed ruleset test\" 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)\" 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=\"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\" 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 (partial)\" 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)\" 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=\"Plugin-Planet.com\" f=\"Plugin-Planet.com.xml\"><securecookie host=\"^(?:www\\.)?plugin-planet\\.com$\" name=\".+\"/><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\" default_off=\"failed ruleset test\" 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\" 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=\"plusme.net (false MCB)\" platform=\"mixedcontent\" f=\"Plusme.net-falsemixed.xml\"><securecookie host=\"^(?:w*\\.)?plusme\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"plusme.net (partial)\" 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)\" 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=\"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=\"PodOmatic.com\" platform=\"mixedcontent\" f=\"PodOmatic.com.xml\"><rule from=\"^http://enterprise\\.podomatic\\.com/\" to=\"https://enterprise.podomatic.com/\"/></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\" 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\" 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=\"Pogamay.ru (partial)\" default_off=\"expired\" f=\"Pogamay.ru.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\" 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://(?:www\\.)?poivy\\.com/\" to=\"https://www.poivy.com/\"/></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&#233;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&#233;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=\"Connection 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\" default_off=\"failed ruleset test\" 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\" 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 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 (partial)\" default_off=\"mismatch\" f=\"Politico.xml\"><exclusion pattern=\"^http://(?:avatar|dyn|find|www2)\\.\"/><securecookie host=\"^(?:jobs)?\\.politico\\.com$\" name=\".*\"/><rule from=\"^http://politico\\.com/\" to=\"https://www.politico.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Politico Pro.com\" f=\"Politico_Pro.com.xml\"><securecookie host=\"^(?:www)?\\.politicopro\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PoliticsHome.com\" f=\"PoliticsHome.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Politiken.dk (mixed content)\" 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=\"politisktinkorrekt.info\" default_off=\"failed ruleset test\" f=\"Politisktinkorrekt.info.xml\"><rule from=\"^http://politisktinkorrekt\\.info/\" to=\"https://politisktinkorrekt.info/\"/><rule from=\"^http://www\\.politisktinkorrekt\\.info/\" to=\"https://politisktinkorrekt.info/\"/></ruleset>", "<ruleset name=\"Polity.co.uk\" 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\" 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\" f=\"PolyBrowser.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PolyGrant.com\" 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=\"mismatch\" 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)\" 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\" 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://c[12]\\.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\" default_off=\"failed ruleset test\" f=\"PopAtomic.xml\"><securecookie host=\"^(?:www\\.)?popatomic\\.org$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PopCash.net\" 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://(api|js|search)\\.popin\\.cc/\" to=\"https://$1.popin.cc/\"/><rule from=\"^http://(?:r|sync)\\.popin\\.cc/\" to=\"https://sync.popin.cc/\"/></ruleset>", "<ruleset name=\"PopSci.com (false MCB)\" platform=\"mixedcontent\" default_off=\"missing certificate chain, needs clearnet testing\" f=\"PopSci.com-falsemixed.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PopSci.com (partial)\" default_off=\"missing certificate chain, needs clearnet testing\" f=\"PopSci.com.xml\"><exclusion pattern=\"http://(?:www\\.)?popsci\\.com/+(?!sites/)\"/><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=\"PopcornTime.io\" f=\"PopcornTime.io.xml\"><securecookie host=\"^\\.popcorntime\\.io$\" name=\"^(?:__cfduid|cf_clearance)$\"/><rule from=\"^http://status\\.popcorntime\\.io/\" to=\"https://popcorntime.statuspage.io/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Popehat.com (broken)\" default_off=\"SSL error\" f=\"Popehat.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Poppy Sports\" platform=\"mixedcontent\" 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\" default_off=\"failed ruleset test\" 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=\"mismatch\" 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 (partial)\" f=\"PornHub.xml\"><exclusion pattern=\"http://www\\.pornhub\\.com/(?!/*(?:favicon\\.ico|insights(?:/wp-content|/wp-includes/)))\"/><securecookie host=\"^\\.\" name=\"^_ga(?:t?$|t_)\"/><securecookie host=\"^r\" name=\".\"/><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\" 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)\" 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)\" default_off=\"failed ruleset test\" 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\" 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)\" 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.ch\" 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=\"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)\" default_off=\"failed ruleset test\" 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)\" 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\" 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)\" f=\"Poste.it.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PosteShop.it\" 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\" 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=\"connection refused\" f=\"Poster_Store_UK.xml\"><securecookie host=\"^\\.(?:www\\.)?posterstoreuk\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Posterous clients\" default_off=\"mismatch\" 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=\"Postimg.com (partial)\" f=\"Postimg.com.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"postimg.org\" f=\"Postimg.org.xml\"><exclusion pattern=\"^http://(?!(?:s\\d+\\.|www\\.)?postimg\\.org/)\"/><securecookie host=\"^\\w\" name=\".\"/><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><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\" 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\" platform=\"mixedcontent\" f=\"Postscapes.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)\" 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\" 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\" 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\" 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\" default_off=\"failed ruleset test\" 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\" 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=\"Ppy.sh (partial)\" f=\"Ppy.sh.xml\"><securecookie host=\"(osu|jizz|store)\\.ppy.sh\" name=\".*\"/><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\" 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\" 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=\"mismatch\" 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\" 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\" f=\"Prediction.IO.xml\"><securecookie host=\"^(?:templates)?\\.prediction\\.io$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Preferred Reservations (partial)\" 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=\"mismatch\" f=\"Preisvergleich-Internet-Services-mismatches.xml\"><rule from=\"^http://s\\.gzhls\\.at/\" to=\"https://s.gzhls.at/\"/></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://(www\\.)?metashop\\.at/\" to=\"https://$1metashop.at/\"/></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\" f=\"PressLabs_SSL.xml\"><rule from=\"^http://([\\w-]+\\.)?plssl\\.com/\" to=\"https://$1plssl.com/\"/></ruleset>", "<ruleset name=\"PressPage.com (partial)\" 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)\" f=\"PressReader.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Pressable.com (partial)\" 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)\" f=\"Pressflex.xml\"><rule from=\"^http://(?:web\\.|www\\.)?blogads\\.com/\" to=\"https://web.blogads.com/\"/></ruleset>", "<ruleset name=\"PrestaShop.com\" 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=\"mismatch\" 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)\" f=\"Pretty-in-Cash.xml\"><rule from=\"^http://exgf\\.teenbff\\.com/\" to=\"https://exgf.teenbff.com/\"/></ruleset>", "<ruleset name=\"Pretty Lights Music\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" 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=\"Prey (partial)\" f=\"Prey.xml\"><securecookie host=\"^.+\\.preyproject\\.com$\" name=\".+\"/><rule from=\"^http://(?:(panel\\.)|www\\.)?preyproject\\.com/\" to=\"https://$1preyproject.com/\"/><rule from=\"^http://support\\.preyproject\\.com/(help|pkg|stylesheets)/\" to=\"https://asset-1.tenderapp.com/$1/\"/></ruleset>", "<ruleset name=\"PreyProject\" default_off=\"failed ruleset test\" f=\"PreyProject.xml\"><securecookie host=\"^(?:control|panel)\\.preyproject\\.com$\" name=\".*\"/><rule from=\"^http://(control|panel)\\.preyproject\\.com/\" to=\"https://$1.preyproject.com/\"/></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.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\" 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=\"Primabanka.sk\" default_off=\"failed ruleset test\" 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=\"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\"><rule from=\"^http://vws3\\.primus\\.ca/\" to=\"https://vws3.primus.ca/\"/></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\" 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 International.org\" f=\"Privacy-International.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\" 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\" 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\" 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\" 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 (partial)\" platform=\"cacert\" f=\"Pro-Linux.de.xml\"><securecookie host=\"\\.www\\.pro-linux\\.de$\" name=\"^phpbb2bkHas_(?:data|sid)$\"/><rule from=\"^http://(?:www\\.)?pro-linux\\.de/(?=css/|favicon\\.ico|forum(?:$|[?/])|images/)\" to=\"https://www.pro-linux.de/\"/></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=\"mismatched\" f=\"Pro-market.net.xml\"><rule from=\"^http://ads\\.pro-market\\.net/\" to=\"https://ads.pro-market.net/\"/></ruleset>", "<ruleset name=\"pro186.com (partial)\" default_off=\"failed ruleset test\" f=\"Pro186.com.xml\"><rule from=\"^http://cdn\\.pro186\\.com/\" to=\"https://d31p8cbsm4vlum.cloudfront.net/\"/></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)\" 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&#381;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=\"Pro Ultra Trim\" default_off=\"failed ruleset test\" f=\"Pro_Ultra_Trim.xml\"><securecookie host=\"^(?:w*\\.)?proultratrim\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></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 &amp; 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=\"Productvisio\" default_off=\"failed ruleset test\" f=\"Productvisio.xml\"><securecookie host=\"^\\.?productvisio\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Professional Security Testers.org\" f=\"Professional_Security_Testers.org.xml\"><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\" default_off=\"failed ruleset test\" f=\"ProgrammableWeb.xml\"><securecookie host=\".*\\.programmableweb\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Progreso Webhosting (partial)\" f=\"Progreso_Webhosting.xml\"><exclusion pattern=\"^http://webmail\\.\"/><securecookie host=\"^(?:.*\\.)?progreso\\.pl$\" name=\".+\"/><rule from=\"^http://(\\w+\\.)?progreso\\.pl/\" to=\"https://$1progreso.pl/\"/></ruleset>", "<ruleset name=\"Progress.com (partial)\" 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://www\\.progressive\\.hu/\" to=\"https://www.progressive.hu/\"/></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)\" f=\"Project_Meshnet.xml\"><securecookie host=\"^(?:wiki)?\\.projectmeshnet\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Project Secret Identity.org\" f=\"Project_Secret_Identity.org.xml\"><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)\" default_off=\"failed ruleset test\" f=\"Prometheus_Global.xml\"><rule from=\"^http://(?:www\\.)?progllc\\.com/\" to=\"https://www.progllc.com/\"/></ruleset>", "<ruleset name=\"Prometric\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" 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=\"PropertyDeals.com.pk\" default_off=\"failed ruleset test\" f=\"PropertyDeals.com.pk.xml\"><securecookie host=\"^www\\.propertydeals\\.com\\.pk$\" 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)\" default_off=\"failed ruleset test\" 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\" f=\"ProspectEye.com.xml\"><securecookie host=\"^tr\\.prospecteye\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"prosystemfx.com\" default_off=\"failed ruleset test\" 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\" 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.com\" f=\"ProtonMail.com.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=\"mismatch\" 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\" 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\" 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=\"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\" default_off=\"failed ruleset test\" f=\"Pstatic.net.xml\"><rule from=\"^http://ssl\\.pstatic\\.net/\" to=\"https://ssl.pstatic.net/\"/></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://js\\.ptengine\\.jp/\" to=\"https://js.ptengine.jp/\"/></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://ox-d\\.pubgears\\.com/\" to=\"https://ox-d.pubgears.com/\"/></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://analytics\\.pubnxt\\.net/\" to=\"https://analytics.pubnxt.net/\"/></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 (partial)\" f=\"PubPeer.com.xml\"><securecookie host=\"^\\w\" 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=\"Pubkey.is\" f=\"Pubkey.is.xml\"><securecookie host=\"^(?:www\\.)?pubkey\\.is$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></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&#233;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\"><exclusion pattern=\"^http://(?:blogs\\.|currents\\.|www\\.)?plos\\.org/+(?!favicon\\.ico|wp-content/|wp-includes/)\"/><securecookie host=\"^(?:(?!(?:blogs|currents|www)\\.).+\\.)?plos\\.org$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Public.Resource.Org\" 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 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=\"Public Suffix.org\" f=\"Public_Suffix.org.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=\"Publons\" f=\"Publons.xml\"><securecookie host=\"^publons\\.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=\"puckey.org\" f=\"Puckey.org.xml\"><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\" 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\" f=\"Pulse.me.xml\"><rule from=\"^http://(?:www\\.)?pulse\\.me/\" to=\"https://www.pulse.me/\"/></ruleset>", "<ruleset name=\"PulsePoint (mismatches)\" default_off=\"mismatch\" 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=\"^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\" 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\" 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=\"Purecine.fr (partial)\" default_off=\"missing certificate chain\" f=\"Purecine.fr.xml\"><rule from=\"^http://(?:www\\.)?purecine\\.fr/\" to=\"https://www.cinemovies.fr/\"/></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)\" 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=\"connection dropped\" f=\"PyPIP.in.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PyWeek.org\" 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\" f=\"Pyneo.org.xml\"><securecookie host=\"^pyneo\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Pypi\" f=\"Pypi.xml\"><securecookie host=\"^pypi.python.org$\" name=\".*\"/><rule from=\"^http://pypi\\.python\\.org/\" to=\"https://pypi.python.org/\"/></ruleset>", "<ruleset name=\"Python.org (partial)\" f=\"Python.org.xml\"><securecookie host=\"^bugs\\.python\\.org$\" name=\".+\"/><securecookie host=\"^wiki\\.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\" 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)\" 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\" 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&amp;\"/></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\"><exclusion pattern=\"^http://v\\.qq\\.com/(?!x/)\"/><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=\"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)\" f=\"Qbrick.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Qcloud.com (partial)\" f=\"Qcloud.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Qh img.com\" f=\"Qh_img.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://p([0-4])\\.qhimg\\.com/\" to=\"https://p$1.ssl.qhimg.com/\"/><rule from=\"^http://p\\d+\\.qhimg\\.com/\" to=\"https://p0.ssl.qhimg.com/\"/><rule from=\"^http://s(\\d)\\.qhimg\\.com/\" to=\"https://s$1.ssl.qhimg.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Qihu CDN.com\" 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=\"Qlogo.cn\" f=\"Qlogo.cn.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"qnetp.net (partial)\" 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=\"QRpedia.org\" default_off=\"missing chain cert\" platform=\"mixedcontent\" f=\"Qrpedia.org.xml\"><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\" 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\" 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\" 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)\" 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=\"connection 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)\" 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=\"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\" f=\"Questionmarket.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"QuickHash.com\" f=\"QuickHash.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Fast Shopping Cart.com\" 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\" 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=\"Quotes and Sayings.com\" default_off=\"redirects to another domain\" f=\"Quotes_and_Sayings.com.xml\"><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\" default_off=\"self-signed\" f=\"QupZilla.xml\"><securecookie host=\".\" name=\".\"/><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\" 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=\"Qwant.com\" f=\"Qwant.com.xml\"><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\" f=\"R-HPC.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"R-kom.de\" default_off=\"failed ruleset test\" 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 Project\" f=\"R-project.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"R00tshell.lighthouseapp.com\" default_off=\"Cert wildcard depth mismatch\" f=\"R00tshell.lighthouseapp.com.xml\"><rule from=\"^http://r00tshell\\.lighthouseapp\\.com/\" to=\"https://www.r00tshell.lighthouseapp.com/\"/></ruleset>", "<ruleset name=\"r00tz.org (partial)\" f=\"R00tz.org.xml\"><rule from=\"^http://(?:www\\.)?r00tz(?:-org\\.theidentityproject\\.com|\\.org)/wp-content/\" to=\"https://secure.bluehost.com/~theiden1/r00tz/wp-content/\"/></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://barra\\.r7\\.com/\" to=\"https://barra.r7.com/\"/></ruleset>", "<ruleset name=\"r7ls.net\" f=\"R7ls.net.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"RAC\" default_off=\"failed ruleset test\" 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)\" 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\" 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=\"connection dropped\" 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://je-s\\.rcuk\\.ac\\.uk/\" to=\"https://je-s.rcuk.ac.uk/\"/></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\" default_off=\"self-signed\" f=\"RDot.org.xml\"><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=\"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=\"mismatch\" 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\" f=\"RFC_Express.xml\"><securecookie host=\"^(?:www\\.)?rfcexpress\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"RF Parts.com\" default_off=\"failed ruleset test\" 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)\" 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\" 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 &amp; 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://secure2\\.roisolutions\\.net/\" to=\"https://secure2.roisolutions.net/\"/></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=\"RPM Fusion.org (partial)\" f=\"RPM_Fusion.org.xml\"><securecookie host=\"^bugzilla\\.rpmfusion\\.org$\" name=\".+\"/><rule from=\"^http://(bugzilla|lists)\\.rpmfusion\\.org/\" to=\"https://$1.rpmfusion.org/\"/></ruleset>", "<ruleset name=\"RPXNow.com (partial)\" f=\"RPXNow.com.xml\"><securecookie host=\"^(?:.*\\.)?rpxnow\\.com$\" name=\".+\"/><rule from=\"^http://(?:cdn|static)\\.rpxnow\\.com/\" to=\"https://s3.amazonaws.com/static.rpxnow.com/\"/><rule from=\"^http://widget-cdn\\.rpxnow\\.com/\" to=\"https://d29usylhdk1xyu.cloudfront.net/\"/><rule from=\"^http://(\\w+\\.)?rpxnow\\.com/\" to=\"https://$1rpxnow.com/\"/></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)\" default_off=\"failed ruleset test\" f=\"RSA-Security.xml\"><rule from=\"^http://www\\.securesuite\\.co\\.uk/\" to=\"https://www.securesuite.co.uk/\"/></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)\" 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\" 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&amp;vd=autodiscover\"/><rule from=\"^http://autodiscover\\.rsc\\.org\\.uk/+([^?]+)$\" to=\"https://outlook.office365.com/$1?realm=rsc.org.uk&amp;vd=autodiscover\"/><rule from=\"^http://autodiscover\\.rsc\\.org\\.uk/+(.+)\" to=\"https://outlook.office365.com/$1&amp;realm=rsc.org.uk&amp;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\" 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 (partial)\" default_off=\"failed ruleset test\" f=\"RStudio.com.xml\"><rule from=\"^http://(?:www\\.)?rstudio\\.com/\" to=\"https://www.rstudio.com/\"/></ruleset>", "<ruleset name=\"RT.com (partial)\" 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\" default_off=\"failed ruleset test\" f=\"RTP.vc.xml\"><securecookie host=\"^\\.rtp\\.vc$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?rtp\\.vc/\" to=\"https://www.rtp.vc/\"/></ruleset>", "<ruleset name=\"RT Tire\" 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\" default_off=\"failed ruleset test\" f=\"RYL_Warfare.xml\"><securecookie host=\"^(?:w*\\.)?rylwarfare\\.net$\" name=\".+\"/><rule from=\"^http://(www\\.)?rylwarfare\\.net/\" to=\"https://$1rylwarefare.net/\"/></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\" 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=\"Rabotilnica.com.mk\" default_off=\"mismatched, self-signed, some pages 404\" f=\"Rabotilnica.com.mk.xml\"><rule from=\"^http://(?:www\\.)?rabotilnica\\.com\\.mk/\" to=\"https://rabotilnica.com.mk/\"/></ruleset>", "<ruleset name=\"Race Forward.org\" 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\" f=\"Racked.com.xml\"><rule from=\"^http://racked\\.com/\" to=\"https://www.racked.com/\"/><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)\" f=\"Rackspace.co.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Rackspace.co.nz\" 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\" f=\"Rackspace.dk.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Rackspace.hk\" 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)\" 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://php\\.radford\\.edu/\" to=\"https://php.radford.edu/\"/></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://(?:www\\.)?radioplayer\\.co\\.uk/\" to=\"https://www.radioplayer.co.uk/\"/></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://account\\.radiusnetworks\\.com/\" to=\"https://account.radiusnetworks.com/\"/></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.ch\" 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=\"Railscloud.de\" default_off=\"expired\" f=\"Railscloud.de.xml\"><rule from=\"^http://www\\.railscloud\\.de/\" to=\"https://railscloud.de/\"/><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\" f=\"Rakuten.co.jp-mixed.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Rakuten.co.jp\" 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)\" f=\"Rally_Congress.xml\"><rule from=\"^http://secure\\.rallycongress\\.com/\" to=\"https://secure.rallycongress.com/\"/></ruleset>", "<ruleset name=\"Rally Dev.com\" 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.su\" f=\"Rambler.su.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Rambler.ru (partial)\" f=\"Rambler.xml\"><exclusion pattern=\"^http://kassa\\.rambler\\.ru/(?:cinemapartnership|concerts|partners|refund|sport|theatre|unsubscribe)?(?:$|\\?)\"/><securecookie host=\"^\\.rambler\\.ru$\" name=\"^(?:_gat?|lvr?|realty_session|ruid|top100rb|top100vr)$\"/><securecookie host=\"^(?:id|\\.?news|travel)\\.rambler\\.ru$\" name=\".\"/><rule from=\"^http://((?:assist|cnt|cntcerber|counter|id|images|kassa|m\\.kassa|widget\\.kassa|mail|mail-pda|news|api\\.news|pgc|realty|[\\w-]+-realty|scounter|soft|sync|topline|travel|update)\\.)?rambler\\.ru/\" to=\"https://$1rambler.ru/\"/></ruleset>", "<ruleset name=\"Randischumann\" 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=\"randombit.net\" default_off=\"expired\" platform=\"cacert\" f=\"Randombit.net.xml\"><rule from=\"^http://((?:botan|lists|www)\\.)?randombit\\.net/\" to=\"https://$1randombit.net/\"/></ruleset>", "<ruleset name=\"Rands in Repose\" default_off=\"mismatch\" f=\"Rands-in-Repose.xml\"><rule from=\"^http://(?:www\\.)?randsinrepose\\.com/\" to=\"https://randsinrepose.com/\"/></ruleset>", "<ruleset name=\"Range Networks.com\" 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\" f=\"Raphael-Hertzog.xml\"><securecookie host=\"^raphaelhertzog\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Rapid7 (partial)\" platform=\"mixedcontent\" 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=\"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\" 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=\"Rateip.com\" 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\" default_off=\"failed ruleset test\" 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\" 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=\"connection dropped\" 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=\"mismatch\" 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\" platform=\"cacert\" default_off=\"failed ruleset test\" f=\"Rbu.sh.xml\"><securecookie host=\"^goodpoint\\.de$\" name=\".*\"/><securecookie host=\"^(?:.*\\.)?rbu\\.sh$\" name=\".*\"/><rule from=\"^http://goodpoint\\.de/\" to=\"https://goodpoint.de/\"/><rule from=\"^http://(www\\.)?rbu\\.sh/\" to=\"https://$1rbu.sh/\"/></ruleset>", "<ruleset name=\"Rdio (partial)\" 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)\" 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=\"mismatch\" f=\"ReTargeter-mismatches.xml\"><rule from=\"^http://ub\\.retargeter\\.com/\" to=\"https://ub.retargeter.com/\"/></ruleset>", "<ruleset name=\"ReTargeter.com (partial)\" 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=\"mismatch\" f=\"Read-Comics-in-Public.xml\"><rule from=\"^http://(?:www\\.)?readcomicsinpublic\\.com/\" to=\"https://readcomicsinpublic.com/\"/></ruleset>", "<ruleset name=\"ReadCube.com (partial)\" f=\"ReadCube.com.xml\"><securecookie host=\"^(?:support)?\\.readcube\\.com$\" name=\".+\"/><rule from=\"^http://((?:green\\d-assets|support|www)\\.)?readcube\\.com/\" to=\"https://$1readcube.com/\"/></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)\" 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\" 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\" 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=\"connection 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\" default_off=\"failed ruleset test\" 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\" 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=\"Recurly\" f=\"Recurly.xml\"><securecookie host=\"^app\\.recurly\\.com$\" name=\".+\"/><securecookie host=\"^api\\.recurly\\.com$\" name=\".+\"/><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 (No HTTPS)\" default_off=\"Site does not support HTTPS currently\" f=\"RecycleNow.xml\"><rule from=\"^http://(?:www\\.)?recyclenow\\.com/\" to=\"https://www.recyclenow.com/\"/><securecookie host=\"^www\\.recyclenow\\.com$\" name=\".*\"/></ruleset>", "<ruleset name=\"RAasnet.com (partial)\" 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\" default_off=\"failed ruleset test\" 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)\" 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)\" f=\"Red_Flush_Casino.xml\"><rule from=\"^http://secure\\.redflush\\.com/\" to=\"https://secure.redflush.com/\"/></ruleset>", "<ruleset name=\"Red Hat.com (partial)\" 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.link\" f=\"Red_Letter.link.xml\"><securecookie host=\".\" name=\".\"/><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\" f=\"Red_Matrix.me.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Red Team.net (partial)\" default_off=\"connection 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)\" 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\" 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\" 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\" default_off=\"failed ruleset test\" 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)\" default_off=\"failed ruleset test\" 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\" default_off=\"failed ruleset test\" 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)\" default_off=\"failed ruleset test\" 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://((?:[ct]\\.|de\\.)?mark\\.|shopping\\.|www\\.)?reevoo\\.com/\" to=\"https://$1reevoo.com/\"/><rule from=\"^http://cdn\\.images\\.reevoo\\.com/\" to=\"https://d1jyr02lmd46xp.cloudfront.net/\"/><rule from=\"^http://mark\\.reevoo\\.(es|fr|it|nl)/\" to=\"https://mark.reevoo.$1/\"/></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=\"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=\"ReformaBTL\" default_off=\"self-signed\" f=\"ReformaBTL.xml\"><securecookie host=\"^www\\.informabtl\\.com$\" name=\".+\"/><rule from=\"^http://(?:cdn\\.|www\\.)?informabtl\\.com/\" to=\"https://www.informabtl.com/\"/></ruleset>", "<ruleset name=\"Reformal (partial)\" default_off=\"failed ruleset test\" 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=\"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=\"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://home\\.regit\\.org/\" to=\"https://home.regit.org/\"/></ruleset>", "<ruleset name=\"Regjeringen.no (partial)\" 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\" f=\"Regruhosting.ru.xml\"><securecookie host=\"^\\.security\\.pp\\.regruhosting\\.ru$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Regularish.com\" default_off=\"failed ruleset test\" f=\"Regularish.com.xml\"><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\" 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 (broken)\" default_off=\"wrong host in certificates\" f=\"Rejseplanen.dk.xml\"><rule from=\"^http://rejseplanen\\.dk/\" to=\"https://www.rejseplanen.dk/\"/><rule from=\"^http://(www|info|xajax-prod|euspirit|ptt)\\.rejseplanen\\.dk/\" to=\"https://$1.rejseplanen.dk/\"/></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\" default_off=\"failed ruleset test\" 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)\" default_off=\"failed ruleset test\" 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://community\\.remedygames\\.com/\" to=\"https://community.remedygames.com/\"/></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\" f=\"RemoteCoder.io.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"remoteStorage.io\" 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\" f=\"RenderFarming.net.xml\"><securecookie host=\"^burp\\.renderfarming\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Renewable Freedom.org\" f=\"Renewable_Freedom.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Reno Gazette-Journal (partial)\" default_off=\"failed ruleset test\" 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\" f=\"Renrencaopan.com.xml\"><securecookie host=\"^(?:www\\.)?renrencaopan\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Rensselaer Polytechnic Institute\" default_off=\"failed ruleset test\" 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\" 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\" platform=\"cacert\" default_off=\"missing certificate chain\" 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)\" 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=\"Repost.Us\" default_off=\"failed ruleset test\" f=\"Repost.Us.xml\"><securecookie host=\"^.*\\.repost\\.us$\" name=\".+\"/><rule from=\"^http://(secure\\.|www\\.)?repost\\.us/\" to=\"https://$1repost.us/\"/><rule from=\"^http://1\\.rp-api\\.com/\" to=\"https://1.rp-api.com/\"/><rule from=\"^http://(?:img|static)\\.1\\.rp-api\\.com/\" to=\"https://d2q1vna75dc892.cloudfront.net/\"/></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)\" default_off=\"failed ruleset test\" 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 &amp; 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=\"ResearchGate.net\" f=\"ResearchGate.net.xml\"><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)\" 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)\" default_off=\"failed ruleset test\" 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\" 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\" 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\" 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\"><exclusion pattern=\"^http://www\\.\"/><securecookie host=\"^.+\\.resultspage\\.com$\" name=\".+\"/><rule from=\"^http://([\\w-]+)\\.resultspage\\.com/\" to=\"https://$1.resultspage.com/\"/></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\" f=\"RetailMeNot.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Retail Sails\" 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\" f=\"Rettighedsalliancen.dk.xml\"><rule from=\"^http://(www\\.)?rettighedsalliancen\\.dk/\" to=\"https://www.rettighedsalliancen.dk/\"/></ruleset>", "<ruleset name=\"Siedler 25.org\" 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\" 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=\"^\\w\" name=\".\"/><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=\"reverseheartbleed.com\" default_off=\"expired\" f=\"Reverse_Heartbleed.com.xml\"><rule from=\"^http://reverseheartbleed\\.com/\" to=\"https://reverseheartbleed.com/\"/></ruleset>", "<ruleset name=\"Review Board.org (partial)\" f=\"Review_Board.org.xml\"><securecookie host=\"^reviews\\.reviewboard\\.org$\" name=\".+\"/><rule from=\"^http://reviews\\.reviewboard\\.org/\" to=\"https://reviews.reviewboard.org/\"/></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.xml\"><securecookie host=\"^www\\.revosec\\.ch$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?revosec\\.ch/\" to=\"https://www.revosec.ch/\"/></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\" default_off=\"failed ruleset test\" 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\" f=\"RhB.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Rhapsody.com\" default_off=\"mismatch\" 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)\" 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=\"mismatch\" 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)\" f=\"Ricardo.ch.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ricardoshops.ch\" f=\"Ricardoshops.ch.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Rice University (mismatches)\" default_off=\"mismatch\" 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)\" 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://www\\.richardandjudy\\.co\\.uk/\" to=\"https://www.richardandjudy.co.uk/\"/></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\" 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=\"mismatch\" f=\"RightNow-clients.xml\"><securecookie host=\"^en\\.support\\.guildwars2\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"RightNow.com (partial)\" 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=\"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=\"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\" 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=\"Riseup.net\" f=\"Riseup.xml\"><securecookie host=\"^(?:.*\\.)?riseup\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Risk.io (partial)\" f=\"Risk.io.xml\"><securecookie host=\".*\\.risk\\.io$\" name=\".+\"/><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\" 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=\"Rki.de\" f=\"Rki.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Rkn.gov.ru\" default_off=\"missing certificate chain\" f=\"Rkn.gov.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Rl0.ru (partial)\" f=\"Rl0.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"rms.sexy\" f=\"Rms.sexy.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"RoadRunner\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" 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\" f=\"Roberts_Space_Industries.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Robin Rabard (partial)\" default_off=\"failed ruleset test\" 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 (partial)\" f=\"RoboForm.com.xml\"><exclusion pattern=\"^http://(?:www\\.)?roboform\\.com/(?!dist/)\"/><securecookie host=\"^secure\\.roboform\\.com$\" name=\".+\"/><rule from=\"^http://(?:secure\\.|www\\.)?roboform\\.com/\" to=\"https://secure.roboform.com/\"/></ruleset>", "<ruleset name=\"RoboHash\" f=\"RoboHash.xml\"><rule from=\"^http://(\\w+\\.)?robohash\\.org/\" to=\"https://$1robohash.org/\"/></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\" 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=\"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 (partial)\" f=\"Rockstar-Games.xml\"><exclusion pattern=\"^http://socialclub\\.rockstargames\\.com/(?!profile/support-signin-en\\.html|registration/createaccount|signup)\"/><securecookie host=\"^cdn\\.sc\\.rockstargames\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?rockstargames\\.com/(?!img/)(.+\\.(?:css|gif|jpe?g|png))\" to=\"https://www.rockstargames.com/$1\"/><rule from=\"^http://(media|cdn\\.sc|socialclub|support|supportfiles)\\.rockstargames\\.com/\" to=\"https://$1.rockstargames.com/\"/></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=\"Roffey.org\" platform=\"cacert\" f=\"Roffey.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Roger Federer\" 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=\"RoketFiyat.com\" default_off=\"failed ruleset test\" f=\"RoketFiyat.com.xml\"><securecookie host=\"^[.w]*\\.rocketfiyat\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></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\" 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\" 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)\" default_off=\"failed ruleset test\" 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=\"Rondavu\" f=\"Rondavu.xml\"><securecookie host=\"^\\.rondavu\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></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\" 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=\"Rosetta Code.org (false MCB)\" platform=\"mixedcontent\" f=\"Rosetta_Code.org-falsemixed.xml\"><securecookie host=\"^\\.?rosettacode\\.org$\" name=\".+\"/><rule from=\"^http://rosettacode\\.org/\" to=\"https://rosettacode.org/\"/></ruleset>", "<ruleset name=\"Rosetta Code.org (partial)\" f=\"Rosetta_Code.org.xml\"><exclusion pattern=\"^http://rosettacode\\.org/+(?!favicon\\.ico|mw/(?:extensions/|load\\.php|skins/|title\\.png))\"/><securecookie host=\"^www\\.rosettacode\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Roskilde University (partial)\" 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=\"Rotesource.com\" default_off=\"failed ruleset test\" f=\"Rotesource.com.xml\"><securecookie host=\"^(?:w*\\.)?rotesource\\.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)\" 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 (partial)\" f=\"RottenTomatoes.xml\"><securecookie host=\"^\\.\" name=\"^(?:__qca$|_gat?$|_gat_|optimizely)\"/><securecookie host=\"^(?!\\.rottentomatoes\\.com$).\" name=\".\"/><rule from=\"^http://images\\.rottentomatoes\\.com/\" to=\"https://d24r6fwyxzsri1.cloudfront.net/\"/><rule from=\"^http://images\\.rottentomatoescdn\\.com/\" to=\"https://d13ep5guamtyyh.cloudfront.net/\"/><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 (partial)\" 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://cps-static\\.rovicorp\\.com/\" to=\"https://cps-static.rovicorp.com/\"/></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\" default_off=\"failed ruleset test\" 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 Institution of Great Britain (mismatches)\" default_off=\"broken\" f=\"Royal-Institution-of-Great-Britain-mismatches.xml\"><rule from=\"^http://(?:www\\.)?richannel\\.org/\" to=\"https://richannel.org/\"/></ruleset>", "<ruleset name=\"Royal Institution of Great Britain (partial)\" default_off=\"broken\" f=\"Royal-Institution-of-Great-Britain.xml\"><securecookie host=\"^www\\.rigb\\.org$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?rigb\\.org/\" to=\"https://www.rigb.org/\"/></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\" 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=\"rpmfusion.org (partial)\" platform=\"cacert\" f=\"Rpmfusion.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"rpw.sh\" f=\"Rpw.sh.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Rspamd.com\" f=\"Rspamd.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"rsshog\" default_off=\"failed ruleset test\" f=\"Rsshog.xml\"><securecookie host=\"^(?:\\.?www)?\\.rsshog\\.com$\" name=\".+\"/><rule from=\"^http://(img\\.|static\\d\\.|www\\.)?rsshog\\.com/\" to=\"https://$1rsshog.com/\"/></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\" 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-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-lang.org (partial)\" f=\"Ruby-lang.org.xml\"><securecookie host=\"^bugs\\.ruby-lang\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"RubyForge.org (partial)\" default_off=\"connection 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=\"rugk.dedyn.io\" f=\"Rugk.dedyn.io.xml\"><securecookie host=\"^rugk\\.dedyn\\.io$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"RugsHD.com\" default_off=\"failed ruleset test\" f=\"RugsHD.com.xml\"><securecookie host=\"^\\.?rugshd\\.com$\" name=\".+\"/><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)\" 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\" 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\" 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=\"RushBucks.com\" default_off=\"failed ruleset test\" f=\"RushBucks.com.xml\"><securecookie host=\"^(?:www\\.|\\.)?rushbucks\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"RushMyPassport.com\" default_off=\"failed ruleset test\" 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\" f=\"Ruxcon_Breakpoint.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"rxpharmacyusa.com\" 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\" 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)\" 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=\"mismatch\" 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)\" 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\" default_off=\"failed ruleset test\" 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\" 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=\"SAS.com\" f=\"SAS_Institute.xml\"><securecookie host=\"^(?:.*\\.)?sas\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SATA-IO.org\" f=\"SATA-IO.org.xml\"><rule from=\"^http://(?:www\\.)?sata-io\\.org/\" to=\"https://www.sata-io.org/\"/></ruleset>", "<ruleset name=\"SAT symposium.org\" f=\"SAT_symposium.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SAnet.me\" 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\" default_off=\"failed ruleset test\" f=\"SBForge.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"StateBankOfIndia\" 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\" 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=\"SCAP Sync.com\" 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\" default_off=\"failed ruleset test\" 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)\" 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://static\\.seagm\\.com/\" to=\"https://static.seagm.com/\"/></ruleset>", "<ruleset name=\"SEC-Consult.com (partial)\" f=\"SEC-Consult.com.xml\"><rule from=\"^http://www\\.sec-consult\\.com/\" to=\"https://www.sec-consult.com/\"/></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\" default_off=\"failed ruleset test\" 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\" f=\"SF-Mail.de.xml\"><securecookie host=\"^webmail\\.sf-mail\\.de$\" name=\".+\"/><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)\" default_off=\"failed ruleset test\" 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\" platform=\"cacert\" f=\"SIP-Solutions.xml\"><securecookie host=\"^www\\.sipsolutions\\.net$\" 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.xml\"><exclusion pattern=\"^http://sitesearch\\.sli-systems\\.com/(?!css/|rs/)\"/><securecookie host=\"^tools\\.sli-systems\\.com$\" name=\".+\"/><rule from=\"^http://sitesearch\\.sli-systems\\.com/\" to=\"https://na-sj01.marketo.com/\"/><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\" default_off=\"failed ruleset test\" f=\"SLU.se.xml\"><rule from=\"^http://slu\\.se/\" to=\"https://www.slu.se/\"/><rule from=\"^http://www\\.slu\\.se/\" to=\"https://www.slu.se/\"/><rule from=\"^http://internt\\.slu\\.se/\" to=\"https://internet.slu.se/\"/></ruleset>", "<ruleset name=\"SMACK TLS.com\" f=\"SMACK_TLS.com.xml\"><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\" 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=\"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\" 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=\"mismatch\" 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=\"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=\"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)\" default_off=\"failed ruleset test\" 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=\"mismatch\" 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\" 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=\"SSL Decoder.org\" f=\"SSL_Decoder.org.xml\"><securecookie host=\".\" 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://my\\.st\\.com/\" to=\"https://my.st.com/\"/></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\" 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\" 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=\"Python.org SVN\" platform=\"cacert\" default_off=\"broken\" f=\"SVN.Python.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SVT.se (partial)\" f=\"SVT.se.xml\"><securecookie host=\"^ld\\.svt\\.se$\" name=\".*\"/><rule from=\"^http://ld\\.svt\\.se/\" to=\"https://ld.svt.se/\"/></ruleset>", "<ruleset name=\"SWCA.org\" default_off=\"handshake fails\" f=\"SWCA.org.xml\"><securecookie host=\"^\\.swca\\.org$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?swca\\.org/\" to=\"https://www.swca.org/\"/></ruleset>", "<ruleset name=\"SWISSCEX.com\" default_off=\"connection refused\" f=\"SWISSCEX.com.xml\"><securecookie host=\"^www\\.swisscex\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Stadtwerke M&#252;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\" default_off=\"failed ruleset test\" 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)\" 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\" default_off=\"failed ruleset test\" 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)\" 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\" 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)\" 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)\" 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=\"safecharge247.com\" default_off=\"failed ruleset test\" f=\"Safecharge247.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\" default_off=\"failed ruleset test\" 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\" default_off=\"failed ruleset test\" 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\" 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\" f=\"Salenames.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Salesforce.com clients\" default_off=\"mismatch\" 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\" 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://donate\\.salvationarmyusa\\.org/\" to=\"https://donate.salvationarmyusa.org/\"/></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\" default_off=\"failed ruleset test\" f=\"Sam_Whited.com.xml\"><rule from=\"^http://(?:(blog\\.)|www\\.)?samwhited\\.com/\" to=\"https://$1samwhited.com/\"/></ruleset>", "<ruleset name=\"Sam's Software &amp; Consulting (partial)\" 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.com (partial)\" 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_CN\" f=\"Samsung_CN.xml\"><rule from=\"^http:\" to=\"https:\"/></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\" 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)\" 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\" 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=\"Sapo.pt\" default_off=\"no response\" f=\"Sapo.pt.xml\"><securecookie host=\"^(?:login|pub)\\.sapo\\.pt$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?sapo\\.pt/(css/|imgs/|pub/|widgets/)\" to=\"https://www.sapo.pt/$1\"/><rule from=\"^http://(login|pub|pubimgs)\\.sapo\\.pt/\" to=\"https://$1.sapo.pt/\"/><rule from=\"^http://h\\.s\\.sl\\.pt/css-pt-2011/\" to=\"https://www.sapo.pt/css/\"/><rule from=\"^http://h\\.s\\.sl\\.pt/imgs/(?:v12/)?\" to=\"https://www.sapo.pt/imgs/\"/></ruleset>", "<ruleset name=\"Sapphire Forum.com\" f=\"Sapphire_Forum.com.xml\"><securecookie host=\"^www\\.sapphireforum\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sarava.org (partial)\" 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\" default_off=\"failed ruleset test\" f=\"SatoshiDice.xml\"><rule from=\"^http://(?:www\\.)?satoshidice\\.com/\" to=\"https://d2r33zdvjxn4mg.cloudfront.net/\"/></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)\" 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)\" 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=\"mismatch\" f=\"Savannah-Fund.xml\"><securecookie host=\"^www\\.savannah\\.vc$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?savannah\\.vc/\" to=\"https://www.savannah.vc/\"/></ruleset>", "<ruleset name=\"Save-Notes.com\" default_off=\"breaks background\" f=\"Save-Notes.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SaveCrypto.org\" f=\"SaveCrypto.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SaveDeo.com\" f=\"SaveDeo.com.xml\"><securecookie host=\"^(?:\\.|www\\.)?savedeo\\.com$\" name=\".+\"/><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=\"mismatch\" f=\"Say-Media-mismatches.xml\"><rule from=\"^http://(?:www\\.)?blogs\\.com/\" to=\"https://blogs.com/\"/></ruleset>", "<ruleset name=\"Say Media\" default_off=\"failed ruleset test\" 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\" 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)\" 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\" f=\"Scaling_Bitcoin.org.xml\"><securecookie host=\"^(?:www)?\\.scalingbitcoin\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"scamFRAUDalert\" default_off=\"self-signed\" f=\"ScamFRAUDalert.xml\"><securecookie host=\"^www\\.scamfraudalert\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?scamfraudalert\\.com/\" to=\"https://www.scamfraudalert.com/\"/></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\" default_off=\"failed ruleset test\" 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\" 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)\" default_off=\"failed ruleset test\" 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 (partial)\" platform=\"cacert\" f=\"Schmidtcom.de.xml\"><securecookie host=\"^config\\.schmidtcom\\.de$\" 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=\"SchnellNo.de (partial)\" f=\"SchnellNo.de.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ScholarOne (partial)\" 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=\"connection 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://na\\.schottenland\\.de/\" to=\"https://na.schottenland.de/\"/></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\" 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.org\" f=\"Sci-hub.org.xml\"><rule from=\"^http://sci-hub\\.org/\" to=\"https://moscow.sci-hub.ac/\"/><rule from=\"^http://www\\.sci-hub\\.org/\" to=\"https://moscow.sci-hub.ac/\"/><rule from=\"^http://sci-hub\\.io/\" to=\"https://moscow.sci-hub.ac/\"/><rule from=\"^http://www\\.sci-hub\\.io/\" to=\"https://moscow.sci-hub.ac/\"/><rule from=\"^http://moscow\\.sci-hub\\.io/\" to=\"https://moscow.sci-hub.ac/\"/><rule from=\"^http://sci-hub\\.cc/\" to=\"https://moscow.sci-hub.ac/\"/><rule from=\"^http://www\\.sci-hub\\.cc/\" to=\"https://moscow.sci-hub.ac/\"/><rule from=\"^http://www\\.sci-hub\\.ac/\" to=\"https://sci-hub.ac/\"/><rule from=\"^http://sci-hub\\.bz/\" to=\"https://moscow.sci-hub.ac/\"/><rule from=\"^http://www\\.sci-hub\\.bz/\" to=\"https://moscow.sci-hub.ac/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SciPy.org\" f=\"SciPy.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SciVerse (partial)\" platform=\"mixedcontent\" f=\"SciVerse.xml\"><exclusion pattern=\"^http://(?:www\\.)?sciencedirect\\.com/(?:$|gadgetservices/)\"/><exclusion pattern=\"^http://www\\.(?:applications|hub)\\.sciverse\\.com/(?:$|action|gadgetservices)\"/><securecookie host=\"^.*\\.sciencedirect\\.com$\" name=\".*\"/><securecookie host=\"^\\.sciverse\\.com$\" name=\".*\"/><rule from=\"^http://sciencedirect\\.com/\" to=\"https://www.sciencedirect.com/\"/><rule from=\"^http://(binary-services|pdn|sdauth|www)\\.sciencedirect\\.com/\" to=\"https://$1.sciencedirect.com/\"/><rule from=\"^http://acw\\.sciverse\\.com/\" to=\"https://acw.sciverse.com/\"/><rule from=\"^http://(?:www\\.)?(applications|hub)\\.sciverse\\.com/\" to=\"https://www.$1.sciverse.com/\"/></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 (partial)\" default_off=\"missing certificate chain\" 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\" 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 (partial)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Scientific-American.xml\"><exclusion pattern=\"^http://www\\.scientificamerican\\.com/article/\"/><securecookie host=\"subscribe\\.scientificamerican.com$\" name=\".*\"/><rule from=\"^http://www\\.scientificamerican\\.com/(.+)\\.pagespeed\\..*$\" to=\"https://www.scientificamerican.com/$1\"/><rule from=\"^http://(www\\.)?sciamdigital\\.com/(ax/|(cover)?images/|index\\.cfm\\?fa=Account\\.ViewLogin)/\" to=\"https://$1sciamdigital.com/$2/\"/><rule from=\"^http://www\\.scientificamerican\\.com/assets/css/screen/I\\.([\\w\\-\\.]+)\\.css\\.pagespeed\\.cf\\.\\w+\\.css$\" to=\"https://www.scientificamerican.com/assets/css/screen/$1.css\"/><rule from=\"^http://(?:www\\.)?scientificamerican\\.com/\" to=\"https://www.scientificamerican.com/\"/><rule from=\"^http://subscribe\\.scientificamerican\\.com/\" to=\"https://subscribe.scientificamerican.com/\"/></ruleset>", "<ruleset name=\"Scientific.Net\" default_off=\"mismatch\" 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://newsagent\\.scoop\\.co\\.nz/\" to=\"https://newsagent.scoop.co.nz/\"/></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)\" 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\" 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\" 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://www\\.scottishpowerpipeband\\.com/\" to=\"https://www.scottishpowerpipeband.com/\"/></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\" 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\" 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=\"Screenshot.ru\" default_off=\"expired, untrusted root\" f=\"Screenshot.ru.xml\"><rule from=\"^http://www\\.screenshot\\.ru/\" to=\"https://screenshot.ru/\"/><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\" 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)\" 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\" default_off=\"self-signed\" f=\"Scribus.xml\"><exclusion pattern=\"^http://lists\\.\"/><securecookie host=\".*\\.scribus\\.net$\" name=\".*\"/><rule from=\"^http://scribus\\.net/\" to=\"https://www.scribus.net/\"/><rule from=\"^http://(\\w+)\\.scribus\\.net/\" to=\"https://$1.scribus.net/\"/></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\" 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\" 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=\"scriptjunkie.us (partial)\" f=\"Scriptjunkie.us.xml\"><rule from=\"^http:\" to=\"https:\"/></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\" 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=\"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)\" 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)\" 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=\"connection dropped\" 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\" f=\"Seanmckaybeck.com.xml\"><rule from=\"^http://(?:www\\.)?seanmckaybeck\\.com/\" to=\"https://seanmckaybeck.com/\"/></ruleset>", "<ruleset name=\"Search.ch\" 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=\"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\" 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)\" 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\" 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=\"Seconfig.sytes.net\" f=\"Seconfig.sytes.net.xml\"><securecookie host=\"^\\.seconfig\\.sytes\\.net$\" name=\".+\"/><rule from=\"^http://seconfig\\.sytes\\.net/\" to=\"https://seconfig.sytes.net/\"/></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\" 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://www\\.sis\\.gov\\.uk/\" to=\"https://www.sis.gov.uk/\"/></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)\" 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\" 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\" 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\" 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=\"SecureDrop.org\" f=\"SecureDrop.org.xml\"><securecookie host=\".\" name=\".\"/><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\" 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\" 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)\" 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)\" f=\"Secureserver.net.xml\"><securecookie host=\".+\\.secureserver\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"securetrust.com (partial)\" 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\" f=\"Securing_the_Human.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Securities.com (partial)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Securities.com.xml\"><rule from=\"^http://www\\.securities\\.com/\" to=\"https://www.securities.com/\"/></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\" 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\" 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)\" 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\" 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)\" 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)\" default_off=\"failed ruleset test\" 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\" 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\" f=\"Seedr.xml\"><securecookie host=\"^.*\\.seedr\\.cc$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Seedrs\" 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=\"seethisinaction.com\" default_off=\"failed ruleset test\" f=\"Seethisinaction.com.xml\"><rule from=\"^http:\" to=\"https:\"/></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\" 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\" default_off=\"failed ruleset test\" 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\" 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 (partial)\" default_off=\"expired, self-signed\" f=\"Selectricity.xml\"><securecookie host=\"^selectricity\\.org$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?selectricity\\.org/\" to=\"https://selectricity.org/\"/></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)\" 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.gov\" f=\"Senate.gov.xml\"><exclusion pattern=\"^http://(?:www.)?(?:intelligence|rules)\\.senate\\.gov/\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://((?:efd|efdsearch|outreach|sdc1|sopr|www)\\.)?senate\\.gov/\" to=\"https://$1senate.gov/\"/><rule from=\"^http://(?:www\\.)?(\\w+)\\.senate\\.gov/\" to=\"https://www.$1.senate.gov/\"/></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)\" 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)\" 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://secure\\.sendyourfiles\\.com/\" to=\"https://secure.sendyourfiles.com/\"/></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\" 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\" default_off=\"failed ruleset test\" 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\" 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\" 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)\" 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=\"Service.gov.uk\" f=\"Service.gov.uk.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ServiceNow.com\" f=\"ServiceNow.com.xml\"><securecookie host=\"^\\.servicenow\\.com$\" name=\"^wikidb_session$\"/><securecookie host=\"^(?:community|developer|express|(?:www\\.)?partners|share|store)\\.servicenow\\.com$\" name=\".+\"/><rule from=\"^http://knowledge\\.servicenow\\.com/\" to=\"https://community.servicenow.com/community/knowledge-user-conference/\"/><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\" f=\"Service_by_Air.xml\"><securecookie host=\"^community\\.sbaglobal\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Services-prefecture.com\" f=\"Services-prefecture.com.xml\"><securecookie host=\"^(?:www)?\\.services-prefecture\\.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://robert\\.sesek\\.com/\" to=\"https://robert.sesek.com/\"/></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\" 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\" default_off=\"failed ruleset test\" 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=\"Seurinternacional.com\" default_off=\"failed ruleset test\" f=\"Seurinternacional.com.xml\"><rule from=\"^http://(?:www\\.)?seurinternacional\\.com/\" to=\"https://www.seurinternacional.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=\"connection 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=\"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\" 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=\"Sexy Site Hosting.com\" default_off=\"failed ruleset test\" f=\"Sexy_Site_Hosting.com.xml\"><securecookie host=\"^\\.sexysitehosting\\.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=\"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\" 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=\"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\" 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\" 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=\"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)\" 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\" default_off=\"self-signed\" f=\"Sharethefiles.com.xml\"><securecookie host=\"^\\.sharethefiles\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sharethrough.com (partial)\" 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\" f=\"Sharpmen.xml\"><securecookie host=\"^\\.sharpmen\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Shaun.net\" f=\"Shaun.net.xml\"><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)\" f=\"Sheffield.gov.uk.xml\"><securecookie host=\"^\\.\" name=\"^_gat?$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"shellfish.io\" 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)\" default_off=\"failed ruleset test\" 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\" default_off=\"expired, mismatched, self-signed\" f=\"SheppyWare.xml\"><rule from=\"^http://(?:(bugzilla\\.)|www\\.)?sheppyware\\.net/\" to=\"https://$1sheppyware.net/\"/></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\" f=\"Shipment.xml\"><securecookie host=\"^\\.(?:www\\.)?ship-ment\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ShippingWatch (mixed content)\" platform=\"mixedcontent\" 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\" default_off=\"failed ruleset test\" 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)\" 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\" default_off=\"failed ruleset test\" 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=\"mismatch\" 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)\" default_off=\"failed ruleset test\" 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\" default_off=\"failed ruleset test\" 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)\" default_off=\"failed ruleset test\" f=\"Shop_Your_Way.com.xml\"><rule from=\"^http://(www\\.)?shopyourway\\.com/static/\" to=\"https://$1shopyourway.com/static/\"/></ruleset>", "<ruleset name=\"Shopatron (partial)\" 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)\" default_off=\"failed ruleset test\" 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)\" default_off=\"failed ruleset test\" 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\" 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=\"Shotgun Club\" f=\"Shotgun_Club.xml\"><securecookie host=\"^(?:w*\\.)?shotgunclub\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Shoutback Concepts (partial)\" default_off=\"failed ruleset test\" f=\"Shoutback-Concepts.xml\"><rule from=\"^http://static\\.shoutback\\.com/\" to=\"https://static.shoutback.com/\"/></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\" f=\"Showrss.info.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Shpock\" default_off=\"failed ruleset test\" 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&#246;dinger\" f=\"Shrodinger.xml\"><securecookie host=\"^www\\.schrodinger\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"shtuff.it\" f=\"Shtuff.it.xml\"><rule from=\"^http://(?:www\\.)?shtuff\\.it/\" to=\"https://shtuff.it/\"/></ruleset>", "<ruleset name=\"Shubh.am\" f=\"Shubh.am.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Shuddle.us\" 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=\"mismatch\" 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)\" default_off=\"failed ruleset test\" 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=\"connection 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&#1066;ouras\" default_off=\"refused\" f=\"Sidibouras.xml\"><securecookie host=\"^(?:www)?\\.sidibouras\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"sidux-ev.org\" default_off=\"self-signed\" f=\"Sidux-ev.org.xml\"><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=\"mismatch\" 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://blog\\.sigfig\\.com/\" to=\"https://blog.sigfig.com/\"/></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\" 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=\"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\" 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\" platform=\"cacert\" f=\"Sigxcpu.org.xml\"><rule from=\"^http://(?:www\\.)?sigxcpu\\.org/\" to=\"https://honk.sigxcpu.org/\"/><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\" 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=\"SilkRoad.com (partial)\" 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\" f=\"Silkspan.com.xml\"><rule from=\"^http://(?:www\\.)?silkspan\\.com/\" to=\"https://www.silkspan.com/\"/></ruleset>", "<ruleset name=\"Silktide.com (partial)\" 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\" 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)\" 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\" 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=\"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)\" 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)\" default_off=\"failed ruleset test\" 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://(app|i)\\.simpli\\.fi/\" to=\"https://$1.simpli.fi/\"/></ruleset>", "<ruleset name=\"Simply Hired clients\" default_off=\"mismatch\" 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\" 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\" 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=\"^(?:delivery|www)\\.simplytechnology\\.net$\" name=\".+\"/><rule from=\"^http://(delivery|www)\\.simplytechnology\\.net/\" to=\"https://$.simplytechnology.net/\"/></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 (problematic)\" default_off=\"mismatch\" f=\"Sina-problematic.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sina.cn (partial)\" f=\"Sina.cn.xml\"><securecookie host=\"^samsungapps\\.sina\\.cn$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sina.com.cn (mixed content)\" platform=\"mixedcontent\" f=\"Sina.com.cn-mixedcontent.xml\"><securecookie host=\"^(?:api\\.t|weather)\\.sina\\.com\\.cn$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sina.com.cn (partial)\" f=\"Sina.com.cn.xml\"><exclusion pattern=\"^http://app\\.sina\\.com\\.cn/(?!favorite\\.ico|script/)\"/><exclusion pattern=\"^http://login\\.sina\\.com\\.cn/crossdomain2\\.php\\?action=(login|logout)\"/><exclusion pattern=\"^http://login\\.sina\\.com\\.cn/member/my\\.php\"/><exclusion pattern=\"^http://login\\.sina\\.com\\.cn/sso/login\\.php\"/><securecookie host=\"^(?:2008mail|help|mail|qipai|vip)\\.sina\\.com\\.cn$\" name=\".+\"/><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=\"SinaCloud\" f=\"SinaCloud.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sina App.com (partial)\" f=\"Sina_App.xml\"><exclusion pattern=\"^http://weihr\\.sinaapp\\.com/jobs/\"/><securecookie host=\"^(?:.+\\.)?sinaapp\\.com$\" name=\".+\"/><rule from=\"^http://([\\w-]+\\.)?sinaapp\\.com/\" to=\"https://$1sinaapp.com/\"/></ruleset>", "<ruleset name=\"Weibo.cn (partial)\" f=\"Sina_Weibo.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sinaimg.cn (partial)\" f=\"Sinaimg.cn.xml\"><rule from=\"^http://(i\\d|n|www)\\.sinaimg\\.cn/\" to=\"https://$1s.sinaimg.cn/\"/><rule from=\"^http://n\\d\\.sinaimg\\.cn/\" to=\"https://ns.sinaimg.cn/\"/><rule from=\"^http://tp\\d\\.sinaimg\\.cn/\" to=\"https://tpssl.weibo.cn/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sinastorage\" f=\"Sinastorage.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=\"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)\" 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)\" 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\" default_off=\"failed ruleset test\" f=\"SiteAdvisor.com.xml\"><rule from=\"^http://(?:www\\.)?siteadvisor\\.com/\" to=\"https://www.siteadvisor.com/\"/></ruleset>", "<ruleset name=\"SiteCompass.com (partial)\" f=\"SiteCompass.com.xml\"><rule from=\"^http://mm\\.sitecompass\\.com/\" to=\"https://mm.sitecompass.com/\"/></ruleset>", "<ruleset name=\"SiteGround.com\" 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)\" f=\"SiteScout.xml\"><securecookie host=\"^\\.sitescout\\.com$\" name=\"^(?:km_\\w+|_ssum|ssi|__utm\\w)$\"/><securecookie host=\"^rtb\\.sitescout\\.com$\" 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\" default_off=\"failed ruleset test\" 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\" default_off=\"failed ruleset test\" f=\"Sitizens.xml\"><securecookie host=\"^\\.sitizens\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?sitizens\\.com/\" to=\"https://sitizens.com/\"/></ruleset>", "<ruleset name=\"Sitola\" 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)\" 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=\"Skandiabanken\" f=\"Skandiabanken.xml\"><rule from=\"^http://(?:www\\.)?skandiabanken\\.no/\" to=\"https://www.skandiabanken.no/\"/><rule from=\"^http://secure\\.skandiabanken\\.no/\" to=\"https://secure.skandiabanken.no/\"/><rule from=\"^http://trader\\.skandiabanken\\.no/\" to=\"https://trader.skandiabanken.no/\"/></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://shop\\.skeptic\\.com/\" to=\"https://shop.skeptic.com/\"/></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)\" 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\" f=\"Sky-ip.org.xml\"><rule from=\"^http://(?:www\\.)?sky-ip\\.org/\" to=\"https://www.sky-ip.org/\"/></ruleset>", "<ruleset name=\"Sky.com (partial)\" 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\" f=\"Sky.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SkySQL.com\" 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\" 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 &amp; Telescope (problematic)\" default_off=\"connection refused\" f=\"Sky_and_Telescope-problematic.xml\"><rule from=\"^http://media\\.skyandtelescope\\.com/\" to=\"https://media.skyandtelescope.com/\"/></ruleset>", "<ruleset name=\"Sky &amp; 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\" default_off=\"failed ruleset test\" 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\" 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)\" 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\" 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=\"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\" 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)\" f=\"Slashdot.xml\"><securecookie host=\"^\\.\" name=\"^_(?:ga|_qca$)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Slashdot Media.com\" f=\"Slashdot_Media.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\" 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\" default_off=\"failed ruleset test\" 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\" f=\"SlickEdit.com.xml\"><securecookie host=\"^(?:www)?\\.slickedit\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Slick Products\" default_off=\"failed ruleset test\" 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=\"connection 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=\"Slo-Tech.com\" f=\"Slo-Tech.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sloan Digital Sky Survey (partial)\" 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\" 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\" 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=\"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://static\\.smallworldlabs\\.com/\" to=\"https://static.smallworldlabs.com/\"/></ruleset>", "<ruleset name=\"Smallbits.com (partial)\" 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)\" 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-Invests.biz\" default_off=\"failed ruleset test\" f=\"Smart-Invests.biz.xml\"><securecookie host=\"^(?:www)?\\.smart-invests\\.biz$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Smart-Mail\" default_off=\"failed ruleset test\" 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\" f=\"SmartBrief.xml\"><securecookie host=\"^(?:.*\\.)?smartbrief\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SmartFTP\" f=\"SmartFTP.xml\"><rule from=\"^http://(?:www\\.)?smartftp\\.com/\" to=\"https://www.smartftp.com/\"/></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=\"SmartPlanet.com (mismatched)\" default_off=\"mismatched\" f=\"SmartPlanet.com-problematic.xml\"><securecookie host=\"^(?:www)?\\.smartplanet\\.com$\" name=\".+\"/><rule from=\"^http://www\\.smartplanet\\.com/\" to=\"https://www.smartplanet.com/\"/></ruleset>", "<ruleset name=\"SmartPlanet.com (partial)\" default_off=\"failed ruleset test\" f=\"SmartPlanet.com.xml\"><securecookie host=\"^secure\\.smartplanet\\.com$\" name=\".+\"/><rule from=\"^http://(secure\\.)?smartplanet\\.com/\" to=\"https://$1smartplanet.com/\"/><rule from=\"^http://www\\.smartplanet\\.com/(?=[\\d.]+/bundles/smartplanetcore/css/)\" to=\"https://smartplanet.com/\"/></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\" default_off=\"failed ruleset test\" f=\"Smartronix.xml\"><rule from=\"^http://(?:www\\.)?smartronix\\.com/\" to=\"https://www.smartronix.com/\"/></ruleset>", "<ruleset name=\"Smartstream.tv\" 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)\" 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=\"Smdg.ca\" f=\"Smdg.ca.xml\"><rule from=\"^http://static\\.smdg\\.ca/\" to=\"https://d3pf6blj843au7.cloudfront.net/\"/></ruleset>", "<ruleset name=\"SMI2.net\" 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\" 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://my\\.smoothwall\\.org/\" to=\"https://my.smoothwall.org/\"/></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://smutty\\.com/\" to=\"https://smutty.com/\"/></ruleset>", "<ruleset name=\"Smuxi.im (partial)\" 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://stapi\\.snacktools\\.net/\" to=\"https://stapi.snacktools.net/\"/></ruleset>", "<ruleset name=\"SnackTV\" f=\"Snacktv.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"snafu (partial)\" 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)\" 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)\" 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\" 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\" 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\" 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)\" 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)\" 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\" f=\"Soapbox-CMS.xml\"><securecookie host=\"^(?:.*\\.)?soapboxcms\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sobollubov.ru\" 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)\" f=\"SocialRank.com.xml\"><securecookie host=\"^(?:\\.|www\\.)?socialrank\\.com$\" name=\"\"/><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\" f=\"SocialShows.xml\"><securecookie host=\"^\\.?socialshows\\.net$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?socialshows\\.(?:com|net)/\" to=\"https://socialshows.net/\"/></ruleset>", "<ruleset name=\"SocialTwist\" f=\"SocialTwist.xml\"><rule from=\"^http://([\\w\\-]+\\.)?socialtwist\\.com/\" to=\"https://$1socialtwist.com/\"/></ruleset>", "<ruleset name=\"Social Code dev.com\" 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)\" 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\" f=\"Social_Screamer.xml\"><securecookie host=\"^\\.socialscreamer\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Social Theater\" default_off=\"failed ruleset test\" f=\"Social_Theater.xml\"><securecookie host=\"^(?:www\\.)?socialtheater\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"socialbakers.com\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Socialbakers.xml\"><securecookie host=\"^(?:.*\\.)?socialbakers\\.com$\" name=\".*\"/><rule from=\"^http://(\\w+\\.)?socialbakers\\.com/\" to=\"https://$1socialbakers.com/\"/></ruleset>", "<ruleset name=\"Socialblade.com (mixed content)\" platform=\"mixedcontent\" f=\"Socialblade.com-falsemixed.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Socialblade.com\" f=\"Socialblade.com.xml\"><exclusion pattern=\"^http://socialblade\\.com/chat/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Socialcube.net (partial)\" 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)\" default_off=\"failed ruleset test\" f=\"Socialtext.net.xml\"><securecookie host=\"^saml\\.socialtext\\.net$\" name=\".+\"/><rule from=\"^http://saml\\.socialtext\\.net/\" to=\"https://saml.socialtext.net/\"/></ruleset>", "<ruleset name=\"socialtyzetracking.com\" 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 &amp; 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\" 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\" f=\"Socrata.com.xml\"><securecookie host=\"^\\.\" name=\"^_gat?$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SodaHead.com\" platform=\"mixedcontent\" 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\" 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\" 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\" 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)\" default_off=\"self-signed\" f=\"Sogeti.com.xml\"><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 (partial)\" f=\"Sohu.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://login\\.mail\\.sohu\\.com/\" to=\"https://mail.sohu.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sohu.net (partial)\" f=\"Sohu.net.xml\"><securecookie host=\"^\\.?pan\\.sohu\\.net$\" name=\".+\"/><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=\"mismatch\" 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\" default_off=\"expired, self-signed\" f=\"Solar-Power-Rocks.xml\"><rule from=\"^http?://(?:www\\.)?solarpowerrocks\\.com/\" to=\"https://solarpowerrocks.com/\"/></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\" default_off=\"failed ruleset test\" 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\" 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\" 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\" 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\" f=\"Solus-Project.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Solutions Healthcare Management\" f=\"Solutions_Healthcare_Management.xml\"><securecookie host=\"^\\.solutionshealthcare\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Solve Media.com (partial)\" f=\"Solvemedia.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Somerset.gov.uk (partial)\" 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\" 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\" 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)\" default_off=\"failed ruleset test\" 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.eu (partial)\" f=\"Sony.eu.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sony.se\" 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://s01\\.esupport\\.sony\\.com/\" to=\"https://esupport.sony.com/\"/><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=\"SonyMusic (problematic)\" default_off=\"akamai certificate\" f=\"SonyMusic-problematic.xml\"><securecookie host=\"^(?:.+\\.)?sonymusic\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?sonymusic\\.com/\" to=\"https://www.sonymusic.com/\"/></ruleset>", "<ruleset name=\"SonyMusic (partial)\" f=\"SonyMusic.xml\"><rule from=\"^http://cf\\.sonymusic\\.com/\" to=\"https://d27g862ehx8viu.cloudfront.net/\"/></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)\" 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)\" 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://ssl\\.soufun\\.com\\.tw/\" to=\"https://ssl.soufun.com.tw/\"/></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)\" 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)\" f=\"Soundcloud.xml\"><securecookie host=\"^\\.\" name=\"^_(?:_qca$|_utm|gat?$|gat_)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"soundgasm.net\" f=\"Soundgasm.net.xml\"><securecookie host=\"^(?:www\\.)?soundgasm.net$\" name=\".+\"/><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)\" 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=\"SourceDNA.com\" f=\"SourceDNA.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://www\\.sourcedna\\.com/\" to=\"https://sourcedna.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SourceFed (partial)\" f=\"SourceFed.xml\"><rule from=\"^http://cdn\\.sourcefednews\\.com/\" to=\"https://d1l31vajhvnn7o.cloudfront.net/\"/></ruleset>", "<ruleset name=\"SourceForge (mismatches)\" default_off=\"mismatch\" f=\"SourceForge-mismatches.xml\"><rule from=\"^http://([\\w\\-]+)\\.git\\.s(?:f|ourceforge)\\.net/\" to=\"https://$1.git.sf.net/\"/></ruleset>", "<ruleset name=\"SourceForge (partial)\" f=\"SourceForge.xml\"><exclusion pattern=\"^http://([\\w-]+)\\.svn\\.s(?:f|ourceforge)\\.net/(?!svnroot/)\"/><securecookie host=\"^\\.\" name=\"^__qca$\"/><securecookie host=\"^p\\.sf\\.net$\" name=\".\"/><securecookie host=\"^downloads\\.sourceforge\\.net$\" name=\".\"/><securecookie host=\"^(?:downloads\\.)?sourceforge\\.net$\" name=\".\"/><rule from=\"^http://([\\w-]+)\\.svn\\.sf\\.net/\" to=\"https://$1.svn.sourceforge.net/\"/><rule from=\"^http://downloads\\.s(?:f|ourceforge)\\.net/project/([^?]+)\\?r=http%3A%2F%2Fs\" to=\"https://downloads.sourceforge.net/project/$1?r=https%3A%2F%2Fs\"/><rule from=\"^http://(apps|downloads|goparallel|ibmsmarteritservices|images|lists|prdownloads|sflogo|static)\\.sf\\.net/\" to=\"https://$1.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=\"connection 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\" 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://cart\\.sxsw\\.com/\" to=\"https://cart.sxsw.com/\"/></ruleset>", "<ruleset name=\"South China Morning Post (partial)\" f=\"South_China_Morning_Post.xml\"><rule from=\"^http://(?:www\\.)?scmp\\.com/(esi/messages\\.php|misc/|modules/|sites/)\" to=\"https://www.scmp.com/$1\"/></ruleset>", "<ruleset name=\"South Devon.ac.uk (partial)\" f=\"South_Devon.ac.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"South Glos.gov.uk (partial)\" 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)\" f=\"Southampton.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Southbank Centre.co.uk (partial)\" 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)\" f=\"Southend.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SouthernElectric\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" 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)\" 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\" 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=\"mismatch\" f=\"SpacePolicyOnline.com.xml\"><securecookie host=\"^.*\\.spacepolicyonline\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?spacepolicyonline\\.com/\" to=\"https://www.spacepolicyonline.com/\"/></ruleset>", "<ruleset name=\"SpaceUp.org\" default_off=\"mismatch\" 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\" 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://archive\\.stsci\\.edu/\" to=\"https://archive.stsci.edu/\"/></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.xml\"><rule from=\"^http://spamgourmet\\.com/\" to=\"https://spamgourmet.com/\"/><rule from=\"^http://www\\.spamgourmet\\.com/\" to=\"https://www.spamgourmet.com/\"/></ruleset>", "<ruleset name=\"spamicity.info\" default_off=\"failed ruleset test\" f=\"Spamicity.info.xml\"><securecookie host=\"^spamicity\\.info$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?spamicity\\.info/\" to=\"https://spamicity.info/\"/></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://www\\.sparked\\.com/\" to=\"https://www.sparked.com/\"/></ruleset>", "<ruleset name=\"Sparkfun.com\" f=\"Sparkfun.xml\"><securecookie host=\"^(?:forum)?\\.sparkfun\\.com$\" 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\" 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\" default_off=\"failed ruleset test\" 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\" 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\" 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\" default_off=\"failed ruleset test\" f=\"Spicebox.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Spiceworks.com\" 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=\"Spider.io (partial)\" f=\"Spider.io.xml\"><exclusion pattern=\"^http://(?:www\\.)?splider\\.io/(?!wp-content/)\"/><rule from=\"^http://(?:www\\.)?spider\\.io/\" to=\"https://d1ukwbduzme6ra.cloudfront.net/\"/></ruleset>", "<ruleset name=\"SpiderOak.com\" f=\"SpiderOak.xml\"><securecookie host=\"^(?:www\\.)?spideroak\\.com$\" 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)\" f=\"Spiegel-QC.xml\"><securecookie host=\"^\\.quality-channel\\.de$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Spiegel.de (partial)\" 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&amp;node=2478999031\"/><rule from=\"^http://shop\\.spiegel\\.de/[^?]*\\?\" to=\"https://www.amazon.de/b?ie=UTF8&amp;node=2478999031&amp;\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Spielfuerdeinland.de\" 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)\" 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\" 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://cdn\\.sploder\\.com/\" to=\"https://cdn.sploder.com/\"/></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\" 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\" 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)\" 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\" 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 (partial)\" default_off=\"expired, self-signed\" f=\"SpringFiles.xml\"><securecookie host=\"^\\.springfiles\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?springfiles\\.nl/\" to=\"https://springfiles.com/\"/><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)\" 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\" 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)\" default_off=\"failed ruleset test\" 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://secure\\.sprintbuyback\\.com/\" to=\"https://secure.sprintbuyback.com/\"/></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\" f=\"SpritesMods.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Spriza.com\" default_off=\"failed ruleset test\" 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\" default_off=\"failed ruleset test\" f=\"Spsn.net.xml\"><securecookie host=\"^(?:www\\.)?spsn\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sptag.com\" default_off=\"failed ruleset test\" f=\"Sptag.com.xml\"><securecookie host=\"^(?:www\\.)?sptag\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"sptag1.com\" default_off=\"failed ruleset test\" f=\"Sptag1.com.xml\"><securecookie host=\"^(?:www\\.)?sptag1\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Spu.ac.th (broken)\" default_off=\"HTTPS URL not found\" f=\"Spu.ac.th.xml\"><rule from=\"^http://(?:www\\.)?spu\\.ac\\.th/\" to=\"https://www.spu.ac.th/\"/></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=\"mismatch\" 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/common-\\w{20}-min.js$\"/><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://aws\\.tracker\\.squidanalytics\\.com/\" to=\"https://aws.tracker.squidanalytics.com/\"/></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\" f=\"SquirrelMail.xml\"><securecookie host=\"^squirrelmail\\.org$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?squirrelmail\\.org/\" to=\"https://squirrelmail.org/\"/></ruleset>", "<ruleset name=\"srcclr.com\" 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=\"sslcert14.com\" f=\"Sslcert14.com.xml\"><securecookie host=\"^(?:.+\\.)?sslcert14\\.com$\" name=\".+\"/><rule from=\"^http://([\\w-]+\\.)?sslcert14\\.com/\" to=\"https://$1sslcert14.com/\"/></ruleset>", "<ruleset name=\"sslcert19.com\" default_off=\"failed ruleset test\" f=\"Sslcert19.com.xml\"><securecookie host=\"^(?:[\\w-]*\\.)?sslcert19\\.com$\" name=\".+\"/><rule from=\"^http://([\\w-]+\\.)?sslcert19\\.com/\" to=\"https://$1sslcert18.com/\"/></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)\" 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\" 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\" 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=\"StableLib.com\" f=\"StableLib.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Stack Exchange (partial)\" f=\"Stack-Exchange.xml\"><exclusion pattern=\"^http://([\\w.-]+)\\.([\\w-]+)\\.stackexchange\\.com\"/><exclusion pattern=\"^http://elections\\.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=\"^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=\"^stackapps\\.com$\" name=\".+\"/><securecookie host=\"^teststackoverflow\\.com$\" name=\".+\"/><rule from=\"^https://([\\w.-]+)\\.([\\w-]+)\\.stackexchange\\.com/\" to=\"http://$1.$2.stackexchange.com/\" downgrade=\"1\"/><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)\" 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\" 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://www\\.stadtwerke\\-bamberg\\.de/\" to=\"https://www.stadtwerke-bamberg.de/\"/></ruleset>", "<ruleset name=\"Stadtwerke Ingolstadt\" platform=\"mixedcontent\" 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)\" 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)\" platform=\"cacert\" 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\" default_off=\"Certificate mismatch\" f=\"StanDeyo.xml\"><rule from=\"^http://(?:www\\.)?standeyo\\.com/\" to=\"https://standeyo.com/\"/></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\" 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)\" 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&amp;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\" 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\" 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\" default_off=\"failed ruleset test\" 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=\"Star-Pool (partial)\" default_off=\"connection refused\" f=\"Star-Pool.xml\"><rule from=\"^http://(www\\.)?star-pool\\.com/(App_Themes|[aA]ssets|images|js|[lL]ogin\\.aspx|Members|(?:Script|Web)Resource\\.axd)($|\\?|/)\" to=\"https://$1star-pool.com/$2$3\"/></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=\"mismatch\" f=\"StarWars.com.xml\"><rule from=\"^http://(www\\.)?starwars\\.com/(?!$|\\?)\" to=\"https://$1starwars.com/\"/></ruleset>", "<ruleset name=\"Star Product Reviews (partial)\" default_off=\"failed ruleset test\" f=\"Star_Product_Reviews.xml\"><securecookie host=\"^admin\\.starproductreviews\\.com$\" name=\".+\"/><rule from=\"^http://admin\\.starproductreviews\\.com/\" to=\"https://admin.starproductreviews.com/\"/></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)\" 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.\" 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)\" default_off=\"Breaks icons\" f=\"Start.me.xml\"><rule from=\"^http://assets\\.start\\.me/\" to=\"https://d20613pg2u36q3.cloudfront.net/\"/><rule from=\"^http://assets\\.blog\\.start\\.me/\" to=\"https://d1e3joqws01uq.cloudfront.net/\"/></ruleset>", "<ruleset name=\"StartBox.com\" f=\"StartBox.xml\"><rule from=\"^http://(?:docs\\.|www\\.)?wpstartbox\\.com/\" to=\"https://webdevstudios.com/\"/></ruleset>", "<ruleset name=\"StartCom\" 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\" f=\"StartMail.xml\"><securecookie host=\"^www\\.startmail\\.com$\" name=\".+\"/><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=\"StartupSort.com\" f=\"StartupSort.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Starwood Hotels &amp; 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)\" 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(?:-beta)?\\.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)\" 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)\" default_off=\"failed ruleset test\" 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=\"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://img\\.staticmy\\.com/\" to=\"https://img.staticmy.com/\"/></ruleset>", "<ruleset name=\"staticskynet.be\" 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\" default_off=\"failed ruleset test\" f=\"StatistikamtBayern.xml\"><rule from=\"^http://(?:www\\.)?statistik\\.bayern\\.de/\" to=\"https://www.statistik.bayern.de/\"/></ruleset>", "<ruleset name=\"StatusCake.com (partial)\" f=\"StatusCake.com.xml\"><securecookie host=\"^www\\.statuscake\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"StatusNet (broken)\" default_off=\"No valid certificates\" f=\"StatusNet.xml\"><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\" 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\" default_off=\"failed ruleset test\" 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=\"mismatch\" 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\" 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://license\\.steeleye\\.com/\" to=\"https://license.steeleye.com/\"/></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)\" 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\" default_off=\"failed ruleset test\" f=\"Stgbssint.com.xml\"><rule from=\"^http://storage\\.stgbssint\\.com/\" to=\"https://storage.stgbssint.com/\"/></ruleset>", "<ruleset name=\"Stickhet\" 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)\" default_off=\"failed ruleset test\" 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&amp;pageID=5&amp;layout=hp\"/><rule from=\"^http://admissions\\.stockton\\.edu/.*\" to=\"https://intraweb.stockton.edu/eyos/page.cfm?siteID=64&amp;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)\" 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)\" 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\" 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 Global Warming.org\" default_off=\"expired, self-signed\" f=\"Stop_Global_Warming.org.xml\"><rule from=\"^http://(?:www\\.)?stopglobalwarming\\.org/\" to=\"https://www.stopglobalwarming.org/\"/></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)\" default_off=\"failed ruleset test\" 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=\"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\" f=\"Storify.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Storm Internet.co.uk\" 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)\" f=\"Stpeter.im.xml\"><rule from=\"^http://www\\.stpeter\\.im/\" to=\"https://stpeter.im/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"StrangeWorlds\" f=\"StrangeWorlds.xml\"><rule from=\"^http://strangeworlds\\.co\\.uk/\" to=\"https://strangeworlds.co.uk/\"/></ruleset>", "<ruleset name=\"Straply\" 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\" 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\" 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\" 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\" default_off=\"failed ruleset test\" f=\"Street_Moda.xml\"><securecookie host=\"^.*\\.streetmoda\\.com$\" name=\".+\"/><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\"><securecookie host=\"^www\\.strikingly\\.com$\" name=\".+\"/><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\" 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=\"mismatch\" 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\" f=\"Stubhub.xml\"><securecookie host=\"^(?:.*\\.)?stubhub\\.(de|co\\.uk|com)$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"StudentLoans.gov\" f=\"StudentLoans.gov.xml\"><securecookie host=\"^(?:.*\\.)?studentloans\\.gov$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?studentloans\\.gov/\" to=\"https://studentloans.gov/\"/></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://secure\\.studiesabroad\\.com/\" to=\"https://secure.studiesabroad.com/\"/></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=\"Stunnish.com (false MCB)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Stunnish.com.xml\"><securecookie host=\"^\\.stunnish\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?stunnish\\.com/\" to=\"https://www.stunnish.com/\"/></ruleset>", "<ruleset name=\"Stupid.com\" f=\"Stupid.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Stupidcensorship.com\" default_off=\"mismatched\" f=\"Stupidcensorship.com.xml\"><rule from=\"^http://(?:www\\.)?stupidcensorship\\.com/\" to=\"https://stupidcensorship.com/\"/></ruleset>", "<ruleset name=\"Stuvel.eu\" platform=\"cacert\" f=\"Stuvel-Photography.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Style.com\" default_off=\"mismatched\" f=\"Style.com.xml\"><rule from=\"^http://style\\.com/\" to=\"https://www.style.com/\"/><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 (partial)\" 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\" f=\"Submission-Technology.xml\"><securecookie host=\"^(?:.*\\.)?submissiontechnology\\.co\\.uk$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Subrosa.io\" f=\"Subrosa.io.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SubscriptionGenius.com (partial)\" f=\"SubscriptionGenius.com.xml\"><securecookie host=\"^checkout\\.subscriptiongenius\\.com$\" name=\".+\"/><rule from=\"^http://checkout\\.subscriptiongenius\\.com/\" to=\"https://checkout.subscriptiongenius.com/\"/></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\" 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)\" 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&#252;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&#252;ddeutsche Zeitung (partial)\" 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&#252;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\" 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=\"Suitable Tech.com (partial)\" f=\"Suitable_Tech.com.xml\"><securecookie host=\"^(?:www\\.)?suitabletech\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Suite.io\" f=\"Suite.io.xml\"><rule from=\"^http://www\\.suite\\.io/\" to=\"https://suite.io/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Suitey.com\" 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\" default_off=\"failed ruleset test\" f=\"Sunglass_Warehouse.xml\"><securecookie host=\"^\\.?www\\.sunglasswarehouse\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"sunlightfoundation.com (partial)\" 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=\"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\" f=\"Sunrise_Print_Online.xml\"><securecookie host=\"^www\\.sunriseprintonline\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sunroof Wind Deflectors.com\" default_off=\"failed ruleset test\" f=\"Sunroof_Wind_Deflectors.com.xml\"><securecookie host=\"^(?:www)?\\.sunroofwinddeflectors\\.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\" 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)\" 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=\"connection dropped\" 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\" 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=\"mismatch\" 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\" f=\"Surveillance_Law.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Survey Analytics (partial)\" f=\"Survey-Analytics.xml\"><rule from=\"^http://popup\\.questionpro\\.com/\" to=\"https://popup.questionpro.com/\"/></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)\" 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://kundservice\\.svd\\.se/\" to=\"https://kundservice.svd.se/\"/></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\" f=\"Svetlodarsk.com.xml\"><securecookie host=\"^(?:www\\.)?svetlodarsk\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"svtrd.com\" f=\"Svtrd.com.xml\"><rule from=\"^http://s\\.svtrd\\.com/\" to=\"https://s.svtrd.com/\"/></ruleset>", "<ruleset name=\"Swan.sk\" 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=\"SwapOff.org\" default_off=\"expired\" f=\"SwapOff.org.xml\"><rule from=\"^http:\" to=\"https:\"/></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)\" f=\"Swedbank.lv.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sweden.se\" f=\"Sweden.se.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sweet &amp; 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.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=\"SwingFree.co.uk (partial)\" default_off=\"handshake fails\" f=\"SwingFree.co.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></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\" 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://ige\\.ch/\" to=\"https://www.ige.ch/\"/><rule from=\"^http://([^/:@]+)?\\.ige\\.ch/\" to=\"https://$1.ige.ch/\"/><rule from=\"^http://ip-search\\.ch/\" to=\"https://www.ip-search.ch/\"/><rule from=\"^http://([^/:@]+)?\\.ip-search\\.ch/\" to=\"https://$1.ip-search.ch/\"/><rule from=\"^http://swissreg\\.ch/\" to=\"https://www.swissreg.ch/\"/><rule from=\"^http://([^/:@]+)?\\.swissreg\\.ch/\" to=\"https://$1.swissreg.ch/\"/></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\" 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\" f=\"Switch.co.xml\"><rule from=\"^http://(?:www\\.)?switch\\.co/\" to=\"https://www.switch.co/\"/></ruleset>", "<ruleset name=\"Switch Concepts\" 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\" 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\" 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\" 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=\"Syllabusshare (mismatches)\" default_off=\"mismatch\" 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)\" 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://web\\.synch\\.hu/\" to=\"https://web.synch.hu/\"/></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\" 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\" 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://ssl\\.synovite-scripts\\.com/\" to=\"https://ssl.synovite-scripts.com/\"/></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&#246;p&#228;j&#228;rjest&#246;t\" default_off=\"failed ruleset test\" 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://faculty\\.ischool\\.syr\\.edu/\" to=\"https://faculty.ischool.syr.edu/\"/></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\" 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 (CAcert, partial)\" platform=\"cacert\" f=\"Sysmocom.de.xml\"><exclusion pattern=\"^http://shop\\.sysmocom\\.de/(?!assets|checkout|images|login|stylesheets)\"/><rule from=\"^http://sysmocom\\.de/\" to=\"https://www.sysmocom.de/\"/><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://www\\.system76\\.com/\" to=\"https://www.system76.com/\"/><rule from=\"^http://system76\\.com/\" to=\"https://www.system76.com/\"/></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\" 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\" 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&#232;me D\" default_off=\"mismatch, self-signed\" f=\"Systeme-D.xml\"><securecookie host=\"^systemed\\.net$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?systemed\\.net/\" to=\"https://systemed.net/\"/></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)\" 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)\" 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\" 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)\" 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\" f=\"T411.xml\"><rule from=\"^http://(wiki\\.|www\\.|forum\\.|api\\.)?t411\\.io/\" to=\"https://$1t411.ch/\"/><rule from=\"^http://(wiki\\.|www\\.|forum\\.|api\\.)?torrent411\\.com/\" to=\"https://$1t411.ch/\"/><rule from=\"^http://forum\\.t411\\.me/\" to=\"https://forum.t411.ch/\"/><rule from=\"^http:\" to=\"https:\"/><securecookie host=\"^.*t411\\.(io|me|ch)$\" 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://onlinebanking\\.tdbank\\.com/\" to=\"https://onlinebanking.tdbank.com/\"/></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)\" 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 (mismatches)\" default_off=\"mismatch\" f=\"TED-mismatches.xml\"><rule from=\"^http://(blog|video)\\.ted\\.com/\" to=\"https://$1.ted.com/\"/></ruleset>", "<ruleset name=\"TED (buggy)\" f=\"TED.xml\"><exclusion pattern=\"^http://video\\.ted\\.com/\"/><rule from=\"^http://ed\\.ted\\.com/\" to=\"https://teded.herokuapp.com/\"/><rule from=\"^http://(?:images\\.ted|lvlt\\.tedcdn)\\.com/\" to=\"https://www.ted.com/\"/><rule from=\"^http://www\\.ted\\.com/\" to=\"https://www.ted.com/\"/><rule from=\"^http://pb\\-assets\\.tedcdn\\.com/\" to=\"https://pb-assets.tedcdn.com/\"/><rule from=\"^http://img\\.tedcdn\\.com/\" to=\"https://img-ssl.tedcdn.com/\"/></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\" 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)\" 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\" 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\" f=\"TICKETsage.xml\"><securecookie host=\"^\\.ticketsage.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TIME.com (partial)\" f=\"TIME.com.xml\"><exclusion pattern=\"^http://time\\.com/(?:$|(?:(?:\\d+|author|collection|magazine|newsletter|tag|topic)/[\\w-]+|business|entertainment|health|history|ideas|living|magazine|newsfeed|parents|politics|science|sports|tech|us|vault|world)/(?:$|\\?))\"/><securecookie host=\"^\\.time\\.com$\" name=\"^(?:gpv_\\w\\d+|sinvisit_\\w|s_\\w+)$\"/><securecookie host=\"^subscription\\.time\\.com$\" name=\".+\"/><rule from=\"^http://((?:auth|profiles|smetrics|subscription|www)\\.)?time\\.com/\" to=\"https://$1time.com/\"/><rule from=\"^http://(business|entertainment|newsfeed|science|world)\\.time\\.com/+(?:$|\\?.*)\" to=\"https://time.com/$1\"/><rule from=\"^http://healthland\\.time\\.com/+(?:$|\\?.*)\" to=\"https://time.com/health\"/><rule from=\"^http://ideas\\.time\\.com/+(?:$|\\?.*)\" to=\"https://time.com/opinion\"/><rule from=\"^http://nation\\.time\\.com/+(?:$|\\?.*)\" to=\"https://time.com/us\"/><rule from=\"^http://swampland\\.time\\.com/+(?:$|\\?.*)\" to=\"https://time.com/politics\"/><rule from=\"^http://techland\\.time\\.com/+(?:$|\\?.*)\" to=\"https://time.com/tech\"/></ruleset>", "<ruleset name=\"TIP.net.au (partial)\" platform=\"cacert\" f=\"TIP.net.au.xml\"><rule from=\"^http://(www\\.)?tip\\.net\\.au/(favicon\\.ico|wiki/(?:index\\.php\\?title=(?:.+&amp;action=raw|Special:UserLogin)|PCUG_logo\\.jpg|skins/))\" to=\"https://$1tip.net.au/$2\"/></ruleset>", "<ruleset name=\"TKK.fi\" default_off=\"missing certificate chain\" f=\"TKK.fi.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TLDRLegal.com\" 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\" 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\" 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://id\\.tmtm\\.ru/\" to=\"https://id.tmtm.ru/\"/></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)\" 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=\"self-signed\" f=\"TNS-Global.xml\"><rule from=\"^http://(?:www\\.)?tnsglobal\\.com/\" to=\"https://www.tnsglobal.com/\"/></ruleset>", "<ruleset name=\"TNS Info\" f=\"TNS-Info.xml\"><securecookie host=\"^(?:.*\\.)?tnsinfo\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?tnsinfo\\.com/\" to=\"https://www.tnsinfo.com/\"/></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\" platform=\"cacert\" f=\"TOG.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://tosback\\.org/\" to=\"https://tosback.org/\"/></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\" default_off=\"failed ruleset test\" 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=\"tron-delta.org\" f=\"TRON-DELTA.ORG.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TRUSTe.com (partial)\" 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\" 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://www\\.tsoshop\\.co\\.uk/\" to=\"https://www.tsoshop.co.uk/\"/></ruleset>", "<ruleset name=\"TShare.to\" 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\" 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)\" f=\"TUE.nl.xml\"><securecookie host=\"^\\w\" name=\".\"/><securecookie host=\"^\\.\" name=\"^_gat?$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TUGRaz.at (partial)\" 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=\"TV.com (broken)\" default_off=\"JS redirects back to HTTP\" f=\"TV.com.xml\"><rule from=\"^http://tv\\.com/\" to=\"https://www.tv.com/\"/><rule from=\"^http://www\\.tv\\.com/\" to=\"https://www.tv.com/\"/></ruleset>", "<ruleset name=\"TV1.eu\" f=\"TV1.eu.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TV2.dk (mixed content)\" platform=\"mixedcontent\" 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\" 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\" 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\" f=\"TYPO3.org-falsemixed.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TYPO3.org (partial)\" 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)\" 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)\" 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\" 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=\"Takuu-S&#228;&#228;ti&#246;\" f=\"Takuu-Saatio.xml\"><rule from=\"^http://(?:www\\.)?takuu-saatio\\.fi/\" to=\"https://takuu--saatio-fi.directo.fi/\"/><rule from=\"^http://takuu--saatio-fi\\.directo\\.fi/\" to=\"https://takuu--saatio-fi.directo.fi/\"/></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)\" 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=\"mismatch\" 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)\" f=\"TalkTalk.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TalkTalk Business.co.uk\" f=\"TalkTalk_Business.co.uk.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"talkhealth partnership.com\" 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\" 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\" default_off=\"failed ruleset test\" 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=\"Tangible Security\" f=\"Tangible-Security.xml\"><securecookie host=\"^(www\\.)?tangiblesecurity\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tango.me (partial)\" 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\" 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 (MCB)\" platform=\"mixedcontent\" f=\"Taobao.com-falsemixed.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Taobao.com (partial)\" f=\"Taobao.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)\" 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\" 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)\" 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\" f=\"Targeted_Threats.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Taringa (partial)\" default_off=\"failed ruleset test\" f=\"Taringa.xml\"><rule from=\"^http://(?:(?:l|o1)\\.r26\\.net|i\\.t\\.net\\.ar)/\" to=\"https://l.r26.net/\"/><rule from=\"^http://(?:www\\.)?taringa\\.net/(login|recuperar-(?:clave|nick)|registro(?:-reenviar)?)($|\\?|/)\" to=\"https://www.taringa.net/$1$2\"/></ruleset>", "<ruleset name=\"Tarlogic.com\" 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=\"mismatch\" 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://www\\.mytatasky\\.com/\" to=\"https://www.mytatasky.com/\"/></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=\"TauCeti.org.au\" f=\"TauCeti.org.au.xml\"><rule from=\"^http://www\\.tauceti\\.org\\.au/\" to=\"https://www.tauceti.org.au/\"/></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)\" 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)\" 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\" 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 (mixedcontent)\" platform=\"mixedcontent\" f=\"Tcl.tk-falsemixed.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tcl.tk (partial)\" f=\"Tcl.tk.xml\"><exclusion pattern=\"^http://(?:www\\.)?tcl\\.tk/+(?!devsite\\.css|images/)\"/><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\" 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\" 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)\" 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 in Training.org (partial)\" 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\" 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=\"connection 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\" 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\\?(?:.+&amp;)?_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\" 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\" default_off=\"failed ruleset test\" f=\"Techmeme.com.xml\"><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)\" 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)\" 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)\" 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&#228;rung\" f=\"Technische_Aufkl&#228;rung.xml\"><rule from=\"^http://www\\.technische-aufklaerung\\.de/\" to=\"https://technische-aufklaerung.de/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Technische Universit&#228;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 Media (mismatches)\" default_off=\"expired, mismatched, self-signed\" f=\"Technorati-Media-problematic.xml\"><rule from=\"^http://(?:www\\.)?technoratimedia\\.com/\" to=\"https://technoratimedia.com/\"/><rule from=\"^http://(?:ad-cdn|uat-net)\\.technoratimedia\\.com/\" to=\"https://uat-net.technoratimedia.com/\"/></ruleset>", "<ruleset name=\"Technorati Media (partial)\" f=\"Technorati-Media.xml\"><rule from=\"^http://ad\\.technoratimedia\\.com/\" to=\"https://ad.rmxads.com/\"/></ruleset>", "<ruleset name=\"Technovelty.org\" f=\"Technovelty.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Techopedia.com\" default_off=\"failed ruleset test\" 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\" 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\" f=\"Teevox.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tehconnection\" default_off=\"failed ruleset test\" 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\" default_off=\"failed ruleset test\" f=\"TekGoblin.xml\"><rule from=\"^http://(?:(?:\\w+\\.)?tekgoblin|cdn(?:[23])?\\.tekgoblinmedia)\\.com/\" to=\"https://d369bx7nq13k6v.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Tek Syndicate.com\" f=\"Tek_Syndicate.com.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TelMasters\" 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\" 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&#243;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&#243;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)\" 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\" 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\" 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\" default_off=\"failed ruleset test\" 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=\"mismatch\" 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\" 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\" f=\"TeleworkGovAu.xml\"><rule from=\"^http://(?:www\\.)?telework\\.gov\\.au/\" to=\"https://www.telework.gov.au/\"/></ruleset>", "<ruleset name=\"Telex\" 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=\"Telstra Corporation (mismatches)\" default_off=\"mismatch\" 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)\" 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\" 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=\"Tencent_CN\" default_off=\"Only avaiable in China\" f=\"Tencent_CN.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"tendatta.com\" default_off=\"failed ruleset test\" 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\" 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\" 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://store\\.tequipment\\.net/\" to=\"https://store.tequipment.net/\"/></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)\" 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\" f=\"Terminal.com.xml\"><securecookie host=\"^www\\.terminal\\.com$\" 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\" default_off=\"failed ruleset test\" f=\"Terra-Galleria.xml\"><securecookie host=\"^(?:.*\\.)?terragalleria\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Terra Mail (MX)\" f=\"TerraMailMX.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TerraPass (partial)\" default_off=\"failed ruleset test\" f=\"TerraPass.xml\"><exclusion pattern=\"^http://store.terrapass.com/(?![iI]mages/|Shared/|[sS]tore/(?:buttons|i|Templates)/)\"/><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\" default_off=\"failed ruleset test\" 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)\" 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=\"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=\"Tetu\" default_off=\"failed ruleset test\" f=\"Tetu.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)\" 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&amp;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\" f=\"Textracer.dk.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TextualApp.com\" f=\"TextualApp.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://textualapp\\.com/\" to=\"https://www.textualapp.com/\"/><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=\"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=\"tgthr.com\" default_off=\"differs from http\" f=\"Tgthr.com.xml\"><securecookie host=\"^(?:w*\\.)?tgthr\\.com$\" name=\".+\"/><rule from=\"^http://tgthr\\.crbuildsite\\.com/\" to=\"https://tgthr.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TH N&#252;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\" 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=\"mismatch\" 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=\"mismatch\" 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\" 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=\"mismatch\" 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 Japan Times (problematic)\" default_off=\"mismatch\" f=\"The-Japan-Times-problematic.xml\"><exclusion pattern=\"http://www\\.japantimes\\.co\\.jp/images/header_title\\.gif\"/><rule from=\"^http://(?:www\\.)?japantimes\\.co\\.jp/\" to=\"https://www.japantimes.co.jp/\"/></ruleset>", "<ruleset name=\"The Japan Times (partial)\" f=\"The-Japan-Times.xml\"><securecookie host=\"^.+\\.japantimes\\.co\\.jp$\" name=\".+\"/><rule from=\"^http://(bookclub|club|form)\\.japantimes\\.co\\.jp/\" to=\"https://$1.japantimes.co.jp/\"/><rule from=\"^http://www\\.japantimes\\.co\\.jp/images/header_title\\.gif\" to=\"https://form.japantimes.co.jp/images/header_title.gif\"/></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\" 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 Nature Conservancy (partial)\" f=\"The-Nature-Conservancy.xml\"><securecookie host=\"^shop\\.nature\\.org$\" name=\".*\"/><rule from=\"^http://shop\\.nature\\.org/\" to=\"https://shop.nature.org/\"/><rule from=\"^http://support\\.nature\\.org/images/\" to=\"https://support.nature.org/images/\"/></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=\"mismatch\" 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\" 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://secureimages\\.teach12\\.com/\" to=\"https://secureimages.teach12.com/\"/></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 (partial)\" f=\"The-Verge.xml\"><exclusion pattern=\"^http://www\\.theverge\\.com/comments/load_comments/\"/><securecookie host=\"^\\.\" name=\"^_ga(?:t?$|t_)\"/><rule from=\"^http://status\\.theverge\\.com/[^?]*\" to=\"https://voxmedia.statuspage.io/\"/></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) \" default_off=\"failed ruleset test\" 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=\"The Book Depository\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"TheBookDepository.xml\"><rule from=\"^http://bookdepository\\.(co\\.uk|com)/\" to=\"https://bookdepository.$1/\"/><rule from=\"^http://(cache0|cache1|cache2|cache3|images|www)\\.bookdepository\\.(co\\.uk|com)/\" to=\"https://$1.bookdepository.$2/\"/></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\" 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=\"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=\"The Old Reader\" default_off=\"failed ruleset test\" 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\" f=\"ThePermitStore.com.xml\"><securecookie host=\"^(?:[a-zA-Z0-9\\-]*\\.)?thepermitstore\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"The Pirate Bay\" f=\"ThePirateBay.xml\"><rule from=\"^http://www\\.proxybay\\.la/\" to=\"https://proxybay.la/\"/><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ThePirateGoogle\" default_off=\"Certificate mismatch\" f=\"ThePirateGoogle.xml\"><rule from=\"^http://(www\\.)?(thepirategoogle|webtorrentsearch)\\.(mrcarch\\.)?com/\" to=\"https://$2.mrcarch.com/~mrcarchc/$2/\"/></ruleset>", "<ruleset name=\"thePlatform.com (problematic)\" default_off=\"mismatched\" f=\"ThePlatform-problematic.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"thePlatform.com (partial)\" 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\" f=\"ThePrivacyBlog.xml\"><rule from=\"^http://(?:www\\.)?theprivacyblog\\.com/\" to=\"https://www.theprivacyblog.com/\"/></ruleset>", "<ruleset name=\"TheReadingRoom.com\" f=\"TheReadingRoom.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TheRealTalk.org\" f=\"TheRealTalk.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TheResumator clients (partial)\" f=\"TheResumator.com-clients.xml\"><rule from=\"^http://jobs\\.urbandictionary\\.com/\" to=\"https://urbandictionary.theresumator.com/\"/></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=\"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)\" 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 (false MCB)\" platform=\"mixedcontent\" f=\"The_Atlantic.com-falsemixed.xml\"><rule from=\"^http://theatlantic\\.com/\" to=\"https://www.theatlantic.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"The Atlantic.com (partial)\" 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\" default_off=\"failed ruleset test\" 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)\" 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=\"Boston Globe.com (partial)\" f=\"The_Boston_Globe.xml\"><securecookie host=\".\" name=\".\"/><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\" 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 Chive.com (partial)\" f=\"The_Chive.com.xml\"><exclusion pattern=\"^http://dating\\.thechive\\.com/+(?!assets/|favicon\\.ico|login/*(?:$|\\?))\"/><securecookie host=\"^\\.thechive\\.com$\" name=\"^__qca$\"/><securecookie host=\"^(?:dating|my)\\.thechive\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"The Chronicles of George\" 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)\" 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\" 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)\" 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\" 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=\"connection 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)\" f=\"The_Guardian.com.xml\"><exclusion pattern=\"^http://(?:www\\.)?theguardian\\.com/.*/ng-interactive/\"/><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 Hacker Blog.com\" f=\"The_Hacker_Blog.com.xml\"><securecookie host=\"^\\.thehackerblog\\.com$\" name=\".+\"/><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\" 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 Intercept.com\" f=\"The_Intercept.com.xml\"><rule from=\"^http:\" to=\"https:\"/></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)\" 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 Monthly.com.au\" f=\"The_Monthly.com.au.xml\"><securecookie host=\"^\\.themonthly\\.com\\.au$\" name=\".+\"/><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 Nanfang.com\" f=\"The_Nanfang.com.xml\"><securecookie host=\"^\\.thenanfang\\.com$\" name=\".+\"/><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\" 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\"><rule from=\"^http://(?:www\\.)?theparliamentmagazine\\.eu/\" to=\"https://www.theparliamentmagazine.eu/\"/></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 Saturday Paper.com.au\" f=\"The_Saturday_Paper.com.au.xml\"><securecookie host=\"^\\.thesaturdaypaper\\.com\\.au$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></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\" 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 Wire.com (false MCB)\" platform=\"mixedcontent\" f=\"The_Wire.com-falsemixed.xml\"><rule from=\"^http://(?:www\\.)?thewire\\.com/\" to=\"https://www.thewire.com/\"/></ruleset>", "<ruleset name=\"The Wire.com (partial)\" f=\"The_Wire.com.xml\"><securecookie host=\"^\\.thewire\\.com$\" name=\"^s_\\w+$\"/><rule from=\"^http://cdn\\.thewire\\.com/\" to=\"https://cdn.thewire.com/\"/></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\" 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\" 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://thehabbos\\.org/\" to=\"https://thehabbos.org/\"/></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=\"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 (partial)\" f=\"Theme.co.xml\"><exclusion pattern=\"^http://(?:www\\.)?theme\\.co/x/demo(?:|[?/])\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Themes and Co.com\" default_off=\"failed ruleset test\" 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=\"mismatch\" 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\" 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)\" f=\"Thermitic.net.xml\"><rule from=\"^http://stats\\.thermitic\\.net/\" to=\"https://stats.thermitic.net/\"/></ruleset>", "<ruleset name=\"Thermo Scientific.com\" 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=\"Thijs Alkema.de\" default_off=\"failed ruleset test\" f=\"Thijs_Alkema.de.xml\"><rule from=\"^http://www\\.thijsalkema\\.de/\" to=\"https://thijsalkema.de/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"thing.net (false MCB)\" platform=\"mixedcontent\" f=\"Thing.net-falsemixed.xml\"><rule from=\"^http://editions\\.thing\\.net/\" to=\"https://editions.thing.net/\"/></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\" 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 (false MCB)\" platform=\"mixedcontent\" f=\"ThinkProgress.org-falsemixed.xml\"><exclusion pattern=\"^http://thinkprogress\\.com/justice/\\d{4}/\\d\\/\\d\\d/\\d+/[\\w-]+\"/><rule from=\"^http://thinkprogress\\.org/\" to=\"https://thinkprogress.org/\"/></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=\"Third Door Media (mismatches)\" default_off=\"mismatch\" 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=\"connection 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=\"Thomas Cook\" default_off=\"Site no longer exists\" f=\"ThomasCook.xml\"><rule from=\"^http://thomascook\\.com/\" to=\"https://thomascook.com/\"/><rule from=\"^http://(book|ww3|ww7|www)\\.thomascook\\.com/\" to=\"https://$1.thomascook.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=\"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=\"mismatch\" 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=\"mismatch\" f=\"Thomson-Reuters-mismatches.xml\"><exclusion pattern=\"^http://s[1-4]\\.reutersmedia\\.net/(?:resources/(?:images|media|r)|resources_v2/(?:image|j)s)/\"/><rule from=\"^http://investor\\.marvell\\.com/\" to=\"https://investor.marvell.com/\"/><rule from=\"^http://s[1-4]\\.reutersmedia\\.net/\" to=\"https://s1.reutersmedia.net/\"/></ruleset>", "<ruleset name=\"Thomson Reuters.com (partial)\" f=\"Thomson-Reuters.xml\"><securecookie host=\"^\\.\" name=\"^_(?:_qca$|gat?$|gat_)\"/><securecookie host=\"^(?!legalsolutions\\.)\\w\" name=\".\"/><rule from=\"^http://thomsonreuters\\.com/\" to=\"https://www.thomsonreuters.com/\"/><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://cortellis\\.thomsonreuterslifesciences\\.com/\" to=\"https://cortellis.thomsonreuterslifesciences.com/\"/></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\" f=\"Threading-Building-Blocks.xml\"><securecookie host=\"^\\.threadingbuildingblocks\\.org$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Threat2Alert.com\" f=\"Threat2Alert.com.xml\"><securecookie host=\"^www\\.threat2alert\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ThreatMetrix.com (false MCB)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"ThreatMetrix.com-falsemixed.xml\"><securecookie host=\"^(?:www\\.)?threatmetrix\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ThreatMetrix.com (partial)\" default_off=\"failed ruleset test\" f=\"ThreatMetrix.com.xml\"><rule from=\"^http://(www\\.)?threatmetrix\\.com/(?=favicon\\.ico|wp-content/|wp-includes/)\" to=\"https://$1threatmetrix.com/\"/></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.)?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\" 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\" 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\" 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\" 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\" 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)\" 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)\" default_off=\"failed ruleset test\" 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)\" 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)\" default_off=\"failed ruleset test\" f=\"Tietoenator.com.xml\"><rule from=\"^http://easyedi\\.tietoenator\\.com/\" to=\"https://easyedi.tietoenator.com/\"/></ruleset>", "<ruleset name=\"Tigase.org (partial)\" f=\"Tigase.org.xml\"><securecookie host=\"^projects\\.tigase\\.org$\" name=\".+\"/><rule from=\"^http://projects\\.tigase\\.org/\" to=\"https://projects.tigase.org/\"/></ruleset>", "<ruleset name=\"Tiger Airways (partial)\" f=\"Tiger-Airways.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TigerDirect.com (partial)\" 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\" 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\" 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=\"connection dropped\" 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=\"Tim Roes.de\" f=\"Tim_Roes.de.xml\"><rule from=\"^http:\" to=\"https:\"/></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)\" default_off=\"failed ruleset test\" 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=\"connection 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)\" default_off=\"failed ruleset test\" 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\" 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\" 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\" default_off=\"failed ruleset test\" 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=\"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)\" default_off=\"failed ruleset test\" f=\"Tiny_Buddha.com.xml\"><rule from=\"^http://cdn\\.tinybuddha\\.com/\" to=\"https://cdn.tinybuddha.com/\"/></ruleset>", "<ruleset name=\"tinyapps.org\" f=\"Tinyapps.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tinydl\" default_off=\"expired, self-signed\" f=\"Tinydl.xml\"><securecookie host=\"^www\\.tinydl\\.com$\" name=\".*\"/><rule from=\"^http://(?:cdn\\.|www\\.)?tinydl\\.com/\" to=\"https://www.tinydl.com/\"/></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=\"Tire Metro\" default_off=\"failed ruleset test\" f=\"Tire_Metro.xml\"><securecookie host=\"^(?:.*\\.)?tiremetroonline\\.com$\" name=\".+\"/><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=\"Tires N' Wheels\" default_off=\"failed ruleset test\" f=\"Tires_N_Wheels.xml\"><securecookie host=\"^(?:.*\\.)?tiresnwheels\\.ca$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></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\" 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\" 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\" f=\"Tjournal.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\" 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/\"/></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\"><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://kau\\.toke\\.dk/\" to=\"https://kau.toke.dk/\"/></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://www\\.tus\\.ac\\.jp/\" to=\"https://www.tus.ac.jp/\"/></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)\" 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\" 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\" default_off=\"expired\" platform=\"cacert\" f=\"Toofishes.net.xml\"><rule from=\"^http://(?:www\\.)?toofishes\\.net/\" to=\"https://www.toofishes.net/\"/><rule from=\"^http://code\\.toofishes\\.net/\" to=\"https://code.toofishes.net/\"/></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=\"toonpool.com (expired)\" default_off=\"expired\" f=\"Toonpool-expired.xml\"><exclusion pattern=\"^http://(?:blog|shop)\\.\"/><securecookie host=\"^.*\\.toonpool\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?toonpool\\.com/\" to=\"https://www.toonpool.com/\"/></ruleset>", "<ruleset name=\"toonpool.com (partial)\" default_off=\"failed ruleset test\" f=\"Toonpool.xml\"><rule from=\"^http://shop\\.toonpool\\.com/\" to=\"https://shop.toonpool.com/\"/></ruleset>", "<ruleset name=\"ToorCon.net\" f=\"ToorCon.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"top.de\" f=\"Top.de.xml\"><securecookie host=\"^top\\.de$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TopBuy.com.au\" 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=\"Top Universities\" default_off=\"expired, mismatched, self-signed\" f=\"Top_Universities.xml\"><rule from=\"^http://(?:www\\.)?topuniversities\\.com/\" to=\"https://www.topuniversities.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\" f=\"Tor2Web.xml\"><rule from=\"^http://([^/]+)\\.tor2web\\.(org|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\" 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=\"Torbit (partial)\" default_off=\"failed ruleset test\" f=\"Torbit.xml\"><securecookie host=\"^\\.torbit\\.com$\" name=\".+\"/><rule from=\"^http://(?:(?:www\\.)?odi\\.io|(?:secure\\.|www\\.)?torbit\\.com)/\" to=\"https://secure.torbit.com/\"/><rule from=\"^http://torbit\\.odn\\.io/\" to=\"https://torbit.odn.io/\"/><rule from=\"^http://insight\\.torbit\\.com/\" to=\"https://insight.torbit.com/\"/></ruleset>", "<ruleset name=\"Torcache.net\" 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)\" 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\"><exclusion pattern=\"^http://torperf\\.torproject\\.org/\"/><securecookie host=\"^(?:.*\\.)?torproject\\.org$\" name=\".+\"/><rule from=\"^http://([^/:@\\.]+\\.)?torproject\\.org/\" to=\"https://$1torproject.org/\"/></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\" 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\" 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)(?:$|&amp;))\"/><rule from=\"^http://www\\.torrentprivacy\\.com/\" to=\"https://torrentprivacy.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TorrentR.eu\" f=\"TorrentR.eu.xml\"><securecookie host=\"^(?:www)?\\.torrentr\\.eu$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TorrentShack\" 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)\" default_off=\"failed ruleset test\" 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=\"Torservers\" f=\"Torservers.xml\"><rule from=\"^http://(?:www\\.)?torservers\\.net/\" to=\"https://www.torservers.net/\"/><rule from=\"^http://blog\\.torservers\\.net/\" to=\"https://blog.torservers.net/\"/></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\" 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\" default_off=\"failed ruleset test\" 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\" f=\"TouClick.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"toutiao.com (partial)\" f=\"TouTiao.xml\"><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://secure\\.touchnet\\.com/\" to=\"https://secure.touchnet.com/\"/></ruleset>", "<ruleset name=\"Touchandtravel.de\" f=\"Touchandtravel.de.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=\"Townsville Bottom Fishing Charters.com.au (partial)\" default_off=\"failed ruleset test\" f=\"Townsville_Bottom_Fishing_Charters.com.au.xml\"><rule from=\"^http://(www\\.)?townsvillebottomfishingcharters\\.com\\.au/(?=BrowserPreview_tmp_01\\.jpg|cdn-cgi/ping|favicon\\.ico|images/|media/|plugins/|spacer\\.gif|templates/)\" to=\"https://$1townsvillebottomfishingcharters.com.au/\"/></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://www2\\.toyota\\.es/\" to=\"https://www2.toyota.es/\"/></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://media\\.tracfonewireless\\.com/\" to=\"https://media.tracfonewireless.com/\"/></ruleset>", "<ruleset name=\"Trace Register (partial)\" f=\"Trace_Register.xml\"><rule from=\"^http://cdn\\.traceregister\\.com/\" to=\"https://cdn.traceregister.com/\"/></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\" f=\"TradeLeaks.com.xml\"><securecookie host=\"^\\.tradeleaks\\.com$\" name=\"^__cfduid$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TradeMore Margin.com\" 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://(?:www\\.)?tradepub\\.com/(?!body_styles\\.css|data/|favicon\\.ico)\" to=\"https://www.tradepub.com/\"/></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://cdn\\.tradelab\\.fr/\" to=\"https://cdn.tradelab.fr/\"/></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\"><exclusion pattern=\"^http://(?:www\\.)?tradepub\\.com/+(?!body_styles\\.css|c/|data/|favicon\\.ico)\"/><rule from=\"^http://tradepub\\.com/\" to=\"https://www.tradepub.com/\"/><rule from=\"^http://img\\.tradepub\\.com/\" to=\"https://netline.cachefly.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Traffic Holder (partial)\" f=\"Traffic-Holder.xml\"><rule from=\"^http://76\\.9\\.16\\.34/\" to=\"https://secure.trafficholder.com/\"/><rule from=\"^http://(?:secure\\.|www\\.)?trafficholder\\.com/\" to=\"https://secure.trafficholder.com/\"/></ruleset>", "<ruleset name=\"Traffic Shop\" f=\"Traffic-Shop.xml\"><securecookie host=\"^www\\.trafficshop\\.com$\" name=\".*\"/><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\" 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)\" 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=\"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=\"trakk247.com\" default_off=\"failed ruleset test\" f=\"Trakk247.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TransIP.nl\" f=\"TransIP.nl.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Trans Marine\" 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=\"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\" default_off=\"failed ruleset test\" f=\"TransitionNetwork.org.xml\"><rule from=\"^http://(?:www\\.)?transitionnetwork\\.org/\" to=\"https://www.transitionnetwork.org/\"/></ruleset>", "<ruleset name=\"TranslateThi.is (partial)\" f=\"TranslateThi.is.xml\"><rule from=\"^http://x\\.translateth\\.is/\" to=\"https://s3.amazonaws.com/x.translateth.is/\"/></ruleset>", "<ruleset name=\"Translatewiki.net\" default_off=\"failed ruleset test\" 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\" default_off=\"failed ruleset test\" 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\" 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\" 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\" 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=\"trappedinsidethecomputer.net (partial)\" default_off=\"failed ruleset test\" f=\"Trappedinsidethecomputer.net.xml\"><securecookie host=\"^vishakeswwwabcde\\.trappedinsidethecomputer\\.net$\" name=\".+\"/><rule from=\"^http://vishakeswwwabcde\\.trappedinsidethecomputer\\.net/\" to=\"https://vishakeswwwabcde.trappedinsidethecomputer.net/\"/></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)\" 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)\" default_off=\"failed ruleset test\" 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)\" 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\" 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=\"Travis F.net\" f=\"Travis_F.net.xml\"><rule from=\"^http://(?:www\\.|(www2\\.))?travisf\\.net/\" to=\"https://$1travisf.net/\"/></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\" f=\"Traxarmstrong.com.xml\"><rule from=\"^http://(?:www\\.)?traxarmstrong\\.com/\" to=\"https://traxarmstrong.com/\"/></ruleset>", "<ruleset name=\"Treasury.gov (partial)\" 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\" default_off=\"failed ruleset test\" 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\" default_off=\"failed ruleset test\" 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\" 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=\"Tribler (partial)\" default_off=\"failed ruleset test\" f=\"Tribler.xml\"><securecookie host=\"^www\\.tribler\\.org$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tribune (mismatches)\" default_off=\"mismatch\" 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\" default_off=\"failed ruleset test\" 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)\" 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 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\" 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\" 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.xml\"><securecookie host=\"^(?:devel)?\\.trisquel\\.info$\" name=\".+\"/><rule from=\"^http://(devel\\.|www\\.)?trisquel\\.info/\" to=\"https://$1trisquel.info/\"/><rule from=\"^http://cn\\.archive\\.trisquel\\.info/\" to=\"https://mirrors.ustc.edu.cn/\"/></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 (problematic)\" default_off=\"expired, self-signed\" f=\"Tropo-problematic.xml\"><rule from=\"^http://blog\\.tropo\\.com/\" to=\"https://blog.tropo.com/\"/></ruleset>", "<ruleset name=\"Tropo (partial)\" f=\"Tropo.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"tros.nl\" f=\"Tros.nl.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Trove.com (partial)\" f=\"Trove.com.xml\"><securecookie host=\"^(?:id)?\\.trove\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"troveread.com\" default_off=\"failed ruleset test\" f=\"Troveread.com.xml\"><rule from=\"^http://troveread\\.com/.*\" to=\"https://socialreader.com/\"/><rule from=\"^http://s\\.troveread\\.com/\" to=\"https://dizqy8916g7hx.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Truck Trend.com (partial)\" default_off=\"failed ruleset test\" f=\"Truck_Trend.com.xml\"><rule from=\"^http://image\\.trucktrend\\.com/\" to=\"https://s248.e.akamai.net/f/1664/1785/9/image.trucktrend.com/\"/></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\" 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=\"Truetrophies.com\" f=\"Truetrophies.com.xml\"><rule from=\"^http:\" to=\"https:\"/></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\" f=\"TrustKeeper.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TrustSign.com.br\" 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\" 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=\"TruthMarket\" default_off=\"buggy\" f=\"TruthMarket.xml\"><securecookie host=\"^(?:www\\.)?truthmarket\\.com$\" name=\".*\"/><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\" f=\"Try_Superb_Green_Coffee.com.xml\"><securecookie host=\"^(?:w*\\.)?trysuperbgreencoffee.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"try Zen99.com\" f=\"Try_Zen99.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Trygghansa.se\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" 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=\"TuXingSun.net\" 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=\"mismatch\" 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=\"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\" default_off=\"failed ruleset test\" 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\" f=\"Tumri.net.xml\"><securecookie host=\"^\\.tumri\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tumutanzi.com\" f=\"Tumutanzi.com.xml\"><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\" 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)\" default_off=\"failed ruleset test\" 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://my\\.turbobytes\\.com/\" to=\"https://my.turbobytes.com/\"/></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)\" 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 Networks (partial)\" default_off=\"Breaks lenovo `ask a question'\" f=\"TurnTo_Networks.xml\"><rule from=\"^http://static\\.www\\.turnto\\.com/\" to=\"https://static.www.turnto.com/\"/></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\" 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\" 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\" f=\"Tutanota.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tutor.com (partial)\" 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 (partial)\" default_off=\"self-signed\" f=\"Tux.Org.xml\"><rule from=\"^http://calypso\\.tux\\.org/\" to=\"https://calypso.tux.org/\"/></ruleset>", "<ruleset name=\"TuxFamily.org (partial)\" f=\"TuxFamily.org.xml\"><exclusion pattern=\"^http://(?:(?!www\\.[^.]+\\.tuxfamily\\.org/)(?:[^./]+\\.){2,}|(?:[^./]+\\.){3,}|(?:www\\.)?(?:blenderclan|bugparis|celmir|eigen|feeblemind|ffdiaporama|gimpphoto|joliebulle|lebottindesjeuxlinux|lists|non|0vercl0k|stickyvibe)\\.|www\\.flatland\\.)tuxfamily\\.org/\"/><securecookie host=\".\" name=\".\"/><rule from=\"^http://www\\.([^.]+)\\.tuxfamily\\.org/\" to=\"https://$1.tuxfamily.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\" 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=\"Tvlicensing.co.uk\" default_off=\"failed ruleset test\" f=\"Tvlicensing.co.uk.xml\"><rule from=\"^http://(?:www\\.)?tvlicensing\\.co\\.uk/\" to=\"https://www.tvlicensing.co.uk/\"/></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)\" default_off=\"mismatched\" f=\"TweakTown.com.xml\"><rule from=\"^http://(forum|image)scdn\\.tweaktown\\.com/\" to=\"https://$1scdn.tweaktown.com/\"/></ruleset>", "<ruleset name=\"Tweakers.net\" f=\"Tweakers.net.xml\"><exclusion pattern=\"^http://(?:tweakers|ic\\.tweakimg)\\.net/crossdomain\\.xml$\"/><securecookie host=\"^\\.tweakers\\.net$\" name=\".+\"/><rule from=\"^http://((?:gathering|secure|www)\\.)?tweakers\\.net/\" to=\"https://$1tweakers.net/\"/><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)\" 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 (partial)\" f=\"TweetReach.com.xml\"><securecookie host=\"^\\.tweetreach\\.com$\" name=\".+\"/><rule from=\"^http://((?:assets\\d|blog|www)\\.)?tweetreach\\.com/\" to=\"https://$1tweetreach.com/\"/></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\" 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\" 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://api\\.twingly\\.com/\" to=\"https://api.twingly.com/\"/></ruleset>", "<ruleset name=\"Twinings (partial)\" default_off=\"failed ruleset test\" 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\" f=\"Twinprime.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TwinsOrNot.Net\" f=\"TwinsOrNot.Net.xml\"><securecookie host=\"^.*\\.twinsornot\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"twisp.me\" 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://console\\.twistage\\.com/\" to=\"https://console.twistage.com/\"/></ruleset>", "<ruleset name=\"Twisted4Life\" f=\"Twisted4Life.xml\"><securecookie host=\"^(?:.+\\.)?twisted4life\\.com$\" name=\".*\"/><rule from=\"^http://((?:www\\.)?twisted4life\\.com)/\" to=\"https://$1/\"/></ruleset>", "<ruleset name=\"TwistedMatrix.com\" f=\"TwistedMatrix.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TwitCasting (partial)\" 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=\"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=\"mismatch\" 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\" f=\"Two_Sigma.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Two Factor Auth.org\" f=\"Twofactorauth.org.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Twoseventy.net\" f=\"Twoseventy.net.xml\"><securecookie host=\"^\\.twoseventy\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Twtpoll.com\" 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://safe\\.txmblr\\.com/\" to=\"https://safe.txmblr.com/\"/></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 (mismatches)\" default_off=\"Akamai certificate\" f=\"Tynt-mismatches.xml\"><rule from=\"^http://tcr\\.tynt\\.com/\" to=\"https://tcr.tynt.com/\"/></ruleset>", "<ruleset name=\"Tynt (partial)\" f=\"Tynt.xml\"><securecookie host=\"^\\.tynt\\.com$\" name=\"^s_\\w\\w\\w?$\"/><securecookie host=\"^id\\.tynt\\.com$\" name=\".+\"/><rule from=\"^http://id\\.tynt\\.com/\" to=\"https://id.tynt.com/\"/></ruleset>", "<ruleset name=\"Ty&#246;- ja elinkeinoministeri&#246;\" f=\"Tyo-ja-elinkeinoministerio.xml\"><rule from=\"^http://(?:www\\.)?tem\\.fi/\" to=\"https://www.tem.fi/\"/></ruleset>", "<ruleset name=\"Ty&#246;tt&#246;myyskassojen Yhteisj&#228;rjest&#246;\" 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://(dsimg|i)\\.ubm-us\\.net/\" to=\"https://$1.ubm-us.net/\"/></ruleset>", "<ruleset name=\"UBM (mismatches)\" default_off=\"mismatch\" 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 (partial)\" f=\"UBM.xml\"><securecookie host=\"^events\\.ubm\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?events\\.ubm\\.com/\" to=\"https://events.ubm.com/\"/></ruleset>", "<ruleset name=\"UBS.com (partial)\" 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=\"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)\" 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)\" 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\" 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)\" f=\"UDN.xml\"><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\" default_off=\"failed ruleset test\" 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\" f=\"UHH-Informatik.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"UI-Portal.de (partial)\" 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)\" 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)\" 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\" default_off=\"failed ruleset test\" f=\"UK-Access-Management-Federation.xml\"><securecookie host=\"^wayf\\.ukfederation\\.org\\.uk$\" name=\".*\"/><rule from=\"^http://wayf\\.ukfederation\\.org\\.uk/\" to=\"https://wayf.ukfederation.org.uk/\"/></ruleset>", "<ruleset name=\"BIS.gov.uk (partial)\" 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://forum\\.ukfur\\.org/\" to=\"https://forum.ukfur.org/\"/></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\" 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)\" 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\" default_off=\"failed ruleset test\" 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\" platform=\"mixedcontent\" f=\"UN.org.xml\"><rule from=\"^http://(?:www\\.)?un\\.org/\" to=\"https://www.un.org/\"/></ruleset>", "<ruleset name=\"UNC.edu (mixed content)\" platform=\"mixedcontent\" 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=\"UNFPA.org\" default_off=\"failed ruleset test\" f=\"UNFPA.org.xml\"><rule from=\"^http://www\\.unfpa\\.org/\" to=\"https://www.unfpa.org/\"/><rule from=\"^http://unfpa\\.org/\" to=\"https://www.unfpa.org/\"/></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=\"UNIDO.org\" f=\"UNIDO.org.xml\"><rule from=\"^http://www\\.unido\\.org/\" to=\"https://www.unido.org/\"/></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\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"UNODC.org.xml\"><rule from=\"^http://www\\.unodc\\.org/\" to=\"https://www.unodc.org/\"/><rule from=\"^http://unodc\\.org/\" to=\"https://www.unodc.org/\"/></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\" f=\"UOL.com.br-falsemixed.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"UOL.com.br (partial)\" 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&amp;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 &#268;esk&#225; republika s.r.o.\" f=\"UPC.cz.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"UPC.ie (partial)\" f=\"UPC.ie.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"UPC.nl (partial)\" 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\" 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=\"UPR.edu (self-signed)\" default_off=\"expired, self-signed\" f=\"UPR.edu-problematic.xml\"><securecookie host=\"^(?:webmail\\.)?upr\\.edu$\" name=\".+\"/><rule from=\"^http://((?:mail|webmail|www)\\.)?hpcf\\.upr\\.edu/\" to=\"https://$1hpcf.upr.edu/\"/></ruleset>", "<ruleset name=\"UPS.com (partial)\" default_off=\"failed ruleset test\" 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=\"&#218;&#345;ad pr&#367;myslov&#233;ho vlastnictv&#237;\" 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)\" 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)\" f=\"USA.gov.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"USAJobs.gov\" f=\"USAJobs.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)\" 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\" 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)\" default_off=\"failed ruleset test\" 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://mail\\.usp\\.br/\" to=\"https://mail.usp.br/\"/></ruleset>", "<ruleset name=\"USPS.com\" default_off=\"failed ruleset test\" 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. Bank Client Advocacy\" f=\"US_Bank_Client_Advocacy.xml\"><securecookie host=\"^(?:www)?\\.usbclientadvocacy\\.com$\" name=\".+\"/><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)\" f=\"US_Courts.gov.xml\"><rule from=\"^http://cdn\\.ca9\\.uscourts\\.gov/\" to=\"https://d3bsvxk93brmko.cloudfront.net/\"/></ruleset>", "<ruleset name=\"US Currency.gov\" f=\"US_Currency.gov.xml\"><securecookie host=\"^\\w\" name=\".\"/><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 Mint.gov\" f=\"US_Mint.gov.xml\"><securecookie host=\"^(?:catalog|(?:preview|www)\\.catalog|www)\\.usmint\\.gov$\" name=\".+\"/><rule from=\"^http://usmint\\.gov/\" to=\"https://www.usmint.gov/\"/><rule from=\"^http:\" to=\"https:\"/></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)\" 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)\" 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)\" default_off=\"failed ruleset test\" 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\" 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)\" 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)\" 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)\" default_off=\"failed ruleset test\" 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\" 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&#237;a\" 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\" f=\"UberMedia.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"UberTags (mismatches)\" default_off=\"mismatch\" 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\" 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\" 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=\"Ubuntu-CN\" f=\"Ubuntu-CN.xml\"><rule from=\"^http://(www\\.|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\" 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 (CAcert)\" platform=\"cacert\" f=\"Ubuntu-NL.org-cacert.xml\"><exclusion pattern=\"^http://www\\.ubuntu-nl\\.org/+(?!modules/|sites/)\"/><rule from=\"^http://ubuntu-nl\\.org/\" to=\"https://www.ubuntu-nl.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ubuntu-NL.org (partial)\" f=\"Ubuntu-NL.org.xml\"><securecookie host=\"^\\.ubuntu-nl\\.org$\" name=\"^PHPSESSID$\"/><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)\" 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\" 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:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ubuntu Linux.jp\" 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\" default_off=\"failed ruleset test\" f=\"Ucommand.com.xml\"><securecookie host=\"^www\\.ucommand\\.com$\" name=\".+\"/><rule from=\"^http://www\\.ucommand\\.com/\" to=\"https://www.ucommand.com/\"/></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=\"mismatch\" f=\"Udacity.com-mismatches.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Udacity.com (partial)\" 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)\" 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\" default_off=\"expired, mismatched, self-signed\" f=\"Uformia.xml\"><securecookie host=\"^uformia\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?uformia\\.com/\" to=\"https://uformia.com/\"/></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\" default_off=\"self-signed\" f=\"Ugly_Mugs.ie.xml\"><securecookie host=\"^(?:www\\.)?uglymugs\\.ie$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?uglymugs\\.ie/\" to=\"https://uglymugs.ie/\"/></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\" 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)\" default_off=\"expired\" f=\"Ukeer.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ukr.net\" default_off=\"failed ruleset test\" f=\"Ukr.net.xml\"><rule from=\"^http://((?:counter|mail|www)\\.)?ukr\\.net/\" to=\"https://$1ukr.net/\"/></ruleset>", "<ruleset name=\"Ukrnames.com\" 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=\"ULPGC.es\" f=\"Ulpgc.es.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ultimate Boot CD.com (partial)\" 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=\"UltraTools.com\" 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=\"Ultra HDTV (problematic)\" default_off=\"mismatched\" f=\"Ultra_HDTV-problematic.xml\"><rule from=\"^http://(?:www\\.)?ultrahdtv\\.net/\" to=\"https://ultrahdtv.net/\"/></ruleset>", "<ruleset name=\"Ultra HDTV (partial)\" default_off=\"failed ruleset test\" f=\"Ultra_HDTV.xml\"><rule from=\"^http://cdn\\.ultrahdtv\\.net/\" to=\"https://dcmk2gfkvro5j.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Ultrabug.fr (false MCB)\" default_off=\"mismatched\" platform=\"mixedcontent\" f=\"Ultrabug.xml\"><securecookie host=\"^(?:www\\.)?ultrabug\\.fr$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ultrasurf.us\" default_off=\"failed ruleset test\" f=\"Ultrasurf.us.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ulule\" platform=\"mixedcontent\" f=\"Ulule.xml\"><rule from=\"^http://(www\\.)?ulule\\.com/\" to=\"https://$1ulule.com/\"/><rule from=\"^http://(fr|de|es|it|br)\\.ulule\\.com/\" to=\"https://$1.ulule.com/\"/></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\" 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\" platform=\"cacert\" f=\"Umea_Hackerspace.se.xml\"><securecookie host=\"^social\\.umeahackerspace\\.se$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ume&#229; 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=\"unPAC\" default_off=\"connection 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\" 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://start\\.unblu\\.com/\" to=\"https://start.unblu.com/\"/></ruleset>", "<ruleset name=\"Unbounce.com\" 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=\"Underground Gamer\" default_off=\"failed ruleset test\" f=\"Undergroundgamer.xml\"><rule from=\"^http://(?:www\\.)?underground-gamer\\.com/\" to=\"https://www.underground-gamer.com/\"/></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\" 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\" 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\" default_off=\"failed ruleset test\" 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-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\" default_off=\"failed ruleset test\" 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=\"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\" 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=\"Unicef USA.org (partial)\" f=\"Unicef_USA.org.xml\"><exclusion pattern=\"^http://inspiredgifts\\.unicefusa\\.org/+(?!cart(?:$|[?/])|favicon\\.ico|node/|sites/)\"/><exclusion pattern=\"^http://www\\.unicefusa\\.org/+(?!(?:donate|user)(?:$|[?/])|favicon\\.ico|form/|sites/)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Unicom (partial)\" f=\"Unicom.xml\"><rule from=\"^http://totalrecall\\.switchingon\\.com/\" to=\"https://totalrecall.switchingon.com/\"/></ruleset>", "<ruleset name=\"Unified Social.com (partial)\" f=\"Unified_Social.com.xml\"><securecookie host=\"^login\\.unifiedsocial\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"unifiedtracking.com\" 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=\"mismatch\" 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)\" 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)\" 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=\"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=\"mismatch\" 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)\" 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)\" f=\"Univ-Montp3.fr.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Univ-SMB.fr\" f=\"Univ-SMB.fr.xml\"><rule from=\"^http://www\\.univ-smb\\.fr/\" to=\"https://www.univ-smb.fr/\"/></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\" default_off=\"expired, missing certificate chain\" platform=\"cacert\" 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&#233; Laval (partial)\" 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&#233; 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)\" 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)\" default_off=\"Additional testing recommended\" f=\"University-of-Alaska-Anchorage.xml\"><securecookie host=\"^(?:classes|coe|edit|elive|hosting|kb|longdistance|me|owa|student|technology|techsupport|webaccess|www)\\.uaa\\.alaska\\.edu$\" name=\".+\"/><exclusion pattern=\"^http://www\\.uaa\\.alaska\\.edu/map/(?:CampusMap\\.swf|interactive\\.cfm)\"/><rule from=\"^http://(classes|coe|edit|elive|kb|longdistance|me|owa|student|technology|techsupport|webaccess|www)\\.uaa\\.alaska\\.edu/\" to=\"https://$1.uaa.alaska.edu/\"/><rule from=\"^http://edit\\.www\\.uaa\\.alaska\\.edu/\" to=\"https://edit.uaa.alaska.edu/\"/><rule from=\"^http://hosting\\.uaa\\.alaska\\.edu/?$\" to=\"https://www.uaa.alaska.edu/informationtechnologyservices/\"/><rule from=\"^http://hosting\\.uaa\\.alaska\\.edu/(.+)\" to=\"https://hosting.uaa.alaska.edu/$1\"/><rule from=\"^http://moodle\\.uaa\\.alaska\\.edu(?:$|/.*)\" to=\"https://www.uaa.alaska.edu/classes/facultyresources/\"/><rule from=\"^http://womens\\.uaa\\.alaska\\.edu(?:$|/.*)\" to=\"https://www.uaa.alaska.edu/womensstudies/\"/><rule from=\"^https://www\\.uaa\\.alaska\\.edu/map/interactive\\.cfm\" to=\"http://www.uaa.alaska.edu/map/interactive.cfm\" downgrade=\"1\"/></ruleset>", "<ruleset name=\"University of Alaska Jobs (uakjobs.com)\" f=\"University-of-Alaska-Jobs.xml\"><securecookie host=\"^(?:www\\.)?uakjobs\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?uakjobs\\.com/\" to=\"https://www.uakjobs.com/\"/></ruleset>", "<ruleset name=\"University of Alaska (partial)\" platform=\"mixedcontent\" 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=\"mismatch\" 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)\" 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)\" 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=\"UChicago.edu (self-signed)\" default_off=\"self-signed\" f=\"University-of-Chicago-self-signed.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"UChicago.edu (partial)\" f=\"University-of-Chicago.xml\"><securecookie host=\".*\\.uchicago\\.edu$\" name=\".*\"/><rule from=\"^http://(ci\\.|proxy\\.)?uchicago\\.edu/\" to=\"https://www.$1uchicago.edu/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Colorado.edu (partial)\" default_off=\"failed ruleset test\" 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)\" 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)\" default_off=\"failed ruleset test\" 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)\" 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)\" 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)\" 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=&amp;MRP=0&amp;PROJECTID=1&amp;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=\"mismatch\" 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\"><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)\" 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)\" f=\"University-of-Ottawa.xml\"><rule from=\"^http://web5\\.uottawa\\.ca/\" to=\"https://web5.uottawa.ca/\"/></ruleset>", "<ruleset name=\"Ox.ac.uk (partial)\" 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-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=\"mismatch\" 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=\"mismatch\" 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)\" 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)\" default_off=\"failed ruleset test\" f=\"University-of-Strathclyde.xml\"><rule from=\"^http://www\\.strath\\.ac\\.uk/\" to=\"https://www.strath.ac.uk/\"/></ruleset>", "<ruleset name=\"Uni-Stuttgart.edu (self-signed)\" default_off=\"self-signed\" f=\"University-of-Stuttgart-self-signed.xml\"><securecookie host=\"^www\\.icp\\.uni-stuttgart\\.de$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?icp\\.uni-stuttgart\\.de/$\" to=\"https://www.icp.uni-stuttgart.de/~icp/\"/><rule from=\"^http://(?:www\\.)?icp\\.uni-stuttgart\\.de/\" to=\"https://www.icp.uni-stuttgart.de/\"/><rule from=\"^http://(mobox|fex\\.rus)\\.uni-stuttgart\\.de/\" to=\"https://$1.uni-stuttgart.de/\"/><rule from=\"^http://www\\.stud\\.uni-stuttgart\\.de/(css|img)/\" to=\"https://www.stud.uni-stuttgart.de/$1/\"/></ruleset>", "<ruleset name=\"Uni-Stuttgart.de (partial)\" f=\"University-of-Stuttgart.xml\"><securecookie host=\"^\\.uni-stuttgart\\.de$\" name=\"^BALANCEID$\"/><rule from=\"^http://(cert\\.)?uni-stuttgart\\.de/\" to=\"https://$1uni-stuttgart.de/\"/><rule from=\"^http://www\\.uni-stuttgart\\.de/(favicon\\.ico|piwik/|res/)\" to=\"https://www.uni-stuttgart.de/$1\"/><rule from=\"^http://www\\.rus\\.uni-stuttgart\\.de/(css|img)/\" to=\"https://www.rus.uni-stuttgart.de/$1/\"/></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)\" 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 (problematic)\" default_off=\"mismatched, self-signed\" f=\"University-of-Washington-self-signed.xml\"><rule from=\"^http:\" to=\"https:\"/></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://www\\.jsis\\.washington\\.edu/\" to=\"https://jsis.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://static\\.weboffice\\.uwa\\.edu\\.au/\" to=\"https://static.weboffice.uwa.edu.au/\"/></ruleset>", "<ruleset name=\"University of Wisconsin&#8211;Milwaukee (partial)\" 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://matt\\.ucc\\.asn\\.au/\" to=\"https://matt.ucc.asn.au/\"/></ruleset>", "<ruleset name=\"Buffalo.edu (partial)\" 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)\" 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)\" 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://news\\.uga\\.edu/\" to=\"https://news.uga.edu/\"/></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)\" 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)\" 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&amp;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\" f=\"University_of_Mainz-falsemixed.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Uni-Mainz.de (partial)\" 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)\" 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\" 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 Puerto Rico (partial)\" default_off=\"failed ruleset test\" f=\"University_of_Puerto_Rico.xml\"><securecookie host=\"^(?:www\\.)?laeditorialupr\\.com$\" name=\".+\"/><securecookie host=\"^.+\\.upr\\.edu$\" name=\".+\"/><rule from=\"^http://(www\\.)?laeditorialupr\\.com/\" to=\"https://$1laeditorialupr.com/\"/><rule from=\"^http://(fondodotal|patsiprod)\\.upr\\.edu/\" to=\"https://$1.upr.edu/\"/></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\" default_off=\"failed ruleset test\" 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\" 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&#252;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&#252;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\" 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://www\\.york\\.ac\\.uk/\" to=\"https://www.york.ac.uk/\"/></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\" 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=\"UnlimitedHost (partial)\" default_off=\"failed ruleset test\" f=\"UnlimitedHost.xml\"><rule from=\"^http://apollo\\.unlimitedhost\\.asia/\" to=\"https://apollo.unlimitedhost.asia/\"/></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\" 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=\"UnrealIRCD.org\" f=\"UnrealIRCD.org.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=\"connection refused\" f=\"Unreality_TV.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"unrestrict.li\" 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\" default_off=\"mismatched\" f=\"Unsearcher.org.xml\"><securecookie host=\"^unsearcher\\.org$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?unsearcher\\.org/\" to=\"https://unsearcher.org/\"/></ruleset>", "<ruleset name=\"Unseen.is (partial)\" f=\"Unseen.is.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Untangle.com (partial)\" 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://api\\.unthem\\.com/\" to=\"https://api.unthem.com/\"/></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\" 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=\"Up1.ca\" f=\"Up1.ca.xml\"><securecookie host=\"^\\.up1\\.ca$\" name=\".+\"/><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://mgpyh\\.b0\\.upaiyun\\.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\" 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=\"Uplink Labs.net\" f=\"Uplink_Labs.net.xml\"><rule from=\"^http://uplinklabs\\.net/\" to=\"https://www.uplinklabs.net/\"/><rule from=\"^http:\" to=\"https:\"/></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\"><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\" 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=\"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\" 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=\"urlQuery\" default_off=\"SSL error\" f=\"UrlQuery.xml\"><securecookie host=\"^urlquery\\.net$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?urlquery\\.net/\" to=\"https://urlquery.net/\"/></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\" f=\"Us-cert.gov.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"us.es\" f=\"Us.es.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"US Cyber Challenge\" default_off=\"Bad Cert\" f=\"Us_Cyber_Challenge.xml\"><rule from=\"^http://(?:www\\.)?uscyberchallenge\\.org/\" to=\"https://www.uscyberchallenge.org/\"/></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=\"UseResponse.com (false MCB)\" platform=\"mixedcontent\" f=\"UseResponse.com-falsemixed.xml\"><securecookie host=\"^(?:www)?\\.useresponse\\.com$\" name=\".+\"/><rule from=\"^http://www\\.useresponse\\.com/\" to=\"https://www.useresponse.com/\"/></ruleset>", "<ruleset name=\"UseResponse.com (partial)\" f=\"UseResponse.com.xml\"><exclusion pattern=\"^http://www\\.useresponse\\.com/+(?!favicon\\.ico|public/)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Use SSH 001.com\" 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.xml\"><securecookie host=\"^(?:blog\\.|feedback\\.|www\\.)?userecho\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"UserScape\" f=\"UserScape.xml\"><securecookie host=\"^\\.userscape\\.com$\" name=\".+\"/><rule from=\"^http://(www\\.|drop\\.)?userscape\\.com/\" to=\"https://www.userscape.com/\"/></ruleset>", "<ruleset name=\"UserScripts.org\" default_off=\"failed ruleset test\" f=\"UserScripts.xml\"><exclusion pattern=\"^http://(?:www\\.)?userscripts\\.org/scripts/source/\"/><rule from=\"^http://www\\.userscripts\\.org/\" to=\"https://userscripts.org/\"/><rule from=\"^http://userscripts\\.org/\" to=\"https://userscripts.org/\"/></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\" 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\" f=\"Userscontent.net.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\" 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=\"mismatch\" 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=\"utfs.org (partial)\" platform=\"cacert\" 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=\"connection dropped\" 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&#232;ncia\" 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\" 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://origin\\.varcentral\\.com\\.au/\" to=\"https://origin.varcentral.com.au/\"/></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\" 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\" 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)\" f=\"VCAB.com.xml\"><rule from=\"^http://secure\\.vcab\\.com/\" to=\"https://secure.vcab.com/\"/></ruleset>", "<ruleset name=\"VCD.org\" 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\"><securecookie host=\"^\\.?vdownloader\\.com$\" name=\".*\"/><rule from=\"^http://(www\\.)?vdownloader\\.(?:com|es)/\" to=\"https://$1vdownloader.com/\"/></ruleset>", "<ruleset name=\"VEGAS INC\" default_off=\"expired, mismatched, self-signed\" f=\"VEGAS_INC.xml\"><rule from=\"^http://(?:www\\.)?vegasinc\\.com/\" to=\"https://www.vegasinc.com/\"/><rule from=\"^http://(?:asset|media|photo)\\.vegasinc\\.com/\" to=\"https://asset.vegasinc.com/\"/></ruleset>", "<ruleset name=\"VEVO\" 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=\"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=\"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=\"VOICE Daily Deals.com\" f=\"VOICE-Daily-Deals.xml\"><securecookie host=\".*\\.voicedailydeals\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"VPAC.org\" 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\" 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\" 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=\"VPNSearch.net\" default_off=\"failed ruleset test\" f=\"VPNSearch.net.xml\"><securecookie host=\"^(?:w*\\.)?vpnsearch\\.net$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?vpnsearch\\.net/\" to=\"https://vpnsearch.net/\"/></ruleset>", "<ruleset name=\"VPNSecure.me\" f=\"VPNSecure.me.xml\"><securecookie host=\"^(?:\\.|www\\.)?vpnsecure\\.me$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"VPNService.ru\" default_off=\"failed ruleset test\" f=\"VPNService.ru.xml\"><securecookie host=\"^\\.vpnservice\\.ru$\" 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\" 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\" default_off=\"failed ruleset test\" 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\" 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\" f=\"VTunnel.xml\"><securecookie host=\"^(?:.*\\.)?vtunnel\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"VU.nl (partial)\" 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)\" 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\" 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=\"Vagrantup.com (partial)\" f=\"Vagrantup.com.xml\"><securecookie host=\"^\\.vagrantup\\.com$\" name=\".+\"/><rule from=\"^http://vagrantup\\.com/\" to=\"https://www.vagrantup.com/\"/><rule from=\"^http://downloads\\.vagrantup\\.com/\" to=\"https://vagrant-downloads.herokuapp.com/\"/><rule from=\"^http://files\\.vagrantup\\.com/\" to=\"https://s3.amazonaws.com/files.vagrantup.com/\"/><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 CU.org\" 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\" f=\"Valtion-taloudellinen-tutkimuskeskus.xml\"><securecookie host=\"^(?:www\\.)?vatt\\.fi$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Valtiontalouden tarkastusvirasto\" default_off=\"failed ruleset test\" 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\" 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)\" 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=\"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=\"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)\" default_off=\"failed ruleset test\" f=\"Vanco.co.uk.xml\"><securecookie host=\"^o-zone\\.vanco\\.co\\.uk$\" name=\".+\"/><rule from=\"^http://o-zone\\.vanco\\.co\\.uk/\" to=\"https://o-zone.vanco.co.uk/\"/></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)\" 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.xml\"><rule from=\"^http://([^/:@\\.]+)\\.vanillamastercard\\.com/\" to=\"https://$1.vanillamastercard.com/\"/></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=\"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)\" 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://www\\.varusteleka\\.fi/\" to=\"https://www.varusteleka.fi/\"/></ruleset>", "<ruleset name=\"Vast (partial)\" 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\" f=\"Vast_Interactive.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Vates.fr\" f=\"Vates.fr.xml\"><securecookie host=\"^piwik\\.vates\\.fr$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Vault.cca.edu\" default_off=\"failed ruleset test\" f=\"Vault.cca.edu.xml\"><rule from=\"^http://vault\\.cca\\.edu/\" to=\"https://vault.cca.edu/\"/></ruleset>", "<ruleset name=\"Vault project.io\" f=\"Vault_project.io.xml\"><securecookie host=\"^\\.vaultproject\\.io$\" 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=\"vc.ru\" 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\" 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\" 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\" 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=\"Vegas Deal Hunter.com\" default_off=\"connection refused\" f=\"Vegas_Deal_Hunter.xml\"><securecookie host=\"^\\.vegasdealhunter\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Vegas Partner Lounge\" 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=\"Veil-Framework.com\" f=\"Veil-Framework.com.xml\"><securecookie host=\"^(?:www\\.)?veil-framework\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Velaro.com (mismatches)\" default_off=\"mismatch\" 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)\" default_off=\"failed ruleset test\" 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=\"mismatch\" 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)\" 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\" f=\"Ventivmedia.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ventoso.org\" default_off=\"mismatch\" 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\" 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\" 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\" 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)\" f=\"Verisign.xml\"><securecookie host=\"^(?:.*\\.)?verisign(?:inc)?\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Verisign Labs.com (partial)\" 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)\" f=\"Verizon.xml\"><exclusion pattern=\"^http://(?:www\\.)?verizon\\.com/+\\?(?:.*&amp;)?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\" default_off=\"failed ruleset test\" 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\" default_off=\"failed ruleset test\" f=\"Versus-Technologies.xml\"><securecookie host=\"^(?:.*\\.)?vstech\\.net$\" name=\".*\"/><rule from=\"^http://(\\w+\\.)?vstech\\.net/\" to=\"https://$1vstech.net/\"/></ruleset>", "<ruleset name=\"Vertical Acuity (mismatches)\" default_off=\"mismatch\" f=\"Vertical-Acuity-mismatches.xml\"><rule from=\"^http://(?:www\\.)?verticalacuity\\.com/\" to=\"https://www.verticalacuity.com/\"/></ruleset>", "<ruleset name=\"Vertical Acuity (partial)\" default_off=\"failed ruleset test\" f=\"Vertical-Acuity.xml\"><rule from=\"^http://scripts\\.verticalacuity\\.com/\" to=\"https://d2frbsrahs9p5r.cloudfront.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://cts\\.vresp\\.com/\" to=\"https://cts.vresp.com/\"/></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\" default_off=\"failed ruleset test\" f=\"Vesica.xml\"><securecookie host=\"^vesica\\.ws$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Vesper Marine\" f=\"Vesper_Marine.xml\"><securecookie host=\"^\\.vespermarine\\.co(?:m\\.au|\\.nz|\\.uk)$\" name=\".+\"/><rule from=\"^http://(www\\.)?vespermarine\\.co(m\\.au|\\.nz|\\.uk)/\" to=\"https://$1vespermarine.co$2/\"/></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\" 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://secure\\.vexxhost\\.com/\" to=\"https://secure.vexxhost.com/\"/></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\" f=\"Viacom.xml\"><rule from=\"^http:\" to=\"https:\"/><exclusion pattern=\"http://api.mtvnn.com/v2/mrss\"/></ruleset>", "<ruleset name=\"Viaduct.io\" 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)\" 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\" 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)\" 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)\" 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=\"Vid.me\" f=\"Vid.me.xml\"><securecookie host=\"^\\.vid\\.me$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"VidStore (partial)\" f=\"VidStore.xml\"><securecookie host=\"^ads\\.vidstore\\.com$\" name=\".+\"/><rule from=\"^http://ads\\.vidstore\\.com/\" to=\"https://ads.vidstore.com/\"/></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\" f=\"Videa.hu.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"VideoBloom.com (partial)\" f=\"VideoBloom.com.xml\"><rule from=\"^http://my\\.videobloom\\.com/\" to=\"https://my.videobloom.com/\"/></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 (partial)\" f=\"VideoLAN.xml\"><exclusion pattern=\"^http://(?:ganesh|rsync|stats)\\.videolan\\.org/(?!$)\"/><securecookie host=\".\" name=\".\"/><rule from=\"^http://(?:ganesh|rsync|stats)\\.videolan\\.org/$\" to=\"https://www.videolan.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"VideoPP.com (partial)\" default_off=\"failed ruleset test\" f=\"VideoPP.com.xml\"><securecookie host=\"^videopp\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?videopp\\.com/\" to=\"https://videopp.com/\"/></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\" f=\"Videoemail.com.xml\"><securecookie host=\"^sc\\.videoemail\\.com$\" name=\".+\"/><rule from=\"^http://sc\\.videoemail\\.com/\" to=\"https://sc.videoemail.com/\"/></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\" f=\"Vidup.me-falsemixed.xml\"><securecookie host=\"^\\.vidup\\.me$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Vidup.me (partial)\" 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=\"mismatch\" f=\"Vildling.xml\"><securecookie host=\"^vidling\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?vidling\\.com/\" to=\"https://vidling.com/\"/></ruleset>", "<ruleset name=\"Villa Saint Exup&#233;ry (mismatches)\" default_off=\"mismatch\" f=\"Villa-Saint-Exupery-mismatches.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Villa Saint Exup&#233;ry (partial)\" f=\"Villa-Saint-Exupery.xml\"><securecookie host=\"^www\\.villahostels\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Villas.com\" f=\"Villas.com.xml\"><exclusion pattern=\"^http://(?:[^./]+\\.){2,}v(?:comstatic|illas)\\.com/\"/><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Vimention.com (partial)\" default_off=\"failed ruleset test\" f=\"Vimention.com.xml\"><rule from=\"^http://(?:www\\.)?vimention\\.com/\" to=\"https://vimention.com/\"/><rule from=\"^http://(users|pictures|static-eu1|static)\\.vimention\\.com/\" to=\"https://$1.vimention.com/\"/><rule from=\"^http://(?:www\\.)?vimention\\.mobi/\" to=\"https://m.vimention.com/\"/></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\" 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\" 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=\"missing certificate chain\" platform=\"cacert\" f=\"Vinilox.eu.xml\"><securecookie host=\"^status\\.vinilox\\.eu$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Vinumeris.com\" f=\"Vinumeris.com.xml\"><securecookie host=\"^(?:www\\.)?vinumeris\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"vinuthomas.com (partial)\" default_off=\"mismatch\" f=\"Vinuthomas.com.xml\"><rule from=\"^http://blogs\\.vinuthomas\\.com/\" to=\"https://blogs.vinuthomas.com/\"/></ruleset>", "<ruleset name=\"Violet Darkling.com\" 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=\"mismatch\" 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)\" 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 &amp; 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)\" 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\" 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\" 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\" 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\" 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 (partial)\" f=\"Visa.xml\"><exclusion pattern=\"^http://(www.)?visa\\.com/atmlocator\"/><rule from=\"^http://(?:www\\.)?visa\\.com/\" to=\"https://www.visa.com/\"/><rule from=\"^http://corporate\\.visa\\.com/_(cs|image)s/\" to=\"https://corporate.visa.com/_$1s/\"/><rule from=\"^http://usa\\.visa\\.com/(css|ext|img|merchants)/\" to=\"https://usa.visa.com/$1/\"/><rule from=\"^https://usa\\.visa\\.com/(?=about_visa/|download/|personal/|sitewide/)\" to=\"http://usa.visa.com/\" downgrade=\"1\"/></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 Europe.com (partial)\" f=\"Visa_Europe.xml\"><rule from=\"^http://(?:www\\.)?visaeurope\\.com/(?=(?:\\w\\w/idoc\\.ashx|\\w\\w/member_area\\.aspx|assets|favicon\\.ico|plugins|templates|WebResource\\.axd)(?:$|[?/]))\" to=\"https://www.visaeurope.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=\"Visaforchina.org\" f=\"Visaforchina.org.xml\"><rule from=\"^http://visaforchina\\.org/\" to=\"https://www.visaforchina.org/\"/><rule from=\"^http://([^/:@]+)?\\.visaforchina\\.org/\" to=\"https://$1.visaforchina.org/\"/></ruleset>", "<ruleset name=\"Visalia Times-Delta\" default_off=\"failed ruleset test\" 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=\"VisiStat.com (partial)\" default_off=\"failed ruleset test\" 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 (partial)\" default_off=\"failed ruleset test\" f=\"Visible-Measures.xml\"><securecookie host=\"^auth\\.visiblemeasures\\.com$\" name=\".+\"/><rule from=\"^http://(auth|cdn)\\.visiblemeasures\\.com/\" to=\"https://$1.visiblemeasures.com/\"/><rule from=\"^http://(?:od2|video\\.od)\\.visiblemeasures\\.com/\" to=\"https://video.od.visiblemeasures.com/\"/><rule from=\"^http://(?:www\\.)?viewablemedia\\.net/\" to=\"https://www.viewablemedia.net/\"/><rule from=\"^http://ad\\.viewablemedia\\.net/\" to=\"https://ad.viewablemedia.net/\"/></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\" 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)\" 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\" 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 (self-signed)\" default_off=\"self-signed\" f=\"Vispa-self-signed.xml\"><securecookie host=\"^webmail\\.vispa\\.com$\" name=\".*\"/><rule from=\"^http://webmail\\.vispa\\.com/\" to=\"https://webmail.vispa.com/\"/></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\" default_off=\"failed ruleset test\" 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\" default_off=\"failed ruleset test\" 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)\" 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=\"mismatch\" 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)\" default_off=\"failed ruleset test\" 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://portal\\.vitelity\\.net/\" to=\"https://portal.vitelity.net/\"/></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=\"^\\.vizury\\.com$\" name=\"^(?:OAID|r|vizid|vizp|vs)$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Vizzit.se\" f=\"Vizzit.se.xml\"><rule from=\"^http://www\\.vizzit\\.se/\" to=\"https://www.vizzit.se/\"/></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=\"vn5socks.com\" default_off=\"failed ruleset test\" f=\"Vn5socks.com.xml\"><securecookie host=\"^www\\.vn5socks\\.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=\"mismatched\" f=\"Vocaroo.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Vocativ.com (partial)\" 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)\" 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)\" 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\" f=\"Vodafone.pt.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Vodafone.com (partial)\" 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)\" 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 (broken)\" default_off=\"breaks site, cert expired\" f=\"Voice.fi.xml\"><rule from=\"^http://voice\\.fi/\" to=\"https://voice.fi/\"/><rule from=\"^http://www\\.voice\\.fi/\" to=\"https://www.voice.fi/\"/></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&#252;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&#178; (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\" default_off=\"failed ruleset test\" 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\" default_off=\"failed ruleset test\" 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\" 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\" 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\" 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\" 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\" 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=\"vsexshop.ru (partial)\" f=\"Vsexshop.ru.xml\"><rule from=\"^http://(?:[lm]\\.vimgs|vsexshop)\\.ru/images/\" to=\"https://vsexshop.ru/images/\"/></ruleset>", "<ruleset name=\"Vtiger.com\" 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\" default_off=\"failed ruleset test\" f=\"VuFind.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Vub.sk\" default_off=\"failed ruleset test\" 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\" 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=\"Vulnscan.org\" f=\"Vulnscan.org.xml\"><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)\" 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)\" 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://s\\.w-x\\.co/\" to=\"https://s.w-x.co/\"/></ruleset>", "<ruleset name=\"W.org\" f=\"W.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"w00tads.com\" 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=\"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=\"W.A.S.T.E.\" default_off=\"self-signed\" f=\"WASTE.xml\"><rule from=\"^http://(?:www\\.)?waste\\.org/\" to=\"https://waste.org/\"/></ruleset>", "<ruleset name=\"WAYF.dk (partial)\" 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\" 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\" 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\"><exclusion pattern=\"^http://(?:www\\.)?whsmith\\.co\\.uk/(?!App_Themes/|(?:Books|CatalogAndSearch|E?Products|GiftCardProducts|Voting)(?:$|\\?|/)|favicon\\.ico|GiftsGamesAndToys/\\w|[iI]mages/|Script/|StationeryAndCards/\\w|[sS]upport/|WebResource\\.axd)\"/><securecookie host=\"^(?:www\\.)?magazines\\.whsmith\\.co\\.uk$\" name=\".+\"/><rule from=\"^http://(?:secure\\.|www\\.)?whsmith\\.co\\.uk/\" to=\"https://secure.whsmith.co.uk/\"/><rule from=\"^http://(www\\.)?magazines\\.whsmith\\.co\\.uk/\" to=\"https://$1magazines.whsmith.co.uk/\"/></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\" 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\" f=\"WLxrs.com.xml\"><rule from=\"^http://(\\w+)\\.wlxrs\\.com/\" to=\"https://$1.wlxrs.com/\"/></ruleset>", "<ruleset name=\"WM Jobs.co.uk\" 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-Tao.com\" f=\"WP-Tao.com.xml\"><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)\" 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=\"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=\"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\" 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=\"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=\"WakaTime.com\" f=\"WakaTime.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Wakelet.com\" 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\" 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)\" 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\" 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\"><exclusion pattern=\"^http://markets.wallstreetcn.com/(?!css/)\"/><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)\" 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\" default_off=\"failed ruleset test\" 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\" f=\"Wand.com.xml\"><securecookie host=\"^(?:www\\.)?wand\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"wandoujia\" f=\"Wandoujia.xml\"><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\" f=\"War_Z.xml\"><securecookie host=\"^(?:account)?\\.playwarz\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Warez-BB.org (problematic)\" default_off=\"expired\" f=\"Warez-BB.org-problematic.xml\"><securecookie host=\"^www\\.warez-bb\\.org$\" name=\".+\"/><rule from=\"^http://img9\\.warez-bb\\.org/\" to=\"https://img9.warez-bb.org/\"/><rule from=\"^http://(?:www\\.)?warez-bb\\.org/\" to=\"https://www.warez-bb.org/\"/></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)\" 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\" 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)\" f=\"Warzone2100.xml\"><securecookie host=\"^(?:.*\\.)?wz2100\\.net$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Wash Post.com (partial)\" 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)\" 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&amp;vd=autodiscover\"/><rule from=\"^http://autodiscover\\.samfox\\.wustl\\.edu/+([^?]+)$\" to=\"https://outlook.office365.com/$1?realm=samfox.wustl.edu&amp;vd=autodiscover\"/><rule from=\"^http://autodiscover\\.samfox\\.wustl\\.edu/+(.+)\" to=\"https://outlook.office365.com/$1&amp;realm=samfox.wustl.edu&amp;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=\"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\" 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\" 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=\"Westdeutscher Rundfunk\" 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\" f=\"We-Heart-It.xml\"><securecookie host=\"^\\.?weheartit\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"WeChat (partial)\" default_off=\"failed ruleset test\" f=\"WeChat.xml\"><rule from=\"^http://((?:admin|compass\\.admin|api|file\\d|login|res|support|video|web\\d?|webpush\\d?|www)\\.)?wechat\\.com/\" to=\"https://$1wechat.com/\"/></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=\"WeGotWax.com\" default_off=\"failed ruleset test\" f=\"WeGotWax.com.xml\"><securecookie host=\"^(?:www)?\\.wegotwax.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?wegotwax\\.com/\" to=\"https://www.wegotwax.com/\"/></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\" f=\"We_Are_Wizards.io.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"We Fight Censorship (partial)\" default_off=\"failed ruleset test\" f=\"We_Fight_Censorship.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"We The Goondas.in\" f=\"We_The_Goondas.in.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)\" 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)\" default_off=\"failed ruleset test\" 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)\" default_off=\"failed ruleset test\" 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)\" 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)\" 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\" 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=\"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\" 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\" f=\"WebGo.xml\"><securecookie host=\"^(www\\.|website\\.|www\\.website|login\\.|support\\.)?webgo\\.de$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"WebGo24.de\" 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)\" 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)\" default_off=\"mismatched\" 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)\" 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\" 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\" 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\" default_off=\"failed ruleset test\" 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 (mismatches)\" default_off=\"bluehost certificate\" f=\"WebType-mismatches.xml\"><rule from=\"^http://blog\\.webtype\\.com/\" to=\"https://blog.webtype.com/~webtypec/blog/\"/></ruleset>", "<ruleset name=\"WebType.com (partial)\" f=\"WebType.xml\"><exclusion pattern=\"^http://www\\.webtype\\.com/(?!global/|local/)\"/><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\" 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)\" default_off=\"failed ruleset test\" f=\"Web_Service_Award.xml\"><rule from=\"^http://ssl\\.webserviceaward\\.com/\" to=\"https://ssl.webserviceaward.com/\"/></ruleset>", "<ruleset name=\"Web Tune Factory\" f=\"Web_Tune_Factory.xml\"><rule from=\"^http://(?:www\\.)?w-tune\\.com/\" to=\"https://www.w-tune.com/\"/></ruleset>", "<ruleset name=\"Web of Knowledge\" default_off=\"failed ruleset test\" 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=\"WebcamBoys (partial)\" default_off=\"failed ruleset test\" f=\"WebcamBoys.xml\"><securecookie host=\"^\\.webcamboys\\.us$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></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=\"connection dropped\" f=\"Webfest_Global.xml\"><securecookie host=\"^www\\.webfestglobal\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"webfusion (partial)\" default_off=\"failed ruleset test\" 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=\"Webkit\" default_off=\"shows default page\" f=\"Webkit.xml\"><securecookie host=\"^pageloc\\.com$\" 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://webmail\\.loxinfo\\.co\\.th/\" to=\"https://webmail.loxinfo.co.th/\"/></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\" default_off=\"mismatched, missing certificate chain, self-signed\" 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)\" 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)\" default_off=\"failed ruleset test\" 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\" 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)\" f=\"Webs.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Websec Weekly.org\" f=\"Websec_Weekly.org.xml\"><securecookie host=\"^\\.websecweekly\\.org$\" name=\"^(?:__cfduid|cf_clearance)$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Websecurify.com\" 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)\" 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\" default_off=\"failed ruleset test\" f=\"WebsiteGrowers.com.xml\"><securecookie host=\"^(?:www)?\\.websitegrowers\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Website Pipeline (partial)\" 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&amp;sTask=captcha&amp;task=captcha&amp;pf=1&amp;r_id=\\d+&amp;lang=\\w\\w&amp;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)\" default_off=\"failed ruleset test\" 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\" default_off=\"expired\" platform=\"cacert\" f=\"Websterwood.com.xml\"><rule from=\"^http://(?:www\\.)?websterwood\\.com/+\" to=\"https://blog.websterwood.com/\"/><rule from=\"^http://blog\\.websterwood\\.com/\" to=\"https://blog.websterwood.com/\"/></ruleset>", "<ruleset name=\"webstyle.ch\" 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\" 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)\" 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)\" 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=\"Webtru.st Keyserver\" default_off=\"mismatch\" f=\"Webtru.st.xml\"><rule from=\"^http://www\\.pgp\\.webtru\\.st/\" to=\"https://pgp.webtru.st/\"/><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\" 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=\"connection dropped\" 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)\" 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.com (mixed content)\" platform=\"mixedcontent\" f=\"Weibo.com-mixedcontent.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Weibo.com (partial)\" f=\"Weibo.com.xml\"><securecookie host=\"^(?:upload\\.api|yahoo\\.tw)\\.weibo\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Weiss Research\" default_off=\"failed ruleset test\" 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)\" 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\" f=\"Wello.com.xml\"><securecookie host=\"^(?:www)?\\.wello\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Wells Fargo.com\" f=\"WellsFargo.xml\"><securecookie host=\".*\\.wellsfargo\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Welt.de\" 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://image\\.wemakeprice\\.com/\" to=\"https://image.wemakeprice.com/\"/></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=\"Wemineltc.com\" f=\"Wemineltc.com.xml\"><rule from=\"^http://(?:www\\.)?wemineltc\\.com/\" to=\"https://www.wemineltc.com/\"/><securecookie host=\"^(?:www\\.)?wemineltc\\.com$\" name=\".*\"/></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=\"Battle for Wesnoth (partial)\" 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)\" 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)\" 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\" 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)\" 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\" 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.gov.uk (partial)\" 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=\"WhatCD\" f=\"WhatCD.xml\"><rule from=\"^http://(?:www\\.)?what\\.cd/\" to=\"https://what.cd/\"/><rule from=\"^http://(m|ssl)\\.what\\.cd/\" to=\"https://$1.what.cd/\"/></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\" 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=\"Whatimg.com\" f=\"Whatimg.com.xml\"><rule from=\"^http://(?:www\\.)?whatimg\\.com/\" to=\"https://whatimg.com/\"/></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\" 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\" 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)\" 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)\" default_off=\"failed ruleset test\" 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\" f=\"White_Lisbon.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"whitehathouston.com\" platform=\"cacert\" 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)\" f=\"WhoSampled.com.xml\"><rule from=\"^http://(www\\.)?whosampled\\.com/(?=accounts/(?:login|registration)(?:$|[?/])|static/)\" to=\"https://$1whosampled.com/\"/></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=\"mismatch\" 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=\"Whos Hiring.io\" f=\"Whos_Hiring.io.xml\"><securecookie host=\"^(?:\\.|www\\.)?whoshiring\\.io$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></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=\"WiDSL\" f=\"WiDSL.xml\"><rule from=\"^http:\" to=\"https:\"/></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=\"WiFi Pineapple.com\" f=\"WiFi_Pineapple.com.xml\"><securecookie host=\"^www\\.wifipineapple\\.com$\" name=\".+\"/><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=\"Widgetbox.com (partial)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Widgetbox.com.xml\"><securecookie host=\"^www\\.widgetbox\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?widget(box|server)\\.com/\" to=\"https://www.widget$1.com/\"/><rule from=\"^http://pub\\.widgetbox\\.com/\" to=\"https://pub.widgetbox.com/\"/><rule from=\"^http://support\\.widgetbox\\.com/generated/\" to=\"https://generated.zendesk.com/generated/\"/><rule from=\"^http://(cdn|p|t)\\.widgetserver\\.com/\" to=\"https://$1.widgetserver.com/\"/></ruleset>", "<ruleset name=\"WiebeTech.com\" f=\"WiebeTech.com.xml\"><rule from=\"^http://(?:www\\.)?wiebetech\\.com/+\" to=\"https://www.cru-inc.com/\"/></ruleset>", "<ruleset name=\"WienIT EDV Dienstleistungsgesellschaft mbH\" 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)\" 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\" 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.org\" f=\"WikiLeaks.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://(?:slot\\d\\.)?images\\d?\\.wikia\\.nocookie\\.net/\" to=\"https://images.wikia.com/\"/><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=\"Wikileaks Party (partial)\" f=\"Wikileaks_Party.xml\"><rule from=\"^http://(www\\.)?wikileaksparty\\.org\\.au/(component|form|image|plugin|template)s/\" to=\"https://$1wikileaksparty.org.au/$2s/\"/></ruleset>", "<ruleset name=\"Wikimedia\" 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=\"Wikivs.com\" f=\"Wikivs.com.xml\"><rule from=\"^http://(?:www\\.)?wikivs\\.com/\" to=\"https://www.wikivs.com/\"/></ruleset>", "<ruleset name=\"Wild West Domains.com\" 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&amp;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\" f=\"Wildfiregames.com.xml\"><securecookie host=\"^(www\\.|releases\\.)?wildfiregames\\.com\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"WILD LIFE Sydney Zoo\" 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)\" default_off=\"failed ruleset test\" 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\" default_off=\"failed ruleset test\" 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://mobile\\.willhaben\\.at/\" to=\"https://mobile.willhaben.at/\"/></ruleset>", "<ruleset name=\"William Hill.com (mismatches)\" default_off=\"mismatch\" f=\"William-Hill-mismatches.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"William Hill.com (partial)\" 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 (self-signed)\" default_off=\"self-signed, mismatch\" platform=\"mixedcontent\" f=\"Williams-College-self-signed.xml\"><rule from=\"^http://(archives|biology|ces|chapin|chemistry|committees|communications|conferences|dean|dean-faculty|facultynotes|hmf|hr|library|math|mobile-services|oit|parents|physics|president|science|sustainability)\\.williams\\.edu/\" to=\"https://$1.williams.edu/\"/></ruleset>", "<ruleset name=\"Williams College (partial)\" f=\"Williams-College.xml\"><securecookie host=\"^\\w+\\.williams\\.edu$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?williams\\.edu/\" to=\"https://www.williams.edu/\"/><rule from=\"^http://(admission|cf|francis|glow|it|roomscheduler|sarah|sites|wcma|web|webprspct)\\.williams\\.edu/\" to=\"https://$1.williams.edu/\"/><rule from=\"^http://people\\.williams\\.edu/\" to=\"https://sites.williams.edu/\"/></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)\" default_off=\"failed ruleset test\" 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\" 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\" default_off=\"failed ruleset test\" f=\"WinRAR.xml\"><securecookie host=\"^.*\\.win-rar\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?win-rar\\.com/\" to=\"https://www.win-rar.com/\"/></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\" default_off=\"failed ruleset test\" 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)\" f=\"Wind_River.com.xml\"><securecookie host=\"^developer\\.windriver\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Window Maker.org (mismatches)\" default_off=\"mismatch\" platform=\"cacert\" f=\"Window-Maker-mismatches.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Window Maker.org (partial)\" platform=\"cacert\" f=\"Window-Maker.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\" 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://winhawille\\.edu\\.hel\\.fi/\" to=\"https://winhawille.edu.hel.fi/\"/></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 (partial)\" default_off=\"failed ruleset test\" f=\"Winoptions.com.xml\"><rule from=\"^http://cms\\.winoptions\\.com/(?=appProxy/|css/|favicon\\.ico|/?homemediaProxy/|images/|mediaProxy/)\" to=\"https://cms.winoptions.com/\"/></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\" default_off=\"failed ruleset test\" f=\"Wippies.xml\"><rule from=\"^http://webmail\\.wippies\\.com/\" to=\"https://webmail.wippies.com/\"/></ruleset>", "<ruleset name=\"Wire.com (partial)\" f=\"Wire.com.xml\"><securecookie host=\"^(?:sunrise|www)\\.wire\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?wire\\.com/\" to=\"https://www.wire.com/\"/><rule from=\"^http://su(nrise|pport)\\.wire\\.com/\" to=\"https://su$1.wire.com/\"/></ruleset>", "<ruleset name=\"WireEdit.com\" 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\" 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\" 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=\"Wireshark.org\" f=\"Wireshark.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Wirral.gov.uk (false MCB)\" platform=\"mixedcontent\" 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\" 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)\" 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)\" 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=\"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)\" 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://wk3\\.org/\" to=\"https://wk3.org/\"/></ruleset>", "<ruleset name=\"WoSign.cn\" f=\"WoSign.cn.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"WoSign.com\" 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=\"Woahh\" default_off=\"failed ruleset test\" f=\"Woahh.xml\"><securecookie host=\"^\\.woahh\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Wolfire Games (partial)\" default_off=\"expired, mismatch\" f=\"Wolfire-Games.xml\"><rule from=\"^http://(?:www\\.)?wolfire\\.com/\" to=\"https://www.wolfire.com/\"/><rule from=\"^http://(blog|trac)\\.wolfire\\.com/\" to=\"https://$1.wolfire.com/\"/></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.com (experimental)\" default_off=\"Breaks login\" f=\"Wolfram_Alpha.xml\"><exclusion pattern=\"^http://www\\d\\w?\\.wolframalpha\\.com/input/(?:pod|recalculate)\\.jsp\"/><securecookie host=\"^\\.wolframalpha\\.com$\" name=\"^__utm\\w$\"/><securecookie host=\"^(?:volunteer|www)\\.wolframalpha\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?wolframalpha\\.com/\" to=\"https://www.wolframalpha.com/\"/><rule from=\"^http://(volunteer|www\\d\\w?)\\.wolframalpha\\.com/\" to=\"https://$1.wolframalpha.com/\"/></ruleset>", "<ruleset name=\"Wolfram CDN.com\" f=\"Wolfram_CDN.com.xml\"><rule from=\"^http://www\\.wolframcdn\\.com/\" to=\"https://www.wolframcdn.com/\"/></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=\"connection 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=\"mismatch\" f=\"Women-Innovate-Mobile.xml\"><rule from=\"^http://(?:www\\.)?womeninnovatemobile\\.com/(display|layout|storage|universal)/\" to=\"https://womeninnovatemobile.com/$1/\"/></ruleset>", "<ruleset name=\"Women Sex Pova.com (partial)\" f=\"Women_Sex_Pova.com.xml\"><rule from=\"^http://(www\\.)?womensexpova\\.com/(?=assets/|favicon\\.ico|public/)\" to=\"https://$1womensexpova.com/\"/></ruleset>", "<ruleset name=\"Women on Web\" 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)\" 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\" 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)\" 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\" default_off=\"mismatch\" f=\"WordPress-blogs.xml\"><securecookie host=\"^dictionaryblog\\.cambridge\\.org$\" name=\".*\"/><securecookie host=\"^eatocracy\\.cnn\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?armservers\\.com/\" to=\"https://armservers.com/\"/><rule from=\"^http://blog\\.bandcamp\\.com/\" to=\"https://blog.bandcamp.com/\"/><rule from=\"^http://(?:www\\.)?blogmaverick\\.com/\" to=\"https://blogmaverick.com/\"/><rule from=\"^http://dictionaryblog\\.cambridge\\.org/\" to=\"https://dictionaryblog.cambridge.org/\"/><rule from=\"^http://(?:www\\.)?charles-carreon\\.com/\" to=\"https://charles-carreon.com/\"/><rule from=\"^http://(eatocracy|tech\\.fortune|globalpublicsquare)\\.cnn\\.com/\" to=\"https://$1.cnn.com/\"/><rule from=\"^http://(?:www\\.)?dietrolldie\\.com/\" to=\"https://dietrolldie.com/\"/><rule from=\"^http://news\\.efinancialcareers\\.com/\" to=\"https://news.efinancialcareers.com/\"/><rule from=\"^http://(?:www\\.)?emubrightfutures\\.org/\" to=\"https://emubrightfutures.org/\"/><rule from=\"^http://blog\\.gitorious\\.org/\" to=\"https://blog.gitorious.org/\"/><rule from=\"^http://(?:www\\.)?irrlab\\.com/\" to=\"https://irrlab.com/\"/><rule from=\"^http://(?:www\\.)?johnrennie\\.net/\" to=\"https://johnrennie.net/\"/><rule from=\"^http://(?:www\\.)?krystalstatus\\.co\\.uk/\" to=\"https://krystalstatus.co.uk/\"/><rule from=\"^http://blog\\.magellanmodels\\.com/\" to=\"https://blog.magellanmodels.com/\"/><rule from=\"^http://blog\\.nanigans\\.com/\" to=\"https://blog.nanigans.com/\"/><rule from=\"^http://blog\\.opendz\\.org/\" to=\"https://blog.opendz.org/\"/><rule from=\"^http://blog\\.opengroup\\.org/\" to=\"https://blog.opengroup.org/\"/><rule from=\"^http://blog\\.peopleschoice\\.com/\" to=\"https://blog.peopleschoice.com/\"/><rule from=\"^http://(?:www\\.)?perspectives-project\\.org/\" to=\"https://perspectives-project.org/\"/><rule from=\"^http://(magazine|servicesblog)\\.redhat\\.com/\" to=\"https://$1.redhat.com/\"/><rule from=\"^http://blog\\.rstudio\\.org/\" to=\"https://blog.rstudio.org/\"/><rule from=\"^http://blog\\.safariflow\\.com/\" to=\"https://blog.safariflow.com/\"/><rule from=\"^http://blog\\.side\\.cr/\" to=\"https://blog.side.cr/\"/><rule from=\"^http://blog\\.suitabletech\\.com/\" to=\"https://blog.suitabletech.com/\"/><rule from=\"^http://(business|entertainment|healthland|ideas|keepingscore|life|lightbox|nation|newsfeed|science|style|swampland|techland|thepage|world)\\.time\\.com/\" to=\"https://$1.time.com/\"/><rule from=\"^http://(?:www\\.)?tppinfo\\.org/\" to=\"https://tppinfo.org/\"/><rule from=\"^http://(dee|support)\\.uidaho\\.edu/\" to=\"https://$1.uidaho.edu/\"/><rule from=\"^http://blog\\.verticalacuity\\.com/\" to=\"https://blog.verticalacuity.com/\"/><rule from=\"^http://(?:www\\.)?wordpress\\.tv/\" to=\"https://wordpress.tv/\"/><rule from=\"^http://blog\\.wordpress\\.tv/\" to=\"https://blog.wordpress.tv/\"/><rule from=\"^http://blog\\.zamzar\\.com/\" to=\"https://blog.zamzar.com/\"/></ruleset>", "<ruleset name=\"WordPress (partial)\" f=\"WordPress.xml\"><exclusion pattern=\"^http://(?:[^/:@\\.]+\\.)?wordpress\\.com/latex\\.php(?:\\?.*)?$\"/><exclusion pattern=\"^http://s-plugins\\.wordpress\\.org/\"/><securecookie host=\"^wordpress\\.com$\" name=\"^wordpress_homepage$\"/><securecookie host=\"^\\.wordpress\\.com$\" name=\"^(?:km_\\w\\w|kvcd|optimizely\\w+)$\"/><securecookie host=\"^wordpress\\.org$\" name=\".+\"/><securecookie host=\".*\\.wordpress\\.(?:com|org)$\" name=\"^__utm\\w$\"/><rule from=\"^http://wordpress\\.(com|org)/\" to=\"https://wordpress.$1/\"/><rule from=\"^http://([^/:@\\.]+)\\.(blog|files)\\.wordpress\\.com/\" to=\"https://$1.$2.wordpress.com/\"/><rule from=\"^http://(\\w+)\\.blog\\.files\\.wordpress\\.com/\" to=\"https://$1-blog.files.wordpress.com/\"/><rule from=\"^http://s\\.wordpress\\.(com|org)/\" to=\"https://www.wordpress.$1/\"/><rule from=\"^http://s\\d\\.wordpress\\.(com|org)/\" to=\"https://secure.wordpress.$1/\"/><rule from=\"^http://([^/:@\\.]+)\\.wordpress\\.(com|org)/\" to=\"https://$1.wordpress.$2/\"/><rule from=\"^http://s\\.stats\\.wordpress\\.com/\" to=\"https://stats.wordpress.com/\"/><rule from=\"^http://([^/:@\\.]+)\\.(trac|svn)\\.wordpress\\.org/\" to=\"https://$1.$2.wordpress.org/\"/><rule from=\"^http://(i[012]|s\\d*)\\.wp\\.com/\" to=\"https://$1.wp.com/\"/></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\" 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=\"WorkKafe.com\" default_off=\"mismatched\" f=\"WorkKafe.com.xml\"><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\" 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://sdsurf\\.workforcehosting\\.com/\" to=\"https://sdsurf.workforcehosting.com/\"/></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\" f=\"Workplace-Giving.xml\"><rule from=\"^http://(?:www\\.)?workplacegiving\\.co\\.uk/\" to=\"https://www.workplacegiving.co.uk/\"/></ruleset>", "<ruleset name=\"Workplace Gender Equality Agency\" default_off=\"failed ruleset test\" 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=\"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 Development Movement\" default_off=\"failed ruleset test\" f=\"World_Development_Movement.xml\"><securecookie host=\"^\\.wdm\\.org\\.uk$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"The World Food Prize\" 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 (partial)\" f=\"Worldreader.org.xml\"><rule from=\"^http://cdn\\.worldreader\\.org/\" to=\"https://d2rw7b0vuslxd3.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Worn Through.com\" default_off=\"mismatch\" 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\" 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\" 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)\" 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=\"www.cable-tv-deals.com\" default_off=\"failed ruleset test\" f=\"Www.cable-tv-deals.com.xml\"><securecookie host=\"^\\.cable-tv-deals\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Wyenet\" default_off=\"expired\" f=\"Wyenet.xml\"><securecookie host=\"^(?:.*\\.)?wyenet\\.co\\.uk$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?wyenet\\.(?:co\\.uk|net)/\" to=\"https://www.wyenet.co.uk/\"/></ruleset>", "<ruleset name=\"Wykop.pl (partial)\" default_off=\"failed ruleset test\" f=\"Wykop.pl.xml\"><securecookie host=\"^(?:www\\.)?wykop\\.pl$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Wyndham (mismatches)\" default_off=\"mismatches\" 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\" f=\"WyzerMe.xml\"><securecookie host=\"^www\\.wyzerme\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"wza.us\" platform=\"cacert\" 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\" default_off=\"mismatched\" f=\"X-blog.jp.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"x-info.org\" 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=\"XAGYL.com\" f=\"XAGYL.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"XAGYL.us\" 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\" f=\"XChatData.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"XDA-Developers.com (false MCB)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"XDA-Developers.com-falsemixed.xml\"><exclusion pattern=\"^http://(?:www\\.)?xda-developers\\.com/+(?:favicon\\.ico|wp-content/|wp-includes/)\"/><securecookie host=\"^(?:www\\.)?xda-developers\\.com$\" name=\".+\"/><rule from=\"^http://(www\\.)?xda-developers\\.com/(?!favicon\\.ico|wp-content/|wp-includes/)\" to=\"https://$1xda-developers.com/\"/></ruleset>", "<ruleset name=\"XDA Developers (partial)\" f=\"XDA-Developers.xml\"><exclusion pattern=\"^http://(?:www\\.)?xda-developers\\.com/+(?!favicon\\.ico|wp-content/|wp-includes/)\"/><exclusion pattern=\"^http://forum\\.xda-developers\\.com/(?!clientscript/|css/|favicon\\.ico|images/)\"/><rule from=\"^http://(forum\\.|www\\.)?xda-developers\\.com/\" to=\"https://$1xda-developers.com/\"/><rule from=\"^http://(?:images|(?:(?:buttons|cdn|icons|img\\d?)\\.)?media)\\.xda-developers\\.com/\" to=\"https://forum.xda-developers.com/\"/><rule from=\"^http://cdn\\.www\\.xda-developers\\.com/\" to=\"https://www.xda-developers.com/\"/></ruleset>", "<ruleset name=\"XE (partial)\" f=\"XE.xml\"><rule from=\"^http://(?:www\\.)?xe\\.com/(themes/|xetrade/(?:help/)?login)\" to=\"https://www.xe.com/$1\"/><rule from=\"^http://fx2\\.xe\\.com/\" to=\"https://fx2.xe.com/\"/><rule from=\"^http://s\\.xe\\.com/\" to=\"https://gp1.wac.edgecastcdn.net/00157D/\"/></ruleset>", "<ruleset name=\"XEU.com (partial)\" f=\"XEU.com.xml\"><securecookie host=\"^\\.shop\\.xeu\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"XFCE.org (self-signed)\" default_off=\"self-signed\" f=\"XFCE.org-self-signed.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"XFCE.org (partial)\" f=\"XFCE.org.xml\"><securecookie host=\"^(?:.*\\.)xfce\\.org$\" 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://(?:[a-z]{2}\\.|www\\.)?xhamster\\.com/(?!/*(?:favicon\\.ico|login\\.php|signup\\.php))\"/><exclusion pattern=\"^http://static\\.xhamster\\.com/crossdomain\\.xml\"/><securecookie host=\"^\\.\" name=\"^(?:first_visit$|mobileRef$|splash-|stats|uvts$)\"/><securecookie host=\"^partners\\.\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"xHamster Premium Pass.com (partial)\" 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\" f=\"XM-CDN.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"XM.com\" 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\" 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://www\\.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\" 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\" f=\"XSSposed.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"xVideosx.tv\" f=\"XVideosx.tv.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Xagasoft.com\" default_off=\"expired, missing certificate chain\" f=\"Xagasoft.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Xakep.ru\" 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\" 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)\" 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\" 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=\"Xemail.de\" default_off=\"missing certificate chain\" f=\"Xemail.de.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\" 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\" f=\"Xen_VPS.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Xeneris.net (partial)\" 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\" 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)\" 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.com (partial)\" f=\"Xiaomi.com.xml\"><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\" default_off=\"failed ruleset test\" f=\"Xperience-Days.xml\"><securecookie host=\"^secure\\.xperiencedays\\.com$\" name=\".+\"/><rule from=\"^http://secure\\.xperiencedays\\.com/\" to=\"https://secure.xperiencedays.com/\"/><rule from=\"^http://(?:static\\.|www\\.)?xperiencedays\\.com/\" to=\"https://secure.xperiencedays.com/\"/></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\" 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)\" 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=\"mismatch\" 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\" 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=\"Xumaa.com\" default_off=\"mismatched\" f=\"Xumaa.com.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=\"Xyntekinc.com\" default_off=\"Certificate mismatch\" f=\"Xyntekinc.com.xml\"><rule from=\"^http://(?:www\\.)?xyntekinc\\.com/\" to=\"https://xyntekinc.com/\"/><securecookie host=\"^(?:www\\.)?xyntekinc\\.com$\" name=\".*\"/></ruleset>", "<ruleset name=\"Xyratex.com\" 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!\" f=\"YEAH.xml\"><rule from=\"^http://(?:www\\.)?yeahtv\\.com/\" to=\"https://www.yeahtv.com/\"/></ruleset>", "<ruleset name=\"YGTech.Tools\" 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=\"YTS.to\" f=\"YTS.to.xml\"><securecookie host=\"^.*\\.yts\\.to$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></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)\" 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\" default_off=\"mismatched, self-signed\" f=\"Yabause.org.xml\"><securecookie host=\"^forums\\.yabause\\.org$\" 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\" f=\"Yacuna.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Yadro.ru (partial)\" 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://(?:www\\.)?totaltravel\\.com/images/\"/><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://(?:www\\.)?totaltravel\\.co(?:m|\\.uk)/\" to=\"https://au.totaltravel.yahoo.com/\"/><rule from=\"^http://builder\\.totaltravel\\.com/\" to=\"https://builder.totaltravel.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&amp;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&amp;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&amp;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&amp;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\"><exclusion pattern=\"^http://custom\\.search\\.yahoo\\.co\\.jp/(?!favicon\\.ico|images/)\"/><exclusion pattern=\"^http://omiai\\.yahoo\\.co\\.jp/(?!favicon\\.ico|profile/create)\"/><securecookie host=\"^\\.yahoo\\.co\\.jp$\" name=\"^B$\"/><securecookie host=\"^\\.forms\\.business\\.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)\" 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\" 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)\" 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)\" 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)\" 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)\" 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)\" 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)\" 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)\" 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=\"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=\"Yawnbox.com\" f=\"Yawnbox.com.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\" default_off=\"mismatched\" f=\"Yeah.net.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://yeah\\.net/\" to=\"https://www.yeah.net/\"/><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=\"^(?:\\.|www\\.)?yedxxx24hr\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Yellow Pages IMA (partial)\" 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://secure\\.yellowpages\\.ca/\" to=\"https://secure.yellowpages.ca/\"/></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\" f=\"Yeshiva.xml\"><rule from=\"^http://(?:www\\.)?yu\\.edu/\" to=\"https://yu.edu/\"/></ruleset>", "<ruleset name=\"yespic69.com\" f=\"Yespic69.com.xml\"><securecookie host=\"^(?:w*\\.)?yespic69\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Yesss.at\" f=\"Yesss.at.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ygnition (partial)\" 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://yho\\.com/\" to=\"https://yho.com/\"/></ruleset>", "<ruleset name=\"YieldSelect.com\" default_off=\"missing certificate chain\" f=\"YieldSelect.com.xml\"><securecookie host=\"^(?:www\\.)?yieldselect\\.com$\" 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\" 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\" 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\" 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\" default_off=\"Certificates are invalid\" f=\"York.xml\"><rule from=\"^http://(?:www\\.)?york\\.edu/\" to=\"https://york.edu/\"/></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://cds1\\.yospace\\.com/\" to=\"https://cds1.yospace.com/\"/></ruleset>", "<ruleset name=\"Yotsuba Archiver (mismatches)\" default_off=\"mismatch\" f=\"Yotsuba-Archiver-mismatches.xml\"><rule from=\"^http://noodlebox\\.dyndns\\.info/\" to=\"https://noodlebox.dyndns.info/\"/><rule from=\"^http://(?:www\\.)?installgentoo\\.net/\" to=\"https://www.installgentoo.net/\"/><rule from=\"^http://youshould\\.installgentoo\\.net/\" to=\"https://youshould.installgentoo.net/\"/></ruleset>", "<ruleset name=\"Yotsuba Archiver (partial)\" default_off=\"failed ruleset test\" f=\"Yotsuba-Archiver.xml\"><rule from=\"^http://archive\\.installgentoo\\.net/\" to=\"https://archive.installgentoo.net/\"/></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\" 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 (partial)\" platform=\"mixedcontent\" f=\"Youku.com.xml\"><exclusion pattern=\"^http://static\\.ykimg\\.com/\"/><rule from=\"^https://static\\.ykimg\\.com/\" to=\"http://static.ykimg.com/\" downgrade=\"1\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Youm7.com (partial)\" 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\" f=\"Young-Pirates.Eu.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"YoungMinds.org.uk\" default_off=\"failed ruleset test\" 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\" 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\" 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=\"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\" 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 Logical Fallacy Is.com (partial)\" f=\"Your_Logical_Fallacy_Is.com.xml\"><rule from=\"^http://www\\.yourlogicalfallacyis\\.com/\" to=\"https://yourlogicalfallacyis.com/\"/><rule from=\"^http:\" to=\"https:\"/></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\" f=\"Your_Video_Host.com.xml\"><securecookie host=\"^\\.yourvideohost\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"yourcounciljobs.co.uk\" 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\" 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=\"YoursAV.net\" default_off=\"self-signed\" f=\"YoursAV.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Yourvideofile.org\" f=\"Yourvideofile.org.xml\"><rule from=\"^http://(?:www\\.)?yourvideofile\\.org/\" to=\"https://www.yourvideofile.org/\"/></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)\" 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\" 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://www\\.yuri\\.org\\.uk/\" to=\"https://www.yuri.org.uk/\"/></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\" 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\" f=\"ZTunnel.xml\"><securecookie host=\"^(?:w*\\.)?ztunnel\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ZUNO.cz\" 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\" f=\"ZUNO.sk.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ZUS.pl (partial)\" 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\" 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\" 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\" 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)\" 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\"><exclusion pattern=\"^http://(?:www\\.)?zamzar\\.com/+(?:$|\\?)\"/><exclusion pattern=\"^http://(?:www\\.)?zamzar\\.com/blank\\.htm\"/><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)\" 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\" 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\" 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=\"Zaption\" 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\" default_off=\"failed ruleset test\" 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)\" 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\" f=\"Zayo.com.xml\"><securecookie host=\"^(?:www)?\\.zayo\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Zazzle (mismatches)\" default_off=\"mismatch\" 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 (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=\"connection dropped\" 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\" 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)\" 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)\" 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://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://radar\\.zendesk\\.com/\" to=\"https://zendesk.github.io/radar/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Zendition.net\" 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=\"mismatch\" 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)\" 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 (partial)\" platform=\"cacert\" f=\"Zenspider.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Zentyal.com (partial)\" f=\"Zentyal.com.xml\"><securecookie host=\"^\\.store\\.zentyal\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Zentyal.org (partial)\" f=\"Zentyal.org.xml\"><securecookie host=\"^(?:forum|tracker|wiki)\\.zentyal\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Zerigo.com\" 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=\"ZeroNet.io\" f=\"ZeroNet.io.xml\"><securecookie host=\".\" name=\".\"/><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 (partial)\" default_off=\"failed ruleset test\" f=\"Zeromq.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Zerowater.com\" 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\" 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)\" f=\"ZgnCDN.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Zhihu (partial)\" f=\"Zhihu.xml\"><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\" 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=\"connection 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)\" 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\" 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=\"Ziplist.com\" default_off=\"expired cert\" f=\"Ziplist.com.xml\"><rule from=\"^http://(?:www\\.)?ziplist\\.com/\" to=\"https://www.ziplist.com/\"/></ruleset>", "<ruleset name=\"Zipy.co.il\" 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\" 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=\"connection dropped\" 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=\"Zonglovani.info\" f=\"Zonglovani.info.xml\"><rule from=\"^http://(?:www\\.)?zonglovani\\.info/\" to=\"https://zonglovani.info/\"/></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=\"connection dropped\" 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\" 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\" 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)\" 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=\"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)\" 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.org (expired)\" platform=\"cacert\" default_off=\"expired\" f=\"Zugaina.org-problematic.xml\"><rule from=\"^http://zugaina\\.org/\" to=\"https://www.zugaina.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Zugaina (partial)\" f=\"Zugaina.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Zuhah.com\" f=\"Zuhah.com.xml\"><securecookie host=\".\" name=\".\"/><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)\" 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\" f=\"Zylon.net-falsemixed.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Zylon.net (partial)\" 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=\"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=\"A Book Apart.com\" f=\"abookapart.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><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\" 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)\" 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\" f=\"active24.co.uk.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Active24.com\" f=\"active24.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Active24.cz\" f=\"active24.cz.xml\"><rule from=\"^http://active24\\.cz/\" to=\"https://www.active24.cz/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Active24.de\" f=\"active24.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Active24.es\" f=\"active24.es.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Active24.nl\" 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\" 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\" 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=\"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=\"adnet.pro\" f=\"adnet.pro.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"adnetexpress.net\" f=\"adnetexpress.net.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Adoption Link.co.uk\" f=\"adoptionlink.co.uk.xml\"><exclusion pattern=\"http://(?:[^./]+\\.){2}adoptionlink\\.co\\.uk/\"/><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ADR.org (partial)\" f=\"adr.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AdReclaim.com\" 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=\"adswitcher.com\" f=\"adswitcher.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><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=\"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=\"agilialinux.net\" f=\"agilialinux.net.xml\"><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=\"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=\"aircrack-ng.org (partial)\" 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=\"Air Warriors.com\" f=\"airwarriors.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ais.by\" 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\" f=\"akbars.ru.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\" 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=\"Alfred Xing.com\" f=\"alfredxing.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><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\" 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=\"allAfrica (partial)\" f=\"allAfrica.xml\"><rule from=\"^http://(?:www\\.)?allafrica\\.com/(commerce/user/(?:manage|subscribe)|static)/\" to=\"https://allafrica.com/$1/\"/></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)\" 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\" f=\"allinvestments.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Allmend.ch\" default_off=\"mismatched\" platform=\"cacert\" f=\"allmend.ch.xml\"><securecookie host=\"^\\w\" name=\".\"/><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=\"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=\"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=\"amara.org\" f=\"amara-org.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\"><securecookie host=\"^\\.\" name=\"^(?:aps-trtmnt$|s_v)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Amazon.co.uk\" 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/+(?:.+/)?(?:dp|e)(?:$|[?/])\"/><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=\"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=\"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\" 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\" 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=\"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=\"AndrewMohawk.com\" default_off=\"missing certificate chain\" f=\"andrewmohawk.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><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\" f=\"annotum.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><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)\" 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=\"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\" f=\"apichangelog.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"apk-dl.com\" 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=\"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=\"apricityos.com\" f=\"apricityos.com.xml\"><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\" 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=\"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=\"arigus-tv.ru\" f=\"arigus-tv.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ArmA 2 (Partial)\" default_off=\"Bad Cert\" f=\"arma2.com.xml\"><rule from=\"^http://(?:www\\.)?arma2\\.com/\" to=\"https://www.arma2.com/\"/></ruleset>", "<ruleset name=\"ArmA Tactics (Partial)\" default_off=\"Bad Cert\" f=\"armatactics.com.xml\"><rule from=\"^http://(?:www\\.)?armatactics\\.com/\" to=\"https://www.armatactics.com/\"/></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=\"arte (partial)\" platform=\"mixedcontent\" f=\"arte.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\" 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\" f=\"asfera.info.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ashford.gov.uk (partial)\" 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=\"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=\"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\" 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=\"atlseccon\" f=\"atlseccon.xml\"><rule from=\"^http://(www\\.)?atlseccon\\.com/\" to=\"https://atlseccon.com/\"/></ruleset>", "<ruleset name=\"ATM IA.com\" f=\"atmia.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><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\" 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=\"Autistica.org.uk\" f=\"autistica.org.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><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&#246;\" 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\" f=\"avoinyliopisto.xml\"><rule from=\"^http://(?:www\\.)?avoinyliopisto\\.fi/\" to=\"https://www.avoinyliopisto.fi/\"/><securecookie host=\"^(?:www)?\\.avoinyliopisto\\.fi\" name=\".*\"/></ruleset>", "<ruleset name=\"Aylesbury Vale DC.gov.uk (partial)\" 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=\"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=\"Bad Dragon.com (partial)\" 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=\"Baidu.com (MCB)\" platform=\"mixedcontent\" f=\"baidu.com-mixedcontent.xml\"><securecookie host=\"^\\w\" name=\".\"/><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=\"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=\"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=\"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)\" 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)\" 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=\"bataysk-gorod.ru\" 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)\" 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=\"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\"><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)\" 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=\"Beers of Europe\" platform=\"mixedcontent\" f=\"beersofeurope.co.uk.xml\"><rule from=\"^http://www\\.beersofeurope\\.co\\.uk/\" to=\"https://www.beersofeurope.co.uk/\"/></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=\"benchmarkjs.com\" f=\"benchmarkjs.com.xml\"><rule from=\"^http://(?:www\\.)?benchmarkjs\\.com/\" to=\"https://benchmarkjs.com/\"/><securecookie host=\"^benchmarkjs\\.com$\" name=\".*\"/></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=\"betternet.co\" f=\"betternet.co.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Better Science.org\" f=\"betterscience.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><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)\" 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=\"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=\"bger.ch\" 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\" f=\"bicomsystems.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bider &amp; 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=\"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)\" 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\" 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=\"BitCasa.com (partial)\" 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=\"BitcoinTrezor.com\" f=\"bitcointrezor.com.xml\"><securecookie host=\".\" name=\".\"/><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\" 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\" 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)\" 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=\"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=\"blogsmithmedia.com (partial)\" f=\"blogsmithmedia.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bloomsky (partial)\" 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=\"Bundesministerium f&#252;r Verkehr und digitale Infrastruktur\" f=\"bmvi.de.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)\" 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)\" 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\" 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=\"bogner.sh\" f=\"bogner.sh.xml\"><exclusion pattern=\"^http://(?:[^./]+\\.){2,}bogner\\.sh/\"/><securecookie host=\"^\\w\" 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 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\" f=\"boomstarter.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"bosfera.ru\" platform=\"mixedcontent\" 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=\"bot.brew.sh\" f=\"bot.brew.sh.xml\"><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=\"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=\"BrassRing.com\" f=\"brassring.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Brave.com\" f=\"brave.com.xml\"><securecookie host=\".\" name=\".\"/><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=\"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=\"Bristol.gov.uk (partial)\" 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=\"broadagesports.com\" f=\"broadagesports.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Broadland.gov.uk (false MCB)\" platform=\"mixedcontent\" 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\\?(?:.*&amp;)?articleid=6(?:$|&amp;)|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=\"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=\"btjunkie\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"btjunkie.xml\"><rule from=\"^http://dl\\.btjunkie\\.org/\" to=\"https://dl.btjunkie.org/\"/><rule from=\"^http://(?:www\\.)?btjunkie\\.org/\" to=\"https://btjunkie.org/\"/></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)\" 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=\"bunkus.org\" f=\"bunkus.org.xml\"><securecookie host=\"^www\\.bunkus\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"bunsenlabs.org\" f=\"bunsenlabs.org.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=\"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=\"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\" 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=\"CAES Energy.org\" f=\"caesenergy.com.xml\"><securecookie host=\"^\\.\" name=\"^citrix_ns\"/><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)\" 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&amp;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&amp;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)\" 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=\"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)\" 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)\" 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\" f=\"carecareersdevon.org.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Care International.org.uk (partial)\" 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)\" 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=\"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=\"cdnmaster\" f=\"cdnmaster.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=\"censornet.com\" 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\" 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)\" 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://www\\.sw\\.centrum\\.cz/\" to=\"https://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:\" 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=\"&#268;esk&#253; hosting\" 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=\"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=\"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\" 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.xml\"><rule from=\"^http:\" to=\"https:\"/><rule from=\"^https://(?:www\\.)?checkmyrota\\.com/\" to=\"https://checkmyrota.com/\"/></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=\"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)\" 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)\" f=\"chinafile.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><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)\" 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=\"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)\" f=\"citizensadvice.org.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Citra-emu.org\" 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 Service.gov.uk (partial)\" 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=\"CK12.org (partial)\" f=\"ck12.org.xml\"><securecookie host=\"^\\.\" name=\"^(?:_ga|optimizely)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CLAS Consultants\" default_off=\"failed ruleset test\" f=\"clasconsultants.net.xml\"><securecookie host=\"^(?:.*\\.)?clasconsultants\\.net$\" name=\".+\"/><rule from=\"^http://clasconsultants\\.net/\" to=\"https://www.clasconsultants.net/\"/><rule from=\"^http://([^/:@]+)?\\.clasconsultants\\.net/\" to=\"https://$1.clasconsultants.net/\"/></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=\"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=\"clickhouse.yandex\" f=\"clickhouse.yandex.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Clicknupload.link\" 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=\"cloudbees.com\" 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=\"CMake.org\" f=\"cmake.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CMS.gov (partial)\" 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 (partial)\" f=\"cnblogs.xml\"><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=\"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=\"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=\"coinmarketcap.com\" f=\"coinmarketcap.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"cointelgraph.com\" 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=\"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)\" 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=\"complinet.com\" f=\"complinet.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ComputerBild.de\" 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=\"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=\"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\" 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=\"Copeland.gov.uk (partial)\" f=\"copeland.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><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=\"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\" 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)\" 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)\" 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\" 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=\"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\" f=\"crazespaces.pw.xml\"><securecookie host=\"^(www\\.)?crazespaces\\.pw$\" name=\".+\"/><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\" 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\" 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=\"CSC Portal.org.uk\" f=\"cscportal.org.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CSOA 15 GATXS.org\" default_off=\"expired\" f=\"csoa15gatxs.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ctkarch.org\" f=\"ctkarch.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CubeCraft\" f=\"cubecraft.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"cublinux.com\" 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)\" 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\" 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=\"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=\"Daofile.com\" f=\"daofile.com.xml\"><securecookie host=\".\" name=\".\"/><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=\"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)\" 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=\"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\" 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=\"deSEC\" 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)\" 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\" 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)\" 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\" f=\"declaredthoughtfulness.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=\"Democracy Club.org.uk\" f=\"democracyclub.org.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"democrator.ru\" f=\"democrator.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"dennogumi.org\" f=\"dennogumi.org.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"deploybot.com\" 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\"><exclusion pattern=\"^http://derstandard\\.at/$\"/><exclusion pattern=\"^http://www\\.derstandard\\.at/$\"/><exclusion pattern=\"^http://mobil\\.derstandard\\.at/$\"/><rule from=\"^http://(www\\.)?derstandard\\.at/(ajax|css|img|js|kursinfo|wetter/Content/img)/\" to=\"https://derstandard.at/$2/\"/><rule from=\"^http://mobil\\.derstandard\\.at/(ajax|css|img|js|kursinfo|wetter/Content/img)/\" to=\"https://mobil.derstandard.at/$1/\"/><rule from=\"^http://epaper\\.derstandard\\.at/\" to=\"https://epaper.derstandard.at/\"/><rule from=\"^http://images\\.derstandard\\.at/\" to=\"https://images.derstandard.at/\"/><rule from=\"^http://livestat\\.derstandard\\.at/\" to=\"https://livestat.derstandard.at/\"/></ruleset>", "<ruleset name=\"DETI NI.gov.uk (partial)\" 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\" f=\"deutschland-spielt.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Devalate.com\" f=\"devalate.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><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=\"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=\"DHHS.gov (partial)\" f=\"dhhs.gov.xml\"><rule from=\"^http://(?:www\\.)?ori\\.dhhs\\.gov/\" to=\"https://ori.hhs.gov/\"/></ruleset>", "<ruleset name=\"DHI-scotland.com\" f=\"dhi-scotland.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DHSSPS NI.gov.uk (partial)\" 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=\"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=\"Disability.gov (false MCB)\" platform=\"mixedcontent\" f=\"disability.gov-falsemixed.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://blog\\.disability\\.gov/\" to=\"https://usodep.blogs.govdelivery.com/\"/></ruleset>", "<ruleset name=\"Discover Carlisle.co.uk\" f=\"discovercarlisle.co.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"divShare.com\" platform=\"mixedcontent\" 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=\"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=\"dltags.com\" f=\"dltags.com.xml\"><securecookie host=\".\" name=\".\"/><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=\"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\" 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=\"Domain Punch.com\" f=\"domainpunch.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DomainSite.com\" f=\"domainsite.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><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=\"domtele.com\" 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=\"Dorset Alert.co.uk\" f=\"dorsetalert.co.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\".swiss\" f=\"dot.swiss.xml\"><rule from=\"^http://nic\\.swiss/\" to=\"https://www.nic.swiss/\"/><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\" 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=\"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\" 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\" 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=\"du00.cc\" f=\"du00.cc.xml\"><exclusion pattern=\"^http://www\\.du00\\.cc/read/\\d+/\\d+/\\d+\\.html\"/><exclusion pattern=\"^http://www\\.du00\\.cc/t/t\\.php\\?id=\"/><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\" 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=\"Dynamic 1001.eu (partial)\" f=\"dynamic1001.eu.xml\"><securecookie host=\"^\\w\" name=\".\"/><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-ShopBrokers\" default_off=\"failed ruleset test\" f=\"e-ShopBrokers.xml\"><securecookie host=\"^www\\.eshopbrokers\\.co\\.uk$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?eshopbrokers\\.co\\.uk/\" to=\"https://www.eshopbrokers.co.uk/\"/></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=\"eBid.net\" f=\"eBid.net.xml\"><rule from=\"^http://([A-Za-z]+\\.)?ebid\\.net/\" to=\"https://$1ebid.net/\"/></ruleset>", "<ruleset name=\"eGenix.com\" 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\" 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=\"earthvpn.com\" f=\"earthvpn.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"east.ru (partial)\" 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)\" 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=\"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\" f=\"ebayclassifieds.com-falsemixed.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"eBay Classifieds.com (partial)\" 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\" 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=\"eCops.org.uk\" f=\"ecops.org.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><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=\"edina.ac.uk (partial)\" 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)\" 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=\"EducationUSA.info\" f=\"educationusa.info.xml\"><securecookie host=\"^\\w\" name=\".\"/><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=\"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\" 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=\"elec.ru\" 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\" f=\"electric-cloud.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ELEKTRO PALOU&#268;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\" 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\" f=\"emfcamp.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Empire Blue.com (partial)\" 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\" f=\"empirehost.me.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"EMS Software.com (partial)\" 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=\"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)\" 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=\"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=\"enterbrain.co.jp\" f=\"enterbrain.co.jp.xml\"><securecookie host=\"^\\w\" name=\".\"/><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)\" 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://www\\.eon-hungaria\\.com/\" to=\"https://www.eon-hungaria.com/\"/></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=\"Escapia.com\" platform=\"mixedcontent\" f=\"escapia.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"eSchools.co.uk (partial)\" f=\"eschools.co.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><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=\"eternallybored.org\" f=\"eternallybored.org.xml\"><rule from=\"^http://www\\.eternallybored\\.org/\" to=\"https://eternallybored.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"etherpad.fr\" f=\"etherpad.fr.xml\"><rule from=\"^http://(?:www\\.)?etherpad\\.fr/\" to=\"https://etherpad.fr/\"/></ruleset>", "<ruleset name=\"ETmirror.com\" 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=\"eurobilltracker.com\" f=\"eurobilltracker.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Europe-Consommateurs.eu\" default_off=\"mismatched, self-signed\" f=\"europe-consommateurs.eu.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Europeana.eu (partial)\" platform=\"mixedcontent\" f=\"europeana.eu.xml\"><securecookie host=\"^\\w\" name=\".\"/><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=\"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=\"Ewebcart.com\" f=\"ewebcart.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"eweiqi (partial)\" f=\"eweiqi.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=\"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=\"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=\"exsila\" f=\"exsila.ch.xml\"><rule from=\"^http://(?:www\\.)?exsila\\.ch/\" to=\"https://www.exsila.ch/\"/></ruleset>", "<ruleset name=\"ExtraTorrent live.com\" 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\" f=\"eyeota.net.xml\"><securecookie host=\"^\\w\" name=\".\"/><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\" f=\"fact.group.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"factor.io\" 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\" 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=\"FARA.gov (partial)\" f=\"fara.gov.xml\"><securecookie host=\"^\\w\" name=\".\"/><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=\"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 the Future.gov\" f=\"feedthefuture.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=\"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=\"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\" 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)\" f=\"fir.im.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Firmstep.com (MCB)\" platform=\"mixedcontent\" 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)\" 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=\"fixstars.com (partial)\" 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=\"flinkster\" f=\"flinkster.xml\"><rule from=\"^http://www\\.flinkster\\.de/\" to=\"https://www.flinkster.de/\"/></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=\"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=\"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\" 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://franceinter\\.fr/\" to=\"https://www.franceinter.fr/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"francescopalazzo.com\" f=\"francescopalazzo.xml\"><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=\"Fredrik Olofsson.com\" f=\"fredrikolofsson.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"free.com.tw\" f=\"free.com.tw.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\" f=\"freecode.club.xml\"><securecookie host=\".\" name=\".\"/><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=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\".\\.freenode\\.(net|org)$\" name=\".\"/><securecookie host=\"\\.freenode\\.org$\" name=\".+\"/><rule from=\"^http://freenode\\.org/\" to=\"https://www.freenode.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"free OVI.com\" 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=\"freshmeat.club\" 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=\"Friends of NRA.org\" f=\"friendsofnra.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"froggyNET.com\" default_off=\"shows another domain\" f=\"froggyNET.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\" default_off=\"mismatched\" f=\"fsoa.org.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"fsrar.ru (partial)\" 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\" f=\"ft.com-mixedcontent.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ftp.rnl.tecnico.ulisboa.pt\" 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=\"G2Links.com\" f=\"g2links.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"G4S.com (partial)\" 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\" f=\"gamecraft.cz.xml\"><rule from=\"^http://www\\.gamecraft\\.cz/\" to=\"https://gamecraft.cz/\"/><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\" 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\" 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\" 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)\" 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=\"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=\"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=\"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=\"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=\"Get.no (partial)\" 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 Mondo\" f=\"getmondo.co.uk.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\"^\\w\" 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=\"gibraltar.at\" f=\"gibraltar.at.xml\"><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=\"githost.io\" f=\"githost.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=\"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=\"go00gle.com\" f=\"go00gle.com.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\"^\\w\" name=\".\"/><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=\"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=\"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\" f=\"goldesel.to.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"goodline.info\" f=\"goodline.info.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"gorcom.ru (partial)\" f=\"gorcom.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=\"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=\"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=\"Gravity.com (false MCB)\" platform=\"mixedcontent\" f=\"gravity.com-falsemixed.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://blog\\.gravity\\.com/\" to=\"https://www.gravity.com/blog/\"/><exclusion pattern=\"^http://blog\\.gravity\\.com/(?!$)\"/><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\" 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=\"growerscup.coffee\" f=\"growerscup.coffee.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"growingio\" f=\"growingio.xml\"><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)\" 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\" f=\"halton.gov.uk-falsemixed.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Halton.gov.uk (partial)\" 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=\"HardForum.com\" f=\"hardforum.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><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)\" 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\" 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=\"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\" f=\"hcstx.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"hdslb.com\" f=\"hdslb.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"HD Vest\" 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)\" f=\"healthnet.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"hebdo.ch\" f=\"hebdo.ch.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=\"Hengxinli.com\" f=\"hengxinli.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></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=\"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 Wetland Park (partial)\" f=\"hkwetlandpark.xml\"><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=\"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=\"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)\" 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)\" 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\" f=\"honeynet.org.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\"^\\w\" name=\".\"/><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\" 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=\"connection dropped\" 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\" f=\"hotel.ch.xml\"><rule from=\"^http://(?:www\\.)?hotel\\.ch/\" to=\"https://www.hotel.ch/\"/></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\" 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)\" 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=\"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=\"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\" 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=\"hydranodes.de\" f=\"hydranodes.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"hydraproxy.party\" 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\" f=\"hypestat.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"i4wifi.cz\" 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=\"iEntry (partial)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" 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=\"iQiyi_CN\" default_off=\"Only avaiable in China\" f=\"iQiyi_CN.xml\"><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=\"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)\" 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=\"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=\"idms-linux.org\" 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=\"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=\"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\" f=\"illustre.ch.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"imagecurl\" f=\"imagecurl.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"imagelayers.io\" 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=\"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=\"ImgTec.com (partial)\" f=\"imgtec.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><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\" 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\" 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=\"Independent Subscriptions.co.uk\" f=\"independentsubscriptions.co.uk.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><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=\"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=\"infocity.az\" f=\"infocity.az.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"infolan.by\" platform=\"mixedcontent\" f=\"infolan.by.xml\"><rule from=\"^http://www\\.infolan\\.by/\" to=\"https://infolan.by/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"inforesist.org\" f=\"inforesist.org.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\" 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\" 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)\" 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&amp;objID=277&amp;mode=2\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"InnerBody.com\" default_off=\"Reset\" f=\"innerbody.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><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=\"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\" f=\"instasync.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Intagme.com\" platform=\"mixedcontent\" 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\" f=\"intellipoker.bg.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"IntellNews.net\" 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=\"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\" 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)\" f=\"intertelecom.ru.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"IntSig.com (partial)\" platform=\"mixedcontent\" f=\"intsig.com.xml\"><securecookie host=\"^\\.\" name=\"^_isstat\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"IntSig.net (partial)\" 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=\"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=\"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=\"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=\"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\" 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=\"IREX.org (partial)\" f=\"irex.org.xml\"><securecookie host=\"^\\.\" name=\"^SESS\"/><securecookie host=\"^\\w\" name=\".\"/><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)\" 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=\"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)\" 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=\"iTao.com\" platform=\"mixedcontent\" f=\"itao.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><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\" 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=\"IUS.io\" f=\"ius.io.xml\"><exclusion pattern=\"^http://(?:[^./]+\\.){2,}ius\\.io/\"/><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"IUS Community.org\" f=\"iuscommunity.org.xml\"><exclusion pattern=\"^http://(?:[^./]+\\.){2,}iuscommunity\\.org/\"/><securecookie host=\".\" name=\".\"/><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=\"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\" f=\"iweb.co.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><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=\"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=\"jankratochvil.net\" f=\"jankratochvil.net.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\" 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\" 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\" f=\"jibbed.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"JM.com (partial)\" 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=\"jmdekker.it\" f=\"jmdekker.it.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Job Corps.gov (resources)\" platform=\"mixedcontent\" 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=\"Joe Julian.name\" 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\" 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\" 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=\"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=\"Just Eat\" 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://www\\.kabelbw\\.de/\" to=\"https://www.kabelbw.de/\"/></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=\"kancloud.cn\" f=\"kancloud.cn.xml\"><exclusion pattern=\"^http://box\\.kancloud\\.cn/(?!cover)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Schweizer Kantonalbanken\" 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\" f=\"kapital.kz.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Kaprica.com\" f=\"kaprica.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><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=\"kazanfirst.ru\" f=\"kazanfirst.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=\"Kennedy-Center.org (partial)\" 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\" f=\"kf5.com.xml\"><exclusion pattern=\"^http://(agents|d)\\.kf5\\.com/\"/><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=\"Kids.org.uk (partial)\" f=\"kids.org.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><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\" 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=\"KinoCheck.de\" f=\"kinocheck.de.xml\"><exclusion pattern=\"^http://(?:[^./]+\\.){2,}kinocheck\\.de/\"/><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Kinogo.co\" f=\"kinogo.co.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Kinogo.net\" 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\" f=\"kirlism.ga.xml\"><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=\"Kjaer.io\" f=\"kjaer.io.xml\"><exclusion pattern=\"^http://(?:[^./]+\\.){2,}kjaer\\.io/\"/><securecookie host=\".\" 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\" f=\"klick2contact.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Klick2Contact sales.com\" platform=\"mixedcontent\" f=\"klick2contactsales.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Klikki.fi\" f=\"klikki.fi.xml\"><securecookie host=\"^\\w\" name=\".\"/><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=\"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=\"Koolspan.com\" f=\"koolspan.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><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=\"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=\"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=\"Krystal.info\" default_off=\"expired\" f=\"krystal.info.xml\"><securecookie host=\"^\\w\" name=\".\"/><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=\"kupschke.net\" f=\"kupschke.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"kva\" 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=\"lackname.org\" 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)\" 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)\" 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=\"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)\" f=\"lancashire.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Lancaster.gov.uk (partial)\" 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=\"lanta-net.ru (partial)\" f=\"lanta-net.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Laprox.com (partial)\" f=\"laprox.com.xml\"><rule from=\"^http://(?:support\\.|www\\.)?laprox\\.com/.*\" to=\"https://laproxgroup.com/\"/><exclusion pattern=\"^http://(?:support\\.|www\\.)?laprox\\.com/(?!/*(?:$|\\?))\"/></ruleset>", "<ruleset name=\"Laprox Group.com\" f=\"laproxgroup.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><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=\"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 (Partial)\" 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)\" f=\"lede-project.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Leeds.gov.uk (partial)\" 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=\"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=\"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)\" f=\"lenta.ru.xml\"><securecookie host=\"^\\.\" name=\"^_gat?$\"/><securecookie host=\"^\\w\" name=\".\"/><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\" 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=\"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)\" 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=\"LightWidget.com\" 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=\"Linear.Enterprises\" f=\"linear.enterprises.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"linguee.de\" f=\"linguee.de.xml\"><securecookie host=\"www\\.linguee\\.de$\" 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=\"Link Maker.co.uk\" f=\"linkmaker.co.uk.xml\"><exclusion pattern=\"^http://(?:[^./]+\\.){2}linkmaker\\.co\\.uk/\"/><securecookie host=\".\" name=\".\"/><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\" f=\"livecomm.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=\"Locality.com\" f=\"locality.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)\" 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=\"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=\"lotro.com (partial)\" f=\"lotro.com.xml\"><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=\"Lubaki Agenda.net\" f=\"lubakiagenda.net.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"LuckyReferrals.com\" 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=\"luosimao.com\" f=\"luosimao.com.xml\"><exclusion pattern=\"^http://my\\.luosimao\\.com/$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"lupport.com\" f=\"lupport.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><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=\"Luukku.com\" f=\"luukku.com.xml\"><securecookie host=\"^\\.\" name=\"(?:-UAT|Stat)$\"/><securecookie host=\"^\\w\" name=\".\"/><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)\" f=\"madadsmedia.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"magnum-ci.com\" f=\"magnum-ci.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Yaziba webmail\" f=\"mail.yaziba.net.xml\"><rule from=\"^http://mail\\.yaziba\\.net/\" to=\"https://mail.yaziba.net/\"/></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)\" 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=\"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=\"MarcoSlater\" f=\"marcoslater.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=\"connection refused\" f=\"marksdailyapple.xml\"><rule from=\"^http://(?:www\\.)?marksdailyapple\\.com/\" to=\"https://www.marksdailyapple.com/\"/></ruleset>", "<ruleset name=\"Marktplaats (buggy)\" platform=\"mixedcontent\" default_off=\"Mixed content block breaks advert editing and certain images\" f=\"marktplaats.nl.xml\"><exclusion pattern=\"^http://www\\.marktplaats\\.(?:com|net|nl)/kijkinuwwijk\\.html\"/><rule from=\"^http://([^/:@]*)\\.marktplaats\\.(nl|com|net)/\" to=\"https://$1.marktplaats.$2/\"/><rule from=\"^https://www\\.marktplaats\\.nl/kijkinuwwijk\\.html\" to=\"http://www.marktplaats.nl/kijkinuwwijk.html\" downgrade=\"1\"/></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=\"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\" f=\"mattermark.com.xml\"><securecookie host=\"^\\.\" name=\"^mkt_referer$\"/><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\" f=\"mcc.gov.xml\"><securecookie host=\"^\\w\" name=\".\"/><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=\"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)\" f=\"medicaid.gov.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Medicare.gov (partial)\" f=\"medicare.gov.xml\"><securecookie host=\"^\\w\" name=\".\"/><securecookie host=\"^\\.\" name=\"^_gat?$\"/><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)\" 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=\"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\" 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=\"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)\" f=\"met.police.uk.xml\"><securecookie host=\"^\\.\" name=\"_ga(?:t?$|t_)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"metachris.com\" f=\"metachris.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://metachris\\.com/\" to=\"https://www.metachris.com/\"/><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=\"mgmmirage.com\" f=\"mgmmirage.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MH Education.com (false MCB)\" platform=\"mixedcontent\" 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)\" 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\" 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=\"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=\"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\" 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\" f=\"mirtv33.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"mjdk.dk\" f=\"mjdk.dk.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MK2 (partial)\" f=\"mk2.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http://(www\\.)?mk2\\.com/\" to=\"https://www.mk2.com/\"/><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=\"mobile.de\" 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\" f=\"mobilism.me.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"mod.life\" f=\"mod.life.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Moderngov.co.uk (partial)\" 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=\"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=\"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=\"motive.com (partial)\" f=\"motive.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MouseJack.com\" 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=\"MovableType.net\" f=\"movabletype.net.xml\"><exclusion pattern=\"^http://(?:[^./]+\\.){2,}movabletype\\.net/\"/><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"moz.com\" f=\"moz.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"mozfr.org (false MCB)\" platform=\"mixedcontent\" f=\"mozfr.org-falsemixed.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"mozfr.org (partial)\" f=\"mozfr.org.xml\"><securecookie host=\"^\\w\" 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=\"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\" 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=\"Michigan State University (partial)\" default_off=\"Have not caught all exclusion patterns\" f=\"msu.edu.xml\"><exclusion pattern=\"^http://(?:grad|acadgov|trustees|president|provost|ur|rha)\\.\"/><exclusion pattern=\"^http://www\\.(?:vprgs|vpfo|vps|canr)\\.\"/><rule from=\"^http://msu\\.edu/\" to=\"https://msu.edu/\"/><rule from=\"^http://([^/:@\\.]+\\.)msu\\.edu/\" to=\"https://$1msu.edu/\"/><securecookie host=\"^(?:www)?\\.msu\\.edu\" name=\".*\"/></ruleset>", "<ruleset name=\"mtel.ru (partial)\" 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)\" 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\" f=\"mtt.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MTV.fi (partial)\" platform=\"mixedcontent\" 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=\"mupdf.org\" f=\"mupdf.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><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\" f=\"mutts.com.xml\"><exclusion pattern=\"^http://(?:staging|www)\\.mutts\\.com/(?!/*(?:favicon\\.ico|misc/|news(?:$|[?/])|sites/))\"/><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=\"MYbank.cn\" f=\"mybank.cn.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=\"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=\"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=\"n-tv.de (partial)\" platform=\"mixedcontent\" f=\"n-tv.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"n210adserv.com\" f=\"n210adserv.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Nachrichtendienstgesetz.ch\" f=\"nachrichtendienstgesetz.ch.xml\"><exclusion pattern=\"^http://(?:[^./]+\\.){2,}nachrichtendienstgesetz\\.ch/\"/><securecookie host=\".\" 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=\"&#268;esk&#253; n&#225;rodn&#237; panel\" f=\"narodnipanel.cz.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=\"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=\"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.cn (partial)\" platform=\"mixedcontent\" f=\"net.cn.xml\"><securecookie host=\"^w\" name=\".\"/><rule from=\"^http://help\\.www\\.net\\.cn/(?:KnowledgeD|knowledge_d)etail\\.html?\\?knowledgeId=(\\d+)(?:&amp;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+(?:&amp;categoryId=\\d+)?$)\"/><rule from=\"^http://www\\.net\\.cn/+(?=$|\\?)\" to=\"https://wanwang.aliyun.com/\"/><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=\"netsalesnetwork.com\" f=\"netsalesnetwork.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><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=\"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=\"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\" 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=\"News Ledge.com\" f=\"newsledge.com.xml\"><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=\"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\" f=\"ngs.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"nibusinessinfo.co.uk (partial)\" 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=\"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\" 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\" 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=\"noblogs.org\" f=\"noblogs.org.xml\"><exclusion pattern=\"^http://stats\\.noblogs\\.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NoDistribute\" f=\"nodistribute.com.xml\"><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)\" 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\" 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=\"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\" f=\"nousrandom.net.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"novayagazeta.ru (partial)\" 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=\"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\" 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\" 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\" 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\" 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=\"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=\"NS Publieksprijs.nl\" f=\"nspublieksprijs.nl.xml\"><securecookie host=\"^\\w\" name=\".\"/><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=\"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=\"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=\"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\" 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=\"nzpug.org\" f=\"nzpug.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NZZ (partial)\" f=\"nzz.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)\" 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&amp;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=\"ObiTalk.com\" f=\"obitalk.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Objective.co.uk (partial)\" 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\" f=\"odessa.tv.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"&#214;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)\" 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=\"OKFn.org (false MCB)\" platform=\"mixedcontent\" f=\"okfn.org-falsemixed.xml\"><securecookie host=\".\" 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=\"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=\"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=\"onclasrv.com\" f=\"onclasrv.com.xml\"><securecookie host=\".\" 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=\"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=\"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=\"openDesktop.org (mismatches)\" default_off=\"mismatch\" f=\"openDesktop-mismatches.xml\"><exclusion pattern=\"^http://(?:www\\.)?opendesktop\\.org/\"/><exclusion pattern=\"^http://(?:www\\.)?(?:arch|beryl|box|cli|compiz|debian|e17|ede|eyeos|frugalware|gentoo|gnome|gtk|java|kde|linuxmint|maemo|qt|suse|ubuntu|wine|xfce)-(?:apps|art|files|help|look|stuff|themes)\\.org/(?:ad|cometchat|comments|CONTENT|fancybox|img|styles|usermanager)/\"/><exclusion pattern=\"^http://(?:www\\.)?(?:(?:gnomefiles|linux42|opentemplate|scribusstuff|vlc-addons)\\.org|(?:linuxdaily|open-pc|openskillz)\\.com)/(?:ad|cometchat|comments|CONTENT|fancybox|img|styles|usermanager)/\"/><exclusion pattern=\"^http://addons\\.videolan\\.org/(?:ad|cometchat|comments|CONTENT|fancybox|img|styles|usermanager)/\"/><securecookie host=\"^(?:arch|beryl|box|cli|compiz|debian|e17|ede|eyeos|frugalware|gentoo|gnome|gtk|java|kde|linuxmint|maemo|qt|suse|ubuntu|wine|xfce)-(?:apps|art|files|help|look|stuff|themes)\\.org$\" name=\".*\"/><securecookie host=\"^(?:gnomefiles|linux42|opentemplate|scribusstuff|addons\\.videolan|vlc-addons)\\.org$\" name=\".*\"/><securecookie host=\"^(?:linuxdaily|open-pc|openskillz)\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?(arch|beryl|box|cli|compiz|debian|e17|ede|eyeos|frugalware|gentoo|gnome|gtk|java|kde|linuxmint|maemo|qt|suse|ubuntu|wine|xfce)-(apps|art|files|help|look|stuff|themes)\\.org/\" to=\"https://$1-$2.org/\"/><rule from=\"^http://(?:www\\.)?((?:gnomefiles|linux42|opentemplate|scribusstuff|vlc-addons)\\.org|(?:linuxdaily|open-pc|openskillz)\\.com)/\" to=\"https://$1/\"/><rule from=\"^http://addons\\.videolan\\.org/\" to=\"https://addons.videolan.org/\"/></ruleset>", "<ruleset name=\"openDesktop.org\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"openDesktop.xml\"><rule from=\"^http://(?:www\\.)?opendesktop\\.org/\" to=\"https://opendesktop.org/\"/><rule from=\"^http://(?:static\\.|www\\.)?(?:arch|beryl|box|cli|compiz|debian|e17|ede|eyeos|frugalware|gentoo|gnome|gtk|java|kde|linuxmint|maemo|qt|suse|ubuntu|wine|xfce)-(?:apps|art|files|help|look|stuff|themes)\\.org/(ad|cometchat|comments|CONTENT|fancybox|img|styles|usermanager)/\" to=\"https://opendesktop.org/$1/\"/><rule from=\"^http://(?:static\\.|www\\.)?(?:(?:gnomefiles|linux42|scribusstuff|opentemplate|vlc-addons)\\.org|(?:linuxdaily|open-pc|openskillz)\\.com)/(ad|cometchat|comments|CONTENT|fancybox|img|styles|usermanager)/\" to=\"https://opendesktop.org/$1/\"/><rule from=\"^http://addons\\.videolan\\.org/(ad|cometchat|comments|CONTENT|fancybox|img|styles|usermanager)/\" to=\"https://opendesktop.org/$1/\"/></ruleset>", "<ruleset name=\"openbank.ru\" 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\" 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=\"openload.co\" f=\"openload.co.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=\"OpenStat.com (partial)\" f=\"openstat.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OpenX.com (resources)\" platform=\"mixedcontent\" 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=\"Optum.com\" 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\" 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\" 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)\" 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=\"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=\"ostermiller.org\" 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=\"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=\"OTTO's\" f=\"ottos.ch.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=\"ourproject.org\" f=\"ourproject.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Our Skillsforce.co.uk (partial)\" 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=\"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\" f=\"oxfordshire.gov.uk-falsemixed.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Oxfordshire.gov.uk (partial)\" 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=\"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\" 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\" 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\" f=\"panorama.am.xml\"><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)\" 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=\"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=\"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)\" 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\" 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=\"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=\"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=\"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=\"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=\"PentesterLab.com (partial)\" f=\"pentesterlab.com.xml\"><securecookie host=\"^(?:www\\.)?pentesterlab\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"pep.Foundation\" 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=\"percy.io\" f=\"percy.io.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=\"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=\"pgtrk.ru\" f=\"pgtrk.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PharmGKB.org\" 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=\"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=\"pi-hole.net\" f=\"pi-hole.net.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\"^\\w\" name=\".\"/><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)\" 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\" f=\"piraten-basel.ch.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Piraten.lu\" 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=\"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=\"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\" 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\" f=\"planetrulers.xml\"><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=\"Podtrac.com (partial)\" f=\"podtrac.com.xml\"><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=\"poke in the.io\" f=\"pokeinthe.io.xml\"><exclusion pattern=\"^http://(?:[^./]+\\.){2,}pokeinthe\\.io/\"/><securecookie host=\".\" name=\".\"/><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=\"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\" f=\"ponyfoo.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"popcorntime.sh\" f=\"popcorntime.sh.xml\"><rule from=\"^http://www\\.popcorntime\\.sh/\" to=\"https://popcorntime.sh/\"/><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=\"portal-credo.ru\" f=\"portal-credo.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Portsmouth.gov.uk (partial)\" 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=\"Postimage.org\" platform=\"mixedcontent\" f=\"postimage.org.xml\"><exclusion pattern=\"^http://(?!(?:s\\d+\\.|www\\.)?postimage\\.org/)\"/><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"postimg.io\" f=\"postimg.io.xml\"><exclusion pattern=\"^http://(?!s\\d+\\.postimg\\.io/)\"/><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></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=\"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\" 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=\"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=\"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=\"Pretty 52.com\" 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=\"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=\"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=\"prntscr.com (broken)\" default_off=\"Mixed content\" f=\"prntscr.com.xml\"><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\" f=\"proXPN.xml\"><securecookie host=\"^.*\\.proxpn\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Procensus\" f=\"procensus.com.xml\"><securecookie host=\"^.*\\.?procensus\\.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=\"projectdev.org\" 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=\"promisejs.org\" f=\"promisejs.org.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=\"protvino.net (partial)\" 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\" 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=\"proxybay.one\" 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\" f=\"proxyportal.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"proxyshard.uk\" f=\"proxyshard.uk.xml\"><securecookie host=\"^.*\\.proxyshard\\.uk$\" name=\".+\"/><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)\" 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=\"pub2srv.com\" f=\"pub2srv.com.xml\"><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=\"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=\"puphpet.com\" 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\" 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=\"QElectroTech.org\" f=\"qelectrotech.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><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=\"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=\"Quebec solidaire.net (partial)\" f=\"quebecsolidaire.net.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Quickline\" 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=\"Radiocane.info\" platform=\"mixedcontent\" f=\"radiocane.info.xml\"><securecookie host=\"^\\w\" name=\".\"/><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=\"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\" 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\" 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=\"raxcdn.com\" f=\"raxcdn.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><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)\" 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=\"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=\"Reagan Library.gov\" f=\"reaganlibrary.gov.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=\"Recorded Books.com\" 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=\"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\" f=\"redcare.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"redcom.ru (partial)\" 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=\"regexbuddy.com\" f=\"regexbuddy.com.xml\"><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=\"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)\" 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=\"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=\"Rezdy\" f=\"rezdy.com.xml\"><securecookie host=\"^.*\\.rezdy\\.com$\" name=\".+\"/><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\" 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\" 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\" 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\" f=\"rockfile.eu.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\"^\\w\" name=\".\"/><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=\"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=\"rostov.press\" f=\"rostov.press.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=\"rsdn.org (partial)\" f=\"rsdn.org.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=\"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=\"Ruby China.org\" f=\"ruby-china.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><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)\" 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=\"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=\"^\\w\" name=\".\"/><rule from=\"^http://static\\.rutracker\\.org/\" to=\"https://static.t-ru.org/\"/><rule from=\"^https?://www\\.rutracker\\.(org|net|cr)/\" to=\"https://rutracker.$1/\"/><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\" f=\"rw-online.co.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><securecookie host=\"^\\.w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"RWE.de\" 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)\" 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\" 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=\"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=\"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)\" 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=\"saltpack.org\" f=\"saltpack.org.xml\"><exclusion pattern=\"^http://(?:[^./]+\\.){2,}saltpack\\.org/\"/><securecookie host=\".\" name=\".\"/><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=\"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\" 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=\"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=\"schema.org\" 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=\"Science Alert.com\" platform=\"mixedcontent\" f=\"sciencealert.com.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|__qca|cf_clearance)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://sciencealert\\.com/\" to=\"https://www.sciencealert.com/\"/><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=\"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\" f=\"scoreassured.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Scotland.gov.uk (partial)\" 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\" 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)\" 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=\"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=\"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=\"Section508.gov (partial)\" f=\"section508.gov.xml\"><securecookie host=\"^\\w\" name=\".\"/><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\" 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=\"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=\"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\" 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=\"serovglobus.ru\" platform=\"mixedcontent\" f=\"serovglobus.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ServerBase\" f=\"serverbase.xml\"><securecookie host=\".*\\.serverbase\\.ch$\" name=\".+\"/><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=\"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=\"connection refused\" f=\"shareNice.xml\"><rule from=\"^http://(?:www\\.)?sharenice\\.org/\" to=\"https://sharenice.org/\"/></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=\"Shooting Illustrated.com\" 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\" 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=\"Shrek's Adventure\" 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)\" f=\"shropshire.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Siamo Geek.com\" f=\"siamogeek.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"sibinfo.su\" f=\"sibinfo.su.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"sibttk.ru (partial)\" f=\"sibttk.ru.xml\"><exclusion pattern=\"^http://bill\\.sibttk\\.ru:8080/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"sicurezzarete.com\" platform=\"mixedcontent\" f=\"sicurezzarete.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"sigaint.org\" f=\"sigaint.org.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\" f=\"simpel.nl.xml\"><securecookie host=\"^(?:.*\\.)?simpel.nl$\" name=\".*\"/><securecookie host=\"^(?:.*\\.)?mijnsimpel.nl$\" 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=\"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\" f=\"simtechdev.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sina.com (partial)\" f=\"sina.com.xml\"><securecookie host=\"^\\.\" name=\"^_ga(?:t?$|t_)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://merchantadmin\\.sina\\.com/\" to=\"https://shopping.sina.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SinaJS.cn\" f=\"sinajs.cn.xml\"><securecookie host=\"^\\w\" name=\".\"/><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\" 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)\" 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\" 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=\"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\" 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=\"&#352;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=\"Skytal.es\" 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=\"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=\"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=\"smartbear.com\" f=\"smartbear.com.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://www\\.smava\\.de/\" to=\"https://www.smava.de/\"/></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=\"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=\"snag.gy\" f=\"snag.gy.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"snap-ci.com\" 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\" 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\" 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=\"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\" 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=\"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=\"sogou.com (partial)\" f=\"sogou.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://logo\\.www\\.sogou\\.com/\" to=\"https://www.sogou.com/\"/><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=\"Sol.no (partial)\" f=\"sol.no.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\"^\\w\" name=\".\"/><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\" 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=\"Soom.cz\" f=\"soom.cz.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=\"South-Wales.Police.uk (partial)\" 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\" 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=\"sovcombank.ru\" 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\" 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\" 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)\" f=\"sparebank1.no.xml\"><securecookie host=\"^\\w\" name=\".\"/><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\" 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=\"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://speech\\.leseweb\\.dk/\" to=\"https://speech.leseweb.dk/\"/></ruleset>", "<ruleset name=\"Speedwell Software.com\" f=\"speedwellsoftware.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><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)\" 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\" 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=\"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=\"sportdepot.co.il\" f=\"sportdepot.co.il.xml\"><securecookie host=\"^\\w\" name=\".\"/><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\" 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&#352;CHG Ostrava\" f=\"spsch.eu.xml\"><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=\"SRG SSR (partial)\" f=\"srg-ssr.xml\"><exclusion pattern=\"^http://www.swissinfo.ch/fre\"/><exclusion pattern=\"^http://www.swissinfo.ch/chi\"/><exclusion pattern=\"^http://www.swissinfo.ch/rus\"/><exclusion pattern=\"^http://www.swissinfo.ch/jpn\"/><exclusion pattern=\"^http://www.swissinfo.ch/ara\"/><exclusion pattern=\"^http://www.swissinfo.ch/eng\"/><exclusion pattern=\"^http://www.swissinfo.ch/spa\"/><exclusion pattern=\"^http://www.swissinfo.ch/ger\"/><exclusion pattern=\"^http://www.swissinfo.ch/por\"/><exclusion pattern=\"^http://www.swissinfo.ch/ita\"/><rule from=\"^https://ws\\.srf\\.ch/\" to=\"http://ws.srf.ch/\" downgrade=\"1\"/><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=\"SSL-Tools.net\" f=\"ssl-tools.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=\"st65.ru (partial)\" 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=\"stadium.ru\" f=\"stadium.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"St&#228;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)\" 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=\"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=\"Startova&#269;\" f=\"startovac.cz.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)\" 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\" f=\"status.io.xml\"><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\" f=\"stealthy.co.xml\"><rule from=\"^http://stealthy\\.co/\" to=\"https://www.stealthy.co/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"steamstat.ru\" 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=\"Stockport.gov.uk (partial)\" f=\"stockport.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Stoke.gov.uk (partial)\" f=\"stoke.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><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)\" f=\"storehouse.co.xml\"><securecookie host=\"^\\w\" name=\".\"/><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=\"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=\"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=\"stresslinux.org\" f=\"stresslinux.org.xml\"><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=\"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\" f=\"subtraxion.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"sumatrapdfreader.org\" f=\"sumatrapdfreader.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"sumome.com\" f=\"sumome.com.xml\"><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\" 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=\"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)\" 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\" 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&#252;rich\" f=\"svazuerich.ch.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)\" 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=\".+\"/><rule from=\"^http://ag\\.ch/\" to=\"https://www.ag.ch/\"/><rule from=\"^http://be\\.ch/\" to=\"https://www.be.ch/\"/><rule from=\"^http://baselland\\.ch/\" to=\"https://www.baselland.ch/\"/><rule from=\"^http://gl\\.ch/\" to=\"https://www.gl.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)\" 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=\"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\" 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)\" 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=\"t2-project.org\" f=\"t2-project.org.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=\"Take On The Game (Partial)\" default_off=\"Bad Cert\" f=\"takeonthegame.com.xml\"><rule from=\"^http://(?:www\\.)?takeonthegame\\.com/\" to=\"https://www.takeonthegame.com/\"/></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=\"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)\" 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)\" 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=\"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=\"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)\" 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=\"Team Fortress (partial)\" f=\"teamfortress.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><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=\"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=\"telenet.ru (partial)\" f=\"telenet.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"telesign.com\" 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=\"tersee\" f=\"tersee.xml\"><rule from=\"^http://([^/:@]+\\.)?tersee\\.com/\" to=\"https://$1tersee.com/\"/><securecookie host=\"^(?:.+\\.)?tersee\\.com$\" name=\".*\"/></ruleset>", "<ruleset name=\"TES Global.com\" 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://www\\.test\\.de/\" to=\"https://www.test.de/\"/></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=\"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=\"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=\"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=\"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\" 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\" 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=\"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 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 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\" 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=\"thepiratebay-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=\"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=\"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=\"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 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=\"thisk.org\" f=\"thisk.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"thisproxykillscensors.uk\" f=\"thisproxykillscensors.uk.xml\"><securecookie host=\"^.*\\.thisproxykillscensors\\.uk$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Thomas Hunter.name\" 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\" 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=\"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\" 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=\"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=\"tkgorod.ru\" 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=\"tldr.io (partial)\" default_off=\"missing certificate chain\" f=\"tldrio.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)\" 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=\"Together Trust.org.uk (partial)\" f=\"togethertrust.org.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><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=\"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=\"Toppreise.ch (partial)\" f=\"toppreise.ch.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"topspb.tv\" f=\"topspb.tv.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=\"torrentpier.me\" f=\"torrentpier.me.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\" f=\"torrentsstorage.net.xml\"><securecookie host=\".\" name=\".\"/><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=\"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\" f=\"tpblist.xyz.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=\"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=\"TrafficStars.com\" f=\"trafficstars.com.xml\"><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=\"Trane.com\" f=\"trane.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"transfer.sh\" 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)\" 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=\"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=\"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=\"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=\"trobadabcn.cat\" default_off=\"expired\" f=\"trobadabcn.cat.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)\" f=\"ttk-chita.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ttmeiju\" default_off=\"All targets time out as of 2016-10-02\" f=\"ttmeiju.xml\"><exclusion pattern=\"^http://(www\\.)?ttmeiju\\.com/$\"/><exclusion pattern=\"^http://(www\\.)?ttmeiju\\.com/search\\.php\"/><exclusion pattern=\"^http://(www\\.)?ttmeiju\\.com/.+\\.html\"/><exclusion pattern=\"^http://bbs\\.ttmeiju\\.com/$\"/><exclusion pattern=\"^http://bbs\\.ttmeiju\\.com/member\\.php\"/><exclusion pattern=\"^http://bbs\\.ttmeiju\\.com/forum\\.php\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"tumba.ch\" 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)\" 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\" f=\"tuquito.org.ar.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Turistick&#233; zn&#225;mky\" f=\"turisticke-znamky.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Turku.fi\" platform=\"mixedcontent\" 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&amp;contentlan=1\"/><rule from=\"^http://(?:www\\.)?turku\\.fi/buses$\" to=\"https://www.turku.fi/public/default.aspx?nodeid=11916&amp;contentlan=2\"/><rule from=\"^http://(?:www\\.)?turku\\.fi/bussar$\" to=\"https://www.turku.fi/public/default.aspx?nodeid=11916&amp;contentlan=3\"/><securecookie host=\"^\\w+\\.turku\\.fi\" name=\".+\"/></ruleset>", "<ruleset name=\"Turnoff\" f=\"turnoff.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\" f=\"tuxfamily.org-falsemixed.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"tvc.ru\" 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=\"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=\"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=\"tyumedia.ru\" 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=\"&#181;Torrent\" f=\"uTorrent.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"uVPN\" default_off=\"connection refused\" f=\"uVPN.xml\"><rule from=\"^http://(?:www\\.)?uvpn\\.de/+\" to=\"https://fremaks.de/\"/></ruleset>", "<ruleset name=\"ualinux.com\" f=\"ualinux.com.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=\"UCU.org.uk\" f=\"ucu.org.uk.xml\"><securecookie host=\"^\\.\" name=\"^_ga\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ufanet.ru (partial)\" f=\"ufanet.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=\"ukw.jp\" f=\"ukw.jp.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\" 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)\" 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=\"unbubble.eu\" f=\"unbubble.eu.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=\"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=\"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=\"Unit4.com (resources)\" platform=\"mixedcontent\" 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)\" 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=\"UniTech.net\" default_off=\"missing certifiate chain\" f=\"unitech.net.xml\"><securecookie host=\"^\\w\" name=\".\"/><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\" 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=\"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=\"Uptime Robot\" f=\"uptimerobot.xml\"><rule from=\"^http://uptimerobot\\.com/\" to=\"https://uptimerobot.com/\"/><securecookie host=\"^(?:.*\\.)?uptimerobot\\.com$\" name=\".+\"/></ruleset>", "<ruleset name=\"uptobox.com\" f=\"uptobox.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"uptodown\" f=\"uptodown.xml\"><rule from=\"^https://blog\\.uptodown\\.com/\" to=\"http://blog.uptodown.com/\" downgrade=\"1\"/><rule from=\"^http:\" to=\"https:\"/><exclusion pattern=\"^http://(blog|feeds)\\.uptodown\\.com/\"/></ruleset>", "<ruleset name=\"url.cn (partial)\" f=\"url.cn.xml\"><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=\"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\" 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)\" 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\" 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\" 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=\"USyd.edu.au (partial)\" 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=\"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=\"Vale Learning.com (partial)\" f=\"valelearning.com.xml\"><securecookie host=\"^\\.\" name=\"^cadata\"/><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&#225;&#353;-hosting.cz\" f=\"vas-hosting.cz.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=\"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)\" 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=\"Veritas.com\" f=\"veritas.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Verizon.net (partial)\" 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&amp;_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=\"VerseOne.com (partial)\" 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=\"vevent.com\" 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:\" to=\"https:\"/></ruleset>", "<ruleset name=\"vhf (expired)\" default_off=\"expired\" f=\"vhf-expired.xml\"><rule from=\"^http://(?:www1?\\.)?vhf\\.de/\" to=\"https://www.vhf.de/\"/></ruleset>", "<ruleset name=\"vhf.de (partial)\" f=\"vhf.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=\"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\" f=\"victoriaforms.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Toypics\" platform=\"mixedcontent\" f=\"videos.toypics.net.xml\"><rule from=\"^http://videos\\.toypics\\.net/\" to=\"https://videos.toypics.net/\"/></ruleset>", "<ruleset name=\"viewsourceconf.org\" f=\"viewsourceconf.org.xml\"><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)\" 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\" f=\"vitrinepix.xml\"><rule from=\"^http://(www\\.)?vitrinepix\\.com\\.br/\" to=\"https://www.vitrinepix.com.br/\"/></ruleset>", "<ruleset name=\"vkarpinsk.info\" platform=\"mixedcontent\" f=\"vkarpinsk.info.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=\"vnu.ru (partial)\" 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\" 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=\"Volafile.io\" f=\"volafile.io.xml\"><securecookie host=\"^\\w\" name=\".\"/><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=\"VoucherCloud.com\" 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\" 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\" 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=\"vtb24.ru\" f=\"vtb24.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"VuXML.org\" 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=\"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\" 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=\"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)\" 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://sublime\\.wbond\\.net/\" to=\"https://sublime.wbond.net/\"/></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=\"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=\"weibopay.com\" f=\"weibopay.com.xml\"><securecookie host=\"^\\w\" 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=\"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)\" 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=\"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\\?(?:.*&amp;)?articleid=(?:2798[89]|28004|2801[39]|28023|28034|2824[01]|29089|29609|31065|32455)(?:$|&amp;)|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=\"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=\"wh0rd.org\" f=\"wh0rd.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><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\" 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 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\" 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\" 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 (partial)\" f=\"wired.co.uk.xml\"><rule from=\"^http://cdni\\.wired\\.co\\.uk/\" to=\"https://d2f0ban6dhfdsw.cloudfront.net/\"/></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)\" 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=\"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)\" 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=\"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)\" f=\"worcestershire.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"word.camera\" 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=\"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=\"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)\" 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=\"WSJ.net (partial)\" f=\"wsj.net.xml\"><exclusion pattern=\"^http:/(?!.+\\.(?:bmp|css|gifv?|ico|jpe?g|pdf|png|svg|tiff?|ttf|woff)(?:$|\\?))\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://images\\.conferences\\.wsj\\.net/\" to=\"https://s3.amazonaws.com/images.conferences.wsj.net/\"/><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=\"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=\"www.tibia.com\" f=\"www.tibia.com.xml\"><rule from=\"^http://www\\.tibia\\.com/\" to=\"https://secure.tibia.com/\"/><rule from=\"^http://www\\.test\\.tibia\\.com/\" to=\"https://secure.test.tibia.com/\"/></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)\" default_off=\"mismatched, self-signed\" f=\"wyreforestdc.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><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://xservers\\.ro/\" to=\"https://xservers.ro/\"/></ruleset>", "<ruleset name=\"XanMod.org\" f=\"xanmod.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><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\" f=\"xfinity.com-falsemixed.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Xfinity.com (partial)\" 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)\" f=\"xiala.net.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"xkcd (mixed)\" platform=\"mixedcontent\" f=\"xkcd-mixed.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"xkcd\" f=\"xkcd.xml\"><exclusion pattern=\"^http://(www\\.|m\\.)?xkcd\\.com/1663/\"/><exclusion pattern=\"^http://c\\.xkcd\\.com/\"/><rule from=\"^http://(www\\.|m\\.)?xkcd\\.org/\" to=\"https://$1xkcd.com/\"/><rule from=\"^https://c\\.xkcd\\.com/\" to=\"http://c.xkcd.com/\" downgrade=\"1\"/><rule from=\"^http://www\\.store\\.xkcd\\.com/\" to=\"https://store.xkcd.com/\"/><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=\"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=\"xxxYours.com\" 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=\"yaostrov.ru\" f=\"yaostrov.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"yarcube.ru\" f=\"yarcube.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"YC BI.com (partial)\" f=\"ycbi.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Yell.com (partial)\" 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\" 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\" f=\"yfrog.xml\"><securecookie host=\"^\\.twitter\\.yfrog\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Yinfor.com (partial)\" f=\"yinfor.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><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=\"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=\"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\" f=\"yoyogames.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"yp.ru\" f=\"yp.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"YPlan\" f=\"yplanapp.com.xml\"><securecookie host=\"^.*\\.?yplanapp\\.com$\" name=\".+\"/><rule from=\"^http://(www\\.)?yplanapp\\.com/\" to=\"https://yplanapp.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"yr.no (partial)\" 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=\"yuga.ru\" f=\"yuga.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"yunaq (partial)\" f=\"yunaq.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=\"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=\"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\" f=\"zdf.xml\"><rule from=\"^http://zdfsport\\.de/\" to=\"https://www.zdfsport.de/\"/><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=\"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=\"zhukovsky.net\" f=\"zhukovsky.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"zicguzoo.com\" 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\" 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=\"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=\"zuBu.re\" default_off=\"missing certificate chain\" f=\"zubu.re.xml\"><securecookie host=\"^\\w\" 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>"], "targets": {"www.cloudmagic.com": [3350], "icogr.com": [2053], "photocdn.sohu.com": [15352], "80spurple.com": [229], "cpnck.uk": [2053], "drbq.co": [2053], "higgy.be": [2053], "hasb.ro": [2053], "s.urlb.ag": [2053], "santos.cat": [2053], "prcc.us": [2053], "www.readitlaterlist.com": [13840], "*.osmocom.org": [12330], "dl.aia.ag": [2053], "penango.us": [2053], "www.liberal.ca": [9453], "samarskaya-obl.beeline.ru": [1801], "www.adulttoys4u.com.au": [686], "hxtrs.co": [2053], "parallella.org": [12596], "6to4.nro.net": [11775], "www.tinyteenpass.com": [16762], "www.blot.im": [2177], "qubb.es": [2053], "www.websitealive8.com": [18445], "news.piratenpartei.de": [12938], "rgdo.de": [2053], "penso.me": [2053], "10.wsls.com": [2053], "members.firedoglake.com": [5972], "api.gogobot.com": [6934], "youre.bad.mn": [2053], "nas-staff.org": [2053], "i.naijamuse.com": [2053], "getergo.com": [2053], "ctvt.link": [2053], "gfycat.com": [6745], "s.kumapon.jp": [9187], "speqit.co": [2053], "services-federation.renater.fr": [13999], "bretly.us": [2053], "samainn.com": [2053], "www.cyberagent.co.jp": [4029], "fahrplan.zvv.ch": [22146], "leal.im": [2053], "c.zoocdn.com": [22138], "harn.es": [2053], "spreadshirt.fi": [15552], "on.handbag.com": [2053], "aedc.gov.au": [1425], "anidb.net": [1062], "dan.kent.ac.uk": [17603], "www.bizx.info": [19546], "spreadshirt.fr": [15552], "thegr.id": [2053], "order.humanevents.com": [7753], "img11.360buyimg.com": [136], "cila.co": [2053], "bizzy.in": [2053], "pysmpl.com": [2053], "a.rch.io": [2053], "g-gy.in": [2053], "voronezh.beeline.ru": [1801], "svn.netfilter.org": [11417], "ylp.fr": [2053], "nairobi.usembassy.gov": [21879], "maps.mail.ru": [10040], "pthblog.amnesty.org.uk": [1009], "*.enecto.com": [5351], "blurb.erize.me": [2053], "eglasser.us": [2053], "orgcitad.in": [2053], "thinkmissionexcellence.maine.edu": [17608], "fb.ecn.api.tiles.virtualearth.net": [18046], "www.campact.de": [2835], "worldtomorrow.wikileaks.org": [18590], "on.mixpo.co": [2053], "ratfishoil.com": [13809], "2018.championat-rostov.ru": [19683], "www.molevalley.gov.uk": [20818], "cdn.tectonic.com": [16311], "f59.co": [2053], "alphabankbonusredemptionen.aegeanair.com": [7041], "gestioacademicavirtual.esci.upf.edu": [17674], "beyondthebubble.stanford.edu": [15635], "r.om.id.au": [2053], "nar.link": [2053], "*.cpcache.com": [2775], "paja.ro": [2053], "img.qz.com": [13618], "jhilario.com": [2053], "signup.litmus.com": [9632], "hyde.so": [2053], "www.firefart.at": [5968], "swm.li": [2053], "s.phansoft.ca": [2053], "gen10.co": [2053], "bugzilla.freedesktop.org": [6243], "us.ae.alibaba.com": [850], "engri.sh": [2053], "orgg.in": [2053], "install.1up.fm": [2053], "i.mtgjudge.net": [2053], "hastings.moderngov.co.uk": [20816], "www.opsmate.com": [12264], "photos2.demandmedia.com": [4421], "www.a2hosting.com": [257], "www.nationaleombudsman.nl": [11324], "verrag.io": [2053], "coveralls.io": [3799], "myportaladmissions.rbwm.gov.uk": [21268], "aam904.com": [2053], "pikes.co": [2053], "mm.sitecompass.com": [15111], "parles.upf.edu": [17674], "peak.to": [2053], "l.dcdesi.com": [2053], "www.clockers.at": [12369], "interi.ms": [2053], "*.istheinternetonfire.com": [20503], "mxr.mx": [2053], "on.today.com": [2053], "hypr.vc": [2053], "www.q8car.com": [13507], "mmymkt.co": [2053], "www.regexbuddy.com": [21290], "searchcloudcomputing.de": [16273], "www.overheid.nl": [11324], "13strid.es": [2053], "northlincs.greenparty.org.uk": [7052], "inkscape.org": [8299], "clicktale.com": [3311], "virginaustralia.com": [18026], "www.atinternet-solutions.com": [403], "clocks.yandex.kz": [18957], "*.janalta.com": [8658], "www.spongecell.com": [21538], "tward.us": [2053], "cdn.loc.gov": [9690], "yed24hr.com": [18972], "fcsys.co": [2053], "www.thestorefront.com": [16580], "ngpvan.com": [11096], "li.nkg.pt": [2053], "visit.berkeley.edu": [17526], "scubbly.com": [14670], "pix.telekom.de": [4490], "vpolo.fr": [2053], "stec-site.xhcdn.com": [18815], "store.warframe.com": [18274], "billscenter.paytrust.com": [8452], "fotopigeon.com": [6192], "*.nciphub.org": [20881], "help-en-gb.nike.com": [11595], "i4g8.com": [2053], "eroglu.ca": [2053], "wdrt.co": [2053], "bit.cheang.tk": [2053], "*.eduroam.org": [5200], "www.greensmoke.co.uk": [7055], "www.netapp.com": [11374], "jpstore.dell.com": [4413], "teign.fitness": [2053], "dcme.co": [2053], "pica81.ub.uni-mainz.de": [17611], "jamtrackcentral.com": [8646], "s.100s.nl": [2053], "mluv.co": [2053], "kimage.playerauctions.com": [13023], "www.webmercs.com": [4248], "m-tv.fr": [2053], "swimbc.me": [2053], "kontakt.get.no": [20229], "s.yoko14145.com": [2053], "static.autobytel.com": [1462], "linaro.org": [9522], "ahj.me": [2053], "nzbmatrix.com": [11192], "t3w.us": [2053], "cn.calameo.com": [2790], "dev.metasploit.com": [10488], "voterregistration.ct.gov": [2738], "www.tibia.com": [22069], "www.elilabs.com": [5267], "webservice.1prime.ru": [73], "open-source.holidayextras.com": [7595], "ad.androdis.xyz": [2053], "microsoftventures.com": [10550], "kutne.ws": [2053], "www.goc.io": [6481], "siue.starfishsolutions.com": [21565], "kundencenter.kevag-telekom.de": [9016], "anonymouse.me": [1093], "hr.rbth.com": [21267], "webdev.zotac.com": [19072], "amung.us": [18565], "hi.metafoto.de": [2053], "oelri.ch": [2053], "www.alumniweekend.ox.ac.uk": [17557], "static6.flixster.com": [6049], "i.cx": [7798], "crash.io": [2053], "illu.link": [2053], "jrpass.me": [2053], "ru.theanarchistlibrary.org": [16482], "vs2vl.co": [2053], "www.teevox.com": [16317], "indi.rocks": [2053], "thomas-krenn.com": [16642], "o2s.me": [2053], "click4assistance.co.uk": [3301], "www.djkit.com": [4112], "homespot.falkirk.gov.uk": [5754], "masstea.ch": [2053], "l.urlto.info": [2053], "sms.cxplaza.com": [2053], "sales-images1.therealreal.com": [21714], "woak.in": [2053], "www.verseone.com": [21909], "vuejs.org": [18165], "wwwdyn.zdf.de": [22127], "greenit-bb.de": [7044], "login.kuleuven.ezproxy.kuleuven.be": [8969], "comnap.aq": [2696], "mjs.jobs": [2053], "gstylmg.com": [2053], "urhip.us": [2053], "www.indymedia.org.uk": [8233], "*.nautil.us": [11299], "csulb.edu": [2803], "di.simpen.in": [2053], "img1.aquagear.com": [1183], "copyright-watch.org": [3724], "antok.co": [1111], "jemi.ma": [2053], "gamecraft.cz": [20199], "lovesuje.co": [2053], "freetalklive.com": [20171], "mister.ws": [2053], "banis.us": [2053], "rede.ink": [2053], "panamapapers.icij.org": [7831], "w.uptolike.com": [17669], "epuap.gov.pl": [19985], "pingless.co.il": [12903], "4info.xyz": [2053], "bas.la": [2053], "qatar.usembassy.gov": [21879], "kcar.me": [2053], "*.trkclk.net": [17029], "s.marketwatch.com": [10185], "*.impact-ad.jp": [8158], "www.conted.ox.ac.uk": [17557], "goshenbkc.com": [2053], "invodo.com": [8479], "ejuden.me": [2053], "okst.secure-endpoints.com": [14722], "studifit.htwk-leipzig.de": [7736], "adastradev.its.sfu.ca": [14893], "modernrepo.com": [10710], "sk.link.at.tf": [2053], "img2.glassdoor.com.au": [20249], "hellowebapp.com": [7439], "*.ientry.com": [20409], "gonoir.co": [2053], "greatnonprofits.org": [7037], "accessoires.t-mobile.nl": [16025], "login.ccccloud.com": [2597], "go.edatwork.com": [2053], "www.kbs.de": [9092], "apply.berklee.edu": [1839], "nchls.co": [2053], "s24.li": [2053], "brcproducts.net": [2053], "abclinuxu.cz": [443], "houseoffraser.co.uk": [7709], "s24.lc": [2053], "secure.cica.ca": [2858], "vdo.li": [2053], "dljy.co": [2053], "xenbits.xenproject.org": [18859], "docs.cachethq.io": [2768], "arigus-tv.ru": [19415], "ap1.pccu.edu.tw": [12425], "www.the109.org": [16506], "www.sv.uio.no": [17615], "note.cyberplat.ru": [4047], "eastbay.com": [5117], "curejoy.io": [2053], "thebestirs.co": [2053], "financnahitparada.sk": [5943], "www.librecmc.org": [20679], "1kbhkort.kk.dk": [8883], "becbc.co.uk": [2053], "be-nl.norton.com": [11703], "healthtoday.mims.com": [9910], "n.3m.com": [2053], "rcbris.co": [2053], "sflogo.sourceforge.net": [15423], "www.payoneer.com": [12694], "www1.pfizerpro.com": [12824], "m.zalando.nl": [19094], "brobx.com": [2053], "adroll.com": [575], "rhein-neckar-loewen.de": [14093], "wcdapps.hhs.gov": [7192], "service.gmx.net": [6467], "www.ub.uni-mainz.de": [17611], "e-gold.com": [4950], "telusmobility.com": [16364], "informabtl.com": [13953], "ospa.me": [2053], "mobygames.com": [10692], "shared.qwknetllc.com": [13523], "trib.ent.sirsidynix.net.uk": [15107], "www.junglee.com": [8832], "brainbench.com": [2319], "hosterbox.com": [7666], "security.illinois.edu": [17544], "www.hackinparis.com": [7268], "www.sensepost.com": [14830], "www.migrosbank.ch": [10563], "act.demandprogress.org": [527], "putlockerhd.ga": [2053], "hevcp.engineering.osu.edu": [11959], "amzn.to": [2053], "ml.ms": [2053], "secure.jsonline.com": [20557], "appsecusa.org": [1172], "musicda.sh": [2053], "lwscomdtq8.lowes.com": [9800], "blog.stackoverflow.com": [15611], "thepublicindex.org": [16471], "pcboc.com": [2809], "business.ftc.gov": [5837], "playerstribu.ne": [2053], "ligatus.com.tr": [9502], "www.anonbox.net": [1086], "tv-release.net": [17135], "p9m.it": [2053], "mpfemployers.org.uk": [20838], "updates.jenkins.io": [20536], "stopsoftwarepatents.eu": [15742], "adcentre.magnetisemedia.com": [10028], "zane.tips": [2053], "www.servicenow.com": [14866], "s0.jrnl.ie": [20554], "truthinadvertising.org": [17077], "zeedpic69.com": [19124], "myqn.my": [2053], "www.gdata.co.jp": [6410], "*.internetretailer.com": [17932], "s.mirr.jp": [2053], "blogs.letemps.ch": [9346], "www.geeknetmedia.com": [6626], "jotw.at": [2053], "octopart.com": [11913], "sprecherapp.com": [2053], "www.centreon.com": [3019], "treasurecoast.aclufl.org": [286], "s9.cnzz.com": [3391], "dtsmedia.co": [2053], "*.ng.bluemix.net": [2205], "www.internot.info": [8439], "maxw.co": [2053], "datacard.com": [4276], "10.url.cn": [21874], "schneideroptics.com": [14600], "randstad.us": [2053], "boyshout.com": [2053], "www.mutts.com": [20855], "andr.as": [2053], "store.ancestry.com": [1031], "sflb.net": [2053], "kye.ch": [2053], "bg4.me": [2053], "infopackets.com": [8262], "www.turisticke-znamky.cz": [21815], "economize.catracalivre.com.br": [2967], "krcr.co": [2053], "shop.sandsmedia.com": [14449], "*.nevillholtopera.net": [11478], "compass.illinois.edu": [17544], "hukd.mydealz.de": [10944], "transfo.squat.net": [21549], "ads.undertone.com": [17443], "sise.gr": [2053], "studentinvolvement.wustl.edu": [18290], "www.nuevocloud.com": [20959], "www.thedilbertstore.com": [16535], "www6.northyorks.gov.uk": [20930], "nietzs.ch": [2053], "searchworks.stanford.edu": [15635], "*.offerscdn.net": [11939], "www.aa.com": [265], "go.pardot.com": [12605], "fanda.co": [2053], "pop6.com": [13128], "fernando.tips": [2053], "*.quizaction.de": [13604], "app.mouseflow.com": [10812], "*.livejournal.com": [9652], "a.bayi.com.my": [2053], "kserver.mastermindpro.com": [10222], "grdc.com.au": [7014], "src.ac.pld-linux.org": [12470], "link.ibfd.org": [2053], "dgt.gl": [2053], "npnow.news": [2053], "www.citymapper.com": [3252], "wwws.loc.gov": [9690], "www.riscon.cz": [14131], "assets.gyazo.com": [7165], "pkids.co": [2053], "www.dbs.com.hk": [4084], "www.biostat.wustl.edu": [18290], "telecolumbus.de": [16329], "rkcpr.com": [2053], "intranet.inria.fr": [8309], "my.bracknell-forest.gov.uk": [19584], "kiwicon.org": [9080], "support.webhost.co.nz": [12234], "datacvr.virk.dk": [18032], "bestvpn.com": [1860], "qpr.ba": [2053], "buho.im": [2053], "lizb.it": [2053], "host80.top": [2053], "mycommerce.com": [10942], "www.yr.no": [22120], "techendo.com": [16282], "sflogo.sf.net": [15423], "toystud.io": [2053], "nano.osu.edu": [11959], "youtube.pt": [19016], "myaccount.globalcapacity.com": [6845], "framalab.org": [6214], "www.zeroblock.com": [19155], "youtube.pr": [19016], "specialisten.at": [2053], "patty4ia.com": [2053], "t2t.pw": [2053], "ga.doubanio.com": [19954], "lhc.church": [2053], "kctcs-lod.edusupportcenter.com": [20012], "events.cornell.edu": [3744], "deakin.edu.au": [4330], "lbp.me": [20644], "500.chromeexperiments.com": [3177], "jujub.it": [2053], "mymediamagnet.com": [11000], "ms-i.us": [2053], "my.lambeth.gov.uk": [20631], "bizta.lk": [2053], "bt.gd": [2053], "iridscnt.me": [2053], "by.far.al": [2053], "kngs.me": [2053], "frab.camp.ccc.de": [2596], "rtsn.tk": [2053], "www.get-digital.es": [6683], "www.guidancesoftware.com": [7134], "tprk.us": [2053], "kngs.mn": [2053], "nter.dk": [2053], "pixmix.co": [2053], "rkz.meituan.com": [10405], "www.atlseccon.com": [19450], "rbwm-consult.objective.co.uk": [20979], "static-cdn.mackeeper.com": [9984], "link.sabio.tv": [2053], "philp.al": [2053], "ona.idnes.cz": [20425], "jiffyfreescore.com": [8717], "dky.bz": [2053], "cdn3.vox-cdn.com": [18145], "1.ie.edu": [2053], "*.nyu.edu": [11486], "static.soup.io": [15415], "jenkins.labs.nic.cz": [11572], "emc2.cornell.edu": [3744], "akademie.nic.cz": [11572], "kxlogo.knet.cn": [8892], "www.canadianwebhosting.com": [2854], "images-3.gog.com": [6482], "thepiratebay.pe": [21710], "op.vitamins.nl": [2053], "eiu.com": [5162], "m.korean.alibaba.com": [850], "n.uuus.be": [2053], "s3.plymouth.ac.uk": [13055], "support.aerofs.com": [727], "bri.gd": [2053], "www.ethnologue.com": [5489], "podjetje.hofer.si": [338], "www.oniontip.com": [12063], "wayf.dsi.cnrs.fr": [6314], "dlros.com": [2053], "www.planet-energy.de": [12978], "www.amnesty.org": [994], "eventbrite.de": [20071], "m.lurkmore.so": [9838], "x.ngt.no": [2053], "appworld.blackberry.com": [2102], "gerritcro.es": [2053], "stats.thermoscientific.com": [16617], "apnaindia.com": [1135], "on.tdo.com": [2053], "www.linuxserver.io": [9595], "telnic.org": [16360], "img.shields.io": [21425], "melbc.it": [2053], "friendme.sonyentertainmentnetwork.com": [15398], "cryptonote.org": [19826], "quup.com": [13614], "favu.vutbr.cz": [17814], "citya.tl": [2053], "t.maxpreps.com": [2053], "multimedia.upf.edu": [17674], "encoding.com": [5334], "ibec.me": [2053], "jvel.in": [2053], "harperreed.com": [7341], "link.mwt.tw": [2053], "rmcd.eu.org": [2053], "www.freedomhouse.org": [6294], "kaiserf.am": [2053], "nckr.es": [2053], "frozen-yogurt-franchise.org": [6350], "am.medialaben.no": [20769], "featurefile.com": [2053], "timesheets.opm.gov": [11853], "cams.tm.com.my": [16341], "wzr.io": [2053], "webstyle.ch": [18455], "ehn.emoryhealthcare.org": [5313], "www.trust-it.gr": [17056], "hobbypcb.com": [20347], "coderouge.co": [3437], "sony-europe.com": [15390], "nchow.ca": [2053], "go.hw.is": [2053], "cloudshark.org": [19740], "piggeldy.workaround.ch": [22048], "tw.voicepro.it": [2053], "app.movableink.com": [10816], "darkhim.re": [2053], "www.grillingishappiness.com": [7082], "www.flashgot.net": [6018], "msturm.htwk-leipzig.de": [7736], "sc.rgstatic.net": [13655], "bbyz.co": [2053], "cusa.onl": [2053], "letsencrypt.status.io": [21569], "opencaching.pl": [21010], "shibboleth.highwire.org": [7541], "ajax.microsoft.com": [10543], "crowneplaza.nz": [2053], "www.flowingdata.com": [6061, 6062], "straw.bz": [2053], "getpocket.com": [6702], "templetonusd.illuminateed.com": [20430], "ggab.tv": [2053], "glorios.us": [2053], "jh13.ga": [2053], "vn.usembassy.gov": [21879], "halans.co": [2053], "telethon2015.fr": [2053], "strava.cz": [15770], "iadt.worldcat.org": [18748], "a.txtr.se": [2053], "www.fundaciontelevisa.org": [6377], "hezuo.1688.com": [44], "www.medialayer.net": [10322], "tkts.us": [2053], "www.railsschool.org": [13765], "hsi.la": [2053], "labs.riseup.net": [14133], "1statebank.org": [2053], "chrdnet.com": [19710], "thepirateproxy.tech": [21709], "quickbase.com": [8452], "www.jepso.com": [8703], "iwbcollaboration.educ.cam.ac.uk": [17529], "www.muspy.com": [10914], "marca.bankinter.com": [1694], "sw12.squat.net": [21549], "login.xmarks.com": [18882], "pw4.com": [2053], "www.kororaproject.org": [9140], "democratic.warwickshire.gov.uk": [21980], "loak.loak.org": [2053], "ars.usda.gov": [17495], "piratebay.unlockproject.download": [21771], "lstbrl.in": [2053], "hxgn.biz": [2053], "fitbit.link": [2053], "e.tobuy.tips": [2053], "old.majordomo.ru": [10068], "ellecan.ca": [2053], "eecs.berkeley.edu": [17526], "www.data.gov.uk": [19855], "cseah.lc": [2053], "blockbuster.co.uk": [2136], "1.bp.blogspot.com": [2160], "www.herts.police.uk": [7472], "tunisia-sat.com.tn": [17107], "www.ozvoucher.com.au": [12400], "*.uscis.gov": [17333], "a.alodady.com": [2053], "b2b.migrol.ch": [10562], "what-if.xkcd.com": [22085], "conce.pro": [2053], "dcp.psc.gov": [21220], "prebb.bz": [2053], "files.williamhill.com": [18615], "auslieferung.commindo-media-ressourcen.de": [3545], "www.readthenburn.com": [13845], "pt.pornworms.com": [13155], "bugreports.qt.io": [13545], "*.modcloth.com": [10698], "tyjo.us": [2053], "e.fastcompany.net": [5797], "nordichardware.se": [11670], "v5.windowsupdate.microsoft.com": [10542], "n2u.jp": [2053], "ulan-ude.beeline.ru": [1801], "render.fineartamerica.com": [5959], "www.hashbang.ca": [7357], "cmspromo.alipay.com": [857], "www.mycotopia.net": [11016], "2.dbstatic.no": [19866], "songsterr.com": [15384], "forum.ovh-hosting.fi": [12378], "silana.no": [2053], "panop.to": [2053], "omin.es": [2053], "www.auctionbunker.com": [1381], "www.punto.ar": [13459], "sherlock.livingsocial.com": [9679], "www.baztab.net": [1760], "*.uni-muenchen.de": [9245], "setonc.net": [2053], "artsts.de": [2053], "sealey.in": [2053], "www.usenetter.nl": [21880], "s21.cnzz.com": [3391], "www.caskstore.com": [2943], "webtorrentsearch.com": [16494], "l.tzty.net": [2053], "entangledstates.org": [20044], "rimg09.rl0.ru": [14147], "nutrimom.co": [2053], "kalmykiya.beeline.ru": [1801], "helpdesk.malwarebytes.org": [10093], "mountainview.gov": [3250], "ess.re": [2053], "360myte.ch": [2053], "www.behavioralpolicy.org": [1810], "www.mofobian.com": [10718], "krsta.me": [2053], "fusionr.ec": [2053], "www.dr-qubit.org": [4830], "desr.dict.cc": [4536], "weoly.com": [2053], "stu.onl": [2053], "services.account.lego.com": [9222], "pd-c.at": [2053], "valvesoftware.com": [17841], "getbb.io": [2053], "*.liquidweb.com": [9603], "s.tesp.info": [2053], "hact.in": [2053], "muo.co": [2053], "www.secure.me": [14732], "es.gizmodo.com": [6817], "icehost.is": [8060], "www.lynxtech.no": [9849], "www.discovery.com": [4640], "bbqg.us": [2053], "portal.2kom.ru": [114], "media.washpost.com": [18285], "jd.1688.com": [44], "px.at.atwola.com": [358], "picexplore.com": [2053], "en-ro.dict.cc": [4536], "fls-na.amazon.com": [954], "msti.me": [2053], "kreator.kei.pl": [8993], "jbfavre.org": [8687], "myseiu.be": [2053], "onfs.net": [2053], "ebx.mx": [2053], "sharalike.co": [2053], "s88.cnzz.com": [3391], "chainflyer.bitflyer.jp": [1981], "bmby.ml": [2053], "commcoach.tips": [2053], "8.lmk.is": [2053], "twittab.co": [2053], "dcminfo.wustl.edu": [18290], "www.events.nibusinessinfo.co.uk": [20908], "hrd.cm": [2053], "frontroe.co": [2053], "factoryexpohomes.com": [5740], "standagainstspying.net": [15628], "finse.uio.no": [17615], "w3.grupobbva.com": [1766], "disc.yandex.com.tr": [18954], "abiliba.net": [457], "cyweo.me": [2053], "www.ipk.fraunhofer.de": [6230], "customers.anpdm.com": [1094], "tb-gui.de": [2053], "go.gitt.io": [2053], "x.zvy.xyz": [2053], "factorioforums.com": [20091], "nknews.org": [11123], "blog.netspi.com": [11398], "bpb.de": [19582], "fraserxu.me": [6227], "s.sti.st": [2053], "whois.registro.br": [13968], "ecfr.xyz": [2053], "www.zemanta.com": [19128], "url.deathe.org": [2053], "il.norton.com": [11703], "odinn.cyberguerrilla.org": [4033], "www.cashplatoon.com": [2938], "s.r15.ch": [2053], "sbkc.us": [2053], "ams.org": [349], "herbal-nutrition2.net": [7462], "rochdale.spydus.co.uk": [21546], "admin.oktd.kent.gov.uk": [9005], "cdn2.spectator.co.uk": [21528], "securityinnovation.com": [14773], "google.*": [6966, 6968, 6973, 6975], "www.libtoxcore.so": [9483], "news.sqcp.com": [2053], "www.mijnd66.nl": [10568], "interfax.az": [20475], "myskai.ch": [11034], "pirateproxy.club": [21215], "my.tryapka.com": [2053], "ubmelectronics.com": [17204], "neave.tv": [11315], "bcal.co": [2053], "writtenchinese.com": [22056], "mbl.teljari.is": [10276], "www.trollingeffects.org": [17032], "j.pdsla.net": [2053], "tahoesha.re": [2053], "www.ratgeber-verbraucherzentrale.de": [17909], "go.votare.net": [2053], "vr.force.com": [17934], "www.komments.net": [9117], "lp.nanigans.com": [11218], "www.koldfront.dk": [9113], "demandfood.co": [2053], "localsearch.courierpostonline.com": [3783], "www209.americanexpress.com": [972], "force.com": [14487], "go.zvo.io": [2053], "wpch.co": [2053], "www.instra.com": [8346], "www.deezer.com": [4381], "js.tv.itc.cn": [8536], "bppub.net": [2053], "mwick.es": [2053], "clujne.ws": [2053], "www.sci-hub.ac": [14615], "directspace.net": [4609], "otf.msn.com": [9961], "www.fakena.me": [20095], "nslp.co": [2053], "sandbox.pagseguro.uol.com.br": [17276], "unbridled.info": [17438], "balashikha-22-mr.beeline.ru": [1801], "etn.li": [2053], "www.catchthemes.com": [19656], "blockmetrics.com": [2141], "adp.s8bbs.com": [21352], "www.torrentz.com": [16863], "blog.brightfort.com": [2374], "es.ca.anthem.com": [19395], "tfit.ch": [2053], "new.familysearch.org": [5760], "on.styo.me": [2053], "www.ant.ulaval.ca": [17515], "static.chartbeat.com": [3077], "growhq.com": [7108], "xfin.tv": [2053], "*.footholds.net": [6132], "console.magnetisemedia.com": [10028], "l.jrunn.in": [2053], "*.blogspot.co.at": [2166], "*.travelingnuker.com": [16971], "m.yandex.by": [18953], "*.listrakbi.com": [9614], "metrics.sky.com": [15170], "mi.gl": [2053], "kerriis.ms": [2053], "helpdesk.bittylicious.com": [2079], "risd.mu": [2053], "eatocracy.cnn.com": [18730], "ross.to": [2053], "unbnd.me": [2053], "www.nordvpn.com": [11678], "licensing.havant.gov.uk": [20318], "receivingmail.osu.edu": [11959], "cdn-my.nanorep.com": [11222], "0.lokonline.com": [2053], "frd.hm": [2053], "agentapi.ipip.net": [20490], "skm.ms": [2053], "getrxn.io": [2053], "blng.co": [2053], "kpsh.us": [2053], "cxmst.jd.com": [8571], "children.brent.gov.uk": [2358], "cdn2.doitgarden.ch": [4726], "hoppy.co": [2053], "*.cloudsigma.com": [3352], "www.rssinclude.com": [13697], "m.anhe.im": [2053], "www.vlada.gov.sk": [15217], "uadm.uu.se": [17352], "shibboleth.usc.edu": [17564], "life.gt": [2053], "cdna.thehubpeople.com": [21701], "www.tfl.gov.uk": [16956], "wenshang.meituan.com": [10405], "buyiphone3.apple.com": [1160], "go.roastrabb.it": [2053], "www.armedforcesday.org.uk": [1239], "smld.rs": [2053], "cdn.blicko.com": [2126], "games.unizar.es": [17643], "servicios.upo.es": [17683], "cpr.io": [2053], "www.pb.uillinois.edu": [17238], "in-tendhost.co.uk": [20449], "www.symfony.fi": [15972], "www3.lcsd.gov.hk": [7211], "seller.alibaba.com": [850], "gem106.co": [2053], "sifterapp.com": [11551], "userpub.itunes.apple.com": [1160], "users.venturebeat.com": [17903], "cgdl.mx": [2053], "io.hanselwei.me": [2053], "ma5.us": [2053], "go.femistans.cf": [2053], "westernunion.com": [18512], "www.1ty.me": [80], "www.mastermindpro.com": [10222], "www.wykop.pl": [18788], "wldts.co": [2053], "jtg.me": [2053], "adjug.com": [565], "moviemaps.org": [10825], "thetqp.com": [2053], "www.managedforexprogram.com": [10105], "www.justitie.nl": [11324], "www.speech-language-therapy-jobs.org": [21529], "*.ag.gov.au": [1376], "www.weekendjeweg.nl": [7597], "on.kljb-s.de": [2053], "crawleybc.firmstep.com": [20125], "i.ban.jo": [2053], "s.xfeng.me": [2053], "ar.godaddy.com": [6898], "notefly.org": [11718], "www.canon.com.tr": [2868], "archive.anon-ib.co": [1075], "ana.ostad.ma": [2053], "i.swapsocks.com": [2053], "research.buffalo.edu": [17583], "vda.cm": [2053], "www.crysys.hu": [3908], "www.blackgate.net": [19552], "studyinthestates.dhs.gov": [4109], "sacq.co": [2053], "*.ravensoft.com": [13813], "bahbah.co": [2053], "bolton.spydus.co.uk": [21546], "tours.sasve.com": [2053], "dostan.mondediplo.com": [10729], "cloudflarestatus.com": [3362], "wapo.st": [2053], "www.nxtblocks.info": [11176], "culturetalks.tv": [2053], "punchout.digikey.de": [4552], "o.coolto.com.br": [2053], "www.ovh.nl": [12378], "osumarion.osu.edu": [11959], "abcdent.in": [2053], "m.melbourneaquarium.com.au": [10409], "actete.ch": [2053], "j0uw.nl": [2053], "tstitt.me": [2053], "www.connectedu.net": [19774], "www.telefonica.cz": [16332], "alice.sg": [2053], "a.zhng.me": [2053], "r.trix.nz": [2053], "*.nonexiste.net": [11663], "abcmusicpublishing.com.au": [274], "*.powweb.com": [13213], "yun.yunbi.com": [19057], "mbogeni.us": [2053], "a4.hitravel.xyz": [2053], "cdn.yourpshome.net": [19033], "www.passwordless.net": [21078], "techinasia.com": [16280], "californiasunday.com": [2808], "u.tpx.mx": [2053], "blog.percy.io": [21108], "lymecomms.co.uk": [2053], "*.data.aad.gov.au": [1419], "hushmail.com": [7777], "flashrom.org": [6020], "cdn4.sportxx.ch": [15543], "patcholo.gy": [2053], "*.o2.cz": [16332], "www.duba.com": [4885], "*.spreadshirt.fi": [15552], "community.flixster.com": [6049], "content.thunderkick.com": [16675], "crp.gov.sk": [15217], "vai.gopale.org": [2053], "wiki.allizom.org": [896], "j16.co": [2053], "iconical.com": [8067], "astrol.is": [2053], "joeb.me": [2053], "crewfi.re": [2053], "estoniaevoting.org": [5473], "itspa.org.uk": [7996], "www.fiddler2.com": [20104], "freedomhouse.org": [6294], "freeflixtv.ga": [2053], "toogl.com": [16823], "ausleihe.hslu.ch": [7728], "commonfund.nih.gov": [11241], "dev.thegaz.us": [2053], "efl.georgetown.edu": [6668], "sverdlovskaya-obl.beeline.ru": [1801], "support.spotify.com": [15548], "coaching.co": [2053], "wirelessleiden.nl": [18669], "exa.gen.in": [2053], "nicolesy.me": [2053], "freebin.org": [6241], "service.enum.ru": [5407], "cubek.me": [2053], "tnyn.gs": [2053], "dvgf.nl": [2053], "www.drm.info": [4156], "wag.q-assets.com": [21235], "sartre.tk": [2053], "webmail.active24.com": [19275], "cbt.gg": [2053], "www.ostermiller.org": [21037], "gop.ac": [2053], "glsdrt.co": [2053], "*.apmebf.com": [17834], "images.gunosy.com": [7151], "gpac.link": [2053], "*.eprize.com": [5045], "partner.xfinity.com": [22082], "sheppyware.net": [14945], "red-bean.com": [13899], "tnsinfo.com": [16097], "irf.se": [7959], "tor2web.org": [16837], "www.semantic-mediawiki.org": [21407], "discusslr.com": [4645], "*.coupons.com": [3780], "der.heiko.in": [2053], "bdgr.ws": [2053], "gerr.it": [2053], "account.services.tv4play.se": [16137], "i1.3conline.com": [157], "pen.fo": [2053], "m.localphone.com": [20709], "shopzilla.com": [14978], "psic.in": [2053], "downloads.openwrt.org": [12190], "vas-hosting.cz": [21896], "testpypi.python.org": [13500], "s.1688.com": [44], "stapi.snacktools.com": [15265], "links.kma1.com": [2053], "libregamewiki.org": [20680], "rewaq.co": [2053], "www.motigo.com": [10800], "www.gmw.nhs.uk": [11102], "edsm.co": [2053], "onetimesecret.com": [12051], "tools1.cisco.com": [3221], "www.thetoadfly.com": [16796], "stm.degica.com": [3396], "www.chickensoup.com": [3132], "cvent.com": [4020], "btbadge.tv": [2053], "www.vooplayer.com": [18134], "*.sites.usa.gov": [17307], "countermail.com": [3773], "mem.bo": [2053], "www.hackerspace.pl": [7280], "enrollment-info.empireblue.com": [20033], "q.beaufort.coop": [2053], "sdd.bz": [2053], "store.lessigforpresident.com": [9419], "forums.bad-dragon.com": [19475], "b.dianping.com": [19913], "skola.bozg.se": [2053], "ledr.tech": [2053], "cyp.halton.gov.uk": [20308], "rentbot.info": [2053], "darwin.affiliatewindow.com": [4569], "ubuntu-de.org": [17373], "yinchuan.jd.com": [8571], "www.cambridgesoft.com": [2827], "www.midnight-commander.org": [10557], "ignit.ee": [2053], "www.doubleclickbygoogle.com": [4803], "www.sec.gov": [17301], "bitcoinapi.de": [2033], "cdn.engine.adsupply.com": [583], "www.medarbejdersignatur.dk": [10305], "go.158db.com.ph": [2053], "go.yokhlo.com": [2053], "www.vtiger.com": [18161], "michaelsl.net": [2053], "eljoseur.me": [2053], "wpbeg.in": [2053], "idaho.worldcat.org": [18748], "netmoms.eu": [2053], "jow.me": [2053], "*.switchplus.ch": [15958], "www.boerse-frankfurt.de": [2230], "*.hostgator.com": [7656], "gothron.es": [2053], "hps.nhs.uk": [11102], "insight.36kr.com": [142], "ashw.us": [2053], "protonrad.io": [2053], "live.goodline.info": [20269], "seo.nlx.org": [20918], "secure1.heifer.org": [7423], "i.mnew.us": [2053], "osu.worldcat.org": [18748], "kir.hu": [11976], "*.copernic.com": [3718], "vefpna.com": [2053], "karma.mg": [8951], "citibank.com.au": [3229], "le.anthem.com": [19395], "cms.clickability.com": [4925], "filippidis.biz": [2053], "blogs.walthamforest.gov.uk": [18262], "mrrevillz.link": [2053], "trk.ukdeals.co": [2053], "physi.uk": [2053], "www.premiumleech.eu": [21192], "qis.verwaltung.uni-hannover.de": [17453], "menoslobos.eu": [2053], "git.reviewboard.kde.org": [8871], "anzen.org.uk": [1122], "www.3dcenter.org": [147], "sen16rs.com": [2053], "bstry.nl": [2053], "gpi.gs": [2053], "iplay.com": [8493], "pugetsystems.com": [21225], "kage.info": [2053], "femspla.in": [2053], "www.letterboxd.com": [9424], "i7.lbp.me": [20644], "jmls.it": [2053], "y8s.us": [2053], "oseems.com": [12323], "www.base64-image.de": [19491], "go.cinestir.tv": [2053], "ssl-hints.netflame.cc": [11419], "ramsis.osu.edu": [11959], "g-web.in": [2053], "contacts.world-lotteries.org": [22052], "iphone.vodafone.co.uk": [18106], "www.vofzpwh.com": [3546], "brandmonitor.domaintools.com": [4750], "*.myheritage.br": [11023], "www.pthree.org": [13419], "wshbrn.com": [2053], "29th.net": [2053], "*.londoncityairport.com": [9743], "docs.mopidy.com": [10771], "img.fark.net": [5776], "hsf.isis.poly.edu": [13113], "*.westconsincu.org": [18511], "static.warthunder.com": [21976], "eyeb.ee": [2053], "phot.li": [2053], "*.www.o2.cz": [16332], "j.rudish.net": [2053], "*.hawaii.gov": [7378], "z.36kr.com": [142], "download.mailvelope.com": [10058], "www.extremetech.com": [19176], "webmdhealthservices.com": [18369], "poole.objective.co.uk": [20979], "www.hsbcnet.com": [20386], "www.freefind.com": [6244], "blue-store.wsj.com": [22058], "ckv-mia.nl": [2053], "*.gamezebo.com": [6562], "albiero.videolan.org": [17981], "et00.xhcdn.com": [18815], "www.teespring.com": [16316], "storm-club.cz": [2053], "link.sofun.tw": [2053], "www.wupd.wustl.edu": [18290], "phpnet.org": [12454], "www.webcron.org": [21990], "www.proxyportal.org": [21217], "stats.cyanogenmod.org": [4026], "i.nyx.cz": [11798], "bkstge.at": [2053], "pelink.us": [2053], "fishermedia.me": [2053], "myxk.in": [2053], "calsi.us": [2053], "zwiebelfreunde.de": [19244], "pwiz.la": [2053], "www.shopware.de": [14977], "email.asda.com": [387], "www.chimeric.de": [3139], "www.cuckoosandbox.org": [19837], "capacitar.se": [2053], "twit.truekc.com": [2053], "a.slack-edge.com": [15188], "n-e-a.ca": [2053], "www.ifa.ch": [7869], "nepomuk.kde.org": [8871], "www.dandwiki.com": [4216], "fblosc.com": [2053], "i8.c.dk": [2556], "tommify.com": [2053], "alliedmods.net": [893], "soa.org": [14385], "wulife.wustl.edu": [18290], "pjointe.com": [69], "softoni.cc": [2053], "html5.gd": [2053], "pdmbw.nl": [2053], "vin.ac": [2053], "lenscaper.be": [2053], "www.showcase-tv.com": [14985], "zndg.tl": [2053], "grainful.co": [2053], "skysa.ga": [2053], "netscape.com": [11441], "sundaypeo.pl": [2053], "b.55s.me": [2053], "livezilla.net": [9660], "thephoenixbay.com": [21709], "fnc.io": [2053], "*.chemspider.com": [14230], "help.yandex.by": [18953], "ims.osu.edu": [11959], "giantbomb.com": [6756], "frillo.me": [2053], "go.geeksyfe.net": [2053], "kontakt.immobilienscout24.de": [8153], "aarocha.io": [2053], "xsplatfor.ms": [2053], "stat.erlang.ru": [20054], "dd15.me": [2053], "nmnt.in": [2053], "www.zomato.com": [19208], "www.linuxhostsupport.com": [9589], "lists.stg.fedoraproject.org": [5843], "go.msuaa.com": [2053], "notaryne.ws": [2053], "omniref.com": [11997], "vini.uk": [2053], "p6r.com": [12408], "mc.tune.com": [21812], "ogc.stanford.edu": [15635], "forms.westlaw.com": [18514], "dec.loak.org": [2053], "manage.webhost.biz": [18417], "jusaiprieto.com": [2053], "on.be.net": [2053], "store.zentyal.com": [19148], "partner.webgo24.de": [18362], "*.thepublicindex.org": [16471], "www.abestpremium.com": [19256], "user.centrum.sk": [19675], "*.sslcs.cdngc.net": [2618], "l.grantbook.org": [2053], "spam.fit.edu": [6058], "www.enthought.com": [5401], "mtnpoint.co": [2053], "baylibre.com": [1748], "api.gawker.com": [6593], "www.gramsflow.com": [7015], "img.rl0.ru": [14147], "ianho.us": [2053], "www.scg.ulaval.ca": [17515], "stats.avaaz.org": [1476], "troos.info": [2053], "hiring.*.monster.com": [10752], "apps4.lbhf.gov.uk": [9218], "www.chris-lamb.co.uk": [3162], "natoonline.org": [11236], "www.elster.de": [5290], "appsurprise.de": [2053], "getbeagle.co": [6708], "www.commandlinefu.com": [3539], "k8e.co": [2053], "rd.kntkr.net": [2053], "*.baxterbulletin.com": [1745], "enerskin.info": [2053], "mymitcloud.com": [2053], "textmagic.com": [16418], "armatactics.com": [19417], "alrdyhrd.uk": [2053], "www.splitpdf.com": [21537], "cr.agency": [2053], "govdelivery.com": [6990], "robemri.ch": [2053], "www.action-intell.com": [532], "ftao.tv": [2053], "shop.cei.org": [3585], "bit.svb.com": [2053], "img3.xcart.com": [18806], "volarephoto.me": [2053], "*.mybuys.com": [10936], "quecomi.co": [2053], "www.nradefensefund.org": [20945], "ti.com": [16070, 16413], "osh.utm.edu": [17628], "wgaz.ca": [2053], "disability.gov": [4622], "my.ti.com": [16413], "myaloecleanse.com": [10989], "www.enterbrain.co.jp": [20045], "hspc.openhost.net.nz": [12234], "*.kjaer.io": [20606], "ubmchannel.com": [17204], "pkkn.tk": [2053], "livefyre.com": [9670], "cdn2.gbot.me": [6934], "*.adrxmedia.com": [17833], "thepl.us": [2053], "oskarblu.es": [2053], "secure.arb-forum.com": [11235], "s.sentmenat.com": [2053], "altsneed.co": [2053], "*.hammacher.com": [7313], "shopbootsusa.com": [2267], "www.fad.fss.ulaval.ca": [17515], "mbc.me.uk": [2053], "enrol.bournemouth.gov.uk": [2304], "arvid.me": [2053], "mciotta.us": [2053], "my.cryptovpn.com": [3936], "drsamwill.is": [2053], "*.assetspost.com": [3046], "ryngln.com": [2053], "images.playboy.com": [13019], "widgets.yandex.com": [18956], "news.citrixonline.com": [3238], "gtms03.alicdn.com": [846], "welwynhatfield.greenparty.org.uk": [7052], "www.dr.com.tr": [4153], "*.cdn.cloudfiles.rackspacecloud.com": [13741], "shopyourway.com": [14968], "tchlp.com": [2053], "djyx.hao123.com": [20312], "images.fineartamerica.com": [5959], "static.javadoc.io": [8678], "devimages.apple.com": [1160], "www.sbs.nhs.uk": [11102], "www.torrentpier.me": [21761], "c.bgent.net": [2053], "www.research.ibm.com": [7821], "datacell.com": [4255], "*.bestofferbuy.com": [1857], "brighton-hove.spydus.co.uk": [21546], "www.cable-tv-deals.com": [18786], "store.imgtec.com": [20441], "www.englandconsult.forestry.gov.uk": [20144], "globalscaletechnologies.com": [6861], "dl.ubnt.com": [17363], "www.chevereto.com": [3128], "gpodder.net": [6494], "opentechfund.com": [12181], "2o2p.com": [2053], "bugs.dragonflybsd.org": [4834], "jumio.com": [8824], "www.ecoff.org": [5156], "cynwen.co": [2053], "www.youtube.es": [19016], "www.kub.nl": [16716], "journalxtra.com": [8793], "www.nodc.noaa.gov": [11272], "support.optimizely.com": [5030], "vitr.io": [2053], "liberis.co.uk": [20676], "k9.vc": [2053], "tags.expo9.exponential.com": [5623], "hdp.link": [2053], "bbya.org": [2053], "login.creativecommons.org": [3848], "newspaperdirect.com": [11538], "beroeinc.co": [2053], "hck.link": [2053], "www.transifex.net": [16942], "secure-static-cdn1.ustream.tv": [17743], "*.parsecdn.com": [12623], "pygmyboats.com": [21230, 21231], "chpv.me": [2053], "apps.aldi-suisse.ch": [338], "www.maven.co": [10252], "nightweb.net": [11591], "reformal.ru": [13954], "www.xnet-x.net": [18883], "denv.co": [2053], "englearn.engineering.osu.edu": [11959], "www.ges.bell.ca": [1815], "e19.xhamsterpremiumpass.com": [18817], "conoha.jp": [3652], "oxon.link": [2053], "www.excitations.com": [5594], "frelia.me": [2053], "ioplex.com": [7925], "doc.yunohost.org": [19058], "anonfiles.com": [1082], "www.cimb-principal.com.my": [2663], "weusecoins.com": [18324], "catbanks.co": [2053], "help.songkick.com": [21507], "www.mentoringcentral.net": [10439], "debconf7.debconf.org": [4346], "stmp.co": [2053], "bufferapp.com": [2459], "www.fau.org": [5665], "newca.st": [2053], "amsterdam.hackerspaces.nl": [7281], "www.synapsepay.com": [21634], "fil.fm": [2053], "translate.google.com.*": [6965], "uccf.at": [2053], "dvlgll.me": [2053], "thehive.xbee.net": [18848], "gps.cabinetoffice.gov.uk": [2760], "pittsburgstate.worldcat.org": [18748], "ovh.lt": [12378], "lowthian.co.uk": [2053], "coca-cola.ru": [19745], "*.senate.gov": [14818], "www.rareaviation.com": [13799], "gouchercollege.worldcat.org": [18748], "play-as-kid.com": [2053], "huizen.nl": [11324], "jadidlar.com": [2053], "enumdemobank.enum.ru": [5407], "blackznc.net": [2095], "brwn.ps": [2053], "westconsincuhb.org": [18511], "www.opinionlab.com": [12256], "onion.direct": [16837], "www.nintendo.de": [11612], "images.lady.mail.ru": [10040], "p2ipc.us": [2053], "internet.yandex.by": [18953], "my.mail.ru": [10040], "blog.eatsa.com": [19999], "pwsafe.info": [21228], "www.adreducation.org": [19300], "jtf.co": [2053], "*.youtube.com": [19016], "redey.es": [2053], "changeliv.es": [2053], "ctwn.info": [2053], "go.k2cinc.com": [2053], "physicalsecurity.ucsc.edu": [17590], "aging.stanford.edu": [15635], "heihe.jd.com": [8571], "http.cdnlayer.com": [8403], "cld.so": [2053], "cld.sh": [2053], "riplr.co": [2053], "stardrifter.org": [15654], "scl.im": [2053], "globaldatabase.wustl.edu": [18290], "cld.sg": [2053], "smir.nf": [2053], "www.foia.state.gov": [17345], "anybalance.com": [1116], "webmaster.yandex.com.tr": [18954], "afteroffer.link": [2053], "notesappstore.com": [10268], "jasonchr.in": [2053], "www.valtiolle.fi": [17828], "venuscafem.com": [17904], "store.cardsagainsthumanity.com": [2896], "predictiveservices.nifc.gov": [11113], "accl.do": [2053], "knowledgehub.local.gov.uk": [17250], "www.microblink.com": [10531], "issoe.co": [2053], "www.pccomponentes.com": [21092], "url.inxco.be": [2053], "www.openstack.org": [12173], "jonasboserup.dk": [20548], "gdnr.ch": [2053], "www.linksfu.com": [9541], "hby.sc": [2053], "id.theguardian.com": [16554], "www.linuxtv.org": [9576], "teamfitdom.com": [2053], "spk.tv": [2053], "absmob.co": [2053], "www.thesmokinggun.com": [16577], "form.tamago.co": [2053], "engage.vevent.com": [21913], "lbstatic.resrc.it": [13832], "mail.jourdan.ens.fr": [5029], "www.isak.liu.se": [9238], "robinbarnard.com": [14155], "ttb.im": [2053], "boe.es": [1578], "cyph.team": [2053], "bstph.com": [2053], "cestudiantes.uniovi.es": [17479], "s01.flagcounter.com": [20129], "maps.ngs.ru": [20907], "b2bc.me": [2053], "www.immunitysec.com": [8156], "w.cyat.es": [2053], "include.reinvigorate.net": [13982], "bihira.com": [1921], "www.speedcrunch.org": [15502], "www.notepad-plus-plus.org": [11723], "lgam.es": [2053], "www.alumni.utah.edu": [17574], "seniorgift.stanford.edu": [15635], "rev.vet": [2053], "www.ohnopodcast.com": [15583], "dltags.com": [19931], "*.newtention.net": [11542], "*.overclockers.com": [12370], "blog.centreformentalhealth.org.uk": [19671], "secure.barclaycard.co.uk": [1712], "iberiabank.com": [8044], "*.sueddeutsche.de": [15832], "identity.kde.org": [8871], "solar.engineering.osu.edu": [11959], "ir.deferia.mx": [2053], "videotron.com": [17993], "jliberty.me": [2053], "www.halsnaes.dk": [7309], "cloudsleuth.net": [3353], "aidsmap.com": [779], "thebakers.co": [2053], "new3c.tmall.com": [21748], "peakpg.co": [2053], "www.admin.cam.ac.uk": [17529], "www.bitcoin.at": [2012], "dl.bandisoft.com": [1685], "secure8.pipni.cz": [12460], "uu.com.br": [2053], "www.progressive.hu": [13361], "trans.chbtc.com": [3094], "prepaid.congstar.de": [3642], "shkids.co": [2053], "fireckr.uk": [2053], "usyd.edu.au": [21885], "eurovision.tv": [5537], "n.noltelauth.de": [2053], "truebsd.pw": [21799], "akademy2010.kde.org": [8871], "webdev.in.th": [2053], "gl.meituan.com": [10405], "wku.edu": [22039], "romy.rocks": [2053], "pvlink.net": [2053], "blkb.ch": [20574], "realwiv.es": [2053], "torrentday.com": [16850], "*.behance.net": [1809], "showbiz.mail.ru": [10040], "ratm.deathmask.net": [4344], "tparke.us": [2053], "onestart.iu.edu": [8214], "pgc.cc": [2053], "tucbik.es": [2053], "20ss.nyc": [2053], "www.cheapoz.com.au": [3098], "images.washingtonpost.com": [18287], "www.pronosticuri-tenis.com": [7879], "enablingdrea.ms": [2053], "3questionsgetthegirl.com": [18011], "ytwn.in": [2053], "gannan.jd.com": [8571], "mthr.ml": [2053], "ucmerced.worldcat.org": [18748], "l.qran.io": [2053], "nflux.us": [2053], "www.java-apps.org": [21006], "isisaccreditation.imrg.org": [8389], "customwheelconnection.com": [4010], "jehb.us": [2053], "loric.us": [2053], "vaka.me": [2053], "www.ubuntu-mate.community": [17386], "users.admin.badgeville.com": [1649], "r.sa-seo.com": [2053], "mrcry.us": [2053], "dailypix.me": [4195], "dmql8.me": [2053], "xxx.arxiv.org": [1188], "*.sb-innovation.de": [14316], "staging.nvcc.edu": [11787], "www.plannedparenthoodaction.org": [21145], "*.grnet.gr": [7039], "sony.se": [15392], "groupon.com.br": [7099], "thenutro.co": [2053], "ambar.org": [2053], "go.hbfoods.info": [2053], "uwe.su": [2053], "eclass.me": [2053], "go.tendatta.com": [16372], "www.playstationnetwork.com": [13016], "amg.sx": [2053], "fairb.at": [2053], "uberbe.be": [2053], "kinded.com": [2053], "dept.ly": [2053], "beyon.me": [2053], "www.oxfordlearnersdictionaries.com": [12396], "prisguide.tek.no": [16319], "foodpros.co": [2053], "si0.twimg.com": [17153], "url.infopku.com": [2053], "mahasarakhamuniv.worldcat.org": [18748], "*.inbox.lv": [8187], "afcad.engineering.osu.edu": [11959], "boag.me": [2053], "infocentral.state.gov": [17345], "comlaude.com": [3523], "lists.netfilter.org": [11417], "paws.hk": [2053], "pas2.us": [2053], "arg.wtf": [2053], "jcra.in": [2053], "empirehost.me": [20034], "sl.unutsan.com": [2053], "sh.esfli.com": [2053], "*.checkm8.com": [3104], "www.etarget.hu": [5476], "pcbrowser.dd.qq.com": [13514], "hlt.me": [2053], "u.etc.io": [2053], "www.maltris.org": [10088], "coner.gy": [2053], "www.cir.ca": [3212], "youshould.installgentoo.net": [19006], "ua.icecat.biz": [8059], "ckrs.in": [2053], "www.fastsoft.com": [5791], "www.whistleout.com.au": [18547], "iu.edu": [8214], "scottk.us": [2053], "microsoft.com": [10543], "lnk.mantry.com": [2053], "trklnks.com": [17030], "relate.kde.org": [8871], "aquent.us": [1184], "j-t.me": [2053], "uavisitscheduler.wustl.edu": [18290], "www.trustly.com": [17071], "backlift.com": [1641], "info.internet.org": [8426], "yelp.fr": [18979], "uni.xkcd.com": [22084], "rpblcfnmd.info": [2053], "tpb.host": [21771], "www.appveyor.com": [19407], "chiefo.pt": [2053], "berkeleychessschool.org": [1838], "tek.no": [16319], "s.ldk.io": [2053], "themuslimvi.be": [2053], "irc.tfes.org": [16425], "marketdojo.com": [10174], "www.ballerup.dk": [1674], "trend.az": [21786], "search.szfw.org": [21641], "www.dnshistory.org": [4142], "beeline.ru": [1801], "www1.cisco.com": [3221], "jndory.com": [2053], "promotions.autotrader.co.uk": [19458], "o100.cz": [2053], "erinn.org": [5448], "apsislead.com": [1180], "nginx.org": [11567], "p3.raasnet.com": [13890], "brunei.usembassy.gov": [21879], "nhst.be": [2053], "static-ak.hypem.net": [7789], "partner.pricegrabber.com": [13279], "3c.1688.com": [44], "www.zeeland.nl": [11324], "www.socializer.cc": [15321], "*.pickaweb.co.uk": [12872], "go.pohyby.uk": [2053], "demo.1wt.eu": [58], "kmalx.co": [2053], "immerda.ch": [20442], "www.educatetheworld.com.au": [5195], "j1c.co": [2053], "datag.uy": [2053], "studenthealth.wustl.edu": [18290], "blog.coinjar.com": [3461], "maritimowest.us": [2053], "thrmp.co": [2053], "imang.us": [2053], "specker.me": [2053], "www.eloedge.com": [5022], "greenpeace-energy.de": [7060], "live.paloaltonetworks.com": [12553], "twt.ccwink.com": [2053], "i.embed.ly": [5299], "stlr.co": [2053], "www.coloradoattorneygeneral.gov": [3503], "nerdi.st": [2053], "nolance.net": [2053], "shdn.one": [2053], "badosoft.com": [1653], "eshop.upc.cz": [17278], "playonlinux.com": [13013], "tracking.websitealive.com": [18445], "u.mberd.com": [2053], "folkets.dk": [6103], "mailman.jcea.es": [8689], "cdn.static-economist.com": [15679], "ratiobeer.com": [2053], "www.banking.co.at": [1693], "webmailer.telecolumbus.net": [16329], "lookout.com": [9764], "www.telebasel.ch": [21670], "liaison.uic.edu": [17517], "autotraderstatic.com": [1456], "jth.li": [2053], "www.cwc.tid.gov.hk": [7212], "secure.xdomain.ne.jp": [18854], "blog.avast.com": [1484], "lnkto.jp": [2053], "hwrd.eu": [2053], "active.cardiff.gov.uk": [19644], "my.smoothwall.org": [15258], "tracking.tribepad.com": [21789], "www.pajustice.org": [12751], "*.sec.s-msft.com": [14296], "schleuder.nadir.org": [11197], "www.j1visa.state.gov": [17345], "silverpop.com": [15047], "channelx.biz": [3064], "aliyun_portal_storage.oss.aliyuncs.com": [19346], "images.dailykos.com": [4193], "vincek.me": [2053], "berlinint.im": [2053], "www.termsofservicegenerator.com": [6838], "lann.es": [2053], "cmis.alfresco.com": [843], "www.usask.ca": [17623], "precursorapp.com": [13248], "www.kenexa.com": [9002], "go.zeio.com": [2053], "viewfromtheedge.progress.com": [13360], "iamjai.me": [2053], "nces.ed.gov": [4988], "landalskilife.*": [18790], "nerdsnook.com": [11352], "w3.gtalumni.org": [2053], "podnapisi.net": [13069], "*.iacr.org": [8404], "share.flipboard.com": [6041], "www.broadcast.ch": [21550], "bhg.re": [2053], "online.norfolk.gov.uk": [20923], "teeny.xyz": [2053], "jwz.org": [20568], "yituf.jozz.xyz": [2053], "s.suntravel.xyz": [2053], "arkos-bbs-cdn.citizenweb.io": [3232], "www2.cisco.com": [3221], "www.zefflin.com": [19125], "terveysportti.fi": [16394], "www.gymglish.com.br": [7168], "skbb.us": [2053], "support.qq.com": [13514], "gaiaonline.com": [6522], "letemps.ch": [9346], "www.xubuntu.org": [18907], "www.ctt.org": [3977], "write.nu": [2053], "addons.instantbird.org": [8336], "aspec.ws": [2053], "www.gaia-gis.it": [6521], "www.dpea.scotland.gov.uk": [21387], "www.jusek.se": [8840], "g.engelhardt.li": [2053], "webcontrol.savana.cz": [14547], "hsbctrinkaus.de": [20387], "benchmarking.greenit-bb.de": [7045], "cellcon.co": [2053], "ddg.gg": [4888], "game.timezero.ru": [16729], "www.hexagon.cc": [7519], "nyaa.eu": [11794], "www.coindl.com": [3456], "fpm1.co": [2053], "www.kasperskypartners.com": [8962], "mariooliv.es": [2053], "sunval.ly": [2053], "careerlaunch.jpl.nasa.gov": [11058], "geogebra.org": [6659], "www.anidb.net": [1062], "www.hotmail.co.jp": [7702], "helfen.global2000.at": [6842], "kb.iweb.com": [8020], "naymarinho.com": [2053], "mylnks.tk": [2053], "www.sina.is": [15087], "members.bitcoinfoundation.org": [2030], "be.edn.re": [2053], "hspd12.ssa.gov": [21552], "wom.us": [2053], "soyou.nz": [2053], "nature.cnr.berkeley.edu": [17526], "l.lumikids.com": [2053], "immi.fm": [2053], "bugzilla.xfce.org": [18813], "livestat.derstandard.at": [19899], "linuxplumbersconf.com": [9557], "topspb.tv": [21758], "hih.io": [2053], "memphis.ml": [2053], "esta.cbp.dhs.gov": [4109], "www.physics.osu.edu": [11959], "depts.washington.edu": [17577], "www.maths.ox.ac.uk": [17557], "wosign.ssllabs.com": [14416], "entimg.s-msn.com": [14297], "goeshow.com": [6924], "mit.cx": [2053], "kofiannan.ch": [2053], "ctmne.ws": [2053], "connecthelp.wustl.edu": [18290], "wweek.com": [18612], "www.ukonlinecentres.com": [17255], "linuxaria.com": [9587], "www.lifars.com": [9489], "pgm.hk": [2053], "x.sep.io": [2053], "pokerstarsapps.com": [21162], "bnksm.pl": [2053], "crabgrass.riseup.net": [14133], "cdn.playstationnetwork.com": [13016], "www2-ext-s.nflximg.net": [11421], "1mno.de": [2053], "ewh.ieee.org": [7862], "standorte.deutschepost.de": [19901], "talkhealthpartnership.com": [16186], "pwe.me": [2053], "www.popcorntime-online.io": [21170], "www.laup.nu": [9324], "*.norrgruppen.se": [11687], "vhajm.be": [2053], "kemp.info": [2053], "hosting.jino.ru": [8724], "static.webplatform.org": [18376], "www.libreoffice-from-collabora.com": [9469], "mariagames.mobi": [2053], "franklinpierce.worldcat.org": [18748], "www.charles-carreon.com": [18730], "*.drinkaware.co.uk": [4857], "mroumen.me": [2053], "fashiondip.com": [5781], "www.4joycasino.com": [20552], "run.red": [2053], "managewp.org": [10104], "inc1.nl": [2053], "dxo.io": [2053], "*.omise.co": [20990], "cn.cryptonator.com": [3952], "l.reynella.net": [2053], "natur.me": [2053], "nb.4.boardgamearena.com": [2219], "dol.gov": [19938], "i5.hitravel.xyz": [2053], "gocf.church": [2053], "www.over-blog.com": [12361], "www.altex.ro": [927], "buzzurl.jp": [2539], "*.alluremedia.com.au": [903], "lib.al": [2053], "judge.la.welt.de": [18492], "gtbl.me": [2053], "www.ncjrs.gov": [11072], "thesciencegeek.org": [21716], "www.blockmetrics.com": [2141], "www.betterplace.org": [1881], "www.eqsl.cc": [20050], "css.loveplanet.ru": [9790], "kevag-telekom.de": [9016], "www.library.ecc-platform.org": [4978], "giogra.ph": [2053], "secure.bookhostels.com": [18339], "excitations.com": [5594], "represent.colorofchange.org": [3502], "gwrymca.org": [7161], "elancs.cc": [2053], "fbt.link": [2053], "picktwitter.com": [2053], "emye.us": [2053], "s.mgick.com": [2053], "scro.stanford.edu": [15635], "*.engineering.com": [5368], "soop.link": [2053], "analytics.socialblade.com": [15319], "www.richmond.gov.uk": [21307], "chap.mn": [2053], "app.intergi.com": [8397], "svspr.me": [2053], "facedetection.com": [20088], "gfx5.hotmail.com": [7704], "www.tpfrb.dk": [16897], "natholdet.link": [2053], "surge.sh": [15908], "sip.upc.ie": [17279], "ttu.ee": [16190], "link.trever.co": [2053], "tdm.ag": [2053], "farm.rs": [2053], "rias.space": [2053], "*.timesrecordnews.com": [16736], "on.magfs.io": [2053], "www.esellerate.net": [5462], "www.sohopelesslybroken.com": [14388], "l.pfeuro.ru": [2053], "www.path-trail.com": [21081], "alove.in": [2053], "valoancaptain.com": [17759], "techcommons.stanford.edu": [15635], "www.ipqualityscore.com": [7942], "lmsa.stanford.edu": [15634], "beta.kneon.com": [9094], "shop.lenovo.com": [9409], "bestbuy.ugc.bazaarvoice.com": [1853], "www.millwardbrown.com": [10585], "blog-assets.pinterest.com": [12914], "www.janestreet.com": [8659], "tique.cc": [2053], "inbnd.co": [2053], "uhhospitals.org": [17401], "www.a3li.li": [259], "em.gov.au": [1426], "k.rushvora.com": [2053], "hoax.pw": [2053], "alxf.me": [2053], "*.bps.org.uk": [1580], "skrill.com": [15165], "lanq.co": [2053], "edsgn.it": [2053], "shop.flixbus.cz": [6047], "www.shubh.am": [14994], "supersec.com": [15889], "corrent.org": [3754], "short.lobao.com": [2053], "buimg.com": [16704], "bzzz.in": [2053], "mysolarcity.com": [15358], "community.logentries.com": [9715], "www.godotengine.org": [20263], "shbpool.uk": [2053], "www.ar.ch": [21629], "voodoofest.co": [2053], "drawyoo.hdslb.com": [20327], "www.joy-kazino.com": [20552], "lddg.co": [2053], "s.gpc-gis.ae": [2053], "download.libreswan.org": [9477], "www.rbwm.gov.uk": [21268], "*.flashtalking.net": [6021], "windowmaker.org": [18639], "brdvw.com": [2053], "bitspi.re": [2053], "its-prod-www2-1.ucsc.edu": [17591], "kakao.com": [8859], "go.usa.gov": [17307], "l.sung.am": [2053], "mplinks.tk": [2053], "xfce-look.org": [21006, 21007], "www.cryptocoinsnews.com": [3927], "paokfc.mobi": [2053], "pirateproxy.net": [21709], "stealthy.co": [21571], "pixel.industrybrains.com": [8228], "oranjeboom.cafe": [2053], "www.tidbits.com": [16700], "hey.cx": [2053], "2008.asiabsdcon.org": [1293], "powerschool.lasallehs.net": [9314], "account.ipvanish.com": [7946], "www.censorship.govt.nz": [3000], "moar.so": [10672], "8d.cm": [2053], "meyne.co": [2053], "www.verfassungsschutz.de": [2483], "thepiratebay.torrentdr.com": [21709], "creditrepairtrust.com": [3860], "nvg.io": [2053], "www.bafoegonline.bva.bund.de": [5833], "plym.co": [2053], "www.caller.com": [2812], "kinotehnik.com": [9062], "talk.jekyllrb.com": [20534], "vm2.in": [2053], "account.dyn.com": [4918], "dashboard.synapsepay.com": [21634], "url.thoh.us": [2053], "arkivist.com": [2053], "www.mc.vanderbilt.edu": [17850], "stream.1tv.ru": [79], "centreon.com": [3019], "a.mart-jaap.nl": [2053], "sloanconsortium.org": [15213], "www7.cbox.ws": [19657], "url.cattt.com": [2053], "dl.11er.at": [2053], "mc.camp": [2053], "images.ddlvalley.eu": [19877], "w-jack.com": [2053], "my.otenet.gr": [12336], "3mba.us": [2053], "katescomment.com": [8968], "zran.ir": [2053], "causes.com": [2968], "uwf.im": [2053], "psta.rs": [2053], "lifewelltravelled.cathaypacific.com": [2963], "www.hipeac.org": [7528], "img.alibaba.com": [850], "deine.ws": [2053], "mensch.es": [2053], "vni.fr": [2053], "www.slac.stanford.edu": [15635], "alumni.kcl.ac.uk": [9052], "yh.meituan.com": [10405], "p3.qhimg.com": [13531], "www.essex.gov.uk": [5470], "browserhacker.com": [2428], "www.yt-dl.org": [19051], "360he.re": [2053], "www.utopia.ai": [17748], "www.afra-berlin.de": [324], "seeq.us": [2053], "wwwimages2.adobe.com": [655], "khai.me": [2053], "chizhou.meituan.com": [10405], "ifaston.com": [2053], "z.cash": [22123], "stat.st65.ru": [21557], "kmbs.us": [2053], "tr.norton.com": [11703], "www.politicalwire.com": [13097], "centresdirect.co.uk": [19672], "fbf.im": [2053], "packrafting-store.de": [21063], "images.sh.cn.criteo.net": [3872], "www.mybenefitscalwin.net": [10934], "www.amazon.nl": [19374], "ssapp.io": [2053], "popchi.ps": [2053], "www.codeclimate.com": [3423], "go.porowski.pro": [2053], "blendedlearning.th-nuernberg.de": [16428], "lwks.co": [2053], "compte.nextinpact.com": [11092], "reiseauskunft-iat.bahn.de": [1660], "blog.kik.com": [20592], "www.wildstar-online.com": [18602], "ir.arm.com": [379], "goli.mp": [2053], "gibraltar.gov.gi": [6757], "bcool.bz": [2053], "crksde.com": [2053], "www.careerdean.com": [2902], "www.x-info.org": [18797], "geekhack.org": [6623], "cvke.tl": [2053], "app-us-lb1.resrc.it": [13832], "cdn.doubleverify.com": [4804], "kimt.us": [2053], "bitcoin-otc.com": [2013], "nraila.org": [20948], "a.blip.tv": [2133], "www.ourwatchmember.org.uk": [21046], "l.fahy.eu": [2053], "www.mshare.net": [10602], "direct.yandex.com.ua": [18955], "pdfpatcher.cnblogs.com": [19743], "*.startssl.us": [15660], "audiencetargeting.com": [1393], "www-03.ibm.com": [7821], "www.diffoscope.org": [4545], "usnautic.com": [17342], "openid.net": [12141], "buildbot.buildbot.net": [19609], "login.manning.com": [20748], "www.karwansaraypublishers.com": [8953], "blackfire.io": [2104], "raabassociat.es": [2053], "www.globalmarinenet.com": [6837], "vote.debian.org": [4353], "fufeng.meituan.com": [10405], "ia529.us": [2053], "end.pr": [2053], "on.lor.ne": [2053], "plst.co": [2053], "menz.is": [2053], "www.ardamis.com": [1212], "helpspanish.cbp.gov": [2581], "service.groceries.asda.com": [387], "isis.poly.edu": [13113], "strt.bz": [2053], "godis.co": [2053], "i1.code.msdn.microsoft.com": [10543], "www.sparked.com": [15470], "zenmate.jp": [19133], "www.gargoyle-router.com": [20201], "creativecommons.org": [3848], "d.getboxer.com": [2053], "bksp.es": [2053], "www.sport.uni-mainz.de": [17611], "*.movies.netflix.com": [11422], "xbetsport.com": [18849], "wpi.today": [2053], "www.aetherflyff.com": [732], "edata.ssa.gov": [21552], "se.flixster.com": [6049], "ab.alipay.com": [857], "s.haxim.us": [2053], "assets.musicwindow.com": [614], "ad.xtendmedia.com": [18901], "hg.instantbird.org": [8336], "gir.gr": [2053], "islandscommercial.lloydsbank.com": [9686], "augst.in": [2053], "biz-form.ec.yahoo.co.jp": [18944], "sha2sslchecker.com": [14353], "api.cloudmagic.com": [3350], "3dqcaseofmonth.stanford.edu": [15635], "click.google-analytics.com": [6967], "www.silentsender.com": [15032], "*.gp.se": [6485], "*.rtklive.com": [13707], "s.imobile.co.jp": [2053], "engels.beeline.ru": [1801], "blog.prediction.io": [13249], "www.cloudorado.com": [3371], "p3pwiz.com": [11368], "www.stopglobalwarming.org": [15741], "stylessl.aliunicorn.com": [859], "on.mahajan.xyz": [2053], "thinksteroids.com": [9904], "s.kavaj.com": [2053], "on.entaah.com": [2053], "blog.filippo.io": [5919], "atmk.co": [2053], "yang.1688.com": [44], "ir.telecolumbus.com": [16329], "kl.la": [2053], "charli.es": [2053], "jogorama.com.br": [8758], "*.hunch.com": [7762], "mvk.cx": [2053], "mvk.cc": [2053], "www.cyberguerrilla.org": [4033], "fev.co": [2053], "applications.kennedy-center.org": [20585], "armorybids.com": [1240], "espace2013.cern.ch": [2632], "www.webmerge.me": [18372], "www.longnow.org": [9754], "f.j81.nl": [2053], "it.godaddy.com": [6898], "whisky.de": [22015], "www.diasp.de": [4526], "www.cs.sfu.ca": [14893], "sewat.ch": [2053], "jobs.smartbrief.com": [15232], "us.playstation.com": [13015], "studio.bi": [2053], "www.beauteprivee.fr": [1791], "vrp.outbrain.com": [12355], "blip.tv": [2133], "axps.tk": [2053], "ptog.uk": [2053], "tiqiq.us": [2053], "voicethread.com": [18115], "tdf-telecom.fr": [16056], "host22.top": [2053], "lima.osu.edu": [11959], "naromax.com": [11226], "www.fftfef.org": [5881], "izhcombank.dengisend.ru": [4440], "box.twoshots.pl": [2053], "clyck.com.ar": [2053], "sun-tim.es": [2053], "cesta.stanford.edu": [15635], "li-ve.mn": [2053], "www.accessofficeproducts.com": [488], "creativity-online.com": [3829], "static.tagboard.com": [21649], "www.graysofwestminster.co.uk": [7031], "formulabuckeyes.engineering.osu.edu": [11959], "rtl-videoclip-player.rtl.de": [13708], "sprdtrth.co": [2053], "schoolpress.cdn.whipplehill.net": [18541], "www.accessdata.fda.gov": [5674], "daytrips.to": [2053], "fls-na.amazon-adsystem.com": [950], "openbenchmarking.org": [12121], "paymentwall.com": [12690], "meirong.taobao.com": [16206], "www.yourpshome.net": [19033], "met.org": [2053], "hipkd.co": [2053], "elearn.tenable.com": [16369, 16370], "lfe.news": [2053], "bld.pm": [2053], "wuweiww.meituan.com": [10405], "www.rbfi.io": [21265], "mobilelending.anz.com": [355], "ocelot.li": [11909], "garrysmods.org": [20203], "flyn.org": [6083], "nswebmail.uk.clara.net": [3271], "webadvisor.uchastings.edu": [17219], "www.passed.cc": [12637], "partners.centrify.com": [19673], "*.pirate-party.ch": [12487], "stats.zugaina.net": [22144], "at.fee.org": [2053], "bitcoin-contact.org": [2009], "www.pcre.org": [12432], "propgk.uk": [2053], "sankakucomplex.com": [21368], "autodiscover.yandex.by": [18953], "*.evoice.co.uk": [5086], "businesscompanion.info": [2517], "www.recurse.com": [13888], "gofamz.me": [2053], "www.lucina.net": [9811], "tripwire.com": [17025, 17026], "gigglymemori.es": [2053], "dba.sedo.de": [14783], "cinema.arte.tv": [19422], "s.mojareuma.sk": [2053], "*.socialshows.net": [15309], "*.starmoney.de": [15644], "fw.to": [6404], "dot.douyucdn.cn": [4813], "penglai.meituan.com": [10405], "secure.itradecimb.com.my": [2663], "www.cda.nl": [11124], "vpn.upf.edu": [17674], "intensitylab.com": [8375], "tf8.com.au": [2053], "jmp.re": [2053], "*.tlug.jp": [16807], "discussionsjapan.apple.com": [1160], "www.mybb.com": [11013], "gorelovo.beeline.ru": [1801], "geekflare.com": [20216], "avado.re": [2053], "public.web.cern.ch": [2632], "*.virool.com": [18033], "w.icetravel.xyz": [2053], "www.nwppn.nhs.uk": [11102], "www.hardcoreteengirls.com": [7335], "16chan.nl": [46], "nnow.co": [2053], "www.bower.io": [19580], "dorsetalert.co.uk": [19949], "cas.ki.se": [8878], "ml.seohacks.net": [2053], "*.giac.org": [6447], "www.cfengine.com": [2647], "www.nramemberservices.org": [20949], "militari.ly": [2053], "www.isc2cares.org": [7968], "vitalads.com": [18080], "go2.vpml.net": [2053], "www.amt24.sachsen.de": [14454], "izx-file.oss.aliyuncs.com": [19346], "mntlt.de": [2053], "g.stateofg.com": [2053], "canterbury.gov.uk": [2870], "www.hakkalabs.co": [7301], "www.abbo-shop.ch": [440], "rhlk.cz": [2053], "*.webspace4clans.de": [18451], "e-disclosure.ru": [4948], "ioninteractive.com": [20484], "oneplus.net": [12041], "www.pofssavecredit.co.uk": [13181], "brent.gov.uk": [2358], "*.vcint.com": [17962], "moskovskiy.beeline.ru": [1801], "apleywoodprimary.taw.org.uk": [21662], "es.functions-online.com": [20187], "www.valu.va.gov": [17297], "dsum-sec.casalemedia.com": [2929], "nalchik.mediamarkt.ru": [10342], "www.avoiceformen.com": [424], "community.sony.com": [15393], "l.mcent.me": [2053], "clk.wareing.xyz": [2053], "chf.to": [2053], "edexchange.adobe.com": [655], "boot.fedoraproject.org": [5843], "ess.edina.ac.uk": [20007], "estilo.catracalivre.com.br": [2967], "cdn.raymond.cc": [13818], "livreiro.us": [2053], "arukereso.hu": [1272], "orionhub.org": [12310], "portal.mxlogic.com": [10279], "sydneystudent.sydney.edu.au": [21631], "stmarg.sc": [2053], "www.moviefone.com": [10829], "soasta.io": [2053], "www.kalveboderne-rundt.hvidovrekajakklub.dk": [7782], "www.osvita.ua": [21040], "sharefile.com": [14908], "www.secureserver.net": [14755], "www.simrussia.com": [15051], "york.edu": [19001], "www.apachecon.com": [1127], "training.manageengine.com": [10103], "geschenkkarte.migros.ch": [10566], "*.bytelove.se": [2548], "ggagency.us": [2053], "opfoc.us": [2053], "ittprovider.education.gov.uk": [20009], "elista.rt.ru": [13703], "www.functions-online.com": [20187], "mpct.co": [2053], "resource.awempire.com": [687], "matthewclark.co": [2053], "t1v.co": [2053], "jira.fitbit.com": [6002], "colins.link": [2053], "l.nettklipp.no": [2053], "sf.cdn.gmru.net": [6466], "s30.cnzz.com": [3391], "kemi.se": [8872], "www.cronometer.com": [2717], "www.pehub.com": [21102], "hbsmoney.tips": [2053], "www.alt-sheff.org": [912], "*.fordela.com": [6139], "www.tomorrow-focus-media.de": [16814], "story.br.de": [1581], "tek.io": [2053], "bridgeinvest.in": [2053], "interhome.ch": [8398], "www.telegram.me": [16336], "www.agmk.net": [767], "amnesty.se": [1010], "disl.osu.edu": [11959], "itu.int": [7997], "vidplay.net": [17995], "oagtravel.com": [17204], "www.myip.ms": [10995], "q.e4r.net": [2053], "cdn.trgt.eu": [16996], "snapengage.com": [15272, 15273], "cdn.xignite.com": [18875], "www.tuquito.org.ar": [21814], "*.torproject.org": [16847], "whwl.me": [2053], "www.unirand.uio.no": [17615], "cdn.theawl.com": [16442], "office365.vutbr.cz": [17814], "iaapa.org": [7807], "discounttheatre.com": [4630], "colorlines.com": [3509], "*.hifxonline.co.uk": [7527], "maps.yandex.kz": [18957], "sms.search.ch": [14684], "kirklees.objective.co.uk": [20979], "demo1.mashery.com": [10210], "transmissionbt.com": [16951], "ixicorp.com": [8025], "i.ase.dk": [2053], "search.ams.usda.gov": [17495], "landmktg.com": [2053], "app-de3.resrc.it": [13832], "www.xav.com": [18846], "jianguoyun.com": [8715], "iah.im": [2053], "aufeminin.com": [1509], "gateshead.gov.uk": [6584], "fav.agency": [2053], "one.com": [12027], "imaginasium.co": [2053], "registrar.uic.edu": [17517], "blog.acsf.cornell.edu": [3744], "giving.givingprograms.com": [6813], "managedforexprogram.com": [10105], "esue.ohio-state.edu": [11960], "*.pixinsight.com.tw": [12461], "*.justhost.com": [8843], "www.browser.yandex.by": [18953], "rutgon.tin8.co": [2053], "infi.ml": [2053], "picch.io": [2053], "www.openhost.co.nz": [12234], "mercu.re": [2053], "stell.am": [2053], "mysite.somerset.org.uk": [15377], "*.chime.in": [3138], "api.paymentwall.com": [12690], "www.t0.com": [16031], "s.xnimg.cn": [18884], "spts.tv": [2053], "l.uicart.com": [2053], "s.realleads.net": [2053], "go.dave.tw": [2053], "unternehmen.hofer.at": [338], "a.mybank.cn": [20861], "browser-update.org": [19597], "risesmart.us": [2053], "*.moneyandmarkets.com": [18483], "intra.lshtm.ac.uk": [9739], "whenhewants.com": [2053], "ofl.io": [2053], "mybuys.com": [10936], "*.usconstitution.net": [17316], "www.castlebridge.ie": [2951], "store.snort.org": [15288], "hpls.me": [2053], "jkst.in": [2053], "hyrd.us": [2053], "sfrce.co": [2053], "www.courtlistener.com": [3789], "go8.edu.au": [6893], "pprtp.in": [2053], "calendarwiz.com": [2795], "link.ebisi.be": [2053], "ryrb.co": [2053], "sociob.it": [2053], "chlk.ch": [2053], "link.from.pw": [2053], "tbbhd.me": [2053], "secure.kellytarltons.co.nz": [8998], "kev.tw": [2053], "cdn.jolla.com": [8771], "www.kenneth.io": [9003], "ccadenver.illuminateed.com": [20430], "tags.liveperson.net": [9654], "www.megastock.ru": [10399], "ekoodit.fi": [5237], "memory.loc.gov": [9690], "clwo.co": [2053], "excelsior-usa.com": [5592], "www.valueshop.co.uk": [17837], "ssl.meetme.com": [10378], "1.vapel1fe.com": [2053], "*.apnic.net": [1292], "www.nachhaltigesbauen.htwk-leipzig.de": [7736], "forum.alwaysdata.com": [938], "www.colocore.ch": [3499], "linux.slashdot.org": [15192], "major.io": [10066], "dkinney.co": [2053], "store.naturalskinshop.com": [11292], "ql.hitravel.xyz": [2053], "yao.io": [2053], "splt.ws": [2053], "jobs.asmallorange.com": [249], "flahk.com": [2053], "m.help.1and1.com": [61], "go.checkroom.ru": [2053], "perez.digital": [2053], "jkprop.co": [2053], "i.focus.de": [6091], "hj.io": [2053], "s.devop.ca": [2053], "static.miasto.payback.pl": [21088], "archive.today": [1203], "wsampod.com": [2053], "pastee.org": [12655], "aestas.me": [2053], "m.amica.com": [993], "*.shpock.com": [14990], "northants.greenparty.org.uk": [7052], "tibbt.com": [2053], "btp.co": [2053], "*.rsa.com": [13687], "tgg.io": [2053], "postdocs.ucsf.edu": [17588], "px.tmall.com": [21748], "app.fark.com": [5776], "b.cambooth.net": [2053], "https-everywhere.badssl.com": [1654], "dvd.xakep.ru": [18839], "www.digitalis.leeds.ac.uk": [17604], "3r1c.me": [2053], "*.buddypress.org": [2448], "static.adlantis.jp": [19292], "www.tandlakarforbundet.se": [16196], "*.indymedia.nl": [8232], "itru.co": [2053], "informatica.uv.es": [17750], "reg.demos.ru": [4438], "gw.vtrenz.net": [15047], "www.th-mittelhessen.de": [16064], "fbk.info": [5818], "www.fixubuntu.com": [6011], "ligatus.com": [9502], "app.whappodo.com": [18524], "secure.pepperfish.net": [12767], "www.anonymox.net": [1090], "medyaslan.com": [2053], "ar.chaturbate.com": [3093], "activemelody.com": [539], "clenguas.ual.es": [17361], "notification.alibaba.com": [850], "i.bspb.ru": [2435], "www.aggemam.dk": [763], "*.portforward.com": [13158], "z.suntravel.xyz": [2053], "gplus.ly": [2053], "www.bccla.org": [1544], "images.yandex.by": [18953], "www.relayrides.com": [13986], "apprenticeshipvacancymatchingservice.lsc.gov.uk": [20720], "www.2x.com": [120], "autodiscover.comscore.com": [3517], "on.freep.com": [2053], "ktgt.co": [2053], "l.kvc.me": [2053], "au4.uicdn.net": [17236], "media.dyson.com": [4935], "p4.zdassets.com": [19121], "frascatitheater.nl": [6226], "erthshft.com": [2053], "i3.letvimg.com": [20668], "tripadvisor.co.uk": [21794], "encryptmas.org": [5339], "od.o2.cz": [2053], "consultants.apple.com": [1160], "a.youryou.us": [2053], "learningdesign.usc.edu": [17564], "campus.capitalone.com": [2878], "vgmne.ws": [2053], "www.steepandcheap.com": [15716], "7kbhkort.kk.dk": [8883], "fga.pw": [2053], "masterh5.adriver.ru": [573], "*.telegram.com": [16334], "cultrix.it": [2053], "www.flossmanuals.net": [5690], "offworld.gizmodo.com": [6817], "streifband.de": [7735], "panet.andover.edu": [12835], "kinox.am": [20597], "herom.ag": [2053], "www.certs.vutbr.cz": [17814], "de.pornworms.com": [13155], "static2.dditscdn.com": [4317], "trusteetoolkit.thepensionsregulator.gov.uk": [21708], "ful.cambeywest.com": [2823], "links.aasinc.ca": [2053], "denfri.dk": [4439], "stats.wmtransfer.com": [18373], "www.telmasters.com": [16322], "docs.sencha.com": [14820], "niveusluna.org": [9834], "old.xchan.pw": [18852], "arma3.com": [1238], "www.montanalinux.org": [20825], "rotesource.com": [14209], "thestaradvisers.com": [16578], "www.readability.com": [13848], "extrafloris.com": [2053], "deft.xyz": [2053], "www.datapipe.cn": [4289], "a.bhemciclo.org": [2053], "www.belgacoin.com": [1813], "autovps.net": [1460], "tracker.zentyal.org": [19149], "gamasutra.com": [16276], "institucional.us.es": [17706], "forums.warframe.com": [18274], "secnd.uk": [2053], "www.npac.com": [11135], "ljw.bz": [2053], "putianguan.jd.com": [8571], "thost.link": [2053], "gupiao.jd.com": [8571], "docs.demonsaw.com": [4437], "3scale.net": [163], "xtwo.ne.jp": [18906], "nicehash.com": [11577], "www.getify.com": [6734], "webpreserver.co": [2053], "jowitt.at": [2053], "u.syxy.fr": [2053], "www.gigenetcloud.com": [6777], "d0t.ro": [2053], "deutschebkk.de": [4486], "sledsto.re": [2053], "www.weechat.org": [18472], "broderick.cc": [2053], "astrakhan.beeline.ru": [1801], "taz.de": [16042], "map.bike": [2053], "spaceindustrynews.com": [15459], "news.ae": [2053], "www.ssc.osu.edu": [11959], "ex.ai": [2053], "hi.alipay.com": [857], "www.cambeywest.com": [2823], "nl.havering.gov.uk": [7377], "system76.com": [16012], "cdn.tripadvisor.com": [17017], "freerainbowtables.com": [6267], "www.tpbay.co": [21709], "l.bruji.com": [2053], "wallet.la": [18256], "s-lp.xyz": [2053], "litl.br3n.net": [2053], "silvawoodflooring.co.uk": [15043], "bit.pregame.com": [2053], "testadro.me": [2053], "www.sierraware.com": [15017], "lbcr.tv": [2053], "tick.net": [2053], "aleguy.co": [2053], "link.djegl.in": [2053], "s.yux.ch": [2053], "woolworthsonline.com.au": [18723], "www.apps.asiapacific.hsbc.com": [7233], "secdev.ca": [14700], "fws.me": [2053], "www.bd.hsbc.com": [7233], "www.pandoblog.com": [12563], "lyubertsy.beeline.ru": [1801], "atlseccon.com": [19450], "www.fz.htwk-leipzig.de": [7736], "zuo.in": [2053], "standard.difi.no": [4547], "entroware.com": [5404], "drive.doublerobotics.com": [4808], "adbl.co": [2053], "www.fishnetsecurity.com": [5997], "connectproxy.wilmerhale.com": [18619], "www.surfline.com": [15906], "ct.googleapis.com": [6967], "tickets.openpgpjs.org": [12162], "knol.es": [2053], "mjk.im": [2053], "netbanking.hdfcbank.com": [7389], "berlin-airport.de": [1842], "cbsn.ws": [2053], "downloads.xen.org": [22080], "p5.qhimg.com": [13531], "laleo.mx": [2053], "www.steamcommunity.com": [15705], "groups.cern.ch": [2632], "pxtrr.com": [2053], "mlio.it": [2053], "kolt.at": [2053], "www.backpackerslucerne.ch": [1643], "stats.companieshouse.gov.uk": [3571], "ayn.su": [2053], "efm.is": [2053], "gprecruitment.hee.nhs.uk": [11102], "www.gentlelabs.com": [6650], "clrkwlmt.uk": [2053], "www.rbcommons.com": [13634], "hsgk.in": [2053], "lotte.ac": [2053], "sprc.me": [2053], "godpraksis.no": [6928], "fasthosts.co.uk": [5801], "bgl.st": [2053], "froglabs.froscon.org": [6210], "physics.illinois.edu": [17544], "hindi.rbth.com": [21267], "stip.so": [2053], "docsonline.wto.org": [18229], "heraclit.us": [2053], "gerv.net": [6680], "wiki.piratepartei.lu": [21134], "*.leanpub.com": [9365], "*.350.org": [128], "dzne.de": [6678], "mymdauto.com": [2053], "www.bankuralsib.ru": [1699], "widg.yt": [2053], "m.amap.com": [19359], "patntadvsr.co": [2053], "secure.chemistwarehouse.com.au": [3118], "ays-go.com": [2053], "m.portuguese.alibaba.com": [850], "tpcl.as": [2053], "s.dorabak.gr": [2053], "images.c.switchadhub.com": [15954], "pledgie.com": [13033], "1und1.de": [82], "bit.tr.eco.br": [2053], "socialmediascanner.eset.com": [5463], "a1.twimg.com": [17153], "welovepromo.biz": [2053], "www.jpcert.or.jp": [8594], "powerdns.net": [13217], "bitshares.org": [1995], "www.inl.gov": [20462], "belle.ly": [2053], "cdn.wl.easydategroup.com": [825], "shawnw.me": [2053], "copernicus.cnes.fr": [2691], "emergencymanagement.georgetown.edu": [6668], "love2d.org": [9791], "t.embed.ly": [5299], "freeapi.ipip.net": [20490], "getpersonas.com": [6701], "nortonhealth.ly": [2053], "www.listenerapproved.com": [9612], "saintscal.co.uk": [2053], "youtube.pl": [19016], "links.datata.mx": [2053], "papi.tv4play.se": [16137], "pica71.ub.uni-mainz.de": [17611], "e210.johnshopkins.edu": [8760], "www.trane.com": [21778], "rollapp.com": [14189], "api.mtvnn.com": [17953], "cdn2.emilstahl.dk": [5310], "monosby.ws": [2053], "kumapon.jp": [9187], "padlet.com": [12529], "www.mighty-hoernsche.de": [2649], "crhrs.us": [2053], "jimar.me": [2053], "pixel.1und1.de": [82], "ic-live.com": [8052], "youtube.pe": [19016], "www.sysconfig.org.uk": [16006], "www.zadarastorage.com": [19087], "www.otalliance.org": [11879], "ssl13.ovh.net": [12378], "mag.zafafi.com": [2053], "blp.me": [2053], "store.gomohu.com": [6919], "www.bostonglobe.com": [16517], "host20.top": [2053], "roadtrippers.com": [14150], "kinesis-ergo.com": [9047], "mwl.co": [2053], "2recover.org": [2053], "s.lurkmore.ru": [9838], "intellichat.com": [8843], "tipico.de": [16764], "snkr.io": [2053], "abk.kasel-it.de": [2053], "www.adingo.jp": [632], "*.g10code.com": [6411], "www.coveralls.io": [3799], "cpn.cd": [2053], "static.isu.pub": [8530], "search.stanford.edu": [15635], "www.vuejs.org": [18165], "bt4asth.ma": [2053], "owncloud.lebsanft.org": [20651], "iosgeni.us": [2053], "www.codinghorror.com": [3448], "pragprog.com": [13238], "go.trivn.net": [2053], "*.4shared.com": [181], "3taps.com": [165], "yelp.com.sg": [18979], "*.worldwinner.com": [6534], "coal.decc.gov.uk": [19885], "confused.com": [3638], "can.fm": [2053], "iwmsurveys.com": [2053], "xs4all.nl": [18835], "psp.re": [2053], "*.real.com": [13855], "ivegotkids.com": [8548, 8549], "dl.tinyjuke.com": [2053], "juicycanvas.com": [8820], "www.binarybiz.com": [1943], "wva.me": [2053], "buy.symanteccloud.com": [15969], "cmbr.us": [2053], "t.amerion.nl": [2053], "sas.pspr.fi": [2053], "www.twistedmatrix.com": [17162], "on.bien.hu": [2053], "content001.bet365.com": [1863], "ir.homedepot.com": [7614], "www.brandsaver.ca": [13349], "www.hanwhatechwin.co.kr": [14509], "3dqlab.stanford.edu": [15635], "s141.cnzz.com": [3391], "matepod.ca": [2053], "boxpn.com": [2313], "*.unblocked.red": [17434], "mylearnville.in": [2053], "grad.washington.edu": [17577], "mehring.com": [10403], "skin.issuu.com": [8526], "shop.aalto.fi": [428], "sabbah.in": [2053], "1688.com": [44], "cdrellc.com": [2053], "www.xiscosoft.com": [18879], "postmaster.live.com": [9644], "innovolt.info": [2053], "www.syscoding.com": [16005], "fotosocher.de": [2053], "www.companieshouse.gov.uk": [3571], "t.9tee5.com": [2053], "hustlermagazine.com": [7778], "cdn3.kongcdn.com": [9127], "go.fuzzd.nl": [2053], "www.mycalendarbook.com": [10937], "wiki.feide.no": [5858], "webmail01.register.com": [13965], "snkcr.sh": [2053], "manheiml.lc": [2053], "www.eolewater.com": [5418], "aei.org": [316], "twitchstatus.com": [21828], "cleoph.us": [2053], "archive.brent.gov.uk": [2358], "zlavadna.sk": [19196], "thegay.report": [2053], "onepass.westlaw.com": [18514], "comic.pixiv.net": [12960], "sic.sans.org": [14310], "*.assembla.com": [1313], "digigov.cardiff.gov.uk": [19644], "www.ed.gov": [4988], "fus.walla.co.il": [21969], "govdex.gov.au": [6991], "rakemade.co": [2053], "gowv.co": [2053], "cloudproven.net": [3360], "nghtyd.gs": [2053], "dognition.co": [2053], "compte.gresille.org": [7071], "www.hackerspaces.org": [7282], "www.net-security.org": [11372], "obi.pl": [20977], "bdvs.co": [2053], "secure.municode.com": [10893], "piratebay.unlockproject.online": [21771], "gils.me": [2053], "fki.cc": [2053], "pagerduty.com": [12536], "paper.li": [12584], "blogs.adobe.com": [655], "wetter.at": [11927], "www.gnu.org": [6474], "smoothieblend.com": [15257], "m.feedback.yandex.kz": [18957], "*.wunderground.com": [18329], "www.saic.com": [14305], "*.cadetnet.gov.au": [2773], "api.irccloud.com": [8502], "www.joycazino.com": [20552], "xifrat.pirata.cat": [21129], "g.viedemerde.fr": [2053], "ish.tek.no": [16319], "hub.am": [2053], "df.eu": [4103], "pdf.wondershare.com": [22044], "help.barclaycard.co.uk": [1712], "secure.registration.olympic.org": [20988], "haveproof.com": [7375], "*.introweb.hu": [8450], "xmkd.mk": [2053], "www.innovation.cms.gov": [19742], "m.weheartit.com": [18314], "abhijan.me": [2053], "88.208.232.88": [2394], "bytename.com": [2548], "cdn.zuhah.com": [19239], "www.bpsshop.org.uk": [1580], "rly.pt": [2053], "www.register.acs.org": [966], "svn.r-project.org": [13621], "bbil.co": [2053], "magazin.spiegel.de": [15523], "it.libreoffice.org": [9471], "imapfis.ct.infn.it": [7913], "vsix.whmcs.com": [18201], "inco.me": [2053], "www.useitandsee.com": [5281], "jauce.com": [20526], "estore.skifalls.com.au": [21468], "umol.me": [2053], "on.twfgllc.com": [2053], "waisttrain.ml": [2053], "musalbas.com": [10895], "galvoti.co": [2053], "risk.wusm.wustl.edu": [18290], "cryptbin.com": [3918], "islands.yandex.by": [18953], "dgrevie.ws": [2053], "gesd.me": [2053], "pt.4.boardgamearena.com": [2219], "synthetix.com": [15996], "dev.pipl.com": [10209], "soap.com": [15300], "on.msre.ly": [2053], "st-div.web.cern.ch": [2632], "freem.social": [2053], "www.namecoin.info": [11212], "eloquentjavascript.net": [5283], "*.4chan-ads.org": [185], "hornstrafarms.com": [7641], "*.symanteccontent.com": [15969], "www.codeanywhere.com": [19746], "os3.nl": [11862], "hostmonster.com": [7681], "mmbl.co": [2053], "dnw.ninja": [2053], "redditbot.com": [21283], "static.skynews.com.au": [15175], "thbk.to": [2053], "vntage.co": [2053], "prnt.sc": [21202], "www.culturalsurvival.org": [3987], "www.discovermerchants.com": [4636], "svn.verisignlabs.com": [17916], "www.calgaryoutdoorcentre.ca": [17220], "taxact.com": [16234], "wpdev.ms": [18224], "on.jci.com": [2053], "cpis.me": [2053], "www.vsemetri.com": [21960], "s.vinas.com": [2053], "on.listal.it": [2053], "redy.edp.pt": [4995], "advertising.amazon.ca": [19362], "shu2.ga": [2053], "alecomm.com": [827], "edixml.melkweb.com": [2842], "s.olar.us": [2053], "cdnl.tblsft.com": [16239], "www.t35.com": [16033], "www.chefkoch-blog.de": [3116], "url.nhefner.com": [2053], "suhs.co": [2053], "s.b12e.be": [2053], "zmeit.jd.com": [8571], "b.mdnalapat.com": [2053], "360az.co": [2053], "orlandoloc.al": [2053], "static.bufferapp.com": [2459], "nzmilk.bar": [2053], "floorplan.immobilienscout24.de": [8153], "q.vr-cruise.com": [2053], "www.zom.im": [19207], "webmail.uu.se": [17352], "s.jcky.ca": [2053], "ad.a-ads.com": [250], "bchor.us": [2053], "www.fossil.energy.gov": [5355], "www.printink.si": [13298], "link.ryberg.org": [2053], "pd2.anthem.com": [19395], "bdsuperhero.es": [2053], "pix.rlives.in": [2053], "www.yourlibcat.staffordshire.gov.uk": [15622], "download.taiwantradeshows.com.tw": [21653], "s7.pimg.tw": [12890], "s.ligamx.net": [2053], "help.xsolla.com": [18896], "alaskarobotics.com": [816], "re.niki.ai": [2053], "corporate.unionpay.com": [17478], "facebook.jp": [5736], "ashlandfiber.net": [1288], "www.garron.me": [6579], "www.youtube.cl": [19016], "www.zamzar.com": [19099], "bkle.in": [2053], "class.coursera.org": [3788], "dittdistrikt.no": [4664], "allyou.net": [882], "www.aeup.eu": [318], "order.exede.com": [5598], "eservices.ficora.fi": [5886], "m.avito.ru": [19465], "flippa.com": [6043], "ofaa.gumc.georgetown.edu": [6668], "www.yougetsignal.com": [22110], "*.i3d.net": [7805], "dq.meituan.com": [10405], "okts.co": [2053], "jugger.ru": [8817], "www.coinpay.in.th": [3471], "jles.es": [2053], "verisign.fr": [17915], "at.naturea.gr": [2053], "tahetorn.ut.ee": [17347], "tipp10.com": [16765], "app.codefund.io": [3430], "stats.0xbadc0de.be": [10], "s.t2p0films.ca": [2053], "dmlp.org": [4120], "army.unian.ua": [21851], "newit.co.uk": [11488], "opensuse.org": [12169], "www.bremer.com": [2354], "perypetie-informacji.panoptykon.org": [12570], "aff.biz": [733], "mobil.derstandard.at": [19899], "dtunnel.com": [4162], "payments.sky.com": [15170], "gsfund.ml": [2053], "iaata.info": [7808], "www.readrboard.com": [13850], "byerssci.us": [2053], "digi.diet": [2053], "www.dutchcrafters.com": [19971], "oneadmin.cz": [11840], "green.mn": [2053], "cstau.de": [2053], "dkb.de": [4113], "medwiki.stanford.edu": [15635], "goza.gs": [2053], "de.sitestat.com": [15132], "go.ostp.gov": [2053], "mfw.fyi": [2053], "cr8.is": [2053], "record.wustl.edu": [18290], "sitelock.com": [15114], "wealthytheatre.org": [7017], "lvrtn.ai": [2053], "medwatch.dk": [10304], "asp.readspeaker.net": [13843], "wtgc.co": [2053], "plnk.co": [2053], "www.bem.info": [1551], "secure.footprint.net": [6133], "accounts.babbel.com": [1631], "www.simplyhired.com": [15075], "blipp.com": [2134], "j2mepk.com": [2053], "no-bl.co": [2053], "advisingconnect.osu.edu": [11959], "i.phang.org": [2053], "designers.hubspot.com": [7739], "www.biglinux.com.br": [19531], "account.windowsazure.com": [18644], "www.badoo.com": [1652], "payee.globalpay.westernunion.com": [18512], "zimbatm.com": [19184], "on-disk.com": [12005], "pic9.qiyipic.com": [20413], "ukinusa.fco.gov.uk": [5671], "t.recommend.rakuten.co.jp": [13768], "asaweb2.wku.edu": [22039], "persona.org": [10851], "counter.li.org": [9552], "chicdfr.co": [2053], "i4.sndcdn.com": [15278], "msb.georgetown.edu": [6668], "t.avecomics.com": [2053], "aqtv.co": [2053], "gnz.biz": [2053], "tescoshareandearn.com": [16402], "mozilla.com.tw": [10842], "gtms01.alicdn.com": [846], "webhungary.hu": [18420], "b.osoe.jp": [2053], "faculty.washington.edu": [17577], "skortekaas.nl": [14368], "sj.plus": [2053], "www.lochem.nl": [11324], "wpsc.me": [2053], "www.nzpug.org": [20973], "livejournal.com": [9651], "jnbrk.se": [2053], "beingtahsan.cf": [2053], "risa.link": [2053], "clook.it": [2053], "cheetosmuseum.com": [19695], "ethx.me": [2053], "classic.zattoo.com": [19116], "amltd.pw": [2053], "developer.gitbook.com": [6794], "static-stg.gbot.me": [6934], "dfit.io": [2053], "webmail.his.com": [7432], "vice.fm": [2053], "irea.ch": [2053], "cremeri.us": [2053], "www.bayproxy.site": [21217], "youthorchestra.stanford.edu": [15635], "s.snpy.co": [2053], "*.hr.wvu.edu": [18508], "rctlk.com": [2053], "intevation.de": [8445], "my.ihc.ru": [7883], "*.jamanetwork.com": [8559], "go.dwtm.ch": [2053], "gpgtools.org": [6488], "ftepaper.ft.com": [5941], "www.polisforbundet.se": [13093], "jd.com": [8570], "on.iqinside.xyz": [2053], "csj.georgetown.edu": [6668], "*.exinda.com": [5603], "chcmd.me": [2053], "www.xmms2.org": [18823], "uakron.edu": [17360], "help.podio.com": [13068], "bostonbuilt-org.hoaxdevice.com": [2285], "inth.me": [2053], "users.wix.com": [18684], "www.microsoft.com": [10543], "www.fshare.vn": [6356], "www.socrata.com": [15332], "www.hobbypcb.com": [20347], "shanghu.alipay.com": [857], "thecottages.me": [2053], "hudson.vervehosting.com": [17937], "lainchan.org": [9286], "www.heanet.ie": [7405], "technical.ly": [16289], "roammobility.com": [14151], "myslo.ru": [20864], "blogs.zoho.com": [19202], "portrait.gov.au": [11261], "host.ie": [4597], "www.spritesmods.com": [15568], "www.hacktionlab.org": [7291], "preorder.muse.mu": [20854], "tripadvisor.ca": [21792], "techsupportalert.com": [16309], "*.arch-stuff.org": [21007], "bss.sch.bme.hu": [1570], "a.slugs.in": [2053], "toddm.us": [2053], "smetrics.mastercardintl.com": [10216], "appdynamics.com": [1143], "systemcenteradvisor.com": [16014], "s.kariba.co.ke": [2053], "www.findip-address.com": [20120], "archive.installgentoo.net": [19007], "on.nem.ec": [2053], "its.jbinfo.xyz": [2053], "rapidhealth.biz": [2053], "ab.tc": [2053], "go.liveramp.com": [9658], "autoconfig.yandex.by": [18953], "flock.0xacab.org": [9], "ahrc.cms.gov": [19742], "gistr.at": [2053], "lerner.ccf.org": [3295], "api.viglink.com": [18003], "go.stengard.org": [2053], "yf.meituan.com": [10405], "dota2.backpack.tf": [1642], "huque.com": [7772], "oc.libreoffice.org": [9471], "intersectalliance.com": [8443], "intelligence.businessinsider.com": [2512], "kaliningrad.rt.ru": [13703], "kolireg.ktk.bme.hu": [1570], "www.intelliot.com": [8367], "static.kancloud.cn": [20573], "osutravel.osu.edu": [11959], "getdigital-blog.de": [6692], "www.gradle.com": [20276], "cryptologie.net": [3945], "gnomefiles.org": [21006, 21007], "racjonalista.pl": [13728], "fl.meituan.com": [10405], "shibboleth.buffalo.edu": [17583], "go.chichbong.vn": [2053], "forum.manjaro.org": [10121], "careers.bloomberg.com": [2172], "f.etchuk.com": [2053], "askattic.us": [2053], "s.ryan.ma": [2053], "go.sf.edu": [2053], "info34.top": [2053], "ta5.us": [2053], "a.furnish.ng": [2053], "shutterstock.com": [15000], "www.barnard.edu": [1722], "ntcr.in": [2053], "*.algonquincollege.com": [845], "www.wonga.com": [18715], "keepup.virginmedia.com": [18028], "www.housing.illinois.edu": [17544], "*.ogt.jp": [8257], "l.polvi.eu": [2053], "sdsu-dspace.calstate.edu": [2789], "ub.retargeter.com": [13833], "learningzone.hants.gov.uk": [7328], "*.2gis.ru": [102], "0800buster.co.uk": [20709], "gotlandring.com": [6982], "www.invoiceocean.com": [8480], "www.elliptictech.com": [5274], "api.eply.com": [5044], "livemu.sc": [2053], "kodem.kr": [2053], "chm.li": [2053], "unblockbay.com": [21709], "s52.cnzz.com": [3391], "www.manageengine.jp": [10102], "www.awesome-it.de": [1501], "toledo.kuleuven.be": [8969], "www.vehiclevisuals.com": [17884], "www.vtbrussia.ru": [17807], "dino101.ca": [2053], "maseratiusa.co": [2053], "catawba.worldcat.org": [18748], "*.stocktwits.net": [15734], "emplaw.co": [2053], "bit-url.info": [2053], "www.karger.com": [8946], "r.teads.tv": [16250], "webmail.vispa.com": [18072], "analytics.pressfreedomfoundation.org": [6292], "www.boxcar.io": [2310], "lumafor.ge": [2053], "www5.citymapper.com": [3252], "www.strato-pro.com": [14430], "*.shopmania.es": [14962], "leadch.at": [2053], "euin.jp": [2053], "www.4.cn": [168], "secure.store.apple.com": [1160], "vouchercloud.com": [21951], "idc.com": [7850], "allstartire.com": [887], "adserverams.adtech.de": [678], "www.spendvision.com": [21534], "americanunivofnigeria.worldcat.org": [18748], "hallgroup.engineering.osu.edu": [11959], "abcn.ws": [2053], "ltmom.co": [2053], "support.ihc.ru": [7883], "assets.cdn-otto.de": [12339], "store.storeimages.cdn-apple.com": [2611], "www.e-klase.lv": [4952], "sitemason.vanderbilt.edu": [17850], "www.iwight.com": [8022], "umg.dk": [2053], "akademy2009.kde.org": [8871], "sustainability.cornell.edu": [3744], "desolation.co": [2053], "chat.livezilla.net": [9660], "tgsm.us": [2053], "www.resrc.it": [13832], "nationaldefensemagazine.org": [11238], "plt.tips": [2053], "www.dino.sr": [2345], "link.makee.net": [2053], "*.efinancialnews.com": [11513], "intranet.open-groupe.nl": [21004], "f2fgam.es": [2053], "viztrans.com": [2053], "www.asi.org.ru": [19437], "gacela.itc.mx": [7989], "fmg.link": [2053], "www.convox.com": [3699], "answerology.delish.com": [4408], "www.wakelet.com": [18248], "sfgt.co": [2053], "ts7.jp": [2053], "www.cnre.vt.edu": [18031], "131002.net": [36], "thnkngof.gd": [2053], "i1.sinaimg.cn": [15091], "libvirt.org": [9484], "slashs.net": [2053], "causes.meetme.com": [10378], "121nex.us": [2053], "dnn.siia.net": [15349], "on.dhb.io": [2053], "child3.ki.se": [8878], "stec-t00.xhcdn.com": [18815], "*.reelseo.com": [13943], "images.static.shropshire.gov.uk": [21440], "cihr.eu": [2660], "bip.io": [1964], "deepin.org": [4380], "i5k.nal.usda.gov": [17495], "a.jsy.us": [2053], "stresstimul.us": [2053], "www.zg.ch": [21629], "miken.co": [2053], "inbm.it": [2053], "education.oracle.com": [12284], "vpn.asia": [21955], "js6.me": [2053], "www.extreme-light-infrastructure.eu": [5639], "specialcollections.nal.usda.gov": [17495], "prospect.org": [16507], "4.vgc.no": [17776], "www.defendinnovation.org": [5007], "roundcube.net": [14219], "es.premium.members.webs.com": [18440], "forums.girlsoutwest.com": [6787, 20241], "hghts.me": [2053], "jimo.meituan.com": [10405], "www.comptroller.nyc.gov": [11484], "bizetto.biz": [2053], "i.srijit.com": [2053], "anchorchur.ch": [2053], "thehackernews.com": [16604], "neovim.io": [20888], "rbl.ms": [2053], "*.cj.com": [3546], "*.goodnet.com": [6954], "shin.es": [2053], "purplebox.ghostery.com": [6749], "www.osadl.org": [11863], "dini.lu": [2053], "l.paws.org": [2053], "www.1cart.co.nz": [53], "cf2.100r.org": [12], "gradsch.osu.edu": [11959], "news.mims.com": [9910], "manual.macromates.com": [9998], "dakar.usembassy.gov": [21879], "rssing.com": [13698], "feedback.adcenter.microsoft.com": [10543], "biz.mail.ru": [10040], "gbot.me": [2053], "newzsec.com": [11545], "www.sum.uio.no": [17615], "wwwdc.hertzentertainment.com": [7511], "www.magento.com": [10017], "www.poste.ch": [13176], "livechat.startech.com": [15647], "tmbtp.co": [2053], "www.kenexa.jobs": [9001], "jp.cloudflare.com": [3344], "intranet.ku.dk": [17534], "www.nextbit.com": [11557], "m.lenna.at": [2053], "service.bloomberg.com": [2172], "lib.vutbr.cz": [17814], "rp.zemanta.com": [19128], "elibraryusa.state.gov": [17345], "esda.xyz": [2053], "m.jhu.edu": [16562], "cfderive.co": [2053], "pro-data.btcc.com": [2438], "zivte.ch": [2053], "*.serienjunkies.de": [14841], "mc.cran.at": [2053], "epclmn.co": [2053], "www.youm7.com": [19021], "www.support.earthlink.net": [5106], "scm.dataconservancy.org": [4270], "www.httpsecurityreport.com": [7244], "fla-best.biz": [2053], "nehe.meituan.com": [10405], "nhbox.co.uk": [2053], "yoursav.com": [19044], "bastion.desy.de": [4479], "blutmagie.de": [2212], "www.stallman.org": [15625], "www.zenhub.io": [22129], "get.erchima.net": [2053], "ads.whichmba.com": [18540], "zenmate.com.ve": [19133], "se.ucsd.edu": [17216], "a.cbsowasso.com": [2053], "statistik.netcologne.de": [11379], "store.lessig2016.us": [9418], "webhostingstuff.com": [18364], "yim.by": [2053], "mantenimiento.uned.es": [17446], "login.gawker.com": [6593], "www.phoenix.com": [12844], "repo.mysql.com": [10970], "www.yannick.net": [18964], "mfile.im": [2053], "jws01.tk": [2053], "support.mailpoet.com": [10046], "easy2coach.net": [5122], "orueagl.es": [2053], "portal.stalbans.gov.uk": [21563], "www.valleyfirstcu.org": [17826], "boxtv.in": [2053], "yahoo.tumblr.com": [17100], "api.digitalmedia.hhs.gov": [7192], "l.beden.net": [2053], "uzoo.rocks": [2053], "cloudflare.com": [3344], "sensi.media": [2053], "seton.care": [2053], "www.megashare.im": [10398], "www.fazjob.net": [5667], "debij.me": [2053], "*.image-gmkt.com": [13538], "tracking-rce.veeseo.com": [17880], "www.alibaba-inc.com": [19342], "wikihow.com": [18589], "www.lovettpublishinghouse.com": [9797], "transitionnetwork.org": [16945], "apx.sc": [2053], "link.kls.org": [2053], "www.it-ccs.com": [20506], "*.interlan.se": [8401], "mft.cambridgeshire.gov.uk": [19632], "eastern.greenparty.org.uk": [7052], "bucknell.worldcat.org": [18748], "jobs.sciencecareers.org": [14620], "sgmr.me": [2053], "solutionpartnerdashboard.cisco.com": [3221], "twittercounter.com": [17167], "www.investments.osu.edu": [11874], "www.majestic12.co.uk": [10064], "stackmonkey.com": [15614], "maps.sheffield.gov.uk": [14939], "www.bookstore.mtu.edu": [9967], "b.jhn.fm": [2053], "netid-mgmt.georgetown.edu": [6668], "senditnowuat.courierpost.co.nz": [3784], "kissanime.to": [9071], "www.shoeshow.com.au": [14958], "gravity.com": [20278], "login.arkena.com": [1235], "hip.mk": [2053], "img.welt.de": [18492], "www.thumbzilla.com": [16671], "www.sibinfo.su": [21442], "sanx.meituan.com": [10405], "3fm.nu": [2053], "www.ganglandnews.com": [6570], "s-and-s.us": [2053], "savvyhawk.com": [14555], "fashion.zalando.com": [19094], "firmcentral.westlaw.com": [18514], "stat.rbth.com": [21267], "op.hn": [2053], "skvw.net": [2053], "cf-voam.com": [2053], "www.sas.com": [14312], "54s.co": [2053], "laneblog.stanford.edu": [15635], "www.lifeinsurance.firstdirect.com": [20127], "icfy.ch": [2053], "awp.is": [1327], "www.stewilliams.com": [21576], "en.panoptykon.org": [12570], "sql6.endora.cz": [5349], "www.marhababrighton.co.uk": [10150], "cdn.instaemail.net": [8329], "arriel.unizar.es": [17643], "sense.alfabank.ru": [842], "go.minhit.com": [2053], "wiki.freedesktop.org": [6243], "www.rethinkdb.com": [21300], "x.myspacecdn.com": [11037], "scg.ms": [2053], "d42.me.uk": [2053], "luu.org.uk": [9263], "my.osu.edu": [11959], "account.1and1.ca": [62], "axeon.cc": [2053], "blog.pfsense.org": [12819], "s.colinross.me": [2053], "iecisa-ift.axosoft.com": [1517], "sgn.me": [2053], "infousa.com": [8259], "rd.netramz.com": [2053], "allmend.ch": [19353], "www.mydrive.ch": [11018], "on.rgj.com": [2053], "www.gls.de": [6457], "ectc-online.org": [5120], "ktuin.es": [2053], "ws1.ems.eosdis.nasa.gov": [11058], "www.220volt.hu": [86], "l.angp.in": [2053], "mydante-public.georgetown.edu": [6668], "www.skyriderplay.com": [15186], "swgrr.us": [2053], "skr.nlm.nih.gov": [11241], "usrowing.org": [17328], "www.fiercefinance.com": [5890], "livi.link": [2053], "ligatus.de": [9502], "clarityray.com": [3273], "pbesignup.na.leagueoflegends.com": [9362], "speakeasy.net": [15484], "bagmovi.es": [2053], "static.broadcasthe.net": [2408], "www.xetum.com": [18869], "macromates.com": [9998], "www.proxpn.com": [21204], "berliner-energietisch.net": [1844], "www.studiopress.com": [15796], "pcoast.co": [2053], "libdrc.org": [9452], "www.technicalcommunity.com": [16290], "dealnews.com": [4339], "28degrees-online.gemoney.com.au": [6432], "cominm.ag": [2053], "www.nymity.ch": [11797], "tech.just-eat.com": [20565], "knzo.com.ar": [2053], "ta.nnerl.com": [2053], "www.gittip.com": [6807], "forms.essex.gov.uk": [5470], "esn.im": [2053], "www.politico.com": [13098], "share.intercom.io": [8392], "assets-broadly.vice.com": [17959], "acluofnc.org": [289], "s7r.io": [2053], "oreil.ly": [2053], "bojangl.es": [2053], "tati.io": [2053], "pic2.zhimg.com": [19173], "www.times.am": [21740], "www.masteringemacs.org": [10221], "asifp.info": [2053], "community.understood.org": [17442], "makrotex.hu": [10084], "tc3.edu": [16815], "f1.help.mindtouch.us": [10597], "grist.me": [2053], "j.konex.us": [2053], "hseinfo.info": [2053], "beauty.migros.ch": [10566], "places.tomtom.com": [16812], "desq.dict.cc": [4536], "nzz.at": [20974], "blog.namecheap.com": [11208], "time.paycheckrecords.com": [12683], "download.formsanity.com": [6160], "partners.livechatinc.com": [9641], "www.eclipse.org": [5150], "www.internetgovernance.org": [8420], "my.xm.com": [18821], "www.ccdcoe.org": [2603], "dev.sign-up.to": [15025], "gnosis.cx": [6884], "scsynod.us": [2053], "portal.wusm.wustl.edu": [18290], "go.s4h.co": [2053], "a1.adform.net": [625], "www.infosecurity-magazine.com": [13936], "ariza.co": [2053], "*.fundinfo.com": [6380], "wiki.openvz.org": [12189], "www.myitcv.org.uk": [11026], "rwanda.usembassy.gov": [21879], "api-taojinbi.taobao.com": [16206], "www.thm.de": [16066], "*.bcy.ca": [7020], "job.yuga.ru": [22121], "ngvpn15.nvidia.com": [11174], "composer.typo3.org": [16149], "s108.cnzz.com": [3391], "marshut.net": [10192], "sovsekretno.ru": [21518], "www.apomedifot.de": [1136], "diagrid.org": [4521], "lombardigala.georgetown.edu": [6668], "stunnel.org": [15800], "login.ezproxy.utm.edu": [17628], "static.glassdoor.co.uk": [20248], "crdnl.club": [2053], "sellercentral.amazon.ca": [19362], "www.flashpoint-intel.com": [20130], "nole.li": [2053], "patriziape.pe": [2053], "nslds.ed.gov": [4988], "podvertiseonline.com": [13062], "ccas.georgetown.edu": [6668], "scripts.irssi.org": [8507], "dkate.ly": [2053], "e4k.tv": [2053], "tripbod.com": [17020], "developers.xsolla.com": [18896], "assets1.enphaseenergy.com": [5386], "orderit.stanford.edu": [15635], "www.poole.nhs.uk": [11102], "gmu.edu": [6666], "rpc1.mail.aol.com": [361], "www.skillsfundingagency.bis.gov.uk": [17243], "faca.mp": [2053], "iis.net": [7888], "www.events.ch": [5550], "buttercoin.com": [2521], "www.asteriskexchange.com": [1335], "rpt.anchorfree.net": [1033], "gartner.com": [6580], "gottman.com": [6985], "chase.leeds.ac.uk": [17604], "m.pizza.de": [12965], "kp.blog.br": [2053], "www.eindbazen.net": [5226], "mail2.pipni.cz": [12460], "mrgood.co": [2053], "www.nordicsemi.com": [11673], "tpbpro.xyz": [21217], "community.wwe.com": [18231], "beta.counterpath.com": [19799], "cf3.100r.org": [12], "eatno.sh": [2053], "identity.atechmedia.com": [408], "broadinstitute.org": [2401], "www.vh3.ro.vutbr.cz": [17814], "*.cnbc.com": [2689], "product.adingo.jp.eimg.jp": [632], "www.linuxplumbersconf.org": [9557], "www.desktopsummit.org": [4473], "rightsmanager.fb.com": [5814], "jdj.jd.com": [8571], "pub.brewery.fm": [2053], "auto.ngs.ru": [20907], "secureffs.capwiz.com": [2885], "cleg.al": [2053], "bett.to": [2053], "my.ayo.co": [2053], "www.locationsmart.com": [20710], "blog.bitsighttech.com": [1996], "gemp.re": [2053], "loopliving.wustl.edu": [18290], "akamai.mathtag.com": [10236], "www.kryptologika.com": [9170], "i2.gallery.technet.microsoft.com": [10543], "praktica.de": [14599], "secure.legolanddiscoverycentre.co.uk": [9391], "sycm.1688.com": [44], "drft.tips": [2053], "eurowin.gs": [2053], "to.roseanna.fr": [2053], "www2.olx.com.br": [11831], "notesplace.wustl.edu": [18290], "x.cilf.cz": [2053], "sgr.guru": [2053], "on.norvine.com": [2053], "www.yespic69.com": [18982], "go.mount.xxx": [2053], "hsconv.com": [2053], "gradadmissions.osu.edu": [11959], "ooda.co": [2053], "build.tizen.org": [16778], "www.searchcommander.com": [14685], "esb.ie": [5051], "webmail.variomedia.de": [17860], "j3n.us": [2053], "cdown.me": [2053], "bicomsystems.com": [19528], "wmg.li": [2053], "redvase.bravenet.com": [2348], "lft.life": [2053], "oss.nl": [11324], "rog42.tv": [2053], "*.aftenposten.no": [750], "de.gamigo.com": [6563], "brunoavi.la": [2053], "forums.manning.com": [20748], "dive.pub": [2053], "docs.freebsd.org": [6237], "www.tildedave.com": [16717], "sotm.xyz": [2053], "sciencenode.org": [14622], "canterbury-consult.objective.co.uk": [20979], "app.weekplan.net": [18476], "property.pub": [2053], "www.altontowers.com": [934], "www.selz.com": [14813], "market.huobi.com": [7769], "axiaurl.co": [2053], "new-support.drweb.com": [4879], "go.arsempro.com": [2053], "www.tchibo.cz": [16240], "www.thenew10.treasury.gov": [16980], "dfndhlth.com": [2053], "commscope.com": [3537], "rbkc.gov.uk": [21266], "lynk.apload.ch": [2053], "schweissgut.net": [12319], "pharma.st": [2053], "www.tchibo.ch": [16240], "forms.netsuite.com": [11401], "krkr.nl": [2053], "js.washingtonpost.com": [18287], "faq.i3wm.org": [7806], "www.tip4commit.com": [16763], "to.piola.fr": [2053], "career.udacity.com": [17391], "heerenveen.nl": [11324], "www.mesosphere.com": [10467], "www.amnesty.de": [998], "m.soundcloud.com": [15410], "fr.verbling.com": [17907], "oauth2.axeso5.com": [1513], "youtube.com.sg": [19016], "evision.brunel.ac.uk": [19599], "businesswire.com": [1840], "tv.khl.ru": [20590], "fitnessmarket.com.au": [6004], "ghoori.co": [2053], "omd.me": [2053], "wintertrex.me": [2053], "openafs.mit.edu": [9916], "*.hideman.net": [7534], "keyworddiscovery.com": [9023], "chuanyan.huxiu.com": [7779], "*.isp.nflxvideo.net": [11421], "i.somethingawful.com": [15379], "mami-kawada.com": [2053], "geekio.co": [2053], "ceop.police.uk": [19676], "account.oneplus.net": [12041], "huxiu.com": [7779], "auth.360buy.com": [135], "www.divxpress.com": [4666], "www.engineering.illinois.edu": [17544], "hver.it": [2053], "lsy.st": [2053], "dust.to": [2053], "marketing.htwk-leipzig.de": [7736], "improvely.com": [8169], "cjoint.net": [69], "f6l.co": [2053], "zh-cn.boardgamearena.com": [2219], "git.fr33tux.org": [6209], "wiki.hidekisaito.com": [7533], "c2.ewebcart.com": [20074], "poets.org": [13071], "www.how-to-box.com": [7717], "weoinvoice.com": [18498], "trusted.kaspersky.com": [8958], "www.raglan23.co.nz": [21249], "prsly.me": [2053], "www.ez-web-hosting.com": [5099], "www.shevibe.com": [14937], "www.freerainbowtables.com": [6267], "www.kolabnow.com": [9112], "manage2.cpanel.net": [2710], "l.cuauhtli.info": [2053], "*.indstate.edu": [8216], "es.boardgamearena.com": [2219], "stamizade.nl": [2053], "www.lazykush.com": [9339], "health.google.com": [6962], "www.virt-manager.org": [18034], "38bridges.us": [2053], "files.gscapp.co": [2053], "ruesch.georgetown.edu": [6668], "jdi.na.vutbr.cz": [17814], "path-trail.com": [21081], "login.sunlightfoundation.com": [15857], "buf.me": [2053], "atspro.net": [2053], "aus.travel": [2053], "www.sss.ias.edu": [7815], "docs.centrify.com": [19673], "cordaid.co": [2053], "www.prgmr.com": [13274], "coinworker.com": [3465], "app.vssps.visualstudio.com": [18078], "m.hathitrust.org": [7371], "csail.mit.edu": [9916], "suitsupp.ly": [2053], "reporting.sunlightfoundation.com": [15857], "freshempire.betobaccofree.hhs.gov": [7192], "prhty.us": [2053], "www.wwte2.com": [18232], "piol.in": [2053], "secure.nuuvem.com": [11784], "retailhosting.fi": [14057], "searsecommercejobs.com": [14690], "muse.j-26.com": [2053], "scnce.com": [2053], "istella.it": [8529], "www.quantamagazine.org": [13566], "alxb.me": [2053], "www.scottish.parliament.uk": [21075], "classics.georgetown.edu": [6668], "nxtbx.co": [2053], "findmyorder.com": [5956], "secure.healthcheckusa.com": [7393], "www.bluejeans.com": [2192], "www1.saba.com": [21353], "jira.cms.gov": [19742], "2.vegelobby.tw": [2053], "www.hi5.com": [20336], "www.uppsite.com": [17684], "*.epson.com": [5434], "coverforyou.com": [3802], "www.taleo.com": [16178], "tbse.me": [2053], "www.hfo-telecom.de": [7187], "dayan.at": [2053], "lima.usembassy.gov": [21879], "www.altquick.co": [913], "pinboard.in": [12891], "cm-openwebmail.stanford.edu": [15635], "www.medicinescomplete.com": [10361], "europe.f-secure.com": [5654], "content.aggregateknowledge.com": [764], "secure.ogone.com": [11956], "startssl.eu": [15660], "2014.cursosvirtuales.uned.es": [17446], "mtevx.com": [2053], "biz.jdpay.com": [8576], "sxsw.is": [2053], "www.mattwilcox.net": [10246], "pub.mims.com": [9910], "j1v.eu": [2053], "syn.gy": [2053], "capitaloneconnect.*": [2877], "financestatic.baidu.com": [1661], "esellerate.net": [5462], "sw-t.ch": [2053], "grsecurity.net": [6500], "www.golfcourseindustry.com": [6949], "docs.unity3d.com": [17506], "alwayslvlup.com": [2053], "www.lesscss.org": [9223], "bandcamp.mu": [1683], "idea.qiwi.com": [13533], "tmobile.nl": [16090], "wush.co": [2053], "wc.meituan.com": [10405], "4buy.cf": [2053], "media.tchibo-content.de": [16240], "www.gidapp.com": [6448], "www.hydrogenaud.io": [20403], "barclaycard.co.uk": [1712], "bilder.rtl.de": [13708], "wokingham.gov.uk": [22042], "in-n-out.co": [2053], "support.onelogin.com": [12035], "www.konachan.com": [9123], "threatpost.ru": [16665], "lby.co": [2053], "ibd.georgetown.edu": [6668], "valuecommerce.com": [17835], "s120.cnzz.com": [3391], "ecommons.ucsc.edu": [17591], "www.educ.cam.ac.uk": [17529], "dta.adv.br": [2053], "weilos.co": [2053], "duf.news": [2053], "secure2.convio.net": [3697], "w.ya.ru": [18930], "thefederalistpapers.org": [16541, 16542], "muttscomics.com": [10919], "www.ubank.com.au": [17207], "secure.moneycorp.com": [20823], "thepirateproxy.info": [21709], "e6.xhamsterpremiumpass.com": [18817], "epoxate.com": [5431], "thesportbible.com": [21718], "nikosdano.com": [11598], "an.tacoda.net": [359], "de-hr.dict.cc": [4536], "www.heml.is": [7455], "m.zalando.se": [19094], "election.freebsd.org": [6237], "analytics.webtrends.com": [18467], "leanpub.com": [9365], "archlinuxarm.org": [19411], "www.eumostwanted.eu": [20067], "www.law.ox.ac.uk": [17557], "huntr.me": [2053], "flowtab.com": [6065], "www.bytename.com": [2548], "foxgr.am": [2053], "sme.io": [2053], "l.nebjak.net": [2053], "*.necessaryandproportionate.net": [11320], "hhdx.co": [2053], "map.local.ch": [9697], "downloads.gratipay.com": [7026], "sks.jetzt": [2053], "www.applianceshop.eu": [1165], "younited.com": [19026], "strtwi.se": [2053], "assets2.jimstatic.com": [8720], "bhap.ca": [2053], "www.gwhois.org": [6517], "ssa.tips": [2053], "www.anilist.co": [1060], "forum.yunohost.org": [19058], "contactus.sky.com": [15170], "www.libav.org": [9450], "www.netclean.com": [11378], "box-signup.uillinois.edu": [17238], "cdn.cquotient.com": [19810], "skandiabanken.no": [15142], "snglrty.co": [2053], "nvd.nist.gov": [11240], "arch-stuff.org": [21006, 21007], "www.derpibooru.org": [4461], "ordermychecks.com": [7339], "goto.blitzd.uk": [2053], "www.missinglinkelectronics.com": [10645], "sctmom.com": [2053], "carli.sl": [2053], "www.hiig.de": [7198], "salonla.la": [2053], "pd2.secure.anthem.com": [19395], "go.pix11.com": [2053], "www.water-challenge.com": [18295], "rpls.news": [2053], "www.foundationbeyondbelief.org": [6196], "s3.carltonbale.com": [2915], "su.mtv.it": [2053], "cwe.st": [2053], "qcim.co": [2053], "ram.city": [2053], "www.morningstar.co.uk": [10783], "shisei.do": [2053], "cfash.net": [2053], "www.zeltser.com": [19127], "sso.knet.cn": [8892], "rhasm.net": [2053], "*.readersdigest.com": [13849], "www.linux.org.au": [9567], "ref.sg": [2053], "www.bitcoin.com": [2016], "www.ianonym.com": [7819], "dongyang.meituan.com": [10405], "apps.sf.net": [15423], "rnwllms.nl": [2053], "888.qq.com": [13513], "www.inc.com": [8190], "marzi.win": [2053], "www.givedirect.org": [6809], "outlook.utsystem.edu": [17570], "malum.at": [2053], "adde.re": [2053], "lens.af": [2053], "cdnpng.dmjx.dk": [4687], "kevinajacobs.com": [9017], "www.crocs.com": [3878], "yth.bz": [2053], "p1.hitravel.xyz": [2053], "www.serverpilot.io": [14852], "confirmit.com": [3635], "kcts.tv": [2053], "mydio.me": [2053], "globalnetworkinitiative.org": [6850], "miui.nu": [2053], "static.trustdale.com": [17060], "mail-tester.com": [10037], "go.moraitis.org": [2053], "bgripes.com": [2053], "wp.secure.me": [14732], "i.pglf.org": [2053], "conditionsurveys.southampton.gov.uk": [15440], "ads2.contentabc.com": [3678], "wwf.ch": [22060], "gpmfg.us": [2053], "hpnt.me": [2053], "i3.iis.net": [7888], "*.mtgox.com": [10869], "aliho.lc": [2053], "www.tribecafilminstitute.org": [17004], "www.youtube.com.ua": [19016], "t5s.uk": [2053], "mikul.la": [2053], "infogf.com": [2053], "wiggle.co.uk": [18586], "ugr.ue.ucsc.edu": [17591], "*.last.fm": [9315], "job.ceredigion.gov.uk": [3025], "nonk.it": [2053], "hya.tt": [2053], "lille.indymedia.org": [8234], "4channel.org": [185], "westdevon.gov.uk": [18505], "snapsurveys.com": [21489], "www.2checkout.com": [100], "onlinebanking.becu.org": [1549], "h5n.us": [7174], "estes.pw": [2053], "fitzdonc.cc": [2053], "www.nvidia.com": [11174], "trns.fr": [2053], "wrbb.it": [2053], "community.smartbear.com": [21479], "freepressunlimited.org": [6266], "dizzcloud.com": [4676], "trinity.neooffice.org": [11342], "go.kengold.net": [2053], "harun.me": [2053], "feelsoftly.co": [2053], "act.gp": [2053], "d.me": [4068], "dustin.eu": [4906], "eform.southoxon.gov.uk": [21514], "binbox.io": [1946], "www.vouchercodes.co.uk": [21952], "sc01.alicdn.com": [846], "wowcss.zamimg.com": [19095], "blog.2k.com": [103], "dev.gogobot.com": [6934], "cbiz.us": [2053], "answers.stanford.edu": [15635], "blog.goeswhere.com": [6931], "ensijaturvakotienliitto-fi.directo.fi": [20043], "wiq.me": [2053], "ph1.sh": [2053], "jstuff.co": [2053], "*.xiti.com": [18872], "lv.com": [9673], "api.openstreetmap.org": [12177], "footprint.osu.edu": [11874], "usblog.kaspersky.com": [8958], "pp.ceneo.pl": [2996], "l.ogisz.de": [2053], "millionenklick.gmx.net": [6467], "iphou.se": [2053], "apoteket.se": [1138], "readytogo.microsoft.com": [10543], "rancher.it": [2053], "*.inmotionhosting.com": [8182], "m.basco.io": [2053], "tunisia.usembassy.gov": [21879], "tribe.ms": [2053], "districtsentinel.com": [4662], "cdn2.campuslabs.com": [2845], "80.93.17.242": [4596], "*.qwant.com": [13615], "www.tesco.com": [16395], "hit4.hotlog.ru": [7691], "goodeg.gs": [2053], "jobs.capitalone.com": [2878], "kdzn.ru": [2053], "blyp.me": [2053], "is.blinky.fr": [2053], "collectdata.education.gov.uk": [20009], "www.hofstra.edu": [7588], "www.mygirlfund.com": [10953], "ohtoday.us": [2053], "tantrum.surf": [2053], "atlas.minecraft.net": [10604], "studentactivities.uchicago.edu": [17532], "namepros.com": [11210], "moniker.com": [9018], "parabol.canaldigital.no": [2862], "www.printfriendly.com": [13293], "*.passion-radio.com": [12638], "shop.openstreetmap.org": [12177], "gemr.it": [2053], "voit.to": [2053], "admin.5min.com": [208], "www.devolo.com": [4507], "s.mglg.info": [2053], "d.udimg.com": [17226], "10wp.de": [2053], "ostra.in": [2053], "queervids.com": [13579], "my.comparethemarket.com": [3575], "www.fronter.com": [20179], "constructive.is": [2053], "*.motherjones.com": [10794], "pad.eigenlab.org": [20020], "gstatic.com": [6967], "nllgg.nl": [11126], "www.devmonk.com": [4506], "d.sam.best": [2053], "healthcheckusa.com": [7393], "check.ledgerscope.com": [9378], "orion.library.usyd.edu.au": [21885], "ycl.pt": [2053], "oshko.sh": [2053], "www.domeinenrz.nl": [11324], "checkip.org": [18083], "secure.ar.ikea.com": [8108], "law.moldseo.org": [2053], "www.rizon.net": [14144], "alumni.nottingham.ac.uk": [11726], "www.useresponse.com": [17715], "visa.qiwi.ru": [13533], "noble.worldcat.org": [18748], "hef.cc": [2053], "beachfitbod.com": [2053], "www.icij.org": [7831], "bugs.drweb.com": [4879], "libravatar.org": [9468], "img-comic.pixiv.net": [12960], "www.mudgum.net": [10874], "jump.cvanb.de": [2053], "ebank.spdb.com.cn": [21526], "mslnk.bz": [2053], "coinjar.com": [3461], "startingpage.com": [8553], "immersion.media.mit.edu": [9916], "www.klimaschutzpartner-berlin.de": [9084], "kent.spydus.co.uk": [21546], "301.sh": [2053], "forums.yabause.org": [18932], "json10.ringrevenue.com": [14125], "www.openuserjs.org": [12185], "ave1.me": [2053], "dsp.io": [4883], "zwijndrecht.nl": [11324], "webapp.ftb.ca.gov": [2801], "vp4fitness.me": [2053], "sourcemaking.com": [15424], "chart.bt": [2053], "notebookitalia.it": [11720], "trashbox.ru": [21784], "partner.skolaonline.cz": [21471], "damtp.cam.ac.uk": [17529], "www.edirectdebit.com": [5001], "tryzen99.com": [17082], "lists.swift.org": [15941], "l.albehery.com": [2053], "realbis.net": [2053], "longdate.pl": [9751], "www.bonadza.com": [2247], "provocativequestions.nci.nih.gov": [11241], "german.austria.usembassy.gov": [21879], "img.createsend1.com": [3844], "www.yaupspe.com": [5326], "ecn.st": [2053], "baitiao.jd.com": [8571], "webstaurantstore.com": [18453], "www.bayproxy.date": [21217], "paycheckrecords.com": [12683], "via.juthilo.com": [2053], "glv.cc": [2053], "en.aravot.am": [19410], "uac.advertising.com": [701], "www.smava.de": [21482], "git.vinilox.eu": [18016], "u15404278.onlinehome-server.com": [5515], "africanstudies.georgetown.edu": [6668], "www.secureprosoftware.com": [14738], "son.gd": [2053], "aetv.us": [2053], "s.ibd.org.au": [2053], "www.ceasefiremagazine.co.uk": [2985], "tilt.com": [16719], "extcss.kaspersky.com": [8958], "motherlessmedia.com": [10796], "tipeeestream.com": [21742], "www.gsl-co2.com": [6507], "www.hdsa.org": [7183], "www.freelansim.ru": [6298], "ktri.ps": [2053], "bulbman.com": [2470], "track.effiliation.com": [5211], "unmitigatedrisk.com": [17647], "jjshow.me": [2053], "resizing.flixster.com": [6049], "www.tierra.net": [16705], "ppcw.osu.edu": [11874], "email.fbk.info": [5818], "rick.890m.com": [2053], "www.giving.jhu.edu": [16562], "aps.hdfcbank.com": [7389], "zum.as": [2053], "cqrcengage.com": [2711], "co.nnex.in": [2053], "ayzw.me": [2053], "creative.adform.com": [625], "chat.study.163.com": [42], "rphar.ms": [2053], "amyne.ws": [2053], "cfm.nom.co": [2053], "connect.wku.edu": [22039], "parking.nic.ru": [11573], "virustotal.com": [18048], "jaball.us": [2053], "nmbl.osu.edu": [11959], "support.shazam.com": [14934], "www.techpinions.com": [16304], "luvbl.fr": [2053], "elaring.dfo.no": [19907], "lajor.mx": [2053], "www.subsignal.org": [15820], "antpool.com": [1112], "mandriva.com": [10111], "www.touchandtravel.de": [16884], "mufin.com": [10877], "autos.aol.com": [361], "rescope.me": [2053], "www.studiengangstest.de": [16428], "www.hu.liu.se": [9238], "www.creativity-online.com": [3829], "autodiscover.estates.leeds.ac.uk": [17604], "thepbproxy.pw": [21709], "stbo.us": [2053], "craftsy.me": [2053], "www.ethlife.ethz.ch": [5073], "6gwc-kbhkort.kk.dk": [8883], "c4ss.org": [2562], "www.zwame.pt": [19243], "lurey.in": [2053], "www.nanorep.com": [11222], "go.najbo.ch": [2053], "pbridge.heifer.org": [7423], "go.eti.eu.com": [2053], "meet.here.com": [7465], "onioncat.org": [12061], "net-a-porter.com": [11363], "aquagear.com": [1183], "orgcns.org": [2053], "secure3.vend-o.com": [17898], "chat.online.citi.com": [3227], "holidayextras.co.uk": [7595], "www.chrysalisventures.com": [3185], "eager.io": [5104], "gldwll.co": [2053], "bit2c.co.il": [1973], "openfoo.org": [21014], "lu.norton.com": [11703], "d.asset.soup.io": [15415], "blog.obdev.at": [11894], "www.arneswinnen.net": [19420], "d.olibenu.com": [2053], "exportawards.gov.au": [1428], "www.holidaybreak.co.uk": [7597], "aveda.cm": [2053], "assets.acs.org": [966], "btctrader.com": [1604], "deutsche-rentenversicherung-bund.de": [4487], "www.montpelerin.org": [20826], "*.startssl.com": [15660], "asa.org.uk": [19427], "icrav.it": [2053], "theworkdept.com": [16593], "darthotr.com": [2053], "physiol.gy": [2053], "www.legislationsurveys.com": [9388], "www.scandinavianphoto.se": [14572], "skept.net": [2053], "sbcom.ms": [2053], "pdfcrowd.com": [12712], "onebillion.org.uk": [12053], "community.manageengine.com": [10103], "jinxiang.meituan.com": [10405], "mdho.me": [2053], "www1.plymouth.ac.uk": [13055], "mastr.tech": [2053], "fullshow.esy.es": [2053], "yongcheng.meituan.com": [10405], "onguardonline.gov": [12009], "milobit.lugons.org": [9262], "sbjsbd.biz": [2053], "www.gatorchrysler.net": [4333], "thompsonhotels.com": [16646, 16647], "jfeds.org": [2053], "shibb-idp.georgetown.edu": [6668], "www.ponychat.net": [13123], "hccf.support": [2053], "www.ip3.htwk-leipzig.de": [7736], "orear.ws": [2053], "www.vidyard.com": [17998], "outw.mobi": [2053], "coupons.com": [3780], "leto.majordomo.ru": [10068], "cdn3.micasa.ch": [10520], "pfiff.us": [2053], "www.charter.net": [3080], "plutof.ut.ee": [17347], "spinlab.osu.edu": [11959], "osso.uvt.nl": [16716], "maldon.firmstep.com": [20125], "oakpt.org": [2053], "devon-cornwall.police.uk": [4510], "thetruthaboutguns.com": [21721], "blogs.kde.org": [8871], "jopd.co": [2053], "braski.co": [2053], "emso.bristol.gov.uk": [19592], "api.gravity.com": [7029], "bdisgusting.com": [2053], "sixxs.net": [15137], "feedback.hootsuite.com": [7633], "html-online.com": [20390], "*.dlvr.it": [4684], "*.skullsecurity.org": [15168], "tracking.aunggo.com": [1406], "spkcn.com": [15530], "www.microca.st": [10532], "entrpy.co": [2053], "menseninnood.nu": [2053], "www.libregraphicsworld.org": [9475], "photos-b.ak.fbcdn.net": [5816], "labcorp.com": [9276], "a8s.co": [2053], "www.merton.gov.uk": [10464], "hush.com": [7777], "michel.in": [2053], "responsibleflying.ba.com": [1527], "ns.adobe.com": [655], "finna.fi": [5966], "prvt.to": [2053], "galvtx.com": [2053], "fworks.link": [2053], "t8g.nl": [2053], "l.e-societe.com": [2053], "birthdayinabox.com": [1967], "gdata.es": [6410], "preemie.us": [2053], "d.ivancevic.nl": [2053], "admin.ufl.edu": [17538], "virtualglobaltaskforce.com": [21926], "shop.flixbus.se": [6047], "statse.webtrendslive.com": [18468], "l1veh3re.tk": [2053], "pbttbc.bt.motive.com": [20831], "worlddr.us": [2053], "osuhe.engineering.osu.edu": [11959], "ciw.me": [2053], "corp.hdslb.com": [20327], "kyjo.style": [2053], "link.wnep.com": [2053], "mwmbilling.com": [2053], "nlg.org": [11125], "lespaceclient.fr": [9224], "yesile.co": [2053], "learning.internetessentials.com": [20477], "concourse.ci": [19770], "t.boyabunda.net": [2053], "*.tutor.com": [17127], "www.ice.gov": [17299], "www.golucid.co": [6918], "mackeeper.com": [9984], "dukefuqua.biz": [2053], "readthenburn.com": [13845], "zabbix.com": [19085], "securitykiss.com": [14765], "teamra.ch": [2053], "www.vagrantup.com": [17822], "www2.gotoassist.com": [6911], "nagios2.ulpgc.es": [17411], "charlesm.us": [2053], "storify.com": [15752], "roboxchange.com": [13675], "further.co.uk": [6388], "mbs.eu": [2053], "links.adbka.com": [2053], "web2.securitymetrics.com": [14766], "www.theads.me": [16598], "pkvrtx.com": [2053], "bookcurl.haxx.se": [20319], "pubster.twitch.tv": [17164], "www.hsbc.co.in": [20372], "radioalmere.nl": [2053], "dataspace.pl": [4264], "alinw.alicdn.com": [846], "changlecl.meituan.com": [10405], "data.abuledu.org": [19258], "recrutamento.cgd.pt": [3038], "netpivotal.co.uk": [11396], "iaddict.co": [2053], "branham.tk": [2053], "gloonet.works": [2053], "www.gallup.com": [6527], "m.ntd.tv": [2053], "smu.gs": [2053], "www.mochajs.org": [10695], "pix4.me": [2053], "console.cloudbees.com": [19736], "dev.socrata.com": [15332], "partner.arbornetworks.com": [1193], "frc.tl": [2053], "forms.trendmicro.com": [16993], "kr.usembassy.gov": [21879], "aws-portal.amazon.com": [954], "glasgowconsult.co.uk": [20245], "blog.mariadb.org": [10152], "l.sword-int.com": [2053], "test.bvg.de": [1623], "tv.adobe.com": [655], "consult.eastriding.gov.uk": [5115], "www.youngrewiredstate.org": [19025], "www.gsmhosting.com": [7119], "static.legalsolutions.thomsonreuters.com": [16650], "www.theswirlworld.com": [1342], "yopto.com": [19000], "nl.sitestat.com": [15132], "m.huobi.com": [7769], "patrolo.gy": [2053], "i.psky.no": [2053], "litfl.com": [2053], "amma.do": [2053], "myi.es": [2053], "s.datacore.com": [2053], "todo.x2go.org": [18800], "instantchat.io": [8334], "jess.buzz": [2053], "cetic.be": [2643], "baoxian.163.com": [42], "subscriptions.wired.com": [18664], "www.hoeringsportalen.dk": [7587], "sos.state.co.us": [3507], "dragonsreach.it": [4837], "jamie.cc": [2053], "recet.in": [2053], "tilburguniversity.nl": [16716], "research.faq.rakuten.co.jp": [13768], "www.115.com": [25], "wishmich.org": [10069], "viguer.info": [2053], "shft.ws": [2053], "cwd.es": [2053], "bookfusion.com": [19570], "t4us.org": [2053], "go.cq-p.com": [2053], "rrs.co": [2053], "www.acorns.com": [515], "blog.ipredator.se": [7951], "lenovo.com": [9409], "profilocommercialeprivati.poste.it": [13192], "osmc.jp": [2053], "edsurge.com": [20008], "krl.tc": [2053], "vanillaforums.com": [17851], "silentsender.com": [15032], "kugler.ninja": [2053], "confluence.cms.gov": [19742], "interworx.com": [8383], "www.balkanleaks.eu": [1672], "www.complex-systems.com": [3588], "adentifi.com": [623], "msm.ag": [2053], "prppr.com": [2053], "*.t.domdex.com": [4758], "al.sharq.cf": [2053], "l.aliexpress.io": [2053], "forum.xakep.ru": [18839], "*.ecoscentric.com": [4985], "blckc.hn": [2053], "mtsensk.beeline.ru": [1801], "mirt.net": [10639], "s.felem.com": [2053], "easydns.com": [5125], "www.aclutx.org": [291], "www.archive.moe": [1204], "*.marktplaats.com": [20755], "aising.ca": [2053], "ihl1.ca": [2053], "cdnk.osalt.com": [21033], "russian.alibaba.com": [850], "bradford.gov.uk": [2317], "rdbe.fr": [2053], "gresille.org": [7071], "tota.ly": [2053], "drnk.ly": [2053], "www.webink.com": [18365], "supercard.ch": [3712], "tmpwebeng.com": [16086], "webindicator.siteheart.com": [15113], "sndnc.tv": [2053], "i.max-stone.jp": [2053], "www-s.ks.uiuc.edu": [17234], "lianjiang.jd.com": [8571], "*.alternate-b2b.nl": [921], "jp.cointelgraph.com": [19753], "5min.com": [208], "b97.yahoo.co.jp": [18944], "www.cloudshark.org": [19740], "www.petstore.com": [12814], "woahh.com": [18695], "wspnt.co": [2053], "r3.res.outlook.com": [12358], "b.poulin.fr": [2053], "forum.feathercoin.com": [5821], "8sha.re": [2053], "paypal-forward.com": [12679], "hrreview.uk": [2053], "mycouncil.oxfordshire.gov.uk": [21056], "ripper.us": [2053], "s.derz.co": [2053], "participation.usa.gov": [17307], "itcar.co": [2053], "kisa.tk": [2053], "di.gulamo.com": [2053], "sl.3.boardgamearena.com": [2219], "i.bartar.com": [2053], "img3.picload.org": [12873], "twb.im": [2053], "obdev.at": [11894], "crbr.co": [2053], "delivery.gettyimages.com": [6741], "fctp.pro": [2053], "www.6wunderkinder.com": [214], "www.goubiquiti.com": [6922], "postaffiliatepro.com": [13180], "o.evandro.co": [2053], "s.chbtc.com": [3094], "workatcase.com": [2053], "www.hsbc.com.bh": [20378], "colorofchange.org": [3502], "on.boeff.de": [2053], "*.mtac.org": [9964], "hls.dianping.com": [19913], "antizapret.info": [1110], "www.nationalcareersservice.direct.gov.uk": [4615], "workbench.connextra.com": [3650], "www.developers.elsevier.com": [5287], "my2.ukfast.co.uk": [17247], "stck.so": [2053], "www.kinox.ag": [20597], "mtafcle.com": [2053], "www.vauva.fi": [21898], "forum.peppermintos.com": [21107], "webmail06.register.com": [13965], "redmine.honeynet.org": [20357], "hcsm.me": [2053], "raulfp.info": [2053], "cnrsweetdeals.newsreview.com": [11531], "www.urlparser.com": [17293], "allinvestments.ru": [19352], "www.lensrentals.com": [9413], "goto.akdira.com": [2053], "www.conservatives.com": [3655], "ad.afy11.net": [629], "a4e.me": [2053], "qwant.com": [13615], "support.fortinet.com": [6174], "gls.de": [6457], "www.complinet.com": [19766], "*.chcoc.gov": [19689], "www.chipin.com": [3145], "www.bluez.org": [2191], "l.kreuzer-bb.de": [2053], "www.vendorportal.ecms.va.gov": [17297], "crowdjustice.co.uk": [3892], "l.myszka.us": [2053], "gmat.economist.com": [5161], "variety.com": [17858], "a.lscdn.net": [9256], "rufus.akeo.ie": [14260], "linuxfound.info": [9571], "staging-charts.ycharts.com": [18917], "oakmil.info": [2053], "touch.meetme.com": [10378], "www.alkasir.com": [862], "*.internationalsos.com": [8416], "marinsm.com": [10159], "xamarin.com": [18840], "w.nicnac.net.au": [2053], "rabbitmq.com": [13721], "planning.westlothian.gov.uk": [22011], "bloombg.org": [2053], "m.asuka.jp": [2053], "www.stevesie.com": [15727], "xpr.li": [2053], "ent.u-bordeaux.fr": [17195], "web.adblade.com": [600], "dng.link": [2053], "regrow.xyz": [2053], "gktr.pl": [2053], "gpipk.in": [2053], "businessnews.com.au": [19616], "hardforum.com": [20315], "www.lib.umd.edu": [17549], "status.namecheap.com": [11208], "jtip.co": [2053], "cdes.oebb.at": [20984], "revealnews.org": [14074], "rectpweb.admin.uillinois.edu": [17238], "images4et.com": [20435], "applyku.com": [2053], "www.partnernetprogram.com": [12627], "hub.olympic.org": [20988], "finn.no": [5964], "go.takeshi.cc": [2053], "a.meltycasa.com": [2053], "efochesa.com": [2053], "cryptabyte.com": [3912], "www.socialrank.co": [15306], "c360.io": [2053], "neighbourhoodlink.co.uk": [20885], "bike24.de": [1924], "mir.inl.gov": [20462], "jeann.es": [2053], "pccapply.com": [2053], "www.belive.ru": [19514], "www.sitola.cz": [15134], "*.r-kom.de": [13620], "api-uat.dwolla.com": [4913], "portal.cachefly.com": [2767], "minus.com": [10625], "gourmetgiftbaskets.com": [6986], "connect.internetsociety.org": [8423], "catnrvn.co": [2053], "code.org": [3405], "c.t2o.es": [2053], "wipmania.com": [18207], "nmbr.fr": [2053], "busmag.mu": [2053], "www.webropolsurveys.com": [18437], "ordos.jd.com": [8571], "zemanta.com": [19128], "spanish.honduras.usembassy.gov": [21879], "services.maidstone.gov.uk": [10035], "rvw.church": [2053], "i.nmly.co": [2053], "liveonline.gq": [2053], "paloaltou.org": [2053], "danmk.com": [2053], "1one.click": [2053], "status.parse.com": [12620], "www.topspb.tv": [21758], "app.mailerlite.com": [10048], "codeofconduct.wustl.edu": [18290], "digitalhands.tk": [2053], "findlegalforms.com": [5953], "extra.cr": [2053], "joueravecletemps.cff.ch": [15946], "www.shopbop.com": [21429], "motly.us": [2053], "go.jeannie.io": [2053], "www.redbubble.com": [13895], "*.wpvulndb.com": [18222], "valever.de": [2053], "www.finalist.nl": [20116], "l2.hitravel.xyz": [2053], "thepiratebay.org": [16493], "jining.jd.com": [8571], "shop.flixbus.nl": [6047], "www.kolab.org": [9110], "my.astaro.com": [1333], "washpostco.com": [18286], "fpdbs.paypal.com": [12678], "8.jd.com": [8571], "vulnscan.org": [18168], "jgrn.us": [2053], "newyorkvocalcoaching.com": [11492], "hcc.lv": [2053], "www.baidu.com": [1661], "carlospuech.org": [2053], "*.list-manage.com": [9607], "static.commando.io": [3540], "hoiio.co": [2053], "fnlst.co": [2053], "www.safebilling.com": [14467], "afiliados.amazon.com.mx": [19368], "2.jddean.com": [2053], "shibboleth.net": [14947], "fwd.sh": [2053], "swoo.me": [2053], "jellynote.com": [8699], "blssd.link": [2053], "imva.in": [2053], "s4a.pw": [2053], "fingrad.sovcombank.ru": [21516], "legacy.vg": [9385], "promotion.aliyun.com": [861], "xo.pe": [2053], "sign-up.to": [15025], "mankier.com": [10122], "biallo.de": [1892], "symbol.yr.no": [22120], "sp.velaro.com": [17887], "growingio.com": [20286], "gsc.mit.edu": [9916], "www.dmsguild.com": [12029], "voguefr.fr": [2053], "tds.gs": [2053], "forum.ovh.com": [12378], "www.steaw.com": [15713], "steveb.me": [2053], "sppd.state.gov": [17345], "dgl.li": [2053], "m.zalando.fr": [19094], "www.cabinetoffice.gov.uk": [2760], "*.rollcall.com": [14188], "www.ukbusiness.hsbc.com": [7233], "www.walthers.com": [18263], "www.micropartsusa.com": [10538], "admin.mobile.de": [20811], "s.najlabs.com": [2053], "passport.alibaba.com": [850], "www.tmdb.org": [16084], "punchout.digikey.com": [4552], "edin.ac": [2053], "getitviral.in": [2053], "a0.io": [2053], "*.portlandmercury.com": [13165], "becu.org": [1549], "grmp.li": [2053], "z.wandr.me": [2053], "products.mercola.com": [20782], "cdn0.vox-cdn.com": [18145], "inotv.rt.com": [13702], "www.giffgaff.com": [20237], "nevillholtopera.net": [11478], "bethesignal.org": [1870], "www.data-informed.com": [4271], "www.bme.hu": [1570], "thanku.att.com": [2053], "310ei.xyz": [2053], "www.yaler.net": [18947], "www.bitcoinarmory.com": [2026], "*.utdallas.edu": [17573], "medr.me": [2053], "www2.per.cuhk.edu.hk": [2747], "globalpromote.com": [6853], "*.datacenterknowledge.com": [4256], "dnglr.de": [2053], "www.couchsurfing.org": [3768], "aesewi.ng": [2053], "on.scava.be": [2053], "events.kcrw.com": [20583], "tlok.us": [2053], "celebda.ch": [2053], "www.limesurvey.org": [9517], "bogtv.im": [2053], "account.cyngn.com": [4055], "go.mdk.mx": [2053], "youtube.com.co": [19016], "www.posti.fi": [21178], "store.laughingsquid.com": [20641], "ivotts.readspeaker.com": [13843], "sunsport.stanford.edu": [15635], "normer.uio.no": [17615], "takuu-saatio.fi": [16171], "david-dm.org": [19862], "ajrnz.info": [2053], "info.dwyr.com": [2053], "ehel.me": [2053], "navam.in": [2053], "blog.jolicloud.com": [20547], "cfcb.me": [2053], "cpib.ac.uk": [2702], "codereview.chromium.org": [3179], "lsi.science": [2053], "abas.co": [2053], "pbp.rocks": [21215], "mbsy.co": [10278], "builds.cyngn.com": [4055], "www.work4labs.com": [18738], "fine.pe": [2053], "motorsports.osu.edu": [11959], "chris-lamb.co.uk": [3162], "joycasino13.com": [20552], "markj.co": [2053], "engineering.jhu.edu": [16562], "hulu.ly": [2053], "www.computerworld.ch": [3606], "centrify.com": [19673], "www.lunarline.com": [9835], "up.com": [21863], "gitian.org": [6803], "www.crunchboard.com": [3905], "wjns.co": [2053], "ec-media.sndcdn.com": [15278], "karlexwatch.com": [2053], "dealzon.com": [4097], "fourdo.com": [178], "aplicaciones.ulpgc.es": [17411], "nycw.co": [2053], "thomascook.com": [16643], "smggo.com": [2053], "image-proxy-origin.twimg.com": [17153], "intranet.irisa.fr": [7961], "*.foodl.org": [6121], "s.mcknote.com": [2053], "insurance.wustl.edu": [18290], "www.voices.com": [18117], "member.impactradius.com": [8160], "d11g.ms": [2053], "gftz.co": [2053], "*.dmu.ac.uk": [4122], "s.apadv.co": [2053], "gks.rocks": [2053], "fck.me": [2053], "xmpp.ru.net": [18828], "www.mvps.org": [9973], "bison.inl.gov": [20462], "r.icetravel.xyz": [2053], "secure.qfxsoftware.com": [13511], "tpspd.co": [2053], "packetflagon.is": [21061], "*.evolvesocially.org": [5574], "s.180dc.org": [2053], "short.roiup.es": [2053], "banan.cz": [1528], "www.searchmarketingnow.com": [16635], "www.jtreminio.com": [20559], "dev.greencubes.org": [20281], "fran.bz": [2053], "schoolmeals.warrington.gov.uk": [18280], "www.lh.co.th": [9442], "charmd.me": [2053], "l.scholz.net": [2053], "elvtn.co": [2053], "bkgrts.xyz": [2053], "ono.im": [2053], "www.vovici.com": [18144], "verkhnee-dubrovo.beeline.ru": [1801], "hr.uic.edu": [17517], "go.sirsidynix.com": [21458, 21459], "gymnut.biz": [2053], "iwantmyname.com": [20517], "ipzl.co": [2053], "laneros.co": [2053], "nwg.so": [2053], "media.soundcloud.com": [15410], "qub.ac.uk": [13578], "chukotka.rt.ru": [13703], "a.jean-paul.biz": [2053], "www.kollegorna.se": [9115], "www.slon.ru": [15214], "xrgnx.co": [2053], "www.cce.com": [2930], "keycard.ninja": [2053], "www.hosokawa-alpine.com": [7643], "www.xyratex.com": [18913], "s.ruteway.com": [2053], "wiki.projectdev.org": [21208], "yule.qiyi.com": [20413], "cdn.ideastations.org.s3.amazonaws.com": [8075], "webmail.sk": [15931], "www.prettyincash.com": [13266], "goto.nuola.de": [2053], "static.huobi.com": [7769], "dri.freedesktop.org": [6243], "slac.stanford.edu": [15635], "ar.squat.net": [21549], "youtube.com": [19016], "scontent.igcdn.com": [8099], "itunes.sfu.ca": [14893], "go.sentinel.org": [2053], "client.smarthead.ru": [21480], "manosphere.me": [2053], "ltar.nal.usda.gov": [17495], "www.nos.pt": [11710], "helpsu.stanford.edu": [15635], "woodtreeswing.com": [18721], "y.oryza.asia": [2053], "antigu.ru": [2053], "store.ccccloud.com": [2597], "www.gidforums.com": [6449], "blog.kissmetrics.com": [8880], "chile.usembassy.gov": [21879], "share.state.gov": [17345], "*.wooga.com": [18722], "m.dutch.alibaba.com": [850], "3c.taobao.com": [16206], "cluster.alibaba.com": [850], "mhoff.co": [2053], "secure.admin.illinois.edu": [17544], "feedbra.in": [2053], "linzhi.meituan.com": [10405], "nu.hackn.us": [2053], "*.mybigcommerce.com": [1906], "kundencenter.web.de": [18347], "archive.anon-ib.su": [1080], "trifi.ro": [2053], "in.effectivemeasure.net": [5208], "www.linuxdistrocommunity.com": [9581], "staging.amazonsupply.com": [955], "wholelivingdaily.wholeliving.com": [10195], "www.litmus.com": [9632], "check24.de": [3103], "nrelate.com": [11743], "www.vulnhub.com": [18167], "dotcounter.douyucdn.cn": [4813], "rusty.ozlabs.org": [12401], "ongo.uk": [2053], "www.djangogirls.org": [4680], "medmark.link": [2053], "ergo.zone": [2053], "keystone.cern.ch": [2632], "images.e.switchadhub.com": [15954], "m.dell.com": [4413], "go.irwin.ws": [2053], "blog.maxmind.com": [10262], "sof.me": [2053], "bouncerstation.com": [2299], "s-eu.btstatic.com": [1621], "www.youtube.com.gr": [19016], "superyard4.info": [2053], "*.airbnb.co.kr": [788], "varrs.co": [2053], "blog.zugaina.org": [19237], "www.uowdubai.ac.ae": [17636], "ajn.mx": [2053], "cldp.ly": [2053], "5mc.me": [2053], "tree.taiga.io": [16166], "fm.bnr.nl": [2053], "www.thestar.com": [16846], "cimbclicks.in.th": [2665], "novgorodskaya-obl.beeline.ru": [1801], "kpny.cc": [2053], "canary.silentcircle.com": [15031], "ctovision.com": [2743], "academy.oracle.com": [12284], "bbs.es.gy": [5458], "gnome-look.org": [21006, 21007], "static.spiceworksstatic.com": [15518], "andrew.roffey.org": [14178], "citizen.ac": [2053], "9.*.wdfiles.com": [18593], "rimg02.rl0.ru": [14147], "www.directbox.ch": [4613], "www.filmlinc.com": [5923], "gabi.tips": [2053], "system-rescue-cd.org": [21640], "t0.com": [16031], "ptls.us": [2053], "postmaster.hotmail.com": [7704], "kettering.gov.uk": [9015], "www.adpselect.com": [310], "444.hu": [172], "hostcreo.com": [7645], "sthmb.in": [2053], "netlock.hu": [11388], "w.ftbp.ro": [2053], "smrtr.co": [2053], "cyphar.com": [4057], "links.andyb.org": [2053], "www.art2po.com": [1256], "jcb.bz": [2053], "www.fullstackpython.com": [20186], "www.adoption.state.gov": [17345], "www.uclan.ac.uk": [17593], "cdn.lfrs.sl": [9441], "thepiratebay.unblocked.faith": [21217], "hpme.co": [2053], "rca.lu": [2053], "1tw.org": [2053], "a.sharsidd.com": [2053], "noodlebox.dyndns.info": [19006], "flamingspork.com": [6016], "fltsim.me": [2053], "www.berliner-energietisch.net": [1844], "dplaw.info": [2053], "opics.co": [2053], "video.khl.ru": [20590], "portale-sisinfo.infn.it": [7913], "blog.awe.sm": [1500], "suggest.search.sky.com": [15170], "amwu.as": [2053], "customerservice.aldi.co.uk": [338], "propertylicensing.walthamforest.gov.uk": [18262], "www.vumanity.net": [18171], "linds.im": [2053], "endesa.pt": [5348], "mobilemail.secureserver.net": [14755], "smartone.de": [21477], "asd.dea.com": [4340], "ptsco.jp": [2053], "*.digg.com": [4551], "www.websitealive3.com": [18445], "www.micropython.org": [10530], "www.kuiken.co": [21215], "legolanddiscoverycentre.co.uk": [9391], "omgwh.at": [2053], "hivelab.academy": [2053], "*.wrapadviser.co.uk": [18773], "2020minds.com": [2053], "www.youtube.com.hr": [19016], "emdl.osu.edu": [11959], "www.cambridgeshire.net": [19633], "nextbus.com": [11553], "www.takevoucher.com": [21655], "ja.mesmoo.re": [2053], "aho.lt": [2053], "womenonweb.org": [18708], "fhk.io": [2053], "www.youtube.com.hk": [19016], "helmich.de": [7442], "bj.meituan.com": [10405], "crinc.co": [2053], "www.honeynet.org.mx": [20356], "springer.com": [15561], "*.ukr.net": [17407], "my.absolute.com": [469], "www.zugaina.com": [19236], "assets.victorinox.com": [17966], "claro.tl": [2053], "myb.ug": [2053], "aclu-nj.org": [297], "f.superfrank.dk": [2053], "weihai.meituan.com": [10405], "admin.1and1.com": [61], "shop.marthastewart.com": [10195], "foxitsoftware.com": [6204], "tdesktop.com": [16244], "www.tagasauris.com": [16161], "commoncrawl.org": [3551], "s.iwanaga.org": [2053], "www.wefightcensorship.org": [18326], "www.showrss.info": [14989], "firstdraft.news": [2053], "rushtix.co": [2053], "analytics.supplyframe.com": [15893], "cryptrader.com": [3911], "play.vidyard.com": [17998], "dev.deluge-torrent.org": [4417], "ignitiondeck.com": [8101], "www.opinionmeter.com": [12257], "knld.co": [2053], "cspforum.eu": [2734], "maildomain.web.de": [18347], "support.greenqloud.com": [7046], "my.uic.edu": [17517], "printpin.nottingham.ac.uk": [11726], "scar.to": [2053], "www.55chan.org": [200], "enterprisecenter.verizon.com": [17918], "epaper.apps.welt.de": [18492], "dfurn.es": [2053], "go.apkftp.com": [2053], "sprav.yandex.kz": [18957], "tsherfy.us": [2053], "storage.360buyimg.com": [136], "mont-bell.jp": [2053], "www.ioke.org": [20483], "www.cereproc.com": [3024], "gju3.alicdn.com": [846], "samhar.uk": [2053], "joesent.me": [2053], "penza.beeline.ru": [1801], "buswk.co": [2053], "*.cufp.org": [2746], "go.ec-tool.com": [2053], "*.googlevideo.com": [19016], "data.fm": [4252], "static.popads.net": [13129], "opencart.com": [12126], "speakyoursilence.org": [15483], "jobs.sbb.ch": [15946], "static.zoomerang.com": [19222], "bornhe.re": [2053], "heino-cykler.dk": [7427], "www.rspb.org.uk": [13694], "travl.rs": [2053], "wallet.95516.com": [240], "frshjc.ca": [2053], "ma2jic.engineering.osu.edu": [11959], "ap4a.co": [2053], "myaccount.runnymede.gov.uk": [21340], "buzzdoes.com": [2536], "ardamis.com": [1212], "www.cms.iprsoftware.com": [7943], "www7.lowes.com": [9800], "myvc.us": [2053], "untappd.akamaized.net": [802], "www.springer.com": [15561], "lists.libreswan.org": [9477], "jobs.brassring.com": [19586], "www.dia-grid.org": [4521], "psylin.plymouth.ac.uk": [13055], "*.interworx.com": [8383], "rad-r.us": [2053], "isic.info": [2053], "media.washingtonpost.com": [18287], "wddk.co": [2053], "www.mathworks.com": [10230], "www.sigxcpu.org": [15029], "huntcal.com": [7767], "hdme.biz": [2053], "www.twit.tv": [16147], "urbn.in": [2053], "sgk.mn": [2053], "hrw.org": [7756], "www.tumblr.com": [17101], "culturemass.net": [2053], "merchant.unionpay.com": [17478], "rochdale.greenparty.org.uk": [7052], "*.overlakehospital.org": [12371], "clickb.us": [2053], "www.immunicity.org": [8155], "origin.www.virginmedia.ie": [18029], "tup.ly": [2053], "b.ali-najafi.ir": [2053], "mbist.ro": [2053], "customers.gfi.com": [6441], "ln.wg211.uk": [2053], "*.bcf.ch": [20574], "moodlerooms.com": [20827], "ads.ibtracking.com": [8051], "platzr.it": [2053], "images-1.gog.com": [6482], "www.corrupcia.net": [19795], "infoinf.ml": [2053], "visit.stanford.edu": [15635], "pirateproxies.net": [21709], "app-community.teespring.com": [16316], "dadcod.es": [2053], "wpo.pw": [2053], "voodooping.com": [18136], "1.bonradio.com": [2053], "js.dmtry.com": [4691], "login.jiveon.com": [8734], "mammth.co": [2053], "www.btcmedia.org": [1609], "glassesusa.com": [6825], "webmail.unizar.es": [17643], "www.us.hsbc.com": [7233], "2015.osdc.com.au": [11864], "bidp.in": [2053], "wwfau.org": [2053], "*.blogspot.co.za": [2166], "hapu.us": [2053], "education.iwill.org.uk": [20520], "ozzzy.co": [2053], "support.ca.com": [2569], "kkarski.com": [2053], "dig.hm": [2053], "www.globaleaks.org": [6834], "strategicplan.iu.edu": [8214], "gazeta.uz": [20212], "bitm.nu": [2053], "slickedit.com": [15201], "onthemedia.org": [12017], "m.qiwi.com": [13533], "translate.yandex.com": [18956], "tech.fortune.cnn.com": [18730], "mcc.lol": [2053], "daveda.ws": [2053], "jayk.work": [2053], "globaleaks.org": [6834], "mianyang.jd.com": [8571], "crds.ch": [2053], "www.safaribooksonline.com": [14459], "*.craigslist.co.uk": [3826], "sec.1688.com": [44], "sneakerbox.us": [2053], "qianxiguan.jd.com": [8571], "identrust.com": [8082], "kobobooks.com": [9101], "nb.boardgamearena.com": [2219], "enma.ga": [2053], "www.maxspeedcdn.com": [10258], "mart.fyi": [2053], "www.statushub.io": [15692], "*.crunchboard.com": [12797], "webde-freemail-cards.web.de": [18347], "atomiccowlick.com": [1361], "www.genome.ucsc.edu": [17591], "cdn-media.amplience.com": [19385], "mail.ixsystems.com": [8029], "luna.bzh": [2053], "www.docker.com": [4704], "www.liveinternet.ru": [9649], "mad.mx": [2053], "t4f.bz": [2053], "s.ung-inc.com": [2053], "www1.lsbu.ac.uk": [9252], "stat.ethz.ch": [5074], "notifications.console.aliyun.com": [861], "ethercalc.net": [5483], "iamn.at": [2053], "www.mcafee.com": [10282], "freightforwarduat.courierpost.co.nz": [3784], "sds-staff.kent.ac.uk": [17603], "funnelch.at": [2053], "f5.hitravel.xyz": [2053], "ohne.ws": [2053], "cdn.us.playstation.com": [13015], "seom.im": [2053], "vrenes.is": [2053], "assets.delvenetworks.com": [4418], "alterupload.com": [69], "snka.tk": [2053], "shibain.us": [2053], "www.playframework.com": [13018], "cias.rit.edu": [13667], "artbeat.ly": [2053], "ntlite.com": [20958], "starship.xyz": [15656], "www.steamunlock.com": [15712], "www.baidupcs.com": [1663], "www.cgd.pt": [3038], "www.newyorkvocalcoaching.com": [11492], "www.equity.org.uk": [5440], "www.voffka.com": [18111], "www.finkmanufacturing.com": [1955], "images.ccbill.com": [2592], "www.swisscom.com": [15951], "io.quanders.com": [2053], "mba.incae.edu": [2053], "journalism.stanford.edu": [15635], "gonzaga.edusupportcenter.com": [20012], "www.canlii.org": [2847], "j7.chaucanh.net": [2053], "e14n.com": [4960], "i.msdn.microsoft.com": [10543], "paetec.com": [12410], "www.scripps.edu": [14659], "mpnt.in": [2053], "wapy.com": [18190], "b.robiotic.net": [2053], "data-informed.com": [4271], "adifferentdialogue.studentaffairs.georgetown.edu": [6668], "lntecc.com": [9246], "production.agima.ru": [19324], "ys.sakh.com": [21360], "www.ovh.sn": [12378], "spot.im": [15545], "healthdirect.gov.au": [7400], "www.heinlein-support.de": [7426], "www.viber.com": [17956], "ja.functions-online.com": [20187], "smtns.com": [2053], "cdn.smartstream.tv": [15247], "alice.de": [851], "s.admaster.com.cn": [569], "j1.hitravel.xyz": [2053], "ssl-munchkin.marketo.net": [10179], "pazaruvaj.com": [12704], "utas.info": [2053], "redmine.documentfoundation.org": [16487], "alnk.us": [2053], "bnjm.in": [2053], "www.workwithcolor.com": [18740], "intranet.mecheng.ohio-state.edu": [11960], "wiki.opnsense.org": [11855], "chost.co": [2053], "jbmodo.com": [2053], "entsu.st": [2053], "manager.submittable.com": [21598], "kkin.tl": [2053], "mgn.to": [2053], "gtn.is": [2053], "piwik.nic.cz": [11572], "orapps.osu.edu": [11959], "wwwcf.nlm.nih.gov": [11241], "mmwd.ca": [2053], "fmylife.com": [5693], "www.accessprivacy.com": [489], "www.schulthess.com": [21382], "alandroidnet.com": [815], "nocha.in": [2053], "s.ibukiyama.tv": [2053], "cliks.info": [2053], "ppatel.me": [2053], "assets.uits.iu.edu": [8214], "moodle.ut.ee": [17347], "req.io": [2053], "freestyle.vc": [6304], "magazine.magix.com": [9874], "europeanssl.eu": [5533], "www.okcoin.cn": [11826], "solutions.liveperson.com": [9655], "isalo.org": [8512], "services.amazon.it": [19373], "blogernet.asia": [2053], "w.narhar.co": [2053], "piwik.inspirehep.net": [8327], "cmpny.co.uk": [2053], "t4.be": [2053], "hcne.ws": [2053], "clubpeng.in": [2053], "www.ipa.go.jp": [7934], "tly.mx": [2053], "www.skanetrafiken.se": [15143], "newpaltz.worldcat.org": [18748], "pcbooking.lambeth.gov.uk": [20631], "wiki.umiacs.umd.edu": [17549], "hf-aka.de": [2053], "whol.st": [2053], "srcclr.help": [15589], "labs.giffgaff.com": [20237], "www.join.tv": [8764], "*.idg.com.au": [7851], "www.nordkappnett.no": [11674], "blog.mog.com": [9939], "sweavegas.se": [2053], "wxwidgets.org": [22072], "cges.georgetown.edu": [6668], "jstnwrnr.com": [2053], "www.nal.usda.gov": [17495], "conversejs.org": [3693], "getawaygrey.com": [6688], "j.o2pros.com": [2053], "tools.woolyss.com": [18724], "boardzoo.com": [2221], "soulmates.theguardian.com": [16554], "www.ga-innocenceproject.org": [6669], "rwd.is": [2053], "chdr.tv": [2053], "app.getbeagle.co": [6708], "*.editmysite.com": [5186], "tmx.rr.nu": [2053], "las.cm": [2053], "bilbe.co": [2053], "www.bloadr.com": [2135], "themes.tiki.org": [16715], "*.usefedora.com": [21878], "*.wishpot.com": [18675], "sgtppr.com": [2053], "grants.wellcome.ac.uk": [22001], "squirrel.carezone.cz": [2908], "www.watchmaxx.com": [18294], "carlisleeden.greenparty.org.uk": [7052], "ne.ucsd.edu": [17216], "www.star.bnl.gov": [19564], "static.bpddn.com": [1789], "cmh.fyi": [2053], "www2.lse.ac.uk": [9738], "*.blogspot.com.eg": [2166], "*.blogspot.com.ee": [2166], "oso.io": [2053], "vn.hsbc.com": [7233], "atdu.net": [2053], "*.blogspot.com.es": [2166], "*.planetemu.net": [12985], "s.nikkei.co.jp": [2053], "build.tox.chat": [16891], "i3.media": [2053], "www.everyanglemedia.com": [5558], "artsn.co": [2053], "d-mn.pl": [2053], "privacy.org.au": [13312], "www.usyd.edu.au": [21885], "wusmregistrar.wustl.edu": [18290], "walmart.com": [18260], "stayclassy.org": [15694], "52bak.es": [2053], "ips-invite.iperceptions.com": [20411], "tivo.li": [2053], "intego.com": [8351], "ec.libsyn.com": [9482], "i.mad.ph": [2053], "static.stubhub.com": [15789], "issues.kolab.org": [9110], "creativewriting.stanford.edu": [15635], "api.bufferapp.com": [2459], "profor.to": [2053], "*.fishwrapper.com": [6000], "www.ruptly.tv": [14276], "signup.live.com": [9644], "andsc.eu": [2053], "thecoastnews.com": [16526], "chrch.ly": [2053], "bugs.opera.com": [12252], "edponline.edp.pt": [4995], "purevpn.com": [13469], "nn.meituan.com": [10405], "waymoot.org": [18308], "scwd.stockport.gov.uk": [21578], "www.kaisersysteme.com": [8921], "act.ju.taobao.com": [16206], "discshop.se": [4643], "*.tinypng.com": [16755], "www.asl19.org": [390], "api.flattr.com": [6025], "trucrowd.is": [2053], "fveydocs.org": [5722], "cdn.betacie.net": [1867], "playboystore.com": [13020], "bassett.illuminateed.com": [20430], "www.postalheritage.org.uk": [13185], "www.strato-hosting.co.uk": [14428], "www.justtomatoes.com": [8847], "people.w3.org": [18184], "*.stopsoftwarepatents.eu": [15742], "aerohosting.cz": [728], "wiki.openvas.org": [12186], "cultr.me": [2053], "acctprin.us": [2053], "www.fas.htwk-leipzig.de": [7736], "go.c66.me": [2053], "pad.mn": [2053], "news.66option.com": [211], "cionet.info": [2053], "support.snapchat.com": [15275], "timmil.es": [2053], "brokn.co": [2053], "service.immobilienscout24.de": [8153], "stylist.co.uk": [15807], "www.julieannenoying.com": [8823], "b.eddi.com": [2053], "tengchong.meituan.com": [10405], "tinderfoundation.org": [16741], "trendmac.ro": [2053], "www.brasil247.com": [2343], "www.sovereignman.com": [15447], "ci.concourse.ci": [19770], "build.al": [2053], "bosco.soy": [2053], "Spielfuerdeinland.de": [15524], "paperspace.io": [12587], "nedlinux.com": [11323], "lingyun.aliyun.com": [861], "melb.it": [2053], "psup.men": [2053], "*.hark.com": [7338], "www.snip2code.com": [15282], "debathena.mit.edu": [9916], "newhols.co": [2053], "bluenotes.anz.com": [355], "caesenergy.com": [19627], "jobs.wellcome.ac.uk": [22001], "lpievent.lpice.eu": [9250], "renxga.me": [2053], "www.orezpraw.com": [12304], "status.pivotaltracker.com": [12949], "s1.qhimg.com": [13531], "fanolo.gy": [2053], "ter.je": [2053], "hideman.net": [7534], "www.raptr.com": [13796], "login.sparebank1.no": [21524], "wpartyslots.com": [2053], "i0.lbp.me": [20644], "jpb.gs": [2053], "sudn.org": [2053], "bxtr.us": [2053], "facultypositions.usc.edu": [17564], "www.friendfinder.com": [6331], "pr0gramm.com": [21185], "cscprotectsbrands.com": [3751], "cloudscaling.com": [3374], "roddis.net": [14174], "thisismynext.com": [16639], "tvlicensing.co.uk": [17138], "www.chromestatus.com": [3178], "svn.mplayerhq.hu": [9949], "alias.io": [849], "on.omskman.com": [2053], "www.anybalance.ru": [1116], "dx.com": [4331], "nerds.link": [2053], "www.niap-ccevs.org": [11104], "planet.archlinux.fr": [1198], "tlou.tk": [2053], "linuxpenguins.xyz": [20701], "pnky.co": [2053], "ctt.org": [3977], "uxjw.me": [2053], "eastsussex.gov.uk": [19994], "www.codefund.io": [3430], "haa.li": [2053], "m.internet.org": [8426], "www.joycasino13.com": [20552], "bccserve.sunybroome.edu": [2419], "www.pyweek.org": [13495], "support-chat.beeline.ru": [1801], "www.libanywhere.com": [9463], "ictu.nl": [7840], "games.icq.com": [7837], "userprovisioning.courierpost.co.nz": [3784], "badongo.com": [1651], "igniterealtime.org": [8100], "trfg.in": [2053], "extweb.utm.edu": [17628], "mittidg.idg.se": [7852], "sync.adaptv.advertising.com": [701], "f80s.com": [2053], "*.ripoffreport.com": [14129], "www.a-ads.com": [250], "musikerforbundet.se": [10909], "geest.tk": [2053], "www.nuuvem.com": [11784], "sflo.me": [2053], "mncd.in": [2053], "cs.serverdensity.com": [14858], "bit.g6p.net": [2053], "whoami.cesnet.cz": [2642], "m.wildlifesydney.com.au": [18608], "portfo.ly": [2053], "*.ca.eprncdn.com": [5432], "www.dreambox.com": [19959], "dbs.meituan.com": [10405], "mybexley.firmstep.com": [20125], "elearning.vutbr.cz": [17814], "jitsi.org": [8731], "www.iula.upf.edu": [17674], "syntax.cr": [2053], "help.meetme.com": [10378], "www.wlb.at": [18582], "employers.sciencecareers.org": [14620], "bwll.co": [2053], "cset.inl.gov": [20462], "www.andytyson.com": [1049], "gplusbrand.com": [2053], "sizzlesitesinc.com": [15138], "www.zooko.com": [19217], "www.mxgm.org": [9975], "s1.hao123img.com": [20313], "*.opensrs.com": [12166], "2009.asiabsdcon.org": [1293], "welfare.bournemouth.gov.uk": [2304], "s.zaitech.com": [2053], "gztsp.tv": [2053], "camden.greenparty.org.uk": [7052], "gospu.rs": [2053], "force11.org": [5699], "dev.plexapp.com": [13037], "www.tiremetroonline.com": [16766], "glnk.eu": [2053], "secondop.tv": [2053], "www.dropdav.com": [4863], "books.rakuten.co.jp": [13767], "assets.wantful.com": [18271], "beeg.com": [19511], "wiki.pacbsd.org": [12511], "coindaddy.io": [3457], "transmode.se": [16952], "ddig.in": [2053], "*.travisf.net": [16977], "insidehw.com": [8315], "static.guim.co.uk": [7142], "*.mnaonline.org": [10525], "www.boxun.com": [19581], "playm.cc": [2053], "www.speedyshare.com": [15510], "*.makemytrip.com": [10071], "www.legolanddiscoverycenter.cn": [9391], "ggstuff.net": [2053], "food.piliapp.com": [12887], "datacentrum.wedos.com": [18197], "esusd.illuminateed.com": [20430], "perot.me": [12791], "bahrain.usembassy.gov": [21879], "lloydsw.co": [2053], "webshoprevolution.com": [18382], "*.ubm-us.net": [17203], "b4in.us": [2053], "static.apiary.io": [19401], "napaau.to": [2053], "flygirl.photo": [2053], "*.blogspot.mx": [2166], "*.blogspot.my": [2166], "yahoosearch.tumblr.com": [17100], "*.blogspot.md": [2166], "www.logotype.se": [9725], "sendmail.com": [14826], "foip.me": [2053], "cwil.me": [2053], "demo.f4map.com": [20087], "*.blogspot.mk": [2166], "hastexo.com": [7365], "kktvkj.tmall.com": [21748], "www.anonysurfer.com": [1088], "magl.us": [2053], "stevenroddis.com": [15725], "redmine.org": [13929], "l.emre.gs": [2053], "gnome-help.org": [21006, 21007], "www.royaldns.net": [21331], "bener.gy": [2053], "j.jqian.net": [2053], "valuedial.com": [17839], "www.youngcancer.scot.nhs.uk": [11102], "ashlands.net": [10747], "nesterov.pw": [11359], "azmp.cc": [2053], "gptrs.vc": [2053], "www.easycottages.com": [18790], "sas.buzz": [2053], "www.stackcommerce.com": [15613], "fb.nosiboo.com": [2053], "account.metartnetwork.com": [10473], "*.modx.com": [9937], "youtube.com.tn": [19016], "community.letsencrypt.org": [9422], "link.wtvr.com": [2053], "armenian.armenia.usembassy.gov": [21879], "www.mni.th-mittelhessen.de": [16064], "*.ustc.edu.cn": [17329], "www.ybin.me": [18970], "jllm.tk": [2053], "www.zueriwieneu.ch": [19235], "www.netgroup.dk": [11426], "mail.xeneris.net": [18861], "ieee.illinois.edu": [17544], "epetitions.scottish.parliament.uk": [21075], "mediastorehouse.com": [10312], "www.conferencemanager.dk": [19772], "gocard.georgetown.edu": [6668], "*.slickdeals.net": [15203], "auth.ut.ee": [17347], "abr.ai": [2053], "g-3.me": [2053], "associates.amazon.cn": [19363], "s.nickclark.ca": [2053], "docs.python.org": [13500], "neurology.georgetown.edu": [6668], "apli.fyi": [2053], "bela.link": [2053], "lifeaftrdnm.co": [2053], "2xi.st": [2053], "x.hck.in": [2053], "wnclug.ourproject.org": [21044], "sheg-preview.stanford.edu": [15635], "www.l-rz.de": [9396], "success.acrobat.com": [520], "hts.crick.ac.uk": [19816], "localist.com": [9702], "www.youtube.no": [19016], "www.youtube.nl": [19016], "www.adv.ru": [19309], "millc.us": [2053], "partners.exacttarget.com": [5584], "www.youtube.ng": [19016], "www.fastdomain.com": [5788], "www.kitapyurdu.com": [9072], "www.inforesist.org": [20457], "*.medibankhealth.com.au": [10352], "high5.info": [2053], "getinvolved.georgetown.edu": [6668], "sandstorm.de": [14521], "ebanking.cimbthai.com": [2665], "smp.mcafee.com": [10282], "llant.as": [2053], "neobux.com": [11339], "*.spreadshirt.fr": [15552], "www.dailynk.com": [4199], "secure13.pipni.cz": [12460], "www.webmaster.yandex.by": [18953], "paliw.al": [2053], "wykd.ca": [2053], "clubcouture.me": [2053], "studentaccounting.wustl.edu": [18290], "www.extratorrent.cc": [5637], "forums-stage.oracle.com": [12284], "pacepathlive.co": [2053], "*.linuxmint-art.org": [21007], "sys.meituan.com": [10405], "inconshreveable.com": [8196], "*.which.net": [18539], "on.mbga.jp": [2053], "on.conit.co": [2053], "www.jabber.at": [8620], "www.justgiving.com": [8845], "wrld.ly": [2053], "readcomicsinpublic.com": [13838], "u-r-l.in": [2053], "tws.io": [2053], "afgp.co": [2053], "sysdream.com": [16007], "zb.oschina.net": [12321], "hailst.at": [2053], "www.anthrocon.org": [1105], "*.9gag.com": [244], "www.gamefly.com": [6537], "agileit.co": [2053], "phnxs.nl": [2053], "www1.cs.fau.de": [17597], "dyanat.duoshuo.com": [19969], "ps5.ca": [2053], "ge4.me": [2053], "morenobhlv.co": [2053], "*.blackmesh.com": [2090], "onepr.in": [2053], "streetartutopia.com": [15776], "trap4.us": [2053], "s-passets-cache-ak0.pinimg.com": [12906], "uploads.interfax.kz": [20476], "c.iphonepal.com": [2053], "csgaming.space": [2053], "bedrockformsemeanext.msn.com": [9961], "brdcstlinks.com": [2053], "www.blogmaverick.com": [18730], "swein.st": [2053], "correoold.uv.es": [17750], "axial.co": [2053], "ftw.li": [2053], "hello.gs": [2053], "jlyou.org": [2053], "*.kernelconcepts.de": [9012], "nhbr.us": [2053], "getpelican.com": [6720], "cryptography.informatik.fh-nuernberg.de": [16428], "short.sisi.ga": [2053], "sso.childrensmarketplace.mycareinbirmingham.org.uk": [10991], "fu11m0v13.tk": [2053], "www.reztrip.com": [14087], "7j1yxi.com1.z0.glb.clouddn.com": [17], "cont.lu": [2053], "cran-archive.r-project.org": [13621], "npcc.me": [2053], "lifeinthefastlane.ca": [9490], "leadscor.es": [2053], "eu.art.com": [1255], "www.eventoverload.com": [5544], "www.lanik.us": [9302], "securenscb.newcastle.gov.uk": [11507], "images.contentful.com": [3680], "account.smartertools.com": [15241], "media.corp.whiskeymedia.com": [18543], "malliard.link": [2053], "freakyfabulo.us": [2053], "raam.org": [13720], "marketplace.appcelerator.com": [1152], "bl.asaez.eu": [2053], "koge.to": [2053], "www.getdigital.de": [6731], "go.del-mi.org": [2053], "phrmdr.me": [2053], "uanhc.net": [2053], "dailyjok.es": [2053], "www.prolific.com.tw": [13375], "phone-analytics.com": [12846], "opnrmz.com": [2053], "zattoo.com": [19116], "miracl.com": [20804], "atlss.in": [2053], "fime.me": [5688], "echo24.cz": [20003], "okdt.io": [2053], "discuss.xilo.net": [18818], "congdongduoc.vn": [2053], "unidadseguridad.unizar.es": [17643], "gr8p.pl": [2053], "secure.gladrags.com": [6818], "bda.is": [2053], "junge-piraten.de": [8831], "aolu.co": [2053], "jnet.me": [2053], "saikorivi.com": [2053], "webmail.wippies.com": [18660], "get.uber.com": [17368], "bwne.ws": [2053], "webservices.hmrc.gov.uk": [7219], "www.rapidssl.com": [13792], "realty.yandex.kz": [18957], "svc.so": [2053], "www.hig.se": [7197], "www.jitbit.com": [8728], "ryazanskaya-obl.beeline.ru": [1801], "rpgnow.com": [12029], "linksquar.es": [2053], "ss.prbrds.com": [13338], "ua.siteground.com": [15112], "clevelandstate.worldcat.org": [18748], "piraten-oberpfalz.de": [12932], "lsdl.es": [2053], "uzman.yandex.com.tr": [18954], "hxp.us": [2053], "counter.yadro.ru": [18935], "fokus.no": [6098], "flwr.it": [2053], "webmail04.register.com": [13965], "mancphoto.uk": [2053], "wyenet.net": [18787], "hnsy.us": [2053], "muhlenberg.worldcat.org": [18748], "www.thepirateproxybay.xyz": [21709], "artsinstitute.stanford.edu": [15635], "wiki.bitcoin-otc.com": [2013], "www.jabberes.org": [8625], "secure.websimages.com": [18440], "www.intohigher.com": [8446], "jobs.barclays.co.uk": [1710], "www.docs.zone": [4709], "www.aclu.org": [294], "n.live.yt": [2053], "www.uclinics.com": [17222], "partners.xhamster.com": [18816], "*.wiki.zoho.com": [19202], "img3.dditscdn.com": [4317], "weeklyplus.com": [18478], "turuca.me": [2053], "www.cta-observatory.org": [3119], "apiary.io": [19401], "haibei.meituan.com": [10405], "avtrade.co.uk": [1497], "ethereum.org": [5484], "world.popads.net": [13129], "msndata.jp.msn.com": [9959], "pension.fbk.info": [5818], "cos.sc": [2053], "qni.fr": [2053], "ap.port.rocks": [2053], "f.e.ccs.com": [2609], "brooksidefund.com": [2418], "partners.devon.gov.uk": [4509], "pbs.twimg.com": [17153], "www.moto-g.com": [10802], "www.letstalkbitcoin.com": [9423], "assets.letemps.ch": [9346], "cdn.exactag.com": [5586], "sikur.com": [15030], "twitter.yfrog.com": [22102], "www.kosmas.cz": [8895], "*.staysmartonline.gov.au": [15696], "assets.bt.com": [1593], "de.noisey.com": [2053], "www.pte.hu": [12506], "arch.usc.edu": [17564], "pay.115.com": [25], "hia.li": [2053], "*.austrade.gov.au": [1416], "www.kurier.at": [9194], "www.takeaway.com": [16170], "lists.freebsd.org": [6237], "www.betcoin.tm": [1865], "fuk.ly": [2053], "www.pivotal.io": [12947], "we.co": [2053], "freechelsea.com": [6258], "vip.t-mobile.com": [16026], "uklik.me": [2053], "easel.ly": [5110], "m.bk55.ru": [19548], "upstream.where.com": [18537], "www.phpboost.com": [21119], "tira.li": [2053], "lede-project.org": [20652], "www.recapthelaw.org": [13878], "sigfig.com": [15020], "namsh.in": [2053], "cs.sportradar.com": [21540], "www.kimberly-clark.com": [9042], "jfrat.us": [2053], "www.dontspyonus.org.uk": [4772], "www.smuxi.im": [15262], "www.privacyassociation.org": [8412], "vnrk.co": [2053], "reethus-adeline.de": [13946], "umtl.ca": [2053], "oit.umd.edu": [17549], "studentrecords.wustl.edu": [18290], "*.espncdn.com": [6480], "*.paymentssource.com": [12689], "koios.works": [2053], "www.jxself.org": [8856], "mobile.welt.de": [18492], "www.jpcsp.org": [5326], "l.dieam.com": [2053], "medschooldiversity.wustl.edu": [18290], "www.qiwi.ru": [13533], "garmin.com": [20202], "justcloud.com": [20564], "epa-dccs.ornl.gov": [11892], "www.bbthat.com": [19504], "v.eroshare.com": [5454], "sticky.al": [2053], "t.getgalley.com": [2053], "www.verisign.com.au": [17915], "*.revoltgames.com": [14082], "email.stanford.edu": [15635], "forum.cnes.fr": [2691], "demo.joomla.org": [8776], "chrstphrswn.co": [2053], "itemzbs.ru": [2053], "s.fobl.sk": [2053], "www.upatient.com": [17288], "ox.digi.hu": [4553], "on.wtae.com": [2053], "bbrigad.com": [2053], "alltubedownload.net": [902], "i4.code.msdn.s-msft.com": [14296], "lopo.me": [2053], "getname.ru": [6736], "weltbild.ch": [18493], "swagshop.spiceworks.com": [15517], "community.spotify.com": [15548], "dje.li": [2053], "www.joycasino12.com": [20552], "m.carphonewarehouse.com": [2920], "dionyziz.com": [7042], "www.tracking-point.com": [16906], "subs.fm-world.co.uk": [20138], "coo.georgetown.edu": [6668], "keyserver.pgp.com": [12448], "delano.ly": [2053], "www.labelsbythesheet.com": [9280], "uat.billdesk.com": [1930], "hmps.se": [2053], "www.geoamigo.com": [6657], "demandware.com": [4427], "*.winzip.com": [18632], "shop.m-budget.migros.ch": [10566], "phabcontent.cooltrainer.org": [19787], "people.yandex.by": [18953], "go.chinchin.vn": [2053], "cinesport.com": [3201], "bonus.games.mail.ru": [10040], "stats.kkh-allianz.de": [8885], "anilorak.net": [2053], "oniontip.com": [12063], "quantixtickets8.com": [13569], "fafsa.gov": [5663], "venmo.com": [17899], "hlrnt.de": [2053], "t-com.sk": [16346], "go.spin.com": [2053], "www.research.vt.edu": [18031], "*.iggcdn.com": [8222], "gog.com": [6482], "sndo.ps": [2053], "dvp.st": [2053], "investor.marvell.com": [16649], "websitealive4.com": [18445], "*.pantherssl.com": [2618], "vkt.la": [2053], "x.geekdrop.com": [2053], "www.emacswiki.org": [5292], "no.boardgamearena.com": [2219], "apideva.hertz.com": [7511], "www.reflets.info": [21289], "ad.harrenmedianetwork.com": [7342], "www.deliveras.gr": [4410], "totvs.vc": [2053], "kblon.com": [2053], "marketwatch.com": [10185], "www.tms.va.gov": [17297], "dave.sg": [2053], "cheema.com": [3112], "advisormailout.com": [706], "bind10.isc.org": [7966], "go.abhi.pro.np": [2053], "engineering.tumblr.com": [17100], "c.rwa.me": [2053], "blocket.se": [2147], "img-novel.pixiv.net": [12960], "covad.net": [3795], "blog.bitbucket.org": [2005], "jevra.org": [2053], "mightyfares.com": [2053], "link.alfabank.ru": [842], "vivoen.ch": [2053], "perimeterinstitute.ca": [21111], "www.bentasker.co.uk": [1824], "helse.sparebank1.no": [21524], "djmaster.soy": [2053], "s.rein.cc": [2053], "chrismatic.io": [3168], "knkybts.co": [2053], "sifomedia.tidningsnatet.se": [16703], "ru.calameo.com": [2790], "perspectives-project.org": [18730], "bls.tn": [2053], "weitao.taobao.com": [16206], "choiceofgames.com": [3158], "go.nws.co": [2053], "desire.cf": [2053], "www.britishairways.com": [1527], "imgsm.it": [2053], "www-cache5.extensis.com": [5634], "whizbang.in": [2053], "e-ksf.org": [4939], "airgun.bz": [2053], "support.greenbone.net": [7056], "huflink.nl": [2053], "allyoucanarcade.com": [888], "kommunal.se": [9118], "blognone.com": [2164], "*.examiner.com": [5588], "c.o0bc.com": [11800], "www.kyn.me": [9208], "redingtonindia.com": [21286], "rosaa.co": [2053], "www.linksmail.de": [9542], "a-fram.es": [2053], "www.firefox.com": [5974], "*.thumbshots.net": [16670], "tfes.org": [16425], "yvan.me": [2053], "www.pooi.tk": [3597], "lrbs.ch": [2053], "practicesightssupportportal.axosoft.com": [1517], "evans.washington.edu": [17577], "nonsn.se": [2053], "fhn.mobi": [2053], "ncseo.xyz": [2053], "abc.twgogo.org": [2053], "afcom.com": [320], "i.scrolldit.com": [2053], "dashboard.bitgravity.com": [1982], "i0.gmx.com": [6467], "www.bitcoinforum.com": [2029], "www.brown.edu": [2421], "www.ada.lt": [586], "bssk.co": [2053], "ashiato.travel.rakuten.co.jp": [13768], "gloss.bz": [2053], "images.deals.woot.com": [18726], "www.tetu.com": [16409], "www.mtekk.us": [10871], "www.picostocks.com": [12877], "tasteofthenorthend.org": [16226], "sukebei.nyaa.eu": [11794], "akemi.photos": [2053], "taihe.meituan.com": [10405], "art-secure.wsj.net": [22059], "refund.ws": [2053], "www.howto.gov": [7714], "erk3.us": [2053], "proddigital.co": [2053], "13f.io": [2053], "zaakshops.nl": [2053], "tucowsinc.com": [17091], "www.polskapartiapiratow.pl": [21165], "bequiet.com": [1777], "mllrit.de": [2053], "lbridge.co": [2053], "lndv.st": [2053], "ericb.co": [2053], "support.earthlink.net": [5106], "www.ruderich.org": [14257], "s.cevela.net": [2053], "www.orionmagazine.org": [12311], "seanoc.co": [2053], "cdn.crushable.com": [899], "rim.ponemon.org": [13121], "chk.pt": [2053], "jshua.us": [2053], "megabusgold.com": [10401], "urls.nazul.net": [2053], "blsr.co": [2053], "pviq.com": [13489], "luukku.com": [20730], "intly.me": [2053], "swf.to": [2053], "lezhin.com": [20672], "kipko.us": [2053], "de.canon.ch": [2868], "www.dltags.com": [19931], "a-lo.co": [2053], "ze.lle.rip": [2053], "www.aip.org": [330], "savingscatcher.walmart.com": [18260], "zamzar.com": [19099], "haidong.meituan.com": [10405], "4.ncgcam.co": [2053], "www.autisticadvocacy.org": [1449], "iakn.us": [2053], "cz.norton.com": [11703], "10ws.co": [2053], "davie3.me": [2053], "www.w3techs.com": [21964], "cp.sweb.ru": [15457], "rmble.co": [2053], "system3.deprexis.com": [4456], "hdconsu.lt": [2053], "service.ibx.com": [20419], "codementor.io": [3432], "commencement.stanford.edu": [15635], "jinyun.meituan.com": [10405], "healthunlocked.com": [7396], "mine.im": [2053], "gigya.com": [6779], "repos.wine-staging.com": [18650], "www.trv-science.ru": [21802], "help.polyvore.com": [21167], "au.support.tomtom.com": [16812], "fattorrents.ws": [21709], "targetedthreats.net": [16217], "kishan.co": [2053], "hilfe.freemail.web.de": [18347], "flipagram.com": [6040], "factorio.com": [20091], "*.globat.com": [6864], "support.viglink.com": [18003], "csrsupport.com": [2735], "es.theanarchistlibrary.org": [16482], "www.db.tt": [4864], "s.cdnwp.com": [2617], "kass.am": [2053], "forum.kde.org": [8871], "whitehelmets.org": [22017], "l.writhem.com": [2053], "m.ftc.co": [2053], "www.wifilib.com": [18583], "account.domaintools.com": [4750], "bg.boardgamearena.com": [2219], "mat1.gtimg.com": [7121], "dtfx.co": [2053], "cdn1.a1.net": [252], "gstv.us": [2053], "directory.services.live.com": [9644], "go.airspace.net": [2053], "s.wst9.com": [2053], "becran.ky": [2053], "go.dobt.co": [2053], "e-mielenterveys.fi": [4954], "og.decc.gov.uk": [19885], "kryptos.sh": [9171], "openadultdirectory.com": [12116], "shutl.me": [2053], "link.skg.com.np": [2053], "sarasota.aclufl.org": [286], "images.cars.ru": [19650], "w.cg": [2053], "*.realmedia.com": [91], "solu.to": [2053], "f.hitravel.xyz": [2053], "piatnik.de": [12868], "medleyads.com": [10367], "s.cpclicker.jp": [2053], "i4.zst.com.br": [19233], "forsvarsforbundet.se": [6171], "solutionshealthcare.com": [15374], "*.babelzilla.org": [1632], "rdc.nz": [2053], "url2.io": [2053], "translate.google.co.*": [6965], "google.usc.edu": [17564], "avuecentral.com": [1498], "mighty-hoernsche.de": [2649], "link.tidybag.uk": [2053], "s.sgbwd.com": [2053], "psr.iq.harvard.edu": [7351], "archos.com": [1209], "livecomm.ru": [20703], "list-china.jd.com": [8571], "portal.acs.ncsu.edu": [11690], "socrates.stanford.edu": [15634], "hswrk.eu.tf": [2053], "link.trovata.nl": [2053], "new.utm.edu": [17628], "a1f.org": [2053], "research.wustl.edu": [18290], "chat.hostican.com": [7668], "www.sraoss.co.jp": [14402], "gsc.my": [2053], "ohloh.org": [11965], "cpyo.ga": [2053], "admin.events.nibusinessinfo.co.uk": [20908], "hi.jobnotify.me": [2053], "g.prjct.la": [2053], "glkb.ch": [20574], "my.greenparty.org.uk": [7052], "*.thomascook.com": [16643], "smtlkf.me": [2053], "oapi.io": [2053], "geriatrics.stanford.edu": [15635], "talkgadget.google.com": [6962], "sens.sc": [2053], "dragon.ak.fbcdn.net": [5816], "invasion.com": [8458], "atlantic.net": [1354], "onphr.ma": [2053], "groceryout.lt": [2053], "commlink.org": [3536], "ir.exp3rto.com": [2053], "dpmca.mp": [2053], "3.f.ix.de": [8552], "forgeapi.puppetlabs.com": [13460], "alum.kuleuven.be": [8969], "www.hilversum.nl": [11324], "etretouchy.com": [5499], "fork.cc": [2053], "honuser.hon.ch": [7223], "apps.bbg.gov": [19503], "moviii.liu.se": [9238], "sueddeutsche.kaufdown.de": [8974], "isoc.ch": [20501], "flokinet.is": [6054], "on.ozrs.co": [2053], "bru.gl": [2053], "rad6.ly": [2053], "scorem.ag": [2053], "feixian.meituan.com": [10405], "lucidsolutions.co.nz": [9808], "link.aps.org": [969], "seymour.so": [2053], "otm.wustl.edu": [18290], "dev.laptop.org": [11830], "links.iaswc.org": [2053], "www.landscapephotographymagazine.com": [9296], "misterc.link": [2053], "*.r01.ru": [13624], "vphd.info": [2053], "*.boe.es": [1578], "www.disconnect.me": [4627], "boots.com": [2267], "s.click.taobao.com": [16206], "m-pw.in": [2053], "upref.us": [2053], "www.phptesting.org": [21120], "www.bourgeois.me": [2302], "*.louhi.net": [9782], "forum-de.msi.com": [9957], "geekgirlsguide.com": [6618], "daron.me": [2053], "www.synopsys.co.jp": [15993], "becca.io": [2053], "mrshl.me": [2053], "flowlove.me": [2053], "blogtopsites.com": [2158], "www.tf.uio.no": [17615], "auth.hackaday.io": [7270], "go.sav2880.net": [2053], "snowtrex.me": [2053], "mh21.de": [10509], "go.tofran.com": [2053], "*.gotvape.com": [6981], "honest.com": [7626], "mmbiz.qpic.cn": [16371], "uc.jcloud.com": [8690], "ulule.com": [17422], "ecatering.irctc.co.in": [7957], "www.urel.feec.vutbr.cz": [17814], "www.imensa.de": [8136], "community-uat.akamai.com": [800], "pxid.us": [2053], "dynatech.de": [4930], "memisa.nu": [2053], "www.alpha.gr": [7038], "nrastore.com": [20954], "derbyshireprepared.org.uk": [19897], "choko.ml": [2053], "smsch.us": [2053], "www.environment-agency.gov.uk": [20047], "canlialem.com": [2866], "webwewant.org": [18394], "selfservice.slough.gov.uk": [15216], "cualu.ms": [2053], "geneticliteracyproject.org": [20219], "bynd.ie": [2053], "*.radboudnet.nl": [13744], "misc.360buyimg.com": [136], "static.oschina.net": [12321], "woopra.com": [18725], "windows.github.com": [6801], "dclife.us": [2053], "rmte.co": [2053], "video.yandex.com": [18956], "domainreport.domaintools.com": [4750], "www.pen.org": [12441], "berita.papua.us": [2053], "thepermitstore.com": [16492], "anz.rd.rakuten.co.jp": [13768], "www.asa.org.uk": [19427], "static3.businessinsider.com": [2512], "duo.com": [4900], "rgb.fyi": [2053], "rgede.eu": [2053], "t0d.co": [2053], "m2.baidu.com": [1661], "assets.dutchcrafters.com": [19971], "api.wosign.com": [18693], "onesearch4-2.newsvine.com": [11541], "realty.yandex.by": [18953], "intrepidmuseum.org": [8447], "thng.bz": [2053], "mae-hpc.osu.edu": [11959], "jbinsfo.me": [2053], "yex.tt": [2053], "rebekahr.com": [2053], "static4.dditscdn.com": [4317], "www.twosigma.com": [17174], "twrp.me": [16146], "wiki.fitbit.com": [6002], "mouthsmums.com": [2053], "spa.wustl.edu": [18290], "www.archlinuxarm.org": [19411], "play0ad.com": [13012], "url.aris.do": [2053], "eweka.nl": [5577], "shop.piratenpartei.de": [12938], "norfolk.spydus.co.uk": [21546], "mrsk.in": [2053], "aka-cdn.adtech.de": [678], "dl.yala.fm": [2053], "aaronparecki.com": [434], "www.demandware.com": [4427], "antioch.worldcat.org": [18748], "redmine.corelan.be": [3743], "jcarlo.me": [2053], "www.rmit.edu.au": [13670], "www.gpul.org": [6492], "corbinfisher.com": [3728], "zsl.org": [19219], "only-be.me": [2053], "*.stubhubstatic.com": [15789], "v3.co.uk": [17756], "help.yammer.com": [18952], "tgcafe.it": [2053], "lnyx.cnaf.infn.it": [7913], "a-bout.cf": [2053], "monetizer.snacktv.de": [15268], "i8.lbp.me": [20644], "connecticon.org": [3647], "espanol.istockphoto.com": [20505], "static.ndr.de": [11310], "kicks.link": [2053], "nativ.link": [2053], "thirdage.com": [16636], "indiegogo.com": [8222], "tvesco.la": [2053], "absrad.io": [2053], "partners.moodle.com": [10760], "nadim.computer": [11196], "jumpeyecomponents.com": [8826], "techreport.com": [16306], "stst.fm": [2053], "community-cache.freescale.com": [6302], "cgi.umd.edu": [17549], "gtms02.alicdn.com": [846], "admin.aerohosting.cz": [728], "kei.pl": [8994], "www.loadimpact.com": [9691], "x.ajcolores.com": [2053], "support.niteflirt.com": [11618], "cspf.us": [2053], "cibo.cc": [2053], "pingupod.de": [12904], "mapdis.ndc.nasa.gov": [11058], "d.agkn.com": [756], "en.rsf.org": [14018], "imgssl.superpages.com": [15888], "yelp.co.jp": [18979], "www.mpornpass.com": [10860], "avnn.co": [2053], "domesticity.gawker.com": [6593], "*.upforitnetworks.com": [825], "www.cpib.ac.uk": [2702], "git.gnu.io": [6473], "l.duc.as": [2053], "puronator.com": [2053], "cma.is": [2053], "www.flirble.org": [16456], "mgpr.uk": [2053], "finalb.im": [2053], "arul.ink": [2053], "gw2.link": [2053], "doh.so": [2053], "lyssanews.com": [2053], "help.redbubble.com": [13895], "ederdrom.de": [5177], "ptrani.me": [2053], "lastlog.de": [9317], "pcgarage.ro": [21093], "fromorbit.com": [6340], "iiphighlights.state.gov": [17345], "*.eharmony.com": [19981], "jhf.tw": [2053], "espivblogs.net": [20060], "abc.tv": [2053], "vremya.yandex.com.ua": [18955], "blog.fusiondigital.io": [6395], "ovark.de": [2053], "tradeleaks.com": [16910], "man.com": [10099], "domaincamp.de": [4741], "connect2.northamptonshire.gov.uk": [20925], "lawdai.ly": [2053], "www.bbbonline.org": [1533], "mybbcentral.com": [10933], "glnfll.ws": [2053], "blogs.manageengine.com": [10103], "chwk.us": [2053], "usee.at": [2053], "www.sandilands.info": [14518], "brockh.at": [2053], "cfa.is": [2053], "www.123systems.net": [35], "technet.microsoft.com": [10543], "national.virginmedia.com": [18028], "ondemand.manageengine.com": [10103], "peas.es": [2053], "gearsourceeurope.com": [6604], "evnt.bz": [2053], "ah.pricegrabber.com": [13279], "rlcf.us": [2053], "refer.ml": [2053], "search.stalbans.gov.uk": [21563], "microster.pl": [10527], "westy.bz": [2053], "rule.tmall.com": [21748], "carswell.in": [2053], "ga.utam.me": [2053], "download.tvnz.co.nz": [16141], "uark.starfishsolutions.com": [21565], "mithic.al": [2053], "*.rsvp.com.au": [13700], "www.anon-ib.la": [1077], "websupport.at": [18388], "lady.taobao.com": [16206], "cdn.engine.phn.doublepimp.com": [4812], "openhatch.org": [12140], "s.lf.io": [2053], "www.it.jhu.edu": [16562], "www.orxrdr.com": [12317], "www.moztw.org": [10856], "pbrts.com": [2053], "images.mydealz.de": [10944], "globalmarinenet.com": [6837], "go.con4pas.com": [2053], "am.meituan.com": [10405], "www.matalan.co.uk": [10226], "kev2.link": [2053], "abend.co": [2053], "tracksne.ws": [2053], "valtiolle.fi": [17828], "bcge.ch": [20574], "go.orbi.im": [2053], "pmlo.co": [2053], "www2.sfu.ca": [14893], "www.pasteur.fr": [12657], "m.vevo.com": [17773], "litenog.net": [2053], "worklife.stanford.edu": [15635], "www.sharenice.org": [21422], "khj.me": [2053], "krazy.us": [2053], "p3.zdassets.com": [19121], "pardot.com": [12605], "store.unity3d.com": [17506], "apoadhoc.de": [2053], "gexpro.com": [6742], "www.zooniverse.org": [19224], "login.sina.com.cn": [15086], "mtck.co": [2053], "charmngrace.com": [2053], "moinmo.in": [10720], "8bbd.info": [2053], "www.ucollege.wustl.edu": [18290], "development.freebiblesoftware.com": [6257], "narno.co": [2053], "anderso.nu": [2053], "ahrenste.in": [2053], "de.xhamster.com": [18816], "mlpt.me": [2053], "findagrave.com": [5957], "asd.leeds.ac.uk": [17604], "quotes.beaglestreet.com": [1780], "lotusoriginals.com": [9779], "minavardkontakter.se": [10994], "synaesthesie.net": [15977], "wildfire.paloaltonetworks.com": [12553], "s.netzblau.de": [2053], "go.mediabox.lv": [2053], "strasweb.fr": [15763], "thnkc.de": [2053], "chat1a.livechatinc.com": [9641], "workitout.vevo.com": [17773], "r.gmsousa.me": [2053], "bfern.co": [2053], "bodhi.fedoraproject.org": [5843], "tq.ma": [2053], "newsbbc.tk": [2053], "tinyteenpass.com": [16762], "enctr.co": [2053], "git.debian.org": [4353], "www.untappd.com": [17658], "short.vemo.in": [2053], "hdpp.ca": [2053], "www.icq.com": [7837], "account.aylesburyvaledc.gov.uk": [19468], "staticlive.douyucdn.cn": [4813], "www.granularproject.org": [20277], "tapad.app10.hubspot.com": [16208], "artsandsciences.osu.edu": [11959], "ecampus.no": [4981], "lab.alipay.com": [857], "reg.taobao.com": [16206], "tte.pw": [2053], "www.hideme.today": [7535], "www.umassulearn.net": [17551], "www.mosis.com": [9943], "cbt.im": [2053], "3dr.com": [159], "inglewood.illuminateed.com": [20430], "iplayerhelp.external.bbc.co.uk": [1538], "parking.dover.gov.uk": [4814], "*.factorydirectcabins.com": [5740], "speedrun.com": [15508], "carnegie.io": [2053], "d.parcyvall.com": [2053], "login.monster.com": [10752], "file1.answcdn.com": [1099], "chiefsblog.stanford.edu": [15635], "mak.es": [2053], "moed.us": [2053], "wiki.earthdata.nasa.gov": [11058], "fundersclub.com": [6378], "argentina.usembassy.gov": [21879], "s.martvalja.com": [2053], "community.velaro.com": [17886], "www.trybooth.com": [21803], "*.sigfig.com": [15020], "cdn-www.merethis.com": [10458], "bjf.me": [2053], "checktls.com": [3111], "ua-hosting.com.ua": [17359], "press.pr.co": [13233], "sempf.me": [2053], "bldnk.co": [2053], "secure.wowinterface.com": [18694], "blau.de": [2113], "casp.io": [2053], "isc2.sans.org": [14310], "photosugar.com": [12855], "coursedirectoryproviderportal.org.uk": [19802], "kleyn.eu": [2053], "sh.enjoyb.fr": [2053], "fiber7.ch": [5885], "captive.v2ex.co": [17755], "lacord.ee": [2053], "ij.am": [2053], "on.fox47ne.ws": [2053], "blog.blackphone.ch": [2100], "openwireless.org": [12227], "secure.legolanddiscoverycentre.de": [9391], "wap.dating.sxnarod.com": [14883], "www.steadfast.net": [15700], "betclair.com": [7879], "sslvpn2.ntu.edu.tw": [11160], "*.tweaktown.com": [17142], "scribd.com": [14655], "us-ads.openx.net": [12191], "prospectmagazine.co.uk": [13389], "zite.to": [2053], "xenobite.eu": [18865], "page.moodlerooms.com": [20828], "services.hinckley-bosworth.gov.uk": [7552], "s75.cnzz.com": [3391], "at.sany.me": [2053], "vladimirskaya-obl.beeline.ru": [1801], "aq.chaucanh.net": [2053], "ryazan.rt.ru": [13703], "ius.io": [20514], "www.kinox.to": [20597], "guides.patronbase.com": [21083], "www.plastc.com": [13000], "rate-and.review": [2053], "widgets.yandex.kz": [18957], "www.bluepoint.com.ph": [2207], "triph5.m.taobao.com": [16206], "anglomedia.net": [1055], "*.gomoxie.com": [10834], "kanal.squat.net": [21549], "ssh.ocf.berkeley.edu": [17526], "i.sumotive.com": [2053], "xmpp.net": [18826], "nwk-buyiphone.apple.com": [1160], "ams.iu.edu": [8214], "www.bauermedia.co.uk": [19498], "www.intrepidusgroup.com": [8448], "shamansgarden.com": [14900], "fuzeqna.com": [1447], "ibario.com": [7824], "jlstr.co": [2053], "www.lizdenys.com": [9682], "stats.junge-piraten.de": [8831], "www.mol.gov.sa": [14545], "www.stamus-networks.com": [21564], "scapsync.com": [14325], "www.movie2k.cm": [10823], "havant.gov.uk": [20318], "badgeville.com": [1648], "khm.uio.no": [17615], "billing.stablehost.com": [15609], "reports.keywee.co": [20587], "amadeu-antonio-stiftung.de": [946], "www.cahiersdedroit.fd.ulaval.ca": [17515], "mahoneshomedecor.com": [10033], "mdj.meituan.com": [10405], "www.ori.dhhs.gov": [19909], "scamfraudalert.com": [14568], "it.seeus4it.com": [2053], "on.amviq.com": [2053], "ssl.hiconversion.com": [7526], "us.hsbc.com": [7233], "www.garfield.com": [6577], "wlot.us": [2053], "www.neomailbox.net": [11346], "i.fantasyfootball.telegraph.co.uk": [16340], "codemilltech.com": [3416], "jgno.me": [2053], "bgrat.de": [2053], "commonapp.org": [3548], "s3.camelcamelcamel.com": [2832], "nssf.it": [2053], "go.vetxray.com": [2053], "stat100.ameba.jp": [963], "grbch.net": [2053], "www.myoptimizerplus.com": [11002], "autodiscover.student.oaklands.ac.uk": [20976], "www.wincent.com": [18635], "americanhunter.org": [19381], "www.se-sy.org": [21392], "yearago.unian.net": [21851], "bookings.ibizarocks.com": [8046], "*.as.utexas.edu": [17571], "eu2.factorio.com": [20091], "cloudfront.mediamatters.org": [10324], "teclan.co": [2053], "tiw.al": [2053], "t.nsn.io": [2053], "static.localphone.com": [20709], "*.bpt.bz": [2420], "cascade.conted.ox.ac.uk": [17557], "halowaypoint.com": [7307], "sccvote.org": [14579], "snsbank.nl": [14382], "sharemenot.cs.washington.edu": [17577], "lt.cm": [2053], "scrs.gc.ca": [2861], "*.clickbank.net": [3302], "cor.bo": [2053], "www.crazyegg.com": [3835], "ldh.fr": [2053], "dcosta.me": [2053], "anonymousads.com": [1092], "herbi.es": [2053], "www.skycure.com": [21472], "e.admaster.com.cn": [569], "www.forrester.com": [6167], "www.affutd.com": [734], "caxi.am": [2053], "sodahead.com": [15333], "terezakis.im": [2053], "tracking.hubspot.com": [7739], "l.uakix.com": [2053], "jbuy.se": [2053], "u.veteplus.com": [2053], "ffxivrp.org": [2053], "tr3.gtimg.com": [7121], "www.digcoin.com": [4550], "www.tribuna.pl.ua": [21790], "ashiato.rakuten.co.jp": [13768], "c-base.org": [2550], "affiliatetracking.com": [740], "modgov.waverly.gov.uk": [21984], "slice.mit.edu": [9916], "pushbullet.com": [13480], "www.torchlightgame.com": [16844], "m.tryreside.com": [2053], "m.gazeta.ru": [6599], "corporate.digitalriver.com": [4566], "www.byte.com": [8273], "hellolife.net": [7436], "empflix.com": [5315], "j.surfads.com": [2053], "sazout.co": [2053], "l11.co": [2053], "allianz.com": [19351], "o2extra.cz": [16332], "secure.webdam.com": [18356], "www.sitetrustnetwork.com": [15121], "baikal-daily.ru": [19478], "www.gaos.com": [7035], "dl.4spins.com": [2053], "securusglobal.com": [14779], "bengbu.jd.com": [8571], "areapod.co": [2053], "adrion.me": [2053], "angel.co": [1053], "gfsnd.jt2k.com": [2053], "www.pcicomplianceguide.org": [12429], "developers.onedrive.com": [12031], "autodiscover.illinois.edu": [17544], "bkgin.com": [2053], "placeanad.courant.com": [19801], "www.1und1.de": [82], "www.defsounds.com": [4392], "tlug.jp": [16807], "gwinnettcounty.com": [7164], "www.bnymellonim.com": [19567], "nipte.ch": [2053], "my-direct.link": [2053], "blnk.st": [2053], "aas.is": [2053], "module.zdf.de": [22127], "scanningpens.co.uk": [14575], "ocean.ly": [2053], "ip.bitcointalk.org": [2010], "i2r.in": [2053], "bpos.xyz": [2053], "sharefilesupport.com": [14910], "store.mzstatic.com": [1159], "forum.skift.com": [21469], "mraz.co": [2053], "archaicbinary.net": [1199], "weun.it": [2053], "kjuhsd.illuminateed.com": [20430], "connectu.re": [2053], "demo.nginx.com": [20906], "rik.nz": [2053], "email.1and1.com": [61], "openoffice.org": [1124], "rndmlrky.us": [2053], "ocwms.worldcat.org": [18748], "www.blink-182.com": [2129], "cmis.hertsdirect.org": [7474], "u.openx.net": [12191], "detail.1688.com": [44], "carvi.ga": [2053], "blog.xtgem.com": [18899], "nl.pornworms.com": [13155], "lady.tsn.ua": [21805], "serail.co": [2053], "ceg.osu.edu": [11959], "ffblg.com": [2053], "synthes.io": [2053], "www.betternet.co": [19519], "ucla.worldcat.org": [18748], "daye.meituan.com": [10405], "*.kaiserslautern.de": [8922], "test.ssltrust.us": [15601], "sunbelt.me": [2053], "securecode.com": [10216], "jklt.co": [2053], "sharc.info": [2053], "*.newscred.com": [11519], "rossppd.us": [2053], "*.shockmedia.nl": [14956], "t.imehop.com": [2053], "wiki.se.inf.ethz.ch": [5073], "noteapp.com": [11719], "lhcdashboard-images.web.cern.ch": [2632], "bankofkazan.dengisend.ru": [4440], "b.eibrain.org": [2053], "blog.pardot.com": [12605], "www.office365.vutbr.cz": [17814], "grvc.us.es": [17706], "business.danskebank.dk": [4223], "photoshelter.com": [12854], "digiret.co": [2053], "www.aa.uw.edu": [17355], "ftlgame.com": [5721], "cars.unm.edu": [17270], "amnesty.fi": [999], "www.citra-emu.org": [19718], "lock.cmpxchg8b.com": [2685], "irctc.co.in": [7957], "nowwhere.com.au": [20939], "webtables.cryptohaze.com": [3942], "cache.btrll.com": [2376], "sec-i0.1und1.de": [82], "wiki.mondediplo.com": [10729], "8prin.info": [2053], "rvtra.de": [2053], "legco.tv": [2053], "cdn.katescomment.com": [8968], "www.smfta.com": [14375], "liftware.com": [9501], "lux.ms": [2053], "gtn.events": [2053], "disruptionlab.org": [4657], "offr.at": [2053], "www.cheezburger.com": [3114], "developer.act-on.com": [19268], "karty-kredytowe.money.pl": [10734, 10735], "l.suntravel.xyz": [2053], "alpe.adenu.ia.uned.es": [17446], "ken.lu": [2053], "tcblome.link": [2053], "s.bs.sa": [2053], "www.amoena.de": [1017], "gmur.ph": [2053], "maillift.com": [10044], "sexy-de.com": [2053], "www.flagcounter.com": [20129], "pl.xhamster.com": [18816], "agoteasoc.com": [2053], "cn.earthvpn.com": [19990], "word.bz": [2053], "engage.intel.com": [8359], "adamb.ro": [2053], "www.emcraft.com": [5303], "nascis.hscic.gov.uk": [20388], "giving.umd.edu": [17549], "snd.lu": [2053], "pageloc.com": [18423], "uppsite.com": [17684], "iso.500px.com": [194], "blog.mediacru.sh": [10337], "fb-assets.com": [6320], "ifolor.ch": [20428], "*.shop.royalmail.com": [14233], "law.resource.org": [13435], "link.4xd.co.kr": [2053], "www.bulletin.net": [2473], "posportal.com": [12484], "b105.co": [2053], "30boxes.com": [122], "b.khaz.io": [2053], "to.dbsi-inc.com": [2053], "myhappyoffice.com": [11022], "www.amung.us": [18565], "lkfn.illuminateed.com": [20430], "bktwtr.us": [2053], "users.wholefoodsmarket.com": [18562], "www.kkh-allianz.de": [8885], "wiley.be": [2053], "www.livechatinc.com": [9641], "*.bt.no": [1836], "mbronste.in": [2053], "url.zon.cl": [2053], "filebyid.com": [5912], "wpsy.co": [2053], "www.hardwarebug.org": [7337], "biteasy.com": [2042], "brgall.ml": [2053], "unanimis.co.uk": [17429], "*.campuspack.eu": [2844], "gsta.lt": [2053], "gaytimes.co.uk": [20209], "internap.com": [8403], "tapatalk.com": [16209], "jobs.cisco.com": [3221], "college.artsci.wustl.edu": [18290], "feedbacklogin.xbox.com": [18850], "www.2kgames.com": [104], "www.sccassessor.org": [14578], "n.iice.co": [2053], "bevard.me": [2053], "chtp.co": [2053], "sb118.net": [2053], "f3d.it": [2053], "whistleblower.tv2.dk": [16136], "portal.geni.net": [6435], "tailfeather.twimg.com": [17153], "adam.amnesty.org": [994], "agar.io": [757], "music.cbc.ca": [2855], "on.gonefans.com": [2053], "lokalsystem-test.ub.uni-mainz.de": [17611], "lrnr.in": [2053], "www.nab.org": [11053], "manage.gigenet.com": [6776], "admissions.portsmouth.gov.uk": [21175], "dcm-ich.jp": [2053], "esper.net": [5466], "ciifad.cornell.edu": [3744], "member.doteasy.com": [4796], "royalnavy.mod.uk": [14228], "merlin.oxfam.org.uk": [12393], "szshop.sueddeutsche.de": [15831], "yahoo-security.tumblr.com": [17100], "blogs.mcafee.com": [10282], "www.siliconrepublic.com": [15035], "cdn.opinionlab.com": [12256], "vc.church": [2053], "www.mbnet.fi": [9889], "jpldataeval.jpl.nasa.gov": [11058], "fnex.us": [2053], "pixel.tapad.com": [16208], "on.elle.es": [2053], "goo.ee": [2053], "savannah.gnu.org": [6474], "wolfsonmicro.com": [18702], "r.yotta.net.br": [2053], "myfpt.net": [2053], "goldcre.st": [2053], "securetls.transperfect.com": [21783], "login.geant.org": [6431], "secserv.adtech.de": [678], "werstreamt.es": [18499], "abcusd.illuminateed.com": [20430], "corp.wamba.com": [18264], "store.drdobbs.com": [16276], "mamp.info": [20744], "forr.com": [2053], "infoq.com": [8250], "dsp-us.link": [2053], "ptt.br": [12507], "*.nomadesk.com": [11657], "celebspirat.in": [2053], "act.ai": [2053], "vin.ai": [2053], "webapps.nottingham.ac.uk": [11726], "woot.com": [18726], "corpmail.otenet.gr": [12336], "www.codepicnic.com": [3411], "ajm.link": [2053], "www.komplett.no": [9121], "go.kenlefeb.com": [2053], "yelp.co.uk": [18979], "callink.berkeley.edu": [17526], "images2015.cnblogs.com": [19743], "iaaf.wtf": [2053], "i.pickin.gs": [2053], "www.irex.org": [20497], "guru3d.com": [7152], "*.netmng.com": [8303], "medals.bizrate.com": [2086], "1t.eu": [2053], "vc2.me": [2053], "c.pcs.baidu.com": [1661], "*.thankyou4caring.org": [16436], "www.pirateproxy.red": [21215], "epw.me": [2053], "subscribe.livingsocial.com": [9679], "groklearning-cdn.com": [7090], "openweb.or.kr": [12226], "mondrian.net.br": [2053], "jrowens.us": [2053], "cce.osu.edu": [11959], "on.wmur.com": [2053], "pics-photo.co": [2053], "south.land": [2053], "xmp.ro": [2053], "mygrp.co": [2053], "lstart.it": [2053], "help.codesion.com": [3441], "www.national.com": [16413], "medatmich.org": [2053], "cardinalatwork.stanford.edu": [15635], "fs2.formsite.com": [20148], "ly.magliulo.org": [2053], "ro.boardgamearena.com": [2219], "gsma.at": [2053], "n1.sinaimg.cn": [15091], "affiliate.rakuten.co.jp": [13767], "methodk.it": [2053], "movienewsletters.net": [10831], "pads.subsignal.org": [15820], "anon-ib.la": [1077], "*.nyantec.com": [20969], "www.datafile.com": [19857, 19858], "games.bet365.com": [1863], "beartful.co": [2053], "open.nlnetlabs.nl": [11130], "gi.lt": [2053], "teach1.today": [2053], "schoeller.de": [11362], "www.beckerproxy.wustl.edu": [18290], "new.livestream.com": [9676], "aoe.com": [356], "jhbasics.com": [2053], "fftlive.org": [5680], "yoda.ygnition.com": [18984], "rugstudio.com": [14261], "x.mufasa.space": [2053], "www.nihms.nih.gov": [11241], "alpp.us": [2053], "314.buzz": [2053], "rebel.so": [2053], "grs.link": [2053], "ticket.iop.org": [8345], "www.dea.com": [4340], "aspenphar.ma": [2053], "metro.yandex.kz": [18957], "my.southend.gov.uk": [15442], "services.adr.org": [19298], "telegram.org": [16337], "passets-cdn.pinterest.com": [12914], "bdl.baidu.com": [1661], "www.uni-erlangen.de": [17597], "x.hugo.pw": [2053], "seclab.stanford.edu": [15635], "divshot.com": [4670], "go.career.vn": [2053], "pl.aliexpress.com": [847], "opnsense.org": [11855], "jrgn.nl": [2053], "upsrg.pw": [2053], "www.visitor.wustl.edu": [18290], "dapy.in": [2053], "adultplay.no": [2053], "utopia.ly": [2053], "mail2.anadolu.edu.tr": [1025], "sebs.to": [2053], "tracks.www.zazzle.com": [19119], "on.cuong.me": [2053], "conscallhome.com": [3653], "upc.ie": [17279], "bdtweet.info": [2053], "scnj.meituan.com": [10405], "support.lucidchart.com": [9809], "ye.1688.com": [44], "itex.ru": [20511], "labs.duo.com": [4900], "i.lokerbox.com": [2053], "www.codeclub.org.uk": [3414], "hlk.ag": [2053], "eyetechds.com": [5645], "*.iproduction.com": [7952], "s.methylium.com": [2053], "nanxiong.meituan.com": [10405], "blog.nodejs.org": [11648], "z4p.in": [2053], "secure.zenmate.com": [19133], "www.zap2it.com": [19103], "secure.serve.com": [14844], "voxility.com": [18150], "plan.gs": [15721], "blockstream.com": [2152], "www.glen-l.com": [20250], "semestriel.framapad.org": [6214], "srvy.nl": [2053], "npwf.info": [2053], "bcdi.me": [2053], "wwwear.it": [2053], "monitoring-internal.stanford.edu": [15635], "gkz1.co": [2053], "*.anl.gov": [1222], "i.kabam.com": [2053], "laeditorialupr.com": [17619], "ordbogen.com": [12298], "studienwuerdig.htwk-leipzig.de": [7736], "www.thegreatcourses.com": [16458], "*.switch.co": [15953], "askgareth.com": [2053], "js.stripe.com": [15781], "sketchthemes.com": [15153], "pform.net": [12825], "go.ziqi.co.uk": [2053], "examideas.ml": [2053], "cgit.freedesktop.org": [6243], "kwndrl.in": [2053], "*.necessaryandproportionate.org": [11320], "incandescent.xyz": [20450], "vsn.tl": [2053], "wickr.com": [18579], "cultm.ac": [2053], "moodle.dkit.ie": [4114], "all-about-security.de": [883], "via.intercom.io": [8392], "www.tog.ie": [16099], "sprt.ms": [2053], "argonit.cz": [1221], "s8n.us": [2053], "www.btcturk.com": [1605], "instantarticles.fb.com": [5814], "mwl.li": [2053], "ultimate-guitar.com": [21843], "marketplace.eclipse.org": [5150], "www.ecustomeropinions.com": [4987], "on.viewing.nyc": [2053], "jmochon.info": [2053], "madmarx.espiv.net": [20058], "oi.sidwell.io": [2053], "cdn.bgr.com": [1555], "isbn13.info": [2053], "ifrk.ch": [2053], "neodrive.co": [11341], "media.msi.com": [9957], "www.arch-stuff.org": [21006], "static.gosuslugi.ru": [6979], "fandom.fashion": [2053], "www.thinkfaster.co": [16628], "tandridge-consult.objective.co.uk": [20979], "my.leeds.gov.uk": [20653], "automotive.linuxfoundation.org": [9572], "btrandol.ph": [2053], "pc-sicherheit.web.de": [18347], "jobs.ncsu.edu": [11690], "linfen.meituan.com": [10405], "123secur.it": [2053], "kokhma.beeline.ru": [1801], "toorcon.net": [16828], "www.engr.ncsu.edu": [11690], "3al.me": [2053], "media.glassdoor.com": [6823], "www.gearsourceeurope.com": [6604], "yoshi.to": [2053], "jen.to": [2053], "www.software-univention.de": [17511], "pjtv.com": [12465], "*.kryo.se": [9168], "fb.gamedom.net": [2053], "wkustore.com": [22040], "vid.alarabiya.net": [19336], "otk.ovh": [2053], "cc.chango.com": [3056], "ciweb.co.uk": [2053], "*.lumension.com": [9826], "www.sampelongbeach.org": [21366], "storywrite.com": [15758], "tath.co": [2053], "cccure.com": [2598], "bmedia.info": [2053], "*.theinternetco.net": [16561], "skoa.co": [2053], "ca.isidewith.com": [20414], "vimeo.freifunk.net": [6311], "jich.cz": [2053], "skw.gs": [2053], "insight.eastriding.gov.uk": [5115], "trx.so": [2053], "ini3.co": [2053], "cex.io": [2644], "stkhb.de": [2053], "mail.sedo.com": [14785], "ebis.ne.jp": [5141], "*.nextag.de": [11556], "stats.juliareda.eu": [8822], "joelikes.me": [2053], "yns.me": [2053], "pagano.events": [2053], "link.arvas.se": [2053], "teacherspensions.co.uk": [21666], "docs.webarch.net": [18405], "stateau.to": [2053], "kitapyurdu.com": [9072], "bfgmexi.co": [2053], "lifesafer.co": [2053], "onreiss.com": [2053], "s142.cnzz.com": [3391], "bgi.io": [2053], "nysuits.co": [2053], "h4nn.es": [2053], "shucheng.meituan.com": [10405], "www.pearsoncomputing.net": [12719], "evazils.com": [2053], "pic.dhe.ibm.com": [7821], "www2.eduid.cz": [5198], "www.speeddl.com": [10287], "status.kuleuven.be": [8969], "c-bake.com": [2053], "frca.pcisecuritystandards.org": [12428], "www.webstaurantstore.com": [18453], "msng.gr": [2053], "gnucash.org": [6885], "icwe.se": [2053], "login.sourcefabric.org": [15429], "kwp.io": [2053], "upsd.io": [2053], "dom.bg": [4735], "replicaperfection.com": [14013], "edit.staging.dol.gov": [19938], "*.khronos.org": [9026], "*.pcs.com": [12433], "www.endclothing.com": [20037], "2big.org": [2053], "directory.web.cern.ch": [2632], "*.arukas.io": [19424], "oa.mondediplo.com": [10729], "fruit.jd.com": [8571], "s.xdroi.de": [2053], "w.flatme.it": [2053], "www.domeny.cz": [19943], "subscribeonandroid.com": [21601], "scandinavianphoto.no": [14572], "essia.co": [2053], "1001.ly": [2053], "my.carousell.com": [2919], "taco.visualstudio.com": [18078], "kyri.ba": [2053], "l.noxinbox.com": [2053], "enhu.dict.cc": [4536], "my.govmetric.com": [6993], "wpe.link": [2053], "affiliate-b.com": [739], "ershou.taobao.com": [16206], "lh5.google.*": [6965], "onre.at": [2053], "reys.me": [2053], "www.jabbi.pl": [8627], "codaye.tech": [2053], "s1.gwdang.com": [20300], "public.media.smithsonianmag.com": [15255], "go.ncsu.edu": [11690], "support.myrusakov.ru": [20863], "gumstix.com": [7149], "v-identity.com": [17753], "ivy.pconline.com.cn": [12437], "hpstr.co": [2053], "autodiscover.lubs.leeds.ac.uk": [17604], "jne.li": [2053], "citzn.in": [2053], "edge.halldata.com": [7306], "jpp.link": [2053], "combp.ro": [2053], "w3.chaucanh.net": [2053], "iinfa.ru": [2053], "delivery.pizzahut.co.uk": [12968], "st2.gismeteo.ru": [6789], "drunkn.co": [2053], "vkontakte.ru": [17785], "a.stripecdn.com": [15782], "www.archsd.gov.hk": [7205], "ajuda.vodafone.pt": [18109], "www.bia2.com": [1891], "kermis.fm": [2053], "wcgc.news": [2053], "www.wetter.at": [11927], "gab.cookie.oup.com": [12397], "ubj.news": [2053], "diyrv.co": [2053], "negotiatingsalary.com": [11328], "jenkins-ci.org": [8700], "simplyhired.com": [15075], "www.bund.de": [17939], "squareoffs.co": [2053], "v.baidu.com": [19476], "bluffm.ag": [2053], "ordnancesurvey.co.uk": [12300], "*.iisp.org": [7890], "www.hartvoorinternetvrijheid.nl": [7347], "vro.li": [2053], "hcnw.co": [2053], "earcu.com": [4968], "go.deliverydom.com": [19889], "www.heiseshop.de": [7428], "ithaca.edu": [8539], "www.middlemanapp.com": [20793], "coverity.com": [3803], "www.bouncycastle.org": [2300], "scientific.net": [14627], "smo.in": [2053], "smo.io": [2053], "nxtjct.com": [2053], "soak.meldium.com": [10410], "lathatatlangyerekek.444.hu": [172], "tboo.bz": [2053], "url.pepbiz.biz": [2053], "wa.wipe.de": [22035], "sxott.com": [2053], "www.streetlink.org.uk": [21591], "bitstampede.com": [2002], "aziende.tiscali.it": [16770], "www.hertz.ca": [7480], "iplantcore.status.io": [21569], "thebrighttag.com": [2378], "thkr.us": [2053], "www.ticketingnetworkeastmidlands.co.uk": [16689], "shandong.jd.com": [8571], "www.hertz.ch": [7506], "www.hertz.cn": [7481], "api.accounts.firefox.com": [5974], "rdio.com": [13828], "cldb.de": [2053], "fra1.dl.elementary.io": [5260], "osd.im": [2053], "mobile.vtb24.ru": [21961], "www.hobocomp.com": [7583], "stylese.at": [2053], "bs.to": [2500], "javvin.com": [8680], "www.freechelsea.com": [6258], "s.prsir.co": [2053], "gamesites.cz": [6556], "spectator.alarabiya.net": [19336], "www.discoveryplace.org": [4642], "artemis-ia.eu": [1264], "drbg.co": [2053], "provenance.org": [13399], "cas.strode-college.ac.uk": [15784], "mtbo.ca": [2053], "img1.userscontent.net": [17730], "iheart.com": [7886], "nightlf.com": [2053], "edsw.in": [2053], "adf.ly": [562], "secure.medleyads.com": [10367], "allianz-fuer-cybersicherheit.de": [892], "st.mycdn.me": [11014], "everymomentcounts.cancerresearchuk.org": [19637], "elbw.me": [2053], "kompany.com": [9120], "help-all.nike.com": [11595], "clickhouse.yandex": [19729], "www.clarityray.com": [3273], "www.leicestershire.gov.uk": [9397], "go.shop.ca": [2053], "www.stayclassy.org": [15694], "clstrc.us": [2053], "www.hertsdirect.org": [7474], "on.depokita.com": [2053], "spicethy.me": [2053], "sugr.it": [2053], "allegro.pl": [889], "www.doodle.com": [4773], "idp.shibboleth.ox.ac.uk": [17557], "jbfit.co": [2053], "hp1d.nu": [2053], "apianalytics.com": [371], "ads.vidstore.com": [17969], "customersupport-prod.mcafee.com": [10282], "wms-eu.amazon-adsystem.com": [950], "secure.stage-gettyimages.co.nz": [6741], "trip.washington.edu": [17577], "api.litmus.com": [9632], "biostars.org": [1962], "microblog.dunkelangst.org": [4898], "miltonkeynes-consult.objective.co.uk": [20979], "goldenline.pl": [6941], "telw.in": [2053], "*.360cities.net": [131], "jfrank.us": [2053], "superbabyo.nl": [2053], "static4.uk.businessinsider.com": [2512], "zen.co.uk": [19129], "www.intevation.net": [8445], "www.linear.enterprises": [20689], "ebankingmasicuro.ch": [4969], "apps.1688.com": [44], "s.darrenoia.com": [2053], "www.opendns.com": [12130], "loveletters.boston.com": [2286], "www.charter.com": [3079], "img03.rl0.ru": [14147], "grpcemx.org": [2053], "lvox.co": [2053], "www.pagefair.com": [12533], "x.carib.pro": [2053], "go.dbox.us": [2053], "api.map.baidu.com": [1661], "pdadb.net": [12711], "www.johnlewis.ie": [8759], "tps.tips": [2053], "trafohou.se": [2053], "www.wifiwx.com": [18584], "sysys.axosoft.com": [1517], "bit.9kp.de": [2053], "www.sky.com": [15170], "cdn.torrents-time.com": [21762], "kopgl.as": [2053], "www.fr.ch": [21629], "www.libanswers.com": [9445], "www.bitcointalk.org": [2010], "www.eaglerockreservation.org": [5105], "dexinzhai.tmall.com": [21748], "v-g.eus": [2053], "uploads.www.theplatform.com": [16496], "www.searchcode.com": [14686], "above.com": [468], "plusone.google.com": [6962], "www.pfennigparade.de": [12821], "ibank.finam.ru": [20117], "vora.cc": [2053], "i.lav.im": [2053], "job.beeline.ru": [1801], "healthnet.com": [20329], "yee.land": [2053], "s.thblvrd.nl": [2053], "dtnav.nal.usda.gov": [17495], "ittfwb.cool": [2053], "globalclimatemarch.org": [6859], "www.asia.citibank.com": [3230], "blnk.it": [2053], "darkha.xyz": [2053], "v-sports.link": [2053], "kouio.com": [9147], "www.hd-bits.com": [7387], "temp.my.nih.gov": [11241], "www.sphair.admin.ch": [21629], "bingo.nu": [2053], "www.osdc.com.au": [11864], "my.leadpages.net": [9351], "dfblog.iweb.co.uk": [20519], "docs.univention.de": [17511], "m.terbaru.co.id": [2053], "*.ezimg.it": [5103], "licensing.kirklees.gov.uk": [9067], "iview.hscic.gov.uk": [20388], "www.mysciencework.com": [10971], "eios.us": [2053], "jobs.cityoflondon.gov.uk": [3249], "qt-apps.org": [21006, 21007], "co.udn.com": [17224], "castroloft.com": [2053], "pter.me": [2053], "ffaus.co": [2053], "ke.fandom.id": [2053], "blkfth.rs": [2053], "scoutapark.co": [2053], "idfpr.com": [8114], "url.memy.cz": [2053], "www.marketwatch.com": [10185], "secure.kreativmedia.ch": [9159], "payments.basildon.gov.uk": [19494], "fuelpl.us": [2053], "ratanagiri-163c.kxcdn.com": [13806], "352.fm": [2053], "cf5.100r.org": [12], "go.romk.im": [2053], "mycloud.rackspace.com": [13740], "data.aliyun.com": [861], "static.shortoftheweek.com": [21435], "www.cryptome.org": [3948], "cdsurl.co": [2053], "jrd.im": [2053], "techservices.illinois.edu": [17544], "online.westernunion.com": [18512], "mail.freecycle.org": [6280], "m.ond.tue.nl": [16129], "12free.de": [2053], "shr.25k.it": [2053], "*.hp.com": [7517], "on.kobi5.com": [2053], "cocubes.com": [3395], "*.helsinki.fi": [17541], "*.sequanux.org": [14837], "pope.works": [2053], "txpr.de": [2053], "merc.ht": [2053], "events.kde.org": [8871], "nom.gy": [2053], "www.tdc-wholesale.com": [16051], "smclaw.tv": [2053], "informahealthcare.com": [8269], "nbzp.cz": [2053], "widget.shopstyle.co.uk": [14964], "wikifur.com": [18588], "on.varmag.com": [2053], "cdn12.iconfinder.com": [8066], "s.cassiopea.dk": [2053], "wwii.cc": [2053], "consult.environment-agency.gov.uk": [20047], "xtips.co": [2053], "seabags.me": [2053], "svn.openezx.com": [12133], "go.pub2srv.com": [21222], "emarketing2.1and1.com": [61], "fres.ca": [2053], "visit.bicos.be": [2053], "ws-24.de": [2053], "*.investingchannel.com": [8467], "plugins.gitbook.com": [6794], "fotovs.com": [2053], "sort.symantec.com": [15969], "portal.unwire.dk": [17663], "admin.cj2.nl": [2674], "store.calchamer.com": [2784], "fileformat.info": [5905], "gkre.co": [2053], "bill.sibttk.ru": [21443], "m.icetravel.xyz": [2053], "op.is.nl": [2053], "edv.my": [2053], "wildtravl.com": [2053], "team-cymru.org": [16255], "e-mail-made-in-germany.de": [4940], "zenhub.io": [22129], "supplier.carters.com": [2927], "risney.net": [2053], "www.urhome.umd.edu": [17549], "courses.erc.edu": [5048], "apri.re": [2053], "packages.debian.org": [4353], "donate.fsf.org": [5713], "my.domoticz.com": [4766], "www.psc.edu": [12502], "wumsweb.wusm.wustl.edu": [18290], "www.smefund.tid.gov.hk": [7212], "bg.gy": [2053], "yaroslavskaya-obl.beeline.ru": [1801], "nnm-club.me": [11132], "www.tickerassist.co.uk": [10536], "www.youtube.sk": [19016], "www.idearcmedia.com": [15869], "freepress.intel.com": [8359], "yunos.tmall.com": [21748], "www.verkaufen.ch": [21908], "cj.com": [3546], "www.illustre.ch": [20431], "pkg.jenkins.io": [20536], "gucms-ui.georgetown.edu": [6668], "bnds.me": [2053], "ftp.fau.de": [17597], "usa.gov": [17307], "enderunix.org": [5347], "respekt.cz": [21297], "*.uni-wuerzburg.de": [17458], "xservers.ro": [22078], "www.baldershage.se": [1671], "enyc.co": [2053], "link.omd.com.br": [2053], "wwwyy.laproxsites.com": [9307], "www.faaaccess.ed.gov": [4988], "gamesports.net": [6541], "cdnstatic.reuters.tv": [21302], "afe.specificclick.net": [15493], "ideastorm.com": [8076], "register.state.gov": [17345], "assets.virginmedia.com": [18028], "scu.re": [2053], "nulleuro.yesss.at": [18983], "pngfd.tk": [2053], "beylegion.co": [2053], "www.cfif.org": [3010], "alexhaydock.co.uk": [839], "perel.eu": [17888], "wiki.kuleuven.be": [8969], "www.u-f.ru": [21830], "oesrc.researchcompliance.vt.edu": [18031], "shaw.ca": [14932], "www.ciclops.org": [2659], "devdocs.io": [4497], "hwh.jp": [2053], "cavfarms.ca": [2053], "licensing.rbwm.gov.uk": [21268], "savercards.hertsdirect.org": [7474], "vk.com": [17784], "pub.cookie.oup.com": [12397], "www.admissionsonline.norfolk.gov.uk": [20923], "tracking.reiner-sct.com": [13981], "kell.gg": [2053], "ecni.me": [2053], "s.buzzfeed.com": [2531], "clic.sc": [2053], "balashikha.beeline.ru": [1801], "taw.kn": [2053], "1fichier.com": [69], "m.jalles.co": [2053], "sfonts.wsj.net": [22059], "kk.dk": [8883], "bit.glu.com": [2053], "vxcom.duoshuo.com": [19969], "m.capitalone.com": [2878], "capatholo.gy": [2053], "metrics.stellaservice.com": [14426], "autodiscover.riverbed.com": [14140], "zrom.tk": [2053], "jive.cc": [2053], "royalvoluntaryservice.org.uk": [21332, 21333], "www.nintendoworldreport.com": [11613], "u.briza.co.uk": [2053], "nspe.es": [2053], "u.funshop.co.kr": [2053], "links.is": [2053], "bst3.gismeteo.ru": [6789], "www.kontalk.org": [9130], "www.edfil.es": [5178], "xprs.it": [2053], "www.valvesoftware.com": [17841], "www.conformal.com": [3637], "steeljoi.st": [2053], "www.testequipmentdepot.com": [16407], "codin.me": [2053], "v1de0.tk": [2053], "goodzer.com": [6960], "tool.linguee.com": [9534], "dsxn.de": [2053], "mobile.si.edu": [2053], "www.handsomecode.com": [7322], "support.wattpad.com": [18303], "on.airou.de": [2053], "www.internews.org": [8438], "bdesk.in": [2053], "hbb.me": [2053], "www.piraten-ufr.de": [12934], "shareideas.parature.com": [12602], "grants.nih.gov": [11241], "newse.la": [2053], "p1.qhimg.com": [13531], "www.bahnshop.de": [1660], "sec.gov": [17301], "www.nra.org": [20943], "elastic.co": [5243], "pwn.skee.me": [2053], "go.ccpm.com": [2053], "jwp.cc": [2053], "centena.ro": [2053], "developer.xamarin.com": [18840], "stanford25blog.stanford.edu": [15635], "economist.com": [5161], "detne.ws": [2053], "steg-electronics.ch": [14425], "london.gov.uk": [9741], "www.lung.ca": [2853], "tbb.link": [2053], "webhost4life.com": [18363], "secured.sandbag.uk.com": [14515], "m01.eu": [9860], "suntech.cz": [21607], "www.thepirate.pw": [21709], "ig.red.paris": [2053], "les.pp.ua": [2053], "mrph.us": [2053], "www.diskusjonsforum.uio.no": [17615], "*.myspace.com": [11036], "www.magnetsearch.org": [21709], "r.inkhotels.com": [2053], "scheduler.here.com": [7465], "vispashop.com": [18073], "track.brighteroption.com": [2383], "buddybuild.com": [19607], "secure.hi5.com": [20336], "www.directbox.info": [4613], "forum.www.radartv.nl": [13743], "www.unrealitytv.co.uk": [17653], "demo-merchant.xsolla.com": [18896], "shop.infinet.com.au": [8242], "gamersfirst.com": [6553], "erdv.co": [2053], "mrbr.gr": [2053], "st.lacasta.jp": [2053], "difficulties.de": [19917], "www.debuggify.net": [4357], "freec.us": [2053], "dvrx.eu": [2053], "southwark.greenparty.org.uk": [7052], "kinderze.lt": [2053], "angrybir.de": [2053], "guest.cvent.com": [4020], "djmsc.nl": [2053], "membership.chicagotribune.com": [3130], "ddc.cr": [2053], "www.topfox.co.uk": [16832], "croak.eu": [2053], "nosh.cc": [2053], "f4az.us": [2053], "git.hackerspace.pl": [7280], "jrv.is": [2053], "fileshare.symantec.com": [15969], "tracking-point.com": [16906], "flickr.tumblr.com": [17100], "order.freezone.co.uk": [6306], "*.kayako.com": [8978], "dgbf.li": [2053], "success.mindtouch.com": [10596], "gremlin2.bakerlab.org": [1667], "kundarea.wopsa.se": [18727], "job.oschina.net": [12321], "widgets.amazon.cn": [19363], "mygoldencharter.co.uk": [6939], "www.tracfone.com": [16900], "benw.co": [2053], "mjm.us": [2053], "www.stgeorges.nhs.uk": [11102], "freebieber.org": [5898], "linuxjournal.com": [9590], "casa.q-assets.com": [21235], "*.sfdcstatic.com": [14487], "gmoregistry.com": [6463], "engine.phn.doublepimp.com": [4812], "www.mansfield.osu.edu": [11959], "www.myra.gov": [10968], "*.dot5hosting.com": [4784], "manchester.gov.uk": [10107], "chat.jd.com": [8571], "beastnode.com": [1788], "www.anonymouse.me": [1093], "randstadsr.com": [2053], "s1.pimg.tw": [12890], "m.danielgood.co": [2053], "blogs.cpanel.net": [2710], "portuguese.101domain.com": [14, 15], "www.huboard.com": [20392], "fstools.macosforge.org": [9985], "*.bbb.org": [1875], "stellaservice.com": [14426], "www.ort.fi": [15865], "computeruniverse.net": [3605], "weike.taobao.com": [16206], "kaliningrad.beeline.ru": [1801], "sidearmsports.com": [15008], "www.ch-open.ch": [19681], "cur8.com": [2053], "nqs.nice264.com": [11576], "cardiff.squat.net": [21549], "mdcus.com": [9896], "snkrdstrct.com": [2053], "my.thephone.coop": [16614], "laird.xyz": [2053], "labintel.dsi.cnrs.fr": [6314], "afip.gob.ar": [19317], "tierhe.im": [2053], "goc.io": [6481], "www.chinafile.com": [19705], "www.rus.uni-stuttgart.de": [17568], "git.tasktools.org": [16225], "s.manga-lib.pl": [2053], "reverseip.domaintools.com": [4750], "u.kmp.me": [2053], "*.wiggle.co.uk": [18586], "www.trustedcomputinggroup.org": [17066], "apk91.ml": [2053], "www.mir-politika.com": [20803], "d.dc121677.com": [19868], "*.crimecommission.gov.au": [1423], "www.newyorkneedsyou.org": [11504], "asset-c.soupcdn.com": [15416], "dashboard.gocoin.com": [6896], "mozshot.nemui.org": [20886], "eyenov.at": [2053], "www.dxtorrent.com": [4914], "showroom.adform.com": [625], "www.amnesty.tw": [1011], "secure1.store.apple.com": [1160], "binary.getdigital.de": [6731], "adamj.me": [2053], "developers.slashdot.org": [15192], "www.apc.org": [1329], "blake.mn": [2053], "www14.pipni.cz": [12460], "www.malwaredomainlist.com": [10094], "portal.vitelity.net": [18088], "nraringoffreedom.com": [20952], "l.pixsheep.com": [2053], "www.hugedomains.com": [7746], "morningstaronline.co.uk": [10782], "www.demandbase.com": [4420], "panzhihua.meituan.com": [10405], "l.domjg.com.ve": [2053], "www.barclaycard.co.uk": [1712], "colinize.me": [2053], "l.k7add.com": [2053], "qixian.meituan.com": [10405], "legaci.de": [2053], "tlsupr.info": [2053], "gdo-sns.jp": [2053], "mrge.us": [2053], "*.trauer.de": [16964], "www.celartem.com": [2990], "auth.brightidea.com": [2384], "g-ro.co": [2053], "www.joycasino.com": [20552], "go.artylabs.com": [2053], "static.goexplore.net": [6902], "www.thedailygreen.com": [7408], "yoel.co": [2053], "e8.xhamsterpremiumpass.com": [18817], "digital.nhs.uk": [11102], "assets.getapp.com": [20230], "boulder.swri.edu": [15446], "api.url2png.com": [17701], "r420.co": [2053], "www.med.stanford.edu": [15635], "bmvis.co": [2053], "cepa.stanford.edu": [15635], "dannymekic.com": [4222], "blogs.thomsonreuters.com": [16650], "bdbm.tv": [2053], "penic.uk": [2053], "forum.silkroad.ws": [15039], "ymcastlouis.org": [18922], "jobs.voxmedia.com": [18147], "ws4.bakerlab.org": [1667], "front-admin.voyage-prive.it": [18153], "ta3m.al": [2053], "sltr.me": [2053], "ribs.mx": [2053], "lonniedos.com": [2053], "ssusa.org": [21556], "*.outwit.com": [12353], "activity.serving-sys.com": [14872], "wiki.opendnssec.org": [11130], "a.agentoink.uk": [2053], "www.elsevierhealth.com": [5289], "casalink.nl": [2053], "www.greensmoke.com": [7055], "nassau.usembassy.gov": [21879], "www.clickssl.com": [3310], "url.pcheaven.eu": [2053], "bt.mcubed.gr": [2053], "gass.ph": [2053], "rms.sexy": [14148], "autodiscover.ya.ru": [18930], "exchange.1and1.co.uk": [63], "democracy.islington.gov.uk": [8518], "www.weatherspark.com": [18332], "go.arkm.de": [2053], "www.amazontrust.com": [956], "yexian.meituan.com": [10405], "ice2.org": [2053], "www.gotlandring.com": [6982], "i.tgu.ca": [2053], "cdn.cloudfiles.mosso.com": [10792], "io-test-gw.vutbr.cz": [17814], "mail.ntmx.de": [11753], "via.kye.io": [2053], "ninite.com": [11610], "perez.ly": [2053], "sobytiya.info": [21496], "my.segpay.com": [14800], "bcpd.x7y24z365.com": [2182], "slipta.lk": [2053], "lbam.co": [2053], "3d.xkcd.com": [22085], "maxn.us": [2053], "*.webmail.pair.com": [12540], "dockapps.windowmaker.org": [18639], "myzeen.ml": [2053], "advent.com": [693], "kalveboderne-rundt.hvidovrekajakklub.dk": [7782], "www.blogs.fau.de": [17597], "r1.calamida.ch": [2053], "hatne.ws": [2053], "www.zeromq.org": [19161], "www.html5video.org": [7241], "web.pcbsd.org": [12421], "trav.es": [2053], "suppliers.bezeq.co.il": [19522], "pocasi.idnes.cz": [20425], "richmond-consult.objective.co.uk": [20979], "schnz.es": [2053], "wtec.us": [2053], "ngtr.uk": [2053], "*.world-television.com": [18759], "probmods.org": [13346], "bigstockimages.com": [1920], "wilmu.edu": [18620], "go.wlsa.news": [2053], "trysgb.com": [2053], "joo.bz": [2053], "media.boingboing.net": [2234], "volunteering.oxfordshire.gov.uk": [21055], "payments.sccgov.org": [14579], "portugues.witness.org": [18683], "thumbs.xmarks.com": [18882], "www.idnet.net": [7853], "cdn.dota2lounge.com": [4791], "mspp.georgetown.edu": [6668], "www.purduealum.org": [13461], "*.ehow.com": [19983], "schwarzerkanal.squat.net": [21549], "ppl.army": [2053], "tucd.co": [2053], "krasnoe-na-volge.beeline.ru": [1801], "rewards.dbs.com": [4084], "campaign.odw.sony-europe.com": [15390], "blog.lizardwrangler.com": [9683], "www.hcia.cms.gov": [19742], "api.flickr.com": [6034], "channelink.xo.com": [18833], "signup.active24.de": [19277], "davidshar.es": [2053], "kirjoitusalusta.fi": [9066], "c.fastcompany.net": [5797], "baoying.meituan.com": [10405], "login.fronter.com": [20179], "login.thesun.ie": [21720], "wfvv.eu": [2053], "qry.ca": [2053], "qt.io": [13545], "pluralsight.com": [21152], "spark-summit.org": [15467], "thepiratebay.webypass.xyz": [21217], "*.discovermagazine.com": [4632], "yd.meituan.com": [10405], "mathsys.aalto.fi": [428], "unpac.org": [17428], "rt.nuug.no": [11169], "fragmcd.de": [2053], "tchouk.ch": [2053], "b0.jrnl.ie": [20554], "www.or.is": [21027], "mjh.fyi": [2053], "www.xelerance.com": [18855], "on.wtmj.com": [2053], "semalimentos2014.unizar.es": [17643], "dropid.tk": [2053], "nbld.us": [2053], "ostagram.ru": [12331], "mycp.co.nz": [12234], "gudly.axosoft.com": [1517], "antifascistnetwork.org": [19396], "finanse.money.pl": [10735], "*.aacqa.gov.au": [267], "ete.buzz": [2053], "batmanarkhamknight.com": [1738], "shutme.in": [2053], "l1s.it": [2053], "sxd.co": [2053], "t.h.is": [2053], "h4ckr.us": [2053], "ssl.bing.com": [1949], "electroscience-new.engineering.osu.edu": [11959], "secure.vend-o.com": [17898], "dancheng.meituan.com": [10405], "fxbnk.ca": [2053], "www.rcpmag.com": [13639], "*.wikifur.com": [18588], "*.infinitysystems.com": [7340], "c13.cl": [2053], "conferencemanager.dk": [19772], "*.vcomstatic.com": [18008], "amp.to": [2053], "snipbfp.org": [2053], "www.informationweek.com": [8273], "images.politicopro.com": [13099], "gihyo.jp": [6780], "www.in-the-sky.org": [8176], "prfctennis.com": [2053], "gorod.yandex.by": [18953], "www.ozbargain.com.au": [12400], "chicbyshay.in": [2053], "goodpoint.de": [13827], "clavardage.videotron.com": [17993], "www.itpc.uillinois.edu": [17238], "spirit.com": [15529], "projects.csail.mit.edu": [9916], "*.likes.com": [9511], "go.intphoto.co": [2053], "1u1s.de": [81], "feminfo.444.hu": [172], "www.reflex.cz": [13951], "focusatwill.co": [2053], "js.hubspotqa.com": [7740], "d.fastcompany.net": [5797], "pirateportal.xyz": [21215], "*.hostmonster.com": [7681], "cdn.heapanalytics.com": [7407], "ut.ee": [17347], "l.1gf.pw": [2053], "chatsexo.co": [2053], "m.hava.yandex.com.tr": [18954], "drvtht.pw": [2053], "secure.services.defra.gov.uk": [4391], "cast.google.com": [6962], "badgekit.org": [1647], "www.pop.com.br": [12482], "qlroo.co": [2053], "cdn.sencha.io": [14820], "etarget.cz": [5479], "dnld.lime-technology.com": [20688], "m.siemens.com": [15014], "login.proxy.library.georgetown.edu": [6668], "odc.officeapps.live.com": [9644], "esc.edu": [5317], "mediabistro.com": [10336], "etrtbb1.smartstream.tv": [15247], "mychasetek.com": [2053], "forums.solydxk.com": [21505], "www.unblockthepiratebay.net": [21709], "peer5.com": [12726], "www.tpc.com": [16104], "mdsi.us": [2053], "bitmarket.pl": [1986], "www.websitealive7.com": [18445], "tyumen.beeline.ru": [1801], "l.giyf.in": [2053], "lnk.kippnyc.org": [2053], "www.bitbay.net": [1976], "envato.com": [5409], "fbz.co": [2053], "ssl.atbar.org": [405], "mwcb.in": [2053], "resourcecentre.techweekeurope.co.uk": [11390], "ln.doitwell.tw": [2053], "ceonex.com": [3022], "naeem.cc": [2053], "cublinux.com": [19836], "img.rasset.ie": [13805], "hmnco.link": [2053], "login.constantcontact.com": [3657], "www.wageningen.nl": [11324], "animefigures.co": [2053], "brnd.it": [2053], "dvbook.plus": [2053], "i.roidsmall.org": [2053], "forum.backbox.org": [1638], "s.hatyati.jp": [2053], "reclog.jp": [13875], "connect.charterbusiness.com": [3081], "hipertextual.com": [20342], "www.comodogroup.com": [3569], "ricardoshops.ch": [14101], "tcreativo.es": [2053], "fedgeno.com": [5842], "umonitor.com": [17260], "heslo.centrum.sk": [19675], "blogs.lshtm.ac.uk": [9739], "emh.cc": [2053], "8to.me": [2053], "www.devilteam.pl": [4504], "eumostwanted.eu": [20067], "whyy.org": [18205], "post.cz": [14891], "w-u-p.com": [2053], "img.inkfrog.com": [8296], "events.venturebeat.com": [17903], "post.cr": [2053], "linuxfr.org": [9570], "glasgow.life": [2053], "www.sumologic.com": [15848], "support.zattoo.com": [19116], "www51.jimdo.com": [8721], "*.withgoogle.com": [18681], "post.ch": [13176], "thesims3.com": [5253], "url.makeawe.so": [2053], "piwik-hal.ccsd.cnrs.fr": [6314], "j.umomoking.com": [2053], "edibleco.de": [2053], "soco.ps": [2053], "developer.spotify.com": [15548], "*.chalmers.se": [3047], "flvrprnt.co": [2053], "*.kobobooks.it": [9101], "dona.st": [2053], "mx.redhat.com": [13909], "dev.onedrive.com": [12031], "boyr.it": [2053], "wpn.wizards.com": [18687], "d.ncs.pw": [2053], "go.caio.tv": [2053], "webhostinggeeks.com": [18400], "radio.ualinux.com": [21833], "mabris.co": [2053], "shareit.com": [14914], "alumni.uvm.edu": [17353], "ws-na.assoc-amazon.com": [1323], "witness.guardian.co.uk": [7128], "go.shr.lc": [2053], "*.nokiasiemensnetworks.com": [11656], "www.prestashop.com": [13265], "community.okta.com": [11975], "s0.percona.com": [12769], "vmcdn.de": [18098], "albennet.com": [819], "v4c.org": [21890], "pz.meituan.com": [10405], "1.heartotr.com": [2053], "www.mobile.learnerview.ofsted.gov.uk": [20985], "cygnus.cc.kuleuven.be": [8969], "m.turkish.alibaba.com": [850], "philc.us": [2053], "signup.nj.com": [11120], "www.sivers.org": [15135], "portrait8.sinaimg.cn": [15091], "emblem.cancer.gov": [2864], "rhk.today": [2053], "passport.sohu.com": [15352], "pxl.ie": [2053], "psy.pub": [2053], "www.fdf.org.uk": [5675], "f150.ws": [2053], "*.etrade.com": [5496], "cpix.tv": [2053], "ulakbim.gov.tr": [17258], "*.dmslocal.com": [6571], "mouseflow.nl": [10812], "gunowners.me": [2053], "www.11main.com": [28], "storenvy.com": [15751], "websitesettings.com": [18448], "windows.mouselike.org": [16332], "franceinter.fr": [20156], "www.digitalmars.com": [4576], "rt.active24.cz": [19276], "jadu.net": [8639], "www.bter.com": [2439], "briteb.in": [2053], "davaug.com": [2053], "www.umftgm.ro": [21848], "aut.bme.hu": [1570], "low-prices.asda.com": [387], "forums.deathmask.net": [4344], "www.mov24hr.com": [18972], "www.labcorp.com": [9276], "telmasters.com": [16322], "www.obfs.uillinois.edu": [17238], "www.gymglish.*": [7167, 7168], "www.directa.cat": [4612], "rtbd.es": [2053], "b11.yahoo.co.jp": [18944], "www.torrentproject.se": [16859], "fell.be": [2053], "ictrecht.nl": [7839], "www.canaldigital.se": [2862], "ileansigma.engineering.osu.edu": [11959], "secure.ikea.com": [8108], "tomnapl.es": [2053], "bragazeta.ru": [19585], "go.age-sht.net": [2053], "www.mp3-juices.com": [10858], "rpsays.com": [2053], "web4.login.cornell.edu": [3744], "wof-piwik2.desy.de": [4479], "health.springer.com": [15561], "foxth.co": [2053], "csi.agency": [2053], "freak.im": [2053], "*.crowdscience.com": [3890], "sues.stanford.edu": [15635], "on.jehiah.cz": [2053], "*.blob.core.windows.net": [18643], "www.fiercepharma.com": [5892], "a.troublion.com": [2053], "u.mud.lk": [2053], "www.wearechoosy.com": [1224], "cot.ag": [2053], "www.coindesk.com": [3458], "password.uic.edu": [17517], "b.dcxg.co": [2053], "wikispaces.com": [16373], "on.dgap.org": [2053], "upxth.com": [17695], "cdn.gigya.com": [6779], "affiliate.eurodns.com": [5511], "isc2.org": [7967], "gtclsr.com": [2053], "go.hafnium.vc": [2053], "gowork.pl": [6916], "foreignpolicy.com": [6142], "clks.it": [2053], "kopete.kde.org": [8871], "www.control.isy.liu.se": [9238], "jesus4nativ.es": [2053], "dous.re": [2053], "ypkrd.co": [2053], "shop.f-secure.com": [5654], "bibr.li": [2053], "softaculous.com": [15345], "library.osu.edu": [11959], "www.riskiq.com": [14135], "*.artday.co.kr": [1262], "elrn.in": [2053], "www.sessioncam.com": [14875], "www.clippercard.com": [19731], "www.threatmatrix.com": [21730], "secure.logmeinrescue.com": [9713], "dnscurve.com": [4137], "myheritage.br": [11023], "www.citysearch.com": [3256], "www.ubuntulinux.jp": [17385], "myloc.de": [10959], "cjbrie.se": [2053], "planning.angus.gov.uk": [1059], "academy.air.io": [19329], "dis.criteo.com": [3872], "clients.medialayer.com": [10322], "img20.360buyimg.com": [136], "knobli.ch": [2053], "go.trendmicro.com": [16993], "privacysolutions.no": [13316], "www.ibx.com": [20419], "findnsave.nj.com": [11120], "e13.xhamsterpremiumpass.com": [18817], "www.topbuy.com.au": [16830], "365ticketscentral.com": [139], "carya.gr": [2053], "calendars.mit.edu": [9916], "l.yulian.biz": [2053], "*.ozlabs.org": [12402], "progma.us": [2053], "info.gigya.com": [6779], "s.ghac.in": [2053], "hipchat.cms.gov": [19742], "chtn.org": [19712], "on.zom.al": [2053], "id.aliexpress.com": [19343], "ssi.gs": [2053], "hoy.pub": [2053], "pi.minecraft.net": [10603], "worts.pl": [2053], "to.ehow.com": [2053], "seulonta.fi": [15998], "jiglink.uk": [2053], "app.sina.com.cn": [15085, 15086], "baja-radio.com": [2053], "www.immunicity.uk": [20443], "dbdinc.co": [2053], "dean.williams.edu": [18616], "www.migrol.ch": [10562], "taganrogprav.ru": [21648], "loverpi.com": [9795], "802.es": [2053], "app.clicktools.com": [3323], "www.bahn-bkk.de": [1659], "egei.sh": [2053], "ino.to": [2053], "virtuwi.se": [2053], "neimenggu.jd.com": [8571], "sprvx.co": [2053], "*.privacysolutions.no": [13316], "beeldengeluid.nl": [1800], "yemen.usembassy.gov": [21879], "faby.me": [2053], "r.nextbib.com": [2053], "ultfan.live": [2053], "www.benetech.org": [1830], "host18.top": [2053], "i.nachotech.com": [2053], "mozfr.org": [20836], "elgnts.nl": [2053], "cruises.webjet.com.au": [18421], "a5.hitravel.xyz": [2053], "drumb3.at": [2053], "meu.bz": [2053], "pi.cr.yp.to": [3817], "www.reflected.net": [13950], "hcp.li": [2053], "*.dotcomhost.com": [4786], "nativo.net": [11281], "www.govcert.nl": [11324], "ripe70.ripe.net": [14128], "www.savage2.com": [14300], "tripadvisor.com": [17017], "*.qub.ac.uk": [13578], "www.snap-ci.com": [21488], "liveseries.ga": [2053], "cas.criteo.com": [3872], "tnd.al": [2053], "theme-fusion.com": [16606], "jenr.gy": [2053], "bn.meituan.com": [10405], "archives.mondediplo.com": [10729], "www.priberam.pt": [13275], "mattz.me": [2053], "myhbs.me": [2053], "c0ff.in": [2053], "cdn.officiel-des-vacances.com": [11953], "crics.in": [2053], "self.achieveservice.com": [19265], "blog.tinfoilsecurity.com": [16743], "a.seino.biz": [2053], "rcdroneshq.com": [2053], "klikki.fi": [20610], "mobile.uw.edu": [17355], "www.ppb.cancer.gov": [2864], "morriseywv.com": [2053], "www.ghbtns.com": [6746], "scheme.bikeability.org.uk": [19532], "spvlad.com": [2053], "livmob.nl": [2053], "suiningxian.meituan.com": [10405], "on.nakedcrm.com": [2053], "cfin.us": [2053], "www.goenergetix.com": [5352], "www.huxiu.com": [7779], "iste.am": [2053], "w7.chaucanh.net": [2053], "cryptoparty.in": [3955], "www.webjet.co.nz": [18421], "aesload.de": [731], "ssl.price.ua": [13277], "webpayments.sevenoaks.gov.uk": [14882], "mbay.ly": [2053], "go.lmh.news": [2053], "au.rss.news.yahoo.com": [18939], "problo.gr": [2053], "www.cmxlog.com": [3389], "1.ilovestyle.be": [2053], "mobilehelp.mybank.cn": [20861], "help.getpocket.com": [6702], "*.bloombergsports.com": [2173], "r2.mzstatic.com": [1159], "interactive.guim.co.uk": [7142], "sferra.com": [14892], "wrt.cu.cc": [2053], "www.peepd.com": [12723], "s.zk.gl": [2053], "lye.cc": [2053], "compose.io": [3590], "wovex.tv": [2053], "www.openswan.org": [12246], "*.reg.ru": [13956], "mqa.life": [2053], "planning.lichfielddc.gov.uk": [20681], "www.savvysme.com.au": [14556], "mnatx.tk": [2053], "cdn1.sure-assist.com": [15899], "www.freejeremy.net": [6259], "rt.io": [2053], "yandex.st": [18960], "*.cia.com": [2656], "piwik.xiala.net": [22083], "c2v.co": [2053], "*.cert.at": [2637], "updr.in": [2053], "www.zenmate.lu": [19133], "www.zenmate.lt": [19133], "www.zenmate.lv": [19133], "letu.it": [2053], "l.gabe.bz": [2053], "tinyrio.com": [2053], "zhenan.jd.com": [8571], "kuwait.usembassy.gov": [21879], "cheltenham.greenparty.org.uk": [7052], "www.neelwafurat.com": [11326], "news.herefordshire.gov.uk": [7466], "www.zenmate.li": [19133], "blocked.org.uk": [2145], "mozuw.com": [2053], "picasaweb.google.com.*": [6965], "s.ticketon.kz": [2053], "www.isc2.org": [7967], "partner.just-eat.be": [20565], "zalando.dk": [19094], "www.ulaval.ca": [17515], "boinc.bakerlab.org": [1667], "plr.vn": [2053], "s.acetheme.com": [2053], "l.guib.ca": [2053], "tmgb.co": [2053], "ciifad.cals.cornell.edu": [3744], "img13.bizrate-images.com": [2086], "mla.com.au": [10300], "gizmodo.com": [6817], "www.west-midlands.police.uk": [18504], "*.microad.jp": [10526], "promin.live": [2053], "11888.ote.gr": [12336], "btp.link": [2053], "*.tradedoubler.com": [16914], "nordvpn.com": [11678], "mml.ink": [2053], "mindap.pl": [2053], "feikar.net": [2053], "www.brevado.com": [2361], "pgdt.gtimg.cn": [7120], "reax.co": [2053], "r.nexg.tv": [2053], "doublethedonation.com": [4809], "frmply.co": [2053], "dmnw.us": [2053], "jrrt.org.uk": [8781, 8782], "vik.wiki": [1570], "thm.de": [16066], "apereo.org": [1128], "on.pndhs.org": [2053], "static.slough.gov.uk": [15216], "www.kde-look.org": [21006], "www.publikdemand.com": [13446], "khe.me": [2053], "hslda.org": [7234], "sqrl.ly": [2053], "bnymellonim.com": [19567], "consultation.gateshead.gov.uk": [6584], "hbkn.it": [2053], "l.jezzza.com": [2053], "www.holidayextras.com": [7595], "pingfore.qq.com": [13514], "developer.similarweb.com": [15056], "support.itbit.com": [8532], "brkcv.com": [2053], "go.rnjr.work": [2053], "u.ds0.info": [2053], "*.webcontrolcenter.com": [18410], "foryou.stanford.edu": [15635], "*.textualapp.com": [16423], "berniw.org": [1849], "niggaplea.se": [2053], "s.miguel.ms": [2053], "u.vidocs.net": [2053], "www.ishares.com": [8515], "zotacusa.com": [19072], "team8.voz48.xyz": [2053], "verispect.us": [2053], "larica.me": [2053], "s139.cnzz.com": [3391], "social.dw.de": [4166], "www.theblackpooltower.com": [16443], "ociolaportal.osu.edu": [11959], "citius.usc.es": [17711], "on.chronique.ca": [2053], "lenr-forum.com": [20660], "yegfit.ca": [2053], "s.dac.co.jp": [2053], "ep2014.europython.eu": [5514], "a.burne.tt": [2053], "www.polls.newsvine.com": [11541], "7dg.tl": [2053], "farns.us": [2053], "developer2014.sinacloud.com": [15088], "parker.jd.com": [8571], "tac2.in": [2053], "ict-webtools.plymouth.ac.uk": [13055], "limited2art.com": [9519], "l.cjs.io": [2053], "www.paragonie.com": [12594], "www.hostingxtreme.com": [7676], "hancheng.meituan.com": [10405], "on.wlwt.com": [2053], "globalchallenges.uow.edu.au": [17636], "cdn-txweb.pressidium.com": [21195], "a.pressacco.com": [2053], "zwap.co": [2053], "jpattison.us": [2053], "krasnoyarsk.beeline.ru": [1801], "www.jessfraz.com": [8704], "urltrends.com": [17703], "pnp4nagios.org": [12478], "xirt.ca": [2053], "mbg.fyi": [2053], "st.meituan.com": [10405], "www.hizook.com": [7576], "www.pkracv.com": [3546], "forum.fullrate.dk": [6373], "hr.vanderbilt.edu": [17850], "m.ibm.com": [7821], "extratorrentlive.com": [20082], "forums.databricks.com": [4275], "go.8fit.com": [2053], "www.castle-technology.co.uk": [2950], "jobs.bridgend.gov.uk": [19591], "*.tickertech.com": [16681], "secure.gettyimages.es": [6741], "b4j.co": [2053], "p.ppfa.org": [2053], "ingrass.me": [2053], "fcle.es": [2053], "www.apple.com": [1160], "www.mog.com": [9939], "*.razoo.com": [13822], "whitman.worldcat.org": [18748], "www.ivoox.com": [8016], "www.100r.org": [12], "litecoin24.nl": [9624], "automo.bi": [2053], "brent.greenparty.org.uk": [7052], "www.purduealumni.org": [13461], "zenmate.ch": [19133], "fonts.walmart.com": [18260], "foxciti.es": [2053], "brek.co": [2053], "netapp.com": [11374], "intelligence.brent.gov.uk": [2358], "www.hvosting.ua": [7783], "udmurtiya.beeline.ru": [1801], "ar.trend.az": [21786], "hosteurope.de": [7660], "www.dtu.dk": [16286], "www.clicktools.com": [3323], "help.mindtouch.us": [10597], "semya.tv": [21409], "brkn.gs": [2053], "qtdeveloperdays.com": [13547], "www.safesource.org.nz": [14465], "on.vomu.org": [2053], "displayomat.snacktv.de": [15268], "accuenmedia.com": [504], "www.spsch.eu": [21545], "*.website-start.de": [18444], "tron-delta.org": [16110], "maer.sk": [2053], "unlocator.com": [21859], "s8.cnzz.com": [3391], "widgets.twimg.com": [17153], "m.onlinesbi.com": [12072], "dccp.co": [2053], "seu1902.tk": [2053], "images.affiliatewindow.com": [4569], "de.rbth.com": [21267], "*.mozillalabs.com": [10849], "lt.osu.edu": [11959], "ifly.to": [2053], "link.wasp.io": [2053], "getbon.us": [2053], "inetp.ro": [2053], "info.evidon.com": [5565], "mindmodeling.org": [10595], "static.hubspot.com": [7739], "shop.newint.org": [11489], "cac.c-nuage.jp": [2053], "img.wildwestdomains.com": [18599], "*.cch.com": [2605], "*.blendle.com": [2121], "www.cash.me": [15580], "cdn.dexmedia.com": [4515], "akrec.co": [2053], "cdn.media.ccc.de": [2596], "1776.ly": [2053], "serbakuis.id": [2053], "cntraveler.com": [3620], "bne.cc": [2053], "i18n.debian.org": [4353], "ste.pm": [2053], "pims.copernico.net": [3719], "met4auto.com": [2053], "i01.c.aliimg.com": [854], "www.certsimple.com": [3026], "*.tieto.com": [16707], "su.itunes.apple.com": [1160], "m.scheper.ca": [2053], "ps-us.amazon-adsystem.com": [950], "distorted.pl": [2053], "staytoday.com": [15697], "www.valuecommerce.ne.jp": [17835], "ig.swy.fit": [2053], "mandtbank.spatialpoint.com": [9856], "spg.to": [2053], "corp.mail.ru": [10040], "www.osrfoundation.org": [11873], "grechkometr.unian.ua": [21851], "learn.chef.io": [3115], "shared.php.net": [12453], "mrxl.us": [2053], "jlab.audio": [2053], "1.hbcdenham.org": [2053], "www.sbucciami.com": [14562], "isisblogs.poly.edu": [13113], "es.norton.com": [11703], "on.rawfol.io": [2053], "www.quality-abo.de": [13559], "careers.weather.com": [18330], "praee.com": [2053], "luxsci.mobi": [9840], "www.bernstein.com": [891], "*.e2ma.net": [4962], "assets.brandfolder.com": [2336], "pacunion.us": [2053], "websitealive5.com": [18445], "go.repeal2a.com": [2053], "web.synch.hu": [15982], "*.stroeerdigitalmedia.de": [15785], "piwik.ethz.ch": [5074], "en-hu.dict.cc": [4536], "tcrn.ch": [2053], "daddy.do": [2053], "mep.engineering.osu.edu": [11959], "in.mofi.in": [2053], "csrr.us": [2053], "www.mint.ca": [10620], "go.mattjdev.com": [2053], "tippps.de": [2053], "www.heino-cykler.dk": [7427], "usatwi.sc": [2053], "itunes.swisscom.ch": [15951], "togbc.com": [2053], "sk.3.boardgamearena.com": [2219], "intl.st": [2053], "wmgo.me": [2053], "pirateproxy.click": [21711], "intl.sh": [2053], "m.ya.ru": [18930], "www.ticketweb.co.uk": [16690], "kongregate.com": [9128], "edgesnapbacks.com": [5181], "widget.newsinc.com": [11527], "support.humblebundle.com": [7759], "directory.umd.edu": [17549], "dly.do": [2053], "hadalog.jp": [14985], "cdre.nyc": [2053], "ad.atdmt.com": [10540], "918autoloans.com": [239], "www.sportys.com": [15544], "mail.blueonyx.it": [19561], "hmf.williams.edu": [18616], "bit.tm": [2053], "usue.co": [2053], "dex.ma": [2053], "5hats.link": [2053], "s10.histats.com": [20343], "spfc.vc": [2053], "cl1ckme.tk": [2053], "sta.carloha.com": [2053], "www.exilebuddy.com": [2284], "search.literotica.com": [9628], "www.coverity.com": [3803], "lcnsng.biz": [2053], "s.h4x.pw": [2053], "lrgup.co": [2053], "praetorian.cc": [2053], "myrr.org": [2053], "support.silentcircle.com": [15031], "www.lib.vutbr.cz": [17814], "slug.squat.net": [21549], "www.thegreatdiscontent.com": [16551], "notary.icsi.berkeley.edu": [17526], "www.neas.nhs.uk": [11102], "rocawear.me": [2053], "rg.fyi": [2053], "shiftlog.aviationweather.gov": [19463], "xx5.us": [2053], "www.familychristian.com": [5759], "bluegiga.com": [2201], "www.cint.com": [3208], "mnatu.re": [2053], "*.picdn.net": [15000], "www.usvisas.state.gov": [17345], "www.artpractical.com": [1254], "edwi.in": [2053], "dl.lib.brown.edu": [2421], "fcc.osu.edu": [11959], "www.3dglassesfree.com": [158], "secure.filmlinc.com": [5923], "g-pa.ws": [2053], "jpgtv.net": [2053], "www.squareup.com": [15580], "rlgh.in": [2053], "abc.xyz": [442], "valme.io": [17823], "www.youtube.com.ph": [19016], "arkhangelsk.beeline.ru": [1801], "secure.datapipe.com": [4290], "minixperiment.twitch.tv": [17164], "nswk.es": [2053], "owner.io": [12390], "webmaster.yandex.kz": [18957], "www.theartstack.com": [16510], "canonistas.eu": [2053], "www.caa.co.uk": [3262], "gospir.it": [2053], "go.jawad.ir": [2053], "www.windowmaker.org": [18639], "sput.me": [2053], "sportisimo.pl": [14396], "torlink.co": [16837], "www.dwolla.com": [4913], "passport.2345.com": [87], "zxmth.us": [2053], "go.nq.gl": [2053], "dalrun.co": [2053], "seethisinaction.com": [14799], "thecools.co": [2053], "ln.magitech.xyz": [2053], "www.quandl.com": [13565], "mommyslittlesunshine.com": [10726], "goods.1688.com": [44], "img.badische-zeitung.de": [1650], "www.dorsetalert.co.uk": [19949], "swa.mail.ru": [10040], "link.zhihu.com": [19173], "*.boxee.tv": [2311], "kasandbox.org": [9025], "s26.cnzz.com": [3391], "g.msn.com": [9961], "admin.carezone.cz": [2908], "customerevents.netflix.com": [11421], "es.meituan.com": [10405], "forum.kryptronic.com": [9173], "basea.me": [2053], "t.thebrighttag.com": [2379], "www.dug.net.pl": [4163], "arcs.ly": [2053], "bitsighttech.com": [1996], "media.w3.org": [18184], "kidspot.me": [2053], "www.myaccount.avira.com": [1489], "secure.eth-0.nl": [5481], "lvdm.org": [2053], "*.beryl-themes.org": [21007], "paymybill.illinois.edu": [17544], "smuir.click": [2053], "*.gridserver.com": [7077], "moja.tatrabanka.sk": [10721], "get2.adobe.com": [655], "*.lkmart.com.au": [9242], "x.yaui.me": [2053], "www.ngrok.com": [11568], "*.fitstudio.com": [6003], "ht.meituan.com": [10405], "support.clever.com": [3297], "wzp.in": [2053], "segments.adap.tv": [593], "psql.active24.cz": [19276], "www.theoldreader.com": [16491], "login.livingsocial.com": [9679], "www.workkafe.com": [18739], "mobile.sb.vdopia.com": [17875], "rtbpopd.com": [21335], "*.newrelic.com": [11483], "pda-bes.amazon.com": [952], "l.oj.io": [2053], "craftysyntax.com": [3824], "onthewire.io": [12018], "cnstl.is": [2053], "*.service.mirror-image.net": [10636], "boe.is": [2053], "www.membershiprewards.com": [10421], "fre.gg": [2053], "1art.cz": [75], "okta.com": [11975], "lchost.co.uk": [9220], "static.cf.ac.uk": [2895], "seowizard.ru": [14833], "justiceinspectorates.gov.uk": [3868], "cachewww.mirrorbingo.com": [10635], "amnesty.org.nz": [1005], "rbll.de": [2053], "*.upstart.com": [17689], "on.ny.gov": [2053], "dcs.lt": [2053], "linkurl.nut.cc": [2053], "find.business.t-mobile.com": [16026], "assess.cocubes.com": [3394], "skuid.co": [2053], "goco.re": [2053], "etl.decc.gov.uk": [19885], "nz2050.com": [2053], "login.persona.org": [10851], "*.presslabs.com": [13257], "euhsd.illuminateed.com": [20430], "netdna.com": [11380], "static2.anidb.net": [1062], "media.tracfonewireless.com": [16901], "bloop.ws": [2053], "worksource.co": [2053], "aiwa.us": [2053], "ward1.me": [2053], "s1.playscdn.tv": [13030], "youtube.com.my": [19016], "friends.meetme.com": [10378], "coxnewsweb.com": [3809], "order.kagi.com": [8918], "www.scalingbitcoin.org": [14567], "ybin.me": [18970], "lovoo.ly": [2053], "insight.bn-mclp.org": [2215], "sustainability.georgetown.edu": [6668], "ave.ch": [2053], "sourcedna.com": [15420], "ce.jhu.edu": [16562], "jsk.stanford.edu": [15636], "sig3.info": [2053], "carecareersdevon.org.uk": [19645], "on.danmob.bz": [2053], "ads.creative-serving.com": [3847], "js-sc.jd.com": [8571], "axs.yts.to": [18927], "myub.buffalo.edu": [17583], "on.center": [2053], "m.exactag.com": [5586], "d1.aztravel.xyz": [2053], "stat.my.mail.ru": [10040], "pipr.co": [2053], "pearson.eps.harvard.edu": [7351], "old.dp.ru": [19955], "ssologin.palmcoastd.com": [12550], "eu.api.ovh.com": [12378], "www.d.pr": [4069], "help.rubygems.org": [14254], "kkh.se": [8886], "jhfi.sh": [2053], "www2.sunybroome.edu": [2419], "cari.me": [2053], "aleksandrovsk.sakh.com": [21360], "a.suntravel.xyz": [2053], "rsna.org": [13754], "ysmay.us": [2053], "netgroup.dk": [11426], "www.liliani.com.br": [9513], "toughchoices.co.uk": [21766], "www.marketwire.com": [10186], "verifier.login.persona.org": [10851], "ja.ma": [2053], "es.thinksteroids.com": [9904], "www.die-linke.de": [4537], "go.mtricht.com": [2053], "buergerbeteiligung.sachsen.de": [14454], "www.hacking.ventures": [7284], "*.finalsite.com": [5935], "in.cyt.org": [2053], "www.meningitis-trust.org": [10432], "dryr.me": [2053], "capw.me": [2053], "wyre.gov.uk": [22074], "csync.yahooapis.com": [18943], "www.nebrija.com": [11318], "chbtc.com": [3094], "ads8.contentabc.com": [3678], "movimen.to": [2053], "fenyang.meituan.com": [10405], "libri.de": [9478], "asset-2.netbeans.org": [11376], "ggmusic.co": [2053], "flametr.com": [2053], "mtt.ru": [20848], "optimize-stats.voxmedia.com": [18147], "www.grr.la": [7133], "code.wireshark.org": [18670], "piwik.mozfr.org": [20836], "intranet.sydney.edu.au": [21631], "btc.to": [2436], "secure.naiadsystems.com": [11200], "login.hwb.wales.gov.uk": [18252], "zena.centrum.cz": [19674], "crrc.lt": [2053], "agnesscott.starfishsolutions.com": [21565], "odevzdej.cz": [11924], "www.move.va.gov": [17297], "travel.mongabay.com": [10739], "kawasa.ki": [2053], "mailman.owncloud.org": [12387], "orglogo.difi.no": [4547], "facebook.foxnewsinsider.com": [6203], "global.latin.epson.com": [5434], "thijsalkema.de": [16621], "reg.ru": [13956], "www.trafficjunky.com": [21775], "postck.com": [2053], "fkie.fraunhofer.de": [6230], "webjet.co.nz": [18421], "www.theweek.com": [16589], "read.moorhou.se": [2053], "domaindiscount24.net": [19940], "aws.amazon.com": [954], "www.danskebank.dk": [4223], "*.vespermarine.co.nz": [17943], "rboot.us": [2053], "piuparts.debian.org": [4353], "www.geektimes.ru": [6628], "hhz.dj": [2053], "netvibes.com": [11450], "*.shacknews.com": [14895], "hbsp.me": [2053], "c.hitravel.xyz": [2053], "*.typesafe.com": [17191], "m.gripom.com.br": [2053], "tickets.zvv.ch": [22146], "mwsjr.me": [2053], "wpereira.xyz": [2053], "www.nottinghamshirealert.co.uk": [20933], "jcale.me": [2053], "*.wordpress.org": [18731], "de.godaddy.com": [6898], "hd.findory.tk": [2053], "www.sneakerfreaker.com": [21491], "crystalc.at": [2053], "cemetech.net": [2994], "gamesonly.at": [6554], "m.hebrew.alibaba.com": [850], "training.witness.org": [18683], "ekiga.org": [5231], "honeybeeloans.com": [7628], "www.simcity.com": [15053], "burundi.usembassy.gov": [21879], "www.fortune.com": [6179], "fortnite.com": [6175], "jmcc.cf": [2053], "heal.dog": [2053], "zonza.tv": [19071], "zjk.meituan.com": [10405], "qbs.me": [2053], "linux-sunxi.org": [9561], "www.creatis.insa-lyon.fr": [7918], "phfam.us": [2053], "avia.yandex.ua": [18961], "www.postoffice.co.uk": [13181], "www.get-digital.nl": [6685], "service-portal.web.cern.ch": [2632], "www.guru3d.com": [7152], "abbo.tt": [2053], "store.ubnt.com": [17363], "svc079.wic859dp.server-web.com": [5411], "g.ohohoh.org": [2053], "subrosa.io": [15818], "lists.apc.org": [1329], "www.lrz.eu": [9396], "primesecoenergie.com": [13288], "q.huhapp.com": [2053], "www.regalii.com": [13959], "www.boomerang.com": [2262], "dcand.us": [2053], "mczn.ca": [2053], "xavier.worldcat.org": [18748], "b2.hitravel.xyz": [2053], "analytics.trafficfactory.biz": [16924], "php.radford.edu": [13745], "carsgui.de": [2053], "sv.inco.com.sv": [2053], "s13.cnzz.com": [3391], "on.merkur.de": [2053], "aumdn.es": [2053], "snider.io": [2053], "pusdk12.illuminateed.com": [20430], "controlpanel.gradwellcloud.com": [7012], "mtsu.worldcat.org": [18748], "gmo.jp": [6462], "webservices.amazon.co.jp": [19364], "linuxtv.org": [9576], "lawstudent.cf.ac.uk": [2895], "www.datenschutz-ist-buergerrecht.de": [4296], "autodiscover.yandex.com": [18956], "*.mobileenterprise360.com": [10687], "telenor.se": [16349], "forsec.nl": [6169], "www.fattorrents.ws": [21709], "www.emjcd.com": [3546], "mefd.tv": [2053], "trustworthyinternet.org": [17075], "www.simtechdev.ru": [21454], "feedback.aol.com": [361], "www.twoseventy.net": [17176], "www.snapitoff.nus.org.uk": [20964], "www.poste-impresa.it": [13190], "www.whiteout.io": [18554], "www.opengl.org": [12137], "zona.skylink.sk": [15183], "scrap.re": [2053], "twitpic.com": [17166], "epayments.aylesburyvaledc.gov.uk": [19468], "francais.istockphoto.com": [20505], "www.theladbiblegroup.com": [21703], "www.gunosy.com": [7151], "pod.ro.lt": [2053], "shibboleth2.lsbu.ac.uk": [9252], "my.jh.edu": [8582], "wkit.co": [2053], "www.caddyserver.com": [2771], "url.devel.sa": [2053], "downloads.ohiobar.org": [11962], "rpr.me": [2053], "ptgmedia.pearsoncmg.com": [12717], "gpz.me": [2053], "truetrophies.com": [17051], "ngvpn31.nvidia.com": [11174], "bbs.linuxdistrocommunity.com": [9581], "neiqiu.meituan.com": [10405], "s2.percona.com": [12769], "gradawards.sfu.ca": [14893], "sbpr.es": [2053], "www.entagroup.com": [5391], "community.alumni.harvard.edu": [7351], "forms.westoxon.gov.uk": [18517], "mk.cx": [2053], "tahoeti.me": [2053], "proxxy.site": [21709], "www.streammygame.com": [15773], "canvasndecor.com": [2874], "intrepidusgroup.com": [8448], "*.tuwien.ac.at": [18000], "sba-research.org": [14318], "searchmu.es": [2053], "naiin.com": [11201], "www.healthyeater.com": [7403], "crv.im": [2053], "stfan.co": [2053], "mizzma.in": [2053], "to.dmus.fr": [2053], "cncr.me": [2053], "2.dopa.mn": [2053], "www.ti.to": [16677], "ccdcoe.org": [2603], "m.hushmail.com": [7777], "courrielweb.videotron.ca": [17992], "www.securingthehuman.org": [14760], "www.pvac-cms.leeds.ac.uk": [17604], "veriguide4.cse.cuhk.edu.hk": [2747], "file.pt": [2053], "www.great-yarmouth.gov.uk": [20279], "login.thescottishsun.co.uk": [21717], "*.gs-media.de": [6502], "r669.pl": [2053], "*.frontier.co.uk": [6342], "doc.pfsense.org": [12819], "kinox.sg": [20597], "media.quantopian.com": [13570], "www.wiki.ed.ac.uk": [5168], "www.pfizer.com": [12822], "jsnts.co": [2053], "*.couchbase.com": [3767], "www.darkmail.info": [4231], "s.able.co": [2053], "*.overstock.com": [12375], "campbestiv.al": [2053], "static.readyflowers.com": [13853], "midnightbsd.org": [20795], "www.moneygeek.com": [20824], "ls.sportradar.com": [21540], "davedpt.com": [2053], "about.yammer.com": [18952], "showrss.info": [14989], "vba.sh": [2053], "notalwaysromantic.com": [20931], "n-kesteven-ss.achieveservice.com": [19265], "f.00f.net": [0], "www.optionbit.com": [12277], "activecollab.sandstorm.de": [14521], "www.zabbix.com": [19085], "fma.cash": [2053], "hable.pw": [2053], "s9.pimg.tw": [12890], "www.aptdeco.com": [1181], "t6.qlogo.cn": [13534], "akesu.jd.com": [8571], "jenkins.qa.ubuntu.com": [17382], "summercollege.stanford.edu": [15635], "www.bury.gov.uk": [19614], "tojarieh.com": [2053], "omtimes.co": [2053], "get.asp.net": [393], "10o3.com": [2053], "jobs.cdc.gov": [19663], "lists.openwireless.org": [12227], "anshun.meituan.com": [10405], "store.feistyduck.com": [5859], "on.bild.de": [2053], "air.lincoln.gov.uk": [9523], "suppliers.cheshire.gov.uk": [3123], "trstd.im": [2053], "devzing.com": [4499], "linq2.us": [2053], "www.mrsmcnastys.com": [10866], "*.daad.de": [6675], "datasift.me": [2053], "www.nabers.com": [11195], "hcu.link": [2053], "jackson-it.de": [8632], "repozitar.cz": [14021], "on.ncaa.com": [2053], "vkc.kk.dk": [8883], "www.picload.org": [12873], "lewlife.net": [2053], "www.kam.vutbr.cz": [17814], "hds.nerc.ac.uk": [11289], "static.gosquared.com": [6909], "bukowski.in": [2053], "who.wildwestdomains.com": [18599], "dns.norton.com": [11703], "forums.wesnoth.org": [18500], "*.cibc.com": [2658], "*.micgadget.com": [9909], "www.pantherexpress.net": [2618], "rv-l.com": [2053], "l.icetravel.xyz": [2053], "sherwa.re": [2053], "obsssd.co": [2053], "migros.ch": [10566], "ads.integral-marketing.com": [8352], "shevibe.com": [14937], "mytp.info": [2053], "lirias.kuleuven.be": [8969], "vir.sch.bme.hu": [1570], "uw.edu": [17355], "nilk.es": [2053], "drinkju.st": [2053], "usarug.by": [2053], "nhattao.com": [11570], "code.dlang.org": [19930], "vir.link": [2053], "kijkfoto.nl": [2053], "crypto.di.ens.fr": [5029], "itne.ws": [2053], "a.wattpad.com": [18303], "exklusiv.web.de": [18347], "*.cosmosmagazine.com": [2697], "homepages.th-mittelhessen.de": [16064], "image.migros.ch": [10566], "secure.thedungeons.com": [16452], "omakaseweb.com": [11986], "www.knappschaft.de": [9092], "*.airbnb.it": [788], "www.minetrack.me": [20799], "choopa.com": [3160], "evn.am": [2053], "s.wiadomoto.pl": [2053], "tx.meituan.com": [10405], "*.stpete.usf.edu": [17561], "wallace.sc": [2053], "recruiting.jobcorps.gov": [20544], "help.douban.com": [4802], "t.ulaan2015.com": [2053], "duolink.co": [2053], "f1gate.co": [2053], "www.westberks.gov.uk": [22005], "www.tmall.com": [21748], "policies.usc.edu": [17564], "ez-web-hosting.com": [5099], "federalregister.gov": [5829], "tangshan.jd.com": [8571], "static1.boligportal.dk": [2244], "www.owlfolio.org": [12384], "ls.ayucs.net": [2053], "www.spiceworks.com": [15517], "go.website99.ml": [2053], "chroni.cl": [2053], "extranet.ikoula.com": [8112], "tfws.co": [2053], "navut.cz": [11194], "beta.talky.io": [16189], "on.gricizgi.com": [2053], "www.bapco.com": [1529], "powys.moderngov.co.uk": [20816], "*.profile.live.com": [9644], "adrz.ml": [2053], "kpa.co": [2053], "junan.meituan.com": [10405], "feeder.livingsocial.com": [9679], "uds.ubuntu.com": [17382], "alpn.gl": [2053], "developer.appear.in": [1153], "media.8ch.net": [234], "terasic.com.tw": [16214], "icanhazip.com": [8053], "www.telford.gov.uk": [21675], "www.hostgator.com": [7655], "s.dnld.mobi": [2053], "access.leeds.ac.uk": [17604], "www.adblockbrowser.org": [19287], "thinkpad.com": [9409], "omnirom.org": [11998], "www.add.org": [19289], "www.pensionsmyndigheten.se": [12752], "f7.chaucanh.net": [2053], "bpe.georgetown.edu": [6668], "karzer.uni-goettingen.de": [17451], "ssimag.es": [2053], "bitly.com": [2051], "multiconex.net": [2053], "b.bwieg.us": [2053], "jro.pe": [2053], "www.gdr-meso.phys.ens.fr": [5029], "hbt.buzz": [2053], "01ze.it": [2053], "southcentral-kctcs.edusupportcenter.com": [20012], "s.418.be": [2053], "desa.link": [2053], "rosebakes.co": [2053], "wpar.co": [2053], "youtube.com.hr": [19016], "*.gymglish.com.br": [7167], "youtube.com.hk": [19016], "drspree.de": [2053], "www.sonycsl.co.jp": [15397], "centr.ec": [2053], "app.zuno.eu": [19078], "hydra.aufbix.org": [1403], "flnt.rehab": [2053], "www.ace-analyzer.com": [507], "markmonitor.com": [10167], "piratepartei.lu": [21134], "help.livingsocial.com": [9679], "www.li.ru": [9648], "help.riseup.net": [14133], "go.elhashif.net": [2053], "cdy.pm": [2053], "afiliados.amazon.es": [19370], "lawgeex.com": [9330], "track.adform.net": [625], "via.bcarr.me": [2053], "mfc.unizar.es": [17643], "cnrg.link": [2053], "infopaginas.com": [8263], "zagat.bz": [2053], "mkt.tips": [2053], "choquecultural.catracalivre.com.br": [2967], "api.yokl.com": [18996], "aggemam.dk": [763], "l.eka.pw": [2053], "docs.wpstartbox.com": [15659], "ds.aupho.to": [2053], "braincert.org": [2322], "link.idig.la": [2053], "gsmhosting.com": [7119], "corporatecardapplication.com": [3749], "www.pokerstarsapps.com": [21162], "fm.ozonico.ca": [2053], "3k8.in": [2053], "cbcrypt.org": [2580], "ktzr.us": [2053], "ksp.mff.cuni.cz": [20621], "beacon.worldcat.org": [18748], "cfr.georgetown.edu": [6668], "a5.chaucanh.net": [2053], "a.j7.no": [2053], "mnstrs.co": [2053], "webmail.active24.cz": [19276], "store.kaspersky.com": [8958], "singh.social": [2053], "sifomedia.citypaketet.se": [3255], "www.bitsquare.io": [2072], "go.alzanki.com": [2053], "www.digitalbond.com": [4563], "culture.zomato.com": [19208], "cadzow.net.au": [2053], "paradoxplaza.com": [12591], "wlc.alibaba-inc.com": [19342], "p.extrahint.net": [2053], "glerups.dk": [6830], "www.bitdrift.org": [2040], "www.centerforrights.org": [3008], "libsyn.com": [9482], "www.frugalware-art.org": [21006], "rgplu.us": [2053], "*.fourdo.com": [178], "go.megc.pt": [2053], "web.chip-chap.com": [3144], "*.berlin.de": [1843], "on.adampeer.com": [2053], "experiments.sparanoid.com": [21523], "contenta.mkt1710.com": [15047], "mymail.asus.com": [397], "liukocyte.tv": [2053], "go.foltz.me": [2053], "discv.co": [2053], "blackboardhelp.usc.edu": [17564], "connect.wilmerhale.com": [18619], "blog.korelogic.com": [9136], "booksroar.com": [2053], "comparis.ch": [3577], "propellerpops.com": [13384], "piwik.derpy.me": [4462], "enrollmentcenter.medicare.gov": [20772], "list.girlsoutwest.com": [6787], "centra.mn": [2053], "oskuro.net": [12325], "azar.im": [2053], "oadeposit.wellcome.ac.uk": [22001], "nate.in": [2053], "communities.adobe.com": [655], "mu.sstools.co": [2053], "cbpg.ca": [2053], "vcpl.me": [2053], "www.accesstojustice.gov.au": [493], "csub.co": [2053], "tci.to": [2053], "*.vanilladev.com": [17851], "videogold.de": [17979], "see.rallydm.com": [2053], "careers.dpd.co.uk": [19956], "affiliate.law.yale.edu": [18946], "wiki.freeswitch.org": [6247], "stableit.ru": [21558], "sso.jetbrains.com": [8708], "otak.hu": [2053], "internetsafetyproject.org": [8422], "l.tesbihane.org": [2053], "webchat.pirateirc.net": [12926], "65.181.183.157": [4779], "trstp.io": [2053], "si.libreoffice.org": [9471], "piwik.avm.de": [1493], "www.abosgratis.de": [461], "imi.is": [2053], "elev8links.com": [2053], "full30.com": [20185], "du.itunes.apple.com": [1160], "l.kyle.media": [2053], "www.jboss.com": [8564], "blogpris.co": [2053], "vultr.com": [18169], "45sp.in": [2053], "cwn.link": [2053], "go.sellmojo.com": [2053], "cfp.me": [2053], "news.ncsu.edu": [11690], "webmail.webstyle.ch": [18455], "devcentral.f5.com": [5659], "www.stonewall.org.uk": [21580], "exex.link": [2053], "whatsmydns.net": [18534], "eatveggi.es": [2053], "apmne.ws": [2053], "syrcrun.ch": [2053], "busting.in": [2053], "www.umbel.com": [17425], "compare.aliexpress.com": [847], "s.swiftypecdn.com": [15942], "spritesmods.com": [15568], "langne.se": [2053], "cups.org": [2749], "emrgncy.net": [2053], "beta.domainskate.com": [4747], "www.corvisacloud.com": [3756], "darl.ink": [2053], "discussion.evernote.com": [5556], "www.mtailor.com": [9969], "ww.v-hotels.com": [2053], "gfty.in": [2053], "hillaryclinton.com": [7549], "sysprovide.de": [21639], "csb.link": [2053], "scientificlinux.org": [14628], "piratemedia.net": [12931], "services.amazon.fr": [19371], "s.benj.io": [2053], "mghty.io": [2053], "ugc.taobao.com": [16206], "lipreading.org": [9601], "youtube.jo": [19016], "www.dante-analytics.net": [4078], "kentico.com": [9007], "element.yandex.com.tr": [18954], "videodirect.amazon.com": [952], "alumni.law.ox.ac.uk": [17557], "speedppc.com": [15503], "www.folkets.dk": [6103], "cognition.plymouth.ac.uk": [13055], "revenuesbenefits.rossendale.gov.uk": [14206], "sedran.net": [2053], "go.lgic.co": [2053], "imgssl.constantcontact.com": [3657], "yawnbox.com": [18969], "libproxy.aalto.fi": [428], "mobile.united.com": [17498], "sqlite.org": [14401], "bellinghamschools.org": [1819], "experian.com": [5615], "www.userscape.com": [17723], "marketo.com": [10180], "linux-magazin.de": [9553], "110-b.360.cn": [130], "popk.co": [2053], "kadml.tk": [2053], "ttm.ag": [2053], "sfgate.findnsave.com": [5951], "canvas.andover.edu": [12835], "s3.parature.com": [12602], "lizaona.ir": [2053], "cubby.com": [3980], "pravobraz.ru": [21189], "tumen.rt.ru": [13703], "i.monk.co.in": [2053], "cpnwz.us": [2053], "ekomi.*": [5020], "secure.voyage-prive.com": [18152], "staging.lubswww.leeds.ac.uk": [17604], "forums.lenovo.com": [9409], "geoti.me": [2053], "ad.iqt.io": [2053], "u.lapunt.cat": [2053], "bline.derbyshire.gov.uk": [19895], "online.americanexpress.com": [972], "webassign.net": [18351], "wimo.com": [18575], "partnernet-temp.symantec.com": [15969], "s.ttc.im": [2053], "f35.com": [5655], "hauke-m.de": [7372], "vendors.paddle.com": [12528], "en-gb.loak.org": [2053], "lexusoftulsa.us": [2053], "on.tz.de": [2053], "britannica.com": [2390], "inside.com": [8314], "kuther.net": [9199], "ssl.hu": [2053], "cimg.filemobile.com": [5915], "www.hupstream.com": [7771], "*.truecrypt.ch": [17042], "9seeds.com": [245], "form.lt": [2053], "awn.how": [2053], "static.symanteccloud.com": [15969], "cloudlinux.com": [3349], "getninj.as": [2053], "nydailynews.com": [11179, 11180], "url.busam.trade": [2053], "wiki.hacdc.org": [7264], "ppc.ipswich.gov.uk": [8499], "collaborateext.verizon.com": [17918], "*.surveymonkey.com": [15914], "online.aberdeencity.gov.uk": [450], "foryoutou.se": [2053], "ja-sig.org": [8670], "z.sopov.org": [2053], "ensighten.com": [5388], "marias.menu": [2053], "j-w.link": [2053], "peterborough.gov.uk": [12806], "m.2345.com": [87], "contrainfo.espiv.net": [20058], "uk.logmein.com": [9711], "sit.fraunhofer.de": [6230], "hyprch.nl": [2053], "v-dem.net": [21888], "rj1.pw": [2053], "go.twinset.com": [2053], "photomath.net": [12852], "lukeri.ch": [2053], "tenderapp.com": [5032], "saniha.ch": [2053], "coinsquare.io": [3473], "centerlinebeta.net": [3012], "u.bpratik.in": [2053], "sickbits.net": [15004], "scripts.omniture.com": [12002], "shmtraveler.com": [2053], "i7.c.dk": [2556], "www.rareconnect.org": [13800], "visualidentity.georgetown.edu": [6668], "app.shareconnect.com": [14907], "qr.canduu.mobi": [2053], "www.easterncheshireccg.nhs.uk": [11102], "*.blogspot.com.uy": [2166], "www2.bristol.gov.uk": [19592], "embeddedarm.com": [5300], "smartcity.wien.gv.at": [22025], "motm.me": [2053], "paydirekt.de": [12684], "www.youtube.com.co": [19016], "r.troop1998.com": [2053], "*.witopia.net": [18576], "gtcsonline.mycashflow.fi": [6511], "mm.derevents.de": [2053], "g5r.co": [2053], "pirate.trade": [21711], "fp5.in": [2053], "netswarm.net": [11444], "sa.ed.gov": [4988], "utsystem.edu": [17570], "www.xetra.com": [18868], "www.skytal.es": [21473], "www.livezilla.net": [9660], "www.littlesvr.ca": [9639], "www.ovh.cz": [12378], "albbd.de": [2053], "stvnst.at": [2053], "vip.vetbiz.gov": [17297], "voting.pirateparty.org.au": [12929], "budgetkredit.ch": [2451], "blackboard.caltech.edu": [2815], "r.ixis.co.uk": [2053], "2edu.de": [2053], "go.music.com.bd": [2053], "everydayhealth.com": [5559], "gtphoto.me": [2053], "g.jessedavis.me": [2053], "omsk.rt.ru": [13703], "sakh.com": [21360], "jabbi.pl": [8627], "flendr.net": [2053], "moderngov.lambeth.gov.uk": [20630], "es-us.perryellis.com": [12792], "mir-politika.ru": [20803], "tools.manageengine.com": [10103], "anb.com.sa": [353], "shutte.rs": [2053], "*.causes.com": [2968], "bgpmon.net": [1554], "tryprocleanse.com": [10989], "cusosp.com": [2053], "cathaypacificcargo.com": [2963], "lolla.in": [2053], "pkso.so.ch": [21629], "coham.osu.edu": [11959], "*.rascal999.co.uk": [21259], "s.d2h.net": [2053], "beiyong.ncar.cc": [20879], "*.spreadshirt.com": [15552], "youhui.95516.com": [240], "3.bp.blogspot.com": [2160], "pokylinux.org": [13082], "loot.lt": [2053], "rimg07.rl0.ru": [14147], "vatican.usembassy.gov": [21879], "health.mail.ru": [10040], "ybitcoinmagazine.com": [18916], "www.kubuntuforums.net": [9181], "itselfservice.plymouth.ac.uk": [13055], "tontonroger.org": [6214], "u.sw4.de": [2053], "en.curtar.cu.cc": [2053], "blnkd.co": [2053], "www.acromediainc.com": [519], "www.ucc.ie": [17210], "www.gazellegames.net": [20211], "gramsflow.com": [7015], "oauth.mts.ru": [20846], "www.avantar.com": [1481], "help.hbonow.com": [20324], "*.northclicks.com": [11692], "epsilon-telecom.de": [5433], "w.kuruc.org": [9198], "myatos.mobi": [2053], "*.stayfriends.de": [15698], "www.magnum-ci.com": [20736], "www.tron-delta.org": [16110], "picard.linux.it": [8533], "s.grumpa.me": [2053], "frzt.us": [2053], "g.sar.gent": [2053], "aloh.as": [2053], "b2b-assets.glassdoor.com": [6823], "cot.food.gov.uk": [20142], "meltin.net": [10415], "gateway.ncl.ac.uk": [11073], "gh.meituan.com": [10405], "english-country-cottages.co.uk": [18790], "dutchdpa.nl": [4910], "www.thinkculturalhealth.hhs.gov": [7192], "ehoiva.fi": [19982], "o-zone.vanco.co.uk": [17848], "kitchenriddles.com": [9073], "www.martus.org": [10199], "bazaar.tf": [1756], "www.data.gov": [4253], "faststream.civilservice.gov.uk": [19721], "www4-static4.gog.com": [6482], "ad.where.com": [18537], "s.kevn.de": [2053], "hosting.1und1.de": [82], "fnapo.li": [2053], "sctt.xxx": [2053], "pqn.me": [2053], "s.frogi.co.il": [2053], "go.chiam.me": [2053], "autohits.vn": [1452], "slf.li": [2053], "img.luukku.com": [20730], "consult.defra.gov.uk": [4391], "mofobian.com": [10718], "secure-resumption.com": [14728], "eio.io": [2053], "zheleznovodsk.beeline.ru": [1801], "845a.co": [2053], "login.naplesnews.com": [11224], "signup.socialsecurity.gov": [15308], "r-f.co": [2053], "www.assessment.sia.homeoffice.gov.uk": [20355], "www.yelpblog.com": [22098], "pinpo.it": [2053], "lecture2go.uni-hamburg.de": [17229], "digitop.nal.usda.gov": [17495], "secure.fortuneaffiliates.com": [6180], "onward.st": [2053], "computer-bild.de": [19767], "dxdialog.wusm.wustl.edu": [18290], "landfill.bugzilla.org": [2466], "learnup.co": [2053], "www2.gajim.org": [6523], "go.cinco45.com": [2053], "photosynth.net": [12861], "uklz.info": [2053], "webmail.htwk-leipzig.de": [7736], "cbfp.eu": [2053], "gfx.dbtv.no": [19867], "www.dailyhiit.com": [4192], "printchomp.com": [13296], "dl.ruptur.co": [2053], "ssl.lidl.co.uk": [20682], "irex.org": [20497], "yandex.ua": [18961], "tchkr.us": [2053], "ads.glassdoor.com": [6823], "unrealitytv.co.uk": [17653], "hnnh.info": [2053], "dox4.me": [2053], "hosting9000.com": [7672], "api.justgiving.com": [8845], "newsela.com": [20901], "s.mil.ru": [2053], "community.lincolnshire.gov.uk": [9525], "mail.anadolu.edu.tr": [1025], "*.cl.ly": [3265], "www.ccrjustice.org": [2608], "v015.ax2600ab.omdx.uprr.com": [21870], "reup.today": [2053], "aukcie.ludialudom.sk": [9816], "i.rchb.sh": [2053], "user.ipip.net": [20490], "toh.fyi": [2053], "zifei.amap.com": [19360], "www2.youm7.com": [19021], "f1.success.mindtouch.com": [10596], "cornell.worldcat.org": [18748], "blog.opengroup.org": [18730], "ailink.me": [2053], "dsp.bidtellect.com": [1901], "wiki.wxwidgets.org": [22072], "erics.tv": [2053], "marya.ms": [2053], "bflow.security-portal.cz": [14763], "www.kastatic.org": [9025], "redandblackumbrella.squat.net": [21549], "api.coursera.org": [3788], "www.fmod.org": [6084], "krita.org": [9165], "mkin.mobi": [2053], "*.thinkingchristian.net": [16633], "covad.com": [3793], "ik.apps123.com": [2053], "*.myheritage.es": [11023], "susanmb.me": [2053], "files.zone": [2053], "www.wrzru.com": [22057], "coatofar.ms": [2053], "zemt.io": [2053], "benj.mn": [2053], "*.iapc.nl": [20416], "underground-gamer.com": [17439], "foss.in": [5700], "nicek.io": [2053], "uscma.cc": [2053], "jdgaby.us": [2053], "i.mhj.tc": [2053], "www.tenpay.com": [16376], "ask.openmrs.org": [12150], "support.noblehour.com": [11641], "rentalpro.zillow.com": [19181], "www.modernpgp.org": [10709], "ak.chaucanh.net": [2053], "lws.co": [2053], "robbiejwood.com": [2053], "quattro.ly": [2053], "mynxt.info": [10961], "aber.ac.uk": [453], "20fab.com": [2053], "metrica.yandex.com.tr": [18954], "www.lscpt.ch": [20721], "id.scene.org": [8417], "akademy2013.kde.org": [8871], "link.burge.im": [2053], "crumb.cc": [2053], "franziskawellner.de": [6223], "ru.pcisecuritystandards.org": [12428], "video.rakuten.co.jp": [13767], "nxtbnk.com": [2053], "lynd.it": [2053], "www.tt.se": [16121], "companyaccount.kaspersky.com": [8958], "event.kmd.dk": [20611, 20612], "knowledgeblog.org": [9100], "dev.mashery.com": [10210], "go.omreddy.com": [2053], "www.thetinhat.com": [16585], "lib.debug.so": [2053], "sm.stanford.edu": [15634], "es.isidewith.com": [20414], "wyn.gp": [2053], "www.greyhole.net": [7072], "comodo.com": [3569], "go.saves.co": [2053], "rckt.co": [2053], "lott.ie": [2053], "s.startown.tw": [2053], "www.exoclick.com": [5608], "my.m.taobao.com": [16206], "www.jpfox.fr": [8802], "www.pcper.com": [21094], "utorrent.com": [21831], "no1366.org": [11635], "sendspace.com": [14828], "derbyshiremaps.derbyshire.gov.uk": [19895], "haian.meituan.com": [10405], "www.streamline.com": [21588], "tuah.fyi": [2053], "www.gifyo.com": [6763], "icracked.com": [7849], "webmail.usainteanne.ca": [21877], "barrstg.co": [2053], "www.pilgrimagesoftware.com": [12886], "appb.us": [2053], "tongji.cnzz.com": [3391], "www.rossulbricht.org": [14205], "www.bitcoinwisdom.com": [2024], "touch.groupon.com": [7100], "budgetgolf.se": [2450], "www.axosoft.com": [1517], "pgsql.cesky-hosting.cz": [19680], "checkout.stripe.com": [15781], "link.kplr11.com": [2053], "cloud-video.unrulymedia.com": [21862], "wiki.jqueryui.com": [8600], "dlydrp.com": [2053], "www.americanenglish.state.gov": [17345], "www14.software.ibm.com": [7821], "studentreports.andover.edu": [12835], "www.odesk.by": [11923], "smallbusiness.verizon.com": [17918], "net-backup.com": [11365], "shop.linux-magazin.de": [9553], "nfb.org": [11285], "mspik.es": [2053], "go.2checkout.com": [99], "abytx.co": [2053], "privacyfix.com": [13319], "stak.ly": [2053], "www.socialboxusa.com": [15305], "www.leics.police.uk": [9398], "dav-i.es": [2053], "www.nmap.org": [11627], "opnw.at": [2053], "esr.cc": [2053], "www.thamesvalleyalert.co.uk": [21686], "www.arturkim.com": [1271], "www.emas.portsmouth.gov.uk": [21175], "mycampus.hslu.ch": [7728], "www.investorflow.com": [15044], "in.myblogs.pw": [2053], "pci.im": [2053], "cdn.pictimgs.com": [3993], "marshall.usc.edu": [17564], "www.digifense.com": [4560], "a1-images.myspacecdn.com": [11037], "selfserve.hants.gov.uk": [7328], "www.resortpro.net": [14044], "www.geekhack.org": [6623], "vaclin.com": [2053], "w.cdnwp.com": [2617], "ape.st": [2053], "resources.mit.edu": [9915], "expert.yandex.com": [18956], "mapc.ma": [2053], "toulouse.squat.net": [21549], "sland.site": [2053], "gilopez.mx": [2053], "doppler.paas.uninett.no": [17477], "c1.atdmt.com": [10540], "hws.uchastings.edu": [17219], "sertolovo.beeline.ru": [1801], "www.noao.edu": [11242], "onlineadmissions.northyorks.gov.uk": [20930], "upcmail.upc.ie": [17279], "*.jubii.dk": [8811], "merr.me": [2053], "go.esucces.dk": [2053], "wpenginestatus.com": [18220], "deis.com": [4397], "museum.php.net": [12453], "s1b.tv": [2053], "sfwmd.link": [2053], "go.b1sat.com": [2053], "www.openleaks.org": [12146], "unomaha.worldcat.org": [18748], "www.onebillion.org.uk": [12053], "jay.pub": [2053], "www.atbank.nl": [398], "providerportal.communitycares.com": [19762], "posti.fi": [21178], "gentoo.zugaina.org": [19238], "www.consultations.southwark.gov.uk": [15445], "www.zerotier.com": [19159], "www.freecause.com": [6277], "fordela.com": [6139], "tmmy.us": [2053], "*.cgc.gov.au": [3558], "by.12sm.us": [2053], "stec-t09.xhcdn.com": [18815], "www.pfsense.org": [12819], "aaronbrotherscircular.com": [431], "bstrdchld.co": [2053], "my.jdownloader.org": [20531], "skillsfundingagency.bis.gov.uk": [17243], "console.appnexus.com": [1148], "www.costco.com": [3762], "palliativefellowship.stanford.edu": [15635], "adbit.co": [555], "myid.threema.ch": [16668], "floatinghospital.org": [6050], "www.mivacentral.com": [10652], "www-static.dreambox.com": [19959], "kraze.me": [2053], "dr.pe": [2053], "www.ikoula.com": [8112], "to.mher.pro": [2053], "sierracollege.starfishsolutions.com": [21565], "www.sfsite.com": [14348], "u.najafiali.com": [2053], "www.backstreetmerch.com": [1645], "gu.gd": [2053], "yangling.meituan.com": [10405], "bigv.io": [1908], "www.ipgmail.com": [7939], "joinnra.nra.org": [20943], "www.iono.fm": [8489], "wsharks.com": [2053], "www.sas.kaspersky.com": [8958], "soc.tl": [2053], "health.unian.ua": [21851], "digikeytest.digikey.de": [4552], "ehs.wustl.edu": [18290], "f1.a1le.bz": [2053], "jxself.org": [8856], "sc.dealtime.com": [4332], "*.thesecuritypractice.com": [16576], "mail.ohns.stanford.edu": [15635], "runl.me": [2053], "*.fcns.eu": [6341], "enbs.dict.cc": [4536], "tutorcom.vc": [2053], "tnee.me": [2053], "*.ohsocool.org": [11957], "*.miranda-im.org": [10631], "aanc.me": [2053], "step.state.gov": [17345], "jeja.pl": [8698], "www.movie4k.me": [10824], "francetv.in": [2053], "image.captchas.net": [2883], "beefymiracle.org": [1799], "smetrics.ikea.com": [8108], "www.contribs.org": [3686], "sanmenxia.1688.com": [44], "www.picnichealth.com": [12874], "www.gficloud.com": [6438], "ecn.dev.virtualearth.net": [18046], "yahoo.com": [18942], "consumerreports.org": [3665, 3668], "www.qntm.org": [21241], "portal.cyberplat.ru": [4047], "security-master.debian.org": [4352], "*.csc.gov.au": [3559], "tr.pcisecuritystandards.org": [12428], "cfg.im": [2053], "deu.gd": [2053], "docs.feide.no": [5858], "indm.us": [2053], "klastele.com": [2053], "img0.thejournal.ie": [16490], "rgau.uk": [2053], "reflected.net": [13950], "telegram.me": [16336], "fehlersuche.spiel.tivi.de": [22127], "sta.travel": [2053], "pref.walsall.gov.uk": [21971], "sov.mn": [2053], "ukpayments.org.uk": [17254], "wpgr.es": [2053], "www.advent.com": [693], "www.smartftp.com": [15233], "feedback2.yandex.kz": [18957], "opensource.mail.ru": [10040], "www.adsupply.com": [583], "*.snolab.ca": [15830], "hastings.firmstep.com": [20124], "wiki.cites.illinois.edu": [17544], "wpad.leeds.ac.uk": [17604], "m.lenta.ru": [20661], "blog.verslu.is": [17927], "track.courierpost.co.nz": [3784], "4dm.in": [2053], "www.reethus-adeline.de": [13946], "yelp.fi": [18979], "shareholder.ru": [14923], "xdomain.ne.jp": [18854], "pharmacievirtuelle.pha.ulaval.ca": [17515], "www.gottman.com": [6985], "qubes-os.org": [13574], "meta.stackoverflow.com": [15611], "www.ipse.co.uk": [7944], "pbi.bz": [2053], "www-group.slac.stanford.edu": [15635], "happiness.bufferapp.com": [2459], "xsla.me": [2053], "f1.blick.ch": [2125], "www.satsymposium.org": [14314], "dchs.worldcat.org": [18748], "www.recon.cx": [13650], "csc.hetnet.nl": [8896], "tung.ly": [2053], "scriptmp3.com": [14666], "mindleaking.org": [20798], "theduk.es": [2053], "dch.to": [2053], "id.guardian.co.uk": [7128], "base64decode.org": [19492], "fitness-tips.pw": [2053], "static-sls.smf.aws.sanomacloud.net": [21369], "go-mtd.cu.cc": [2053], "democracy.canterbury.gov.uk": [2870], "dashboard.longtailvideo.com": [9752], "portlandonline.com": [3254], "hosting.cz": [20364], "visitbam.org": [2053], "m.musicinfo.co": [2053], "screencraft.org": [14649], "kingston.usembassy.gov": [21879], "blog.xenproject.org": [18859], "on.ewi.ngo": [2053], "i3.hdslb.com": [20327], "spellbind.in": [2053], "certification.canonical.com": [2869], "images.wambacdn.net": [18265], "store.taobao.com": [16206], "nsfwcorp.com": [11747], "r3r.co": [2053], "www.mercyships.org.s3.amazonaws.com": [10457], "wiki.hfo-telecom.de": [7187], "secure-donor.com": [14725], "tlkto.me": [2053], "support.curated.co": [3995], "*.forgottenlands.eu": [6156], "nl.canon.be": [2868], "acromediainc.com": [519], "*.amsa.gov.au": [1434], "tacoda.at.atwola.com": [358], "www.bspb.ru": [2435], "sogo.uv.es": [17750], "help.filefactory.com": [5904], "in.rbth.com": [21267], "rrlead.us": [2053], "wp.mail.qq.com": [13514], "assets.theatlantic.com": [16512], "gourl.io": [6915], "m1st.be": [2053], "adserver.juicyads.com": [8819], "matte.in": [2053], "on.chirrup.com": [2053], "mfb.im": [2053], "*.rackcdn.com": [13730], "static.owncloud.com": [12386], "support.infinet.com.au": [8242], "dashboard.rapidleaf.com": [13791], "www.heg.co.uk": [7646], "static.media.smithsonianmag.com": [15255], "*.cspforum.eu": [2734], "box.gb.com": [2053], "sstk.co": [2053], "viamont.es": [2053], "seed.stanford.edu": [15635], "linuxmint.com": [20700], "gm.meituan.com": [10405], "*.jawbone.com": [8681], "*.comcourts.gov.au": [3556], "thejournal.ie": [16490], "wrv.pw": [2053], "b.ptstyle.biz": [2053], "secpriv.wusm.wustl.edu": [18290], "esd.mit.edu": [9916], "rntr.us": [2053], "www.binera.de": [7349], "its-prod-www2-2.ucsc.edu": [17591], "gamehouse.com": [6539], "www.neocities.org": [11340], "thinglink.com": [16624], "status.greenqloud.com": [7046], "account.rovio.com": [14222], "batuki.ca": [2053], "ptphu.net": [2053], "bulletproofexec.com": [2475], "flem.in": [2053], "nuclearcat.com": [11766], "www.cpanel.net": [2710], "mansfield.osu.edu": [11959], "bizapp.xyz": [2053], "jotm.rocks": [2053], "effusion.co.uk": [20014], "lists.princeton.edu": [13291], "*.bundanon.com.au": [2482], "na1.www.gartner.com": [6580], "xagyl.com": [18801], "www.live.bbc.co.uk": [19500], "s131.cnzz.com": [3391], "telecolumbus.com": [16329], "grasswire.com": [7024], "ted.ly": [2053], "userapi.com": [21881], "1101.jp": [2053], "shop.mcafee.com": [10282], "www.cxense.com": [2753], "ox-d.openxadexchange.com": [12196], "forum.subterraneangames.com": [15822], "go.nwlb.us": [2053], "poc.anthem.com": [19395], "loopte.ch": [2053], "cine.ws": [2053], "coopstats.com": [2053], "effect.ly": [2053], "www.kuro5hin.org": [9196], "kiwibyrd.org": [20605], "www.finanstilsynet.dk": [5947], "mir.wustl.edu": [18290], "happyk.at": [2053], "finanstilsynet.dk": [5947], "svnweb.cern.ch": [2632], "techiebud.me": [2053], "xirr.us": [2053], "www.tescocompare.com": [16398], "gambling-affiliation.com": [7880], "www.directbox.biz": [4613], "opn-asmb.ly": [2053], "api3.geo.admin.ch": [21629], "grace.clinic": [2053], "www.industrymailout.com": [8227], "cdn.dota2.com": [4792], "*.openskillz.com": [21007], "vidadememe.tk": [2053], "www-jp.mysql.com": [10970], "commbank.com.au": [3542], "my.uw.edu": [17355], "home.1und1.de": [82], "conference2004.kde.org": [8871], "stats.opkode.com": [12259], "surreyoutdoorlearning.uk": [21614], "stratford.gov.uk": [21586], "www.telesign.com": [21672], "mndbncs.co": [2053], "emeastr.at": [2053], "www.bgpstream.com": [1553], "www.metapress.org": [10477], "tdsne.ws": [2053], "www.tug.org": [16246], "a3.lscdn.net": [9256], "ecologylab.net": [8394], "itcan.me": [2053], "hotels.com": [7699], "www.ujd.gov.sk": [15217], "www.cesiumjs.org": [3033], "yay.pw": [2053], "www.facebook.fr": [5736], "piratebay.ukbypass.online": [21771], "www.flickr.com": [6034], "landingpage.maxon.net": [10263], "a.pikof.com": [2053], "www.childrenscommissioner.gov.uk": [19704], "bafs.blue": [2053], "cmon.co": [2053], "abwrs.co": [2053], "directory.eoportal.org": [5417], "munin.videolan.org": [17981], "pitstop.manageengine.com": [10103], "dwncff.com": [2053], "ps.tietuku.com": [16704], "istyl.es": [2053], "hazen.gl.ciw.edu": [2916], "*.rylwarfare.net": [13717], "socitmreporting.govmetric.com": [6993], "ch.dcpndsgn.com": [2053], "4y.de": [2053], "buhonline.ru": [19608], "www.netmundial.net": [11405], "www.mare-system.de": [9878], "www.dunkelangst.org": [4898], "lcd.re": [2053], "ealfa.ro": [2053], "ganesh.videolan.org": [17981], "help.edgar-online.com": [4991], "insider.windows.com": [18642], "u.ophir.li": [2053], "archlinux.org": [1196], "rgsbank.dengisend.ru": [4440], "openfoundry.org": [12136], "www.coochey.net": [3701], "willb.me": [2053], "*.bitnamihosting.com": [1994], "nbcu.me": [2053], "bilz.cf": [2053], "edwardsnowden.com": [5203], "cvrp.de": [2053], "alzrtr.org": [2053], "*.community.wholeliving.com": [10195], "cdn.torrents.me": [21763], "*.linuxpenguins.xyz": [20701], "l.vzfy.co": [2053], "forum.mobilism.org": [20814], "developer.gitter.im": [6806], "www.biicode.com": [1922], "gay180.com": [6595], "wiki.cacert.org": [2578], "mindea.co": [2053], "account.tagboard.com": [21649], "www.solariz.de": [21503], "shop.breakingmuscle.com": [19588], "rocksbox.com": [21323], "www.ktk.de": [8906], "www.cru-inc.com": [2718], "www.solarflare.com": [15362], "qxn.meituan.com": [10405], "nuwear.com": [11785], "www.voice.fi": [18113], "www.ztunnel.com": [19076], "cmpth.me": [2053], "clippod.com": [3329], "epa-bdcc.ornl.gov": [11892], "mfw.rocks": [2053], "comquas.com": [19769], "clmpr.gs": [2053], "uckg.info": [2053], "www.seflorida.bbb.org": [1874], "www.echo.nasa.gov": [11057], "cl1ckth1s.ml": [2053], "mail.techxpress.net": [16277], "www.freifunk-ansbach.de": [6308], "jonbilo.us": [2053], "socopm.us": [2053], "ssl-www.static.rtbf.be": [14244], "go.hsb.com": [2053], "www.pravobraz.ru": [21189], "on.flatoday.com": [2053], "myaccount.chorley.gov.uk": [19709], "css.createsend1.com": [3844], "occ.london": [2053], "stryv.in": [2053], "839iat.se": [2053], "f-feil.de": [2053], "afont.es": [2053], "biostat.wustl.edu": [18290], "www.otpdirekt.sk": [12337], "ci.popcorntime.sh": [21170], "rechten.uvt.nl": [16716], "btcgear.com": [1607], "viaforensics.com": [17950], "*.aedc.gov.au": [1425], "pass.yandex.ua": [18961], "evm.bz": [2053], "web.eecs.umich.edu": [17552], "www.jsclasses.org": [8808], "t.wmf.ms": [2053], "www.mobility.vutbr.cz": [17814], "*.redbullusa.com": [13900], "xii.ie": [2053], "dengzhou.meituan.com": [10405], "fb.com": [5814], "t.tykz.net": [2053], "ideoclick.com": [8090], "macalester.worldcat.org": [18748], "www.alternativet.dk": [924], "dh.meituan.com": [10405], "mv.treehousei.com": [16982], "ncwtv.tv": [2053], "6xth.se": [2053], "s.taiki.net": [2053], "a.drj.mx": [2053], "www.deutschepost.de": [19901], "www.allafrica.com": [19347], "www.knsaber.com": [16821], "vab.li": [2053], "www.openid.net": [12141], "kah.lt": [2053], "max-refund.com": [2053], "imagesrv.gartner.com": [6580], "drought.gov": [4868], "mcgam.es": [2053], "apps.dagbladet.no": [4183], "wesnothd.wesnoth.org": [18500], "style.news.am": [20900], "perishablepress.com": [12786], "lambdaops.com": [9291], "mrporter.com": [9952], "idento.link": [2053], "politisktinkorrekt.info": [13102], "cronometer.com": [2717], "www.external.ameslab.gov": [19384], "www.history.com": [7558], "yscn.co": [2053], "www.cloudflarechallenge.com": [3345], "investor.vanguard.com": [21894], "lh6.google.*": [6965], "fanz.ly": [2053], "blife.at": [2053], "www.kanotix.org": [8934], "www.*.anl.gov": [1222], "*.alaska.edu": [17521], "orb-international.com": [11858], "my-dw.com": [2053], "research.vt.edu": [18031], "apis.google.com": [6962], "domains.servenets.com": [14845], "*.whsmith.co.uk": [18204], "www.thunderbird-mail.de": [16673], "justwi.ne": [2053], "unitedrepublic.org": [17503], "www.batmanarkhamknight.com": [1738], "jewelosco.com": [8711], "orchid.cs.illinois.edu": [17544], "api.jwplatform.com": [8614], "www.nlayer.net": [11128], "devans.info": [2053], "*.vtcsec.ru": [17808], "url.lukchun.com": [2053], "jef.fm": [2053], "liga.sovcombank.ru": [21516], "link.to.it": [2053], "soymr.info": [2053], "auth.sandstorm.de": [14521], "www.unisend.com": [17485], "adam.law.harvard.edu": [7351], "vagrantup.com": [17822], "www.wtfuzz.com": [18228], "sp.gifts": [2053], "elimtr.co": [2053], "pvac.leeds.ac.uk": [17604], "junodownload.com": [8836], "www.kommunal.se": [9118], "my.calpoly.edu": [2806], "cf1.100r.org": [12], "tm.techmens.com": [2053], "www.imagestash.org": [8133], "diversity.mit.edu": [9914], "shop.askthebuilder.com": [1301], "www.uu.se": [17352], "vkarpinsk.info": [21932], "102.bz": [2053], "account.zanesvilletimesrecorder.com": [19100], "www.ccedk.com": [2604], "po.garstelecom.ru": [20204], "tuva.la": [2053], "*.marconisida.com": [4007], "recuperaciones.bbva.es": [1766], "skdys.com": [2053], "cashier.95516.com": [240], "passion-radio.com": [12638], "dev.kik.com": [20593], "www.baselland.ch": [21629], "traceja.de": [2053], "thedebrief.co.uk": [21696], "www.padmapper.com": [12527], "info.ornl.gov": [11892], "go.nico.is": [2053], "u.proxmts.net": [2053], "sdwl.pjtj.net": [2053], "tranphong.net": [2053], "careers.next.co.uk": [11552], "blog.userecho.com": [17722], "jth.io": [2053], "www.berkeleylug.com": [1837], "kwasi.co": [2053], "m2.quel.jp": [2053], "l.cvepdb.fr": [2053], "dev.thegreatcoursesplus.com": [16550], "syncaccess.net": [21635], "abestpremium.com": [19256], "www.irancybercrime.org": [20493], "*.thethemefoundry.com": [16584], "35d.us": [2053], "svn.freebsd.org": [6237], "www.acm.org": [299], "picnichealth.com": [12874], "www.aolcdn.com": [362], "li.lamantia.biz": [2053], "lettre-de-motivation-facile.com": [9425], "i.lv3.hbo.com": [20322], "z.nder.com.au": [2053], "www.demonoid.pw": [4436], "static.zhihu.com": [19173], "www.redstate.com": [13898], "s.nieder.me": [2053], "services.tineye.com": [16739], "images.offerpop.com": [11938], "*.storage.live.com": [9644], "www.bitlendingclub.com": [1984], "uww.me": [2053], "slz.slinez.net": [2053], "go.huje.co": [2053], "utrgv.link": [2053], "zg.ch": [21629], "unt.edu": [17555], "s.lenovo.com": [9409], "www.demonoid.ph": [4436], "ybx.yahoo.co.jp": [18944], "apps.wku.edu": [22039], "insili.co": [2053], "copy.com": [3722], "arel.io": [2053], "cgoo.se": [2053], "optionsanimal.com": [12278], "disbi.co": [2053], "remotedesktop.web.cern.ch": [2632], "buy-static.norton.com": [11703], "chartbeat.com": [3077], "es.internetessentials.com": [20477], "pair.com": [12540], "blntq.co": [2053], "www.mercatus.org": [10450], "ads.webtrends.com": [18467], "tech.zalando.de": [19094], "residenciasuniversitarias.ulpgc.es": [17411], "www.dearmummyblog.com": [19883], "wiki.github.com": [6801], "patrimoniocultural.unizar.es": [17643], "schooladmissions.northyorks.gov.uk": [20930], "van.physics.illinois.edu": [17544], "api.qrserver.com": [13515], "redf.in": [2053], "static.vg.no": [17776], "free.hands.com": [7321], "lafargeholc.im": [2053], "on.isb.ro": [2053], "linear.com": [9529], "g02.s.alicdn.com": [846], "login.mcafee.com": [10282], "p2p.alfaportal.kz": [842], "www.elgiganten.dk": [5264], "kolabnow.com": [9112], "accuvant.com": [506], "www.yourvideofile.org": [19047], "arab.tn": [2053], "api.twitch.tv": [17164], "www.edeka.de": [20006], "media.apnaindia.com": [1135], "i1.hdslb.com": [20327], "abenteuermako.tivi.de": [22127], "fooq.de": [2053], "yoursupportservices.co.uk": [19039], "gmm.to": [2053], "ssoci.al": [2053], "bitbucket.com": [2005], "uassi.st": [2053], "img3.linuxdeepin.com": [4380], "turkmenistan.usembassy.gov": [21879], "www.healthystart.nhs.uk": [11102], "ronalds.link": [2053], "www.cis.vutbr.cz": [17814], "www.caisse-epargne.fr": [2780], "www.digitaltransactions.net": [4567], "thingiverse.com": [16626], "api.yandex.com.tr": [18954], "gogoair.com": [6933], "law.cuny.edu": [3247], "secureassets.clickmotive.com": [3307], "rog.asus.com": [396, 397], "www.aphis.usda.gov": [17495], "calbt.co": [2053], "libguides.com": [9448], "hungryhowies.com": [20395], "ucenter.ttmeiju.com": [21808], "*.cashforcontracts.com": [2939], "www.glose.com": [6871], "put.io": [13485], "mim.ec": [2053], "www.divshare.com": [19928], "m.contact.yandex.com.tr": [18954], "seal.pro": [2053], "cms.executive.mit.edu": [9916], "repost.us": [14020], "www.geokrety.org": [20226], "bouncycastle.org": [2300], "0x.co": [5], "mtchmilr.me": [2053], "financing.dell.com": [4413], "tbulo.us": [2053], "www.nfb.org": [11285], "link.plair.ml": [2053], "prelaunch.techxpress.net": [16277], "t4sya.ga": [2053], "stumble.it": [2053], "nos.pt": [11710], "ndla.no": [11309], "www.linode.com": [9547], "vs6.bdstatic.com": [1662], "elements.yandex.com.tr": [18954], "*.lippu.fi": [9600], "dallon.co": [2053], "islington.greenparty.org.uk": [7052], "at.lymphy.com": [2053], "ruch.me": [2053], "eatsterling.co": [2053], "learn.flexport.com": [6029], "nutn.info": [2053], "www.uned.es": [17446], "w.w3cinc.com": [2053], "vp.lc": [2053], "flocabulary.com": [6051], "mcgrell.is": [2053], "android.git.linaro.org": [9522], "sspot.ly": [2053], "www.sedo.fr": [14787], "link.dealq.co": [2053], "www.ffa.ro.vutbr.cz": [17814], "bugparis.tuxfamily.org": [21820], "sendguide.bedford.gov.uk": [19509], "edge.ly": [2053], "doc.rust-lang.org": [14284], "unian.info": [21851], "support.sensiolabs.com": [14831], "www.lourdas.name": [9787], "ctd2.nci.nih.gov": [11241], "tunbridgewells-consult.objective.co.uk": [20979], "vicetorrent.com": [21215], "rss.imensa.de": [8136], "winzi.gs": [2053], "api.pachube.com": [12516], "chat.otalk.im": [12334], "globalsign.com.*": [6840], "www.bartbania.com": [1730], "vilnius.usembassy.gov": [21879], "blog.oneplus.net": [12041], "member-admin.neighbourhoodalert.co.uk": [20884], "go.shopvop.in": [2053], "girls4u.info": [2053], "static.exoclick.com": [5608], "txrealto.rs": [2053], "qubevu.biz": [2053], "hcstx.org": [20326], "parrable.com": [12616], "apiok.ru": [11968], "ssb.auction": [2053], "vio.ma": [2053], "www.randomhouse.biz": [13777], "dbny.us": [2053], "irrs.in": [2053], "gnuheter.com": [12986], "leit.es": [2053], "www.daringfireball.net": [4225], "weddingmovie.us": [2053], "rainm.kr": [2053], "www.nowsecure.com": [11731], "site.physics.georgetown.edu": [6668], "in.eric.pe": [2053], "jobsuche-hochschulanzeiger.fazjob.net": [5667], "itaobao.taobao.com": [16206], "www.cloudafrica.net": [3340], "b.freedoh.net": [2053], "*.elitepartner.de": [5271], "ssllin1.123-secure.com": [30], "kingstar.mobi": [2053], "ads.okcimg.com": [11970], "und.starfishsolutions.com": [21565], "zh.4.boardgamearena.com": [2219], "ymem.us": [2053], "firmy.prace.cz": [13234], "epson.com.mx": [5434], "pwnag.com": [2053], "redca.me": [2053], "mynapkin.us": [2053], "flight.baidu.com": [1661], "createwp.customer.mheducation.com": [20789], "art4mil.com": [2053], "gpc.wustl.edu": [18290], "dl5.oo-software.com": [12092], "imail.iu.edu": [8214], "bullockinc.com": [2478], "lunarmods.com": [609], "i.lsimg.net": [9663], "nw0.uk": [2053], "l.frltcs.at": [2053], "taian.jd.com": [8571], "l.undgst.co": [2053], "imfreedom.org": [8333], "polisforbundet.se": [13093], "oceanf.it": [2053], "crm.newint.org": [11489], "derf.me": [2053], "dump.bitcoin.it": [2012], "hunchlab.com": [7763], "go.ggypo.com": [2053], "ra.gtimg.com": [7121], "res-1.cloudinary.com": [3367], "northdevontheatres.org.uk": [11693], "adminlb.imodules.com": [7909], "clearxchange.com": [3290], "esqac.eastsussexlearning.org.uk": [19996], "nebelwelt.net": [11316], "prb.aps.org": [969], "themeroller.jquerymobile.com": [8599], "fisch.migros.ch": [10566], "letsp.in": [2053], "go.satsangi.xyz": [2053], "postel.it": [13194], "forum.1und1.de": [82], "forum.pjrc.com": [12464], "piratebay.unlockproject.xyz": [21771], "rbtweb.vodafone.pt": [18109], "sup3rst4r.ml": [2053], "www.netbeans.org": [11376], "governmentattic.org": [6999], "jgill.me": [2053], "freshbsd.org": [6319], "m-gat.es": [2053], "ftri.co": [2053], "chanks.co": [2053], "brightoncollectibles.com": [2385], "tgau.co": [2053], "go.apkpro.net": [2053], "www.couponcabin.com": [3779], "restapi.amap.com": [19360], "connect.cryptoseal.com": [3934], "www.box.osu.edu": [11959], "gltr.in": [2053], "www.mydatapipe.com": [10992], "ad-stir.com": [552], "cntrck.co": [2053], "gg365.me": [2053], "ligatus.es": [9502], "sso.kabelmail.de": [8912], "start.vendoservices.com": [17898], "golfsuisse.ch": [6951], "freecode.com": [6279], "csctrustedsecure.com": [2725], "yelp.pt": [18979], "soyjo.xyz": [2053], "static.ziffdavis.com": [19177], "vdrn.redplum.com": [13897], "form.digikey.com": [4552], "rdk.al": [2053], "freevip.96.lt": [2053], "woba.co": [2053], "contentz.mkt51.net": [20809], "www.stellaservice.com": [14426], "mcordis.ly": [2053], "takecontrolbooks.com": [16169], "klick2contactsales.com": [20609], "psb.im": [2053], "afcd.gov.hk": [7204], "www.matnat.uio.no": [17615], "strkup.com": [2053], "membersaccounts.com": [20778], "blnds.co": [2053], "nwamrcn.co": [2053], "blnds.cm": [2053], "prpty.co": [2053], "www.cbs.mpg.de": [9945], "docs.kolab.org": [9110], "vbk.me": [2053], "versia.ru": [21910], "s71.cnzz.com": [3391], "*.getclicky.com": [6730], "seals.trust-guard.com": [17055], "cy.on.gt": [2053], "ni.elfak.net": [2053], "marketplace.plannedparenthood.org": [12991], "thalescomminc.com": [16431], "howard-cottage.co.uk": [20368], "cadsoft.de": [2770], "company.yandex.com.tr": [18954], "eseu.megabus.com": [10401], "undergradresearch.wustl.edu": [18290], "my.joinos.com": [8767], "www.dreamsolution.nl": [4849], "leeds.ac.uk": [17604], "solarbotics.com": [15361], "*.redbullmobile.com": [13904], "*.davidsontutoring.com": [4307], "l.fmelos.com.br": [2053], "etsy.me": [2053], "net.bme.hu": [1570], "www.brooksidefund.com": [2418], "u.abimayu.com": [2053], "ioff.to": [2053], "*.met.vgwort.de": [17775], "rbbk.me": [2053], "pcvlab.engineering.osu.edu": [11959], "damnsmalllinux.org": [4206], "www.voscast.com": [18140], "nylon.cm": [2053], "community.broadcom.com": [2409], "assets.area17.com": [1217], "torreycommerce.net": [16864], "ajax.cloudflare.com": [3344], "www.fms.treas.gov": [17337], "t.suumo.jp": [2053], "zozs.se": [19230], "www.billboard.com": [1933], "tgml.co": [2053], "qin.ec": [2053], "empop.us": [2053], "bf.cl": [2053], "*.gtk-apps.org": [21007], "doorbell.io": [4777], "n4g.me": [2053], "j0nathan.nl": [2053], "jd.hk": [8572], "www.apichangelog.com": [19402], "*.spoki.lv": [15537], "www.anirena.com": [1061], "ssb.io": [2053], "sescu.ro": [2053], "jyme.co": [2053], "hague.in": [2053], "tianchang.meituan.com": [10405], "sugarlabs.org": [15836], "web.pirateleaks.cz": [12921], "assets.devsbuild.it": [4513], "hin.ge": [2053], "mdj.onl": [2053], "netpartnerstudent.wustl.edu": [18290], "tqtold.me": [2053], "partners.blackberry.com": [2102], "www.1tv.ru": [79], "on.rbcgam.com": [2053], "www.mirc.com": [9913], "tuan.jd.com": [8571], "go.drewb.io": [2053], "unternehmen.aldi-suisse.ch": [338], "l.nerdynaut.com": [2053], "unblockthepiratebay.org": [21709], "www.leadertech.com": [9355], "rutracker.org": [21346], "www.sufficientlysecure.org": [15835], "store.boingboing.net": [2234], "*.static.flickr.com": [6034], "swefair.engineering.osu.edu": [11959], "agenda.weforum.org": [18198], "licensing.warrington.gov.uk": [18280], "kntr.co": [2053], "b2.elnovel.com": [2053], "sync.security.pp.regruhosting.ru": [13975], "www.t411.ch": [16036], "arig.me": [2053], "hexspoorwms.nl": [7522], "ripe63.ripe.net": [14128], "*.ic-live.com": [8052], "www.blackpearlpdm.com": [2091], "ay.meituan.com": [10405], "audioprointernational.com": [8376], "sublimetextbook.com": [21597], "*.messagingengine.com": [10468], "wpsoftware.net": [18221], "insideygs.com": [8319], "smchamb.com": [2053], "sideshowtoy.com": [15010], "www.samsungfire.com": [14505], "*.certifiedsecure.com": [3030], "stsdb.co": [2053], "www.grassroots.org": [7023], "downloadverse.com": [4822], "img.secureserver.net": [14755], "ergsu.re": [2053], "calvert.guru": [2053], "t0uchm3n90.ml": [2053], "data.wien.at": [22025], "ceaa.osu.edu": [11959], "www.eadaily.com": [19986], "mla.stanford.edu": [15635], "micro.seas.harvard.edu": [7351], "get.rallydm.com": [2053], "note.lc": [2053], "zrnbs.cc": [2053], "www.coindaddy.io": [3457], "online.uen.org": [17744], "li.schart.net": [2053], "d-jembut.ga": [2053], "vernalbug.com": [2053], "www-01.ibm.com": [7821], "nwsdy.li": [2053], "www.opengg.me": [21015], "zcn.mx": [2053], "www.managewp.org": [10104], "licai.jd.com": [8571], "www.thestaradvisers.com": [16578], "login.ec21.com": [4977], "openhost.co.nz": [12234], "static.rubyforge.org": [14253], "heg.co.uk": [7646], "kingmil.es": [2053], "propnolo.gy": [2053], "www.quickleak.se": [13592], "alessio.link": [2053], "www.beta.mcafee.com": [10282], "git-scm.com": [6793], "wpvulndb.com": [18222], "clck.info": [2053], "*.ahm.com.au": [775], "go.cmep.org": [2053], "southeastdorset.greenparty.org.uk": [7052], "*.glamorousuk.com": [6820], "audit.wales": [19453], "nesea.org": [11089], "*.us0.cloud.oracle.com": [12284], "subscription.timeinc.com": [16731], "mutelight.org": [10916], "societyforscience.org": [15328], "quickstarts.asp.net": [393], "bg.chaucanh.net": [2053], "www.scmagazine.com": [21384], "url2.dk": [2053], "teach-ats.ed.gov": [4988], "blog.codinghorror.com": [3448], "honda.engineering.osu.edu": [11959], "rentacar.aegeanair.com": [7041], "aconn.me": [2053], "theanarchistlibrary.org": [16482], "form.percona.com": [12769], "s.eupathdb.org": [2053], "macadvisor.uk": [2053], "freef.ly": [2053], "layout.web.cern.ch": [2632], "shahe.meituan.com": [10405], "www.pocketmags.com": [21156], "crypto.is": [3924], "tiltedwindmillpress.com": [16721], "heim.ifi.uio.no": [17615], "www.camsis.cam.ac.uk": [17529], "apps.ncl.ac.uk": [11073], "blog.library.leeds.ac.uk": [17604], "ccob.be": [2053], "*.crashspace.org": [3832], "appimage.sinastorage.com": [15092], "lk.mtel.ru": [20845], "logilab.org": [9720], "jquery.org": [8597], "chat.yes.co.il": [22101], "rdg.ac": [2053], "a5.twimg.com": [17153], "freifunk-karlsruhe.de": [6310], "wellcomelibrary.org": [22002], "klckr.de": [2053], "chronixradio.com": [3180], "temple.worldcat.org": [18748], "cpkids.cp.pt": [3813], "sikkerhed.tdc.dk": [16051], "oneonline.devon.gov.uk": [4509], "static.tek.no": [16319], "citychsf.co": [2053], "m.newkaliningrad.ru": [20899], "secure.interq.or.jp": [8382], "powertothepooch.com": [13223], "www.annotum.org": [19393], "go.uv.es": [17750], "aimatmelanoma.org": [19328], "plus.104.com.tw": [18], "dpxt.us": [2053], "www.vitalsource.com": [21930], "image-maps.com": [8124], "stuar.tl": [2053], "gc2.me": [2053], "lowtax.es": [2053], "aspsys.com": [1309], "matth.ws": [2053], "fb.knowcx.com": [2053], "www.biop.ox.ac.uk": [17557], "*.handbrake.fr": [7316], "pcmd.ac.uk": [12748], "www.splashdata.com": [15531], "ym.heart.org": [2053], "*.sodahead.com": [15333], "hhcdn.ru": [7193], "ct.de": [7428], "secure.dvdpaytech.com": [19972], "forum.kasperskyclub.ru": [8961], "lms.uibk.ac.at": [21838], "nap-assets.nap-live.ext.net-a-porter.com": [11363], "*.simplekb.com": [15072], "ftp-master.metadata.debian.org": [4352], "*.on-disk.com": [12005], "nyb.lt": [2053], "yokw.es": [2053], "samb.al": [2053], "cache-uat.freescale.com": [6302], "phasezero.gawker.com": [6593], "adhocracy.de": [627], "openshift.com": [12171], "blocketsannonswebb.se": [2148], "mytmb.me": [2053], "www.unity.com": [17506], "connect.tape.tv": [16210], "shopify.com": [14970], "bandcamp.com": [1683], "beebe.be": [2053], "suche.golem.de": [6946], "evoice.co.uk": [5086], "onesolution.cz": [11846], "mail.sedoholding.com": [14788], "fi.3.boardgamearena.com": [2219], "community.oxfam.org.uk": [12393], "sipexternal.upc.ie": [17279], "www.mpg.de": [9945], "secure.engineering.wustl.edu": [18290], "shri.me": [2053], "www.wizbangblog.com": [18688], "www.recombu.com": [13883], "slant.co": [21474], "leaderlandnews.com": [9356], "maximintegrated.com": [10261], "autodiscover.hinxton.wellcome.ac.uk": [22001], "uninett.no": [17477], "www2.samsungknox.com": [14507], "www.myob.com": [9980], "oncap.it": [2053], "yfclnk.us": [2053], "barkbks.me": [2053], "track.movad.net": [10814], "ara1.me": [2053], "peixun.tmall.com": [21748], "*.domainrendelo.hu": [4756], "ghostnoteapp.com": [6752], "bucketlistly.com": [2442], "stipendium.vutbr.cz": [17814], "kortelink.com": [2053], "at.goalpost.net": [2053], "www.docusign.net": [4718], "games.mail.ru": [10040], "www.nslovo.info": [20956], "education.gov.au": [4448], "ryansm.it": [2053], "thegirl.co": [2053], "cronius.nl": [3880], "community.centminmod.com": [3014], "www.dubfire.net": [4886], "ditis.tv": [2053], "setbeerfr.ee": [2053], "l.x8g.nl": [2053], "u.subscene.com": [21600], "ampravda.ru": [19386], "1.ly": [2053], "www.bigchangeuk.co.uk": [1904], "rtcetsy.com": [2053], "code.flickr.net": [6033], "www.chipworks.com": [3148], "dvps.me": [2053], "lillab.lu": [2053], "www17.pipni.cz": [12460], "pokecon.link": [2053], "venner.ws": [2053], "it.norton.com": [11703], "partner.googleadservices.com": [6971], "*.gulli.com": [20295], "id.apple.com": [1160], "on.7ruh.com": [2053], "post.dessaly.com": [4475], "unwantedwitness.or.ug": [17662], "oip.usda.gov": [17495], "xx.tpytw.com": [2053], "www.theamericangenius.com": [21691], "link.rm.dk": [2053], "cs.segpay.com": [14800], "*.ted.com": [16061], "downloads10.mamp.info": [20744], "sensic.net": [11779], "zhiyuanzhe.taobao.com": [16206], "www.ciscoconnectcloud.com": [3222], "tinyapps.org": [16758], "justchris.co": [2053], "farmd.co.uk": [2053], "d2jsp.org": [4071], "truecrypt71a.com": [17043], "www.zdnet.com.au": [19065], "just-eat.ie": [20565], "pins.tips": [2053], "wabi.com": [18233], "justeat.nl": [20565], "frid.co": [2053], "bnjam.in": [2053], "www.exchangewire.com": [5593], "www.wigglestatic.com": [18586], "communit.as": [2053], "peterborough-consult.objective.co.uk": [20979], "westmercia.police.uk": [18503], "www.seomon.com": [21410], "themes.piwik.org": [12950], "i1.daumcdn.net": [4298], "gss3.bdstatic.com": [19507], "mkbk.it": [2053], "bugs.alpinelinux.org": [909], "zenmate.ae": [19133], "kf.photos": [2053], "www.tr0n.net": [16899], "www.firefox.net.cn": [5975], "static.dining.rakuten.co.jp": [13768], "ckla.us": [2053], "theamericangenius.com": [21691], "yllwpn.cl": [2053], "theswirlworld.com": [1342], "nmfc.osu.edu": [11959], "l.ri-co.eu": [2053], "c4es.pk": [2053], "store.rdg.ac": [2053], "help.blackberry.com": [2102], "map.virustracker.net": [18050], "*.aeriastatic.com": [725], "start.peppermintos.com": [21107], "www.payperpost.com": [12680], "tmdb.org": [16084], "fabri.me": [2053], "mcd.worldcat.org": [18748], "l.mamartes.com": [2053], "sixb.co": [2053], "baer.ly": [2053], "shop.skeptic.com": [15150], "www.inf.uni-hamburg.de": [17229], "revs.me": [2053], "t.getkeypad.co": [2053], "minip.co": [2053], "beta.gismeteo.ru": [6789], "wiki.smartos.org": [15235], "nfhsnet.work": [2053], "www2.surreycc.gov.uk": [21611], "www.zarafa.com": [19109], "numenta.com": [20961], "support.xamarin.com": [18840], "readr.me": [2053], "sunmotors.co.uk": [21606], "peacecenter.org": [12715], "rob.ertwalte.rs": [2053], "hostit.hu": [7680], "str.sh": [2053], "w.suntravel.xyz": [2053], "ipo.gov.uk": [17252], "bulu.io": [2053], "cdn.images.dailystar-uk.co.uk": [4189], "tubbergen.nl": [11324], "www.lntecc.com": [9246], "www1.amazon.co.uk": [19365], "s.devstl.com": [2053], "digem.io": [2053], "bit.nacao.us": [2053], "lifeatyahoo.tumblr.com": [17100], "static.x-plarium.com": [22076], "media.charter.com": [3079], "tehm.ml": [2053], "top.alovi.ch": [2053], "*.aan.com": [973], "vayable.com": [17870], "freesecure.timeanddate.com": [16732], "track.netshelter.net": [11400], "toxlearn.nlm.nih.gov": [11241], "piwik.pso-vertrieb.de": [13414], "www.wierden.nl": [11324], "hongkonggames.lcsd.gov.hk": [7211], "*.adscale.de": [666], "nyr.kr": [2053], "za.norton.com": [11703], "siteprotect.neustar.biz": [11472], "www.resortquestsecure.com": [18790], "thebao.ch": [2053], "www.kikisso.com": [20594], "travel.yam.com": [18948], "blog.contextweb.com": [3682], "www.medipreis.de": [10308], "www.wallabag.org": [18255], "static.gtimg.com": [7121], "my.gov.au": [20859], "www.avoinyliopisto.fi": [19467], "3dnews.cz": [2053], "gmx.li": [6467], "l.studyflow.ru": [2053], "gmx.lu": [6467], "iamplify.com": [7818], "aluga.vc": [2053], "rs.aol.co.uk": [360], "urhood.co.za": [2053], "messenger1.providesupport.com": [13401], "foxel.org": [2053], "links.gon.to": [2053], "order.aliyun.com": [861], "i-ca.mp": [2053], "stuvel.eu": [15804], "on.tech.eu": [2053], "piwik.heanet.ie": [7406], "www.securityevaluators.com": [14770], "timgrey.me": [2053], "go.m17.nl": [2053], "ktlh.dk": [2053], "pbscore.biz": [2053], "e-cosm2015.osu.edu": [11959], "*.dp.yieldmanager.net": [14114], "aa.mail.ru": [10040], "haaksbergen.nl": [11324], "blog.pirate-party.us": [21130], "www.segpay.com": [14800], "corporate.zalando.de": [19094], "theiosdu.de": [2053], "icukhosting.co.uk": [7841], "l.tutorando.com": [2053], "fmchr.ch": [2053], "prepayparking.surreyheath.gov.uk": [21613], "acol.es": [2053], "www.citizensadvice.org.uk": [19717], "pitt.rocks": [2053], "rwm.press": [2053], "help-it-eu.nike.com": [11595], "leadershipacademy.nhs.uk": [11102], "www.condor.com": [3626], "igd.fraunhofer.de": [6230], "covacations.com": [3685], "mcvuk.com": [20764], "ypw.me": [2053], "*.appspot.com": [6977], "kngnpn.co": [2053], "russ.link": [2053], "christydan.com": [2053], "bck.li": [2053], "www.live.com": [9644], "icfla.me": [2053], "pard.ee": [2053], "portlandstate.worldcat.org": [18748], "*.vacenza.com": [17820], "www.subtraxion.com": [21602], "digitalmedia.hhs.gov": [7192], "allybank.com": [905], "*.npario.com": [11141], "k-ra.be": [2053], "wdstk.ga": [2053], "pornhublive.com": [13154], "www.rt.isy.liu.se": [9238], "l.bostah.com": [2053], "orangechickenlove.com": [12560], "cshp.co": [2053], "*.static.img-dpreview.com": [4580], "developer.rackspace.com": [13740], "sapi.me": [2053], "www.velofinder.ch": [21903], "stayfriends.ch": [15698], "kiera.nl": [2053], "volusion.co.uk": [18132], "poci.us": [2053], "e.qenr.org": [2053], "dril.us": [2053], "www.arisebitcoin.com": [1230], "burstmedia.com": [2504], "gallery.lugons.org": [9262], "drhoades.us": [2053], "kyler.co": [2053], "time.yandex.com.ua": [18955], "tutele.mx": [2053], "mansfield.objective.co.uk": [20979], "seniorit15.co": [2053], "stirit.com": [2053], "neux.co": [2053], "gxd.amap.com": [19360], "tinyjpg.com": [16753], "t.tomontech.com": [2053], "store.griffintechnology.com": [7080], "arris.com": [1250], "*.misco.co.uk": [10642], "raeng.org.uk": [14224], "cdn.openculture.com": [12204], "cpan.metacpan.org": [10474], "www.payonline.ru": [12695], "www.hizliresim.com": [7575], "wsps.news": [2053], "idn.serveriai.lt": [14860], "s.namu.it": [2053], "forms.preston.gov.uk": [21196], "info.veracode.com": [17906], "content.zemanta.com": [19128], "men.pwm.cc": [2053], "piwik.icts.kuleuven.be": [8969], "m.webmail.earthlink.net": [5106], "i4.piimg.com": [16704], "trauer.de": [16964], "git.nlnetlabs.nl": [11130], "www.brainbench.com": [2319], "www.gitlab.com": [6798], "colum.worldcat.org": [18748], "rackspace.com.hk": [13736], "yasi.nyc": [2053], "pcmatic.us": [2053], "u.simou.net": [2053], "bit.mrockz.com": [2053], "secure.counterpath.com": [19799], "lnzr.at": [2053], "cs.piliapp.com": [12887], "www.themoscowtimes.com": [21706], "www.stelligent.com": [21575], "passport.youku.com": [19020], "precedent.com": [21190], "ssae.symantec.com": [15969], "coolcart.net": [3704], "www.math.uni-heidelberg.de": [17459], "entropay.com": [5402], "my.aerofs.com": [727], "s.mxmcdn.net": [10928], "bymia.be": [2053], "yousendit.com": [19015], "eyefilm.nl": [5097], "bit.schlos.net": [2053], "company.zynga.com": [19251], "microchip.com": [10533], "duba.com": [4885], "pplwssvcs.lowes.com": [9800], "b.n.io": [2053], "pic-viewers.net": [2053], "url.olma.me": [2053], "go.whnt.com": [2053], "mail.his.com": [7432], "ganzhou.meituan.com": [10405], "api.embed.ly": [5299], "xpns.us": [2053], "firehost.com": [5969], "go2.camp": [2053], "static.bluejeans.com": [2192], "pic1.58cdn.com.cn": [202], "sdc.cmbchina.com": [2683], "danmaku.js.org": [20555], "dragonflybsd.org": [4834], "spabol.sparebank1.no": [21524], "orde.ms": [2053], "cryptorave.org": [3933], "www.citizenfourfilm.com": [3233], "cdn1.ustream.tv": [17742], "techlive.adobe.com": [655], "*.chaosreigns.com": [3065], "www.redingtonindia.com": [21286], "dacorum.greenparty.org.uk": [7052], "www.kargo.com": [8947], "www.canon.ru": [2868], "tstea.co": [2053], "tbnet.me": [2053], "myonecitizenportallive.oxfordshire.gov.uk": [21056], "git.x2go.org": [18800], "www.cloudscaling.com": [3374], "compliance.westlaw.com": [18514], "team.websitealive.com": [18445], "tintup.com": [16749], "theatln.tc": [2053], "mpx.no": [10862], "spacom.sparebank1.no": [21524], "www.guildmc.com": [7140], "dmnd.cndl.es": [2053], "xiscosoft.com.es": [18879], "www.dig.domains": [4548], "www.votewatch.eu": [18141], "forums.playwarz.com": [18272], "wtru.st": [2053], "login.run.pivotal.io": [12947], "austrian.com": [1443], "rfon.es": [2053], "jinhu.meituan.com": [10405], "stuf.ly": [2053], "success.adobe.com": [655], "dougd.me": [2053], "bundeskanzlerin.de": [2484], "static4.meetupstatic.com": [10386], "loath.es": [2053], "zaguan.unizar.es": [17643], "www.laynepublications.com": [9337], "www.kevinajacobs.com": [9017], "people.fedoraproject.org": [5843], "mbk.to": [2053], "idp.lsbu.ac.uk": [9252], "sandbox.gogetssl.com": [6905], "chewelahk12.illuminateed.com": [20430], "cmk.nu": [2053], "alexa.com": [835], "obsev.it": [2053], "bun.bz": [2053], "steinerlib.us": [2053], "rewardz.vodafone.co.uk": [18106], "schulinfo.zvv.ch": [22146], "s15.cnzz.com": [3391], "b2.aztravel.xyz": [2053], "url.munjeet.com": [2053], "stbmt.in": [2053], "*.greensky.com": [7047], "www.mapquest.com": [10134], "reclaim-your-privacy.com": [13880], "puc.ms": [2053], "support.virginmedia.ie": [18029], "*.bekb.ch": [20574], "www.jasonsmovieblog.com": [20524], "cam.wienerstadtwerke.at": [18582], "www.reaganlibrary.gov": [21273], "iz.gd": [2053], "demandbase.demandbase.com": [4420], "vdi-wissensforum.de": [17768], "app.actor.im": [19282], "www.schoeller.de": [11362], "scontent.cdninstagram.com": [2616], "partnernet.amazon.de": [19369], "www.craftcoffee.com": [3823], "pda.sakh.com": [21360], "tk.ilius.net": [10383], "chas.link": [2053], "tedxsac.us": [2053], "secure.esupport.com": [5071], "ofl.link": [2053], "www.ift.ulaval.ca": [17515], "chf.bz": [2053], "seagate.com": [14679], "lindtusa.com": [9527], "t.brand-server.com": [2331], "seeyou.th-nuernberg.de": [16428], "kasperskypartners.ru": [8963], "mjk.bz": [2053], "www.youtube.com.ee": [19016], "opac.ulpgc.es": [17411], "at.hng.tw": [2053], "www.securifera.com": [14759], "*.crowdtangle.com": [3893], "shop.spiegel.de": [15523], "g.icetravel.xyz": [2053], "go.mail.ru": [10040], "www.askives.com": [1302], "gsrce.soe.ucsc.edu": [17591], "www.palsolidarity.org": [12542], "npinsecure.cdc.gov": [19663], "zentrum.piraten.lu": [21133], "thestranger.com": [16581], "api.gitbook.com": [6794], "assets.stelladot.com": [15719], "www.tribot.org": [16113], "f14y.com": [2053], "wilderssecurity.com": [18606], "anderson.leadershipacademy.nhs.uk": [11102], "go.kudhen.com": [2053], "www.oag.ca.gov": [2804], "www.paraschetal.in": [21071], "img.dell.com": [4413], "tr-a.co": [2053], "www.treasurydirect.gov": [16981], "sitepen.com": [15116], "app.convertkit.com": [3695], "oxchi.co": [2053], "*.radiowoodstock.com": [13751], "forums.mediatemple.net": [10331], "www.thepiratebay.link": [21709], "klo.io": [2053], "euler.vc": [2053], "go.bebubam.vn": [2053], "archives.zataz.com": [19115], "koenrouwhorst.nl": [9106], "fafsalivehelp01.ed.gov": [4988], "clds.co": [2053], "tummy.com": [21810], "techwebonlineevents.com": [16276], "u.khbn.net": [2053], "wil.by": [2053], "dhq.so": [2053], "s.rebelic.nl": [2053], "voc.tv": [2053], "somafm.com": [21506], "amnesty.ie": [1002], "piedmont.illuminateed.com": [20430], "chiragv.in": [2053], "deit.dict.cc": [4536], "eclipse.org": [5150], "www3.energy.gov": [5355], "*.opentemplate.org": [21007], "www.ello.co": [5275], "on.nc5.co": [2053], "service.projectplacedocs.com": [13372], "x.penguins.ml": [2053], "www.nii.ac.jp": [11116], "snj.meituan.com": [10405], "strick.biz": [2053], "sql2.endora.cz": [5349], "www.digitec.ch": [4591], "dps.usc.edu": [17564], "blkarb.se": [2053], "register.pearsoncmg.com": [12718], "kadesoto.com": [2053], "wltzr.com": [2053], "www.inachinashop.com": [11824], "everyoneisgay.com": [5562], "r.turn.com": [17115], "x.f67.us": [2053], "www.energiwatch.dk": [5353], "svastha.info": [2053], "rsty.co": [2053], "atl.so": [2053], "kateso.co": [2053], "poliisi.fi": [13092], "reformgovernmentsurveillance.com": [13952], "x.enat.in": [2053], "n-m4.in": [2053], "try.opisnet.com": [2053], "contactually.me": [2053], "api.vgc.no": [17776], "www.instagrampartners.com": [8332], "www.dei.com.gr": [7042], "greshams.cn": [2053], "*.plasso.co": [21148], "cronkitenewsonline.com": [3881], "ag.cm": [2053], "dota2lounge.com": [4791], "mysumm.it": [2053], "cweb.axosoft.com": [1517], "*.frugalware.org": [6352], "developer.aimpulse.com": [782], "l.shck.it": [2053], "baifubao.baidu.com": [1661], "aiiexpress.net": [2053], "it-dep-redir.web.cern.ch": [2632], "shkybts.co": [2053], "www.cerberusapp.com": [3023], "filtr.tv": [2053], "wjsz.bme.hu": [1570], "kan.vote": [2053], "on.msg.com": [2053], "ajpg.co": [2053], "www.mapquestapi.com": [10134], "nickg.me": [2053], "www2.clearos.com": [19726], "git.oschina.net": [12321], "facebook360.fb.com": [5814], "shop.harman.com": [7340], "expre.so": [2053], "bio-one.co": [2053], "www.neos.eu": [11088], "map.amap.com": [19360], "www.qualcomm.com": [13558], "filterdigital.com": [5928], "l.mrguilt.com": [2053], "mail.offline.ee": [11820], "go.curns.me": [2053], "*.drugsforum.eu": [4872], "mobile.hertz247.com": [7511], "credit-suisse.com": [3862], "interdiscount.ch": [3712], "rivieratours.com": [14142], "uu.difi.no": [4547], "housing.georgetown.edu": [6668], "*.doubleclick.net": [4811], "maketecheasier.com": [10075], "static.syncsearch.jp": [15985], "1koa.me": [2053], "www.goldmann.pl": [6943], "blog.arbornetworks.com": [1193], "pf-cdn.printfriendly.com": [13293], "www.host-tracker.com": [7647], "lab-nation.com": [9275], "www.rkn.gov.ru": [14146], "portal.gigaclear.com": [6767], "ewebcart.com": [20074], "www.beginnertriathlete.com": [1807], "stur.ml": [2053], "*.nostarch.com": [11639], "mitsloan.mit.edu": [9916], "topstr.ee": [2053], "api.2k.com": [103], "peerio.com": [12732], "tumblelog.3v1n0.net": [166], "thepiratebay.bypassed.me": [21217], "dpo.st": [2053], "raw.githubusercontent.com": [6801], "www.zeuscat.com": [19170], "see.to": [2053], "debuginfo.clearlinux.org": [3291], "b.115.com": [25], "hsc.is": [2053], "www.covad.com": [3793], "sesame.cnrs.fr": [6314], "infonline.de": [7914], "help.moniker.com": [9018], "webmail.skynet.ie": [16475], "www.mutterschaftsgeld.de": [10918], "cbe.osu.edu": [11959], "registrar.wustl.edu": [18290], "partner.skylink.sk": [15183], "kho.li": [2053], "nownet.me": [2053], "orenburg.beeline.ru": [1801], "www.flixbus.it": [6047], "wiki.deepin.org": [4380], "cmnt.ca": [2053], "ck.juicyads.com": [8819], "app.95516.com": [240], "auth.edinburgh.gov.uk": [5185], "pcicomplianthosting.com": [12747], "vegancocina.net": [2053], "www.vocativ.com": [18104], "www.emergency.wustl.edu": [18290], "openprovider.ru": [12240], "maphpy.org": [2053], "pvi.me": [2053], "7lb.co.uk": [2053], "pub.idqqimg.com": [8073], "es.pornworms.com": [13155], "equity.org.uk": [5440], "cwa.re": [2053], "www.hertz.se": [7505], "sho.wth.is": [2053], "m.myzacky.id": [2053], "www.hertz.si": [7501], "*.unigine.com": [17472], "sta.sh": [15608], "log.newsvine.com": [11541], "short.zunovi.cz": [2053], "lonr.link": [2053], "financialplanning.hsbc.co.uk": [20375], "malwaretech.net": [10091], "go.firef.ly": [2053], "caisse-epargne.com": [2780], "mapraider.com": [10139], "bluewalr.us": [2053], "manufacturing.osu.edu": [11959], "selfservice.bassetlaw.gov.uk": [1736], "dialogs.com": [4524], "tancity.de": [16194], "jakea.uk": [2053], "na.download.webconverger.com": [21989], "www.shopsite.com": [21431], "flughafen-zuerich.ch": [20136], "www.centrance.com": [2645], "squiz.ly": [2053], "scanmyserver.com": [14570], "transformationmadeeasy.com": [16939], "wetter.de": [18521], "macruby.org": [9987], "ceas.osu.edu": [11959], "sonypictures.co.uk": [15400], "by.du.st": [2053], "www.trademoremargin.com": [16911], "blog.bitex.la": [2043], "carinhas.de": [2053], "www.evo.com": [5569], "dopplr.com": [4778], "hongbao.alipay.com": [857], "pages.e.debenhams.com": [19884], "ifjrc.org": [2053], "gogo.to": [2053], "catalog.hathitrust.org": [7371], "*.help.pinterest.com": [12914], "krautchan.net": [9156], "www.scriptmp3.com": [14666], "tenser.org": [2053], "hornbach.at": [7640], "www.mebank.com.au": [9902], "dan.langille.org": [9299], "hits.theguardian.com": [16554], "austiners.com": [1415], "www.efukt.com": [5013], "l.daniil.it": [2053], "an-aus.com": [2053], "s140.cnzz.com": [3391], "mara.gov.au": [11949], "ace.advertising.com": [701], "docs.buildbot.net": [19609], "web.lib.aalto.fi": [428], "trafficfactory.biz": [16924], "rxss.co": [2053], "apt.linode.com": [9547], "www.venmo.com": [17899], "business.gutefrage.net": [7157], "www.kasperskycontenthub.com": [8964], "myersgroup.engineering.osu.edu": [11959], "robohash.org": [14158], "rapt.media": [2053], "*.nicekicks.com": [11578], "www.nkj.ru": [20915], "jobs.foreignpolicy.com": [6142], "research.ibm.com": [7821], "whichmba.com": [18540], "www.ewebcart.com": [20074], "ecommerce.apple.com": [1160], "dreams.bz": [2053], "events.microsoft.com": [10543], "godaddymobile.com": [6899], "candida.migros.ch": [10566], "www.kth.se": [8905], "sm4.co": [2053], "on.in-mommy.com": [2053], "ccf16.ca": [2053], "7-eleven.me": [2053], "upcpromociok.hu": [2053], "start-u.ps": [2053], "go.jiagm.me": [2053], "volksverschluesselung.sit.fraunhofer.de": [18124], "unidadcalidad.unizar.es": [17643], "aberdeencity.gov.uk": [449], "douban.fm": [19953], "nbamex.com": [2053], "go.x2764te.ch": [2053], "wmktg.us": [2053], "static.cnblogs.com": [19743], "b3n.org": [1526], "proxy2.switchadhub.com": [15954], "ru.boardgamearena.com": [2219], "feedback.yammer.com": [18951], "fglz.mx": [2053], "cime.im": [2053], "imgt0.bdstatic.com": [1662], "ruweb.ru": [14286], "tauday.com": [16231], "g.bendl.me": [2053], "www.stratechery.com": [15764], "l.markm.ac": [2053], "monitor.spatialbuzz.com": [15479], "pcmedia.ign.com": [7877], "k.innteach.com": [2053], "acex.ch": [2053], "userbase.kde.org": [8871], "iofr.me": [2053], "www.software.ac.uk": [21499], "ksnr.info": [2053], "conference2007.kde.org": [8871], "go.sonce.net": [2053], "nerekhta.beeline.ru": [1801], "www.boldchat.com": [2240], "tek.fyi": [2053], "plan.rs": [2053], "dewey.is": [2053], "lolxsmh.com": [2053], "piratebayproxy.tf": [21215], "www.holderdeord.no": [7593], "piwik.typo3.org": [16149], "gettested.cdc.gov": [19663], "iuma.unizar.es": [17643], "oraweb.slac.stanford.edu": [15635], "verlagsherstellung.de": [7735], "nx.meituan.com": [10405], "www.matildajaneplatinum.com": [10238], "tmtl.us": [2053], "thepiratebay-proxylist.org": [16493], "thewebindex.org": [16588], "ikal.me": [2053], "on.kisura.de": [2053], "konkurs.tms.pl": [21750], "salesforce.com": [14487], "s.jwpltx.com": [9752], "hostcentric.com": [7653], "my.vultr.com": [18169], "shop.wildstar-online.com": [18602], "go.iglar.net": [2053], "benhr.net": [2053], "lkshrp.com": [2053], "www.odevzdej.cz": [11924], "*.onion.cab": [16837], "zappos.com": [19106], "*.digi.insightmgr.com": [4590], "feed.livingsocial.com": [9679], "miga.org": [8408], "l.graland.org": [2053], "stmh.us": [2053], "www.physics.ohio-state.edu": [11960], "en-pl.dict.cc": [4536], "rpmtc.us": [2053], "store6.esellerate.net": [5462], "stlpublicrad.io": [2053], "crm-fusioncrm.oracle.com": [12284], "founders.stanford.edu": [15635], "assayassured.co.uk": [1310], "www.nsf.gov": [11249], "tools3.cisco.com": [3221], "friendpaste.com": [6334], "news.kde.org": [8871], "sgm.co": [2053], "products.drweb.com": [4879], "documentfreedom.org": [4716], "echo.wlec.de": [2053], "www.tanomail.com": [16202], "thalia.de": [16433], "cdn.mathjax.org": [20757], "eze.im": [2053], "usajobs.gov": [17308], "cf-ms.org": [2053], "swbts.us": [2053], "lx1.dyncdn.cc": [4919], "smarthide.com": [15234], "controlpanel.vgocom.com": [17777], "cdn.recombu.com": [13883], "admin.webonic.hu": [18432], "www.deutschebahn.com": [4491], "quin.so": [2053], "amays.im": [2053], "thegenealogist.co.uk": [21700], "lihm.net": [9508], "entrust.net": [5406], "solidalert.com": [15367], "isohunt.to": [8519], "wander.life": [2053], "adultportal.tameside.gov.uk": [21659], "fntastic.xyz": [2053], "www.comparethemarket.com": [3575], "go.aws.org": [2053], "resharper-support.jetbrains.com": [8708], "realart.is": [2053], "sstern.us": [2053], "assets-production.rovio.com": [14222], "www.1and1.com": [61], "agra-net.com": [771], "www.auchan.ru": [1379], "i.bpublic.com": [2053], "gobvn.link": [2053], "cor.li": [2053], "img3.tbcdn.cn": [16237], "nico2c.ovh": [2053], "rsrc2.psychologytoday.com": [13417], "luneta.nearbuysystems.com": [11312], "qvivid.co": [2053], "auk.life": [2053], "devuan.org": [4514], "www.bikebiz.com": [19533], "gpadmissions.osu.edu": [11959], "1frm.me": [2053], "www.techsupportalert.com": [16309], "communitycares.com": [19762], "rihle.com": [2053], "bit.mazlink.com": [2053], "lgs.to": [2053], "wwwcdn.channel5.com": [3057], "www.trafficjunky.net": [16922], "uk.accessorize.com": [492], "secure.assets.tumblr.com": [17101], "www.uscyberchallenge.org": [17707], "jensge.org": [8702], "developer.3taps.com": [165], "fer.mn": [2053], "www.randomhouse.com": [13778], "t7.fi": [2053], "admissions.peterborough.gov.uk": [12806], "www.c3tag.com": [2561], "mobil.teltarif.de": [16363], "www.kickflip.io": [9033], "claff.co": [2053], "ed2go.com": [2998], "www.recrute.parrot.com": [12618], "jurnalpoli.tk": [2053], "veristore.info": [2053], "shopstyle.com.au": [14965], "hcjoe.us": [2053], "s3.addthis.com": [611], "accounts.coursera.org": [3788], "u.sivy.net": [2053], "www.drivestyle.co.uk": [4859], "petfndr.co": [2053], "petv.co": [2053], "www.easywallet.org": [5138], "learningcenter.netapp.com": [11374], "namecorp.link": [2053], "getsatisfaction.com": [6738], "www.purecine.fr": [13472], "*.hospitality.swisscom.com": [15951], "www.vonage.com": [18133], "vufind.carli.illinois.edu": [17544], "www.hava.yandex.com.tr": [18954], "btstp.co": [2053], "on.mtvasia.com": [2053], "form.taobao.com": [16206], "blog.kapsi.fi": [8943], "www.elizabethsmartfoundation.org": [5272], "mvl.me": [2053], "itrdo.usa.cc": [2053], "rof.to": [2053], "forum.subscene.com": [21600], "*.visiblegains.com": [18062], "at.alicdn.com": [846], "filepicker.io": [5916], "images.summitpost.org": [15846], "maxroam.com": [9883], "www.centerlinebeta.net": [3012], "dentolo.me": [2053], "blog.gaborszathmari.me": [6519], "key2.co": [2053], "*.lovefilm.com": [9788], "*.suntrust.com": [15851], "pptform.state.gov": [17345], "www.kenexagovernmentsolutions.com": [9001], "gammagroup.com": [6566], "status.litmus.com": [9632], "www.suckup.de": [15828], "eshop.in.net": [2053], "m.hivos.org": [7573], "static02.vg.no": [17776], "total.migros.ch": [10566], "www.municode.com": [10893], "idp-dev.feide.no": [5858], "www.methodactingstrasberg.com": [10493], "creativelittlereaders.com": [3854], "mattrunks.link": [2053], "cdn.static.malwarebytes.org": [10093], "home.hungryhowies.com": [20395], "payment.tnaflix.com": [16791], "trac.nginx.org": [11567], "hotel.ch": [20366], "stubhub.co.uk": [15789], "push.gitbook.io": [6795], "track.bvg.de": [1623], "link.gho.nl": [2053], "*.pgeveryday.ca": [13349], "www.disabilitystudies.osu.edu": [11959], "cleca.rs": [2053], "conference.scipy.org": [14616], "cc.dcsec.uni-hannover.de": [17453], "stelligent.com": [21575], "readrobreid.com": [13842], "wyreforest.greenparty.org.uk": [7052], "sawurl.co": [2053], "lmgtfy.com": [20705], "soma.akvorrat.at": [811], "marcoslater.com": [20752], "zlrph.com": [2053], "heapanalytics.com": [7407], "ads.businessclick.com": [19615], "www.imperativeideas.com": [8163], "beagle.ci.uchicago.edu": [17532], "info2.ntu.edu.tw": [11160], "www.ccianet.org": [2607], "complaint.ic3.gov": [17300], "4wrd.ca": [2053], "selbst.im": [2053], "userscripts.org": [17724], "*.ohloh.net": [11965], "www.yakala.co": [18945], "partner.mamba.ru": [10096], "downloads.sourceforge.net": [15423], "clrbrk.com": [2053], "bauwesen.htwk-leipzig.de": [7736], "q.amitd.co": [2053], "s.bth.is": [2053], "crbn.es": [2053], "chn4.me": [2053], "www.kcvids.com": [8868], "www.networkredux.com": [11454], "tello.com": [16358], "zooku.ro": [19218], "sp.usatlas.bnl.gov": [19564], "home.mobile.de": [20811], "yeeahtv.cf": [2053], "adsonar.com": [578], "sel4.systems": [14675], "turbo.rent": [2053], "milancreat.es": [2053], "www.yota.ru": [22107], "on.wesh.com": [2053], "webhostlist.de": [18419], "rottentomatoes.com": [14214], "login.idm.telekom.com": [16345], "cwaud.io": [2053], "dialogueiwb.educ.cam.ac.uk": [17529], "spayne.co": [2053], "a1b.me": [2053], "www.perle.com": [12789], "seller.aliexpress.com": [19343], "as.sexad.net": [14885], "flowbtc.com": [6060], "www.brighteroption.com": [2383], "www.echoplex.us": [5148], "www.scai.fraunhofer.de": [6230], "www.esbie.ie": [5051], "ixian.jd.com": [8571], "valu.es": [2053], "leaves.www.uprr.com": [21870], "prometheusgroup.com": [13378], "435bymjc.com": [171], "gilc.co": [2053], "dot.swiss": [19950], "cloud.centrify.com": [19673], "services.amazon.com.mx": [19368], "consult.leeds.gov.uk": [20653], "www.microsofttranslator.com": [10549], "qpig.me": [2053], "toynews-online.biz": [21769], "gravatar.com": [7027], "www.itvstatic.com": [7998], "redditblog.com": [21282], "aggie.country": [2053], "sorry.hosting.cornell.edu": [3744], "www.pages05.net": [12537], "www.beget.ru": [1805], "interview.marshall.usc.edu": [17564], "spider.io": [15519], "go.ju5t.in": [2053], "hs.io": [2053], "thepiratebay.net.pl": [21709], "lpice.eu": [9250], "www.agoravoting.com": [770], "mobile.virginmedia.com": [18028], "jainsusa.tips": [2053], "www.sportdepot.co.il": [21539], "*.pocketmatrix.com": [13058], "2012.qiyi.com": [20413], "csc.rocks": [2053], "llphoto.co": [2053], "*.cdn.firstlook.org": [5993], "clients.easy-hebergement.fr": [5134], "go.einladung.io": [2053], "accessofficeproducts.com": [488], "rsd.me.uk": [2053], "endgame.com": [20038], "zubu.re": [22142], "load.wpm.neustar.biz": [11472], "download.sp.f-secure.com": [5654], "*.rdsecure.org": [13746], "blog.userstory.ru": [21882], "smpl.bt": [2053], "triodos.com": [17015], "xenogamers.org": [18864], "apps.db.ripe.net": [14128], "shop.verkaufen.ch": [21908], "d16.do": [2053], "lyv.io": [2053], "assets.netnewscheck.com": [11392], "www.bleutrade.com": [2124], "guaranibitcoin.com": [7125], "plas.1688.com": [44], "g2.std3.ru": [15699], "www.zenmate.at": [19133], "top100bo.com": [2053], "www.ercpe.de": [5442], "pds.nasa.gov": [11058], "atk.dj": [2053], "www.santafelinux.com": [21371], "frontlinedefenders.org": [6344], "ebuzzing.de": [5145], "devolverdigital.com": [4508], "cdn.zenfolio.net": [19142], "www.xmind.net": [18829], "secure.csob.sk": [3966], "lists.idms-linux.org": [20424], "hiwp.me": [2053], "handsomecode.com": [7322], "foca.io": [2053], "secureweb.inl.gov": [20462], "bseed.in": [2053], "sigaint.org": [21445], "autoblog.com": [1458], "0dd.me": [2053], "swp.me": [2053], "help-pt-br.nike.com": [11595], "projects.centos.org": [3003], "distel.li": [2053], "eurexchange.com": [5505], "my.eset.com": [5463], "1337x.to": [38], "shop.stelladot.com": [15719], "mivacentral.com": [10652], "auto.mail.ru": [10040], "s.rdm.io": [2053], "btvn.club": [2053], "fashion.zalando.de": [19094], "sao.stanford.edu": [15635], "afcs.dell.com": [4413], "discoveryplace.org": [4642], "blackvpn.com": [2094], "inpros.net": [8308], "www.pico-app.com": [12875], "r.vox.vg": [2053], "slotsgaminator.com": [6564], "oceandiscovery.xprize.org": [18795], "lmlk.me": [2053], "hostingreviews.com": [7669], "ctstravel.co": [2053], "www.joshtriplett.org": [8784], "german.germany.usembassy.gov": [21879], "netstatus.earthlink.net": [5106], "poste.ch": [13176], "supportcenter.godaddy.com": [6898], "jigsaw.w3.org": [18184], "jerseyne.ws": [2053], "nanohub.org": [11219], "*.ivwbox.de": [8551], "cwl.la": [2053], "api.lavaboom.com": [9327], "builds.piwik.org": [12950], "gocoin.com": [6896], "designaddict.com": [4467], "uxmojo.co": [2053], "compendium.com": [3580], "ezerkolibri.444.hu": [172], "bitsof.love": [2053], "ask.nice.li": [2053], "www.ext.vt.edu": [18031], "hos.bezeqint.net": [1886], "mail.st65.ru": [21557], "inside-security.de": [20466], "www.beefymiracle.org": [1799], "go.subaykan.com": [2053], "en-support.psm.playstation.net": [13014], "mytax.is": [2053], "gosmile.info": [2053], "www.browser-statistik.de": [2423], "spacescout.uw.edu": [17355], "dnscrypt.org": [4136], "*.dot429.com": [4783], "powerhosting.dk": [13226], "t-c-a.info": [2053], "eminno.de": [2053], "sciencematte.rs": [2053], "esky.city": [2053], "atms01.alicdn.com": [846], "static.formstack.com": [6164], "www.ntldstats.com": [11151], "wzn.io": [2053], "apps.liveperson.com": [9655], "gfort.es": [2053], "zic.ht": [2053], "ncards.org": [2053], "tekka.in": [2053], "winnie.tips": [2053], "www.cascadingmedia.com": [2932], "targus.co": [2053], "taskforceonshalegas.uk": [16223], "xlgl.meituan.com": [10405], "crlock.tk": [2053], "xww.ro": [18909], "www.eiu.com": [5162], "webmproject.org": [18370], "io9.gizmodo.com": [6817], "pvac-cms.leeds.ac.uk": [17604], "hmbl.be": [2053], "ernw.de": [5049], "www.winterswijk.nl": [11324], "www.burnley.gov.uk": [2501], "partner.just-eat.ie": [20565], "www.01.org": [1], "l.n24.de": [2053], "exlibris.ch": [5605], "wsu.mn": [2053], "orbitba.by": [2053], "openstat.ru": [12175], "myrt.us": [2053], "qconnewyork.com": [13509], "wrap.bz": [2053], "easports.com": [4967], "shedweb.com": [2053], "www.distrowatch.com": [4663], "boldchat.com": [2240], "ndpeeps.mobigum.com": [10678], "img4.thalasseo.com": [16430], "norbe.st": [2053], "3bbwifi.com": [155], "jgs.meituan.com": [10405], "go.cccu.org": [2053], "wikimedia.org": [18595], "buch.de": [16433], "i-m.tech": [2053], "sp-test.feide.no": [5858], "sheff.info": [2053], "www.newportmotorsports.com": [11511], "j1.58cdn.com.cn": [202], "s.vny.md": [2053], "www.crick.ac.uk": [19816], "beta.devon.gov.uk": [4509], "forge.tips": [2053], "radiox.ch": [13750], "nulled.thecthulhu.com": [16600], "cnun.es": [2053], "co.teamgnh.it": [2053], "pgr.io": [2053], "rg.gg": [2053], "rollerhaendler.scooter-attack.com": [14632], "cdn.videos.bloomberg.com": [2170], "fashion.piliapp.com": [12887], "quiz.toogl.com": [16823], "info14.top": [2053], "www.ams-ix.net": [1021], "encrypteverything.ca": [5338], "bmclogostore.com": [1568], "go.a1party.la": [2053], "fbp.digital": [2053], "www.vidup.me": [17997], "ymp1.us": [2053], "jalles.co": [2053], "files.lolnet.org": [9731], "wiki.opencaching.pl": [21010], "ssl.phpnet.org": [12454], "zorz.it": [2053], "l.sztuhar.com": [2053], "domanhanteraren.sedirekt.se": [14782], "www.youtube.kr": [19016], "syllable.org": [21632], "clockworkmod.com": [3332], "ane.capitalone.com": [2878], "rollcall.com": [14188], "cari.net": [2576], "gastro.hugb.de": [2053], "go.ghortho.com": [2053], "www.tamesidehospital.nhs.uk": [11101], "www1.ifc.org": [8407], "developer.vodafone.com": [18110], "hebrew.israel.usembassy.gov": [21879], "dkdn.co": [2053], "pix.vg": [2053], "a1.sndcdn.com": [15278], "img30.360buyimg.com": [136], "intern.contest.yandex.com": [18956], "blog.websupport.at": [18388], "n.wwe4arabs.com": [2053], "cancerresearchuk.org": [19637], "www.insideygs.com": [8319], "plcy.mp": [2053], "wbiz.me": [2053], "www.mosaicscience.com": [10791], "8byt.in": [2053], "www.darkmoney.cc": [4227], "emwil.es": [2053], "www.bulletproofmeteor.com": [2472], "images.jxt.net.au": [8615], "flt.rs": [2053], "www.true-security.nl": [16112], "assets3.github.com": [6801], "c.icq.com": [7837], "*.modelmayhem.com": [10704], "b.nexs.co": [2053], "infst.co": [2053], "k1ssme1st.ml": [2053], "storage-bin.com": [15747], "coastdigital.co.uk": [3398], "ffgg.ulaval.ca": [17515], "ntt.com": [11155], "login.adfox.ru": [563], "htss.io": [2053], "iihe.info": [2053], "*.schd.ws": [14589], "medicine.stanford.edu": [15634], "sebcre.me": [2053], "cciio.cms.gov": [19742], "discord.me": [4628], "skrk.ws": [2053], "alxv.co": [2053], "kalo.cat": [2053], "internetdefenseleague.org": [8430], "webhosting.web.com": [18345], "www.fxprime.com": [5723], "news-gazette.com": [11514], "immv.re": [2053], "sh.ch": [21629], "svn.uhulinux.hu": [21837], "jmln.co": [2053], "ccatolicas.me": [2053], "customercenter.liveperson.com": [9655], "hashkiller.co.uk": [20317], "selvasmail.com": [2053], "link.weluc.com": [2053], "www.flix123.com": [6046], "www.sis.umd.edu": [17549], "www.amwtp.inl.gov": [20462], "city.wsj.com": [22058], "i5c.us": [2053], "*.jacksonsun.com": [8633], "haka.funet.fi": [6381], "1sand0s.nl": [74], "rtr.cm": [2053], "www.posthaven.com": [13202], "www.ycharts.com": [18917], "sta1.org": [2053], "youandyou.rs": [2053], "www.bell-cranel.net": [19515], "lfhair.com": [9229], "solarwx.info": [2053], "gp.net.nz": [2053], "m4.hitravel.xyz": [2053], "fi.4.boardgamearena.com": [2219], "delia.cc": [2053], "www.nyx.cz": [11798], "yiddi.sh": [2053], "tula.rt.ru": [13703], "dnct.co": [2053], "foecvliab.com": [6088], "www.google-analytics.com": [6967], "www.translationproject.org": [16948], "static-content.springer.com": [15561], "consultre.me": [2053], "ajsa.cf": [2053], "publishers.kontera.com": [9131], "pddoc.com": [12438], "onecare.live.com": [9644], "bioinfobank.com": [1953], "*.cc.umanitoba.ca": [17546], "0.env.sh": [2053], "fmed.it": [2053], "globalperspectivescanada.com": [6851], "tpmn.co": [2053], "hectorprats.es": [2053], "pfcycl.es": [2053], "yishui.meituan.com": [10405], "www.bidbubble.com": [1897], "l.live.net": [9643], "www.packet.net": [12520], "www.hscj.ufl.edu": [17538], "whm.ag": [2053], "specificmedia.co.uk": [15491], "jamesfarmer.umw.edu": [17547], "*.sssup.it": [14420], "us-ne.ws": [2053], "de.piliapp.com": [12887], "cnetes.co": [2053], "affiliates.allposters.com": [875], "violetindigo.com.au": [18020], "cedar.agency": [2053], "thejam.es": [2053], "lanjut.xyz": [2053], "*.getsafeonline.org": [6722], "www.upc.ie": [17279], "www.bitfetch.com": [2044], "www.thepbproxy.pw": [21709], "cri.pld-linux.org": [12470], "www.encrypt-the-planet.com": [20036], "jia.1688.com": [44], "lupport.com": [20727], "vip.meetme.com": [10378], "europe.hostingcon.com": [7673], "kaleo.in": [2053], "ufwx.org": [2053], "oshub.co": [2053], "ums.unionpaysecure.com": [17478], "console.aolonnetwork.com": [364], "calligra-suite.org": [2813], "*.box-look.org": [21007], "wesnoth.org": [18500], "openuni.io": [12250], "designer.media": [2053], "hip.hopshiz.com": [2053], "user.lightsource.ca": [2859], "www.codespeak.net": [3442], "*.ergon.ch": [5444], "gentooexperimental.org": [6655], "threegirls.me": [2053], "pearup.us": [2053], "developers.gettyimages.com": [6741], "prindi.co": [2053], "iw.piliapp.com": [12887], "berkeley.worldcat.org": [18748], "awaps.yandex.com.ua": [18955], "oblcc.io": [2053], "fabiankeil.de": [5730], "edm.nci.nih.gov": [11241], "ensy.st": [2053], "www.tpbproxy.pw": [21709], "www.blogs.uni-erlangen.de": [17597], "www.ulisses-ebooks.de": [12029], "blogg.dfo.no": [19907], "rocksho.ws": [2053], "knowledge.servicenow.com": [14866], "fijiwtr.co": [2053], "zdtronic.com": [19066], "www.billiondigital.com": [1936], "www.webstyle.ch": [18455], "zuse-crew.de": [19242], "*.gsis.gr": [7039], "api.immobilienscout24.de": [8153], "user.centrum.cz": [19674], "www.newsvine.com": [11541], "studyabroad.rit.edu": [13667], "sbgc.biz": [2053], "m.alicdn.com": [846], "www.inertianetworks.com": [8235], "www.knewone.com": [9095], "www.swiftype.com": [15942], "iun.my": [2053], "pdcs.skat.dk": [15144], "eflex.ly": [2053], "status.nadir.org": [11197], "www.mariadb.com": [10151], "ask.springshare.com": [15564], "zsim.de": [19232], "help.automattic.com": [1465], "uidaho.worldcat.org": [18748], "www.secure-u.de": [14730], "resource.fastspring.com": [5793], "saisobserver.org": [21359], "agoravoting.com": [770], "thrfty.me": [2053], "support.continuum.io": [19781], "cas.org": [3117], "*.nextag.com": [11556], "people.gl.ciw.edu": [2916], "avatars.lushstories.com": [20728], "inviacv.com": [2053], "tswx.us": [2053], "shrmn.co": [2053], "helsingor.dk": [7452], "www.moon-ray.com": [10765], "cinfo.ucsd.edu": [17216], "timeweb.ru": [16728], "webcorporativa.bankinter.com": [1694], "me2.adsfrom.us": [2053], "pantherpass.fit.edu": [6058], "a.dryday.in": [2053], "private-names.ru": [13327], "www.strongvpn.com": [15787], "www.cybershambles.com": [4036], "oof.news": [2053], "share.riseup.net": [14133], "portale-utente.infn.it": [7913], "cdromland.nl": [2624], "daxue.amazon.cn": [19363], "*.naturfotografen-forum.de": [6185], "it.pcisecuritystandards.org": [12428], "u.pushka.co": [2053], "s.myvmv.com": [2053], "www.telethon.it": [16353], "www.favrskov.dk": [5808], "svn.inf.mit.bme.hu": [1571], "azm1.co": [2053], "wa5.northyorks.gov.uk": [20930], "sportsauthority.com": [15542], "ellin.us": [2053], "raneys.co": [2053], "bbtri.be": [2053], "mytct.co": [2053], "zpravy.idnes.cz": [20425], "kadij.nl": [2053], "studenaffairs.usc.edu": [17564], "www.cspbuilder.info": [3967], "hangseng.com": [7326], "zaltbommel.nl": [11324], "emmi.co": [2053], "www.filezilla-project.org": [5911], "souq.link": [2053], "xpress.epaysol.com": [5420], "gifts.dreamhost.com": [4844], "application.blinksale.com": [2131], "ccc.co.il": [2594], "space.housing.illinois.edu": [17544], "dudley.gov.uk": [4891], "bitmi.de": [2490], "wmg.cc": [2053], "ox.cx": [7787], "wxb.1688.com": [44], "www.rrzn.uni-hannover.de": [17453], "www.wareable.com": [21973], "feed.alarabiya.net": [19336], "www.ee.leeds.ac.uk": [17604], "sdgo.io": [2053], "partners.webmasterplan.com": [18427], "verify.mebank.com.au": [9902], "everlast.sg": [2053], "kreyol.aclufl.org": [286], "app03.actionfraud.police.uk": [19270], "cce.com": [2930], "hwy1.co": [2053], "southwest.greenparty.org.uk": [7052], "link.hagu.re": [2053], "www.superevr.com": [15883], "www2.dastelefonbuch.de": [4246], "gdgtph.co": [2053], "fbph.us": [2053], "sso.nikhef.nl": [11596], "www.urx.com": [17294], "sv.boardgamearena.com": [2219], "avtr.co": [2053], "rbt.asia": [13826], "msf.org.uk": [9954], "www.app.college.police.uk": [19754], "es.t-mobile.com": [16026], "s.ic-2000.com": [2053], "m.tune.yandex.com.tr": [18954], "www.traffichaus.com": [16926], "naif.jpl.nasa.gov": [11058], "www.repeaterstore.com": [14012], "toc.taleo.net": [16177], "secure.dice.com": [4534], "areweslimyet.com": [1215], "groups.google.co.*": [6965], "www.terasic.com.tw": [16214], "fullrate.dk": [6373], "console.hiconversion.com": [7526], "mipt.ru": [20802], "*.1nsk.ru": [70], "css.nyt.com": [11186], "ffell.de": [2053], "static.elec.ru": [20021], "a.exosfuel.com": [2053], "www.ifightsurveillance.com": [8033], "forms.thepensionsregulator.gov.uk": [21708], "owncloud.hackerspace.pl": [7280], "mozilla.org": [10846], "www.be.ch": [21629], "sign.unionpay.com": [17478], "pwapi.washingtonpost.com": [18287], "www.ewh.ieee.org": [7862], "jclouds.ci.cloudbees.com": [19736], "www.habpl.us": [7260], "loveloz.co": [2053], "www.amnesty.it": [1003], "go.empy.re": [2053], "severodvinsk.beeline.ru": [1801], "cerberusapp.com": [3023], "uci.worldcat.org": [18748], "blog.soundcloud.com": [15410], "blog.formsite.com": [20148], "www.amnesty.ie": [1002], "login.gmu.edu": [6666], "partners.rt.com": [13702], "sklep.polskieradio.pl": [13112], "magadan.rt.ru": [13703], "thav.is": [2053], "downloads5.mamp.info": [20744], "www.fimfiction.net": [5931], "controlcambios.ourproject.org": [21044], "myt.im": [2053], "bestpgh.com": [2053], "i.apkdot.com": [2053], "ct5.addthis.com": [611], "holidayinn.nz": [2053], "on.dr-zr.net": [2053], "cpsg.ws": [2053], "cede.ch": [19665], "*.foxnews.com": [6203], "chocolatey.org": [3155], "intel.sharedvue.net": [14920], "prescancerpanel.cancer.gov": [2864], "www.globaltradeday.org": [6856], "idn.infnx.com": [8237], "*.aplus-flint-river-ranch.com": [423], "www.smartlivingnetwork.com": [15240], "ksf.me": [2053], "susestudio.com": [14436], "*.hotels.nationalrail.co.uk": [11244], "1slr.com": [2053], "merlin-images.autotrader.co.uk": [19457], "et.boardgamearena.com": [2219], "*.racket-lang.org": [13732], "*.fedex.com": [5824], "m.newstral.com": [11540], "cdn.sencha.com": [14820], "nvidia.co.uk": [11172], "www.nero.com": [11354], "www.youtube.co.ke": [19016], "justdg.co": [2053], "r.melvyn.info": [2053], "steam.degica.com": [3396], "blog.flickr.net": [6033], "wset.co": [2053], "atx.re": [2053], "*.b-europe.com": [14380], "rssinclude.com": [13697], "parrotsec.org": [21076], "millionhearts.osu.edu": [11959], "link.crtx.co": [2053], "xtra.li": [2053], "xpms.hyd.gov.hk": [7207], "media.stellaservice.com": [14426], "proxybay.pl": [21216], "foiaonline.regulations.gov": [13977], "selby.mysql.cesky-hosting.cz": [19680], "img2.wmxstatic.com": [4248], "www.1177.se": [26], "biol.co": [2053], "backcountry.com": [1639], "www.consultant.ru": [19778], "g.savoir.online": [2053], "hir.si": [2053], "family.yandex.com.tr": [18954], "publicknowledge.org": [13433], "videos.ti.com": [16413], "adb.psmd.plymouth.ac.uk": [13055], "www.slfacilities.osu.edu": [11959], "www.eagereyes.org": [19987], "wedding.rakuten.co.jp": [13767], "emails.tips": [2053], "www3.hmv.co.uk": [7220], "dro.si": [2053], "csssoft.info": [2053], "share.servicenow.com": [14866], "weblications.guj.de": [7123], "www.wikivs.com": [18598], "r.garstelecom.ru": [20204], "jobs.theguardian.com": [16554], "nnsa.energy.gov": [5355], "www.kaseya.com": [8954], "www-cs-faculty.stanford.edu": [15635], "dhurl.co": [2053], "*.ulakbim.gov.tr": [17258], "videomind.ooyala.com": [12098], "app.sunosunao.com": [15858], "dealabs.com": [19881], "vapid.link": [2053], "a.dy.si": [2053], "*.spanair.com": [15465], "www.noelia.fi": [11650], "xj.ca": [2053], "*.gamcare.org.uk": [6529], "content.adriver.ru": [573], "securemetrics.apple.com": [1160], "wedos.com": [18197], "ahrcvo.cms.gov": [19742], "explori.ca": [2053], "aiswiki.wustl.edu": [18290], "www.infospyware.com": [8278], "virt-manager.org": [18034], "bitcointrezor.com": [19541], "*.popcrunch.com": [13133], "s133.cnzz.com": [3391], "bbm.cm": [2053], "eugenekolo.com": [20066], "avia.yandex.kz": [18957], "www.chroniclebooks.com": [10286], "handelsblatt.com": [7318], "dn-b5jibpwe.qbox.me": [13528], "cru.mp": [2053], "ux.joomla.org": [8776], "mins.pub": [2053], "verizonwireless.com": [17920], "torrentprivacy.com": [16853], "*.brussels.indymedia.org": [8234], "d.diqits.be": [2053], "on.kthv.com": [2053], "*.nexternal.com": [11559], "discuss.neos.io": [11348], "citizenlab.org": [16447], "www.galois.com": [6528], "elektra.ksh.hu": [8903], "cs.cf.ac.uk": [2895], "cod.ed.gov": [4988], "go.shming.com": [2053], "smartpage.stanford.edu": [15635], "myaccount.stoke.gov.uk": [21579], "im.ft-static.com": [20182], "forums.untangle.com": [17657], "www.gettyimages.it": [6741], "go.brittnei.com": [2053], "onepanel.digitalpacific.com.au": [4579], "fst.link": [2053], "dutch.alibaba.com": [850], "www.gettyimages.in": [6741], "www.lumovies.com": [9833], "s.jilin.com.tw": [2053], "cdn.feedbackify.com": [5851], "haku.valtiolle.fi": [17827], "plus.net": [13051], "www.gettyimages.ie": [6741], "4ho.me": [2053], "*.siteblindado.com.br": [15123], "donder.ga": [2053], "bear.mynavi.jp": [2053], "marketing.zalando.com": [19094], "primabanka.sk": [13284], "active24.sk": [19281], "mbj.fyi": [2053], "webservices.admin.cam.ac.uk": [17529], "gic4.mycdn.me": [11014], "*.m2pub.com": [9862], "cajamar.info": [2053], "centerforrights.org": [3008], "glmr.me": [2053], "svpubs.com": [2053], "getfal.co": [2053], "foebud.org": [6095], "a.xoxe.es": [2053], "wt-club.oss.aliyuncs.com": [19346], "alashort.com": [2053], "ms-vote.xyz": [2053], "greenpeace-jugend.de": [7061], "humpbump.com": [2053], "dypk.me": [2053], "my.freecycle.org": [6280], "b.loide.net": [2053], "x.tecnotur.us": [2053], "bbjo.me": [2053], "atlsso.amd.com": [962], "www.certigna.fr": [3031], "www.mtt.ru": [20848], "on.lsj.com": [2053], "wiki.freebsd.org": [6237], "protectthehuman.amnesty.org.uk": [1009], "ajnet.us": [2053], "wfpman.us": [2053], "u.bretwalda.net": [2053], "developers.basekit.com": [19493], "account.radiusnetworks.com": [13757], "smtp.anadolu.edu.tr": [1025], "s.inyaland.com": [2053], "occupywallst.org": [11908], "shopnc.la": [2053], "bugs.exherbo.org": [5601], "doaj.de": [2053], "drivethrucards.com": [12029], "s10a.co": [2053], "symplecticservices.leeds.ac.uk": [17604], "ecowatch.com": [5165], "mailigen.com": [10052], "ptbl.ly": [2053], "www.law.uw.edu": [17355], "www-k.ext.ti.com": [16413], "ct360.tk": [2053], "networktimefoundation.org": [11463], "exus.ml": [2053], "ir.amtel.com": [1022], "go.skype.com": [15184], "cldup.com": [3282], "vip.hao123.com": [20312], "newchat.bezeqint.net": [1886], "www.jit.su": [8727], "tandemcal.com": [16195], "www.infosec.ox.ac.uk": [17557], "dashboard.rapleaf.com": [13786], "mktemp.org": [7025], "i.nv8.org": [2053], "o.qcloud.com": [13530], "group.aliexpress.com": [19343], "addtoany.com": [613], "vonage.ca": [18133], "ruelala.com": [14259], "hass.de": [7364], "drupal.osu.edu": [11959], "kcentrum.vutbr.cz": [17814], "www.sll.org.uk": [15326], "ps.eyeota.net": [20086], "serato.com": [14838], "kune.ourproject.org": [21044], "www.minecraft.net": [10604], "www.sharerepo.com": [14911], "fontspri.ng": [2053], "bth.se": [1613], "*.globalsign.eu": [6840], "buycott.com": [2529], "jazz.mu": [2053], "cryptonotefoundation.org": [19827], "on.acura.com": [2053], "s.mbls.fr": [2053], "gafloors.net": [2053], "slma.tips": [2053], "aff.onenetworkdirect.com": [12038], "*.aber.ac.uk": [453], "www.umag.ca": [17358], "thesaurus.abuledu.org": [19258], "u.lfi.cl": [2053], "de.ioam.de": [7930], "hbonow.com": [20324], "go.epxsdr.cf": [2053], "my.begun.ru": [1808], "go.gugler.at": [2053], "site.adform.com": [625], "zn2.it": [2053], "jonyx.info": [2053], "kk84.eu": [2053], "i4.pixiv.net": [12960], "pentacon.de": [14599], "streaming.osu.edu": [11959], "go.motowi4.it": [2053], "focalp.in": [2053], "aaw.host": [2053], "privacyinternational.org": [13309], "iwdg.nl": [2053], "www.sprinklr.com": [21544], "cruzbuy.ucsc.edu": [17591], "wob.li": [2053], "condenast.com": [3617], "link.ogrp.de": [2053], "mpus.hr": [2053], "jobs.n-somerset.gov.uk": [11046], "www.nzbplanet.net": [11799], "gohpl.com": [2053], "larryste.in": [2053], "odeals.in": [2053], "www.aarhus.dk": [430], "lmktg.co": [2053], "hallsbudd.io": [2053], "diannao.jd.com": [8571], "shrein.co": [2053], "*.mediaplex.com": [17834], "courses.cites.illinois.edu": [17544], "vbfa.media": [2053], "www.gimmebar.com": [6781], "blogger.com": [2160], "www.torrentz.ch": [16863], "argos.ie": [1224], "clique.ly": [2053], "perceptivepixel.com": [12768], "*.tcpalm.com": [16048], "licaishi.sina.com.cn": [15086], "frama.link": [6214], "bikebiz.com": [19533], "www.thehubpeople.com": [21701], "my.gem.co": [6633], "tokobitcoin.com": [16806], "www.onfleet.com": [12058], "www.oplata.info": [12260], "www.esue.ohio-state.edu": [11960], "fortressamerica.gawker.com": [6593], "cutd.co": [2053], "qingyang.meituan.com": [10405], "lookback.io": [9760], "bhosted.nl": [1558], "cdn.sedo.com": [14785], "zerobin.net": [19154], "ubuntulinux.jp": [17385], "m.clappmail.net": [2053], "*.shopstyle.co.jp": [14965], "sulit.tips": [2053], "macs.pm": [2053], "listserv.techdirt.com": [6055], "www.hitfile.net": [20344], "contentwatch.com": [3677], "www.knightswarm.com": [9096], "www.time2play.mobi": [16725], "eastsussex1space.co.uk": [19995], "idp.leeds.ac.uk": [17604], "encrypt-the-planet.com": [20036], "golfpac.us": [2053], "spice.ly": [2053], "digi.fund": [2053], "gamma.act-on.com": [19268], "invitar.suop.es": [2053], "hst.la": [2053], "apc.homeoffice.gov.uk": [20355], "go2kb.me": [2053], "www.ampush.com": [1020], "tweakhound.com": [17141], "www.techverse.com.au": [16275], "www.ecode360.com": [5155], "store.3drobotics.com": [149], "vietnap.co": [2053], "www.packetwerk.com": [12522], "rev3.co": [2053], "s.salekalns.com": [2053], "desktop-api.fitbit.com": [6002], "infinitydev.org": [8243], "www.tz.de": [16150], "pngu.mgh.harvard.edu": [7350], "www.clickdimensions.com": [19728], "wdxy.co": [2053], "fifo.fail": [2053], "insyg.com": [2053], "terri.es": [2053], "www.jariangibson.com": [8669], "www.canon.de": [2868], "avemariauniversity.worldcat.org": [18748], "cnnctth.ink": [2053], "www.irill.org": [7960], "lpayne.me": [2053], "metadata.itunes.apple.com": [1160], "www.t-mobilebankowe.pl": [21643], "kirov.beeline.ru": [1801], "datapipe.cn": [4289], "chil.cc": [2053], "static.firefoxosdevices.org": [5976], "alexr.at": [2053], "blog.evidon.com": [5565], "smartlife.swisscom.com": [15951], "www.swiss-virtual.com": [15948], "s.vette.jp": [2053], "swedn.me": [2053], "go.alt.ac.uk": [2053], "blog.sinacloud.com": [15088], "image.tsn.ua": [21805], "liven.ws": [2053], "nordu.net": [11677], "hilxry.com": [2053], "readplaintext.com": [13847], "studentwellness.stanford.edu": [15635], "www.irisa.fr": [7961], "taxandbenefits.bolton.gov.uk": [19569], "forum.ovh.co.uk": [12378], "apps.pubmatic.com": [13422], "b94.yahoo.co.jp": [18944], "pet-nanny.net": [12799], "youtube.co.id": [19016], "bar.rw": [2053], "safervpn.com": [21356], "egzwl.de": [2053], "thmp.tk": [2053], "youtube.co.in": [19016], "95516.com": [240], "youtube.co.il": [19016], "*.honest.com": [7626], "s3static.stelladotcdn.com": [21574], "support.gmocloud.com": [6460], "my.fsf.org": [5713], "ouvaton.coop": [12360], "i.fantasyracing.telegraph.co.uk": [16340], "gzguan.jd.com": [8571], "gwtm.co.uk": [2053], "producthunt.com": [13350], "www.sofn.com": [15336], "dwar.mail.ru": [10040], "lexl.ink": [2053], "www.leshop.ch": [10566], "constituteproject.org": [19777], "fischerportal.axosoft.com": [1517], "ekmsecure22.co.uk": [5236], "l.bizequity.com": [2053], "j.son.bz": [2053], "safesource.org.nz": [14465], "airww.co": [2053], "www.hertz.com.au": [7475], "utel.ly": [2053], "legonew.com": [2053], "i-d.vice.com": [17959], "de.3.boardgamearena.com": [2219], "journalism.co.uk": [8796], "knowfife.fife.gov.uk": [20106], "web-analytics.fco.gov.uk": [5671], "holylpstck.com": [2053], "s.gego.co.ke": [2053], "uc.edu": [17594], "sje.im": [2053], "pear.php.net": [12453], "adfs.coct.edu": [2699], "dr.nctrn.co": [2053], "sant.work": [2053], "center2.top": [2053], "msgme.com": [20842], "msisac.cisecurity.org": [2673], "phpserver115.anadolu.edu.tr": [1025], "forum.anidb.net": [1062], "www.jammerbugt.dk": [8653], "scls.pl": [2053], "i.ping-go.com": [2053], "dive.im": [2053], "ecwid.to": [2053], "www.ping-fast.com": [12895], "mirror-svc.nytimes.com": [11189], "no.b9.com.br": [2053], "z.hdtsg.com": [2053], "isports.li": [2053], "editor.wix.com": [18684], "english.stanford.edu": [15635], "files.yandex.com.tr": [18954], "archive.informationactivism.org": [8274], "secure.citizensforethics.org": [2714], "kotte-zeller.de": [9145], "files.1f0.de": [68], "gametracker.com": [6561], "thl.gy": [2053], "go.lbapps.net": [2053], "*.dhi-scotland.com": [19910], "italiano.istockphoto.com": [20505], "charitywater.org": [3071], "uncc.worldcat.org": [18748], "l.avon39.org": [2053], "images1.sanalmarket.com.tr": [14514], "data.maine.gov": [10060], "jnglr.com": [2053], "www.sqlite.org": [14401], "cluster1.ahosting.cz": [778], "www.ovhtelecom.fr": [11886], "microblink.com": [10531], "www.ssafa.org.uk": [14408], "einvoicepayments.hants.gov.uk": [7328], "securehomes.esat.kuleuven.be": [8969], "edfenergy.com": [4989], "atmilb.com": [2053], "profile.freepik.com": [6301], "mooculus.osu.edu": [11959], "news.mail.ru": [10040], "jct.fyi": [2053], "qabel.de": [13527], "pthe.me": [2053], "brthr.co": [2053], "*.eukhost.com": [5078], "amnistia.org.pe": [1016], "autosport.com.ru": [19456], "*.bethsoft.com": [1871, 1872], "jone.us": [2053], "hrselfservice.sevenoaks.gov.uk": [14882], "*.skimlinks.com": [15157], "x.esquire.co.uk": [2053], "auspo.st": [2053], "go.pravaapp.com": [2053], "titleix.stanford.edu": [15635], "invi.qa": [2053], "www.direct.gov.uk": [4615], "st.unitedplatform.com": [17505], "toms.it": [2053], "www.zenmate.se": [19133], "e.dinda.com.br": [2053], "*.internetsuccess.at": [8437], "secure-nikeplus.nike.com": [11595], "orgchart.mit.edu": [9916], "support.realvnc.com": [13860], "walthers.com": [18263], "chpta.cl": [2053], "zalando.se": [19094], "mav.im": [2053], "www.kb8ojh.net": [8981], "cmw-leipzig.de": [7735], "x.0b00000000.me": [2053], "bundlestars.com": [2494], "kutz.link": [2053], "a.ruess.me": [2053], "rec-2-1.webcaster.pro": [21988], "*.schneider-electric.com": [14598], "nationalinterest.org": [20876], "debianforum.de": [4354], "agilialinux.net": [19322], "spr.st": [2053], "www-cs.ucsd.edu": [17216], "docs.joomla.org": [8776], "www.nokiausa.com": [11655], "chicncheeky.co": [2053], "business.idealo.com": [8077], "central-lincs.org.uk": [19668], "www.techrepublic.com": [16270, 16271], "go.back.vn": [2053], "f.eeder.co.il": [2053], "www.nixsrv.com": [11625], "torchlightgame.com": [16844], "tshirts.ml": [2053], "dshw.co": [2053], "www.barbican.org.uk": [1709], "www.postnewsads.com": [13207], "js.net.finam.ru": [20117], "nanxie.taobao.com": [16206], "red.mg": [2053], "l.nurtury.us": [2053], "lists.sourceforge.net": [15423], "go.saidblog.com": [2053], "l.sysops.at": [2053], "log.dmtry.com": [4691], "petition.parliament.uk": [21075], "schnellno.de": [14602], "mars.bet": [2053], "www.amnesty.org.pl": [1006], "www.triodos.nl": [17016], "kzenm.be": [2053], "warwick.ac.uk": [17634], "yelp.com.tr": [18979], "styleguide.dinside.no": [19925], "www.centreformentalhealth.org.uk": [19671], "sparxtrading.com": [15477, 15478], "bzzm.ch": [2053], "s105.cnzz.com": [3391], "www.paymium.com": [12691], "opf.ooyala.com": [12099], "cloud-images.ubuntu.com": [17382], "iomtt.com": [8484], "cdn.shptrn.com": [14969], "gay-torrents.net": [6597], "host16.top": [2053], "go.xpim3d.com": [2053], "bit.rednod.be": [2053], "wwwssl.coveritlive.com": [3804], "dfoc.us": [2053], "www.codecademy.com": [3421], "short.beskow.de": [2053], "img01.sogoucdn.com": [15351], "static.bhphoto.com": [19526], "clickequations.net": [3304], "ott.odessa.tv": [20983], "vad.li": [2053], "www.fca.org.uk": [5670], "thepiratebay.lv": [21709], "wujingjing.com": [2053], "erp.digitecgalaxus.ch": [4592], "fuelcdn.com": [6360], "ja.4.boardgamearena.com": [2219], "www.nycla.org": [11178], "hhslink.sccgov.org": [14579], "*.bbcomcdn.com": [2228], "hi.fidorbank.uk": [2053], "tradein.vodafone.co.uk": [18106], "dine.sh": [2053], "ribf.riken.jp": [13663], "frc.st": [2053], "www.autovps.net": [1460], "search.uis.georgetown.edu": [6668], "to.971.gr": [2053], "act-jshop.jd.com": [8571], "frckadv.sr": [2053], "lowl.info": [2053], "www.kolektiva.com": [9114], "jmais.co": [2053], "webapps.cs.umd.edu": [17549], "connect.idoxgroup.com": [20426], "patechmasters.com": [12835], "fbrd.co": [2053], "gigenetcloud.gigenet.net": [6777], "www.parapoupar.com": [12588], "v.tcprods.com": [2053], "dubfire.net": [4886], "ostrike.com": [2053], "ese.espiv.net": [20058], "torrentz.ch": [16863], "lorca.io": [2053], "newmusi.cc": [2053], "gritb.it": [2053], "ediss.uni-goettingen.de": [17451], "ultrahdtv.net": [17418], "accessassistant.becu.org": [1549], "m8.baidu.com": [1661], "vitrinepix.com.br": [21931], "psfw.jd.com": [8571], "masch.tv": [2053], "mnpl.us": [2053], "outlet.sony.co.uk": [21508], "eettang.us": [2053], "hecg.info": [2053], "rpm4.zarb.org": [19110], "shop.sowka.dosowisko.net": [4782], "fru.sk": [2053], "aclum.org": [296], "www.temp-mail.org": [16366], "blacknight.com": [2106], "store.invensense.com": [8459], "theresumator.com": [16501], "kdelive.org": [8983], "swsblog.stanford.edu": [15635], "*.zerista.com": [19152], "www.eyefilm.nl": [5097], "freecallstosingapore.co.uk": [20709], "juno.co.uk": [8837], "m.stubhub.com": [15789], "www.totalfanshop.net": [16875], "www.i-koruna.com": [7898], "buttons.blogger.com": [2160], "2.asset.soup.io": [15415], "bi-fusioncrm.oracle.com": [12284], "gmane.ws": [2053], "www.in-tendhost.co.uk": [20449], "cri900.me": [2053], "www.larrysalibra.com": [9311], "whiteout.io": [18554], "www.goldenadventures.com": [6938], "my.tiera.ru": [21738], "static-freedomusainc1.netdna-ssl.com": [1477], "cincincy.com": [2053], "www.ilo.org": [7899], "varietylatino.com": [17859], "secure.somerset.gov.uk": [15376], "wct.bz": [2053], "www.streetepistemology.com": [21589], "www.welcometometlife.com": [18485], "spp.seagate.com": [14679], "*.cheetahmail.com": [3113], "adygeya.beeline.ru": [1801], "rosetta.jpl.nasa.gov": [11058], "a.tripriff.com": [2053], "content.mery.jp": [9903], "*.wvu.edu": [18509], "adpeepshosted.com": [585], "go.elike.com.br": [2053], "boomstarter.ru": [19573], "xara.com": [18842], "a.hornos.eu": [2053], "rmit.edu.au": [13670], "content001.bet365affiliates.com": [19518], "*.org.edgesuite.net": [799], "jobs.crick.ac.uk": [19816], "blog.ashampoo.com": [1285], "edit.php.net": [12453], "schedule.law.georgetown.edu": [6668], "www.c4ss.org": [2562], "jmtech.co": [2053], "www.untergeschoss.ch": [17659], "labanimals.stanford.edu": [15635], "www.android-port.de": [1044], "brgss.co": [2053], "tpros.co": [2053], "salekhard.beeline.ru": [1801], "sceper.ws": [14584], "brokerportal.va.anthem.com": [19395], "nationalrail.co.uk": [11245], "*.dropbox.com": [4864], "instagram.com": [8331], "support.weixin.qq.com": [13514], "podpora.nic.cz": [11572], "partner.cyberport.de": [4048], "www.kde.org": [8871], "marius.tips": [2053], "download.owncloud.org": [12387], "s.50811.net": [2053], "rckb.co": [2053], "castlebridge.ie": [2951], "en-no.dict.cc": [4536], "www.7headlines.com": [219], "www.couragefound.org": [3782], "3sr.me": [2053], "solarmovie.is": [15360], "york.cuny.edu": [19002], "*.uh.edu": [17601], "www.tribler.org": [17005], "i.cuisillos.com": [2053], "www.ncbi.nlm.nih.gov": [11241], "www.recalll.co": [13877], "blog.netbsd.org": [11375], "rlf.me": [2053], "blog.jolla.com": [8771], "stats.uptobox.com": [21872], "sdrl.tv": [2053], "hdtracks.com": [7185], "*.advocatesforyouth.org": [709], "eyem.ag": [2053], "digital.lib.washington.edu": [17577], "bps.org.uk": [1580], "www.mortgages.hsbc.co.uk": [20375], "looppay.com": [9768], "*.builtwith.com": [2469], "i2g.be": [2053], "*.proxmox.com": [13406], "go.nelwel.com": [2053], "www.xyntekinc.com": [18912], "mdn.mozillademos.org": [10847], "my.monash.edu": [10728], "wiki.cloudbees.com": [19736], "zona.skylink.cz": [15183], "c.teilin.net": [2053], "sbdr.co": [2053], "samhain.me": [2053], "courses.theguardian.com": [16554], "vvro.us": [2053], "ftech.vc": [2053], "netb.us": [2053], "i.tr.cx": [2053], "karischur.ch": [2053], "www.icp.uni-stuttgart.de": [17567], "referfriends.etoro.com": [5077], "srclib.org": [15591], "special.dreampass.jp": [4848], "6.*.wdfiles.com": [18593], "teyt.in": [2053], "hackhands.com": [7265], "go.ofrf.org": [2053], "gfihispana.com": [6439], "www.hands.com": [7321], "www.pythonhosted.org": [13503], "specialized.net": [15490], "sellaband.com": [14812], "sfit.ca": [2053], "geophysics.stanford.edu": [15635], "mebank.com.au": [9902], "hr.wustl.edu": [18290], "bridge.io": [2053], "enter.enaza.ru": [5332], "blogmint.com": [2163], "*.standup2cancer.org": [15629], "url.slowik.eu": [2053], "fmlyt.ch": [2053], "kitenet.net": [9076], "www.coinjar.com": [3461], "services.devon-cornwall.police.uk": [4510], "m.movidb.co.uk": [2053], "voicelessonstotheworld.com": [11492], "ntr.nasa.gov": [11058], "lat.ms": [2053], "bkng.it": [2053], "tvprogram.upc.cz": [17278], "www.aldimobile.com.au": [339], "www.tchibo-ideas.de": [16240], "blog.okcupid.com": [11971], "h.brme.us": [2053], "lz.meituan.com": [10405], "users.rust-lang.org": [14284], "www.royalfree.nhs.uk": [11102], "infolan.by": [20456], "www.airpair.com": [786], "www.globalweb.co.uk": [6858], "mba.illinois.edu": [17544], "ie.iexp.in": [2053], "globalsign.*": [6840], "*.eurovision.tv": [5537], "convn.org": [2053], "im.virgilyo.com": [2053], "bitre.gov.au": [2497], "www.cloudwear.com": [3376], "its.freebsoft.org": [6240], "expr.se": [2053], "link.sdlug.com": [2053], "srv1.bakerlab.org": [1667], "www.sugarsync.com": [15838], "wiki.fool.com": [6124], "drc.st": [2053], "*.marsupi.org": [10194], "leamington.greenparty.org.uk": [7052], "jobsat.g4s.com": [20194], "help.aweber.com": [416], "ntt.ie": [2053], "tnw.to": [2053], "order.ikoula.com": [8112], "lanark.spydus.co.uk": [21546], "schrts.com": [2053], "internet-banking.dbs.com.sg": [4084], "wallapop.to": [2053], "p.3.cn": [121], "theie.info": [2053], "cccdf.org": [2053], "hertz247.pt": [7498], "www.lewrockwell.com": [9437], "xitr.us": [2053], "abcild.com": [2053], "nerfnow.com": [11353], "mc-author.com": [2053], "www.umano.me": [17424], "moodle.usainteanne.ca": [21877], "updatecenter.norton.com": [11703], "arbitrage.webmoney.ru": [18373], "fb.izvestia.ru": [8555], "helpshift.com": [7449], "myview.torbay.gov.uk": [16840], "fsolo.co": [2053], "store.intsig.net": [20481], "anidb6.anidb.net": [1062], "blog.tapatalk.com": [16209], "*.echothrust.com": [5149], "onen.link": [2053], "apps1.seagate.com": [14679], "hezhou.meituan.com": [10405], "thegef.org": [8408], "ttap.co": [2053], "www.tuakiri.ac.nz": [17087], "fders.osu.edu": [11959], "earv.in": [2053], "www.internetfonden.se": [8436], "totalicare.com": [16874], "elizon.do": [2053], "mail.163.com": [42], "s.tvapp.it": [2053], "netmarble.com": [11435], "offmet.ro": [2053], "u-2.im": [2053], "couchpota.to": [3766], "www.provost.umd.edu": [17549], "net.educause.edu": [5197], "cdn6.sure-assist.com": [15899], "wpml.org": [18218], "france-universite-numerique-mooc.fr": [6215], "url.mrwilde.com": [2053], "amsa.gov.au": [1434], "va.gov": [17297], "metrics.aem.playstation.com": [13015], "suck.at": [2053], "bsw.li": [2053], "cms.msi.com": [9957], "krystal.info": [20620], "www-cs.stanford.edu": [15635], "roda.io": [2053], "nettitude.co.uk": [11446], "pirati.cz": [12939], "taras.yandex.com.ua": [18955], "www.std3.ru": [15699], "store.tequipment.net": [16380], "www.zip.ch": [19189], "l3l.co": [2053], "tene.mu": [2053], "www.open-stand.org": [21005], "geotrust.com": [6671], "downloads.php.net": [12453], "community.mobify.me": [10679], "paxex.me": [2053], "racked.cc": [2053], "terpconnect.umd.edu": [17549], "mhlth.info": [2053], "www.hyperspin.com": [7794], "sparklabs.com": [15469], "*.iplay.com": [8493], "haarlemmermeer.nl": [11324], "hardrock.co": [2053], "img0.tv4cdn.se": [16137], "www.rnl.ist.utl.pt": [16288], "ew.com": [5399], "mips.com": [9912], "on.incridea.com": [2053], "oraweb.ulaval.ca": [17515], "www.srcf.net": [15590], "gigshift.co": [2053], "www2.leboncoin.fr": [20650], "twiki.nevis.columbia.edu": [3512], "aan.com": [973], "go.mxgnv.com": [2053], "www.internetsociety.org": [8423], "soundo.ps": [2053], "cortex.to": [2053], "rybo.co": [2053], "br.support.tomtom.com": [16812], "www.e-pages.dk": [4956], "www.yuga.ru": [22121], "www.secure.citizensforethics.org": [2714], "www.agra-net.com": [771], "sm.yoozlr.com": [2053], "forums.contribs.org": [3686], "www.linuxfoundation.org": [9572], "clck.fj0.ru": [2053], "profiles.live.com": [9644], "agor.co": [2053], "ads4.contentabc.com": [3678], "jdd.me": [2053], "link.agh3.us": [2053], "www.studentchaptergrants.acs.org": [966], "colocore.ch": [3499], "login.aau.dk": [427], "www.xdebug.org": [18853], "openlearn.open.ac.uk": [12184], "finseth.com": [20122], "s.ytkg.org": [2053], "www.simplifydigital.co.uk": [21452], "www.strava.cz": [15770], "voggle.co": [2053], "htbx.eu": [2053], "flightaware.com": [6035], "live.bitmissile.com": [1988], "spots.pics": [2053], "imguol.com": [8142], "rfk.rocks": [2053], "iplocation.net": [20491], "www.spark-summit.org": [15467], "x.djfuji.com": [2053], "usage.jenkins-ci.org": [8700], "www.benedikt-bitterli.me": [1827], "ca.jubilo.ca": [2053], "static.infnx.com": [8237], "dutch.tags.literotica.com": [9628], "trvs.io": [2053], "mango.bike": [2053], "exchange.cex.io": [2644], "*.yelpcdn.com": [18979], "docs.run.pivotal.io": [12947], "www.sebastian-siebert.de": [14698], "kostroma.beeline.ru": [1801], "go.sukarne.mx": [2053], "www.handelsbanken.fi": [7317], "atfonline.gov": [19447], "meta.tagesschau.de": [21650], "www.weibo.com": [18482], "chi.me": [2053], "s.president.jp": [2053], "chi.mg": [2053], "fortinet.com": [6174], "wrctr.co": [2053], "ems.doncaster.gov.uk": [4770], "clever.news": [2053], "cntrl.ca": [2053], "lifeh.ac": [2053], "on.qrtr.ly": [2053], "www.northdown.gov.uk": [4614], "pennhigh.cc": [2053], "2joycasino.com": [20552], "ellerslie.us": [2053], "www.moonpig.com.au": [10766], "www.slettmeg.no": [4294], "payments.mppglobal.com": [20841], "www.novell.com": [11728], "tz.nu": [2053], "www.tpb.press": [21709], "paste2.org": [12649], "committees.web.cern.ch": [2632], "www.lso.com": [9255], "golflink.com": [6947], "gazellegames.net": [20211], "*.fout.jp": [6201], "pingu.im": [2053], "fau.starfishsolutions.com": [21565], "www.glueckspost.ch": [6875], "bdp.st": [2053], "qmcd.ca": [2053], "login.johnshopkins.edu": [8760], "old-webmail.hermes.cam.ac.uk": [17529], "opac-test.ub.uni-mainz.de": [17611], "iosdevweekly.com": [7928], "manual.phpdoc.org": [12865], "*.personforce.com": [12798], "www.seekingarrangement.com": [14797], "portal.apple.com": [1160], "*.vespermarine.co.uk": [17943], "cair.com": [2572], "images.encyclopediadramatica.se": [5342], "l.fry.fm": [2053], "lib.openmpt.org": [12148], "soe.stanford.edu": [15634], "news.infoseek.co.jp": [8277], "plcylk.org": [2053], "clssl.org": [3378], "www.youtube.co.uk": [19016], "livingroutes.org": [9680], "lykk.es": [2053], "*.gitlab.io": [6799], "korsakov.sakh.com": [21360], "front.ly": [2053], "wwhts.com": [2053], "cprza.co": [2053], "darkag.es": [2053], "projectdev.org": [21208], "joshb.co": [2053], "support.ookla.com": [12094], "lnk.geekpov.com": [2053], "*.wennect.info": [18497], "comipo.degica.com": [3396], "fllw.me": [2053], "static.itch.io": [8537], "modulo.cc": [2053], "smetrics.aem.playstation.com": [13015], "talrt.co": [2053], "*.redbullmobile.com.au": [13904], "www.research.brown.edu": [2421], "display.tagboard.com": [21649], "l.theefc.ca": [2053], "youtourho.me": [2053], "t.flayvr.com": [2053], "cookie.fdih.dk": [6144], "secure.ace-tag.advertising.com": [701], "s.dingtalk.com": [19923], "edge3.digicert.com": [4556], "deke.it": [2053], "www.justice4assange.com": [8853], "a29.co": [2053], "eu.gcsip.com": [20213], "www.aldi.nl": [338], "i.pwp9.pw": [2053], "yesss.at": [18983], "yescapta.in": [2053], "footre.st": [2053], "tr.aliexpress.com": [847], "go.lucatnt.com": [2053], "rt.uninett.no": [17477], "opengg.me": [21015], "cgit.cyrus.foundation": [4063], "www.pixelh8.co.uk": [12956], "giarola.it": [2053], "darktable.org": [4232], "www.bitmi.de": [2490], "connect.me": [3645], "gluster.org": [6876], "*.gaia.hs.llnwd.net": [6522], "bryanskaya-obl.beeline.ru": [1801], "assistenza.tiscali.it": [16770], "scanmail.trustwave.com": [17074], "alp.onl": [2053], "code.nasa.gov": [11058], "idm.data.gov": [4253], "growf.io": [2053], "*.adk2.com": [638], "iv.lt": [8545], "script.crazyegg.com": [3835], "jntco.co": [2053], "i.superlawyers.com": [15876], "uttarlton.worldcat.org": [18748], "fnd.gs": [2053], "b.cink.es": [2053], "spyderco.com": [15577], "airtime.pro": [794], "tech.slashdot.org": [15192], "nl.gamigo.com": [6563], "url.mactech.com": [2053], "www.wirelessleiden.nl": [18669], "unc.gd": [2053], "btdig.com": [19600], "mlnd.ir": [2053], "securelist.com": [14736], "www.geekevents.org": [6622], "a0.thelateroomsgroup.com": [21704], "people.codeforamerica.org": [3419], "feedback.userreport.com": [17729], "wbh3.ws": [2053], "www.azingsport.se": [1521], "nxtg.ms": [2053], "financialaid.stanford.edu": [15635], "www.ybitcoin.com": [18915], "vps.gmocloud.com": [6460], "www.nri.co.jp": [11660], "stuk.co": [2053], "www.cgs.osu.edu": [11959], "board.jdownloader.org": [20531], "securejoinsite.com": [14746], "exard.io": [2053], "metadata.feide.no": [5858], "*.s3.envato.com": [5410], "www.blottr.com": [2178], "wpx.in": [2053], "www.hotscripts.com": [7695], "krvl.co": [2053], "lvstrng.com": [2053], "offhe.im": [2053], "r0k.su": [2053], "www.justpaste.it": [8846], "kr36.co": [9153], "ct3.addthis.com": [611], "flowr.me": [2053], "*.dualshockers.com": [4884], "dwdr.ms": [2053], "nocworx.nexcess.net": [11549], "be.winner.com": [2053], "go.perlur.cz": [2053], "www.lob.com": [9695], "uso.me": [2053], "searchmarketingexpo.com": [16635], "leok.at": [2053], "twt.sk": [2053], "go.demian.is": [2053], "library.ucc.ie": [17210], "justice4assange.com": [8853], "woj.pwm.cc": [2053], "1gbl.me": [2053], "news.brown.edu": [2421], "thesolems.com": [2053], "gkic.me": [2053], "www.cimbclicks.in.th": [2665], "xavisys.com": [18847], "infocity.az": [20455], "tabl.in": [2053], "tv.infowars.com": [8279], "www.webmon.com": [18430], "www.sanoma.com": [14526], "room.eiffel.com": [5224], "www.umassmag.com": [17550], "secure.goabroad.com": [6894], "sfter.me": [2053], "www.fastmail.com": [5804], "link.losego.it": [2053], "syslog-ng.org": [16008], "raystack.co": [2053], "leslie.bz": [2053], "www.icewarp.com": [8058], "isle.jp": [8516], "smugglr.in": [2053], "www.oeticket.com": [11930], "logilab.fr": [9721], "smp.reviews": [2053], "tirori.ro": [2053], "erinfrom.nyc": [2053], "shopandmall.ru": [21428], "gifts.rescue.org": [21295], "market.elec.ru": [20021], "anyurlhere.com": [2053], "*.upenn.edu": [17559], "citibank.com": [3230], "thematt.net": [2053], "www.achaea.com": [19264], "databases.ohiolink.edu": [11961], "passport-ckicheck.yandex.kz": [18957], "landon.co": [2053], "rsc.org": [14230], "www.merkleinc.com": [20783], "domainstore.dotcologne.de": [4788], "btl.st": [2053], "*.which.co.uk": [18539], "www.helixo.fr": [20332], "humanevents.com": [7753], "s-e-f.info": [2053], "tmag.co": [2053], "www.blackboard.com": [2103], "index.rsf.org": [14018], "r.aizzard.net": [2053], "newgrounds.com": [11509], "advo.pp.ua": [2053], "bsgd.me": [2053], "*.trisquel.info": [17027], "forestsangha-163c.kxcdn.com": [6147], "bitcoin-central.net": [2008], "*.ugr.es": [17600], "platinumperformance.com": [13007], "www.hnfe.vt.edu": [18031], "a6.hitravel.xyz": [2053], "medaid.co": [2053], "portuguese.angola.usembassy.gov": [21879], "control.freefind.com": [6244], "*.unt.edu": [17555], "lazycoins.com": [9338], "blog.polleverywhere.com": [13105], "moodle.nic.cz": [11572], "spamgourmet.com": [15463], "search.citrix.com": [3237], "atu.cr": [2053], "biobeat.nigms.nih.gov": [11241], "www.vzaar.com": [18179], "aliyunsolution.oss.aliyuncs.com": [19346], "tgdgtbk.info": [2053], "ecfc.co": [2053], "css.washingtonpost.com": [18287], "wpro.me": [2053], "www.bayfiles.com": [1746], "piedc.environment-agency.gov.uk": [20047], "nazwa.pl": [11307], "s.pvtpt.com": [2053], "sbisrilanka.com": [2053], "www.swm-infrastruktur-region.de": [14444], "www.calsky.com": [2786], "vpo.st": [2053], "jaxz.in": [2053], "collectors.sumologic.com": [15848], "www.strategyanalytics.com": [15766], "aerh.co": [2053], "gaminatorslots.com": [6564], "inside.law.yale.edu": [18946], "*.cbsistatic.com": [2586], "gcentr.al": [2053], "pduty.me": [2053], "*.racjonalista.pl": [13728], "tobethe.church": [2053], "secure.adultfriendfinder.com": [683], "www.myresumeagent.com": [10969], "biostatistics.georgetown.edu": [6668], "third.li": [2053], "secusmart.com": [14781], "primedice.com": [13287], "www.anthem.com": [19395], "element.yandex.kz": [18957], "third.lv": [2053], "gradle.com": [20276], "govc.at": [2053], "*.suresupport.com": [15900], "*.gfycat.com": [6745], "heyuan.meituan.com": [10405], "uni-erlangen.de": [17597], "www262.americanexpress.com": [972], "tpc.tv": [2053], "buckeyelink.osu.edu": [11959], "haixia-info.com": [20306], "www.whatsmydns.net": [18534], "aut.ac": [2053], "claimlisting.superpages.com": [15888], "mozdev.org": [10836], "keckselfservice.med.usc.edu": [17564], "thedn.cc": [2053], "mobile.altoonamirror.com": [935], "a4uexpo.com": [262], "b2bmarketing.bizo.com": [2084], "www.addbooks.se": [610], "wvw.caredent.es": [2053], "status.keen.io": [8989], "www.youtube.com.sg": [19016], "arondad.com": [2053], "*.citadium.com": [3225], "whbaldw.in": [2053], "kidshealth.org": [9036], "ubuntu-art.org": [21006, 21007], "touch.deti.mail.ru": [10040], "rewards.comparethemarket.com": [3575], "nuevocloud.com": [20959], "nvdd.info": [2053], "blog.docker.com": [4704], "ptclr.com": [2053], "ir.tcw.mx": [2053], "healthonnet.org": [7397], "go.mystady.com": [2053], "filmlinc.com": [5923], "dynavision.de": [4931], "mixrad.li": [2053], "laptoponline.hu": [9308], "www.my-chrome.ru": [20856], "book.360buy.com": [135], "*.airbnb.fr": [788], "l.ynn.me": [2053], "ilovedogs.ws": [2053], "mail.centrum.cz": [19674], "www.synergistscada.com": [15989], "www.moodle.com": [10760], "blog.peerj.com": [12727], "ndnx.us": [2053], "crmu.se": [2053], "movie4k.me": [10824], "portrait1.sinaimg.cn": [15091], "imgcache.gtimg.cn": [7120], "www.wilhelm-gym.net": [18610], "bsteg.me": [2053], "ubrzap.me": [2053], "ticketweb.*": [16690], "terresoubliees.com": [16392], "faesmi.it": [2053], "linuxforums.org": [9582], "provesga.upf.edu": [17674], "cloud.idg.se": [7852], "blog.buzzfeed.com": [2531], "eerdmans.com": [5205], "static.gimp.org": [20240], "wrkr.bz": [2053], "drv4.cc": [2053], "suffolkcoastal.greenparty.org.uk": [7052], "stlpl.co": [2053], "share.bjornf.tw": [2053], "s.frd.mn": [2053], "store.sony.com.mx": [15399], "www.parkmodelsdirect.com": [12609], "dkny.co": [2053], "picdor.co": [2053], "scienceathome.org": [14623], "bba.bloomberg.net": [2171], "odg.link": [2053], "www.victoriassecret.com": [17964], "benjm.info": [2053], "itsyner.gy": [2053], "shwr.us": [2053], "www.*.umaine.edu": [17607], "a.animos.us": [2053], "bcs.dengisend.ru": [4440], "carbonma.de": [2053], "astyle-src.alicdn.com": [846], "*.tnnet.fi": [16093], "samhar.ro": [2053], "cdmi.engineering.osu.edu": [11959], "kosar.in": [2053], "cdn.3news.co.nz": [154], "tickertech.com": [16681], "blockexplorer.com": [2137], "kryton.mysql.cesky-hosting.cz": [19680], "ads.adfox.ru": [563], "www.luxurycustomwheels.com": [9842], "hastrk1.com": [7367], "linux.org.ru": [9568], "www.benmarshall.me": [1825], "www.cavium.com": [2970], "www.access.caltech.edu": [2815], "www.notalwaysromantic.com": [20931], "img.ui-portal.de": [17230], "help.discussions.zoho.com": [19202], "iojs.org": [8486], "pxlspt.co": [2053], "www.clockworkmod.com": [3332], "blog.pay4bugs.com": [12677], "hacks.owlfolio.org": [12384], "csgo.backpack.tf": [1642], "www.bicomsystems.com": [19528], "pt.witness.org": [18683], "storyso.be": [2053], "61dn.se": [2053], "agenda.athaliasoft.fr": [1348], "proxery.com": [13404], "amsleep.co": [2053], "price.ua": [13276], "letsencrypt.org": [9422], "www.whitehatters.academy": [22016], "yc2.biz": [2053], "www.vianet.co.uk": [17955], "fyurl.tk": [2053], "bluekrypt.com": [2187], "bclaconnect.ca": [1547], "dfzrad.io": [2053], "jmj.link": [2053], "l.benny.id": [2053], "wolframalpha.com": [18698], "giz.lv": [2053], "s8.pimg.tw": [12890], "codeplex.com": [3435], "erfolgscenter.1und1.de": [82], "kwebb.me": [2053], "pyra-handheld.com": [21232], "www.extensis.com": [5634], "www.exavault.com": [5581], "royaltalens.us": [2053], "my.3dg.is": [2053], "knsaber.com": [16821], "c.hris.me": [2053], "umassulearn.net": [17551], "www.cgmarketingsystems.com": [3037], "f5s.us": [2053], "lfurls.com": [2053], "docutiles.cnrs.fr": [6314], "online-mahnantrag.de": [12064], "techverse.com.au": [16275], "8.sparkxt.space": [2053], "wnd.ms": [2053], "sourceconference.com": [15426], "edscpnews.com": [2053], "cibc.com": [2658], "impls.bz": [2053], "kintera.org": [9064], "www.edrs.sfa.bis.gov.uk": [17243], "investors.marchex.com": [16648], "l.navit.ie": [2053], "tddhq.com": [2053], "www.tppinfo.org": [18730], "nuclear.osu.edu": [11959], "www.yinfor.com": [22103], "c2c.websupport.novell.com": [11728], "onlinesinav6.anadolu.edu.tr": [1025], "forum.middlemanapp.com": [20793], "maps.google.co.*": [6969], "porya.dk": [2053], "ressources.w4a.fr": [18186], "blagoveshchensk.beeline.ru": [1801], "id.lbp.me": [20644], "cgmarketingsystems.com": [3037], "careers.opendns.com": [12130], "7terminals.com": [227], "atlasop.cern.ch": [2631], "oma.aalto.fi": [428], "webmail.srcf.net": [15590], "doid.co": [2053], "brokentoaster.com": [2413], "lhdiet.co": [2053], "www.positivessl.com": [13173], "www.morethantwo.com": [10774], "www.aberdeenshire.gov.uk": [451], "37signals.com": [143], "atby.us": [2053], "www.javadoc.io": [8678], "wanwang.aliyun.com": [861], "banks.ly": [2053], "on.hbazaar.es": [2053], "personales.us.es": [17706], "wilhelmtux.ch": [22028], "api.oscar.aol.com": [361], "www.bussit.turku.fi": [21816], "senmusi.cc": [2053], "www.rapidgator.net": [13794], "*.nathnac.org": [11276], "mnib.ca": [2053], "ci.debian.net": [4351], "ifex.org": [7870], "login.liu.se": [9238], "cuny.edu": [3248], "www.xagyl.com": [18801], "manof.me": [2053], "myny.it": [2053], "cdn2.kongcdn.com": [9127], "zagreb.usembassy.gov": [21879], "drgn.do": [2053], "kraftsingl.es": [2053], "tfaforms.com": [16424], "pit.lc": [2053], "e.bcmazda.com": [2053], "www.nhlbi.nih.gov": [11115], "mayocl.in": [2053], "piraten-mfr.de": [12923], "business.zoho.com": [19202], "developer.ibm.com": [7821], "uiux.io": [2053], "discussion.dreamhost.com": [4844], "heinlein-support.de": [7426], "meso.gd": [2053], "she.tc": [2053], "dscvrn.pt": [2053], "nickelled.com": [20909], "xda-developers.com": [18808, 18809], "tag.beanstock.co": [1785], "cmbb.in": [2053], "www.cloudlinux.com": [3349], "cell.fixstars.com": [20128], "zeid.co": [2053], "www.resourceadvisor.anthem.com": [19395], "insight.gunosy.com": [7151], "242.fyi": [2053], "support.amd.com": [962], "www.cipherlawgroup.com": [3209], "www.bunchball.net": [2481], "typef.com": [4421], "www.sharedvalue.org": [14918], "telford.roadworks.org": [21318], "blwtr.co": [2053], "sportonline.calderdale.gov.uk": [2794], "otvet.yuga.ru": [22121], "bt.me": [2053], "cryptonotestarter.org": [19828], "frid.ge": [6329], "mork.mo": [10781], "bss.to": [2053], "on.criscara.com": [2053], "tracking.adjug.com": [565], "embed.wakelet.com": [18248], "www.t-mobile.com": [16026], "dig.ma": [2053], "darkcoinfoundation.org": [4229], "yampp.de": [2053], "bwc188113.bw.fh-nuernberg.de": [16428], "dig.ms": [2053], "www.migrol-heizoel.ch": [10562], "cows.im": [2053], "ecntr.io": [2053], "sprts.is": [2053], "bizappstoday.progress.com": [13360], "museu.tk": [2053], "tod.ly": [2053], "members.mlive.com": [9927], "www.edx.org": [5171], "maec.mitre.org": [10649], "lichtblick.de": [9486], "chat.cesky-hosting.cz": [19680], "grlgn.us": [2053], "catedradpzdesarrollolocal.unizar.es": [17643], "packagelab.com": [12518], "smithhou.se": [2053], "sprts.in": [2053], "un.org": [17261], "shrib.com": [21439], "nfadmin.net": [11094], "s.i-i-news.com": [2053], "escfl.info": [2053], "lt4l.co.uk": [2053], "safwth.us": [2053], "boostbybenz.com": [2265], "link.ne9la.com": [2053], "scribus.net": [14658], "neteller.com": [12270], "forums.comcast.com": [3525], "sthelens.greenparty.org.uk": [7052], "my.variomedia.de": [17860], "otr.im": [11880], "mix.buzz": [2053], "anch.co": [2053], "static-resource.np.community.playstation.net": [13014], "www.cms.hhs.gov": [7192], "duellspiele.web.de": [18347], "www.365ticketsscotland.com": [141], "b.ad.am": [2053], "api.orgsync.com": [12305], "ap.chaucanh.net": [2053], "nepal.usembassy.gov": [21879], "chrgng.co": [2053], "*.uva.nl": [17751], "www.nartac.com": [11227], "strm.link": [2053], "viavidoc.com": [2053], "m.rubygems.org": [14254], "youraccount.leeds.gov.uk": [20653], "img1.1tv.ru": [79], "staff.lib.ncsu.edu": [11690], "c8v.tv": [2053], "app.mailaway.homeaway.com": [20352], "planningconsult.rbkc.gov.uk": [21266], "tts.tips": [2053], "bigmack.co": [2053], "onlinefamily.norton.com": [11703], "smre.co": [2053], "go.emsman.nl": [2053], "carepl.us": [2053], "sozialwissenschaften.htwk-leipzig.de": [7736], "revdev.it": [2053], "hyer.co": [2053], "sms.e-paycapita.com": [19978], "wired.com": [18664], "www.reelhd.com": [13942], "trial.turbine.com": [17110], "global.riverbed.com": [14140], "api.creator.zoho.com": [19202], "crbnl.cc": [2053], "politics.slashdot.org": [15192], "cntpk.tk": [2053], "wiki.enigmabox.net": [5376], "ecburl.com": [2053], "sbarmen.no": [14559], "support.subgraph.com": [15813], "tokofbku.co": [2053], "wurfschei.be": [2053], "zest.fm": [2053], "telegram.com": [16334], "jz.meituan.com": [10405], "achkar.net": [2053], "login.ubuntu.com": [17382], "boem.sk": [2053], "www2.postdanmark.dk": [13189], "nbviewer.ipython.org": [7954], "s114.cnzz.com": [3391], "movableink.com": [10816], "webmailer.1und1.de": [82], "akcdn.okccdn.com": [11969], "*.espivblogs.net": [20059, 20060], "www.holarse-linuxgaming.de": [7590], "norac.co": [2053], "nrod.inl.gov": [20462], "vdata.amap.com": [19360], "edmnw.com": [2053], "www1-cdn.dell.com": [4413], "chenyufei.disqus.com": [4656], "refunds.stanford.edu": [15635], "securetrial.dealinteractive.com": [19882], "control.preyproject.com": [13272], "www.davidlazar.org": [4305], "engineering.riotgames.com": [14127], "www.ubuntuforums.org": [17384], "join.gay180.com": [6595], "ihbb.htwk-leipzig.de": [7736], "accountsolution.courierpostonline.com": [3783], "www.blackfoot.co.uk": [2105], "s.youn.jp": [2053], "fmgo.to": [2053], "recombu.com": [13883], "*.infojobs.net": [8249], "www.finseth.com": [20122], "api.gettyimages.com": [6741], "go.shsu.ca": [2053], "www.xperiastudio.com": [18886], "summit.digitalgov.gov": [4572], "social.kennedy-center.org": [20585], "eb.st": [2053], "*.airbnb.co.uk": [788], "frng.fr": [2053], "adj.li": [2053], "wiki.servicenow.com": [14866], "www.intercom.io": [8392], "my.sandwell.gov.uk": [21367], "smck.me": [2053], "bcgk.co": [2053], "freelansim.ru": [6298], "newscientistsubscriptions.com": [11491], "x.crpg.info": [2053], "viceland.com": [21921], "www.lansforsakringar.se": [9304], "blogs.yandex.kz": [18957], "dznad.com": [2053], "greyhound.com": [7073], "diff.is": [2053], "media.wix.com": [18684], "static.bia2.com": [1891], "feathers.li": [2053], "music.xrec.net": [2053], "securelogin.bp.poste.it": [13192], "www.jensge.org": [8702], "jiangyin.meituan.com": [10405], "adultfriendfinder.com": [683], "theisp.dk": [2053], "cryptopp.com": [3957], "www.specialisttraining.g4s.com": [20194], "www.veloviewer.com": [17891], "ldrtribe.com": [2053], "kabeliasnet.tk": [2053], "capti.me": [2053], "portal.rfsuny.org": [13654], "www.cam.illinois.edu": [17544], "ch4d.co": [2053], "tempolibero2.ffs.ch": [15946], "about.amara.org": [19361], "www.minohubs.com": [10619], "shawnr.net": [2053], "justiceandpeace.georgetown.edu": [6668], "www.acoustid.org": [516], "www.bitcoinshop.us": [2020], "on.getold.com": [2053], "www.goodsie.com": [6959], "climate-diplomacy.org": [3325], "plc-jspg.link": [2053], "social.anz.com": [355], "parking.cambridgeshire.gov.uk": [19632], "rainn.org": [13629], "gratisoft.us": [7025], "rt0.map.gtimg.com": [7121], "fusionhelp.oracle.com": [12284], "dealers.autosite.com": [1471], "www.readplaintext.com": [13847], "*.spi-inc.org": [15346], "china-henan.jd.com": [8571], "www.arewee10syet.com": [19412], "www.bitshare.com": [19544], "to.iag.me": [2053], "ad.rmxads.com": [14114], "on.spiceworks.com": [15517], "maxspeedcdn.com": [10258], "saasurl.us": [2053], "*.drupal.org": [4876], "l-auto-entrepreneur.org": [9210], "tndy.me": [2053], "wwte8.com": [18232], "easycruit.com": [5124], "*.fvn.no": [6170], "www.wordfence.com": [18735], "webstac.wustl.edu": [18290], "bit.andyrus.ch": [2053], "s.kende.fr": [2053], "advconversion.com": [691], "ecocar3.osu.edu": [11959], "ir.monster.com": [16648], "www.trustkeeper.net": [17057], "ld-4.itunes.apple.com": [1160], "bvue.co": [2053], "bio.tv": [2053], "exca.li": [2053], "gonyc.co": [2053], "promo.d-noy.net": [2053], "gutsytech.com": [2053], "draytek.com": [4842], "qrky.co": [2053], "raw.github.com": [6801], "incrv.co": [2053], "*.ekomi.de": [5020], "app-community.canvaslms.com": [2873], "www.sydney.edu.au": [21631], "tune.yandex.kz": [18957], "mail.aalto.fi": [428], "armedforcesday.org.uk": [1239], "pphm.direct": [2053], "kc.sdamcc.org": [2053], "static7.businessinsider.com": [2512], "bbob.co": [2053], "pkfcp.uk": [2053], "game.hdslb.com": [20327], "1.kakunosh.in": [2053], "tvguide.quickline.com": [21243], "members.breakingmuscle.com": [19588], "www.mobilitaet2050.vcd.org": [17766], "kth.bme.hu": [1570], "alta.life": [2053], "tagil.beeline.ru": [1801], "www.sec.escapistexpo.com": [16453], "status.feral.io": [5866], "g5.chaucanh.net": [2053], "profitbricks.co.uk": [13355], "euroflorist.no": [5512], "cue.tc": [2053], "www.shrib.com": [21439], "www.netmile.co.jp": [11391], "*.pivotallabs.com": [12948], "alivenotdead.com": [860], "twigfil.ms": [2053], "milg.pw": [2053], "kk2go.com": [2053], "simpa.na": [2053], "abiresearch.com": [280], "webanalytics.library.cornell.edu": [3744], "acen.jd.com": [8571], "dictionaryblog.cambridge.org": [18730], "vcpurl.tk": [2053], "l.easyapple.org": [2053], "tid.gov.hk": [7212], "xoab.me": [2053], "www.ibario.com": [7824], "eai.org": [5252], "smos.cnes.fr": [2691], "jyba.tk": [2053], "yb.meituan.com": [10405], "alpha.linuxfr.org": [9570], "www.toughchoices.co.uk": [21766], "*.arstechnica.com": [1253], "nto.pn": [2053], "static.site24x7.com": [15108], "app.dialshield.com": [1504], "www.getmeadow.com": [6718], "forum.processing.org": [13348], "www.anatoomikum.ut.ee": [17347], "online.havering.gov.uk": [7377], "url.dakodi.eu": [2053], "ashared.5min.com": [208], "s.moxbit.com": [2053], "static.couponcabin.com": [3779], "wiki.rtems.org": [13706], "www.pruefungsamt.jura.uni-mainz.de": [17611], "dl.phpboost.com": [21119], "l.faithtoday.ca": [2053], "fibr.it": [2053], "www.365tickets.co.uk": [137], "mail.telekom.sk": [16346], "spu.taobao.com": [16206], "pub.vecoma.org": [2053], "assets.whicdn.com": [18200], "m.tigerair.com": [16710], "printz.li": [2053], "sbmk.us": [2053], "lib.ncsu.edu": [11690], "properpet.com": [13385], "wsocx.com": [2053], "*.tremendesk.com": [609], "www.troyhunt.com": [21798], "l.alvinhkh.com": [2053], "blackboard.com": [2103], "www.webrover.ru": [21995], "turizm.ngs.ru": [20907], "www.b3n.org": [1526], "linuxmusicians.com": [9574], "evertou.ch": [2053], "marmotte.net": [10191], "changelog.wesnoth.org": [18500], "bugs.tizen.org": [16778], "rcksnd.tv": [2053], "activatemychannels.sky.com": [15170], "ecrimeresearch.org": [4986], "pitchford.co": [2053], "dmp.data.jhu.edu": [16562], "help.gocoin.com": [6896], "salenames.ru": [14485], "unirand.uio.no": [17615], "khub.net": [8877], "link.santo.so": [2053], "www.linuxfound.info": [9571], "hic.la": [2053], "cdn.reedbusiness.com": [13938], "www.wammo.co.nz": [9079], "xxx24hr.com": [18910], "bitcoinshop.us": [2020], "nasaimages.org": [4165], "factoryhomesale.com": [5740], "socialsell.in": [2053], "ahca.media": [2053], "de-de.facebook.com": [5733], "www.yuilibrary.com": [18929], "6fig.es": [2053], "www.projectdev.org": [21208], "apple4.pro": [2053], "www.opencsw.org": [12125], "o.twimg.com": [17153], "alphm.xyz": [2053], "planet.qt.io": [13545], "sfchron.cl": [2053], "request.lloydsbank.com": [9686], "domainwho.is": [4751], "pinkoi.me": [2053], "go.drive.sg": [2053], "taelite.co": [2053], "lb.ca": [9340], "go.teamgnh.it": [2053], "chembiofinder.cambridgesoft.com": [2827], "uiowa.link": [2053], "lb.cx": [2053], "hatzicf.sfu.ca": [14893], "birch.ly": [2053], "alditalk.de": [338], "photos-c.ak.fbcdn.net": [5816], "tfs.bz": [2053], "byezf.com": [2053], "www.dbs.com": [4084], "cloudtrax.com": [3356], "ru-support.evernote.com": [5555], "adserver.adreactor.com": [572], "collector.githubapp.com": [6801], "postwire.com": [13210], "ktk.de": [8906], "cr-q.us": [2053], "connect.asana.com": [1277], "d.riwi.com": [2053], "siosm.fr": [15101], "notalwaysworking.com": [20931], "lyrk.de": [9852], "www.forsten.sachsen.de": [14454], "virtkick.com": [18036], "clvr.li": [2053], "auth.alipay.com": [857], "p-tano.com": [12406], "sestroretsk.beeline.ru": [1801], "interc.pt": [2053], "get.popcorntime.io": [13142], "my.htw-berlin.de": [7246], "uc.udn.com.tw": [17224], "nanasilvergrim.cyberguerrilla.org": [4033], "veye.ca": [2053], "2010.mondediplo.com": [10729], "www.sit.fraunhofer.de": [6230], "cvlbe.at": [2053], "origin-cdn.rawgit.com": [13814], "bcene.ws": [2053], "www.eminhuseynov.com": [5312], "hi.chip.vn": [2053], "frazier.click": [2053], "blade20.ual.es": [17361], "www.mappedinisrael.com": [10137], "*.gatwickairport.com": [6586], "*.transmode.se": [16952], "www.atb-online.ru": [1346], "photos1.zillowstatic.com": [19182], "s.motta.jp": [2053], "en-contrainfo.espiv.net": [20058], "casam.at": [2053], "search.us.checkpoint.com": [3105], "dcft.co": [2053], "parsely.com": [12622], "thred.me": [2053], "rt.openssl.org": [12168], "xnsd.de": [2053], "hotspot.norton.com": [11703], "feralhosting.com": [5867], "pfts.nl": [2053], "joomlatools.co": [2053], "gritdigital.co.uk": [7085], "jcsu.jesus.cam.ac.uk": [2821], "hd4.us": [2053], "go.ozcan.me": [2053], "media6.congstar-media.de": [3641], "www.wyenet.co.uk": [18787], "vbnmkt.me": [2053], "active24.nl": [19279], "s.bonn.fm": [2053], "eatnow.com.au": [19998], "www.5dec.ru": [207], "bxffc.bz": [2053], "blog.onedrive.com": [12031], "users.vimention.com": [18009], "support.webmoney.ru": [18373], "ja.3.boardgamearena.com": [2219], "privateinternetaccess.com": [13324], "partner.yandex.by": [18953], "sbn.cc": [2053], "thaiapp.tk": [2053], "www.techjourney.net": [16278], "portrait5.sinaimg.cn": [15091], "mei.1688.com": [44], "x.oo0.eu": [2053], "www.proxify.com": [13405], "mcalp.in": [2053], "conversionsbox.com": [3694], "photoboothto.co": [2053], "*.blogspot.fi": [2166], "www.mamp.info": [20744], "img.staticmy.com": [15685], "heimatshop-bayern.de": [7424], "status.bintray.com": [1951], "*.blogspot.fr": [2166], "www.dietrolldie.com": [18730], "bstn.to": [2053], "overlakehospital.org": [12371], "jeunes.cnes.fr": [2691], "spcts.nyc": [2053], "*.server314.com": [14848], "shop.github.com": [6801], "smartyield-mgr.smartstream.tv": [15247], "cdn.banx.io": [1705], "pics-view.info": [2053], "mca.re": [2053], "json8.nytimes.com": [11189], "rodriguez.ml": [2053], "www.verlagsherstellung.de": [7735], "*.griffith.edu.au": [7081], "shop.12wbt.com": [10523], "www.ncei.noaa.gov": [11272], "rmbln.gs": [2053], "middelburg.nl": [11324], "image.inforesist.org": [20457], "timos.me": [16678], "mprnts.co": [2053], "veredelungslexikon.htwk-leipzig.de": [7736], "pure.city": [2053], "logentries.com": [9715], "www.tigerair.com.au": [16710], "indexing.familysearch.org": [5760], "easy.ps": [2053], "www.speed-burger.com": [15501], "ifbx.co": [2053], "marketo.justgiving.com": [8845], "csites.ornl.gov": [11892], "to.saqqa.jo": [2053], "databases.library.jhu.edu": [16562], "www.l-auto-entrepreneur.org": [9210], "lnk.basicer.com": [2053], "www.firebase.com": [5970], "pda.blogs.yandex.by": [18953], "associates.amazon.co.jp": [19364], "zenimax.com": [19144], "addo.cc": [2053], "chinasmbmarketplace.cisco.com": [3221], "bathnes.gov.uk": [1737], "dot-bit.org": [4785], "www.guru.de": [20299], "modloft.co": [2053], "d313.co": [2053], "piratenpartei.at": [12937], "campususa.state.gov": [17345], "check.egais.ru": [20018], "npmjs.org": [11738], "wartsi.la": [2053], "catalyst.library.jhu.edu": [16562], "cloudmining.guru": [3370], "ieee-elearning.org": [7865], "eto.bb": [2053], "www.notalwayshopeless.com": [20931], "pjt.rs": [2053], "authorization.api.qbrick.com": [13529], "enfuseconference.com": [7134], "bnts.me": [2053], "*.freshdesk.com": [6322], "acml.osu.edu": [11959], "github.com": [6801], "moderngovwebpublic.redditchbc.gov.uk": [21284], "cluster2.ahosting.cz": [778], "amrph.com": [2053], "xubuntu.org": [18907], "flossprize.apc.org": [1329], "pokerstarspartners.com": [21163], "picasaweb.google.*": [6965], "files.kartfighter.com": [8952], "helpdesk.earthcam.net": [19988], "ppro.me": [2053], "altmetric.com": [933], "torrentshack.me": [16855], "jsrt.tk": [2053], "org.mangolanguages.com": [10115], "newsinhealth.nih.gov": [11241], "gajim.org": [6523], "*.makeuseof.com": [10073], "err.taobao.com": [16206], "married.dance": [2053], "*.vichan.net": [17960], "jdamii.jd.com": [8571], "www.tn123.org": [21751], "agenda.ct.infn.it": [7913], "taki.hizlisaat.com": [7574], "fenamp.co": [2053], "cloudforge.com": [3347], "intuitlabs.com": [8453], "fl.uy": [2053], "www.hostdime.com": [7654], "orbu.ch": [2053], "dnfsbstg.prod.acquia-sites.com": [4387], "bweave.me": [2053], "walker.news": [2053], "support.eiffel.com": [5224], "s43.io": [2053], "n.jagongan.org": [2053], "i3.services.social.s-msft.com": [14296], "jerot.us": [2053], "vjd.io": [2053], "pocketmatrix.com": [13058], "inch-ci.org": [8193], "mmyt.co": [2053], "oascentral.post-gazette.com": [12945], "www.iedgmbh.de": [7859], "kvcstms.com": [2053], "www.webprospector.de": [18377], "kyivpost.com": [9206], "picti.me": [2053], "itel.georgetown.edu": [6668], "hivene.ws": [2053], "kashishi.meituan.com": [10405], "kera.st": [2053], "sha2.kuix.de": [9183], "rheden.nl": [11324], "*.bancastato.ch": [20574], "wiki.galpon.org": [20197], "www.wifipineapple.com": [18572], "deel.dict.cc": [4536], "www.thepbproxy.website": [21709], "l.kaustavdm.in": [2053], "hap.cm": [2053], "audiogo.com": [1395], "who.godaddy.com": [6898], "www.tid.gov.hk": [7212], "ifap.ed.gov": [4988], "aldi-mobile.ch": [338], "sonar.tocco.ch": [16797], "cmn.gd": [2053], "lambda-tek.com": [9290], "forum.lugons.org": [9262], "digital.report": [19919], "dsrv.it": [2053], "marketplace.cms.gov": [19742], "fireside.events": [2053], "watch.yandex.com": [18956], "opensource.com": [12244], "www.bluemix.net": [2205], "diplode.mondediplo.com": [10729], "pp.omikk.bme.hu": [1570], "moh.bi": [2053], "www.facebook.jp": [5736], "ntx.lv": [2053], "*.acenet-inc.net": [509], "brandspankingnew.net": [2334], "www.legolanddiscoverycenter.com": [9391], "firetv.ga": [2053], "h105.nl": [2053], "*.asu.edu": [1231], "more-onion.com": [10773], "community.giffgaff.com": [20237], "kalw.at": [2053], "www.ees.elsevier.com": [5285], "j.joiha.com": [2053], "www.turn.com": [17115], "eportfolio.plymouth.ac.uk": [13055], "catalogue.yandex.by": [18953], "help.sharethis.com": [14913], "sync.st": [2053], "www.techsay.com": [16272], "groups.live.com": [9644], "max.fyi": [2053], "ims.to": [2053], "cerit-sc.cz": [2628], "cmems.stanford.edu": [15635], "content.cws.iop.org": [8344], "calt.cms.gov": [19742], "dfat.gov.au": [4450], "*.ticketone.it": [16683], "kbeav.com": [2053], "bf.chaucanh.net": [2053], "www.theproxy.site": [21709], "ads.mda.net.co": [2053], "bcontrol.bezeqint.net": [1886], "www.hastings.gov.uk": [7366], "www.hotmail.co.uk": [7703], "*.uiowa.edu": [17602], "s.tccl.info": [2053], "www.kemi.se": [8872], "www.lyft.me": [9845], "m-dt.co": [2053], "oracle.taleo.net": [16177], "buzz.kora11.com": [2053], "secure.blogtalkradio.com": [2156], "www.finanswatch.dk": [5944], "go.ewall.org": [2053], "scienceconference.stanford.edu": [15635], "idm.mit.edu": [9916], "woodstock.georgetown.edu": [6668], "custhelp.consumerreports.org": [14115], "thumbnails.5min.com": [208], "conetix.com.au": [3630], "coma.la": [2053], "ver.shipp.tv": [2053], "luissilva.co": [2053], "asseenonresponsetv.com": [1311], "as112.net": [383], "pwr.my": [2053], "www.givetolocal.stanford.edu": [15635], "www.needmorehits.com": [11325], "*.alternate.be": [921], "fio.cc": [2053], "swo.pe": [2053], "m.hr.ma": [2053], "www.membercentral.com": [10417], "spl.jobs": [2053], "vauva.fi": [21898], "elgour.me": [2053], "www.govmetric.com": [6993], "geekhoodi.es": [2053], "thesexyhouse.com": [14889], "xfire.com": [18870], "support.cloudshark.org": [19740], "shop.entheogene.de": [5400], "tox.chat": [16891], "www.spielfuerdeinland.de": [15524], "rpdz.me": [2053], "sbshare.co": [2053], "liagriffith.me": [2053], "www.slproweb.com": [15220], "www.fornex.com": [6165], "nhale.co": [2053], "workorder.console.aliyun.com": [861], "beta.minecraft.net": [10604], "s104.cnzz.com": [3391], "secure.switchkonnect.com": [15955], "newfarmers.usda.gov": [17495], "dot429.com": [4783], "cdn.broadcasthe.net": [2408], "getcom.cc": [2053], "cts.sanoma.fi": [14527], "www.creativeskills.be": [3856, 3857], "on.jsonl.in": [2053], "*.wimpmusic.com": [18574], "www.wpad.leeds.ac.uk": [17604], "t1m.bz": [2053], "www.surfingip.info": [3597], "theurb.co": [2053], "cadso.co": [2053], "consultldf.tauntondeane.gov.uk": [16232], "rango.li": [2053], "shop.wattpad.com": [18303], "www.nrk.no": [11744], "www.openuni.io": [12250], "download.calibre-ebook.com": [2799], "lg.schnellno.de": [14602], "mgaphn.com": [2053], "iab.org": [7809, 7810], "2ave.us": [2053], "btckan.com": [1602], "stackexchange.com": [15611], "cloud.digitalocean.com": [4578], "bdbd.us": [2053], "pdfill.com": [21099], "confluence.isc.org": [7966], "sog.objective.co.uk": [20979], "solid.kde.org": [8871], "transparency.org": [16954], "fab.yt": [2053], "img1.picload.org": [12873], "translate.hootsuite.com": [7633], "pgsql.pipni.cz": [12460], "engineering.groupon.com": [7100], "swi.pe": [2053], "centrance.com": [2645], "wikimedia.cz": [18595], "hastrk3.com": [7368], "1d4.us": [67], "en.avaaz.org": [1476], "www.is.gd": [20499], "zndr.vn": [2053], "s.news.com.au": [2053], "product.voxmedia.com": [18147, 21953], "go.eu.bbelements.com": [1764], "a.dilcdn.com": [4602], "intranet.havering.gov.uk": [7377], "thenanfang.com": [16566], "www3.netflix.com": [11421], "blue1.pspr.fi": [2053], "medportal.wustl.edu": [18290], "myucsdchart.ucsd.edu": [17216], "bap.navigator.web.de": [18347], "slth.co": [2053], "secure.oron.com": [12315], "kanbox.com": [8931], "hereplus.me": [7467], "learning.oxfordshire.gov.uk": [21056], "mirror.fxprime.com": [5723], "hengshu-imagebucket.oss.aliyuncs.com": [19346], "knst.mn": [2053], "*.spench.net": [15511], "nullrefer.com": [11771], "rockpaperphoto.com": [14167], "files.5min.com": [208], "www.governmentattic.org": [6999], "hpfl.at": [2053], "logitech.com": [9723], "*.campuspack.net": [2844], "om.nl": [12229], "api.digicert.com": [4556], "vilma.co": [2053], "brd.nci.nih.gov": [11241], "hieber.de": [20337], "admin.websupport.cz": [18389], "soldad.us": [2053], "gradwell.com": [7011], "shah.es": [2053], "stch.me": [2053], "mr.ilysoft.info": [2053], "classymotherfucker.com": [3278], "syw.co": [2053], "*.sw-in.de": [15621], "photo-rlh.com": [2053], "link.padlad.com": [2053], "5ed.us": [2053], "auspol.info": [2053], "members.literotica.com": [9628], "ewrks.co": [2053], "login.nemlog-in.dk": [11335], "cqh.harvard.edu": [7351], "static.ypautos.com": [15869], "www.linuxdays.cz": [9569], "bombe.rs": [2053], "soutenir.amnesty.fr": [1000], "www.calderdale.gov.uk": [2793], "www.hlat.us": [7256], "moviii.isy.liu.se": [9238], "psgs.us": [2053], "luyi.meituan.com": [10405], "l.welaika.com": [2053], "app.adjust.com": [637], "advnt.st": [2053], "iwscamps.com": [2053], "kens.io": [2053], "www.withsix.com": [18680], "media.uow.edu.au": [17636], "gdsr.ch": [2053], "support.vevent.com": [21913], "accounts.logme.in": [9709], "go.th3pf.com": [2053], "www.secure-endpoints.com": [14723], "ode.tj": [2053], "citaprevia.ual.es": [17361], "go.drod.io": [2053], "www.price.ua": [13276], "norilsk.beeline.ru": [1801], "x.nola411.com": [2053], "squid.buzz": [2053], "www.privacyisawesome.com": [5898], "*.ebaystatic.com": [4974, 4975], "harass.stanford.edu": [15635], "baobao.taobao.com": [16206], "thc.ac": [2053], "oxhorn.it": [2053], "factoryexpodirect.com": [5740], "www.ellak.gr": [7042], "broadcast.ch": [21550], "*.facilities.udel.edu": [17535], "mypassword.andover.edu": [12835], "www.apple.com.cn": [1162], "www.pace.com": [12513], "f.s-c.pw": [2053], "bmk.nu": [2053], "j2c.me": [2053], "bwnews.co": [2053], "www.healths.biz": [7402], "13joycasino.com": [20552], "support.pingdom.com": [12902], "li.loschev.com": [2053], "op-co.de": [12100], "bitcoin.pl": [2017], "nextv.so": [2053], "www.parnasparty.ru": [12615], "rostov.rt.ru": [13703], "mitne.ws": [2053], "memphiscourtside.com": [10426], "www.video.ecc-platform.org": [4978], "jobcenter.jammerbugt.dk": [8654], "ms.4.boardgamearena.com": [2219], "applicationstemp.barnsley.gov.uk": [19488], "sv.no": [14437], "newsletter.bitcoin.co.id": [2015], "shop.wikileaks.org": [18590], "saintcon.org": [21358], "ccc-mannheim.de": [2593], "assets.cdn.gamigo.com": [6563], "www.greyhound.ca": [7073], "img08.rl0.ru": [14147], "dashboard.buddybuild.com": [19607], "consentmgt.wayf.dk": [18192], "kfs.usc.edu": [17564], "ultim.kr": [2053], "tax.foundation": [2053], "imageproxy.pimg.tw": [12890], "www.runnymede.gov.uk": [21340], "brandsaver.ca": [13349], "rtrpics.com": [2053], "www.kissanime.to": [9071], "on.hisaor.org": [2053], "www.newsdaily.com": [11520], "be.beperk.com": [2053], "static.internet.org.nz": [8425], "out.otaserve.net": [21041], "pwg3.gtimg.cn": [7120], "dhworld.me": [2053], "eikn.ch": [2053], "www.cloudworks.nu": [3357], "pcug.org.au": [12423], "*.pleaseignore.com": [13032], "www.decadent.org.uk": [4358], "www.perot.me": [12791], "static.sharethrough.com": [14925], "js.rating-widget.com": [13810], "engine.trklnks.com": [17030], "*.googleusercontent.com": [6972], "mys.mn": [2053], "daniel.haxx.se": [20319], "www.cheema.com": [3112], "prmr.ly": [2053], "muenchen.tv": [10876], "onesignal.com": [12043], "since1880.be": [2053], "newde.al": [2053], "pages.zend.com": [19136], "chrds.xyz": [2053], "www.kallithea-scm.org": [8924], "unsearcher.org": [17655], "gotjio.tk": [2053], "ahorroentinta.com": [16798], "equi.link": [2053], "teku.at": [2053], "dotd.club": [2053], "cuaes.cals.cornell.edu": [3744], "wrkvr.nl": [2053], "www.manhattan-institute.org": [10116], "www.liberty-human-rights.org.uk": [9459], "*.morrisons.co.uk": [10789], "news.ad-stir.com": [552], "go2.xnite.org": [2053], "gimlaim.bezeq.co.il": [19522], "appeal.jdpay.com": [8576], "questadmin.net": [6400], "superhexagon.com": [15875], "www.mobile.yandex.com.tr": [18954], "api.enhancedsteam.com": [5375], "www.99bitcoins.com": [243], "invest.timeinc.com": [16731], "www.abine.com": [458], "www.thehiddenbay.xyz": [21215], "corpssl.hdfcbank.com": [7389], "mndsh.re": [2053], "trw.trmb.co": [2053], "www.community.spot.im": [15545], "lars.space": [2053], "bill.westlan.ru": [22006], "connect.withsix.com": [18680], "linkmaker.itunes.apple.com": [1160], "monthlyreview.org": [10756], "porvir.catracalivre.com.br": [2967], "wachtwoord.xs4all.nl": [18835], "up.tips": [2053], "perl.org": [12788], "acomp.stanford.edu": [15634], "s4g.co": [2053], "heatmap.me": [7417], "www.dozuki.com": [4828], "m.lowes.com": [9800], "*.zzounds.com": [19083], "quakenet.org": [13556], "ziggo.nl": [19179], "sundayworld.com": [15854], "modules.unrealircd.org": [17651], "apts.es": [2053], "imbo.vgc.no": [17776], "fr.thinksteroids.com": [9904], "crwd.fr": [2053], "cache1.artprintimages.com": [1261], "peeringdb.com": [12731], "gotige.rs": [2053], "www.less.works": [20665], "get3.adobe.com": [655], "jobscore.com": [8739], "flatrate.co": [2053], "vzp.cz": [17816], "www.noxa.de": [20940], "dominium.help": [2053], "bodypo.com": [2053], "go.ennui.tv": [2053], "www.zimbatm.com": [19184], "bankrate.com": [1698], "cwrap.org": [19842], "www.walletgenerator.net": [18257], "devices.live.com": [9644], "53eig.ht": [2053], "tangoc.co": [2053], "extras.ooyala.com": [12099], "animoto.com": [1067], "fliesen.sr": [2053], "futglo.co": [2053], "exmn.me": [2053], "go.e2.ma": [2053], "connect.over-blog.com": [12361], "pack.google.com": [6962], "wikis.oracle.com": [12284], "blog.growingio.com": [20286], "bezrealitky.cz": [19523], "api.unbounce.com": [17436], "speakpipe.com": [15482], "f.emi.ovh": [2053], "www.cse.unsw.edu.au": [17273], "www.privatbanka.sk": [13323], "fiskeriverket.se": [6001], "efast.dol.gov": [19938], "wccusd.illuminateed.com": [20430], "skyfi.xyz": [2053], "fdsj.nl": [2053], "pentabarf.org": [12753], "cabletv.com": [2762], "help.apple.com": [1160], "magazine.wustl.edu": [18290], "www.spa.wustl.edu": [18290], "superstarm.ag": [2053], "s.canaltours.dk": [2053], "icho.se": [2053], "fdl.me": [2053], "qnre.ws": [2053], "w00tads.com": [18182], "usdalinc.sc.egov.usda.gov": [17495], "branstark.uk": [2053], "*.geek.com": [6611], "wiki.unrulymedia.com": [21862], "*.sdsc.edu": [14331], "blogs.loc.gov": [9690], "onsiteconcierge.com": [13625], "amazonwebservices.com": [954], "*.tadst.com": [16151], "www.safe-in-cloud.com": [14461], "krvn.us": [2053], "www.it.cornell.edu": [3744], "qr.tickuant.com": [2053], "ffa.vutbr.cz": [17814], "sharedance.pureftpd.org": [13466], "vice.com": [17959], "biddl.me": [2053], "erc.edu": [5048], "kylie.com": [20625], "m.oxfordshire.gov.uk": [21056], "wiki.debianforum.de": [4354], "tratamento.in": [2053], "www.mvptitle.com": [9972], "linuxfoundation.org": [9572], "astore.amazon.de": [19369], "www.gigasize.com": [6765], "direct.asda.com": [387, 19429], "intro.maxon.net": [10263], "shahsel.be": [2053], "www.youtube.co.nz": [19016], "inapub.co.uk": [8185], "www.italliance.com": [7988], "cdn-blog.opendns.com": [12130], "www.orangeplant.co.uk": [21028], "wolber.me": [2053], "www.zocalopublicsquare.org": [19199], "git.lysator.liu.se": [9238], "scrntxtr.co": [2053], "www.mutualart.com": [10920], "alphab.gr": [2053], "filer.anst.uu.se": [17352], "documentfreedom.net": [4716], "ludios.org": [9817], "web5.uottawa.ca": [17556], "tobtr.com": [16795], "ssl.scz.li": [2053], "f5.com": [5659], "dbricks.co": [2053], "redmine.hackerspace.pl": [7280], "parkingpermits.west-norfolk.gov.uk": [22004], "g.tnw.so": [2053], "bru.bz": [2053], "wiki.awesome-it.de": [1501], "umicheng.in": [2053], "project.webplatform.org": [18376], "l.financefox.ch": [2053], "cgi.pub.qq.com": [13514], "classroom.udacity.com": [17392], "aclu-sc.org": [290], "www.cityoflondon.gov.uk": [3249], "nrahq.org.org": [20947], "pypip.in": [13494], "glambeauty.co": [2053], "l.djdb.me": [2053], "*.federalreserve.gov": [5835], "unicefusa.org": [17467], "l.hale.ee": [2053], "my.libreoffice.org": [9471], "democracy.bathnes.gov.uk": [1737], "betterfutu.re": [2053], "addons.privacyfix.com": [13319], "sixapart.jp": [15136], "www.dntx.com": [4146], "p4cm.info": [2053], "slac.com": [15187], "*.slooh.com": [14372], "gtnr.it": [2053], "www.pobox.com": [13057], "trustly.se": [17072], "lsa.umich.edu": [17552], "www.iss.leeds.ac.uk": [17604], "www.kivo.com": [9078], "link.f1.org.uk": [2053], "www.violetdarkling.com": [18019], "socialreader.com": [15314], "eqfx.co": [2053], "login.facebook.com": [5733], "*.ana.net": [1332], "ckyrc.co": [2053], "velofinder.ch": [21903], "edubuntu.org": [5169], "on.rl.tv": [2053], "juego.pl": [2053], "static.sourceforge.net": [15423], "national.za.net": [2053], "palfrader.org": [12546], "www.codepunker.com": [3412], "tfgo.de": [2053], "tpb.tormirror.download": [21771], "jiagu.qcloud.com": [13530], "shows.kingdomofloathing.com": [1343], "actrb.co": [2053], "gds.sg": [2053], "link.ctri.info": [2053], "orange.sk": [12289], "zxv.me": [2053], "huaxian.meituan.com": [10405], "rabota.ya.ru": [18930], "pipr.es": [2053], "s.jukucore.jp": [2053], "bao.wallstreetcn.com": [18258], "*.www.suburban.nl": [15824], "tmtyl.com": [2053], "*.neatoshop.com": [11314], "spu.ac.th": [15575], "rec.udn.com": [17224], "www.pygmyboats.com": [21230, 21231], "infodev-d7-live.nsms.ox.ac.uk": [17557], "www.sinastorage.com": [15092], "galaxis.at": [6524], "berniesanders.com": [1848], "luxe.ly": [2053], "jobs.southglos.gov.uk": [15438], "usan.co": [2053], "www.ourskillsforce.co.uk": [21045], "cmc.tanx.com": [21661], "www.idrix.fr": [7854], "justpit.ch": [2053], "sanet.me": [14315], "epp.sheffield.gov.uk": [14939], "svn.ffx.subsignal.org": [15820], "www.droplr.com": [4867], "ukir.cf": [2053], "bbeagle.nl": [2053], "images.thebookpeople.co.uk": [16484], "topdesk.bls.ch": [1566], "nsrc.org": [11147], "static.junge-piraten.de": [8831], "hdfcbank.com": [7389], "email.wku.edu": [22039], "store.linux.com": [9563], "pwrm.ch": [2053], "akp.thecthulhu.com": [16600], "alternate.nl": [921], "*.pof.com": [13035], "jcfilms.co": [2053], "vsta.pr": [2053], "weatherzone.com.au": [18334], "publichealth.wustl.edu": [18290], "fogcreek.com": [6097], "nesse.link": [2053], "secure.stacklet.com": [15616], "cohnreznick.com": [3453], "*.sape.ru": [14535], "wyrebc.objective.co.uk": [20979], "docs.enlightenment.org": [5382], "stz.cc": [2053], "rstudio.com": [13701], "ypo.st": [2053], "forexpamm.info": [2053], "alte.in": [2053], "bh.bh": [2053], "hzf.us": [2053], "mysql.de": [10970], "www.private-names.ru": [13327], "*.fyleio.com": [2415], "skype.com": [15184], "www.redbooks.ibm.com": [7821], "lambd.as": [2053], "tel.local.ch": [9697], "downloads.cms.gov": [19742], "dfblink.info": [2053], "a.amptastic.com": [2053], "maillist.anadolu.edu.tr": [1025], "burden.in": [2053], "postscapes.com": [13209], "scheduler.einsteinathome.org": [5228], "panolacollege.worldcat.org": [18748], "club.alfabank.ru": [842], "www.postaonline.cz": [3034], "ssl8.ovh.net": [12378], "maidstone.firmstep.com": [20125], "lsmc.co": [2053], "cre.im": [2053], "doc.mediaconnect.no": [20767], "*.53.com": [5895], "www.amazon.de": [19369], "www.funker530.com": [6383], "pentestit.ru": [12755], "mm.mtv.com": [2053], "www.ucalgarymag.ca": [17221], "beej.us": [19512], "cuku.us": [2053], "dupoux.co": [2053], "flmd.info": [2053], "l.mloclam.in": [2053], "freeflay.ga": [2053], "finalbuilder.com": [20115], "cc.ddcdn.com": [19874], "www.aldeparty.eu": [19339], "www.springfiles.nl": [15557], "hotrill.co": [2053], "3rw.in": [2053], "url.lzrp.xyz": [2053], "archive.4plebs.org": [189], "www.landsend.com": [9294], "apergi.es": [2053], "dwrk.me": [2053], "rp2w.com": [2053], "kde-files.org": [21006, 21007], "br.isidewith.com": [20414], "ecly.co": [2053], "soap.q-assets.com": [21235], "slfp.es": [2053], "m-anti.tk": [2053], "www.ejabberd.im": [5230], "shadowhawk.co": [2053], "www.coveritlive.com": [3804], "proxyshard.uk": [21218], "www.netpivotal.co.uk": [11396], "wiki.t411.io": [16036], "www.strawpoll.me": [15771], "helsingebilpleje.dk": [7450], "*.visitestonia.com": [18070], "git.lede-project.org": [20652], "www.chartsinfrance.net": [3084], "*.findagrave.com": [5957], "onlyoi.info": [2053], "pingtune.fm": [2053], "pushpopcorn.com": [13479], "dyn.emetriq.de": [18888], "sens.is": [2053], "daileopaleo.us": [2053], "*.exposure.co": [5626], "marinellarose.com": [10164], "llyd.me": [2053], "hax.5july.org": [204], "pqnq.co": [2053], "dedra.cz": [4098], "jpfox.fr": [8802], "weld.so": [2053], "cdn1.sbnation.com": [14317], "tazte.ch": [2053], "on.ksgf.com": [2053], "www.cloudconvert.org": [19737], "jbir.ch": [2053], "revv-static.rubiconproject.com": [14247], "www.boxoffice.com": [2307], "bburner.co": [2053], "lists.gnumonks.org": [6891], "*.facebook-studio.com": [5735], "dson.co": [2053], "mbeta.slashdot.org": [15192], "www.piratebay.site": [21217], "gooni.es": [2053], "bburl.ca": [2053], "co.baifubao.com": [1664], "stubhub.com": [15789], "indonesia.bitcoin.co.id": [2015], "*.getcloudapp.com": [9532], "vvect.org": [2053], "hsbc.com.vn": [20385], "www.webmate.io": [18428], "bloo.ie": [2167], "wmsy.me": [2053], "technovelty.org": [16302], "www.kyhwana.org": [9205], "*.apicasystem.com": [1131], "s.wti.com.au": [2053], "chocobo.co": [2053], "machtfaktorerde.zdf.de": [22127], "mozdevgroup.com": [10837], "vpage.us": [2053], "www.monkeyguts.com": [10745], "*.tradedirect.ch": [20574], "login.trialinteractive.com": [21787], "wiki.tfes.org": [16425], "bethblog.com": [19144], "photon-science.desy.de": [4479], "photopit.ch": [2053], "paleofuture.gizmodo.com": [6817], "lvgmktg.com": [2053], "www.gentoo-blog.de": [6651], "manage.stripe.com": [15781], "origin.business.upc.ie": [17279], "bc.worldcat.org": [18748], "go.delphian.org": [2053], "nextevol.co": [2053], "better.tg": [2053], "*.cwrap.org": [19842], "b6.aztravel.xyz": [2053], "www.wwte12.com": [18232], "*.tweetriver.com": [10212], "cuiserve.it": [2053], "jptri.be": [2053], "epos.ly": [2053], "l.elnaharda.com": [2053], "www.jujucharms.com": [8821], "postbox-inc.com": [13187], "usajobs.g4s.com": [20194], "css.cdn.audiko.net": [1394], "ck.sendmoments.com": [14827], "tp2.sinaimg.cn": [15091], "just.ly": [2053], "suas.ie": [15808], "*.www.poppysports.com": [13144], "www.empirehost.me": [20034], "*.securepcissl.com": [14752], "smsng.mx": [2053], "eloedge.com": [5022], "nelincs.objective.co.uk": [20979], "www.pentestit.ru": [12755], "bedford.firmstep.com": [20125], "go.a5barcom.ml": [2053], "tunnelbear.com": [17108], "solarcity.com": [15358], "seasonste.ps": [2053], "eventbrite.co.uk": [5546], "blog.inspectlet.com": [8325], "operation-cambridge.linux-mips.org": [9573], "redmatrix.me": [13912], "imgd.nxjimg.com": [11790], "transit.wtf": [2053], "throb.gizmodo.com": [6817], "www.scrypt.cc": [14668], "serve.ads.chaturbate.com": [3093], "l.rvnx.org": [2053], "*.wikicdn.com": [16373], "curatdtrvl.co": [2053], "thehackerblog.com": [16555], "www.insurance.asiapacific.hsbc.com": [7233], "images.dice.com": [4534], "itssb.web.cern.ch": [2632], "s.tasmo.de": [2053], "gorickshaw.com": [6920], "summercollegeacademy.stanford.edu": [15635], "www.fiannafail.ie": [5883], "uit.stanford.edu": [15635], "vean.tk": [2053], "www.rusi.org": [13714], "subscene.com": [21600], "expapi.oscar.aol.com": [361], "www.nuneatonandbedworth.gov.uk": [20962], "dc.3.cn": [121], "brett.im": [2053], "gestaoconsumos.edp.pt": [4995], "ulib.co": [2053], "svn.keksbude.net": [8995], "s.tostring.it": [2053], "gomez.com": [3609], "www.poltava.to": [21166], "laiwang.com": [20629], "oas.theguardian.com": [16554], "i2.pixiv.net": [12960], "tjc4.com": [2053], "blu.is.berkeley.edu": [17526], "www.aimatch.com": [781], "blog.onlive.com": [12011], "pub.dartlang.org": [4235], "engineering.wustl.edu": [18290], "liuzhou.1688.com": [44], "fashionwalker.com": [5784], "www.adobetag.com": [660], "buzz.gq": [2053], "virg.re": [2053], "connect.just-eat.co.uk": [20565], "go.grep.sr": [2053], "inforesist.org": [20457], "buzz.gt": [2053], "edge1.digicert.com": [4556], "spcinc.co": [2053], "www.stefan-betz.net": [15717], "attendesource.com": [1373], "sccemsagency.org": [14579], "uniquefiler.com": [17480], "admin.nativo.net": [11281], "elixr.cc": [2053], "dogwheelchairscenter.com": [4722], "*.superforum.org": [14883], "pokecon.info": [2053], "gotvape.com": [6981], "c.mmntv.info": [2053], "dbm.media": [2053], "setup.boldchat.com": [2240], "abg.bz": [2053], "content.dl-rms.com": [4115], "tt.glo.co": [2053], "dixo.me": [2053], "36kr.com": [142], "www.astro.cardiff.ac.uk": [2895], "*.portalhelp.hosting.ru.nl": [13744], "programs.nra.org": [20943], "nabers.com": [11195], "as.max.as": [2053], "badafair.co.uk": [2053], "www.office.vutbr.cz": [17814], "na2.brightidea.com": [2384], "governance.georgetown.edu": [6668], "www.ecops.org.uk": [20005], "specialitytraining.hee.nhs.uk": [11102], "vodafone.co.nz": [18105], "origin.mt-cdn.net": [9963], "tn.meituan.com": [10405], "sburris.me": [2053], "bit.dotarai.com": [2053], "esmuy.cool": [2053], "about.usc.edu": [17564], "*.sdsu.edu": [14332], "dx.meituan.com": [10405], "jshi.me": [2053], "knowledgeportal.pageuppeople.com": [21066], "www.projecteuclid.org": [13366], "mceps.com": [2053], "procensus.com": [21205], "premiumlinkgenerator.com": [21193], "99xt.co": [2053], "eshop.kensington.com": [9004], "sciencealert.com": [21383], "www.defenseindustrydaily.com": [4386], "vtkr.co": [2053], "hugg-link.com": [2053], "www.orbitalatk.com": [12295], "www.xap.com": [18803], "brdr.us": [2053], "wiki.grml.org": [6499], "glyph.im": [6878], "zpos.it": [2053], "outmkt.com": [2053], "avallalat.aldi.hu": [338], "*.vitaminshoppe.com": [18087], "thepiratebay.skillproxy.org": [21217], "ifyousee.it": [2053], "gunn.to": [2053], "youtube.freifunk.net": [6311], "ewmag.ca": [2053], "oascentral.datasphere.com": [4265], "www.findnsave.com": [5951], "lpo.org.uk": [9251], "retriever-info.com": [14059], "redmine.unizar.es": [17643], "cdn3.sure-assist.com": [15899], "www2.dreambox.com": [19959], "skur.io": [2053], "anon-ib.net": [1078], "zeno.im": [2053], "go.onekarlo.com": [2053], "dashboard.nvcc.edu": [11787], "play-best.96.lt": [2053], "ms8.co": [2053], "fieldguide.gizmodo.com": [6817], "support.medialayer.com": [10322], "spot.spoted.com": [2053], "humanrightsdefensecenter.org": [7754], "lm.facebook.com": [5733], "bizchannel.cimb.com.sg": [2664], "dot.844196.com": [2053], "www.stpeter.im": [15759], "www.mychatagent.com": [8843], "yaupspe.com": [5326], "*.bytelove.us": [2548], "www.peterbroderick.com": [12801], "coup-ins.com": [2053], "www.coloradonocall.com": [3504], "benbus.ch": [2053], "app.getpostman.com": [20233], "schulbuchportal.vgwort.de": [17775], "clop.be": [2053], "cinchouse.com": [3195], "sea4.me": [2053], "nielsenknow.pro": [2053], "gerd.fm": [2053], "trocasverdes.ourproject.org": [21044], "piwik.tutanota.de": [17126], "ut12.xhcdn.com": [18815], "on.mnp.ro": [2053], "www.abc.xyz": [442], "pnx.me": [2053], "developer.amazon.com": [952], "playframework.com": [13018], "m11.baidu.com": [1661], "heli.valtiolle.fi": [17827], "extractives.companieshouse.gov.uk": [3571], "o.ju.taobao.com": [16206], "www.451unavailable.org": [174], "l.toastin.space": [2053], "intgovforum.org": [8349], "gluca.us": [2053], "member1.taobao.com": [16206], "luiz.ml": [2053], "go.sully.it": [2053], "www.newlook.com": [11499], "release.theplatform.com": [16496], "koo.gl": [2053], "a3.itc.cn": [8536], "bagnet.org": [1658], "nantuck.it": [2053], "mass.is": [2053], "static.jdpay.com": [8576], "research.illinois.edu": [17544], "cdn.migros.ch": [10566], "www.amazingweb.co": [949], "kindling.la": [2053], "banking.co.at": [1693], "media.don.is": [2053], "*.fuskator.com": [6396], "capnproto.org": [2882], "mngmvnt.com": [2053], "www.baycitizen.org": [1750], "www.botaanikaaed.ut.ee": [17347], "marketplace.ucsd.edu": [17216], "penfoldgolf.com": [12745], "jjug.co": [2053], "w.jerw.in": [2053], "www.tradeadexchange.com": [21774], "home-insurance.asda.com": [387], "aldi.be": [338], "jred.co": [2053], "xact.so": [2053], "homegrwn.com": [2053], "www.wings.buffalo.edu": [17583], "stryhk.co": [2053], "discovery.unizar.es": [17643], "duiven.nl": [11324], "aan.af": [2053], "*.aereo.com": [724], "knlg.net": [2053], "bgbe.at": [2053], "quack.cf": [2053], "go.fouad.co": [2053], "minerva.usc.es": [17711], "b.newho.pe": [2053], "my.gyf.io": [2053], "assets.noisey.com": [11654], "found.cern.ch": [2632], "*.brinkster.com": [2388], "www.best-pariuri-online.com": [7879], "invincealabs.com": [20482], "www.claimconnect.net": [4993], "www.falkvinge.net": [5755], "acmc.mn": [2053], "mdot.uw.edu": [17355], "twcinc.link": [2053], "cit.cornell.edu": [3744], "angie.li": [2053], "manage.dediserve.com": [4371], "stra.co": [2053], "franciskim.co": [6218], "www.centili.com": [3013], "xdk.intel.com": [8359], "www.activemelody.com": [539], "heatmap.gemius.com": [6637], "banksup.com": [2053], "ecte.ch": [2053], "aei-u.com": [2053], "dejure.org": [4398], "m3.baidu.com": [1661], "partner.just-eat.co.uk": [20565], "tr-contrainfo.espiv.net": [20058], "apps.cardiff.gov.uk": [19644], "file.kelleybluebookimages.com": [8997], "lsdfe.net": [2053], "aldera.co": [2053], "widgets.pinterest.com": [12914], "hazing.cornell.edu": [3744], "filt.co": [2053], "vendorexpress.amazon.co.jp": [19364], "advertising.bostonglobemedia.com": [2289], "*.esomar.org": [5062], "iuanyware.iu.edu": [8214], "templates.conferencemanager.dk": [19771], "www.ticketea.com": [16688], "www.central-lincs.org.uk": [19668], "obsv.co": [2053], "sphere.com": [15514], "errata.univention.de": [17511], "officevi.be": [2053], "studyu4u.com": [2053], "dunc.in": [2053], "ref.xlww.net": [2053], "nzfx.us": [2053], "go.ipvm.com": [2053], "judicialwatch.org": [8814], "g-b.co": [2053], "*.net-results.com": [11371], "evlbvr.us": [2053], "login.incites.thomsonreuters.com": [16650], "*.libri.de": [9478], "forums.robertsspaceindustries.com": [14154], "sf.taobao.com": [16206], "moodle.com": [10760], "*.3min.de": [161], "*.otsuka-shokai.co.jp": [12338], "mdra.me": [2053], "www.washingtonpost.com": [18287], "go.bunchball.com": [2480], "kejia.jd.com": [8571], "cus.muhrid.com": [2053], "*.dfat.gov.au": [4450], "j-ho.lt": [2053], "kirklees.connecttosupport.org": [19776], "www.infousa.com": [8259], "noip.com": [11638], "pc2.mypreferences.com": [10967], "www.macmillandictionary.com": [9997], "pwow.me": [2053], "www.calastone.com": [19628], "rbuesd.illuminateed.com": [20430], "www.fairssl.se": [5744], "themis.asu.edu": [1232], "fw.sg": [2053], "analytics.profitbricks.com": [13357], "vll.ge": [2053], "medm.us": [2053], "g.obijan.com": [2053], "static.domainsigma.com": [4746], "longre.biz": [2053], "*.moovweb.com": [10770], "vapr.me": [2053], "minohubs.com": [10619], "www.charitynavigator.org": [3068], "goff.me": [2053], "m.hotukdeals.com": [7693], "www.webmailer.hosteurope.de": [7660], "homedecorsto.re": [2053], "shop.vhf.de": [21919], "lgrd.co": [2053], "on.rizzarr.com": [2053], "l.nexse.com": [2053], "support.academiccommons.columbia.edu": [3512], "ahmi.co": [2053], "lexmachina.com": [9438], "k7lty.com": [2053], "scarborough.greenparty.org.uk": [7052], "api.runabove.com": [14271], "cavi.xyz": [2053], "je-s.rcuk.ac.uk": [13641], "wog.ch": [18753], "lbre-apps.stanford.edu": [15635], "basicseo.co": [2053], "cdn.pardot.com": [12605], "linuxplumbersconf.net": [9557], "www.sebijk.com": [7608], "fixcongress.us": [2053], "paxtonrecord.net": [12675], "loisirs.cff.ch": [15946], "kursk.rt.ru": [13703], "dropship.amazon.de": [19369], "r.abhis.ws": [2053], "syn1.co": [2053], "secure.justin.tv": [17164], "fnhw.us": [2053], "wfs.oracle.com": [12284], "*.nibcdirect.nl": [11105], "www.codeweavers.com": [3413], "www.mims.com.tw": [9910], "orkut.co.in": [12313], "dru-cdn.zipcar.com": [19190], "speakerinvitation.state.gov": [17345], "app.appsflyer.com": [1171], "www.tuv.com": [3692], "modernlivingmedia.com": [17833], "tikl.io": [2053], "smtp.usainteanne.ca": [21877], "www.dustin.se": [4907], "i03.c.aliimg.com": [854], "eastbayteamservices.com": [5118], "prisonedata.ssa.gov": [21552], "4sq.com": [2053], "on.v4s.it": [2053], "togethertrust.org.uk": [21753], "adm.leeds.ac.uk": [17604], "help-fr-fr.nike.com": [11595], "www.bigconcerts.co.za": [1911], "*.e-fibank.bg": [5884], "hub.to": [2053], "*.heckrath.net": [7419], "barnaul.beeline.ru": [1801], "blogi.piraattipuolue.fi": [21128], "evox.us": [2053], "www.junodownload.com": [8836], "netsekure.org": [11442], "peabra.in": [2053], "virtualedge.com": [311], "my.uprr.com": [21870], "nvon.tk": [2053], "gwbweb.wustl.edu": [18290], "arba.unizar.es": [17643], "frozencpu.com": [6349], "uclouvain.be": [17516], "labo.ly": [2053], "weather.mercurynews.com": [10327], "ads.stickyadstv.com": [15730], "bnfr.me": [2053], "mcpe.cu.cc": [2053], "bank.simple.com": [15065], "computersnyou.com": [3604], "ctlog.wosign.com": [18693], "herefordshire.greenparty.org.uk": [7052], "cloud.github.com": [6801], "janhendrikpeters.de": [8657], "nab.org": [11053], "dearmummyblog.com": [19883], "frtextmessaging.capitalone.com": [2878], "fobos.de": [6089], "lati.us": [2053], "2.standaardcdn.be": [15631], "i.oba.bg": [2053], "bravelc.com": [2053], "belgorod.beeline.ru": [1801], "git.gnupg.org": [6886], "forexct.com": [6152], "sk7.xyz": [2053], "lead.pm": [2053], "cdn.x-lift.jp": [18798], "lvntrns.it": [2053], "www.cz.o2.com": [16332], "*.dmcloud.net": [4202], "fr.foursquare.com": [6200], "blog.ginkel.com": [6783], "recrut.in": [2053], "www.libvirt.org": [9484], "tnn24.tv": [2053], "*.dyc.edu": [4170], "fslr.co": [2053], "static.discojuice.org": [4626], "addons.xt-commerce.com": [18898], "members.girlsoutwest.com": [6787], "tiny.cc": [16750], "vnz.anh18.net": [2053], "kdhck.com": [2053], "www.ascenderfonts.com": [1281], "workforce.oracle.com": [12284], "go.rawai3.com": [2053], "thepiratebay.bypassed.club": [21217], "metrics.penton.com": [12757], "cpf.fit": [2053], "blhill.co": [2053], "leap.neustar.biz": [11472], "us-cert.gov": [17705], "openeffect.ca": [21013], "zillowstatic.com": [19182], "sclpt.co": [2053], "dm.realtimeregister.com": [13866], "bt.menacela.com": [2053], "wakefield.objective.co.uk": [20979], "go.hew.com": [2053], "conformal.com": [3637], "ppfas.co": [2053], "www.control.tierra.net": [16705], "www.dnscrypt.eu": [4135], "go.enterta.ru": [2053], "sfgra.ph": [2053], "i2.sitepoint.com": [15117], "fncy.gr": [2053], "c.jcw.me": [2053], "s.poly4.fr": [2053], "jp.mcafee.com": [10282], "www.ffprofile.com": [5880], "amus.co": [2053], "my.sky.com": [15170], "netindex.com": [11403], "*.ix.nflxvideo.net": [11421], "nico.cc": [2053], "shop.ccs.com": [2609], "docs.mesosphere.com": [10467], "fitforgood.fitbit.com": [6002], "browser.yandex.ua": [18961], "paxvapor.com": [21087], "twou.co": [2053], "mail.comscore.com": [3517], "btbr.ca": [2053], "www.appear.in": [1153], "paul.my": [2053], "laud.ly": [2053], "go.illinois.edu": [17544], "kdp.amazon.com": [952], "www.untangle.com": [17657], "img1.glassdoor.com.au": [20249], "www.schaafpc.com": [14586], "download.taobaocdn.com": [16207], "signup.active24.nl": [19279], "b1.de": [2053], "hydraproxy.party": [20402], "segger.com": [14801], "fir.mx": [2053], "campfireunion.com": [2840], "eli.bz": [2053], "*.younited.com": [19026], "www.waffle.io": [18239], "ostermiller.org": [21037], "familie.bw.aok.de": [357], "blog.kapsobor.de": [8944], "digitalcreations.no": [4573], "ti.me.uk": [2053], "ogmovie.me": [2053], "prodc.in": [2053], "uitcomms.stanford.edu": [15635], "kshr.us": [2053], "eu-st.xhcdn.com": [18815], "b.v0lu.me": [2053], "thevegankind.recurly.com": [13887], "getpebble.com": [12720], "web-cdn.ttvnw.net": [17164], "*.minavardkontakter.se": [10994], "defuse.ca": [4393], "api.elsevier.com": [5287], "happymus.es": [2053], "www.memrise.com": [10427], "my.firstvds.ru": [5987], "archdg.st": [2053], "ariporad.link": [2053], "www.madadsmedia.com": [20735], "www.err.ee": [5474], "*.adtarget.me": [677], "smrt.in": [2053], "smrt.io": [2053], "*.modernlivingmedia.com": [17833], "dhsspsni.gov.uk": [19911], "ptanews.co": [2053], "jobp.ag": [2053], "www.crypto.is": [3924], "api.demo.bitmask.net": [2056], "yiwu.meituan.com": [10405], "tracks.unhcr.org": [17267], "nubits.com": [11759], "w.agarciatv.com": [2053], "hr-s.co.jp": [7230], "www.getcloak.com": [6690], "kati.li": [2053], "xper.co": [2053], "wsd.nlm.nih.gov": [11241], "m.uece.br": [2053], "poppyuk.com": [13145], "data9.top": [2053], "fallenberg.eu": [2053], "n.ideia.co": [2053], "www.gionn.net": [6784], "www.airasiamegastore.com": [785], "hmapps.net": [7580], "frantv.us": [2053], "media.progress.com": [13360], "cllb.link": [2053], "olb2.nationet.com": [11280], "zerodayinitiative.com": [19160], "community.infoblox.com": [8255], "emas.portsmouth.gov.uk": [21175], "vryjn.it": [2053], "i.scrolly.nl": [2053], "fossil-scm.org": [6189], "2011.pcto.ca": [2053], "id.foursquare.com": [6200], "go.huge.io": [2053], "j25.eu": [2053], "cga.ct.gov": [2738], "go.infinidy.ca": [2053], "studrep.co": [2053], "vm.mts.ru": [20846], "www.hometheaterreview.com": [7618], "www.evermap.com": [5551], "www.ntacdn1.net": [11751], "t.webtracker.jp": [18461], "ohsocool.org": [11957], "decm.in": [2053], "lmgr.ph": [2053], "www.geekisp.com": [6613], "imagefile2.51fanli.net": [198], "brenau.worldcat.org": [18748], "fb18.de": [5668], "cptv.at": [2053], "hosting.de.adjug.com": [565], "srfc.bz": [2053], "a14electronics.com": [253], "www.mims.com": [9910], "dl.aircrack-ng.org": [789], "hgapp.co": [2053], "url.ipqb.org": [2053], "visual-paradigm.com": [18075], "www.storywrite.com": [15758], "mcollier.net": [2053], "www.nuand.com": [11764], "www.dogzonline.com.au": [4724], "sktny.co": [2053], "fcom.us.es": [17706], "sls14.co": [2053], "www.legacy.vg": [9385], "obses.se": [2053], "af.alicdn.com": [846], "impactstory.org": [8162], "assets.slid.es": [15204], "news.am": [20900], "coreyabramson.com": [3741], "base.ac": [2053], "childcare.bury.gov.uk": [19614], "nxtrd.xyz": [2053], "*.patreon.com": [12667], "sourcefoundry.org": [21510], "victo.rs": [2053], "ya.meituan.com": [10405], "ide.st": [2053], "www.force11.org": [5699], "slovakrail.sk": [15218], "v.vungle.com": [18173], "i.sctechie.com": [2053], "yelp.com.mx": [18979], "sharepoint.webtrends.com": [18467], "todo.ly": [16799], "nize.cz": [2053], "upload.proxer.me": [13403], "at.matoski.com": [2053], "en-hr.dict.cc": [4536], "login.citrixonline.com": [3238], "clubs.union.rpi.edu": [14006], "playosmo.com": [12328], "reciperepr.com": [2053], "epckrs.link": [2053], "deb.globaleaks.org": [6834], "www22.anthem.com": [19395], "mywebsite.1and1.com": [61], "www.sweflix.to": [15939], "l.tyneo.net": [2053], "greentechmedia.com": [7065], "piwik.dfo.no": [19907], "colelibrary.worldcat.org": [18748], "social.unian.net": [21851], "images.capitalone360.com": [2879], "www.chronicle.com": [3182], "ktm.ppl.cz": [12486], "gin.collabora.co.uk": [3481], "boau.link": [2053], "mcklr.me": [2053], "eforms.state.gov": [17345], "iacademy.oracle.com": [12284], "www.zybang.com": [22145], "*.forensicinstitute.nl": [6145], "emjb.us": [2053], "lk.yashsoni.com": [2053], "clg.gg": [2053], "reports.informationweek.com": [17204], "fclblog.com": [2053], "*.msu.edu": [20844], "education.thepensionsregulator.gov.uk": [21708], "joylf.us": [2053], "account.aol.com": [361], "link.odysii.us": [2053], "syj.tw": [2053], "wiki.thm.de": [16066], "www.datadirect.com": [4258], "yabs.yandex.ua": [18961], "gmplib.org": [6465], "bookorget.info": [2053], "jayla.co": [2053], "www.surbitcoin.com": [15898], "d35.nl": [2053], "rick.ly": [2053], "emapawards.com": [5298], "www.multibit.org": [10883], "dyn.com": [4918], "seo.com": [14340], "shortu.me": [2053], "api.neighbourhoodalert.co.uk": [20884], "www40.polyu.edu.hk": [13116], "analytics.sylvancompany.com": [15968], "a.sharshi.com": [2053], "stk.uio.no": [17615], "rstr.me": [2053], "totsleg.it": [2053], "support.socialblade.com": [15319], "get.mu": [2053], "nvy.gd": [2053], "go.dorint.tv": [2053], "bbmusic.top": [2053], "aedenny.us": [2053], "discoverwem.adobe.com": [655], "identrustssl.com": [8083], "developers.google.com": [6962], "support.cloud.engineyard.com": [5367], "onlineccredemption.hdfcbank.com": [7389], "widget.intercom.io": [8392], "r2w.co": [2053], "my.rit.edu": [13667], "exiledonline.com": [5096], "democratic.lincoln.gov.uk": [9523], "rbeard.co": [2053], "ballicom.co.uk": [1675], "schotty.com": [21380], "subscription.economist.com": [5161], "*.adextent.com": [561], "admissions.wustl.edu": [18290], "jos.jd.com": [8571], "tofour.net": [16793], "nmrk.it": [2053], "s.40-02.ru": [2053], "billing.odessa.tv": [20983], "kaspersky-cyberstat.com": [8957], "sigep.utm.edu": [17628], "www.aetolia.com": [19313], "gudongchun.1688.com": [44], "site.kaltura.com": [8927], "content.ott.sky.com": [15170], "1bst.pw": [2053], "meetrics.net": [10385], "portal.m3-connect.de": [20733], "telford.objective.co.uk": [20979], "webassetsh.scea.com": [14327], "*.fox-toolkit.net": [5702], "dgi.to": [2053], "www.usertags.com": [17366], "cms.sydney.edu.au": [21631], "store.magicalbutter.com": [10024], "www.followmail.com": [20140], "go.peter.bio": [2053], "s.bbybike.com": [2053], "www.bgentry.io": [1888], "*.www.cta-observatory.org": [3119], "a.s.kqed.net": [8900], "www.amoena.com": [1017], "lnk.ayrs.co": [2053], "vsct.us": [2053], "prf.hn": [12779], "auser.centrum.cz": [19674], "www.snacktv.de": [15268], "melpa.org": [10414], "tutor.104.com.tw": [18], "2.hirecurt.info": [2053], "*.java-apps.org": [21007], "bangordailynews.com": [1688], "b3.io": [2053], "meethk.net": [2053], "develop.untangle.com": [17657], "wera.cc": [2053], "upperbrand.link": [2053], "watch-series.ml": [2053], "philrob.co.uk": [2053], "mansfield-consult.objective.co.uk": [20979], "cepascc.org": [14579], "www.uakjobs.com": [17520], "ski.do": [2053], "blastfra.me": [2053], "www.zeedpic69.com": [19124], "www.webcompat.com": [18409], "www.hertz247.de": [7485], "tll.mit.edu": [9916], "huge.is": [2053], "caipiao.jd.com": [8571], "link.mguvla.net": [2053], "share.livingsocial.com": [9679], "urban.re": [2053], "gnrcty.org": [2053], "yel.onl": [2053], "forum.sublimetext.com": [15816], "education.web.cern.ch": [2632], "share.dp2.co": [2053], "ipwnage.com": [7953], "guag.chorley.gov.uk": [19709], "sdmetal.us": [2053], "www.milbencheck.at": [10577], "3har.es": [2053], "toy.tl": [2053], "www.perform.illinois.edu": [17544], "www.domaindiscount24.com": [19940], "ccrjustice.org": [2608], "*.envato-static.com": [5408], "www.html-online.com": [20390], "mirror.bitmissile.com": [1987], "gwusd.illuminateed.com": [20430], "convox.com": [3699], "www.strikingly.com": [15779], "cdn.adexcite.com": [559], "www.torlock.com": [16839], "app.napster.com": [20874], "ageuk.org.uk": [19320], "l9pt.com": [2053], "zq.meituan.com": [10405], "psarips.com": [12501], "zmr.co": [2053], "a.reezaptv.de": [2053], "debt.webmoney.ru": [18373], "www.arts.leeds.ac.uk": [17604], "feeds.nczonline.net": [20883], "forms.richmond.gov.uk": [21307], "www.rcm.org.uk": [21271], "belgorod.rt.ru": [13703], "jiko.us": [2053], "geldmann.se": [2053], "aiiexpres.com": [2053], "pingjs.qq.com": [13514], "www.apan.net": [368], "jni.la": [2053], "tee.olytee.com": [2053], "www.alimama.com": [855], "www.obi.ch": [20977], "coxtn.net": [2053], "advertising.amazon.it": [19373], "www.teacherspensions.co.uk": [21666], "digitaldoor.subscriberconcierge.com": [10175], "jimm.biz": [2053], "wmt.cl": [2053], "www.btobonline.com": [3828], "www.alternatifbilisim.org": [922], "www.intelfreepress.com": [8361], "u.zackboe.co": [2053], "adnet.ph": [2053], "www.me.bme.hu": [1570], "j-lo.net": [2053], "*.ijreview.com": [7893], "trans.opendata.ch": [21011], "india.alibaba.com": [850], "technoratimedia.com": [16300], "odnoklassniki.ru": [11925], "forge.univention.org": [17511], "cos.h-cdn.co": [7170], "york.greenparty.org.uk": [7052], "tps40.doubleverify.com": [4804], "smstaging.stanford.edu": [15635], "www.ea.financial-net.com": [20118], "kuiken.co": [21215], "1.jir.af": [2053], "maps-secure.stanford.edu": [15635], "audemarspiguet.com": [1384], "www.maldives.hsbc.com": [7233], "ezding.com.tw": [5649], "santafenewmexican.com": [16473], "img-carrefour.mncdn.com": [10667], "o.ooo.io": [2053], "rr5.us": [2053], "mobile.flibusta.is": [6031], "www.iperceptions.com": [20411], "*.scientificamerican.com": [14626], "epnbc-consult.objective.co.uk": [20979], "g.taobao.com": [16206], "informationformps.homeoffice.gov.uk": [20355], "www.udistrital.edu.co": [17394], "ibatull.in": [2053], "classic.storminternet.co.uk": [15753], "vut.worldcat.org": [18748], "forum.salixos.org": [21363], "staging.blog.gigya.com": [6779], "nelly.com": [11330], "lnk.glwdcs.tv": [2053], "dkwa.co": [2053], "www.lacrossealerts.com": [9272], "s58.cnzz.com": [3391], "schule.sachsen.de": [14454], "i.lvme.me": [9653], "extpln.co": [2053], "zenmate.hu": [19133], "www.nczonline.net": [20883], "parse.com": [12620], "community.offerpop.com": [11938], "design-live.eu": [2053], "syntra.nu": [2053], "go.nshost.co": [2053], "seagm.com": [14333], "www.voltage.com": [18127], "aisle.pe": [2053], "ciuvo.com": [3258], "brstyl.es": [2053], "dhits.co": [2053], "up.risi.ng": [2053], "*.ebuzzing.de": [5145], "www.googleapis.com": [6967], "iam4.me": [2053], "kicked.to": [2053], "bargainmoose.ca": [19485], "www.newtonew.com": [20905], "prokuror.fbk.info": [5818], "aprendizaje.internetessentials.com": [20477], "rsr.me": [2053], "tstrm.li": [2053], "velmedia.net": [17889], "onfaith.co": [2053], "irantu.be": [2053], "frnkwrrn.com": [2053], "www.clck.ru": [19725], "*.grenet.fr": [7068], "nl.mk": [2053], "sdetc.co": [2053], "dplusg.co": [2053], "www.plays.tv": [13030], "lnk.brandner.at": [2053], "www.go00gle.com": [20260], "static5.businessinsider.com": [2512], "digtb.us": [2053], "news.constantcontact.com": [3657], "ualacademico.ual.es": [17361], "blsp.lt": [2053], "images1.variety.com": [17858], "img13.360buyimg.com": [136], "green.ch": [20280], "ja.libreoffice.org": [9471], "auto.yandex.by": [18953], "www.englishdefenceleague.net": [5373], "url.adcwa.de": [2053], "frch.in": [2053], "conrey.me": [2053], "osvehicle.com": [21039], "*.maxymiser.com": [10264], "www.dcos.io": [19871], "shervs.me": [2053], "www.one2buy.com": [12028], "autolink.me": [2053], "stw.re": [2053], "zenmate.com.ar": [19133], "www.square.com": [15580], "xr.lc": [2053], "lband.co": [2053], "darcs.debian.org": [4353], "s.topics.nl": [2053], "310ei.space": [2053], "invest.ec": [2053], "tklf.me": [2053], "www.hplusdigitalseries.com": [7227], "markbillingham.com": [20753], "sfgrr.com": [2053], "ccis.co": [2053], "www.mobilepki.org": [10690], "famousdav.es": [2053], "vtb24.ru": [21961], "psc.press": [2053], "www.arris.com": [1250], "alfredxing.com": [19340], "media.uic.edu": [17517], "levoleague-wordpress.s3.amazonaws.com": [9434], "wltr.men": [2053], "blogjp.ashleymadison.com": [1289], "www.ic3.gov": [17300], "secure.bluebird.com": [2198], "gigpl.ug": [2053], "ansa.it": [1096], "howz.to": [2053], "link2waze.com": [2053], "static.malwarebytes.org": [10093], "www.tripadvisor.com": [17017], "3logic.no": [2053], "moviefox.ga": [2053], "www.ligatus.be": [9502], "www.superfast-openreach.co.uk": [15884], "bg.4.boardgamearena.com": [2219], "l.snug.ug": [2053], "pay.alibaba-inc.com": [19342], "go.janlay.com": [2053], "insdu.de": [2053], "sct.cat": [2053], "spcache.microsoft.com": [10543], "www.deis.com": [4397], "towerproject.blog.lib.cam.ac.uk": [17529], "www.newscientist.com": [11490], "annekle.in": [2053], "i.fesj.fr": [2053], "s.bemit.eu": [2053], "pet-portal.eu": [12443], "www.m-fanshop.ch": [9853], "classiccatalogue.essex.gov.uk": [5470], "l.td00.de": [2053], "go.shft.ru": [2053], "c2dy.com": [2053], "muji.lu": [2053], "www.anskaffelser.no": [19394], "nrel.gov": [11246], "go.amirsp.com": [2053], "url.anadolu.edu.tr": [1025], "torymart.in": [2053], "gcoma.me": [2053], "widget.aggregage.com": [19321], "forum.qt.io": [13545], "zola.cf": [2053], "a.rat.ro": [2053], "sims.cr-an.es": [2053], "twthr.ee": [2053], "imemories.us": [2053], "www.herdprotect.com": [7463], "buzzfeed.com": [2531], "rtb.techdirt.com": [16281], "www.seetickets.com": [14790], "isom.ws": [2053], "perfectmoney.com": [12775], "saturey.es": [2053], "www.cooley.com": [19786], "genesis-technologies.com": [6648], "www.rubenerd.com": [14246], "www.acrylicwifi.com": [525], "www.personaldemocracy.com": [12794], "*.gnd-tech.com": [6468], "nova.mediatemple.net": [10331], "ntrs.nasa.gov": [17304], "priceza.com": [13283], "mnmdl.engineering.osu.edu": [11959], "reviews.llvm.org": [9244], "www.justice.gov.uk": [10616], "wzdlz.us": [2053], "htz.io": [2053], "jackimaging.com": [8629], "mobile.staticlocal.ch": [9697], "gogob.us": [2053], "smtulsa.co": [2053], "upi.com": [17283], "pastri.es": [2053], "r.hustleisep.fr": [2053], "nancy.red": [2053], "mycollege.sunybroome.edu": [2419], "live-ssl.cdn.spongecell.com": [21538], "www.hailavenger.com": [7296], "extabit.com": [5629], "transip.de": [21780], "eds.com": [7517], "www.enomcentral.com": [5033], "go-g.co": [2053], "www.uclahealth.org": [17212], "de.usembassy.gov": [21879], "ctlink.me": [2053], "9gwc-kbhkort.kk.dk": [8883], "www.garoa.net": [6578], "creative.aggregateknowledge.com": [764], "f45seaforth.com": [2053], "linotype.com": [9548], "ridus.ru": [21309], "easypress.ca": [5131], "postaffiliatenetwork.com": [13179], "softmatter.georgetown.edu": [6668], "service.alibaba.com": [850], "hr.stanford.edu": [15635], "trcr.io": [2053], "hlk.cl": [2053], "james.dog": [2053], "mktpnch.com": [2053], "js.meituan.com": [10405], "btpne.ws": [2053], "dbiweb.us": [2053], "adfs.wales.gov.uk": [18252], "oppohd.ga": [2053], "*.chistescortosbuenos.com": [3149], "isc.sans.edu": [14309], "g.virtuaniz.com": [2053], "coverfx.co": [2053], "myrdc.tk": [2053], "www.snag.gy": [21487], "ghirardelligiftguides.com": [6747], "www.jitscale.com": [8729], "thyperadvsr.com": [2053], "on.aaslh.org": [2053], "www.myaccount.charter.com": [3079], "*.thing.net": [16623], "www.multivu.com": [2998], "solar.rwe.de": [21349], "www.coinurl.com": [3463], "swarmapp.com": [21626], "fitsell.nl": [2053], "nibp.us": [2053], "qiyipic.iqiyi.com": [20412], "g2.twimg.com": [17153], "bch.me": [2053], "0nk.net": [2053], "idefix.com": [8081], "www.breakingmuscle.com": [19588], "www.khanacademy.org": [9025], "www.nips.cc": [11119], "synd.co": [2053], "www.gunsamerica.com": [20297], "medias2.prestashop.com": [13265], "wamblog.us": [2053], "evlvgn.ws": [2053], "blog.safeshepherd.com": [14473], "eyeboot.com": [5646], "billing.purevpn.com": [13469], "rodei.me": [2053], "gannettridge.com": [6573], "www.pantarhei.sk": [12575], "n2clic.me": [2053], "physics.georgetown.edu": [6668], "flmsp.ly": [2053], "www.nat.ms": [11230], "apt3.photo": [2053], "p.o0bc.com": [11800], "officeworks.com.au": [11952], "kgeek.co": [2053], "bdsams.com": [2053], "at.imal.tv": [2053], "websmith.me": [2053], "whois.webnames.ru": [21994], "u3.hitravel.xyz": [2053], "www.ttmeiju.com": [21808], "ryska.mp": [2053], "more.pet": [2053], "chrisr.at": [2053], "mixx.com": [10660], "afwf.co": [2053], "gijs.to": [2053], "*.gentoo-art.org": [21007], "www.masterspaswi.com": [10220], "tdconline.se": [16054], "www.prometheus-group.com": [13378], "securemail.healthnet.com": [20329], "www.desilva.biz": [4325], "xianghe.meituan.com": [10405], "be.rtgit.com": [2053], "thai.alibaba.com": [850], "villahostels.com": [18007], "i1.sndcdn.com": [15278], "www.oeis.org": [11818], "anpha.be": [2053], "catup.pw": [2053], "lnks.to": [2053], "www.zalando.be": [19094], "cdn.syndication.twimg.com": [17153], "apply.capitalone.com": [2878], "www.gradwell.com": [7011], "blog.adform.com": [625], "aimpulse.com": [782], "cooper.vc": [2053], "bh.meituan.com": [10405], "alpha.freeboard.io": [20161], "memorydealers.com": [10425], "portuguese.brazil.usembassy.gov": [21879], "it.provost.usc.edu": [17564], "phre.am": [2053], "usshortcodes.com": [3550], "balakovo.beeline.ru": [1801], "www.1sand0s.nl": [74], "starmotorcycles.com": [15641], "indiestylestore.com": [20452], "matrox.com": [10244], "rules.ws": [2053], "myresearch.uillinois.edu": [17238], "www.bww.com": [929], "siteorigin.com": [15115], "www.mdcus.com": [9896], "www.studentaid.ed.gov": [4988], "rwkr.ch": [2053], "rpwi.se": [2053], "crosswire.org": [3886], "order.jd.com": [8571], "12and.us": [2053], "za.usembassy.gov": [21879], "www.n210adserv.com": [20872], "brfd.nl": [2053], "hostooplecms.hostooplecom.netdna-cdn.com": [7684], "careers.richmond.gov.uk": [21307], "hd.se": [7181], "twchris.us": [2053], "www.kabelkiosk.de": [8913], "l18.co": [2053], "tescobank.com": [16397], "inbm.co": [2053], "xap.com": [18803], "*.yelp.dk": [18979], "*.yelp.de": [18979], "brds.tw": [2053], "*.iupui.edu": [8013], "fotoha.us": [2053], "gustavus.edu": [7155], "alljoyn.org": [872], "cpncrz.com": [2053], "www.testament-erbe-und-pflichtteil.de": [21682], "pirmax.fr": [2053], "www.iwantmytvmagazine.com": [11162], "www.sucuri.net": [15829], "lolip.in": [2053], "secure.wealden.gov.uk": [21987], "fjmg.es": [2053], "www.planeta.ru": [21143], "dixy.ru": [4673], "onewrld.co": [2053], "4dlabs.sfu.ca": [14893], "portal.velleman.be": [17888], "mgs.pw": [2053], "ichkoche.at": [8063], "sharethefiles.com": [14924], "explore.thestorefront.com": [16579], "wicker.tw": [2053], "stcweb.stc.indiana.edu": [8215], "sbalink.me": [2053], "bdygrdz.co": [2053], "www.transparency.org": [16954], "order.trustico.com": [17069], "onwgtc.com": [2053], "dashboard.towerdata.com": [16888], "lists.opnsense.org": [11855], "crystaldelights.com": [3962], "holidaybullshit.com": [7594], "trendero.us": [2053], "www.qiyukf.com": [21240], "hmlnk.co": [2053], "www.socialrank.com": [15306], "passports.state.gov": [17345], "www.nvenergy.com": [11170], "www.google.org": [6964], "fi.isatya.in": [2053], "accounts.ocf.berkeley.edu": [17526], "l1t.it": [2053], "support.elsevier.com": [5287], "aleach.ca": [2053], "regulatory.usc.edu": [17564], "aclnz.co": [2053], "kdbl.gs": [2053], "www.pinknews.co.uk": [12907], "event.dfh.de": [2053], "*.nokia.com": [11655], "go.symantec.com": [15969], "lv.lostkat.com": [2053], "fsd7.co": [2053], "*.ouya.tv": [11883], "www.tisarana.ca": [16769], "api.domaintools.com": [4750], "eqsl.cc": [20050], "*.https.cdn.softlayer.net": [15343], "lds.org": [16485], "wwwdc.cinelease.com": [7511], "a4f.cc": [2053], "selection.migros.ch": [10566], "a4f.co": [2053], "www.poste.it": [13192], "lincolnlibrary.worldcat.org": [18748], "blogs.coreboot.org": [3737], "origin-www.nbcudigitaladops.com": [11064], "download-software.intel.com": [8359], "*.stratusexpress.com": [14851], "my.bezeq.co.il": [19522], "ourevents.co": [2053], "secure.comodo.net": [3569], "gwkl.de": [2053], "*.servicetick.com": [14867], "www.nycris.nhs.uk": [11102], "job.g4s.com": [20194], "srclick.co": [2053], "l.24tender.ru": [2053], "omuru.ga": [2053], "timezero.ru": [16729], "makelaa.rs": [2053], "4link.click": [2053], "wis.ntu.edu.sg": [11223], "beacon.walmart.com": [18260], "uk.state.gov": [17345], "*.zopim.com": [19227], "eqf.org": [2053], "www.ias.edu": [7815], "i0.newstube.ru": [20904], "o2.chaucanh.net": [2053], "clbr.tv": [3316], "www.specto.io": [15495], "www.jibbed.org": [20539], "acceso40.uned.es": [17446], "koding.com": [9105], "trackandtraceuat.courierpost.co.nz": [3784], "stop-snoring-mouthpiece.org": [15737], "tunespeak.com": [17105], "www.localmotors.com": [20708], "dj5.nl": [2053], "secure.adzerk.net": [714], "co.ncr.com": [2053], "bugs.96boards.org": [241], "community.openvpn.net": [12187], "adaymag.co": [2053], "s.hayr.do": [2053], "tv.com": [16133], "democracy.stratford.gov.uk": [21586], "e.bodur.co": [2053], "festivusgames.com": [5875], "lingchuan.meituan.com": [10405], "re6s.com": [2053], "8nn.tv": [2053], "goy.cz": [2053], "www.scraperwiki.com": [14647], "italian.italy.usembassy.gov": [21879], "techrepublic.com": [16271], "crsex.org": [2053], "secure.startlogic.com": [15662], "e.ntd.tv": [2053], "nantong.jd.com": [8571], "dacre.link": [2053], "acton.li": [2053], "illiniunion.illinois.edu": [17544], "www.hcstx.org": [20326], "xiaogan.meituan.com": [10405], "android-build.linaro.org": [9522], "datascri.be": [2053], "u9.qiyipic.com": [20413], "ubisoftgroup.com": [17371], "lists.internet2.edu": [8427], "www.ruggedsoftware.org": [14263], "o.maldicore.com": [2053], "baumglueck.de": [19499], "mobilebill.virginmedia.com": [18028], "corsem.co": [2053], "o.grublabs.org": [2053], "staging-assets-news.vice.com": [17959], "www.etouches.com": [5494], "cdn.viglink.com": [18003], "ingress.com": [8291], "bighor.se": [2053], "qfxsoftware.com": [13511], "web.rondavu.com": [14196], "www.bnl.gov": [19564], "bdv.bz": [2053], "crg.st": [2053], "pe.cheur.fr": [2053], "*.museodelprado.es": [10899], "www.angola3.org": [1056], "imine.co": [8151], "tsyn.cc": [2053], "luanchuan.meituan.com": [10405], "go.kswbtv.com": [2053], "c01.my.uprr.com": [21870], "m.polar.me": [2053], "src.nu": [2053], "www.coinomat.com": [3470], "bluestargolf.com": [8578], "c-i.io": [2053], "datenschutz.de": [18037], "edit.www.uaa.alaska.edu": [17519], "remote.bridgend.gov.uk": [19591], "*.sitizens.com": [15133], "voog.com": [21948], "tsg.nz": [2053], "secure.hkma.gov.hk": [7206], "d-b.fm": [2053], "secure.syllabushare.com": [15967], "www.deb.li": [4345], "email.wildwestdomains.com": [18599], "virusdesk.kaspersky.ru": [8959], "pfbd.uk": [2053], "zeit.to": [2053], "*.producthunt.com": [13350], "mentors.debian.net": [4350], "quotesnsayings.com": [13610], "mediamarkt.se": [10343], "www.nraringoffreedom.com": [20952], "aok-gesundheitspartner.de": [357], "go.xperidia.com": [2053], "secure4.vend-o.com": [17897], "jr.jd.com": [8571], "url.driph.com": [2053], "rdns.im": [13829], "chgobrs.com": [2053], "globalsau.de": [2053], "aldimobile.com.au": [339], "cltom.com": [2053], "mail.webonic.hu": [18432], "lanik.us": [9302], "www.camscanner.com": [19636], "go.milomodo.com": [2053], "maastricht.nl": [11324], "images.bwbx.io": [2540], "incapsula.com": [8192], "darbgv.de": [2053], "bod.fitness": [2053], "s1.ltrbxd.com": [9424], "mobilism.me": [20814], "swllnt.com": [2053], "adcdownload.apple.com": [1159], "app.vogogo.com": [21941], "www.kazned.ru": [20581], "pad.seajade.com": [2053], "freec.cf": [2053], "www.stadt-zuerich.ch": [15618], "dealers.cadlink.com": [19626], "stdhivtraining.org": [2802], "zoomerang.com": [19222], "yunbi.com": [19057], "delivery04.dhe.ibm.com": [7821], "bgr.me": [2053], "www.icard.uillinois.edu": [17238], "nightdev.com": [11588], "sbyd.es": [2053], "dary.us": [2053], "team.fbk.info": [5818], "t.on.aol.com": [361], "cbyt.es": [2053], "verify.adobe.com": [655], "kent.objective.co.uk": [20979], "jdor.it": [2053], "freetype.freedesktop.org": [6243], "kp0.me": [2053], "uwinnipeg.ca": [17357], "aai.kuleuven.be": [8969], "www.gibraltar.at": [20236], "licensing.lancaster.gov.uk": [20634], "code.tinypass.com": [16761], "mnow.in": [2053], "figshare.com": [5901], "pt.boardgamearena.com": [2219], "touch.facebook.com": [5733], "slavcred.dengisend.ru": [4440], "www02.utm.edu": [17628], "fasttracks.info": [2053], "www.wpx.ne.jp": [18769], "api.srcclr.com": [15588], "*.kobobooks.de": [9101], "www.libraryreserve.com": [20678], "charlottenaturemuseum.org": [3073, 19687], "cup.msgfocus.com": [624], "new-brighton.eschools.co.uk": [20056], "no.support.tomtom.com": [16812], "*.kickapps.com": [9028], "decouvre.la": [2053], "financeprod.alipay.com": [857], "volgorechensk.beeline.ru": [1801], "payments.eastsussex.gov.uk": [19994], "acwk.us": [2053], "*.csc.com": [2724], "*.my.com": [10932], "wpecdn.paymoapp.com": [12693], "securestoke.stoke.gov.uk": [21579], "vas229.com": [2053], "xian.1688.com": [44], "privatevpn.com": [13322], "bsan.es": [2053], "forum.vuze.com": [18174], "l.delizialy.com": [2053], "status.bitbucket.org": [2005], "open.barnet.gov.uk": [19487], "politico.pro": [2053], "static.stratosphere.msn.com": [9961], "images.groups.adobe.com": [655], "hds.io": [2053], "www.fitocracy.com": [6005], "websterwood.com": [18454], "wise.gg": [2053], "www.lngs.infn.it": [7913], "pirateproxy.ca": [21709], "elbird.co": [2053], "on.tassos.gr": [2053], "wise.gt": [2053], "payments.billdesk.com": [1930], "ea-cdn.voxmedia.com": [21953], "www.rosehosting.com": [14201], "vendorexpress.amazon.com": [952], "3dcenter.org": [147], "secure.hostasaurus.com": [7664], "graphics.streamray.com": [15709], "srb2.org": [14403], "support.secondlife.com": [14706], "ttfinfo.desy.de": [4479], "cna.asia": [2053], "dlcom.co": [2053], "www.appcelerator.com": [1152], "edrcdn.com": [4996], "r0b.info": [2053], "edumac.us": [2053], "dev.research.vt.edu": [18031], "councillors.halton.gov.uk": [20308], "s.vfserv.net": [2053], "*.eniro.com": [5378], "monitis.com": [10743], "cpfn.us": [2053], "j.weinjobs.com": [2053], "reviewed.pw": [2053], "framapic.org": [6214], "dvmck.us": [2053], "fsa.usda.gov": [17495], "url.bbking.net": [2053], "kickasstorrents.eu": [9031], "r.ccv.com.co": [2053], "www.cex.io": [2644], "fmarl.in": [2053], "mcctr.org": [2053], "brdg.one": [2053], "*.pheedo.com": [12830], "wop.news": [2053], "www.webmaster.yandex.com.tr": [18954], "www.homedepotfoundation.org": [7616], "file.tc": [2053], "www.tms.pl": [21750], "www.mtmweb.com": [10356], "duositex.com": [2053], "my.sacolaph.com": [2053], "wetrain.it": [2053], "www.assoc-amazon.fr": [1325], "www.filepicker.com": [5916], "skynet.ie": [16475], "novweb.novara.ie": [4596], "www.jedec.com": [8577], "s.nickmom.com": [2053], "xtvx99.cf": [2053], "bandicotz.ga": [2053], "phi.sx": [2053], "we.motospeed.tv": [2053], "to.44doors.com": [2053], "on.drunkwifi.co": [2053], "kernl.us": [9013], "www.cybercon.com": [4040], "hwrcforms.cardiff.gov.uk": [19644], "d.thelocal.com": [9698], "bdss.eu": [2053], "ipd.aws.bakerlab.org": [1667], "isomorphic.com": [8522], "curx.es": [2053], "larisa.la": [2053], "censorship.govt.nz": [3000], "www.zotacusa.com": [19072], "ih1.redbubble.net": [13895], "orl.do": [2053], "thsh.re": [2053], "heartstn.co": [2053], "popcorn-time.to": [21170], "comcluster.cxense.com": [2753], "www.enum.ru": [5407], "dl.catta.co": [2053], "www.powertraveller.com": [13231], "rine.ws": [2053], "www.app-coding.de": [1140], "www.providertalk.com": [13244], "at.dwncff.com": [2053], "opendz.org": [12131], "blb.uy": [2053], "remaxspb.co": [2053], "bfx.li": [2053], "vpy.co": [2053], "www.bradford.gov.uk": [2317], "tsv.fi": [16706], "ptix.co": [2053], "*.amazonwebservices.com": [954], "frost.cf": [2053], "s.r42.ca": [2053], "planet.linaro.org": [9522], "blog.nelhage.com": [11093], "www.xmos.com": [18824], "abuledu.org": [19258], "500ish.com": [193], "praegnanz.de": [13236], "webzj.reg.163.com": [43], "tt.glk.io": [2053], "frootvpn.com": [6346], "secure.omg.org": [11899], "www.hm.com": [7218], "gandi.net": [6569], "img2.1tv.ru": [79], "help.rallydev.com": [13772], "erevenues.cambridge.gov.uk": [19630], "wiki.brown.edu": [2421], "coller-iv.tk": [2053], "www.cybersicherheits-allianz.de": [892], "1item.me": [2053], "go.dmann.me": [2053], "plugins.jquery.com": [8598], "s.twb.org": [2053], "www.teylingen.nl": [11324], "ndlap4.ndla.no": [11309], "www.nodejs.org": [11648], "tpb.proxyduck.co": [21215], "jack.pe.hu": [2053], "wpacracker.com": [3343], "frh.me": [2053], "www.stellar.org": [15720], "post20brav.es": [2053], "lazo.io": [2053], "www.inetinteractive.com": [7921], "sogo.taz.de": [16042], "www.trygghansa.se": [17083], "www.clipperz.is": [3330], "arjmp.de": [2053], "svc.osu.edu": [11959], "hetibeton.444.hu": [172], "www.ipo.gov.uk": [17252], "go.mafbla.org": [2053], "nl-contrainfo.espiv.net": [20058], "zimbra.com": [19185], "kfuln.es": [2053], "zobri.st": [2053], "365tr.me": [2053], "vovici.com": [18144], "story.tn": [2053], "legal.here.com": [7465], "dkit.ie": [4114], "speedcrunch.org": [15502], "zkr.cm": [2053], "rh.meituan.com": [10405], "stellar.mit.edu": [9916], "www.realfavicongenerator.net": [21274], "nbfx.co": [2053], "www.bunchball.com": [2480], "billiondigital.com": [1936], "*.staticstuff.net": [6730], "api.foursquare.com": [6200], "documentation.centreon.com": [3019], "zomp.us": [2053], "shop.taz.de": [16042], "gain.inl.gov": [20462], "ga-innocenceproject.org": [6669], "fnls.co": [2053], "privacyscore.com": [13321], "go.ntvg.org": [2053], "ldrd.inl.gov": [20462], "grum.us": [2053], "moneycentral.msn.com": [9961], "logmeinrescue.com": [9713], "akp.ac": [2053], "hg.mozdev.org": [10836], "autodiscover.yandex.com.tr": [18954], "data.rackspace.com": [13740], "at.tra.cx": [2053], "jnky.gr": [2053], "o2-tv.cz": [16332], "ljs.cc": [2053], "l.wix.com": [2053], "www.fedshirevets.gov": [20102], "cdn3.colocationamerica.com": [3498], "hi.1688.com": [44], "www.law.cf.ac.uk": [2894], "img.thalia.de": [16433], "permits.camden.gov.uk": [2830], "dn-growing.qbox.me": [20286], "gaof.ru": [2053], "youbetrayedus.org": [19019], "b.azrul.net": [2053], "www.nuevasync.com": [11768], "frontiersin.org": [6343], "www.forums.zoho.com": [19202], "scion.us": [2053], "nationalserviceresources.org": [11279], "www.transmarine.org": [16935], "anpdm.com": [1094], "switchvpn.net": [15955], "images1.bovpg.net": [2305], "l0cal.com": [9212], "b.gzhls.at": [13252], "tbop.co": [2053], "cz.redhat.com": [13909], "tranny-tea.se": [2053], "yaler.net": [18947], "projects.triodos.com": [17015], "upswng.me": [2053], "guatemala.usembassy.gov": [21879], "cdn2.vox-cdn.com": [18145], "rbm.rocks": [2053], "svn.aircrack-ng.org": [19330], "fbrk.net": [2053], "*.ez-download.com": [5098], "at.norton.com": [11703], "hidde.nu": [2053], "myheritage.es": [11023], "*.c-and-a.com": [2554], "www.zerowater.com": [19162], "idcdn.de": [8494], "compuware.com": [3607], "www.bse.vt.edu": [18031], "storycubes.com": [15757], "sdm-admissions.mit.edu": [9916], "radio.cyberguerrilla.org": [4033], "www.filepicker.io": [5916], "betogo.eu": [2053], "b.telus.com": [16364], "business.zalando.com": [19094], "devportal.jamendo.com": [8649], "andrw.us": [2053], "www.boneblast.com": [2249, 2250], "www.alterapraxis.com": [918], "vraposo.me": [2053], "il1.pl": [2053], "politie.nl": [11324], "av-ar.com": [2053], "kng.ht": [2053], "gigster.com": [6778], "samc.la": [2053], "artday.co.kr": [1262], "burkhart.bz": [2053], "svn.gnucash.org": [6885], "lotto.de": [9777], "acsportal.oracle.com": [12284], "on.logz.io": [2053], "abc6.wjbf.com": [2053], "markm.cc": [2053], "wello.com": [18490], "www.it2.nl": [7987], "charen.ch": [19686], "oboy.co": [2053], "azm.me": [2053], "hbll.link": [2053], "halogenonline.dft.gov.uk": [19908], "www.e.switchadhub.com": [15954], "go.udafanz.com": [2053], "quadrant.org.au": [13552], "www.vinothek.hofer.at": [338], "vladivostok.beeline.ru": [1801], "wpp.com": [18219], "community-uat.freescale.com": [6302], "www.gettyimages.be": [6741], "mobildemo.sparebank1.no": [21524], "onquibids.com": [2053], "digiumenterprise.com": [4595], "web-hosting.com": [18341], "help.hipchat.com": [7554], "medlab.cc": [2053], "applev.ac": [2053], "www.gchq.gov.uk": [6998], "unb.io": [2053], "gtms04.alicdn.com": [846], "go.luktom.net": [2053], "zalando.ch": [19094], "*.pogo.com": [13073], "fbopen.gsa.gov": [6503], "resultater.nrk.no": [11744], "*.cntraveler.com": [3621], "www.deprexis.com": [4456], "tmz.vo.llnwd.net": [16087], "m.teltarif.de": [16363], "config.schmidtcom.de": [14597], "econ.ng": [2053], "www.nixos.org": [11624], "s3.sandbaguk.com.s3.amazonaws.com": [14515], "polybrowser.com": [13114], "grbs.co": [2053], "zee.to": [2053], "search.itunes.apple.com": [1160], "edocs.southglos.gov.uk": [15438], "ksclub.info": [2053], "notepad-plus-plus.org": [11723], "*.www.patriotssuperbowl.us": [12669], "ssl.soufun.com.tw": [15405], "www.continental.com": [3685], "yaythis.me": [2053], "www.allposters.com": [875], "secure.valelearning.com": [21893], "*.bundeskanzlerin.de": [2484], "www.rasende.dk": [13802], "jsth.co": [2053], "rss.seagate.com": [14679], "igodigital.com": [7881], "wp-ss.co.uk": [2053], "ct4.cloudtrax.com": [3356], "cirk.me": [2053], "docs.docker.io": [4705], "www.posta-online.it": [13184], "info.pindropsecurity.com": [21125], "ness.uic.edu": [17517], "payhip.com": [12686], "login.mobileapptracking.com": [20812], "alldaycalm.com": [885], "www.gizmodo.com": [6817], "internet.yandex.com.tr": [18954], "admin.mantisadnetwork.com": [10126], "www.zenmate.com.br": [19133], "coevorden.nl": [11324], "gbhub.bz": [2053], "*.em1.cloud.oracle.com": [12284], "lullabot.com": [9822], "bit.danto.ma": [2053], "muumuu.in": [2053], "envertent.com": [2053], "feeds.centrify.com": [19673], "tapirex.com": [12555], "test.sciencenode.org": [14622], "academy.adform.com": [625], "telekom-partnerwelt.de": [16342], "m.sydneytowereye.com.au": [15964], "solidlogic.com": [15369], "miltonkeynes.libraryebooks.co.uk": [20677], "csis-scrs.gc.ca": [2861], "cdn.shazam.com": [14934], "gccdbn.org.za": [2053], "rele.bz": [2053], "bisente.com": [1968], "*.globaloneteam.com": [6860], "www.myvoice.earthlink.net": [5106], "www.zenmate.ca": [19133], "hvst.co": [2053], "torrentsmirror.com": [16860], "www.zenmate.ch": [19133], "www.zenmate.cl": [19133], "a.walla.by": [2053], "s.shiftboard.jp": [2053], "cdn.lynda.com": [9847], "sl.mts.net.in": [2053], "raff.ag": [2053], "pbcham.ps": [2053], "abopage-mediafiles.tagesanzeiger.ch": [16163], "pequ.in": [2053], "lists.snacktv.de": [15268], "audio-video.gnu.org": [6474], "adbn.co": [2053], "citizenweb.io": [3232], "secure.gettyimages.be": [6741], "scorecardresearch.com": [14635], "webmail.redhat.com": [13909], "wa.hna.de": [2053], "cardcash.com": [2893], "image.ucuzu.com": [17390], "geni.nidirect.gov.uk": [20910], "kdewa.lt": [2053], "www.fmaba.com": [5761], "magnatune.com": [10026], "photographer.io": [12857], "eurodiet.co.uk": [5516], "www.ge.ch": [21629], "bot.id": [2053], "secur1ty.com": [14720], "blog.peer5.com": [12726], "petit.bz": [2053], "baishan.meituan.com": [10405], "valdhaus.co": [17824], "crn.gp": [2053], "open.wien.gv.at": [22025], "lukasa.co.uk": [20724], "paulschreiber.com": [12673], "pix.pn": [2053], "overseas.alipay.com": [857], "freesound.org": [6303], "alzforum.org": [940], "zeusdp.desy.de": [4479], "www.iptc.org": [7995], "tr.zenmate.com": [19133], "30fram.es": [2053], "fontdeck.com": [6107], "jiaoling.jd.com": [8571], "www.contentreserve.com": [19779], "xizang.jd.com": [8571], "mscbd.fm": [2053], "mfweb.us": [2053], "inside.cias.rit.edu": [13667], "whoisjoining.us": [2053], "yadi.sk": [18931], "mvd.360buy.com": [135], "mykc.co.nz": [2053], "support.lucidpress.com": [9810], "www.gotinder.com": [16740], "ecodissident.net": [5154], "scot.by": [2053], "auctions.yahoo.co.jp": [18944], "go.datapipe.com": [4290], "static.xhamsterpremiumpass.com": [18817], "uez.unizar.es": [17643], "iweb.co.uk": [20519], "www.it.ox.ac.uk": [17557], "www.bitstampede.com": [2002], "voa.va.gov": [17297], "abbo-shop.ch": [440], "*.rtems.org": [13706], "allyssa.me": [2053], "www.prospect.org": [16507], "rholck.us": [2053], "*.cic.fr": [1701], "programs.wcfia.harvard.edu": [7351], "mrbls.co": [2053], "purehacking.com": [13467], "bfmx.me": [2053], "help.lighthouseapp.com": [5031], "specials.mtvnn.com": [17953], "tribe.cd": [2053], "fr.getsatisfaction.com": [6738], "s.ozn.pw": [2053], "gdargaud.net": [7141], "amazon.nl": [19374], "openmarket.org": [12154], "h.yper.link": [2053], "l.ogisz.nl": [2053], "hmtk.co": [2053], "go.tojiali.com": [2053], "cimbpreferred.com": [2663], "lons.co": [2053], "maketheirday.co": [2053], "theglw.co": [2053], "cloc.us": [2053], "sproj.com.br": [2053], "dinn.in": [2053], "r4lv.com": [2053], "*.quattroplay.com": [13573], "dl.ed.gov": [4988], "*.alternet.org": [916], "liikenneturva.fi": [9509], "moodle.unizar.es": [17643], "ahi.is": [2053], "wildstar-online.com": [18602], "forums.winehq.org": [18652], "secure.freenet.de": [6300], "acf.hhs.gov": [7192], "www.vanillicon.com": [17853], "brnstr.co": [2053], "pic5.qiyipic.com": [20413], "www.9joycasino.com": [20552], "git.sphere.ly": [21535], "btn.sx": [2053], "ivar.co": [2053], "bh151tt.ml": [2053], "www.corkuniversitypress.com": [3742], "teamweek.com": [16260], "www.wornthrough.com": [18766], "25pt4.me": [2053], "bddy.me": [2053], "go.whats-new.gq": [2053], "ltb.pe.hu": [2053], "s.h2oskierc.com": [2053], "www.dl.ed.gov": [4988], "i.rahidelvi.ca": [2053], "thias.marmotte.net": [10191], "foke.at": [2053], "tidesandcurrents.noaa.gov": [11272], "a.icetravel.xyz": [2053], "tagbuilder.webtrends.com": [18467], "alxis.co": [2053], "deportes.uniovi.es": [17479], "derbyshireyouthinc.com": [19898], "fls-fe.amazon.co.jp": [19364], "www.eidq.org": [5017], "guichet.jura.ch": [21629], "crowdspring.co": [2053], "hsbc.com.mu": [20382], "incloak.com": [8178], "jamesm.ac": [2053], "www.onlineregistrationcenter.com": [12076], "jonbdz.in": [2053], "go.kiah-tv.com": [2053], "s5.cnzz.com": [3391], "updown-pilot.arin.net": [378], "static8.twilio.com": [17152], "movie.jd.com": [8571], "ls-guan.jd.com": [8571], "i5.c.dk": [2556], "www.core.ac.uk": [19793], "biblioconecta.ulpgc.es": [17411], "login.monash.edu": [10728], "viewmychart.com": [10941], "www.uofmhealth.org": [17665], "pyeongchang2018.com": [21229], "lso.pw": [2053], "zzw.link": [2053], "wtr.nhtsa.gov": [17305], "betterfap.com": [1880], "staempfliverlag.com": [21561], "gnutls.org": [6888], "hllywdjnkt.co": [2053], "forum.tfes.org": [16425], "edihealth.net": [4993], "www.lloydsbank.com": [9686], "phdcourses-socsci.uio.no": [17615], "schnellverkaufen.ricardo.ch": [14100], "psathome.ikea.com": [8108], "hwrdn.org": [2053], "t.maptm.nl": [2053], "www.ups.com": [17285], "esamplesweb.pfizer.com": [12822], "m.lotto.de": [9777], "omniture.groceries.asda.com": [387], "os2.fr": [2053], "www.rollapp.com": [14189], "rt.trafficfacts.com": [16928], "mus.ms": [2053], "dollarshaveclub.com": [4732], "support.krystal.co.uk": [9175], "brdcstcmpgn.com": [2053], "forum.dug.net.pl": [4163], "s.papworth.me": [2053], "wildplanetphotomagazine.com": [18601], "soft.hao123.com": [20312], "geronimo.apache.org": [1125], "*.jeffmitchell.me": [8694], "emsonline.milton-keynes.gov.uk": [10588], "www.westdevon.gov.uk": [18505], "*.creative.adobe.com": [655], "www.nycmesh.net": [20970], "ntrnbe.at": [2053], "innovation.govspace.gov.au": [6994], "lc2.lcstatic.net": [9420], "*.asada.gov.au": [385], "olle.be": [2053], "vremya.yandex.by": [18953], "leo.sg": [2053], "www.arcgis.com": [1194], "www.e-disclosure.ru": [4948], "firma.skolaonline.cz": [21471], "onion.ink": [16837], "hivoice.hivos.org": [7573], "www.yuri-ism.com": [19059], "auth.fyi": [2053], "www.macosforge.org": [9985], "011.cz": [2053], "odge.mit.edu": [9916], "dbackpolice.com": [4315], "avl.fm": [2053], "m.godaddy.com": [6898], "www.havant.gov.uk": [20318], "www.boounce.com": [2273], "scanmarker.com": [14574], "www.talktalk-labs.com": [16182], "lessbuttons.com": [20666], "zend2.com": [19137], "s.yourkirei.net": [2053], "ngvpn01.nvidia.com": [11174], "www.ub.uio.no": [17615], "links.bami.ch": [2053], "go.cinii.jp": [2053], "portal.uned.es": [17446], "tinyhahm.tk": [2053], "www.canon.ie": [2868], "no.4.boardgamearena.com": [2219], "beacon.beta.walmart.com": [18260], "www.office.co.uk": [11941], "g.arabenet.info": [2053], "qrad.io": [2053], "ad.retargeter.com": [13834], "abc30.tv": [2053], "jingmen.meituan.com": [10405], "facultyaffairs.stanford.edu": [15635], "api.rollbar.com": [14190], "cayuse.rf.ohio-state.edu": [11960], "piraten-schwaben.de": [12933], "aswebstat.stanford.edu": [15635], "*.chartbeat.net": [3076], "www.prioritysubmit.com": [13300], "non.tuxfamily.org": [21820], "cdn.thegrindstone.com": [899], "s.jamula.net": [2053], "namebright.com": [11205], "openrunet.org": [21021], "c2day.org": [2053], "grinnell.edu": [7083], "drafthouse.com": [813], "www.maxkitap.com": [10259], "www.indiegala.com": [8221], "snapm.uk": [2053], "nccgroup.trust": [11069], "manlysealifesanctuary.com.au": [10123], "shny.net": [2053], "creativeskills.be": [3856, 3857], "*.geeksphone.com": [6627], "bugmenot.com": [2462], "smeserver.org": [21483], "cli.caava.co": [2053], "aal.ink": [2053], "officersforbundet.se": [11951], "coo.ms": [2053], "*.adallom.com": [591], "eppingcr.uk": [2053], "a.ndy.io": [2053], "sohh.com": [14387], "thpb.co": [2053], "s1-josho.yamedia.tw": [18948], "tentyp.es": [2053], "packages.siedler25.org": [14065], "pp.pingdom.com": [12902], "www.osp.vt.edu": [18031], "rcm.org.uk": [21271], "fora.tv": [5698], "summitroute.com": [15847], "go.tcom.co": [2053], "www.laughingsquid.com": [20641], "carsabi.com": [2924], "apigility.org": [1133], "customs.hmrc.gov.uk": [7219], "www.bizchannel.cimbbank.com.kh": [2661], "samssoftware.com.au": [14499], "parking.wustl.edu": [18290], "www.chase.leeds.ac.uk": [17604], "active24.co.uk": [19274], "pbsrc.com": [12707], "weforum.org": [18198], "oeit-tsa.mit.edu": [9916], "www.avoinministerio.fi": [19466], "rsvq.co": [2053], "kryptnostic.com": [9169], "sparkm.tg": [2053], "egnyte.com": [5214], "cyberduck.io": [4041], "kh.usembassy.gov": [21879], "burger2.me": [2053], "glnd.ca": [2053], "www.irwinlaw.com": [8508], "glose.com": [6871], "nwd.gr": [2053], "mlday.fr": [2053], "waybackmachine.org": [1205], "fuz.meituan.com": [10405], "stk3d.li": [2053], "vacancies.ncl.ac.uk": [11073], "www.aruc.rlt.ulaval.ca": [17515], "consint.info": [2053], "russian.ashgabat.usembassy.gov": [21879], "bnk.rs": [2053], "rollte.ch": [2053], "k6.chaucanh.net": [2053], "cgp.upf.edu": [17674], "www.postdirekt.de": [19901], "*.flightglobal.com": [6037], "www.amnistia.org.pe": [1016], "wiki.sourcefabric.org": [15429], "qmul.co": [2053], "www.mailinabox.email": [10047], "*.subscribeonline.co.uk": [4816], "www.photomath.net": [12852], "tickets.udn.com": [17224], "stal.kr": [2053], "www.enocloud.com": [19984], "www.thecalmzone.net": [16520], "arma2.com": [19416], "fye.osu.edu": [11959], "campingmag.uk": [2053], "vespermarine.co.*": [17943], "jadeinfo.biz": [2053], "tracking.correctiv.org": [3753], "rss.itunes.apple.com": [1160], "forum.palemoon.org": [12545], "ads.bluelithium.com": [14114], "l.dew.co.ke": [2053], "dmx-austria.at": [4123], "www.merethis.com": [10458], "www.codebutler.com": [13197], "openttd.org": [12180], "sesplan.gov.uk": [21417], "raph.so": [2053], "sitn.it": [2053], "mycloud.rackspace.co.uk": [13733], "c.s-microsoft.com": [14295], "cdn7.sure-assist.com": [15899], "katan.ga": [2053], "pnda.co": [2053], "simcenter.engineering.osu.edu": [11959], "www.my.preston.gov.uk": [21196], "fs30.formsite.com": [20148], "shreve.link": [2053], "sysinfo-15.cnaf.infn.it": [7913], "grem.pw": [2053], "sb21.me": [2053], "folksam.se": [6104], "bnch.me": [2053], "www.tenable.com": [16370], "*.afsa.gov.au": [1429], "panerabread.com": [21068], "hatatorium.com": [7369], "anesthesiology.georgetown.edu": [6668], "leer.amazon.com.mx": [19368], "code42.com": [3406], "extratorrent.cc": [5637], "enterprise.coursera.org": [3788], "thepiratebay.mk": [21709], "lawtalk.link": [2053], "io.danjam.es": [2053], "sidereel.com": [15007], "go.cpalm.dk": [2053], "clearsurvey.at": [2053], "secure-ec.libsyn.com": [9482], "fmm.io": [2053], "mail.uas.biz": [17500], "go.lazaridis.eu": [2053], "nostar.ch": [2053], "secure.robotshop.com": [14160], "wehelp.build": [2053], "riak.co": [2053], "new.teamweek.com": [16260], "familychristian.com": [5759], "cf.geekdo-static.com": [6621], "bndspn.com": [2053], "p8.chaucanh.net": [2053], "plattetv.nu": [2053], "mywebsitepersonal.1and1.co.uk": [63], "vuk.ee": [2053], "svn.planet-lab.org": [12982], "selfcare.m-budget.migros.ch": [10566], "*.tekgoblinmedia.com": [16320], "labs.douban.com": [4802], "submit.symantec.com": [15969], "www.elcorteingles.es": [22064], "www.mazout-migrol.ch": [10562], "s.hatamoto.biz": [2053], "redir2.info.giffgaff.com": [20237], "gust.com": [7154], "doomworld.com": [4776], "gotowebinar.com": [6914], "2wicke.de": [2053], "www.digforsk.uio.no": [17615], "clx1.co": [2053], "www.gistmarks.com": [6791], "blog.trendmicro.com": [16989, 16993], "storesecured.com": [15749], "www.installments.com": [20467], "www.tubeoffline.com": [17090], "tie.li": [2053], "wovn.io": [18212], "m.iwey.mx": [2053], "freewatch.gq": [2053], "s.chilli.mobi": [2053], "nsdx.uk": [2053], "moodle.lasallehs.net": [9314], "secure.aadcdn.microsoftonline-p.com": [10544], "ontr.co": [2053], "gri.pw": [2053], "lk.quacuabo.com": [2053], "app.compose.io": [3590], "socialrank.co": [15306], "thecisogroup.com": [16446], "at.jamjar.gr": [2053], "forge.puppetlabs.com": [13460], "l1nk.no": [2053], "v6ak.com": [17757], "ip-check.info": [7948], "careers.oculusvr.com": [11921], "awilde.me": [2053], "tihq.uk": [2053], "intnt.nl": [2053], "blackarrowsoftware.com": [19550], "www.just-eat.es": [20565], "zoom.in": [2053], "try.github.com": [6801], "inachinashop.com": [11824], "manage.windowsazure.com": [18644], "plato.stanford.edu": [15635], "pass.mery.jp": [9903], "*.netswipe.com": [8824], "whonix.thecthulhu.com": [16600], "www.afdc.energy.gov": [5355], "www.gluster.org": [6876], "aurarialibrary.worldcat.org": [18748], "*.time.com": [16074, 18730], "i.aminmkhan.com": [2053], "osmand.cz": [12326], "tracks.fit.edu": [6058], "www.taoeffect.com": [16204], "c.co.za": [2053], "meeting.ntu.edu.tw": [11160], "hfb.tv": [2053], "umassmag.com": [17550], "sparklit.com": [15472], "www.nie-wieder-vds.de": [11586], "zoum.ca": [19073], "ahoy.one": [21215], "i.drakontia.com": [2053], "internationaluat.courierpost.co.nz": [3784], "www.consumentenbond.nl": [3662], "careerstar.co": [2053], "www.seasonal.ly": [14693], "s.i879.jp": [2053], "ltc.huobi.com": [7769], "www.zenmate.ae": [19133], "mai.aliexpress.com": [19343], "ddp.tips": [2053], "cdn.nursing.osu.edu": [11959], "danblah.com": [4210, 4211], "slate.fr": [15194], "vip.qiyi.com": [20413], "atlas.arbornetworks.com": [1193], "solarsystem.nasa.gov": [11058], "docs.woothemes.com": [18717], "pdu.lu": [2053], "ual.cc": [2053], "comic-rocket.com": [3531], "monitor.planet-lab.org": [12981], "upload.picload.org": [12873], "hannahcranston.com": [20311], "blog.foolz.us": [6125], "sn.my": [2053], "xdebug.org": [18853], "ebx.sh": [2053], "vgre.info": [2053], "febas.de": [5822], "ht4w.com": [2053], "web-stat.com": [18344], "cdn2.sbnation.com": [14317], "gafisa.co": [2053], "www.testssl.sh": [16408], "valh.us": [2053], "help.livingsocial.co.uk": [9678], "cmrshort.com": [2053], "ies.ikoula.com": [8112], "www.archive.icommons.org": [7846], "hitfarm.com": [7567], "gogs.io": [20264], "mail.law.georgetown.edu": [6668], "jond.info": [2053], "app.net": [1141], "binero.se": [1947], "umby.us": [2053], "userstory.ru": [21882], "developer.piwik.org": [12950], "everydayhero.com": [5560], "ucl.ac.uk": [17581], "o.npff.co": [2053], "12d.co": [2053], "www.orderbook.net": [12299], "us.wataru.com": [2053], "ncisf.org": [11071], "jdub.in": [2053], "www.inyt.com": [7919], "tdcserviceonline.com": [16053], "podio.com": [13068], "wiki.kubuntu.org": [9180], "2ig.pw": [2053], "d.cloudlotse.de": [2053], "hitgr.id": [2053], "www.delfogo.com": [4402], "*.kldp.org": [8888], "www.smk.sachsen.de": [14454], "exed.hks.harvard.edu": [7351], "ind.homeoffice.gov.uk": [20355], "oberbayern.piratenpartei.de": [12938], "pressfreedomfoundation.org": [6292], "forums.hak5.org": [7299], "sync.adap.tv": [593], "sandofsky.com": [14519], "*.uptilo.com": [17690], "www.govdelivery.com": [6990], "nranews.com": [20950], "metrics.jpl.nasa.gov": [11058], "www.lhncbc.nlm.nih.gov": [11241], "rndnerds.com": [2053], "rtklive.com": [13707], "direct.yandex.kz": [18957], "cosmopolitan.com": [3758], "laverna.cc": [9329], "digforsk.uio.no": [17615], "yoast.com": [22105], "eticketing.co.uk": [16690], "redth.link": [2053], "commvau.lt": [2053], "weissinc.com": [18483], "yur.bi": [2053], "2015globalthinkers.foreignpolicy.com": [6142], "data.usaspending.gov": [17312], "btw.bz": [2053], "www.begun.ru": [1808], "b.manojayan.com": [2053], "t-rave.xyz": [2053], "commons.era.nih.gov": [11241], "variantweb.net": [21895], "justice.sk": [15217], "shouji.jd.com": [8571], "www.edwardsnowden.com": [5203], "mcys.co": [2053], "darklaunch.tmi.twitch.tv": [17164], "onion.cab": [16837], "mbws.axeso5.com": [1513], "berkeleyed.me": [2053], "www.ubuntuusers.de": [17383], "embed-assets.wakelet.com": [18248], "soldani.info": [2053], "directbox.*": [4613], "civicd.link": [2053], "cogniz.at": [2053], "natv.ad": [2053], "clxns.mx": [2053], "www.maps.yandex.kz": [18957], "tilburguniversity.edu": [16716], "localview.birmingham.gov.uk": [19536], "cyberaces.org": [4028], "rabobank.nl": [13723], "dailystavropol.ru": [19848], "*.siamogeek.com": [21441], "btn.gs": [2053], "submit.nal.usda.gov": [17495], "www.serverdensity.io": [14858], "www.twofactorauth.org": [17175], "feedback.yandex.com": [18956], "alti.cc": [2053], "www.eng.buffalo.edu": [2456], "mcis.erdf.communities.gov.uk": [19761], "djibouti.usembassy.gov": [21879], "www.tobaccofree.osu.edu": [11874], "com.btcchinacdn.com": [1599], "www.earthvpn.com": [19990], "2.adcstud.io": [2053], "b92.yahoo.co.jp": [18944], "cz.libreoffice.org": [9471], "bc.gwd.io": [2053], "app.piiship.com": [2053], "plum.media": [2053], "www4.citymapper.com": [3252], "www.cyanogenmod.org": [4025], "portal.prnewswire.com": [12490], "bewerbungsstatus.htw-berlin.de": [7246], "becrm.co": [2053], "crfty.co": [2053], "employers.simplyhired.com": [15075], "www.pfizerhelpfulanswers.com": [12823], "media.aclufl.org": [286], "webento.com": [18412], "studentservicescenter.stanford.edu": [15635], "www.sourcefoundry.org": [21510], "www.arachnys.com": [1189], "streberix.de": [2053], "www.inps.it": [7917], "provize.cesky-hosting.cz": [19680], "benefit.nl": [1828], "baifubao.com": [1664], "ne-web.ucsd.edu": [17216], "feedback.assembla.com": [1312], "www.cabal.ws": [2758], "pt-br.libreoffice.org": [9471], "akademikerf\u00f6rs\u00e4kring.se": [797], "national.com": [16413], "help.saba.com": [21353], "zupy.me": [2053], "jmconnexus.com": [20541], "go.axa.com": [2053], "as2.unm.edu": [17270], "intelliserver.net": [8368], "www.telecolumbus.de": [16329], "open.bbci.co.uk": [19501], "vobytm.com": [2053], "wordpressmultisite.washingtonpost.com": [18287], "inrtm.pl": [2053], "cdn1.campuslabs.com": [2845], "l.przenioslo.eu": [2053], "a--c.gq": [2053], "20s.mx": [2053], "www.poweredbypaquin.com": [13225], "www.liferay.com": [9494], "efok.us": [2053], "www.domdex.com": [4758], "thelondonpul.se": [2053], "hekou.meituan.com": [10405], "getthene.ws": [2053], "*.siteor.com": [15130], "gifts.wustl.edu": [18290], "ras.ncl.ac.uk": [11073], "widgets-script.broadagesports.com": [19593], "nic.br": [11108], "live.xbox.com": [18850], "e.suntravel.xyz": [2053], "lnk.wdadams.com": [2053], "conradresear.ch": [2053], "bsess.co": [2053], "bri.mu": [2053], "brnd.work": [2053], "go4kill.co": [2053], "*.igalia.com": [8097], "msgardenia.co": [2053], "*.forums.sabnzbd.org": [14451], "blog.ashleymadison.com": [1289], "bee.gg": [2053], "go.aatg.net": [2053], "www.lucidchart.com": [9809], "panelsurveys.ic.nhs.uk": [11102], "alz.org": [941], "youtube.com.mx": [19016], "w.eitz.me": [2053], "x.darkcodex.com": [2053], "passwd.hu": [12641], "destructoid.com": [4477], "gcfr.co": [2053], "youtube.com.mk": [19016], "bmax.co": [2053], "mbrowser.yandex.by": [18953], "wtsdc.ethz.ch": [5074], "prisonlegalnews.org": [13303], "erelay.contentwatch.com": [3677], "2011.asiabsdcon.org": [1293], "talkw.me": [2053], "rac.co.uk": [13628], "mkj.es": [2053], "extension.uned.es": [17446], "asert.arbornetworks.com": [1193], "alphassl.com": [907], "on.omaha.com": [2053], "www.joejulian.name": [20546], "bluebird.com": [2198], "komsomolsk-na-amure.beeline.ru": [1801], "tribepad.com": [21788], "*.badongo.com": [1651], "cbsprt.co": [2053], "static.1tv.ru": [79], "secure.nicovideo.jp": [11584], "dashboard.smartstream.tv": [15247], "ceviri.yandex.com.tr": [18954], "api.sumologic.com": [15848], "khelil.info": [2053], "qlt.cc": [2053], "royalshell.me": [2053], "www.joomla.org": [8776], "ttower.tv": [2053], "lotto.gmx.net": [6467], "lca2014.linux.org.au": [9566], "nysinsurance.adr.org": [19298], "nokedli.444.hu": [172], "lauradar.by": [2053], "*.footlocker.ca": [6127], "cp.fonality.com": [3812], "conurl.de": [2053], "www.ecocampus.ens.fr": [5029], "chenzhe.co": [2053], "uu.se": [17352], "full.bnkomi.ru": [19563], "srt.voodoo.ie": [2053], "*.247ilabs.com": [92], "secure.fera.defra.gov.uk": [4391], "www.communityservice.wustl.edu": [18290], "it.iu.edu": [8214], "pulse.conviva.com": [3698], "gravatar.oschina.net": [12321], "gbnews.tv": [2053], "iovisor.org": [20486], "evga.com.au": [5085], "www.shambhalamountain.org": [14901], "taapp.co": [2053], "mediakit.inc.com": [8190], "visualgamer.net": [2053], "add.org": [19289], "phryanjr.co": [2053], "provencredible.com": [13398], "urlf.nl": [2053], "www.buyveteran.com": [2528], "www.aldi.es": [338], "h.pflueger.org": [2053], "deco.proteste.pt": [4366], "www.a1.net": [252], "glo.wustl.edu": [18290], "lfg.com": [20673], "www.waverly.gov.uk": [21984], "jcsho.es": [2053], "gmktg.co": [2053], "hr.3.boardgamearena.com": [2219], "*.booredatwork.com": [2263], "dlib.bc.edu": [1541], "thelink.rit.edu": [13667], "www.theatlantic.com": [16511], "on.dujour.com": [2053], "autobytel.com": [1461], "www.zumzi.com": [19241], "tpfrb.dk": [16897], "krlc.us": [2053], "omp.md": [2053], "litlmagpi.co": [2053], "bdlne.ws": [2053], "t.omlee.net": [2053], "tianshui.meituan.com": [10405], "crz.gov.sk": [15217], "ipv6.da.gd": [4174], "www.platba.cz": [21149], "emlk.co": [2053], "deepdyve.com": [4374], "www.tweetdeck.com": [17146], "nelonen.fi": [11331, 11332], "senate.gov.ph": [14819], "server.cpmstar.com": [2704], "marvarc.co": [2053], "rage3d.com": [13760], "alaskaair.com": [817], "www.dniester.ru": [19933], "clickfu.se": [2053], "status.campaignmonitor.com": [2839], "www.freedesktop.org": [6243], "haslerandkim.ca": [2053], "final4ever.com": [5934], "jfox.cc": [2053], "trouvons.org": [6214], "acluofnorthcarolina.org": [289], "policy.cookiereports.com": [3702], "w.oito.co": [2053], "www.affiliatetracking.com": [740], "groupersocialclub.com.au": [7098], "bitstamp.net": [2073], "smize.me": [2053], "redfern.me": [13927], "atmn.co": [2053], "*.bel.fi": [1550], "advntrcats.org": [2053], "agresso.plymouth.ac.uk": [13055], "clicky.visophyte.org": [18071], "cunb.com": [2809], "vjp.me": [2053], "giog.io": [2053], "gem.co": [6633], "corp.7-eleven.com": [218], "on.nrdc.org": [2053], "ciclo.me": [2053], "baty.link": [2053], "tradelab.fr": [16916], "s.ul.com": [2053], "account.liu.se": [9238], "archive.sneakerfreaker.com": [21490], "quartet-web.com": [2053], "ssl.cdne.cpmstar.com": [2704], "www.piratenpartij.nl": [12924], "epicpics.co": [2053], "agilisys.tms-media.co.uk": [21749], "n.que.es": [2053], "mcmichel.info": [2053], "dot.me": [2053], "bin-store.com": [1940], "weneedtoknow.info": [18319], "cake.ly": [2053], "luzhou.meituan.com": [10405], "gllv.org": [2053], "asl.ink": [2053], "skr.spaj.eu": [2053], "dsply.com": [17866], "sf.a2star.com": [2053], "cypherpunk.at": [2755], "rb1.stockport.gov.uk": [21578], "gmoserver.jp": [6464], "www.kutv.com": [8907], "heise-gruppe.de": [7428], "win-rar.com": [18628], "businessadvice.anz.com": [355], "r.mechcraft.ru": [2053], "www.doubleclick.com": [4810], "rebs.co": [2053], "enfoto.eu": [2053], "www.medialoot.com": [10341], "www.centosblog.com": [3004], "shknws.com": [2053], "fuwu.alibaba.com": [850], "whatismyreferer.com": [22013], "www.lavasoft.com": [9328], "s2mediadigital.com": [14301], "*.webalert.jp": [18350], "tsq.li": [2053], "media.lpgenerator.ru": [20718], "static.fulltraffic.net": [6370], "urlfiltering.paloaltonetworks.com": [12553], "ffdo.gs": [2053], "www.yougov.de": [19012], "go.butter.ai": [2053], "adhocracy-cms.liqd.net": [9602], "registry.neustar.biz": [11472], "vu.nl": [17813], "press.dwolla.com": [4912], "business.cinesport.com": [3201], "images.a.switchadhub.com": [15954], "home.ie.cuhk.edu.hk": [2747], "btb.me": [2053], "it.lastminute.com": [9318], "www.xiscosoft.es": [18879], "vhffs.org": [21920], "gower62.illuminateed.com": [20430], "popcorntime-online.io": [21170], "dlasklepow.ceneo.pl": [2996], "hiref.ly": [2053], "r--r.ml": [2053], "robots.thoughtbot.com": [16656], "www.onlinethreatalerts.com": [12077], "msh.ms": [2053], "hanselman.com": [14638], "ebks.to": [2053], "blogs.uv.es": [17750], "www.dfranke.us": [4172], "z5.hitravel.xyz": [2053], "jamesb.photos": [2053], "origin.collective-media.net": [3485], "t.jrollans.com": [2053], "vmd.defra.gov.uk": [4391], "*.notex.ch": [11633], "aegon.me": [2053], "s.alc.jp": [2053], "inspiration.primelocation.com": [21199], "www.buycott.com": [2529], "i500.mycdn.me": [11014], "secure-ds.serving-sys.com": [14872], "pwm-mwe.cf.ac.uk": [2895], "grnol.co": [2053], "www.giving.umd.edu": [17549], "www.hackforums.net": [7283], "a.tbcdn.cn": [16237], "www.nexcess.net": [11549], "ohanian.co": [2053], "overcast.fm": [12366], "www.mlsecproject.org": [9926], "suixian.meituan.com": [10405], "slovari.yandex.by": [18953], "www.esper.net": [5466], "smrtwat.ch": [2053], "simplefin.org": [15066], "ccr.cancer.gov": [2864], "www-s.scs.illinois.edu": [17544], "community.adr.org": [19298], "go.cms.gov": [2053], "www.citizenlab.org": [16447], "theca.org": [2053], "www.picert.it": [12462], "s.chingkiu.me": [2053], "housting.de": [11369], "s.axbm.us": [2053], "avantar.com": [1481], "dome.harvard.edu": [7351], "donanim.link": [2053], "www.warthunder.ru": [21978], "l.gswk.de": [2053], "submissiontechnology.co.uk": [15817], "i0.sinaimg.cn": [15091], "l.isoin.es": [2053], "diasporabrazil.org": [4531], "www.curetheitch.com": [4000], "on.bbz.cc": [2053], "sosstud.io": [2053], "steamspy.com": [15711], "emr.ca": [2053], "www.rotesource.com": [14209], "dustystyx.deathmask.net": [4344], "wst.s-msn.com": [14297], "buyfl.at": [2053], "www.witness.org": [18683], "engd.in": [2053], "customsu.it": [2053], "mney.co": [2053], "ctia.it": [2053], "trrd.ca": [2053], "www.frontiersin.org": [6343], "vendosupport.com": [17897], "help.1and1.com": [61], "poivy.com": [13078], "www.caadence.bme.hu": [1570], "www.libraries.io": [9462], "ffeeds.co": [2053], "tcfc.bz": [2053], "sd1.jalan.net": [2053], "geekpark-img.qiniudn.com": [6615], "sunur.us": [2053], "www.crm-metrix.com": [2715], "go.haji.ca": [2053], "lh2.google.*": [6965], "tizen.ly": [2053], "www.fandago.com": [5765], "mvideos.stanford.edu": [15635], "youtube.at": [19016], "www.bethesignal.org": [1870], "*.wineaustralia.com": [18651], "link.973.mx": [2053], "ads7.contentabc.com": [3678], "www.lsi.us.es": [17706], "mdcc.uk": [2053], "go.nboa.org": [2053], "ird.io": [2053], "ti.me": [2053], "www.chitaitext.ru": [19707], "kus.bz": [2053], "git.pwmt.org": [13491], "zapy.com": [2053], "*.ubm.com": [17205], "secureimages.mcafee.com": [10282], "l.uptvector.com": [2053], "*.grcmc.org": [7017], "c0.rgstatic.net": [13655], "radio.kingdomofloathing.com": [1343], "*.mmoga.com": [9930], "ianm.biz": [2053], "www.correctiv-upload.org": [3752], "doemeispp.org": [19935], "www.learningbizpackage.com": [9370], "online.instantatlas.com": [20468], "tired.bz": [2053], "bso.bradford.gov.uk": [2317], "www.pccasegear.com.au": [12426], "wien.neos.eu": [11088], "networksgroup.com": [11402], "na.h1.cz": [2053], "prj.gd": [2053], "louderthanwar.com": [9781], "hilton.7eer.net": [224], "entportal.aws.ieeeusa.org": [7863], "leandr.in": [2053], "ftp-stud.hs-esslingen.de": [7585], "www.adobeexchange.com": [657], "matl.in": [2053], "btbu.co": [2053], "hertzequipsales.com": [7511], "secureimg.allposters.com": [875], "www.futureboy.us": [6401], "support.gravity.com": [7029], "git.goeswhere.com": [6931], "www.proxysite.com": [13409], "s.r2x9.info": [2053], "malem.info": [2053], "grvy.is": [2053], "fortum.com": [6177], "www.indprop.gov.sk": [15217], "cib.st": [2053], "anb.tw": [2053], "murmansk.rt.ru": [13703], "sxscom.uk": [2053], "skbr.info": [2053], "log.affiliate.rakuten.co.jp": [13768], "d-link.jd.com": [8571], "moscow.sci-hub.io": [14615], "vik.so": [2053], "*.duraspace.org": [4903], "shop.dnaserum.com": [4131], "tictail.com": [16697], "itmanie.cz": [7994], "se.indiza.com": [2053], "dar.fm": [4080], "cpbuswiki.duoshuo.com": [19969], "join.girlsoutwest.com": [6787], "nccl.eu": [2053], "*.mandriva.com": [10111], "wusmforms.wustl.edu": [18290], "leserservice.kicker.de": [9032], "cdn-3.sundul.us": [2053], "freizeit1.sbb.ch": [15946], "to.joshmal.in": [2053], "dx01.my.uprr.com": [21869], "vote.sfconservancy.org": [15348], "*.noblogs.org": [20919], "idol.pe": [2053], "twitter.com": [17168], "www.kylie.com": [20625], "fr.aegeanair.com": [7041], "www.ikwilthepiratebay.org": [21215], "shup.me": [2053], "www.wikidevi.com": [18592], "style.aliunicorn.com": [859], "bigde.al": [2053], "ux.jpcyr.com": [2053], "s1-money.yamedia.tw": [18948], "cskhviettel.com": [2053], "assets-news.vice.com": [17959], "3nr.de": [2053], "selfservice.nytco.com": [11187], "api.torrent411.com": [16036], "secure.netpr.pl": [11395], "jimmykuu.duoshuo.com": [19969], "telecomindustrydialogue.org": [16330], "alphawolf.org": [2053], "u.confetti.cool": [2053], "jahb.li": [2053], "beta.act-on.com": [19268], "ohloh.net": [11965], "link.gregg.io": [2053], "zephy.ru": [2053], "images.pangora.com": [12565], "bikeability.dft.gov.uk": [19908], "kcrns.de": [2053], "moscow.sci-hub.bz": [14615], "flynnlink.com": [2053], "bdlnk.co": [2053], "freshbooks.com": [6320], "secure.promotionalads.yahoo.co.jp": [18944], "www.soldierx.com": [15363], "hungryhouse.co.uk": [7766], "hout.me": [2053], "purehonda.co": [2053], "s.abc.or.jp": [2053], "blog.bitlendingclub.com": [1984], "www.edg.com": [4990], "dctv.me": [2053], "contributorsystems.gettyimages.com": [6741], "pmisportal.axosoft.com": [1517], "4wd2.us": [2053], "nxtr.co": [2053], "me.shopicks.com": [2053], "www.kickasstorrents.to": [9031], "ebm.im": [2053], "www.unbound.net": [17437], "sockassist.com.au": [16362], "www.chakraos.org": [3044], "awisechoice.co": [2053], "www2.oh.cz": [2053], "www.coredump.gr": [3738], "un.me": [2053], "wellness.georgetown.edu": [6668], "m-a-g.taobao.com": [16206], "blog.picnichealth.com": [12874], "accountservices.microsoft.com": [10543], "bit.wetap.com": [2053], "secure.dealinteractive.com": [19882], "www.ucc.dk": [17209], "js-r.co": [2053], "at.adrlam.com": [2053], "myfcj.me": [2053], "*.yunpan.360.cn": [130], "www.armatactics.com": [19417], "dta.to": [2053], "www.vonage.co.uk": [18133], "pics.crucial.de": [3902], "aeon.co": [720], "i.cads.cz": [2053], "www.derpiboo.ru": [4461], "www.ausinfotech.net": [1412], "wiki.alpinelinux.org": [909], "online.usc.edu": [17564], "octbr.co": [2053], "www.justgetflux.com": [6072], "serverpilot.io": [14852], "caireinc.io": [2053], "harlandclarke.com": [7339], "*.pointroll.com": [13076], "imagebank.nih.gov": [11241], "www.egotastic.com": [5216], "clickdelivery.gr": [3317], "developers.mobile.conduit.com": [3628], "ccc.de": [2596], "sbts.co": [2053], "wh0rd.org": [22012], "amormag.co.uk": [2053], "www.bulkorder.ftc.gov": [5837], "go.cryptelo.com": [2053], "sklep.payback.pl": [21088], "renew.ge": [2053], "api.sedo.com": [14785], "graybox.co": [2053], "la-hora.org": [17402], "madate.ch": [2053], "libraries.midlothian.gov.uk": [10556], "*.clasconsultants.net": [19723], "webmail.noxa.de": [20940], "mca-marines.org": [9892], "jos.sc": [2053], "agent.alfabank.ru": [842], "*.b-static.net": [2222], "groupon.co.uk": [7103], "eer.ru": [20013], "gu360.georgetown.edu": [6668], "oc3.in": [2053], "syb.la": [2053], "vpsfree.cz": [21956], "help.metasploit.com": [10488], "www.facultysenate.wustl.edu": [18290], "clotai.re": [2053], "pbebank.com.my": [13431], "go.augusta.edu": [2053], "go.mbbe.org": [2053], "i3.3conline.com": [157], "jon.cl": [2053], "p5.zdassets.com": [19121], "youtube.lt": [19016], "forums.malwarebytes.org": [10093], "plot.ly": [13042], "*.hs.llnwd.net": [9518], "harp3r.xyz": [2053], "defectivebydesign.org": [4383], "newlook.com": [11499], "mercadobitcoin.net": [10449], "oomphme.com": [12095], "ieee.org": [7862], "verzekeringssite.nl": [17940], "planpa.peterborough.gov.uk": [12806], "newspr.es": [2053], "maig.us": [2053], "gobrian.co": [2053], "default.kei.pl": [8993], "barnsley-consult.objective.co.uk": [20979], "atech.io": [406], "rollingp.in": [2053], "www.passmark.com": [12632, 12633], "www.eurexchange.com": [5505], "*.ford.com": [6138], "buoywt.hr": [2053], "www.sda.it": [14330], "danhlode.com": [4218], "www.gdata.at": [6410], "ml.mageia.org": [10014], "*.customersaas.com": [4014], "link.vietimg.vn": [2053], "consultations.southglos.gov.uk": [15438], "fz.my": [2053], "www.impactradius.com": [8160], "draugr.de": [4839], "mail.iu.edu": [8214], "charter.net": [3080], "www.yourdatelink.com": [19034], "airvpn.org": [787], "*.yelp.com.mx": [18979], "mywot.net": [10987], "www.carousell.com": [2919], "jsta.xyz": [2053], "upload.sms.cam.ac.uk": [17529], "ma.ki": [2053], "pro.hostingas.lt": [21203], "app.ghosteryenterprise.com": [6750], "style.taobao.com": [16206], "enm.ax": [2053], "signup.leagueoflegends.com": [9362], "tnt.aufbix.org": [1402], "wetter.tagesschau.de": [21650], "trailers.apple.com": [1160], "www.f5networks.co.jp": [5660], "cio.com.au": [2667], "wiki.documentfoundation.org": [16487], "crm.vdv.de": [17770], "slolpcf.alfabank.ru": [842], "www2.extensis.com": [5634], "forums.offensive-security.com": [11935], "dab.im": [2053], "*.docstoccdn.com": [4710], "intranet.engineering.osu.edu": [11959], "svar.regjeringen.no": [13972], "eas.admin.uillinois.edu": [17238], "go.shell.com": [2053], "rbc.ua": [21263], "und.st": [2053], "cheetahmail.com": [3113], "display.intencysrv.com": [8373], "detini.gov.uk": [19900], "www.theweekendedition.com.au": [18477], "ms.ligatus.com": [9502], "app.gusto.com": [7156], "unite.unity.com": [17506], "www.ftb.ca.gov": [2801], "www.rhb.ch": [14091], "fit-kat.com": [2053], "redli.ne": [2053], "ithrive.online": [2053], "sh.shore.org.uk": [2053], "*.wapy.com": [18190], "aru.li": [2053], "pidgin.im": [12884], "josm.openstreetmap.de": [12176], "tixa.to": [2053], "g.liveinternet.ru": [9649], "activatejavascript.org": [533], "stgil.es": [2053], "imss-test-storage.ads.caltech.edu.s3.amazonaws.com": [2815], "actumot.eu": [2053], "synchronicer.dk": [15983], "www.mediciglobal.com": [10358, 10359], "short.cghost.de": [2053], "www.ondeck.com": [20994], "wprk.eu": [2053], "static.bhphotovideo.com": [19527], "texthelp.com": [16421], "id.redhat.com": [13909], "kliq.us": [2053], "lab.facepunch.com": [5737], "mmpow.com": [2053], "www.okura.nl": [11977], "disili.co": [2053], "www.ccc.de": [2596], "lynxtech.no": [9849], "sgnln.co": [2053], "www.3joycasino.com": [20552], "anthrocon.org": [1105], "jobthread.com": [8742], "thetrainline.com": [16504], "www.ticketportal.sk": [16692], "www.cars.com": [2923], "claykil.by": [2053], "www.wintiewin.com": [18631], "www.teamgaslight.com": [16256], "alimama.com": [855], "minino.galpon.org": [20197], "starktou.ch": [2053], "odont.uio.no": [17615], "deutschland.isidewith.com": [20414], "dataview.ofsted.gov.uk": [20985], "www-stage.websitealive.com": [18445], "dlc.com": [2053], "www.flocabulary.com": [6051], "www.fineproxy.org": [5961], "srtn.co": [2053], "redtri.co": [2053], "www.wingware.com": [18654], "www.qupzilla.com": [13612], "s.dokuha.jp": [2053], "nextregister.com": [11554], "cbtpe.co": [2053], "www.7chan.org": [222], "www.t-nation.com": [16027], "wtgrants.wellcome.ac.uk": [22001], "app.maddroid.ru": [2053], "webconverger.com": [21989], "jobs.netways.de": [11452], "livebeta.dagbladet.no": [4183], "static.balboa.io": [1670], "maurus.net": [10251], "www.lvmanagement.com": [9312], "wyn.lv": [2053], "paraschetal.in": [21071], "onlineappointments.becu.org": [1549], "jobs.timeshighereducation.com": [16735], "server.iad.liveperson.net": [2775, 9654], "widgets.membership.microsoft.com": [10542], "www.berkeleychessschool.org": [1838], "www.oops.org": [12096], "webapps.nikhef.nl": [11596], "123p2.sogoucdn.com": [15351], "bof.nl": [1579], "vhf.de": [21918], "about.bitso.com": [2070], "rezbar.com": [2053], "www.nitetimetoys.com": [11619], "discourse.codecombat.com": [3424], "viana.us": [2053], "asset-5.soup.io": [15415], "mca.bz": [2053], "edu.netbeans.org": [11376], "dcc.life": [2053], "jhand.co": [2053], "campusglobal.upf.edu": [17674], "tineye.com": [16739], "*.airasia.com": [785], "txts.be": [2053], "cseo.me": [2053], "webconf2.itsc.cuhk.edu.hk": [2747], "*.infra-fuerth.de": [8281], "www.simply-partner.com": [15076], "n1.octostatic.com": [11918], "t.maiordo.rio": [2053], "brook.gs": [2053], "seclab.cs.washington.edu": [17576], "www.independentmail.com": [8204], "goge.tv": [2053], "icq.com": [7837], "proxmox.com": [13406], "www.davissystem.net": [4310], "www.programmableweb.com": [13358], "m.zalando.dk": [19094], "superdesk.org": [21609], "s.taobao.com": [16206], "claretsy.com": [2053], "mo.joweg.com": [2053], "www.acluofnorthcarolina.org": [289], "laughingsquid.com": [20641], "hey.satchb.ag": [2053], "digitalnepal.cf": [2053], "www.dnainfo.com": [19932], "the-body-shop.ch": [3712], "ouidad.cm": [2053], "c.yam.com": [18948], "www.cdig.me": [2975], "www.improper.com": [8168], "chfi.cc": [2053], "falpn.ch": [2053], "yizheng.meituan.com": [10405], "go.mediaco.asia": [2053], "iamcherm.ac": [2053], "tml.engineering.osu.edu": [11959], "help.cloudforge.com": [3347], "freedns.afraid.org": [746], "agtoday.us": [2053], "api.7digital.com": [223], "wellness.stanford.edu": [15635], "www.apture.com": [6961], "pjmedia.com": [12466], "www.nelly.com": [11330], "drnth.nl": [2053], "*.iljmp.com": [8113], "northbrookne.ws": [2053], "viajo.bi": [2053], "go.flaviu.co.uk": [2053], "spotxchange.com": [15546], "gacollege411.org": [6421], "ardour.org": [1213], "disqus.com": [4656], "www.hertz.at": [7476], "*.pkware.com": [12468], "heckrath.net": [7419], "nosax.me": [2053], "embed.newsinc.com": [11527], "www3.software.ibm.com": [7821], "startovac.cz": [21566], "duld.es": [2053], "stats.redditmedia.com": [13924], "jdbr.space": [2053], "www.cooltrainer.org": [19787], "knowledge.hsbc.co.uk": [20375], "www.fxsitecompat.com": [20192], "www.mywot.net": [10987], "defora.org": [4390], "bad-dragon.com": [19475], "www.pccu.edu.tw": [12425], "l.saemi.biz": [2053], "theoddsbible.com": [21707], "www.baifubao.com": [1664], "t.aquafadas.com": [2053], "im.post.ch": [13176], "edge.centrify.com": [19673], "*.justgive.org": [8844], "pcn.birmingham.gov.uk": [19536], "athleete.co": [2053], "kaprica.com": [20577], "itrgo.co": [2053], "shtl.dk": [2053], "www.steamid.eu": [15708], "mkt.rocks": [2053], "read.jd.com": [8571], "www.mediawatch.dk": [10332], "dermsk.in": [2053], "yay.deals": [2053], "freemarketlite.cc": [6245], "swp.stanford.edu": [15634], "www.olmn.org": [11829], "akta.me": [2053], "againf.as": [2053], "aaltodoc.aalto.fi": [428], "www.golfdigestinsiders.com": [6950], "andib.tk": [2053], "opentabs.net": [12247], "o.icetravel.xyz": [2053], "forms.valeofglamorgan.gov.uk": [17825], "my.viaduct.io": [17954], "eamf.ca": [2053], "*.inwx.net": [8381], "url.skg.io": [2053], "dct.im": [2053], "www.accan.org.au": [283], "blueorigin.com": [2196], "learning.ornl.gov": [11892], "*.blogspot.com.co": [2166], "wiki.tools.ietf.org": [7868], "gucq.org": [2053], "go.erchima.net": [2053], "customercenter.local.ch": [9697], "neowin.net": [11350], "metrix.net": [10497], "fey.li": [2053], "s.fquff.io": [2053], "home.jd.com": [8571], "uk.megabus.com": [10401], "cfengine.com": [2647], "jygb.us": [2053], "stmp.us": [2053], "info.cyberplat.ru": [4047], "smugmug.com": [15260], "huawei.tmall.com": [21748], "paadahl.us": [2053], "forum.ovh.pl": [12378], "huobi.com": [7769], "sv.uio.no": [17615], "artsn.in": [2053], "www.machinegunsvegas.com": [9994], "forum.ovh.pt": [12378], "tgrbt.bz": [2053], "agilebits.com": [765], "www.upc-cablecom.biz": [21865], "skvc2016.com": [2053], "stat.lanta-net.ru": [20636], "l.testa.im": [2053], "pixel.adsafeprotected.com": [577], "mmdia.es": [2053], "atcel.info": [2053], "www.vectormediagroup.com": [17879], "wartstick.com": [18281], "www.vk.com": [17784], "l.grecnar.sk": [2053], "lkfd.us": [2053], "mymarshall.usc.edu": [17564], "pxlssl.ibpxl.com": [8428], "espo4.me": [2053], "evidens.link": [2053], "www.accessguardian.com": [483], "linutronix.de": [9550], "passport.webmoney.ru": [18373], "thisis.xxx": [2053], "www.madeinafreeworld.com": [10004], "radiocane.info": [21247], "cdn.cdncomputer.com": [2979], "mysw.in": [2053], "synokm.synology.com": [15992], "imfimg.com": [8138], "4lc.fr": [2053], "engage.barnet.gov.uk": [19487], "admin.starproductreviews.com": [15649], "www.e4ward.com": [4963], "arb.rt.com": [13702], "es.piliapp.com": [12887], "systems.cse.iitb.ac.in": [7891], "openview.vc": [2053], "www.nknews.org": [11123], "laustri.at": [2053], "betabls.bertrams.com": [1873], "gdlo.co": [2053], "sparto.be": [2053], "norge.no": [11680], "l.mahifx.com": [2053], "www.codeofconduct.wustl.edu": [18290], "www.playerattack.com": [13021], "events.ya.ru": [18930], "rateip.com": [13807], "certification.typo3.org": [16149], "images.autobytel.com": [1462], "assets.lego.com": [9222], "*.trustpass.alibaba.com": [850], "www.ilc.cuhk.edu.hk": [2747], "dev0n.io": [2053], "torusknot.com": [16868], "www.coolcart.net": [3704], "beipei.meituan.com": [10405], "hmny.co": [2053], "*.myheritage.se": [11023], "www.econda.de": [5159], "lota.co": [2053], "www.silkroad.ws": [15039], "cdme.osu.edu": [11959], "cdn.proxer.me": [13403], "www.hybrid-analysis.com": [7786], "pdp.one": [2053], "affres.org": [2053], "at.wasaweb.net": [2053], "s.delmore.io": [2053], "www.moz.com": [20834], "community.artemis-ia.eu": [1264], "pic.36krcnd.com": [142], "fws.jd.com": [8571], "x3.chaucanh.net": [2053], "www.thesexyhouse.com": [14889], "live.kent.ac.uk": [17603], "joy-kazino.com": [20552], "pla.nr": [2053], "*.shutterstock.com": [15000], "www.admin.asmp.org": [984], "nlawn.ca": [2053], "energydesk.greenpeace.org": [7064], "www.odessa.tv": [20983], "www.nettitude.com": [11447], "noreplied.com": [11679], "www.123contactform.com": [31], "images1.videolan.org": [17981], "www.bitwig.com": [2080], "1984.live": [50], "www.just-eat.ca": [20565], "web.north-herts.gov.uk": [11691], "anybalance.ru": [1116], "freifunk.net": [6311], "www.i2p2.de": [7804], "clas.georgetown.edu": [6668], "doki.co": [19936], "www.travelplan.gr": [16969], "tra.visaust.in": [2053], "www.mpx.no": [10862], "ttgami.ng": [2053], "*.civicscience.com": [3260], "status.live.com": [9644], "ajff.us": [2053], "10wrdnws.com": [2053], "passport.qcloud.com": [13530], "store.origin.com": [12309], "kaidian.amazon.cn": [19363], "wald0.com": [21967], "lxui.de": [2053], "www.mageia.org": [10014], "*.marinedepot.com": [10162], "mandiant.com": [10431, 20747], "tijhu.is": [2053], "britiish.esy.es": [2053], "m.seferler.yandex.com.tr": [18954], "static.bauercreative.net": [19497], "cz.mbank.eu": [9888], "www.levo.com": [9434], "xmlrpc.istockphoto.com": [20505], "ln.dotfold.io": [2053], "mentalhealth.org.uk": [20779], "agc.pw": [2053], "web1.login.cornell.edu": [3744], "doth.me": [2053], "www.opentechfund.org": [12181], "jeu.gd": [2053], "www.expresscoin.com": [5628], "s.st-hunter.com": [2053], "sbsfren.ch": [2053], "b.lsr7.com": [2053], "www.openlibrary.org": [12216], "support.vodafone.co.uk": [18106], "pollshare.me": [2053], "swlive.link": [2053], "odense.basekit.com": [19493], "reverse.put.as": [13484], "u.mtk.me": [2053], "r1.mzstatic.com": [1159], "*.wishabi.ca": [18673], "plumaz.co": [2053], "subscribe.smithsonianmag.com": [15255], "www.lime-technology.com": [20688], "restorethefourth.net": [14050], "ist.utl.pt": [16288], "qianxi.jd.com": [8571], "partners.appsflyer.com": [1171], "hiaa.us": [2053], "www.wwte3.com": [18232], "ngkf.dlobel.com": [2053], "www.bettersales.se": [1882], "stores.vodafone.co.nz": [18105], "itsdanbull.com": [4207], "www.mcc.gov": [20763], "asset-b.soup.io": [15415], "www.om.nl": [12229], "www.babymed.com": [1634], "joegut.com": [2053], "l.trsv.co": [2053], "kidcityteam.com": [2053], "mrlv.yt": [2053], "oauth.live.com": [9644], "owl.english.purdue.edu": [12383], "www.tr.im": [16898], "go.desdebox.es": [2053], "webmail.mykolab.com": [10955], "pomdrssg.com": [2053], "wpw.mx": [2053], "anou.biz": [2053], "hip.moe": [2053], "www.training.nih.gov": [11241], "windowshopping.11main.com": [28], "learnm.re": [2053], "prisma-it.com": [13302], "ghstatus.dge.carnegiescience.edu": [2916], "storeimages.apple.com": [1160], "www.zpchips.com": [19074], "faq.erc.edu": [5048], "connect.gettyimages.com": [6741], "stjo.me": [2053], "puyang.jd.com": [8571], "images2.variety.com": [17858], "j.cuoluo.com": [2053], "s2erc.georgetown.edu": [6668], "tmi.twitch.tv": [17164], "www.eventim.*": [5548], "www.noscript.net": [11632], "mail.fightaging.org": [5900], "www.ausgamers.com": [1410], "cssiw.gov.wales": [6987], "wild.worldcat.org": [18748], "untangle.com": [17657], "cts.tradepub.com": [16919], "careers.unit4.com": [21856], "yourcounciljobs.co.uk": [19041], "grd.to": [2053], "gmx.com.tr": [6467], "avoiceformen.com": [424], "m.f.ix.de": [8552], "presinst.link": [2053], "huid.ad.360.cn": [130], "www.neighbourhoodalert.co.uk": [20884], "v6.hitravel.xyz": [2053], "*.thumbs.redditmedia.com": [13924], "wiki.vtiger.com": [18161], "docs.asp.net": [393], "jdidonato.tk": [2053], "www.richarddawkins.net": [14105], "omnia.turris.cz": [17121], "iamro.be": [2053], "asecu2016.anadolu.edu.tr": [1025], "istockpho.to": [2053], "trbs.it": [2053], "*.blogspot.sk": [2166], "frisk.in": [2053], "xiantao.jd.com": [8571], "*.blogspot.sn": [2166], "www3.hants.gov.uk": [7328], "okl1-scene7.insnw.net": [8324], "disel.enaza.ru": [5332], "www.probation.homeoffice.gov.uk": [20355], "*.blogspot.sg": [2166], "*.blogspot.se": [2166], "poormanmotorsports.com": [13127], "www.voipuserportal.co.uk": [5392], "gdc.georgetown.edu": [6668], "support.okta.com": [11975], "newchr.link": [2053], "adgate.cf": [2053], "www.khpi.com": [9001], "www.victi.ms": [17961], "industrybotnetgroup.org": [8226], "2345.com": [87], "to.xploray.com": [2053], "*.condosforeveryone.com": [3625], "www.amoena.us": [1017], "macworld.com.au": [9988], "madboa.com": [10003], "www.freerunet.ru": [20170], "forums.archlinux.fr": [1198], "so-ve.info": [2053], "media.friendfinder.com": [6331], "wmk.me": [2053], "whosampled.com": [18557], "*.ecash.io": [4982], "tny.be": [2053], "frge.co": [2053], "maticulo.us": [2053], "karavaevo.beeline.ru": [1801], "ff.connextra.com": [3650], "*.libravatar.org": [9468], "frcst.co": [2053], "blogs.aalto.fi": [428], "cscglobal.com": [3751], "www.kingdomofloathing.com": [1343], "www.unbridled.info": [17438], "happybearsoftware.com": [20314], "trainingcamp.tokyo2020.jp": [21754], "tny.bz": [2053], "awsm.link": [2053], "www.intego.com": [8351], "upf.edu": [17674], "sbmotor.co": [2053], "redferret.net": [13907], "www.tvmazecdn.com": [21825], "*.steelhousemedia.com": [15714], "f.dng.pw": [2053], "mgff.me": [2053], "career.stonybrook.edu": [15736], "it.vanderbilt.edu": [17849], "hcss.me": [2053], "ilove.gs": [2053], "f.mmportal.info": [2053], "roy.bz": [2053], "healthystart.nhs.uk": [11102], "rtna.me": [2053], "b.dora-kou.net": [2053], "www.nfsec.pl": [11095], "casinoestrella.com": [2942], "ckclark.us": [2053], "beauty.taobao.com": [16206], "wakelet.com": [18248], "on.goasia.de": [2053], "syntax.xtgem.com": [18899], "learn2.moodlerooms.com": [20828], "thrds.io": [2053], "cyberstreetwise.com": [4050], "u.alicdn.com": [846], "microbiology.georgetown.edu": [6668], "fwb40.us": [2053], "ho.ct.de": [2053], "polit.ru": [13094], "on.3nz.it": [2053], "gqm.ag": [2053], "www.cyberguerrilla.info": [4032], "wgtn.cc": [2053], "videos.usatoday.com": [17310], "my.vestacp.com": [17945], "ln.epitaph.name": [2053], "idonot.es": [2053], "www.youtube.tn": [19016], "advent-hub.okta.com": [11975], "v.visionect.com": [2053], "www.pinterest.com": [12914], "cb.ligatus.com": [9502], "www.monarch.co.uk": [10727], "occssl.payback.pl": [21088], "www.tosdr.org": [16794], "agreg.co": [2053], "adsafecontrol.com": [576], "fmc.unizar.es": [17643], "horax.us": [2053], "qconsf.com": [13510], "www.gephardtinstitute.wustl.edu": [18290], "*.odn.io": [16841], "*.franken.de": [6220], "stoller.adv.br": [2053], "*.handy.de": [7324], "vanx.ga": [2053], "apollohq.com": [1166], "go.coscup.org": [2053], "on.wkyc.com": [2053], "jonni.es": [2053], "www.strato.*": [14428], "www.nuxx.net": [11786], "distributed.net": [4661], "www.notalwaysfriendly.com": [20931], "miaprjct.com": [2053], "sap.com": [14311], "*.re.is": [13644], "pudmaf.tk": [2053], "app.littlehotelier.com": [9635], "ausflugstipps.zvv.ch": [22146], "aman.ga": [2053], "europa-apotheek.com": [5524], "usi.vutbr.cz": [17814], "ea.vg": [2053], "ec.osu.edu": [11959], "cdn.c3voc.de": [2559], "ngair.io": [2053], "www.abma.de": [460], "*.w00t.com": [18726], "gentlelabs.com": [6650], "www.fdopk.org": [5779], "fantasyfootball.telegraph.co.uk": [16340], "4sysops.com": [192], "m.motocaddy.com": [2053], "tyrant.click": [2053], "go.hi.co": [2053], "www.profed.acs.org": [966], "craftilldawn.com": [19811], "al-zh.li": [2053], "dlgn.us": [2053], "libraryfreedomproject.org": [9465], "brmn.us": [2053], "chapman.edu": [3067], "wiki.facepunch.com": [5737], "trafik.yandex.com.tr": [18954], "coveyes.com": [2053], "gbatemp.net": [6422], "smiliblog.stanford.edu": [15635], "answers.uchicago.edu": [17532], "static.streetlife.com": [21590], "pinellas.aclufl.org": [286], "zenaui.ga": [2053], "community.citrix.com": [3237], "gor.mn": [2053], "www.igh.cnrs.fr": [6314], "l.madhugb.com": [2053], "mas.meituan.com": [10405], "www.freecallstosingapore.co.uk": [20709], "1.artsqwest.com": [2053], "www.insightexpress.com": [8321], "news.nationalgeographic.com": [11268], "amyh.us": [2053], "georgiegirl.com.au": [6670], "flingel.li": [2053], "foodhub.co.nz": [6117], "cdn-retailers-dbapp.netdna-ssl.com": [4185], "feed2js.org": [5847], "beatsmedia.com": [1790], "kkre.me": [2053], "*.fotocommunity.de": [6194], "m.runnymede.gov.uk": [21340], "de.cloudflare.com": [3344], "cy.tl": [2053], "visibletechnologies.com": [18063], "itug.me": [2053], "*.australianclinicaltrials.gov.au": [1421], "www.pycon.sg": [13493], "focusc.li": [2053], "linkinto.me": [2053], "l.s-f.com": [2053], "jenkins.debian.org": [4353], "s.benad.me": [2053], "www.grove.io": [7107], "secure.vandyke.com": [17842], "static-mynews.apple.com": [1159], "crimla.ws": [2053], "zndpt.de": [2053], "library.southampton.gov.uk": [15440], "clai.ma": [2053], "clearista.com": [3292], "mozillaignite.com": [10848], "www.nelonen.fi": [11331, 11332], "fail.by": [2053], "www.cryptotec.com": [19830], "agb.web.de": [18347], "devnet.jetbrains.com": [8708], "shotbyrob.co": [2053], "*.ceejay.net": [2987], "peakvc.co": [2053], "crwd.vc": [2053], "q9e.co": [2053], "www.chl.it": [2655], "silkroad.ws": [15039], "www.techtarget.com": [16274], "writemy.co": [2053], "blog.sucuri.net": [15829], "dev.yandex.com.tr": [18954], "user.ecc.u-tokyo.ac.jp": [17196], "xelerance.com": [18855], "ei.rlcdn.com": [13668], "ref.danal.com": [2053], "emonight.la": [2053], "donate.accessnow.org": [485], "tvprogram.idnes.cz": [20425], "www.hhid.com": [7194], "www.mer.io": [10445], "www.demonii.com": [4435], "www.cdbaby.com": [19662], "web-content.educ.cam.ac.uk": [17529], "*.nature.com": [11293], "a.ivn.us": [2053], "cm-mail.stanford.edu": [15635], "phy.li": [2053], "konqrunner.de": [2053], "www.balatarin.com": [1669], "fiwic.la": [2053], "cloudmailin.com": [3368], "my.pepipost.net": [2053], "cardcash.co": [2053], "longurl.it": [10958], "sync.com": [15979], "pl.godaddy.com": [6898], "brighton.illuminateed.com": [20430], "h.icetravel.xyz": [2053], "fast.animenewsnetwork.com": [19391], "baycare.clinic": [2053], "on.kitv.com": [2053], "esp.rt.com": [13702], "vstp.co": [2053], "kb.doteasy.com": [4796], "b.wiz1.us": [2053], "landscapephotographymagazine.com": [9296], "cyberghostvpn.com": [4031], "forum.hostdime.com": [7654], "dun.kn": [2053], "contact-sys.com": [3671], "mk2.com": [20808], "ilsoy.co": [2053], "in2.se": [2053], "plrm.me": [2053], "s.we.lc": [2053], "git.vpsfree.cz": [21956], "archive.redhat.com": [13909], "francais.rt.com": [13702], "rgks.us": [2053], "aerofs.com": [727], "cljds.com": [2053], "xyratex.com": [18913], "cxo.news": [2053], "re.jd.com": [8571], "www.stadium.ru": [21560], "dis.bz": [2053], "scriptobservatory.org": [14660], "directory.wokingham.gov.uk": [22042], "cadastre.openstreetmap.fr": [12245], "fw.jd.com": [8571], "groupes.renater.fr": [13999], "at.ispy.im": [2053], "qth.meituan.com": [10405], "jc4boe.us": [2053], "pentestgeek.com": [12754], "row.hants.gov.uk": [7328], "app-de4.resrc.it": [13832], "cart.wildwestdomains.com": [18599], "cruzid.ucsc.edu": [17591], "s.morijuku.com": [2053], "go.thefwa.com": [2053], "zendition.net": [19140], "c3s.cc": [2558], "content.marketdojo.com": [10174], "tagpr.me": [2053], "*.siteor.pl": [15130], "www.alastore.ala.org": [337], "www.malegislature.gov": [9885], "onjv.co": [2053], "s.udi19.nl": [2053], "wiki.openssl.org": [12168], "www.rushbucks.com": [14277], "www.facebook.es": [5736], "innovation.wwf.ch": [22060], "l.sharethis.com": [14913], "hexagon.cc": [7519], "www.hex-rays.com": [7518], "openinfosecfoundation.org": [12213], "edox.finam.ru": [20117], "nlinfo.uk": [2053], "www.kildarestreet.com": [9039], "gwgw.tk": [2053], "www.thawte.com": [16438], "go.citrs.xyz": [2053], "rump.us": [2053], "*.365ticketsglobal.com": [140], "binspi.red": [2053], "vd.cm": [2053], "tps.click": [2053], "suntrust.com": [15851], "militaria.ma": [2053], "liv.ac.uk": [9640], "crtz.li": [2053], "sportsgirl.in": [2053], "schedule.timetrade.com": [16726], "www.litehosting.org": [9617], "www.bviphotovideo.com": [1624], "cjmk.co": [2053], "l.breandan.org": [2053], "ilust.re": [2053], "indiemerchstore.com": [8220], "axptravel.americanexpress.com": [972], "slstud.io": [2053], "pc.cd": [21058], "mundobr.ink": [2053], "surveillance.rsf.org": [14018], "al-akhbar.com": [812], "www.marinsoftware.com": [10161], "*.vhf.de": [21918], "leeds.ly": [2053], "jj.meituan.com": [10405], "c2cpicdw.qpic.cn": [13539], "channels.us.dell.com": [4413], "ehrensenf.de": [5221], "tmtm.deals": [2053], "www.liwenhaosuper.com": [9681], "srv4.bakerlab.org": [1667], "pimo.co": [2053], "cdn9.iconfinder.com": [8066], "www.mirt.net": [10639], "hpro.in": [2053], "v.ok.ru": [11968], "puma.com": [13455], "under.gr": [2053], "www.bokborgen.se": [2236], "www.difi.no": [4547], "www.naturalresources.wales": [11291], "dialin.utm.edu": [17628], "dnld.it": [2053], "*.benzinga.com": [1834], "www.plurk.com": [13050], "*.securepaynet.net": [14751], "www.connochaetos.org": [3651], "m.mediamarkt.ru": [10342], "asiointi.hel.fi": [7453], "cdn.arkena.com": [1235], "www.allianz-fuer-cybersicherheit.org": [892], "m.vodafone.co.nz": [18105], "elv.gg": [2053], "derstandard.at": [19899], "frommar.co": [2053], "cmnt.link": [2053], "i.ramhost.us": [13630], "cards.asda.com": [387], "steel.1688.com": [44], "webftp.pipni.cz": [12460], "opera.com": [12252], "www.reuffel.de": [21301], "eic.energy": [2053], "kryptologika.com": [9170], "goodfit.ml": [2053], "s.ocio.net": [2053], "server1.topspb.tv": [21758], "nbc.com": [11237], "ca.libreoffice.org": [9471], "ethics.data.gov": [4253], "atsb.gov.au": [1440], "forum.junge-piraten.de": [8831], "www.bancamigros.ch": [10563], "*.branch.com": [2329], "moodle.collyers.ac.uk": [3496], "awein.me": [2053], "cloud.staticzacks.net": [19086], "secure.rocketnet.jp": [14171], "backoffice.mydigipass.com": [11017], "app.greenhouseci.com": [20282], "www.codementor.io": [3432], "r-forge.r-project.org": [13621], "jwpltx.com": [9752], "accountportal.uic.edu": [17517], "www.mi4urinsk.ru": [10511], "future.arte.tv": [19422], "items.alitrip.com": [858], "de.calameo.com": [2790], "reservoir.marketstudio.net": [10184], "4sprts.com": [2053], "services.sfu.ca": [14893], "openmedia.org": [12156], "drev.me": [2053], "strongvpn.com": [15787], "dave.us": [2053], "go.rucla.nl": [2053], "www.bournemouth.gov.uk": [2304], "a856-citystore.nyc.gov": [11484], "travish.co": [2053], "content.mobileasiaexpo.com": [10686], "rvls.tk": [2053], "central.terra.com.mx": [16389], "www.nealpoole.com": [11311], "windstreambusiness.com": [18648], "nimbushosting.co.uk": [11602], "cinemovies.fr": [3200], "nvg.st": [2053], "images.backstreetmerch.com": [1645], "flamehut.just-eat.ie": [20565], "tp.taobao.com": [16206], "url.tdiawo.net": [2053], "newint.org": [11489], "as.chango.com": [3056], "www.sparkasse.at": [21525], "www.illinois.edu": [17544], "fastserv.com": [5798], "superfi.eu": [2053], "cloud.mobify.com": [10681], "stats.migrosbank.ch": [10563], "assets2.getsatisfaction.com": [6738], "sehirfirsati.com": [14806], "azchampion.com": [5740], "reproducible.debian.net": [4351], "4fla.org": [2053], "www.pit-format-online.pl": [21137], "crowdin.com": [3896], "forevernew.com.au": [6149], "onlineshop.cz": [21000], "otal.co": [2053], "urlaubspiraten.de": [21875], "www.kdukvh.com": [3546], "mpc.photo": [2053], "www.blacklotus.net": [2099], "dl.bananian.org": [1680], "whatpulse.org": [18529], "hi.penguins.kr": [2053], "jpabl.us": [2053], "fmod.org": [6084], "dabs.com": [4177], "forums.udacity.com": [17392], "www.ziggo.com": [19178], "www.opera.com": [12252], "antny.link": [2053], "jucy.co.nz": [8610], "modcloth.com": [10698], "pingtest.net": [12093], "grw.li": [2053], "datenschutzzentrum.de": [8201], "static.wowhead.com": [19095], "cansecwest.com": [2848], "northsomerset.greenparty.org.uk": [7052], "www.bgamed.de": [1556], "mailtru.com": [2053], "*.acr.org": [978], "go.cordico.com": [2053], "z.tm20.net": [2053], "secure.delicious.com": [4405], "concur.com": [3615], "open-data.europa.eu": [5526], "lyonl.co": [2053], "r.ezite.ch": [2053], "abgl.ca": [2053], "campusvisit.osu.edu": [11959], "aerospace.osu.edu": [11959], "www.adamcaudill.com": [592], "alternativemeats.co.uk": [19357], "lists.ubuntu.com": [17382], "vzr.tv": [2053], "bmed.it": [2053], "community.progress.com": [13360], "medocmall.co.uk": [10368], "student.uaa.alaska.edu": [17519], "ar.opera.com": [12252], "server2.topspb.tv": [21758], "driver.tmp.gr": [2053], "360yield.com": [134], "ewen.be": [2053], "d.dreambaits.be": [2053], "hrkey.co": [2053], "colino.net": [3478], "rethink.org": [21299], "*.lsu.edu": [9786], "fbrc.co": [2053], "www.crypteron.com": [3921], "www.owncube.com": [12388], "*.fox-toolkit.org": [5702], "i.makitra.in": [2053], "bcj.ch": [20574], "ct.mindset.jp": [2053], "e2e-uat.ti.com": [16413], "mikulabeutl.tk": [2053], "static3.miniclipcdn.com": [10612], "nobilis.io": [2053], "static-bii.businessinsider.com": [2512], "blog.addthiscdn.com": [19290], "gridforums.nvidia.com": [11174], "*.btc-trade.ru": [1596], "sec.sinacloud.com": [15088], "www.trendmicro.de": [16991], "www.vtb.ru": [8604], "ticketing.southbankcentre.co.uk": [15441], "www.frivillighetshuset.no": [6339], "www.emc2.cornell.edu": [3744], "www.superteacherworksheets.com": [15878], "rem.co": [13991], "www.chatlio.com": [19688], "public.era.nih.gov": [11241], "casson.in": [2053], "hey.us": [2053], "mvb.pub": [2053], "pdna.me": [2053], "ds1.static.rtbf.be": [14244], "mrsharma.photos": [2053], "ruian.meituan.com": [10405], "mmtm.rocks": [2053], "freshmilk.tv": [6324], "joncook.co": [2053], "www.kids.greenpeace.de": [7063], "s.vts.com": [2053], "securityadvisories.paloaltonetworks.com": [12553], "www.escan.com": [18051], "nct.vc": [2053], "chieri.ci": [2053], "usc.edu": [17564], "www1.livenation.*": [9642], "smacktv.co": [2053], "www.qt-apps.org": [21006], "*.ixquick-proxy.com": [8553], "bcn.ch": [20574], "laxmag.us": [2053], "www.lenovovision.com": [9409], "hfh.ph": [2053], "iterm2.com": [20415], "smply.nyc": [2053], "www.sfconservancy.org": [15348], "www.wbginvestmentclimate.org": [8408], "hgst.com": [7189], "wkwine.us": [2053], "o.ada.is": [2053], "download.centreon.com": [3019], "888voip.com": [232], "portal.goldkeys.org": [6942], "miltentacion.es": [2053], "orenburg.rt.ru": [13703], "koe-d.com": [2053], "*.twitter.com": [17168], "nvky.co": [2053], "www.dmx-austria.at": [4123], "get-digital.nl": [6685], "blog.fefe.de": [5857], "www.tradeblock.com": [16908], "support.musixmatch.com": [10911], "kart.hk": [2053], "www.torrentshack.me": [16855], "www12.staffordbc.gov.uk": [21562], "addons.modulus.io": [10714], "www.cciio.cms.gov": [19742], "pnnr.co": [2053], "luxio.us": [2053], "l.ssddink.com": [2053], "www.grad.uw.edu": [17355], "go.umuc.edu": [2053], "gh.cm": [2053], "lemus.mx": [2053], "cvw.fr": [2053], "bluemovie.net": [2179], "*.herokuapp.com": [7471], "*.adverticum.net": [697], "www.meituan.com": [10405], "t.mech.sh": [2053], "www.netistrar.com": [11430], "linc.mit.edu": [9916], "go.riofrios.com": [2053], "bitly.vdaele.be": [2053], "www.nro.net": [11775], "sh-contrainfo.espiv.net": [20058], "api.edgecast.com": [5180], "buy.aliyun.com": [861], "links.dany94.eu": [2053], "www.casro.org": [2946], "palu.lol": [2053], "necessaryandproportionate.net": [11320], "gburg.us": [2053], "adblockbrowser.org": [19287], "www.eugene.kaspersky.com": [8958], "www.systemed.net": [16018], "lrae.it": [2053], "xc.meituan.com": [10405], "www.ksplice.com": [9177], "vlku.co": [2053], "www.118information.co.uk": [27], "www.smartos.org": [15235], "secure.silverrushstyle.com": [15045], "thorpepark.com": [16653], "a.okfn.org": [20986], "adhoc.io": [2053], "kino.web.de": [18347], "sellercentral.amazon.co.uk": [19365], "doriancolor.com": [4779], "jobindex.dk": [8746], "api.usersnap.com": [17731], "free.jkmk.net": [2053], "its.partners": [2053], "techta.sk": [2053], "nurdspace.nl": [11166], "wesgay.net": [2053], "api.go.cd": [20259], "www.secure.denic.de": [4442], "developer.doublerobotics.com": [4808], "tesco.com": [16395], "www.suspiciousumbrella.uk": [21616], "delivery.g.switchadhub.com": [15954], "kontakt.hitta.se": [20345], "c.enhance.com": [10148], "clos.io": [2053], "leet.getdigital.de": [6731], "lawumi.ch": [2053], "www.cope-it.at": [3715], "link.ssg.bg": [2053], "rmgn.co": [2053], "url.tinojr.com": [2053], "mywebsite.1and1.co.uk": [63], "wot.mail.ru": [10040], "*.nugg.ad": [11769], "intr.ac": [2053], "1.icme.su": [2053], "support.localist.com": [9702], "yosemitenews.info": [19004], "share.kadaza.nl": [2053], "stavrovski.net": [15693], "app.ntsb.gov": [11275], "api.rasp.yandex.com": [18956], "www.unblockbay.com": [21709], "cpaptalk.com": [3814], "adcash.com": [607], "auth.withsix.com": [18680], "gem.gemvara.com": [2053], "engineering.gosquared.com": [6909], "cotuca.me": [2053], "tisr.am": [2053], "mcfra.me": [2053], "esencia.link": [2053], "services.pressreader.com": [13261], "multicastmedia.com": [10887], "shanxiguan.jd.com": [8571], "vocaloid.news": [2053], "refinedproduct.fossil.energy.gov": [5355], "bukkit.org": [19610], "www.yoogiscloset.com": [22106], "gold.weicaifu.com": [21999], "embed-cdn.gettyimages.com": [6741], "watkins.edu": [18300], "*.blog.usf.edu": [17560], "gotmerchant.com": [6983], "note.io": [2053], "buyez.co": [2053], "bluehost-cdn.com": [2202], "www.riglogix.com": [1970], "drlby.com": [2053], "calmessages.berkeley.edu": [17526], "psara.abenteuerland.at": [448], "simlar.org": [15057], "myedwin.me": [2053], "*.parc.com": [12554], "resonant.org": [14043], "*.labaia.ws": [9278], "gosquared.com": [6909], "lfgo.tk": [2053], "lists.openstreetmap.org": [12177], "ethersheet.org": [5485], "r.hyt.hm": [2053], "rt-iframe.dengisend.ru": [4440], "mnlpsn.me": [2053], "sfs.wustl.edu": [18290], "www.maths.nottingham.ac.uk": [11726], "bml.io": [2053], "*.necdisplay.com": [11084], "brko.se": [2053], "openculture.com": [12203], "511tactical.com": [196], "chats.cdn.viber.com": [17956], "go.staybay.com": [2053], "a.soziotech.org": [2053], "ntk.me": [11752], "xmlsearch.yandex.kz": [18957], "jacksonvilleuniversity.worldcat.org": [18748], "ssl.safaribooksonline.com": [14459], "l.celrank.com": [2053], "members.nearlyfreespeech.net": [11313], "mtn.to": [2053], "media-azeroth.cursecdn.com": [4006], "norb.to": [2053], "beebe.in": [2053], "h8m.com": [2053], "100540.advision-adnw.jp": [19310], "remnux.org": [13647], "nycmesh.net": [20970], "cdig.tl": [2053], "maps.bolton.gov.uk": [19569], "static5.twilio.com": [17152], "yahooadvertising.tumblr.com": [17100], "ppshop.me": [2053], "trop.lv": [2053], "2015.eurobsdcon.org": [5509], "www.flixden.com": [6048], "www.gazeta.ru": [6599], "www.hipl.hnfe.vt.edu": [18031], "calendar.northeastern.edu": [11697], "www.aclu-nj.org": [297], "www.bundespublikationen.admin.ch": [21629], "tools.xsolla.com": [18896], "www.cwspod.com": [2751], "www.nva.org": [11287], "thepiratebay_org.unblocked.lol": [21771], "fusion.ddmcdn.com": [4093], "*.dmtracker.com": [4125], "www.tinyjpg.com": [16753], "akira.org": [804], "files.rsdn.org": [21334], "nnja.info": [2053], "*.pcwelt.de": [12710], "clwy.us": [2053], "i.arvm.de": [1274], "www.nsfwcorp.com": [11747], "bkflpflm.us": [2053], "chaozhou.meituan.com": [10405], "wvuga.me": [2053], "activity.hdslb.com": [20327], "pollinghelp.cit.cornell.edu": [3744], "soks.us": [2053], "netswipe.com": [8824], "silval.me": [2053], "www.techpresident.com": [16269], "unb.worldcat.org": [18748], "autodiscover.boldchat.com": [2240], "cdn.ncsu.edu": [11690], "gglam.co": [2053], "webclaim.net": [4993], "sher.at": [2053], "www.few.vu.nl": [17813], "servercircle.com": [14854], "btc4.cu.cc": [2053], "account.yunos.com": [19056], "viaja.am": [2053], "shareweb.kent.gov.uk": [9005], "www.valdhaus.co": [17824], "lists.stanford.edu": [15635], "stk.lt": [2053], "shopping.istella.it": [8529], "www.drv-bund.de": [4487], "stm.sovcombank.ru": [21516], "downloads.bitnami.com": [2062], "release.debian.org": [4353], "candhlures.com": [2865], "peak-links.de": [2053], "office.vutbr.cz": [17814], "laweval.northeastern.edu": [11697], "*.open-pc.com": [21007], "lanl.in": [2053], "www.mcvpacific.com": [8376], "projectprim.us": [2053], "www.gosuslugi.ru": [6979], "suomi.fi": [21608], "flycapture.environment-agency.gov.uk": [20047], "www.roboxchange.com": [13675], "charakter.tk": [2053], "www.helsingor.dk": [7452], "sourcing.alibaba.com": [850], "efroni.net": [2053], "0.4mat.jp": [2053], "north49.co": [2053], "s.meulie.net": [2053], "9-b.it": [2053], "aut1sm.com": [2053], "topatoco.com": [16835], "bert.ly": [2053], "openstreetmap.fr": [12245], "ivg.li": [2053], "mysql.it": [10970], "catchy.com": [2959], "changting.meituan.com": [10405], "forum.ipvanish.com": [7946], "shulan.meituan.com": [10405], "s.mobioinsider.com": [10691], "billing.console.aliyun.com": [861], "developer.ba.com": [1527], "*.solidcactushosting.com": [15368], "ruc.dk": [14204], "go.decopach.com": [2053], "www.docsend.com": [4701], "plusme.net": [13053, 13054], "go.adlinx.com": [2053], "cz-hosting.com": [2756], "engagingnetworks.net": [5364], "piviewerr.com": [2053], "www.textracer.dk": [16422], "u.nwc.co": [2053], "auth.api.sonyentertainmentnetwork.com": [15398], "recruiter.fm-world.co.uk": [20138], "point.vzp.cz": [17816], "go.myrsdca.com": [2053], "calvert.cloud": [2053], "uds.link": [2053], "mice.jd.com": [8571], "secureholidays.com": [18790], "www.reddpics.com": [13922], "www.nightdev.com": [11588], "rockett.es": [2053], "r.sys.re": [2053], "stjb.work": [2053], "www.consilium.europa.eu": [5526], "arcgis.com": [1194], "go.creinke.me": [2053], "yoursav.net": [19046], "files.slidemypics.com": [15206], "vk.me": [17782], "support.ecampus.no": [4981], "blackberry.com": [2102], "*.midasplayer.com": [9050], "timperis.co": [2053], "contact.informahealthcare.com": [8268], "d-movies.cf": [2053], "webster.re": [2053], "caltech.edu": [2815], "xiiirbmp.uniovi.es": [17479], "url.foulon.net": [2053], "agilefi.us": [2053], "smhttp-nex.nexcesscdn.net": [11550], "ravensoft.com": [13813], "secure.static.tumblr.com": [17101], "www.devzing.com": [4499], "pay.sohu.com": [15352], "on.humilit.com": [2053], "fzy.cl": [2053], "winafy.io": [2053], "s.tkc.edu": [2053], "se.norton.com": [11703], "www.magix.info": [9873], "rov.im": [2053], "rov.io": [2053], "73s.us": [2053], "proxify.com": [13405], "dis.ciple.us": [2053], "s1-world.yamedia.tw": [18948], "www.anon-ib.ru": [1079], "mail.xenproject.org": [18859], "grb.st": [2053], "tram.stanford.edu": [15635], "r22.tv": [2053], "maker.tv": [10076], "www.thevaultbar.co.uk": [16477], "tawk.to": [16233], "transenv.eu": [2053], "www.common-lisp.net": [3549], "one.ubuntu.com": [17382], "scrnch.it": [2053], "gmx.at": [6467], "www.rdns.im": [13829], "tkdk.la": [2053], "*.adnxs.com": [652], "galerievirtuelle.bve.ulaval.ca": [17515], "wb.md": [2053], "itsh.bo": [2053], "c.ck101.com": [2053], "pcoffee.co": [2053], "s0.c4tw.net": [2563], "mpuk.cc": [2053], "tomp.co": [2053], "www.ppl.cz": [12486], "slv.futbol": [2053], "s.couch-blog.de": [2053], "www.urospace.de": [17704], "news.wmtransfer.com": [18373], "ucalgarymag.ca": [17221], "advertising.microsoft.com": [10543], "whos.amung.us": [18565], "www.muckrock.com": [10873], "hashrates.com": [2053], "ebankingbutsecure.ch": [4969], "hbn.ro": [2053], "candk.co": [2053], "ercpe.de": [5442], "fmfreedom.com": [2053], "smen.co": [2053], "thespartaninstitute.com": [15475], "*.cyberphoto.se": [4035], "www.encrypt.to": [5337], "subscribe.washingtonpost.com": [18287], "www.centralreg.ru": [3016], "url.dochouse.de": [2053], "galois.com": [6528], "go.myogc.org": [2053], "forum.stratechery.com": [15764], "cache.agilebits.com": [765], "parentsweekend.stanford.edu": [15635], "gplus.today": [2053], "sog-consult.objective.co.uk": [20979], "qa.debian.org": [4353], "scandy.link": [2053], "www.docusign.com": [4717], "*.reddit.com": [13923], "support.steadfast.net": [15700], "elastictrace.com": [5244], "*.fmylife.com": [5693], "whsu.gq": [2053], "chrisegg.me": [2053], "tm319.tumblr.com": [17101], "quig.ly": [2053], "www.rockfile.eu": [21322], "developers.kongregate.com": [9128], "www.m-wm.com": [9884], "sgwa.co": [2053], "vwp.su": [18177], "gobierno.usa.gov": [17307], "assistly.com": [4472], "runso.co": [2053], "autodiscover.food.leeds.ac.uk": [17604], "wwwstg.lg.com": [9231], "sudoroom.org": [15834], "go.nsone.net": [2053], "vinnymcelwa.in": [2053], "my.netfox.ru": [11423], "augmentedracing.redbull.es": [13900], "bapth.lt": [2053], "myinteriordecorator.com": [10954], "sustainability.wustl.edu": [18290], "*.superbreak.net": [7597], "greaterbay.aclufl.org": [286], "www.csob.sk": [3966], "velleman.be": [17888], "bigbite.link": [2053], "mjh.li": [2053], "villas.com": [18008], "track.stubhub.com": [15789], "ios.tv4play.se": [16137], "www.citizensforscience.org": [3234], "jsys.io": [2053], "bev.bz": [2053], "www.ipsos-na.com": [8498], "360totalsecurity.com": [133], "deyang.meituan.com": [10405], "cs.stanford.edu": [15635], "*.usbank.com": [17314], "www.postofficeshop.co.uk": [13182], "www.latex-project.org": [9270], "js.web.de": [18347], "brashear.me": [2342], "l.ashmcg.com": [2053], "www.kotulas.com": [9146], "dps.ws.hmrc.gov.uk": [7219], "www.realvnc.com": [13860], "r.tilkema.com": [2053], "*.irish-country-cottages.co.uk": [18790], "alzres.uk": [2053], "www.lolware.net": [9732], "californiawalkintubcompany.com": [2810], "*.intuit.com": [8452], "afpics.link": [2053], "ebookne.ws": [2053], "my.jhu.edu": [16562], "safeassign.com": [14463], "biab.to": [2053], "letlife.in": [2053], "www.simonsfoundation.org": [15062], "*.merlinbreaks.co.uk": [10461], "www.elrepo.org": [5023], "jkls.co": [2053], "app.readspeaker.com": [13843], "awa.is": [2053], "es.icecat.biz": [8059], "s.gavinr.com": [2053], "marketplace.visualstudio.com": [18078], "www.liftware.com": [9501], "www.piraten.lu": [21133], "hbnk.co": [2053], "ld-st11.itunes.apple.com": [1160], "m1nd.se": [2053], "haimai.amazon.cn": [19363], "feedback.minecraft.net": [10604], "surprisinglyfree.com": [15910], "www.kids.usa.gov": [17307], "www3.olx.com.br": [11831], "forums.plex.tv": [13036], "hosting90.cz": [7671], "egotasticallstars.com": [5216], "www.fernwaerme-partner.at": [18582], "mediatemple.net": [10331], "www.1in3campaign.org": [12052], "mrt.ovh": [2053], "skb-golf.com": [2053], "*.reevoo.com": [13947], "ut00.xhcdn.com": [18815], "www.hr.od.nih.gov": [11241], "antergos.com": [1102], "www.drugs-forum.com": [4873], "ubmaviation.com": [17204], "static.ycharts.com": [18917], "jlow.co": [2053], "jonandjess.me": [2053], "img.cnblogs.com": [19743], "cloutoday.nl": [3336], "static.spiceworks.com": [15517], "www.vue.com": [12718], "ablelend.co": [2053], "blog.safariflow.com": [18730], "ys.meituan.com": [10405], "privatepaste.com": [13329], "dawgs.us": [2053], "go.jbkc85.com": [2053], "gg.gov.au": [7001], "dennogumi.org": [19893], "whmag.co": [2053], "*.store.cox.com": [3808], "skyblu.es": [2053], "pirateproxybay.tech": [21709], "www.risiinfo.com": [13666], "www.bb.isy.liu.se": [9238], "s.t-ya.com": [2053], "adspeed.net": [580], "xml.affiliate.rakuten.co.jp": [13768], "rare.us": [13798], "cdn.exm.nr": [5588], "rmky.co": [2053], "stripe.com": [15781], "raidio.us": [2053], "www.i2coalition.com": [7803], "si.wp.pl": [18217], "*.evotronix.com": [5570], "pa.drweb.com": [4879], "protu.fi": [13377], "cdn.ch2.stg.comcast.com": [3525], "signup.duo.com": [4900], "wiki.appnexus.com": [1148], "www.fsa.go.jp": [5709], "2ip.ru": [113], "res.mmstat.com": [10666], "contz.co": [2053], "www.imgix.com": [20438], "hyts.fr": [2053], "assist.zoho.com": [19202], "cdn.images.dailystar.co.uk": [4189], "prdcts.co": [2053], "accounts.icontem.com": [8068], "www.fsfla.org": [5712], "quackquackgo.nl": [13550], "cuf.link": [2053], "pl.squat.net": [21549], "piwik.gunsamerica.com": [20297], "netwheels.fi": [20894], "tekno.asia": [2053], "clky.me": [2053], "contactus.netflix.com": [11421], "www.flipboard.com": [6041], "www.asmc.de": [1304], "byu.edu": [1628], "www.emergingthreats.net": [5308], "cxmy.biz": [2053], "nxr.co": [2053], "q.stripe.com": [15781], "rpu.li": [2053], "zz.meituan.com": [10405], "www.usersnap.com": [17731], "nxr.cz": [2053], "www.mivolunteers.org": [18130], "auto.kazanfirst.ru": [20580], "hr.williams.edu": [18616], "d4r.pw": [2053], "clck.ru": [19725], "assets.realclearpolitics.com": [13856], "srv1.openwireless.org": [12227], "okgo.nu": [2053], "dlhs-umi.ch": [2053], "www.headstrong.de": [7392], "*.sestatic.fi": [14344], "go.suneel.in": [2053], "ldwg.co": [2053], "subs.yandex.com": [18956], "espacejeux.com": [5465], "nathanwentworth.tumblr.com": [17100], "gotvape.net": [6981], "spotplanet.org": [15549], "blogs.cpanel.com": [2708], "go.csspod.com": [2053], "freedom-to-connect.net": [6284], "kev.to": [2053], "piratebay.inbypass.xyz": [21771], "shs.ucsd.edu": [17216], "mailtracker.livingsocial.com": [9679], "holes.in": [2053], "dl.web.de": [18347], "washn.at": [2053], "msr.lc": [2053], "www.myuofmhealth.org": [17665], "www.sentinelone.com": [14832], "4corne.rs": [2053], "www.investor.gov": [8469], "*.vba.va.gov": [17297], "cdnph.upi.com": [17283], "l.vanloo.biz": [2053], "sync-dsp.ad-m.asia": [19284], "*.employment.gov.au": [4449], "*.vk.me": [17782], "mortgages.hsbc.co.uk": [20375], "eventm.ag": [2053], "rehber.yandex.com.tr": [18954], "dontswe.at": [2053], "dfmd.co": [2053], "company.yandex.com": [18956], "yjtag.yahoo.co.jp": [18944], "justitie.nl": [11324], "llvm.org": [9244], "addons.alfresco.com": [843], "websharks-inc.com": [18381], "foursquare.com": [6200], "ts.knet.cn": [8892], "knot-dns.cz": [9099], "lrb.co.uk": [9745], "leightlab.engineering.osu.edu": [11959], "support.countermail.com": [3773], "hkd.co": [2053], "s5.qhimg.com": [13531], "s.be-ing.co.jp": [2053], "cdn.slant.co": [21474], "s3.thejournal.ie": [16490], "e4s.me": [2053], "on.james.ph": [2053], "www.europa-apotheek.com": [5524], "secure-static-cdn2.ustream.tv": [17743], "media.crikey.com.au": [3866], "ucalgary.ca": [17220], "go2jo.us": [2053], "naturalskinshop.com": [11292], "smax.co": [2053], "deinde.al": [2053], "camaya.net": [2822], "erecruit.upu.int": [17286], "wegotwax.com": [18317], "changbaishan.jd.com": [8571], "apply.creation.co.uk": [3845], "www.valoancaptain.com": [17759], "link.b-mind.pl": [2053], "phyx.es": [2053], "fws.co": [2053], "www.lektorium.tv": [9400], "militarysuper.gov.au": [10582], "sct.io": [2053], "bizz-aps.com": [2053], "rev.works": [2053], "anonguide.cyberguerrilla.org": [4033], "ai.ai": [1466], "t-b.co": [2053], "bia.homeoffice.gov.uk": [20355], "zoosk.com": [19225], "foursignposts.com": [20152], "earthlink.net": [5106], "www.pagekite.net": [12534], "dein.dk": [4396], "url.tp321.de": [2053], "dmar.co": [2053], "sun-queen.migros.ch": [10566], "cal.ms": [2053], "popflx.com": [2053], "forumimages.somethingawful.com": [15379], "beta.kccmediahub.net": [8867], "tm.com.my": [16341], "wppusher.link": [2053], "fazedores.catracalivre.com.br": [2967], "www.static-immobilienscout24.de": [8153], "bol.de": [16433], "www.nutricentre.com": [11781], "fangamer.net": [5767], "enjoy.1688.com": [44], "theam.cn": [2053], "bhb.rocks": [2053], "ada.edu.au": [1424], "szl.ms": [2053], "magix.info": [9873], "*.hegerys.com": [7420], "distrowatch.com": [4663], "karl.oxfam.org.uk": [12393], "bluez.org": [2191], "psychology.plymouth.ac.uk": [13055], "g.krbn.co": [2053], "casaameri.ca": [2053], "www.curesec.com": [3999], "www.jmdekker.it": [20542], "outliv.me": [2053], "buchhaus.ch": [19603], "*.spotxchange.com": [15546], "nethserver.org": [20892], "traffic.gemius.com": [6637], "ip2location.com": [7933], "kushner.co": [2053], "amplifi.re": [2053], "alx.re": [2053], "f12.link": [2053], "msc.co": [2053], "furets.co": [2053], "bedrockbluenext.msn.com": [9961], "hnfr.it": [2053], "go.ffntech.com": [2053], "castle-technology.co.uk": [2950], "track.hubspot.com": [7739], "es.support.tomtom.com": [16812], "media.vouchercloud.com": [21951], "en.support.guildwars2.com": [14115], "www1.hgst.com": [7189], "www.ibm.biz": [20417], "broward.aclufl.org": [286], "tbx.link": [2053], "ads.paper.li": [12584], "*.geotrust.net": [6661], "shuozhou.meituan.com": [10405], "account.mackeeper.com": [9984], "b166er.tk": [2053], "purdue.syncplicity.com": [15984], "www.flixbus.fr": [6047], "tweetnacl.cr.yp.to": [3817], "osucentralreceiving.osu.edu": [11959], "ln.ebisu.org": [2053], "lists.desy.de": [4479], "alternalabs.com": [920], "stonypla.in": [2053], "www.fundersclub.com": [6378], "a.chromebook.me": [2053], "verisignlabs.com": [17916], "continuity.georgetown.edu": [6668], "shared.opendns.com": [12130], "caimao.com": [2778], "callig.me": [2053], "weibo.cn": [15090], "facebook.com": [5733], "p1.xyx.hao123img.com": [20313], "purb.cl": [2053], "digifense.com": [4560], "my.supplychain.nhs.uk": [11102], "tik8.co": [2053], "login.usainteanne.ca": [21877], "parkrun.org.uk": [12614], "www.ya.ru": [18930], "archr.gp": [2053], "cosmicsky.media": [2053], "snd.bz": [2053], "acsten.jd.com": [8570], "carmen.osu.edu": [11959], "ymail.com": [18942], "forms.dover.gov.uk": [4814], "wamutd.uk": [2053], "nie.mn": [2053], "40chanc.es": [2053], "my.bigcartel.com": [1903], "www.wienernetze.at": [18582], "w.ronsdorf.info": [2053], "partners.cloudbees.com": [19736], "duckduckhack.com": [19966], "lilacrn.us": [2053], "secure02.kidshealth.org": [9036], "greerstyr.es": [2053], "twu.tw": [2053], "www.multisoft.com": [10885], "www.undeb.bangor.ac.uk": [1686], "faithwork.us": [2053], "wwhisk.co": [2053], "www.kikatek.com": [9038], "ebuzzing.com": [5145], "zhn.io": [2053], "altinget.dk": [932], "img02.bizrate-images.com": [2086], "givedirect.org": [6809], "ftnt.net": [2053], "sanomakauppa.fi": [21370], "delivery.ads-creativesyndicator.com": [3851], "sjha.re": [2053], "*.usfsp.edu": [17561], "media.beabloo.com": [19508], "secure-cdn.maxcdn.com": [10256], "cleanenergyfinancecorp.com.au": [3284], "l.dewet.org": [2053], "i.icetravel.xyz": [2053], "www.btctrader.com": [1604], "blogs.manageengine.jp": [10102], "shop.10r.hu": [2053], "www.netpol.org": [11439], "hush.technology": [7776], "tchibo.cz": [16240], "josefsson.org": [8780], "www.evolmed.com": [5571], "agima.ru": [19324], "erinrealtor.com": [2053], "blacktonic.com": [2093], "wera.so": [2053], "tchibo.ch": [16240], "rbfi.io": [21265], "vault.cca.edu": [17868], "research-explorer.dfg.de": [4492], "www.relcom.host": [13987], "www.theedgeclimbing.com": [16537], "commerce.washingtonpost.com": [18287], "*.kununu.com": [9190], "beta.drweb.com": [4879], "get.jlx.cc": [2053], "partnerzy.ceneo.pl": [2997], "bugzilla.quagga.net": [13555], "17s.la": [2053], "zadarastorage.com": [19087], "sovfor.com": [2053], "go.cloudwp.pro": [2053], "b2bservices.dell.com": [4413], "merton.gov.uk": [10464], "search.earthdata.nasa.gov": [11058], "www.drweb.com": [4879], "fs20.formsite.com": [20148], "ccourl.com": [2053], "sucuri.net": [15829], "i4.buimg.com": [16704], "connect.liveramp.com": [9658], "tk.tapakita.com": [2053], "jump.ovh": [2053], "magich.at": [2053], "pdoc.es": [2053], "life.baifubao.com": [1664], "flyfi.sh": [2053], "*.startssl.org": [15660], "cw.org.za": [2053], "1971.ga": [2053], "infusionsoft.com": [8286], "yourb.us": [2053], "freifunk-ansbach.de": [6308], "borgerservice.kk.dk": [8883], "*.energymadeeasy.gov.au": [5356], "i.computer-bild.de": [19767], "mah.xyz": [2053], "ecn.t3.tiles.virtualearth.net": [18046], "moodle.uni-mainz.de": [17611], "id.chef.io": [3115], "datacoup.com": [4257], "sin.thecthulhu.com": [16600], "goaw.pl": [2053], "www.technologyreview.com": [16297], "hcv.link": [2053], "pwilson720.us": [2053], "s.yjtag.jp": [18921], "armyoutlet.de": [1242], "static-ssl.exoclick.com": [5608], "di7.pl": [2053], "payments.ebay.*": [4973], "www.kent.ac.uk": [17603], "tempolibero.ffs.ch": [15946], "buddytv.us": [2053], "www.ok.ru": [11968], "ovp.qbrick.com": [13529], "s-hope.co": [2053], "redplum.com": [13897], "s.smyplc.me": [2053], "oneandzero.uk": [2053], "pma.wedos.net": [18197], "fluency.xyz": [2053], "vgocom.com": [17777], "www.lezlovevideo.com": [9440], "gfi.com": [6441], "cs.coresecurity.com": [3736], "fantasycricket.telegraph.co.uk": [16340], "sshirt.co": [2053], "docs.recurly.com": [13887], "masterplanning.georgetown.edu": [6668], "oig.ssa.gov": [21552], "lnk2.biz": [2053], "hsbcnet.com": [20386], "t.5bs.org": [2053], "fwc.gov.au": [5745], "adsl.by": [19302], "365hbr.org": [2053], "*.vueling.com": [18166], "irkutsk.rt.ru": [13703], "www.shapeshift.io": [14905], "www.forex-metal.com": [6150], "community.f-secure.com": [5654], "url.jobbied.com": [2053], "www.fiksu.com": [5902], "jsea.rs": [2053], "oodaloop.com": [11851], "shann.la": [2053], "european-privacy-seal.eu": [5513], "sql9.endora.cz": [5349], "t.hrane.nu": [2053], "www.yworks.com": [22091], "www.tiscali.nl": [16356], "*.worldofwarplanes.eu": [18762], "clk.specificclick.net": [15493], "aureol.es": [2053], "ocav.eu": [2053], "www.rednerd.com": [13931], "img3.douban.com": [4802], "students.law.yale.edu": [18946], "api.unity.com": [17506], "hashicorp.com": [7359], "koz.io": [9151], "l.drinkbird.com": [2053], "www.haritalar.yandex.com.tr": [18954], "sudeep.biz": [2053], "portal.victorops.com": [17963], "www.tvnz.co.nz": [16141], "i6.lbp.me": [20644], "blockchainbdgpzk.onion": [2144], "www.vendercom.com": [17895], "citysearch.com": [3256], "cst.land": [2053], "ivp.im": [2053], "d.p-td.com": [505], "ads.q1media.com": [13504], "gb1.co": [2053], "bitcasa.com": [19539], "*.sublimegit.net": [15815], "pl.libreoffice.org": [9471], "www.bhphotovideo.com": [19527], "maykel.co": [2053], "cart.1688.com": [44], "u.stoneip.info": [2053], "mmwebfonts.comquas.com": [19769], "fborn.co": [2053], "unicorntal.es": [2053], "fry.workaround.org": [18742], "on.tesire.com": [2053], "*.fmworld.net": [6362], "www.pirateproxy.press": [21217], "*.brandembassy.com": [2332], "oti.link": [2053], "e.ronaldej.id": [2053], "awg.me": [2053], "app.envie.sg": [2053], "mstr.fr": [2053], "www.codeaurora.org": [3407], "www.lkml.org": [9241], "*.chromedata.com": [3176], "pcft.co": [2053], "youngrewiredstate.org": [19025], "skateho.us": [2053], "wmde.org": [2053], "pximg.net": [12960], "allegra.me": [2053], "tyrus.java.net": [8673], "www.npddecisionkey.com": [4364], "oncvt.com": [2053], "www.sig-io.nl": [15018], "www.hubpeople.com": [20393], "*.zerve.com": [19164], "xinhua.meituan.com": [10405], "latdsc.org": [2053], "www.orange.sk": [12289], "tp.srgssr.ch": [21550], "m.ph-cdn.com": [10354], "intermundomedia.com": [8402], "hyperlu.sh": [2053], "opera.yandex.by": [18953], "growing.aliloan.com": [19344], "blog.cloudflare.com": [3344], "www.piratenpartei-bayern.de": [12936], "issun.cc": [2053], "gedclai.re": [2053], "www.umiacs.umd.edu": [17549], "cdn.punterlink.co.uk": [13458], "myfolder.net": [11019], "eprints.nottingham.ac.uk": [11725], "on.cameo.tv": [2053], "pro-xy.com": [8973], "www.psyc.sfu.ca": [14893], "websocket.org": [18385], "data.cmcore.com": [3731], "int.anon-ib.ru": [1079], "*.ingdirect.com": [7915], "my.alfresco.com": [843], "tbtej.com": [2053], "prblm.in": [2053], "hmpl.sh": [2053], "liberiangeek.net": [9457], "ownedcore.com": [12389], "1and1.com": [61], "fw.adsafeprotected.com": [577], "alternc.org": [919], "warble.us": [2053], "wikinvest.com": [18596], "nakedcitizens.eu": [11202], "acluidaho.org": [16439], "identity.jeded.com": [20533], "plainenglish.co.uk": [21142], "senat.us": [2053], "calmail.berkeley.edu": [17526], "libraries.ucsd.edu": [17216], "samc.me": [2053], "dfp.link": [2053], "gtd.alicdn.com": [846], "www.londonstockexchange.com": [9740], "agnj.co": [2053], "l.fade.ovh": [2053], "www.securenet.com": [14737], "admin.sns.gov.uk": [21493], "www.copyright-watch.org": [3724], "eritrea.usembassy.gov": [21879], "o.basi.co": [2053], "st.developer.here.com": [7465], "fto4u.click": [2053], "modxcloud.com": [9938], "l.johnson.ink": [2053], "advocate-europe.eu": [708], "whisper.sh": [18545], "t2c.co": [2053], "atlanta.webconsole.linode.com": [9547], "go.c01.me": [2053], "vnews34.ru": [21934], "na2.www.gartner.com": [6580], "tcll.co": [2053], "americanfuturefund.com": [981], "www.comstern.de": [3521], "kslsydnorth.co": [2053], "de.aldi.lu": [338], "sgk.me": [2053], "n8h.me": [2053], "si.dwistroi.com": [2053], "api.service.hmrc.gov.uk": [7219], "i.mosankuna.com": [2053], "dshd.tk": [2053], "developers.thomsonreuters.com": [16650], "hallchen.us": [2053], "www.ouw.co.uk": [12184], "ronhjr.me": [2053], "*.chinadialogue.net": [3143], "ad.ghfusion.com": [6539], "www.krautchan.net": [9156], "tch.vc": [2053], "cferraro.us": [2053], "www.froscon.org": [6210], "strongloop.com": [15786], "resellers.basekit.com": [19493], "gfx8.hotmail.com": [7704], "*.smartbuy.hdfcbank.com": [7389], "calendar.rakuten.co.jp": [13767], "ricardo.ch": [14100], "uber.io": [2053], "jchartk.me": [2053], "www.ubuntustudio.org": [17388], "*.imgur.com": [8149], "www.intgovforum.org": [8349], "executive.mit.edu": [9914], "www.aoptix.com": [366], "data.stubhub.com": [15789], "ocdway.com": [2053], "s1.jrnl.ie": [20554], "securewww.esat.kuleuven.be": [8969], "www.websharks-inc.com": [18381], "horstaandemaas.nl": [11324], "hidi.me": [2053], "exhaleprovoice.org": [5600], "quickhash.com": [13589], "jeez.org": [2053], "www.sspl.org": [21554], "images.miretail.com": [10633], "manta.com": [10124], "ihc.fyi": [2053], "vfb.cc": [2053], "wbaer.io": [2053], "hosko.me": [2053], "eupt.unizar.es": [17643], "sivers.org": [15135], "www.pkimber.net": [12509], "*.unibe.ch": [17525], "my.textmagic.com": [16418], "admission.com": [16690], "s.alialien.de": [2053], "static.parastorage.com": [12601], "dpure.co": [2053], "sc4.maps.live.com": [9644], "x.zoca.co": [2053], "redaz.in": [2053], "www.catracalivre.com.br": [2967], "www.directory.umd.edu": [17549], "*.kingsroadmerch.com": [9053], "debug.fastly.com": [5803], "www.marcoslater.com": [20752], "lk.admsys.email": [2053], "www.1btcxe.com": [52], "mksp.io": [2053], "fth.st": [2053], "cefas.co.uk": [2988], "berufsmatura.so.ch": [21629], "*.cobaltmania.com": [3401], "hro.io": [2053], "solar-energy-installers.com": [15355], "adscendmedia.com": [667], "www.consumidor.gov": [3663], "translatewiki.net": [16947], "vbulletin.com": [17763], "www.commandfive.com": [3538], "dk.norton.com": [11703], "obi.ch": [20977], "www.kimsufi.com": [9045], "*.linuxdaily.com": [21007], "www.ingentaconnect.com": [8289], "www.kinfolk.com": [9048, 9049], "u-ww.co": [2053], "aidma.104.com.tw": [18], "blkbld.uk": [2053], "obi.cz": [20977], "player.letvcdn.com": [20667], "cruzcrew.com": [2053], "leeds.greenparty.org.uk": [7052], "instart0.flixster.com": [6049], "www.storminternet.co.uk": [15753], "hackaday.io": [7270], "i.didz.is": [2053], "digg.com": [4551], "ssl2.ovh.net": [12378], "embed.theguardian.com": [16554], "www.jogorama.com.br": [8758], "apo.gs": [2053], "www.leahscape.com": [9363], "mail.antok.co": [1111], "www.districtsentinel.com": [4662], "railsschool.org": [13765], "university.alfresco.com": [843], "enla.dict.cc": [4536], "association.typo3.org": [16149], "*.mpiweb.org": [9946], "englandconsult.forestry.gov.uk": [20144], "tgablog.com": [2053], "c4.aztravel.xyz": [2053], "nomadicmatt.us": [2053], "tracker.bro.org": [2400], "sprmag.co": [2053], "*.viedemerde.fr": [1867], "marketingco.de": [2053], "transitlab.osu.edu": [11959], "*.cbssportsnetwork.com": [2583], "p.twimg.com": [17153], "m.hi-tech.mail.ru": [10040], "vspr.me": [2053], "*.austinfitmagazine.com": [1414], "v.hitechnews.us": [2053], "crypt.ncl.ac.uk": [11073], "www3.dudley.gov.uk": [4891], "www.giveto.osu.edu": [11959], "go.vpg.io": [2053], "dataexchangewales.org.uk": [19856], "nexternal.com": [11559], "www.padlet.com": [12529], "orbital-apps.com": [12294], "hipiti.co": [2053], "pstn.it": [2053], "pwrdrs.me": [2053], "sk.boardgamearena.com": [2219], "vitals.lifehacker.com": [9492], "computing-templates.web.cern.ch": [2632], "ycbi.org": [22095], "tyea.gr": [2053], "devel.unikernel.org": [17473], "enjin.com": [5379], "*.cscglobal.com": [3751], "lists.openinfosecfoundation.org": [12213], "bmap.me": [2053], "livenation.co.*": [9642], "www.fau.de": [17597], "fansbr.us": [2053], "consult.charnwood.gov.uk": [3074], "visualisingadvocacy.org": [18079], "ig.amdrd.com": [2053], "www.gotmerchant.com": [6983], "wmktg.co": [2053], "warwickdc.gov.uk": [21979], "k.wil.la": [2053], "lib.search.ch": [14684], "anchor.com.au": [1032], "mrchr.is": [2053], "be.gbot.me": [6934], "gkm2.co": [2053], "hkti.es": [2053], "portal.scot.nhs.uk": [11102], "foodl.org": [6121], "*.suntimes.com": [15850], "evbrow.se": [2053], "new-webmail.kth.se": [8905], "tnyvsky.me": [2053], "www.speakpipe.com": [15482], "secure14.pipni.cz": [12460], "cdn.adultwork.com": [685], "x.kamildada.com": [2053], "cdn.traceregister.com": [16902], "*.growhq.com": [7108], "marvel.com": [10201, 10202], "cream.cf": [2053], "ilecon.ru": [2053], "go.spotapps.co": [2053], "images.scribblelive.com": [14654], "www.datacenter.illinois.edu": [17544], "pravdatyt.com": [21188], "matrixgroup.net": [10243], "dombank.dengisend.ru": [4440], "hxtrack.holidayextras.co.uk": [7595], "pixel.fsg.ulaval.ca": [17515], "project-syndicate.org": [13364], "www.mijnwestlandutrecht.nl": [18513], "tri.mn": [2053], "cdn.liginc.co.jp": [20686], "ainsdr.co": [2053], "ssa.gov": [21552], "blocktogether.org": [2143], "tmcomponents.travelmarket.com": [16972], "r18.maxon.net": [10263], "accc.gov.au": [1422], "oas.five.tv": [6007], "blog.bugcrowd.com": [2463], "rutube.ru": [21347], "lgtr.es": [2053], "krg.bz": [2053], "www.sceneaccess.eu": [14583], "sdpowersre.com": [2053], "hazro.com": [20321], "www.tolaris.com": [16810], "sheg.stanford.edu": [15635], "walt.im": [2053], "customf.it": [2053], "www.senate.gov.ph": [14819], "docs.pushbullet.com": [13480], "spply.me": [2053], "aprl.in": [2053], "kb.askmonty.org": [1297], "web.kn.vutbr.cz": [17814], "oroboro.com": [21030], "widgetpay1.beeline.ru": [1801], "www.backstreet-merch.com": [1645], "update6.dedyn.io": [19879], "devel.root.cz": [14199], "www.civicrm.org": [3259], "schaffner.org": [14587], "linshuguan.jd.com": [8571], "www.maemo-apps.org": [21006], "c-bu.me": [2053], "shiana.me": [2053], "www.kinopoisk.ru": [20601], "www.edgesnapbacks.com": [5181], "clicks.beap.ad.yieldmanager.net": [14114], "communitylife.cabinetoffice.gov.uk": [2760], "wwwizzards.com": [2053], "www.essaysreasy.net": [5469], "proj.at": [2053], "www.xsens.com": [18894], "vlissingen.nl": [11324], "1.han.solar": [2053], "lundi.am": [9836], "store.daringfireball.net": [4225], "*.mietek.io": [10559], "b2b.rakuten.co.jp": [13767], "ok.ru": [11968], "ngonoo.co": [2053], "wi28.it": [2053], "ubx.io": [2053], "eu1.factorio.com": [20091], "patd.me": [2053], "payrisk.jd.com": [8571], "community.1and1.co.uk": [63], "link.balao.cz": [2053], "www.depositprotection.com": [4455], "www.cottagesdirect.co.uk": [18790], "csrchecker.wosign.com": [18693], "www.e-learning.uni-mainz.de": [17611], "avenue.argus.ch": [1225], "billiongraves.com": [1937], "www2.ual.es": [17361], "ocf.berkeley.edu": [17526], "cri.gs": [2053], "survey.constantcontact.com": [3657], "thght.works": [2053], "uscurrency.gov": [17335], "on.nutricap.hk": [2053], "wadds.co": [2053], "b2bmediaportal.com": [1525], "www.kevag-telekom.de": [9016], "webhostingtalk.com": [18336], "www.tripbod.com": [17020], "ispgids.com": [7977], "omnitec.com": [11999], "www.upv.cz": [17287], "sopurr.co": [2053], "serverapi.arcgisonline.com": [1195], "f2.drweb.com": [4879], "help.pinterest.com": [12914], "fmweb.fm.uic.edu": [17517], "www.upworthy.com": [17693], "ringcentral.com": [14124], "sp.sony-europe.com": [15390], "pqcrypto.org": [12488], "bundesverfassungsgericht.de": [2491], "vstk.co": [2053], "avinoy.com": [2053], "*.pg.com": [13349], "*.everesttech.net": [5552], "fernuni-hagen.de": [5870], "soph.cc": [2053], "www.ebroking.hsbc.com.hk": [20380], "dlrpwr.net": [2053], "jobs.apple.com": [1160], "oyoony.at": [21057], "nikole.us": [2053], "sayar.at": [2053], "g.jak.cx": [2053], "s57.cnzz.com": [3391], "bugs.ga": [2053], "maxim-ic.com": [10260], "cdzr.ly": [2053], "tele.sh": [2053], "rufusgtabinaries.bnymellon.com": [19566], "terreactive.ch": [16391], "www.nxtforum.org": [11791], "cliqc.me": [2053], "crm-metrix.com": [2715], "www.socialtyzetracking.com": [15323], "www.pizza.de": [12965], "deepbit.net": [4379], "asq.solar": [2053], "2x2.ph": [2053], "www.freemovement.org.uk": [6262], "pdpnt.uk": [2053], "ln-k.me": [2053], "*.workable.com": [18741], "www.ebankingbutsecure.ch": [4969], "linear.enterprises": [20689], "otm.georgetown.edu": [6668], "bit.agme.com.mx": [2053], "snac.worldcat.org": [18748], "blog.suitabletech.com": [18730], "www.petsymposium.org": [12445], "bfd.me": [2053], "sae.sina.com.cn": [15086], "1.mov.nz": [2053], "radiotoday.co": [2053], "postepay.poste.it": [13192], "mp.alipay.com": [857], "short.wedo.com": [2053], "ee.stanford.edu": [15635], "www.cbb.dk": [2972], "wiki.nuug.no": [11168], "spag.es": [2053], "onoff.re": [2053], "marvelj.jp": [2053], "frmstr.co": [2053], "*.fiercemarkets.com": [5891], "www.areweslimyet.com": [1215], "d.conanne.ws": [2053], "nurs.in": [2053], "aris.bz": [2053], "jabberd.org": [8626], "www.circules.com": [7410], "timex.com": [16738], "visa.qiwi.com": [13533], "sheffield.gov.uk": [14939], "att.com": [404], "weis.ly": [2053], "freesim.vodafone.co.uk": [18106], "b1z.io": [2053], "www.mi5.gov.uk": [9907], "images.google.co.*": [6968], "css.mapreporter.navteq.com": [11062], "www.hosteuropegroup.com": [7646], "truekey.mcafee.com": [10282], "packages.baruwa.com": [19490], "stadium.ru": [21560], "www.stablelib.com": [15610], "go.taipei.io": [2053], "morrismc.se": [2053], "wirral.gov.uk": [18672], "platform.gigya.com": [6779], "be.icecat.biz": [8059], "plays.tv": [13030], "4freelance.net": [2053], "lacrossetechnology.com": [9273], "*.pathofexile.com": [12664], "www.bricklink.com": [2367], "www.stablehost.com": [15609], "shutter.ly": [2053], "bingo.williamhill.com": [18614], "exacom.sk": [5583], "electrum.org": [5257], "www.arbeitsagentur.de": [1192], "bretagne-web.eu": [2359], "kloust.in": [2053], "impulsedriven.com": [8171], "jtlebi.fr": [8809], "www.feedburner.com": [5849], "sdel.in": [2053], "www.titanpad.com": [16771], "timpn.uk": [2053], "labs.isecpartners.com": [7970], "bats.buzz": [2053], "disq.us": [4656], "ligatus.nl": [9502], "media.privacyinternational.org": [13309], "pornhub.com": [13153], "www.mousejack.com": [20832], "portal.oxfordshire.gov.uk": [21056], "providesupport.com": [13401], "skr.cm": [2053], "kinja.com": [9058], "kikf.link": [2053], "www.teachers.sky.com": [15170], "go.lopez.link": [2053], "dev.apigee.com": [1132], "www.pauldreik.se": [12672], "t.sebs.ch": [2053], "truthdig.com": [17078], "link.atsamp.de": [2053], "prettylittlething.com": [13269], "player.cdn.tv1.eu": [16134], "media.sailthru.com": [14480], "j9t.co": [2053], "heyspc.mn": [2053], "cf.bluehost-cdn.com": [2202], "ilovebluesea.com": [8038], "roundcube.utsc.utoronto.ca": [17629], "mustafic.co": [2053], "cotn.in": [2053], "kort.noijens.eu": [2053], "secure-usb.co.uk": [21399], "www.chlomo.org": [3153], "i.hermansson.io": [2053], "cvi.to": [2053], "wattu.se": [2053], "www.7search.com": [225], "lee.gl": [2053], "url.noeca.org": [2053], "apps.code.sfu.ca": [14893], "www.petfinder.com": [12808], "www.atname.ru": [400], "linglink.de": [2053], "uk.wwte4.com": [18232], "jdcb.me": [2053], "z.pracuj.pl": [2053], "www.h2hc.com.br": [7173], "calderdale.gov.uk": [2793], "ed.geca.se": [2053], "jakarta.usembassy.gov": [21879], "luckyph.one": [2053], "www.cykloteket.se": [4054], "fifedirect.org.uk": [5893], "www.dds2dds.com": [4094], "defensoruniversitario.unizar.es": [17643], "www.csis.dk": [2731], "streetlife.com": [21590], "rea.anhc.mx": [2053], "blog.bit9.com": [1974], "dundeecity.gov.uk": [4897], "go.nazarov.com": [2053], "www.box-look.org": [21006], "me.effectivemeasure.net": [5208], "production-assets.bundle.media": [2492], "noble.tzar.pro": [2053], "docsv2.dwolla.com": [4913], "anketa.alfabank.ru": [842], "snapshots.pfsense.org": [12819], "olum.co": [2053], "sciav.fr": [2053], "wwwcf2.nlm.nih.gov": [11241], "go.ergonea.com": [2053], "byri.ch": [2053], "www.ricardoshops.ch": [14101], "secure.entrust.com": [5405], "jp.pornworms.com": [13155], "shenka.95516.com": [240], "noudaily.com": [2053], "a.akhbarak.net": [2053], "yuri-ism.net": [19059], "jitbit.com": [8728], "js-hx.newjobs.com": [11510], "booth.social": [2053], "instart1.flixster.com": [6049], "vmgiving.co": [2053], "ctt.pt": [3978], "whatif.xkcd.com": [22085], "conny.co": [2053], "boticar.io": [2053], "nestle.de": [11360], "m.wolverhampton.gov.uk": [18705], "efficios.com": [5210], "trustico.com": [17069], "cdn.steamcommunity.com": [15705], "leao.in": [2053], "hvlink.de": [2053], "www.tineye.com": [16739], "novosibirsk.beeline.ru": [1801], "www.filefactory.com": [5904], "cdn.tinymce.com": [21741], "www.npjhub.org": [8465], "becoquin.com": [1772], "itar.iana.org": [7813], "stats.openstreetmap.org": [12177], "sav.mn": [2053], "mathjax.org": [20757], "www.uef.fi": [17536], "corbanworks.com": [3726], "givingcomfort.org": [6812], "static.mixtapeleak.com": [10659], "login.f5.com": [5659], "*.getglue.com": [6697], "tinymce.com": [21741], "gameshiz.com": [2053], "www.veuwer.com": [17948], "kluchi.pro": [2053], "www.mfi.re": [9905], "etext.illinois.edu": [17544], "pawst.ru": [2053], "toggl.com": [16803], "nrgi.se": [2053], "notice.taobao.com": [16206], "hfgl.org": [2053], "bitex.la": [2043], "isale.jd.com": [8571], "advisory.juniper.net": [8834], "www.kaprica.com": [20577], "www17.georgetown.edu": [6668], "www.quran-online.ru": [21245], "selfserve.broxtowe.gov.uk": [19598], "plain.wf": [2053], "www.odir.org": [12205], "wwwmail.urz.uni-heidelberg.de": [17459], "www-mail.magbio.ens.fr": [5029], "ep3i.net": [2053], "ddst.io": [2053], "forums.serversforhackers.com": [14862], "link.flopper.dk": [2053], "app.cvent.com": [4020], "validator.prestashop.com": [13265], "disneyj.jp": [2053], "ptau.li": [2053], "skyprogrammeinformation.co.uk": [15176], "ronikantor.me": [2053], "wiebetech.com": [18581], "status.runabove.com": [14271], "apsjobs.gov.au": [375], "i.jeded.com": [20533], "campaigns.paypal.com": [12678], "museum.automattic.com": [1465], "event.sherpa.be": [2053], "www.fdic.gov": [5827], "*.yelp.ie": [18979], "b.natrs.net": [2053], "rgb.link": [2053], "theproxybay.website": [21709], "www.dominustemporis.com": [4765], "feedback.xbox.com": [18850], "enygf.eu": [5530], "be.gogobot.com": [6934], "*.yelp.it": [18979], "blogoverflow.com": [15611], "vgc.tips": [2053], "member.accesstrade.net": [494], "cumbria.gov.uk": [19838], "hami.meituan.com": [10405], "sdprosocial.com": [2053], "*.github.io": [6800], "portal.upo.es": [17683], "media3.woolworths.com.au": [18723], "touch.livingsocial.com": [9679], "roeck-us.net": [14176], "mi6.ua": [9908], "brwtk.co": [2053], "*.hoover.org": [7634], "directory.domaintools.com": [4750], "www.bitshares.org": [1995], "b.comejo.in": [2053], "git.framasoft.org": [6214], "www.dploy.io": [19894], "ifixit.com": [7874], "blog.smashfly.com": [15248], "licai.renren.com": [14004], "fndrs.net": [2053], "banjul.usembassy.gov": [21879], "divessi.com": [4668], "www.thevideo.me": [16505], "hpcc.usc.edu": [17564], "citadium.com": [3225], "www.atemda.com": [648], "url.locari.jp": [2053], "www2.sitetagger.co.uk": [15119], "*.usenet.nl": [17719], "onelogin.com": [12035], "approve.nuug.no": [11169], "static.aboutus.org": [465], "s.hum-ncu.com": [2053], "www.amnesty.no": [1012], "www.press.jhu.edu": [16562], "a.adroll.com": [575], "whatdotheyknow.com": [18527], "www.vxstream-sandbox.com": [18178], "www.handylinux.org": [20309], "a.itech4u.gr": [2053], "mit.bme.hu": [1571], "cdn1.doitgarden.ch": [4726], "l-ee.me": [2053], "learntim.co": [2053], "on.cosmo.uk.com": [2053], "x.pe.com": [2053], "stalbans.gov.uk": [21563], "www.varuste.net": [17863], "dydx.io": [4917], "www.ecampus.no": [4981], "www.awstrust.com": [414], "obsoleet.org": [11906], "static.event.notifier.rakuten.co.jp": [13768], "dish.stanford.edu": [15635], "mjhs.uk": [2053], "u2.qiyipic.com": [20413], "graphics.cars.com": [2923], "rhcloud.com": [13657], "bbr-wiki.slac.stanford.edu": [15635], "joyg.me": [2053], "www.educacursos.com": [5194], "music.qq.com": [13514], "m.kennedy-center.org": [20585], "www.awards.acs.org": [966], "ppvt.pro": [2053], "land.secondlife.com": [14706], "www.ssa.gov": [21552], "*.csupomona.edu": [2807], "menoratr.es": [2053], "webstore.illinois.edu": [17544], "gems.ruby-china.org": [21338], "www.collada.org": [2694], "lovies.eu": [2053], "dashboard.pingxx.com": [12905], "nhm.uio.no": [17615], "wine-staging.com": [18650], "corporate.sky.com": [15170], "sts.cuhk.edu.hk": [2747], "010.io": [2053], "optimize.ly": [2053], "www.iiphighlights.state.gov": [17345], "*.jumio.com": [8824], "nini.es": [2053], "people.debian.org": [4353], "card2card.banki.ru": [1692], "*.notebooksbilliger.de": [11721], "angola3.org": [1056], "namecentr.al": [11207], "mccai.gs": [2053], "sanitarium.se": [14524], "airport-store.osu.edu": [11959], "personal.vanguard.com": [21894], "referral.wustl.edu": [18290], "www.*.uh.edu": [17601], "stuke2.piratenpartei-bayern.de": [12936], "schwrzng.gr": [2053], "*.debian-art.org": [21007], "bugzilla.fsl.cs.sunysb.edu": [15736], "jwe.bz": [2053], "rigg.in": [2053], "jnet.jesus.cam.ac.uk": [17529], "kasimp3.co.za": [8956], "dmb.cat": [2053], "paramt.co": [2053], "fr-contrainfo.espiv.net": [20058], "paramt.ca": [2053], "jast.moe": [2053], "9ts.de": [2053], "i1.letvimg.com": [20668], "jj2.me": [2053], "*.blogspot.cz": [2166], "h.online-metrix.net": [12068], "egap.britac.ac.uk": [2389], "northcentral.aclufl.org": [286], "paste.ngx.cc": [11569], "colorlabs.co": [2053], "pensions.northamptonshire.gov.uk": [20925], "vrbn.ca": [2053], "www.politiken.dk": [13101], "*.boalt.com": [1577], "on.scorpion.co": [2053], "anidb5.anidb.net": [1062], "hebu.co": [2053], "tal.de": [16172], "www.rrz.uni-hamburg.de": [17229], "morsels.me": [2053], "url.myfini.com": [2053], "publications.europa.eu": [5526], "valpo.worldcat.org": [18748], "lessigforpresident.com": [9419], "inmuebles.bankinter.com": [1694], "funoverip.net": [20188], "mdas.me": [2053], "stsmda.us": [2053], "fnal.gov": [5869], "www.landalgreenparks.com": [18790], "lmt.co": [2053], "android-arsenal.com": [1043], "dwk.io": [2053], "getwi.se": [2053], "one.actionkit.com": [11839], "www.twitpic.com": [17166], "secure-dev.techxpress.net": [16277], "mtrust.org": [2053], "gitc.finance.gov.au": [3557], "jcp.is": [2053], "app.holidayextras.co.uk": [7595], "*.ambest.com": [344], "ksu.ag": [2053], "esia.gosuslugi.ru": [6979], "xenak.es": [2053], "subs.pcr-online.biz": [21095], "libcat.ornl.gov": [11892], "*.socialbakers.com": [15317], "switchvid.co": [2053], "tim.ly": [2053], "www.selfridges.com": [14811], "ma.rriag.es": [2053], "www.encryptmas.org": [5339], "www.servicesonline.opm.gov": [11853], "www.jailbreakingisnotacrime.org": [8640], "go.grace.ph": [2053], "api.soundcloud.com": [15410], "fakaheda.eu": [5751], "info.getsatisfaction.com": [6738], "yuzhno-sakhalinsk.beeline.ru": [1801], "tugg.com": [17096], "commcns.org": [2053], "parents.stanford.edu": [15635], "my.engr.illinois.edu": [17544], "clema.cc": [2053], "stupid.com": [15802], "identitytheft.gov": [8086], "www.dudley.gov.uk": [4891], "*.solarcity.com": [15358], "syn.tips": [2053], "mirabel.la": [2053], "renewals.cheshire.gov.uk": [3123], "drupal.uninett.no": [17477], "paf-ps2.web.cern.ch": [2632], "www.buhonline.ru": [19608], "vlv.me": [2053], "cdn.themis-media.com": [16609], "dklds.org": [2053], "a0.twimg.com": [17153], "lenovo.co.uk": [9409], "www.blinddesign.nl": [2128], "home.ch": [7609], "en.3.boardgamearena.com": [2219], "jq.meituan.com": [10405], "s.muy10.com": [2053], "mm.joachimt.com": [2053], "*.intelliworkschat.com": [8370], "slack.javascript.ru": [20527], "journal.r-project.org": [13621], "skylarkapp.net": [2053], "dl.ngrok.com": [11568], "ukonlinecentres.com": [17255], "www.poets.org": [13071], "fw.vevo.com": [17773], "aatr.co.uk": [2053], "www.slo-tech.com": [15211], "tweetriver.com": [10212], "bigp.in": [2053], "pixid.ideeinc.com": [16739], "docs.continuum.io": [19781], "kcusd.illuminateed.com": [20430], "accesspiratebay.co.uk": [21712], "www.bmi.bund.de": [2485], "londoncityairport.com": [9743], "impulse.net": [8170], "mctg.co": [2053], "www.stanfordhospital.org": [15638], "p.skimresources.com": [15158], "babylink.scot.nhs.uk": [11102], "6connect.com": [215], "www.decisionneurosciencelab.org": [4362], "securenet.vodafone.pt": [18109], "www.cr0.org": [3818], "fxsitecompat.com": [20192], "maidsafe.org": [10034], "ffrf.org": [6283], "www.passwordwolf.com": [21080], "feed.meetme.com": [10378], "wiki.osmfoundation.org": [11871], "sci-hub.cc": [14615], "albert.rit.edu": [13667], "okupesbcn.squat.net": [21549], "tibco.cm": [2053], "www.vf.com": [3616], "kodak.ly": [2053], "*.gdatasoftware.com": [6410], "orderng02.ikoula.com": [8112], "automx.org": [1468], "muntenbru.ch": [2053], "tutusc.co": [2053], "tubb.co": [2053], "read.spoke.news": [2053], "msns.osu.edu": [11959], "careers.microsoft.com": [10543], "fulfillment.aliexpress.com": [19343], "url.mastrip.net": [2053], "help.sigmabeauty.com": [15023], "dm.mix1.net": [2053], "dale.am": [2053], "ipv6.root.cz": [14199], "ckerr.net": [2053], "control.anchor.com.au": [1032], "boutique.rtbf.be": [14244], "sixfla.gs": [2053], "bankorange.dengisend.ru": [4440], "n2.sinaimg.cn": [15091], "muri.osu.edu": [11959], "familypet.us": [2053], "propertyinvesting.com": [13387], "www.seurinternacional.com": [14879], "www.zenmate.com.ru": [19133], "4hb.in": [2053], "grn.lt": [2053], "jit.si": [8731], "l.202.be": [2053], "edinburgh.gov.uk": [5185], "www.hastexo.com": [7365], "eshop.roup.eu": [2053], "my.active24.com": [19275], "www.scottishpowerpipeband.com": [14642], "static.zenimax.com": [19145], "axsw.co": [2053], "reimbursements.ibx.com": [20419], "spul.se": [2053], "www.csgolounge.com": [3965], "dicesoft.net": [4535], "jit.su": [8727], "url.slc.fit": [2053], "shop.fairphone.com": [5749], "uhrzeit.org": [17402], "urz.uni-heidelberg.de": [17459], "www.alternativemeats.co.uk": [19357], "static.eloqua.com": [5282], "static.duoshuo.com": [19969], "greetingcards.barnardos.org.uk": [19486], "sdeleni.idnes.cz": [20425], "enit.dict.cc": [4536], "praha.idnes.cz": [20425], "es-us.ondeck.com": [20994], "cncb.it": [2053], "giftedandtalented.com": [6762], "s127.cnzz.com": [3391], "www.authorea.com": [1446], "www.newsmax.com": [11534], "wiki.piratenpartei.de": [12938], "m.obile.info": [2053], "egedalkommune.dk": [5212], "eas3.emediate.se": [5306], "www.socialtheater.com": [15316], "pbpb.in": [2053], "glmr.fr": [2053], "thumbnail.myheritageimages.com": [11024], "siste.rs": [2053], "kanste.in": [2053], "4.boardgamearena.com": [2219], "jmoo.re": [2053], "qhd.meituan.com": [10405], "2006.weblogawards.org": [18424], "s.pkvdesigns.nl": [2053], "touch.chicagotribune.com": [3130], "sunpeaksne.ws": [2053], "www.tahina.priv.at": [13306], "s1.jugger.mail.ru": [10040], "www.youtube.de": [19016], "oodi.aalto.fi": [428], "mail.newsinc.com": [11527], "free.ngur.xyz": [2053], "www.allianzfuercybersicherheit.de": [892], "quant.jd.com": [8571], "ideone.com": [8091], "www.us-ignite.org": [17298], "www.law.stanford.edu": [15635], "www.beeg.com": [19511], "go.fox40.com": [2053], "mail.georgetown.edu": [6668], "quero.beer": [2053], "fsf.rocks": [2053], "www.africajobs.g4s.com": [20194], "www.chiliproject.org": [3135], "whitehatters.academy": [22016], "harlowgigs.info": [2053], "4goat.com": [2053], "infam.us": [2053], "wiki.sequanux.org": [14836], "www.websitealive1.com": [18445], "library.cuhk.edu.hk": [2747], "www.belkin.com": [1814], "gamelink.com": [6533], "apkt.co": [2053], "c.cnzz.com": [3391], "sjani.me": [2053], "joycasino2.com": [20552], "fpliv.in": [2053], "soutien.laquadrature.net": [9267], "vip.sina.com.cn": [15086], "oagcargo.com": [17204], "pes.georgetown.edu": [6668], "123bay.online": [21215], "l6.hitravel.xyz": [2053], "www.secdev-foundation.org": [21396], "my.kaspersky.com": [8958], "yubico.com": [19052], "*.5apps.com": [206], "phild.in": [2053], "unblocksit.es": [17433], "g.webswamp.net": [2053], "myplace.walthamforest.gov.uk": [18262], "skyriderplay.com": [15186], "www.javascriptkicks.com": [8675], "ccftl.org": [2053], "www.factbook.ecc-platform.org": [4978], "foodics.link": [2053], "www.vuze.com": [18175], "juniper.net": [8834], "*.active.com": [536], "nextiva.com": [11562], "files.tested.com": [18543], "jingzhou.meituan.com": [10405], "reefbuilders.com": [13940], "s.gekiura.com": [2053], "ilive.bury.gov.uk": [19614], "burtsbe.es": [2053], "images.hertz.com": [7511], "firmo.org": [2053], "piratebay.unlockproject.pw": [21771], "doxycoutu.re": [2053], "s.qlan.net": [2053], "bezuegerechner.bva.bund.de": [5833], "p1.raasnet.com": [13890], "www.jameco.com": [8648], "mandrillapp.com": [10109], "issues.openmrs.org": [12150], "q.promnite.com": [2053], "kr.calameo.com": [2790], "start.salixos.org": [21363], "static.gbot.me": [6934], "chitaitext.ru": [19707], "sec.xiaomi.com": [18873], "bitcoin.co.th": [2014], "*.unblock-us.com": [17432], "ric.consultant.ru": [19778], "www.obdev.at": [11894], "nev0.com": [2053], "ruby.froscon.org": [6210], "10percent.tips": [2053], "racare.rakuten.co.jp": [13768], "pcktu.com": [2053], "www.infragard.net": [8283], "clickfun.com": [3319], "cmedl.in": [2053], "screenshotmachine.com": [14652], "museum.ceredigion.gov.uk": [3025], "alternate.be": [921], "kinderstem.nu": [2053], "syslab.cs.washington.edu": [17577], "cityoflondon.firmstep.com": [20125], "www.bitmissile.com": [1987], "huntingbears.nl": [7768], "vertx.ci.cloudbees.com": [19736], "jako-o.*": [8643], "www.nvrnet.ru": [20968], "www.bankid.no": [1689], "forums.boounce.com": [2273], "www.mandiant.net": [10347], "nabo.to": [2053], "dpr.gtgn.co": [2053], "genelab-data.ndc.nasa.gov": [11058], "ajk.li": [2053], "itaccounts.iu.edu": [8214], "darkreading.com": [4228], "domainbox.com": [4752], "social.aolu.co": [2053], "www.getdigital.eu": [6694], "balboa.io": [1670], "cliara.caltech.edu": [2814], "hrdivision.usc.edu": [17564], "s.yimg.jp": [18992], "www.ifpa.ie": [7871], "www.cxsecurity.com": [4022], "resin.io": [14040], "glsns.us": [2053], "styro.link": [2053], "nbwn.de": [11066], "nsdnk.co": [2053], "ilmasto-opas.fi": [8120], "www.digikey.com": [4552], "www.unseen.is": [17656], "nz.usembassy.gov": [21879], "jochen-hoenicke.de": [8754], "pehub.com": [21102], "www.kde-help.org": [21006], "blog.scraperwiki.com": [14647], "4.iliokb.com": [2053], "www.johnrennie.net": [18730], "jaguar.here.com": [7465], "1.glissa.com": [2053], "webvt.nl": [2053], "stuart.in": [2053], "frugalware-art.org": [21006, 21007], "x.assi.st": [2053], "eller.im": [2053], "unblockthepiratebay.net": [21709], "ebanking2.danskebank.dk": [4223], "www.xiph.org": [18878], "return.is": [2053], "fsj.lu": [2053], "su.tien2.net": [2053], "cdnb.kaltura.com": [8927], "forms.torbay.gov.uk": [16840], "assets.guim.co.uk": [7142], "em360.tech": [2053], "mediawatch.dk": [10332], "365tickets.co.uk": [137], "video.yandex.com.tr": [18954], "rndh.se": [2053], "disk.ya.ru": [18930], "digitalmedia.oracle.com": [12284], "cert.fi": [2638], "partner.blackberry.com": [2102], "northlincolnshire.firmstep.com": [20124], "bhr.st": [2053], "client-api.itunes.apple.com": [1160], "picoville.com": [12878], "mikewal.sh": [2053], "kellwood.us": [2053], "kizoom.co": [2053], "www.buzzfeed.com": [2531], "saam.co": [2053], "mktg.clicktools.com": [3323], "myview.wirral.gov.uk": [18672], "thunderbird-mail.de": [16673], "waffle.io": [18239], "fsh.io": [2053], "content.incapsula.com": [8192], "triongam.es": [2053], "savethelink.org": [14552], "files.gpg4win.org": [7002], "www.foecvliab.com": [6088], "pickaweb.co.uk": [12872], "shop.idg.se": [7852], "www.beckpc.ch": [1796], "pnae.us": [2053], "www.paraduxmedia.com": [12592], "iridiumbrowser.de": [8504], "media.wizards.com": [18687], "eiffel.com": [5224], "fro.gd": [2053], "res.wx.qq.com": [13514], "www.theconversation.com": [16528], "ch.yaay.ch": [2053], "alb.rocks": [2053], "*.democratandchronicle.com": [4434], "i8.chaucanh.net": [2053], "cas.fit.edu": [6058], "assets.crucial.jp": [3902], "donate.fftfef.org": [5881], "beta.companieshouse.gov.uk": [3571], "simquadrat.de": [15081], "pvm.cc": [2053], "powys.gov.uk": [21183], "physicsforums.com": [12867], "www.newkaliningrad.ru": [20899], "*.csis-scrs.gc.ca": [2861], "fun.alipay.com": [857], "www.bit.ly": [2052], "*.np-edv.at": [11734], "demode.ninja": [2053], "*.webmdhealth.com": [18368], "hlth.ch": [2053], "fau.de": [17597], "pierdepeso.xyz": [2053], "www.whosampled.com": [18557], "developer.blender.org": [2120], "www.korelogic.com": [9136], "sp.ual.es": [17361], "halfsp.in": [2053], "apps1.lbhf.gov.uk": [9218], "democrats.intelligence.house.gov": [17304], "apps.oseems.com": [12323], "trueloc.al": [2053], "sailthru.com": [14480], "fdz.mx": [2053], "dps.illinois.edu": [17544], "info.unit4.com": [21855, 21856], "www.eyetechds.com": [5645], "untngl.me": [2053], "ubifor.ms": [2053], "svnsxt.co": [2053], "l.hentaisc.net": [2053], "ad.netcommunities.com": [11366], "zalando.no": [19094], "monitor2.returnpath.net": [14067], "3n-sev.tk": [2053], "zalando.nl": [19094], "djrc.portal.dowjones.com": [11513], "git.openwrt.org": [12190], "facultysenate.wustl.edu": [18290], "spnc.gq": [2053], "www.builditbreakit.org": [2468], "www.techanarchy.net": [21668], "orgsync.com": [12305], "status.linaro.org": [9522], "app.protectnetwork.org": [13394], "vhq.cc": [2053], "www.frozentux.net": [6351], "www.berryreview.com": [1850], "ljkc.info": [2053], "southcambs.greenparty.org.uk": [7052], "annyung.oops.org": [12096], "dutchcrafters.com": [19971], "fb.iinntt.com": [2053], "bit.crick.me": [2053], "kaixian.meituan.com": [10405], "g16.click": [2053], "hotfile.com": [7701], "popurl.me": [2053], "ftp.darmstadt.ccc.de": [2596], "mspats.cc": [2053], "adon.is": [2053], "ina.org.au": [2053], "w1.plugrush.com": [13046], "0click.ml": [2053], "conquest.am": [2053], "www.londoneye.com": [9736], "erevenues.cheshireeast.gov.uk": [3125], "www.uprod.biz": [17289], "www.btjunkie.org": [19602], "castle-hill.eschools.co.uk": [20056], "npm.im": [11736], "digital.kent.gov.uk": [9005], "cti.click": [2053], "techpinions.com": [16304], "*.blogspot.jp": [2166], "www.mygsb.stanford.edu": [15635], "kissmetrics.com": [8880], "trk.kissmetrics.com": [8880], "rcut.eu": [2053], "wpn.io": [2053], "*.mozilla.net": [10845], "cbesl.net": [2053], "56.1688.com": [44], "ww2.wizards.com": [18687], "gettyimages.com": [6741], "walkingmen.com": [18254], "www.kum.com": [9186], "enda.dict.cc": [4536], "binder.ga": [2053], "www.dfa.cornell.edu": [3744], "api.sweden.se": [15936], "rescuebox.us": [2053], "newsletters.westlothian.gov.uk": [22010], "nanawall.ws": [2053], "studenthealth.georgetown.edu": [6668], "getbui.lt": [2053], "social.expression.microsoft.com": [10543], "gymglish.com.br": [7167, 7168], "www.kokousalusta.fi": [9109], "counter.mit.edu": [9914], "estaffprofile.nottingham.ac.uk": [11726], "rublacklist.net": [14249], "stats.dotsec.com": [4790], "gngr.space": [2053], "www.yfrog.com": [22102], "redlinebik.es": [2053], "www.avadomains.com": [1474], "www.zenmate.vn": [19133], "rallydev.com": [13772], "l.ocxgroup.com": [2053], "a4.sphotos.ak.fbcdn.net": [5816], "www.neck2neck.com": [11321], "appled.duoshuo.com": [19969], "testing.datamotion.com": [19859], "www.fhi.se": [5681], "pic.hao123.com": [20312], "www.apiary.io": [19401], "www.allclearid.com": [867], "fastclick.com": [17834], "www.coinjabber.com": [3460], "data.btcc.com": [2438], "dashboard.zenhub.io": [22129], "cpclib.worldcat.org": [18748], "pay.i4wifi.cz": [20407], "www.medctr.ohio-state.edu": [11960], "shoesf.it": [2053], "dashboard.open-mesh.com": [12107], "basecamp.com": [1735], "redcare.bt.com": [1593], "*.admeld.com": [647], "publishing-technology.de": [7735], "immobilienscout24.de": [8153], "backoffice.vend-o.com": [17898], "www.rafflecopter.com": [13759], "cdn0.iconfinder.com": [8066], "trash-mail.com": [16961], "www.unistra.fr": [17462], "nrapvf.org": [20951], "www.verizonenterprise.com": [17919], "idte.ch": [2053], "www.preney.ca": [13255], "2020mobile.es": [84], "shoppb.nl": [2053], "syntaf.in": [2053], "anubis.iseclab.org": [8513], "br2.ac": [2053], "infomaniak.com": [8261], "kdl.cc": [2053], "horizonteuned50.uned.es": [17446], "x.l.qq.com": [13514], "www.imgbox.com": [8143], "www.finse.uio.no": [17615], "fw.dpkg95.by": [2053], "s.reid.at": [2053], "www.bmclogostore.com": [1568], "www.localbitcoins.com": [9701], "trvlguy.co": [2053], "mac.github.com": [6801], "travelterra.co": [2053], "dgnf.ly": [2053], "*.bcj.ch": [20574], "www.glenscott.net": [6828], "nikkojapan.org": [2053], "summit.sharethrough.com": [14925], "user.web.cern.ch": [2632], "libguides.mit.edu": [9914], "wno.io": [2053], "hosokawa-alpine.com": [7643], "www.syscan360.org": [21637], "www.upc.nl": [17280], "m2.cm": [2053], "grprt.in": [2053], "quickgit.kde.org": [8871], "telekom.sk": [16346], "invstd.co": [2053], "mcstr.net": [2053], "alumnicas.princeton.edu": [13291], "skipscreen.com": [15452], "img01.bizrate-images.com": [2086], "posii.tv": [2053], "zy.meituan.com": [10405], "www.amnesty.org.uk": [1009], "ccamu.co": [2053], "googlewatchblog.de": [6976], "*.collab.net": [3479], "datamonitorhealthcare.com": [4285], "www.mkateb.com": [10663], "thread.guru": [2053], "p.tonymazz.com": [2053], "www.webmaker.org": [10852], "gandg.me": [2053], "developer.palm.com": [12548], "store1.esellerate.net": [5462], "admin.springer.com": [15561], "*.csdb.dk": [2726], "sdtk.fm": [2053], "www.teksyndicate.com": [16321], "calgunsfoundation.org": [2798], "content.foto.mail.ru": [10040], "bayleaks.com": [1747], "profile.create.msdn.com": [9953], "go.tripstr.com": [2053], "bclev.cash": [2053], "dl.wandoujia.com": [18267], "founded.cloud": [2053], "ay.md": [2053], "crawley.firmstep.com": [20125], "asset.zcache.com": [19120], "sss.ias.edu": [7815], "www.easyhomecontrol.at": [18582], "www.vbi.vt.edu": [18031], "cdn.gotraffic.net": [6984], "void.gr": [7042], "fineproxy.org": [5961], "compass-ssl.xboxlive.com": [18851], "tools.swisscom.ch": [15951], "on.bp.com": [2053], "go.o2more.de": [2053], "fu.gy": [2053], "gr.norton.com": [11703], "mynr.ma": [2053], "dephormation.org.uk": [4452], "camgirlstars.co": [2053], "mddpk.co": [2053], "myaccount.west.thomson.com": [16651], "www.join.acs.org": [966], "mail.uniregistry.com": [17482], "links.hadley.nz": [2053], "u.spideramn.com": [2053], "ndea.mk": [2053], "www.challenge.gov": [3045], "dot.aoikumo.jp": [2053], "s2.planeta.ru": [21143], "peltier.us": [2053], "symlms.symantec.com": [15969], "portal.newcastle-staffs.gov.uk": [20896], "feature.astaro.com": [1333], "rick.gop": [2053], "wiki.mediagoblin.org": [10318], "curbed.cc": [2053], "www.docketalarm.com": [4706], "reef.wwf.ch": [22060], "p2.chaucanh.net": [2053], "evesun.co": [2053], "rc.rlcdn.com": [13668], "3ring.it": [2053], "faxcritics.com": [5810], "brkn.in": [2053], "tfreeman.us": [2053], "*.mm.bing.net": [1948], "www.cyberpatrol.com": [4034], "www.jaymart.co.th": [8683], "pw.md": [2053], "edvar.cl": [2053], "voice.connect.comcast.net": [3524], "rseo.co": [2053], "*.ketchum.com": [9014], "bar.expert": [2053], "watercrun.ch": [2053], "vpsb.in": [2053], "havana.usembassy.gov": [21879], "developers.soundcloud.com": [15410], "which.net": [18539], "secure.mashery.com": [10210], "origins.cm": [2053], "council.lancashire.gov.uk": [20632], "my.symantec.com": [15969], "pay.btcchina.com": [1599], "mobile.onlinesbi.com": [12072], "beender.co": [1803], "eltonl.in": [2053], "*.hollywoodoutlaws.com": [7601], "rcla.me": [2053], "xx.meituan.com": [10405], "bikeability.org.uk": [19532], "www.stylist.co.uk": [15807], "admin.kurier.at": [9194], "sacnas.org": [14304], "rg.meituan.com": [10405], "www.deutsche-rentenversicherung-bund.de": [4487], "yllw.co": [2053], "defi.dict.cc": [4536], "oclclibrary.worldcat.org": [18748], "*.tugraz.at": [16130], "pr-ly.co": [2053], "epi.us": [2053], "support.dashlane.com": [4241], "www.charen.ch": [19686], "usar.ws": [2053], "owa.ut.ee": [17347], "10gen.com": [21], "www.blinksale.com": [2131], "www.vh1.vutbr.cz": [17814], "sl.tiz.ma": [2053], "visitthecapitol.gov": [18069], "bill.aol.com": [361], "www.duoshuo.com": [19969], "www.bitvc.com": [1998], "auth.enfield.gov.uk": [5359], "by.adg.ru": [2053], "squirrelmail.ouvaton.coop": [12360], "lts.cms.here.com": [7465], "ads5.contentabc.com": [3678], "valueshop.co.uk": [17837], "vlgv.net": [2053], "i1i.me": [2053], "a.ciencia.vc": [2053], "wfncnews.com": [18199], "login.insa-lyon.fr": [7918], "mobile.mindfactory.de": [10599], "www.esat.kuleuven.be": [8969, 9185], "www.skillsdevelopmentscotland.co.uk": [21470], "crocko.com": [3877], "spud.so": [2053], "internet-banking.dbs.com.tw": [4084], "biz.waze.com": [18311], "www.chroniclesofgeorge.com": [16525], "asset-8.soupcdn.com": [15416], "broadbandconvergent.com": [2403], "alldebrid.fr": [871], "riis.es": [2053], "www.rohieb.name": [14181], "joma.sh": [2053], "mirror.clearos.com": [19726], "alex.se": [833], "git.enlightenment.org": [5382], "b8.yahoo.co.jp": [18944], "admbugs.freebsd.org": [6237], "odoo.com": [11926], "tgrdn.co": [2053], "jobs.priorygroup.com": [13301], "letme.uk": [2053], "cpasia.net": [2053], "www.nuigalway.ie": [11253], "sports.south-wales.police.uk": [21511], "mbe.io": [2053], "listn2.it": [2053], "static.businessinsider.com": [2512], "wan.jd.com": [8571], "www.hub.jhu.edu": [16562], "www.1shoppingcart.com": [56], "fr.squat.net": [21549], "secure.alamy.com": [814], "benchase.me": [2053], "filin.mail.ru": [10040], "cdn1.emediate.dk": [5304], "clockers.at": [12369], "southwark.gov.uk": [15445], "www.b2bmediaportal.com": [1525], "aka.highways.gov.uk": [20340], "java.com": [8674], "linuxhostsupport.com": [9589], "ap.ai": [2053], "tap-cdn.rubiconproject.com": [14247], "www.postwire.com": [13210], "oca.ucsc.edu": [17591], "vogliamotutto.espiv.net": [20057], "airtop-pc.com": [795], "*.pdu.edu": [13167], "user.ameba.jp": [963], "3dcu.be": [2053], "blwrk.us": [2053], "www.norden.org": [11668], "s4.ft-static.com": [20182], "*.express.co.uk": [4187], "registration.warnerbros.com": [18278], "www.euro-ix.net": [5506], "www.cloudpiercer.org": [3351], "www.ifex.org": [7870], "skul.co": [2053], "infob.ae": [2053], "www.drought.gov": [4868], "ngvpn32.nvidia.com": [11174], "bkseri.es": [2053], "hkedcity.net": [7203], "www.aesload.de": [731], "m.signalvnoise.com": [21446], "check.fidor.de": [2053], "www.fusion-lifestyle.com": [6391], "ctc.engineering.osu.edu": [11959], "atlr.ec": [2053], "www.securetrust.com": [14756], "carvn.in": [2053], "childrenscommissioner.gov.uk": [19704], "store.microsoft.com": [10542], "to.azk.io": [2053], "azc.cc": [2053], "http2.akamai.com": [800], "subscribe.inyt.com": [7919], "*.foto.mail.ru": [10040], "airtime-demo.sourcefabric.org": [15429], "www.screenshot.ru": [14651], "headingley.greenparty.org.uk": [7052], "repo.varnish-cache.org": [17861], "*.tufts.edu": [17093], "uptolike.com": [17669], "www.sueddeutsche-tickets.de": [15833], "blogs.site24x7.com": [15108], "*.cinemanow.com": [3206], "exchange.nottingham.ac.uk": [11726], "dimauro.osu.edu": [11959], "npm.to": [2053], "therea.co": [2053], "*.tags.sitetagger.co.uk": [15120], "znak.com": [22136], "www.dictation.io": [19915], "uio.no": [17615], "yubigeek.fr": [2053], "exn.io": [2053], "nordichosting.com": [11672], "likeyed.com": [9512], "parapoupar.com": [12588], "www.ecologylab.net": [8394], "wp.colliertech.org": [3494], "learn2.agilebits.com": [765], "*.usenetserver.com": [17720], "*.gammae.com": [6567], "stnfy.com": [2053], "camden.gov.uk": [2830], "support.jobscore.com": [8739], "mp3-juices.com": [10858], "a.sparkjoe.com": [2053], "www.zubu.re": [22142], "www.panicbutton.io": [12567], "www.mondovino.ch": [3712], "phobos.apple.com": [1160], "falls.co": [2053], "dnzn.gr": [2053], "zh-cn.libreoffice.org": [9471], "netviewer.com": [11451], "viewhd.890m.com": [2053], "pix.ny.us.criteo.net": [3872], "*.avectra.com": [1487], "crowd.wpm.neustar.biz": [11472], "help.talktalk.co.uk": [16184], "www.web-registry.com": [18342], "stp.dj": [2053], "www.metro.co.uk": [10498], "rngl.fr": [2053], "ws2.bakerlab.org": [1667], "blog.evenmere.org": [5543], "www2.fraedom.com": [20155], "edit.uaa.alaska.edu": [17519], "theaus.in": [2053], "lcsa.gateshead.gov.uk": [6584], "owy.mn": [2053], "ctls.us": [2053], "onamae.me": [2053], "www.onesolution.cz": [11846], "support.ikoula.com": [8112], "*.harakah.net.my": [7334], "forum.libcinder.org": [3198], "www.foxydeal.de": [6207], "codetriage.com": [3444], "studentgrantreview.acs.org": [966], "go.ato.org": [2053], "joshbegley.com": [8783], "lbrehr.stanford.edu": [15635], "www.kernl.us": [9013], "m.zalando.it": [19094], "www02.fonts.com": [6110], "www.giftcards.tesco.com": [16396], "pin.ed.gov": [4988], "addy.co": [619], "tlmdo.co": [2053], "to.tobem.jp": [2053], "s113.cnzz.com": [3391], "*.klm.com": [8889], "s.takuhaiben.to": [2053], "bindforum.isc.org": [7966], "*.computeruniverse.net": [3605], "southribble-ss.achieveservice.com": [19265], "wikimedia.ch": [18595], "dxdlink.co": [2053], "intb.it": [2053], "shld.nl": [2053], "*.floridatoday.com": [6059], "images.agoramedia.com": [5559], "*.eastsussex1space.co.uk": [19995], "www.imakethingswork.com": [8035], "appnexus.com": [1148], "fbcn.biz": [2053], "go.dirkbo.de": [2053], "static4.wonderwall.com": [18714], "schiphol.nl": [14594], "www.negotiatingsalary.com": [11328], "pls.webtype.com": [18392], "www.centralcomputers.com": [3015], "selfserve.bolton.gov.uk": [19569], "apply.internetessentials.com": [20477], "s7.cnzz.com": [3391], "yro.slashdot.org": [15192], "24hund.red": [2053], "www.sudoroom.org": [15834], "surfap.ps": [2053], "www.isomorphic.com": [8522], "scambs.gov.uk": [21375], "planetdiscover.com": [12984], "sites-jumpstart.stanford.edu": [15635], "l.gei.lt": [2053], "login.yellowbot.com": [18975], "velartec.com": [2053], "quadsolution.co": [2053], "ltzw.co": [2053], "mktm.ag": [2053], "www.workaround.ch": [22048], "surplus.osu.edu": [11959], "www.kitd.com": [8881], "www.gradschool.umd.edu": [17549], "spotware.com": [15550], "gofoi.org": [2053], "smp.rocks": [2053], "www.vnews34.ru": [21934], "*.colorado.edu": [17533], "soyfi.com": [2053], "goodbyecrash.es": [2053], "www.usvisa-info.com": [2723], "nycla.org": [11178], "www.pushpopcorn.com": [13479], "franchiseradioshack.cloudapp.net": [13749], "www.openmandriva.org": [12153], "acecr.usa.cc": [2053], "dyln.xyz": [2053], "campina.ru": [2841], "cdn.gitbook.com": [6794], "faancollegenetwork.org": [5662], "ads.horyzon-media.com": [7642], "wiki.wilhelmtux.ch": [22028], "tmcturf.gs": [2053], "members.webs.com": [18439, 18440], "hg.prosody.im": [13388], "sfcne.ws": [2053], "imf.org": [7904], "cubics.com": [3981], "nro.net": [11775], "www.gdata.co.mx": [6410], "gjscomp.com": [2053], "jsr311.java.net": [8673], "www.zipler.ru": [19191], "scooter-attack.com": [14632], "chs.us": [3186], "amsciadmin.eresources.com": [983], "tent.ly": [2053], "democratandchronicle.com": [4434], "*.vpnbook.com": [18157], "gomoxie.com": [10834], "mail.zoho.com": [19202], "on.kyber.me": [2053], "toppr.co": [2053], "ctychr.ch": [2053], "100pure.asia": [2053], "vdo.ms": [2053], "txtit2.me": [2053], "smd.vc": [2053], "www.gosquared.com": [6909], "ditu.amap.com": [19359], "uas.osu.edu": [11959], "www.constructor.maps.yandex.com": [18956], "www.bios-mods.com": [1961], "falle.nl": [2053], "members.efa.org.au": [5254], "cents.style": [2053], "go.thefool.it": [2053], "accesorios.poderpda.com": [13067], "ssl12.ovh.net": [12378], "hipchat.com": [7554], "flexweb.warwickdc.gov.uk": [21979], "www.oo-software.com": [12092], "thetfp.com": [16582], "espiv.net": [20058], "tour.ubuntu-fr.org": [17375], "taxi.yandex.com": [18956], "supportcoda.unit4.com": [21856], "kaluga.beeline.ru": [1801], "*.datacell.com": [4255], "www.career.ru": [2900], "spruit.me": [2053], "slate.me": [2053], "vstsem.com": [2053], "gtpla.net": [2053], "status.c9.io": [3339], "100ideen.migros.ch": [10566], "www.domain.de": [4739], "www.accellion.com": [479], "jennaswy.com": [2053], "script-o-rama.com": [4853], "rtvote.com": [2053], "kampyle.com": [8930], "www.ypassociation.org": [18974], "lwocd.me": [2053], "hosting.www.namecheap.com": [11208], "fold.liqd.net": [9602], "asia.elsevierhealth.com": [5289], "jizz.ppy.sh": [13232], "tiaa.ws": [2053], "lnkt.nl": [2053], "www.nyi.net": [11182], "client.wedos.com": [18197], "groupex.pro": [2053], "www.calligra.org": [2813], "politico.com": [13098], "epitheliner.co": [2053], "gd4.alicdn.com": [846], "geolistening.com": [6662], "*.xda-developers.com": [18809], "alumni.buffalostate.edu": [2457], "nrk.no": [11744], "pn.md": [2053], "*.acm.org": [300], "video.linux.com": [9563], "splnt.ru": [2053], "www.bmf-steuerrechner.de": [1572], "www.rpgnow.com": [12029], "t.seq4u.com": [2053], "o.rholas.eu": [2053], "cana.li": [2053], "lith.liu.se": [9238], "www.aldi.us": [338], "status.ghost.org": [6748], "www.dnfsb.gov": [4387], "www.metallica.com": [10485], "paypal.com": [12678], "ambil.ga": [2053], "forum.siteground.com": [15112], "www.bringthegig.com": [2387], "mwp.nu": [2053], "ncei.noaa.gov": [11272], "a.jorgenova.cl": [2053], "8020.bz": [2053], "monitor.uv.es": [17750], "datatilsynet.no": [4294], "www.familie.plus.aok.de": [357], "www.insidescience.org": [8317], "www.drivethrucards.com": [12029], "shriyash.xyz": [2053], "s128.cnzz.com": [3391], "www.skycityauckland.co.nz": [14366], "it.aliexpress.com": [847], "lenz.click": [2053], "www.activatejavascript.org": [533], "united-internet.de": [17491], "zalando.be": [19094], "mipsyfair.org": [2053], "bkam.me": [2053], "redmondmag.com": [13930], "nemlogin.wayf.dk": [18192], "campaignforhouston.com": [19634], "www.seotrainingtoronto.com": [14341], "ugk.cxpr.in": [2053], "coie.uned.es": [17446], "snap.vidiemi.com": [17994], "apidocs.inspectlet.com": [8325], "kd.htw-berlin.de": [7246], "msre.it": [2053], "www.36kr.com": [142], "revenuesbenefits.westminster.gov.uk": [18516], "t-jetro.jp": [2053], "to.lab701.nl": [2053], "forum.ukfur.org": [17248], "www.thebaffler.com": [16513], "socdwar.mail.ru": [10040], "fraudlabs.com": [6229], "enviame.ga": [2053], "tdtpro.co": [2053], "music.yandex.kz": [18957], "hu.norton.com": [11703], "seniors.berkeley.edu": [17526], "cesru.sc": [2053], "duurza.me": [2053], "www.wiredsafety.org": [18666], "cdn.thegloss.com": [899], "rheinland24.info": [14094], "sftv.co": [2053], "webinars.mirea.ru": [20805], "mstar.link": [2053], "employers.indeed.com": [8200], "account.sourcefabric.com": [15428], "link.pv-bf.de": [2053], "dn-walletla.qbox.me": [13528], "seferler.yandex.com.tr": [18954], "winningmo.uk": [2053], "src.selfhtml.org": [21405], "mcafeesecure.com": [10281], "gradadmissions.stanford.edu": [15635], "www.outcampaign.org": [12354], "chat.stackoverflow.com": [15611], "travelocity.com": [16973], "www.vocalarticles.com": [11492], "s1a.co": [2053], "eiseverywhere.com": [5494], "spith.net": [2053], "r.kurashicom.jp": [2053], "nytexaminer.com": [11188], "elast.co": [2053], "3rd.gr": [2053], "orwall.org": [12281], "focd.me": [2053], "coth.co": [2053], "dashs.dk": [2053], "ucarp.org": [21834], "tfsg.me": [2053], "geologia.uniovi.es": [17479], "abnewsroom.co": [2053], "thepiratebay.skillproxy.net": [21217], "*.mailinator.com": [10053], "nn9.biz": [2053], "downloads.askmonty.org": [1297], "wf.cdn.gmru.net": [6466], "www.rankingdigitalrights.org": [21253], "business.instagram.com": [8331], "kilroy.biz": [2053], "i.janeshao.com": [2053], "flix123.com": [6046], "www.bart.gov": [1729], "coincheck.jp": [3466], "lapchi.co": [2053], "content.digicert.com": [4556], "7.7ru.org": [2053], "anonymizer.com": [1089], "geo.itunes.apple.com": [1160], "mpp.emea.mxptint.net": [10930], "radioleaks.se": [13753], "www.tuxingsun.net": [17086], "rdkrs.dk": [2053], "*.champssports.com": [3051], "youtube.qa": [19016], "pizzacharts.com": [12967], "rackspace.co.uk": [13733], "yabause.org": [18932], "blackburn.gov.uk": [19551], "dianomi.com": [4525], "gemnasium.com": [6640], "getenflux.co": [2053], "cdn.static.zdbb.net": [19067], "abookapart.com": [19257], "www.friendsofnra.org": [20176], "www.skipscreen.com": [15452], "www.nottingham.ac.uk": [11726], "gamespot.com": [6544], "bayareaamusements.com": [1749], "olabini.se": [20987], "c90.us": [2053], "retail.onlinesbi.com": [12072], "shepway-consult.objective.co.uk": [20979], "*.www.gigaserver.cz": [6774], "gdbox.info": [2053], "view.atdmt.com": [10540], "www.kirsle.net": [9069], "encmp.as": [2053], "clck.yandex.com.tr": [18954], "ful.io": [2053], "lmsint.co": [2053], "pag.golf": [2053], "www.bundesnetzagentur.de": [2487], "guenstig.m-budget.migros.ch": [10566], "www.proposal.illinois.edu": [17544], "ytube.ml": [2053], "nogliki.sakh.com": [21360], "datasheetcatalog.com": [4292], "simply-partner.com": [15076], "www.billpay.de": [1931], "pq-direct.revsci.net": [14073], "yamgo.com": [18949], "freeswitch.org": [6247], "chuckgo.se": [2053], "lk.hvacne.com": [2053], "husker.la": [2053], "friendsofnra.org": [20176], "passwordbox.mcafee.com": [10282], "meinprivatkaffee.tchibo.de": [16240], "w.idg.de": [2053], "medepor.uniovi.es": [17479], "sfs.stanford.edu": [15635], "bv.ms": [2053], "wrte.it": [2053], "kickass.cd": [9031], "m.mobot.net": [7693], "2svh.nl": [2053], "assets.fit.edu": [6058], "ihous.eu": [2053], "blog.osmfoundation.org": [11871], "*.www.kidsfootlocker.com": [9037], "www.metacpan.org": [10474], "o-e.ca": [2053], "x.nxnw.net": [2053], "imasdk.googleapis.com": [6967], "true.mu": [2053], "ultimatepoker.com": [17413], "farmerdev.tech": [2053], "tmpc.be": [2053], "scu.edu": [14529], "st.ecrebo.com": [2053], "moodle.net": [10762], "expat.hsbc.com": [7233], "rltiny.com": [2053], "blog.wegohealth.com": [18479], "buzn1029.fm": [2053], "www.chrisnewland.com": [3166], "gwmwp.us": [2053], "www.framalab.org": [6214], "itnig.co": [2053], "tsuchiya.me": [2053], "www.srna.sk": [15593], "5tra.ws": [2053], "dcmnt.me": [2053], "humpi.at": [7761], "www.vinoteka.hofer.si": [338], "patchwork.linuxtv.org": [9576], "roof.news": [2053], "ader.tk": [2053], "se.godaddy.com": [6898], "www.hyperelliptic.org": [7791], "toplist.cz": [16102], "www.investigativedashboard.org": [8466], "wiredminds.de": [18665], "4griffs.com": [2053], "galpon.org": [20197], "muse-cdn.warnerartists.com": [10897], "dsq.meituan.com": [10405], "reap.mit.edu": [9916], "nick.pub": [2053], "res.samsungshop.com.cn": [14503], "community.fastly.com": [5803], "arsnova.thm.de": [16066], "crfsrv.co": [2053], "drk.life": [2053], "l.bobzien.com": [2053], "www.lsbu.ac.uk": [9252], "embed.wistia.com": [18678], "ivarch.com": [8547], "*.airbnb.ca": [788], "serienjunkies.de": [14841], "syscoding.com": [16005], "htlspk.com": [2053], "www.sheamortgage.com": [8578], "lists.tox.chat": [16891], "outlook.office365.com": [11944], "www.depolitiezoekt.nl": [11324], "hecourse.engineering.osu.edu": [11959], "www.lucidsolutions.co.nz": [9808], "ocforums.com": [12370], "anon-ib.com": [1076], "vivaciti.net": [18089], "www.cambridgelivetrust.co.uk": [19631], "tresc.li": [2053], "stan.md": [2053], "opacs.stanford.edu": [15635], "global.oup.com": [12397], "wwte7.com": [18232], "www.esc.edu": [5317], "www.rabbitporno.com": [13722], "link.adf.org.au": [2053], "crowdfunding.correctiv.org": [3753], "vanam.co": [2053], "mclu.org": [9893], "ecommercebrasil.com.br": [4984], "mall.jd.com": [8571], "stratechery.memberful.com": [10420], "tambov.rt.ru": [13703], "aprt.at": [2053], "*.goaruna.com": [6895], "www.gkvnet-ag.de": [6455], "stubhub.de": [15789], "*.aiasurety.com": [328], "www.23systems.net": [88], "www-static.ripe.net": [14128], "*.jet2.com": [8706], "www.netdoktor.se": [11415], "www.loveourlocalbusiness.com": [9792], "isoc24.com": [7975], "yis.to": [2053], "4bet.poker": [2053], "vs4.com": [21959], "c2.jam.net.ve": [2053], "www.patexia.com": [12660], "energy.rakuten.co.jp": [13767], "irkb.me": [2053], "www.grindr.com": [20283], "edublogs.org": [5193], "benest.es": [2053], "form-cdn.pardot.com": [12605], "community.rapid7.com": [13788], "data.li": [2053], "j.ronz.io": [2053], "www.planet.com": [12979], "vtluug.org": [17810], "njbe.st": [2053], "cloud.kbia-gmbh.de": [8982], "fnst.cc": [2053], "info.ssl.com": [14413], "rtslv.in": [2053], "*.sharetobuy.com": [21423], "tqr.dk": [2053], "pirateahoy.eu": [21709], "www.zicguzoo.com": [22134], "m-tl.com": [2053], "www.autistici.org": [1450], "huinan.meituan.com": [10405], "phtrns.it": [2053], "healthphysics.georgetown.edu": [6668], "local.ch": [9697], "logincasino.com": [20714], "ibs.sberbank.sk": [8050], "sbx.vc": [2053], "data.bitcoinity.org": [2034], "freizeit.sbb.ch": [15946], "specials.9to5toys.com": [248], "*.sockshare.com": [15330], "footlocker.eu": [6128], "www.seulonta.fi": [15998], "rlbs.ml": [2053], "greatteachersgreatschools.org": [15627], "ezimg.it": [5103], "www.blossom.io": [2174], "hda.cl": [2053], "as.blip.tv": [2133], "dvroof.com": [2053], "getmybalance.com": [6735], "denic.de": [4442], "owncloud.zaehlwerk.net": [19089], "help.walmart.com": [18259, 18260], "ly.dpc.fr": [2053], "s1.gismeteo.ua": [6790], "www.poddery.com": [13066], "lovr.in": [2053], "star-pool.com": [15642], "video.intelexit.org": [8362], "*.tor2web.org": [16837], "9.dbstatic.no": [19866], "dindator.org": [2053], "cdn.pdc.comcast.com": [3525], "cdn.kde.org": [8871], "dxal.meituan.com": [10405], "*.fmpub.net": [5839], "ajlas.eu": [2053], "lrng.co": [2053], "webmail.loxinfo.co.th": [18426], "prl.aps.org": [969], "muse.cm": [2053], "milk.mu": [2053], "myalbum.co": [2053], "use-enco.com": [17712], "www.extyl-pro.ru": [20084], "anibis.ch": [19390], "amnesty-in-bewegung.de": [995], "rbwm.objective.co.uk": [20979], "u4.hitravel.xyz": [2053], "www.clkads.com": [3331], "*.authorize.net": [1447], "snrworkshop.inl.gov": [20462], "brianclifton.com": [2364], "educationnext.org": [5196], "ca.pcpartpicker.com": [12709], "cyber-inv.com": [2053], "fj.simple.com": [15065], "www.boxus.com": [12669], "gleam.io": [6827], "linksbymike.com": [2053], "bdgtsvy.co": [2053], "www.kr-znamya.ru": [20617], "cio.usc.edu": [17564], "247filmz.com": [94], "www.rasp.yandex.by": [18953], "advante.ch": [2053], "www.tesglobal.com": [21679], "topuklu.co": [2053], "tastyln.co": [2053], "kiro.tv": [2053], "shashw.at": [2053], "support.sendgrid.com": [14821], "bapt.link": [2053], "download.parrot.com": [12618], "issues.piwik.org": [12950], "store.particle.io": [12626], "gq.com": [6496], "ce.lijit.com": [9510], "machines.chromeexperiments.com": [3177], "indacoin.com": [8199], "wheel.sk": [18536], "honey.digital": [2053], "go.dreyf.us": [2053], "pi-hole.net": [21121], "cpj.org": [2703], "mastmo.co": [2053], "mail.websupport.cz": [18389], "frdg.me": [2053], "meant4mo.re": [2053], "chrome.justgiving.com": [8845], "oreef.co": [2053], "prototyp.cerit.cz": [2629], "dpro.co": [2053], "www.judge.me": [8812], "spacenews.com": [21521], "s.lucky.nl": [2053], "*.uspto.gov": [17343], "manilaprinciples.org": [10119], "www.taringa.net": [16218], "cli3k.me": [2053], "git.glandium.org": [20244], "pculr.com": [2053], "bgg2wl.com": [2053], "vh1.vutbr.cz": [17814], "www.sysax.com": [21636], "noo.org.uk": [11133], "aulaga.dis.ulpgc.es": [17411], "wifijan.us": [2053], "aptli.st": [2053], "blog.zoho.com": [19202], "w.sangs.tk": [2053], "wuhuxian.meituan.com": [10405], "charts.smartmoney.com": [11512], "idsoftware.com": [8072], "nbga.de": [2053], "rdx.red": [2053], "stats.cyscon.net": [4064], "www.jwz.org": [20568], "marknagel.me": [2053], "sc.sedo.com": [14785], "peekvids.com": [21101], "fside.co": [2053], "www.jobs.enfield.gov.uk": [5359], "terrabank.ru": [16390], "online.unionpay.com": [17478], "4zi.eu": [2053], "static.login.persona.org": [10851], "go.mcindoe.info": [2053], "catalysthost.com": [2956], "*.backup.com": [11704], "www.crypto.graphics": [3923], "wiki.moztw.org": [10856], "www.uni-potsdam.de": [17618], "undiet.me": [2053], "www.freetalklive.com": [20171], "kanotix.com": [8934], "*.passports.gov.au": [1435], "logout.feide.no": [5858], "t32.us": [2053], "www.handbook.fca.org.uk": [5670], "sairockr.in": [2053], "ubiqq.us": [2053], "acadinfo.wustl.edu": [18290], "teklif.tk": [2053], "cgilink.org": [2053], "edixml.mycampina.com": [2842], "*.oit.umass.edu": [17551], "www.i4wifi.cz": [20407], "www.gitcop.com": [6797], "html.adobe.com": [654], "www.divitup.com": [4665], "batumnang.kr": [2053], "signup.lotro.com": [20717], "tfpr.in": [2053], "www.pictshare.net": [12882], "nebezi.cz": [11317], "dev.virtualearth.net": [18046], "vanguard.com": [21894], "tsd.ooo": [2053], "ttsd.us": [2053], "r3.mzstatic.com": [1159], "www.fosdem.org": [6187], "eeco.at": [2053], "soundslice.com": [15414], "www.eide-itc.no": [5223], "www.hsbc.co.jp": [20373], "go.deliver.me": [2053], "nerd.porn": [2053], "faradaysec.com": [5774], "redlnd.cc": [2053], "www.scriptfodder.com": [14662], "cyour.ws": [2053], "debian-handbook.info": [16450], "www.host2.bg": [7650], "youtube.lv": [19016], "fmpx.us": [2053], "www.xen-orchestra.com": [18857], "de.chaturbate.com": [3093], "img2.glassdoor.ca": [20246], "sozialismus.info": [15451], "aihl.net": [2053], "ontkc.com": [2053], "emsidata.com": [2053], "tuft.su": [2053], "digipoort.unit4.com": [21856], "www.lulea.se": [9820], "jaast.net": [12555], "btcmarkets.net": [1608], "r.cet.tw": [2053], "passets-lt.pinterest.com": [12914], "www.zerigo.com": [19150], "www.ngs.ru": [20907], "rackspacecloud.com": [13741], "www.collectd.org": [3483], "www.internetstaff.com": [8433], "player.io": [13024], "*.secunet.com": [14718], "inteli.tk": [2053], "digundivi.de": [2053], "berkeley.illuminateed.com": [20430], "deploybot.com": [19894], "cms.gov": [19742], "policewolf.co": [2053], "cob.lt": [2053], "exchange.pulsepoint.com": [13454], "zrge.eu": [2053], "markng.co.uk": [10170], "hg.adblockplus.org": [601], "sydl.me": [2053], "services.amazon.in": [19372], "id.mashape.com": [10208], "blog.josefsson.org": [8780], "mail.hivos.org": [7573], "unindented.org": [17476], "smld.uk": [2053], "politicshome.com": [13100], "jcb.sh": [2053], "cdn.11footballclub.com": [29], "content.aimatch.com": [781], "balfr.co": [2053], "testandtarget.omniture.com": [12002], "act.colorofchange.org": [3502], "web.tameside.gov.uk": [21658], "www.redletter.link": [13910], "on.pg4.in": [2053], "kaernten.neos.eu": [11088], "*.wonderlandmovies.de": [18713], "www.lijit.com": [9510], "foofighters.com": [6113], "clnq.co": [2053], "www.gentoo-ev.org": [6652], "front.geetest.com": [20218], "libanswers.com": [9445], "lnk.airhead.io": [2053], "w.rot-blau.com": [2053], "csjobb.idg.se": [7852], "dugs.pub": [2053], "www.swatmag.com": [21627], "airsafe.co": [2053], "studom.at": [2053], "idp.iu.edu": [8214], "unum.co": [2053], "www.webyog.com": [18470], "www.bivol.bg": [2081], "hypestat.com": [20406], "pen.gy": [2053], "on.pyxo.me": [2053], "studentaffairs.stonybrook.edu": [15736], "www.kaiseki.me": [8920], "img3.wsimg.com": [14751], "www.thedebrief.co.uk": [21696], "www.piratetavern.net": [21709], "httpsecurityreport.com": [7244], "splashthat.com": [15532], "bewerbung.htw-berlin.de": [7246], "go.ejd.me": [2053], "x.leecasey.com": [2053], "ubm.io": [2053], "cf.static.xxxbunker.com": [18911], "obi.hu": [20977], "turngs.com": [17118], "www.ex10.biz": [5578], "sha.ikh.me": [2053], "kri.sc": [2053], "secure.aclu.org": [294], "cdn.directrev.com": [4618], "su.baidu.com": [1661], "vedtver.ru": [21901], "l.csloomis.com": [2053], "umap.openstreetmap.fr": [12245], "www.idefimusic.com": [8080], "uregister.zybang.com": [22145], "blj.me": [2053], "chengyang.meituan.com": [10405], "www.telenor.se": [16349], "s.twispam.net": [2053], "dawsonera.com": [4313], "developer.gettyimages.com": [6741], "tl305.co": [2053], "netm.ag": [2053], "docs.fedoraproject.org": [5843], "vz.nu": [2053], "electronicintifada.net": [5256], "*.momsmedia.com": [17833], "soydo.me": [2053], "auth.campact.de": [2835], "www.givingcomfort.com": [6812], "wuxue.meituan.com": [10405], "www.apricityos.com": [19408], "slu.se": [14373], "olvr.co": [2053], "support.bt.com": [1593], "l.br.it": [2053], "blnce.co.uk": [2053], "imagelayers.io": [20433], "dew.ly": [2053], "www.climate-diplomacy.org": [3325], "fs23.formsite.com": [20148], "intersango.com": [8442], "www.lippupalvelu.fi": [16690], "www.breuninger.com": [2360], "lutt.me": [2053], "on.ifc.org": [2053], "mein2.dastelefonbuch.de": [4246], "www.synaptop.com": [15978], "linux.cn": [9562], "kmzy.uk": [2053], "glowfli.us": [2053], "optse.ztat.net": [19094], "l.lengl.cc": [2053], "y.wpimg.pl": [22055], "cityemail.com": [3242], "edigitalsurvey.com": [5000], "ch.ch": [19682], "www.cam.ac.uk": [17529], "topliners.eloqua.com": [5282], "mail.pipni.cz": [12460], "dspace.usc.es": [17711], "tour.ubuntuusers.de": [17383], "support.dsi.cnrs.fr": [6314], "www.samknows.*": [14495], "account.sonyentertainmentnetwork.com": [15398], "tripadv.sr": [2053], "moderngov.halton.gov.uk": [20308], "cdn1.emilstahl.dk": [5310], "vs.cfif.org": [3010], "www.argentdata.com": [19413], "pilot.marketplace.equinix.com": [5438], "marketplace.alpnames.com": [910], "adition.com": [634], "jd.cdn.gmru.net": [6466], "spcsv.rs": [2053], "*.fm.alibaba.com": [850], "mariee.tips": [2053], "synergy-foss.org": [15990], "*.omaze.info": [11989], "*.all-inkl.com": [865], "ticketing.trch.co.uk": [16689], "*.ensimag.fr": [5390], "biscoi.to": [2053], "go.godeal.co": [2053], "fc.meituan.com": [10405], "khms1.google.com": [6969], "www.wheel.sk": [18536], "b.f42.ag": [2053], "nolager.espiv.net": [20058], "adminguide.stanford.edu": [15635], "zln.do": [2053], "k2s.cc": [8858], "www.sanoma.fi": [14527], "evrgr.in": [2053], "bfoot.co": [2053], "oas.org": [12307], "www.dicesoft.net": [4535], "secure.holidayextras.co.uk": [7595], "minsexmatch.com": [2053], "bmlau.io": [2053], "www.orbital.com": [12296], "m.lanthi.com": [2053], "jobshop.gateshead.gov.uk": [6584], "mttq.co": [2053], "thebluealliance.com": [16599], "sjofartsverket.tdconline.se": [16054], "lilux.lu": [9443], "captcha.luosimao.com": [20726], "www.aokplus-online.de": [357], "president.williams.edu": [18616], "ahmda.ws": [2053], "*.findthebest.com": [5955], "courses.soe.ucsc.edu": [17591], "nakul.gq": [2053], "my.ipswich.gov.uk": [8499], "yx.meituan.com": [10405], "wulong.jd.com": [8571], "secure.yoursole.com": [19038], "track.newjobs.com": [11510], "go.stfuawsc.com": [2053], "whatsuccesstakes.com": [6838], "*.svn.sf.net": [15423], "www.bad-dragon.com": [19475], "www.cloudmark.com": [3369], "ogutaku.link": [2053], "app-us4.resrc.it": [13832], "anil.work": [2053], "www.buytrezor.com": [2527], "www.iraiser.eu": [8501], "eply.com": [5044], "www.movzeed.com": [18972], "nerdsyn.cc": [2053], "hbsl.ch": [2053], "nead.me": [2053], "git.eleves.ens.fr": [5029], "djtim.es": [2053], "lists.sudoroom.org": [15834], "catooh.com": [2966], "fmc.thomsonreuters.com": [16650], "bandisoft-dl.bandicam.cn": [1685], "openmw.org": [12151], "blackberryid.blackberry.com": [2102], "trja.co": [2053], "lifebeam.vi": [2053], "c.exah.ru": [2053], "mjjc.info": [2053], "mylimehouse.cheshirewestandchester.gov.uk": [19700], "crypteianetworks.com": [3920], "www.frederikshavn.dk": [6234], "baise.jd.com": [8571], "gradianh.us": [2053], "www.aastatus.net": [437], "rubi.link": [2053], "schoolforge.net": [14604], "sharecare.to": [2053], "whoa.so": [2053], "grpy.co": [2053], "aldeparty.eu": [19339], "avuedigitalservices.com": [1499], "img5.wsimg.com": [14751], "l.kees.io": [2053], "gkstr.com": [2053], "*.ihub.co.ke": [20410], "drv-bund.de": [4487], "myfp.us": [2053], "wrtdb.uk": [2053], "www.verbraucher-sicher-online.de": [17908], "pics.crucial.com": [3902], "eventlogger.soundcloud.com": [15410], "dataprovision.education.gov.uk": [20009], "wastepermitss.northumberland.gov.uk": [20929], "store-skin.nytimes.com": [11189], "wiki.pha.jhu.edu": [16562], "carl.st": [2053], "www.proxytpb.nl": [21709], "jankratochvil.net": [20523], "browser.yandex.by": [18953], "start.me": [15657], "admtl.com": [729], "cquotient.com": [19810], "fwd.sf3soft.net": [2053], "www.travel.state.gov": [17345], "navteqmedia.com": [11062], "18f.gsa.gov": [6503], "nbcudigitaladops.com": [11064], "solutions.canon.com": [2868], "search.jd.hk": [8572], "ipre.st": [2053], "kitschi.es": [2053], "www.tcl.tk": [16241, 16242], "images.cars.com": [2923], "arvn.cf": [2053], "www.ehs.wustl.edu": [18290], "mtgox.com": [10869], "penta.debconf.org": [4346], "demo.gavick.com": [20206], "mail.aol.co.uk": [360], "myshp.suttonhousingpartnership.org.uk": [21620], "mbj.im": [2053], "ams-login.dotomi.com": [4797], "sirv.ooo": [2053], "stardock.com": [15653], "s126.cnzz.com": [3391], "www.decidethefuture.org": [19886], "www.logmeinrescue.com": [9713], "click.intel.com": [8359], "surfmail.rrz.uni-hamburg.de": [17229], "dncdedupe.hdfcbank.com": [7389], "brkbyr.co": [2053], "restaurants.lastminute.com": [9318], "mengzhou.meituan.com": [10405], "deshp.me": [2053], "www.omnirom.org": [11998], "www.supertracker.usda.gov": [17495], "springerzahnmedizin.de": [15562], "b.yabe.jp": [2053], "alertaenlinea.gov": [12009], "*.xing.com": [18877], "redmine.pfsense.org": [12819], "elbks.com": [2053], "riknow.co": [2053], "www.getmailbird.com": [6717], "papadumgeek.com": [2053], "cancel.im": [2053], "demandstudios.com": [4422], "phej.co": [2053], "kkh.de": [8885], "www.discogs.com": [4625], "news.cpanel.com": [2708], "jammerbugt.dk": [8653], "empireblu.es": [2053], "shop.threema.ch": [16668], "ww7.investorrelations.co.uk": [6836], "ule.worldcat.org": [18748], "static.slickdealscdn.com": [15203], "gp-digital.org": [20274], "www.usukita.org": [17346], "chronicle-store.com": [3181], "tests.netsekure.org": [11442], "cox.com": [3808], "ffmedia.co": [2053], "portal.infinity-tracking.com": [8244], "freman.tl": [2053], "www.calyxinstitute.org": [2818], "jouz.es": [2053], "jpa.co": [2053], "ccure.me": [2053], "ebphd.co": [2053], "tshare.to": [16120], "kars4kids.us": [2053], "myimpact.ncl.ac.uk": [11073], "*.www.footaction.com": [6130], "meetings.io": [10384], "vdqbulbs.com.au": [17769], "hazem.it": [2053], "www.geovation.uk": [6672], "www.bol.de": [16433], "railsconf.com": [13762], "njcb.co": [2053], "bcomm.wales.gov.uk": [18252], "emt.io": [2053], "orsp.in": [2053], "xenforo.com": [18862], "www.disman.tl": [4650], "dscvrmt.com": [2053], "couponcabin.com": [3779], "strength.runnersconnect.net": [21339], "cdn.betrad.com": [5565], "dsgn.in": [2053], "kickassapp.com": [9027], "www.b2s.co.il": [19473], "secure1.carlisle.gov.uk": [19648], "strou.be": [2053], "www.ownedcore.com": [12389], "mailconfig.ovh.net": [12378], "idcc.me": [2053], "hstl.co": [2053], "*.v.gd": [21889], "qtbl.es": [2053], "t.cuckshare.com": [2053], "delphi.im": [2053], "rvgt.ch": [2053], "pando.com": [12562], "pedagoji.anadolu.edu.tr": [1025], "greenqloud.com": [7046], "mdb1.info": [2053], "www.drawingbynumbers.org": [4841], "www.hillaryclinton.com": [7549], "upcmail.upc.cz": [17278], "www.bitcoin.co.id": [2015], "anonymox.net": [1090], "vtracy.de": [18162], "statesmanjournal.com": [15676], "reklamport.com": [13984], "reviewjournal.com": [9313], "www.dnswatch.info": [4141], "glob.st": [2053], "fr.tchibo.ch": [16240], "www.pragprog.com": [13238], "media.amctv.com": [345], "bazaarbay.org": [1757], "crowdcurity.com": [3895], "upload.yubico.com": [19052], "maps.gstatic.com": [6969], "netzclub.net": [20895], "srv.cdn-asknet.de": [1303], "eoa.cl": [2053], "m86security.com": [9867], "isin.gs": [2053], "www.us.elsevierhealth.com": [5289], "dblake.co": [2053], "www.tagesschau.de": [21650], "x.e-7.com": [2053], "unserertage.com": [2053], "a.brandonlau.ca": [2053], "irsecure.caltech.edu": [2815], "diskcryptor.net": [4648], "kdab.com": [8870], "time2play.mobi": [16725], "weknow.dental": [2053], "gruen-digital.de": [7111], "www.zlavadna.sk": [19196], "people.com": [12758], "pcmi.ias.edu": [7815], "nyp.st": [2053], "ksyst.ms": [2053], "tetadrogerie.cz": [21684], "blog.torrentbit.net": [16856], "www.retrousb.com": [14061], "fgoo.se": [2053], "lever.co": [9428], "svystw.info": [2053], "www.codecombat.com": [3424], "img0.glassdoor.com.au": [20249], "dune.bnl.gov": [19564], "lrofpr.co": [2053], "krasnoyarskiy-kr.beeline.ru": [1801], "services28.ieee.org": [7862], "campina.de": [2841], "olb.nationwideinternational.com": [11280], "*.blogspot.ch": [2166], "*.jottit.com": [8788], "helpful.im": [2053], "*.blogspot.cl": [2166], "*.usgs.gov": [17339], "*.blogspot.ca": [2166], "nzu.lu": [2053], "cbc.social": [2053], "neoseeker.com": [11349], "sociology.georgetown.edu": [6668], "typo3.org": [16149], "coralproject.net": [19792], "forum.ovh.es": [12378], "kylec.us": [2053], "connect.iso.org": [7972], "californiagenealogicalsoc.worldcat.org": [18748], "opencl.nl": [2053], "pd.rkn.gov.ru": [14146], "mrunr.com": [2053], "beyr.mx": [2053], "*.studyinaustralia.gov.au": [15798], "gstub.be": [2053], "questioncopyright.org": [13586], "*.uptodown.com": [21873], "cpdonline.wku.edu": [22039], "255b.us": [2053], "forum.filezilla-project.org": [5911], "link.blurby.co": [2053], "go.ikp.cc": [2053], "gregmorris.biz": [2053], "www.vodafone.com": [18110], "anonysurfer.com": [1088], "iocareers.state.gov": [17345], "www.genua.de": [20223], "link.mbym.net": [2053], "globr.es": [2053], "ao1tv.com": [2053], "www.esri.ie": [5064], "loncapa.sfu.ca": [14893], "*.secure-secure.co.uk": [14729], "www.its.thm.de": [16066], "eet.eu": [5004], "*.telerik.com": [16352], "www.theexplorercard.com": [16538], "wsq.umeng.com": [21847], "mx.tumblr.com": [17101], "myitcv.org.uk": [11026], "www3.camden.gov.uk": [2829], "*.onlineshoes.com": [12073], "www.usainteanne.ca": [21877], "mktom.com": [2053], "www.apsislead.com": [1180], "www.moreinterop.com": [10776], "aftontrailrun.com": [752], "url.divi.web.id": [2053], "awp1.us": [2053], "ferr.us": [2053], "lvl.li": [2053], "u4.qiyipic.com": [20413], "exm.nr": [2053], "mypoints.com": [10965], "bar.yandex.com": [18956], "rmax.ga": [2053], "*.internap.com": [8403], "us.napster.com": [20874], "git1.net": [2053], "camsis.cam.ac.uk": [17529], "leerstandsmelder.de": [20654], "banners.spiceworks.com": [15517], "blogs.kcrw.com": [20584], "lendr.net": [2053], "*.mediahub.com": [10319], "support.anubisnetworks.com": [1113], "ciao.de": [3191], "fender.com": [5864], "www.ru-golos.ru": [13711], "freebiblesoftware.com": [6257], "popehat.com": [13143], "sisu.ut.ee": [17347], "app.xaraonline.com": [18844], "educacursos.com": [5194], "go.sendo.vn": [2053], "mydatapipe.net": [10993], "nxo.do": [2053], "*.amahi.org": [947], "mis.su": [2053], "hwtz.us": [2053], "crm.panoptykon.org": [12570], "macropage.info": [2053], "michelinmexi.co": [2053], "kopp.la": [2053], "services.renater.fr": [13999], "cartaovb.com": [2053], "cdn.ticketsource.co.uk": [21737], "gdgtmac.co": [2053], "bettershopping.eu": [1883], "securelist.ru": [14748], "sovcomded.sovcombank.ru": [21516], "purp.ly": [2053], "faiumoni.de": [20094], "api.hitta.se": [20345], "avcosystems.com": [19460], "pek.me": [2053], "lu.avm.de": [1493], "www.dbs.com.tw": [4084], "www.taganrogprav.ru": [21648], "trac.openstreetmap.fr": [12245], "sknrd.co": [2053], "shannonhealth.com": [14904], "community.getmondo.co.uk": [20232], "oxygen.tv": [2053], "www.wildlifeofyourbody.org": [1820], "winspi.re": [2053], "l.dynhlx.com": [2053], "evolve.elsevier.com": [5287], "dmgt.co.uk": [4198], "mail.nic.ru": [11573], "ssl.buch.de": [16433], "static2.kikisso.com": [20594], "quitnow.smokefree.nhs.uk": [11102], "agh3.me": [2053], "chromestatus.com": [3178], "qtool.leeds.ac.uk": [17604], "edgewall.org": [5184], "www.cohnreznick.com": [3453], "eris.im": [2053], "info.akbars.ru": [19335], "kbond.co": [2053], "m-privacy.de": [9859], "secura.us": [2053], "twisp.me": [17159], "bitsnoop.com": [2069], "img06.mifile.cn": [10560], "tw.benmau.com": [2053], "togetherjs.com": [16802], "metazen.info": [2053], "abrn.ca": [2053], "lonesysadmin.net": [9749], "on.the519.org": [2053], "csexy.co": [2053], "www.blogher.com": [2155], "c.revbrands.com": [2053], "cvimellesgriot.com": [2750], "lackname.org": [20626], "tanstt.me": [2053], "sellercentral.amazon.com": [952], "blogs.datadirect.com": [4258], "static.outspark.com": [12359], "okcoin.cn": [11826], "onthe.io": [12089], "npre.illinois.edu": [17544], "go.bong.asia": [2053], "www.ntmx.de": [11753], "crondash.com": [19819], "go.gorilla.sg": [2053], "jcg.im": [2053], "audioarchives.oc.usda.gov": [17495], "*.demdex.net": [4429], "go.dttw.nl": [2053], "go.chen.lt": [2053], "secure.webmercs.com": [4249], "subm.at": [2053], "www.secureinthecircle.com": [14742], "backstage.taboola.com": [16153], "my.gather.to": [2053], "helpdesk.infobox.ru": [8256], "justing.co": [2053], "mitcinfo.com": [2053], "loyaloop.tele2.lt": [16325], "*.beenverified.com": [1802], "whit.ht": [2053], "www.qsstats.com": [13518], "pirateaccess.xyz": [21712], "pimienta.org": [13211], "assets.strikingly.com": [15779], "condosforeveryone.com": [3625], "www.privacytool.org": [13317], "subito.migros.ch": [10566], "www.gpsoft.com.au": [4616], "engage.webtrends.com": [18467], "tyn.ch": [2053], "engineering.intercom.io": [8392], "www.explainxkcd.com": [5617], "short.tob.uy": [2053], "daili.1688.com": [44], "www.kaufland.cz": [8975], "asmsa.me": [2053], "grml.org": [6499], "www.consecur.de": [3613], "www.ntw.nhs.uk": [11102], "www.dslchecker.bt.com": [1593], "*.reservationcounter.com": [14037], "www-cdn3.pardot.com": [12605], "vn.norton.com": [11703], "s1.mzstatic.com": [11041], "api.twingly.com": [17155], "www.holidaypirates.com": [20349], "cache.gawkerassets.com": [6594], "smoo.sh": [2053], "avon4.me": [2053], "*.thegrommet.com": [16552], "open.kent.gov.uk": [9005], "freeassangenow.org": [6255], "italianrprt.com": [2053], "iron.fm": [2053], "spkrryan.us": [2053], "caofeidian.meituan.com": [10405], "games.mountyhall.com": [10810], "fdn.my": [2053], "www.kaosx.us": [20575], "promospot.meo.pt": [10440], "www.tiki-toki.com": [16714], "gerrit.onosproject.org": [11848], "starsearchcasting.com": [15650], "ep91prd.acs.ncsu.edu": [11690], "www.datamonitorhealthcare.com": [4285], "shopmimigreen.com": [14967], "horde-llc.com": [7639], "bms.so": [2053], "sbphx.com": [2053], "static.ak.facebook.com": [5733], "www.premiumissuer.com": [21191], "app.webmate.io": [18428], "letterboxd.com": [9424], "link.mybrdg.com": [2053], "ziggozakelijk.nl": [19180], "mail01.monex.co.jp": [10733], "s.ihg.bz": [2053], "oka.co.uk": [2053], "www.webconverger.com": [21989], "desktop.telegram.org": [16337], "vouchedfor.co.uk": [18143], "legitscript.com": [9389], "youri.zarb.org": [19110], "mz.meituan.com": [10405], "gwlemon.com": [2053], "reichelt.de": [13978], "pgw.udn.com.tw": [17224], "v007.ax2600ab.omhq.uprr.com": [21870], "cryptocoding.net": [19825], "egow.al": [2053], "fws.tmall.com": [21748], "mb-c.me": [2053], "tls.mbed.org": [10275], "odmtips.com": [2053], "enterprise.huboard.com": [20392], "bgr.rocks": [2053], "beforeyoudig.nationalgrid.com": [11270], "*.ccc.de": [2595], "moodle.lsbu.ac.uk": [9252], "luckyreferrals.com": [20723], "www.researchonline.org.uk": [21296], "app.get.no": [20229], "gameguy.ga": [2053], "sozone.de": [15298], "mail.theatomgroup.com": [16441], "s.posmap.net": [2053], "class.udngroup.com": [17224], "www.mbna.co.uk": [20762], "zhengding.meituan.com": [10405], "meetings.cms.gov": [19742], "sharerp.co": [2053], "m.kasta.ua": [2053], "*.usajobs.gov": [17308], "chatlio.com": [19688], "www.institute.nhs.uk": [11102], "awm.nz": [2053], "grmypro.co": [2053], "www.rnpdigital.com": [13674], "i1.ztat.net": [19094], "www.amctheatres.com": [346], "vdblo.gg": [2053], "s.mguy.ca": [2053], "*.latimes.com": [9775], "s.jui.cc": [2053], "woo.kz": [2053], "fixi.co": [2053], "www.mload.freenet.de": [6300], "swy.si": [2053], "ollen.work": [2053], "server.ualinux.com": [21833], "ctools.umich.edu": [17552], "buytun.es": [2053], "teisia.click": [2053], "jaq.alibaba.com": [850], "wne.al": [2053], "viaja.la": [2053], "www.krystal.co.uk": [9175], "blog.crazyegg.com": [3835], "thumbalizr.com": [21733], "grp07.ias.rakuten.co.jp": [13768], "www.bayproxy.pw": [21709], "www.uni-goettingen.de": [17451], "video.petfinder.com": [12808], "max.vc": [2053], "stv.columbia.edu": [3512], "morrisonscellar.com": [10790], "oldst.co": [2053], "sigmabeauty.com": [15023], "api.linode.com": [9547], "pic.afisha.mail.ru": [10040], "esportsea.com": [4944], "blog.honeynet.org.mx": [20356], "cdn.lesfurets.com": [9416], "njpa.co": [2053], "data.gpo.zugaina.org": [19238], "*.networkworld.com": [11459], "m.ffs.ch": [15946], "gcmd.co": [2053], "www.sync.com": [15979], "cclw.us": [2053], "stevetemk.in": [2053], "inquirehire.pstprod.peoplestrategy.com": [12761], "support.anybalance.ru": [1116], "irccloud.com": [8502], "awc.link": [2053], "paste.gajim.org": [6523], "www.n-2.org": [11042], "maur.us": [2053], "chspk.co": [2053], "to.fox6now.com": [2053], "jobs.london-fire.gov.uk": [20715], "images-2.gog.com": [6482], "ssl.toplist.cz": [16102], "ssl.zus.pl": [19080], "www.metanet.ch": [10487], "www.trustpilot.com": [17073], "blog.disability.gov": [19926], "cvc.li": [2053], "newsletter.quickline.com": [21243], "sogo.uni-ulm.de": [21850], "rdoproject.org": [13642], "send.gd": [2053], "teachers.sky.com": [15170], "gugo.it": [2053], "pvte.ch": [2053], "www.luxuryreplica.net": [9843], "ppcdn.500px.org": [195], "www.lookinglocal.gov.uk": [9762], "*.elevenpaths.com": [5262], "adelaide.edu.au": [621], "l.buzzzy.co": [2053], "*.designaddict.com": [4467], "attck.in": [2053], "digitalegesellschaft.de": [4588], "evm.dk": [5568], "www.uppmax.uu.se": [17352], "now.source-elements.com": [15417], "loadimpact.com": [9691], "rtou.ch": [2053], "demand.assets.adobe.com": [655], "elista.beeline.ru": [1801], "karger.com": [8946], "fls-eu.amazon.co.uk": [954], "puri.na": [2053], "yelp.es": [18979], "vptl.stanford.edu": [15635], "eatliv.es": [2053], "powells.com": [13214], "s4te.com": [2053], "wahl.tagesschau.de": [21650], "www.packetflagon.is": [21061], "kidmag.co": [2053], "oip.sc.egov.usda.gov": [17495], "study.monash": [15797], "gmx.co.in": [6467], "images.paypal.com": [12678], "www.f5.htw-berlin.de": [7246], "www.actor.im": [19282], "farcurry.cf": [2053], "numnu.ms": [2053], "manager.linode.com": [9547], "go.sawa.nu": [2053], "discussions.vtiger.com": [18161], "4ga.me": [2053], "s.slblabs.com": [2053], "static.intranet.tue.nl": [16129], "ajalo.xyz": [2053], "bitinvest.com.br": [2048], "special.habrahabr.ru": [7262], "nw.pepipost.net": [2053], "www.pha.ulaval.ca": [17515], "u0.qiyipic.com": [20413], "tst.life": [2053], "www.adscendmedia.com": [667], "amoad.com": [352], "login.paloaltonetworks.com": [12553], "it.pornworms.com": [13155], "jiay.in": [2053], "sm.mcafee.com": [10282], "overpass-turbo.eu": [21048], "w.xojane.co.uk": [2053], "alldebrid.com": [870], "www.otr.to": [11881], "sector.audio": [2053], "smartcard.nih.gov": [11241], "www.uptolike.com": [17669], "*.briansmith.org": [2365], "www.adcash.com": [607], "fi.libreoffice.org": [9471], "www.windowsphone.com": [18646], "codepoet.com": [19749], "www.abis-studien.se": [279], "trustedsec.com": [17064], "electric-cloud.com": [20023], "www.zuno.cz": [19077], "housing.illinois.edu": [17544], "blcktb.com": [2053], "s.yeoldreader.com": [16491], "a-br.in": [2053], "www.arrisi.com": [1251], "kgnb.am": [8874], "www.m.metro.ya.ru": [18930], "*.london2012.com": [9735], "*.flokinet.is": [6054], "hmvs.gr": [2053], "prglf.co": [2053], "hi.chaturbate.com": [3093], "www.wwte13.com": [18232], "norwegian.com": [11706], "www.shopandmall.ru": [21428], "opsterland.nl": [11324], "g.gay1.ws": [2053], "cdn.realdebrid.xtnetwork.fr": [18903], "joliebulle.tuxfamily.org": [21820], "www.birthdayinabox.com": [1967], "www.wp-tao.com": [18215], "theedgeclimbing.com": [16537], "app.onelogin.com": [12035], "ntwrk.biz": [2053], "portal.redpill-linpro.com": [13932], "www.sequencing.uio.no": [17615], "portal.cf.ac.uk": [2895], "www.itechnician.co.uk": [8008], "abma.de": [460], "sklg.net": [2053], "suckup.de": [15828], "clicklivechat.com": [3320], "on.andyet.com": [2053], "raulfp.es": [2053], "*.gostats.com": [6910], "cmit.us": [2053], "dreamedia.us": [2053], "commencement.georgetown.edu": [6668], "addictech.com": [614], "i.samh.fyi": [2053], "www.terminatorx.org": [16385], "riley.in": [2053], "link.getraf.com": [2053], "broadcasting.gamesports.net": [6541], "451.life": [2053], "diy.rescue.org": [21295], "idp.ual.es": [17361], "rrsd.me": [2053], "llgy.co": [2053], "int.mondediplo.com": [10729], "kholmsk.sakh.com": [21360], "dhammaloka.org.au": [1587], "pcphoto.me": [2053], "myvolunteerpage.com": [18129], "*.base.de": [1530], "a9.hitravel.xyz": [2053], "i.crackedcdn.com": [4421], "l.upfour.it": [2053], "yongji.meituan.com": [10405], "usfsp.edu": [17561], "defin.io": [2053], "developer.netflix.com": [10209], "sinsofasolarempire.com": [15100], "www.tiki.org": [16715], "bhnmag.co": [2053], "www.fluxcards.de": [6074], "saludable.unizar.es": [17643], "www.visn23.va.gov": [17297], "sl.bangajik.com": [2053], "refferer.disqus.com": [4656], "m.legal.yandex.com": [18956], "codiem.es": [2053], "s.devthon.org": [2053], "jobs.nodejs.org": [15074], "videotour.me": [2053], "coinsecure.in": [3472], "bitcointoyou.com": [2036], "s29.cnzz.com": [3391], "fork.im": [2053], "www.p-tano.com": [12406], "freshmilk.de": [6323], "www.tridium.com": [17009], "trendsal.es": [2053], "impactradius.com": [8160], "kunde.oeffentliche.de": [11929], "mhat.ch": [2053], "confy.do": [2053], "df.plugz.me": [2053], "go.todaytix.com": [2053], "turbosquid.com": [17111], "website.1and1.ca": [62], "*.chron.com": [7711], "qixia.meituan.com": [10405], "zenmate.pl": [19133], "cnr.berkeley.edu": [17526], "misende.ms": [2053], "lvbyt.co": [2053], "zenmate.pt": [19133], "www.datavantage.com": [4267], "www.yourlogicalfallacyis.com": [19037], "comics.dailykos.com": [4193], "wff.io": [2053], "online.birmingham.gov.uk": [19536], "we16.cf": [2053], "s73.cnzz.com": [3391], "sta.rw": [2053], "ynis.co": [2053], "888173.net": [231], "www.andrewblum.net": [1040], "tylr.net": [2053], "agencyrev.co": [2053], "s0.cyberciti.org": [4038], "btsport.com": [1617], "api.linksalpha.com": [9540], "chap.li": [2053], "*.cs.oberlin.edu": [11897], "webmail.1and1.co.uk": [63], "socialcampaign.com": [3889], "wedfrwd.co": [2053], "q.quadroi.com": [2053], "d-pix.info": [2053], "www.freedomonlinecoalition.com": [6290], "www.crunchbangplusplus.org": [3906], "elefant.es": [2053], "oebb.at": [20984], "rei.social": [2053], "web.slashdotmedia.com": [15193], "leeaase.me": [2053], "linuxacademy.com": [9578], "giff.ly": [2053], "cybersymposium.isis.poly.edu": [13113], "ebm.do": [2053], "jmsho.es": [2053], "famv.in": [2053], "small-firms.fca.org.uk": [5670], "fosters.ly": [2053], "www.blocktrail.com": [2140], "fpslink.tk": [2053], "qm.hitravel.xyz": [2053], "support.tierra.net": [16705], "www-edc.eng.cam.ac.uk": [17529], "*.seattle.gov": [3251], "malwr.com": [10095], "data.bilibili.com": [1928], "hebeiguan.jd.com": [8571], "my.ecosquid.org": [2053], "mrfrm.com": [2053], "www.eydap.gr": [7042], "regiobank.nl": [13962], "guerrillamail.com": [7133], "engage.rescue.org": [21295], "arexm.co": [2053], "forum.cyanogenmod.org": [4026], "community.namecheap.com": [11208], "sales-images2.therealreal.com": [21714], "alumni.lsbu.ac.uk": [9252], "ttip.state.gov": [17345], "wwl.io": [2053], "pmc.io": [2053], "s.ffggrz.de": [2053], "lucoza.de": [2053], "fghtcrft.co": [2053], "marsupi.org": [10194], "www.team-cymru.org": [16255], "msu.bz": [2053], "cloud.jeffreifman.com": [8697], "link.jkorty.com": [2053], "event.nzz.ch": [20974], "bit.glennbb.uk": [2053], "l.hdurer.net": [2053], "krma.me": [2053], "pds.jpl.nasa.gov": [11058], "eurasia.gp": [2053], "form.t-mobilebankowe.pl": [21643], "www.vdoth.com": [17876], "ffprofile.com": [5880], "jinjiang.jd.com": [8571], "storefront.nr-assets.net": [11142], "teknoport.cc": [2053], "wiz.fm": [2053], "seat.tl": [2053], "brick.st": [2053], "1.leadplace.com": [2053], "www.teamintraining.org": [16257], "onenote.com": [12039], "ctstatements.bristol.gov.uk": [19592], "mcgz.us": [2053], "*.mobstac.com": [10676], "static.flickr.com": [6034], "static.shareasale.com": [14906], "mail103.websupport.sk": [18456], "buuteeq.it": [2053], "4.asset.soup.io": [15415], "mailhost.stpeter.im": [15759], "i1.piimg.com": [16704], "famz.in": [2053], "stdo.ms": [2053], "bamsoftware.com": [1679], "a.zencdn.net": [19130], "berry.worldcat.org": [18748], "doku.ws": [2053], "s.aims.cu.cc": [2053], "rxnav.nlm.nih.gov": [11241], "prw.io": [2053], "fsawebenroll.ed.gov": [4988], "admin.verkaufen.ch": [21908], "fife-consult.objective.co.uk": [20979], "nrl.navy.mil": [17306], "rvtr.co": [2053], "content.internetvideoarchive.com": [8434], "www.buimg.com": [16704], "salixos.org": [21363], "48go.co": [2053], "advancedligo.mit.edu": [9914], "bitly.wg9s.com": [2053], "online.zammad.com": [19097], "www.scottishpower.co.uk": [14641], "s.sky365.co.jp": [2053], "www.jbfavre.org": [8687], "hg.fanboy.co.nz": [5764], "mrsk.co": [2053], "idmdc.tips": [2053], "lnkdby.me": [2053], "gger.it": [2053], "droplr.com": [4867], "bites.audio": [2053], "fus.mn": [2053], "trustkeeper.net": [17057], "www.bulbman.com": [2470], "polling.bbc.co.uk": [19500], "www.blockbuster.co.uk": [2136], "support.nvcc.edu": [11787], "hcntr.com": [2053], "cvco.co": [2053], "sovrn.com": [21517], "allflicks.net": [19349], "ringcentr.al": [2053], "deal7.uk": [2053], "on.nkn.us": [2053], "login.yahoo.co.jp": [18944], "suba.li": [2053], "repository.library.georgetown.edu": [6668], "account.qt.io": [13545], "www.avito.ru": [19465], "access.earthdata.nasa.gov": [11058], "sell2uk.co.uk": [21406], "www.metafaq.com": [20787], "phonon.kde.org": [8871], "img07.mifile.cn": [10560], "speedtest.net": [15509], "kindle.amazon.co.uk": [19365], "tyk.io": [17180], "*.ubi.com": [17370], "www.imfimg.com": [8138], "static.intsig.net": [20481], "exac.ly": [2053], "haganb.com": [2053], "j.wpimg.pl": [22055], "afterhours.lifehacker.com": [9492], "bitcoinxt.software": [2025], "gawk.us": [2053], "cgran.org": [2648], "svn.openezx.net": [12133], "casul.in": [2053], "icbit.se": [7829], "www.dsmltools.org": [19963], "apps2.buckscc.gov.uk": [19605], "moon.greenpeace.org": [7064], "docs.alfresco.com": [843], "simplyzesty.com": [21453], "diffu.se": [2053], "installments.com": [20467], "luxv.link": [2053], "iiam.me": [2053], "asi.org.ru": [19437], "client.scribblelive.com": [14654], "members.enlightenedperl.org": [5381], "*.ballou.se": [1677], "www.klikki.fi": [20610], "ibc.researchcompliance.vt.edu": [18031], "prep.rci.com": [18790], "img.thalia.at": [16433], "ads6.contentabc.com": [3678], "bem.info": [1551], "www.chip-app.de": [2652], "painte.rs": [2053], "go.nickc.at": [2053], "*.ad-juster.com": [551], "www.redplum.com": [13897], "www.packetstormsecurity.com": [12521], "biesjr.nl": [2053], "www.exclusivex.com": [5595], "cyx4u.com": [2053], "jota.site": [2053], "l.gspn.tv": [2053], "www.tv4.se": [16137], "d8.hitravel.xyz": [2053], "e.srf.to": [2053], "solutions.drweb.com": [4879], "connect.ok.ru": [11968], "www.m2c.ru": [20732], "m.lurkmore.net": [9837], "*.ubuntu-art.org": [21007], "svn.ninux.org": [11615], "pwg1.gtimg.cn": [7120], "*.yelp.com.au": [18979], "mhsmith.us": [2053], "sp2.eota.energy.gov": [5355], "www.hds.ucsd.edu": [17216], "www.stc.tid.gov.hk": [7212], "igo.tl": [2053], "go.starmeo.com": [2053], "go.arbahok.com": [2053], "omgw.co": [2053], "kuvalehdet.fi": [12335], "just-eat.no": [20565], "www.quickline.ch": [21243], "tsb.watch": [2053], "altontowers.com": [934], "s.roli.me": [2053], "d-inside.fr": [2053], "www.bing.com": [1949], "t.jorli.com": [2053], "www.wirralccg.nhs.uk": [11102], "reputa.me": [2053], "m.bankuralsib.ru": [1699], "bgzlle.com": [2053], "crfsd.co": [2053], "files.yandex.com": [18956], "www.elderscrollsonline.com": [5247], "royalsociety.org": [14235], "homepages.see.leeds.ac.uk": [17604], "dolphin.fyi": [2053], "freeutopia.org": [6272], "hi5.com": [20336], "zeugha.us": [2053], "his.worldcat.org": [18748], "demonsaw.com": [4437], "discopos.se": [2053], "f7it.com": [2053], "documentation.mamp.info": [20744], "www.weimarnetz.de": [22000], "www.piratebit.tech": [21217], "forum.teksyndicate.com": [16321], "mbakr.me": [2053], "g2f.org": [2053], "cfdn.at": [2053], "stig.gy": [2053], "go.stripped.co": [2053], "ivs.to": [2053], "www.paulschreiber.com": [12673], "d0g.gs": [2053], "quik.to": [2053], "lincolnshire.moderngov.co.uk": [20816], "nstr.co": [2053], "legaldirectories.com": [9386], "autop.co": [2053], "travian.su": [2053], "services.assetmanagement.hsbc.com.hk": [20380], "factorable.net": [5739], "www.survivetheclaireperryinter.net": [15916], "at.jchnrd.ca": [2053], "readandjep.pe": [2053], "openmicroscopy.org": [12219], "ikiwiki.info": [8111], "feryn.link": [2053], "static-hp.s-msn.com": [14297], "www.seattletechnicalbooks.com": [14697], "japanwi.de": [2053], "www.dagensgetaway.dk": [4186], "pacsec.jp": [12512], "wrzuta.pl": [18777], "rdg.st": [2053], "*.walgreens.com": [18253], "enttextbook.stanford.edu": [15635], "cert.unionpay.com": [17478], "pawn.gs": [2053], "www.poloniex.com": [13110], "m.oschina.net": [12321], "www.pamnews.com": [12555], "sherifflivescan.sccsheriff.org": [14579], "fwmapps.co.uk": [5787], "amsyste.ms": [2053], "webmail.hosts.co.uk": [7689], "myjd.jd.com": [8571], "hryhd.us": [2053], "vmail.me": [18097], "vicpk.co": [2053], "evpl.eu": [2053], "r-project.org": [13621], "lodi.illuminateed.com": [20430], "go.urosario.net": [2053], "secure20.pipni.cz": [12460], "mkiss.me": [2053], "thu.uz": [2053], "consult.manchester.gov.uk": [10107], "s.ndrsn.org": [2053], "afx.fyi": [2053], "rudo.co": [2053], "drownedinsound.com": [4869, 4870], "waivers.stanford.edu": [15634], "nitetimetoys.com": [11619], "*.journal-news.net": [8789], "iolproperty.co.za": [7923], "sellercentral.amazon.co.jp": [19364], "cdn.tinypass.com": [16761], "wiki.opencorporates.com": [12129], "www.hebdo.ch": [20330], "mnbar.us": [2053], "gaming.msi.com": [9957], "www.newsledge.com": [20903], "my.playosmo.com": [12328], "jobs.hasgeek.com": [7353], "file3.answcdn.com": [1099], "traviscistatus.com": [16978], "openflow.stanford.edu": [15635], "cc3.dealer.com": [4334], "hitcounter.govmetric.com": [6993], "news.huobi.com": [7769], "www.tcf.org": [16045], "c-cex.com": [2551], "1do.it": [2053], "sefton.greenparty.org.uk": [7052], "www.univ-smb.fr": [17510], "telvue.com": [16323], "www.altii.de": [930], "mpp.vindicosuite.com": [18013], "l.daed.me": [2053], "kfguan.jd.com": [8571], "d.medw.in": [2053], "idtravel.ba.com": [1527], "pearl.plymouth.ac.uk": [13055], "sact.atdmt.com": [10540], "www.browser.yandex.com.tr": [18954], "status.yammer.com": [18951], "mcwwr.org": [2053], "img02.findgravy.com": [5958], "cmod.me": [2053], "www.atstuff.com": [1369], "gstreamer.freedesktop.org": [6243], "esw.osu.edu": [11959], "cofbean.me": [2053], "westpac.com.au": [18518], "n-joy.de": [11044], "*.fastly.net": [5802], "link.wmtransfer.com": [18373], "monitor.haskell.org": [7361], "www.ehostpros.com": [5795], "subs.foreignaffairs.com": [6143], "www.cntraveler.com": [3620], "soylent.com": [15448], "engmt.co": [2053], "www.weeklyplus.com": [18478], "ny.ckbe.at": [2053], "urlt.de": [2053], "s.benmanns.com": [2053], "urcl.gq": [2053], "www.pinescharter.net": [12894], "geekfaeries.fr": [20215], "xtly.co": [2053], "www.spectrumbusiness.net": [15498], "stopthinkconnect.org": [15743], "cman.link": [2053], "9.vgc.no": [17776], "www.instagram.com": [8331], "www.vedtver.ru": [21901], "bungie.net": [2495], "indexoncensorship.org": [8208], "asm.ag": [2053], "markonefoods.com": [10189], "lichuan.meituan.com": [10405], "spanair.com": [15465], "www.solarmovie.ph": [15360], "7585.duoshuo.com": [19969], "*.thompsonhotels.com": [16646], "kbr.me": [2053], "repository.jisc.ac.uk": [8726], "url.abea.org.br": [2053], "www.casper.com": [2944], "mackparty.info": [2053], "cfire.mail.ru": [10040], "ptmt.fi.ncsu.edu": [11690], "finanz-bi.de": [2053], "the.osint.ninja": [2053], "service.snafu.de": [15269], "www.lfait.com": [9226], "*.dhgate.com": [4110], "link.artii.cn": [2053], "lynchinteractive.com": [9846], "crwded.co": [2053], "w4tchn0w.tk": [2053], "pixel-secure.solvemedia.com": [15375], "verisign.co.jp": [17915], "www.letemps.ch": [9346], "id.openmrs.org": [12150], "shutthebackdoor.net": [14997], "www.scene7.com": [14580], "portal.gradwell.com": [7011], "stjs-gp.com": [2053], "*.easydns.com": [5125], "feedmyinbox.com": [5854], "www.thehiddenbay.eu": [21709], "mycosmo.hk": [2053], "*.creativelittlereaders.com": [3853], "iwethey.us": [2053], "niro.li": [2053], "csect.in": [2053], "x.robisit.com": [2053], "img2.tv4cdn.se": [16137], "naughtyshowreviews.com": [11297], "mmira.co": [2053], "meuvw.vc": [2053], "gfm.news": [2053], "widget.quantcast.com": [13567], "www.constructor.maps.yandex.com.tr": [18954], "www.ccc.co.il": [2594], "secure.gettyimages.com.au": [6741], "server2.web-stat.com": [18344], "url.wkndrs.net": [2053], "oldebroek.nl": [11324], "m.tiny.pr": [2053], "xadmin.green.ch": [20280], "www.audioboo.fm": [1396], "d.hihex.com": [2053], "char.ac": [2053], "images.liftshare.com": [9497], "wra.cc": [2053], "wevebui.lt": [2053], "www.pulse.me": [13452], "egotastic.com": [5216], "www.jbox.com": [20529], "my.sfu.ca": [14893], "info.ngs.ru": [20907], "totacs.la": [2053], "meetings.internet2.edu": [8427], "sdn.geekzu.org": [6617], "sucshkr.co": [2053], "www.ethersheet.org": [5485], "www.pyeongchang2018.com": [21229], "l1.osdimg.com": [12322], "jsl.im": [2053], "www.crosswire.org": [3886], "305b.co": [2053], "cctor.us": [2053], "lml.ink": [2053], "www.pirata.top": [21709], "cokecce.com": [3476], "rabota.yandex.kz": [18957], "owa.usc.es": [17711], "rbwm.moderngov.co.uk": [20816], "www.rstforums.com": [13699], "s.fxclub.org": [2053], "ytlnk.co": [2053], "southdevon.greenparty.org.uk": [7052], "987.im": [2053], "akvorrat.at": [811], "bradleyf.id.au": [2318], "clients.electricstudio.co.uk": [5251], "l.leau.ro": [2053], "kr3.co": [2053], "dres.lv": [2053], "xuan.jd.com": [8571], "www.blocktogether.org": [2143], "forum.gethashing.com": [6700], "webmail.earthlink.net": [5106], "www.totalrecall.com": [1943], "quirks.com": [13599], "*.launchpadlibrarian.net": [9323], "chip.mx": [2053], "plvn.cz": [2053], "s.bionett.hu": [2053], "oiss.itsc.cuhk.edu.hk": [2747], "chubgtr.me": [2053], "nofuzz.la": [2053], "roadne.ws": [2053], "stufflicio.us": [2053], "cotse.net": [3764], "tv.help.sky.com": [15170], "us.jobs": [21876], "www.wxwidgets.org": [22072], "cdn.app.compendium.com": [3580], "amegy.co": [2053], "*.communigate.com": [3562], "staging.business.leeds.ac.uk": [17604], "www.chartio.com": [3083], "cfre.ch": [2053], "altex.ro": [927], "jcienter.me": [2053], "keva.vc": [2053], "metoxia.uio.no": [17615], "corporate.cqrollcall.com": [2712], "aerlingus.com": [721], "botconf.eu": [2294], "pkra.us": [2053], "sidecar.gitter.im": [6806], "rvowl.es": [2053], "sslproxy.getsatisfaction.com": [6738], "issue.swisscom.ch": [15951], "corkuniversitypress.com": [3742], "www.berniw.org": [1849], "apitygem.eweiqi.com": [20075], "selectricity.org": [14809], "givinghistory.stanford.edu": [15635], "placeimg.com": [12972], "dashboard.temando.com": [16365], "factsheets.inl.gov": [20462], "handelsbanken.fi": [7317], "destroyallsoftware.com": [4476], "image.providesupport.com": [13401], "freestyler.ws": [6250], "evlrecip.es": [2053], "x.ericluan.com": [2053], "jinks-wtd.us": [2053], "www.getmybalance.com": [6735], "www.automotivelinux.org": [1467], "ikesbrewha.us": [2053], "pkgs.alpinelinux.org": [909], "images.cdn.rackspace.com": [13740], "santa.fm": [2053], "mbed.org": [10275], "youcaring.com": [19011], "www.so.ch": [21629], "viedemerde.fr": [1867], "canvas.uw.edu": [17355], "*.unoeuro.com": [17649], "diapers.com": [19914], "wiki.kde.org": [8871], "www.lacrossetechnology.com": [9273], "starnet.com": [15645], "www.wizards.com": [18687], "movb.us": [2053], "burma.usembassy.gov": [21879], "dot.nnno.jp": [2053], "*.cafepress.co.uk": [2775], "ipf.li": [2053], "sharefest.me": [14921], "scontent-a.cdninstagram.com": [2616], "phoenix.symantec.com": [15969], "www.wulife.wustl.edu": [18290], "*.belezanaweb.net.br": [1812], "luxj.me": [2053], "l.ttys.me": [2053], "localsearch.ch": [9703], "www.machcomedyfest.co.uk": [9993], "cheekywench.com": [2053], "my.samsungknox.com": [14507], "www.uqwimax.jp": [17291], "short.soo.vn": [2053], "chic.kn": [2053], "a.getonce.com": [2053], "mfpkaty.com": [2053], "www.digiday.com": [4559], "superstranka.cz": [21610], "hints.netflame.cc": [11419], "cloud.gmo.jp": [6462], "www.curlingworld.com": [4003], "go.ucsc.edu": [2053], "login.get.no": [20229], "basildon.objective.co.uk": [20979], "galleryofguns.com": [20196], "*.dailyherald.com": [4188], "*.kantarlatam.com": [8937], "s.delvenetworks.com": [4418], "www.courscrypto.org": [3785], "hnsl.mn": [2053], "mybigcommerce.com": [1906], "indanc.uk": [2053], "www.gust.com": [7154], "pxls.me": [2053], "www.indymedia.ie": [20453], "www.panoptykon.org": [12570], "dmkt.tk": [2053], "jotform.com": [8786], "www.filemobile.com": [5915], "fullstackpython.com": [20186], "facturaelectronica.unizar.es": [17643], "onthehub.com": [21002], "on.obvi.fm": [2053], "idgfm.corp.aol.com": [361], "polibuda4life.dosowisko.net": [4782], "c.koda.li": [2053], "www.marketing.htwk-leipzig.de": [7736], "panel.bnc4free.com": [2217], "constructor.maps.yandex.com": [18956], "www.html5rocks.com": [7239], "x.ntldstats.com": [11151], "thecelebrato.rs": [2053], "*.cloudset.net": [3375], "xinle.meituan.com": [10405], "on.whio.com": [2053], "safecurves.cr.yp.to": [3817], "secure.rallycongress.com": [13771], "clearlink.com": [3293], "sub.ft.com": [5941], "giffgaff.com": [20237], "firsts.com": [5995], "democracy.bristol.gov.uk": [19592], "frerej.co": [2053], "americanaexchange.com": [985], "*.sgkb.ch": [20574], "cloudswitch.com": [3355], "suite.io": [15842], "epub.to": [2053], "cp.zoneedit.com": [19212], "cvh.md": [2053], "osumychart.osumc.edu": [11875], "platformadmin.com": [13004], "www.partedmagic.com": [21077], "partner.market.yandex.com": [18956], "trashy.com": [21785], "skeptoid.com": [21467], "directory.warwickshire.gov.uk": [21980], "senat.edu.pl": [14817], "mygoya.de": [11021], "sjcom.ws": [2053], "home.comparethemarket.com": [3575], "www.osec.pl": [12110], "chat.freed0m4all.net": [6281], "public.nurd.space": [11165], "osu.ppy.sh": [13232], "springfiles.com": [15557], "win-sv.jp": [18626], "yars.eu": [2053], "silasfin.ch": [2053], "cdtr.co": [2053], "www.adguard.com": [19291], "grenzverglei.ch": [2053], "www.westsussex.gov.uk": [18507], "dev.mheducation.com": [20790], "abcm.ch": [2245], "amur.rt.ru": [13703], "jobs.dwolla.com": [4913], "soundrone.tk": [2053], "www.apnaindia.com": [1135], "certs.vutbr.cz": [17814], "secureconnect.com": [14734], "calispora.org": [2811], "kinopoisk.ru": [20601], "scrt.in": [2053], "www.ntk.me": [11752], "s.xna.me": [2053], "kmpf.us": [2053], "digil.it": [2053], "lms4.learnshare.com": [9367], "secure.broadland.gov.uk": [19594], "piratehd.com": [12920], "timetable.search.ch": [14684], "lobbyradar.de": [22127], "platform.unifiedsocial.com": [17469], "www.tmz.com": [16087], "ei2.gatech.biz": [2053], "www.1and1.ca": [62], "zabaykalskiy-kr.beeline.ru": [1801], "ccompt.es": [2053], "freedomboxfoundation.org": [6287, 6293], "ws-s.zuoyebang.cc": [22145], "childwatch.uio.no": [17615], "cdn.gusto.com": [7156], "payab.it": [2053], "*.smart-dsl.net": [21477], "www.zdmcirc.com": [19068], "timeinc.net": [16731], "lavaboom.com": [9327], "*.webfaction.com": [18360], "images.bertrams.com": [1873], "h7.to": [2053], "myme.ms": [2053], "www.phihold.be": [12831], "fonts.wsj.net": [22059], "www.textpad.com": [16419], "wikileaks.org": [18590], "zg.meituan.com": [10405], "paulirish.com": [21084], "*.customersvc.com": [4015], "pbl.to": [2053], "myme.me": [2053], "i.hobo.im": [2053], "www.lauramercier.com": [929], "portafirma.ual.es": [17361], "wiki.novell.com": [11728], "tpb.genyaa.org": [21709], "engr.uw.edu": [17355], "mail.python.org": [13500], "login.iis.net": [7888], "cb.cool": [2053], "tchibo.sk": [16240], "bnq1.nl": [2053], "lefas.hn": [2053], "support.ccbill.com": [2592], "er24.joburg": [2053], "blog.matatall.com": [10227], "pieperhome.de": [21122], "www.newsroom.firstdirect.com": [20127], "bitcoin.com": [2016], "www.bauwesen.htwk-leipzig.de": [7736], "olpl.us": [2053], "joycasino777.net": [20552], "claireshare.me": [2053], "lpac.co.uk": [9248], "box.illinois.edu": [17544], "secondmarket.com": [14705], "*.crossref.org": [3885], "0ch.in": [2053], "snowdenarchive.cjfe.org": [2675], "esporteweb.com": [2053], "www.wed.is": [18471], "www.sakura.ad.jp": [14306], "www.connect.me": [3645], "zdsk.co": [2053], "attribute.adometry.com": [661], "startupsort.com": [15666], "pteb.es": [2053], "iskbw.fr": [2053], "www.caesenergy.com": [19627], "stvn.me": [2053], "shortyw.in": [2053], "*.uvcdn.com": [17752], "www.booktype.pro": [2259], "neweuro.pe": [2053], "movie.yam.com": [18948], "*.corecode.at": [3729], "go.1lambda.com": [2053], "www.hellosign.com": [7437], "www.ping.fm": [12896], "www.wetstonetech.com": [18519], "goldenc.link": [2053], "*.pega.com": [12738], "texastribune.org": [16417], "br.abea-arq.org": [2053], "apps.washingtonpost.com": [18287], "community.mcafee.com": [10282], "environment.leeds.ac.uk": [17604], "www1.accessedge.com": [19262], "hdb.so": [2053], "www.lever.co": [9428], "*.widgetserver.com": [18580], "npauley.im": [2053], "csa.buzz": [2053], "www.sexnarod.ru": [14883], "dermoncall.net": [2053], "jobs.broadcom.com": [2409], "www.bluechip.hu": [2199], "economicimpact.uic.edu": [17517], "p.po.st": [13056], "applicantid.cornell.edu": [3744], "*.aemi.edu.au": [317], "nradefensefund.org": [20945], "www.capitolmachine.com": [2881], "wordtothewise.com": [18733], "www.loanliner.com": [9694], "operations.sumologic.com": [15848], "nes.ncdc.noaa.gov": [11272], "on.wzzm.com": [2053], "www.giving.cornell.edu": [3744], "kohls.com": [9107], "mm.lp214.me": [2053], "helpcenter.capitalone360.com": [2879], "blog.puphpet.com": [21226], "l.tooky.co.uk": [2053], "nkirch.de": [2053], "fryguy.me": [2053], "bodoni.stanford.edu": [15635], "www.phy.ornl.gov": [11892], "elik.es": [2053], "bicicletas.us.es": [17706], "crisispros.co": [2053], "a.gdz.kr": [2053], "l.924forum.nl": [2053], "pnnx.es": [2053], "www.bytemark.co.uk": [2547], "click.rebate.bg": [2053], "grm.my": [2053], "ptch.io": [2053], "jobs.slashdot.org": [15192], "*.yelp.co.uk": [18979], "www.weicaifu.com": [21999], "*.cashback.co.uk": [2940], "status.docker.com": [4704], "aboutmyvote.co.uk": [466], "fimfiction.net": [5931], "manage.ixwebhosting.com": [8027], "blesta.com": [2123], "r4ve.xyz": [2053], "webmail.pobox.com": [13057], "deliver.trafficforce.com": [16925], "www.sysmex.com": [16009], "codewithdan.me": [2053], "christophurl.co": [2053], "www.vkontakte.ru": [17785], "api.posteo.de": [13195], "bslatl.com": [2053], "www.rentex.com": [14010], "outlook.wustl.edu": [18290], "b7.hitravel.xyz": [2053], "thepiratebay.bypassed.date": [21217], "www.aspplayground.net": [395], "crowdstrike.com": [19822], "msi.tmall.com": [21748], "transactauto.com": [16936], "pervomayskiy.beeline.ru": [1801], "www.freightcalculator.com.au": [6312], "www.samssoftware.com.au": [14499], "georgetown-msb.piwikpro.com": [21139], "srv44c.xxxyours.com": [22090], "freefind.com": [6244], "ebanking.kr.hsbc.com": [7233], "personalweb.alipay.com": [857], "www.purdueplantdoctor.com": [13462], "yunohost.org": [19058], "portal.cisofy.com": [2672], "dfsweb.web.cern.ch": [2632], "sparebank1.no": [21524], "demo.com": [4101], "benland.is": [2053], "sluc.as": [2053], "www.endpoint.com": [5344], "www.ontrac.com": [12091], "cmnca.us": [2053], "omi.osu.edu": [11959], "spkhb.co": [2053], "mntz.lv": [2053], "tm.meituan.com": [10405], "www.localist.com": [9702], "*.shopify.com": [14970], "woz.ch": [18768], "www.fitnessmarket.com.au": [6004], "don.pasteur.fr": [12657], "jkise.com": [2053], "gettyimages.ie": [6741], "pong.qubitproducts.com": [13575], "tm.niklas.us": [2053], "upc.cz": [17278], "assets2.blubrry.com": [19560], "tamu.ag": [2053], "brianfor.de": [2053], "dburk.us": [2053], "nordea.*": [11667], "engt.co": [2053], "link.phillip.pe": [2053], "mantor.org": [10127], "bleek.in": [2053], "kinkadi.us": [2053], "www.amway.com": [929], "go.idroid.us": [2053], "6.da.gd": [4174], "memememe222.gq": [2053], "teamxlink.co.uk": [16261], "aclufl.org": [286], "moderngov.sutton.gov.uk": [21618], "obrl.in": [2053], "admin-survey.usa.gov": [17307], "j-lau.com": [2053], "my.polyu.edu.hk": [13116], "loopia.se": [9769], "pit-format-online.pl": [21137], "dowk.uk": [2053], "www.earthcam.net": [19988], "vndsv.net": [2053], "uk.goodho.us": [2053], "silkroad.com": [15037], "directline.com": [4610], "tkbr.me": [2053], "mdev.gogobot.com": [6934], "power.org": [13215], "*.4cdn.org": [185], "tzn.is": [2053], "www.polk.com": [13104], "iniego4u.com": [2053], "www.effi.org": [5209], "cjib.nl": [11324], "git.gitbook.com": [6794], "dawns.co": [2053], "eduroam.org": [5200], "iph1.it": [2053], "bitchmagazine.org": [2006], "ted.ucsd.edu": [17216], "s.itstoni.com": [2053], "emea.littlehotelier.com": [9635], "intelliot.com": [8367], "info.bnymellon.com": [19566], "jstein.ca": [2053], "tuxfamily.org": [17132], "parapa.mail.ru": [10040], "gml.cz": [6881], "profibeer.ru": [21207], "roundcube.carezone.cz": [2908], "piratebay.red": [21711], "phpc.ws": [2053], "notion.bi": [2053], "good.link": [2053], "avidbl.gs": [2053], "www.brennannovak.com": [2357], "websense.stanford.edu": [15635], "iaf.me": [2053], "x.yes99.tw": [2053], "j.ophan.co.uk": [12255], "api.rasp.yandex.by": [18953], "*.bhosted.nl": [1558], "axs.io": [2053], "peardenver.com": [2053], "bmdo.ca": [2053], "fanchang.meituan.com": [10405], "ytwy.tw": [2053], "gju1.alicdn.com": [846], "herego.in": [2053], "base.de": [1530], "www.tape.tv": [16210], "choices.truste.com": [16111], "lscf.me": [2053], "www.zeist.nl": [11324], "uhr.stanford.edu": [15635], "azf.io": [2053], "aflplaye.rs": [2053], "f.jdhgroup.com": [2053], "app-updates.agilebits.com": [765], "go.ielabs.org": [2053], "minklink.info": [2053], "tdill.co": [2053], "sarahpac.in": [2053], "int.anon-ib.su": [1080], "autodiscover.as.leeds.ac.uk": [17604], "3cub.es": [2053], "brbx.in": [2053], "passport-ckicheck.yandex.by": [18953], "eskp.in": [2053], "www.nos-oignons.fr": [11709], "oses.tm.com.my": [16341], "danblackme.uk": [2053], "www.netsekure.org": [11442], "www.global2000.at": [6842], "motherboard-images.vice.com": [17959], "media.techtarget.com": [16274], "lulea.se": [9820], "torbit.com": [16841], "secure.powertech.no": [13220], "retir.us": [2053], "profile.we-energies.com": [18313], "technologyreview.in": [21669], "tch.fm": [2053], "www.tocco.ch": [16797], "downloads.malwarebytes.org": [10093], "*.ds02.swisscom.com": [15951], "chsen.se": [2053], "anw.hr": [2053], "support.csbs.utah.edu": [17574], "delivery.b.switchadhub.com": [15954], "heartho.me": [2053], "pingidentity.com": [12899], "r.kaam.fr": [2053], "stefanoomes.eu": [2053], "rotherham.gov.uk": [14212], "archive2013.tacticaltech.org": [16156], "headbang.geekfaeries.fr": [20215], "tryc3.com": [2053], "www.web-hosting.com": [18341], "www.magictouch.com": [10025], "shop.sobaggy.be": [2053], "www.voat.co": [18102], "*.capture.umbel.com": [17425], "trisquel.info": [17027], "www.cbp.gov": [2581], "zbm.be": [2053], "etb.ht": [2053], "import.io": [20445], "meded.dom.wustl.edu": [18289], "script.google.com": [6962], "markets.wallstreetcn.com": [18258], "mainlinehobby.net": [10062], "pandp.club": [2053], "*.flurry.com": [6070], "www.strasbourg.eu": [15762], "www.propertyinvesting.com": [13387], "yn.af": [2053], "paulof.com": [2053], "vk.nomovok.com": [11659], "ngvpn10.nvidia.com": [11174], "www.feweb.vu.nl": [17813], "gju2.alicdn.com": [846], "rammstein.pt": [2053], "ethz.ch": [5074], "img.douyucdn.cn": [4813], "www.utrecht.nl": [11324], "clearos.com": [19726], "timbro.se": [16724], "servicestatus.sky.com": [15170], "salinasuhsd.illuminateed.com": [20430], "fact.cm": [2053], "ws.amazon.co.uk": [19365], "registryrocket.com": [13970], "act.freepress.net": [6265], "i4.services.social.microsoft.com": [10543], "antibodies.cancer.gov": [2864], "zyngaplayersupport.com": [19252], "elgiganten.se": [5264], "img1.xcart.com": [18806], "webmail.dreamhost.com": [4844], "careers.dbs.com": [4084], "open.manchester.gov.uk": [10107], "git.renater.fr": [13999], "capitolmachine.com": [2881], "bluewin.wemfbox.ch": [2210], "www.bookstore.wku.edu": [22039], "discourse.mailinabox.email": [10047], "*.progreso.pl": [13359], "lemar.in": [2053], "servercrate.com": [14850], "go.tylerlin.com": [2053], "drm.info": [4156], "*.pentacon-dresden.de": [14599], "ru.itao.com": [20507], "demo.bitmask.net": [2056], "bugs.openmw.org": [12151], "*.emknowledge.gov.au": [1426], "dripth.at": [2053], "tongliang.meituan.com": [10405], "appleexpert.net": [2053], "novokuznetsk.beeline.ru": [1801], "pcap.stanford.edu": [15634], "www.wildfiregames.com": [18607], "tmaape.me": [2053], "esec-lab.sogeti.com": [15350], "2hm.co": [2053], "aledne.ws": [2053], "archive.sub.fm": [21596], "prf.me": [2053], "*.morrisonscellar.com": [10790], "commerce.microsoft.com": [10543], "apply.business.hsbc.co.uk": [20375], "www.enom.com": [5383], "link.taufiq.me": [2053], "gna.org": [6882], "douban.com": [4802], "inco.re": [2053], "mvrd.es": [2053], "ilx.media": [2053], "bpt.me": [2420], "www.bitbucket.com": [2005], "flres.uk": [2053], "musikskole-tilmelding.dk": [10910], "mmath.is": [2053], "actonsoftware.com": [526], "club.1688.com": [44], "lgbtiq-greens.greenparty.org.uk": [7052], "www.tirerack.com": [16767], "www.wupaymentsolutions.com": [18230], "newrelic.com": [11483], "sguid.es": [2053], "offshrw.in": [2053], "btwx.co": [2053], "*.lfhair.com": [9229], "warrencwhite.me": [2053], "www.icracked.com": [7849], "www.heise-medien.de": [7428], "d.aschulman.com": [2053], "jacksfetishtube.com": [8631], "xbne.uk": [2053], "postgresql.eu": [13200], "vfutur.es": [2053], "www.flixbus.se": [6047], "www.bitcasino.io": [1979], "www.pumo.com.tw": [13457], "spelthorne.firmstep.com": [20125], "instalacja.tms.pl": [21750], "blackoutcongress.org": [2107], "eb.wtf": [2053], "www.truetrophies.com": [17051], "playmov.science": [2053], "medca.st": [2053], "o.aolcdn.com": [363], "www.hertz.ie": [7490], "crf.li": [2053], "login.uber.com": [17368], "synaptop.com": [15978], "www.hertz.it": [7491], "sttq.fr": [2053], "prettier.co": [2053], "kontalk.org": [9130], "camr.in": [2053], "respectourprivacy.com": [14046], "mitro.co": [10650], "bsim.info": [2053], "sport.unian.ua": [21851], "abuse.vutbr.cz": [17814], "www.smallingerland.nl": [11324], "*.kriso.ee": [9164], "s.wantedly.com": [2053], "beacon-dub-nopii.krxd.net": [9167], "chat.roblox.com": [14156], "multimedia.hrw.org": [7756], "pce.uw.edu": [17355], "al.meituan.com": [10405], "www.webtraxs.com": [18465], "kb.moodlerooms.com": [20828], "uline.com": [17410], "gift.cr": [2053], "daxue.taobao.com": [16206], "adv.ru": [19309], "aac.direct": [2053], "corelio.be": [3740], "s.matt3o12.de": [2053], "consultant.beeline.ru": [1801], "secure6.pipni.cz": [12460], "pt.fiksu.com": [5902], "linksmail.de": [9542], "law.wustl.edu": [18290], "de-is.dict.cc": [4536], "ets.org": [5075], "*.useresponse.com": [17714], "nawaf.ws": [2053], "1up.es": [2053], "stysafe.com": [2053], "hub.ba": [2053], "anyang.1688.com": [44], "www.pacbsd.org": [12511], "gwent.greenparty.org.uk": [7052], "www.yourkarma.com": [19035], "own-mailbox.com": [12385], "pythonclock.org": [13502], "aqmen.ac.uk": [19409], "tools.wmflabs.org": [18595], "livecontacts.services.live.com": [9644], "*.brenet.de": [2350], "dinahosting.com": [4603], "swisspost.ch": [13176], "voipdistributor.net": [18101], "fladry.com": [2053], "adwords.google.*": [6965], "4u2c.pw": [2053], "cleverbridge.com": [3299], "plugins.calibre-ebook.com": [2799], "tac.do": [2053], "ecoscentric.com": [4985], "dj.lk": [2053], "forum.mythtv.org": [11038], "www.ja.hideki.hclippr.com": [7180], "mdv.to": [2053], "www.slotsfrisoren.dk": [15215], "gwcard.co": [2053], "pit.dirty.ru": [4620], "ads2.williamhill.com": [18615], "reporting.vismaservices.no": [21929], "www.schule.sachsen.de": [14454], "i.sqp.me": [2053], "dudesvie.ws": [2053], "s.merkel-it.com": [2053], "ecitizen.oxford.gov.uk": [21052], "chblog.us": [2053], "i.4hm.uk": [2053], "sc.cdnma.com": [11371], "sbw.fr": [2053], "myphil.ly": [2053], "kwlnk.us": [2053], "webgility.com": [18415], "www.thegreatcoursesplus.com": [16550], "mirage.io": [10628], "d66.nl": [4074], "ashops.co.il": [19436], "ko.tn": [2053], "joomla.org": [8776], "smood.it": [2053], "ac2.me": [2053], "loverslab.com": [9796], "nationwide-jobs.co.uk": [11280], "thepiratebay.ar.com": [21709], "safety.stanford.edu": [15635], "www.topwar.ru": [21759], "pricegrabber.com": [13279], "images.eurogamer.net": [5521], "fcws.maxon.net": [10263], "taxpayersalliance.com": [16235], "thebntr.net": [2053], "cloudsso1.cisco.com": [3221], "hvgo.us": [2053], "*.cardealerstudy.com": [1573], "consumersniper.com": [3666], "uploads.strikinglycdn.com": [15780], "merchpl.us": [2053], "pointshound.com": [13077], "bespoke.hertz.com": [7511], "www.lumendatabase.org": [9825], "support.rangenetworks.com": [13783], "fr.3.boardgamearena.com": [2219], "us.gmocloud.com": [6460], "ltlbox.us": [2053], "listes.cru.fr": [3900], "mm-pf.de": [2053], "r.swaptor.nl": [2053], "nib.vub.sk": [18164], "t.5.ua": [2053], "www.netsparker.com": [11443], "www.bulksms.co.uk": [2471], "fmck.co": [2053], "j.j0.no": [2053], "adm.dynamicyield.com": [4926], "chitika.net": [3150], "l.cjcc.edu.kh": [2053], "media10.congstar-media.de": [3641], "lbs.amap.com": [19359], "sanfrancisco.thedungeons.com": [16452], "*.dyne.org": [4932], "involver.com": [8481], "budgetplanner.adviceguide.org.uk": [704], "fuskator.com": [6396], "buyhouse.yam.com": [18948], "mb.srb2.org": [14403], "www.subscribeonandroid.com": [21601], "oied.ncsu.edu": [11690], "docs.nodejitsu.com": [11647], "staging-cq.citrix.com": [3237], "a.chiprip.com": [2053], "site-cdn2.ghosteryenterprise.com": [6750], "www.internet-radio.com": [8421], "co.clickandpledge.com": [3314], "app.resilientsystems.com": [14039], "nex.sx": [11546], "i2p2.de": [7804], "forum.vodafone.co.nz": [18105], "mgtn.us": [2053], "unixmen.com": [17642], "pixta.st": [2053], "ntru.st": [2053], "fb.mizote.net": [2053], "tinyletter.com": [16754], "news.mve.com": [2053], "abc.alipay.com": [857], "brockman.com": [2412], "changwu.jd.com": [8571], "blog.shopstyle.co.uk": [14964], "www.berrange.com": [4220], "s.tickwanndu.de": [2053], "govcert.nl": [11324], "afford.com": [743], "zhuti.xiaomi.com": [18873], "go.drool.me.uk": [2053], "reyza.16mb.com": [2053], "nycfs.hn": [2053], "executiveinterviews.biz": [5596], "www.du00.cc": [19964], "cker.senta.me": [2053], "p.dandu.be": [2053], "*.collegeboundfund.com": [3488], "tnyltr.com": [2053], "truex.io": [2053], "offcloud.com": [11934], "intranet.tigerair.com": [16710], "*.techendo.com": [16282], "www.siemens.com.*": [15015], "l.dafacto.net": [2053], "static.fatwallet.com": [5807], "kabeldeutschland.de": [8912], "support.ngs.ru": [20907], "mrjoe.co": [2053], "jmp.velvet.org": [2053], "ilic.co": [2053], "www.fbnstatic.com": [6203], "fstrgdwns.com": [2053], "lsplinks.net": [2053], "c.asset.soup.io": [15415], "images.dt-static.com": [4750], "i.prvld.me": [2053], "tibetaction.net": [16679], "dn-bterimg.qbox.me": [13528], "docs.nexcess.net": [11549], "api.pay.xiaomi.com": [18873], "iptorrents.us": [7945], "vis.occrp.org": [11810], "ulisses-ebooks.de": [12029], "liuyang.meituan.com": [10405], "www.just-eat.be": [20565], "cfm.mobi": [2053], "i.scrollbol.com": [2053], "on.cajpia.com": [2053], "mapping.milton-keynes.gov.uk": [10588], "ds.tl": [2053], "beta.kontalk.net": [9130], "on.extemp.com": [2053], "ddv.fm": [2053], "blustr.pl": [2053], "www.answers.com": [1100], "*.gridzdirect.com": [7078], "vervehosting.com": [17937], "www.fastclick.com": [17834], "t21s.jp": [2053], "rj45.tv": [2053], "guidestar.org": [7135], "ad.dokant.com": [2053], "csgolounge.com": [3965], "strategic.usc.edu": [17564], "brdc.st": [2053], "learning.wales.nhs.uk": [11102], "pyeongchang2018.org": [21229], "fp.my.uh.edu": [17601], "on.wltx.com": [2053], "www.popads.net": [13129], "rdate.me": [2053], "hsrc.worldcat.org": [18748], "u.pjnorris.com": [2053], "blog.plug.dj": [13044], "istanbulhs.org": [8528], "link.101xp.com": [2053], "openstack.redhat.com": [13909], "partner.robokassa.ru": [14159], "info.whitehatsec.com": [18549], "www.univers-libre.net": [17512], "lists.nongnu.org": [5713], "bill.am": [2053], "www.it.mail.ru": [10040], "visualstudiogallery.msdn.microsoft.com": [10543], "blog.maxcdn.com": [10256], "ntvsp.org": [2053], "ignyte.io": [2053], "www.pcsp-emu.com": [5326], "www.wdr2.de": [18312], "www.metaproducts.com": [10478], "www.bespied-ons-niet.nl": [1852], "webmercs.no": [4248], "globusvoyages.ch": [7698], "www.draugr.de": [4839], "set-hiring.cs.stonybrook.edu": [15736], "ads.trafficjunky.net": [16922], "account.juno.com": [8835], "www-hotel.uu.se": [17352], "hirsty.org": [2053], "grr.la": [7133], "ps.bahn.de": [1660], "images.crocs.com": [3878], "bst8.gismeteo.ru": [6789], "on.cbnws.cc": [2053], "clasohlson.se": [3274], "sjms.co": [2053], "securelime.com": [14747], "sosf.me": [2053], "0blu.com": [2053], "www.adium.im": [635], "ablegamers.com": [459], "i.apadv.co": [2053], "arachnys.com": [1189], "ice.gov": [17299], "mkmoore.us": [2053], "framavox.org": [6214], "www.miamire.com": [10515], "www.ntnu.no": [11153], "cubehash.cr.yp.to": [3817], "fife.objective.co.uk": [20979], "www.jba.io": [8686], "billing.helpjuice.com": [7448], "vmkt.co": [2053], "yandix.ml": [2053], "conference2005.kde.org": [8871], "admin.1and1.co.uk": [63], "www.bitgamer.com": [2046], "nqsb.io": [11742], "svy.mk": [2053], "www.list.co.uk": [16464], "www.viraj.ulaval.ca": [17515], "mrjust.in": [2053], "ezra.cf": [2053], "glossary.knowledgeblog.org": [9100], "dnzl.nz": [2053], "www.sevenonemedia.de": [14880], "s138.cnzz.com": [3391], "www.videogamegeek.com": [17978], "cryptostore.ru": [19829], "daiwafi.sh": [2053], "cdn.onenote.net": [12040], "www.talentsmart.com": [16175], "micahri.ch": [2053], "intelliworkschat.com": [8370], "www.stubhub.de": [15789], "www.hh.se": [7191], "bitterwallet.com": [7692], "hertz.co.uk": [7510], "guru.sitescout.com": [15118], "ondzk.nl": [2053], "neptuneos.com": [20889], "*.sidereel.com": [15007], "irb.fraunhofer.de": [6230], "ark.cx": [2053], "drdobbs.com": [17204], "creatavist.com": [3840], "jiaxiang.meituan.com": [10405], "av.chaucanh.net": [2053], "mobile.swiss.com": [15948], "www.shaun.net": [14930], "www.blake2.net": [19554], "cdn.unibet.com.au": [17464], "lha-direct.voa.gov.uk": [21936], "atinternet-solutions.com": [403], "cloudfront.debian.net": [4351], "go.elantix.net": [2053], "pgvz.io": [2053], "intelli-direct.com": [8364], "www.kr.hsbc.com": [7233], "piriform.com": [12942], "www.liberis.co.uk": [20676], "ca-n.in": [2053], "www.voidtools.com": [21943], "s.c.je": [2053], "spectator.org": [15494], "youvisit.com": [19018], "mads.li": [2053], "llwebprod2.ll.mit.edu": [9916], "lv.4.boardgamearena.com": [2219], "lds.sachsen.de": [14454], "anyba.by": [2053], "ecm74.com": [5153], "eacpds.link": [2053], "calendar.google.com": [6962], "www.bitme.com": [2058], "www.iamthecavalry.org": [8032], "rambler.ru": [13775], "blog.popcorntime.io": [13142], "consult.kirklees.gov.uk": [9067], "tao.1688.com": [44], "www.claws-mail.org": [3280], "joycasino14.com": [20552], "jumpingjack.com": [8827], "store.space.com": [15453], "knowledge.allianz.com": [19351], "jsbi.org": [8603], "idsn.ws": [2053], "mol.gov.sa": [14545], "ey.io": [2053], "baxter.mysql.cesky-hosting.cz": [19680], "mozilla-russia.org": [10840], "www.pwsafe.org": [12643], "gui.do": [2053], "jobs.avm.de": [1493], "www.mpagano.com": [10859], "oncourse.iu.edu": [8214], "test.fail": [2053], "lancashire.firmstep.com": [20124], "idp.godaddy.com": [6898], "wikiwand.com": [22027], "acc.nz": [2053], "asset-3.soupcdn.com": [15416], "blog.nvisium.com": [11175], "www.babeljs.io": [1633], "sharing.ashampoo.com": [1285], "robmor.net": [2053], "taxbenefits.sheffield.gov.uk": [14939], "s.bao3.org": [2053], "jbond.xyz": [2053], "tapd.it": [2053], "npjhub.org": [8465], "hoco.me": [2053], "adobeconnect.com": [656], "mbjw.ca": [2053], "wubio.wustl.edu": [18290], "dizzy.to": [2053], "nouveau.freedesktop.org": [6243], "www.asacp.org": [384], "*.m-privacy.de": [9859], "nlayer.net": [11128], "ssl.net-m.net": [11404], "live.1nsk.ru": [71], "cral.us": [2053], "pcom.ml": [2053], "suche.gmx.net": [6467], "harland.com": [7339], "firma.money.pl": [10734], "trust-it.gr": [17056], "member.hide.me": [7531], "sucor.in": [2053], "alt.altmetric.com": [933], "www.keygens.nl": [9021], "www.atsec.com": [1368], "insa-strasbourg.fr": [8342], "rbnz.me": [2053], "*.sportifik.com": [15541], "secure.pythian.com": [21234], "oastats.mit.edu": [9916], "midkemiaonline.com": [20794], "minquan.meituan.com": [10405], "dhshrt.link": [2053], "static.bn-static.com": [1575], "www.impactsoftcompany.com": [8161], "wlaun.ch": [2053], "as.dfghj.de": [2053], "sipcraft.co": [2053], "grayl.in": [2053], "etc.tf": [2053], "www.titanfile.com": [16772], "ssq.re": [2053], "web.stanford.edu": [15635], "keys.pbsci.ucsc.edu": [17590], "sa2.roadtrippers.com": [21317], "www.joomlancers.com": [8778], "d.rlcdn.com": [13668], "ves.me": [2053], "www.bugcrowd.com": [2463], "rki.de": [14145], "foxrox.me": [2053], "assets1.getsatisfaction.com": [6738], "rspcashop.co.uk": [13696], "www.travelrepublic.co.uk": [16970], "my.wosign.com": [18693], "1qr.co": [2053], "rogert.me": [2053], "*.totalwebsecure.com": [16877], "www.gpadmissions.osu.edu": [11959], "swedbank.nl": [15935], "c.genetsis.com": [2053], "mikeweller.me": [2053], "*.bild.de": [1927], "www.oxforddictionaries.com": [12396], "it-offshore.co.uk": [7985], "www.filmlush.com": [5926], "*.scsstatic.ch": [14669], "samsclass.info": [14500], "reading.ac.uk": [17620], "s.arco.mx": [2053], "highland-consult.objective.co.uk": [20979], "hiconversion.com": [7526], "tmt.org": [16638], "paygoal.co": [2053], "heslo.centrum.cz": [19674], "esl.gg": [2053], "nintendogame.co": [2053], "www.footlocker-inc.com": [6129], "democracyclub.org.uk": [19891], "peixun.1688.com": [44], "mobilfunk.tchibo.de": [16240], "computerworld.com": [3598], "civic.mit.edu": [9916], "girl.guide": [2053], "www.cheapssls.com": [3100], "dano.cu.cc": [2053], "soutenir.framasoft.org": [6214], "yplanapp.com": [22119], "lite.openbank.ru": [21008], "pathology.georgetown.edu": [6668], "www.david-campbell.org": [4301], "whin.it": [2053], "www.fedgeno.com": [5842], "eye.cr": [2053], "tshark.ly": [2053], "a.dpsgm.de": [2053], "communaltv.sky.com": [15170], "link.infozde.cz": [2053], "infin.ca": [2053], "limun.org": [9520], "de-fr.dict.cc": [4536], "link.icbr.org": [2053], "baomoi.com": [1708], "forum.adguard.com": [19291], "www.prad.de": [13235], "www.rc.fas.harvard.edu": [7351], "www.nllgg.nl": [11126], "sites.fastspring.com": [5793], "forums.bukkit.org": [19610], "pl.meituan.com": [10405], "m.unkn0wn3d.com": [2053], "zdnet.asia": [2053], "one-co.co": [2053], "www.nsrc.org": [11147], "thetradi.es": [2053], "lists.sans.org": [14310], "www.luxomo.com": [9841], "hover.com": [7712], "go.sfvspug.org": [2053], "efax.co.uk": [5206], "link.ntroy.com": [2053], "taeke.ma": [2053], "famlaw.co": [2053], "panda.ly": [2053], "oecc.me": [2053], "exchange.ulaval.ca": [17515], "jods.co": [2053], "sharepoint.nexus.ox.ac.uk": [17557], "vivashop.ml": [2053], "mail.zaehlwerk.net": [19089], "*.veruta.com": [17936], "track.adcocktail.com": [305], "skimlinks.com": [15157], "panda.li": [2053], "fr.calameo.com": [2790], "voyage-prive.it": [18153], "ride.gs": [2053], "www.parkrun.org.uk": [12614], "www.dreampass.jp": [4848], "arjansp.nl": [2053], "jiscmail.ac.uk": [8586], "sharedtech.wustl.edu": [18290], "3v4l.org": [167], "www.linuxnewmedia.de": [9555], "myflavor.is": [2053], "www.osmglobal.com": [11872], "bugs.freebsd.org": [6237], "www.r00tz-org.theidentityproject.com": [13623], "oir.nih.gov": [11241], "expense.console.aliyun.com": [861], "i.thepen.com.au": [2053], "collier.aclufl.org": [286], "www.lesershop24.de": [20663], "solergo.li": [2053], "siteparc.fr": [15131], "www.consultation.rbkc.gov.uk": [21266], "www.openhunt.co": [12212], "bikeji.com": [1925], "www.bmibaby.com": [2213], "c4.tv": [2053], "jrf.jesus.cam.ac.uk": [17529], "hlp.bz": [2053], "b.kromebody.com": [2053], "cltbrst.co": [2053], "www.ereceptionist.co.uk": [5050], "costco.cyberpowerpc.com": [19843], "buswaytickets.cambridgeshire.gov.uk": [19632], "anest.wusm.wustl.edu": [18290], "asada.gov.au": [385], "shop.godeal.co": [2053], "tcblg.ca": [2053], "dobrochan.com": [4700], "www.proboards.com": [13338], "czone.eastsussex.gov.uk": [19994], "zenmate.be": [19133], "r123.co": [2053], "ca.norton.com": [11703], "slaveryfootprint.org": [15195], "mosaicscience.com": [10791], "ui1.assets-asda.com": [19442], "b.paradroyd.com": [2053], "go.saik0.net": [2053], "www.installgentoo.net": [19006], "whtspc.rs": [2053], "img7.bdstatic.com": [19507], "static.focus.de": [6091], "bytelove.*": [2548], "affiliates.eblastengine.com": [4976], "help2.talktalk.co.uk": [16184], "trustsign.com.br": [17058], "www.amara.org": [948, 19361], "idb.fm": [2053], "www.credit-suisse.com": [3862], "matrix.org": [10242], "zurb.us": [2053], "exchange.contextweb.com": [3682], "www.desertory.de": [4466], "bugzilla.libsdl.org": [9449], "scripts.verticalacuity.com": [17930], "img2.2345.com": [87], "kdp.amazon.de": [19369], "fukushima.inl.gov": [20462], "nstatic1.freepik.com": [6301], "brokerportal.anthem.com": [19395], "fsl.cs.sunysb.edu": [15736], "parship.blick.ch": [2125], "nic.swiss": [19950], "link.mhex.dk": [2053], "dlv.isc.org": [7966], "www.cryptabyte.com": [3912], "forum.andesi.org": [1037], "fhallot.me": [2053], "at.fdi.ca": [2053], "rodq.tk": [2053], "*.openf2.com": [12134], "lightbluetouchpaper.org": [9504], "mr1.in": [2053], "myass.in": [2053], "jano.sh": [2053], "ciges.upo.es": [17683], "ir.supermedia.com": [15869], "www.timeweb.com": [16727], "uspirates.org": [17344], "margeliz.com": [2053], "*.wechat.com": [18315], "webmail.sccgov.org": [14579], "synology.com": [15992], "test.uptobox.com": [21872], "www.swedbank.nl": [15935], "marketplace.cisco.com": [3221], "*.coverforyou.com": [3802], "neon.mn": [2053], "go.eset.it": [2053], "verasafe.com": [17905], "www.glue.umd.edu": [17549], "stamus-networks.com": [21564], "exs.ph": [2053], "golnara.me": [2053], "oo-software.com": [12092], "www.girlscouts.org": [6786], "bao.alipay.com": [857], "fastshare.cz": [5790], "*.thewrap.com": [16480], "my.1and1.co.uk": [63], "www.acuityscheduling.com": [543], "srcf.net": [15590], "cypherpunks.ca": [4059], "snackattack.ws": [2053], "www.gmodules.com": [6967], "l.tiengnga.net": [2053], "piwik.kevag-telekom.de": [9016], "sas-origin.onstreammedia.com": [12084], "okmw.net": [2053], "en.4.boardgamearena.com": [2219], "webftp.active24.cz": [19276], "*.moikrug.ru": [10719], "www2.osa.cuhk.edu.hk": [2747], "rnrsweetdeals.newsreview.com": [11531], "static1.mailerlite.com": [10048], "frame.neptun.bme.hu": [1570], "vrep.co": [2053], "html5video.org": [7241], "www.govtrack.us": [6995], "arc.am": [2053], "www.aegee-enschede.nl": [315], "e-sirket.mkk.com.tr": [9921], "err.tmall.com": [21748], "stayfray.co": [2053], "mhc.lc": [2053], "www.thoughtworks.com": [16655], "tile4.bbcimg.co.uk": [19502], "l21.in": [2053], "bugs.i3wm.org": [7806], "v3.lolagrove.com": [9730], "mytime.com": [10982], "digitaldefen.se": [2053], "mcdis.co": [2053], "ecard.ly": [2053], "123p0.sogoucdn.com": [15351], "snapengage-8.wpengine.netdna-cdn.com": [15273], "www.martineve.com": [10197], "www.dailydot.com": [4191], "zane.rocks": [2053], "z.wiskeng.com": [2053], "nucl.us": [2053], "play.spotify.com": [15548], "cookie.monster.com": [10752], "*.fetshop.co.uk": [5877], "*.wcl.american.edu": [971], "ok.siomponk.com": [2053], "bao.jd.com": [8571], "blog.serverdensity.com": [14858], "3iii.co": [2053], "www.commercial.hsbc.com.hk": [20380], "tgthr.com": [16427], "discavo.to": [2053], "l.plo.ink": [2053], "engemannshc.usc.edu": [17564], "*.arm.com": [380], "giwps.georgetown.edu": [6668], "idahostateu.com": [2053], "answers.uillinois.edu": [17238], "myvoice.earthlink.net": [5106], "gwi.se": [2053], "images.yandex.com": [18956], "forum-static.hummingbird.me": [7760], "hasen.site": [2053], "mortgages.capitalone.com": [2878], "ekma.co": [2053], "realvalue.me": [2053], "casinoaffiliateprograms.com": [2941], "www.wienerlinien.at": [18582], "security.berkeley.edu": [17526], "amazon.ca": [19362], "scrubb.in": [2053], "amazon.cn": [19363], "sbi.am": [2053], "teamboard.com": [16253], "ounce.it": [2053], "60minut.es": [2053], "outsyste.ms": [2053], "www.paramountmovies.com": [12599], "image4.pubmatic.com": [13422], "rpe.tw": [2053], "rb.quanshui.org": [2053], "ideas.pardot.com": [12604], "crunchlog.link": [2053], "isham.co": [2053], "cdn1.therepublic.com": [16472], "support.doublerobotics.com": [4808], "*.pbsrc.com": [12707], "vinelinux.org": [21925], "jobs.swisscom.ch": [15951], "oiss.wustl.edu": [18290], "hosting2go.nl": [7670], "www.myitworksevents.com": [10996], "reg.163.com": [43], "dpak.net": [2053], "www.basecamp.com": [1735], "*.shortyawards.com": [14981], "commoncraft.com": [3554], "www.saudi.gov.sa": [14545], "mpsau.com": [2053], "cdn.jandan.net": [8655], "l.parminut.cz": [2053], "clickgoes.com": [2053], "svor.me": [2053], "enhanceie.com": [5374], "www.site24x7.com": [15108], "notreinternet.mozfr.org": [20836], "btco.nf": [2053], "mail.piraten-ufr.de": [12934], "s.umeng.com": [21847], "reservation-desk.com": [14036], "sunrise.ch": [15859], "www.omniatv.com": [20992], "yourmailinglistprovider.com": [19029], "developer.berkeley.edu": [17526], "admissions.oxfordshire.gov.uk": [21056], "gpr.im": [2053], "dldp.co": [2053], "bross.in": [2053], "smartcardservices.macosforge.org": [9985], "new.volumio.org": [21946], "cdn1.illuminateed.com": [20430], "nbound.nvidia.com": [11174], "game.taobao.com": [16206], "l.flo.fyi": [2053], "whpub.me": [2053], "bespied-ons-niet.nl": [1852], "dasource.ch": [4243], "l.k.tt": [2053], "www.cdgcommerce.com": [2610], "dyndns.berlin": [4920], "www.m-connect.ch": [10566], "sa.ltmin.es": [2053], "www.bluekrypt.be": [2187], "www.paxtonrecord.net": [12675], "gradschool.utah.edu": [17574], "*.webxakep.net": [18395], "l.j23.co": [2053], "dashboards.cern.ch": [2632], "xmpp-ftw.jit.su": [8727], "*.spec.org": [14394], "ur1.me": [2053], "www1.my.commbank.com.au": [3542], "oftd.uk": [2053], "pastemarkdown.com": [12656], "getshirt.us": [2053], "richmondshire.gov.uk": [14110], "www.graasmilk.net": [7005], "www.botconf.eu": [2294], "7.url.cn": [21874], "docstorepro.com": [4711], "wow.zamimg.com": [19095], "lus.hm": [2053], "southern-electric.co.uk": [15443], "infradead.org": [8282], "www.appgratis.com": [1144], "mwgblog.link": [2053], "dane.xelerance.com": [18855], "www.connect2.northamptonshire.gov.uk": [20925], "sheyang.meituan.com": [10405], "csc.beap.ad.yieldmanager.net": [14114], "vetdepot.com": [17946], "pod.juliareda.eu": [8822], "my.godaddy.com": [6898], "techxpress.net": [16277], "di.papua.us": [2053], "access.here.com": [7465], "prevention.cancer.gov": [2864], "b57.li": [2053], "testcloud.io": [16406], "wingspod.com": [2053], "www.dlitz.net": [4116], "hi.megumi.co": [2053], "quote.liberis.co.uk": [20676], "axz.mx": [2053], "cat.gl": [2053], "passport.36kr.com": [142], "inedg.es": [2053], "p365.in": [2053], "filmdates.co.uk": [5924], "www.audioprointernational.com": [8376], "connectssl.find.ly": [5952], "*.webshoprevolution.com": [18382], "sb.plugz.me": [2053], "html5sec.org": [7240], "vstech.net": [17928], "dditservices.com": [19875], "on.wapt.com": [2053], "x.ikev.in": [2053], "atrg.it": [2053], "sukiya.us": [2053], "api.addresspicker.io": [618], "to.justpark.com": [2053], "remplan.co": [2053], "quickhacks.lifehacker.com": [9492], "bforge.me": [2053], "prdownloads.sf.net": [15423], "grenoble.indymedia.org": [8234], "www.bairdmounts.com": [19479], "ada.osu.edu": [11959], "w.thangsapp.com": [2053], "celloglas.net": [2053], "ru.foursquare.com": [6200], "khrlzh.fr": [2053], "episode.cf": [2053], "*.yelp.com.ar": [18979], "qrcode.kaywa.com": [8980], "cdn.business.comcast.com": [3525], "ns.newsys.in": [2053], "donate.hrw.org": [7756], "help.proboards.com": [13338], "lnk.xcodeit.net": [2053], "light.1688.com": [44], "*.poppysports.com": [13144], "*.googlesource.com": [6972], "tinybldc.com": [2053], "outb.ac": [2053], "*.www.salford.ac.uk": [17622], "zhoushan.meituan.com": [10405], "etweet.us": [2053], "www.xiscosoft.com.es": [18879], "l.niablog.com": [2053], "lowes.com": [9800], "seekingarrangement.com": [14797], "soireepr.co": [2053], "on.maxuri.com": [2053], "audio.guim.co.uk": [7142], "magnitogorsk.beeline.ru": [1801], "xlg.in": [2053], "visaeurope.com": [18055], "pdxint.cc": [2053], "pirateunblocked.xyz": [21712], "ncvo.org": [2053], "elee.sh": [2053], "301.me": [2053], "mycotopia.net": [11016], "soyoustart.com": [15299], "www.recordnotfound.com": [21277], "www.aamc.org": [268], "www.dkit.ie": [4114], "feedback.chef.io": [3115], "go.dirq.net": [2053], "www.fansub.co": [5771], "moodle.htw-berlin.de": [7246], "www.href.li": [7723], "ktnj.xyz": [2053], "www.edeka-verbund.de": [20006], "www.vpnreviewer.com": [17799], "biotest.t-nation.com": [16027], "www.pingxx.com": [12905], "www.infogr.am": [8258], "bmcb.us": [2053], "tpptraining.com": [16108], "facdev.co": [2053], "hoof.site": [2053], "evts.at": [2053], "bea.so": [2053], "mofi.bo": [2053], "earthsci.stanford.edu": [15635], "scarborough.objective.co.uk": [20979], "chaox.net": [3066], "elrn.co": [2053], "mirror.datapipe.com": [4289], "fotojan.net": [2053], "teemi.us": [2053], "websafe.virginmedia.com": [18028], "l.nbtwiki.net": [2053], "your2.trash.net": [16962], "cinsp.in": [2053], "wuliu.taobao.com": [16206], "www.zerzar.com": [19165], "vts.inxpo.com": [8482], "www.tutanota.com": [17125], "www.meetings.acs.org": [966], "ingressos.biz": [2053], "widepip.es": [2053], "blogs.nursing.osu.edu": [11959], "www.bitmazk.com": [2057], "www.vagosec.org": [21892], "www.amnesty.ch": [997], "soic.indiana.edu": [8215], "care-hhh.web.cern.ch": [2632], "www.acast.com": [19259], "cfx.jd.com": [8571], "gapgermany.de": [2053], "tp1.sinaimg.cn": [15091], "www.monash.edu": [10728], "bybanu.co": [2053], "letsgooutsi.de": [2053], "iguy.me": [2053], "aclunc.org": [298], "z.finnlaw.co.uk": [2053], "0.bigdot.gr": [2053], "www.netmarketshare.com": [11389], "ma.tthewk.com": [2053], "members.cloudatcost.com": [3341], "sbnoir.com": [2053], "kultursal.no": [2053], "marketplace.hubspot.com": [7739], "printpl.us": [2053], "imata.co": [2053], "static7.twilio.com": [17152], "webmail.cj2.nl": [2674], "arkn.ws": [2053], "7.asset.soup.io": [15415], "newyorker.com": [16468], "dispenser.tf": [4654], "s2.pstatp.com": [16881], "*.aspsys.com": [1309], "www.feitbulbs.com": [5860], "slw.io": [2053], "pay.btcc.com": [2438], "www.skepticalscience.com": [15152], "identi.ca": [8084], "*.spring-tns.net": [15553], "www.notacon.org": [11717], "jmall.jd.com": [8571], "alanhenry.lifehacker.com": [9492], "qa.openresty.org": [12242], "go.yanda.com": [2053], "lists.x2go.org": [18800], "gambleid.com": [6530], "onni.me": [2053], "ma0.twimg.com": [17153], "cthn.ws": [2053], "jsal.me": [2053], "www.snipcart.com": [15283], "stratten.me": [2053], "shop.digitalcourage.de": [4586], "secure.directorsdesk.com": [11060], "www.safervpn.com": [21356], "dcuz.us": [2053], "cvoss.me": [2053], "z.zaakirh.com": [2053], "aff.bz": [2053], "gaoyouguan.jd.com": [8571], "mm.meituan.com": [10405], "s.monib.com": [2053], "go.iain.in": [2053], "edrive-hosting.cz": [5191], "www.megabigpower.com": [10391], "policy.gmu.edu": [6666], "forum.ciphershed.org": [3210], "ny13.vote": [2053], "meck.co": [2053], "mxb.ca": [2053], "gettyimages.at": [6741], "safecharge247.com": [14468], "powersource.post-gazette.com": [13175], "joomlainfo.ch": [20550], "sfsh.in": [2053], "pds.meituan.com": [10405], "emanuelduss.ch": [5297], "gettyimages.ae": [6741], "falkvinge.net": [5755], "mobi.drweb.com": [4879], "code.prod.facebook.com": [5733], "r.rinse.it": [2053], "link.ota.moe": [2053], "*.nyx.com": [11185], "discovermeteor.com": [4637], "app.accelus.com": [19261], "metrics.tesco.com": [16396], "adminer.pipni.cz": [12460], "uniqe.ly": [2053], "telemetryverification.net": [16348], "contactprivacy.com": [3674], "oran.in": [2053], "guestcentral.bnl.gov": [19564], "forums.unrealengine.com": [17652], "pdcnet.org": [12838], "api.pw": [2053], "framework.web.cern.ch": [2632], "aim.com": [329], "hhpprtv.ornl.gov": [11892], "data.bistudio.com": [2232], "internetcoup.org": [8429], "tres.me": [2053], "sara.pe": [2053], "payments.amazon.co.uk": [19365], "sserp.me": [2053], "5july.org": [204], "owncloud.kairo.at": [8919], "dc1.client.hip.live.com": [9644], "lists.linaro.org": [9522], "my.ucsc.edu": [17591], "www.dbrgn.ch": [4316], "jpko.co": [2053], "diy.jd.com": [8571], "kylep.ca": [2053], "website.1and1.com": [61], "www.vpstudentsblog.utoronto.ca": [17629], "us-ignite.org": [17298], "myservice.bradford.gov.uk": [2317], "kundenservice.web.de": [18347], "stream.radiox.ch": [13750], "olv.co": [2053], "static.kn007.net": [9089], "www.zenmate.fr": [19133], "www.domaincoin.net": [4742], "go.paul.pp.ua": [2053], "dma.org.uk": [4606], "pds-engineering.jpl.nasa.gov": [11058], "www.markbillingham.com": [20753], "pnwmoto.co": [2053], "tricy.cl": [2053], "drmx.co": [2053], "ola.kent.gov.uk": [9005], "hhid.com": [7194], "etarget.ro": [5477], "help.instagram.com": [8331], "palsolidarity.org": [12542], "www.campbx.com": [2833], "vflm.tv": [2053], "hencc.me": [2053], "csl.illinois.edu": [17544], "myview.shropshire.gov.uk": [21440], "www.openitp.org": [12145], "s.apibloke.tech": [2053], "handbook.fca.org.uk": [5670], "*.ksl.com": [8904], "www.moviease.com": [10828], "grapher.compete.com": [3583], "www.newcastle.gov.uk": [11507], "lintong.meituan.com": [10405], "protect724.arcsight.com": [7517], "eu.api.soyoustart.com": [15299], "sensepost.com": [14830], "websupport.novell.com": [11728], "ultra4k.ml": [2053], "i2.social.microsoft.com": [10543], "www.cloudflare.com": [3344], "imerys.com": [8137], "anee.sh": [2053], "secure.netflix.com": [11421], "icg.pm": [2053], "bem.bz": [2053], "goeswhere.com": [6931], "www.telnic.org": [16360], "skipme.nu": [2053], "yourvotematters.homeless.org.uk": [20354], "www.worstpills.org": [18767], "hotpics-amateur.com": [7694], "www.yeahtv.com": [18918], "wiredsafety.org": [18666], "orario.search.ch": [14684], "accounts.alibaba.com": [850], "thevane.gawker.com": [6593], "atrativa.com.br": [1367], "*.paymentech.com": [12688], "x-pietro.tk": [2053], "cryptojedi.org": [3944], "sonic.tw": [2053], "kak.fm": [2053], "pwg0.gtimg.cn": [7120], "www.waffles.fm": [18240], "dobro.mail.ru": [10040], "masterh2.adriver.ru": [573], "gg.google.com": [6962], "billmaher.com": [1932], "partners.vouchedfor.co.uk": [18143], "www.law.wustl.edu": [18290], "jiffy.sh": [2053], "stratum0.org": [15768], "b.apploft.de": [2053], "img.litmuscdn.com": [9633], "s.hrink.me": [2053], "accessont.me": [2053], "www.dell.com": [4412, 4413], "sparkstudios.com": [15473], "de-pt.dict.cc": [4536], "thai.bangkok.usembassy.gov": [21879], "hagvall.eu": [2053], "octodex.github.com": [6801], "*.sc.omtrdc.net": [12004], "ldv-m.com": [2053], "*.32red.com": [124], "www.vb-paradise.de": [17871], "login.taobao.com": [16206], "mi.legacy.com": [9384], "user.ornl.gov": [11892], "eefg.me": [2053], "synergy-stage.eamobile.com": [5253], "ir.ln.com.ar": [2053], "rdpc.us": [2053], "cdnma.com": [11371], "www.localsearchassociation.org": [18974], "on.ktts.com": [2053], "api.plaza.rakuten.co.jp": [13768], "everydayhero.com.au": [5560], "crsb.it": [2053], "*.riga.lv": [14113], "porpcr.com": [2053], "scr-i.be": [2053], "orhy.me": [2053], "researchmap.jp": [14034], "srdrvp.com": [15592], "ixt.gs": [2053], "www.fortresslinux.org": [6176], "serviceportal.flughafen-zuerich.ch": [20136], "class-central.com": [3275], "go.babbel.com": [1631], "lexjet.net": [2053], "vapt.me": [2053], "fa.trend.az": [21786], "dlp.vc": [2053], "f5networks.*": [5658], "1-9.co": [2053], "www.optagelse.dk": [12267], "thenext.immo": [2053], "akamai.com": [800], "x.topansubs.cf": [2053], "rvws.io": [2053], "tress.guru": [2053], "y.slashdot.org": [15192], "*.serverloft.com": [14861], "blackhair.cc": [2053], "www.architectsjournal.co.uk": [1201], "link.powerbi.tv": [2053], "geschaeftsbericht.zalando.de": [19094], "at.godaddy.com": [6898], "card.cm": [2053], "telusinternational.com": [16364], "sade.com": [14457], "gc2.in": [2053], "fred.nic.cz": [11572], "www.ewents.ya.ru": [18930], "don8blood.com": [2053], "elst.es": [2053], "becs.me": [2053], "mail.justice.com": [8852], "videohelp.cit.cornell.edu": [3744], "kapsi.fi": [8943], "sandeen.net": [14516], "www.zchat.com": [22126], "clayty.pe": [2053], "s.fredalb.com": [2053], "www.iplocation.net": [20491], "www.perspectives-project.org": [18730], "go.hud.pw": [2053], "cerlogin.wosign.com": [18693], "mdfy.co": [2053], "m.tune.yandex.com": [18956], "yun2.org": [2053], "loaded.online": [2053], "box.kancloud.cn": [20573], "baremetal.com": [1714], "comptracker.rigzone.com": [1970], "www.th-nuernberg.de": [16428], "lmot.tk": [2053], "megabus.com": [10401], "www.redbridge.gov.uk": [13917], "shirazlug.ir": [14953], "shsta.co": [2053], "ny.lc": [2053], "www.privacyscore.com": [13321], "inlrecruiting.inl.gov": [20462], "gsprdzoe.fr": [2053], "internal.dynstatus.com": [4921], "www.vadino.com": [21891], "www.domainsite.com": [19942], "a.stand1.biz": [2053], "passport.bigmir.net": [1919], "jelle.io": [2053], "faq-o-matic.net": [5773], "folding.stanford.edu": [15635], "newcases.de": [2053], "s7.uicdn.net": [17236], "eptx.co": [2053], "www.vendini.com": [21904], "www.365tickets.com": [138], "url2png.com": [17701], "afgc.co": [2053], "www.torrentz.in": [16863], "okl.scene7.com": [14580], "beartracks-new.berkeley.edu": [17526], "cloud.webtype.com": [18392], "vlskvts.co": [2053], "upload.taobao.com": [16206], "serveis-e.upf.edu": [17674], "www.police.uk": [13087], "stubconnect.stubhub.de": [15789], "www.holidayextras.co.uk": [7595], "cart.tmall.com": [21748], "www.heute.de": [22127], "krasnoturinsk.info": [20618], "lavim.co": [2053], "day.tl": [2053], "locus.pub": [2053], "www.trove.com": [17038], "b.mie.do": [2053], "login.deploybot.com": [19894], "s.iks-host.com": [2053], "short.4dq.com": [2053], "www.sailthru.com": [14480], "gentux.co": [2053], "transfer.emea.symantec.com": [15969], "coz.pw": [2053], "*.medgadget.com": [10307], "sfsite.com": [14348], "mdhero.us": [2053], "www.yandex.ua": [18961], "oron.com": [12315], "david-t.ec": [2053], "rewire.link": [2053], "clickserv.sitescout.com": [15118], "l.apiguru.org": [2053], "www.eurodns.com": [5511], "mtvty.me": [2053], "bracknell-forest.achieveservice.com": [19265], "ab.meituan.com": [10405], "edms.cern.ch": [2632], "checkout.google.com": [6962], "proi.me": [2053], "www.boltbus.com": [2246], "www.immi.is": [7906], "www.derbyshireprepared.org.uk": [19897], "www.sandsmedia.com": [14449], "secureimages.teach12.com": [16476], "retail.garstelecom.ru": [20204], "www.frozencpu.com": [6349], "canada.isidewith.com": [20414], "cdn.sourcefednews.com": [15421], "www.sans.org": [14310], "www.americanfreedom.com": [980], "awe.st": [2053], "www.adsurve.com": [676], "educationusa.state.gov": [17345], "www.cassinoestrela.com": [2947], "web.retriever-info.com": [14059], "www.canon.no": [2868], "www.canon.nl": [2868], "fut.bz": [2053], "inarco.fr": [2053], "www.*.unibe.ch": [17525], "iot.one": [2053], "portal.equinix.com": [5438], "aaai.org": [426], "awe.sm": [1500], "nhmrc.gov.au": [11258], "chi.click": [2053], "push.lc": [2053], "www-csli.stanford.edu": [15635], "shrthnd.co": [2053], "qwww.aexp-static.com": [717], "activities.sugarlabs.org": [15836], "revenuesbenefits.blackburn.gov.uk": [19551], "jigsaw.com": [8719], "uwashington.worldcat.org": [18748], "cdn.adrtx.net": [631], "archives.jres.org": [8602], "ebill.checkpoint.thomsonreuters.com": [16650], "s.ctnguyen.net": [2053], "img6.qiyipic.com": [20413], "static-cdn.fullcontact.com": [6367], "allseenalliance.org": [877], "30s.ch": [2053], "www.icloud.com": [7845], "sayedha.net": [2053], "forum.worldofwarships.*": [18763], "socialc.am": [2053], "mea.li": [2053], "vcrpr.com": [2053], "smiletra.in": [2053], "en-cs.dict.cc": [4536], "secure.disqus.com": [4656], "link.azet.sk": [1520], "ftp-master.debian.org": [4353], "wpi.news": [2053], "bynd.link": [2053], "unishop.uow.edu.au": [17636], "securecomputing.stanford.edu": [15635], "www.sphere.com": [15514], "www.oshkosh.com": [12324], "wyntk.co.uk": [2053], "stable-addons.wesnoth.org": [18500], "12ne.ws": [2053], "askollie.warrington.gov.uk": [18280], "bizshark.com": [2087], "libraries.torbay.gov.uk": [16840], "sprav.yandex.com.tr": [18954], "www.jci.org": [8795], "www.desjardins.com": [4471], "ucc.click": [2053], "links.myloc.me": [2053], "truckla.ws": [2053], "pandor.am": [2053], "mshn.co": [2053], "minu.to": [2053], "link.hou.io": [2053], "www.apeul.asso.ulaval.ca": [17515], "shop.icracked.com": [7849], "laquadrature.net": [9267], "www.negativesum.net": [11327], "www.verisign.com": [17915], "goibs.us": [2053], "wiki.drweb.com": [4879], "supportion.org": [15895], "dgtl.ag": [2053], "staff.ie.cuhk.edu.hk": [2747], "m.ccs.com": [2609], "tenmarks.com": [16368], "extranet.wienerlinien.at": [18582], "www.nhw.se": [11670], "www.sheffield.gov.uk": [14939], "cg.nu": [2053], "www.oagcargo.com": [17204], "perryellis.com": [12792], "info.enphase.com": [5385], "secure.hosting.vt.edu": [18031], "www.abcmusicpublishing.com.au": [274], "scan.coverity.com": [3803], "efcb.info": [2053], "www.grnh.se": [7086], "oneonline.shropshire.gov.uk": [21440], "adlibris.com": [643], "hertz247.es": [7504], "login.hubspot.com": [7739], "yyan.ca": [2053], "rlrose.co.uk": [13669], "btcnews.co": [2053], "www.securedcontent.net": [14745], "emsonline.lea.sandwell.gov.uk": [21367], "*.april.org": [1179], "lindenwoodcollege.worldcat.org": [18748], "e3.xhamsterpremiumpass.com": [18817], "ashleycraig.com": [2053], "ariav.me": [2053], "vflink.it": [2053], "www.gibill.va.gov": [17297], "ming.social": [2053], "wordfence.com": [18735], "forum.pipni.cz": [12460], "caseking.biz": [2934], "www.linuxcontainers.org": [9580], "rebr.de": [2053], "www.web10.dk": [16180], "blamestella.com": [2110], "classes.uaa.alaska.edu": [17519], "www.leadpages.net": [9351], "odesk.by": [11923], "fail0verflow.com": [20093], "pagesix.com": [21064], "*.thetestcloud.com": [16406], "blog.ecampus.no": [4981], "subscribe.gq.com": [6496], "go.synbio.info": [2053], "careershub.bbc.co.uk": [1538], "bluepoint.com.ph": [2207], "droz.me": [2053], "reductr.es": [2053], "s.inviasms.net": [2053], "arbg.it": [2053], "p.lete.li": [2053], "w.liturgia.pl": [2053], "traffic.libsyn.com": [9482], "airbnb.co.*": [788], "mdta.co": [2053], "blog.poltava.to": [21166], "mhaas.co": [2053], "www.hertz-autovermietung.pl": [7497], "www.waag.org": [18235], "www.nhncorp.com": [11098], "hello.myfonts.net": [10949], "www.crocko.com": [3877], "admin.shortlist.com": [14979], "quamnet.com": [13564], "idevelop.ro": [8092], "librecmc.org": [20679], "cgi.timeinc.net": [16731], "www.emporioalberghiero.com": [5321], "wine.next.co.uk": [11552], "amnesty.org.ru": [1007], "www.see.leeds.ac.uk": [17604], "cledsp.georgetown.edu": [6668], "developer.ubuntu.com": [17382], "doc.powerdns.com": [13216], "bapco.com": [1529], "ietf.org": [7868], "wenku.baidu.com": [19476], "src.chromium.org": [3179], "inbx.in": [2053], "elef.in": [2053], "hoaumi.ch": [2053], "on.kayak.com": [2053], "*.greenhouse.io": [7058], "t.rasp.yandex.by": [18953], "assets.dt-static.com": [4750], "fallah.mobi": [2053], "initex.com": [8295], "jump.mahler.io": [2053], "redbullmobile.at": [13903, 13904], "newsgator.com": [11521], "urls.dalvi.me": [2053], "pe-t.ch": [2053], "www.remind.com": [13994], "herts.spydus.co.uk": [21546], "sn.nyc.mv": [2053], "1.mcdo.me": [2053], "aboutads.quantcast.com": [13567], "blog.gotomeeting.com": [6912], "ctea.in": [2053], "psismn.rs": [2053], "forgerock.com": [20145], "*.sinaapp.com": [15089], "*.pazaruvaj.com": [12704], "assets.omniture.com": [12002], "vant1.ca": [2053], "delivery.e.switchadhub.com": [15954], "uaa.paas.uninett.no": [17477], "l.minhoshim.com": [2053], "cloud.oracle.com": [12284], "hbs.me": [2053], "*.statcounter.com": [15670], "mtnews.co": [2053], "pcicomplianceguide.org": [12429], "qtsdata.it": [2053], "fluir.co": [2053], "demoiis.oxfordcc.co.uk": [21054], "astatic.alicdn.com": [846], "www.a1community.net": [252], "rad.microsoft.com": [10543], "clickr.ml": [2053], "hbanet.org": [7176], "firstfloor.org": [5994], "fsb.org.uk": [5841], "salfordel.im": [2053], "aipmm.io": [2053], "cta.fi": [2053], "www.aneros.com": [1052], "mail.biovendor.cz": [1956], "amiunique.org": [945], "sms.qiwi.ru": [13533], "acjs.aliyun.com": [861], "fabel.io": [2053], "s.occer.click": [2053], "cei.uniovi.es": [17479], "www.nzherald.co.nz": [11193], "webshared.mcore.com": [10805], "cloud.mongodb.com": [10741], "lemerid.ie": [2053], "ssc.osu.edu": [11959], "*.teenrevenue.com": [16315], "opendatacity.de": [21012], "winservices.web.cern.ch": [2632], "www.vesselbags.com": [17944], "classp.as": [2053], "wh.hitravel.xyz": [2053], "on.jwj.org": [2053], "1btcxe.com": [52], "www.track.courierpost.co.nz": [3784], "on.gei.co": [2053], "*.change.org": [3052], "www.nlm.nih.gov": [11241], "img-3.gizmag.com": [6816], "fvap.gov": [20191], "iopt.us": [2053], "eurovision.de": [5536], "community.netapp.com": [11374], "www.uplinklabs.net": [17679], "recruiters.jobs.telegraph.co.uk": [16340], "yoursole.com": [19038], "*.failuremag.com": [5743], "forums.zmanda.com": [19198], "gillard.biz": [2053], "ruhr-uni-bochum.de": [14267], "post2.audioscrobbler.com": [1397], "xen-orchestra.com": [18857], "africane.ws": [2053], "su.diggita.it": [2053], "wikinformatica.unizar.es": [17643], "home.wpm.neustar.biz": [11472], "www.modalitypartnership.nhs.uk": [11102], "*.pypy.org": [10462], "*.vidplay.net": [17995], "trefis.com": [16983], "*.kpnmail.nl": [8897], "smartadserver.com": [15228], "whitehatsec.com": [18549], "gdata.be": [6410], "udel.edu": [17535], "happyknowledge.com": [7331], "lexus.us": [2053], "webkit.org": [18422], "tunbridgewells.objective.co.uk": [20979], "about.orcid.org": [12108], "l.r-g.me": [2053], "support.us.playstation.com": [13015], "crtl.aimatch.com": [781], "*.mnginteractive.com": [9933], "*.ad4game.com": [553], "nugl.ink": [2053], "*.peer39.net": [12725], "dtc.umn.edu": [17554], "nl.vfmz.info": [2053], "izea.me": [2053], "design.ubuntu.com": [17382], "www.jeja.pl": [8698], "www.kyberia.sk": [9204], "cbnt.it": [2053], "scmp.com": [15436], "abo.lemonde.fr": [9348], "jatim.ga": [2053], "www.epuap.gov.pl": [19985], "edulink.bridgend.gov.uk": [19591], "mechanical.illinois.edu": [17544], "store.fruitninja.com": [6353], "vuex.vuejs.org": [18165], "www.goduke.com": [4895], "www.irpa.umd.edu": [17549], "www347.americanexpress.com": [972], "shopee.id": [2053], "members.dukeexechealth.org": [4895], "kyak.mobi": [2053], "viewpoints.iu.edu": [8214], "www.monitoring-plugins.org": [10744], "huangdao.meituan.com": [10405], "www.nametiles.co": [11215], "rt.debian.org": [4353], "www.webhostingstuff.com": [18364], "fehm2016.unizar.es": [17643], "www1.vtrenz.net": [15047], "2.taobao.com": [16206], "itunesu.itunes.apple.com": [1160], "aa.chaucanh.net": [2053], "littlesis.org": [9637], "demo.univention.de": [17511], "vols.me": [2053], "piwik.shop.heise.de": [7428], "aa.yayan.com": [2053], "go.lauritz.com": [2053], "portal.smartertrack.com": [15242], "music.usc.edu": [17564], "strt.ch": [2053], "www.nadir.org": [11197], "khl.io": [2053], "www.lesterchan.net": [9420], "en-sv.dict.cc": [4536], "classrecordings.wusm.wustl.edu": [18290], "www.vimention.mobi": [18009], "account.qubitproducts.com": [13575], "roo.li": [2053], "travelrepublic.com": [16970], "to.budurl.co": [2053], "myffc.co": [2053], "www.funkyandroid.com": [6384], "mirbsd.org": [10627], "focus.de": [6091], "to.4travel.jp": [2053], "givetolocal.stanford.edu": [15635], "ec.1688.com": [44], "*.nbc.com": [11237], "dtavan.me": [2053], "baremetrics.io": [1715], "dmid.si": [2053], "thepublic.nyc": [2053], "www.nullrefer.com": [11771], "gemius.com": [6637], "ned.li": [2053], "secure.gettyimages.co.uk": [6741], "vforms.ryedale.gov.uk": [14293], "go.vsu.edu.ph": [2053], "blog.psiphon.ca": [21221], "anct.me": [2053], "civilservicelearning.civilservice.gov.uk": [19721], "ceapa.im": [2053], "s.thezaz.com": [2053], "aarona.ca": [2053], "resourcex4.dditscdn.com": [4317], "joesager.com": [2053], "h.ealth.me": [2053], "sbk.bspb.ru": [2435], "quadpoint.org": [13551], "www.neodrive.co": [11341], "nait.li": [2053], "go.na9al.com": [2053], "candyey.es": [2053], "csc.jd.com": [8571], "*.forums.grsecurity.net": [6500], "13d.me": [2053], "webmail.onebit.cz": [11841], "passets-ec.pinterest.com": [12914], "www.kir.hu": [11976], "gs1.wac.edgecastcdn.net": [5180], "online.businesslink.gov.uk": [2518], "*.jmldirect.com": [8590], "huarong.meituan.com": [10405], "lab.geektimes.ru": [6628], "news.warwickshire.gov.uk": [21980], "ncsoft.com": [11080], "partnernet.avira.com": [1489], "world-lotteries.org": [22052], "dev.liveperson.net": [9654], "silv.be": [2053], "helpdesk.cloudlinux.com": [3349], "www.budgetinsurance.com": [2449], "xchatdata.net": [18807], "cms.winoptions.com": [18658], "vsac.nlm.nih.gov": [11241], "lists.webkit.org": [18422], "st8.it": [2053], "vols.ga": [2053], "simlystore.com": [15058], "thirddoormedia.com": [16634], "victi.ms": [17961], "mtekk.us": [10871], "www.nevis.columbia.edu": [3512], "www.awin1.com": [4569], "thne.ws": [2053], "ftbl.ma": [2053], "www.industrybotnetgroup.org": [8226], "www.badwarebusters.org": [1655], "mdpl.us": [2053], "www.mindtouch.us": [10597], "atp.alicdn.com": [846], "www.dinahosting.com": [4603], "cfmag.pics": [2053], "xtremepapers.com": [18904], "beys.ninja": [2053], "i2.letvimg.com": [20668], "dev.snip2code.com": [15282], "blog.core.okfn.org": [20986], "www1.taxactonline.com": [16234], "illowa.us": [2053], "suichang.meituan.com": [10405], "m.enskyshop.com": [2053], "nodejs.org": [11648], "pgnd.us": [2053], "community.freescale.com": [6302], "huadu.meituan.com": [10405], "mhuk.in": [2053], "mygap.jp": [2053], "unvd.it": [2053], "dir.jpl.nasa.gov": [11058], "www.imperialviolet.org": [8166], "inaturalist.org": [7920], "jpml.me": [2053], "press.unian.net": [21851], "luvit.me": [2053], "carasutra.co.uk": [2889], "pusers.centrum.cz": [19674], "digitalforensicsmagazine.com": [4570], "www.nitroflare.com": [20912, 20913], "kinox.me": [20597], "regex101.com": [13960], "www.dancesafe.org": [4212], "compass2g.illinois.edu": [17544], "salesmanago.pl": [14307], "m.3dlion.ru": [2053], "www.spinics.net": [15528], "hackertarget.com": [7276], "www.stitcher.com": [15732], "*.developerforce.com": [14487], "*.volusion.co.uk": [18132], "gmo-registry.com": [6463], "grassroots.org": [7023], "www.gum.co": [7146], "developer.iconfinder.com": [8066], "undergraduatecouncil.wustl.edu": [18290], "connexity.net": [3649], "www.prxbx.com": [13412], "newjob.me": [2053], "shop.macromates.com": [9998], "cindyshoots.me": [2053], "ronaldp.be": [2053], "argosemails.co.uk": [1224], "kktrvl.com": [2053], "addl.ee": [2053], "www.library.unc.edu": [17262], "ora.georgetown.edu": [6668], "www.tuningworld.com.au": [17106], "ltaa.be": [2053], "17goon.duoshuo.com": [19969], "np.meituan.com": [10405], "www.alzforum.org": [940], "tiles.bbcimg.co.uk": [19502], "bdltest.duapp.com": [19965], "maksukaista.fi": [20741], "wn.wsj.com": [22058], "rla.me": [2053], "verkkouutiset.fi": [17922], "ctsfw.worldcat.org": [18748], "yannick.net": [18964], "bsoc.co": [2053], "cz.usembassy.gov": [21879], "intra.cs.ut.ee": [17347], "a.hrc.onl": [7722], "blinktrade.com": [2132], "qtime.myportal.im": [10966], "mountsinai.org": [10806], "www.hostoople.com": [7683], "jonz.es": [2053], "www.infinitydev.org": [8243], "img3.bdstatic.com": [19507], "sb.scorecardresearch.com": [14635], "secure.pornhublive.com": [13154], "hcda.usc.edu": [17564], "lendeavor.com": [9403], "ditgadelys.dongenergy.dk": [4151], "www.baymirror.date": [21217], "2ksports.com": [105], "www.opencryptoaudit.org": [12202], "www.photonconsulting.com": [12859], "cnsci.us": [2053], "webmail.nyi.net": [11181, 11182], "go.lddg.co": [2053], "filmy.panoptykon.org": [12570], "rebar.me": [2053], "images-jp.amazon.com": [954], "*.httpbin.org": [7734], "c.sankakucomplex.com": [21368], "www.banx.io": [1705], "static04.vg.no": [17776], "www.caniusepython3.com": [2849], "www.opendz.org": [12131], "thinkwithgoogle.com": [16632], "www.beersofeurope.co.uk": [19513], "img.askleomedia.com": [1299], "youngintel.com": [2053], "freerad.io": [2053], "bondstheo.uk": [2053], "imdj.co.il": [2053], "shrt.grabski.me": [2053], "join.kcvids.com": [8868], "www.homelessveterans.co.uk": [7624], "otechtalks.com": [2053], "cotswold.objective.co.uk": [20979], "lkar.it": [2053], "cdn.picstat2.com": [825], "vinberdon.info": [2053], "piratenlogin.de": [12935], "wayf.wayf.dk": [18192], "bugs.swift.org": [15941], "www.imageshack.com": [8129], "0180.info": [16363], "www.compete.org": [3582], "trade.aliexpress.com": [847], "admin.testandtarget.omniture.com": [12002], "secure.xperiencedays.com": [18887], "specto.io": [15495], "mcafeemobilesecurity.com": [10280], "www.netlib.re": [11387], "*.canv.as": [2872], "connect.mheducation.com": [20790], "bldn.gr": [2053], "jax-rs-spec.java.net": [8673], "lehane.pics": [2053], "rlghd.co": [2053], "civicalg.com.au": [19720], "*.savethechildren.org.uk": [14554], "*.hpcf.upr.edu": [17284], "dl.wa9.us": [2053], "xuancheng.meituan.com": [10405], "dolphin.kde.org": [8871], "3ne2nr.me": [2053], "www.amsterdam.nl": [11324], "cn.vuejs.org": [18165], "powerofthe.link": [2053], "six.swiss": [2053], "i.ktld.co.uk": [2053], "hgrh.de": [2053], "securix.org": [14777], "cn.cloudflare.com": [3344], "social.lezhin.com": [20672], "community.yieldmanager.com": [14114], "enhan.co": [2053], "join.thetimes.co.uk": [16734], "www.svenskakyrkan.se": [15926], "schooladmissions.cheshireeast.gov.uk": [3125], "hkm.ma": [2053], "*.visitorboost.com": [1504], "report.boldchat.com": [2240], "iptvexp.eu": [2053], "aqu.to": [2053], "www.ud-media.de": [17225], "punchouttest.digikey.de": [4552], "hiiv.ee": [2053], "www.opintoluotsi.fi": [12258], "www.ncbar.org": [11079], "www.verisign.com.sg": [17915], "www.hipaatesting.anthem.com": [19395], "sywtt.com": [2053], "to.fbrz.io": [2053], "hostpointpartner.ch": [7686], "knowledgecentral.federalreserve.org": [5834], "ftp.dell.com": [4413], "my.inedo.com": [20454], "freenode.org": [20168], "magazinesdirect.com": [10013], "owa.portal.srgssr.ch": [21550], "go.3v1n0.net": [2053], "www.thenation.com": [16465], "klp.io": [2053], "youtube.com.bh": [19016], "*.huawei.com": [7737], "ws-na.amazon-adsystem.com": [950], "hipointinc.com": [7529], "qwebirc.org": [21246], "ebiz.tips": [2053], "*.myshannonconnection.org": [14904], "mobile.here.com": [7465], "s89.cnzz.com": [3391], "mso.me": [2053], "remedy.stanford.edu": [15635], "www.domaintools.com": [4750], "sec.video.qq.com": [13514], "www.thinglinkblog.com": [16625], "sosh.sh": [2053], "griffith.edu.au": [7081], "aftership.com": [751], "whvo.co": [2053], "wiki.t411.me": [16036], "forum.tampermonkey.net": [16193], "www.smoothieblend.com": [15257], "spain.palsolidarity.org": [12542], "xadmin.exchange.1and1.com": [61], "www.how-old.net": [7713], "myhaccp.food.gov.uk": [20142], "bricklink.com": [2367], "www.gp2x.de": [6486], "services.hon.ch": [7223], "support.tagboard.com": [21649], "fheba.ca": [2053], "lblprop.info": [2053], "search1.taobao.com": [16206], "*.filmtrackonline.com": [5921], "apel.osu.edu": [11959], "fcc.us": [2053], "m.zalando.be": [19094], "www.sittard-geleen.nl": [11324], "stlo.it": [2053], "sgds.io": [2053], "ngvpn20.nvidia.com": [11174], "b.yandex.kz": [18957], "chemistryjobs.acs.org": [977], "yongnian.meituan.com": [10405], "quality-abo.de": [13559], "qpr.nu": [2053], "www.ukashcardsatis.com": [17405], "mjac.me": [2053], "foll.ooo": [2053], "www.hyperboria.net": [7792], "tutti.ch": [21818], "geekagnt.us": [2053], "www.dokuwiki.org": [4728], "*.ctpsnet.com": [3869], "www.debian-fr.org": [4349], "en.metooo.io": [10495], "horaire.search.ch": [14684], "online.drweb.com": [4879], "player.vzaar.com": [18179], "l.bfgrossi.com": [2053], "nexcess.net": [11549], "www.novartisart.com": [11727], "mechef.link": [2053], "maps.google.com.*": [6969], "hotmail.co.uk": [7703], "cvut.cz": [4066], "bcp.crwdcntrl.net": [9776], "intl.aliyun.com": [861], "snipurl.xyz": [2053], "git.wj32.org": [18690], "www.askebsa.dol.gov": [19938], "bzo.rocks": [2053], "api.iperceptions.com": [20411], "gezg.in": [2053], "fullerton.edu": [6372], "merchant.exmo.com": [5607], "shop.blazingthyme.com": [11558], "ssbcpib01.nottingham.ac.uk": [11726], "server.weimarnetz.de": [22000], "squot.es": [2053], "ihit.co": [2053], "www.*.soton.ac.uk": [17562], "go.ustrive.com": [2053], "o-zone.vanco-asiapac.com": [17847], "pingtan.meituan.com": [10405], "rktn.de": [2053], "sso-prod2.cisco.com": [3221], "*.megworld.co.uk": [10387], "hum.ms": [2053], "www.teltarif.de": [16363], "thesatanictemple.org": [16574], "et06.xhcdn.com": [18815], "hoerbiger.io": [2053], "piratehole.com": [21709], "go.ns1.com": [2053], "download.wpsoftware.net": [18221], "temp.104.com.tw": [18], "srpg.me": [2053], "cdn1.onlinelaw.wustl.edu": [18290], "clicklnk.gq": [2053], "www.darktable.org": [4232], "dc.mit.edu": [9916], "17ac.re": [2053], "hum.mn": [2053], "v1.std3.ru": [15699], "fs11.formsite.com": [20148], "www.khm.uio.no": [17615], "on.trail411.com": [2053], "acyba.com": [549], "ehrd.udngroup.com": [17224], "my.team.id": [2053], "jcrp.us": [2053], "*.mbsportsweb.com": [9887], "www.securix.org": [14777], "www.n-joy.de": [11044], "erecruitment.wto.org": [18229], "accessguardian.com": [483], "manage.name.com": [11204], "khall.dk": [2053], "vfemail.net": [17774], "*.dassaultfalcon.com": [4244], "applipedia.paloaltonetworks.com": [12553], "www.thainetizen.org": [16429], "charitynucle.us": [2053], "graphics.cams.com": [2846], "www.researchnews.osu.edu": [11959], "pl.vc": [12971], "stats.autoscout24.ch": [1470], "sc.videoemail.com": [17988], "go.divogorod.ru": [2053], "exeterfriendly.co.uk": [5599], "on.hagafu.com": [2053], "www3.cs.sunysb.edu": [15736], "uk.bazaar.com": [2053], "makin.it": [2053], "es.muri.co": [2053], "carblog.me": [2053], "sportisimo.ro": [14396], "start.unblu.com": [17435], "redef.it": [2053], "sky-ip.org": [15169], "fogbugz.com": [6096], "groc.press": [2053], "gaming.adobe.com": [654], "godownloadsongs.com": [15452], "jshou.se": [2053], "paas.ly": [2053], "www.social-engineer.com": [15304], "ci.vexor.io": [21915], "secure.uac.advertising.com": [701], "engine.surfconext.nl": [14434], "beian.aliyun.com": [861], "cms.iopscience.iop.org": [8344], "scsym.ph": [2053], "cro.chat": [2053], "drm.li": [2053], "sgrs.eu": [2053], "gldn.ch": [2053], "www.nedstat.com": [3517], "www.woolworthsonline.com.au": [18723], "gofm.co": [2053], "sjph.co": [2053], "archive.anon-ib.ru": [1079], "static.cocubes.com": [3395], "greenwich.greenparty.org.uk": [7052], "zrkuban.ru": [22141], "abmp.us": [2053], "cdn.casualcollective.com": [8882], "msge.me": [2053], "kyte.ws": [2053], "go.blessmy.life": [2053], "faster.symantec.com": [15969], "cangzhou.jd.com": [8571], "go.resolvd.io": [2053], "ftp.opera.com": [12252], "www.focaljet.com": [6090], "link.wishdd.com": [2053], "10ng.co": [2053], "magazin.io": [10012], "association.cern.ch": [2632], "hostdime.com": [7654], "www.hackerboard.de": [7277], "my.domtele.com": [19945], "pic-viewer.org": [2053], "seotrainingtoronto.com": [14341], "kagi.com": [8918], "wrc.ms": [2053], "pinos.im": [2053], "ptxl.it": [2053], "0utf.it": [2053], "cro.kn": [2053], "vremya.yandex.kz": [18957], "marketing.etorostatic.com": [20065], "www.metro.ya.ru": [18930], "qais.fyi": [2053], "www.delico.se": [4407], "koldfront.dk": [9113], "ygq.me": [2053], "lindzon.me": [2053], "roar.co": [2053], "www.bitsighttech.com": [1996], "img.drupup.com": [2053], "descss.zamimg.com": [19095], "ibank.alfabank.ru": [842], "officepreview.microsoft.com": [10543], "*.depositfiles.com": [4454], "snoonet.org": [15287], "bestf.it": [2053], "brkn.nl": [2053], "idola.to": [2053], "www.deliver2.com": [4409], "bigchangeuk.co.uk": [1904], "*.libcal.com": [9447], "*.planetminecraft.com": [12988], "host.cc.ntu.edu.tw": [11160], "to.larisia.com": [2053], "pensions.staffordshire.gov.uk": [15622], "u.kmjamaat.com": [2053], "fengqiu.meituan.com": [10405], "cloudimage.io": [3366], "treyperry.com": [16995], "osha.gov": [11869], "www.sweetslyrics.com": [15938], "www.metroethernetforum.com": [10501], "mnv8.us": [2053], "www.xm.com": [18821], "r.sundar.am": [2053], "www.catarse.me": [2958], "internt.slu.se": [14373], "s.ukrnames.com": [17408], "i.newsvine.com": [11541], "s11.cnzz.com": [3391], "zebr.as": [2053], "s.schr.ag": [2053], "www.cloudfoundry.com": [3359], "www.wealthytheatre.org": [7017], "bgf.to": [2053], "oit.williams.edu": [18616], "ppmn.de": [2053], "hilt.me": [2053], "www.jamesthebard.net": [8651], "*.terena.org": [16382], "piwikphpnet.phpnet.org": [12454], "owa.student.kuleuven.be": [8969], "clock.yandex.by": [18953], "blubb.eu": [2053], "ssl7.net": [14740], "o.caishin.tw": [2053], "bade.lt": [2053], "pci-ids.ucw.cz": [12427], "info96.top": [2053], "nr7.us": [11371], "si.sitch.co": [2053], "watzek.worldcat.org": [18748], "www.schneideroptics.com": [14600], "open-mpi.org": [12106], "*.precharge.net": [13243], "asiener.gy": [2053], "go.nh7.in": [2053], "www.gdata.nl": [6410], "dad.im": [2053], "appd.it": [2053], "lasa.meituan.com": [10405], "glossypictur.es": [2053], "uvalred.uv.es": [17750], "www.invoca.com": [8477], "x.icetravel.xyz": [2053], "*.academia.edu": [475], "www.popularmechanics.com": [13148], "www.fme.vutbr.cz": [17814], "bymobi.us": [2053], "epdp.in": [2053], "jenkind.com": [2053], "megaglest.org": [10394, 10395], "potg.co": [2053], "www.greyhound.com.mx": [7073], "magazakayit.bilio.com": [1929], "ddlvalley.cool": [19876], "opencaching.de": [21009], "duckbrand.co": [2053], "www.hsbc.com.om": [20383], "compiz.org": [3586], "i2i.me": [2053], "openai.com": [12115], "coupon.aliexpress.com": [847], "www.yali.state.gov": [17345], "bcop.nanog.org": [11688], "weights.sccgov.org": [14579], "www.uni-due.de": [17450], "www.cutesoft.net": [19841], "tcsa.co": [2053], "e-food.gr": [4949], "cnch.ly": [2053], "norwalkreflector.com": [11705], "www.bedd.tk": [3597], "vginfo.co": [2053], "www.standardebooks.com": [15632], "go.forks.tokyo": [2053], "pg.com": [13349], "l.thefox.is": [2053], "nnetworks.co.jp": [11628], "aeq.us": [2053], "shopstyle.co.*": [14965], "i.literotica.com": [9628], "go.max.be": [2053], "www.lrp.nih.gov": [11241], "www.i3wm.org": [7806], "support.zenmate.com": [19133], "www.blankslate.io": [2111], "speedmex.com": [2053], "delivery.ad.newsnow.net": [11523], "1rw.us": [2053], "gpsfleetportal.cabinetoffice.gov.uk": [2760], "equalitytrust.org.uk": [5435], "glad.org": [6456], "www.directbox.de": [4613], "www.extremetracking.com": [5640], "onbeing.org": [12008], "sn.hn4u.de": [2053], "go.itabvn.com": [2053], "u.bankon.co": [2053], "kernelnewbies.org": [20586], "boaz.pro": [2053], "mentoring.stanford.edu": [15635], "watsi.org": [18301], "w.sharethis.com": [14913], "www.soom.cz": [21509], "nl.aldi.be": [338], "s40.cnzz.com": [3391], "wizkid.me": [2053], "bkolb.me": [2053], "4th.me.uk": [2053], "fossies.org": [20151], "static.hdslb.com": [20327], "go.spacet.me": [2053], "chuma.sh": [2053], "haendler.mobile.de": [20811], "www.argonit.cz": [1221], "favorite.taobao.com": [16206], "amii.bo": [2053], "ltgo.co": [2053], "gr.support.tomtom.com": [16812], "images.dailystar-uk.co.uk": [4189], "gtbd.gq": [2053], "*.lternet.edu": [9257], "thumbs.media.smithsonianmag.com": [15255], "dsa.csdata1.com": [2737], "jingshan.meituan.com": [10405], "fareham.gov.uk": [5775], "contiki.co": [2053], "www.youtube.co.th": [19016], "jckp.io": [2053], "*.spreadshirt.it": [15552], "hippoc.ms": [2053], "mayo.rs": [2053], "kobak.eu": [2053], "cash-f.squarecdn.com": [21547], "developer.qtcloudservices.com": [13546], "enterprise.apiary.io": [19401], "tripi.co": [2053], "maddyis.ms": [2053], "es-es.facebook.com": [5733], "rca.st": [2053], "www.deutschland-spielt.de": [19902], "sfs.tips": [2053], "thetcw.uk": [2053], "ecatholic.us": [2053], "sta2fin.co": [2053], "www.bingplaces.com": [1950], "kenli.meituan.com": [10405], "jfun.in": [2053], "www.ffmpeg.org": [5678], "cbell.in": [2053], "ipv6.nnm-club.me": [11132], "lcmtens.co": [2053], "taringa.net": [16218], "www.maksukaista.fi": [20741], "ap61.co": [2053], "www.opentpx.org": [12178], "email.webtrends.com": [18467], "tsw.createspace.com": [3842], "iraq.usembassy.gov": [21879], "myphilanthropedia.org": [12834], "www.asana.com": [1277], "go.foundi.info": [2053], "wccpensions.surreycc.gov.uk": [21611], "curious4.com": [2053], "film.qq.com": [13513], "i.atlasdev.nl": [2053], "missouri.worldcat.org": [18748], "hu9em3n90.ml": [2053], "ha.mrick.me": [2053], "*.campaignercrm.com": [2838], "xml.yandex.by": [18953], "tfoo.it": [2053], "rble.co": [2053], "digitaldefenders.org": [4574], "utilizador.eu": [2053], "rambler.krawlly.com": [9157], "i1.poltava.to": [21166], "invoice.zoho.com": [19202], "pictures.aircrack-ng.org": [789], "www.ba.com": [1527], "s.becoder.org": [2053], "store.kagi.com": [8918], "www.toysrus.com": [16895], "o.suntravel.xyz": [2053], "ldr.io": [2053], "1tn.co": [2053], "francesc.as": [2053], "mkcb.co": [2053], "akii.ca": [2053], "on.jg.net": [2053], "m.odnoklassniki.ru": [11925], "chiron.link": [2053], "imxp.co": [2053], "www.kaneva.com": [8932], "rarbg.to": [21257], "mcgr.aw": [2053], "go.amx.one": [2053], "cesar.resinfo.org": [14041], "publications.cabinetoffice.gov.uk": [2760], "forums.wxwidgets.org": [22072], "ecomm.dell.com": [4413], "lobby.clubredgaming.com": [3381], "skyarts.tk": [2053], "oak.im": [2053], "torrentproject.com": [16859], "ejemp.la": [2053], "mcrblog.co": [2053], "downloads8.mamp.info": [20744], "heroesofnewerth.com": [14300], "www.epocs.leeds.ac.uk": [17604], "mobilnihry.idnes.cz": [20425], "i.alipayobjects.com": [857], "care-net.org": [2897], "www.vandyke.com": [17842], "cacti.atech.io": [406], "demostore.x-cart.com": [18794], "ivoox.com": [8016], "cep.news": [2053], "at.nick.asia": [2053], "www.ecowatch.com": [5165], "me.efi.th-nuernberg.de": [16428], "creditwise.capitalone.com": [2878], "rdfo.us": [2053], "orezpraw.com": [12304], "apply.submit.kennedy-center.org": [20585], "popatomic.org": [13131], "www.cbo.gov": [17295], "*.mytalkdesk.com": [20868], "developer.alfresco.com": [843], "www.rochester.edu": [14163], "*.creativecow.net": [3849], "remotelyanywhere.com": [13997], "visitor.r20.constantcontact.com": [3657], "www.proxery.com": [13404], "forum.tdc.dk": [16051], "pit.vc": [2053], "penango.com": [12743], "xxxbunker.com": [18911], "wwene.ws": [2053], "blog.cloudpassage.com": [19739], "malflet.ch": [2053], "www.oh-tech.org": [11822], "www.saltstack.com": [14493], "*.sgizmo.com": [15913], "www.yooco.de": [18998], "healthyiq.co": [2053], "webmail.juno.com": [8835], "www.infobox.ru": [8256], "rochester.edu": [14163], "przetargi.money.pl": [10734], "images.kurier.at": [9194], "sseo.it": [2053], "pingyu.meituan.com": [10405], "glam.rs": [2053], "uisbrookenslibrary.worldcat.org": [18748], "mrtg.us": [2053], "zom.im": [19207], "s.pepijn.io": [2053], "www.joycasino9.com": [20552], "*.ato.gov.au": [1439], "www.cognitionsecure.com": [3451], "marksdailyapple.com": [20754], "tfne.ws": [2053], "choosetorrct.us": [2053], "*.svn.sourceforge.net": [15423], "id.carousell.com": [2919], "www.khl.ru": [20590], "cdn.leafletjs.com": [9359], "on.wqow.com": [2053], "rdcl.co": [2053], "at.cra.wf": [2053], "zjj.meituan.com": [10405], "mdcdn.sporx.com": [21541], "go.laranja.info": [2053], "sd.meituan.com": [10405], "own.re": [2053], "img.rt.com": [13702], "vil.rs": [2053], "ampr.gs": [2053], "on.kaioru.co": [2053], "community.nasdaq.com": [11060], "www.thegrandtheatre.com": [16549], "www.datart.sk": [4082], "cun.jd.com": [8571], "kontalk.net": [9130], "ns.ibnlive.in.com": [7911], "www.taobao.com": [16206], "analyzer.huxiu.com": [7779], "es.account.t-mobile.com": [16026], "own.rs": [2053], "blorf.it": [2053], "5.asset.soup.io": [15415], "www.bchydro.com": [1548], "ukwebsolutionsdirect.co.uk": [17246], "e2go.co": [2053], "p2.raasnet.com": [13890], "democracy.brent.gov.uk": [2358], "www.fulcrumbiometrics.com": [6364], "modprac.com": [2053], "g.eist.co": [2053], "dare.kotex.com": [9144], "login.gradwell.com": [7011], "a.s.thebrighttag.com": [2379], "obang.in": [2053], "webmanager.cronius.net": [3879], "mediamatters.org": [10324], "tue.nl": [16129], "www.justcloud.com": [20564], "stcdems.us": [2053], "muvz.me": [2053], "0xbadc0de.be": [10], "www.opendoors.org": [12207], "ehmlive.n-somerset.gov.uk": [11046], "*.blogspot.co.uk": [2166], "www.angel.co": [1053], "www.ripe.net": [14128], "menujusur.ga": [2053], "kyonyusho.com": [2053], "roundtable.stanford.edu": [15635], "www.tweegy.nl": [17144], "tchni.ca": [2053], "sec-i0.mail.com": [10039], "stc.org": [15325], "static-wap-stg.norton.com": [11703], "judao.me": [2053], "www.monster-wow.com": [10754], "lygl.me": [2053], "p9.raasnet.com": [13890], "cdn.sstatic.net": [15611], "col.stb00.s-msn.com": [14297], "spocc.wakefield.gov.uk": [21966], "pay.paddle.com": [12528], "reliability.seagate.com": [14679], "www.myanimelist.net": [11012], "dl.reg.163.com": [43], "mjthis.me": [2053], "kuche.meituan.com": [10405], "www.vufind.org": [18163], "www.citizenweb.io": [3232], "ovh.nserver.ru": [11746], "aetherflyff.com": [732], "api.fastly.com": [5803], "jck.mn": [2053], "service.wienernetze.at": [18582], "www.ocharles.org.uk": [11813], "paste.informatick.net": [8271], "wvu.edu": [18509], "vsemetri.com": [21960], "wilma.porvoo.fi": [21176], "torrentz.com": [16863], "www.runbox.com": [14274], "go.mu.edu": [2053], "azale.as": [2053], "url.lansla.com": [2053], "belgium.usembassy.gov": [21879], "www.bt.no": [1592], "syda.co": [2053], "tourbox.songkick.com": [21507], "ericwilson.ws": [2053], "intohigher.com": [8446], "www.imageforensic.org": [8130], "1000-jb.de": [2053], "softeng.cc": [2053], "bitshare.com": [19544], "www.lsc-group.phys.uwm.edu": [17580], "wdune.ourproject.org": [21044], "s35.cnzz.com": [3391], "htaccessbook.com": [7732], "tigefa.xyz": [2053], "smanuel.in": [2053], "anderson-stage.leadershipacademy.nhs.uk": [11102], "www.uncsd2012.org": [17492], "ra.vutbr.cz": [17814], "bso4.me": [2053], "jr.fi": [2053], "pxrpst.co": [2053], "jdh.xyz": [2053], "s.cipr.es": [2053], "www.soroush.secproject.com": [14710], "www.ag.ch": [21629], "www.lg.com": [9231], "go.fimadani.com": [2053], "umiacs.umd.edu": [17549], "2buntu.com": [107], "www.its.th-mittelhessen.de": [16064], "zuv.cms.rrze.uni-erlangen.de": [17597], "gdpnny.us": [2053], "fotoforensics.com": [7272], "go.woodsua.com": [2053], "www.mightyupload.com": [10561], "*.www.academiapress.be": [473], "aulani.jobs": [1404], "www.weibo.cn": [15090], "pigeon.to": [2053], "mmj.to": [2053], "brkth.ru": [2053], "daymet.ornl.gov": [11892], "photos.prnewswire.com": [12490], "www.wlfriends.org": [6335], "ejb.bz": [2053], "s9.addthis.com": [611], "www.windowssecrets.com": [18647], "omne.ws": [2053], "track.socializer.cc": [15321], "www.rottenecards.com": [14215], "seattleprivacy.org": [14696], "smallbusin.es": [2053], "lvjfarm.jd.com": [8571], "eastmidlands.greenparty.org.uk": [7052], "apps.evozi.com": [5576], "www.slts.osu.edu": [11959], "www.isecpartners.com": [7970], "cdn6.openculture.com": [12204], "ib.sovcombank.ru": [21516], "mntl.org": [2053], "*.radioleaks.se": [13753], "serviceshop.asus.com": [397], "emmrkt.it": [2053], "vpol.stanford.edu": [15635], "www.planningconsult.rbkc.gov.uk": [21266], "domanhanteraren.iis.se": [7889], "suzhousz.meituan.com": [10405], "10.vgc.no": [17776], "*.insinuator.net": [8323], "nleu.megabus.com": [10401], "keys.aclufl.org": [286], "jupiter.ysu.edu": [19049], "s3.fightforthefuture.org": [5899], "housing.voa.gov.uk": [21936], "nfs9.cn": [2053], "b.hontolab.org": [2053], "cdn.hackaday.io": [7270], "www.workzonesafety.org": [22050], "images.highspeedbackbone.net": [14447], "p.gr-assets.com": [7004], "evilsocket.net": [20073], "eftri.ps": [2053], "vdogr.am": [2053], "t.j-schmitz.net": [8556], "www.abdn.ac.uk": [444], "carters.com": [2927], "www.forumatic.com": [6183], "gaoyou.meituan.com": [10405], "ekast.gr": [2053], "s.rasoulj.ir": [2053], "unyq.co": [2053], "mpls.illuminateed.com": [20430], "thul.in": [2053], "liquidmatrix.org": [9605], "portal.manjushri.alibaba.com": [850], "gamigo.com": [6563], "wiki.openwrt.org": [12190], "provider2.anthem.com": [19395], "jeg.cc": [2053], "bayfiles.net": [1746], "pic.2345.com": [87], "uptodate.apple.com": [1160], "press.unian.ua": [21851], "stnr.co": [2053], "s.zainzafar.com": [2053], "support.skysql.com": [15172], "stmbts.com": [2053], "go.tmn.com.au": [2053], "gettag.mobi": [6726], "dback.co": [2053], "tech.lds.org": [16485], "blog.songkick.com": [21507], "corts.hq.nasa.gov": [11058], "www.snort.org": [15288], "stockcharts.com": [15733], "eresearch.osu.edu": [11959], "go.fox61.com": [2053], "mhyatt.us": [2053], "2.sendvid.com": [14829], "jltorrent.com": [21709], "adserver.cxad.cxense.com": [2753], "mrmcd.net": [9951], "movietickets.com": [10827], "customer.xfinity.com": [22082], "685.jp": [2053], "*.gullipics.com": [20295], "envfl.org": [2053], "corecommerce.com": [3730], "lfhck.nl": [2053], "www.mobil.teltarif.de": [16363], "www.simonswain.com": [15061], "warthunder.ru": [21978], "ku.starfishsolutions.com": [21565], "huaibei.meituan.com": [10405], "go.youthop.com": [2053], "www.katasterportal.sk": [15217], "*.djoser.nl": [7597], "fedex.com": [5824], "supplyframe.com": [15893], "bwortman.us": [2053], "b.exaktop.tk": [2053], "vicki.im": [2053], "timeanddate.com": [16732], "atqp.ac": [2053], "s.porters.jp": [2053], "widgets.outbrain.com": [12355], "m.outlook.com": [12358], "secure.mythic-beasts.com": [11039], "stats.scooter-attack.com": [14632], "newsyslog.org": [7025], "analytics.stanford.edu": [15635], "dth.xyz": [2053], "sp.law.georgetown.edu": [6668], "www.kproxy.com": [8899], "omskaya-obl.beeline.ru": [1801], "yiyangyy.meituan.com": [10405], "n-2.org": [11042], "iw0.in": [2053], "support.emssoftware.com": [20035], "*.projectplace.com": [13372], "kzlnk.co": [2053], "globaleducation.georgetown.edu": [6668], "www.theintercept.com": [16560], "www.wijchen.nl": [11324], "www.cybercamp.es": [4030], "www.jako-o.eu": [8643], "medfacilities.stanford.edu": [15634], "pp.vk.com": [17784], "o6.hitravel.xyz": [2053], "tnne.ws": [2053], "achei.ca": [2053], "wk3.org": [18691], "mvoce.com": [2053], "www.waste.org": [18191], "hangul.istockphoto.com": [20505], "linjiang.meituan.com": [10405], "bracknell.firmstep.com": [20125], "dkoch.me": [2053], "www.fixingtao.com": [6013], "www.kenexapods.com": [9001], "yedxxx24hr.com": [18973], "comscoredatamine.com": [3518], "login.evergage.com": [5553], "pangea.stanford.edu": [15635], "www.tv.gsn.com": [6534], "www.elotouchexpress.com": [5279], "keenot.es": [8990], "enfi.dict.cc": [4536], "depl.dict.cc": [4536], "nspr.click": [2053], "forum.ovh.us": [11885], "jsy.fi": [2053], "dew.yt": [2053], "radiant.gs": [2053], "ntop.org": [11754], "support.unity3d.com": [17506], "aeddo.thomsonreuters.com": [16650], "consult.west-norfolk.gov.uk": [22004], "jiangyou.meituan.com": [10405], "ruby-china.org": [21338], "cdn.slidesharecdn.com": [15208], "digiday.com": [4559], "www.portadi.com": [13161], "services.mobile.de": [20811], "ajci.co": [2053], "www.sccsheriff.org": [14579], "ultratools.com": [17416], "myaccgyap.psc.agilisys.co.uk": [19323], "www.go.cd": [20259], "xiangxiguan.jd.com": [8571], "paragu.ai": [2053], "ai.yimg.jp": [18992], "dna-bucket-dna.cf.rawcdn.com": [4577], "biopt.co": [2053], "ttld.ca": [2053], "*.appthemes.com": [1149], "direct.gov.uk": [4615], "15a20.mx": [2053], "www.nordnet.se": [11675], "worldrad.io": [2053], "sc5.rgstatic.net": [13655], "partners.x-cart.com": [18794], "shop.planeta.ru": [21143], "www.autoblog.com": [1458], "www.ubuntu-mate.boutique": [17377], "idp.brunel.ac.uk": [19599], "veloplus.ch": [21903], "www.eat.ch": [4966], "www.active-srv02.de": [535], "ewn.me": [2053], "openxchange.stanford.edu": [15635], "ehr.104.com.tw": [18], "rhone.link": [2053], "iwata777.com": [2053], "the23.co": [2053], "systemcenteradviser.com": [16014], "e16.xhamsterpremiumpass.com": [18817], "shelf.frictionalgames.com": [6328], "www5.plymouth.ac.uk": [13055], "itsc.umd.edu": [17549], "hackpad.com": [7289], "spenden.correctiv.org": [3753], "www.eshopbrokers.co.uk": [19976], "www.whyblockme.info": [3597], "gruvi.galpon.org": [20197], "go.dhakatim.es": [2053], "go.115.com": [25], "m6d.com": [10315], "nbt.cc": [2053], "u.softbank.jp": [2053], "ohsb.org": [2053], "39dollarglasses.com": [146], "passport-ckicheck.yandex.com.tr": [18954], "gyma.es": [2053], "asset-6.soup.io": [15415], "lttng.org": [9260], "developer.staging.yammer.com": [18952], "paste.flashrom.org": [6020], "www.czechorchidsociety.org": [19845], "u2fa.nl": [2053], "m.cash.ch": [19654], "*.store1.mentor.com": [10438], "sxdr.es": [2053], "baum.anadolu.edu.tr": [1025], "nodpi.org": [11629], "link.ccso.us": [2053], "inkfeet.in": [2053], "www.deaconess.com": [4326], "url.mayanot.edu": [2053], "jobsco.re": [2053], "dprivacyd.info": [2053], "0rbt.us": [2053], "*.onbeing.org": [12008], "www.crowdin.net": [3897], "l.tiks.be": [2053], "izak.cc": [2053], "kdot.it": [2053], "spin.vision": [2053], "ticketportal.sk": [16692], "*.worldofwarplanes.ru": [18762], "www.saisobserver.org": [21359], "meteo.search.ch": [14684], "jobandtalent.com": [22065], "stepone.co": [2053], "11w.rs": [2053], "omgv.io": [2053], "e180.co": [2053], "*.industrybrains.com": [10148], "filehoot.com": [5906], "s.cctv.net": [2053], "aweirdimagination.net": [425], "acrobatusers.com": [521], "projectplace.*.dimelo.com": [13372], "sauth.webtrends.com": [18467], "webmail.vodafone.co.nz": [18105], "www.globalhumanrights.org": [6848], "survey.cancerresearchuk.org": [19637], "assets1.redbubble.net": [13895], "*.v2cigs.com": [17754], "tpc.com": [16104], "nylscar.es": [2053], "iceland.usembassy.gov": [21879], "*.tinypass.com": [16760], "images.ichkoche.at": [8063], "bertfeeds.us": [2053], "www.funoverip.net": [20188], "askkim.net": [2053], "ad.tek.no": [16319], "lp.chartbeat.com": [3077], "goto.wiqi.ml": [2053], "hajj.is": [2053], "www.drive.ru": [19961], "riscosopen.org": [14130], "at.icecat.biz": [8059], "spb.li": [2053], "on.tpt.org": [2053], "attic-backup.org": [1374], "assets.patriotpost.com": [16571], "www.zdtronic.com": [19066], "tracking.verisign.com.tw": [17915], "virtualizationreview.com": [18047], "hostingas.lt": [7679], "y.qq.com": [13513], "s.jag-japan.com": [2053], "s.gob.cl": [2053], "www.thalasseo.com": [16430], "adamboalt.wpengine.netdna-cdn.com": [1577], "awmedia.ga": [2053], "logcg.com": [20713], "zz.connextra.com": [3650], "iren.es": [2053], "m.metta.me": [2053], "gallerypix.net": [2053], "admx.co": [2053], "send.atechmedia.com": [407], "lms.resus.org.uk": [14053], "cache.addthis.com": [611], "undrwr.expert": [2053], "i3.answers.microsoft.com": [10543], "dibbley.mysql.cesky-hosting.cz": [19680], "familie.rps.aok.de": [357], "gum.run": [2053], "www.mynxt.info": [10961], "uploaded.to": [4024], "dccook.com": [2053], "princesstra.de": [2053], "cbstr.fr": [2053], "ebroder.net": [5142], "portrait7.sinaimg.cn": [15091], "hwp.to": [2053], "oaa.osu.edu": [11959], "prih.de": [2053], "www.study.monash": [15797], "l.sean.taipei": [2053], "jobs.carecareers.com.au": [2899], "cjb.me": [2053], "on.reveal.co.uk": [2053], "ctf.isis.poly.edu": [13113], "www.ttl.ut.ee": [17347], "jloft.us": [2053], "evcon.me": [2053], "codeofhonor.com": [3404], "links.auza.net": [2053], "www.ntualumni.org.uk": [11161], "zndr.co": [2053], "www.bayfiles.net": [1746], "associados.amazon.com.br": [19367], "untied.cr.yp.to": [3817], "cjb.mx": [2053], "origin.myfonts.net": [10949], "acumati.ca": [2053], "wtsdc.electoralcommission.org.uk": [5248], "spatialbuzz.com": [15480], "boarnsterhim.nl": [11324], "secure.eloqua.com": [5282], "wikihub-new.berkeley.edu": [17526], "jb.gs": [2053], "www.three.ie": [16666], "britsc.nl": [2053], "bob131.so": [2224], "s.uicdn.com": [17235], "readit.youmail.com": [19013], "z.imjim.im": [2053], "www.j.mp": [8557], "s.rded.nl": [2053], "bcpost.me": [2053], "a315.co": [2053], "luez.tk": [3597], "microent.us": [2053], "tyne.cc": [2053], "seth.uk": [2053], "www.goemerchant.com": [6901], "hao.360.cn": [130], "jvjn.es": [2053], "servlet.it.liu.se": [9238], "www.goodsearch.com": [6958], "imgflip.com": [8144], "demo.op5.com": [12101], "lk.contact-sys.com": [3671], "chita.ru": [19706], "in.punelive.in": [2053], "lp.meituan.com": [10405], "twittercommunity.com": [17169], "www.labp.htwk-leipzig.de": [7736], "osprey.golf": [2053], "avatar-ssl.xboxlive.com": [18851], "climate.wwf.ch": [22060], "www.cusp.com": [16106], "bgvideos.net": [2053], "eatre.al": [2053], "www.putlocker.is": [21227], "mail01.ndc.nasa.gov": [11058], "www.goldenline.pl": [6941], "bury.gov.uk": [19614], "commons.georgetown.edu": [6668], "payments.ebay.com.*": [4973], "fsquid.co": [2053], "*.blogspot.lu": [2166], "support.solarflare.com": [15362], "*.blogspot.li": [2166], "havering.gov.uk": [7377], "x.dlink.eu": [2053], "intrn.eu": [2053], "zetel.de": [19167], "csod.info": [2053], "www.deimos.fr": [4395], "signup.salesmedia.pl": [21361], "cap.af": [2053], "s.kabam.com": [2053], "sri.pw": [2053], "*.firstclassmagazine.se": [5990], "www.mipay.com": [10626], "pl.piwik.org": [12950], "go.ermrk.it": [2053], "www.safetythermometer.nhs.uk": [11102], "cruci.al": [2053], "odir.org": [12205], "*.royalmail.com": [14233], "sphotos-b.ak.fbcdn.net": [5816], "a.bsn.io": [2053], "flaschenpost.piratenpartei.de": [12938], "trakehner-nord-west.de": [16932], "e2k.us": [2053], "hamppu.net": [7314], "myaccount.gcion.com": [6425], "1afcu.com": [2053], "cjt.link": [2053], "l3m.me": [2053], "static.stubhub.de": [15789], "cis.rit.edu": [13667], "tpb.accountant": [21771], "ntlds.variomedia.de": [17860], "nysk.mediekompaniet.com": [10362], "connect.gov": [3644], "w.watu.co.za": [2053], "meta.discourse.org": [4631], "counter.goingup.com": [6936], "hivoice-ot.hivos.org": [7573], "wctheat.re": [2053], "www.hak5.org": [7298, 7299], "on.smm.nyc": [2053], "shoef.ly": [2053], "remote.derby.gov.uk": [4460], "static.nytimes.com": [11189], "wallet.btcchina.com": [1599], "resrc.it": [13832], "senate.gov": [14818], "banners.ero-advertising.com": [5451], "*.adelaide.edu.au": [621], "sotech.me": [2053], "zidisha.org": [19174], "uat.eceemarketplace.equinix.com": [5438], "www.newzsec.com": [11545], "rca.org": [13636], "islandrcrds.com": [2053], "eexpats.com": [2053], "numbersusa.com": [11776], "club.volia.com": [18123], "hclsha.re": [2053], "trademoremargin.com": [16911], "chrome64.com": [2053], "www.siteimprove.com": [15127], "twa.lt": [2053], "j.mozest.com": [10838], "typepad.com": [17190], "wiki.sch.bme.hu": [1570], "ingre.in": [2053], "www1.arun.gov.uk": [19425, 19426], "tripletex.no": [21796], "davidwalsh.name": [19863], "*.orange.ch": [12290], "fr-fr.facebook.com": [5733], "ondove.co": [2053], "developer.jivesoftware.com": [8733], "www.uow.edu.au": [17636], "womanon.co": [2053], "static.zend.com": [19136], "pcblink.be": [2053], "devices.get.no": [20229], "pmon.co": [2053], "rec-2-7.webcaster.pro": [21988], "hosting.unimatrix.si": [21852, 21853], "www.filecrypt.cc": [20108], "shop.computerbild.de": [19767], "codex.bbpress.org": [1762], "mozillastatus.statushub.io": [15692], "weatherspark.com": [18332], "3rdbell.co": [2053], "e.seosport.com": [2053], "iedra.uned.es": [17446], "mediaspanonline.com": [10329], "www.acuityplatform.com": [544], "static.ctctcdn.com": [3973], "productforums.google.com": [6962], "farmer.migros.ch": [10566], "vxstream-sandbox.com": [18178], "l.doqk.ml": [2053], "dataplus.jcloud.com": [8690], "frnk.me": [2053], "forum.opengarden.com": [12209], "klimaat.groenlinks.nl": [7088], "su.hk-inc.dk": [2053], "kindlepreview.amazon.co.jp": [19364], "tr.functions-online.com": [20187], "mobil.immobilienscout24.de": [8153], "mzgo.co": [2053], "my.a2hosting.com": [257], "dynamitedeals.com": [4928], "service.t-mobile.nl": [16025], "flash.desy.de": [4479], "www.classymotherfucker.com": [3278], "fndly.me": [2053], "cartoons.osu.edu": [11959], "suivi.openstreetmap.fr": [12245], "beta.mcafee.com": [10282], "*.americancensorship.org": [5898], "s.nett00n.org": [2053], "scienceporn.co": [2053], "g.dbands.com.br": [2053], "*.destructoid.com": [4477], "myua.co": [2053], "www.rackspace.com.hk": [13736], "www.stshrt.com": [15604], "portal.ct.gov": [2738], "aalbc.it": [2053], "r.5zig.eu": [2053], "developer.akamai.com": [800], "forum.ovh.nl": [12378], "bxhd.me": [2053], "www.bmvi.de": [19562], "health.knowledgeblog.org": [9100], "www.nominatefellow.acs.org": [966], "media.cmcdn.net": [3386], "ksawyer.me": [2053], "1ce.co": [2053], "es.my.t-mobile.com": [16026], "io.swisscom.ch": [15951], "ftw.ms": [2053], "i2.code.msdn.s-msft.com": [14296], "bsi.bund.de": [5828], "wap.amap.com": [19360], "we.bz": [2053], "help.github.com": [6801], "cangnan.meituan.com": [10405], "the-fca.org.uk": [16455], "www.ri.gov": [21306], "nicrugman.co.uk": [2053], "cc1.dealer.com": [4334], "go.flameman.pl": [2053], "influ.co": [2053], "www.peerstudio.org": [12736], "www.nbwn.de": [11066], "www.stopwatching.us": [15744], "trustedshops.co.uk": [17062], "legiao.me": [2053], "ohda.mn": [2053], "fairphone.com": [5749], "fonts.googleapis.com": [6967], "hxcc.secureserver.net": [14755], "webmail.server1.firstfind.nl": [19043], "ajilon.co": [2053], "cflt.io": [2053], "pictorial.jezebel.com": [8713], "webonic.hu": [18432], "redbubble.com": [13895], "bykr.us": [2053], "b4db0y.ml": [2053], "*.content.ad": [3676], "fruct.org": [5708], "us.norton.com": [11703], "kettering-consult.objective.co.uk": [20979], "*.buyboard.com": [2525], "mn4.us": [2053], "a.nabble.nl": [2053], "bocasucia.com": [2053], "tickets.sueddeutsche.de": [15833], "pefonline.electoralcommission.org.uk": [5248], "athena.dialup.mit.edu": [9916], "img.icefilms.info": [8056], "thepiratebay.unblocked.date": [21217], "*.cdn.yottos.com": [22108], "tigh.co": [2053], "www.gotomeeting.com": [6912], "bercsenyi.bme.hu": [1570], "pace.com": [12513], "humanityplus.org": [7758], "anpost.ie": [1024], "shibboleth.main.ad.rit.edu": [13667], "csoa15gatxs.squat.net": [21549], "agsol.ca": [2053], "ems.calderdale.gov.uk": [2794], "tcwld.me": [2053], "ucc.unizar.es": [17643], "js.icony.com": [8069], "on.maptia.com": [2053], "khakasiya.beeline.ru": [1801], "bravo.ly": [2053], "solx.ch": [2053], "nhhotel.to": [2053], "evilh.at": [2053], "viewsourceconf.org": [21924], "i.learnict.it": [2053], "www.zuno.sk": [19079], "www.active24.pl": [19280], "entropywave.com": [5403], "www.darjeelin.fr": [4226], "hireolo.gy": [2053], "gau.lt": [2053], "slides.google.com": [6962], "zh.boardgamearena.com": [2219], "deb.bitmask.net": [2056], "on.cbr.cc": [2053], "myxml.is": [2053], "help.cbp.gov": [2581], "sseeventsgroup.com": [14410], "www.dcerpc.org": [19870], "www.med.uio.no": [17615], "www.schneierfacts.com": [21379], "preney.ca": [13255], "www.rightmove.co.uk": [14119], "t.cozy.co": [2053], "toplink.weforum.org": [18198], "cimbclicks.com.my": [2663], "prop.cc": [2053], "supplierportal.sandia.gov": [14517], "www.nrahq.org.org": [20947], "immi.is": [7906], "recruiting.piazza.com": [12870], "pastebin.sabayon.org": [14450], "www.supportion.org": [15895], "wantful.com": [18271], "doc.owncloud.org": [12387], "go.bppl.us": [2053], "myportableworld.com": [11003], "imgt1.bdstatic.com": [1662], "askbr.in": [2053], "lincs.fr": [9234], "mmm.ms": [2053], "codewidget.welt.de": [18492], "l.pggaming.pw": [2053], "community.thefoundry.co.uk": [16544], "decs.im": [2053], "social.truelife.com": [17045], "iplocation.zoho.com": [19202], "cseed.it": [2053], "*.cloudswitch.com": [3355], "map.hilton.com": [2053], "u.insite.co.jp": [2053], "wap.qiwi.com": [13533], "xm.com": [18821], "www.defectivebydesign.org": [4383], "security.google.com": [6962], "on.disalvo.ro": [2053], "www.slashbits.com": [15191], "vle.cam.ac.uk": [17529], "tsl.state.tx.us": [16414], "heroup.com": [7470], "apnic.net": [1292], "meh.bz": [2053], "license.drweb.com": [4879], "www.zenimaxonline.com": [19144], "v.alid.co": [2053], "www.slashdot.org": [15192], "*.identi.ca": [8084], "assets.nflxext.com": [11421], "www.btczone.com": [1606], "portal.nccgroup.com": [11068], "www.cryptorave.org": [3933], "polls.newsvine.com": [11541], "hols.me": [2053], "i1.chaucanh.net": [2053], "got.vote": [2053], "events.bc.edu": [1541], "www.raam.org": [13720], "cert.gov.uk": [2635], "nieuws.asnbank.nl": [391], "www.vendosupport.com": [17897], "click.a-ads.com": [250], "congress.gov": [3640], "havn.me": [2053], "link.dvj.me.uk": [2053], "singlehop.com": [15094], "v.gd": [21889], "appmc.hn": [2053], "billetnet.dk": [16690], "cmcenroe.me": [3387], "eup-network.de": [5502], "lnxtb.lt": [2053], "ovp.vc": [2053], "on.gmti.com": [2053], "dccps.nci.nih.gov": [11241], "*.cognesia.net": [3450], "cdn.travis-ci.org": [16976], "onair.rs": [2053], "wott.ch": [2053], "n.openn.eu": [2053], "rwrdn.im": [2053], "st.dizzcloud.com": [4676], "app.datadoghq.com": [4279], "preprod.fr.hispeed.ch": [21865], "usht.biz": [2053], "8.ftcirc.us": [2053], "gewo.ga": [2053], "ictp.uk": [2053], "lilymea.de": [2053], "a360.co": [2053], "orgs.law.harvard.edu": [7351], "cdn.derkeiler.com": [4459], "faryne.at": [2053], "4.integraid.org": [2053], "www.script-o-rama.com": [4853], "g02.a.alicdn.com": [846], "thumbnails-tv.adobe.com": [655], "www.1984hosting.com": [51], "col.stb01.s-msn.com": [14297], "cspree.com": [2053], "dn-coding-net-production-file.qbox.me": [13528], "www.onlineshop.cz": [21000], "drewjon.es": [2053], "sirportly.com": [15105], "static.openvz.org": [12189], "www.bazzapp.com": [1761], "*.swetswise.com": [15940], "sltn.jp": [2053], "blue.ag": [2053], "ads.genieessp.com": [20220], "helink.co": [2053], "support.addthis.com": [611], "selfridges.com": [14811], "hgreen.me": [2053], "getjaco.com": [6727], "nandemow.com": [2053], "security.mail.ru": [10040], "go.glg.it": [2053], "hsfy.nl": [2053], "graduateapp.ucsd.edu": [17216], "pbj.im": [2053], "www.aviationweather.gov": [19463], "cf1.vuze.com": [18175], "suspiciousumbrella.uk": [21616], "fr.duo.com": [4900], "scripts.liftshare.com": [9497], "ohaw.co": [2053], "bobbuzz.me.uk": [2053], "e11.xhamsterpremiumpass.com": [18817], "img-seeker.newjobs.com": [11510], "svb.com": [15036], "kremlinpress.ru": [20619], "ukfast.co.uk": [17247], "u.sooth.it": [2053], "family.georgetown.edu": [6668], "solidarity-us.org": [15370], "www.our-work.com.tw": [21043], "helpingrhinos.org": [20333], "frack.nl": [6211], "wallet.baidu.com": [1661], "siim.ut.ee": [17347], "www.v3.co.uk": [17756], "jobs.hostdime.com": [7654], "local.amazon.com": [952], "miodr.eu": [2053], "auth.adfox.ru": [563], "sms.sknvibes.com": [14364], "colocationamerica.com": [3498], "www.messenger.com": [10469], "kerrys.pub": [2053], "s.gzhls.at": [13251], "mikeconley.ca": [10570], "vnbc.me": [2053], "mapquest.com": [10134], "slag.me": [2053], "onest.mp": [2053], "www.60plus.vcd.org": [17766], "mic.cm": [2053], "case.104.com.tw": [18], "athena.krystal.co.uk": [9175], "www.fapmc.ru": [5664], "hlma.math.cuhk.edu.hk": [2747], "sidefx.co": [2053], "*.apply.business.hsbc.co.uk": [20375], "gpco.biz": [2053], "acp.planningportal.gov.uk": [21146], "ambcentral.org": [2053], "djoserjunior.nl": [7597], "srfm.link": [2053], "different.money": [2053], "legal.yandex.com.tr": [18954], "*.sail-horizon.com": [14479], "deliveras.gr": [4410], "www.ericrafaloff.com": [20052], "www.mastercard.us": [20756], "president.stanford.edu": [15635], "www.technische-aufklaerung.de": [16293], "secure2.datinglab.net": [19861], "jp.nzk.club": [2053], "static8.businessinsider.com": [2512], "gallery.dditscdn.com": [4317], "www.dft.gov.uk": [19908], "developer.buttercoin.com": [2521], "fast.wistia.net": [18677], "europe-miniatures.com": [5527], "rpgi.co": [2053], "*.attracta.com": [1377], "it.civilservice.gov.uk": [19721], "www.dongenergy.dk": [4151], "nc3.to": [2053], "sean.wongs.link": [2053], "prxl.co": [2053], "asgard.paragonie.com": [12594], "nifc.gov": [11113], "1mpul.se": [2053], "www.hugendubel.info": [20394], "fsfla.org": [5712], "xetum.com": [18869], "news.bitcoin.com": [2016], "get-digital.es": [6683], "aalv.in": [2053], "*.inwx.at": [8381], "bloggar.aftonbladet.se": [754], "t8.qlogo.cn": [16371], "ager.ch": [2053], "isohunt.com": [8520], "cloud.scoding.de": [21385], "blog.twkn.org": [2053], "dragonflybsd.status.io": [21569], "bees.fyi": [2053], "simplesamlphp.org": [21451], "sta.36krcnd.com": [142], "mobib.nl": [2053], "blackboard.brunel.ac.uk": [19599], "roge.rs": [2053], "learning.rethink.org": [21299], "holidaytrex.me": [2053], "gitt.im": [2053], "www.guidebook.com": [7137], "316space.com": [2185], "hmex.ch": [2053], "99des.co": [2053], "clikth.ru": [2053], "bairdmounts.globalreach.com": [20254], "go.sparkie.ws": [2053], "trinityfi.org": [17013], "events.stanford.edu": [15635], "cren.cm": [2053], "s.fnb.cc": [2053], "bournemouth.gov.uk": [2304], "terrapass.com": [16388], "g.enterknow.com": [2053], "bradli.tk": [2053], "www.sustrans.org.uk": [21617], "*.telework.gov.au": [16354], "convertexperiments.com": [19784], "pnpts.me": [2053], "help.apiary.io": [19401], "boerse-frankfurt.de": [2230], "sdln.es": [2053], "aka-cdn.adtechus.com": [679], "c9.aztravel.xyz": [2053], "ynot.gigantic.com": [6771], "optical-tool.me": [2053], "www.uberads.com": [17365], "mynaweb.com": [11029], "antitheft.norton.com": [11703], "ukpirate.org": [21711], "noticias.walmart.com": [18260], "leg.ac": [2053], "sjws.bdstatic.com": [1662], "t.uece.br": [2053], "washington.edu": [17577], "sabbagh.be": [2053], "si3.twimg.com": [17153], "m-s-photo.com": [2053], "www.sug.htwk-leipzig.de": [7736], "www.lawnandlandscape.com": [9334], "cruzp.ch": [2053], "www.inventivedesigners.com": [8462], "quox.at": [2053], "ai.pricegrabber.com": [13279], "freu.megabus.com": [10401], "www.zaks.ru": [22124], "oas.irex.org": [20497], "l.don-f.com": [2053], "www.cuusoo.com": [4018], "cdn.sploder.com": [15534], "ca.vas-hosting.cz": [21896], "pentacon-dresden.de": [14599], "www.reason.com": [13869], "accio.me": [2053], "www.bger.ch": [19525], "www.opentransfer.com": [12249], "1sd.co": [2053], "spellon.me": [2053], "podupti.me": [13063], "ccc-ch.ch": [19659], "*.nhmrc.gov.au": [11258], "*.cox.net": [3808], "designcentersearch.com": [3616], "wunderground.com": [18329], "dlang.org": [19930], "news.cointrader.net": [3474], "on.news.me": [2053], "on.defe.ro": [2053], "ipv6.backpack.tf": [1642], "nalchik.rt.ru": [13703], "mywot.com": [10987], "vpn.ashampoo.com": [1285], "r.tcpipweb.com": [2053], "110.360.cn": [130], "publishers.esellerate.net": [5462], "jfarellm.us": [2053], "deferpanic.com": [4389], "now.shimdi.com": [2053], "www.pizzacharts.com": [12967], "s.throwbacks.me": [2053], "www.beefree.io": [1798], "chris.417it.com": [2053], "www.getpopcorntime.org": [21170], "mitei-members.mit.edu": [9916], "www.roc-noc.com": [14161], "fb.zwilling.jp": [2053], "raikl.in": [2053], "eventim.*": [5548], "kentuckyonehealth.org": [9008], "*.totalhostingplus.com": [16877], "forum.ramhost.us": [13630], "vetmed.illinois.edu": [17544], "www.publications.cabinetoffice.gov.uk": [2760], "profiles.petfinder.com": [12807], "bdgds.co": [2053], "pad.riseup.net": [14133], "www.guadec.org": [6514], "cybyt.cf": [2053], "arnedo.tv": [2053], "esg.im": [2053], "www.hizlisaat.com": [7574], "icedivx.com": [8055], "p2.xyx.hao123img.com": [20313], "capris.no": [643], "avlk.nl": [2053], "lkwdc.it": [2053], "innovations.cms.gov": [19742], "www.perfectmoney.is": [12774], "update.virtualbox.org": [18039], "soluto.link": [2053], "nsrc.io": [2053], "faq.gymglish.com": [7167], "zx.meituan.com": [10405], "api.temp-mail.ru": [16366], "isen.nu": [2053], "s.omnom.net": [2053], "www.hvidovrekajakklub.dk": [7782], "www.dha.gov.au": [4385], "olympusthe.me": [2053], "www.brainpickings.org": [2321], "*.h5n.us": [7174], "1wpf.cc": [2053], "ip-projects.de": [7932], "spiritu.co": [2053], "www.fifengine.de": [5686], "riversidepr.es": [2053], "pdf-tools.com": [21098], "eforms.gov.ie": [20015], "cdn.stablehost.com": [15609], "scm.symantec.com": [15969], "crazyegg.com": [3835], "fifa.to": [2053], "forum.disconnect.me": [4627], "v4p.us": [2053], "pravo.openrussia.org": [12243], "hook.io": [20360], "b.strikingly.com": [15779], "www.annalindhfoundation.org": [19392], "pugh.li": [2053], "u.intenthq.com": [2053], "*.cert-bund.de": [2633], "tbtlr.co": [2053], "1nk.it": [2053], "wits.worldcat.org": [18748], "*.mycontactual.com": [3675], "onlys.ky": [2053], "www.cybersitter.com": [2754], "my.webtapestry.net": [1506], "gmsprt.com": [2053], "www.alchemistowl.org": [823], "www.draytek.com": [4842], "www.milodev.com": [10586], "aucklandairport.co.nz": [1380], "k.fotobucht.net": [2053], "service-access-data.web.cern.ch": [2632], "kb.gigaserver.cz": [14834], "fps.sportradar.com": [21540], "www.peliaika.fi": [6511], "familysearch.org": [5760], "bitcoin.co.id": [2015], "kptv.tv": [2053], "ohiobar.org": [11962], "ntrls.co": [2053], "www.justaguy.pw": [8850], "lte.mg2mobile.com": [10508], "clocks.yandex.com.ua": [18955], "kaufman.usc.edu": [17564], "www.youtube.fr": [19016], "hh.gy": [2053], "*.juno.co.uk": [8837], "elco.in": [2053], "ips-portal.iperceptions.com": [20411], "mattf.co": [2053], "www.jguitar.com": [8581], "www.de-centralize.com": [4319], "belai.ch": [2053], "bosfera.ru": [19574], "dev.elsevier.com": [5287], "old.honeynet.org": [20357], "sysadmin.kde.org": [8871], "12de.li": [2053], "autoact.mobile.de": [20811], "livechatinc.com": [9641], "gallop.nyc": [2053], "secure.altontowers.com": [934], "www.people.com": [12758], "pad.okfn.org": [12215], "uheblog.com": [2053], "es.calameo.com": [2790], "www.helpspot.com": [7445], "sky.mppglobal.com": [20841], "manage.chef.io": [3115], "www2.slac.stanford.edu": [15635], "islandesque.net": [2053], "faxbigbrother.com": [5811], "tridium.com": [17009], "magnet.ie": [10027], "xpl.be": [2053], "*.sct.gov.au": [15879], "cloud-cp.hostingsolutions.cz": [7675], "garoa.net": [6578], "rpmwe.st": [2053], "hao.qq.com": [13514], "stadtvonmorgen.vcd.org": [17766], "download.spotify.com": [15548], "*.skroutz.gr": [15167], "www.gifttool.com": [6761], "magnet.is": [2053], "yq.meituan.com": [10405], "www.overdrive.com": [12365], "rugne.ws": [2053], "apollo3.ds.leeds.ac.uk": [17604], "gekjr.co": [2053], "playsi.no": [2053], "illuminateed.com": [20430], "www.primelocation.com": [21199], "godl.es": [2053], "devblog.geekfaeries.fr": [20215], "www.danhlode.com": [4218], "*.vlc-addons.org": [21007], "byte.nl": [2544], "weathersafe.allianz.com": [19351], "bibbitec.com": [1894], "status.buttercoin.com": [2521], "bxbr.co": [2053], "caldy.me": [2053], "deichmann.com": [4394], "autodiscover.getech.leeds.ac.uk": [17604], "ogr.anadolu.edu.tr": [1025], "b.bhooshan.me": [2053], "www.originstamp.org": [21029], "ohloh.com": [11965], "www.librarylicense.org": [9466], "flyingcameras.ca": [6081], "www.superherostuff.com": [15886], "squatchsquad.co": [2053], "donate.homelessveterans.co.uk": [7624], "www.afiestas.org": [744], "yarddigital.com": [18966], "wickedfiber.com": [18578], "www.binaryturf.com": [1944], "blog.pcbsd.org": [12421], "www.xvideosx.tv": [18837], "hqpower.eu": [17888], "*.solarbotics.com": [15361], "drivee.jp": [4860], "www.officiel-des-vacances.com": [11953], "tbu.gs": [2053], "sitescout.com": [15118], "shop.novell.com": [11728], "www.icardnet.uillinois.edu": [17238], "aqua.lib.vt.edu": [18031], "your.hispeed.ch": [21865], "ehouse.studio": [2053], "ogcn.fr": [2053], "ansibleworks.com": [1098], "www.paodelicia.com": [12582], "lcsc.ga": [2053], "postmaster.outlook.com": [12358], "lesgirofl.es": [2053], "www.csie.ntu.edu.tw": [11160], "cput.worldcat.org": [18748], "brainstorage.me": [2325], "decmech.com": [2053], "webadmin.endora.cz": [5349], "whcg.co": [2053], "blog.silentcircle.com": [15031], "mstnr.me": [2053], "gkg.net": [6454], "giuliosnaas.just-eat.ie": [20565], "*.yelp.com.tr": [18979], "addison.vt.edu": [18031], "c2.q-assets.com": [21235], "refer.ly": [13948], "vocativ.com": [18104], "refer.lu": [2053], "go.bdrong.com": [2053], "tickets.chef.io": [3115], "learn.visiblebody.com": [18064], "assets.cookieconsent.silktide.com": [15041], "ocpa.us": [2053], "get.sfbuzz.com": [2053], "brabant.nl": [11324], "iniy.org": [20461], "shop.msicomputer.com": [9958], "domvi.tk": [2053], "weblogin.stanford.edu": [15635], "mmkh.co": [2053], "postaonline.cz": [3034], "brdg.es": [2053], "escrow.aliexpress.com": [847], "www.oig.state.gov": [17345], "33u.link": [2053], "vanlanschot.nl": [17845], "www.vs.ch": [21629], "asc.wustl.edu": [18290], "www.doublerobotics.com": [4807], "vpnreviewer.com": [17799], "wrms.catalyst.net.nz": [2955], "s.mcwm.co": [2053], "rikp.me": [2053], "slidesha.re": [2053], "fgbon.in": [2053], "marhababrighton.co.uk": [10150], "zc.meituan.com": [10405], "manual.pipni.cz": [12460], "assets1-new.akamai.coub.com": [3765], "forum.zen.co.uk": [19129], "xlhost.com": [18819], "oderland.se": [11922], "aberdeenshire.spydus.co.uk": [21546], "js.touclick.com": [16880], "*.www.mozdev.org": [10836], "data.bdip.org.uk": [19506], "isyvmon.com": [8531], "www.idr-biz.com": [9910], "elvira.link": [2053], "*.habets.pp.se": [7259], "staging.extranet.nsidc.org": [11251], "catalysis.com": [2954], "dl.kn007.net": [9089], "my.tealiumiq.com": [16251], "www.piscatus.se": [12943], "dl.bayphoto.com": [1755], "pics.librarything.com": [9464], "scrp.io": [2053], "www.encoding.com": [5334], "go.haniezz.com": [2053], "www.a16z.com": [254], "proxy.uchicago.edu": [17532], "oncampus.csr.oberlin.edu": [11897], "25live-a.collegenet.com": [3491], "masterh8.adriver.ru": [573], "esifil.in": [2053], "form.mbank.com.pl": [9888], "piwik.vm.ag": [18096], "www.gettyimages.com": [6741], "pubimg-weichouji.sina.com": [21455], "www.edigital.hu": [5641], "scmagazineus.com": [14563], "istobal.tk": [2053], "mcintyr.es": [2053], "member.unionpay.com": [17478], "www.aeepcpul.asso.ulaval.ca": [17515], "springfr.ee": [2053], "s4recs.com": [2053], "condor.udistrital.edu.co": [17394], "www.spacenews.com": [21521], "wpno.tk": [2053], "syscan360.org": [21637], "nerdster.org": [20890], "qualityagent.com": [13560], "openhunt.co": [12212], "my.cimigo.com": [2053], "yodaberg.me": [2053], "esa.int": [5535], "www.solarpowerrocks.com": [15356], "cat.oplk.com": [2053], "curiouser.work": [2053], "osh.li": [2053], "cdn01.gitter.im": [6806], "gmpg.io": [2053], "www.buch.de": [16433], "linkurious.icij.org": [7831], "www.handelsregister.de": [7319], "rockvalleycollege.edu": [14169], "cfsps.co": [2053], "refrm.me": [2053], "dzurl.info": [2053], "go.opie.at": [2053], "ask.linaro.org": [9522], "j.efdapps.com": [2053], "dignityindying.org.uk": [4598], "tdm.sh": [2053], "cph.im": [2053], "redirect.1und1.de": [82], "mogu.li": [2053], "dev.govdelivery.com": [6990], "www.biologie.ens.fr": [5029], "analytics.thevideo.me": [16505], "safety.georgetown.edu": [6668], "vn5socks.com": [18100], "mymagnet.magnet.ie": [10027], "mentoring.hhs.gov": [7192], "qidian.gtimg.com": [7121], "assets.wired.com": [18664], "on.roof.io": [2053], "www.siemens.*": [15015], "fms.treas.gov": [17337], "invest.dha.gov.au": [4385], "play.freeciv.org": [6278], "muse.jhu.edu": [16562], "dbbb.georgetown.edu": [6668], "support.burst.net": [2503], "wpengine.com": [18214], "bbgd.us": [2053], "giphy.com": [6785], "indabamusic.com": [8198], "prsp.ac": [2053], "kidona.rakuten.co.jp": [13767], "ftar.it": [2053], "dustri.org": [4908], "lists.osadl.org": [11863], "grt4.us": [2053], "e4ward.com": [4963], "3dwa.de": [2053], "img.books.ch": [16433], "itaupy.co": [2053], "sco.li": [2053], "r.sagaaz.org": [2053], "unnec.to": [2053], "yulinguan.jd.com": [8571], "cics.osu.edu": [11959], "outft.us": [2053], "jt.india.com": [8209], "www.pirates-forum.org": [16493], "cdn4.gbot.me": [6934], "siwue.com": [2053], "nooch.co": [2053], "jankiz.1688.com": [44], "cbrogan.me": [2053], "forums.uberent.com": [17364], "buffs.me": [2053], "www.bluekrypt.com": [2187], "rbss.wirral.gov.uk": [18672], "mvastorage.microsoft.com": [10543], "murl.me": [2053], "lbcomet.cern.ch": [2632], "vids4.me": [2053], "unnuetz.es": [2053], "www.greenparty.org": [7053], "*.mountsinai.org": [10806], "www.1010ez.med.va.gov": [17297], "ag.gov.au": [1376], "wcas.nu": [2053], "vrtv.nl": [2053], "unipega.so": [2053], "flagforms.org": [2053], "customercenter.wsj.com": [22058], "dre4mtv.cf": [2053], "idemo.bspb.ru": [2435], "origin.business.upc.cz": [17278], "store.litespeedtech.com": [9619], "www.123rf.com": [33], "gz.meituan.com": [10405], "chandz.li": [2053], "on.andfarr.me": [2053], "pcbooking.brent.gov.uk": [2358], "mxit.io": [2053], "media.upf.edu": [17674], "documentfoundation.org": [16487], "marcushenry.me": [2053], "goydn.com": [2053], "antoineb.com": [2053], "forum.vodafone.pt": [18109], "rney.co": [2053], "cp.active24.com": [19275], "km.support.apple.com": [1160], "mrtsh.in": [2053], "grvts.uk": [2053], "airs.com": [790], "tmofay.com": [2053], "awp.pics": [2053], "lounge.qacafe.com": [21237], "mypages.aldi-mobile.ch": [338], "secured.ols.anthem.com": [19395], "institutodeidiomas.us.es": [17706], "open.dingtalk.com": [19923], "www.actionnetwork.org": [19271], "seedl.es": [2053], "ultrafacil.com.br": [17417], "online.statefarm.com": [15671], "*.printrbot.com": [13299], "jgalm.com": [2053], "www.postcodeanywhere.co.uk": [21177], "myfb.co": [2053], "myop.us": [2053], "uk.hosting.adjug.com": [565], "wwwwwwwwwwwwwwwwwwwwww.bitnik.org": [2063], "p.tahutek.net": [2053], "onlineplanningregister.northyorks.gov.uk": [20930], "webmail.alibaba-inc.com": [19342], "www.redditstatic.com": [13925], "asweb.stanford.edu": [15635], "swe.fronter.com": [20179], "arq.st": [2053], "www.paxum.com": [21086], "ads.mindfactory.de": [10599], "wiki.archlinux.fr": [1198], "stecyk.ca": [2053], "sitemanager.itunes.apple.com": [1160], "collector.cint.com": [3208], "www.ticketsage.com": [16073], "csg.com": [2053], "api.auction.rakuten.co.jp": [13768], "twstr.hu": [2053], "idp.peoplefluent.com": [12760], "808ne.ws": [2053], "www.2k.com": [103], "support.callrail.com": [19629], "secure.claranetsoho.co.uk": [3271], "lewisham-consult.objective.co.uk": [20979], "757live.co": [2053], "www-ssrl.slac.stanford.edu": [15636], "bmj.co": [2053], "bulletin-int.wustl.edu": [18290], "modr.no": [2053], "growleadchange.wustl.edu": [18290], "nm.nu": [2053], "umary.life": [2053], "gemeentebest.nl": [11324], "cdn.movad.net": [10814], "storefront.steampowered.com": [17840], "covert.gop": [2053], "www.campina.ru": [2841], "donorregister.nl": [11324], "*.bitcasa.com": [19539], "www.examine.com": [5587], "www.test-ipv6.cz": [16404], "links.mendez.ch": [2053], "ssoft.link": [2053], "*.opengroup.org": [16470], "connect.osu.edu": [11959], "oascentral.comcast.net": [3524], "www.amnesty.or.jp": [1004], "ssl-ccstatic.highwebmedia.com": [7548], "surveys.researchresults.com": [14033], "matomymedia.com": [10240], "*.sescoops.com": [14342], "do3.co": [2053], "mysql.pipni.cz": [12460], "shopp.me": [2053], "online.mbank.cz": [9888], "fusong.meituan.com": [10405], "my.ukfast.co.uk": [17247], "nrg.im": [2053], "www.blueorigin.com": [2196], "mma.ac": [2053], "www.aldi-mobile.ch": [338], "my.vpnglobe.com": [17793], "e621.net": [4964], "asset.dr.dk": [4154], "images.slashdot.org": [15192], "siseveeb.ut.ee": [17347], "www.pushplay.com": [13478], "jezebel.com": [8713], "plbt.uk": [2053], "alexandria.zone": [2053], "www.gayakuman.com": [6598], "mobile.slashdot.org": [15192], "msr.io": [2053], "secure.met.police.uk": [20785], "zdmcirc.com": [19068], "m.gazetaexpress.com": [6600], "secure.iphone.mtvn.com": [17953], "ehod.co": [2053], "wwwpromoter.com": [22071], "matildajaneclothing.com": [10237], "cdn1.iconfinder.com": [8066], "www.e-activist.com": [4945], "to.edcs.me": [2053], "govib.es": [2053], "www.aess.asso.ulaval.ca": [17515], "motorregister.skat.dk": [15144], "facultyaffairs.wusm.wustl.edu": [18290], "kyvan.co": [2053], "l.zndr.co.uk": [2053], "myip.ipip.net": [20490], "cqbuswiki.duoshuo.com": [19969], "www.0xbadc0de.be": [10], "api.sso.biglobe.ne.jp": [1917], "news.scotland.gov.uk": [21387], "b.mirachem.org": [2053], "hccpc.us": [2053], "*.mhsa.aihw.gov.au": [10436], "www.willleathergoods.com": [18611], "nycmixing.net": [2053], "atomz.com": [1365], "m.geektimes.ru": [6628], "taobao.aliloan.com": [19344], "www.securusglobal.com": [14779], "www.domeny.sk": [19944], "b.suntravel.xyz": [2053], "smile.amazon.com": [952], "gltr.me": [2053], "www.cait.wustl.edu": [18290], "it.cornell.edu": [3744], "tiki.vorratsdatenspeicherung.de": [334], "*.blog.upc.edu": [13120], "jslink.me": [2053], "verisign.co.uk": [17915], "e.icetravel.xyz": [2053], "www.sharethefiles.com": [14924], "scci.io": [2053], "vremya.yandex.com": [18956], "www.webdam.com": [18356], "*.meeting.afrinic.net": [747], "wso2.com": [18226], "e.nfiwh.at": [2053], "www.dotcomsecurity.de": [4793], "kub.nl": [16716], "reload.tk": [2053], "nomachine.com": [11631], "www.antpool.com": [1112], "sos-kd.de": [2053], "nllapps.com": [20916], "cart-api.step.rakuten.co.jp": [13768], "www.superdesk.org": [21609], "*.mktoresp.com": [10664], "ebscohost.com": [4971], "websitealive10.com": [18445], "nacp.ornl.gov": [11892], "cbro.info": [2053], "ww690.smartadserver.com": [15228], "wizards.com": [18687], "*.alzheimers.org.uk": [942], "crowd.geant.net": [6430], "www.constituteproject.org": [19777], "potts.gg": [2053], "*.search.etargetnet.com": [5480], "webwise.me": [2053], "labhle.fit": [2053], "css.chefkoch-cdn.de": [3116], "tapestry.tapad.com": [16208], "ricardo.co.tz": [2053], "*.gentoo.org": [6653], "repository.cwi.nl": [3020], "totalfanshop.net": [16875], "jshm.co": [2053], "static.breakingmuscle.com": [19588], "devtools.dol.gov": [19938], "www.sustainability.asu.edu": [1232], "appengine.cloudbees.com": [19736], "*.motorola.com": [10803], "3860.eschools.co.uk": [20056], "pt.gy": [2053], "aamp.nl": [2053], "plannedparenthoodaction.org": [21145], "asset-8.soup.io": [15415], "smetsni.co": [2053], "loaded.uk": [2053], "www.calendario.cc": [2796], "c.mail.ru": [10040], "tendencias.vozpopuli.com": [18156], "okura.nl": [11977], "sklik.cz": [15161], "thc.bioinfo.pl": [1952], "docs.clusterhq.com": [3382], "janestanford.stanford.edu": [15635], "siguetuli.ga": [2053], "vworp.me": [2053], "slooh.com": [14372], "check.symantec.com": [15969], "www.dmjx.dk": [4687], "firmware.intel.com": [8359], "www.gigster.com": [6778], "ojpc.co": [2053], "m.encendo.co": [2053], "zaragoza.es": [22070], "www.openlinksys.info": [12147], "www.safecharge247.com": [14468], "bcfak.es": [2053], "t-mobile.co.uk": [16023], "e2ma.net": [4962], "lmblug.tk": [2053], "ramnode.com": [13773], "unikornel.com": [2053], "www.nl.frieslandcampina.com": [2841], "*.pnc.com": [12477], "my.yieldmanager.com": [14114], "tools.otenet.gr": [12336], "me.courts.de": [2053], "www.nidirect.gov.uk": [20910], "a.udimg.com": [17226], "imlink.info": [2053], "dvtthk.com": [2053], "piratebay.host": [21711], "s59.cnzz.com": [3391], "images.lynku.com": [9848], "korelogic.com": [9136], "www.warwick-castle.com": [18282], "lists.altlinux.org": [343], "*.ortolo.eu": [12316], "tap.rubiconproject.com": [14247], "amnesty.gr": [1001], "csblog.us": [2053], "aldi.lu": [338], "www.sizzlesitesinc.com": [15138], "drjlp.com": [2053], "liladel.re": [2053], "jacoblangvad.com": [8635], "us.megabus.com": [10401], "waffles.fm": [18240], "openxmpp.com": [12194], "www.greenparty.org.uk": [7052], "*.flyersrights.com": [6078], "ae.tips": [2053], "talkoclock.com": [16188], "visaliatimesdelta.com": [18058], "pt.xhamster.com": [18816], "*.nic.br": [11108], "android-client.fitbit.com": [6002], "www.yadi.sk": [18931], "affiliates.nexcess.net": [11549], "gem5.my": [2053], "api.lenta.ru": [20661], "sl.joeylau.me": [2053], "cash.square.com": [15580], "vws3.primus.ca": [13290], "lurkmore.ru": [9838], "go.uwm.edu": [2053], "jfish.me": [2053], "www.onename.com": [12036], "nee.my": [2053], "nantes.indymedia.org": [8234], "gazen.de": [2053], "lists.parabola.nu": [12589], "mo529.us": [2053], "ams.hhs.gov": [7192], "meterreads.g4s.com": [20194], "fokus.fraunhofer.de": [6230], "www.xnet.cz": [18832], "web.clicktools.com": [3323], "strwd.co": [2053], "cpw.dongenergy.dk": [4151], "indicators.hscic.gov.uk": [20388], "lambeth.vocoll.com": [21939], "www.itrust.org.cn": [8541], "go2.pw": [2053], "cimacorp.net": [5740], "vistech.net": [18074], "www.gktw.org": [6808], "www.accel-ppp.org": [19260], "tenpropgui.de": [2053], "www.osc.gov": [21034], "tremendesk.com": [609], "maun.gs": [2053], "git.openssl.org": [12168], "9po.st": [2053], "riemann.upo.es": [17683], "ias.cs.tum.edu": [16291], "f212.co": [2053], "efcww.com": [2053], "bugs-master.debian.org": [4353], "*.telfort.nl": [16356], "www.boston.com": [2287], "fact.so": [2053], "prihlasenie.azet.sk": [1520], "www.myiu.org": [10997], "carina.tk": [2053], "goto.ftino.com": [2053], "data.mcc.gov": [20763], "*.intelli-direct.com": [8364], "dapeigou.jd.com": [8571], "piraten-aargau.ch": [21131], "www.wiiings.com": [18587], "vineland.dj": [2053], "csa.canon.com": [2868], "cooley.com": [19786], "insights.ubuntu.com": [17382], "community.vodafone.ie": [18108], "flyertown.ca": [6080], "jajo.me": [2053], "thunderkick.com": [16675], "l.adhipg.in": [2053], "zdbb.net": [19067], "getresponse.com": [6703], "lmm.community": [2053], "liaoning.jd.com": [8571], "geck.co": [2053], "kolen.ch": [2053], "en.over-blog.com": [12361], "s6.mt-cdn.net": [9963], "www.uploaded.to": [4024], "versioneye.com": [17926], "my.njs.ch": [2053], "weburbanist.com": [18393], "www.perfeval.pol.ulaval.ca": [17515], "collab.net": [3479], "cpn.lt": [2053], "gamequitte.rs": [2053], "hu.la": [2053], "chat.zuno.sk": [19079], "www.plusgirot.se": [13052], "syndi.es": [2053], "secureimg.stitcher.com": [15732], "fifly.co": [2053], "cognitionsecure.com": [3451], "rrn.me": [2053], "stats.adobe.com": [655], "irmk.tv": [2053], "gwywx.taobao.com": [16206], "www.opal.com.au": [12103], "assets.vidyard.com": [17998], "www.ecm74.com": [5153], "tasteof.life": [2053], "shop.morningstaronline.co.uk": [10782], "demo1.odoo.com": [11926], "andym.es": [2053], "verizonenterprise.com": [17919], "dl2.oo-software.com": [12092], "adserver.openx.org": [12192], "uofapdx.com": [2053], "admin.adultshopping.com": [684], "dxdet.co": [2053], "gnuradio.org": [6476], "eduncovered.com": [5172], "www.pirateproxy.tv": [21709], "b-lik.es": [2053], "smt.ac": [2053], "*.smartling.com": [15244], "www.d66.nl": [4074], "ytz.li": [2053], "arr-dep.info": [2053], "mod7.in": [2053], "feedback.userecho.com": [17722], "see.zmovi.gq": [2053], "shellfish.io": [14940], "asset.wsj.net": [22059], "compre.in": [2053], "btcturk.com": [1605], "www.mk2.com": [20808], "eventsstg.linuxfoundation.org": [9572], "www.factus.ru": [20092], "glot.io": [20255], "mkssoftware.com": [9922], "mdn.livingsocial.com": [9679], "www.elanex.biz": [5242], "p.palander.se": [2053], "cnda.condenast.co.uk": [3618], "wordpress.tv": [18730], "feeds.feedburner.com": [5849], "fxguide.com": [6406], "coinfloor.co.uk": [3467], "api.pinterest.com": [12914], "avatar.kn007.net": [9089], "www.habets.pp.se": [7258], "alrc.gov.au": [1433], "radoncinternal.stanford.edu": [15635], "s4k.me": [2053], "mirabilia.in": [2053], "light.samsung.net": [14510], "webassetsd.scea.com": [14327], "packages.holidaypirates.com": [20349], "*.epbfi.com": [5039], "www.openshift.com": [12171], "900.co.za": [2053], "pezn.tv": [2053], "*.meilenrechner.de": [10581], "icrib.link": [2053], "snctycndl.co": [2053], "softwareintegrity.coverity.com": [3803], "flyam.ps": [2053], "xinan.meituan.com": [10405], "bitcoinstats.com": [2021], "my.rusi.org": [13714], "pcre.org": [12432], "ixmaps.ca": [20522], "saltpack.org": [21364], "permati.me": [2053], "randyrabb.it": [2053], "*.advel.cz": [692], "tom.ms": [2053], "a.fastcompany.net": [5797], "tea.ourproject.org": [21044], "s.ida.io": [2053], "sl.cccp.com": [2053], "www.shepherdsfriendly.co.uk": [14944], "extreme-light-infrastructure.eu": [5639], "blackboardtest.ncl.ac.uk": [11073], "computerworld.com.au": [7851], "hynek.me": [7787], "bittorrenthub.me": [2077], "wbxu.uk": [2053], "ca6.jp": [2053], "archive.icommons.org": [7846], "www.mega.com": [10388], "habrastorage.org": [7263], "radbulls.com": [2053], "home.thetimes.co.uk": [16734], "theporti.co": [2053], "janglo.co": [2053], "rasp.yandex.com.tr": [18954], "www.stat.sfu.ca": [14893], "sslvpn.ntu.edu.tw": [11160], "eszakinyitas.444.hu": [172], "gol.am": [2053], "intagme.com": [20470], "b.wal.co": [18249], "www.imgtec.com": [20441], "brandensittich.de": [2335], "b5.aztravel.xyz": [2053], "boxus.com": [12669], "pledge.freestateproject.org": [6270], "fanatics.com": [5763], "devpress.com": [4511], "bit.mabaya.com": [2053], "www.german-design-council.de": [6676], "remind.com": [13994], "csalert.info": [2053], "sealinfo.websecurity.norton.com": [11703], "boinc.berkeley.edu": [17526], "shape.rs": [2053], "weblearn.ox.ac.uk": [17557], "www.cerit.cz": [2629], "m.fazjob.net": [5667], "northeastern.edu": [11697], "newsletters.1105pubs.com": [23], "glsen.us": [2053], "projectreporter.nih.gov": [11241], "www.errorception.com": [5456], "smrtn.at": [2053], "www.comnap.aq": [2696], "carpromods.com": [2888], "soundte.ch": [2053], "*.marktplaats.net": [20755], "securitymouse.com": [14775], "login1.vtrenz.net": [15047], "b.oscen.no": [2053], "coderbits.com": [3436], "web.geogebra.org": [6659], "weth.co": [2053], "andesi.org": [1037], "newscientist.com": [11490], "www.mebsd.com": [20765], "u.hardlyart.com": [2053], "www.asirobots.com": [389], "secure.derby.gov.uk": [4460], "mbna.co.uk": [20762], "www.telekom-partnerwelt.de": [16342], "yali.state.gov": [17345], "support.startmail.com": [15663], "opticians.asda.com": [387], "glve.co": [2053], "pravda-kr.com.ua": [21187], "www.uvt.nl": [16716], "pes.ca": [2053], "www.openssl.org": [12168], "esct.co": [2053], "ifightsurveillance.com": [8033], "ixmaps.piwikpro.com": [21139], "definitep.com": [2053], "hca.twimg.com": [17153], "wlvs.info": [2053], "contest.yandex.com": [18956], "cp.bristol.gov.uk": [19592], "me.stripapp.com": [2053], "tlmv.ca": [2053], "davidlazar.org": [4305], "*.foresight.org": [6146], "allmychanges.com": [873], "cse.ucsd.edu": [17216], "swingfree.co.uk": [15945], "u2.outbrain.com": [12355], "piwik.adelphi.de": [622], "www.sakh.com": [21360], "qsstats.com": [13518], "css.georgetown.edu": [6668], "veronmaksajat.fi": [17924], "thestorefront.com": [16580], "cctix.com": [2053], "fuwu.taobao.com": [16206], "conso.rs": [2053], "ibg.tw": [2053], "hullcc.firmstep.com": [20125], "one.iu.edu": [8214], "cf2.vuze.com": [18175], "loiita.com": [2053], "apps.nero.com": [11354], "thegazette.co.uk": [16546], "www.moviemagnet.net": [10830], "*.bornthiswayfoundation.org": [2277], "fonts.rovio.com": [14222], "m0d.co": [2053], "www.nextbus.com": [11553], "carechoice.info": [2053], "im.jd.com": [8571], "thepiratebay.immunicity.press": [21217], "static.aliyun.com": [861], "j.noriom.com": [2053], "lolnet.org": [9731], "www.n-aana.org": [11282], "crim.ms": [2053], "borns.co": [2053], "custom.samsungknox.com": [14507], "docs.docker.com": [4704], "execed.economist.com": [5161], "tvendo.tv": [2053], "blogwzrd.me": [2053], "nti.gr": [2053], "cars.com": [2923], "shann.in": [2053], "thinkerin.gs": [2053], "join.acs.org": [966], "*.abusix.com": [471], "*.directline.com": [4610], "it.umd.edu": [17549], "tickets.eth-0.nl": [5481], "foodblo.gs": [2053], "ofono.org": [20975], "mhero.es": [2053], "brewery.show": [2053], "*.ilius.net": [10381], "www.searsecommercejobs.com": [14690], "forums.nexusmods.com": [6184], "www.sinsofasolarempire.com": [15100], "www.litecoin24.nl": [9624], "triphac.kr": [2053], "site.inria.fr": [8309], "dpbk.co": [2053], "analytics.citizenweb.io": [3232], "cmga.xyz": [2053], "tacticaltech.org": [16156], "promo.calendar.mail.ru": [10040], "fencecenter.com": [5862], "cryptonit.net": [3953], "tuftsgiving.org": [17094], "www.skatelescope.org": [21466], "webmail.planet-school.de": [12499], "loret.to": [2053], "bmuir.com": [2053], "m.lyft.link": [2053], "www.fjellner.eu": [3173], "www2.dudley.gov.uk": [4890], "refer.onemonth.com": [12050], "stats.ams-ix.net": [1021], "brz.io": [2053], "smail.websupport.sk": [18456], "nd.meituan.com": [10405], "dpfc.us": [2053], "daro.me": [2053], "atfp.co": [2053], "r.hitravel.xyz": [2053], "dgl.cx": [4519], "dochos.co": [2053], "dev.hellobond.com": [7438], "go.shrtz.de": [2053], "support.calameo.com": [2791], "login-ca.alibaba-inc.com": [19342], "lists.asiabsdcon.org": [1293], "homepages.ihug.co.nz": [8105], "rpic.douyucdn.cn": [4813], "on.cc.com": [2053], "philau.starfishsolutions.com": [21565], "www.medistack.com": [10309], "www.rows.io": [14223], "chifeng.meituan.com": [10405], "arob.co": [2053], "defenseindustrydaily.com": [4386], "hind.biz": [2053], "www.intellnews.net": [20473], "lists.linux-foundation.org": [9572], "cals.cornell.edu": [3744], "www2.peopleschoicecu.com.au": [12764], "mrjd.co": [2053], "blender.org": [2120], "chriscardone.co": [2053], "marksma.de": [2053], "stormy.es": [2053], "oneticket.info": [2053], "ssl.sifomedia.se": [16098], "dgtl.ink": [2053], "kent-consult.objective.co.uk": [20979], "iglo.tk": [3597], "academy.anadolu.edu.tr": [1025], "tonergiant.co.uk": [16817], "forum.aircrack-ng.org": [19330], "rr.com": [14149], "navercorp.com": [11303], "catalog.video.msn.com": [9961], "ssl-sgc.static.rtbf.be": [14244], "www.massagemag.com": [10213], "my.vanderbilt.edu": [17850], "sigxcpu.org": [15029], "mdogl.io": [2053], "blog.po.st": [13056], "barnsley.gov.uk": [19488], "gtrgtr.uk": [2053], "notalone.stanford.edu": [15635], "prosci.us": [2053], "pro3x.ml": [2053], "99jo.co": [2053], "www.uwm.edu": [17580], "decryptcryptolocker.com": [4367], "intranet.projectplace.com": [13371], "inbox.lv": [8187], "v.viralimo.com": [2053], "why.mail.ru": [10040], "illport.co": [2053], "www.linnrecords.com": [9545], "go.aeris.com": [2053], "www.spla.ulaval.ca": [17515], "bpte.osu.edu": [11959], "media.showcase.ca": [14987], "www.sierraclubgreenhome.com": [15016], "www.christianprayercenter.com": [3170], "*.look.co.uk": [9757], "www.foobar2000.org": [20141], "*.topcoder.com": [16831], "elearning.homeoffice.gov.uk": [20355], "*.oas.org": [12307], "w.misl.es": [2053], "trk.helios.ligatus.com": [9502], "a.nuytsjordy.be": [2053], "kvarterhuset.kk.dk": [8883], "hobocomp.com": [7583], "kel.vin.hk": [2053], "ntresvida.club": [2053], "helbing.ch": [20331], "bloggr.ga": [2053], "he.cx": [2053], "getdigital.de": [6731], "*.spreadshirt.net": [15552], "fs16.formsite.com": [20148], "sslchecker.wosign.com": [18693], "canaldigital.se": [2862], "store.speedtree.com": [15504], "www.cbcblueprint.com": [2579], "tdcanadatrust.com": [16055], "ars.photo": [2053], "payments.livingsocial.com": [9679], "forum.kapsi.fi": [8943], "58n.ca": [2053], "xm1math.net": [18881], "swnry.co": [2053], "thereal.show": [2053], "newyorkcasual.com": [11543], "go.adidaphat.tv": [2053], "amnistia.cl": [1014], "www.jbeekman.nl": [8563], "www.darkfasel.net": [4230], "thediel.in": [2053], "voice.fi": [18113], "wakka.ly": [2053], "banv.it": [2053], "get.cm": [6686], "filetransfer.bathnes.gov.uk": [1737], "get.co": [2053], "designsch.eu": [2053], "cms-smbmarketplace.cisco.com": [3221], "sjte.uk": [2053], "cdspa.org": [2053], "wat.life": [2053], "market.sakh.com": [21360], "jej.me": [2053], "serve.quickbitcoin.co.uk": [13591], "*.3scale.net": [163], "twoc.co": [2053], "photo.isu.pub": [8530], "damn.fuh-q.com": [2053], "sumolo.gs": [2053], "cwcw.ca": [2053], "bcgolf.com": [1546], "act.moveon.org": [10819], "nhs.georgetown.edu": [6668], "www.young.hillingdon.gov.uk": [7550], "kiano.sh": [2053], "acgl.co": [2053], "www.ok.de": [11825], "rispe.mx": [2053], "www.ethercalc.net": [5483], "vacareers.va.gov": [17297], "l.warrenlex.com": [2053], "*.skydsl.eu": [15180], "ad-cdn.technoratimedia.com": [16300], "drollette.com": [10245], "*.rtrcdn.com": [14007], "discourse.mozilla-community.org": [10839], "www.jococruise.com": [8737], "kortschakcenter.usc.edu": [17564], "jat.io": [2053], "www.digitecgalaxus.ch": [4592], "developer.whitepages.com": [15869], "br0th3r.ml": [2053], "on.flog.cc": [2053], "lbl.me": [2053], "burgenland.neos.eu": [11088], "s.bigmir.net": [1919], "aws.tracker.squidanalytics.com": [15585], "www.jhu.edu": [16562], "bartels-on.sos.state.co.us": [3507], "www.kernelnewbies.org": [20586], "gmrt.co": [2053], "www.warwickdc.gov.uk": [21979], "clic.im": [2053], "gap.stanford.edu": [15635], "smar.my": [2053], "prov.pub": [2053], "eprints.dkit.ie": [4114], "www.spin.de": [15527], "*.studentaidcalculator.com": [15791], "barfch.in": [2053], "sc25.co": [2053], "seattletechnicalbooks.com": [14697], "static.gog.com": [6482], "tv.slashdot.org": [15192], "recordstoreday.tuneportals.com": [13884], "polk.com": [13104], "shrewsburynorthshropshire.greenparty.org.uk": [7052], "l.animesave.com": [2053], "lnk.h10n.me": [2053], "ssl134.penguinhost.net": [12747], "messenger4.providesupport.com": [13401], "*.ius.io": [20514], "reporting.shop.telegraph.co.uk": [16340], "sg.godaddy.com": [6898], "po.yoni.bz": [2053], "qrz.com": [13543], "isppweb.tameside.gov.uk": [21659], "fpdownload.adobe.com": [655], "waarschuwingsdienst.nl": [11324], "caps-login.usc.edu": [17564], "stec-t13.xhcdn.com": [18815], "estee.cm": [2053], "consuwijzer.nl": [3659], "ccfgo.com": [2053], "cdn8.openculture.com": [12204], "www.1time.aero": [77], "s.issa-nl.org": [2053], "www.seedrs.com": [14795], "sysresccd.org": [21640], "s44.cnzz.com": [3391], "gongyi.meituan.com": [10405], "www.hertz247.be": [7478], "mylw.co": [2053], "www.ebankingentoutesecurite.ch": [4969], "*.corp.googleusercontent.com": [6972], "www.tripadvisorsupport.com": [21795], "to.didi.web.id": [2053], "provedordocliente.edp.pt": [4995], "www.monsterdivx.com": [10753], "breon.co": [2053], "nerdpol.ch": [11351], "www.slideshare.net": [15207], "go.wot.io": [2053], "www.ekmsecure22.co.uk": [5236], "go.manso.eu": [2053], "blue-store.barrons.com": [19489], "forum.anwiki.com": [19398], "www.courtesan.com": [7025], "gtchk.it": [2053], "maalde.me": [2053], "netloan.birmingham.gov.uk": [19536], "plaid.pub": [2053], "coinpay.in.th": [3471], "admin.kapsi.fi": [8943], "meetrics.de": [10385], "www.hertz.be": [7478], "rcp.tw": [2053], "www.hertz.bh": [7477], "pass.tmall.com": [21748], "community.dynamics.com": [4927], "wwraven.com": [2053], "go.befreely.io": [2053], "alpha.ms": [2053], "joycasino9.com": [20552], "u.d41.cl": [2053], "conbx.com": [2053], "ksu.am": [2053], "lidlcommunity.co.uk": [20683], "pcs.tv": [2053], "saratovskaya-obl.beeline.ru": [1801], "www.vpncritic.com": [17798], "tgerd.es": [2053], "oyoony.de": [21057], "data.virk.dk": [18032], "dt.meituan.com": [10405], "ballotmeasuredomains.com": [1676], "about.gigaom.com": [6764], "www.bonding.de": [2248], "*.abccommercial.com": [275], "tkb.ch": [20574], "www.sunybroome.edu": [2419], "ll.meituan.com": [10405], "q.niprltd.co.uk": [2053], "myls.cc": [2053], "static.domainnamesales.com": [4745], "s.rocko.me": [2053], "passport.fanli.com": [5769], "www.paper.li": [12584], "www.colossal.jp": [3511], "sarava.org": [14538], "l4.hitravel.xyz": [2053], "paymentsportal.dell.com": [4413], "kharma.unity3d.com": [17506], "www.wordnik.com": [18736], "*.earwolf.com": [5109], "l.tl": [2053], "bookings.houseoffraser.co.uk": [7709], "lib.newsvine.com": [11541], "helpdesk.proxy.org": [13407], "myjd-crm.jd.com": [8571], "login.rubiconproject.com": [14247], "insolvency.detini.gov.uk": [19900], "resources.vzaar.com": [18179], "tri.ht": [2053], "i.technet.microsoft.com": [10543], "p18.qhimg.com": [13531], "planet.kde.org": [8871], "py-m.es": [2053], "www.eipocimb.com": [2663], "d.zhng.co": [2053], "go.abinfos.com": [2053], "practicas.uned.es": [17446], "kwhou.se": [2053], "snfrw.com": [2053], "static.dealer.com": [4334], "help-zh-tw.nike.com": [11595], "*.igl.net": [2936], "ak2.polyvoreimg.com": [21168], "whms.com": [18202], "edt.im": [2053], "www.vaultoro.com": [21897], "parents.asu.edu": [1232], "icu-project.org": [8406], "aryz.us": [2053], "hcdi.gs": [2053], "globalsign.ssllabs.com": [14416], "manufrog.com": [10128], "www.lucky2u.net": [9813], "www.pp-international.net": [21184], "so-s.nflximg.net": [11421], "cjh.am": [2053], "lwb.xyz": [2053], "pitz.co": [2053], "www.superdrug.com": [15882], "anonym-surfen.de": [8772], "www.wwte11.com": [18232], "sp.asuka.jp": [2053], "www.mjg.in": [9920], "fanli.com": [5769], "api.badgekit.org": [1647], "flipkart.com": [6042], "mapbox.com": [10132], "schrodinger.com": [14992], "s.coloni.nl": [2053], "www.picoville.com": [12878], "danny.mantor.org": [10127], "gnusocial.no": [6479], "mnc.ms": [2053], "www.sustainablebusiness.com": [15921], "kldavis.co": [2053], "www.rabbitmq.com": [13721], "usercenter.fir.im": [20123], "cache.gizmodo.com": [6817], "poptavka.vutbr.cz": [17814], "code.theads.me": [16598], "*.sculpteo.com": [14671], "flow.ms": [2053], "colors-il.com": [3510], "lifehacker.com": [9492], "on.asha.org": [2053], "brevard.aclufl.org": [286], "surveyserver.net": [21615], "getawild.life": [2053], "yokl.com": [18996], "th.silverrushstyle.com": [15045], "foia.state.gov": [17345], "www.0180.info": [16363], "prophet.heise.de": [7428], "online.yuga.ru": [22121], "baratikor.com": [4838], "saucenao.com": [14541], "ddeveaux.link": [2053], "www.jackson-it.de": [8632], "app2.salesmanago.pl": [14307], "www.durham.police.uk": [4905], "chatterbon.es": [2053], "opengroup.org": [16470], "dev.ssllabs.com": [14416], "success.act-on.com": [19268], "www.gmo.jp": [6462], "uillinois.edu": [17238], "stat.webhostingsearch.com": [18335], "barkpro.com": [2053], "www.webgo24.de": [18362], "lori.link": [2053], "ss.meituan.com": [10405], "company.icq.com": [7837], "panorama.am": [21069], "careers.yell.com": [22096], "cdn.imgstat.com": [3993], "www.privacy-cd.org": [13311], "www.postgrad.hobsons.com": [20348], "graysofwestminster.co.uk": [7031], "smth.gr": [2053], "svnlab.com": [14439], "short.broll.at": [2053], "www.metasploit.com": [10488], "mail.xmission.com": [18831], "bla1ze.me": [2053], "*.managers.hr.columbia.edu": [3512], "childabduction.state.gov": [17345], "clkto.me": [2053], "drc.ohiolink.edu": [11961], "s33.cnzz.com": [3391], "l.hymu.xyz": [2053], "wuxiguan.jd.com": [8571], "www.medconfidential.org": [10303], "support.ixsystems.com": [8029], "projects.puppetlabs.com": [13460], "guangzhou.douban.com": [4802], "www.m.maps.yandex.kz": [18957], "at.pcv.nyc": [2053], "r.jutnux.co.uk": [2053], "plcy.co": [2053], "www.geeksquad.co.uk": [6619], "san.santive.com": [2053], "support.ispbilling.com": [17092], "lucia.unizar.es": [17643], "brandisty.com": [2338], "admob.com": [571], "mecn.me": [2053], "apple.com.cn": [1162], "americanflyertrains.com": [979], "hakko.com": [7302], "faq.soylent.com": [15448], "*.bloo.ie": [2167], "leiyang.meituan.com": [10405], "www.linux-magazine.com": [9554], "b0.raptrcdn.com": [21256], "mysullivannews.com": [11008], "sa1.www4.irs.gov": [7964], "m.alibaba.com": [850], "eu.mouseflow.com": [10812], "iodi.ne": [2053], "baike.bdimg.com": [1662], "apply.hdfcbank.com": [7389], "www.pinta-outlet.fi": [12913], "play.bgrap.ch": [2053], "static.sockshare.com": [15331], "*.blutmagie.de": [2212], "rma.demandmedia.com": [4422], "communities.ca.com": [2569], "bind.ga": [2053], "bargains4business.com.au": [1717], "cloudstor.aarnet.edu.au": [269], "nrasports.nra.org": [20942], "ipse.co.uk": [7944], "www.torcache.net": [16842], "sglife.in": [2053], "donate.shadowproof.com": [14898], "jabber.hot-chilli.net": [7690], "img0.glassdoor.co.in": [20247], "questions.medicaid.gov": [20771], "for.tn": [2053], "tjunks.net": [2053], "lists.macosforge.org": [9985], "www.vh3.vutbr.cz": [17814], "visaforchina.org": [18057], "stupidcensorship.com": [15803], "antics.me": [2053], "www.killscreen.com": [9040], "wikidot.com": [18593], "tiblog.us": [2053], "move.va.gov": [17297], "*.ch.ch": [19682], "wanglibao.com": [18268], "platform.communicatorcorp.com": [3565], "blog.siteground.com": [15112], "m1ke.us": [2053], "d-r.us": [2053], "wka.ms": [2053], "we-audit.org": [2053], "*.wdtinc.com": [18333], "qiyukf.com": [21240], "4kbhkort.kk.dk": [8883], "*.qoo10.cn": [13537], "www.fishbase.us": [5996], "moderncrypto.org": [10707], "www.rkh.co.uk": [21314], "filmandmediastudies.georgetown.edu": [6668], "on.tematriq.com": [2053], "petitions.southglos.gov.uk": [15438], "www.sherrin.com.au": [14946], "velocitymicro.com": [17890], "*.yimg.com": [18991], "shubh.am": [14994], "code.djangoproject.com": [4677], "www.evisa-vietnam.com": [5567], "collegeboundfund.com": [3488], "sh.vultus.de": [2053], "torybf.org": [2053], "9to5mac.com": [247], "www.precisionpros.com": [13245], "educationusa.info": [20010], "www.gavinhungry.io": [6590], "boots.no": [2269], "gregj.us": [2053], "vip.chbtc.com": [3094], "ese.engineering.osu.edu": [11959], "lvs.truehits.in.th": [17049], "www.romdashboard.com": [13680], "www.channel4.com": [3062], "atrpms.net": [409], "tolaris.com": [16810], "www.virtualinventions.com": [18043], "supermeet.tv": [2053], "walsall.greenparty.org.uk": [7052], "t.tornify.com": [2053], "*.myleague.com": [10956], "maps.yandex.com": [18956], "www.mercurial-scm.org": [10454], "api.cxense.com": [2753], "*.craftbanter.com": [3821], "tssn.co": [2053], "hants.gov.uk": [7328], "*.1984.is": [49], "it.regency.ie": [2053], "*.rsmsecure.com": [13693], "support.upc-cablecom.ch": [21865], "resources.superherostuff.com": [15886], "ad1.emediate.dk": [5304], "assetgame.roblox.com": [14156], "crc.id.au": [2713], "hboshopeu.com": [20325], "www.mn.uio.no": [17615], "godiva.cm": [2053], "www.sportradar.com": [21540], "www.slovakrail.sk": [15218], "kareliya.beeline.ru": [1801], "fro.me.uk": [2053], "www.geogebra.org": [6659], "bitgamer.com": [2046], "gumcprof.georgetown.edu": [6668], "*.lunarpages.com": [609], "ch.bme.hu": [1570], "a.fsdn.com": [251], "blog.engineyard.com": [5367], "paste.ubuntu.com.cn": [17372], "www.chcemvediet.sk": [3095], "go.koawach.de": [2053], "www.stedebroec.nl": [11324], "mycology.space": [2053], "wu.cth.lc": [2053], "tui.kapani.de": [2053], "loja.meo.pt": [10440], "fatwreck.com": [20100], "en.rutracker.org": [21346], "i3.mifile.cn": [10560], "pictomania.com": [12880], "webdevstudios.com": [18357], "renttherunway.com": [14007], "lingshui.meituan.com": [10405], "apmor.in": [2053], "page.aliexpress.com": [19343], "13ny.vote": [2053], "pixoto.com": [12964], "coinimal.com": [3468], "t.dstyle.us": [2053], "christophertruncer.com": [3174], "rss.mmedia.me": [10456], "vakil.info": [2053], "url.soit.be": [2053], "www.commonapp.org": [3548], "alumni.stanford.edu": [15635], "*.www.starwoodhotels.com": [15667], "yellowpagesoptout.com": [18978], "smith.ly": [2053], "pnasfirstlook.org": [12476], "swinburne.edu.au": [15944], "*.chatter.com": [3092], "ippy.pics": [2053], "investor.fitbit.com": [6002], "namecentral.com": [11207], "cf.prefetch.xxxbunker.com": [18911], "crowdtangle.com": [3893], "us.pycon.org": [13492], "www.datatables.net": [4266], "keckapps.usc.edu": [17315], "drsha.ms": [2053], "accredible.com": [502], "juwel.ir": [2053], "sape.ru": [14535], "nervous.io": [11355], "8qr.co": [2053], "www.sptag.com": [15573], "www.ndia.org": [11238], "softlayer.com": [15343], "www.site.yandex.kz": [18957], "nkla.us": [2053], "blogs.office.com": [11942], "rt.fsl.cs.sunysb.edu": [15736], "ipfw.io": [2053], "fanp.us": [2053], "img.borsen.dk": [2278], "relate.org.uk": [13985], "qnm.li": [2053], "ptrn.it": [2053], "www.flixbus.dk": [6047], "sitedata.xramp.com": [18891], "s.carlcolt.co": [2053], "tradeblock.com": [16908], "discuss.codemirror.net": [3433], "citp.princeton.edu": [13291], "g-am.es": [2053], "allensblog.me": [2053], "inside.wpp.com": [18219], "*.smartmoney.net": [11513], "davetapia.biz": [2053], "etrux.es": [2053], "mtnacertification.org": [9965], "peoplefinder.gmu.edu": [6666], "go.kaley.co": [2053], "ri.gov": [21306], "fullyop.co.uk": [2053], "academy.fleetboard.com": [20131], "dn-sdkcnssl.qbox.me": [13528], "*.rubygems.org": [14255], "www.ibm.com": [7821], "secure.torrentday.com": [16850], "whmcs.com": [18201], "dn.cdn.gmru.net": [6466], "gtruth.co": [2053], "www.x-lift.jp": [18798], "www.soraiseyourglasses.com": [15292], "test.hertzequip.com": [7511], "sconfir.com": [2053], "hackover.de": [7288], "www.bigbrotherawards.de": [1905], "zipcloud.com": [8843], "m9th.us": [2053], "netcompetition.org": [11367], "www.playerauctions.com": [13023], "www.clubcompy.com": [3379], "metrics.stanford.edu": [15636], "ezwdt.co": [2053], "*.sciverse.com": [14617], "dr-qubit.org": [4830], "blog.conformal.com": [3637], "nwkd.co": [2053], "cambridge.greenparty.org.uk": [7052], "napoveda.active24.cz": [19276], "hacdc.org": [7264], "joyiswith.in": [2053], "heide-park.de": [7421], "gymaesthetics.de": [20301], "cheznous.com": [18790], "u4.uicdn.net": [17236], "www.epson.com.mx": [5434], "cdn.bfm.ru": [19524], "l.esija.com": [2053], "extremerestraints.com": [20083], "www.fossies.org": [20151], "cable6.net": [2761], "ftf.us.es": [17706], "prxy.com": [13413], "www.andesi.org": [1037], "g3.chaucanh.net": [2053], "nra.org": [20943], "www.mwop.net": [10927], "www.colsonservices.com": [19756], "stucomp.stanford.edu": [15635], "www.elance.com": [5241], "www.gq-magazine.co.uk": [6495], "*.aspi.org.au": [1438], "www.careers.dyson.com": [4935], "kurierclub.kurier.at": [9194], "online.illinois.edu": [17544], "www.myendnoteweb.com": [5343], "blogs.amnesty.org.uk": [1009], "www.gemklub.hu": [6639], "contact.comparethemarket.com": [3575], "manager.travelspecialistsite.com": [16974], "magnum-ci.com": [20736], "earncharge.com": [2053], "hcm-fusioncrm.oracle.com": [12284], "images.sciencedaily.com": [14619], "www.tornadoweb.org": [16845], "cdn.mysql.com": [10970], "bugs.mageia.org": [10014], "*.yelp.nl": [18979], "*.homecomputing.fr": [7622], "www.ocelot.li": [11909], "msbestbuys.com": [2053], "static.mailigen.com": [10052], "snugb.ug": [2053], "12s.ch": [2053], "lab.springer.com": [15561], "www.cacert.org": [2578], "romo.rocks": [2053], "superguarantee.com": [15868], "hdepot.ca": [2053], "*.nextgenautoparts.com": [11561], "www.rr.com": [14149], "docuwiki.hearstdigitalnews.com": [7408], "lafiestaviva.mx": [2053], "www.vizury.com": [18093], "www.owler.com": [21050], "www.oneweb.cz": [11847], "rgn.rs": [2053], "www.ots.treas.gov": [17337], "csedweek.org": [2727], "frat.md": [2053], "clientapi.ipip.net": [20490], "link.bsa179.org": [2053], "b2.to": [2053], "c1.next.westlaw.com": [18514], "*.ad.ad-srv.net": [16216], "customer.comcast.com": [3525], "www.teenshealth.org": [9036], "ctaxdd.cardiff.gov.uk": [19644], "platform.meetme.com": [10378], "asset-0.soup.io": [15415], "developer.forecast.io": [6141], "kali.li": [2053], "su.zizuu.com": [2053], "drg.io": [2053], "blog.aerofs.com": [727], "images.cdn.static.malwarebytes.org": [10093], "gng.link": [2053], "driz.ly": [2053], "sq.meituan.com": [10405], "*.mycdsglobal.com": [2622], "spanish.bolivia.usembassy.gov": [21879], "rest-production.mollom.com": [10724], "l.dbea.st": [2053], "www.exlibris.ch": [5605], "picviewer.org": [2053], "wap.douban.com": [4802], "connect.news.com.au": [11530], "apps.nhsbsa.nhs.uk": [11102], "hotwire.com": [7706], "chocolate-doom.org": [3154], "whoisology.com": [18559], "webshop.ottos.ch": [21042], "ridesk.it": [2053], "tbo.hm": [2053], "www.rutube.ru": [21347], "visualwebsiteoptimizer.com": [18076], "data.appguru.com": [1145], "gora.golf.rakuten.co.jp": [13767], "deansnewsletter.stanford.edu": [15634], "vcno.co": [2053], "webmail.hermes.cam.ac.uk": [17529], "lastfm-z.plexapp.com": [13037], "www.openmedianow.net": [12157], "tjev.mx": [2053], "i.ju.taobao.com": [16206], "curate.us": [3994], "itaccounts.nottingham.ac.uk": [11726], "sz.meituan.com": [10405], "pzl.no": [2053], "l.dh.hu": [2053], "c.chillyaar.com": [2053], "www.iana.org": [7813], "publicfeed.stubhub.co.uk": [15789], "web.gcmasia.com": [6426], "metrin.us": [2053], "www.ultimate-guitar.com": [21843], "amazingcareers.firstdirect.com": [20126, 20127], "austro.info": [2053], "livesino.duoshuo.com": [19969], "deburl.com": [2053], "www.ultimarc.com": [21842], "www.explore.co.uk": [7597], "bndless.com": [2053], "www.linuxluddites.com": [9584], "prettyincash.com": [13266], "re.hn": [2053], "rrcom.nl": [2053], "web01.srvv.net": [15594], "to.oc-x.jp": [2053], "petropavlovsk-kamchatskiy.beeline.ru": [1801], "www.payhip.com": [12686], "library.ohio-state.edu": [11960], "fastpiratebay.eu": [21709], "avatars3.githubusercontent.com": [6801], "www.poodle.io": [12480], "navigator.web.de": [18347], "mofi.re": [2053], "scorreia.tk": [2053], "winter.oxfordshire.gov.uk": [21055], "club.jd.com": [8571], "shalon.co": [2053], "blog.gravity.com": [20278], "git.pld-linux.org": [12471], "www1.livenation.co.*": [9642], "id.amap.com": [19360], "www.pornhub.com": [13153], "tryhard.audio": [2053], "l.samho.nl": [2053], "support.t-mobile.com": [16026], "console.online.net": [12069], "on.self.com": [2053], "auzi.co": [2053], "*.frype.com": [4838], "clear-code.com": [3286], "partnerportal.unruly.co": [21860], "*.nadaguides.com": [11056], "*.pcworld.com": [12435], "www.cinemacon.com": [3205], "ianw.in": [2053], "shpl.ly": [2053], "pss.sk": [13415], "client.presspage.com": [13259], "www.diybanter.com": [4111], "escentu.al": [2053], "fa.lcon.me": [2053], "a.gilani.me": [2053], "online.colchester.gov.uk": [3477], "blog.veracode.com": [17906], "rads.tk": [2053], "forums.unrealircd.org": [17651], "dnb.com": [4215], "go.ruffo.me": [2053], "www.piraten-oberpfalz.de": [12932], "mako.si": [2053], "i.suntravel.xyz": [2053], "go.edlisten.com": [2053], "realtime.email": [13858], "evoliatis.com": [5572], "*.iamplify.com": [7818], "abakus.freenet.de": [6300], "nama.cc": [2053], "s.ta4a.net": [2053], "term.li": [2053], "stream-tv.ga": [2053], "www.bestlawyers.com": [1854], "www.delta.com": [4414], "tdgar.de": [2053], "sealserver.trustkeeper.net": [17057], "ncbi.nlm.nih.gov": [11241], "eaglerockreservation.org": [5105], "videocast.nih.gov": [11241], "u.gijs.me": [2053], "buy.yahoo.com.tw": [18940], "events.ccc.de": [2596], "failover.intel.com": [8355], "webmail.hcltech.com": [7179], "login.mail.sohu.com": [15352], "yelp.com.ph": [18979], "lsi.com": [9254], "zerowater.com": [19162], "pixel.keywee.co": [20587], "bluff.house": [2053], "blve.in": [2053], "www.flybuys.com.au": [6077], "feeds.amung.us": [18565], "odmwheels.com": [11815], "www.libreboot.org": [9476], "enrollment-info.anthem.com": [19395], "www.motherboard.tv": [10795], "threatvault.paloaltonetworks.com": [12553], "on.gooloo.de": [2053], "nz.taobao.com": [16206], "wiki.piratenpartei.at": [12937], "pads.pirateparty.gr": [21135], "dcandies.com": [2053], "www.bloggeek.me": [2154], "bitte.overclockers.at": [12369], "www.editorialmanager.com": [5188], "tbag.net": [2053], "www.erinn.org": [5448], "m.addthisedge.com": [612], "novomoskovsk.beeline.ru": [1801], "stardock.net": [15653], "www.festeirice.com.br": [5874], "postident.deutschepost.de": [19901], "duck.co": [4888], "*.gamedesire.net": [6548], "cubetu.be": [2053], "onespace.kcl.ac.uk": [9052], "cms.corporate.walmart.com": [18260], "www.bookshop.theguardian.com": [16554], "rtb.sitescout.com": [15118], "www.truecrypt71a.com": [17043], "falb.me": [2053], "join.epoch.com": [5428], "www.rawgithub.com": [13815], "url.lchau.com": [2053], "*.swmed.edu": [17569], "pb.switchadhub.com": [15954], "gertenba.ch": [2053], "archiv.mobile.de": [20811], "www.previa.se": [13270], "www.marcrogers.org": [10145], "download.videolan.org": [17981], "kqed.org": [8900], "www.cryptovpn.me": [19831], "jason-3.cnes.fr": [2691], "viber.com": [17956], "ful.lc": [2053], "*.www.eastbay.com": [5117], "corporate.zalando.at": [19094], "onmy.lol": [2053], "drgree.ne": [2053], "robobees.seas.harvard.edu": [7351], "fleresomdig.radikale.dk": [13748], "*.mediamind.com": [10325], "bcol.barclaycard.co.uk": [1712], "pgeveryday.ca": [13349], "cdn.ywxi.net": [19061], "deepin.com": [4380], "educationsso.tue.nl": [16129], "support.citrix.com": [3237], "acenet-inc.net": [509], "umd3.mycdn.me": [11014], "i.grabr.io": [2053], "rashid.tips": [2053], "www.coevorden.nl": [11324], "soyespiritu.al": [2053], "ljx.cc": [2053], "help-en-us.nike.com": [11595], "doc.rt.com": [13702], "cablesurf.de": [2764], "micahflee.com": [10519], "www.moar.so": [10672], "www.mysullivannews.com": [11008], "stf.mx": [2053], "codeanywhere.com": [19746], "fb.anhc.mx": [2053], "fi.godaddy.com": [6898], "www.catalogue.yandex.by": [18953], "z.tomi.cat": [2053], "www.linux.org.ru": [9568], "callcenter.berkeley.edu": [17526], "www.khub.net": [8877], "ihin.es": [2053], "*.kobobooks.nl": [9101], "instantssl.com": [8335], "wher.be": [2053], "microsoftstudios.com": [10548], "www.jayisgames.com": [8682], "emily.st": [5311], "www2.bibl.liu.se": [9237], "heml.is": [7455], "bioshockinfinite.com": [1955], "pixel.sojern.com": [21501], "assembla.com": [1313], "eforms.copeland.gov.uk": [19789], "cam.gy": [2053], "www.pirate-party.us": [21130], "online.maine.edu": [17608], "www.dobrochan.ru": [4700], "1.tn.gov": [2053], "fnva.co": [2053], "digitallibrary.norfolk.gov.uk": [20923], "my.netclean.com": [11378], "www.game.co.uk": [6535], "www.facebook.com": [5733], "isites.harvard.edu": [7351], "www.retailsails.com": [14056], "bmt.dj": [2053], "*.plimus.com": [13039], "my.jumpline.com": [8828], "urbina.io": [2053], "www.platt.com": [13009], "www.hdfcbank.com": [7389], "www.subgenius.com": [3188], "c1.aztravel.xyz": [2053], "efm3.com": [2053], "dzn.rocks": [2053], "fieldportal.netapp.com": [11374], "evoapp.co.uk": [2053], "jep.im": [2053], "gocreate.cc": [2053], "ply.li": [2053], "dphrs.in": [2053], "0-60.in": [2053], "connman.net": [3643], "www.datacenterworld.com": [4269], "signup.ipvanish.com": [7946], "go-to.im": [2053], "bhp.to": [2053], "amzer.me": [2053], "i1.social.microsoft.com": [10543], "entadsl.com": [5391], "factbook.ecc-platform.org": [4978], "vip.vodafone.co.uk": [18106], "www.hostvirtual.com": [7662], "mpp2.vindicosuite.com": [18013], "pdxinv.us": [2053], "mbmjobs.co": [2053], "edp1.adriver.ru": [573], "mybrand.tmall.com": [21748], "fxly.co": [2053], "nouba.dsi.cnrs.fr": [6314], "wwc.alicdn.com": [846], "kcsd96.com": [2053], "cheltfe.st": [2053], "mailvelope.com": [10058], "yueqing.1688.com": [44], "relv.so": [2053], "sogeek.co": [2053], "bx.businessweek.com": [2513], "www.uk.adjug.com": [565], "buyhom.es": [2053], "*.smfboards.com": [14376], "redbull.co.uk": [13900], "prenumeration.idg.se": [7852], "afwkly.com": [2053], "sync.ad-stir.com": [552], "young.hillingdon.gov.uk": [7550], "utex.as": [2053], "dob.cat": [2053], "danc.tech": [2053], "www.ifttt.com": [7872], "www.omniture.com": [12002], "lib.stanford.edu": [15635], "securem.ikea.com": [8108], "mybrandsho.es": [2053], "pip-s.tips": [2053], "renshou.meituan.com": [10405], "www.ikgalekkerslapen.nl": [8109], "luxr.us": [2053], "www.profesia.sk": [21206], "www.videotron.com": [17993], "*.jacobinmag.com": [8636], "img.linux.cn": [9562], "fyi.so": [2053], "status.illinois.edu": [17544], "cdils.me": [2053], "zipcar.com": [19190], "homelessworldcup.org": [7625], "wuts.co": [2053], "ar.witness.org": [18683], "myaccount.laterooms.com": [20639], "partner.justeat.it": [20565], "2x.com": [120], "learningwithoutlimits.educ.cam.ac.uk": [17529], "oae.uic.edu": [17517], "byod.qq.com": [13514], "www.gomez.com": [3609], "shared.sub.infousa.com": [8259], "j0p.nl": [2053], "www.mobil.yandex.com.tr": [18954], "weborder.active24.cat": [19273], "el.3.boardgamearena.com": [2219], "customercare.23andme.com": [89], "securedrop.theguardian.com": [16554], "gcupones.pw": [2053], "ko.libreoffice.org": [9471], "b.clincshop.com": [2053], "stopthehacker.com": [15746], "l24.nl": [2053], "www.elementary.io": [5260], "www.makezine.com": [10082], "go.paul4ta.com": [2053], "ixsystems.com": [8029], "innerbody.com": [20463], "sprtsnt.ca": [2053], "*.getresponse.com": [6703], "vinilox.eu": [18016], "roif.co": [2053], "www.csedweek.org": [2727], "www.mpfemployers.org.uk": [20838], "a.sd.ht": [2053], "parisclubportal.state.gov": [17345], "members.cdbaby.com": [19662], "*.careerbuilder.co.uk": [2901], "aboutthedata.com": [467], "go.techyizu.org": [2053], "r.6toys.fr": [2053], "go.martijn.ac": [2053], "dow.it": [2053], "www.forumwizard.net": [6182], "messages.moodle.net": [10761], "veriguide1.cse.cuhk.edu.hk": [2747], "*.tickets.com": [16694], "shengzhou.meituan.com": [10405], "www.idi.ntnu.no": [11153], "guard.githost.io": [20242], "anhui.jd.com": [8571], "recruit.pyeongchang2018.com": [21229], "wlabs.me": [2053], "link.primum.es": [2053], "defendinnovation.org": [5007], "ecs-store.engineering.osu.edu": [11959], "it.slashdot.org": [15192], "a.fresh.horse": [2053], "www.wallet.la": [18256], "scip.westberks.gov.uk": [22005], "www.it.lastminute.com": [9318], "f4d.co": [2053], "www.fotpms.plymouth.ac.uk": [13055], "tortoisegit.org": [16867], "tucf.co": [2053], "loqu.ca": [2053], "sprt.li": [2053], "review.gawker.com": [6593], "immunitysec.com": [8156], "ionaudio.com": [7924], "lnk.fahad.space": [2053], "hyperelliptic.org": [7791], "www.poshliving.com": [13171], "camiel.io": [2053], "www.ubuntu-mate.org": [17378], "assets1.postalheritage.org.uk": [13185], "truspot.in": [2053], "kubuntuforums.net": [9181], "www.greenhouseci.com": [20282], "circle.wustl.edu": [18290], "crut.is": [2053], "l.nali.org": [2053], "www.bowenpress.com": [19579], "es.gy": [5457], "www.awe.sm": [1500], "gradapply.ucsd.edu": [17216], "janson.media": [2053], "nicotine-anonymous.org": [11583], "hay.to": [2053], "mdhj.fr": [2053], "y0utube.ml": [2053], "www.unop.uk": [17650], "stgeorges.nhs.uk": [11102], "4510.co": [2053], "*.tkb.ch": [20574], "www.scottish-country-cottages.co.uk": [18790], "lists.gnu.org": [6474], "www.nti.org": [11150], "fsrwiwi.htwk-leipzig.de": [7736], "nujiang.meituan.com": [10405], "tycnsys.co": [2053], "l.blivakker.no": [2053], "www.cricketwireless.com": [3865], "cms.vervehosting.com": [17938], "wkzh.ch": [2053], "jouri.be": [2053], "twg.bz": [2053], "fs12.formsite.com": [20148], "gmf.me": [2053], "userhr.centrum.cz": [19674], "locationmde.data.gov.uk": [19855], "archivo.upo.es": [17683], "cnblogs.com": [19743], "popcorntime.ag": [21170], "w.zequi.es": [2053], "fuse.ms": [2053], "community.office365.com": [11944], "m.froscon.de": [6210], "sts.login.vu.nl": [17813], "*.postdocs.ucsf.edu": [17588], "nohun.gr": [2053], "www.nhn.com": [11098], "otsho.ws": [2053], "www.clyp.it": [3385], "listes.openstreetmap.fr": [12245], "blog.bitmain.com": [2054], "*.sc.hodesdigital.com": [1847], "risk.thomsonreuters.com": [16650], "apaaspare.me": [2053], "pureftpd.org": [13466], "www.doomworld.com": [4776], "j4t.co": [2053], "disputations.gawker.com": [6593], "www.hidepay.net": [7537], "*.adjuggler.net": [567], "www.blubrry.com": [19560], "phoeti.co": [2053], "www.certificatedetails.com": [19679], "mtgsy.net": [10551], "cdn.gnd-tech.com": [6469], "advertising.digitalpoint.com": [4581], "informatick.com": [8271], "smills.co": [2053], "www-cdn1.pardot.com": [12605], "inf2011.dosowisko.net": [4782], "wikimedia.org.au": [18595], "socitm.govmetric.com": [6993], "webmail.ovh.net": [12378], "thepiratebay.bypassed.host": [21217], "payperpost.com": [12680], "lh3.google.co.*": [6965], "hackers.fi": [7278], "geninfo.tk": [2053], "research.rakuten.co.jp": [13767], "evision.kent.ac.uk": [17603], "my.knightswarm.com": [9096], "i-e-c.in": [2053], "www.zenmate.my": [19133], "store.barrons.com": [19489], "ctswholesalesunglasses.com": [2744], "*.oscommerce.com": [12320], "uma.social": [2053], "txsci.net": [2053], "www.pressable.com": [13262], "www.acikakademi.com": [514], "mk.rbth.com": [21267], "*.today.msnbc.msn.com": [9959], "hanford.gov": [7325], "extensis.com": [5634], "static.licdn.com": [9239], "www.clearchain.com": [3289], "i-0.us": [2053], "www.paginazero.com.br": [12538], "www.allflicks.net": [19349], "alumni.fit.edu": [6058], "dmitrov.beeline.ru": [1801], "digitec.ch": [4591], "zalando.es": [19094], "www.easy-share.com": [3877], "www.karmankardon.nl": [7340], "hm.com": [7218], "theaba.com": [2053], "opentext.com": [12182], "memberdb.nuug.no": [11167, 11169], "space.dtu.dk": [16286], "laeringsplattformen.difi.no": [4547], "mhltm.ag": [2053], "endclothing.com": [20037], "tdp.pw": [2053], "bbp.rocks": [2053], "www.mclu.org": [9893], "push.web4all.fr": [18349], "hotline.ba.com": [1527], "organdonation.gov.wales": [6987], "thehub.walthamforest.gov.uk": [18262], "gotinder.com": [16740], "www.zona.media": [19210], "xxxx.qiyukf.com": [21240], "archiveofourown.org": [1206], "freu.be": [2053], "webmail.gresille.org": [7071], "*.biapy.fr": [1893], "status.nuget.org": [11760], "us.effectivemeasure.net": [5208], "d.prbrds.com": [13338], "selfhtml.org": [21405], "clubexbox.com": [2053], "tinig.co": [2053], "rsync.net": [14242], "developer.richrelevance.com": [14104], "www.popcorntime.ws": [21170], "mysql.vas-hosting.cz": [21896], "college.mirea.ru": [20805], "apps.irs.gov": [7964], "auditorius.ru": [1399], "depaol.is": [2053], "www.tcpacompliance.us": [16047], "studyabroad.state.gov": [17345], "checkout.cnv.com": [19744], "domn.link": [2053], "*.analytics.edgekey.net": [1027], "webdiis.unizar.es": [17643], "www.mapbox.com": [10132], "go.hub.ki": [2053], "static.hosteurope.de": [7660], "snek.us": [2053], "*.v-identity.com": [17753], "iproduction.com": [7952], "*.greystripe.com": [7074], "www.estoniaevoting.org": [5473], "www.kenengba.com": [9000], "www.vungle.com": [18173], "www2.webmetrics.com": [18429], "drchad.us": [2053], "dropbox.wustl.edu": [18290], "status.addthis.com": [611], "l.jmk.me": [2053], "advantageseoservices.com": [690], "vtt.us.es": [17706], "sei.li": [2053], "greasyfork.org": [7033], "fckme.org": [12469], "www.joycasino.info": [20552], "*.neobux.com": [11339], "khabarovsk.rt.ru": [13703], "wiki.gimp.org": [20240], "ocmb.co": [2053], "sysmex.com": [16009], "freakattack.com": [5706], "nordkappnett.no": [11674], "richmondandtwickenham.greenparty.org.uk": [7052], "vance.pw": [2053], "filmluv.it": [2053], "accessories.dell.com": [4413], "bettercrypto.org": [1879], "portal.cloudpassage.com": [19739], "amebaownd.com": [19379], "snb.fi": [2053], "www.nazwa.pl": [11307], "gladsne.ws": [2053], "www.ameba.jp": [19378], "drlome.li": [2053], "teachingcommons.stanford.edu": [15635], "plews.gd": [2053], "www.gg.gov.au": [7001], "*.factoryexpo.net": [5740], "dz2cdn2.dzone.com": [4171], "external.ak.fbcdn.net": [5816], "detail.tmall.com": [21748], "jjj.works": [2053], "cbsstore.com": [2588], "www.borvilag.aldi.hu": [338], "labsafety.jhu.edu": [8584], "www.noip.com": [11638], "48months.ie": [176], "hrfnk.us": [2053], "tsp.ch": [2053], "secure.gettyimages.de": [6741], "dev.globus.org": [6870], "jesusliv.es": [2053], "pt.functions-online.com": [20187], "bosfera.bosfera.ru": [19574], "docs.derby.gov.uk": [4460], "crownpa.mx": [2053], "img.honest.com": [7626], "negativesum.net": [11327], "plugins2.status.net": [15690], "via.vode.com": [2053], "www.sberbankdirect.de": [14561], "pjrc.com": [12464], "techview.link": [2053], "isdewinkelopen.nl": [20416], "cdn-ru.thinksteroids.com": [9904], "images.thalasseo.com": [16430], "how-old.net": [7713], "chatsecure.org": [3089], "s61.cnzz.com": [3391], "discuss.popcorntime.io": [13142], "api.metacpan.org": [10474], "wiki.openstreetmap.org": [12177], "nj.meituan.com": [10405], "ipcc.ch": [7936], "share.e-zar.com": [2053], "www.gridcoin.us": [7076], "nbl.osu.edu": [11959], "openknowledge.stanford.edu": [15635], "clb.social": [2053], "www.difficulties.de": [19917], "www.verisigninc.com": [17915], "wiki.edubuntu.org": [5169], "sccjobs.sheffield.gov.uk": [14939], "flik.li": [2053], "email.wao.gov.uk": [21972], "www.zerorobotics.org": [19153], "www.strategysignals.com": [15767], "alertscc.com": [14579], "sfwks.co": [2053], "www.pinsentmasons.com": [12351], "ix.equinix.com": [5438], "s.jd.com": [8571], "*.ingenuity.net.au": [8290], "gracecity.ch": [2053], "static-dev.gbot.me": [6934], "on.avalias.com": [2053], "globalhumanrights.org": [6848], "s3-ak.buzzfeed.com": [2531], "help.egopay.com": [5215], "www.wellcomelibrary.org": [22002], "idp.mit.edu": [9916], "master.chocolate-doom.org": [3154], "readthis.at": [2053], "sebp.due-north.com": [19968], "unifiedtracking.com": [17470], "git.videolan.org": [17981], "www.speedtree.com": [15504], "myfr.us": [2053], "www.yelpreservations.com": [22099], "u.malone.io": [2053], "vanacci.eu": [2053], "www.ciphershed.org": [3210], "live.piratenpartei.de": [12938], "*.applebees.com": [1164], "img2.wsimg.com": [14751], "app3.checksconnect.com": [7339], "www-astro.physics.ox.ac.uk": [17557], "terrasuisse.migros.ch": [10566], "spb.beeline.ru": [1801], "www.rio2016.com": [21310], "t.co": [16030], "eng.umd.edu": [17549], "orangeplant.co.uk": [21028], "gft.io": [2053], "www.onehub.com": [12034], "tinyblue.co": [2053], "scottish.cc": [2053], "nicegraphs.web.cern.ch": [2632], "www.lists.apple.com": [1160], "www.android-arsenal.com": [1043], "pfennigparade.de": [12821], "layerbnc.org": [9336], "*.pusherapp.com": [13482], "www.yerkramas.org": [22100], "tellapart.com": [21676], "9.asset.soup.io": [15415], "community.kurier.at": [9194], "www.grupoavante.org": [7114], "www.workaround.org": [18742], "archives.fedoraproject.org": [5843], "trust-guard.com": [17055], "texaco.com": [16410], "spreadshirt.be": [15552], "chrshnt.com": [2053], "img01.rl0.ru": [14147], "nucleus.nursing.osu.edu": [11959], "jimc.us": [2053], "on.wpxi.com": [2053], "bedrockformsemea.msn.com": [9961], "adwrkmedia.ml": [2053], "zhongaiyisheng.tmall.com": [21748], "legal.yandex.ua": [18961], "www.cinapalace.com": [3196], "*.poivron.org": [13211], "oracleimg.com": [12284], "habbo.fi": [7255], "gpco.me": [2053], "l.skyrme.net": [2053], "download.geogebra.org": [6659], "www.lordsoftheblog.net": [9772], "www.alertaenlinea.gov": [12009], "m.makanainc.com": [2053], "dnlr.hn": [2053], "hp96315.link": [2053], "cheapassfiction.com": [3102], "marketpress.com": [10173], "dartmouth.edu": [4236], "www.sexslurp.com": [14884], "piq.to": [2053], "pure-privacy.org": [13465], "tn.ckbe.at": [2053], "craftcoffee.com": [3823], "wiki.sitelock.com": [15114], "www.archaicbinary.net": [1199], "cryptostorm.org": [3960], "www.corbettreport.com": [3727], "channeladvisor.com": [3058], "games.random.org": [13780], "ch9.ms": [3039], "paidc.org": [2053], "ui.rk.doublepimp.com": [4812], "ac.mmstat.com": [10666], "oat.re": [2053], "www.youtube.com.my": [19016], "listen.freetalklive.com": [20171], "elevenpaths.com": [5262], "artndi.ga": [2053], "flexinvestments.net": [6028], "*.tu-harburg.de": [16131], "www.qksz.net": [3546], "it2.nl": [7987], "www.vocoll.com": [21939], "www.tc3.edu": [16815], "audience.tune.com": [21812], "*.primus.com": [13289], "pumodeling.com": [2053], "endur.in": [2053], "citialumninetwork.com": [3228], "nke.me": [2053], "www.korndesign.com": [9138], "drugpolicy.org": [4871], "www.tnaflix.com": [16791], "api.mk2.com": [20808], "www.openwireless.org": [12227], "djcpa.ca": [2053], "*.bodybuilding.com": [2228], "rldd.co": [2053], "radnhr.com": [2053], "cosmonova.net": [19796], "nfg.me": [2053], "wowimg.zamimg.com": [19095], "*.glimg.net": [6947], "scepsis.ru": [14585], "www.bitcoin-contact.org": [2009], "sbac.me": [2053], "nets-danid.dk": [11440], "obermassing.at": [11898], "forum.namecoin.info": [11212], "eotir.link": [2053], "chat.hipercontas.com.br": [20341], "schwabplan.com": [14613], "email-lists.org": [5293], "www.di.dk": [3631], "nerd.lavaboom.com": [9327], "ksut.co": [2053], "www.kicknews.co.uk": [9030], "vrge.co": [2053], "sogeni.us": [2053], "darwinbuild.macosforge.org": [9985], "www.security.nl": [14767], "wf.typotheque.com": [17194], "cheshire.police.uk": [19697], "www.truthinadvertising.org": [17077], "br.redhat.com": [13909], "1.12-changelog.wesnoth.org": [18500], "a15e.com": [2053], "www.ny.curbed.com": [3997], "i.sendly.com": [2053], "powerbuy.co.th": [13224], "hhg.osu.edu": [11959], "*.eis.de": [5229], "315.taobao.com": [16206], "www.fairphone.com": [5749], "bartleby.com": [1732], "hertz247.nl": [7494], "theora.org": [16612], "g39.co": [2053], "americancensorship.org": [5898], "russian-malta.com": [21344], "2008mail.sina.com.cn": [15086], "freeporngif.com": [6263, 6264], "3s.rs": [2053], "www.buttercoin.com": [2521], "krnl.me": [2053], "dc3.co": [2053], "rwy.bz": [2053], "www.chooseprivacyweek.org": [19708], "sso.secureserver.net": [14755], "ap.mnocdn.no": [750], "hh.meituan.com": [10405], "www.ouifm.fr": [12343], "r.vsoci.al": [2053], "www.oblic.com": [11807], "www.pugetsystems.com": [21225], "kvid.tv": [2053], "poderpda.com": [13067], "ealing.greenparty.org.uk": [7052], "www.treyperry.com": [16995], "www.questionnaires.ecn.ulaval.ca": [17515], "tfi.io": [2053], "good1.us": [2053], "investsmart.com.au": [8464], "www.hslu.ch": [7728], "embrmr.ch": [2053], "*.eventim.co.uk": [5548], "sbth.net": [2053], "myaccount.houstonchronicle.com": [7711], "iff.pm": [2053], "forum.t411.me": [16036], "wfplne.ws": [2053], "i.flp.tw": [2053], "post.harvard.edu": [7351], "myjobs.gloucestershire.gov.uk": [6872], "bit.skyjedi.com": [2053], "cache1.neodevlda.netdna-cdn.com": [11339], "meshfi.re": [2053], "ssl2buy.com": [14414], "www.leadformix.com": [9349], "vsltd.co": [2053], "ads9.contentabc.com": [3678], "developer.filemobile.com": [5915], "2dud.es": [2053], "daydeal.ch": [19865], "defr.dict.cc": [4536], "runbook.io": [14273], "marketing.sharethrough.com": [14925], "adacore.com": [587], "geeknetmedia.com": [6626], "www.pipping.org": [12917], "dacha.fbk.info": [5818], "www.netviewer.com": [11451], "support.balabit.com": [1668], "comparitech.com": [3578], "www.ntchosting.com": [11149], "skrilnetz.net": [15166], "vllmr.de": [2053], "greyhound.ca": [7073], "casper.infradead.org": [8282], "searchdatacenter.de": [16273], "khrt.co": [2053], "www.meetup.com": [10386], "lat.gr": [2053], "adserver.exoticads.com": [5610], "careers.kch.nhs.uk": [11102], "development.syllable.org": [21632], "eas8.emediate.eu": [5305], "apps.uat.communities.coverity.com": [3803], "interactivemediaawards.com": [8388], "assets.halowaypoint.com": [7307], "public.enthought.com": [5401], "i03.i.aliimg.com": [854], "sheamortgage.com": [8578], "investorflow.com": [15044], "markets.on.nytimes.com": [11189], "auth.awempire.com": [687], "jura.ch": [21629], "www.mix-computer.de": [9919], "humankindn.es": [2053], "qingzhou.meituan.com": [10405], "cancer.fi": [15998], "www.pavpanchekha.com": [12674], "jpg.st.audiko.net": [1394], "vbvl.be": [2053], "scllb.eu": [2053], "link.ushmid.com": [2053], "trac.linuxcounter.net": [9551], "rwg.li": [2053], "www.qrsolutions.com": [13516], "publicwhip.org.uk": [13444], "spinoff.nasa.gov": [11058], "i.i4shivam.com": [2053], "propolevskoy.ru": [21211], "mitls.org": [10513], "l.leituras.eu": [2053], "ipdt.us": [2053], "my.usembassy.gov": [21879], "spncrbg.gs": [2053], "parship.nzz.ch": [20974], "myplaydirect.com": [10964], "www.onlinenotebook.hu": [9308], "adultswim.com": [19306], "das-labor.org": [4237], "murmanskaya-obl.beeline.ru": [1801], "thebea.st": [2053], "www.mouseblocker.com": [10811], "ga.youcanbook.me": [19010], "taskp.se": [2053], "images.iop.org": [8345], "www.odont.uio.no": [17615], "*.townnews.com": [16889], "www.postaffiliatenetwork.com": [13179], "erik.gs": [2053], "skipb.co": [2053], "www.slides.com": [15209], "rd.io": [13828], "umassmed.worldcat.org": [18748], "eforms.redbridge.gov.uk": [13917], "cdn.connect.mail.ru": [10040], "pingyuan.meituan.com": [10405], "cjfe.org": [2675], "us.ynuf.alipay.com": [857], "knihy.nic.cz": [11572], "*.tmp.com": [16085], "is.def.lv": [2053], "nips.cc": [11119], "sabayon.org": [14450], "l.rc5.co": [2053], "internetlivestats.com": [8431], "cu-lead.us": [2053], "repeaterstore.com": [14012], "thema.sh": [2053], "www.systemoverlord.com": [16015], "click-sec.com": [3300], "rickmans.me": [2053], "simba3.web.cern.ch": [2632], "www.gtk-apps.org": [21006], "www.moh.nhs.uk": [11102], "lbhf.gov.uk": [9218], "scintilla.utwente.nl": [14629], "homr.us": [2053], "www.lambda-tek.com": [9290], "www.cosic.esat.kuleuven.be": [8969], "static.usatoday.com": [17309], "*.apply2jobs.com": [1167], "www.zeringo.com": [19151], "jhsl.ca": [2053], "www.necu.org": [11322], "kompakt.me": [2053], "m.netbet.fr": [11377], "webmail.comscore.com": [3517], "blosxom.com": [2176], "www.ci.uchicago.edu": [17532], "my.xmission.com": [18830], "inread.de": [2053], "bman.tv": [2053], "forum.moztw.org": [10856], "funker530.com": [6383], "mirror.debianforum.de": [4354], "www.payments.bolton.gov.uk": [19569], "r-vr.tk": [2053], "www.zanox.com": [19102], "amen.pics": [2053], "ndtv.in": [2053], "www.swca.org": [14442], "kun.cr": [2053], "33option.com": [127], "adm.to": [2053], "merchant.linksynergy.com": [9543], "9to5toys.com": [248], "ofertas.one": [2053], "img4.picload.org": [12873], "apiservices.krxd.net": [9167], "harlandclarkewebsmart.com": [7339], "contactus.com": [3672], "services.bournemouth.gov.uk": [2304], "lightwidget.com": [20685], "www.exactag.com": [5586], "carphonewarehouse.com": [2920], "www.insa-lyon.fr": [7918], "www.bright-things.com": [2372], "cdphga.org": [2053], "on.11alive.com": [2053], "youtube.de": [19016], "smokefree.gov": [21484], "cuaes.cornell.edu": [3744], "analytics.zipy.co.il": [19193], "affiliate.montereybayaquarium.org": [10755], "kvick.ly": [2053], "*.rediris.es": [13896], "imgt7.bdstatic.com": [1662], "peet.me": [2053], "audioboom.com": [19452], "www.theconversation.edu.au": [16528], "www.realworldocaml.org": [13862], "login.aliexpress.com": [847], "www.sysadmincasts.com": [16004], "my-chrome.ru": [20856], "holidayshirt.co": [2053], "www.fredandpickles.co.uk": [6232], "repo.parabola.nu": [12589], "l.dmzapps.com": [2053], "www.aldi.pt": [338], "klick2contact.com": [20608], "www.emily.st": [5311], "mrns.us": [2053], "ritchart.com": [2053], "www.humanityplus.org": [7758], "*.deepfield.net": [4375], "shuyang.meituan.com": [10405], "www.gavinnewsom.com": [6589], "efcb.co": [2053], "marthastewartweddings.com": [10196], "www.hertz.co.za": [7502], "indi.uno": [2053], "www.nadim.computer": [11196], "www.aldi.pl": [338], "internet.csr.nih.gov": [11115], "tbe.taleo.net": [16177], "imgking.co": [20439], "www.rttire.com": [13710], "vitalsource.com": [21930], "www.nobitcoinlicense.org": [11636], "ets.pw": [2053], "seal.osu.edu": [11959], "www.logika.net": [9719], "go.magento.com": [10017], "webmail.cs.cf.ac.uk": [2895], "www.nrablog.com": [20944], "psal.cs.drexel.edu": [4854], "discourse.soylent.com": [15448], "ad.search.ch": [14684], "www.sundayworld.com": [15854], "*.bighugelabs.com": [1907], "www.siia.net": [15349], "pirateproxy.tv": [21709], "support.braintreepayments.com": [2327], "asset-2.soupcdn.com": [15416], "www.padlister.com": [12526], "s.couples.lv": [2053], "pda-passport.yandex.com.tr": [18954], "ellory.us": [2053], "mykl.us": [2053], "locality.com": [20707], "my.commbank.com.au": [3542], "speedwellsoftware.com": [21531], "*.minted.com": [10623], "brooklinecollege.edu": [2417], "globaltap.com": [6862], "ctftime.org": [2742], "j-ai.tk": [2053], "fflo.es": [2053], "*.getharvest.com": [6699], "www.fife.gov.uk": [20106], "gogoinflight.com": [6933], "uds.moscow": [2053], "ipv4.doesnotwork.eu": [4720], "roadiq.axosoft.com": [1517], "shenmu.meituan.com": [10405], "lequi.pe": [2053], "tune.yandex.com.tr": [18954], "ucook.info": [2053], "i.rafam.co": [2053], "responder.wt-safetag.com": [18466], "www.twitch.tv": [17164], "londonist.com": [9747], "vodafone.co.uk": [18106], "blog.bitmex.com": [1985], "hanzhong.meituan.com": [10405], "dgrt.co": [2053], "www.structuralengineering.de": [7735], "www.fftlive.org": [5680], "onlinecensorship.org": [12074], "mobileimages.lowes.com": [9800], "downloads.lede-project.org": [20652], "*.auctions.godaddy.com": [6898], "60ato.ms": [2053], "cndle.co": [2053], "tmovier.me": [2053], "isolde.web.cern.ch": [2632], "carbonwind.net": [2892], "unitednuclear.com": [17493], "brave.piwikpro.com": [21139], "docs.i2p2.de": [7804], "wosu.pm": [2053], "zcarc.com": [7511], "bugzilla.libav.org": [9450], "*.gunadiframework.com": [491], "online.meo.pt": [10440], "mysql.com": [10970], "pch.im": [2053], "*.podbean.com": [13064], "postofficeshop.co.uk": [13182], "amnesty.org": [994], "partners.drweb.com": [4879], "bmg.xyz": [2053], "vanessatorrivilla.com": [8122], "git.libav.org": [9450], "oxfamirelandunwrapped.com": [12394], "www.dalee.ru": [19849], "y.zuzo.me": [2053], "thevideo.me": [16505], "on.ssh.io": [2053], "www2.sharefile.com": [14908], "avadirect-freedomusainc1.netdna-ssl.com": [1477], "www.mcitizen.com": [10032], "dnb.no": [4132], "workkafe.com": [18739], "elft.nhs.uk": [11102], "dev.getclouder.com": [6691], "mediacentre.vodafone.co.uk": [18106], "dspcl.co": [2053], "raptureready.com": [13797], "dot.kosk.me": [2053], "www.sanomakauppa.fi": [21370], "mi-ms.com": [10155], "m7.baidu.com": [1661], "filemobile.com": [5915], "ocaml.janestreet.com": [8659], "www.alliance-media.org.uk": [19350], "ispbilling.com": [17091], "lgscout.com": [9763], "manual.calibre-ebook.com": [2799], "sir.unizar.es": [17643], "www.globalpolicy.org": [6852], "piglit.freedesktop.org": [6243], "kng5.tv": [2053], "blogs.forbes.com": [6135], "www.dynatech.de": [4930], "support.linksys.com": [9544], "tllntd.co": [2053], "xroxy.com": [18893], "siteadvisor.com": [15110], "*.c13.hesecure.com": [7513], "www.medicalxpress.com": [10354], "www.w3.org": [18184], "bareismls.info": [2053], "archive.fo": [1203], "dsam.co": [2053], "www.hslda.org": [7234], "buildsys.contribs.org": [3686], "ensq.dict.cc": [4536], "pda.inosmi.ru": [20464], "www.torrents.me": [21763], "portal.rit.edu": [13667], "koala.cr": [2053], "apps.rackspace.com": [13740], "billycreative.com": [1939], "mirrors.fedoraproject.org": [5843], "www.imageoptim.com": [8127], "chaozhou.jd.com": [8571], "drama.epros.co": [2053], "www.sportisimo.pl": [14396], "filmindep.org": [2053], "www.trendweight.com": [16988], "authzth.alipay.com": [857], "www.online.osu.edu": [11959], "wolfga.ng": [2053], "apis.sharethrough.com": [14925], "www.nttdocomo.com": [11157], "bitvisor.org": [1999], "uimfaq.us": [2053], "s.iterar.co": [2053], "fps.re": [2053], "bh-pkskil.co": [2053], "cxsecurity.com": [4022], "foscam-bg.com": [6186], "mg.meituan.com": [10405], "pekwm.org": [12741], "informationweek.com": [8273], "www.webmail.byte.nl": [2544], "mms.10gen.com": [21], "fun.fanli.com": [5769], "dogsbodyhosting.net": [4723], "uploading.com": [17682], "fluxcards.de": [6074], "go.aps.org": [2053], "ut03.xhcdn.com": [18815], "rdn.link": [2053], "www.vwp.su": [18177], "wholesale.edgecast.com": [5180], "*.brave.com": [19587], "mail.happyassassin.net": [7333], "www.coolkeywest.com": [3709], "secure.jbeekman.nl": [8563], "wikimedia.de": [18595], "orywn.co": [2053], "www.navteqmedia.com": [11062], "aliyunhelp.oss.aliyuncs.com": [19346], "developer.basespace.illumina.com": [8117], "jar.land": [2053], "slotsfrisoren.dk": [15215], "farecompa.re": [2053], "cdn.w55c.net": [18187], "theweek.com": [16589], "yvar.ca": [2053], "autoho.me": [2053], "hile.mn": [2053], "froglabs.froscon.de": [6210], "code.fairphone.com": [5749], "huboard.com": [20392], "*.startssl.net": [15660], "leme.digital": [2053], "getgophish.com": [20231], "www.znak.com": [22136], "unmaintained.git.collabora.co.uk": [3481], "ad.targetingmarketplace.com": [1390], "go.samanage.com": [2053], "b-home.bezeq.co.il": [19522], "www.bclaconnect.ca": [1547], "net.geo.opera.com": [12252], "joshfactory.com": [2053], "umd.edu": [17549], "diter.es": [2053], "yk.onli.ca": [2053], "www.on.lung.ca": [12087], "collectifstoptafta.org": [3484], "amd.com": [962], "nugget.dianping.com": [19913], "mysql9.vas-hosting.cz": [21896], "help.zscaler.com": [19231], "gogt.it": [2053], "support.ssl.com": [14413], "s67.cnzz.com": [3391], "n3.to": [2053], "assets1.vzaar.com": [18179], "dotultima.com": [4801], "links.dylanb.me": [2053], "l.richg.info": [2053], "www.emanuelduss.ch": [5297], "gdtl.osu.edu": [11959], "www.tbib.org": [16238], "bls.properties": [2053], "api.search.cam.ac.uk": [17529], "megg.co": [2053], "abne.ws": [2053], "kaliningradskaya-obl.beeline.ru": [1801], "arbejdsgiver.jobzonen.dk": [8753], "tuakiri.ac.nz": [17087], "dragonbyte-tech.com": [4833], "how-to-box.com": [7717], "stgraber.org": [15605], "*.f3images.com": [5656], "asset1.betterplace.org": [1881], "crstl.uk": [2053], "grp11.ias.rakuten.co.jp": [13768], "cldbrr.net": [2053], "berkman.harvard.edu": [7351], "dsgnr.ca": [2053], "www.musalbas.com": [10895], "chimeric.de": [3139], "yota.ru": [22107], "researchweb.watson.ibm.com": [7821], "mthood.worldcat.org": [18748], "rwsis.com": [2053], "justice.gov.sk": [15217], "*.cafepress.com": [2775], "www.directbox.tv": [4613], "iosdevtips.com": [2053], "medici.alicdn.com": [846], "ubermedia.com": [17365], "www.sgno.org": [14350], "neilwrit.es": [2053], "gapintl.co": [2053], "account.1and1.com": [61], "*.imrworldwide.com": [8172], "kwi.lt": [2053], "lists.immunityinc.com": [8156], "lists.grok.org.uk": [7089], "www.afford.com": [743], "grabcad.com": [7006], "www.register.com": [13965], "yy.cx": [2053], "metal-detector-town.com": [10483], "europe-consommateurs.eu": [20069], "thefind.com": [16601], "cudahandbook.to": [2053], "www.pollendiary.com": [13107], "www.bitrise.io": [19543], "emfcamp.org": [20032], "freeworld.thc.org": [16065], "defensetravel.dod.mil": [17306], "*.cfr.org": [3770], "datacenter.cj2.nl": [2674], "delivery.c.switchadhub.com": [15954], "jlie.in": [2053], "www.harland.net": [7339], "i.ngx.cc": [11569], "www.sbi.co.in": [14320], "static.hootsuite.com": [7633], "gettyimages.co.jp": [6741], "service.optify.net": [12269], "dzn.im": [2053], "t.ajeya.me": [2053], "*.phobos.apple.com": [1159], "www.gay-lounge.net": [20208], "go.sto.tw": [2053], "*.uimserv.net": [17239], "agmetri.ca": [2053], "millersa.mu": [2053], "www.californiasunday.com": [2808], "images.amcnetworks.com": [19377], "pensionaltair.northyorks.gov.uk": [20930], "n.jui.cc": [2053], "www.quadrigacx.com": [13554], "eplanning.derby.gov.uk": [4460], "rsctr.me": [2053], "planet.chromium.org": [3179], "b.retailmenot.com": [14055], "solerbls.com": [2053], "junglee.com": [8832], "wmag.co": [2053], "beediecommunity.sfu.ca": [14893], "securepoint.de": [14753], "link.stuart.sg": [2053], "*.hoovers.com": [7635], "www.livingsocial.com": [9679], "kosmetik-per-klick.de": [10364], "etrtbs9.smartstream.tv": [15247], "mward.us": [2053], "www.smeserver.org": [21483], "smartling.com": [15244], "fz.htwk-leipzig.de": [7736], "grupoavante.org": [7114], "on.knicks.com": [2053], "youtube.mk": [19016], "leighmur.me": [2053], "m.rte.ie": [13704], "www.reconingspeakers.com": [15486], "joeyh.name": [8757], "zyvoxassist.com": [19082], "log.sc": [2053], "mesamatrix.net": [10465], "gatemkt.in": [2053], "phparch.com": [12863], "sfhost.info": [2053], "ih3.redbubble.net": [13895], "l.aitor.is": [2053], "spelthorne.gov.uk": [21533], "mload.freenet.de": [6300], "www.tsdd.org": [16115], "www.eastbayteamservices.com": [5118], "delivery.api.qbrick.com": [13529], "www.bitpay.com": [1990], "mobile.yandex.by": [18953], "static.amebaownd.com": [19379], "owa.bury.gov.uk": [19614], "linphone.org": [9549], "wpt.wipe.de": [22035], "www.londondrugs.com": [9742], "cdn1.xamarin.com": [18840], "cdf.capital": [2053], "eprize.net": [5045], "glue.umd.edu": [17549], "bmail.berkeley.edu": [17526], "mybwd.blackburn.gov.uk": [19551], "cyg.com.es": [2053], "cdn.taboola.com": [16153], "lophtus.me": [2053], "upmedia.plymouth.ac.uk": [13055], "c.hezarnews.com": [2053], "rjvn.co": [2053], "heze.meituan.com": [10405], "ingdirect.com.au": [7915], "kazan.rt.ru": [13703], "download.flashrom.org": [6020], "rfm.clothing": [2053], "temando.com": [16365], "gemal.to": [2053], "us-sonar.sociomantic.com": [15329], "blog.bartbania.com": [1730], "seals.trustsign.com.br": [17058], "appvill.co": [2053], "pareviews.state.gov": [17345], "stabs.js.org": [20555], "rate.taobao.com": [16206], "kjlr.it": [2053], "galaxytint.com": [2053], "con.ai": [2053], "t.cot.mn": [2053], "img3.doubanio.com": [19954], "t.caplanesq.com": [2053], "devinslick.com": [2053], "www.wien.gv.at": [22025], "www2.nationalreview.com": [11262], "www.trilightzone.org": [21791], "robbshi.re": [2053], "forms.monmouthshire.gov.uk": [10748], "h.virus.mu": [2053], "rev.com": [14070], "community.kde.org": [8871], "rapbattles.top": [2053], "wiki.flirble.org": [16456], "frascatiproducties.nl": [6225], "jbgrimes.us": [2053], "everplans.com": [5557], "chatpro.ap.dell.com": [4413], "disco.uv.es": [17750], "demo.globalpay.westernunion.com": [18512], "sfs.georgetown.edu": [6668], "thinkfaster.co": [16628], "yvo.lv": [2053], "ostel.co": [12332], "civitatis.link": [2053], "britishporn.it": [2053], "myspace.com": [11036], "m.auro.io": [2053], "sypa.us": [2053], "cdn2.xvideosx.tv": [18837], "toysrus.com": [16895], "billingsupport.checkpoint.thomsonreuters.com": [16650], "*.unblocked.li": [17434], "fb.mqw.at": [2053], "wheelhouse.link": [2053], "www.ubuntu-nl.org": [17379], "daad.de": [6675], "www2.technologyreview.com": [16297], "www.watsi.org": [18301], "www.zwijndrecht.nl": [11324], "i.grvcdn.com": [7028], "a-v.me": [2053], "www.foodsharing.de": [20143], "nid.ph": [2053], "www.theticketfactory.com": [16685], "ed2.it": [2053], "openhab.ci.cloudbees.com": [19736], "bcs.img.r1.91.com": [237], "billing.camelhost.net": [2831], "img2.glassdoor.co.in": [20247], "to.secretlab.co": [2053], "ukk.li": [2053], "niskanencenter.org": [11617], "admin.linuxfoundation.org": [9572], "compiz-fusion.org": [3586], "thecompassionclub.org": [16527], "orland.am": [2053], "www.woltlab.com": [18704], "status.stormpath.com": [15756], "4sl.ee": [2053], "onapp.com": [12007], "www.myfolder.net": [11019], "i.nan.do": [2053], "lovemoney.com": [9794], "myshr.med.usc.edu": [17564], "go.fomps.org.uk": [2053], "webmail.hslu.ch": [7728], "www.ezgram.com": [5101], "kpbs.us": [2053], "rail.media": [2053], "piwik.uninett.no": [17477], "wildcardcorp.com": [18604], "touch.meetic.pt": [10382], "certifiedsecure.com": [3030], "images.recordedbooks.com": [21276], "img.tradepub.com": [16919], "www.haskell.org": [7361], "lbs.netease.im": [11381], "payconnect.net": [4992], "slng.it": [2053], "ssl.perfora.net": [21110], "explr.it": [2053], "studentservices.leeds.ac.uk": [17604], "s.gotomeeting.com": [6912], "shanghaicenter.harvard.edu": [7351], "www.greenit-bb.de": [7044], "login.thetimes.co.uk": [16734], "rtems.org": [13706], "sh.731my.com": [2053], "mbl.is": [10276], "5sgif.me": [2053], "elearning.zg.ch": [21629], "faithbrid.ge": [2053], "adig.in": [2053], "*.ebay.com.sg": [4973], "johnn.eu": [2053], "ongo.io": [2053], "www.intersectalliance.com": [8443], "www-test.sec.gov": [17301], "cy.meituan.com": [10405], "*.tchmachines.com": [16873], "iqualita.link": [8500], "allnativ.es": [2053], "ono.es": [12081], "novgorod.rt.ru": [13703], "curlingworld.com": [4003], "washingtonpostmedia.com": [18286], "fahad.to": [2053], "www.cs.vu.nl": [17813], "ssegs.btrll.com": [2376], "y.stbr.co": [2053], "sn.meituan.com": [10405], "api.wallstreetcn.com": [18258], "nl.3.boardgamearena.com": [2219], "www.mytalkdesk.com": [20868], "es.3.boardgamearena.com": [2219], "npi.org.uk": [11137], "eduid.cz": [5198], "www.ifolor.ch": [20428], "patchwork.linux-mips.org": [9573], "on.coop": [2053], "dedicacaotta.vc": [2053], "gfm.link": [2053], "l.wedothings.fr": [2053], "skm.io": [15162], "efesto.eigenlab.org": [20020], "www.open-mesh.com": [12107], "rmhl.co": [2053], "url.adamfly.me": [2053], "denverre.us": [2053], "vvztahy.vutbr.cz": [17814], "thepiratebay.id": [21709], "mundi.vc": [2053], "blog.tivi.de": [22127], "arkane-studios.com": [1234], "diningservices.wustl.edu": [18290], "testi.es": [2053], "nia.nih.gov": [11241], "audac.us": [2053], "irsa.ipac.caltech.edu": [2815], "malvernhills.greenparty.org.uk": [7052], "www.maastricht.nl": [11324], "thepiratebay.is": [21710], "www.odmenazadobiti.cz": [16332], "treeto.ps": [2053], "cda.click": [2053], "frcc-cng.net": [2053], "linuxplumbersconf.org": [9557], "i.paulb.gd": [2053], "clty.io": [2053], "*.slimerjs.org": [21476], "theblog.blip.tv": [2133], "uasedu.mx": [2053], "manilla.7eer.net": [224], "thefun.gs": [2053], "thumbnailer.thestudio.condenast.com": [3616], "quattroplay.com": [13573], "www.hr.uillinois.edu": [17238], "tramlin.es": [2053], "jzhao.link": [2053], "www.datart.cz": [4082], "go.infonol.com": [2053], "jp.actu.jp": [2053], "coinmarketcap.com": [19752], "jtg.io": [2053], "alkasir.com": [862], "tv.yandex.com.ua": [18955], "panic.com": [12566], "prfct.in": [2053], "z-st.co": [2053], "teacherservices.education.gov.uk": [20009], "www.spatialpoint.com": [15481], "www.professionalprivacypolicy.com": [6838], "lone.im": [2053], "aka-cdn-ns.adtechus.com": [679], "fidose.com": [2053], "jfs.jcloud.com": [8690], "counters.gigya.com": [6779], "www.mjam.net": [10662], "unclineberger.org": [17264], "news.cornell.edu": [3744], "www.scraporchard.com": [14646], "nachrichtendienstgesetz.ch": [20873], "piazza.com": [12870], "fb.buzzt.at": [2053], "startengine.com": [15661], "fundacion.walmart.com": [18260], "ntwrvn.nl": [2053], "www.mediamatters.org": [10324], "www.tittygram.com": [16776], "di.mojok.co": [2053], "font.thoughtbot.com": [16656], "www.spu.ac.th": [15575], "c2rsetup.officeapps.live.com": [9644], "www.greenpolkadotbox.com": [7054], "cap.stanford.edu": [15635], "www.euromail.se": [16349], "secure.democraticservices.coventry.gov.uk": [19807], "www.snapchat.com": [15275], "creditindication.business.hsbc.co.uk": [20375], "auto.yuga.ru": [22121], "www.princeton.edu": [13291], "rbselfservice.lewes.gov.uk": [20669], "www.xs4all.nl": [18835], "mrpa.co": [2053], "lists.ffmpeg.org": [5678], "get.as": [2053], "hipl.hnfe.vt.edu": [18031], "presenter.api.qbrick.com": [13529], "mya.godaddy.com": [6898], "cca.click": [2053], "gojam.in": [2053], "cp.rackspace.com": [13740], "*.citizen-times.com": [1286], "platinumskincare.com": [13008], "www.iflygo.com": [20261], "www.aircargoworld.com": [17204], "vletrain.lsbu.ac.uk": [9252], "*.newsblur.com": [11518], "www.webthumbnail.org": [18459], "cob.as": [2053], "gotoi.sg": [2053], "*.spreadshirt.be": [15552], "leadnow.ca": [9357], "oswatch.net": [11878], "actel.com": [529], "l.sudkish.me": [2053], "www.iptorrents.us": [7945], "thetvdb.com": [16620], "go.jndm.net": [2053], "annalindhfoundation.org": [19392], "images.videolan.org": [17981], "*.qip.ru": [13512], "f3.hitravel.xyz": [2053], "ezproxy.plsinfo.org": [12749], "lp.liverail.com": [9657], "getg.lu": [2053], "www.eugenekolo.com": [20066], "bruhin.us": [2053], "www.kovidgoyal.net": [9150], "eatw.in": [2053], "moverall.com": [10821], "linux.org.au": [9567], "secure.stage-gettyimages.ch": [6741], "www.atomicinsights.com": [1362], "e.uprr.com": [21870], "mtcr.tc": [2053], "kg9.eu": [2053], "www.theproxybay.website": [21709], "www.nrc.gov": [17497], "www.jobscore.com": [8739], "adviceguide.org.uk": [704], "mb2.me": [2053], "sl.libreoffice.org": [9471], "static0.startnext.com": [15665], "ativa.me": [2053], "www.soccerpunt.com": [7879], "assets1.roadtrippers.com": [21317], "myrem.co": [2053], "spins.fedoraproject.org": [5843], "www.sedo.co.uk": [14784], "bellausa.uno": [2053], "store.csiac.org": [2728], "www.ada.osu.edu": [11959], "freitag.de": [6313], "app.unbounce.com": [17436], "slamdmg.co": [2053], "*.explosm.net": [5621], "gitlab.common-lisp.net": [3549], "www.mivamerchant.com": [10653], "foodwise.info": [2053], "tombot.ch": [2053], "webmaster.streamray.com": [15709], "open.alipay.com": [857], "earthdata.nasa.gov": [11058], "grid.tv2.dk": [16136], "*.cheapssl.com": [3099], "crazyte.ch": [2053], "oth.me": [2053], "*.memberclicks.net": [10419], "goreal.estate": [2053], "bks.to": [2053], "btc100.com": [1598], "troya.net": [2053], "ewhizz.click": [2053], "xixiang.meituan.com": [10405], "www.451research.com": [173], "ifl.gd": [2053], "go.hc.gov": [2053], "gerrit.libreoffice.org": [9471], "wiremask.eu": [22037], "www.myfrey.ch": [3156], "www.dynadot.com": [4922], "forum.snsbank.nl": [14382], "www.confidence.org.pl": [3634], "d-m.ag": [2053], "peptalk.link": [2053], "bbsey.es": [1765], "*.totaltravel.com": [18942], "make8bitart.com": [20739], "sinner-as-i.am": [2053], "acrobat.com": [520], "exhibitions.lib.cam.ac.uk": [17529], "www.documentfoundation.org": [16487], "mysliderule.com": [11007], "rabbit.works": [2053], "spanish.argentina.usembassy.gov": [21879], "jiangmen.jd.com": [8571], "visualstudio.com": [18078], "forums.nvidia.com": [11174], "pauld.tv": [2053], "sr2.liveperson.net": [9654], "2well.us": [2053], "*.webchuckhosting.com": [18352], "absorbl.ms": [2053], "hb7.co": [2053], "tourismepourtous.ch": [16887], "www.seagm.com": [14333], "jfss.co": [2053], "www.bitmarket.pl": [1986], "amou.co": [2053], "www.mynewsdesk.com": [11030], "*.watershed.co.uk": [18299], "*.publiekeomroep.nl": [13445], "boomerang.com": [2262], "s.uploadhero.com": [17680], "service.egais.ru": [20018], "*.kernel.org": [9011], "edpsych.us": [2053], "dsu-id.us": [2053], "www.disability.gov": [4622], "go.makigas.es": [2053], "n.smoking.guru": [2053], "mth.lv": [2053], "*.ptpimg.me": [13420], "www.lundi.am": [9836], "jobs.iav.com": [2053], "andwrld.me": [2053], "awsp.us": [2053], "umassathletics.com": [17550], "xmos.com": [18824], "secure.websitealive.com": [18445], "*.fwdcdn.com": [6405], "unos.me": [2053], "www.secureuk.net": [14757], "bradmail.bradford.gov.uk": [2317], "mynewsdesk.teamtailor.com": [16258], "vanhaaren.net": [17843], "rreed.me": [2053], "touch.horo.mail.ru": [10040], "farmbit.link": [2053], "www.openfabrics.org": [12135], "url.educris.com": [2053], "errorception.com": [5456], "wiki.unrealengine.com": [17652], "smo.sh": [2053], "s.mattdodge.net": [2053], "hc4.us": [2053], "home.guidancesoftware.com": [7134], "vpsmanager.vc-server.de": [17764], "aaenhunze.nl": [11324], "kg.qq.com": [13513, 13514], "www.uua.org": [17490], "zcomm.org": [19064], "chtv.me": [2053], "curv.it": [2053], "s.tekwiz.us": [2053], "www.particle.io": [12626], "atrack.allposters.com": [875], "*.myheritage.fr": [11023], "get.fedoraproject.org": [5843], "nsw.gr": [2053], "*.myheritage.fi": [11023], "itstrt.in": [2053], "fr.sitestat.com": [15132], "aganyti.me": [2053], "www.dotplex.de": [4798], "psly.co": [2053], "ndr.de": [11310], "miga.to": [2053], "www.mobilevikings.com": [10689], "ihq.im": [2053], "www.cede.fd.ulaval.ca": [17515], "baxterbulletin.com": [1745], "jira.bls.ch": [1566], "data.gov.uk": [19855], "accessibility.utm.edu": [17628], "solucoespme.cisco.com": [3221], "wwlbd.org": [13435], "www.dmoz.org": [4688], "*.leadnow.ca": [9357], "l.ag4it.nl": [2053], "login.ezproxy.uvm.edu": [17353], "*.acalogadmin.com": [478], "m.sbb.ch": [15946], "www.objectsecurity.com": [11900], "it-bit.nl": [2053], "terena.org": [16382], "www.egypt.hsbc.com": [7233], "bikkel.it": [2053], "apps.georgetown.edu": [6668], "b7.yahoo.co.jp": [18944], "advel.cz": [692], "slb.im": [2053], "hlbeg.jd.com": [8571], "temie.ml": [2053], "marketing.westernunion.com": [18512], "www.sur.ly": [15897], "www.linux-tage.de": [9558], "pixeline.be": [12957], "images.discogsmp3.com": [4625], "www.tpbproxy.website": [21709], "mytempjobs.gloucestershire.gov.uk": [6872], "www.stv.columbia.edu": [3512], "www.moon.greenpeace.org": [7064], "obbfl.com": [2053], "sera.stanford.edu": [15635], "442ne.ws": [2053], "jes.pe": [2053], "s.andrek.com": [2053], "stu-pics.com": [2053], "myportal.seagate.com": [14679], "community.shaw.ca": [14932], "status.easypost.com": [5130], "us.mcafee.com": [10282], "xm.meituan.com": [10405], "profiles.stanford.edu": [15635], "www.nbg.gr": [7038], "r.kissinsights.com": [8879], "ttit.us": [2053], "progay.us": [2053], "owler.com": [21050], "zhijiang.meituan.com": [10405], "ru.domaincontext.com": [4743], "get.c9.io": [3339], "aneto.unizar.es": [17643], "optoutprescreen.com": [12266], "freedom.voys.nl": [18155], "wiki.opendaylight.org": [12132], "www.terreactive.ch": [16391], "www.unblocksit.es": [17433], "diff3.smartadserver.com": [15228], "gnunet.org": [6477], "bspace.berkeley.edu": [17526], "tikr.tk": [2053], "nttdocomo.com": [11157], "rcs.link": [2053], "wx.meituan.com": [10405], "www.enfield.gov.uk": [5359], "assets.pinterest.com": [12914], "mycrm360pubsvc.oxfordshire.gov.uk": [21056], "www.cybercompex.org": [4039], "critnet.us": [2053], "www.memberful.com": [10420], "suprurl.com": [2053], "ewebmail.ie.cuhk.edu.hk": [2747], "old.bitcoin.cz": [10614], "rbsc.eu": [2053], "xmas.wtf": [2053], "hdin.in": [2053], "stagingspeak.com": [17105], "www.imss.caltech.edu": [2815], "www.computerbild.de": [19767], "*.rtmcdn.net": [13993], "ptea.house": [2053], "immunicity.uk": [20443], "stk.pe": [2053], "meridian.io": [2053], "yelp.ie": [18979], "mutualofamerica.com": [10921], "nie.washingtonpost.com": [18287], "byte.com": [8273], "www.gearslutz.com": [6607], "point.im": [13075], "email.udacity.com": [17392], "tongling.meituan.com": [10405], "nabconnect2.nab.com.au": [11054], "kaltura.com": [8927], "www.profitbricks.com": [13357], "fishd.co": [2053], "www.websocket.org": [18385], "orcs.ws": [2053], "www.qstack.com": [13519], "static.bbci.co.uk": [19501], "www.nines.nl": [11607], "ihc.wtf": [2053], "upcmail.upc.nl": [17280], "noi.se": [2053], "opendream.io": [2053], "dcrz.jd.com": [8571], "active24.de": [19277], "faq.nearlyfreespeech.net": [11313], "tryk.jammerbugt.dk": [8654], "www.tfp-quebec.psy.ulaval.ca": [17515], "cryoutcreations.eu": [3910], "hit.ac": [2053], "wells.as": [2053], "*.uni-karlsruhe.de": [8950], "s.abfa.org.uk": [2053], "www.apotheke.de": [1139], "affiliate.amazon.co.jp": [19364], "blog.zimperium.com": [19186], "www.parabola.nu": [12589], "cem.events.adobe.com": [655], "*.silobreaker.com": [15042], "atxins.co": [2053], "amp.pandora.com": [12564], "www.moroccanbazaar.co.uk": [10785], "dot.s4kr4.com": [2053], "turbot.opencorporates.com": [12129], "blogs.tnr.com": [11500], "tog.re": [2053], "logistics.alibaba.com": [850], "www.thebodyshop.co.id": [21692], "visioncritical.com": [18067], "mail.tiscali.it": [16770], "raven.cam.ac.uk": [17529], "taicang.meituan.com": [10405], "harrystotle.com": [2053], "www.superkuh.com": [15887], "swfilm.co": [2053], "*.bytejail.com": [2546], "media.mcclatchyinteractive.com": [10284], "www.cs.stonybrook.edu": [15736], "pop.anadolu.edu.tr": [1025], "xagyl.us": [18802], "tgtap.com": [2053], "osm13.openstreetmap.fr": [12245], "cnet.stacksocial.com": [15615], "2kbhkort.kk.dk": [8883], "polr.xyz": [2053], "url.getphp.ir": [2053], "www.oumedicine.com": [12344], "www.thepiratebay.ac": [21710], "pkwy.info": [2053], "my.croydon.gov.uk": [19824], "pskovskaya-obl.beeline.ru": [1801], "labs.nic.cz": [11572], "www.ti.com": [16070, 16413], "www.bizographics.com": [2085], "www.katzporn.in": [8973], "*.elle.com": [5273], "www.limited2art.com": [9519], "www.jupyter.org": [8839], "firefoxosdevices.org": [5976], "*.compranoexterior.com.br": [3591], "dgmc.ga": [2053], "conversion.7search.com": [225], "webaccess.bassetlaw.gov.uk": [1736], "markit.com": [10187], "rizhao.meituan.com": [10405], "au.prime7.yahoo.com": [18939], "atr.im": [2053], "msrt.us": [2053], "rsty.gr": [2053], "forums.openmandriva.org": [12153], "popshort.com": [2053], "crypto.cat": [3922], "re.wbf.co.jp": [2053], "sifomedia.thelocal.se": [9698], "hvs.link": [2053], "portl.me": [2053], "donate.fightforthefuture.org": [5899], "go.bigy.com": [2053], "*.mega.co.nz": [10390], "www.cdn.webrtc-experiment.com": [18378], "dl.bintray.com": [1951], "tomtom.com": [16812], "bin.staticlocal.ch": [9697], "jsonp.afeld.me": [19314], "www.croscill.com": [3882], "greenpeace.de": [7063], "www.techservices.illinois.edu": [17544], "veranstaltungen.wienenergie.at": [18582], "cs.jhu.edu": [16562], "jhp.im": [2053], "*.wpengine.com": [18214], "en.help.roblox.com": [14156], "myregextester.com": [20862], "portaildescours.ulaval.ca": [17515], "hive.rs": [2053], "www.funstockdigital.co.uk": [6385], "go.scandia.us": [2053], "*.getpelican.com": [6720], "plcl.co": [2053], "ris.bka.gv.at": [13664], "ssl.translatoruser.net": [16949], "remaxfgr.co": [2053], "www.silverstripe.org": [21449], "img.guerrillamail.com": [7133], "fotr.link": [2053], "*.telegr.am": [16333], "www.eloquentjavascript.net": [5283], "www.nodesource.com": [11645], "assets.litmuscdn.com": [9633], "onlinehry.idnes.cz": [20425], "businessapps.swisscom.ch": [15951], "accessibility.nl": [490], "cadu.net.br": [2053], "www.96boards.org": [241], "los-l.ink": [2053], "spine.osu.edu": [11959], "easa.europa.eu": [5526], "whb.lu": [2053], "url.sortmypc.uk": [2053], "www.bucknell.edu": [2445], "on.hmmg.co": [2053], "www.timeanddate.com": [16732], "*.computerworld.com.au": [7851], "calendar.comcast.net": [3524], "link.idn48.com": [2053], "www.strath.ac.uk": [17566], "zapchain.com": [19104], "ppact.io": [2053], "poradte.cz": [21171], "gemz4.me": [2053], "ulev.co": [2053], "gplnk.co": [2053], "wildhor.se": [2053], "laoting.meituan.com": [10405], "wifihax.me": [2053], "lirportal.ripe.net": [14128], "tn.nick.com": [2053], "*.airshowjournal.com": [792], "lobaumer.com": [2053], "mroc.pravobraz.ru": [21189], "clnk.me": [10958], "www.calgunsfoundation.org": [2798], "couch.fyi": [2053], "home.java.net": [8673], "iti.ms": [2053], "aplus-flint-river-ranch.com": [423], "tpb.pirateparty.org.uk": [12930], "www.globalhivmeinfo.org": [6847], "www.bitmit.net": [2060], "baycitizen.org": [1750], "www.hautelook.com": [7373], "511t.ac": [2053], "baniya.me": [2053], "alerat.ec": [2053], "x.dkfx.dk": [2053], "www.bosch-sensortec.com": [2280], "mtc.cdn.vine.co": [18014], "nyugta-lotto.hu": [2053], "www.argos-spain.co.uk": [1224], "info.monex.co.jp": [10733], "fanpagegeneratorpro.com": [6838], "2-url.org": [2053], "pc-ostschweiz.ch": [12422], "www.actiac.org": [19269], "dailymed.nlm.nih.gov": [11241], "lwf.re": [2053], "static2.uk.businessinsider.com": [2512], "*.udel.edu": [17535], "fiends.co": [2053], "otakukart.in": [2053], "www.blogs.mcafee.com": [10282], "gscdn.nl": [20217], "lqwb.us": [2053], "mikrotik.com": [10574], "nerve.meetme.com": [10378], "www.yourmechanic.com": [19031], "content.logmein.com": [9711], "fr33tux.org": [6209], "dsb.mpg.de": [9945], "ka.libreoffice.org": [9471], "flc.cc": [2053], "sac.uol.com.br": [17276], "l.dnbrv.com": [2053], "4.bp.blogspot.com": [2160], "ko.aliexpress.com": [847], "linbit.com": [9232, 9233], "skyviewinghelp.com": [15173], "cat.postto.me": [13183], "adriver.ru": [573], "www.mzstatic.com": [11041], "fellowsblog.kiva.org": [9077], "www.kccmediahub.net": [8867], "docs.cyrus.foundation": [4063], "80ste.es": [2053], "www.dns-ip.net": [4693], "*.skilldrum.com": [1150], "bccit.us": [2053], "images.12wbt.com": [10523], "go.nwbc.mn": [2053], "latamfx.co": [2053], "www.ucw.cz": [17501], "m.spokane.wustl.edu": [18290], "www.iridiumbrowser.de": [8504], "www.noodleremover.news": [11665], "nkrk.co": [2053], "sydne.me": [2053], "mstra.co": [2053], "apex.oracle.com": [12284], "www.thorpepark.com": [16653], "secure.newrepublic.com": [11501], "u.astronomia.co": [2053], "support.xbox.com": [18850], "oferta.one": [2053], "kidswr.co": [2053], "vpn4all.com": [17791], "www.lrc.usuhs.edu": [17330], "nowb.at": [2053], "www.newswhip.com": [11524], "*.askadmissions.net": [7584], "bitmask.net": [2056], "ehr.alibaba-inc.com": [19342], "sgm.link": [2053], "*.wikimedia.es": [18595], "careers.guidancesoftware.com": [7134], "xfinityconnect.mail.comcast.net": [3524], "on-ydr.co": [2053], "stats.webarch.net": [18405], "chichbong.vn": [2053], "jth.press": [2053], "pd.secure.anthem.com": [19395], "gate.crashing.org": [6583], "extensions.libreoffice.org": [9470], "oralb-blendamed.de": [12286], "support.isc.org": [7966], "neatoshop.com": [11314], "www.discusslr.com": [4645], "lcdcomps.com": [20645], "cdn.debuggify.net": [4357], "www.sony.com": [15393], "blog.uni-erlangen.de": [17597], "www.viaforensics.com": [17950], "haik.me": [2053], "caits.iu.edu": [8214], "muc.xmpp.org": [18827], "lunarline.com": [9835], "always.gd": [2053], "elo7.me": [2053], "nmap.org": [11627], "s56.cnzz.com": [3391], "www.amadeu-antonio-stiftung.de": [946], "exchangewire.com": [5593], "gismeteo.ru": [6789], "sustainability.asu.edu": [1232], "share.ahgo.us": [2053], "www.softperfect.com": [15344], "vorratsdatenspeicherung.de": [334], "jdaily.co": [2053], "www.dikkenberg.net": [4600], "footlocker.com": [6126], "iuh.me": [2053], "daleal.link": [2053], "camm.osu.edu": [11959], "aydenwd.net": [2053], "minipay.unionpay.com": [17478], "*.demandware.net": [4426], "misc.www.switch.ch": [15952], "*.whatbox.ca": [18530], "fishelp.wustl.edu": [18290], "www.fifedirect.org.uk": [5893], "www.librato.com": [9467], "calyx.net": [2819], "www.side.cr": [15006], "anti-theft.eset.com": [5463], "lkac.pn": [2053], "artskills.com": [1258], "*.customcare.fender.com": [5863], "hochspannung.ourproject.org": [21044], "www.numato.com": [11774], "ultimedecathlon.com": [21845], "www.quiterss.org": [13600], "go.yajug.lu": [2053], "haaart.ly": [2053], "stats.ftb.ca.gov": [2801], "admin.q1media.com": [13504], "landalcampings.de": [18790], "tyj.fi": [17186], "downloads.bicomsystems.com": [19528], "glylr.com": [2053], "insurance.va.gov": [17297], "adspaces.ero-advertising.com": [5451], "freed0m4all.net": [6281], "apc.org": [1329], "mysubwaycard.com": [20866], "arg.link": [2053], "www.americanaexchange.com": [985], "www.bitcoinity.org": [2034], "2npg.co": [2053], "kazanfirst.ru": [20580], "monkeysaudio.com": [10747], "i3.itc.cn": [8536], "dyncdn.me": [19975], "infos.anz.com": [355], "esta.mx": [2053], "dg.meituan.com": [10405], "go.l2c.us": [2053], "api.coupon.rakuten.co.jp": [13768], "on.gd2r.me": [2053], "bbb.org": [1875], "ftp.mplayerhq.hu": [9949], "www.airs.com": [790], "onepass.cuhk.edu.hk": [2747], "dshan.co": [2053], "wix.com": [18684], "online.gifts.washington.edu": [17577], "donate.salvationarmyusa.org": [14494], "*.audemarspiguet.com": [1384], "dlrfr.sh": [2053], "vfd2dyn.vodafone.de": [18107], "developer.chrome.com": [3175], "ph.norton.com": [11703], "wade.tips": [2053], "www.telusmobility.com": [16364], "www.usbclientadvocacy.com": [17332], "botm.co": [2053], "lbgfs.co": [2053], "www.zenmate.co": [19133], "www.lefebvre.org": [9345], "megaskandal.de": [2053], "oka.uk": [2053], "i.rgstatic.net": [13655], "ib24.csob.sk": [3966], "acast.com": [19259], "www.pet-portal.eu": [12443], "images.bizrate.com": [2086], "tpi.news": [2053], "www.edgar-online.com": [4991], "registrar.georgetown.edu": [6668], "www.timezero.ru": [16729], "turnloo.se": [2053], "yy.meituan.com": [10405], "www.bayareaamusements.com": [1749], "www.langui.sh": [9301], "xiangyin.meituan.com": [10405], "www.burstmedia.co.uk": [2504], "epm.uniovi.es": [17479], "i-upv.info": [2053], "checkout.springer.com": [15561], "ea.voyage-prive.it": [18153], "a.mykbc.org": [2053], "www.deciso.com": [19887], "telfort.nl": [16356], "extranet.wlb.at": [18582], "ssl.jumpline.com": [8828], "impx.tv": [2053], "x.evanp.ca": [2053], "ksiegarniawarszawa.pl": [9176], "*.mediaspanonline.com": [10329], "drive.zipcar.com": [19190], "tescofinance.com": [16397], "www.fafsalivehelp01.ed.gov": [4988], "l.coindera.com": [2053], "herzschlog.de": [2053], "axa.kr": [2053], "onbriga.de": [2053], "www.meteor.com": [10491], "g.enocta.com": [2053], "redir.evernote.com": [5556], "frhs.cc": [2053], "*.datenretter.de": [3692], "clickho.st": [2053], "help.pressable.com": [13262], "m.bezeq.co.il": [19522], "bnhd.me": [2053], "www.cctld.ru": [2974], "mary.ly": [2053], "rbbit.co": [2053], "www.qksrv.net": [3546], "*.computerworld.com": [3598], "net-security.org": [11372], "unternehmen.aldi-sued.de": [338], "www.strava.com": [15769], "ice.cheshireeast.gov.uk": [3125], "noles.co": [2053], "euets.environment-agency.gov.uk": [20047], "amac.io": [2053], "cdn4.spiegel.de": [15523], "clever.com": [3297], "www.alphadominche.com": [908], "www.callrail.com": [19629], "www.bussgods.se": [2519], "ipe.gift": [2053], "ana.works": [2053], "admin.conetix.com.au": [3630], "builds.96boards.org": [241], "tagx.nytimes.com": [11189], "*.anglomedia.net": [1055], "twt.f-i.com": [2053], "clubdelectura.uned.es": [17446], "uexp.co": [2053], "s.ta-hiroshi.jp": [2053], "voskresensk.beeline.ru": [1801], "cheapassgamer.com": [3097], "movie0nhd.cf": [2053], "www.bizchannel.cimbthai.com": [2665], "www.fullcoin.com": [6366], "www.opensourcehacker.com": [12224], "njones.co": [2053], "demonoid.ph": [4436], "mpetroff.net": [10247], "www.hub.sciverse.com": [14617], "mailinabox.email": [10047], "cvis.vutbr.cz": [17814], "www.rofreesbie.org": [21324], "bit.lilkobi.com": [2053], "craft.xebia.com": [2053], "studentchaptergrants.acs.org": [966], "blog.mdosche.de": [10296], "es.foundation.walmart.com": [18260], "somerset-kctcs.edusupportcenter.com": [20012], "demonoid.pw": [4436], "jun.gs": [2053], "www.opentechfund.com": [12181], "cat5photo.com": [2053], "roy.lc": [2053], "home.collyers.ac.uk": [3496], "2016.cursosvirtuales.uned.es": [17446], "*.viewmychart.com": [10941], "bundler.io": [2493], "secure2.techxpress.net": [16277], "lists.emergingthreats.net": [5309], "www.net-dns.org": [11130], "srrz.in": [2053], "www.gifsauce.us": [6760], "dkel.ec": [2053], "bi.formstack.com": [6164], "shopd.in": [2053], "www.cuidadodesalud.gov": [3984], "bns.alibaba.com": [850], "blog.genua.de": [20223], "newsletter.canon-europe.com": [2868], "viewablemedia.net": [18061], "ny.people10.com": [2053], "www.freshcode.club": [6321], "cdn11.iconfinder.com": [8066], "www.catchy.com": [2959], "h0u.se": [2053], "go.kohlanta.co": [2053], "www.a1webstats.com": [256], "ubuntuusers.de": [17383], "notts.cc": [2053], "axantum.com": [1507], "h.soni.im": [2053], "www.echoditto.com": [5147], "trustedreviews.com": [17067], "www.connecticon.org": [3647], "go.vzfy.co": [2053], "liv.fm": [2053], "kingat.co": [2053], "sherpa.sh": [2053], "eyeos-apps.org": [21006, 21007], "bsirm.com": [2053], "mx.atcs.ms": [2053], "union.uiuc.edu": [17234], "lebeda.spb.ru": [2053], "ubnt.link": [2053], "evreyskaya-ao.beeline.ru": [1801], "www.thalysthecard.com": [16434], "weather.yandex.kz": [18957], "l.richev.me": [2053], "sciencedirect.com": [14617], "www.foodsafety.gov": [6116], "*.mesh-internet.co.uk": [10466], "*.spreadshirt.de": [15552], "intranet.fch.vutbr.cz": [17814], "adscale.de": [666], "player.megaphone.fm": [20776], "c.blick.ch": [2125], "www.mediademocracyfund.org": [10310], "img14.360buyimg.com": [136], "webmail.shaw.ca": [14932], "lwd.io": [2053], "hsseexed.co": [2053], "pucheng.meituan.com": [10405], "www.meetings.io": [10384], "ca.godaddy.com": [6898], "support.comixology.com": [3529], "www2.fdic.gov": [5827], "longchuan.jd.com": [8571], "natopera.center": [2053], "ext.ag": [2053], "www.educationusa.info": [20010], "getfinal.com": [6712], "*.www.fbo.gov": [5831], "ftch.pl": [2053], "ict.swisscom.ch": [15951], "sageoak.co": [2053], "biggestloserclub.com": [1915], "ebanking.cic.ch": [1702], "link.garbas.si": [2053], "www.f-secure.com": [5654], "ool.se": [2053], "slanted.de": [15189], "www.laiwang.com": [20629], "www2.environment-agency.gov.uk": [20047], "www.intel.com": [8359], "virid.in": [2053], "cryptdown.eu": [3914], "*.memory-alpha.org": [10424], "testequipmentdepot.com": [16407], "www.cisofy.com": [2672], "gus.al": [2053], "ipower.com": [7941], "feedback.truste.com": [16111], "ru.bem.info": [1551], "linyily.meituan.com": [10405], "yandex.com": [18956], "go.cd": [20259], "ori.hhs.gov": [7192], "t5go.in": [2053], "ardnet.eu": [2053], "ljm.co": [2053], "igrill.it": [2053], "domainpunch.com": [19941], "mraud.ee": [2053], "www.postoffice.travelmoneycard.co.uk": [13181], "uer.fr": [2053], "www.fr.lastminute.com": [9318], "haffke.link": [2053], "tickets.amazon.co.uk": [19365], "boneblast.com": [2249, 2250], "static.dangpu.com": [4217], "favd.xyz": [2053], "djbx.fr": [2053], "vil.photos": [2053], "fr-ad.ru": [2053], "partners.a2hosting.com": [257], "1.360.cn": [130], "go.gameware.at": [2053], "cloud.mail.ru": [10040], "markshar.es": [2053], "sonobi.com": [15388], "subscribe.foreignpolicy.com": [6142], "tutaev.beeline.ru": [1801], "i.vioa.de": [2053], "networkredux.com": [11454], "hu.meituan.com": [10405], "gpfi.org": [6487], "x.formasaur.us": [2053], "link.ngin.com": [2053], "swapspace.net": [15933], "news.sfs.georgetown.edu": [6668], "h.ulpv.nl": [2053], "strategyanalytics.com": [15766], "editor.flipboard.com": [6041], "vkjob.de": [2053], "goodcrypto.com": [6955], "ebankingentoutesecurite.ch": [4969], "www.ebroder.net": [5142], "gsb.stanford.edu": [15635], "www.rightscon.org": [14120], "*.javelinstrategy.com": [8679], "www.idrtrade.com": [9910], "1.toptrix.net": [2053], "uneddit.com": [17447], "sbe.anadolu.edu.tr": [1025], "independentsubscriptions.co.uk": [20451], "m.focus.de": [6091], "news.bmg.com": [2053], "prettylightsmusic.com": [13268], "www.opus-codec.org": [12280], "maxymiser.com": [10264], "l.daveil.com": [2053], "idp.data.gov": [4253], "che.gg": [2053], "entrust.webtrust.org": [18390], "kfwebs.net": [8873], "sbir.cancer.gov": [2864], "pogoda.yuga.ru": [22121], "travelzoo.com": [16975], "tuck.cc": [2053], "quench.io": [2053], "biblio.planeta.ru": [21143], "umc.ub-g.com": [2053], "usg.lc": [2053], "w.pb.lc": [2053], "url.keiji.io": [2053], "assets.okfn.org": [12215], "service.msicomputer.com": [9958], "cgs.osu.edu": [11959], "*.sweetpepper.org": [13211], "glg.gg": [2053], "offer.gwsuk.com": [2053], "ca-li.co": [2053], "bettercgi.com": [1878], "static.mythic-beasts.com": [11039], "www.uiuc.edu": [17234], "elements.yandex.com.ua": [18955], "www.litecoin.org": [9623], "rskn.us": [2053], "l.azin.se": [2053], "jeant.in": [2053], "nuz.li": [2053], "www.kuppingercole.com": [9192], "mklnd.com": [2053], "go.ciacci.net": [2053], "webmail.kuleuven.be": [8969], "support.ucsf.edu": [17588], "journal.ualinux.com": [21833], "1mar.co": [2053], "www.islington.gov.uk": [8518], "sben.me": [2053], "sott.net": [15404], "plurk.com": [13050], "scrumbleship.com": [21390], "webtransfer.vs.ch": [21629], "mini.afnet.fr": [2053], "mypassword.ysu.edu": [19049], "beanswitch.utm.edu": [17628], "sfts.site": [2053], "cdn.evergage.com": [5553], "help.xapo.com": [18841], "music.meo.pt": [10440], "bisformat.nazwa.pl": [11307], "go.gnslk.com": [2053], "visit.openreach.co.uk": [12241], "cff.ch": [15946], "www.usplusu.com": [17739], "zlr.my": [2053], "stripwax.nyc": [2053], "d.wes.st": [2053], "mor.me": [2053], "xci.pe": [2053], "pure.fyi": [2053], "hxn.link": [2053], "www4.atomicorp.com": [1364], "support.freezone.co.uk": [6306], "restats.decc.gov.uk": [19885], "community.sh": [2053], "bennetts.co.uk": [1831], "bm.img.com.ua": [8139], "www.rem.co": [13991], "accountonline.com": [500], "www.marijuanamajority.com": [10158], "www.trumanlibrary.org": [7346], "txoutdrs.co": [2053], "corporate.zalando.com": [19094], "coinforum.de": [3459], "*.ucm.es": [17213], "elmnt.rocks": [2053], "mprv.co": [2053], "www.animenfo.com": [1066], "www.registrar.cornell.edu": [3744], "sl.bf5.pw": [2053], "bibl.sh.se": [14352], "liftsecurity.io": [9498], "ubykotex.com.au": [17199], "*.modcloth.net": [10698], "www.hannahcranston.com": [20311], "survival.tacticaltech.org": [16156], "ning.com": [11609], "yaroslavl.beeline.ru": [1801], "sts.sccgov.org": [14579], "in.norton.com": [11703], "pypi.python.org": [13499], "www.virusec.com": [18051], "kattare.com": [8971], "pkrlynch.us": [2053], "oami.europa.eu": [5526], "jfdiaz.co": [2053], "kmart.gq": [2053], "onewi.org": [2053], "bongbong1.96.lt": [2053], "*.zapato.ru": [14534], "olyplant.eu": [2053], "www.net-housting.de": [11369], "issteamdown.com": [20502], "beacon.guim.co.uk": [7142], "library.angus.gov.uk": [1059], "karachaevo-cherkesiya.beeline.ru": [1801], "apps.opm.gov": [11853], "download.mcafee.com": [10282], "i3s.sinaimg.cn": [15091], "rhvld.tk": [2053], "customers.qwk.net": [13522], "trpl.us": [2053], "quikpayasp.com": [13595], "www.polarnopyret.se": [13086], "sovcombank.ru": [21516], "assets.api.qbrick.com": [13529], "craze.no": [2053], "fansub.co": [5771], "tir.teteny.bme.hu": [1571], "*.frys.com": [6355], "freebusy.io": [6242], "bzzz.me": [2053], "barracudanetworks.com": [1728], "storage.outbrain.com": [12355], "fibonacci.uvt.nl": [16716], "channel.jd.com": [8570], "www-cdn.pardot.com": [12605], "mdcinvite.co": [2053], "a.cranleigh.org": [2053], "gw.fark.com": [5776], "standup2cancer.ca": [15629], "rwn.me": [2053], "click.tanx.com": [21661], "ecaforums.com": [5396], "robp.co": [2053], "support.therocktrading.com": [16573], "iconnect.cathaypacific.com": [2963], "manage-tablet.kaspersky.com": [8958], "wwws.sinaimg.cn": [15091], "essex.police.uk": [5471], "mijnlandal.nl": [18790], "gitga.me": [2053], "nixsrv.com": [11625], "perthfe.st": [2053], "planet.debianforum.de": [4354], "prediction.io": [13249], "www.tube4.me": [17088], "*.1d4.us": [67], "ekst.me": [2053], "jsick.net": [2053], "mini.pt6.tv": [2053], "i.viraliza.la": [2053], "discoverbsd.com": [4634], "afeld.me": [19314], "powerspeaking.com": [13222], "e1.cdn.qnsr.com": [13536], "wiki.webmoney.ru": [18373], "kmblm.dk": [2053], "fmobi.net": [2053], "newsroom.montereybayaquarium.org": [10755], "app.upatient.com": [17288], "webchat.hackerspace.pl": [7280], "www.freelyshout.com": [20167], "mpres.me": [2053], "glenoit.com": [6829], "*.pixnet.cc": [12962], "*.mbsvr.net": [10738], "eliti.tv": [2053], "www.codeascraft.com": [3418], "assets-animated.rbl.ms": [13825], "www.wickedfiber.com": [18578], "ayudica.unizar.es": [17643], "pthwy.global": [2053], "to.housser.ca": [2053], "www.renater.fr": [13999], "serviceinfo.rescue.org": [21295], "www.cl.cam.ac.uk": [17529], "london.webconsole.linode.com": [9547], "business.wales.gov.uk": [18252], "5kf.co": [2053], "ru.shopbop.com": [21429], "xgll.meituan.com": [10405], "download.gimp.org": [20240], "piwik.enahost.com": [5330], "zbbs.jd.com": [8571], "www.adspeed.com": [581], "wtwnews.org": [2053], "hrb.meituan.com": [10405], "on.mtaf.tv": [2053], "vc-server.de": [17764], "short.nikoc.be": [2053], "progje.ws": [2053], "pgeverydaysolutions.com": [13349], "tlodge.com": [2053], "perle.com": [12789], "lists.xenproject.org": [18859], "stockport.greenparty.org.uk": [7052], "www.bbcshop.com": [1763], "www.literatureandlatte.com": [9627], "wdhrn.co": [2053], "m4s.in": [2053], "www.comlaude.com": [3523], "mesosphere.com": [10467], "huzs.net": [7781], "sams.social": [2053], "*.alliedmods.net": [893], "resilinc.co": [2053], "rdc.bremer.com": [2354], "www.myfreecopyright.com": [10950], "afrq.net": [2053], "www.edoceo.com": [5190], "stats.js.org": [20555], "pamspublic.science.energy.gov": [5355], "wwward.org": [2053], "openforum.westminster.gov.uk": [18516], "*.shopwiki.com": [14966], "artj.us": [2053], "msf.io": [2053], "jobs.zalando.de": [19094], "fb1.eu": [2053], "www.cedia.org.ec": [2627], "*.cyberphoto.fi": [4035], "oem.whyopencomputing.ch": [22021], "bi.illuminateed.com": [20430], "bedfordhospital.nhs.uk": [11102], "rockzi.com": [13676], "www.ce1.com": [3846], "www.okopnik.com": [11974], "go.rozak.net": [2053], "teeth.pk": [2053], "apis.live.net": [9643], "tta.click": [2053], "barnebys.com": [1724], "cn.bter.com": [2439], "on.bamsl.org": [2053], "stiftung.htwk-leipzig.de": [7736], "www.xine-project.org": [18876], "www.capitalone.com": [2878], "activatie.kuleuven.be": [8969], "www.isoc.org.br": [7973], "filecrypt.cc": [20108], "bugs.ntp.org": [11154], "assets.windowsphone.com": [18646], "dameiqh.jd.com": [8571], "www.avadirect.com": [1477], "*.njit.edu": [11121], "info.publicintelligence.net": [13438], "blog.irccloud.com": [8502], "smx.meituan.com": [10405], "mail.be": [10038], "link.ratex.com": [2053], "romiyo.com": [2053], "www.tsbohemia.cz": [21804], "sampelongbeach.org": [21366], "yangzhou.jd.com": [8571], "www.rfc-editor.org": [13651], "static.tacdn.com": [21646], "earlyhelp.bedford.gov.uk": [19509], "orig.colorofchange.org": [3502], "www.rtbf.be": [14244], "jiexiu.meituan.com": [10405], "xerox.bz": [2053], "www.nedcc.org": [11085], "abbasm.ir": [2053], "www.biotrimlabs.com": [1963], "www2.madametussauds.com": [10002], "reviv.in": [2053], "www.f5networks.*": [5658], "route.search.ch": [14684], "im.gifbt.com": [8211], "udmurtiya.rt.ru": [13703], "uni-ulm.de": [21850], "endg.me": [2053], "login.unifiedsocial.com": [17469], "twnv.jp": [2053], "zalando.it": [19094], "poodletest.com": [12481], "eyf.tameside.gov.uk": [21659], "www.ticket4u.com.my": [21736], "assets3.parliament.uk": [21075], "zenmate.nl": [19133], "avgread.me": [2053], "on.altoning.com": [2053], "lnk.cmnt.io": [2053], "go.oneguest.co": [2053], "lmg.do": [2053], "suse-art.org": [21006, 21007], "et08.xhcdn.com": [18815], "springy.libapps.com": [9446], "*.movieth.com": [10826], "1.usa.gov": [2053], "tx.cm": [2053], "shellterproject.com": [14942], "lk.zhukovsky.net": [22133], "vrtxmg.com": [2053], "workshop.chromeexperiments.com": [3177], "to.rgv.link": [2053], "riotclub.co": [2053], "*.akamaihd.net": [801], "cdn3.iconfinder.com": [8066], "beards.life": [2053], "y0utub3.cf": [2053], "www.zilog.com": [19183], "sonyhack.gawker.com": [6593], "gamb.li": [2053], "cci.ornl.gov": [11892], "account.playwarz.com": [18272], "currents.plos.org": [12474, 13434], "embed.vidyard.com": [17998], "speakerkit.state.gov": [17345], "telekom-profis.de": [16343], "s2.gismeteo.ua": [6790], "forms.canterbury.gov.uk": [2870], "kenny.rpgmakerweb.com": [14236], "whatsbroadcast.com": [18535], "lists.aktivix.org": [810], "tres19.com": [2053], "this.ownsyou.de": [2053], "agtpr.com": [2053], "www.packer.io": [12519], "dev.solydxk.com": [21505], "on.klik.gq": [2053], "assets.gradwellcloud.com": [7012], "tombe.by": [2053], "bcned.in": [2053], "blogs.citrix.com": [3237], "api.paas.uninett.no": [17477], "imageslocal.fineartamerica.com": [5959], "iplayer.metafaq.com": [20787], "oatb.co": [2053], "haas.variety.com": [17858], "dbs.com": [4084], "erickdavid.work": [2053], "www.500px.com": [194], "th.alibaba.com": [850], "w5d.co": [2053], "www.arxiv.org": [1188], "igolder.com": [8103], "www.gov1.info": [6988], "saifurs.info": [2053], "colorado.edu": [17533], "crossorigin.me": [19821], "mit.tv": [2053], "mt.cnzz.com": [3391], "aph.news": [2053], "nicaragua.usembassy.gov": [21879], "mnem.co": [2053], "adfs.brunel.ac.uk": [19599], "www.agrisupply.com": [773], "www.motherlessmedia.com": [10796], "bctv.me": [2053], "wiki-zeuthen.desy.de": [4479], "ttdrupallb1.uis.georgetown.edu": [6668], "ent.ro.vutbr.cz": [17814], "wiki.eclipse.org": [5150], "www.xrel.to": [18892], "eastlancs.greenparty.org.uk": [7052], "streaming.linux-magazin.de": [9553], "appp.li": [2053], "0kee.360.cn": [130], "otrs.ulpgc.es": [17411], "hackerbat.ch": [2053], "t2.qlogo.cn": [13534], "zipapps.lincolnshire.gov.uk": [9525], "on.kottel.com": [2053], "delicious.com": [4405], "www.constantcontact.com": [3657], "www.fujitsu-webmart.com": [6362], "darch.ch": [4081], "hackaday.com": [20303], "www.creator.zoho.com": [19202], "imca.ic.nhs.uk": [11102], "rcl.li": [2053], "abo.nzz.ch": [20974], "fusion-lifestyle.com": [6391], "magazine.beer": [2053], "profile.federalreserve.org": [5834], "metachris.com": [20786], "hiip.es": [2053], "fgm.link": [2053], "directory.rbwm.gov.uk": [21268], "tkto.cc": [2053], "go.gru.edu": [2053], "optum.com": [21026], "altacr.co": [2053], "zlr.vn": [2053], "sneakersaddict.com": [21492], "frauen.htwk-leipzig.de": [7736], "itespresso.fr": [11390], "autodiscover.somerset.gov.uk": [15376], "circl.wustl.edu": [18290], "djd.link": [2053], "mssqlbackup.active24.com": [19275], "reggi.ru": [13961], "developer.opensignal.com": [12172], "www.foxydeal.com": [6207], "www.hoverwatch.com": [20367], "www.aviation-safety.net": [19462], "flow.typo3.org": [16148, 16149], "www.olimex.com": [11979], "webevent.wustl.edu": [18290], "secure.acceptiva.com": [481], "may.lt": [2053], "mccourt.georgetown.edu": [6668], "upstart.com": [17689], "bld.to": [2053], "iafl.tv": [2053], "thehigenius.com": [2053], "fshare.vn": [6356], "*.perfectmarket.com": [12773], "tkool.degica.com": [3396], "d.suntravel.xyz": [2053], "www.llis.dhs.gov": [4109], "bandinelli.net": [1684], "webapps.brunel.ac.uk": [19599], "redm.us": [2053], "pru.sh": [2053], "admin.ias.edu": [7815], "www.altmetric.com": [933], "www.de.adjug.com": [565], "buldum.me": [2053], "radv.st": [2053], "hunter.104.com.tw": [18], "game.msi.com": [9957], "cdon.eu": [2620], "smpc.it": [2053], "macnifi.co": [2053], "warehouse.python.org": [13500], "warwickshire.gov.uk": [21980], "www.infradead.org": [8282], "www.careers.state.gov": [17345], "slp.slpweb.com": [2053], "developer.baidu.com": [1661], "showmecon.parametersecurity.com": [12598], "www02.bezeq.co.il": [19522], "psvr.co": [2053], "webmail.opentransfer.com": [12249], "ldn.glass": [2053], "simplybusiness.co.uk": [15078], "joycasino.info": [20552], "www.brixwork.com": [2398], "forums.xfinity.com": [22082], "www.project-syndicate.org": [13364], "www.openweb.or.kr": [12226], "account.bitmain.com": [2054], "ocq.dk": [2053], "www.precisionmarinetools.com": [13246], "agnt.io": [2053], "www.ezaccessory.com": [5648], "*.appsecusa.org": [1172], "miya2.net": [2053], "myaccount.aol.com": [361], "vodafone.com": [18110], "my.civilservice.gov.uk": [19721], "support.foursquare.com": [6200], "kull.in": [2053], "hidepay.net": [7537], "lib.doteasy-nocookie.com": [4795], "awakencolumb.us": [2053], "www.videoaidedinstruction.com": [17984], "www.das-parlament.de": [4238], "bedrockformskaw.msn.com": [9961], "*.roundhouse.org.uk": [14220], "www.engadget.com": [5360], "drewmclellan.me": [2053], "cdn.opendemocracy.net": [12230], "webtorrentsearch.mrcarch.com": [16494], "awscf.cdngeek.net": [2980], "hp.msn.com": [9961], "betternet.co": [19519], "d.colwill.eu": [2053], "changecopyright.ru": [19685], "xiongdi.jd.com": [8571], "www.verisign.co.jp": [17915], "oldham.greenparty.org.uk": [7052], "euim.mstar.com": [10868], "www.atfonline.gov": [19447], "cdnsl.coveritlive.com": [3804], "wenxian.meituan.com": [10405], "larnatur.al": [2053], "a.lindin.es": [2053], "m.netbanking.hdfcbank.com": [7389], "d.kabam.com": [2053], "support.zoho.com": [19202], "fpfo.co": [2053], "cams.pornworms.com": [13156], "services.retsinformation.dk": [14063], "i1.blogs.msdn.com": [9953], "funni.es": [2053], "t.jaschki.com": [2053], "cmispublic.walsall.gov.uk": [21971], "support.dynatrace.com": [4923], "ssl14.ovh.net": [12378], "www.worldlandscapearchitect.com": [18757], "fluttertoday.com": [6071], "bz.1688.com": [44], "media.go2app.org": [7354], "auth.gfx.ms": [6744], "*.bcge.ch": [20574], "www.roadtrippers.com": [14150], "downloads.canon.com": [2868], "booredatwork.com": [2263], "akamotu.info": [2053], "jandan.net": [8655], "q4.chaucanh.net": [2053], "hi-l.com": [2053], "hmbl.us": [2053], "vapo.us": [2053], "secure-endpoints.com": [14723], "socialmed.io": [2053], "karriere.aldi-sued.de": [338], "uk.act-on.com": [19268], "fya.la": [2053], "mrk.tv": [2053], "vraag.aboma.nl": [2053], "stout.buzz": [2053], "kaimi.ru": [20571], "mail.bakerlab.org": [1667], "cdn.cxense.com": [2753], "www.polipayments.com": [12479], "www.wireshark.org": [18670], "www.scanmarker.com": [14574], "scotturl.com": [2053], "wordstat.yandex.by": [18953], "pivotallabs.com": [12948], "tlpaines.co.uk": [2053], "geo.data.gov": [4253], "www.randischumann.dk": [13776], "biotek.uio.no": [17615], "www.fmv.se": [5692], "forum.chroniclesofgeorge.com": [16525], "*.adjust-net.jp": [636], "pitt.edu": [17617], "tr.meituan.com": [10405], "snow.search.ch": [14684], "apidev.accuweather.com": [503], "sms.vodafone.pt": [18109], "wiki.cam.ac.uk": [17529], "quotemedia.com": [13609], "u.bmeyer.me": [2053], "bcobandits.com": [1768], "go.robillo.name": [2053], "www.transip.nl": [16934], "ttn.asia": [2053], "fbd.sh": [2053], "www.mashery.com": [10210], "sospechas.es": [2053], "itunes.stanford.edu": [15635], "image.spreadshirtmedia.net": [15552], "ip.casalemedia.com": [2929], "kris3d.me": [2053], "*.altlinux.org": [342], "www.lenta.ru": [20661], "www.shopinfo.net": [14971], "nsbank.dengisend.ru": [4440], "gameladen.com": [6550], "techsay.com": [16272], "icelol.ly": [2053], "api.forecast.io": [6141], "porndig.com": [21173], "jred.me": [2053], "stylelik.eu": [2053], "i.slaxy.com": [2053], "nalog.yuga.ru": [22121], "jmdcg.co": [2053], "www.hdvest.com": [20328], "demworks.org": [4419], "ld-6.itunes.apple.com": [1160], "www.ladsholidayguide.com": [20628], "www.eroakirkosta.fi": [5452], "itwinterclosure.stanford.edu": [15635], "sonderdesign.com": [15382], "orderhlp.com": [14969], "erict.co": [2053], "www.franceinter.fr": [20156], "scholarship.berkeley.edu": [17526], "www.jabjab.de": [8618], "rpmc.co": [2053], "babs.link": [2053], "www.democracyclub.org.uk": [19891], "www.rsbac.org": [13690], "benoni.me": [2053], "university.cpanel.net": [2710], "s.urbie.nl": [2053], "scwer.be": [2053], "hsv.se": [7235], "codemoji.org": [3434], "paste.ubuntu.com": [17382], "sagr.co": [2053], "a.baiasu.ro": [2053], "jjkies.ch": [2053], "*.resultspage.com": [14051], "sfst.support": [2053], "mygsb.stanford.edu": [15635], "www.naturvardsverket.se": [11295], "nadaguidesstore.com": [11056], "nwk-unbrick1.apple.com": [1160], "api.feide.no": [5858], "www.semaphoreci.com": [14814], "hdguide.hol.es": [2053], "grouponworks.com": [7105], "256.com": [97], "handbrake.fr": [7316], "www.hitbox.tv": [7565], "www.frascatiproducties.nl": [6225], "urls.getmade.co": [2053], "*.palbin.com": [12544], "*.pairnic.com": [12540], "feedback.yandex.ua": [18961], "myaccount.coventry.gov.uk": [19807], "fxbusa.org": [2053], "b.smurl.in": [2053], "a2l.co": [2053], "m.xkcd.com": [22085], "t-mobile.com": [16026], "twofactorauth.org": [17175], "forever.btcchina.com": [1599], "smpla.net": [2053], "modecon.net": [2053], "acs.ucsd.edu": [17216], "mpb.fyi": [2053], "bigcartel.com": [1903], "www3.cs.stonybrook.edu": [15736], "psfc.us": [2053], "objectsecurity.com": [11900], "searchcode.com": [14686], "www.mytatasky.com": [16228], "www.gowork.pl": [6916], "schuilenburg.org": [14609], "well.com": [18561], "ac.ebis.ne.jp": [5141], "dell.com": [4412, 4413], "go.shovan.co.uk": [2053], "rldk.co": [2053], "m13.baidu.com": [1661], "lm615.ga": [2053], "diybanter.com": [4111], "*.force.com": [14487], "fotomarburg.digitale-diathek.net": [4587], "confan.im": [2053], "clicknupload.link": [19730], "lrcd.com": [9806], "forums.digitalpoint.com": [4581], "support.github.com": [6801], "websense.com": [18380], "lciapi.ninthdecimal.com": [11614], "dn.dk": [4128], "*.lu.se": [9261], "deals.boston.com": [2287], "unsta.in": [2053], "www.wired.com": [18664], "www.thepirateproxy.tech": [21709], "www.academics.de": [476], "directtoyou.derby.gov.uk": [4460], "go.affec.tv": [737], "*.eltatar.com": [5291], "www.gradsch.ohio-state.edu": [11960], "northpole.fi": [11700], "salsalabs.com": [14492], "url.adsfrom.us": [2053], "heasarc.gsfc.nasa.gov": [11058], "www.openmarket.org": [12154], "reiseauskunft.bahn.de": [1660], "www.interhome.ch": [8398], "im.sohu.net": [15353], "www.tachanka.org": [16155], "pllh.co": [2053], "ohiounion.osu.edu": [11959], "s.wantering.com": [2053], "www.engagemedia.org": [5362], "hdw.artsci.wustl.edu": [18290], "breier.cc": [2053], "amarok.kde.org": [8871], "blog.digicert.com": [4556], "www.radartv.nl": [13743], "*.payson.se": [12700], "ews-sdc.federalreserve.org": [5834], "www.kickass.mx": [9031], "go.hint.com": [2053], "www.syspectr.com": [16011], "viaf.org": [17779], "support.redbubble.com": [13895], "www.hsbc.com.hk": [20380], "nigel.im": [2053], "asic.gov.au": [388], "loxp.co": [2053], "assets.aarp.org": [270], "capepub.com": [2053], "snkrb0b.de": [2053], "cllgr.is": [2053], "laforge.gnumonks.org": [6891], "nowview.it": [2053], "s5co.us": [2053], "www.mobilism.me": [20814], "zc-paimai.taobao.com": [16206], "www.freecallstousa.co.uk": [20709], "secure.currys.co.uk": [4005], "www.ammec.de": [348], "*.teamsales.eastbay.com": [5117], "slbd.me": [2053], "sws.ec": [2053], "uds.lat": [2053], "blog.ikoula.com": [8112], "dftbubbl.es": [2053], "bookie.io": [2254], "xui.ptlogin2.tenpay.com": [16376], "nventio.com": [11788], "www.vestacp.com": [17945], "draws.random.org": [13780], "redfin.com": [13928], "co-operativebank.co.uk": [3392], "trnscnd.social": [2053], "doc.ddg.lth.se": [9258], "dishonored.com": [19144], "passport.bitmain.com": [2054], "blogs.studyinsweden.se": [21595], "www1.voterinfo.gov.hk": [21950], "tracking.verisign.com.au": [17915], "anon-ib.co": [1075], "t.ennis.pt": [2053], "*.giphy.com": [6785], "myuhc.com": [10983], "onegooddriver.com": [12025], "portalsp.acs.ncsu.edu": [11690], "mlpforums.com": [9924], "feedback.unity3d.com": [17506], "skya.us": [2053], "connectbyhertz.com": [7511], "www.benefit.nl": [1828], "s.chalkport.com": [2053], "artsedge.kennedy-center.org": [20585], "jhrts.org": [2053], "forum.openvz.org": [12188], "store.calgunsfoundation.org": [2798], "zhanjiang.meituan.com": [10405], "subscribe.pcspublink.com": [12434], "www.cacert.net": [2578], "madetech.com": [10006], "go.markj.me": [2053], "go2.mywaffl.com": [2053], "silktide.com": [15041], "www.sesplan.gov.uk": [21417], "ultherapy.md": [2053], "www.andrewmunsell.com": [1041], "popbank.us": [2053], "zombeewatch.org": [19209], "br.norton.com": [11703], "soundstrue.com": [15413], "*.r.msn.com": [9961], "www.arlt.com": [1237], "mondemp3.com": [10730], "za.myvirgo.info": [2053], "cbsmw.io": [2053], "mountainreservations.com": [10808], "pressesenter.sparebank1.no": [21524], "poo.solutions": [13124], "link.adva.io": [2053], "list.taobao.com": [16206], "www.ail.htwk-leipzig.de": [7736], "joey.lu": [2053], "www.cooldestinations.net": [3708], "cdon.fi": [2620], "*.ihgmerlin.com": [7884], "student.societyforscience.org": [15328], "affiliates.esellerate.net": [5462], "p.udn.com.tw": [17224], "djx.wsj.com": [22058], "*.thenewsmarket.com": [16567], "en.exmail.qq.com": [13514], "ctd.me": [2053], "www.interfax.az": [20475], "hacktionlab.org": [7291], "tel.mail.ru": [10040], "cefbuilds.com": [2989], "nick.io": [2053], "smplyq.co": [2053], "vlclb.tk": [2053], "secure.www.mercurynews.com": [10455], "www.admin.ufl.edu": [17538], "musictemp.xbox.com": [18850], "www.typotheque.com": [17194], "ciems.uk": [2053], "static.dingtalk.com": [19923], "*.anb.com.sa": [353], "ipsidixit.net": [8496], "100r.org": [12], "febra.me": [2053], "blogs.jetbrains.com": [8707], "www.tacticalsecret.com": [21647], "haber.yandex.com.tr": [18954], "synology.com.tw": [15991], "alu.ms": [2053], "rcdr.me": [2053], "chucki.es": [2053], "backoffice.sedo.de": [14786], "bugs.cse.iitb.ac.in": [7891], "forum.openmpt.org": [12148], "selc.link": [2053], "alu.mn": [2053], "a.sunspirit.org": [2053], "tech.safehubcollective.org": [14466], "stag.cntraveler.com": [3620], "www.316space.harralmedia.com": [2185], "sk.4.boardgamearena.com": [2219], "www.gradwellcloud.com": [7012], "hello90.444.hu": [172], "www.gesetze-im-internet.de": [6682], "cup-of-tea.it.ox.ac.uk": [17557], "i.li.ru": [9648], "yamaha.us": [2053], "cdn.fronter.com": [20179], "home.web.cern.ch": [2632], "gammae.com": [6567], "my.appcelerator.com": [1152], "www.echosign.adobe.com": [655], "palliative.stanford.edu": [15635], "istore.ccccloud.com": [2597], "refeds.org": [13646], "account.aliyun.com": [861], "xmp.cc": [2053], "care.bluecatnetworks.com": [2180], "s.m1k3.pw": [2053], "accom.brunel.ac.uk": [19599], "media.consumeraffairs.com": [3664], "jumpshare.com": [20561], "link.nelly.com": [2053], "*.ebayclassifieds.com": [20001], "makibox.com": [10083], "oit.ncsu.edu": [11690], "*.buffalostate.edu": [2458], "lngs.tv": [2053], "signup.jiveon.com": [8734], "solari.st": [2053], "rpdne.ws": [2053], "zhaocaibao.alipay.com": [857], "www.keksbude.net": [8995], "jdi.jsemvip.cz": [2053], "fresh-hotel.org": [6318], "mbi.mbnet.fi": [9889], "ucsc.worldcat.org": [18748], "web.tele2.se": [2053], "managers.usc.edu": [17564], "public.chaturbate.com": [3093], "cdn.theladbible.com": [21702], "www.assetmanagement.hsbc.co.in": [20372], "no.godaddy.com": [6898], "h4hweb.com": [2053], "mlk.md": [2053], "citizensinformation.ie": [3235], "mbrs.tk": [2053], "mirror.oops.org": [12096], "*.crypteianetworks.com": [3920], "linguee.de": [20690], "www.fastwebhost.com": [5795], "www.antergos.com": [1102], "www.uscurrency.gov": [17335], "zynga.my": [2053], "stark.to": [2053], "*.sdss3.org": [15212], "rchd.cf": [2053], "*.cagw.org": [2571], "www.nancysgonegreen.com": [11216], "openprinting.org": [12239], "bank-enisey.dengisend.ru": [4440], "www.globalscaletechnologies.com": [6861], "freestarz-tv.ga": [2053], "amatt.as": [2053], "pay.allabrd.com": [2053], "t1.stormiq.com": [15755], "go.pga.com": [2053], "www.sideshowtoy.com": [15010], "*.start.me": [15657], "www.distraction.gov": [4660], "bergencc.worldcat.org": [18748], "www.steamspy.com": [15711], "*.ets.org": [5075], "w3t.co": [2053], "eclkmpsa.com": [20004], "go-b.co": [2053], "mpi-soft.mpg.de": [10254], "www.adnetexpress.net": [19296], "www.thechangelog.com": [16522], "upic.me": [17676], "volkswagenbank.de": [18125], "www.tickermadness.com": [16682], "sltees.com": [2053], "s.hkeeu.org": [2053], "advertisers.dataxu.com": [4268], "cdimage.deepin.com": [4380], "katelavie.co": [2053], "help.gitbook.io": [6795], "d.hitravel.xyz": [2053], "www.rc4nomore.com": [21270], "www.45millionvoices.org": [175], "tt.vutbr.cz": [17814], "mbahq.co": [2053], "www.ucuzu.com": [17390], "www.opsterland.nl": [11324], "www.business.spectrum.com": [15497], "scbl.co": [2053], "www.proxer.me": [13403], "chango.com": [3056], "pilegaarden.kk.dk": [8883], "l.evens.eu": [2053], "kffdik.be": [2053], "www.espiv.net": [20058], "voice.megapath.com": [10396], "my.piggli.com": [2053], "vtz.lv": [2053], "piraadipartei.ee": [21127], "nor.fronter.com": [20179], "yasukegroup.olx.pt": [11984], "www.cdon.fi": [2620], "news.usni.org": [17323], "kevinlinks.it": [2053], "media.marketwire.com": [10186], "lk.pap.vn": [2053], "law.stanford.edu": [15635], "ourlocality.org": [12349], "scholar.google.*": [6965], "ru.aravot.am": [19410], "alp.alicdn.com": [846], "bf1.co": [2053], "blendle.nl": [2121], "mail.protvino.net": [21213], "go.distil.it": [2053], "community.servicenow.com": [14866], "kinimatorama.net": [20595], "ispid.nl": [7978], "www.cronkitenewsonline.com": [3881], "funkyandroid.com": [6384], "flex.atdmt.com": [10540], "caoxian.meituan.com": [10405], "at.redhat.com": [13909], "blog.ludialudom.sk": [9816], "status.fitbit.com": [6002], "123bay.space": [21709], "zenmate.co.id": [19133], "www.personalausweisportal.de": [12795], "go.shbaah.com": [2053], "s.keroup.com": [2053], "ads.rubiconproject.com": [14247], "500nm.ch": [2053], "onedrive.com": [12031], "worldofwarplanes.*": [18762], "2ch.cm": [108], "donations.rspca.org.uk": [13695], "utrlink.to": [2053], "erowid.com": [5455], "stne.co": [2053], "mappingmediafreedom.org": [10138], "gwlaw.worldcat.org": [18748], "si0.rgstatic.net": [13655], "learntm.org": [2053], "zmtr.zscaler.com": [19231], "go.slide.me": [2053], "capgaz.co": [2053], "account.clever.com": [3297], "www.atomicorp.com": [1364], "ro.ble.to": [2053], "tacticalsecret.com": [21647], "mrhe.at": [2053], "gb.youcanbook.me": [19010], "s136.cnzz.com": [3391], "premii.com": [7581], "blog.malwarebytes.org": [10093], "www.it.umd.edu": [17549], "b93.yahoo.co.jp": [18944], "drafto.ps": [2053], "b6.yahoo.co.jp": [18944], "ysr.photo": [2053], "img9.warez-bb.org": [18273], "jamieoliver.com": [8652], "*.ctep-ebp.com": [2740], "link.eqtg.biz": [2053], "athom.as": [2053], "luckyshare.net": [9815], "provision.relay.kaseya.net": [8955], "netloan.kent.gov.uk": [9005], "www.soylent.com": [15448], "*.npd.com": [11136], "data.cms.gov": [19742], "lopezjd.com": [2053], "alpha.irccloud.com": [8502], "finansportalen.no": [5945], "akbars.ru": [19335], "www.arte.tv": [19422], "samples.mplayerhq.hu": [9949], "vh2.vutbr.cz": [17814], "pqsent.me": [2053], "spoiltv.me": [2053], "highland.objective.co.uk": [20979], "app.zingcheckout.com": [19188], "online.ofsted.gov.uk": [20985], "www.gmx.ch": [6467], "gtup.me": [2053], "cogxr.co": [2053], "opc.gov.au": [11948], "nzbplanet.net": [11799], "indymedia.nl": [8232], "anatomiaembriologiagenetica.unizar.es": [17643], "redbullracingadmin.kartfighter.com": [8952], "www.piquadro.com": [12918], "iamau.ca": [2053], "blog.cpanel.com": [2708], "epdn.co": [2053], "ken.pw": [2053], "decal.mobi": [2053], "cctea.ch": [2053], "physics.williams.edu": [18616], "assets.huggies-cdn.net": [7747], "westandsouthdorset.greenparty.org.uk": [7052], "iasbo.tools": [2053], "cryptotec.com": [19830], "www.pr.co": [13233], "bugzilla.flamingspork.com": [6016], "www.nightlove.me": [11589], "learning.gov.wales": [6987], "flat.pw": [2053], "irc.jquery.org": [8597], "www.coopathome.ch": [3712], "www.bihira.com": [1921], "g.juliens.me": [2053], "tools.qubitproducts.com": [13575], "buyiphone2.apple.com": [1160], "horrifying.co": [2053], "bcourses.berkeley.edu": [17526], "publish.aps.org": [969], "s.aac.st": [2053], "radware.com": [13758], "r8.io": [2053], "viawi.re": [2053], "vhk.li": [2053], "res.mobsec.rub.de": [13712], "scusd.illuminateed.com": [20430], "kldp.org": [8888], "ziedot.lv": [19175], "cloudshep.co": [2053], "au.gwn7.yahoo.com": [18939], "protectwise.com": [13393], "altay.beeline.ru": [1801], "mrh.ibizarocks.com": [8046], "www.chtn.org": [19712], "cname.createsend.com": [3843], "lego.gizmodo.com": [6817], "s0.m.hao123img.com": [20313], "digitecgalaxus.ch": [4592], "samsungfire.com": [14505], "controllermax.com": [3689, 3690], "diminc.biz": [2053], "foxd.tv": [2053], "treee.es": [2053], "tradeshow.alibaba.com": [850], "publicaccess.nih.gov": [11241], "www.thuisbezorgd.nl": [16669], "virusdesk.kaspersky.com": [8958], "goduke.com": [4895], "wiki.openmamba.org": [21018], "publish.illinois.edu": [17544], "help.asana.com": [1277], "www.home-school.com": [20350], "www.cusu.cam.ac.uk": [17529], "sprintrebates.com": [15567], "u-blox.com": [17198], "www.google.com.kapsobor.de": [8944], "it.taobao.com": [16206], "de.opera.com": [12252], "shewrit.es": [2053], "www.tripwell.com": [17024], "xiantao.meituan.com": [10405], "puppetlabs.com": [13460], "www.xara.com": [18842], "a.lefton.co.uk": [2053], "lh.meituan.com": [10405], "wusmapply.wustl.edu": [18290], "plimus.com": [13039], "on.hubii.com": [2053], "www.abiresearch.com": [280], "members.actiac.org": [19269], "www.amazon.it": [19373], "*.clara.net": [3271], "exedweb.cc.uic.edu": [17517], "mail.fa.vutbr.cz": [17814], "www.kulcs-soft.hu": [9184], "www.teststackoverflow.com": [15611], "contrasterra.ru": [19782], "www.bnw.im": [19565], "mxsr.co": [2053], "wcls.co": [2053], "to.hamaka.nl": [2053], "board.muse.mu": [20854], "fb.brayola.com": [2053], "support.sharethrough.com": [14925], "*.asmp.org": [984], "vpnreactor.com": [17794], "www.telushealth.com": [16364], "alilang.alibaba-inc.com": [19342], "forum.opencaching.pl": [21010], "contests.nvidia.eu": [11173], "primo.uvm.edu": [17353], "cdn4.kongcdn.com": [9127], "sodl.co": [2053], "m.news.mail.ru": [10040], "dl.360safe.com": [132], "studiegids.tue.nl": [16129], "security.ncsa.illinois.edu": [17544], "www.portnerpress.com.au": [13168], "studentprivacypledge.org": [21594], "apha.us": [2053], "heslo.atlas.sk": [19449], "www.newstube.ru": [20904], "www.fluendo.com": [6067], "o2offers.co.uk": [2053], "sandbox.sandvine.com": [14523], "l.drnk.in": [2053], "stockport.objective.co.uk": [20979], "nature.asia": [2053], "assets.mcc.gov": [20763], "www.vlagtwedde.nl": [11324], "mantisbt.org": [20750], "m.bw.com": [1625], "laptop.hu": [9308], "tywed.co": [2053], "www.forum.1and1.ca": [62], "itif.org": [20512], "i3.gallery.technet.microsoft.com": [10543], "www.bear.im": [1786], "otley.greenparty.org.uk": [7052], "pappty.co": [2053], "l.saptak.in": [2053], "www.pcr-online.biz": [21095], "xprize.org": [18795], "groups.inovem.com": [20465], "www.binrev.com": [1941], "www.bitsapphire.com": [2067], "subscribe.ft.com": [5941], "blaagaarden.kk.dk": [8883], "tracker.wikimedia.cz": [18595], "mbls.ro": [2053], "vcdx.co": [2053], "sndr.es": [2053], "www.risparmiopostale.it": [14136], "searchmobius.org": [9936], "dalemacartney.com": [4204], "litrs.ee": [2053], "www.mcclurken.org": [17547], "dentalacard.us": [2053], "www.autotrader.co.uk": [19457, 19458], "stopwatching.us": [15744], "syfy.tv": [2053], "blog.pagefair.com": [12533], "bly.volution.ro": [2053], "maidstone-consult.objective.co.uk": [20979], "business.illinois.edu": [17544], "www.gohugo.io": [20265], "www.whamcat.com": [18523], "www.copyright.com": [3725], "helpcenter.stanford.edu": [15635], "movidi.us": [2053], "viewphoto.us": [2053], "0.vgc.no": [17776], "pewrsr.ch": [2053], "www.protectnetwork.org": [13394], "policy.greenparty.org.uk": [7052], "www.nuclearcat.com": [11766], "honghe.meituan.com": [10405], "sjw.ms": [2053], "pharmacy.buffalo.edu": [17583], "graphene-lda.com": [7021], "objednavka.active24.cz": [19276], "go.sjsu.edu": [2053], "paralympic.org": [21070], "thegunwire.tw": [2053], "ik.cm": [2053], "www.whatsappbrand.com": [22014], "portalws.udistrital.edu.co": [17394], "*.geotrust.com": [6671], "maeweb.ucsd.edu": [17216], "jon.gr": [2053], "boundarydevices.com": [19578], "history.lds.org": [16485], "sbdh.ws": [2053], "www.omicron.at": [11834], "popcorn-time.se": [13141], "kurly.fr": [9195], "b.apadv.co": [2053], "rarediseases.org": [13801], "facebook.fr": [5736], "www.chef.io": [3115], "ece.osu.edu": [11959], "forum.torrentbit.net": [16856], "lacaixa.es": [9268], "blogs.bing.com": [1949], "www.pizza.fr": [12966], "muscle.ms": [2053], "www.access-kaiseki-tools.com": [482], "files8.adme.ru": [646], "apamsa.stanford.edu": [15634], "login.104.com.tw": [18], "shiyanzp.growingio.com": [20286], "bt.robdyke.com": [2053], "charterbusiness.com": [3081], "chclt.ch": [2053], "lists.linux.it": [8533], "sbucciami.com": [14562], "www.galaxis.at": [6524], "blu.stb.s-msn.com": [14297], "dert.ca": [2053], "twj.tips": [2053], "nbackup.co": [2053], "zwift.me": [2053], "drmb.co": [2053], "hualian.meituan.com": [10405], "l.arranca.me": [2053], "sidebar.issuu.com": [8526], "www.hivelocity.net": [7571], "www.headphone.com": [7391], "acr.uz": [2053], "rainierarms.com": [21250], "lwssvcs.lowes.com": [9800], "thebrauha.us": [2053], "www.comic-con.net": [3530], "www.2020mobile.es": [84], "thrivas.us": [2053], "djoser.nl": [7597], "*.akg.com": [7340], "ben.ec": [2053], "moja.postovabanka.sk": [13208], "vdfn.pt": [2053], "www.ustream.tv": [17743], "pr.norton.com": [11703], "m.chrisross.cc": [2053], "www.gdatasoftware.co.uk": [6410], "beautybar.com": [1793], "manife.st": [2053], "gkinsi.de": [2053], "panel.cj2.nl": [2674], "go.brrice.edu": [2053], "files.vbulletin.com": [17763], "hu.piliapp.com": [12887], "www.sitelabs.co.uk": [21461], "nuxx.net": [11786], "shpd.it": [2053], "kint.ec": [2053], "thspbx.com": [2053], "djurrattsalliansen.se": [4681], "mendeleevo.beeline.ru": [1801], "*.spreadshirt.ie": [15552], "skydrive.live.com": [9644], "www.cinestar.de": [3202], "www.zealdocs.org": [22128], "ateneutgn.ourproject.org": [21044], "www.gtt.net": [6512], "green.io": [2053], "miwo.me": [2053], "project-voisins.web.cern.ch": [2632], "i.toyota.com.br": [2053], "ad.shipc.co": [2053], "qiwi.ru": [13533], "analytics.tacticaltech.org": [16156], "news.vsemetri.com": [21960], "bot.brew.sh": [19577], "url.aru-b.com": [2053], "agentportal.westernunion.com": [18512], "www.url2png.com": [17701], "www.portal.leeds.ac.uk": [17604], "support.microsoft.com": [10543], "bwknr.me": [2053], "*.salford.ac.uk": [17622], "gart.land": [2053], "greatpress.com": [2053], "ibx.com": [20419], "hnd.bz": [2053], "doctorswithoutborders.org": [4713], "code.not-your-server.de": [11711], "fredrikolofsson.com": [20159], "int.anon-ib.la": [1077], "www.censornet.com": [19666], "l.de": [9211], "publicsuffix.org": [13443], "buddypress.org": [2448], "*.t.eloqua.com": [5282], "sugarcrm.hostone.com.au": [7661], "mail.capsd.usc.edu": [17564], "geocaching.com": [6663, 6664], "km.meituan.com": [10405], "hwb.wales.gov.uk": [18252], "vriq.us": [2053], "dante-analytics.net": [4078], "dou.ba": [2053], "i3.tietuku.com": [16704], "img.wbcsrv.com": [18535], "www.codeigniter.com": [19748], "www.cede.ch": [19665], "www.domainreseller.ru": [4754], "ganzestore.com": [6574], "www.tradeinchecker.com": [16915], "horarioscentros.uned.es": [17446], "ggoo.me": [2053], "omyk.co": [2053], "soapbox.buzz": [2053], "*.silkroad.com": [15037], "www.rhinosupport.com": [14096], "www.hashicorp.com": [7359], "delivery.switchadhub.com": [15954], "cetak.me": [2053], "1.life.taobao.com": [16206], "frankfurt.webconsole.linode.com": [9547], "glasgowclub.me": [2053], "www.hostasaurus.com": [7664], "dms-q.wiiings.com": [18587], "notenoughshaders.com": [11714], "produkte.migros.ch": [10566], "msft.la": [2053], "thediplomat.com": [16451, 21697], "epic-sb.com": [2053], "arkinv.st": [2053], "computing.scs.illinois.edu": [17544], "n4u.co": [2053], "secure.aarp.org": [270], "wirelessmedia.ign.com": [7877], "ls.ly": [2053], "silentcircle.com": [15031], "dns.dynect.net": [4933], "techpresident.com": [16269], "leadlander.com": [9350], "j.gmodmp.jp": [20257], "quin.pw": [2053], "www.anwiki.com": [19398], "*.tu-chemnitz.de": [16124], "campusministry.georgetown.edu": [6668], "s.atwebs.net": [2053], "worldmarkbywyndham.com": [18790], "www3.citymapper.com": [3252], "www.digitaldefenders.org": [4574], "enhancedsteam.com": [5375], "zlerr.com": [2053], "*.ens-lyon.org": [5387], "www.nesea.org": [11089], "ru.redhat.com": [13909], "m.money.mail.ru": [10040], "in.flux.com": [2053], "atsevents.neustar.biz": [11472], "democracy.plymouth.gov.uk": [21153], "zfyr.us": [2053], "zamanillo.pro": [2053], "akdt.tk": [2053], "community.liveperson.com": [9655], "kjkh.me": [2053], "uservoice.com": [17733], "biznessed.co.uk": [2053], "gitcop.com": [6797], "www.unrealengine.com": [17652], "imediaconnection.com": [7908], "www.sacredcrystalsingingbowls.com": [3963], "www.active24.cz": [19276], "www.cardsagainsthumanity.com": [2896], "v4.windowsupdate.microsoft.com": [10542], "albank.dengisend.ru": [4440], "ecentral.social": [2053], "clz.co": [2053], "astrakhanskaya-obl.beeline.ru": [1801], "cheshi.re": [2053], "www.gruen.net": [6501], "wiki.uis.georgetown.edu": [6668], "pendure.me": [2053], "hiawatha-webserver.org": [7530], "www.chbe.illinois.edu": [17544], "hnsdgtl.co": [2053], "risi.com": [13666], "*.sternkom.de": [15724], "*.unr.li": [17654], "join.thescottishsun.co.uk": [21717], "endace.com": [5345], "hosting.earthlink.net": [5106], "www.openprinting.org": [12239], "support.enthought.com": [5401], "rohc-lib.org": [13677], "sze.co": [2053], "autodiscover.llu.leeds.ac.uk": [17604], "paywithamazon.amazon.in": [19372], "delico.se": [4407], "confirmsubscription.com": [3636], "asset-2.soup.io": [15415], "mathoverflow.net": [15611], "code.msdn.microsoft.com": [10543], "evernote.com": [5556], "emob.co": [2053], "wldc.us": [2053], "joestra.us": [2053], "*.accordancebible.com": [495], "de.biotrimlabs.com": [1963], "www.hotel.ch": [20366], "nomino.openstreetmap.fr": [12245], "hsny.co": [2053], "csa-cee-summit.eu": [2720], "l.lasunison.uk": [2053], "ffmpeg.mplayerhq.hu": [9949], "englishdefenceleague.net": [5372, 5373], "owlfolio.org": [12384], "omit.tv": [2053], "www.teamxlink.co.uk": [16261], "betc.lc": [2053], "m2c.ru": [20732], "www.livestock-transport.com": [9675], "yichuan.meituan.com": [10405], "algorithm.contest.yandex.com": [18956], "searchwww.sec.gov": [17301], "phpbb.com": [12862], "platinum.unizar.es": [17643], "www.eternallybored.org": [20061], "plannedgiving.com": [12992], "lounge.stelladot.com": [15719], "cofam.us": [2053], "cs.bme.hu": [1571], "api.pushover.net": [13483], "loisirs2.cff.ch": [15946], "my.365ide.as": [2053], "theblackpooltower.com": [16443], "www.scottevest.com": [14640], "ads.ign.com": [7877], "vook.com": [18137], "bruxelles.indymedia.org": [8234], "cfpp.me": [2053], "jiadian.taobao.com": [16206], "www.it-sicherheit.de": [8343], "www.webfestglobal.com": [18413], "smc.cybercon.com": [4040], "forum.mandriva.com": [10110], "www.shareholder.anz.com": [355], "help.duo.com": [4900], "lava.to": [2053], "www.lullabot.com": [9822], "p.papierossi.de": [2053], "blab.fyi": [2053], "ams.bike": [2053], "cernvm.web.cern.ch": [2632], "vsty.ca": [2053], "hzw.press": [2053], "toyota.us": [2053], "u.scruf.us": [2053], "go.bigr.us": [2053], "zipth.at": [2053], "www.foresters.biz": [6148], "www.otakumode.com": [12333], "r.notmax.co": [2053], "www.fragdenstaat.de": [6212], "wiki.jenkins-ci.org": [8700], "developers.facebook.com": [5733], "yourar.ch": [2053], "on.trosmith.com": [2053], "espanol.smokefree.gov": [21484], "leviathansecurity.com": [9431, 9432], "agvd.li": [2053], "djzenoth.com": [2053], "hellerlab.stanford.edu": [15635], "by.marshkev.in": [2053], "www.buddycube.com": [2447], "ohiostatealumni.org": [11963], "g-p-l.us": [2053], "ftapi.info": [2053], "huffingtonpost.com": [7745], "billing.ivacy.com": [8546], "swp.li": [2053], "go.foerstel.com": [2053], "www.questia.com": [13584], "mail.collyers.ac.uk": [3496], "gypsy.freedesktop.org": [6243], "ursal.es": [2053], "www.bydavidwittig.com": [2542], "goldenpass.ch": [20267], "owa.connect.kent.ac.uk": [17603], "sh.mintama.info": [2053], "www.movieposter.com": [10832], "concussion.leeds.ac.uk": [17604], "lifewith.dog": [2053], "x.jenn.nu": [2053], "dbforums.com": [4085], "alzu.tk": [2053], "7sta.rs": [2053], "www.hud.gov": [17296], "*.couragecampaign.org": [3781], "dushanbe.usembassy.gov": [21879], "s.kyled.me": [2053], "eastie.info": [2053], "www.brulinesfuelsolutions.com": [17955], "developer.leafly.com": [9360], "uwm.co": [2053], "*.pitt.edu": [17617], "*.siteblindado.com": [15123], "www.ruby-china.org": [21338], "secure.stage-gettyimages.com": [6741], "bancamigros.ch": [10563], "partner.walmart.com": [18260], "authr.in": [2053], "*.blackvpn.com": [2094], "s.soplab.net": [2053], "www.checksconnect.com": [7339], "brt.bz": [2053], "www.xroxy.com": [18893], "testssl.sh": [16408], "manitu.net": [10120], "lorenwa.de": [2053], "www.frequentis.com": [6316, 6317], "*.liberalamerica.org": [9454], "www.varnish-software.com": [17862], "bit.ocuw.org": [2053], "*.swt.com": [14445], "training.ebsco.com": [4971], "secure.bizland.com": [2082], "mailings.gmx.net": [6467], "dongtai.taobao.com": [16206], "ibm.co": [2053], "zh-tw.libreoffice.org": [9471], "zerocater.com": [19157], "autodiscover.utm.edu": [17628], "businesshelp.comcast.com": [3525], "cleancities.energy.gov": [5355], "id.secondlife.com": [14706], "www.seba-geek.de": [15378], "volunteerbooking.london.gov.uk": [9741], "sociol.la": [2053], "aveb.me": [2053], "www.fora.tv": [5698], "princey.me": [2053], "www.carrier-lost.org": [2922], "api-v1.websitealive.com": [18445], "www.blicko.com": [2126], "4giv.us": [2053], "verdk.com": [2053], "snkrhnt.rs": [2053], "i2.rgstatic.net": [13655], "on.ezdoo.me": [2053], "*.lockerdome.com": [9706], "vivad.aolcdn.com": [362], "tri.gl": [2053], "gorsel.yandex.com.tr": [18954], "*.unilever.com": [17474], "visa.jd.com": [8571], "www.mozo.com.au": [10854], "roxy.bz": [2053], "cdn.mouseflow.com": [10812], "npd.com": [11136], "on.wxii.com": [2053], "www.sovrn.com": [21517], "gmx.info": [6467], "winhawille.edu.hel.fi": [18655], "www.mooc-list.com": [9942], "media.tokyo2020.jp": [21754], "keyserver2.pgp.com": [12448], "www.hostingsolutions.cz": [7675], "sbsg.it": [2053], "www.groupme.com": [7096], "assadi.me": [2053], "obm.io": [2053], "s.joinuz.nl": [2053], "rm79.co": [2053], "lttlmg.ht": [2053], "secdev.com": [14701], "acrgtn.net": [2053], "www.antizapret.info": [1110], "expo.engineering.osu.edu": [11959], "paths.ioninteractive.com": [20484], "video.unrulymedia.com": [21862], "edoceo.com": [5190], "*.jstor.org": [8607], "umw.starfishsolutions.com": [21565], "cas.oebb.at": [20984], "examp1e.net": [5589], "audrhb.co.uk": [2053], "www.linux-tips.org": [9559], "www.undergraduateresearch.osu.edu": [11959], "smtrcs.redhat.com": [13909], "salesca.re": [2053], "sqsp.me": [2053], "socialfixer.com": [15312], "assets.myyearbook.com": [11010], "8.360.cn": [130], "hc.meituan.com": [10405], "www.freewebsitetemplates.com": [20173], "e.mag2.com": [2053], "scholarcommons.usf.edu": [17560], "ascc.co": [2053], "ftp.uhulinux.hu": [21837], "www.leibniz-supercomputing-centre.de": [9396], "cdn.playboy.com": [13019], "links.f5.com": [2053], "www.o2tv.cz": [16332], "www.dealspwn.com": [7693], "*.skitch.com": [15160], "atmia.com": [19451], "wdl.me": [2053], "xcentr.al": [2053], "feature.rescue.org": [21294], "math.ias.edu": [7815], "kiwiirc.com": [9081], "lhomes.org.uk": [2053], "www.red-dove.com": [13891], "ci.jenkins.io": [20536], "a.ucsd.edu": [17216], "fr.norton.com": [11703], "www.microsoftventures.com": [10550], "p6.qhimg.com": [13531], "drds.us": [2053], "buddycube.com": [2447], "www.loverpi.com": [9795], "dshaw.me": [2053], "trello.com": [16986], "www.delivery.com": [4411], "hgyt.cf": [2053], "debenhams.com": [19884], "erwin.me": [2053], "icur.so": [2053], "www.cstatic-graphics.com": [3969], "x14.eu": [17780], "structures.ucsd.edu": [17216], "go.krib.it": [2053], "decd.co": [2053], "sl.thomas.do": [2053], "www.own-mailbox.com": [12385], "asada.govspace.gov.au": [6994], "drvm.co": [2053], "solola.ca": [15372], "u.herda.me": [2053], "www.niteflirt.com": [11618], "bhamcommunity.nhs.uk": [11102], "understanding.webtrends.com": [5280], "umich.edu": [17552], "bsocl.com": [2053], "brt.gs": [2053], "www.pkcsecurity.com": [12467], "ubertacc.io": [2053], "www.nets.ec": [11397], "www.northern-indymedia.org": [11698], "vdio.com": [17874], "portal.vcd.org": [17766], "cs.specificclick.net": [15493], "debbugs.gnu.org": [6474], "conf.kde.org": [8871], "devever.net": [4501], "sbb.rip": [2053], "www.dg.ens.fr": [5029], "images.palcdn.com": [12411], "banquemigros.ch": [10563], "fr.pcisecuritystandards.org": [12428], "t4keme0ut.tk": [2053], "www.edigitalresearch.com": [4999], "aulit.ca": [2053], "www.myshadow.org": [11005], "cpics.org": [2053], "www.atomz.com": [1365], "dot.toocheap.jp": [2053], "www.girlsoutwest.com": [6787], "myportal.ti.com": [16413], "cdn.btrcdn.com": [1614], "my.urlby.us": [2053], "wrgrp.social": [2053], "yym.ca": [2053], "integration.quotes.bkb.ch": [20574], "nams.me": [2053], "tickets.london2012.com": [9735], "owa.nottingham.ac.uk": [11726], "thegspl.co": [2053], "www.linuxvoice.com": [9585], "hbrkt.com": [2053], "new.x2go.org": [18800], "o4.aztravel.xyz": [2053], "www22.pipni.cz": [12460], "cs.libreoffice.org": [9471], "*.sabayon.org": [14450], "*.networksgroup.com": [11402], "go.taboola.com": [16153], "ethosapp.me": [2053], "discover.com": [4633], "pprzzi.de": [2053], "updateframework.com": [17673], "doc.mageia.org": [10014], "jostir.mx": [2053], "sbxin.co": [2053], "ttms.us": [2053], "*.analystone.com": [1026], "telefoniczna-kopalnia.panoptykon.org": [12570], "*.kpn.nl": [8897], "gowav.com": [2053], "www.zenmate.sg": [19133], "jessluna.com": [2053], "www.service.futurequest.net": [6400], "sarthe.me": [2053], "blog.hslu.ch": [7728], "www.openinventionnetwork.com": [12105], "canvas.sfu.ca": [14893], "onlinehelp.microsoft.com": [10541], "edirectdebit.com": [5001], "t.360.cn": [130], "ambassadors.prestashop.com": [13265], "www.sieciovo.pl": [15013], "bitly.expert": [2053], "go.pwm.pt": [2053], "www.homebello.com": [7611], "trvb.us": [2053], "healthiernorthwestlondon.nhs.uk": [11102], "bnea.se": [2053], "iwork.com": [8023], "www.olin.edu": [6222], "dickie.mn": [2053], "environmental-impact.web.cern.ch": [2632], "miamire.com": [10515], "danw.it": [2053], "ns.pipni.cz": [12460], "knot-resolver.cz": [20613], "informe.org": [8265], "download.icq.com": [7837], "forum.dee.su": [4372], "www.icanlocalize.com": [7842], "nedcc.org": [11085], "mobdg.co": [2053], "www.petri.com": [12809], "usfca.edu": [17320], "brs.io": [2053], "i1.weibopay.com": [21998], "www.gigacampus.no": [17477], "skgov.ca": [2053], "www.joslin.org": [8785], "aldi-sued.de": [338], "arli.us": [2053], "hampshire.firmstep.com": [20125], "www.gwdang.com": [20300], "guttmacher.org": [7159], "www.icefilms.info": [8056], "l.edm.io": [2053], "*.ally.com": [905], "europython.eu": [5514], "nidirect.gov.uk": [20910], "intelv8.me": [2053], "bri.space": [2053], "www.fav.me": [4502], "secure.teamforge.net": [16254], "research.stonybrook.edu": [15736], "url.miantiao.me": [2053], "open.com.au": [12113], "*.moses.com": [15128], "*.icculus.org": [8054], "v-k.pw": [2053], "link.lbmx.de": [2053], "prokid.info": [2053], "login.seznam.cz": [14891], "file.modx.pro": [20817], "nanchang.1688.com": [44], "static.t-mobilebankowe.pl": [21643], "twitch.tv": [17164], "gftplns.org": [15721], "pass.yandex.com.tr": [18954], "u3.uicdn.net": [17236], "siy.li": [2053], "www.widgit-online.com": [22022], "asdne.st": [2053], "mu-se.me": [2053], "on.khou.com": [2053], "itc.mzstatic.com": [11041], "c3.q-assets.com": [21235], "mae-hpc.engineering.osu.edu": [11959], "*.ltu.se": [9821], "smartfacts.cr.yp.to": [3817], "www.tiltedwindmillpress.com": [16721], "media.bizj.us": [16444], "www.citi.com": [3227], "console.ubertags.com": [17367], "m.baselo.com": [2053], "www.translations.com": [21781], "evotronix.com": [5570], "primecdn.500px.org": [195], "extranet.bfwien.at": [18582], "bulli.es": [2053], "hwl.fm": [2053], "www.zalando.fr": [19094], "jobs.urbandictionary.com": [16500], "wiki.data.gov": [4253], "*.wyndham.com": [18790], "www.sol.no": [21502], "shades.cc": [2053], "www.voicelessonstotheworld.com": [11492], "api.deferpanic.com": [4389], "rghoff.com": [2053], "pennif.red": [2053], "getmailbird.com": [6717], "nkdalm.net": [2053], "www.webfonts.fonts.com": [6110], "www.getmondo.co.uk": [20232], "*.grsecurity.net": [6500], "partner.fastdomain.com": [5788], "cdn.starfishsolutions.com": [21565], "wkis.us": [2053], "cecpp.cheshireeast.gov.uk": [3125], "analytics.moz.com": [20834], "mcnsl.co": [2053], "security.alibaba.com": [850], "goodlucktrunk.com": [6956], "jtri.be": [2053], "realdnb.com": [2053], "pinkong.taobao.com": [16206], "amo.bz": [2053], "static.glassdoor.co.in": [20247], "healthysteps.stanford.edu": [15635], "support.wwf.ch": [22060], "u.billgong.com": [2053], "www.zalando.fi": [19094], "suriname.usembassy.gov": [21879], "s.bilal.ca": [2053], "publicfeed.stubhub.de": [15789], "www.understood.org": [17442], "mybetter.com": [10935], "p17.qhimg.com": [13531], "cdn.digits.com": [4593], "cdn.etrade.net": [5496], "iinet.net.au": [8107], "www.mysweetiq.com": [10978], "merchp.in": [2053], "*.intuitcdn.net": [8452], "courses.it.ox.ac.uk": [17557], "www.cuny.edu": [3248], "www.swtch.com": [21630], "mozilla.com": [10843], "munin.debian.org": [4353], "www.atlantis.sk": [1355], "www.365ticketscentral.com": [139], "www.infektionsschutz.de": [8239], "cdn.posteo.de": [13195], "vumanity.net": [18171], "denso-wave.com": [4447], "skillselect.govspace.gov.au": [6994], "eyereturnmarketing.com": [5644], "onlinebenefitclaim.basildon.gov.uk": [19494], "publicidees.com": [13432], "www.minijob-zentrale.de": [10613], "shop.medikamente-per-klick.de": [10364], "cloud.loggn.de": [9717], "www.allstartire.com": [887], "www.alternativlos.org": [926], "ireland.isidewith.com": [20414], "www.dslreports.com": [4157], "static.weboffice.uwa.edu.au": [17579], "schmutz.es": [2053], "www.copernico.net": [3719], "aquilaclothing.co.uk": [1186], "go.amco.me": [2053], "popvote.hk": [13139], "www.rottnestfastferries.com.au": [14217], "gtun.es": [2053], "go.csik.net": [2053], "www.mileiq.com": [10579], "olvi.fi": [11983], "flyks.us": [2053], "ee.co.uk": [5564], "lists.xenserver.org": [18858], "static.wix.com": [18684], "img.sanet.me": [14315], "kochkurse.ichkoche.at": [8063], "switchplus.ch": [15958], "len.sc": [2053], "tvshowtime.com": [16143], "webmerge.me": [18372], "www.kismetwireless.net": [9070], "click-aici.ml": [2053], "www.thatoneprivacysite.net": [16437], "*.www.dialdirect.co.uk": [4523], "sourcefabric.com": [15428], "benefits.nra.org": [20943], "s.whoscall.com": [2053], "forum.e-hentai.org": [4938], "rtp.vc": [13709], "www.beforeyoudig.nationalgrid.com": [11270], "itcr.cancer.gov": [2864], "euscripts.msi.com": [9957], "labs.chevronwp7.com": [9281], "move1.co": [2053], "awaps.yandex.com.tr": [18954], "hubspot.com": [7739], "i.tomri.ch": [2053], "porntu.be": [2053], "www.1deg.org": [60], "www.wosign.com": [18693], "us.dhl.gl": [2053], "why.hdvest.com": [20328], "trafeze.tf": [2053], "*.reputation.com": [14024], "zeltser.com": [19127], "scra.bo": [2053], "glows.biz": [2053], "seacloud.cc": [14676], "l.zangha.com": [2053], "square.com": [15580], "www.sg.cnrs.fr": [6314], "desk.dict.cc": [4536], "garage.maemo.org": [10011], "adminportal.springer.com": [15561], "hppr.co": [2053], "sat.sc": [2053], "go.embooks.com": [2053], "support-fr.upc-cablecom.ch": [21865], "nxthv.com": [2053], "www.btc100.com": [1598], "www.whyopencomputing.fr": [22021], "s.ixiaa.com": [8026], "*.rfecom.com": [14088], "optimisemedia.com": [12272], "images.h.switchadhub.com": [15954], "s.adamlj.com": [2053], "www.optimizegoogle.com": [12274], "www.thebrighttag.com": [2378], "sawch.uk": [2053], "pic-gallery.org": [2053], "www3.sunybroome.edu": [2419], "newswatch33.co": [2053], "hfwd.nl": [2053], "mindful.tools": [2053], "www.login.vutbr.cz": [17814], "braunitos.com": [2053], "www.passwordscon.org": [21079], "www.wikileaks.org": [18590], "gsto.tv": [2053], "wally.pw": [2053], "stnt.eu": [2053], "www.mapzen.com": [10142], "au.org": [986], "puck.nether.net": [11428], "www.bitcoin.org": [1980], "www.techfreedom.org": [16266], "alanashar.es": [2053], "ownews.tv": [2053], "kitzy.co": [2053], "fokko.moe": [2053], "jmg.gg": [2053], "2012.guadec.org": [6514], "ct-99.space": [2053], "mzl.la": [2053], "dagbladet.no": [4183], "wiki.myportal.im": [10966], "l.an0.co.uk": [2053], "pixld.in": [2053], "www.vc-kundenservice.de": [17764], "go.01-d.com": [2053], "passwortwechsel.hslu.ch": [7728], "gtma.co": [2053], "12345679.duoshuo.com": [19969], "docxpress.stanford.edu": [15635], "apply-berkeley-edu.cdn.technolutions.net": [16298], "www.ca.niif.hu": [11118], "j-schmitz.net": [8556], "factoryexpo.net": [5740], "turkmen.ashgabat.usembassy.gov": [21879], "burntout.squat.net": [21549], "ttl.nyc": [2053], "my.gmocloud.us": [6461], "cdn5.thr.com": [16068], "pcrd.co": [2053], "s-im.co": [2053], "justweb.me": [2053], "*.eetgroup.com": [5004], "go.sichling.de": [2053], "print-server.st-edmunds.cam.ac.uk": [17529], "jpem.tk": [2053], "i.cmpnet.com": [2684], "go.zefie.com": [2053], "www.it-cube.net": [7984], "flowgra.de": [2053], "ba.com": [1527], "wkdwn.ch": [2053], "mobypicture.com": [10693], "wbs-law.de": [18605], "www.nedlinux.com": [11323], "img.yuga.ru": [22121], "bleep.com": [2118], "paid.zemanta.com": [19128], "root.cz": [14199], "novosoft.net": [11730], "secure.victoriassecret.com": [17964], "service.usatoday.com": [17310], "www.cardiff.gov.uk": [19644], "*.opensuse.org": [12169], "aweeuro.pe": [2053], "clbs.bio": [2053], "pythonanywhere.com": [13501], "www.gscdn.nl": [20217], "crmndv.us": [2053], "www.prisonlegalnews.org": [13303], "s.haxney.org": [2053], "*.newslook.com": [11522], "mdfl.co": [2053], "utengr.ng": [2053], "earthmil.es": [2053], "i1.iis.net": [7888], "en.bitcoin.it": [2012], "www.staticgen.com": [15680], "horl.uk": [2053], "mcmelectronics.com": [9894], "u.duetg.com": [2053], "foreverinfamous.com": [8238], "campusactivities.usc.edu": [17564], "on.meetvi.be": [2053], "ms11.uk": [2053], "s76.cnzz.com": [3391], "iapros.biz": [2053], "help.caltech.edu": [2815], "sh.vpserver.xyz": [2053], "www.cp.pt": [3813], "recaka.yoga": [2053], "splk.it": [2053], "myrevie.ws": [2053], "firstcentralsb.com": [5982], "k12.li": [2053], "lk.goodline.info": [20269], "hosting.wedos.com": [18197], "www.purechat.com": [13471], "sata-io.org": [14313], "www.flyertown.ca": [6080], "order.nexcess.net": [11549], "*.hungryforchange.tv": [7765], "myheritage.se": [11023], "www.rothaconference.leeds.ac.uk": [17604], "vsipprogram.com": [17805], "cache.addthiscdn.com": [19290], "andyet.com": [1051], "blog.honest.com": [7626], "bmf-steuerrechner.de": [1572], "rsa.com": [13687], "www.betterbills.com.au": [1876], "tribalfusion.com": [17001], "ms-ds.co": [2053], "da.rned.de": [2053], "www.dental.washington.edu": [17577], "r.nuron.be": [2053], "getbootstrap.com": [6729], "i.computerbild.de": [19767], "prdmo.com": [2053], "www.mi-ms.com": [10155], "koellinglab.engineering.osu.edu": [11959], "www.cert.org": [2640], "security.tiki.org": [16715], "www.fictionpress.com": [5887], "cridge.co": [2053], "www.h-node.org": [7172], "framacalc.org": [6214], "lauramercier.ugc.bazaarvoice.com": [928], "questia.com": [13584], "ui.streamate.doublepimp.com": [4812], "thankyou.com": [16435], "www.stgeorge.com.au": [21577], "sdpbne.ws": [2053], "www.youtube.gr": [19016], "oily.eu": [2053], "images.travelnow.com": [16967], "skora.cc": [2053], "ppmkg.com": [2053], "olo.one": [2053], "kulcs-soft.hu": [9184], "bath.greenparty.org.uk": [7052], "mythtv.org": [11038], "admin.net.vodafone.pt": [18109], "cdn-static.liverail.com": [9656], "www.frieslandcampina.com": [2841], "*.axa-winterthur.ch": [419], "d.alismen.com": [2053], "argos-spain.co.uk": [1224], "images.costco-static.com": [3761], "lmaw.co": [2053], "participant.identrust.com": [8082], "onepiece.click": [2053], "icrsng.com": [2053], "songkick.com": [21507], "*.yahoo.com": [18942], "images.dealnews.com": [4339], "api.wienerstadtwerke.at": [18582], "mersenne.org": [10463], "flawd.me": [2053], "trac.webkit.org": [18422], "bt.x-cart.com": [18794], "www.transportstyrelsen.se": [16958], "12c.io": [2053], "autodiscover.preston.gov.uk": [21196], "xiangshui.meituan.com": [10405], "metropr.es": [2053], "*.ipxe.org": [7947], "shutterfly.com": [14999], "on.kwav.es": [2053], "ux.lc": [2053], "sweden.se": [15936], "adwords.google.co.*": [6965], "*.msnbc.msn.com": [9959], "jdweb.info": [2053], "1phads.com": [72], "nm-4.in": [2053], "gmx.biz": [6467], "cdn.livechatinc.com": [9641], "www.alphassl.com": [907], "www.habets.se": [7258], "nill.es": [2053], "defcon.ru": [4382], "blogs.cisco.com": [3221], "redmine.replicant.us": [14014], "es.chaturbate.com": [3093], "riverisland.fr": [14139], "my.luosimao.com": [20726], "tampabay.com": [16191], "www.staticwhich.co.uk": [18539], "r.gyan.biz": [2053], "on.tmos.org": [2053], "post3d.xyz": [2053], "safenet-inc.com": [14464], "sci-hub.io": [14615], "whea.to": [2053], "complice.spla.ulaval.ca": [17515], "www.mequoda.com": [10443], "shrty.us": [2053], "victorops.com": [17963], "customersupport.mcafee.com": [10282], "ballerup.dk": [1674], "app-us2.resrc.it": [13832], "aka-cdn-ns.adtech.de": [678], "company.drweb.com": [4879], "radawo.ca": [2053], "dl.playrapp.com": [2053], "editoraj.us": [2053], "partnerportal.f-secure.com": [5654], "oscardiaz.es": [2053], "xml.yandex.com": [18956], "store.degica.com": [3396], "www.gammagroup.com": [6566], "ideas.hubspot.com": [17732], "hp6.com.br": [2053], "order.thephone.coop": [16614], "s.simonov.photo": [2053], "clkra.in": [2053], "www.enhanceie.com": [5374], "checkpointlearning.thomsonreuters.com": [16650], "orpidia.com": [2053], "flsd.link": [2053], "www.zenmate.com.tr": [19133], "adrianaf.tk": [2053], "proxer.me": [13403], "trk.cetrk.com": [2646], "ofb.net": [11819], "www.da.isy.liu.se": [9238], "www.snyk.io": [21494], "i.mcnary.me": [2053], "j.ustin.co": [2053], "www.mkt51.net": [20809], "events.geogebra.org": [6659], "j.ustin.cc": [2053], "xvtv.ga": [2053], "thepiratebay.immunicity.online": [21217], "img7.qiyipic.com": [20413], "*.wwte1.com": [18232], "forum.lowyat.net": [9801], "www.cryptocoincharts.info": [3941], "b.t-prof.me": [2053], "www.uvo.gov.sk": [15217], "www.uoflphysicians.com": [17664], "staticorigin.wixstatic.com": [18685], "usps.com": [17327], "buo.uniovi.es": [17479], "www.maxon.net": [10263], "go2.nhms.org.uk": [2053], "fs.egov.sachsen.de": [14454], "www.opcw.org": [11852], "west-midlands.police.uk": [18504], "jobs.ch": [20545], "cafeb.im": [2053], "www.adaway.org": [599], "nbcg.me": [2053], "learnerview.ofsted.gov.uk": [20985], "coisas.com": [3475], "talks.stanford.edu": [15635], "elections.dailykos.com": [4193], "www.salon.com": [14491], "export.skat.dk": [15144], "unicentre.uow.edu.au": [17636], "webcon.japias.jp": [8664], "tma.tips": [2053], "www.formilux.org": [6162], "swale-consult.objective.co.uk": [20979], "prdownloads.sourceforge.net": [15423], "*.no-ip.com": [18084], "rdstat.tanx.com": [21661], "5bat.me": [2053], "lnkf.us": [2053], "service.eudoxus.gr": [7039], "opinionmeter.com": [12257], "www.macgamestore.com": [9992], "images.placesonline.com": [12974], "on.renego.net": [2053], "www.blackironbeast.com": [2098], "glmn8.com": [2053], "m.feedback.yandex.com": [18956], "scampus.usc.edu": [17564], "1bt.pw": [2053], "rpps.li": [2053], "bellingcat.com": [1818], "bst1.gismeteo.ru": [6789], "www.jankratochvil.net": [20523], "ppj.st": [2053], "il.srgssr.ch": [21550], "hrweb.cdn-apple.com": [2611], "akamaitest.lg.com": [9231], "billing-lan.net": [19534], "rss.acast.com": [19259], "arue.stanford.edu": [15635], "community.norton.com": [11703], "penw.ws": [2053], "namecheap.com": [11208], "bor.bz": [2053], "oas.autotrader.co.uk": [19458], "iald.me": [2053], "www.lolzparade.com": [4195], "support.avast.com": [1484], "1deg.org": [60], "reviews.argos.ie": [1223], "si.ly": [2053], "www.videolan.org": [17981], "www.ubuntu-de.org": [17373], "www.toyou.co.uk": [21770], "secure.dnuk.com": [4565], "pixel.crosspixel.net": [3883], "spring.io": [15555], "sdata.huxiu.com": [7779], "hwsw.hu": [7252], "accounts.adafruit.com": [589], "*.volkswagenbank.de": [18125], "app.peer5.com": [12726], "www.allmend.ch": [19353], "mycrk.it": [2053], "htl.sc": [2053], "sies.uniovi.es": [17479], "fonts.typotheque.com": [17194], "energycut.info": [2053], "aseguro.me": [2053], "adperium.com": [664], "www.fobos.de": [6089], "www.domenkozar.com": [4759], "internetbanking.bnz.co.nz": [1576], "biowarestore.com": [1957], "query.yahooapis.com": [18943], "skyprep.co": [2053], "static.planetminecraft.com": [12989], "denman.osu.edu": [11959], "ierealtor.info": [2053], "www.piraten-aargau.ch": [21131], "forum.freifunk.net": [6311], "natfol.io": [2053], "img.coxnewsweb.com": [3809], "dream-ing.it": [2053], "*.ulule.com": [17422], "ruichang.meituan.com": [10405], "www.govdex.gov.au": [6991], "www.totalboox.com": [16872], "gatra.id": [2053], "futurefyi.link": [2053], "contentuat.courierpost.co.nz": [3784], "blke.co": [2053], "parchmentmag.uk": [2053], "pemphig.us": [2053], "cdn.yemeksepeti.com": [18980], "webedit.medsci.ox.ac.uk": [17557], "*.gamesports.net": [6542], "www.coolwebscripts.com": [3707], "*.netindex.com": [11403], "i.dhaeye.re": [2053], "id.line.st": [2053], "collector.statowl.com": [15668], "*.zassets.com": [19106], "idefense.verisign.com": [17915], "biz.tigerdirect.com": [16711], "go.mattdean.ca": [2053], "drivertraining.hertsdirect.org": [7473], "www.toshiba-tec.com.cn": [21765], "www.hqpower.eu": [17888], "safebooru.donmai.us": [19947], "pretty52.com": [21197], "trafficholder.com": [16920], "tsp.sh": [2053], "babergh.greenparty.org.uk": [7052], "webtype.com": [18392], "www.msf.org.uk": [9954], "hims.cumbria.gov.uk": [19838], "pearsonvue.com": [12718], "foods.af": [2053], "www.350zevolution.com": [129], "on.flatsha.re": [2053], "sheim.cf": [2053], "luckylib.me": [2053], "v.vikrmn.com": [2053], "alumni.ntnu.no": [11153], "www.newstral.com": [11540], "pli.si": [2053], "boingohotspot.net": [2235], "www.wog.ch": [18753], "bookcase.chromeexperiments.com": [3177], "go.petrhroch.cz": [2053], "www.helpdesk.umd.edu": [17549], "*.redbull.tv": [13905], "viraldu.mp": [2053], "thecon.so": [2053], "www.pbbans.com": [21090], "wusmproserv.wustl.edu": [18290], "h.atdmt.com": [10540], "www.dealnews.com": [4339], "secure.blood.co.uk": [2168], "videolab.cc.kuleuven.be": [8969], "static-dev.ycharts.com": [18917], "proxybay.la": [16493], "mref.nl": [2053], "status.framasoft.org": [6214], "ficora.fi": [5886], "naor.in": [2053], "www.climatecentral.org": [3324], "www.siteparc.fr": [15131], "i.iot.do": [2053], "buckeyemail.osu.edu": [11959], "willisl.im": [2053], "nwj.me": [2053], "ms-smb.com": [2053], "www.clevelandconnected.co.uk": [19727], "adigolf.co": [2053], "serverbase.ch": [21415], "pinall.ru": [21123], "static.pressable.com": [13262], "sh.salas.ovh": [2053], "www.gixen.com": [6815], "www.insidecelebs.com": [8318], "www.nodistribute.com": [20920], "myaccount.creation.co.uk": [3845], "discuss.synapsepay.com": [21634], "hereford.greenparty.org.uk": [7052], "bpr1.tk": [2053], "modulus.io": [10714], "bnymellon.com": [19566], "www.doncaster.engagedoncaster.co.uk": [5363], "dcstr.es": [2053], "web.tuxfamily.net": [21819], "hebiguan.jd.com": [8571], "grjnk.co": [2053], "poprnt.pl": [2053], "s.macaro-ni.jp": [2053], "www.fxphd.com": [6407], "edball.uk": [2053], "campamentos.unizar.es": [17643], "subar.us": [2053], "bbll.us": [2053], "dct.org.uk": [19872], "tanya.bz": [2053], "eseg.me": [2053], "www.accredible.com": [502], "mydf.us": [2053], "on.fuse.tv": [2053], "bl.zoogis.com": [2053], "*.ethn.io": [5488], "mbehr.co": [2053], "sy.meituan.com": [10405], "s.thiele.me": [2053], "www.rememberthemilk.jp": [13993], "i6.walmartimages.com": [18261], "www.virginiamason.org": [18030], "iao.fm": [2053], "a.delays.io": [2053], "modx.pro": [20817], "m.rescue.org": [21295], "www.ringrevenue.com": [14125], "cdn.thejournal.ie": [16490], "kenhin.es": [2053], "forum.bittiraha.fi": [2074], "www.froggynet.com": [20177], "gdoc.it": [2053], "bileri.co": [2053], "blog.malcovery.com": [10086], "*.filmdates.co.uk": [5924], "funderbe.am": [2053], "*.healthcare.gov": [7398], "www.nces.ed.gov": [4988], "ca.town": [2053], "piwik.piraten-schwaben.de": [12933], "hiring.monster.com": [10752], "lamov.pw": [2053], "gjin.cf": [2053], "www.youtube.ie": [19016], "*.wolfram.com": [18697], "*.eager.io": [5104], "anonabox.com": [1085], "*.vogel.de": [18112], "ezt.be": [2053], "frdr.us": [2053], "mdoo.tk": [2053], "countryroad.me": [2053], "ly.yoiks.dk": [2053], "www.likeyed.com": [9512], "ssl.drgnetwork.com": [4155], "an-d.me": [2053], "nscom.jp": [2053], "beas.me": [2053], "chnm.gmu.edu": [6666], "blogs.uw.edu": [17355], "myhds.co": [2053], "wenwa.us": [2053], "*.bookware3000.ca": [19572], "benchmarkjs.com": [19516], "billingproxy.enaza.ru": [5332], "apidocs.serverdensity.com": [14858], "cf6.100r.org": [12], "content.capitalone.com": [2878], "arc.ac": [2053], "mobilitaet2050.vcd.org": [17766], "mlv-cdn.com": [10958], "online.contractsfinder.businesslink.gov.uk": [2518], "mag.ahkah.jp": [2053], "pirata.online": [21709], "www.cityemail.com": [3242], "dgfj.tk": [2053], "forum.porteus.org": [13164], "obs.me": [2053], "desjs.zamimg.com": [19095], "forum.ovh.de": [12378], "s.kzmhr.com": [2053], "sns.mk": [2053], "serve919.org": [2053], "fsras.htwk-leipzig.de": [7736], "secure.sharefile.com": [14908], "dudle.inf.tu-dresden.de": [16126], "coed.com": [3449], "s.pimg.tw": [12890], "ronenbkr.mn": [2053], "thinglinkblog.com": [16625], "petrograd.fbk.info": [5818], "domodedovo.beeline.ru": [1801], "1ter.net": [2053], "ilias.uni-mainz.de": [17611], "senl.in": [2053], "b.vuilam.info": [2053], "rickz.net": [2053], "hackinthebox.org": [7285], "mail.ngs.ru": [20907], "rioexchange.rio2016.com": [21310], "tfg.im": [2053], "tfg.io": [2053], "bdawg.us": [2053], "linuxaudio.org": [9588], "www.assemble.me": [1314], "l3-1.kiva.org": [9077], "www.securityweek.com": [14768], "zenfolio.com": [19142], "c.kum.com": [9186], "proxy.library.georgetown.edu": [6668], "www.dwarffortresswiki.org": [4911], "ian.lt": [2053], "mevins.info": [2053], "bbyna.me": [2053], "cvlnt.com": [2053], "bhane.co": [2053], "*.blogcatalog.com": [2153], "gmrstm.pl": [2053], "www3.smartadserver.com": [15228], "coverartarchive.org": [3797], "prezident.sk": [15217], "hcm-nc.com": [2053], "vip.jd.com": [8571], "cnvr.co": [2053], "mupo.ca": [2053], "cwaa.ki.se": [8878], "ad.ipredictive.com": [8495], "iphones.ru": [20488], "cnvr.cc": [2053], "twitcasting.tv": [17163], "i.jmui.net": [2053], "sample-solid.readme.io": [13841], "rainforestrescue.sky.com": [15170], "judcl.es": [2053], "www.sfa.osu.edu": [11959], "80b.co": [2053], "rimg06.rl0.ru": [14147], "lsh.re": [9536], "slough.gov.uk": [15216], "ct-cds.con-tech.de": [3612], "skiclub.website": [2053], "www.wpveda.com": [18771], "txst.us": [2053], "greenserver.ch": [20280], "url.cawacci.com": [2053], "ch.godaddy.com": [6898], "www.uniformwares.com": [17471], "www.epget.bme.hu": [1570], "french.belgium.usembassy.gov": [21879], "triptag.io": [2053], "trac.ffmpeg.org": [5678], "m.hipercor.es": [7555], "othr.ws": [2053], "cupid.com": [3991], "kdc.re": [2053], "hofer.at": [338], "www.modmypi.com": [10699], "*.bankoftaipei.com.tw": [1691], "www.power.org": [13215], "forum.kimsufi.com": [9045], "www.myinteriordecorator.com": [10954], "mczar.me": [2053], "zycie-wsrod-kamer.panoptykon.org": [12570], "4chan.org": [185], "www.getdropbox.com": [4864], "debian.org": [4353], "vpn.ual.es": [17361], "estates4.warwickdc.gov.uk": [21979], "ideat.io": [2053], "photos.travelblog.org": [16965], "dev.sourcefabric.org": [15429], "kontoapi.de": [9132], "www.devolverdigital.com": [4508], "portal.bobcares.com": [2226], "www.zenmate.pl": [19133], "sndart.us": [2053], "guarantorusloans.co.uk": [7126], "www.zenmate.pk": [19133], "*.sitemasonmail.com": [15128], "style.codeforamerica.org": [3419], "bnch.co": [2053], "yongzhou.meituan.com": [10405], "sales.talktalk.co.uk": [16184], "gdata.it": [6410], "press.sn": [2053], "www.bike24.de": [1924], "skz.me": [2053], "globr.de": [2053], "rat.li": [2053], "www.speakyoursilence.org": [15483], "emsonline.eastriding.gov.uk": [5115], "kun.st": [2053], "888.gtimg.com": [7121], "bernardportal.axosoft.com": [1517], "www.immunityinc.com": [8156], "pwp.im": [2053], "get.bcs2005.de": [2053], "*.mediastorehouse.com": [10312], "data.aad.gov.au": [1419], "*.forexct.com": [6152], "ana.ms": [2053], "www.doclerholding.com": [4707], "morebv.info": [2053], "correoweb.usc.es": [17711], "lego.com": [9222], "www.growerscup.coffee": [20285], "www.qrz.com": [13543], "austria.usembassy.gov": [21879], "www.zammad.com": [19097], "iraaa.org": [7956], "*.secure-payment-processing.com": [14727], "certification.unity.com": [17506], "www.bamsoftware.com": [1679], "www.creditdisputeprogram.com": [3859], "5bits.us": [2053], "www22.glam.com": [6819], "www.webgility.com": [18415], "*.avo.gov.au": [1441], "pathologyservices.wustl.edu": [18290], "df.meituan.com": [10405], "shop.oracle.com": [12284], "www.geog.illinois.edu": [17544], "*.cloudhexa.com": [3365], "action.dccc.org": [4088], "pooi.tk": [3597], "stq.bz": [2053], "xplr.com": [18889], "eere.energy.gov": [5355], "eqmi.us": [2053], "www.weoinvoice.com": [18498], "brno.idnes.cz": [20425], "bit.lnhrt.com": [2053], "static.hupso.com": [7770], "www.gtipphotos.state.gov": [17345], "punjabadds.hdfcbank.com": [7389], "israel.usembassy.gov": [21879], "onvo.co": [2053], "go.cucc.io": [2053], "vidling.com": [18005], "tallshop.us": [2053], "www.buzzhosting.org": [2538], "weatherapi.market.xiaomi.com": [18873], "my.boldchat.com": [2240], "hub.jhu.edu": [16562], "www.mailgun.net": [10051], "pdesp.at": [2053], "www.vivaldi.net": [18090], "reyeslaw.net": [2053], "clicktrack.cc": [2053], "www.crowdjustice.co.uk": [3892], "yahooaviate.tumblr.com": [17100], "pantherportal.cdnetworks.com": [2618], "bejr.co": [2053], "iraiser.eu": [8501], "zotac.com": [19072], "bbeings.co": [2053], "olat.skolaonline.cz": [21471], "viz.polleverywhere.com": [13105], "btvn.us": [2053], "spreadshirt.ie": [15552], "ccc.berkeley.edu": [17526], "*.ordnancesurvey.co.uk": [12300], "prod.idrix.fr": [7855], "www.andywalsh.com": [1050], "secure.momentusmedia.com": [10725], "signup.active24.es": [19278], "spreadshirt.it": [15552], "cscsci.com": [2053], "sh.idaimt.jp": [2053], "brtedg.co": [2053], "lglintl.net": [2053], "2tim2v15.uk": [2053], "alade3.audio": [2053], "associatie.kuleuven.be": [8969], "cointrader.net": [3474], "illert.biz": [2053], "www.alitrip.com": [858], "www.voicestar.com": [10148], "www.mtswelding.co.uk": [20847], "express.co.uk": [4187], "radioshack.com": [13749], "www.oafa.cuhk.edu.hk": [2747], "cinelease.com": [7511], "segpay.com": [14800], "uniu.be": [2053], "atnetpl.us": [2053], "pbc.re": [2053], "schulte.org": [14610], "geeq.la": [2053], "misa.si": [2053], "openx.com": [12193, 21023], "s.xixico.com": [2053], "ripe67.ripe.net": [14128], "nuug.no": [11169], "it.rdg.ac": [2053], "sapseod.mindtouch.us": [10597], "feitopra.vc": [2053], "marketplace.leadpages.net": [9351], "stats.economist.com": [5161], "nichd.nih.gov": [11241], "blekko.com": [2119], "link.isher.club": [2053], "qualaris.com": [13557], "opentrackers.org": [12248], "s.wldcdn.net": [18208], "slnts.co": [2053], "foobar2000.org": [20141], "smcd.me": [2053], "zeo.ist": [2053], "logs.spatialbuzz.com": [15479], "blog.etnasoft.com": [5493], "www.baikal-daily.ru": [19478], "y.fromparis.xyz": [2053], "entrust.ssllabs.com": [14416], "www.ems-ph.org": [5324], "gotin.st": [2053], "kicknews.co.uk": [9030], "l.bekazali.com": [2053], "www.finnchristiansen.de": [5965], "br.codecombat.com": [3424], "febc.online": [2053], "transmarine.org": [16935], "webappstatic.buzzfeed.com": [2531], "s.zst.com.br": [19233], "urb.tf": [2053], "*.wsjpro.com": [11512], "taobao.com": [16206], "ita.hsr.ch": [17522], "store.virginmedia.com": [18028], "kclark.co": [2053], "www.polleninfo.org": [13108], "wepave.it": [2053], "analytics.1and1.com": [61], "www.visn2.va.gov": [17297], "*.gnome-help.org": [21007], "www.fark.com": [5776], "hotukdeals.com": [7693], "iris.vc": [2053], "api.stevesie.com": [15727], "*.tweetreach.com": [17147], "ekmpowershop.com": [5232], "afmkt.us": [2053], "helpum.org": [2053], "cherwell-consult.objective.co.uk": [20979], "vive.ml": [2053], "www.mythicalcreatureslist.com": [11040], "careers.jazz.co": [8684], "ignt.biz": [2053], "loginpilot.silverpop.com": [15047], "domaintank.hu": [4756], "www.continuum.io": [19781], "www.andersonvalleypost.com": [5088], "be.redhat.com": [13909], "sportisimo.de": [14396], "mmnd.co": [2053], "www.loginza.ru": [9722], "recuer2.me": [2053], "mobile.learnerview.ofsted.gov.uk": [20985], "*.chessbase.com": [3127], "halo.xbox.com": [18850], "oscweb.biz": [2053], "fang.taobao.com": [16206], "weishanghuoyuan.duoshuo.com": [19969], "blog.peopleschoice.com": [18730], "schwab.com": [14611], "ny.regjeringen.no": [13972], "calmth.zp.ua": [2053], "www.techempower.com": [16264], "media.yoox.biz": [18999], "www.bircko.com": [1965], "creare.co.uk": [3839], "skat.dk": [15144], "www.innova.uned.es": [17446], "brvn.net": [2053], "www.eng.umd.edu": [17549], "www.up.com": [21863], "trac.aircrack-ng.org": [19330], "i1.gmx.com": [6467], "www.imo.im": [8157], "on.jconline.com": [2053], "garygoddard.com": [6929], "forum.zentyal.org": [19149], "familie.rh.aok.de": [357], "ucf.me": [2053], "ektgn.eu": [2053], "jipiao.alitrip.com": [858], "bekb.ch": [20574], "ssl.intevation.de": [8445], "share.pingdom.com": [12902], "www.gwrymca.org": [7161], "dose.la": [2053], "osws.co": [2053], "my.edinburgh.gov.uk": [5185], "spcc.starfishsolutions.com": [21565], "wyenet.co.uk": [18787], "msb.sbi.co.in": [14320], "enrol.norfolk.gov.uk": [20923], "macpaper.com": [9870], "help.tripadvisor.co.uk": [21794], "www.laproxgroup.com": [20638], "lijiang.jd.com": [8571], "photos-a.ak.fbcdn.net": [5816], "id.itradecimb.com.sg": [2664], "zu.wa.de": [2053], "www.adaptivecomputing.com": [597], "itsri.ch": [2053], "md-coord.web.cern.ch": [2632], "auth.getsatisfaction.com": [6738], "www.cihr.eu": [2660], "rc.fas.harvard.edu": [7351], "www.rackspace.com": [13735, 13740], "www.post-gazette.com": [13175], "condor.de": [3626], "www.tmo.hsbc.co.uk": [20375], "cf0.fr": [2053], "extranet.fkl.fi": [5946], "ukraine.usembassy.gov": [21879], "abgeek.co.uk": [2053], "commercecentral.lexity.com": [9439], "rebeltorrent.net": [13874], "cdn.emilstahl.dk": [5310], "gemeentenoordenveld.nl": [11324], "office.com": [11942], "hcsm.io": [2053], "www.studium.uni-mainz.de": [17611], "*.inwx.es": [8381], "lifeforb.es": [2053], "www.reuters.tv": [21302], "coolhead.tech": [2053], "cdncss-socialcomediallc.netdna-ssl.com": [17050], "partner.avm.de": [1493], "luxepg.co": [2053], "odmenazadobiti.cz": [16332], "citmedialaw.org": [4120], "t.miyacozi.com": [2053], "s.naokie.net": [2053], "knew.by": [2053], "link.carvers.co": [2053], "filmq.tk": [2053], "cloud.ihme.washington.edu": [17576], "www.rdash.nhs.uk": [11102], "photo.cypouz.com": [4061], "blogs.hopkins-interactive.com": [7638], "tools2.cisco.com": [3221], "pmara.cz": [2053], "agency.brassring.com": [19586], "wie.gr": [2053], "store.jfklibrary.org": [8579], "images.google.*": [6968], "su.bdimg.com": [1770], "lists.ocaml.org": [11811], "webfonts.fonts.com": [6110], "hegang.meituan.com": [10405], "libreplanet.org": [9473], "thoughtbot.com": [16656], "tri.pet": [2053], "noyabrsk.beeline.ru": [1801], "jinhua.1688.com": [44], "d2.nal.usda.gov": [17495], "console.unrulymedia.com": [21861], "www.map.pol.ulaval.ca": [17515], "titania.com": [16773], "in.leonflam.com": [2053], "thecthulhu.com": [16600], "www.qtcloudservices.com": [13546], "sgcdn.startech.com": [15647], "koral.la": [2053], "windowssecrets.com": [18647], "baixar.su": [2053], "secure-os.org": [14724], "www.sehirfirsati.com": [14806], "dreamhost.com": [4844], "www.mint.com": [10621], "z.opensakai.org": [2053], "sediarreda.com": [21401], "www.webmail.juno.com": [8835], "voyagegroup.com": [18154], "laoca.co": [2053], "wmjobs.co.uk": [18210], "*.optimizely.com": [12275], "edri.org": [4997], "i.buzz.io": [2053], "whf.cm": [2053], "s54.cnzz.com": [3391], "www1.sunybroome.edu": [2419], "canva.link": [2053], "www.songkick.com": [21507], "tandl.me": [2053], "my.nyi.net": [11182], "mvino.co": [2053], "www1.cnsi.ucla.edu": [17527], "png.dm": [2053], "www.100fans.de": [13], "s90.cnzz.com": [3391], "pirateparty.org.au": [12929], "op22.co": [2053], "latex-project.org": [9270], "*.hostelworld.com": [18339], "ems.staffordshire.gov.uk": [15622], "bitbucket.org": [2005], "seda.la": [2053], "ja1.me": [2053], "ireeco.com": [8503], "go.mintvine.com": [2053], "computerandvideogames.com": [6398], "shrp.ws": [2053], "orange.co.il": [12290], "*.myheritage.com.br": [11023], "www.linkomanija.net": [9539], "mikemcm.xyz": [2053], "scny.co": [2053], "cyanogenmod.org": [4026], "glenscott.net": [6828], "wawr.us": [2053], "abs.twimg.com": [17153], "partner.wosign.com": [18693], "*.uwinnipeg.ca": [17357], "droidpr.es": [2053], "transportation.amazon.es": [19370], "twf.wales.gov.uk": [18252], "neustar.biz": [11472], "static.maemo.org": [10011], "ylw.be": [2053], "a.ln.com.ar": [2053], "www.star-pool.com": [15642], "kerane.ws": [2053], "flsenate.gov": [20135], "peermonitor.thomsonreuters.com": [16650], "udk.com": [17223], "www.securesuite.co.uk": [13686], "media.nbzh.cf": [2053], "shop.jolla.com": [8771], "www.gearhog.com": [6605], "e-banking.hangseng.com": [7326], "mbco.vtb24.ru": [21961], "community.obi.de": [20977], "edu.cookingschools.com": [3703], "ubr.to": [2053], "www.atechmedia.com": [408], "x.c42.in": [2053], "engage.redhat.com": [13909], "api.t411.ch": [16036], "staffaap.georgetown.edu": [6668], "wholefoodsmarket.com": [18562], "switch.co": [15953], "g.standby.hk": [2053], "lists.ciphershed.org": [3210], "mathjobs.org": [10234], "www.hengxinli.com": [20334], "goly.es": [2053], "xarxadestudis.squat.net": [21549], "itunes.osu.edu": [11959], "www.haarlemmermeer.nl": [11324], "hnnng.de": [2053], "www.facepunch.com": [5737], "*.orkut.com": [12313], "on.entrepgo.com": [2053], "nareal.me": [2053], "tiantai.meituan.com": [10405], "jrs.link": [2053], "pda.baidu.com": [1661], "dap.digitalgov.gov": [4572], "www.dafdirect.org": [4179], "www.sendpepper.com": [14823], "yahoomail.tumblr.com": [17100], "pages.kiva.org": [9077], "jobs.derbyshire.gov.uk": [19895], "weiter.tk": [2053], "indymedia.org": [8234], "www.isy.liu.se": [9238], "ppche.ro": [2053], "imbo.vgtv.no": [17776], "ldigit.al": [2053], "cap.lv": [2053], "mm4a.org": [2053], "mykplan.com": [309], "prpre.us": [2053], "openaccess.bournemouth.gov.uk": [2304], "www.finam.ru": [20117], "www.o2.co.uk": [16332], "www.ribblevalley.gov.uk": [14099], "awards.indexoncensorship.org": [8208], "www.schiphol.nl": [14594], "www.themarshallproject.org": [16563], "caniusepython3.com": [2849], "310.fm": [2053], "personforce.com": [12798], "b2b.amoena.us": [1017], "s2.jrnl.ie": [20554], "l.cafe.ac": [2053], "109.201.146.247": [18911], "ddnnews.com": [2053], "tcc.io": [2053], "cds1.yospace.com": [19005], "tehconnection.eu": [16318], "juanma.in": [2053], "support.oracle.com": [12284], "malwr.rocks": [2053], "www.icez.net": [8062], "lrnit.lv": [2053], "www.mauivaaircruise.com": [10249], "travelurl.net": [2053], "s303.co": [2053], "www.kr36.co": [9153], "hots69.com": [2053], "eyct.ch": [2053], "ikeepincloud.com": [7897], "www.dutchbulbs.co.uk": [4909], "www.mandrillapp.com": [10109], "robinyu.uk": [2053], "wwwbeta2.capitalone.com": [2878], "*.quoracdn.net": [13607], "cazare.umftgm.ro": [21848], "login.umd.edu": [17549], "*.emsisoft.com": [5325], "www.majesticseo.com": [10064], "www.tampermonkey.net": [16193], "awsal.am": [2053], "lfg.li": [2053], "trvw.in": [2053], "lgwk.us": [2053], "www2.citibank.com": [3230], "reports.ofsted.gov.uk": [20985], "www.fedoramagazine.org": [5844], "www.brchan.org": [1582], "bill.ccbill.com": [2592], "*.carleton.edu": [2912], "filesmonster.com": [20111], "www.zeronet.io": [19158], "front-admin.voyage-prive.com": [18152], "hbr.tc": [2053], "bcp.hdvlink.com": [20328], "seh.eu": [2053], "pharmgradprograms.usc.edu": [17564], "releases.flowplayer.org": [6064], "securelogin.org": [14749], "findit.state.gov": [17345], "meeting.zoho.com": [19202], "piwik.mutantbrains.com": [10915], "i3.sinaimg.cn": [15091], "www.brandensittich.de": [2335], "www.pathdefender.com": [12663], "uncg.worldcat.org": [18748], "blog.imgix.com": [20438], "p.simg.uol.com.br": [17276], "b.hiroshi.today": [2053], "www.mysql.de": [10970], "c.msn.com": [9961], "patchofland.com": [12658], "www.secure.avahost.net": [1475], "ltxt.gq": [2053], "watchthis.nyc": [2053], "glen-l.com": [20250], "solydxk.com": [21505], "jfs.io": [2053], "i5.walmartimages.com": [18261], "ln.dogjoys.com": [2053], "supportforums.blackberry.com": [2102], "spcs.stanford.edu": [15635], "www.movableink.com": [10816], "stonet.co": [2053], "great-yarmouth.gov.uk": [20279], "docstoc.com": [4710], "hungrygeek.holidayextras.co.uk": [7595], "s.reacter.jp": [2053], "rlp.co": [2053], "www.cryptrader.com": [3911], "www.office365.com": [11944], "royale-ssl.spongecell.com": [21538], "www.msnbc.com": [9962], "on.pbb.co": [2053], "livechat.ae": [2053], "cdnstage.lynda.com": [9847], "olympic.org": [20988], "benchmarkdevelopment.mitre.org": [10649], "www.nibusinessinfo.co.uk": [20908], "ziplist.com": [19192], "www.myvolunteerpage.com": [18129], "shanv.me": [2053], "nooelec.com": [11664], "ll-us-i5.wal.co": [18249], "st.panci.org": [2053], "commsr.us": [2053], "cepr.tk": [2053], "*.tenderapp.com": [5032], "blizz.ly": [2053], "cryptovpn.me": [19831], "chmx.co": [2053], "download.teamviewer.com": [16259], "art.stanford.edu": [15635], "bath.ac.uk": [17586], "search.vuze.com": [18175], "acclaim.rocks": [2053], "laugheat.co": [2053], "dnsleaktest.com": [4143], "www.eurodiet.co.uk": [5516], "thepiratebay.kr.com": [21709], "www.mahoneshomedecor.com": [10033], "nlim.it": [2053], "www.planetrulers.com": [21144], "sp-nls.com": [2053], "*.iinet.net.au": [8107], "www.rooof.com": [14197], "www.creativelittlereaders.com": [3854], "btyl.sh": [2053], "www.xmission.com": [18831], "gpgauth.org": [7003], "licensing.plymouth.gov.uk": [21153], "xeodguy.me": [2053], "cecy.co": [2053], "www.le-vpn.com": [9344], "voltaicsystems.com": [18128], "alliance.cisecurity.org": [2673], "*.beatport.com": [1789], "bristol.gov.uk": [19592], "bh.contextweb.com": [3682], "toddhetrick.me": [2053], "www.kattare.com": [8971], "www.ecb.eu": [5526], "www.arsq.asso.ulaval.ca": [17515], "x.myles.io": [2053], "www.hdh.ucsd.edu": [17216], "grouplogic.com": [7095], "www.dignityindying.org.uk": [4598], "prchwl.re": [2053], "sqnths.co": [2053], "usionline.unileoben.ac.at": [17463], "www.comic-rocket.com": [3531], "s.haleagar.com": [2053], "stanfordmedicine.stanford.edu": [15635], "gbe.me": [2053], "l.prg.com": [2053], "jcpr.us": [2053], "www.waitrose.com": [18245], "yili.meituan.com": [10405], "pao-pao.net": [12581], "nationalgeographic.com": [11269], "wdr.bz": [2053], "www.parisvega.com": [21073], "retb.co": [2053], "pianol.es": [2053], "atagar.com": [1344], "flashme.co": [2053], "pulispace.444.hu": [172], "math.williams.edu": [18616], "support.alexa.com": [835], "nulab.co": [2053], "exb.us": [2053], "www.rockhursthawks.com": [14172], "cdn.xs4all.nl": [18835], "pmcache.co": [2053], "smr.tl": [2053], "everything4bet.net": [5563], "my.maximintegrated.com": [10261], "ciphershed.org": [3210], "archive.kororaproject.org": [9140], "rtsbank.dengisend.ru": [4440], "stanfordwho.stanford.edu": [15635], "alts.trade": [341], "manchester-consult.objective.co.uk": [20979], "yoop.cc": [2053], "youtube.co.kr": [19016], "scout.events": [2053], "cait.wustl.edu": [18290], "megapiranha.me": [2053], "routingpacketsisnotacrime.uk": [21330], "www.projectslice.com": [15200], "pmf.me": [2053], "altvz.co": [2053], "homementors.com": [7617], "roccat.org": [14162], "pullingladies.com": [12469], "bugs.php.net": [12453], "vrsk.co": [2053], "www.blog.kaspersky.com": [8958], "l.tiwi.be": [2053], "canvasholidays.co.uk": [18790], "info.drweb.com": [4879], "www.floatinghospital.org": [6050], "www.railsconf.com": [13762], "mochahost.com": [10694], "geektavern.fr": [2053], "app.ly": [2053], "*.firstcentralsb.com": [5982], "www.clic-study.org": [2680], "*.fatcow.com": [5806], "rotator.trafficstars.com": [21776], "www.freebase.com": [6275], "4trade.it": [2053], "widgetbox.com": [18580], "siorc.net": [2053], "cbsys.me": [2053], "wkndcllc.tv": [2053], "n2c06k.xyz": [2053], "a1webstats.com": [256], "behr.com": [1811], "mh-pr.eu": [2053], "lsf.uni-due.de": [17450], "thsth.at": [2053], "awrd.me": [2053], "kin.gl": [2053], "startech.com": [15647], "iamk.biz": [2053], "*.export.gov": [17305], "fishy.click": [2053], "www.pentest-tools.com": [21104], "u.ocimblog.com": [2053], "login.2345.com": [87], "4lex.me": [2053], "*.fool.com": [10801], "prima.tv4play.se": [16137], "buffalostate.edu": [2458], "webskjema.sparebank1.no": [21524], "morningafter.gawker.com": [6593], "www.soundonsound.com": [15408], "babymiam.com": [2053], "i.chlf.re": [2053], "cutsforth.link": [2053], "nemid.dtu.dk": [16286], "ipfs.com": [7938], "pescor.eu": [2053], "login.effectivemeasure.com": [5207], "www.linuxmusicians.com": [9574], "lmont.co": [2053], "www.issteamdown.com": [20502], "docs.maxcdn.com": [10256], "www.ticketdriver.com": [16684], "forum.bitcoin.pl": [2017], "www.oauth.net": [11806], "rehatrutnov.eu": [2053], "www.cannockchasedc.gov.uk": [19639], "pro.stubhub.de": [15789], "24mov.es": [2053], "mybenefits.aol.com": [361], "news.ycombinator.com": [7273], "www.website.ws": [18383], "winendine.co": [2053], "ri.gy": [2053], "www.kommaer.dk": [9116], "hee.ro": [2053], "thl.osu.edu": [11959], "sentineldiscussion.safenet-inc.com": [14464], "auth.demandbase.com": [4420], "stylat.hm": [2053], "svgnb.com": [2053], "dfvr.co": [2053], "gktw.org": [6808], "account.iweb.com": [8020], "a.chathome.org": [2053], "www.cs.drexel.edu": [4854], "www.ikk-gesundplus.de": [7895], "domains.live.com": [9644], "tus.dj": [2053], "dsinein.ch": [2053], "www.hidekibin.hidekisaito.com": [7533], "www.engr.uw.edu": [17355], "meego.com": [10374], "forum.geizhals.de": [6632], "icp-c.com": [2053], "www.infinet.com.au": [8242], "beauteprivee.fr": [1791], "*.vendetta-online.com": [17896], "b.romy.io": [2053], "navo.cat": [2053], "defsounds.com": [4392], "my.rethink.org": [21299], "konami.com": [9125], "qual.io": [2053], "static.php.net": [12453], "store.discovery.com": [4640], "dirs.cis.rit.edu": [13667], "rdgate01.newark.ohio-state.edu": [11960], "cdn.ch2.xfinity.com": [22082], "bdgr.co": [2053], "wizbangblog.com": [18688], "cache-www.linksys.com": [9544], "noppai.com": [2053], "bb2b.io": [2053], "tiltbrush.com": [16720], "imgrush.com": [8147], "crea010.com": [2053], "info.thoughtworks.com": [16655], "pde.cc": [12793], "www.barnebys.co.uk": [1723], "www.youtube.com.lv": [19016], "www.paloaltonetworks.com": [12553], "*.bigdinosaur.org": [1914], "fast.fonts.net": [6111], "ekz.link": [2053], "ksl.fm": [2053], "www.youtube.com.lb": [19016], "*.actionkit.com": [531], "support.skype.com": [15184], "www.first.org": [5689], "p.raasnet.com": [13890], "mitderzeitspielen.sbb.ch": [15946], "*.fool.co.uk": [10801], "*.airbnb.es": [788], "glo.st": [2053], "nlleisu.re": [2053], "saucelabs.com": [14542], "emailsrvr.com": [5295], "childrens.mycareinbirmingham.org.uk": [10991], "webmail.caltech.edu": [2815], "blwck.de": [2053], "research.hks.harvard.edu": [7351], "www.springer-gabler.de": [15559], "formscentral.acrobat.com": [520], "gus.tw": [2053], "zed.live": [2053], "documentation.cpanel.net": [2710], "33promo.ru": [2053], "adoptionlink.co.uk": [19297], "downloads.mariadb.org": [10152], "brendond.es": [2053], "nmbl.tv": [2053], "japani.ac": [2053], "www.ico.ee": [16190], "new.1lotstp.com": [54], "dlgc.co": [2053], "s2.thejournal.ie": [16490], "apps.lincolnshire.gov.uk": [9524], "www.digicert.com": [4556], "privacyrights.org": [13320], "ctn.mywot.com": [10987], "steamcommunity.com": [15705], "oak.ly": [2053], "www.nc.me": [11067], "adminer9.vas-hosting.cz": [21896], "nick.30boxes.com": [122], "ugc.nyc": [2053], "htmlarro.ws": [2053], "fool.co.uk": [10801], "myfden.im": [2053], "me.truesdell.ca": [2053], "andover.edu": [12835], "go2apa.ga": [2053], "eepl.tc": [2053], "www.sciencedaily.com": [14619], "*.ucsb.edu": [17528], "perimetertrail.stanford.edu": [15635], "www.xkcd.com": [22085], "sbls.info": [2053], "www.discourse.org": [4631], "nkta.cf": [2053], "www.cquotient.com": [19810], "vss.la": [2053], "*.infinity-tracking.net": [8244], "www.paralympic.org": [21070], "mitmproxy.org": [10647], "stijl.kuleuven.be": [8969], "lp.leadpages.net": [9351], "kwne.ws": [2053], "www.gnome-help.org": [21006], "loot.cr": [2053], "outlook.com": [12358], "leonz.me": [2053], "mailarchive.ietf.org": [7868], "footlocker.ca": [6127], "*.loopia.se": [9769], "dar.li": [2053], "assets.gusto.com": [7156], "hailstormproducts.com": [7296], "www.evdrive.com": [5083], "asmp.org": [984], "lpn.so": [2053], "www.nativo.net": [11281], "cubecraft.net": [19835], "btwholesale.com": [1619], "www.defensetravel.dod.mil": [17306], "www.elsevierhealth.com.au": [5288], "dpth.info": [2053], "www.quitter.se": [13603], "webapp.halton.gov.uk": [20308], "help.instantatlas.com": [20468], "maps.telford.gov.uk": [21675], "cache.lifehacker.com": [9492], "frmwk.com": [2053], "researchfestival.nih.gov": [11241], "applyweb.com": [1169], "evan.nz": [2053], "s.dav.is": [2053], "camrn.me": [2053], "tokyo-tosho.net": [16809], "hostinglabs.pe": [7674], "ql.e-c.al": [2053], "www.digitalcourage.de": [4586], "topte.es": [2053], "morals.ias.edu": [7815], "drmfree.calibre-ebook.com": [2799], "r.i.ua": [7800], "cf.komo.com": [8893], "www.intern.arch.ethz.ch": [5074], "ding.1688.com": [44], "nczonline.net": [20883], "servers.opennicproject.org": [21019], "go.turigo.pl": [2053], "my.phone.coop": [12847], "allyours.virginmedia.com": [18028], "estpn.gy": [2053], "www.stubhub.co.uk": [15789], "points.yahoo.co.jp": [18944], "www.identrustssl.com": [8083], "sokkuri.link": [2053], "elstatic.weborama.fr": [18434], "dongtai.meituan.com": [10405], "s.spicyapps.com": [2053], "getru.sh": [2053], "sts3.wsj.net": [22059], "l.zeta.net": [2053], "msvos.be": [2053], "www.silabs.com": [15033], "www.crc.id.au": [2713], "a2-content.vouchercloud.com": [21951], "es.biotrimlabs.com": [1963], "*.rejseplanen.dk": [13983], "*.hetzner.de": [7515], "ctn.calastone.com": [19628], "education-stage.oracle.com": [12284], "www.thomsoninnovation.com": [21727], "samples.libav.org": [9450], "s3.chuug.com": [3190], "go.tapdecor.com": [2053], "2avesag.as": [2053], "mbs.microsoft.com": [10543], "xpra.org": [18890], "snc.tv": [2053], "www.gacollege411.org": [6421], "wp.0x539.se": [8], "workwithcolor.com": [18740], "claimconnect.net": [4993], "www.zalando.it": [19094], "www.cmswire.com": [2686], "unknowncheats.me": [17644], "reif.me": [2053], "afisha.mail.ru": [10040], "*.rutgers.edu": [14285], "*.www.freelancer.co.uk": [6296], "bovpg.net": [2305], "dclot.to": [2053], "go.pandora.net": [2053], "usersnap.com": [17731], "mannd.us": [2053], "clients.comcate.com": [3526], "www.odoo.com": [11926], "www.tiaa-cref.org": [16071], "dmesg.gr": [4685], "media.regjeringen.no": [13972], "rivals.n.rivals.com": [21313], "cubplat.bidsystem.com": [3981], "redirect.1and1.co.uk": [63], "www.toorcon.net": [16828], "juniperresearch.com": [8833], "swgoh.org": [2053], "qwi.lt": [2053], "skpm.tk": [2053], "m-pindemo.certivox.org": [3027], "www.guttmacher.org": [7159], "subscriber.pagesuite-professional.co.uk": [21065], "sglivenow.com": [2053], "www.art.com": [1255], "now.eloqua.com": [5281, 5282], "u.zoltis.com": [2053], "w3b.link": [2053], "lth.se": [9258], "brnfam.us": [2053], "delonline.us": [2053], "www.faq.mail.com": [10039], "orioninc.com": [12312], "eqwd.co": [2053], "enterw.in": [2053], "bitlendingclub.com": [1984], "i2.lbp.me": [20644], "sports.epros.co": [2053], "support.saba.com": [21353], "acessa.com": [510], "www.digitalcounterservices.hsbc.com.hk": [20380], "whizzy.in": [2053], "dlxa.co": [2053], "samg.bz": [2053], "factiva.com": [11513], "www.tinymce.com": [21741], "croydon.gov.uk": [19824], "unbound.nlnetlabs.nl": [11130], "app.syspectr.com": [16011], "kapiton.se": [8941], "stci.uk": [2053], "www.xperiencedays.com": [18887], "useful.media": [2053], "www.nccgroupdomainservices.com": [11070], "www.technoratimedia.com": [16300], "alleg.me": [2053], "edapps.co": [2053], "socinova.co": [2053], "test10.usc.edu": [17564], "australia.isidewith.com": [20414], "bugs.xmms2.org": [18823], "z.chango.com": [3056], "store.theonion.com": [12060], "go.andlauer.de": [2053], "sbiapp.sbi.co.in": [14320], "paf-spsu.web.cern.ch": [2632], "sosmap.co": [2053], "wiki.mumble.info": [10890], "mnbiz.cc": [2053], "omdf.co": [2053], "tigerair.com.au": [16710], "www.petermolnar.eu": [12804], "clippings.com": [19732], "www.netgate.com": [11424], "jdi.na.ro.vutbr.cz": [17814], "reviews.pe": [2053], "sh.osmdroid.net": [2053], "ssl.cdn-redfin.com": [2612], "mktmgl.co": [2053], "www.muut.com": [10923], "tink.la": [2053], "www.cyph.com": [4056], "www.soylentnews.org": [15449], "thick.ly": [2053], "massagemag.com": [10213], "mrfibre.nz": [2053], "iggl.co": [2053], "slgstatus.bridgend.gov.uk": [19591], "go.vegeby.nu": [2053], "www.opensc-project.org": [12165], "broadcom.com": [2409], "m.kuruc.info": [9198], "www.paydirekt.de": [12684], "supportapj.dell.com": [4413], "posterous.com": [13198], "www.eforms.gov.ie": [20015], "www.voxmedia.com": [18147, 21953], "mouseflow.de": [10812], "minimed.wustl.edu": [18290], "starr.es": [2053], "sig.ias.edu": [7815], "z.barik.net": [2053], "www.jamtrackcentral.com": [8646], "hype.fyi": [2053], "www.thepiratebay.casa": [21709], "cda.nl": [11124], "www.macromedia.com": [9999], "8ch.net": [234], "wtfuzz.com": [18228], "securepurchaseserver.com": [14754], "bsan.eu": [2053], "ph.redhat.com": [13909], "sportbookings.ipswich.gov.uk": [8499], "www.acunetix.com": [546], "evolvur.biz": [2053], "wvw.nehow.com": [2053], "www.protectwise.com": [13393], "fass.se": [5785], "edut.to": [2053], "emia.us": [2053], "hadrons.org": [7292], "freepracticetests.org": [6274], "boerse.migrosbank.ch": [10563], "rtwt.at": [2053], "mtafwheels.com": [2053], "jbr.co": [2053], "service.govdelivery.com": [6990], "openskillz.com": [21006, 21007], "assets.sharethrough.com": [14925], "cryptomator.org": [3947], "forums.shopsite.com": [14963], "www.cbox.ws": [19657], "s.bakashimoe.me": [2053], "evohumo.com": [2053], "www.memphiscourtside.com": [10426], "section508.gov": [21397], "1.baidu.com": [1661], "matalan.co.uk": [10226], "giganews.com": [6770], "arabic.algeria.usembassy.gov": [21879], "bcks.us": [2053], "aliw.me": [2053], "i5.lbp.me": [20644], "www.timeinc.net": [16731], "renew.acs.org": [966], "sanoma.com": [14526], "to.merific.com": [2053], "notebook-kisker.hu": [9308], "zh.3.boardgamearena.com": [2219], "wuwei.meituan.com": [10405], "unspla.sh": [2053], "pwsafe.org": [12643], "blog.osysadmin.net": [11891], "deltastix.com": [2053], "ttfy.co": [2053], "mondher.info": [2053], "runoaks.com": [2053], "tagp.co": [2053], "unlimited401k.com": [17646], "static.myitworks.com": [8003], "arc.ht": [2053], "*.clbr.tv": [3316], "www.regmedia.co.uk": [13973], "hichatt.ml": [2053], "cc.meituan.com": [10405], "www.icstars.com": [8071], "thislstruth.com": [2053], "scoup.co": [2053], "in.turklr.com": [2053], "pnth.rs": [2053], "www.bitcoin.co.th": [2014], "golfrev.com": [6948], "svtsite.tk": [2053], "usmint.gov": [17340], "locl.es": [2053], "auto.bi": [2053], "www.astrakhan.ru": [19444], "opentransfer.com": [12249], "ecsi.com": [4980], "nwp.link": [2053], "gymglish.*": [7167, 7168], "fand.in": [2053], "l3o.me": [2053], "ubank.com.au": [17207], "sfuz.co": [2053], "cdn.assets-phoenix.net": [12845], "on.feewise.com": [2053], "my.opera.com": [12252], "chat.timk.co": [2053], "vicki.fr": [2053], "foundi.ly": [2053], "www.skinflint.co.uk": [15159], "www.demand-driver.com": [4424], "aks.meituan.com": [10405], "home-school.com": [20350], "mtswld.com": [2053], "gongkaike.sinacloud.com": [15088], "ticketsnow.com": [16696], "vid.me": [17968], "link.imagiu.com": [2053], "0nl1ne.at": [3], "unum.me": [2053], "developers.cloudflare.com": [3344], "legolanddiscoverycenter.jp": [9391], "register.mitre.org": [10649], "anyfi.net": [1119], "nexac.com": [11547], "www.customwheelconnection.com": [4010], "fkl.fi": [5946], "ientry.com": [20409], "aprimeira.fm": [2053], "tl.r7ls.net": [13627], "www.lobbyradar.de": [22127], "greencup.de": [2053], "tube4.me": [17088], "facultyinformationhandbook.wustl.edu": [18290], "samltool.com": [21365], "my.hscic.gov.uk": [20388], "war.susucow.com": [2053], "www.bgr.com": [1555], "cejz.tk": [2053], "gallery.op-co.de": [12100], "on.vibe.com": [2053], "sandstorm-media.de": [14520], "go.pesout.eu": [2053], "www.e-mielenterveys.fi": [4954], "infood.co": [2053], "go.eick.it": [2053], "autoversicherungen.search.ch": [14684], "support.cloudbees.com": [19736], "myworldofwork.co.uk": [20870], "podl.ch": [2053], "img.empstatic.com": [5322], "thejoshc.us": [2053], "www.challenge25.go.jp": [8663], "on.wbir.com": [2053], "www.tweakhound.com": [17141], "static.opml.org": [11854], "www.lihm.net": [9508], "ftg.io": [2053], "s.kylepiira.com": [2053], "meetfriends.rt.com": [13702], "lclly.co": [2053], "ut04.xhcdn.com": [18815], "quiz.tivi.de": [22127], "image-store.slidesharecdn.com": [15208], "hurleymc.com": [7773], "crnt.osu.edu": [11959], "bulgarian.bulgaria.usembassy.gov": [21879], "wupaymentsolutions.com": [18230], "s.mnz.ro": [2053], "simmarket.com": [15052], "molk.tv": [2053], "fop.thecthulhu.com": [16600], "short.yeuxa.com": [2053], "songne.ws": [2053], "cmics.co": [2053], "nixos.org": [11624], "on.mgmadv.com": [2053], "www.horde-llc.com": [7639], "pse.osu.edu": [11959], "overlay.ringtonematcher.com": [14126], "linode.com": [9547], "www.aboutairportparking.com": [12374], "newkaliningrad.ru": [20899], "www.amazon.co.jp": [19364], "libreoffice-from-collabora.com": [9469], "wap.mail.ru": [10040], "www.notanet.com.br": [11716], "nl.getsatisfaction.com": [6738], "*.f-cdn.com": [5652], "emacswiki.org": [5292], "uvm.edu": [17353], "tour.girlsoutwest.com": [6787], "w3ha.us": [2053], "welcome.openx.com": [12193, 21023], "svn.debconf.org": [4346], "ben.debian.net": [4351], "fuckfriends.nu": [2053], "api.orinr.in": [2053], "www.plantronics.com": [12999], "thrst.us": [2053], "www.e-onlinedata.com": [4955], "deeppoliticsforum.com": [4378], "dataxu.com": [4268], "mbrk.me": [2053], "dden.co": [2053], "eforms2.westlothian.gov.uk": [22011], "befrds.com": [2053], "hmny.me": [2053], "sitejam.com": [21460], "cmt.co.ve": [2053], "lpumu.se": [2053], "static.115.com": [25], "url.raylu.net": [2053], "a.aim-vinyl.com": [2053], "wikispaces.asu.edu": [1232], "fourpoints.ht": [2053], "forum.sneakerfreaker.com": [21490], "fr.usembassy.gov": [21879], "u5.qiyipic.com": [20413], "fans.fm": [20098], "e.sdraus.com": [2053], "blogs.oracle.com": [12284], "rwudonate.mobi": [2053], "accessories.sky.com": [15170], "*.mypressplus.com": [13260], "ccm.ddcdn.com": [19874], "msdn.microsoft.com": [10543], "*.jimg.dk": [8722], "report.migros.ch": [10566], "www.jitec.ipa.go.jp": [7934], "rubygems.org": [14255], "*.bay.livefilestore.com": [9664], "alll.es": [2053], "i.nettklipp.no": [2053], "oculus.com": [11920], "share.oculusvr.com": [11921], "dbtv.no": [19867], "blnr.co": [2053], "www.nic.ad.jp": [11107], "www.gdata.pt": [6410], "jobs.newcastle.gov.uk": [11507], "everyanglemedia.com": [5558], "qd.alibaba.com": [850], "itprn.rs": [2053], "1smi.co": [2053], "metrika.yandex.kz": [18957], "digid.nl": [11324], "edusoft.hslu.ch": [7728], "salv.in": [2053], "42si.fr": [2053], "epsi.ga": [2053], "*.npario-inc.net": [11141], "aksam.im": [2053], "www.apkmirror.com": [1134], "brnd.cx": [2053], "engineering.osu.edu": [11959], "www.infonline.de": [7914], "www.marum.de": [10200], "doncaster.greenparty.org.uk": [7052], "radler.co": [2053], "www.studyabroad.state.gov": [17345], "publicappointments.cabinetoffice.gov.uk": [2760], "lvfm.biz": [2053], "www.dataconservancy.org": [4270], "api.beeg.com": [19511], "kae.me": [2053], "loro.is": [2053], "www.thurrott.com": [16676], "wholuv.me": [2053], "heart-2-heart.ca": [7411], "aw.chaucanh.net": [2053], "dreamcity.cc": [2053], "go.eyeopener.tv": [2053], "jbeekman.nl": [8563], "agenda.upo.es": [17683], "post.audioscrobbler.com": [1397], "www.zencoder.com": [19135], "ford.to": [2053], "livenation.*": [9642], "smetrics.samsung.com": [14501], "login.youku.com": [19020], "int.nyt.com": [11186], "openrepos.net": [21020], "www.serve.com": [14844], "aliyun.com": [861], "lumension.com": [9826], "s.jtvnw.net": [17164], "blog.dbrgn.ch": [4316], "firstfra.me": [2053], "www.yaha.no": [18937], "actualidad.rt.com": [13702], "wndrjm.com": [2053], "www.forums.playfire.com": [13025], "akncan.me": [2053], "nplsne.ws": [2053], "farmchips.migros.ch": [10566], "mky.bz": [2053], "go.smay.co": [2053], "www.securejoinsite.com": [14746], "lnk.ghiassy.com": [2053], "www.kinesis-ergo.com": [9047], "dev.windows.com": [18642], "brte.co": [2053], "employment.gov.au": [4449], "printink.si": [13298], "fpidetour.com": [2053], "resource.intsig.net": [20481], "vvvzld.nl": [2053], "bosslinux.in": [19575], "purefla.sh": [2053], "bank.yuga.ru": [22121], "*.briggs-riley.com": [2371], "userium.com": [17727], "cdn1.hubspot.com": [7739], "www.nav.no": [20878], "r.varcoe.com": [2053], "affutd.com": [734], "forexcabinet.finam.ru": [20117], "parkerpen.com": [12611], "filmco.ms": [2053], "snap-ci.com": [21488], "spark.ru": [15468], "fr.4.boardgamearena.com": [2219], "fortiguard.com": [6173], "m4.baidu.com": [1661], "ss2.meipian.me": [10404], "img.domaintools.com": [4750], "static.fashionara.com": [5783], "cdays.co": [2053], "www.piraadipartei.ee": [21127], "www.anonimag.es": [1084], "galogin.ntu.edu.tw": [11160], "www.tinfoil.co": [16743], "www.aweirdimagination.net": [425], "city.yandex.com": [18956], "tall.it.da.ut.ee": [17347], "shpyrd.co": [2053], "gestespaceprive.moncompteformation.gouv.fr": [20821], "lfsz.vc": [2053], "i.screenplay.cc": [2053], "cdn.shortlist.com": [14979], "e2e.ti.com": [16413], "b.psng.me": [2053], "universityofsouthflorida.worldcat.org": [18748], "study.ngs.ru": [20907], "image.logmein-inc.com": [9710], "go.yab.ro": [2053], "u-see.ml": [2053], "hjr-verlag.de": [7202], "ctracking.gpehosting.com": [6493], "assets2.sendgrid.com": [14821], "www.acyba.com": [549], "xunxian.meituan.com": [10405], "slovari.yandex.ua": [18961], "kb.safenet-inc.com": [14464], "trbs.co": [2053], "kevin.ms": [2053], "jobh.ro": [2053], "www.npdgroup.com": [11136], "luxsci.com": [9840], "presenter.player.qbrick.com": [13529], "onescreen.com": [12042], "on.imnice.com": [2053], "l.jessii.me": [2053], "laker.co": [2053], "l.forstbach.com": [2053], "liftdna.com": [9499, 9500], "www.ricoh.com.hk": [14112], "joycasino1.com": [20552], "www.leetmedia.com": [9381], "l.z-p.io": [2053], "ukf.me": [2053], "bourde.la": [2053], "www.authorizenet.com": [1447], "npmawesome.com": [11739, 11740], "s.lisra.jp": [2053], "awxcnx.de": [1505], "90sot.com": [2053], "pragmaticstudio.com": [13240], "www.townnews365.com": [16889], "implant-us.link": [2053], "qame.us": [2053], "zwk.cc": [2053], "262.ie": [2053], "www.apoteket.se": [1138], "widsl.de": [18570], "zp.alfabank.ru": [842], "worldcat.org": [18748], "www.tmall.hk": [16786], "d4.hitravel.xyz": [2053], "www.trustees.osu.edu": [11874], "android.to": [2053], "cart.mn": [2053], "qns.bz": [2053], "gmads.mookie1.com": [10764], "recreation.georgetown.edu": [6668], "hsr.ch": [17523], "secure.leadback.advertising.com": [701], "www.audubon.org": [1401], "cdn.tele2.lt": [16325], "www.thepiratebay.lu": [21215], "yvnn.us": [2053], "mythic-beasts.com": [11039], "por.grudiz.es": [2053], "rb.ht": [2053], "*.makerble.com": [10078], "search.etargetnet.com": [5480], "hotmail.com": [7704], "ar.usembassy.gov": [21879], "entries.me": [2053], "opticsinfobase.org": [12268], "helsinki.fi": [17541], "truesumm.it": [2053], "widget.us.criteo.com": [3872], "www.aclusocal.org": [295], "freedompop.com": [6288], "liveperson.com": [9655], "www.amstelveen.nl": [11324], "www.thumbalizr.com": [21733], "bonick.me": [2053], "kellyca.in": [2053], "blogs.janestreet.com": [8659], "mighty.pe": [2053], "outspark.com": [12359], "websitealive3.com": [18445], "*.xfce-help.org": [21007], "lipetsk.rt.ru": [13703], "www.2joycasino.com": [20552], "cphr.us": [2053], "factually.gizmodo.com": [6817], "playertest.longtailvideo.com": [9752], "blog.winkdex.com": [18656], "eusb.me": [2053], "nedk.us": [2053], "abr.ms": [2053], "occvacantes.com": [2053], "humanism.org.uk": [7757], "nohats.ca": [11637], "www.brockman.com": [2412], "www.welcomecottages.com": [18790], "cleanenergyexperts.com": [3283], "thoughtworks.com": [16655], "fb.hsicloud.com": [7726], "mobil.welt.de": [18492], "s3.wsj.net": [22059], "achtc.co": [2053], "reg.atlas.sk": [19449], "www.intentmedia.co.uk": [8377], "mobil.tdc.dk": [16051], "www.hospitalcompare.hhs.gov": [7192], "www.bis.gov.uk": [17243], "www.wethegoondas.in": [18327], "esf-works.com": [5057], "dmachoice.thedma.org": [16530], "traffic.lan.switch.ch": [15952], "jbsib.ly": [2053], "u.fsf.org": [5713], "gobu.me": [2053], "dycip.com": [2053], "*.pixlr.com": [12961], "www.digipaper.fi": [10306], "wfdh.co": [2053], "ruptureit.com": [21342], "idp.kantarainitiative.org": [8939], "ico.al": [2053], "recycleforsurrey.org.uk": [21279], "www.simplesharebuttons.com": [15069], "ld.svt.se": [14441], "bbi.edu.au": [2053], "fornex.com": [6165], "signals.com": [15027], "www.bsi.de": [5828], "*.agu.org": [326], "go.fame.li": [2053], "cspbuilder.info": [3967], "rredc.nrel.gov": [11246], "www.vellemanusa.com": [17888], "kickass.la": [9031], "*.fastclick.net": [17834], "jobsgopublic.com": [8749], "finforms.wigan.gov.uk": [18585], "www.mxlogic.com": [10279], "s8.uicdn.net": [17236], "*.cfda.gov": [2953], "4.groo.pe": [2053], "result.webplatform.org": [18376], "*.blogspot.in": [2166], "percy.io": [21108], "www.spnet.nl": [14399], "assets.newsinc.com": [11527], "brussels.indymedia.org": [8234], "www.lunarmods.com": [609], "secure.consumerfinance.gov": [3667], "*.blogspot.is": [2166], "*.blogspot.it": [2166], "rise.technical.ly": [16289], "api.gem.co": [6633], "central-lincs-consult.objective.co.uk": [20979], "guep.org": [20293], "cdn10.trafficjunky.net": [16922], "www.direktmarketingcenter.de": [19901], "zuhah.com": [19239], "codewords.recurse.com": [13888], "www.frederikssund.dk": [6235], "*.sugester.pl": [15839], "quocir.com": [2053], "hd.web.do": [2053], "picture2.cyberport.de": [4048], "forums.southwark.gov.uk": [15445], "zw.meituan.com": [10405], "www.cimbniaga.com": [2662], "megdal.be": [2053], "www.dediserve.com": [4371], "www.alex.se": [833], "gumc.georgetown.edu": [6668], "sha.red": [2053], "dfa.cornell.edu": [3744], "l7.hitravel.xyz": [2053], "www.telefonanschluss.de": [7187], "ease.media": [2053], "reri.cc": [2053], "forum.ovh.cz": [12378], "track.omguk.com": [11833], "sy.taobao.com": [16206], "www.ab9il.net": [273], "*.jotform.com": [8786], "mobile.cc.stonybrook.edu": [15736], "gc.agar.io": [757], "*.marketingresearch.org": [10177], "www.lendeavor.com": [9403], "www.hs-rm.de": [7725], "uglymugs.ie": [17399], "stbeehive.oracle.com": [12284], "www.ease.ed.ac.uk": [5168], "fr.piliapp.com": [12887], "stats.xmission.com": [18831], "internet.yandex.kz": [18957], "theeld.com": [2053], "digitalmarketing.captora.com": [19643], "www.his.se": [7199], "intelbp.uk": [2053], "infolinks.com": [8260], "lists.openafs.org": [12114], "assis.cf": [2053], "solus-project.com": [15373], "applianceshop.eu": [1165], "www.spi.ens.fr": [5029], "www.eventsjobsuk.g4s.com": [20194], "exacttarget.com": [5585], "www.pogoplug.com": [13074], "i.metodi.ca": [2053], "help-en-cn.nike.com": [11595], "cache.img.gmo.jp": [6462], "billing.epoch.com": [5428], "*.webd.am": [18355], "maas360.com": [9982], "www.getbeagle.co": [6708], "mclark.xyz": [2053], "www.boathousecrewshop.com": [2223], "go.garifull.in": [2053], "conference2009.kde.org": [8871], "bpl.ink": [2053], "nasuni.com": [11229], "blog.legitbs.net": [9390], "revt.us": [2053], "contact.bad-dragon.com": [19475], "stats.mediciglobal.com": [10359], "blg.hm": [2053], "d.tibz.co": [2053], "www.sketchfab.com": [15154], "www.diasporafoundation.org": [4532], "trck.biz": [2053], "tnit.biz": [2053], "assange.rt.com": [13702], "m.vk.com": [17784], "jabber.linuxlovers.at": [9592], "secunia.com": [14719], "plf.zarb.org": [19110], "www.resilientsystems.com": [14039], "lee.aclufl.org": [286], "kotulas.com": [9146], "slp4.somerset.gov.uk": [15376], "tssplansregistry.dft.gov.uk": [19908], "my.vt.edu": [18031], "dht.ec": [2053], "msrlx.com": [2053], "lvgul.ly": [2053], "openmedianow.net": [12157], "ipa.sa": [2053], "honduras.usembassy.gov": [21879], "www.clippod.com": [3329], "www1.eaststaffsbc.gov.uk": [19993], "laprox.com": [20637], "cdn.executive.mit.edu": [9916], "makewebeasy.com": [10081], "www.sigdet.nu": [15021], "*.alcatel-lucent.com": [822], "go.mbna.ca": [2053], "dwov.in": [2053], "www.poolp.org": [13125], "htc.com": [7238], "naturvardsverket.se": [11295], "madmimi.com": [10001], "www.data.wien.at": [22025], "www.dimauro.osu.edu": [11959], "sqrd1.com": [2053], "www.secondmarket.com": [14705], "link.zhakov.lv": [2053], "www.glype.com": [6877], "jqintl.org": [2053], "tdlcrk.co": [2053], "www.ukfast.co.uk": [17247], "mcl.ink": [2053], "kajota.me": [2053], "www.ptt.br": [12507], "lshtm.ac.uk": [9739], "dogwoof.org": [2053], "www.greenbillion.org": [7049], "pen.org": [12441], "loan.jd.com": [8571], "thebookpeople.co.uk": [16484], "puremi.ch": [2053], "www.sportschau.de": [18312], "efsyn.gr": [20016], "backstreetmerch.com": [1645], "live.ok.ru": [11968], "framakey.org": [6214], "img2.thalasseo.com": [16430], "accuco.de": [2053], "abf.li": [2053], "hardware.support.eu.playstation.com": [13015], "ipapi.ipip.net": [20490], "we.gg": [2053], "www.dangpu.com": [4217], "rbody.co": [2053], "fcm.link": [2053], "www.abhayagiri.org": [455], "winsupersite.com": [18630], "*.sandeen.net": [14516], "pt.norton.com": [11703], "groupon.de": [7103], "go.tamma.ro": [2053], "securitycenter.alipay.com": [857], "www18.georgetown.edu": [6668], "d1.chaucanh.net": [2053], "portal.miun.se": [9918], "website.1and1.co.uk": [63], "2dialog.com": [101], "www.opentabs.net": [12247], "emn.online": [2053], "www.npower.com": [11741], "puyangxian.meituan.com": [10405], "www.commandoboxing.com": [3541], "npmjs.com": [11737], "*.clicksor.com": [3322], "lk.vm63.eu": [2053], "labs.opendatacity.de": [21012], "securepaths.com": [14750], "bgamed.de": [1556], "tradeadexchange.com": [21774], "www.123ehost.com": [34], "login.proxy.lib.ohio-state.edu": [11960], "gftypnts.co": [2053], "grpsd.co": [2053], "unf.li": [2053], "www.its.caltech.edu": [2815], "chroot-me.in": [3184], "my.rackspace.com": [13740], "hotmail.msn.com": [9961], "esr.org": [5108], "yonka.us": [2053], "www.ubuntugnome.org": [17387], "service.wienerstadtwerke.at": [18582], "b.shurl.ca": [2053], "mflav.in": [2053], "zeal.ly": [2053], "api.travis-ci.org": [16976], "show.zoho.com": [19202], "sp.itunes.apple.com": [1160], "abb.to": [2053], "bdrck.co": [2053], "www.deeppoliticsforum.com": [4378], "sy.co.at": [2053], "clpn.co": [2053], "anhc.mx": [2053], "opkino.club": [2053], "wsp.link": [2053], "jackandjillraffle.org": [8628], "old.etnasoft.com": [5493], "preaulaglobal25.upf.edu": [17674], "www.apigility.org": [1133], "help.mail.com": [10039], "legal.hubspot.com": [7739], "nascarne.ws": [2053], "vanwinkles.com": [17846], "admin.openccc.net": [12123], "ultimarc.com": [21842], "s48.cnzz.com": [3391], "s1.lemde.fr": [9402], "medias1.prestashop.com": [13265], "urbn.is": [2053], "nemendafelog.hi.is": [7196], "www.unknowncheats.me": [17644], "n.rbnc.org": [2053], "ship-ment.com": [14950], "www.ludismedia.com": [9818], "starwoodhotels.com": [15667], "docs.us-inv.com": [2053], "spinzo.it": [2053], "hashtalk.org": [7356], "coco.as": [2053], "www.sankakucomplex.com": [21368], "www.fallscreek.com.au": [5757], "cdn0.onlinelaw.wustl.edu": [18290], "game.jd.com": [8571], "rjsi.ca": [2053], "tmobile.ecustomersupport.com": [5166], "smart-places.org": [21478], "artist.douban.com": [4802], "qimag.uk": [2053], "bpf.deathmask.net": [4344], "toonpool.com": [16826], "sm-il.es": [2053], "*.feralhosting.com": [5867], "*.opensecrets.org": [3007], "gntr.me": [2053], "devzone.missinglinkelectronics.com": [10645], "movie2k.cm": [10823], "www.effusion.co.uk": [20014], "next.place": [2053], "aprender.tk": [2053], "www.ablegamers.com": [459], "auth.smext.faa.gov": [5830], "www.srihash.org": [14405], "raiffeisen.ch": [13761], "rowi.ro": [2053], "www.thefederalistpapers.org": [16541, 16542], "*.pentontech.com": [12757], "static.justhookup.com": [8573], "*.epfl.ch": [5041], "v.calameo.com": [2790], "www.enisey.tv": [20042], "ifb.htwk-leipzig.de": [7736], "www.digitalgov.gov": [4571], "go.off2.tk": [2053], "export.anidb.net": [1062], "nd.gt": [2053], "therebellin.com": [21715], "www.zenmate.com.pe": [19133], "www.mitro.co": [10650], "*.www.final-score.com": [5933], "ymc.yt": [2053], "l2.51fanli.net": [198], "sustainable.stanford.edu": [15635], "www.standishmanagement.com": [15633], "www.do.de": [4737], "catalog.loc.gov": [9690], "ece.ucsd.edu": [17216], "uhrada.vas-hosting.cz": [21896], "pact14.cs.illinois.edu": [17544], "www.mdgx.com": [9897], "*.shopzilla.com": [14978], "mrkt4.me": [2053], "djfd.co": [2053], "copdf.co": [2053], "harlem.in": [2053], "pictwiitter.co": [2053], "*.dditservices.com": [19875], "assets.nnm-club.ws": [11132], "courses.cs.sfu.ca": [14893], "customer.convio.net": [3697], "mpbbank.dengisend.ru": [4440], "translink.co.uk": [16950], "www.one.com": [12027], "certdepot.net": [19678], "rome.specificclick.net": [15493], "www.us-cert.gov": [17705], "www.mybitcointrade.com": [2007], "store.digitalriver.com": [4566], "moderngov.rotherham.gov.uk": [14212], "my.antfood.com": [2053], "www.fanfiction.net": [5762], "vanillicon.com": [17853], "androidpit.de": [1048], "nixoni.st": [2053], "s-har.es": [2053], "my.plexapp.com": [13037], "*.shmoop.com": [14955], "btfl.pl": [2053], "hilfe.web.de": [18347], "a.wmalumni.com": [2053], "medicinaysalud.uniovi.es": [17479], "thepiratebay.bypassed.party": [21217], "www.scordit.com": [2345], "elementaryos.org": [5261], "webauth.ncsu.edu": [11690], "on.wcsh6.com": [2053], "blindn.es": [2053], "www.articulate.com": [1268], "trac-plugins.gajim.org": [6523], "www.freebarrettbrown.org": [6256], "go.yrf.me": [2053], "*.maine.edu": [17609], "aa.com": [265], "merchant.pay.sina.com.cn": [15086], "vpb.co": [2053], "s.aa9.sa": [2053], "add-ons.wesnoth.org": [18500], "software.uv.es": [17750], "onehockey.com": [12033], "ifightsurveillance.org": [8033], "en.viss.tv": [2053], "pl.cloudflare.com": [3344], "*.phparch.com": [12863], "www.familie.san.aok.de": [357], "www.nationalarchives.gov.uk": [11254], "westgateleisure.chichester.gov.uk": [19703], "13ma.tt": [2053], "evct.us": [2053], "condenaststore.com": [3622], "bozz.in": [2053], "copernico.net": [3719], "huixian.meituan.com": [10405], "dlevi.com": [2053], "esbie.ie": [5051], "www.zipy.co.il": [19193], "dnmltz.me": [2053], "pa.bandinelli.net": [1684], "typography.com": [17192], "vitobiz.com": [2053], "yandex.com.tr": [18954], "cwired.co": [2053], "9sig.co": [2053], "keyform.georgetown.edu": [6668], "pvive.tk": [2053], "skills.im": [2053], "passport.126.com": [43], "rach.tv": [2053], "consultation.sepa.org.uk": [21412], "pgsltg.co": [2053], "*.sheetmusicplus.com": [14938], "aaronka.ro": [2053], "www.parliament.uk": [21075], "www.openbenchmarking.org": [12121], "*.r.axf8.net": [3609], "dotmh.co": [2053], "*.blogo.it": [2165], "travelhacke.rs": [2053], "atms02.alicdn.com": [846], "*.optionsanimal.com": [12278], "folksy.it": [2053], "webservices.web.cern.ch": [2632], "gamcare.org.uk": [6529], "mail.ru": [10040], "webmail6.hyd.gov.hk": [7207], "ssl.facebook.com": [5733], "ifixit-meta.dozuki.net": [7873], "www.rocksbox.com": [21323], "www.leviathansecurity.com": [9431, 9432], "b.l422y.com": [2053], "go.eb.st": [2053], "cbc.life": [2053], "safe-mail.net": [14462], "www.bs.to": [2500], "flexp.co": [2053], "tuscany.apache.org": [1125], "payment.schibsted.no": [14592], "xh.meituan.com": [10405], "savethekoala.com": [1418], "o2.sk": [16332], "dts.io": [2053], "go.thezed.net": [2053], "go.pierreroy.co": [2053], "whdot.net": [2053], "ihub.co.ke": [20410], "mdh.se": [9898], "i9.3conline.com": [157], "usertags.jeremybieger.com": [17366], "portalpilot.equinix.com": [5438], "*.media.net": [10314], "onetree.site": [2053], "static.strawpoll.me": [15771], "click.buddy.im": [2053], "azoya.co": [2053], "mail.qwknetllc.com": [13523], "www.tkqlhce.com": [3546], "inbenta.com": [8186], "filmlair.com": [5925], "dashboard.web.cern.ch": [2632], "albinoloverats.net": [820], "cos.root.cz": [14199], "seller.flipkart.com": [6042], "www.humanaction.com": [7751], "affiliate.itunes.apple.com": [1160], "www.usb.org": [17313], "www.hostingcon.com": [7673], "crks.me": [2053], "twist.to": [2053], "fred.pe": [2053], "contrarycook.me": [2053], "polskapartiapiratow.pl": [21165], "www.usi.edu": [17518], "bhl.so": [2053], "mednews.wustl.edu": [18290], "i.fuwu.taobao.com": [16206], "www.jekyllrb.com": [20534], "www.servage.com": [14843], "c.jp.msn.com": [9961], "dblenco.re": [2053], "hfus.io": [2053], "mixi.jp": [10657], "shanxi.jd.com": [8571], "www.thecityuk.com": [16486], "blog.jcea.es": [8689], "via.eby.io": [2053], "talkactive.net": [16180], "*.lucent.com": [822], "j0e.cc": [2053], "domino.research.ibm.com": [7821], "www.coventgarden.london": [19805], "webfusion.co.uk": [18414], "luvvie.me": [2053], "karbankne.ws": [2053], "people.uwm.edu": [17580], "startlab.sk": [15664], "*.flyingmeat.com": [6082], "adk.to": [2053], "willleathergoods.com": [18611], "*.cyberghostvpn.com": [4031], "we-go.fr": [2053], "mongodb.org": [10742], "missinglinkelectronics.com": [10645], "www.onthe.io": [12089], "*.qwobl.net": [1388], "maxserv.com": [10257], "vysu.al": [2053], "www.appiehein.com": [1155], "cigar.to": [2053], "bdx.me": [2053], "www.huuto.net": [20398, 20399], "discuss.tonicdev.com": [21755], "content.solutions.zalando.com": [19094], "a-d-a.tv": [2053], "atlas.web.cern.ch": [2632], "t5c.co": [2053], "ktk.bme.hu": [1570], "wandsworth.greenparty.org.uk": [7052], "help.just-eat.co.uk": [20565], "itpol.dk": [8540], "api.steampowered.com": [15704], "www.unian.ua": [21851], "smk.sachsen.de": [14454], "green-wood.com": [7043], "davidtisch.com": [4302], "printmojo.com": [13294], "sperry.co": [2053], "go.gazlee.com": [2053], "japh.co": [2053], "alum.pw": [2053], "l.jacob.io": [2053], "nzwooden.toys": [2053], "www.axelarnbak.nl": [1510], "argos.upf.edu": [17674], "lists.secondlife.com": [14706], "www.clinicalkey.com": [3326], "s.hookd.in": [2053], "*.parsely.com": [12622], "biosciences.stanford.edu": [15634], "www.soundonsight.org": [15409], "kf5.com": [20588], "fb.mobiistar.vn": [2053], "userimages.static.zgncdn.com": [19172], "www.sweb.ru": [15457], "pixel.alexametrics.com": [835], "*.strongloop.com": [15786], "static.pay.xiaomi.com": [18873], "www.davpack.co.uk": [4312], "secure.plymouth.gov.uk": [21153], "cottagesdirect.co.uk": [18790], "curiousdog.us": [2053], "id.wsj.com": [22058], "secureus.samsung.com": [14501], "k.anv.as": [2053], "www.ooyala.com": [12099], "brukar.difi.no": [4547], "test.akvorrat.at": [811], "www.viewsourceconf.org": [21924], "isc1.sans.org": [14310], "raspbian.org": [13804], "jart.me": [2053], "*.joomlart.com": [8775], "exchanges.state.gov": [17345], "a.false.guru": [2053], "thepiratebay.uk.net": [21711], "www.devimperium.com": [4505], "bwilk.co": [2053], "irish-country-cottages.co.uk": [18790], "www.caimao.com": [2778], "www.warosu.org": [18279], "alb.albennet.com": [819], "gitbook.io": [6795], "game.co.uk": [6535], "*.balpa.org": [2393], "flipca.us": [2053], "www3.adplan-ds.com": [308], "www.redhat.com": [13909], "offon.link": [2053], "guides.github.com": [6801], "www.ambx.com": [960], "coma.uned.es": [17446], "matc.at": [2053], "*.elitecastingnetwork.com": [5270], "fr.nakedcitizens.eu": [11202], "kruvina.com": [2053], "www.sta.sh": [15608], "cws.link": [2053], "cryptostorm.is": [3959], "new.qiwi.com": [13533], "boldt.in": [2053], "metamap.nlm.nih.gov": [11241], "dnll.us": [2053], "www.reservation-desk.com": [14036], "bresl.in": [2053], "witness.theguardian.com": [16554], "campusship.ups.com": [17285], "ajf.io": [2053], "cheapssls.com": [3100], "nrdd.co": [2053], "www.silentsparks.com": [21448], "profile.weather.com": [18330], "kalbookings.kirklees.gov.uk": [9067], "btpnk.org": [2053], "popa.ca": [2053], "ibay.ga": [2053], "l.168.25u.com": [2053], "affiliate.niteflirt.com": [11618], "int.erl.ink": [2053], "inc.com": [8190, 8191], "orderstatus.earthlink.net": [5106], "b.piju.es": [2053], "s.tygr.ws": [2053], "www.ctools.umich.edu": [17552], "go.brutsch.in": [2053], "www.w3counter.com": [18185], "www.brabysads.com": [2316], "set.tidaltv.com": [16702], "www.wcfia.harvard.edu": [7351], "sprofs.com": [2053], "go.karcis.club": [2053], "zhora.co": [2053], "i2.code.msdn.microsoft.com": [10543], "svn.osgeo.org": [11868], "2.smugen.net": [2053], "elv.tn": [2053], "bugs.linux-mips.org": [9573], "url.jucru.com": [2053], "www.gatag.it": [14452], "cursos.ecommercebrasil.com.br": [4984], "shopperapproved.com": [14972], "cdn.openuni.io": [12250], "dongping.meituan.com": [10405], "*.cirrusmedia.com.au": [3217], "b.keith.ae": [2053], "www.kinox.sg": [20597], "www.wald0.com": [21967], "gabriel.fca.org.uk": [5670], "www.rockcreek.com": [14166], "jhupbooks.press.jhu.edu": [16562], "audience.tapad.com": [16208], "search-xp.com": [2053], "cinc.us": [2053], "swty.pe": [2053], "movian.tv": [10822], "acceptonline.leeds.ac.uk": [17604], "sto.ly": [2053], "pda.drweb.com": [4879], "docs.vid.me": [17968], "dpd.co.uk": [19956], "tetu.com": [16409], "l.kolja.it": [2053], "www.mbank.pl": [9888], "vp1-voiceportal.megapath.com": [10396], "subdu.st": [2053], "branch.com": [2329], "secure.htw-berlin.de": [7246], "digilinux.ru": [4561], "hi.ala.bs": [2053], "www.recordedbooks.com": [21276], "inq.ph": [2053], "www.engineeringforchange.org": [5369], "ox-d.overdrive.com": [12365], "m.eat.ch": [4966], "10dollar.ca": [20], "jobs.telegraph.co.uk": [16340], "kabelkiosk.de": [8913], "asiabsdcon.org": [1293], "engrave.co": [2053], "ratanagiri.org.uk": [13806], "img5.picload.org": [12873], "www.yed24hr.com": [18972], "www.chiphell.com": [3147], "link.bencao.it": [2053], "ouifm.fr": [12343], "www.youtube.co.id": [19016], "makershed.com": [10077], "sstatic.net": [15611], "jarosz.stanford.edu": [15636], "www.youtube.co.il": [19016], "jumpinformatiqueportal.axosoft.com": [1517], "www.youtube.co.in": [19016], "www.simplegiver.com": [10708], "www.rostov.press": [21329], "www.mymediamagnet.com": [11000], "hlat.us": [7256], "us.7digital.com": [223], "leger.migros.ch": [10566], "8joycasino.com": [20552], "privacytool.org": [13317], "www.lis.illinois.edu": [17544], "sso.cc.stonybrook.edu": [15736], "gr8co.co": [2053], "verisigninc.com": [17915], "treasurydirect.gov": [16981], "wedgi.es": [2053], "static.manutan.fr": [10129], "krakenbenchmark.mozilla.org": [10841], "www.quickhash.com": [13589], "ripoffreport.com": [14129], "southandvale.objective.co.uk": [20979], "walter.difi.no": [4547], "t.takanashi.net": [2053], "monitor.econda-monitor.de": [5158], "vinyledit.co": [2053], "www.stop-snoring-mouthpiece.org": [15737], "tplux.co": [2053], "admissions.calpoly.edu": [2787], "www.sanwork.com": [14533], "fdy.co": [2053], "fbi.gov": [5825], "path-follower.com": [12661], "www.pbwebdev.com": [12417], "*.westjet.com": [18502], "static.apps.welt.de": [18492], "freesnowden.is": [6268], "www.aldi-sued.de": [338], "www.aylesburyvaledc.gov.uk": [19468], "nine.buildbot.net": [19609], "sry.wtf": [2053], "www.yify-torrent.org": [18920], "www.ifc.org": [8407], "p5.raasnet.com": [13890], "zap2it.com": [19103], "global.sky.com": [15170], "www.hamburg.de": [7312], "www.mesamatrix.net": [10465], "cgit.collabora.co.uk": [3481], "documentation.mailgun.com": [10049], "nanle.meituan.com": [10405], "acmehou.se": [2053], "*.rdoproject.org": [13642], "dyankov.eu": [4916], "diln.gr": [2053], "ld-2.itunes.apple.com": [1160], "wpx.ne.jp": [18769], "www.weather.yandex.com.tr": [18954], "my.supermedia.com": [15870], "www.protectedtext.com": [13395], "pxob.me": [2053], "survs.com": [15917], "s.gomu.jp": [2053], "soulmates.guardian.co.uk": [7128], "ttzj.me": [2053], "support.mobify.com": [10681], "kenexapods.com": [9001], "syn-work.oss.aliyuncs.com": [19346], "worldandm.com": [2053], "mail.rambler.su": [13774], "es.support.t-mobile.com": [16026], "i7.3conline.com": [157], "express.navalny.com": [11300], "www.postgresql.eu": [13200], "lebanon.usembassy.gov": [21879], "norden.org": [11668], "www.cyberleninka.ru": [4045], "apobox.com": [374], "ksb2h.com": [2053], "www.cheapies.nz": [19691], "edocs.i4wifi.cz": [20407], "mapzen.com": [10142], "www.resurs.se": [14052], "ncdn.lezhin.com": [20672], "www.kanotix.de": [8934], "gddc.me": [2053], "lucina.net": [9811], "pbly.co": [2053], "cltvt.re": [2053], "nxt.dj": [2053], "provolib.com": [2053], "content-public-dc2.govdelivery.com": [6989], "homeliv.in": [2053], "www.blockstream.com": [2152], "nzxt.co": [2053], "www.skeptic.org.uk": [15149], "451unavailable.org": [174], "www.companiesintheuk.co.uk": [3572], "myah.xyz": [2053], "bonstore.co": [2053], "bugs.openmpt.org": [12148], "dmca.com": [4119], "explstl.us": [2053], "trkabt.com": [2053], "api.nspublieksprijs.nl": [20957], "dpct.it": [2053], "mtchef.us": [2053], "tpb.run": [16493], "aciv.us": [2053], "tweetreach.com": [17147], "static5.readyflowers.com": [13853], "cin.ci": [2053], "seatp.it": [2053], "smcc.bz": [2053], "help.elsevier.com": [5287], "www.tradepub.com": [16913, 16919], "sbiforsme.sbi.co.in": [14320], "*.meebo.com": [10373], "assets3.getsatisfaction.com": [6738], "crtv.st": [2053], "www.proxy.org": [13407], "video.yandex.by": [18953], "brry.me": [2053], "6abc.cm": [2053], "archiveprints.thetimes.co.uk": [16734], "securedrop.org": [14735], "blog.douban.com": [4802], "mppne.ws": [2053], "www.mozo.co": [10854], "static.thinksteroids.com": [9904], "www3.truecorp.co.th": [21801], "mail4.pipni.cz": [12460], "huilang.jd.com": [8571], "mightyupload.com": [10561], "chuxiangyuan.jd.com": [8571], "msp.im": [2053], "bandicam.cn": [1685], "msp.is": [2053], "apps.ubuntu.com": [17382], "m.jnnfr.net": [2053], "josv.me": [2053], "austin.to": [2053], "jayg.us": [2053], "snfn.co": [2053], "huinan.jd.com": [8571], "www.mulle-kybernetik.com": [20851], "openhub.net": [12211], "global.alipay.com": [857], "pb.sogou.com": [21500], "profil.topnet.cz": [16100], "cloudafrica.net": [3340], "proxpn.com": [21204], "thmb.inkfrog.com": [8296], "dikit.cf": [2053], "docs.hyper.sh": [7790], "adimages.adnet.pro": [19295], "www.stationlrowingclub.com": [15687], "*.woot.com": [18726], "wirebird.co": [2053], "smallingerland.nl": [11324], "thchang.link": [2053], "www.upx69.com": [17694], "qc.st": [2053], "2013.eurobsdcon.org": [5508], "www.mailnull.com": [10045], "undergrad.usc.edu": [17564], "bash.gg": [2053], "moe.vg": [2053], "www.addtoany.com": [613], "zammad.org": [19098], "public.medicaid.gov": [20771], "volotea.com": [18126], "payrollapp.com": [12697], "www.courtsofnz.govt.nz": [3791], "i.ree.me": [2053], "easycottages.com": [18790], "assistive.usablenet.com": [17710], "scache.microsoft.com": [10543], "beget.ru": [1805], "wargaming.net": [18275], "arrl.org": [382], "mirrors.nic.cz": [11572], "st0.unitedplatform.com": [17505], "uxfor.us": [2053], "phiun.it": [2053], "www.mdh.se": [9898], "id.vedomosti.ru": [21899], "freebaselibs.com": [6276], "hammerlane.co": [2053], "beardba.se": [2053], "dental.washington.edu": [17577], "bao.1688.com": [44], "www.userreport.com": [17729], "comcenter.netcologne.de": [11379], "www.opensrs.com": [17091], "scrp.rs": [2053], "sk-nic.sk": [15140], "webapps.alarabiya.net": [19336], "rand.org": [13631], "cuku.tk": [2053], "on.limmidy.com": [2053], "www.zoner.fi": [19213], "ev.sg": [2053], "www.adultfriendfinder.com": [683], "www.amazon.es": [19370], "ks.church": [2053], "olasagasti.info": [10572], "dgzct.nl": [2053], "whyblockme.info": [3597], "kipp.la": [2053], "www.scubbly.com": [14670], "shrtn.me": [2053], "vabali.de": [17817], "c5.hitravel.xyz": [2053], "hitfile.net": [20344], "hub2.lfg.com": [20673], "hol.bid": [2053], "portsmouth.gov.uk": [21175], "occasion.m-budget.migros.ch": [10566], "bbcdn-bbnaut.ibillboard.com": [7825], "mb2014.es": [2053], "www.dccomics.com": [4089], "bitcoinity.org": [2034], "banking.migrosbank.ch": [10563], "ricoh.co.in": [14112], "gn.tl": [2053], "blip.sh": [2053], "naostri.se": [2053], "be.norton.com": [11703], "hds.ucsd.edu": [17216], "www2.spongecell.com": [21538], "openhost.net.nz": [12234], "www.4plebs.org": [189], "oig.dol.gov": [19938], "blogs.windows.com": [18642], "smsng.news": [2053], "sprout.im": [2053], "getgrok.in": [2053], "*.heteml.jp": [7514], "www.dailystar.com.lb": [19847], "www.d2jsp.com": [4071], "r.asdonline.com": [2053], "cowehne.tk": [2053], "1mm.ist": [2053], "mugenmonkey.com": [10878], "t.ipag.org.uk": [2053], "zip.ch": [19189], "www.aioe.org": [783], "foresight.org": [6146], "tmblog.co": [2053], "knightlab.com": [9097], "ws.mytemp.email": [10980], "justmoon.net": [8854], "naeema.me": [2053], "sar.ac": [2053], "liwenhaosuper.com": [9681], "7pipe.me": [2053], "y-g.co": [2053], "digcoin.com": [4550], "chat.linuxlovers.at": [9592], "warframe.com": [18274], "www.hertzarabic.com": [7500], "gidapp.com": [6448], "www.lada.kz": [20627], "documentation.red-gate.com": [13892], "nhaap.ornl.gov": [11892], "www.mcgrhill-warez.com": [10287], "cdn-staging.demandstudios.com": [4422], "funkiej.com": [2053], "art.georgetown.edu": [6668], "xn.meituan.com": [10405], "mwconf.com": [2053], "www.sport.bt.com": [1593], "www.freakattack.com": [5706], "mycj.co": [2053], "rt3.map.gtimg.com": [7121], "flt10.net": [2053], "buzz.do": [2053], "fak.at": [2053], "silicon.com": [15034], "www.kabelmail.de": [8912], "www.wolframcloud.com": [18700], "libdlo.freedesktop.org": [6243], "www.ehospice.com": [5218], "lantian.meituan.com": [10405], "manifesto.kde.org": [8871], "company.rbc.ua": [21263], "s.thismo.com": [2053], "piratebay.unlockproject.win": [21771], "chefjob.co": [2053], "linkna.ga": [2053], "www.peppermintos.com": [21107], "lngspn.com": [2053], "images.derstandard.at": [19899], "www.publicknowledge.org": [13433], "dkdt.me": [2053], "fonts.iu.edu": [8214], "www.canadahelps.org": [2851], "www.bcgolf.com": [1546], "spicebox.co.jp": [15516], "homeoffice.gov.uk": [20355], "purifi.co": [2053], "www.obitalk.com": [20978], "flnd.co": [2053], "goaldet.com": [6926], "montclair.starfishsolutions.com": [21565], "t.ihmc.us": [2053], "ino-image.newsru.com": [11539], "s60.cnzz.com": [3391], "en.gamigo.com": [6563], "ssl.google-analytics.com": [6967], "*.shopstyle.de": [14965], "www.roddis.net": [14174], "lab.getapp.com": [20230], "www-misc.chpc.utah.edu": [17574], "sourceware.org": [15433], "support.tribepad.com": [21789], "m.kikisso.com": [20594], "teams.surfconext.nl": [14434], "mapep.inl.gov": [20462], "kyani.net": [9203], "novellaqalive.mheducation.com": [20790], "assets3.thrillist.com": [21732], "s2.qhimg.com": [13531], "sharefor.eu": [2053], "status.theverge.com": [16478], "www.swinburne.edu.au": [15944], "uajobs.hr.uillinois.edu": [17238], "j.crid.land": [2053], "www.confianzaonline.es": [3633], "mapit.co": [2053], "conra.do": [2053], "nsbk.co": [2053], "rizon.net": [14144], "console.gigya.com": [6779], "docs.rtems.org": [13706], "findip-address.com": [20120], "www.hatatorium.com": [7369], "l.rusch.sg": [2053], "sbi.co.in": [14320], "myaccount.earthlink.net": [5106], "pega.com": [12738], "podcast.cpanel.net": [2710], "www.classy.org": [19724], "wattpad.com": [18303], "primetime.unrealitytv.co.uk": [17653], "zzk.cnblogs.com": [19743], "jabber.ietf.org": [7868], "vahg.us": [2053], "web.datemas.de": [4295], "ptne.ws": [2053], "bhiab.se": [1889], "vmm.cern.ch": [2632], "cenov.us": [2053], "chelloo.nu": [2053], "*.greenvilleonline.com": [7066], "sl-div.web.cern.ch": [2632], "sgc.static.rtbf.be": [14244], "anon-ib.su": [1080], "www.scotborders.gov.uk": [14636], "caadence.bme.hu": [1570], "secure.remotelyanywhere.com": [13997], "jointheherd.little.my": [9636], "likem.ag": [2053], "windhoek.usembassy.gov": [21879], "knov.io": [2053], "uat-net.technoratimedia.com": [16300], "apex.go.sonobi.com": [15388], "static.shoutback.com": [14983], "apps.bizible.com": [19545], "www.tomlee.wtf": [16813], "mauritius.usembassy.gov": [21879], "*.manta.com": [10124], "vau.la": [2053], "en.boardgamearena.com": [2219], "your-freedom.net": [19028], "encrypted.google.com": [6962], "bklynlib.org": [2053], "fightcopyrighttrolls.com": [20107], "sso.seagate.com": [14679], "dragonflydigest.com": [4835], "imgry.net": [2053], "*.ggpht.com": [6972], "joa.ag": [2053], "xsport.ua": [22088], "*.crittercism.com": [3876], "f.kumapon.jp": [9187], "cdn-es.blastingnews.com": [2112], "www.ch-edoc-passantrag.admin.ch": [21629], "dealerservices.autotrader.co.uk": [19458], "www.hanford.gov": [7325], "rowskey.com": [2053], "chakraos.org": [3044], "i.ronnylam.nl": [2053], "32s.vn": [2053], "tavrich.dengisend.ru": [4440], "backup.com": [11704], "www.sjpl.org": [21465], "tizen.org": [16778], "download.xdk.intel.com": [8359], "link.effdee.com": [2053], "kvnhg.cc.vg": [2053], "bam.gd": [2053], "cjrlit.com": [2053], "login.variety.com": [17858], "www.news9daily.org": [11517], "www.lightthenight.org": [9505], "domainskate.com": [4747], "thebaffler.com": [16513], "academiapress.be": [473], "igam.es": [2053], "y.ninki123.com": [2053], "go.matbaq.com": [2053], "*.hetnet.nl": [8897], "curtpr.in": [2053], "smsk.io": [2053], "platba.cz": [21149], "piwik.vandyke.com": [17842], "nnip.co": [2053], "public.bizo.com": [2084], "*.suppliesfordreams.org": [15891], "tk.de": [16292], "*.ads.neudesicmediagroup.com": [11473], "catlinseaviewsurvey.com": [2964], "askfredhow.com": [2053], "bity.pw": [2053], "pavelun.gr": [2053], "a.catgirlsare.sexy": [2962], "samara.rt.ru": [13703], "movie4k.org": [10824], "www.g5.gov": [6417], "antispam-ev.de": [1108], "www.scambs.gov.uk": [21375], "businessaffairs.stanford.edu": [15635], "cloud.mts.ru": [20846], "opiceb.lu": [2053], "rlin.tk": [2053], "go.mutsol.com": [2053], "www.ihgplc.com": [7885], "p0.meituan.net": [10405], "gsto.co": [2053], "a3li.li": [259], "*.meritrustcu.org": [10459], "www.cyberfret.com": [4042], "ffbc.link": [2053], "capousd.illuminateed.com": [20430], "drive.google.com": [6962], "ylor.me": [2053], "cstatic.weborama.fr": [18434], "archive.cheshire.gov.uk": [3123], "fuckyoudoug.xyz": [2053], "*.umonitor.com": [17260], "www.requestpolicy.com": [14025], "wsshd.com": [2053], "www.panerabread.com": [21068], "cashback.co.uk": [2940], "ksaglass.com": [8902], "winzip.com": [18632, 18633], "www.floridalobbyist.gov": [20134], "eagereyes.org": [19987], "www.allunmanaged.com": [881], "imgt6.bdstatic.com": [1662], "www.projects.unbit.it": [17431], "3suisses.de": [164], "doctortrusted.org": [4712], "radw.in": [2053], "mktplc.org": [2053], "spnk.co": [2053], "nic.ad.jp": [11107], "classic.fastmail.com": [5804], "*.itsfogo.com": [7880], "secure.friendfinder.com": [6331], "images.minalyzer.com": [10592], "passport.yandex.by": [18953], "avit.al": [2053], "www.elfa.se": [5263], "*.ed2go.com": [2998], "instat.com": [8175], "appbur.st": [2053], "fp.intego.com": [8351], "rfds.co": [2053], "ec-cdn-assets.stitcher.com": [15732], "sakha.rt.ru": [13703], "anchor.net.au": [19388], "blog.symbolab.com": [15970], "unblockedbay.info": [21711], "alt.meituan.com": [10405], "schneierfacts.com": [21379], "cw.gp": [2053], "rsvp.com.au": [13700], "hedl.in": [2053], "icewarp.savana.cz": [14547], "wfall.co": [2053], "ashle.yt": [2053], "ukfsn.org": [17244], "free.1688.com": [44], "connect.squareup.com": [15580], "etrtbs3.smartstream.tv": [15247], "logo.works": [2053], "i.api.grvcdn.com": [7115], "a2zisus.com": [2053], "votervoice.net": [18142], "xt.meituan.com": [10405], "www.ixwebhosting.com": [8027], "bthlp.com": [2053], "pkts.co": [2053], "gmx.ph": [6467], "local.amazon.co.uk": [19365], "*.jad-journal.com": [8794], "thkk.nl": [2053], "netn.im": [2053], "eqi.md": [2053], "vary.idnes.cz": [20425], "www.esiss.ac.uk": [5060], "confettik.it": [2053], "review.opencontrail.org": [12128], "imagesrel.hertz.com": [7511], "cruisersforum.com": [3903], "ssl.connextra.com": [3650], "*.kotaku.com": [9143], "seatgeek.com": [14694], "theopen.golf.hsbc.com": [7233], "mailgun.com": [10049], "tmms.co": [2053], "desv.dict.cc": [4536], "g.microsoftonline.com": [10546], "api.deepin.org": [4380], "uslaw.link": [17737], "www.diapers.com": [19914], "kiss.ly": [2053], "www.aspectsecurity.com": [1306], "democracy.eastsussex.gov.uk": [19994], "ondemandui.webtrends.com": [18467], "committeeadmin.lancaster.gov.uk": [20634], "studentbenefits.ca": [15792], "fans.messi.ga": [2053], "tpb.unlockme.online": [21771], "tr.support.tomtom.com": [16812], "open.bufferapp.com": [2459], "bookafl.at": [2053], "www.seo.com": [14340], "st.diecrew.ml": [2053], "s.vinilox.eu": [18016], "ubuntu-nl.org": [17379], "def6.bz": [2053], "eventing.coursera.org": [3788], "awv.me": [2053], "rio.upo.es": [17683], "fwrd.xyz": [2053], "domeinenrz.nl": [11324], "www.vvztahy.vutbr.cz": [17814], "aftz.in": [2053], "static.pubmed.gov": [13423], "bluewin.ch": [2210], "kolektiva.com": [9114], "www.mims.com.sg": [9910], "extensions.joomla.org": [8776], "www.xapo.com": [18841], "*.eukhosting.net": [5079], "ccwed.me": [2053], "kde-help.org": [21006, 21007], "*.redbullmediahouse.com": [13902], "4.darkroom.shortlist.com": [14979], "proms.ly": [2053], "parnasparty.ru": [12615], "service.xs4all.nl": [18835], "link.ou.edu": [2053], "www.sstic.org": [14421], "szc.tc": [2053], "maps.hants.gov.uk": [7328], "www-935.ibm.com": [7821], "jobs.healthnet.com": [20329], "www.craigmurray.org.uk": [19812], "*.lohud.com": [9726], "nicereply.com": [11580], "filtr.es": [2053], "*.devconf.cz": [4496], "netgear.com": [11425], "appbac.kr": [2053], "apg1.us": [2053], "tox.is": [2053], "avno.us": [2053], "cdn.makeagif.com": [20740], "www.ks.uiuc.edu": [17234], "files.srb2.org": [14403], "vbtt.it": [2053], "asset-0.soupcdn.com": [15416], "checkout.looppay.com": [9768], "www.ourlocality.org": [12349], "lyft.it": [2053], "www.sh.ch": [21629], "au.isidewith.com": [20414], "secure-www.6pm.com": [212], "okopnik.com": [11974], "go.shubh.me": [2053], "dehr.dict.cc": [4536], "*.consumerreportscdn.org": [3665], "firstvds.ru": [5987], "try.spotlite.io": [2053], "www.pep.foundation": [21106], "grupy-dyskusyjne.money.pl": [10735], "www.gemcutter.org": [14255], "tittygram.com": [16776], "tgf.ngo": [2053], "wearebig.org": [2053], "www.asdagoodliving.co.uk": [19431], "sby.digital": [2053], "lori.gr": [2053], "nsa-observer.net": [11745], "btac.es": [2053], "www.socialblade.com": [15319], "clm.globalcapacity.com": [6845], "cushe.us": [2053], "unsw.edu.au": [17273], "cr2c.stanford.edu": [15635], "ebid.net": [19979], "www.freedom-ip.com": [6282], "www.cer.org.uk": [19677], "donate.perlfoundation.org": [12787], "lohud.com": [9726], "main.makeuseoflimited.netdna-cdn.com": [10073], "www.git-scm.com": [6793], "deliveredsmartly.courierpost.co.nz": [3784], "leaseholdershandbook.oxford.gov.uk": [21053], "on.g1.ie": [2053], "minorcort.es": [2053], "thepiratebay.ac": [21710], "www.efa.org.au": [5254], "r.yunlou.net": [2053], "tla.cc": [2053], "dev.vpsfree.cz": [21956], "jabe.co": [2053], "fex.rus.uni-stuttgart.de": [17567], "aciw.co": [2053], "6eg.us": [2053], "yabs.yandex.kz": [18957], "wiki.aircrack-ng.org": [789], "lumendatabase.org": [9825], "www.zcarc.com": [7511], "grad.georgetown.edu": [6668], "rjnr.co": [2053], "gotohotel.co.uk": [2053], "washingtonstate.worldcat.org": [18748], "de.isidewith.com": [20414], "www.law.washington.edu": [17577], "piratewiki.info": [21709], "cbdreader.christianbook.com": [3172], "dongfang.meituan.com": [10405], "rmcybernetics.com": [14028], "fsd.illuminateed.com": [20430], "www.jumpshare.com": [20561], "img.airy.co": [2053], "oldham.spydus.co.uk": [21546], "covet.pro": [2053], "raps.wustl.edu": [18290], "to.optune.me": [2053], "cuidadodesalud.gov": [3984], "medicina.unizar.es": [17643], "g-jon.es": [2053], "coolkeywest.com": [3709], "arena.westsussex.gov.uk": [18507], "dicht.nlnetlabs.nl": [11130], "blog.zdf.de": [22127], "dl.tdcat.com": [2053], "info.digitalriver.com": [4566], "www.mybenefitscalwin.org": [10934], "beta.southlanarkshire.gov.uk": [15439], "tursha.info": [2053], "tl63.co.uk": [16781], "fs.tl": [2053], "verenga.org": [2053], "www.ookla.com": [12094], "tu-chemnitz.de": [16124], "cache.smithmonitoring.com": [15253], "gmsoap.co": [2053], "*.janraincapture.com": [8656], "newsinfo1.ml": [2053], "rhrp.de": [2053], "sms.cam.ac.uk": [17529], "hsbc.co.in": [20372], "zoomeye.org": [19221], "microb.io": [2053], "not.t-t.be": [2053], "rpw.sh": [14239], "de.aegeanair.com": [7041], "y.ziri.fr": [2053], "tsn.ua": [21805], "pp-shop.vodafone.co.uk": [18106], "www.ebenefits.va.gov": [17297], "www.egyptindependent.com": [5217], "*.bible.com": [19017], "tuki.zoner.fi": [19213], "anvar.ga": [2053], "bildung.sachsen.de": [14454], "ssl.brucon.org": [2431], "bo4.me": [2053], "www.malls.ru": [20743], "eromang.zataz.com": [19114, 19115], "mezco.toys": [2053], "china.mims.com": [9910], "av-j.com": [2053], "9gag.com": [244], "*.groupon.co.uk": [7103], "seznam.cz": [14891], "asset-d.soupcdn.com": [15416], "www.suntech.cz": [21607], "on.leonovel.pro": [2053], "miami.aclufl.org": [286], "addictionhelpchat.com": [615], "amazontrust.com": [956], "shlem.us": [2053], "wr2k.de": [2053], "www.visibletechnologies.com": [18063], "i-cdn.openx.com": [12193], "s.zah.me": [2053], "translationproject.org": [16948], "gotk.co": [2053], "secure.sky.com": [15170], "webxakep.net": [18395], "fshtnkcr.tv": [2053], "innsyn.feide.no": [5858], "www.folksam.se": [6104], "*.usni.org": [17324], "actf.lu": [2053], "www.visiblebody.com": [18064], "www.weltbild.ch": [18493], "solihull.greenparty.org.uk": [7052], "allplayers.com": [874], "go.bostonglobemedia.com": [2289], "tickt.club": [2053], "www.oalj.dol.gov": [19938], "demandb.se": [2053], "altc.cc": [2053], "www.swisspost.com": [13176], "yaostrov.ru": [22093], "crainsnewyork.com": [3829], "i4.code.msdn.microsoft.com": [10543], "static.garagegames.com": [6575], "bmo.re": [2053], "ddlvalley.rocks": [19878], "lvmyd.rs": [2053], "usrow.us": [2053], "us1.siteimprove.com": [15127], "demo.hitbtc.com": [7561], "backend.alumnenet.dtu.dk": [16286], "pick.mx": [2053], "onetoone.apple.com": [1160], "l.nirm.it": [2053], "lod.springer.com": [21543], "lite.socialcube.net": [15320], "dlxcr.tv": [2053], "rvrb.it": [2053], "ceronne.eu": [2053], "us.icecat.biz": [8059], "minigames.mail.ru": [10040], "hyperboria.net": [7792], "gure.li": [2053], "xsh.li": [2053], "www.cdmp.allianz.com": [19351], "exporter.alibaba.com": [850], "fr.rbth.com": [21267], "ublearns.buffalo.edu": [17583], "wuzhi.meituan.com": [10405], "www.imp.ulpgc.es": [17411], "www.radiox.ch": [13750], "developer.epa.gov": [5036], "www.bluegiga.com": [2201], "exch-eu.atdmt.com": [10540], "i6.c.dk": [2556], "images.contentreserve.com": [19779], "infv.it": [2053], "office365.microsoft.com": [10543], "checkdomain.de": [3107], "help.goodsie.com": [5030], "www.yeah.net": [18971], "gsk.to": [2053], "developers.maxon.net": [10263], "piwik.1u1s.de": [81], "pin.lu": [2053], "hvst.es": [2053], "www.advantageseoservices.com": [690], "optimind.me": [2053], "tokyotoday.net": [2053], "jtekmusic.co": [2053], "status.pagerduty.com": [12536], "go.hiro-t.net": [2053], "sundancechannel.com": [15853], "s3.lbrcdn.net": [9331], "surveillancelaw.org": [15911], "amoena.fr": [1017], "*.eveonline.com": [5084, 20072], "www.coinimal.com": [3468], "www.247filmz.com": [94], "marshallapps.usc.edu": [17564], "bitly.kwolsz.pl": [2053], "video.fosdem.org": [6187], "l.umboapp.com": [2053], "uchiyama.link": [2053], "www.braintreepayments.com": [2327], "www.tibetaction.net": [16679], "withsix.com": [18680], "freescorenation.com": [6248], "calcentral.berkeley.edu": [17526], "adultlearning.bristol.gov.uk": [19592], "maps.google.*": [6969], "igorr.tk": [2053], "m.cyberport.de": [4048], "www.mathjobs.org": [10234], "www.radioshackwireless.com": [13749], "www.sohh.com": [14387], "hnl.me": [2053], "careers.sky.com": [15170], "hdmovie.ml": [2053], "darktrace.jp": [19853], "myagen.se": [2053], "*.yottaa.net": [19008], "scph.at": [2053], "w.naukri.com": [2053], "step.tips": [2053], "metrics.librato.com": [9467], "www.aartdevos.dk": [435], "jackrabbit.apache.org": [1125], "www.foursignposts.com": [20152], "l.baig.io": [2053], "media.office.co.uk": [11941], "bd.alibaba.com": [850], "hanwhatechwin.co.kr": [14509], "web.eloqua.com": [5281], "snkr.fr": [2053], "lqttswr.readspeaker.com": [13843], "mike.kaply.com": [8942], "innmb.com": [2053], "www.oldbayproxy.eu": [21709], "kammeratadam.dk": [8929], "9oh2o.com": [2053], "znshd.tk": [2053], "estmatic.net": [2053], "www.insightcommunity.com": [6056], "s.qoly.jp": [2053], "timrul.es": [2053], "l.fwx.co": [2053], "svn.filezilla-project.org": [5911], "mlksplsh.co": [2053], "c1.thejournal.ie": [16490], "us1.effectivemeasure.net": [5208], "enlnks.co": [2053], "handelsregister.de": [7319], "www.hwsw.hu": [7252], "www.uneddit.com": [17447], "justflix.eu": [2053], "delasocial.me": [2053], "curvatude.me": [2053], "djangoeurope.com": [4678], "spthumbnails.5min.com": [208], "tad90.com": [2053], "kimpluscraig.com": [9044], "osdir.com": [11867], "www.cloutoday.nl": [3336], "www.qconnewyork.com": [13509], "www.paris.uio.no": [17615], "b.stripecdn.com": [15782], "doi.org": [4150], "www.dataprotection.ie": [4250], "www.agra-net.net": [772], "*.infolinks.com": [8260], "linux-magazine.com": [9554], "ecybermission.ideascale.com": [20423], "helpouts.google.com": [6962], "groups.google.*": [6965], "znd.st": [2053], "production-website.snap-ci.com": [21488], "www.skyacademy.com": [15174], "elv8.co": [2053], "m60.digital": [2053], "*.stadtwerke-bamberg.de": [15620], "webmail.gradwell.com": [7011], "content.foto.my.mail.ru": [10040], "bwna.me": [2053], "vag.life": [2053], "www.lplogin.com": [609], "smyl.es": [14379], "buy.aia.ag": [2053], "1.razor.tv": [2053], "ngx.cc": [11569], "*.hackerspace.gr": [7042], "sso-prod1.cisco.com": [3221], "redwoodsinyosemite.com": [13935], "hstrs.co": [2053], "cache.boston.com": [2287], "www.talgov.com": [16179], "*.aoe.com": [356], "www.x10hosting.com": [18799], "plugin.mediavoice.com": [13084], "ebuyer.com": [5144], "teamg-a.com": [2053], "engineyard.com": [5367], "feedproxy.google.com": [6962], "*.frim.nl": [6338], "nland.ch": [2053], "bean.hn": [2053], "energylinx.co.uk": [20041], "mday.biz": [2053], "c1.microsoft.com": [10543], "www.onboardkit.com": [12022], "b.gen.rs": [2053], "on.wlky.com": [2053], "passport.wmtransfer.com": [18373], "k-m.me": [2053], "personaldemocracy.com": [12794], "snkk.co": [2053], "www.individual-villas.co.uk": [18790], "weeloy.co": [2053], "www.dolartoday.com": [4729], "dh2011.stanford.edu": [15635], "iopscience.iop.org": [8345], "reason.com": [13869], "cloudorado.com": [3371], "rprsnt.us": [2053], "www.postscapes.com": [13209], "ceban.ro": [2053], "culture.unian.net": [21851], "www.concrete5.org": [3614], "cdn.sonyentertainmentnetwork.com": [15398], "qidong.meituan.com": [10405], "cub.am": [2053], "bagatoo.se": [1657], "media5.congstar-media.de": [3641], "www.anidex.moe": [1063], "tpbproxy.cc": [21709], "www.ebi.co.uk": [5528], "inder.us": [2053], "c9.io": [3339], "clk.whatech.com": [2053], "oriol.me": [2053], "litor.al": [2053], "hshq.us": [2053], "shutr.bz": [2053], "samc.co": [2053], "ez-download.com": [5098], "www.pinegram.com": [12893], "pl.3.boardgamearena.com": [2219], "measuredvoice.com": [2884], "master.podseed.org": [13070], "player.twitch.tv": [17164], "hollywoodlife.com": [7600], "c1-blog.flirble.org": [16456], "holytransaction.com": [7607], "just-eat.dk": [20565], "i9.tietuku.com": [16704], "spil.tv2.dk": [16136], "magnetsearch.org": [21709], "risparmiopostale.it": [14136], "hypn.tc": [2053], "wiki.contribs.org": [3686], "ct0.addthis.com": [611], "res.cloudinary.com": [3367], "light.as": [2053], "suppliercenter.walmart.com": [18260], "leap3.singlehop.com": [15094], "ioaw.re": [2053], "billing.globaltap.com": [6862], "plus.google.com": [6962], "alahora.mx": [2053], "xhamster.com": [18816], "www.subterraneangames.com": [15822], "potins.co": [2053], "www.success.tid.gov.hk": [7212], "edamo.co": [2053], "gloans.co": [2053], "static.wildstar-online.com": [18602], "clientes.wiroos.com": [22038], "sn.mnstr.in": [2053], "www.n0where.org": [11049], "feedburner.com": [5849], "*.redcross.org.uk": [2397], "coursefinder.io": [3786], "coreix.net": [3739], "blog.ct.de": [7428], "*.nuggad.net": [11769], "go.iphonehk.cf": [2053], "shdk.co": [2053], "rick.ml": [2053], "go.wevance.com": [2053], "arts.leeds.ac.uk": [17604], "c.cloud.tt": [2053], "jesee.co": [2053], "ambest.com": [344], "login.e.bibl.liu.se": [9238], "piraten-ufr.de": [12934], "www.justin.tv": [17164], "regnum.ru": [13974], "community.platformio.org": [21150], "*.zkb.ch": [20574], "guardianproject.info": [7129], "vooplayer.com": [18134], "www.zayo.com": [19117], "gardengrove.illuminateed.com": [20430], "cardiff.gov.uk": [19644], "reot.co": [2053], "randr.com.br": [2053], "e2.emediate.se": [5306], "avonmaquiagem.com.br": [1495], "gko.as": [2053], "jni.me": [2053], "anticorru.pt": [2053], "sumal.ly": [2053], "www.hope.net": [7637], "jaim.at": [8641], "www.nicereply.com": [11580], "www.film.ru": [20112], "buzzurl.jp.eimg.jp": [2539], "videodroid.org": [17987], "verdadmedia.com": [17910], "ler.amazon.com.br": [19367], "wwrk.tk": [2053], "hertz.com": [7511], "community.bluejeans.com": [2192], "dzone.com": [4171], "l.gamified.uk": [2053], "*.mozdevgroup.com": [10837], "www.hostpointpartner.ch": [7686], "book.cathaypacfic.com": [2963], "images-static.trustpilot.com": [17073], "redkestrel.co.uk": [21288], "kriminalvarden.se": [9163], "*.heimdalsecurity.com": [7425], "*.tennessee.edu": [17627], "www.domenovyprohlizec.cz": [4762], "feminy.in": [2053], "dela.dict.cc": [4536], "blog.bofh.it": [2231], "mychan.nl": [2053], "www.musopen.org": [10913], "b.cssherry.com": [2053], "emm1.samsungknox.com": [14507], "mail.invitel.hu": [8475], "b.reeco.com.ph": [2053], "coy.im": [3810], "img.s8bbs.com": [21352], "holbrook.travel": [2053], "partner.skylink.cz": [15183], "www.ashlandfiber.net": [1288], "freundewerben.congstar.de": [3642], "pfa.idg.se": [7852], "deltager.no": [4416], "pokd.it": [2053], "s.uhfx.net": [2053], "potterytim.es": [2053], "img.fastshare.cz": [5790], "2nos.fr": [2053], "tridge.co": [2053], "www.bcobandits.com": [1768], "*.rbxcdn.com": [14156], "t.shaun.to": [2053], "static.androidpit.info": [1048], "lombardi.georgetown.edu": [6668], "wms-na.amazon-adsystem.com": [950], "fb.answers.microsoft.com": [10543], "my.xilo.net": [18818], "sedo.co.uk": [14784], "www.igd.fraunhofer.de": [6230], "asset-3.soup.io": [15415], "regional.osu.edu": [11959], "www.opennet.ru": [12158], "scarborough-consult.objective.co.uk": [20979], "www4.plymouth.ac.uk": [13055], "www.snapdeal.com": [15276], "cntd.es": [2053], "uchechi.co": [2053], "sarajevo.usembassy.gov": [21879], "nhseportfolios.org": [11103], "propublica.org": [13339], "www.hertz247.es": [7504], "aristov.org": [2053], "l.instap.io": [2053], "davehe.al": [2053], "d.ij-soft.com": [2053], "smbmarketplace.cisco.com": [3221], "easychair.org": [5123], "wego.here.com": [7465], "order.ifolor.ch": [20428], "councildecisions.bury.gov.uk": [19614], "optimized-by.rubiconproject.com": [14247], "cmich.ly": [2053], "www.studentaffairs.illinois.edu": [17544], "yuba.harvard.edu": [7350], "emailage.statushub.io": [15692], "abrec.us": [2053], "eblastengine.upickem.net": [17677], "my.alpnames.com": [910], "www.wickedlasers.com": [18577], "mypa.be": [2053], "www.cair.com": [2572], "savecrypto.org": [14550], "novara.media": [2053], "newsletter.f-secure.com": [5654], "www.irctc.co.in": [7957], "kurlykli.ps": [2053], "mstr.uk": [2053], "r.jgrimshaw.com": [2053], "i.shanelife.com": [2053], "jobs.onesignal.com": [12043], "wwwdc2.cinelease.com": [7511], "w03.hillingdon.gov.uk": [7550], "play.make.me": [2053], "nwsltr.it": [2053], "carnapi.es": [2053], "gcx.cx": [2053], "macino.it": [2053], "headphone.com": [7391], "nextpowerup.com": [11563], "rblre.ch": [2053], "m.tune.yandex.by": [18953], "gdtmx.com": [2053], "*.nykeurope.com": [11183], "r.catchy.io": [2053], "cornell-classic.univcomm.cornell.edu": [3744], "proxy5.switchadhub.com": [15954], "farmmania.migros.ch": [10566], "www.htwk-alumni.de": [7735], "mrtrp.de": [2053], "go.wos.my.com": [2053], "uni-stuttgart.de": [17568], "rai.eu": [2053], "zenmate.com.br": [19133], "portal.acs.org": [966], "int.anon-ib.co": [1075], "www.terveysportti.fi": [16394], "natureshop.com": [11294], "dslreports.ca": [4157], "us.gamespot.com": [6544], "www.commsys.isy.liu.se": [9237], "peakgam.es": [2053], "www.myedaccount.com": [10945], "www-05.ibm.com": [7821], "l.tikatravel.pe": [2053], "ilovehw.co": [2053], "ik.to": [2053], "telesis.wustl.edu": [18290], "reparieren.ch": [21908], "www.auscert.org.au": [1409], "help.channel5.com": [3057], "dj.jd.com": [8571], "www.justfordomino.com": [10267], "a127-ess.nyc.gov": [11484], "rtdru.rt.com": [13702], "kemp.co": [2053], "art2po.com": [1256], "www.ourcommonplace.com": [12347], "www.api.picatcha.com": [12871], "www.511tactical.com": [196], "applif.to": [2053], "history.state.gov": [17345], "retailers.comixology.com": [3529], "git.haskell.org": [7361], "gfp.io": [2053], "www.dedicatedgaming.com.au": [4369], "purina.com": [13474], "s.smartgame.jp": [2053], "mai.taobao.com": [16206], "*.objects.dreamhost.com": [4844], "wbplay.com": [18193], "www.myuni-form.com": [20869], "moreinterop.com": [10776], "jrd.mn": [2053], "penza.rt.ru": [13703], "gotpantheon.com": [12578], "cflam.es": [2053], "ext.err.ee": [5474], "fastm.nl": [2053], "piecejointe.net": [69], "greyhole.net": [7072], "suprgamr.tv": [2053], "on.kens5.com": [2053], "njpm.co": [2053], "*.lonap.net": [9247], "developer.uber.com": [17368], "www.wdr.de": [18312], "www.voxility.com": [18150], "healthymeals.nal.usda.gov": [17495], "etumost.me": [2053], "www.gismeteo.ua": [6790], "extensiondefender.com": [5632], "ur.taobao.com": [16206], "u.sardinka.org": [2053], "foml.uk": [2053], "www.lofter.com": [20712], "web.943.tw": [2053], "help.aliexpress.com": [847], "bluepr.in": [2053], "web.pipni.cz": [12460], "www.iajapan.org": [7817], "*.indabamusic.com": [8198], "url.pouchak.com": [2053], "2.uxd.me": [2053], "woking.gov.uk": [22041], "on.doi.gov": [2053], "lyndon.co": [2053], "build.codepoet.com": [19749], "www.imgking.co": [20439], "s.stakon.gr": [2053], "ngonoo.in": [2053], "syspl.at": [2053], "www.mtu.edu": [9967], "ok.de": [11825], "fncranks.com": [2053], "account.tectonic.com": [16311], "lstln.co": [2053], "www.opswat.com": [11856], "cartersoshkosh.ca": [2928], "docs.bleachbit.org": [19556], "mealprep.ly": [2053], "m.samsungfire.com": [14505], "y.115.com": [25], "unitedsafcu.org": [17494], "www.shareholder.com": [14922], "www.math.cuhk.edu.hk": [2747], "e-library.eastsussex.gov.uk": [19994], "focus.ua": [20139], "l.jd-1.dk": [2053], "chg.bz": [2053], "alchemyglobal.com": [824], "opn8.co.uk": [2053], "l.mbdb.jp": [2053], "2brave4.me": [2053], "go.tt.com": [2053], "www.samsung.com": [14501], "www.institutional.hsbc.com": [7233], "takou.co": [2053], "ibm.biz": [20417], "open-pc.com": [21006, 21007], "*.nationalcapital.gov.au": [11255], "jiaozuo.meituan.com": [10405], "www3.physics.ox.ac.uk": [17557], "pubhealth.us": [2053], "bsideslv.org": [1588], "asirobots.com": [389], "w.franc.es": [2053], "www.ims-dm.com": [8387], "wlk.dog": [2053], "doska.chita.ru": [19706], "titb.com": [2053], "blog.wikimedia.org.uk": [18595], "kids.usa.gov": [17307], "onch.net": [2053], "digitalcentr.al": [2053], "kway.li": [2053], "ui.adsabs.harvard.edu": [7351], "l.rtsp.us": [2053], "www.webpower.nl": [18338], "testreserveaspace.wustl.edu": [18290], "sjburns.co": [2053], "whtp.gs": [2053], "www.ritter.vg": [14137], "www.semya.tv": [21409], "www.cjs-cdkeys.com": [2676, 2677], "www.wtpx-telekom.com": [18780], "twtanmlpics.com": [2053], "www.bhodisoft.com": [1890], "ud-d.in": [2053], "www.ligatus.es": [9502], "infinow.net": [8245], "the93q.com": [2053], "on.sgsites.net": [2053], "woodlands.io": [2053], "zp.meituan.com": [10405], "arvl.gd": [2053], "ynsfk.co": [2053], "la.irbob.com": [2053], "www.wza.us": [18793], "*.paysafecard.com": [12698], "theconversation.com": [16528], "otto.de": [12339], "*.ahpra.gov.au": [1431], "sgno.org": [14350], "fsfeurope.org": [5715], "*.aleavia.com": [826], "accesd.affaires.desjardins.com": [4471], "*.ucsf.edu": [17589], "diabe.life": [2053], "*.core.cdn.streamfarm.net": [15774], "whitepages.com": [18555], "portal.ripe.net": [14128], "p.groupme.com": [2053], "gemcutter.org": [14255], "apply.berkeley.edu": [17526], "magyon.co": [2053], "embed.acast.com": [19259], "*.thomas-krenn.com": [16642], "www.atgfw.org": [19448], "www.capitadiscovery.co.uk": [19642], "*.manticoretechnology.com": [10125], "eminhuseynov.com": [5312], "highpeak.objective.co.uk": [20979], "linuxgraphic.org": [20697], "idp.coma.uned.es": [17446], "app1881.no": [2053], "static3.startnext.com": [15665], "electradl.iplayer.bbc.co.uk": [1535], "www.crcpress.com": [8267], "dfw.world": [2053], "brnt.cr": [2053], "internal.ncl.ac.uk": [11073], "intlprograms.aces.illinois.edu": [17544], "sp.jd.com": [8571], "strw.rs": [2053], "www.tsn.ua": [21805], "eng.rkn.gov.ru": [14146], "demo.sympa.org": [15974], "good.as": [2053], "consult.broadland.gov.uk": [2411], "www.flux.utah.edu": [17574], "remo.cc": [2053], "*.savecrypto.org": [14550], "gerrit.chromium.org": [3179], "webnium.co.jp": [18431], "killscreen.com": [9040], "go.yc.sg": [2053], "std.mn": [2053], "nzpug.org": [20973], "ala.org": [337], "www.zalando.es": [19094], "4ty.co": [2053], "a.drewmj.com": [2053], "helfer.froscon.org": [6210], "doc.tiki.org": [16715], "aaja.de": [2053], "www.rightnow.com": [14116], "www.bootsthai.com": [2270], "orgid.accelus.com": [19261], "fri-gate.org": [20175], "*.pbs.org": [12416], "cklph.com": [2053], "kiphak.es": [2053], "mike2500.us": [2053], "zs.meituan.com": [10405], "2bl.me": [2053], "earthmaps.co": [2053], "esquina.la": [2053], "join.jolla.com": [8771], "www.kissmetrics.com": [8880], "roarmag.org": [21319], "quiz.infoseek.co.jp": [8277], "support.setcronjob.com": [21418], "i.annihil.us": [1071], "selfservice.nottingham.ac.uk": [11726], "sb.tionghoa.com": [2053], "nuimagemedical.com": [11763], "www.trustico.com": [17069], "nagradnaigra.hofer.si": [338], "upztv.96.lt": [2053], "www.avon.cz": [412], "b.angen.me": [2053], "piflc.xboxlive.com": [18851], "i1.visualstudiogallery.msdn.s-msft.com": [14296], "test1.southend-on-the-move.org.uk": [21513], "grad.ua": [20275], "brkl.worldcat.org": [18748], "webchills.me": [2053], "on.d-k.nu": [2053], "go.piriform.com": [2053], "el.drsimi.mx": [2053], "stanfordhealthcare.org": [15637], "mapcreator.here.com": [7465], "osep.stanford.edu": [15635], "forrester.com": [6167], "emulex.com": [5328], "www2.firstdirect.com": [20127], "www.new-nations.net": [11487], "pic-views.me": [2053], "nruns.com": [11048], "911memorial.io": [2053], "jmc.news": [2053], "lna.io": [2053], "image.tmdb.org": [16084], "nutr.us": [2053], "entwickler.dhl.de": [4108], "wp-tao.com": [18215], "*.yelp.ch": [18979], "www.westmercia.police.uk": [18503], "*.yelp.cl": [18979], "ws.cex.io": [2644], "dex.media": [2053], "aboutus.lego.com": [9222], "sheffield0to19.sheffield.gov.uk": [14939], "plugins.roundcube.net": [14219], "cdn.yldbt.com": [18987], "*.yelp.cz": [18979], "www.en.wiki.hidekisaito.com": [7533], "www.askthe.scotland.police.uk": [21389], "www.wbs-law.de": [18605], "letmechoose.barclaycard.co.uk": [1712], "dellchat.ap.dell.com": [4413], "*.americanbar.org": [975], "gcentral.biz": [6409], "theo.bj": [2053], "ckatz.co": [2053], "static.justromeo.com": [8573], "www.gdata-software.com": [6410], "www.restorethefourth.net": [14050], "static.quidco.com": [13594], "smith.gl": [2053], "v.sdhkresice.cz": [2053], "www.subeta.net": [15812], "bhp.me": [2053], "www.sub.fm": [21596], "assets.americanhunter.org": [19381], "go.samraj.info": [2053], "ea-consult.objective.co.uk": [20979], "301.z4c.us": [2053], "stat.gorcom.ru": [20270], "groups.tigerair.com": [16710], "dae.unizar.es": [17643], "locationsmart.com": [20710], "fr.lastminute.com": [9318], "d.dsy.me": [2053], "popcriti.ca": [2053], "fins.cc": [2053], "yumpu.com": [19054], "bluejeans.com": [2192], "www.rtek2000.com": [13705], "www.safelinking.net": [14470], "media-titanium.cursecdn.com": [4006], "cooltime.com": [2053], "www.biovendor.cz": [1956], "cnrsformation.cnrs.fr": [6314], "yellowpages.apnaindia.com": [1135], "live.qq.com": [13514], "x.raptalk.org": [2053], "ttp.li": [2053], "asmithedtech.co": [2053], "404.foxnews.com.edgesuite.net": [11512], "polle.me": [2053], "bcc.la": [2053], "edfy.us": [2053], "www.fidoalliance.org": [5685], "superm.us": [2053], "confidence.org.pl": [3634], "mayoclinic.com": [10272], "www.gun.io": [7150], "www.unitedrepublic.org": [17503], "thefender.be": [2053], "homeofthefuture.gizmodo.com": [6817], "backup.cursosvirtuales.uned.es": [17446], "iamren.co": [2053], "www.kiraka.de": [18312], "rights.1688.com": [44], "www.jobcorps.gov": [20543], "account.here.com": [7465], "weitz.co": [2053], "couix.net": [2053], "www.crowdin.com": [3896], "logobuilder.mspartner.microsoft.com": [10543], "vorcu.net": [2053], "secure.echomedia.cz": [20003], "j-tv.me": [2053], "ihla.us": [2053], "shop.1and1.com": [61], "bmtn.us": [2053], "webapp2.targusinfo.com": [16040], "*.blog.ajc.com": [332], "an.insure": [2053], "psusa.co": [2053], "fortunechina.oss.aliyuncs.com": [19346], "dirtydut.ch": [2053], "software.mcafee.com": [10282], "*.ip-search.ch": [15949], "stat.linkline.ru": [20693], "login.talemetry.com": [16174], "hd-bits.com": [7387], "st.drweb.com": [4879], "corp.mamba.ru": [10096], "secure.php.net": [12453], "sjm.me": [2053], "accessgudid.nlm.nih.gov": [11241], "fwx.in": [2053], "search.sachsen.de": [14454], "adifferentdialogue.georgetown.edu": [6668], "node4.bbcimg.co.uk": [19502], "xuwen.meituan.com": [10405], "casarray.anadolu.edu.tr": [1025], "s.runwanista.jp": [2053], "ftp.spatialbuzz.com": [15479], "rmjh.me": [2053], "tfc.nyc": [2053], "foxemf.com": [2053], "*.ehsanakhgari.org": [20019], "fie.sc": [2053], "go.wgntv.com": [2053], "www.racked.com": [13731], "surfri.de": [2053], "events.webmoney.ru": [18373], "lqdcptl.co": [2053], "haberbak.in": [2053], "schiet.nu": [2053], "sebb.es": [2053], "itu.dk": [7986], "vogel.de": [18112], "adserver.iminent.com": [8152], "puyang.meituan.com": [10405], "herdict.org": [7464], "contribute.theguardian.com": [16554], "minbzk.nl": [11324], "cdn.xww.ro": [18909], "m.maps.yandex.by": [18953], "netguava.com": [11427], "www.popularresistance.org": [13147], "lancaster.gov.uk": [20634], "link.vbase.me": [2053], "www.pirateproxy.club": [21215], "r.ssw.com": [2053], "cpanda.co": [2053], "content.minimundosonline.com": [10609], "shny.me": [2053], "*.liv.ac.uk": [9640], "i3.rgstatic.net": [13655], "preprod.en.hispeed.ch": [21865], "tafarm.us": [2053], "feedback2.yandex.com.tr": [18954], "watchmaxx.com": [18294], "qumbr.tk": [2053], "resortpro.net": [14044], "elpueblo.com": [5239], "blogs.uni-erlangen.de": [17597], "wifipineapple.com": [18572], "tosback.org": [16103], "*.buzzsprout.com": [19621], "qw.insure": [2053], "dcln.co": [2053], "townnews365-dot-com.bloxcms.com": [16889], "www.speedwellsoftware.com": [21531], "gwh.moderngov.co.uk": [20816], "s.warp.net": [2053], "*.iberia.com": [8043], "ufr.gs": [2053], "www.history.ox.ac.uk": [12392], "code.ionicframework.com": [8488], "drive.yuga.ru": [22121], "www.cff.ch": [15946], "origin-www.nike.com": [11595], "c0.thejournal.ie": [16490], "www.fieldnation.com": [20105], "venda.cp.pt": [3813], "wiki.videolan.org": [17981], "channelspro.ap.dell.com": [4413], "web202.tape.tv": [16210], "housingssp.leeds.gov.uk": [20653], "warmcat.com": [18276], "go.wxmi.com": [2053], "*.komoona.com": [9119], "adriano.ml": [2053], "whskyjlt.co": [2053], "ept.ms": [2053], "idp.geoplatform.gov": [6660], "mailstation.de": [10057], "www.maxim-ic.com": [10260], "www.tumba.ch": [21809], "expandedsupport.com": [5611], "*.cunb.com": [2809], "xnet.cz": [18832], "xwim1.zuno.eu": [19078], "my.getambassador.com": [6707], "short.kudok.com": [2053], "tvnetvoz.vodafone.pt": [18109], "gfwd.at": [2053], "i.scroll.am": [2053], "adweek.com": [711], "smartbrief.com": [15232], "www.amnestyusa.org": [1013], "cpm.hostanalytics.com": [7659], "go.jlc.org": [2053], "corygardner.co": [2053], "dp6.bi": [2053], "ocharles.org.uk": [11813], "filefactory.com": [5904], "www.kintera.com": [9064], "www.energy.ch": [20040], "hypro.co": [2053], "link.ls.net.ar": [2053], "fwprocircu.it": [2053], "www.openresty.org": [12242], "*.hoseasons.co.uk": [18790], "beta.xmpp.net": [18826], "xxxmovie.ml": [2053], "*.greenvehicleguide.gov.au": [7048], "djangoproject.com": [4677], "freshpet.co": [2053], "packages.python.org": [13500], "favn.ir": [2053], "www.blackarch.org": [2088], "sparkbusiness.capitalone.com": [2878], "gyp.rocks": [2053], "www.jungewelt.de": [20562], "ircity.ru": [20495], "www.cygwin.com": [4053], "impo.ch": [3712], "eventlog.centrum.cz": [19674], "ssl.enfield.gov.uk": [5359], "deimos.fr": [4395], "www.j-schmitz.net": [8556], "rgh.me": [2053], "bitmaintech.com": [2055], "s-omniture.yell.com": [22096], "www.cathaypacifichost.com": [2963], "www.sustainablefuture.cornell.edu": [3744], "ds4.static.rtbf.be": [14244], "www.matkahuolto.info": [10239], "applepartsstore.com": [1163], "enigmail.net": [5377], "planet.collabora.com": [3481], "www.sogou.com": [21500], "rtt.sg": [2053], "nlbb.osu.edu": [11959], "kproxy.com": [8899], "orders.tigerdirect.com": [16711], "exe.icq.com": [7837], "dvlr.co": [2053], "girly.click": [2053], "i.creativecommons.org": [3848], "sci.lt": [2053], "images.scanalert.com": [14569], "zerodium.com": [19069], "www.elementaryos.org": [5261], "s.hughblong.com": [2053], "postimage.org": [21179], "auf.si": [2053], "abac.us": [2053], "scienceandtechnology.jpl.nasa.gov": [11058], "dvod.us": [2053], "consultations.nidirect.gov.uk": [20910], "windowsupdate.microsoft.com": [10542], "shop.nero.com": [11354], "bwfd.be": [2053], "vms.api.qbrick.com": [13529], "ldn.linuxfoundation.org": [9572], "www.abiggersociety.com": [422], "www.ceneo.pl": [2997], "apps.rakuten.co.jp": [13768], "www.baremetrics.io": [1715], "status-ksplice.oracle.com": [12284], "static.songcoleta.com": [15383], "*.getoutofdebt.org": [6719], "www.sidibouras.com": [15011], "m.bnz.co.nz": [1576], "stoate.co": [2053], "lftr.mp": [2053], "www.sportsauthority.com": [15542], "www.history.state.gov": [17345], "*.londonist.com": [9747], "davpack.co.uk": [4312], "www.my-zone.net": [20858], "tedx.fi": [2053], "age.lenta.ru": [20661], "bluekrypt.be": [2187], "smlbth.co": [2053], "maps.bradford.gov.uk": [2317], "services.parliament.uk": [21075], "fredca.de": [2053], "www.jonasboserup.dk": [20548], "mjr.wtf": [2053], "arabic.kaspersky.com": [8958], "*.systemcenteradviser.com": [16014], "nriapply.hdfcbank.com": [7389], "codefisher.org": [3428], "l.63.co.za": [2053], "sl.klogmand.dk": [2053], "stec-t10.xhcdn.com": [18815], "slickdeals.net": [15203], "gestionproyectos-desa2.ulpgc.es": [17411], "lmtr.co": [2053], "l.basicpower.fr": [2053], "news.anthem.com": [19395], "migrol-olio-combustibile.ch": [10562], "on.rare.us": [2053], "beta.disk.yandex.com": [18956], "src.responsive.io": [14047], "bloom470.link": [2053], "www.freifunk-karlsruhe.de": [6310], "*.ntop.org": [11754], "clocurto.us": [2053], "sholokhovo.beeline.ru": [1801], "login.szn.cz": [14891], "www.user-agents.org": [17721], "medallion.kachingle.com": [8916], "tomorrow-focus-media.de": [16814], "eecm.cr.yp.to": [3817], "blu.berkeley.edu": [17526], "static3.readyflowers.com": [13853], "account.samsung.com": [14501], "anfrage.os-cillation.de": [12318], "102.alibaba.com": [850], "rog.li": [2053], "vps.net": [17800], "news.microsoft.com": [10543], "forum.avira.com": [1489], "tls.li": [16784], "envt.in": [2053], "online.cheshireeast.gov.uk": [3124], "discussions.nokia.co.uk": [9629], "logisti.co": [2053], "www.domain.fi": [4740], "remote.hslu.ch": [7728], "www.mylivechat.com": [10999], "fantlab.ru": [5772], "www.csail.mit.edu": [9916], "www.networking4all.com": [11466], "login.adaramedia.com": [598], "flnt.it": [2053], "campbx.com": [2833], "cdn.samssoftware.com.au": [14499], "digitalfreedom.io": [4589], "reallythe.re": [2053], "s.ttactua.be": [2053], "cave.mn": [2053], "neas.nhs.uk": [11102], "teby.tk": [2053], "www.devonjobs.gov.uk": [19906], "lapatilla.com": [9269], "sa123.net": [2053], "www.trustsign.com.br": [17058], "www.gosoapbox.com": [6908], "1rish.tk": [2053], "prefetch-maps.yandex.com": [18956], "chat.rwe.de": [21349], "pop.market": [2053], "www.scanningpens.co.uk": [14575], "s.pony.fm": [13122], "mx.24mx.com": [2053], "el.4.boardgamearena.com": [2219], "ghar.at": [2053], "tjportal.worldcat.org": [18748], "wald.intevation.org": [18250], "xvideosx.tv": [18837], "content.shaklee.com": [14899], "account.microsoft.com": [10543], "ludialudom.sk": [9816], "www.virurl.com": [17781], "checkout.adultshopping.com": [684], "apawlo.ws": [2053], "myaccount.mutualofamerica.com": [10921], "www.halcyon.sh": [7303], "img.alicdn.com": [846], "lif.cx": [2053], "telekom.com": [16345], "wayv.it": [2053], "ovirt.org": [11889], "www.payeer.com": [12685], "static.3dsupply.de": [160], "sngbx.me": [2053], "get.cards.land": [2053], "www.prowebsector.gr": [13342], "www.grist.org": [20284], "polymer-project.org": [13118], "tr.netsalesnetwork.com": [20893], "panjin.jd.com": [8571], "gajjar.me": [2053], "*.givex.com": [6811], "cryptome.thecthulhu.com": [16600], "emilyja.de": [2053], "*.kobobooks.es": [9101], "vendorcentral.amazon.es": [19370], "open.aliexpress.com": [19343], "arne.schuldt.info": [1243], "forums.epicgames.com": [5423], "mynw.me": [2053], "gknz.fr": [2053], "www.condenaststore.com": [3622], "fs22.formsite.com": [20148], "www.gexpro.com": [6742], "lj.rossia.org": [9684], "www.fullcirclestudies.com": [6365], "unit.ec": [2053], "dshield.org": [4160], "hastings.gov.uk": [7366], "www.voltaicsystems.com": [18128], "business.upc.ie": [17279], "edlyn.co": [2053], "developer.blackberry.com": [2102], "*.rsshog.com": [14241], "hellholecheesefactory.org": [7431], "*.bethere.co.uk": [16332], "www.johoobuy.com": [8763], "promo.vedomosti.ru": [21900], "es.nowf1.com": [2053], "gayromeo.com": [12983], "filter.impactradius.com": [8160], "www.uic.edu": [17517], "askapatient.com": [1300], "www.gn.apc.org": [1329], "*.ausgovboards.gov.au": [1430], "pamconsult.com": [12556], "img.58cdn.com.cn": [202], "community.teespring.com": [16316], "przewodniki.panoptykon.org": [12570], "susn.me": [2053], "j2.hitravel.xyz": [2053], "conab.ly": [2053], "kdmy.co": [2053], "parking.tmbc.gov.uk": [16082], "naro-fominsk.beeline.ru": [1801], "www.steg-electronics.ch": [14425], "i.ubn.jobs": [2053], "leloop.org": [9347], "opensrs.net": [12166], "helpx.adobe.com": [655], "slitaz.org": [15199], "musicweek.com": [10904], "piwik.org": [12950], "www.zetel.de": [19167], "*.ruptureit.com": [21342], "swdp.objective.co.uk": [20979], "wede.md": [2053], "crm.it-agenten.com": [7983], "aeon.lib.umd.edu": [17549], "l.jana.com": [2053], "bbap.ps": [2053], "tvplay.beeline.ru": [1801], "webapps.med.cuhk.edu.hk": [2747], "avherald.com": [19461], "my.balabit.com": [1668], "petart.me": [2053], "*.redbull.de": [13900], "img4.eadaily.com": [19986], "b.mpbk.us": [2053], "site.yandex.com.tr": [18954], "u8.hitravel.xyz": [2053], "mediamath.com": [10323], "res.freebase.com": [6275], "p-a.us": [2053], "www.myplatinumpak.com": [13007], "martinell.is": [2053], "test.channel4.com": [3062], "jackjones.co": [2053], "globalconnections.hsbc.com": [7233], "profitlab.agima.ru": [19324], "volumio.org": [21946], "ks.airinum.com": [2053], "cs.drexel.edu": [4854], "10x.com": [2053], "download.cloud.secondlife.com": [14706], "04.imgmini.eastday.com": [5119], "lk.mamf.com.br": [2053], "mab.sbi.co.in": [14320], "legacy.macfound.org": [9983], "ni.gl": [2053], "www.linux-mips.org": [9573], "aqmensrv.edina.ac.uk": [20007], "extranet.bls.ch": [1566], "furvwf.co": [2053], "moerdijk.nl": [11324], "www.timeshighereducation.com": [16735], "raa.link": [2053], "benjib.link": [2053], "api.sklik.cz": [15161], "sojc.co": [2053], "www.gaytimesmagazine.com": [20210], "moderation.lego.com": [9222], "plymouth.ac.uk": [13055], "wiki.gnupg.org": [6886], "pfizerpro.com": [12824], "siwgallery.stanford.edu": [15635], "elibrary.westminster.gov.uk": [18516], "*.unanimis.co.uk": [17430], "arisebitcoin.com": [1230], "www.tomtom.com": [16812], "*.religionnews.com": [13990], "min.us": [10625], "static1.eadaily.com": [19986], "dialet.to": [2053], "www.torrentz.to": [16862], "*.hcl.com": [7179], "opensignal.com": [12172], "ace.c9.io": [3339], "siteway.org": [2053], "tgt.guru": [2053], "tracking.thehut.net": [16489], "seconfig.sytes.net": [14709], "www.union.illinois.edu": [17544], "dlvroo.it": [2053], "rndwn.com": [2053], "viglink.com": [18003], "blb.tl": [2053], "www.tchibo.de": [16240], "osr.im": [2053], "lomabuena.info": [2053], "www.fanoe.dk": [5770], "i.iot-valley.fr": [2053], "culturesforhealth.com": [3988], "uk.godaddy.com": [6898], "gza.cc": [2053], "pspudb.com": [5326], "svcti.me": [2053], "visitestonia.com": [18070], "pages.wustl.edu": [18290], "media.24ways.org": [93], "www.t37.net": [16034], "tasb.org": [16411], "www.indacoin.com": [8199], "www.nrastore.com": [20954], "*.pubdirecte.com": [13428], "citgo.net": [2053], "ntr.ndc.nasa.gov": [11058], "u.pau.lk": [2053], "sepa.org.uk": [21412], "url.jckzone.com": [2053], "secure.xsolla.com": [18896], "www.duckdns.org": [4889], "silencerforum.com": [21447], "uploads.va.gov": [17297], "l.asx.hu": [2053], "de.duo.com": [4900], "blade23.ual.es": [17361], "l.caschw.com": [2053], "forms.cotswold.gov.uk": [19797], "ecocar2.osu.edu": [11959], "podz.info": [2053], "galg.co": [2053], "www.student.nvcc.edu": [11787], "encuestas.uniovi.es": [17479], "www.bypassingcensorshipinthe.uk": [19622], "svenskakyrkan.se": [15926], "evi.nz": [2053], "ca.redhat.com": [13909], "pku.ahosting.cz": [778], "book.douban.com": [4802], "sturg.me": [2053], "www.digitalpoint.com": [4581], "www.canon.si": [2868], "gton.me": [2053], "www.actionsalvage.com": [530], "www.eth-0.nl": [5481], "www.canon.se": [2868], "stats.capitalone360.com": [2879], "kauihou.net": [2053], "blacksuitit.com": [2092], "point3.co": [2053], "youtube.co.za": [19016], "buyaplan.co.uk": [19618], "sourcesoftdownload.com": [15432], "diagon.al": [2053], "mbs.re": [2053], "www.businessinsider.com": [2512], "store.bistudio.com": [2232], "html5-player.libsyn.com": [9482], "statistikk.sparebank1.no": [21524], "grnfla.com": [2053], "www.tryhaskell.org": [17080], "advq.yandex.kz": [18957], "www.reco.se": [13881], "meet.jitsi.org": [8731], "ylyc.worcestershire.gov.uk": [22046], "www.optoutprescreen.com": [12266], "webstats.unizar.es": [17643], "img.new.livestream.com": [9676], "skyscan.it": [2053], "vosero.de": [2053], "lkcs.co": [2053], "s79.cnzz.com": [3391], "portal.vik.bme.hu": [1570], "www.hospitalityleaders.com": [7644], "sprtlly.me": [2053], "fmedley.com": [2053], "sdcl.co": [2053], "syed.io": [2053], "www.virag.si": [18023], "hols.info": [2053], "www.blog.edoeb.admin.ch": [21629], "www.gibraltar.gov.gi": [6757], "skhynix.com": [14367], "autodiscover.yandex.kz": [18957], "www.trash.net": [16962], "bitvc.com": [1998], "abi.org.uk": [278], "static.dl.mail.ru": [10040], "brln.be": [2053], "samr.ml": [2053], "engagesciences.com": [5361], "demo.ivoad.com": [2053], "www.thefoundry.co.uk": [16544], "als.bz": [2053], "server3.web-stat.com": [18344], "astatic.weborama.fr": [18434], "www.mouseflow.de": [10812], "whstatic.1and1.com": [61], "*.qt-apps.org": [21007], "com-24h.com": [2053], "www.globaltestsupply.com": [6841], "capsuleweb.ulaval.ca": [17515], "www.anthropologie-societes.ant.ulaval.ca": [17515], "jshr.in": [2053], "tops.yandex.com.tr": [18954], "secure.funio.com": [6382], "njit.edu": [11121], "admin.artsy.net": [1270], "www.cnblogs.com": [19743], "scmp.rs": [2053], "go.oceanik.com": [2053], "pianistm.ag": [2053], "e-grants.ed.gov": [4988], "gfx7.hotmail.com": [7704], "bvg.de": [1623], "sso.talktalk.co.uk": [16184], "renn999.cc": [2053], "www.bitcoinstore.com": [2023], "luk.ie": [2053], "begrep.difi.no": [4547], "bulletinoftheschoolofmedicine.wustl.edu": [18290], "o.vevo.com": [17773], "hfxne.ws": [2053], "*.spriza.com": [15569], "m.google.co.*": [6965], "wilg.me": [2053], "*.joyentcloud.com": [8801], "www.thinkwithgoogle.com": [16632], "myheritage.fi": [11023], "www.encryptr.org": [5340], "blog.apichangelog.com": [19402], "merchants.gamersfirst.com": [6553], "services.justaguy.pw": [8850], "www.gofundme.com": [6904], "qli.mx": [2053], "the-rad.co": [2053], "tmsc.us": [2053], "www.cloudns.net": [3335], "etd.ohiolink.edu": [11961], "myheritage.fr": [11023], "my.thechive.com": [16524], "alternatifbilisim.org": [922], "library.uwb.edu": [17356], "*.spreadshirt.no": [15552], "cloudfoundry.cloudbees.com": [19736], "bbru.in": [2053], "www.aspirationtech.org": [1308], "s28.cnzz.com": [3391], "styles-uat.freescale.com": [6302], "devlieghe.re": [2053], "bake.so": [2053], "www.photoblab.com": [12851], "on.biolane.hk": [2053], "d0a12.es": [2053], "conferencecenter.stanford.edu": [15634], "fs24.formsite.com": [20148], "jmorr.is": [2053], "cpd.io": [2053], "channel9.msdn.com": [9953], "smap.jpl.nasa.gov": [11058], "x10hosting.com": [18799], "arabic.iraq.usembassy.gov": [21879], "www.zoho.co.jp": [19201], "*.lacaixa.es": [9268], "www.winbond.com": [18634], "*.networksolutions.com": [11455], "www.above.com": [468], "lbstr.de": [2053], "kdirect.tk": [2053], "bfgoodri.ch": [2053], "www.gettyimages.es": [6741], "ushmm.org": [17736], "citizensadvice.citizensadvice.org.uk": [19717], "portfolio.it.ox.ac.uk": [17557], "docreader.readspeaker.com": [13843], "www.butterflynetinc.com": [2522], "sell2.in-tend.co.uk": [20448], "b.isho.lt": [2053], "www.iop.org": [8345], "marcus.vc": [2053], "shacknews.com": [14895], "www.frameworks-scotland2.scot.nhs.uk": [11102], "commerce.guidestar.org": [7135], "www.secure-os.org": [14724], "*.channelx.biz": [3064], "jzg.meituan.com": [10405], "p2r.me": [2053], "fatboy.tk": [2053], "s3.qhimg.com": [13531], "www.lookback.io": [9760], "bwdlibraries.spydus.co.uk": [21546], "www.cars.ru": [19650], "cnnmon.ie": [2053], "on.capvie.info": [2053], "netstorage.metrolyrics.com": [10500], "consumerprivacy.merkleinc.com": [20783], "gradwellcloud.com": [7012], "passport.baidu.com": [1661], "yamal.rt.ru": [13703], "enel.dict.cc": [4536], "mxes.co": [2053], "mttbrks.co": [2053], "twinprime.com": [17157], "*.hr.columbia.edu": [3512], "cdn.dealer.com": [4334], "dfu.co": [2053], "kenengba.com": [9000], "www.16chan.nl": [46], "liaoyang.meituan.com": [10405], "answers.argos.co.uk": [1223], "www.looppay.com": [9768], "www.minimundosonline.com": [10609], "m.12thave.org": [2053], "www.swarmapp.com": [21626], "im35.115.com": [25], "4kdownload.com": [179], "earth.stanford.edu": [15635], "www.regress.admin.ch": [21629], "*.hostmonster-cdn.com": [7681], "us2.co": [2053], "support.mastermindsdigital.com": [10223], "s27.cnzz.com": [3391], "i05.c.aliimg.com": [854], "minted.com": [10623], "in.isidewith.com": [20414], "facebook.malwarebytes.org": [10093], "www.cryptostorm.org": [3960], "aurous.me": [1408], "img.revolutiontt.me": [14083], "www.chris.lu": [3163], "www.stupidcensorship.com": [15803], "wusfnews.wusf.usf.edu": [17560], "d.bz": [2053], "universal.ac": [2053], "nehta.gov.au": [11256], "rnd.feide.no": [5858], "ru.gamigo.com": [6563], "cdn.elec.ru": [20021], "ulyanovskaya-obl.beeline.ru": [1801], "kp.cc": [2053], "link.6ja.net": [2053], "nei.nih.gov": [11241], "ws.edu.isoc.org": [7974], "fdwr.co": [2053], "fullslate.com": [6368], "adserverwc.adtechus.com": [679], "www.remnux.org": [13647], "*.bangor.ac.uk": [1687], "my.gpass.org": [2053], "salty.run": [2053], "npjnb.ab4all.com": [19254], "www.westorangehistory.com": [18506], "dmva.co": [2053], "clbs.co": [2053], "lot.sample.yahoo.co.jp": [18944], "info.degica.com": [3396], "www.samharris.org": [14497], "t-engine.org": [16022], "epson.ca": [5434], "www.pgbrandsampler.ca": [13349], "www.greaterchinajobs.g4s.com": [20194], "www.naughtydog.com": [11296], "consult.tandridge.gov.uk": [16198], "impactsoftcompany.com": [8161], "ebjes.se": [2053], "www.pamfax.biz": [12556], "thingsquare.com": [16627], "mgbyt.es": [2053], "www.amerika21.de": [989], "www.retriever-info.com": [14058, 14059], "krl.meituan.com": [10405], "aralbalkan.com": [1190], "wolframcloud.com": [18700], "agil.me": [2053], "returnpath.com": [14066], "lathm.co": [2053], "dool.ca": [2053], "luanxian.meituan.com": [10405], "avaflix.ga": [2053], "play.st": [2053], "www.tello.com": [16358], "carousell.com": [2919], "www.extensiblewebmanifesto.org": [5631], "gymglish.co.uk": [7167, 7168], "www.kryptos.sh": [9171], "ax3.ca": [2053], "www.setcronjob.com": [21418], "prkrtylr.me": [2053], "go.cw33.com": [2053], "beta.falkirk.gov.uk": [5754], "www.imediaconnection.com": [7908], "*.viewcentral.com": [18002], "hough.me": [2053], "j.amoad.com": [352], "dreambox.com": [19959], "secure.gettyimages.at": [6741], "apps.community-uat.freescale.com": [6302], "www.zidisha.org": [19174], "d8l.uk": [2053], "sports.williamhill.com": [18615], "www.cpaste.org": [19808], "erkamp.me": [2053], "iamdo.ug": [2053], "attic.apache.org": [1125], "udrapt.com": [2053], "www.primabanka.sk": [13284], "www.clicknupload.link": [19730], "myaccount.cheshireeast.gov.uk": [3125], "mein.1und1.de": [82], "wdc-api04.mollom.com": [10724], "cdn01.x-plarium.com": [22076], "url.bjr.pro.br": [2053], "nowness.com": [11732], "beon.io": [2053], "url.jackdavi.es": [2053], "zenmate.sg": [19133], "docultu.re": [2053], "dml.georgetown.edu": [6668], "yourpshome.net": [19033], "www.pizzaportal.pl": [21140], "www.savethekoala.com": [1418], "cic.ch": [1702], "md.fbk.info": [5818], "tucan.travel": [2053], "trekfm.link": [2053], "wordp.ly": [2053], "www.whatsmychaincert.com": [18533], "press.malwarebytes.org": [10093], "i1.rgstatic.net": [13655], "apps.opera.com": [12252], "wlth.fr": [2053], "www.legolanddiscoverycentre.co.uk": [9391], "dialogue.forestry.gov.uk": [20144], "robert.sesek.com": [14874], "bvc.me": [2053], "xpl.co": [2053], "s1.uicdn.net": [17236], "searchnetworking.de": [16273], "connx.de": [2053], "bitso.com": [2070], "www4dev.uwm.edu": [17580], "i.warosu.org": [18279], "go.pol.bbelements.com": [1764], "roem.ru": [14177], "myexpenses.nytco.com": [11187], "wifilib.fr": [18583], "moodle-ext.thm.de": [16066], "images.online.microfocus.com": [10528], "www.redfern.me": [13927], "f.suntravel.xyz": [2053], "ads.glispa.com": [6832], "gugun.ga": [2053], "tinypng.com": [16755], "hhl.li": [2053], "nanopool.org": [11220], "photopay.net": [12853], "franklinin5.com": [2053], "tonede.af": [2053], "www.wireclub.com": [18663], "www.fybsg.com": [5725], "wiki.rz.htw-berlin.de": [7246], "dsr.pm": [2053], "thetrinity.ch": [2053], "mc1.maps.live.com": [9644], "s1.pir.fm": [12942], "*.clickberry.tv": [3316], "cryptocloud.com": [3940], "i.c.dk": [2556], "sched.org": [14589], "www.webnames.ru": [21994], "lynton.ws": [2053], "euroforum.com": [5518], "websitealive8.com": [18445], "blog.pivotal.io": [12947], "intranet.cnrs.fr": [6314], "lkrefi.com": [2053], "wirral.firmstep.com": [20125], "film.ru": [20112], "www.ixirc.com": [20521], "live.meetme.com": [10378], "mrt.gs": [2053], "bobvdv.be": [2053], "ec.delmarva.com": [2053], "dha.gov.au": [4385], "www.ordermychecks.com": [7339], "ltx-fashion.de": [2053], "www.providerfinder.anthem.com": [19395], "waag.org": [18235], "acpa.ca": [784], "www.peacecenter.org": [12715], "www.healthiertogethergm.nhs.uk": [11102], "codepicnic.com": [3411], "blog.montyprogram.com": [10757], "sls.a1le.bz": [2053], "*.kirjoitusalusta.fi": [9066], "banners.store.apple.com": [1160], "ash.sh": [2053], "gradsrv.itsc.cuhk.edu.hk": [2747], "www.memorydealers.com": [10425], "www.tofinosecurity.com": [16800], "*.filmthreat.com": [5920], "mojandroid.sk": [10722], "www.hsph.harvard.edu": [7351], "ohs.stanford.edu": [15635], "w.exekuo.com": [2053], "mishi.ninja": [2053], "www.purevpn.com": [13469], "update.microsoft.com": [10542], "tampi.co": [2053], "ntrs.larc.nasa.gov": [17304], "dentalxchange.com": [4993], "redwn.gs": [2053], "login.anadolu.edu.tr": [1025], "president.georgetown.edu": [6668], "news.google.com.*": [6965], "australia-unsc.gov.au": [1417], "www.kralenstart.nl": [9155], "9.sisap.cat": [2053], "askforta.sk": [2053], "intechnology.co.uk": [8184], "typora.io": [17193], "www.porndig.com": [21173], "mysloan.mit.edu": [9916], "fusiontools.clickmotive.com": [3307], "www.zutphen.nl": [11324], "newsroom.fb.com": [5814], "gift.stanford.edu": [15635], "data.bassetlaw.gov.uk": [1736], "trs4.me": [2053], "on.30lin.es": [2053], "wndry.com": [2053], "download.uhulinux.hu": [21837], "mobileapps.lowes.com": [9800], "ica.to": [2053], "gradschool.umd.edu": [17549], "shop.poema.ro": [2053], "onit.im": [2053], "www.stat.onestat.com": [12044], "www.kapiton.se": [8941], "tweakers.net": [17143], "nobull.co": [2053], "fh-kiel.de": [17584], "www.startnext.com": [15665], "frsh.lt": [2053], "www.iem.thm.de": [16066], "4-2.co": [2053], "huopin.1688.com": [44], "capsu.la": [2053], "static.playmates.com": [13029], "cdn.comparethemarket.com": [3575], "readability.com": [13848], "www.popcorntime.ag": [21170], "static.cineclick.com.br": [3204], "pentest-tools.com": [21104], "ylai.state.gov": [17345], "www.alternc.org": [919], "lyr-ics.in": [2053], "aom.im": [2053], "x.namuk.com": [2053], "urbn.xyz": [2053], "directory.fsf.org": [5713], "www3.havant.gov.uk": [20318], "bugsy.grid.aau.dk": [427], "mymm.co": [2053], "flixbus.se": [6047], "batinfo.co": [2053], "portrait6.sinaimg.cn": [15091], "cdn4.thr.com": [16068], "jedec.org": [20532], "community.lloydsbank.com": [9686], "cwbys.co": [2053], "pgl.co.uk": [7597], "einstein.phys.uwm.edu": [17580], "*.zonza.tv": [19071], "www.strato-hebergement.fr": [14428], "i1.tietuku.com": [16704], "suzie.io": [2053], "music.xbox.com": [18850], "id.cloudflare.com": [3344], "popcorntime.ws": [21170], "on.aizzard.net": [2053], "shadforth.co": [2053], "sqwid.co": [2053], "openjb.com": [2053], "download.dnscrypt.org": [4136], "www.nllapps.com": [20916], "fpe.uniovi.es": [17479], "it.mail.ru": [10040], "scontent-b.cdninstagram.com": [2616], "developer.realvnc.com": [13860], "tmn.to": [2053], "www.loveplanet.ru": [9790], "files.*.geblogs.com": [6644], "ncjrs.gov": [11072], "www.bravelyonward.com": [2347], "soch.us": [2053], "brianb.tech": [2053], "networkforgood.org": [11456], "ajax.vacationroost.com": [17819], "projects.blender.org": [2120], "dvlphnt.co": [2053], "hinck.link": [2053], "www.adspeed.net": [580], "*.wepay.com": [18320], "ap.unit4.com": [21856], "aviris.nkl.fi": [1490], "www.navigantresearch.com": [11304], "www.broadland.gov.uk": [19594], "hsbsolomon.com": [2053], "www.herbal-nutrition2.net": [7462], "*.good.net": [6954], "*.cfspx.digitalriver.com": [4566], "www.imn.htwk-leipzig.de": [7736], "geekify.com.au": [6625], "qupzilla.com": [13612], "catalogue.ic.nhs.uk": [11102], "levo.im": [2053], "bytejail.com": [2546], "uat.splash.riverbed.com": [14140], "*.acquia.com": [518], "vatan.im": [2053], "negocios.vodafone.pt": [18109], "rt.dengisend.ru": [4440], "www.lakebtc.com": [9287], "pro.marinsoftware.com": [10161], "camlinker.co": [2053], "alau.io": [2053], "lazza.me": [2053], "www.fressnapf.de": [6326], "www.wavecon.de": [18305], "www.dnsstuff.com": [4145], "umag.ca": [17358], "brennie.uk": [2053], "www.polit.ru": [13094], "api.mixbit.com": [10654], "vianetfuelsolutions.com": [17955], "evfree.cc": [2053], "science.williams.edu": [18616], "link.dhym.us": [2053], "rnpn.ch": [2053], "secure.johnstonpress.co.uk": [8762], "mozest.org": [10838], "dlvry.cm": [2053], "support.netapp.com": [11374], "tvcom-tv.ru": [21822], "quack.us": [2053], "www.twinings.co.uk": [17156], "ppdb.hslu.ch": [7728], "e-portfolio.plymouth.ac.uk": [13055], "trtworld.co": [2053], "li.4ngs.com": [2053], "clkrev.com": [3331], "torrentz.eu": [16863], "docs.kde.org": [8871], "go.padsdel.com": [12530], "videoapi.my.mail.ru": [10040], "www.taxandbenefits.bolton.gov.uk": [19569], "www.londontrustmedia.com": [20716], "kodewulf.in": [2053], "youqn.co": [2053], "wfr.re": [2053], "gingerc.me": [2053], "www.bandisoft.com": [1685], "d3c0d3.com": [2053], "projects.parabola.nu": [12589], "www.google.*": [6966, 6968, 6973, 6975], "chka.se": [2053], "u.i-sc.ru": [2053], "japgr.pl": [2053], "bmcfadden.me": [2053], "interact.f5.com": [5659], "f100.me": [2053], "www.rawstudio.org": [13817], "images.shaklee.com": [14899], "*.anyoption.com": [1120], "gumroad.com": [7148], "www-stats.kaltura.com": [8927], "apps.warwickshire.gov.uk": [21980], "schneider-electric.com": [14598], "link.henley.co": [2053], "e-ent.de": [2053], "www.hitslink.com": [7568], "provo.io": [2053], "project-lbs.web.cern.ch": [2632], "pdc.st": [2053], "bitcalm.com": [1977], "i.ddr5.tech": [2053], "remit.hdfcbank.com": [7389], "www.payu.ru": [12702], "www.infoseek.co.jp": [8277], "yano.do": [2053], "firedrive.com": [5973], "opsca.mp": [2053], "l1nk.it": [2053], "cdn1.spiegel.de": [15523], "www.buzzfocus.com": [2532], "static2.avast.com": [1484], "archomedia.com": [1208], "simplegiver.com": [10708], "virtkick.io": [18035], "www.fsoa.org.uk": [20180], "www.e-ksf.org": [4939], "da.3.boardgamearena.com": [2219], "www.safecount.net": [14469], "www.melkweb.com": [2842], "cclcm.ccf.org": [3295], "miramax.com": [10630], "www.thompson.com": [16645], "ad.aim4media.com": [780], "fjallfoss.fcc.gov": [5826], "www.unionpay.com": [17478], "msuth.me": [2053], "server.icewarp.com": [8058], "www.oumedicine.staywellsolutionsonline.com": [12345], "bios-mods.com": [1961], "ju.stin.li": [2053], "nvenergy.com": [11170], "www.plastidipuruguay.com": [13001], "chillmenau.de": [2053], "service.burst.net": [2503], "mnrva.co": [2053], "kundcenter.prq.se": [12493], "alumni.state.gov": [17345], "nutricentre.com": [11781], "gms.to": [2053], "www.feistyduck.com": [5859], "cdn3.emilstahl.dk": [5310], "internet2.edu": [8427], "310shake.fit": [2053], "piwik.xplr.com": [18889], "hackint.org": [20304], "status.simple.com": [15065], "wcfia.harvard.edu": [7351], "grw.tech": [2053], "csis.gc.ca": [2861], "www.katylee.com": [8972], "vice-sundry-assets-cdn.vice.com": [17959], "heatball.de": [7415], "yg4u.co": [2053], "ncats.nih.gov": [11241], "domena.cz": [4760], "jeanloui.se": [2053], "risell.link": [2053], "toyta.lk": [2053], "on.tumqo.com": [2053], "status.compose.io": [3590], "keygens.nl": [9021], "courses.lis.illinois.edu": [17544], "grabrs.com": [2053], "www.yoursole.com": [19038], "mweb.io": [2053], "riog.biz": [2053], "go.mobiwatch.de": [2053], "swtr.it": [2053], "way.tf": [2053], "crowthornepc.org.uk": [19823], "tempo.juegos": [2053], "tptr.co": [2053], "shopta.city": [2053], "intl.alipay.com": [857], "j.kissinsights.com": [8879], "www.leagueoflegends.com": [9362], "performancewheel.com": [12782], "www.turnoff.us": [21817], "lianshui.meituan.com": [10405], "docs.connect.squareup.com": [15580], "*.onstreamsecure.com": [12085], "app.stitcher.com": [15732], "vendercom.com": [17895], "shoplocal.com": [14961], "ecbicalho.tk": [2053], "vbseo.com": [17761], "ru3.us": [2053], "bauble.it": [2053], "fraedom.com": [20155], "icompass.insightexpressai.com": [8322], "bright-things.com": [2372], "www.marketdojo.com": [10174], "calibre-ebook.com": [2799], "shp.sx": [2053], "*.imagesbn.com": [8132], "bytl.co": [2053], "www.netfox.ru": [11423], "zunyi.meituan.com": [10405], "cryptocointalk.com": [3926], "virtualearth.net": [18046], "shp.sn": [2053], "*.dlisted.com": [4682], "tor.freedom.press": [6286], "*.emv3.com": [5296], "s0.life.itc.cn": [8536], "www1.eere.energy.gov": [5355], "www.ua-hosting.com.ua": [17359], "eneo.dict.cc": [4536], "ctserc.net": [2053], "go.temabbm.com": [2053], "go.emitis.ir": [2053], "rickodc.com": [2053], "go.rm.fm": [2053], "www.vg247.com": [21916], "www.illumos.org": [8119], "kennetnorthwilts.greenparty.org.uk": [7052], "adbusters.org": [605], "zeuscat.com": [19170], "www.whoshiring.io": [18567], "go.q13fox.com": [2053], "www.brokentoaster.com": [2413], "cunyjpl.us": [2053], "eas4.emediate.eu": [5305], "cr0p.me": [2053], "talk.hbo.com": [7177], "media.idownloadblog.com": [7858], "link.bsa-web.fr": [2053], "pwp.fyi": [2053], "r.mail.ru": [10040], "cdn3.gbot.me": [6934], "factorydirectcabins.com": [5740], "research.yammer.com": [18951], "www.haystacksoftware.com": [7383], "gek.im": [2053], "riff.ly": [2053], "inspection.alibaba.com": [850], "www.boardzoo.com": [2221], "connect.guide": [2053], "wellesley.worldcat.org": [18748], "*.seecrypt.com": [14791], "media1.woolworths.com.au": [18723], "tauntondeane.objective.co.uk": [20979], "www.briandunning.com": [2366], "c1.mifile.cn": [10560], "tesla.com": [21680], "strangeworlds.co.uk": [15760], "homepage.1und1.de": [82], "gxxx.qiyukf.com": [21240], "whybeez.fr": [2053], "iwk.us": [2053], "ehostpros.com": [5795], "www.store.acs.org": [966], "s.ststat.com": [14790], "brandingwarr.io": [2053], "l.nova-vitae.nl": [2053], "*.uvic.ca": [17354], "billing.at-home.ru": [19446], "hit.city": [2053], "doris.desy.de": [4479], "webassets.gunosy.com": [7151], "1.takhsiru.net": [2053], "xsur.tk": [2053], "wolframscience.com": [18701], "mlkscholars.mit.edu": [9914], "www.asdapriceguarantee.co.uk": [19432], "secure.goemerchant.com": [6901], "thn.li": [16067], "www.ocaml.org": [11811], "mojo.st": [2053], "eu3.factorio.com": [20091], "twal.kr": [2053], "pay.q-u.co": [2053], "discvr.co": [2053], "brennu.tk": [2053], "r-hpc.com": [13619], "*.politifact.com": [13095], "user.pictures": [2053], "addm.social": [2053], "acd.mn": [2053], "ems.sbi.co.in": [14320], "weldre1.illuminateed.com": [20430], "tbray.org": [16043], "nfs9.hk": [2053], "www.twisted4life.com": [17161], "tfl.gov.uk": [16956], "rareaviation.com": [13799], "studyinaustralia.gov.au": [15798], "signin.comparethemarket.com": [3575], "origin.myfonts.com": [10948], "www.moava.org": [10675], "thinkingchristian.net": [16633], "membership.nrahq.org.org": [20947], "bit.five8.co": [2053], "astyle.alicdn.com": [846], "29q.co": [2053], "kvn.town": [2053], "www.huizen.nl": [11324], "hertzequipmentrentals.com": [7511], "www.arbor.net": [1193], "lists.wireless.org.au": [18667], "2.dashes.com": [2053], "www.xagyl.us": [18802], "uweb2.host.ie": [4596], "blackhat.com": [2089], "www.kitematic.com": [9075], "effgnt.co": [2053], "www.videopros.com": [17983], "deci.ph": [2053], "goril.ly": [2053], "djkit.com": [4112], "www.jquery.com": [8598], "*.artsprojekt.com": [19118], "tsq.re": [2053], "joker.com": [8768], "jepp.co": [2053], "jmac.ly": [2053], "tepid.litle.com": [9631], "www.wayskinny.com": [18309], "wbtm.co": [2053], "vpnsearch.net": [17795], "medialinx-academy.de": [10340], "greenhouseci.com": [20282], "projects.dm.id.lv": [4117], "saph.twistedmatrix.com": [17162], "srcefd.co": [2053], "ins.iotne.ws": [2053], "rave.ohiolink.edu": [11961], "laweval.neu.edu": [11091], "www.firstamendmentcenter.org": [5988], "utils.kde.org": [8871], "analytics.spongecell.com": [21538], "spctrmdv.us": [2053], "curate.vbstatic.co": [17762], "www.pirateproxy.net": [21709], "pingquan.meituan.com": [10405], "gameinfo.na.leagueoflegends.com": [9361], "2applyclick.me": [2053], "phtr.co": [2053], "b.makahisea.com": [2053], "jonho.lt": [2053], "blog.codecentric.de": [3422], "press.udemy.com": [17393], "www.respekt.cz": [21297], "mmf.cc": [2053], "www.browserid.org": [2424], "www.typo3.org": [16149], "blns.in": [2053], "u.aliexpress.com": [847], "www.synthetix.net": [15997], "on.ae.com": [2053], "staticsitegenerators.net": [15683], "nic.ar": [11106], "medias3.prestashop.com": [13265], "homebase.co.uk": [7621], "statics.plurk.com": [13050], "*.biblesociety.co.za": [19017], "www.openarchives.org": [12198], "mcch.at": [2053], "nic.ac": [11574], "*.caseking.de": [2935], "fayve.me": [2053], "my.n8d.at": [2053], "www.jappix.org": [8665], "xmn.io": [2053], "l.agoama.tw": [2053], "rantoulpress.com": [13785], "cdn.amazon.jobs": [951], "cmgventur.es": [2053], "elondr.es": [2053], "mvn.io": [2053], "striata.at": [2053], "www.lucidpress.com": [9810], "cogneurosociety.org": [19751], "api2.wosign.com": [18693], "motorhome.ma": [2053], "blog.webonic.hu": [18432], "cgar.ch": [2053], "hailavenger.com": [7296], "d.rnk.me": [2053], "www.ceredigion.gov.uk": [3025], "excelatlife.com": [20076], "tfi.sh": [2053], "ctep-ebp.com": [2740], "www.mea.elsevierhealth.com": [5289], "1.dbstatic.no": [19866], "go.mrsnorum.com": [2053], "prefs.zemanta.com": [19128], "ln.niekis.lt": [2053], "www.inf.tu-dresden.de": [16126], "trainingindustry.com": [16931], "www.coverstand.com": [3796], "ace-host.net": [509], "static.victorinox.com": [17966], "heute-show.de": [22127], "i.earn.org": [2053], "alertbot.com": [828], "flecs.alfabank.ru": [842], "crate.co": [2053], "login.weixin.qq.com": [13514], "*.icsdelivery.com": [8070], "forumatic.com": [6183], "cdn.els-cdn.com": [5284], "*.doe.gov": [17496], "rcat.co": [2053], "www.joycasino1.com": [20552], "out.ofsite.eu": [2053], "livewire.amnesty.org": [994], "openbank.ru": [21008], "bueagl.es": [2053], "systemintegra.ru": [16013], "www.ja-sig.org": [8670], "portal.iter.org": [7992], "pic8.58cdn.com.cn": [202], "www.fomnetworks.com": [5697], "img1.2345.com": [87], "css.cals.cornell.edu": [3744], "loc.gov": [9690], "eroshare.com": [5454], "democracyinaction.org": [4432], "account.my.t-mobile.com": [16026], "secure.nildram.net": [11599], "patron.fsf.org": [5713], "www.internetfreedomfestival.org": [20478], "www.eastdane.com": [19992], "downloads.haskell.org": [7361], "itch.io": [8537], "static.marketwatch.com": [10185], "panel.djangoeurope.com": [4679], "www.yellowbook.acs.org": [966], "api.freebase.com": [6275], "www.angreifer.org": [1057], "softcreatr.de": [15340], "wayfsp.wayf.dk": [18192], "pdi.gr": [2053], "jiveworld.jivesoftware.com": [8733], "bulletin.georgetown.edu": [6668], "partspider.com": [12625], "link.jrnsg.de": [2053], "bba.sg": [2053], "unity3d.com": [17506], "www.interdiscount.ch": [3712], "mttd.net": [2053], "shmnt.me": [2053], "investor.tremorvideo.com": [16987], "milkandmore.co.uk": [10583], "businessfinder.mlive.com": [9927], "domainauctions.moniker.com": [9018], "vdara.lv": [2053], "www.hoteltotravel.com": [7700], "supportcenter.checkpoint.com": [3106], "*.pokylinux.org": [13082], "link.21in1.com": [2053], "j-p.al": [2053], "astronomicaltours.net": [1340], "aka.ph": [2053], "t.mutemuse.com": [2053], "www.siteadvisor.com": [15110], "migipedia.ch": [10566], "o2shop.cz": [16332], "globalweb.co.uk": [6858], "maninthemirror.org": [10100], "www.fastcodesign.com": [5796], "w.petiz.me": [2053], "v.reler.org": [2053], "bicademy.bite.lt": [2041], "www.cimbclicks.com.my": [2663], "zh.chaturbate.com": [3093], "s.miyachiki.me": [2053], "i.bigmir.net": [1919], "suggests.rasp.yandex.com": [18956], "stacklet.com": [15616], "gicl.me": [2053], "ads.ventivmedia.com": [17900], "l.nhz.de": [2053], "racf.ca": [2053], "rockpapershotgun.com": [14168], "dmcargo.ahosting.cz": [778], "customercenter.truecommerce.com": [21800], "tlee.co": [2053], "nike.com": [11595], "adnetexpress.net": [19296], "youtube.com.lv": [19016], "www.autobytel.com": [1461], "privacy.stanford.edu": [15635], "wimp.com": [18623], "kuup.me": [2053], "www.ind.ie": [8197], "www.securepurchaseserver.com": [14754], "youtube.com.lb": [19016], "www.dearbytes.com": [4341], "voltage.com": [18127], "www.appcanary.com": [1142], "actis.ru": [19272], "monitoring.pipni.cz": [12460], "www.evanced.info": [5539], "www.sozialwissenschaften.htwk-leipzig.de": [7736], "p.tanx.com": [21661], "m.desy.de": [4479], "phil-lui.de": [2053], "imgmini.eastday.com": [5119], "images.thoughtbot.com": [16656], "sx.meituan.com": [10405], "factoryselecthomes.com": [5740], "intus.pro": [2053], "www.freelauri.com": [6261], "wsjeuropesubs.com": [11513], "www.51fanli.net": [198], "jh4re.com": [2053], "cldsi.de": [2053], "stayintheknow.co.uk": [21570], "www.ohloh.org": [11965], "cas.myuni.sydney.edu.au": [21631], "hackerspace.gr": [7042], "asset-c.soup.io": [15415], "o.oggyb.me": [2053], "www.piratenpartei.at": [12937], "qingtian.meituan.com": [10405], "rlhtv.com": [2053], "muse.mu": [10897], "www.amiunique.org": [945], "card.uv.es": [17750], "*.redcatsecom.com": [13918], "www.mobileworldcongress.com": [20813], "cpanel.net": [2710], "sirrix.de": [15106], "coffi.be": [2053], "haysom.co": [2053], "oascentral.bostonherald.com": [90], "narshe.me": [2053], "images.variety.com": [17858], "olivier.im": [2053], "profileapi.services.microsoft.com": [10543], "detektor.fm": [4483], "satsoda.com": [2053], "bitmazk.com": [2057], "www.leedsportal.leeds.ac.uk": [17604], "puphpet.com": [21226], "*.twenga.com": [17150], "mediadb.kicker.de": [9032], "www.slackhq.com": [15188], "yuba.stanford.edu": [15634], "inbound.onl": [2053], "kllc.tv": [2053], "debian-administration.org": [4347], "lintian.debian.org": [4353], "login.carbook.com": [3176], "fac.legal": [2053], "blinksale.com": [2131], "www.ecsi.com": [4980], "sexyt.me": [2053], "bildungsservice.vcd.org": [17766], "origin-assets.clickmotive.com": [3307], "prelive.bvg.de": [1623], "husani.it": [2053], "wiki.openoffice.org": [1124], "*.blogads.com": [13264], "prmo.de": [2053], "www.openadultdirectory.com": [12116], "libraryservices.bertrams.com": [1873], "rddl.me": [2053], "kb.sucuri.net": [15829], "fibank.bg": [5884], "xtrpl.us": [2053], "www.v4c.org": [21890], "to.pbs.org": [2053], "sh.meituan.com": [10405], "it.aegeanair.com": [7041], "www.parrot.com": [12617], "www.hertzvans.co.uk": [7510], "x.smmc.co.nz": [2053], "kuix.de": [9183], "cdn.chefkoch.de": [3116], "skm.dk": [15146], "www.internetsafetyproject.org": [8422], "cyseclabs.com": [4065], "secureportal.stockport.gov.uk": [21578], "97-fz.rkn.gov.ru": [14146], "eforensicsmag.com": [5011], "www.q3k.org": [13505], "*.digibib.net": [4555], "www.fiber7.ch": [5885], "news.saucal.com": [2053], "www.corporatecardapplication.com": [3749], "0x539.se": [8], "accessories-cdn.dell.com": [4413], "www.intensitylab.com": [8375], "www.finalbuilder.com": [20115], "www.powys.gov.uk": [21183], "drinklib.com": [2053], "api.intercom.io": [8392], "s.muraka.me": [2053], "nwl.lc": [2053], "*.tehconnection.eu": [16318], "hlab.tv": [2053], "s.benn.eu": [2053], "svn.mdk3.aircrack-ng.org": [19330], "*.hotels.com": [7699], "www.connman.net": [3643], "desotofl.com": [2053], "joycasino12.com": [20552], "see.onafro.tv": [2053], "encnt.se": [2053], "www.erooups.com": [5453], "piwik.broadcasthe.net": [2408], "netfirms.com": [11418], "www.zenodo.org": [22130], "www.piratesbay.pw": [21216], "wchor.us": [2053], "oauth.accounts.firefox.com": [5974], "www.npmjs.com": [11737], "www.dfri.se": [4518], "curesec.com": [3999], "bankid.no": [1689], "newsletter.manageengine.com": [10103], "mymode.re": [2053], "to.d2pics.com": [2053], "c.bako.com": [2053], "anquanbao.com": [1095], "weather.boston.com": [2287], "blowm.no": [2053], "bomb.bz": [2053], "hack.ens.fr": [5029], "leadback.advertising.com": [701], "dome.mit.edu": [9916], "usal.worldcat.org": [18748], "si4.rgstatic.net": [13655], "on.njnets.com": [2053], "newsroom.shaw.ca": [14932], "b.mph.name": [2053], "defcongroups.org": [4100], "ssl.intevation.net": [8445], "youtube.fr": [19016], "unite.ut.ee": [17347], "i2.sinaimg.cn": [15091], "mc-d.co": [2053], "www.terrabank.ru": [16390], "webarchitects.coop": [18406], "wpd4u.us": [2053], "myfinances.nottingham.ac.uk": [11726], "canarywatch.org": [2863], "ww5.gloucestershire.gov.uk": [6872], "it.leeds.ac.uk": [17604], "sanoma.fi": [14527], "static.slickdealz.net": [15203], "uplk.me": [2053], "sfxhosted.exlibrisgroup.com": [5579], "u.dc13.com": [2053], "kr.unionpay.com": [17478], "npzfood.com": [2053], "*.blogspot.co.nz": [2166], "switch.ch": [15952], "jtmch.co": [2053], "vpn-us-west.symantec.com": [15969], "ftp.rnl.ist.utl.pt": [16288], "www.t3.io": [16032], "partners.yandex.by": [18953], "analytics.slashdotmedia.com": [15193], "weihnachtsbaumspiel.tivi.de": [22127], "members.maximintegrated.com": [10261], "video.yandex.ua": [18961], "de-z.in": [2053], "faar9.com": [2053], "m.yandex.kz": [18957], "jase.im": [2053], "popcenter.co": [2053], "www.adentifi.com": [623], "halfashed.army": [2053], "www.highland.gov.uk": [20338], "meixian.meituan.com": [10405], "ahmd.us": [2053], "www.talentopoly.com": [16176], "ifcext.ifc.org": [8407], "libopenraw.freedesktop.org": [6243], "gu.tdconline.se": [16054], "jadia.us": [2053], "s.ypl.me": [2053], "fundh5.mipay.com": [10626], "pathways2gsfa.org": [12665], "kimberlee.me": [2053], "ipv6.doesnotwork.eu": [4720], "i24.us": [2053], "www.dragonair.com": [4836], "tbcn.es": [2053], "dematec.ens.fr": [5029], "static.consultant.ru": [19778], "stpmvt.com": [2053], "mikemasin.com": [10571], "zvv.ch": [22146], "frztag.me": [2053], "*.fernuni-hagen.de": [5870], "cpatools.us": [2053], "rhombus-tech.net": [14098], "seom.us": [2053], "gobot.io": [6927], "uniqlo.us": [2053], "abcnews.go.com": [276, 277], "sites.7-eleven.com": [218], "rmp.design": [2053], "www.cemetech.net": [2994], "forbrukerportalen.no": [6137], "www.gcmasia.com": [6426], "zoom.do": [2053], "online.northumberland.gov.uk": [20929], "www.hepe.com": [7458], "flightglobalimages.com": [6036], "fiercepharma.com": [5892], "portnoy.co": [2053], "ercnsm.osu.edu": [11959], "ggdns.de": [20235], "consent.live.com": [9644], "upmchp.us": [2053], "rxs3.answcdn.com": [1099], "*.webex.com": [18358], "macupdate.utorrent.com": [21831], "link.nt33.fr": [2053], "theln.mg": [2053], "www.boxwoodtech.com": [2314], "public.govdelivery.com": [6990], "train.moodlerooms.com": [20827], "ad.z5x.net": [4158], "www.soundkit.io": [15406], "doc.openmandriva.org": [12153], "l2305.net.tf": [2053], "quidsi.com": [21244], "u.tilsimat.net": [2053], "vidia.swisscom.ch": [15951], "imx.solid-run.com": [15366], "scopus.com": [14633], "app.captora.com": [19643], "lk.relcomhost.ru": [13987], "cmnf.osu.edu": [11959], "bioamy.me": [2053], "shared.od.org": [11814], "d-mk.co": [2053], "pop.com.br": [12482], "www.ll.mit.edu": [9916], "reclaiming.pink": [2053], "computersweden.idg.se": [7852], "www.cs.ncsu.edu": [11689], "engineering.opendns.com": [12130], "support.canonical.com": [2869], "www.newit.co.uk": [11488], "sa3.roadtrippers.com": [21317], "www.youtube.com.gh": [19016], "spotify.com": [15548], "helpdesk.sugarsync.com": [15838], "gdain.es": [2053], "docs.libreoffice.org": [9471], "nja.mx": [2053], "eb.la": [2053], "www.igowild.com": [8104], "sixapart.com": [21463], "www.getclouder.com": [6691], "duchateau.work": [2053], "bkstn.com": [2053], "a.secte.ga": [2053], "*.airbnb.ru": [788], "zaks.ru": [22124], "glo.li": [2053], "www.jdkasten.com": [8574], "eset.at": [5052], "qc-audio.link": [2053], "pleasure.borsen.dk": [2278], "touch2.groupon.com": [7100], "peacefire.org": [12716], "scholar.google.co.*": [6965], "mytrek.us": [2053], "auto.ricardo.ch": [14100], "reportonline.thamesvalley.police.uk": [21685], "compari.ro": [3576], "on.premis.is": [2053], "www.stura.htwk-leipzig.de": [7736], "go.gorilla.blue": [2053], "freebase.com": [6275], "r5.mzstatic.com": [1159], "www.easynews.com": [5128], "assets.seedrs.com": [14795], "go.ofpcss.com": [2053], "img-super11.mncdn.com": [10667], "www.illiad.wustl.edu": [18290], "www.somethingawful.com": [15379], "bugs.flyspray.org": [20137], "archaea.ucsc.edu": [17590], "simple-talk.com": [15064], "shrae.com": [2053], "vol.pyeongchang2018.com": [21229], "katalog.uu.se": [17352], "to.goto.team": [2053], "www.xxxyours.com": [22090], "music.bezeq.co.il": [19522], "s-media-cache-ec0.pinimg.com": [12906], "cl.godaddy.com": [6898], "heliosiq.adtechus.com": [679], "nxtesc.co": [2053], "further.cf": [2053], "appnexus.adperium.com": [664], "apliiq.it": [2053], "alternatives.ca": [923], "centrebookings.lambeth.gov.uk": [20631], "bingplaces.com": [1950], "a.wineli.st": [2053], "thnkor.ng": [2053], "eroakirkosta.fi": [5452], "secure.utopia-web.com": [17747], "fusionio.com": [6393], "cjink.com": [2053], "b.dogv.ac": [2053], "mktmbl.com": [2053], "pixel.sitescout.com": [15118], "www.skm.dk": [15146], "jbox.com": [20529], "qp.hitravel.xyz": [2053], "swift.org": [15941], "syeg.ca": [2053], "*.waeckerlin.org": [18238], "reviewingcomics.com": [14078], "vjain.me": [2053], "beacon.jpl.nasa.gov": [11058], "migrosmagazine.ch": [10567], "sheffield.moderngov.co.uk": [20816], "www.automattic.com": [1465], "ctrss.ms": [2053], "*.agari.com": [758], "gph.to": [2053], "melkweb.com": [2842], "hs10.snstatic.fi": [14383], "reparti.gel.ulaval.ca": [17515], "my.in-disguise.com": [8173], "appvault.com": [1150], "m.burt.io": [2507], "tuples.random.org": [13780], "store.23andme.com": [89], "fpp.wustl.edu": [18290], "ste.ve.tt": [2053], "www.networkadvertising.org": [11460], "vdtslots.com": [2053], "fuzhuang.1688.com": [44], "creative.francisfrith.com": [20158], "www.privacyinternational.org": [13309], "bruni.co": [2053], "smartpay.rakuten.co.jp": [13768], "www.os-cillation.de": [12318], "diversityandaccess.stanford.edu": [15635], "www.kennedy-center.org": [20585], "lbhf.spydus.co.uk": [21546], "www.allybank.com": [905], "flipboard.com": [6041], "tmbrsg.co": [2053], "melb.us": [2053], "tlcpl.org": [2053], "pvt.cuku.us": [2053], "imgs.xkcd.com": [22085], "link.adamjt.net": [2053], "thecd.us": [2053], "m.kinopoisk.ru": [20601], "update.drweb.com": [4879], "mdspr.ms": [2053], "campus.uni-due.de": [17450], "fema.gov": [5832], "apps.canvas.uw.edu": [17355], "ftz.li": [2053], "pepperjamnetwork.com": [12766], "kinfo.lk": [2053], "french.dakar.usembassy.gov": [21879], "securabit.com": [14721], "myv.plus": [2053], "m.french.alibaba.com": [850], "wholeearth.com": [18560], "mlpchan.net": [9925], "on.trulia.com": [2053], "activities.alibaba.com": [850], "naima.me": [2053], "click.alfabank.kz": [842], "the99.me": [2053], "ticket.www.wp.pl": [18217], "downloads.raspberrypi.org": [13803], "fiercefinance.com": [5890], "www.bip.io": [1964], "chip01.chipimages.de": [2653], "virtualnewscenter.wpengine.netdna-cdn.com": [18044], "www.wdr3.de": [18312], "*.stkittszipline.com": [15606], "www.2shared.com": [119], "richmond.spydus.co.uk": [21546], "blueskydigit.al": [2053], "cdnjs.cloudflare.com": [3344], "warwickshire.objective.co.uk": [20979], "www.nttdocomo.co.jp": [11158], "*.tutsplus.com": [17129], "mewsite.com": [10505], "www.itemname.com": [20510], "passwords.cites.uiuc.edu": [17234], "www.cis.rit.edu": [13667], "*.showingcloud.com": [14988], "dew.bz": [2053], "s1y.ru": [2053], "yahoo.domaintools.com": [4750], "wikilov.es": [18595], "cmcordon.com": [2053], "glb.adtechus.com": [679], "lmnd.ca": [2053], "vmail.connect.comcast.net": [3524], "www.improvely.com": [8169], "imat.nottingham.ac.uk": [11726], "three7.me": [2053], "rl.cm": [2053], "tr.libreoffice.org": [9471], "www.berlin.de": [1843], "y1.f5.si": [2053], "ct.pinterest.com": [12914], "flixta.pe": [2053], "app.domainskate.com": [4747], "give.berkeley.edu": [17526], "kinox.to": [20597], "socialconnect.axosoft.com": [1517], "scmfx.pw": [2053], "paypal.adtag.where.com": [18537], "ooshirts.com": [12097], "tprice.me": [2053], "runlean.ly": [2053], "etoro.com": [5077], "curezen.gq": [2053], "r6s.us": [2053], "wtsdc.nlm.nih.gov": [11241], "www.leap.se": [9221], "pirate-party.us": [21130], "m.ok.ru": [11968], "www.cloudmining.guru": [3370], "prjctpl.se": [2053], "cldnrd.io": [2053], "fuz.cm": [2053], "8vn.co": [2053], "publicaccess.leeds.gov.uk": [20653], "astronautix.com": [5341], "cfc.polyvoreimg.com": [21168], "mysql-udf-global-user-variables.pureftpd.org": [13466], "qako.me": [2053], "safe.thomson.com": [16651], "*.linux.lu": [9565], "myoffice.bt.com": [1593], "static.fimfiction.net": [5931], "www.zen.co.uk": [19129], "www.pirateunblocked.xyz": [21712], "images2.hertz247.com": [7511], "maysoft.com": [10268], "drdurkin.com": [2053], "newblood.anonops.com": [1083], "www.portalen.dtu.dk": [16286], "www.ffsg.org": [5679], "data.videohub.tv": [17980], "p.ink.cx": [2053], "waitrose.com": [18245], "bnck.co": [2053], "api.o.qcloud.com": [13530], "wib.li": [2053], "links.native.ad": [2053], "overme.co": [2053], "secure.iows.ikea.com": [8108], "www.openbsd.org": [12118], "www.startovac.cz": [21566], "0am.co": [2053], "sfll.ws": [2053], "s.8ratio.ch": [2053], "calibre-ebooks.oss.aliyuncs.com": [19346], "nextagnews.nextag.com": [11555], "maribethste.in": [2053], "jwg.is": [2053], "davedarby.it": [2053], "flingu.in": [2053], "jabber.root.cz": [14199], "www.teletrust.de": [21673], "wdp.zattoo.com": [19116], "on.allure.com": [2053], "vandyke.com": [17842], "www.corporate.hsbc.com": [7233], "www.oktatas.hu": [11976], "libpuzzle.pureftpd.org": [13466], "bridgeways.com": [2369], "www.gymglish.co.uk": [7168], "zip.kiva.org": [9077], "www.jacksfetishtube.com": [8631], "ad.reklamport.com": [13984], "prism.nts.wustl.edu": [18289], "cdn.asset.geek.net": [6612], "rocktc.de": [2053], "skylineregistrations.co.uk": [15182], "www.cccure.training": [2600, 2601], "www.di.ens.fr": [5029], "hubspot.leadin.com": [20648], "wrglr.co": [2053], "www.openrce.org": [12164], "www.my.calpoly.edu": [2806], "hoopestonpubliclibrary.worldcat.org": [18748], "www.adfox.ru": [563], "s.hoko.me": [2053], "leovil.la": [2053], "getscroll.com": [6723], "kempte.ch": [2053], "www.attendesource.com": [1373], "www.browseraddon.com": [2427], "passport.zongheng.com": [22137], "order.1and1.com": [61], "dyson.co.uk": [4935], "netveano.com": [11448], "devices.slashdot.org": [15192], "*.shmoo.com": [16474], "go.danny.fm": [2053], "atos.net": [1366], "i-cdn.servedbyopenx.com": [14847], "petrovka2.sitesoft.ru": [21462], "*.tds.net": [16058], "1.7-b.us": [2053], "www.bisente.com": [1968], "player.snacktv.de": [15268], "thumbs.crakpass.com": [3830], "www.freebieber.org": [5898], "viewpicss.com": [2053], "smssecure.org": [14377], "grpy.us": [2053], "b.cregox.com": [2053], "fust.ch": [3712], "7gwc-kbhkort.kk.dk": [8883], "www.vhlcentral.com": [17778], "www.givingcomfort.org": [6812], "www.languageperfect.co.nz": [9300], "gxconcepts.com": [2053], "s.makie.me": [2053], "s.gatech.edu": [2053], "app.search.ch": [14684], "xeromag.com": [18867], "www.glandium.org": [20244], "skroutz.gr": [15167], "optimizedby.rmxads.com": [14114], "*.co3sys.com": [3393], "sourced.fm": [15427], "*.london.hackspace.org.uk": [9744], "newdream.net": [11480], "bcon.ly": [2053], "bbbsilicon.org": [1534], "www.cadsoft.de": [2770], "assets.tribalhosting.net": [17002], "1.kleinaber.de": [2053], "lovecm.co": [2053], "mau.tc": [2053], "pelo.si": [2053], "pingyi.meituan.com": [10405], "alexdi.li": [2053], "bloggerei.de": [2161], "offrd.st": [2053], "envirocallservice.newcastle.gov.uk": [11507], "www.aftership.com": [751], "norfolk.cs.washington.edu": [17577], "publisherblog.automattic.com": [1465], "demo.pritunl.com": [13305], "nerdiva.tk": [2053], "on.xomnio.com": [2053], "jpdls.in": [2053], "style.alibaba.com": [850], "www.franchiseradioshack.com": [13749], "otldisclosure.stanford.edu": [15635], "npmrds.ext.here.com": [7465], "youtube.com.au": [19016], "publications.nigms.nih.gov": [11241], "partnernet-qa.symantec.com": [15969], "konami-korea.kr": [9124], "en.opendata.ch": [21011], "nlnetlabs.nl": [11130], "www.webgo.de": [18361], "tracker.cloud.hhs.gov": [7192], "*.3m.com": [152], "a-b.ai": [2053], "*.bbc.com": [1537], "bsuw.co": [2053], "api.jquerymobile.com": [8599], "s.victen.org": [2053], "cdn.altex.ro": [927], "*.justia.com": [8851], "bomconteudo.tk": [2053], "www.observium.org": [11905], "hooloop.com": [2053], "webaccounts.arcgis.com": [1194], "ibang.co": [2053], "www.anime-planet.com": [1065], "videre.ntnu.no": [11153], "wacken.com": [18237], "www.humanrightsfirst.org": [7755], "www-10.lotus.com": [9780], "cdgo.es": [2053], "rafam.co": [2053], "dealers.car.com": [2886], "f-d.im": [2053], "i6.buimg.com": [16704], "statelibraryok.worldcat.org": [18748], "gztsp.com": [2053], "*.autotraderstatic.com": [1456], "new.edit.ftc.gov": [5837], "www.earth.illinois.edu": [17544], "rigger.biz": [2053], "zbcg.me": [2053], "wiki.commotionwireless.net": [3561], "ibti.me": [2053], "on.kdi.co": [2053], "anz.co.nz": [19399], "wdw.co": [2053], "avropa.se": [1496], "fr.ricardo.ch": [14100], "ofb.ag": [2053], "www.livejournal.com": [9651], "www.davincivaporizer.com": [4309], "affili.net": [738], "nucleus.con.ohio-state.edu": [11960], "*.socialtwist.com": [15310], "msvo.me": [2053], "swawm.us": [2053], "nuvem.ly": [2053], "joshwei.land": [2053], "www.tvshowtime.com": [16143], "rubytogether.org": [14256], "consult-1.de": [2053], "mycdsglobal.com": [2622], "dkn.fm": [2053], "muscle.cm": [2053], "lucasoil.media": [2053], "asset.xmission.com": [18830], "kivo.com": [9078], "epilepsyontario.org": [5425], "wegoted.com": [18316], "blog.bigcartel.com": [1903], "annuaire.inria.fr": [8309], "brodi.es": [2053], "accessories.stanford.edu": [15635], "rspamd.com": [14240], "latourette.worldcat.org": [18748], "www.wordsapi.com": [18737], "www.hornbach.ch": [7640], "www.poodletest.com": [12481], "*.filerio.in": [5909], "*.judiciary.gov.uk": [8815], "kyrnd.us": [2053], "studeo.ws": [2053], "distil.it": [4658], "downloadarchive.documentfoundation.org": [16487], "dollrphto.club": [2053], "alsop-n.uk": [19356], "*.ucar.edu": [17208], "www.instraffic.com": [8347], "litecoin.org": [9623], "tutanota.com": [17125], "winxdvd.com": [22034], "gabbbq.info": [2053], "mplayerhq.hu": [9949], "www.bernalbucks.org": [1846], "eastlothian.gov.uk": [5114], "necessaryandproportionate.org": [11320], "tw.hb.chat": [2053], "cantyk.tk": [2053], "www.dailyfantasyradio.com": [4196], "aok.de": [357], "c.rgstatic.net": [13655], "search.edwardsnowden.com": [5203], "gwms.me": [2053], "p.entf.at": [2053], "*.joomag.com": [8774], "www.quakenet.org": [13556], "sbfe.co": [2053], "www.kmpt.nhs.uk": [11102], "u.sic.software": [2053], "otavamedia.fi": [12335], "m.spanish.alibaba.com": [850], "flashpoint-intel.com": [20130], "mko.me": [2053], "ul.ie": [17256, 17257], "*.spreadshirt.co.uk": [15552], "en-eo.dict.cc": [4536], "uct.ac.za": [17592], "www.searchengineland.com": [16635], "jovellanos.uniovi.es": [17479], "www.corningcu.org": [3746], "bookiebashe.rs": [2053], "2ch.net": [110], "*.insight.com": [8320], "www.peopleschoicecu.com.au": [12764], "11joycasino.com": [20552], "g.org.za": [2053], "scitation.aip.org": [330], "static.geogebra.org": [6659], "he.boardgamearena.com": [2219], "kolabsys.com": [9111], "static4.startnext.com": [15665], "js10.ringrevenue.com": [14125], "checkpoint.com": [3106], "section9.co.uk": [14714], "bugs.ruby-lang.org": [14252], "ciencias.uniovi.es": [17479], "store.blackphone.ch": [2100], "backupblog.cir.ca": [3212], "pulse.w3counter.com": [18185], "tesch.tk": [2053], "*.cloudfront.net": [3364], "support.switchconcepts.com": [15954], "www.bloggerei.de": [2161], "lebes.co": [2053], "facebookcorewwwi.onion": [5734], "broadly.com.de": [2053], "www.malwaretech.net": [10091], "getdnsapi.net": [6732], "shorl.in": [2053], "www.youmail.com": [19013], "lk.rustedoak.co": [2053], "allistene.fr": [895], "theglade.ch": [2053], "nomnom.me": [2053], "blog.opendns.com": [12130], "lop.so": [2053], "hackerspaces.nl": [7281], "asset-7headlines.pixfs.net": [12958], "alice-collaboration.web.cern.ch": [2632], "necdisplay.com": [11084], "on.ketv.com": [2053], "myurl.tv": [2053], "knowledge.kaltura.com": [8927], "webtatic.com": [18458], "satsymposium.org": [14314], "katsomo.fi": [20579], "black.riseup.net": [14133], "www.alfaportal.kz": [842], "uow.edu.au": [17636], "wiki.dlang.org": [19930], "ccodearchive.net": [3592], "hajjhealth.net": [2053], "egsk.in": [2053], "informatics.sepa.org.uk": [21412], "www.coveredca.com": [3800], "www.cuinfo.cornell.edu": [3744], "*.cognitivedissidents.com": [3452], "ovh.cz": [12378], "nicco.ca": [2053], "hfweb.biz": [2053], "quizaction.de": [13604], "forum.ovh.sn": [12378], "jtw.bz": [2053], "www.webtranslateit.com": [18464], "m.quirilo.com": [2053], "copyright.com": [3725], "*.marchforbabies.org": [10147], "dotcloud.com": [4787], "coolminiornot.com": [3705], "app3.salesmanago.pl": [14307], "ui2.assets-asda.com": [19442], "petteriraty.eu": [12816], "sudo.ws": [7025], "piwik.univention.de": [17511], "barbados.usembassy.gov": [21879], "account.washingtonpost.com": [18287], "ea.vox-cdn.com": [18145], "sql7.endora.cz": [5349], "a1.itc.cn": [8536], "*.lsac.org": [9332], "stat.drweb.com": [4879], "hipchip.me": [2053], "www.costprojections.cancer.gov": [2864], "*.quickbase.com": [8452], "lsul.su": [2053], "edg.me": [2053], "diis.unizar.es": [17643], "account.t-mobile.com": [16026], "mrdl.in": [2053], "l.alastair.io": [2053], "ocaml.org": [11811], "oneservices.bracknell-forest.gov.uk": [19584], "moovweb.com": [10770], "s82.cnzz.com": [3391], "cas.porsuk.anadolu.edu.tr": [1025], "www.cointrader.net": [3474], "www.mochtu.de": [10697], "saxion.to": [2053], "frx.mx": [2053], "www.damtp.cam.ac.uk": [17529], "jsis.washington.edu": [17577], "tchibo.com.tr": [16240], "www.jucy.co.nz": [8610], "www.deichmann.com": [4394], "sil.org": [14361], "nandos.com": [11217], "aa3.co": [2053], "nickgann.co": [2053], "webvodafonemail.vodafone.pt": [18109], "yahoomessenger.tumblr.com": [17100], "stgi.co": [2053], "allods.mail.ru": [10040], "mentv.club": [2053], "exclusions.oig.hhs.gov": [7192], "wiki.ubuntu.com.cn": [17372], "go.dbs.com": [2053], "al.klj.onl": [2053], "go4games.link": [2053], "paypal.co.uk": [12678], "link.wiklab.nl": [2053], "cprep.co": [2053], "s.cyberitaly.it": [2053], "duodecim.fi": [4901], "ua.worldcat.org": [18748], "www.vco.cuhk.edu.hk": [2747], "www.inside.com": [8314], "my.yunos.com": [19056], "stream24.co.vu": [2053], "ads.jlne.ws": [2053], "experimental.docker.com": [4704], "movie.sc": [2053], "csj.bz": [2053], "first.org": [5689], "s.skimresources.com": [15158], "metrics.apple.com": [1160], "thcpbe.es": [2053], "rak.directory": [2053], "pape.rs": [2053], "slcng.in": [2053], "ebri.us": [2053], "blogs.strategyanalytics.com": [15766], "joem.me": [2053], "lisonfan.com": [9606], "www.fosscon.us": [6188], "yoshkar-ola.beeline.ru": [1801], "digiguide.tv": [19918], "lvt.hn": [2053], "rawstudio.org": [13817], "forum.nginx.org": [11567], "plos.io": [2053], "www.hipchat.com": [7554], "xiangqing.taobao.com": [16206], "aml.bz": [2053], "modelaircraft.org": [477], "lnsqd.co": [2053], "8.baidu.com": [1661], "www.zamg.ac.at": [19096], "adsurve.com": [676], "winehq.org": [18652], "www.europython.eu": [5514], "luxrio.us": [2053], "www.fig.co": [5897], "piwik.pixcept.de": [12952], "vfh.wustl.edu": [18290], "www.cimsasia.com": [9910], "a.ligatus.com": [9502], "matte.me": [2053], "ps.w.org": [18181], "mcull.me": [2053], "go.arbel.net": [2053], "vip.knet.cn": [8892], "s.kalastro.xyz": [2053], "view-it.us": [2053], "aur.pacbsd.org": [12511], "business.carphonewarehouse.com": [2920], "releases.wildfiregames.com": [18607], "reports.epoch.com": [5428], "www.alien.net.au": [852], "fomori.org": [6105], "dashcache.addthis.com": [611], "shop.moaf.org": [10670], "www.strangeremains.com": [21584], "mail.unizar.es": [17643], "gnpi.us": [2053], "www.prisguide.no": [21200], "www.library.ethz.ch": [5074], "www.skynet.ie": [16475], "hscreations.net": [2053], "effortlesssk.in": [2053], "r00tz.org": [13623], "wageningen.nl": [11324], "b.ztj.io": [2053], "rfrk.nl": [2053], "bl.3ara.be": [2053], "studiumundbehinderung.kit.edu": [8949], "www.acrobat.com": [520], "clsa.me": [2053], "membersinfo.stalbans.gov.uk": [21563], "binged.it": [2053], "53.com": [5895], "discussions.zoho.com": [19202], "pkcsecurity.com": [12467], "bigfile.to": [19530], "wiiings.com": [18587], "www-static.operacdn.com": [21025], "egms.cancerresearchuk.org": [19637], "u.poka.tw": [2053], "mima.163.com": [43], "img1.linuxdeepin.com": [4380], "rws.maxcdn.com": [10256], "gatorchryslercllc.mycars.dealer.com": [4334], "u.sfxyyam.com": [2053], "gems.am": [2053], "bit.nes.co.ve": [2053], "doommet.al": [2053], "www.mbsportsweb.ca": [9887], "sporx.com": [21541], "m.koso.me": [2053], "eurexrepo.com": [5504], "zheleznodorozhnyy.beeline.ru": [1801], "strev.us": [2053], "*.vtracy.de": [18162], "traffichaus.com": [16926], "diges.to": [2053], "www.cryptocointalk.com": [3926], "trdny.com": [2053], "inet.se": [8236], "androidguiden.idg.se": [7852], "forms.dundeecity.gov.uk": [4897], "thecut.io": [2053], "pass.yandex.by": [18953], "revo.pt": [2053], "go.players24.de": [2053], "greenhouse.lotus.com": [9780], "a-ssl.files.bbci.co.uk": [19501], "images.sankakucomplex.com": [21368], "medmj.us": [2053], "joseph.is": [2053], "forum.deluge-torrent.org": [4417], "io.webhelp.com": [2053], "ogrenci.anadolu.edu.tr": [1025], "fluxbb.org": [6073], "*.asbestossafety.gov.au": [1278], "resourcex1.dditscdn.com": [4317], "browserleaks.com": [2425], "stateof.creativecommons.org": [3848], "firstclassmagazine.se": [5990, 5991], "bapt.co": [2053], "engagemedia.org": [5362], "www.damnsmalllinux.org": [4206], "www.cheshire.police.uk": [19697], "mercialf.red": [2053], "labs.data.gov": [4253], "*.uknof.org.uk": [17251], "www.equinix.com": [5437], "oops.org": [12096], "www.diygadget.com": [4674], "*.blogspot.ro": [2166], "www.dzone.com": [4171], "dsp.hscic.gov.uk": [20388], "pubstr.at": [2053], "staging.bia2.com": [1891], "www.pypip.in": [13494], "shop.rrus.co": [2053], "www.holidaybullshit.com": [7594], "*.blogspot.rs": [2166], "no.cloudflare.com": [3344], "thefifthco.com": [2053], "www.samsungshop.com.cn": [14503], "hunchun.meituan.com": [10405], "danyang.meituan.com": [10405], "wiki.cyanogenmod.org": [4026], "jslinterrors.com": [8735], "ingdirect.com": [7915], "hjcms.de": [7201], "s.jboutros.org": [2053], "www.gravity.com": [20278], "artlebedev.ru": [1259], "js.revsci.net": [14073], "ampol.no": [2053], "memotr.ac": [2053], "productadvisor.symantec.com": [15969], "requires.io": [14026], "saas.harvard.edu": [7351], "www.confuzzled.org.uk": [3639], "stanfordhospital.org": [15638], "otr.cypherpunks.ca": [11933], "img.reflex.cz": [13951], "www.datenspuren.de": [4297], "*.naver.net": [11302], "wiki.idnes.cz": [20425], "awrld.at": [2053], "smetrics.aclu.org": [294], "acuityplatform.com": [544], "go.nature.com": [2053], "www.freedommunitions.com": [20164], "www.isoc.ch": [20501], "www.worldfoodprize.org": [18756], "nordnet.se": [11675], "www.usembassy.gov": [21879], "new.tecphlie.in": [2053], "vunet.vu.nl": [17813], "go.widen.com": [2053], "www.yandex.com": [18956], "umm.gd": [2053], "mobility.vutbr.cz": [17814], "*.atlassian.com": [1357], "status.livechatinc.com": [9641], "www.wifilib.fr": [18583], "cdn.livefyre.com": [9669], "the.geaux.co": [2053], "ac.els-cdn.com": [5285], "roy.ac": [2053], "ukpirate.click": [21711], "tepamine.com": [4131], "lnk.ames.io": [2053], "business.t-mobile.com": [16026], "specifications.freedesktop.org": [6243], "60mins.co": [2053], "to.tteggel.org": [2053], "www.levoleague.com": [9435], "*.api.livestream.com": [9676], "c.subscene.com": [21600], "desensuaoil.com": [2053], "22tr.co": [2053], "admin.fedoraproject.org": [5843], "slvr.cr": [2053], "lists.openhatch.org": [12139], "overclock.net": [12367], "newswhip.com": [11524], "n360.to": [2053], "mtrx.go.sonobi.com": [15388], "*.cftc.gov": [3547], "www.nyc.indymedia.org": [8234], "bitcurex.com": [2037], "in2m.gr": [2053], "3.*.wdfiles.com": [18593], "www.webcaster.pro": [21988], "egress.co": [2053], "paleom.ag": [2053], "bport.nyc": [2053], "disney.st": [2053], "crossrider.com": [3888], "jocksta.rs": [2053], "www.istella.it": [8529], "sun.onthe.io": [12089], "wlrn.us": [2053], "netcn.console.aliyun.com": [861], "gsmdo.me": [2053], "ja.wiki.hidekisaito.com": [7533], "www.retrofestive.ca": [14060], "rs-linkz.info": [13685], "status.haskell.org": [7361], "andaluciapropertyrentals.com": [1035], "images.travelpod.com": [16968], "*.byu.edu": [1628], "stadt-zuerich.ch": [15618], "www.borne.nl": [11324], "linearcollider.org": [9530], "londonstockexchange.com": [9740], "a.redfla.me": [2053], "crsincdt.co": [2053], "stdw.us": [2053], "news.33option.com": [127], "nvbao.taobao.com": [16206], "www.salsacommons.org": [14492], "convrg.co": [2053], "ebiz.sfn.org": [15327], "blog.silktide.com": [15041], "u.aronpa.com": [2053], "vip.symantec.com": [15969], "dreamwidth.org": [4852], "radi8.it": [2053], "o2.cz": [16332], "cirtexhosting.com": [3218], "www.theblueskylife.com": [16515], "s116.cnzz.com": [3391], "www.ccc-ch.ch": [19659], "ads10.contentabc.com": [3678], "etrade.com": [5496], "dropbox.uu.se": [17352], "anatoomikum.ut.ee": [17347], "vc.jd.com": [8571], "catalysttg.com": [2957], "gty.ac": [2053], "whus.biz": [2053], "dev.cloudtrax.com": [3356], "www2.toyota.es": [16894], "xipi.us": [2053], "iss.tw": [2053], "accounts.www.umich.edu": [17552], "autotools.io": [1472], "factsandfigures.herefordshire.gov.uk": [7466], "qas.li": [2053], "www.openvz.org": [12189], "*.gateway.messenger.live.com": [9644], "monarch.co.uk": [10727], "jynt.co": [2053], "www.irssi.org": [8507], "mibbit.com": [10517], "www.randywestergren.com": [21252], "*.oculu.com": [11919], "enfpt.co": [2053], "ag2.co": [2053], "jstor.org": [8607], "dfri.se": [4518], "www.weather.yandex.kz": [18957], "webservices.amazon.de": [19369], "sitola.cz": [15134], "payments.n-kesteven.gov.uk": [11045], "wrldbra.in": [2053], "grosskunden.bahn.de": [1660], "wild.st": [2053], "n.iten.io": [2053], "forum.greencubes.org": [20281], "delmarvane.ws": [2053], "www.nccih.nih.gov": [11241], "es.aegeanair.com": [7041], "mieux-viv.re": [2053], "www.whatsbroadcast.com": [18535], "huanggang.jd.com": [8571], "foundingfathers.info": [6197], "cursosvirtuales.uned.es": [17446], "qinghe.meituan.com": [10405], "www.rh.ulaval.ca": [17515], "ssls.com": [14417], "mail.sans.org": [14310], "nihongo.istockphoto.com": [20505], "www.superhexagon.com": [15875], "primarycare.nhs.uk": [11102], "mysql2.cesky-hosting.cz": [19680], "certs.godaddy.com": [6898], "cdn.ghstatic.com": [6444], "support.snapnames.com": [9018], "tdog.yt": [2053], "seppin.gs": [2053], "safebrowsing-cache.google.com": [6962], "shbrk.li": [2053], "iuf.alternatifbilisim.org": [922], "tvm.ag": [2053], "imgt3.bdstatic.com": [1662], "bestwebhostinggeek.com": [911], "www.crowdculture.se": [3891], "www.addison.com.hk": [616], "sslcdce.internapcdn.net": [8403], "cpubenchmark.net": [2707], "tl.rail.claims": [2053], "people.yandex.kz": [18957], "cards.dbs.com.hk": [4084], "homie.tips": [2053], "fastmail.fm": [5804], "www.devdocs.io": [4497], "sadecehosting.com": [14458], "x.matt.ph": [2053], "work.alibaba-inc.com": [19342], "mydm.loans": [2053], "www.openoffice.org": [1124], "img.youm7.com": [19021], "www.nethserver.org": [20892], "travispta.com": [2053], "cdn.free.com.tw": [20160], "patchwork.netfilter.org": [11417], "r.zaki.jp": [2053], "pennh.cc": [2053], "bzr.li": [2053], "stu.do": [2053], "ccb.li": [2053], "siraweb.portal.srgssr.ch": [21550], "europe.redhat.com": [13909], "ticker.mobile.de": [20811], "owa.uaa.alaska.edu": [17519], "www.openai.com": [12115], "www.fsawebenroll.ed.gov": [4988], "www.guardian.co.tt": [7127], "www.lfscript.org": [20674], "weal.media": [2053], "www.unblockthepiratebay.org": [21709], "global.engineering.osu.edu": [11959], "stats.immoscout24.ch": [8154], "www.theapp.voicelessonstotheworld.com": [11492], "*.oppictures.com": [17504], "gentoo.ussg.indiana.edu": [8213], "wrd.cm": [2053], "g01.s.alicdn.com": [846], "www.unglue.it": [17448], "keepallthethings.com": [8992], "epr.ug": [2053], "sci-hub.org": [14615], "moana-surfrider.com": [10671], "r.uh8.in": [2053], "resistsurveillance.org": [14042], "media.razoo.com": [13821], "eyeoh.co": [2053], "www.pirata.online": [21709], "serovglobus.ru": [21414], "www.pinocc.io": [12911], "www.zenmate.com": [19133], "www.hinckleyandbosworthonline.org.uk": [7553], "pnkts.tc": [2053], "on.jbu.edu": [2053], "bromley.objective.co.uk": [20979], "url.mrtz.org": [2053], "guarida.juegos": [2053], "*.cdnme.se": [2982], "redditmedia.com": [13924], "massdrop.com": [10214], "st.directadvert.ru": [4608], "www.nwprogressive.org": [11789], "boyn.co": [2053], "cbcomp.us": [2053], "antifraud.drweb.com": [4879], "www.garygoddard.com": [6929], "scw.io": [2053], "jamie.link": [2053], "support.mppglobal.com": [20841], "advnews.link": [2053], "yourbittorrent.com": [19030], "appsec.aarp.org": [270], "www.freelancersunion.org": [6297], "telepathy.freedesktop.org": [6243], "static.ykimg.com": [19020], "rovid.szg.hu": [2053], "btunnel.com": [1622], "www3.eduid.cz": [5198], "ihouseonline.berkeley.edu": [17526], "www.sourcedna.com": [15420], "portal.oaklands.ac.uk": [20976], "github.io": [6801], "tuxedocomputers.com": [17134], "divorce4.me": [2053], "www.gsfacket.se": [7116], "go.mashcape.com": [2053], "www.mail.ru": [10040], "sourcegraph.com": [15431], "g0t0v1ew.tk": [2053], "*.pixfuture.net": [12951], "urlpro.fr": [2053], "zkm.tw": [2053], "xpup.me": [2053], "www.zoum.ca": [19073], "link.muth.site": [2053], "eowebs.com": [2053], "www.gemini.com": [6636], "dtn.dj": [2053], "spraygun.me": [2053], "www.888173.net": [231], "etoro.tw": [2053], "r.in.pe": [2053], "apollo.vutbr.cz": [17814], "www.toshiba.co.jp": [16869], "u.nowloaded.org": [2053], "app.sugarsync.com": [15838], "freelancer.co.uk": [6296], "phpj.be": [2053], "dena.my": [2053], "www.tvnzzshop.ch": [20974], "askjane.stanford.edu": [15635], "jobspm.mx": [2053], "tokage.celartem.com": [2990], "crawler.feide.no": [5858], "itstaf.nl": [2053], "fr.unionpay.com": [17478], "abhayagiri.org": [455], "www.wpsoftware.net": [18221], "ltms.ncl.ac.uk": [11073], "bringthegig.com": [2387], "beerleague.me": [2053], "affiliates.streamray.com": [15709], "se.vrmodel.dk": [2053], "www.diasporabr.com.br": [4530], "odee.osu.edu": [11959], "quantamagazine.org": [13566], "diverse.direct": [4667], "p52.mx": [2053], "quikcallus.com": [13596], "derpy.me": [4462], "l-obs.fr": [2053], "was.sent.fyi": [2053], "opennet.net": [12159], "contentdn.net": [3679], "me.sailthru.com": [14480], "danny.yt": [2053], "myreslife.wustl.edu": [18290], "cmmn.us": [2053], "hitson.gs": [2053], "www.rosbank.ru": [21328], "gameop.me": [2053], "naturalbox.tk": [2053], "dc2.learningcast.jp": [9369], "www.itex.ru": [20511], "biblegateway.com": [1895], "regexbuddy.com": [21290], "www.qabel.de": [13527], "www.mooculus.osu.edu": [11959], "ecw.co": [2053], "ayu.ac": [2053], "sampin.ch": [2053], "*.alice-dsl.de": [851], "a.daix.com": [2053], "www2.charterbusiness.com": [3081], "*.yahoo.net": [18941], "joelvh.com": [2053], "nurun.jobs": [2053], "croc3.cf": [2053], "m.buydot.co.uk": [2053], "minotar.net": [20801], "yab.bz": [2053], "nigms.nih.gov": [11241], "mtvex.it": [2053], "discussions.citrix.com": [3237], "stellaclar.snob.ru": [15285], "onehealthcommission.org": [20997], "tmprtm.org": [2053], "wa103.teamviewer.com": [16259], "micron.com": [10537], "libcom.org": [20675], "mm2.cool": [2053], "content.kink.com": [20596], "webprod.admin.uillinois.edu": [17238], "pass.etao.com": [5072], "admin.mailigen.com": [10052], "www.cindercooks.com": [3199], "www.claudiodangelis.com": [3279], "fr.hertz.ch": [7506], "mochtu.de": [10697], "discuss.vultr.com": [18169], "microspot.ch": [3712], "c.ymcdn.com": [18924], "parentportal.enfield.gov.uk": [5359], "sv.3.boardgamearena.com": [2219], "conf.kubi.me": [2053], "hitech.mirea.ru": [20805], "www.argosonline.es": [1224], "groups.freecycle.org": [6280], "www.trafficfactory.biz": [16924], "viewimage.co": [2053], "slidedeck.com": [15205], "docs.intercom.io": [8392], "pavpanchekha.com": [12674], "ccw.link": [2053], "tolyatti.beeline.ru": [1801], "piratpartiet.dk": [21136], "www.lumimart.ch": [3712], "www.radioeins.de": [13752], "chelyabinsk.beeline.ru": [1801], "staff.rice.edu": [14103], "tools.sli-systems.com": [14370], "f.njpc.it": [2053], "jimr.link": [2053], "sharia.mobi": [2053], "www.sungardhe.com": [15849], "cdn.userreport.com": [17729], "dominion.leagueoflegends.com": [9362], "*.wine-apps.org": [21007], "at.inl.gov": [20462], "itex.com": [8538], "www.homementors.com": [7617], "android-api.fitbit.com": [6002], "lokun.is": [9727], "pastemonitor.com": [12651], "www.abila.com": [456], "leginfo.legislature.ca.gov": [2805], "quantifind.io": [2053], "www.copiny.com": [3721], "admt.me": [2053], "i.o2active.cz": [16332], "on.lsx.co": [2053], "s.aolkin.me": [2053], "*.volotea.com": [18126], "jiaofei.jd.com": [8571], "messages.easymail.ca": [5127], "cloud.jivesoftware.com": [8733], "j0b.fr": [2053], "dzyn.biz": [2053], "nagios.ulpgc.es": [17411], "wndrbr.es": [2053], "cjc.georgetown.edu": [6668], "www.questcomp.com": [13582], "lide.cz": [9487], "www.pde.cc": [12793], "library.williams.edu": [18616], "www.youvisit.com": [19018], "shib.southdevon.ac.uk": [15437], "affiliatezone.doteasy.com": [4796], "macfound.org": [9983], "www.mayfirst.org": [10266], "www.reg-alfabank.ru": [842], "zgtcbag.jd.com": [8571], "tianyang.jd.com": [8571], "def-econ.com": [2053], "fuscia.info": [6389], "dl-jzt.jd.com": [8571], "mccdn.qcloud.com": [13530], "fox-toolkit.net": [5702], "flmd.tv": [2053], "cigar.af": [2053], "www.ghash.io": [6446], "support.embed.ly": [5299], "www.torusknot.com": [16868], "tvh.io": [2053], "bostontec.co": [2053], "badssl.com": [1654], "da.libreoffice.org": [9471], "codesearch.chromium.org": [3179], "www.deutschebkk.de": [4486], "downloads.realviewtechnologies.com": [13868], "isq.re": [2053], "manao.media": [2053], "io.playstation.com": [13015], "sitetrustnetwork.com": [15121], "cdn.citizenweb.io": [3232], "vic20.blipp.com": [2134], "wiki.teamfortress.com": [21667], "i-kos.uk": [2053], "dolartoday.com": [4729], "animal.ffa.vutbr.cz": [17814], "www.snel.com": [15280], "1177.se": [26], "mycharity.ie": [10940], "*.koreatimes.co.kr": [9137], "cdni.condenast.co.uk": [3618], "hierar.ch": [2053], "www.openwebmail.org": [12112], "swartzfiles.com": [15934], "e.lemcpa.us": [2053], "beatthevoi.cf": [2053], "www.chillingeffects.org": [3137], "www.babbel.com": [1631], "ensv.dict.cc": [4536], "www.mastercard.com": [10216], "mux.de": [10924], "es-es.facebook.es": [5736], "internet.gawker.com": [6593], "*.checkmarx.com": [3108], "*.rd.com": [13849], "www.advisormailout.com": [706], "i3.code.msdn.microsoft.com": [10543], "www.liftshare.com": [9497], "govipers.cf": [2053], "www.cooperazione.ch": [3712], "r-7.co": [2053], "www.campusradio.uni-mainz.de": [17611], "pcg.link": [2053], "citrusbyte.com": [3240], "wh.meituan.com": [10405], "mail.ya.ru": [18930], "domains.jino.ru": [8724], "yads.yahoo.co.jp": [18944], "www2.walsall.gov.uk": [21970], "*.fxguide.com": [6406], "a2.twimg.com": [17153], "directorystore.com": [4617], "gazeta.yandex.com.tr": [18954], "cskr.co": [2053], "i.pcollaog.cl": [2053], "fetch.link": [2053], "www.performancehorizon.com": [12779], "violetdarkling.com": [18019], "4tulemar.com": [182], "ssl-sl-retargeting.adsonar.com": [578], "www.universalcoin.com": [21858], "coursetalk.com": [3787], "ekm.pw": [2053], "djuhsd.illuminateed.com": [20430], "department.obg.cuhk.edu.hk": [2747], "www.ninite.com": [11610], "vlkn.me": [2053], "www.cepascc.org": [14579], "premium.youmail.com": [19013], "help.adfox.ru": [563], "chroniclevitae.com": [3183], "www.spacecomm.nasa.gov": [11058], "camerahou.se": [2053], "www.sony-europe.com": [15390], "fluechtlinge.wien.gv.at": [22025], "www.wagner.edu": [18242], "www.0800buster.co.uk": [20709], "chalkfest.us": [2053], "varian.com": [17857], "wow-pic.com": [2053], "hshi.meituan.com": [10405], "permid.thomsonreuters.com": [16650], "www.intevation.org": [8445], "www.elgiganten.se": [5264], "zenmate.ca": [19133], "ib.mookie1.com": [10764], "goodline.info": [20269], "cdn-static-secure.liverail.com": [9657], "zenmate.cl": [19133], "zenmate.co": [19133], "drupal-images.tv2.dk": [16136], "wwd.us": [2053], "berlinow.eu": [2053], "amhrst.is": [2053], "awkward.at": [2053], "icmail.com": [7834], "vh3.vutbr.cz": [17814], "codesion.com": [3346], "flowdvd.link": [2053], "www.soapboxcms.com": [15301], "hcdapreview.usc.edu": [17564], "wps.to": [2053], "www.10dollar.ca": [20], "apps.community.freescale.com": [6302], "on.misspato.com": [2053], "sasp.ro": [2053], "yng.mn": [2053], "www.stressfaktor.squat.net": [21549], "img.nber.org": [11266], "trakk247.com": [16933], "dety.es": [2053], "rednerd.com": [13931], "metrok.us": [2053], "batransandbareports.voa.gov.uk": [21936], "rskl.co": [2053], "rickey.io": [2053], "lives.ga": [2053], "service.xara.com": [18843], "travelhouse.ch": [7698], "a.vuilam.info": [2053], "cs-cart.com": [2719], "belo.ng": [2053], "www.calendars.com": [2797], "www.cdn.newsvine.com": [11541], "local-www.nlm.nih.gov": [11241], "studentconduct.georgetown.edu": [6668], "www.masspirgstudents.org": [9882], "wfrm.rest": [2053], "vrsn.tv": [2053], "ipfs.io": [8491], "tjatt.tk": [2053], "www.canvasndecor.com": [2874], "morello.se": [10777], "profile.theguardian.com": [16554], "bnz.co.nz": [1576], "petx.pk": [2053], "coindl.com": [3456], "jobs.bnymellon.com": [19566], "m.google.com.*": [6965], "*.nocdirect.com": [11642], "parcel.pt": [2053], "*.factoryexpohomes.com": [5740], "i.truong.asia": [2053], "*.healthdirect.gov.au": [7400], "www.derstandard.at": [19899], "goat.bz": [2053], "helpdesk.pcc-cic.org.uk": [12424], "www.goldsborowebdevelopment.com": [6944], "www.atom.io": [1360], "noma.ms": [2053], "pantheos.com": [12579], "coursefinder.uow.edu.au": [17636], "static.filmon.com": [5927], "www.torrent411.com": [16036], "dynamicyield.com": [4926], "sunwoolab.stanford.edu": [15635], "audiofingerprint.openwpm.com": [12251], "tonyk.me": [2053], "press.interfax.kz": [20476], "www.paypalgivingfund.org": [12696], "folk.re": [2053], "pjc.georgetown.edu": [6668], "hyperspin.com": [7794], "px.owneriq.net": [12391], "aeryon.com": [730], "marinsoftware.com": [10161], "www.pirateproxy.site": [21217], "demandbase.com": [4420], "goto.floris.io": [2053], "itau.com.br": [8534], "www.voicerepublic.com": [18116], "remica.de": [2053], "bet555.eu": [1864], "krystal.co.uk": [9175], "app.gmat.economist.com": [5161], "textvoice.jp": [2053], "www.alpharatio.cc": [19355], "haber3.biz": [2053], "duc.wustl.edu": [18290], "engineering.illinois.edu": [17544], "www.alaskarobotics.com": [816], "pejs.net": [21103], "short.nassi.me": [2053], "expedia.com": [5612], "*.devever.net": [4501], "iyer.tips": [2053], "streamwww.classroom.ohio-state.edu": [11960], "thegreatdiscontent.com": [16551], "orenda.host": [2053], "da.yle.fi": [18993], "c.milgifs.com": [2053], "edit.dol.gov": [19938], "blog.guetersloh.freifunk.net": [6311], "ingqca.org": [2053], "data.otaserve.net": [21041], "jrvo.me": [2053], "vtech.com": [17811], "nickelo.us": [2053], "meatm.ag": [2053], "www.ideasonboard.com": [8078], "www.cloudaccess.net": [3337], "www.pdr.leeds.ac.uk": [17604], "customsites.usc.edu": [17564], "hmen.co": [2053], "jbur.co": [2053], "www.impulse.net": [8170], "cnn.st": [2053], "my.anc.media": [2053], "s.sundheden.se": [2053], "campaignforosu.org": [12301], "*.championcasino.net": [3049], "alfl.co": [2053], "movabletype.org": [10815], "di.dekalita.com": [2053], "fs7.formsite.com": [20148], "mith.io": [2053], "givskudzoo.dk": [6814], "*.golfdigest.com": [6950], "deskalerts.co": [2053], "jd.meituan.com": [10405], "teamintraining.org": [16257], "connected.tante.cc": [16203], "go.heung.uk": [2053], "blog.23andme.com": [89], "ageni.us": [2053], "ftp.uni-erlangen.de": [17597], "inscriptions.paris-web.fr": [21072], "p4.focus.de": [6091], "cbi.boldchat.com": [2240], "issues.openmandriva.org": [12153], "*.mypayquake.com": [12681], "imgt9.bdstatic.com": [1662], "www.flightglobalshop.com": [6037], "l.abrt.io": [2053], "donateinmemory.cancerresearchuk.org": [19637], "su.ln.com.ar": [2053], "webassetsg.scea.com": [14327], "dreamsolution.nl": [4849], "freedom-to-tinker.com": [6285], "go.thomasho.co": [2053], "trafficjunky.net": [16922], "tyumedia.ru": [21829], "www.obedovat.sk": [11895], "spring.org.uk": [15556], "menpiao.jd.com": [8571], "code.highcharts.com": [7544, 7545], "mhcid.washington.edu": [17577], "forms.dudley.gov.uk": [4891], "omniture.nvidia.com": [11174], "pirateproxy.se": [21709], "*.crn.com": [2716], "*.xg4ken.com": [18871], "www.dti.ulaval.ca": [17515], "market.douban.com": [4802], "*.loanscience.com": [9693], "webmail.byte.nl": [2544], "tnaflix.com": [16791], "leedsbuildingsociety.co.uk": [9380], "webauth.service.ohio-state.edu": [11960], "x.hz.ae": [2053], "productvisio.com": [13353], "ouroh.io": [2053], "thumbs.redditmedia.com": [13924], "vkm.ag": [2053], "pyn.jp": [2053], "registrace.seznam.cz": [14891], "gsp0.baidu.com": [1661], "*.swordfishdc.com": [15959], "www.tcs.ch": [21663], "go.alig.net": [2053], "api.gunosy.com": [7151], "s6.pimg.tw": [12890], "y1.chaucanh.net": [2053], "technicalcommunity.com": [16290], "intranet.study.fce.vutbr.cz": [17814], "sgsstudentbostader.se": [14351], "cloud.datapipe.com": [4290], "www.kathrein.de": [8970], "vlagtwedde.nl": [11324], "rudloff.pro": [14258], "investors.godaddy.net": [6897], "www.ubmaviation.com": [17204], "ncns.co": [2053], "about.beeline.ru": [1801], "zuche.jd.com": [8571], "gus-humsci.stanford.edu": [15635], "consecur.de": [3613], "thecreatorsproject.vice.com": [17959], "www.ng-book.com": [11564], "tele-task.de": [16324], "ghc.haskell.org": [7361], "www.anon-ib.su": [1080], "stlwrt.us": [2053], "internetprotectionlab.net": [8432], "daleal.pl": [2053], "www.thepiratebay.am": [21710], "s.417.cz": [2053], "www.gpg4win.org": [7002], "plearn.co": [2053], "*.bytelove.de": [2548], "openhome.alipay.com": [857], "www.international-office.uni-mainz.de": [17611], "etherpad.fr": [20062], "s.ccvine.org": [2053], "www.pccasegear.com": [12426], "yn.meituan.com": [10405], "bosso.ikoula.com": [8112], "calderdale.objective.co.uk": [20979], "fallback.wix.com": [18684], "cdn-cf.mywot.net": [10987], "cor.vc": [2053], "tamlab.engineering.osu.edu": [11959], "wp-dev.grc.nasa.gov": [11058], "www.bleep.com": [2118], "server1.nimzone.com": [11604], "s.cut.org.br": [2053], "nuclearblast.de": [11765], "s.sngrs.com": [2053], "wc2.link": [2053], "streetepistemology.com": [21589], "fossil.energy.gov": [5355], "gawain.websanity.com": [18379], "a.dyu.ca": [2053], "static.colorofchange.org": [3502], "zoot.to": [2053], "apps.grad.uw.edu": [17355], "www.fewo-mehrtens.de": [5879], "ltnt.tv": [2053], "a.tcimg.net": [16049], "www.ampatico.com": [1018], "phihold.be": [12831], "thencs.org": [2053], "static.cbox.ws": [19657], "blueonyx.it": [19561], "x.jaimeejo.com": [2053], "renshouguan.jd.com": [8571], "exist.de": [5093], "www.sozwes.htwk-leipzig.de": [7736], "thepiratebay.xn--q9jyb4c": [21709], "www.edihealth.net": [4993], "lewisham.greenparty.org.uk": [7052], "glasgow.pirateparty.org.uk": [12930], "new.zataz.com": [19115], "au.zenmate.com": [19133], "mcbru.ly": [2053], "www.feed2js.org": [5847], "*.pcmd.ac.uk": [12748], "communityservice.wustl.edu": [18290], "bww.com": [929], "citizen.org": [13436], "www.verisign-japan-domain.com": [17915], "mm.gettyimages.com": [6741], "dg.travelnow.com": [16967], "*.vk.se": [17783], "www.wiebetech.com": [18581], "coloradoan.com": [3508], "value.shoplc.tv": [2053], "upto.gd": [2053], "f2.thejournal.ie": [16490], "www.wordcamp.org": [18729], "nashg.co": [2053], "www.urz.uni-heidelberg.de": [17459], "wooton.in": [2053], "mygfs.in": [2053], "fchat.se": [2053], "login.wmtransfer.com": [18373], "365ticketsscotland.com": [141], "thepiratebay.immunicity.host": [21217], "*.charitywater.org": [3071], "undergrad.cs.umd.edu": [17549], "g.bjarnerest.de": [2053], "mywp.cc": [2053], "xeo.li": [2053], "steiermark.neos.eu": [11088], "cemg.tk": [2053], "talkingpoint.leedsbuildingsociety.co.uk": [9380], "*.deadspin.com": [4329], "support.returnpath.net": [14067], "images.parkrun.org.uk": [12614], "www.dte.us.es": [17706], "www.ipwnage.com": [7953], "*.webspectator.com": [18386], "*.123-reg.co.uk": [30], "dl.hdslb.com": [20327], "1.texnites24.gr": [2053], "developer.cms.gov": [19742], "www.dslshop.vodafone.de": [18107], "opm.global": [2053], "www.cfa.harvard.edu": [7351], "rakmu.de": [2053], "*.mailchimp.com": [10043], "billdesk.com": [1930], "accountingde.pt": [2053], "*.ubs.com": [17206], "www.helsingebilpleje.dk": [7450], "lists.citizenweb.io": [3232], "acu.re": [2053], "t4-p.ru": [2053], "armor.statushub.io": [15692], "thepiratebay.casa": [21709], "upa.unionpaysecure.com": [17478], "www.t-com.sk": [16346], "spyshelter.com": [15576], "jordn.xyz": [2053], "irma.sydney.edu.au": [21631], "img.chefkoch.de": [3116], "www.checkmarx.com": [3109], "*.fmh.de": [5948], "loggly.com": [9716], "frankl.co": [2053], "jekit.codeforamerica.org": [3419], "blog.haskell.org": [7361], "www.hsbctrinkaus.de": [20387], "auth.opera.com": [12252], "secure.law.yale.edu": [18946], "heynimble.com": [2053], "www.customerlobby.com": [4012], "homesvc.net": [2053], "csail.org": [2053], "grass.osgeo.org": [11868], "authentification.ulaval.ca": [17515], "go.jtg.co": [2053], "theh.gr": [2053], "dlstr.in": [2053], "www.aggregateknowledge.com": [764], "patternsinthevoid.net": [12670], "luxxcc.com": [2053], "rlz.li": [2053], "lee.sosbici.org": [2053], "slvpg.me": [2053], "fbi.informatik.fh-nuernberg.de": [16428], "tipps.co": [2053], "neocities.org": [11340], "book.jd.com": [8571], "ikegps.biz": [2053], "g.stir.li": [2053], "www.ai-online.com": [1466], "www.landalcampings.be": [18790], "alphadominche.com": [908], "*.vimeocdn.com": [18010], "docs.opensvc.com": [12170], "business.spectrum.com": [15497], "demd.ro": [2053], "www.automx.org": [1468], "easypost.com": [5130], "ip3.htwk-leipzig.de": [7736], "theprosp.ec": [2053], "www.ox.cx": [7787], "learn.jquery.com": [8598], "top-fwz1.mail.ru": [10040], "spectator.co.uk": [21527], "ergonomics.osu.edu": [11959], "hebdo.framapad.org": [6214], "kabul.usembassy.gov": [21879], "www.bugmenot.com": [2462], "cdn.head-fi.org": [7390], "whois.icann.org": [7827], "dajon.uk": [2053], "*.push.io": [13477], "jobs.arstechnica.com": [3616], "constructor.maps.yandex.com.tr": [18954], "nulab-inc.com": [11770], "techb.ro": [2053], "www.javascriptobfuscator.com": [20528], "www.hdserviceproviders.com": [7184], "patrck.nl": [2053], "c-spanvideo.org": [2552], "my.torbay.gov.uk": [16840], "isst.fraunhofer.de": [6230], "ielev.co": [2053], "aldi.co.uk": [338], "oia.stanford.edu": [15635], "*.utsouthwestern.edu": [17569], "helix.apache.org": [1125], "artifacts.alfresco.com": [843], "ticketm.mx": [2053], "pshop.piratenpartei.de": [12938], "cathaypacific.com": [2963], "www.mysubwaycard.com": [20866], "energystar.gov": [5357], "gnngolf.com": [2053], "phx.tf": [2053], "www.levesoninquiry.org.uk": [9429], "go.dotsiam.net": [2053], "www.thefastandthefurious.com": [5799], "paktim.es": [2053], "tw.carousell.com": [2919], "esparto.illuminateed.com": [20430], "minilink.ml": [2053], "blog.ebuyer.com": [5143], "brid.es": [2053], "idefimusic.com": [8080], "press.parsely.com": [12621], "tdid.io": [2053], "scrm.me": [2053], "store-images.comixology.com": [3529], "*.asic.gov.au": [388], "nmst.tk": [2053], "www.theprivacyblog.com": [16497], "www.godpraksis.no": [6928], "hawkhost.com": [7380], "passport.apan.org": [369], "rofreesbie.org": [21324], "smartmontools.org": [21481], "hrp.asia": [2053], "baishi.baidu.com": [19476], "sorig.in": [2053], "bohi.me": [2053], "www.neooffice.org": [11342], "whitta.link": [2053], "secure.pqarchiver.com": [12489], "friendlybracelets.com": [6333], "marketplace.rackspace.com": [13740], "www.thenewsfunnel.com": [11528], "wan.taobao.com": [16206], "ccavenue.com": [2591], "www.bulletproofexec.com": [2475], "pythian.com": [21234], "s.artstreet.biz": [2053], "tracker.moodle.org": [10763], "femina.io": [2053], "www.ehic.org.uk": [5015], "v5k.co": [2053], "fablabtacoma.com": [5727], "www.vr.se": [17802], "krasnodar.rt.ru": [13703], "www.crrev.com": [3899], "services.sccgov.org": [14579], "aodh.co": [2053], "almo.pro": [2053], "servicedesk.lrz.de": [9396], "epaper.ntu.edu.tw": [11159], "miblues.co": [2053], "shaodong.meituan.com": [10405], "mujucet.vzp.cz": [17816], "bugzilla.rpmfusion.org": [14238], "www.hide.me": [7531], "api.tldr.io": [21747], "www.probikekit.co.uk": [13344], "afisha.yuga.ru": [22121], "members.vbulletin.com": [17763], "police.uk": [13087], "www.incircle.com": [16106], "nmt.marketing": [2053], "www.30boxes.com": [122], "uxc.io": [2053], "gaymes.info": [2053], "control.tierra.net": [16705], "www.transperfect.com": [21782], "gneo.me": [2053], "thrdwy.org": [2053], "framapad.org": [6214], "saudi.gov.sa": [14545], "www.go8.edu.au": [6893], "parealt.rs": [2053], "upa.aberdeenshire.gov.uk": [451], "s.livepocket.jp": [2053], "au.pcpartpicker.com": [12709], "unto.us": [2053], "impc.co": [2053], "pete.pw": [2053], "www.salk.edu": [14489], "memberclicks.net": [10419], "www.smuxi.org": [15262], "tac.upf.edu": [17674], "extranet.fmed.ulaval.ca": [17515], "*.indiegogo.com": [8222], "support.code.org": [3405], "katalogportalmainz.ub.uni-mainz.de": [17611], "*.hitb.org": [7200], "rftr.io": [2053], "verkty.difi.no": [4547], "www.mobilism.org": [20814], "www.nachtjeweg.nl": [7596], "owyoga.us": [2053], "grabase.at": [2053], "www.recurly.com": [13887], "eseries.pajustice.org": [12751], "www.pegelf.de": [12740], "docs.opnsense.org": [11855], "grouv.in": [2053], "www.toplist.cz": [16101, 16102], "freestateproject.org": [6270], "serversforhackers.com": [14862], "www.sparxtrading.com": [15478], "*.kryptronic.com": [9174], "*.exaccess.ru": [5582], "www.viglink.com": [18003], "uhop.me": [2053], "gml.io": [2053], "stubconnect.stubhub.co.uk": [15789], "wiki.ubuntu.org.cn": [17372], "forum.vestacp.com": [17945], "selvbetjening.dongenergy.dk": [4151], "libraries.wakefield.gov.uk": [21966], "your.trash.net": [16962], "inwx.com": [8381], "www.structures.ucsd.edu": [17216], "www.botfrei.de": [2295], "smdyn.co": [2053], "www.fourecks.de": [6198], "www.final4ever.com": [5934], "buckscc.gov.uk": [19605], "research.gigaom.com": [6764], "blog.libtoxcore.so": [9483], "boogn.at": [2053], "www.dslreports.ca": [4157], "auto.yandex.kz": [18957], "adena.io": [2053], "www.anonabox.com": [1085], "secure-skin.ztat.net": [19094], "ci.control.openccc.net": [12123], "thisne.ws": [2053], "www.outnow.ch": [21047], "muleman.co": [2053], "forums.novell.com": [11728], "www.npted.org": [11140], "lawsoc.ca": [2053], "goubiquiti.com": [6922], "myiuhealth.org": [8012], "www.vatt.fi": [17829], "dwa.bz": [2053], "u.flex.lighting": [2053], "bonsplans.club": [2053], "sonln.me": [2053], "www.peer5.com": [12726], "pnlgcy.tk": [2053], "mw.pe": [2053], "news9daily.org": [11517], "easyodds.com": [5135], "*.lukb.ch": [20574], "peterborough.objective.co.uk": [20979], "assets3.clickfunnels.com": [3305], "lela.im": [2053], "app.alibaba.com": [850], "fbjnews.info": [2053], "tusmag.click": [2053], "www.jqueryui.com": [8601], "url.hansng.com": [2053], "corporativo.walmart.com": [18260], "www.thebodyshop.ch": [3712], "*.kaizencrossfit.com": [4094], "212areaco.de": [2053], "www.governmentjobs.com": [20272], "www.yagi-antennas.com": [18936], "yiapanis.me": [2053], "*.chitika.net": [3150], "bravo.mery.jp": [9903], "sas.kaspersky.com": [8958], "cax.com": [2971], "armory.tf": [2053], "www.latticechallenge.org": [20640], "cdn.dianomi.com": [4525], "showmecon.com": [14984], "media.intermundomedia.com": [8402], "wufoo.com": [18782], "order.bytemark.co.uk": [2547], "bl.kasterma.net": [2053], "static.scs.georgetown.edu": [6668], "anilkpat.ro": [2053], "segmentfault.com": [14804], "equitylending.nab.com.au": [11054], "www.ntnu.edu": [11152], "jad-journal.com": [8794], "tracker.marinsm.com": [10159], "a.xnimg.cn": [18884], "101lang.com": [2053], "x.usool.pw": [2053], "www.tubemogul.com": [17089], "*.reethibeach.com": [13945], "git.korelogic.com": [9136], "www.*.onsugar.com": [12014], "www.flyersrights.org": [6078], "lurkmore.to": [9838], "abdessalam.me": [2053], "www.hungryhouse.co.uk": [7766], "my-ap.us": [2053], "millenniumseating.com": [10584], "www.kouio.com": [9147], "keys.bankofengland.co.uk": [1690], "rpn.media": [2053], "115.com": [25], "americas1stfreedom.org": [19383], "yourmembership.com": [19032], "webanalytics2.ovh.net": [12378], "bitwig.com": [2080], "carbonfund.org": [2890], "i01.cc": [2053], "dbbat.es": [2053], "t.clx.tc": [2053], "ncsol.co": [2053], "vona.ge": [2053], "moviease.com": [10828], "www.proxfree.com": [13402], "prisms.deewr.gov.au": [4099], "www.logcg.com": [20713], "g0t0.us": [2053], "lean-hochschulgruppe.htwk-leipzig.de": [7736], "givekidstheworld.org": [6808], "account.bistudio.com": [2232], "dprt.es": [2053], "buswell.worldcat.org": [18748], "links.fahsi.org": [2053], "vonage.com": [18133], "tienda.astrocentro.com": [1339], "fty.link": [2053], "onlineshop.nero.com": [11354], "storeseen.co": [2053], "bostonbuilt.org": [2285], "www.aquabounty.com": [1182], "cge.li": [2053], "cxcloud.com": [4021], "l.his-bkk.com": [2053], "modrice.biovendor.cz": [1956], "www.raspberrypi.org": [13803], "skandia.se": [15141], "apwustore.org": [970], "sfgs.co": [2053], "video-dean.com": [17985], "b.snf.org": [2053], "secure.us.playstation.com": [13015], "www.shop.parliament.uk": [21075], "www.kaos.to": [8940], "yottos.com": [22108], "*.virginaustralia.com": [18026], "www.diigo.com": [4599], "www.aaspring.com": [436], "www-s.dakko.us": [4203], "www.jcloud.com": [8690], "elevation.is": [2053], "sewi.ng": [2053], "efile.boe.ca.gov": [2566], "www.tvrain.ru": [21826], "*.fins.com": [11513], "gtod.co": [2053], "anthem.com": [19395], "*.wpmudev.org": [18770], "a.zxcv.es": [2053], "nicennaughty.co.uk": [11579], "holidaypirates.com": [20349], "pcpartpicker.com": [12709], "www.hangseng.com": [7326], "protvino.net": [21213], "qote.co": [2053], "www.creditrepairtrust.com": [3860], "stc-now.s-msn.com": [14297], "tutanota.de": [17126], "tyler.to": [2053], "tirana.usembassy.gov": [21879], "madete.ch": [2053], "admit.washington.edu": [17577], "embed.doorbell.io": [4777], "wowzr.me": [2053], "mg2mobile.com": [10508], "underhandedcrypto.com": [17440], "hoi-moon.com": [2053], "m.anibis.ch": [19390], "rub.de": [13712], "d.xp1.ru4.com": [14245], "www.epls.gov": [5427], "www.fotki.yandex.by": [18953], "r6.mzstatic.com": [1159], "murph.me": [2053], "www.gmx.fr": [6467], "soflx.fr": [2053], "s.bs.to": [2500], "ads.chaturbate.com": [3093], "repl.it": [21291], "smkt.me": [2053], "www.uniquefiler.com": [17480], "odessa.tv": [20983], "forums.openfiler.com": [12232], "jawbone.com": [8681], "www.autoitscript.com": [1454], "dbb.is": [2053], "jyg.meituan.com": [10405], "www.bitservicex.com": [4982], "www.sheffieldchildrens.nhs.uk": [11102], "www.puush.me": [13488], "maps.openstreetmap.org": [12177], "fontox.ml": [2053], "*.mentalhealth.asn.au": [10437], "www.hra-news.org": [7229], "world.yam.com": [18948], "www.myphilanthropedia.org": [12834], "brainsonic.com": [2324], "g.twimg.com": [17153], "www.kicktraq.com": [9035], "q.svn.org": [2053], "ren.lt": [2053], "session.snel.com": [15280], "uhype.us": [2053], "www.orkut.co.in": [12313], "www.treehousei.com": [16982], "xquartz.macosforge.org": [9985], "iteller.com": [2053], "icc.blackberry.com": [2102], "sslcert14.com": [15597], "to.incridea.com": [2053], "miruzow.jp": [2053], "zuker.co": [2053], "cm.22ndcm.com": [2053], "hertzarabic.com": [7500], "prod-web.northeastern.edu": [11697], "www.kubuntu.org": [9180], "www.bortarsasag.hu": [2279], "i.cengroup.vn": [2053], "link.jiryo.com": [2053], "rabigtv.ga": [2053], "solidbarga.in": [2053], "verdi.vc": [2053], "unicf.in": [2053], "youtube.com.br": [19016], "ttf.me": [2053], "communities.acs.org": [966], "torbay.gov.uk": [16840], "fca.org.uk": [5670], "s-up.tv": [2053], "*.uproxy.org": [17290], "rva.ngo": [2053], "pagodabox.com": [12539], "astra.scu.edu": [14528], "tracking.lengow.com": [9406], "dibz.biz": [2053], "ebusiness.voa.gov.uk": [21936], "www.magazinesdirect.com": [10013], "nds.rub.de": [13712], "icis.jpl.nasa.gov": [11058], "leisureworldbookings.colchester.gov.uk": [3477], "novouralsk.beeline.ru": [1801], "wrdp.rs": [2053], "segpaychat.com": [14800], "eventum.upf.edu": [17674], "city.com.ua": [3245], "vap.rts.ch": [21550], "myuni.sydney.edu.au": [21631], "s2.wsj.net": [22059], "passto.co": [2053], "www.helpjuice.com": [7448], "tom.cr": [2053], "clevercoin.com": [3298], "bitly.hber.nl": [2053], "drdinsi.de": [2053], "a-wi.co": [2053], "steamrep.com": [15710], "www.twitchinstalls.com": [17165], "js.adsonar.com": [578], "*.eds.com": [7517], "www.linuxplumbersconf.com": [9557], "en-da.dict.cc": [4536], "t.u2tourfan.com": [2053], "pico-app.com": [12875], "arcor.de": [1211], "photos.francisfrith.com": [20158], "*.eet.eu": [5004], "buhta.zarkzork.com": [19112], "efn.me": [2053], "stage-mobioinsider.com": [10691], "camino.worldcat.org": [18748], "cryptolux.org": [3930], "www.soundcloud.com": [15410], "boxcast.lasallehs.net": [9314], "www.anz.com": [355], "bayan.ir": [1752], "chibooth.biz": [2053], "mega.nz": [10390], "i4.lbp.me": [20644], "www.technoportal.ua": [16295], "peterkieser.com": [21112], "rakuma.rakuten.co.jp": [13768], "vote.colorofchange.org": [3502], "hel.me": [2053], "www.nikecsolutions.com": [11571], "dpenn.us": [2053], "www.notary.icsi.berkeley.edu": [17526], "pgcon.org": [12447], "nanobe.link": [2053], "dotster.com": [4800], "csoa15gatxs.org": [19833], "www.dynavision.de": [4931], "portaldaempresa.pt": [7000], "url.s2u.vn": [2053], "urtu.be": [2053], "www.tt.vutbr.cz": [17814], "static-ak.facebook.com": [5733], "www.schneier.com": [14601], "hot-chilli.net": [7690], "*.haymarket.com": [7381], "german-design-council.de": [6676], "podtrac.com": [21158], "consultants.leadpages.net": [9351], "www.trustedcs.com": [17065], "static.360buyimg.com": [136], "www.zerodayinitiative.com": [19160], "dest.asia": [2053], "tiaa-cref.org": [16071], "wifi.alipay.com": [857], "tipseri.net": [7879], "gic5.mycdn.me": [11014], "m2u.buzz": [2053], "tpths.co": [2053], "picttwittcr.com": [2053], "testament-erbe-und-pflichtteil.de": [21682], "on.iacsa.mx": [2053], "vr.preferred-reservations.com": [13250], "accesslabs.org": [484], "fusion-net.co.uk": [6394], "kcstudent.co.uk": [2053], "bnjmn.ca": [2053], "*.forumblog.org": [6181], "www.openuniversity.ac.uk": [12184], "cocdt.tk": [2053], "beta.openbadges.org": [12199], "plnk.jp": [2053], "sc02.alicdn.com": [846], "speed-dreams.org": [15500], "hq.huobi.com": [7769], "nasm.co": [2053], "nikolay.co": [2053], "www.wetanz.com": [18520], "portal.fsisac.com": [5719], "arquetype.org": [1247], "ota.ssllabs.com": [14416], "go.taloha.co": [2053], "a-ni.me": [2053], "rep.gg": [2053], "sbran.com": [2053], "q7.com": [13506], "nalchik.beeline.ru": [1801], "cryptanalysis.eu": [3917], "complex-systems.com": [3588], "inolx.co": [2053], "huff.lv": [2053], "info5.erg.cuhk.edu.hk": [2747], "www.betterbills.com": [1877], "i.wp.pl": [18217], "vitly.xyz": [2053], "x.540.io": [2053], "*.orange.co.uk": [12290], "sevr.nl": [2053], "wiki.ro.vutbr.cz": [17814], "licensing.bury.gov.uk": [19614], "wakatime.com": [18247], "edit.tilburguniversity.edu": [16716], "fluxx.io": [6075], "ias.edu": [7815], "ello.co": [5275], "honorrolls.stanford.edu": [15635], "alastore.ala.org": [337], "federalsoup.com": [5836], "secure.zdnet.com": [19065], "www.adapto.rs": [19286], "txex.es": [2053], "m.maly.cz": [2053], "luv365.us": [2053], "metacpan.org": [10474], "www.sustainability.cornell.edu": [3744], "c.tutti.ch": [21818], "desipirates.cf": [2053], "teb.li": [2053], "tekts.com": [2053], "cajaweb.tk": [2053], "bee.xxxxx.tw": [2053], "thomashunter.name": [21726], "mantis.ulpgc.es": [17411], "minimundosonline.com": [10609], "go.aetherii.com": [2053], "www.ars.usda.gov": [17317], "helly76.de": [2053], "www.openaccessbutton.org": [12197], "rosebudstud.io": [2053], "tomz.me": [2053], "take.guru": [2053], "torrenthounds.com": [16857], "mylov.es": [2053], "account.meraki.com": [10447], "*.saurik.com": [14546], "joinos.com": [8767], "smapl.us": [2053], "thecipherbrief.com": [21693], "savingmatters.dol.gov": [19938], "frckl.co": [2053], "taiga.io": [16166], "www.odnoklassniki.ru": [11925], "galleries.girlsoutwest.com": [6787], "a.pudl.es": [2053], "tag.microsoft.com": [10543], "hg.edgewall.org": [5184], "tsdd.org": [16115], "students.sfu.ca": [14893], "www.sbforge.org": [14319], "www.barclays.co.uk": [1710], "router-quality.maps.yandex.com": [18956], "www1.member-hsbc-group.com": [20777], "basekit.com": [19493], "www.livingroutes.org": [9680], "www.kpt.ch": [8898], "core.ac.uk": [19793], "www.hakko.com": [7302], "secure.vidyard.com": [17998], "cdn.samsungknox.com": [14507], "link.boncell.ga": [2053], "seeley.co": [2053], "grkm.co": [2053], "pepephone.com": [22068], "www.papakaya.com": [12583], "static.mediatropes.info": [16145], "apply.bz": [2053], "ref.mercurr.com": [2053], "tinymm.co": [2053], "yosui.co": [2053], "www.youtube.dk": [19016], "www.tdrevolution.com": [16057], "tuit.eu": [2053], "on.lung.ca": [12087], "morm.gent": [2053], "brd.camp": [2053], "sites.google.com": [6962], "www.budgetkredit.ch": [2451], "haskell.fpcomplete.com": [5704], "www2.erg.cuhk.edu.hk": [2747], "www.financialcryptography.com": [5938], "partnernetprogram.com": [12627], "pdwl.htwk-leipzig.de": [7736], "vidup.me": [17997], "gpk-new.qiniudn.com": [6615], "oneclickreseller.com": [20996], "library.cardiff.ac.uk": [2895], "ekcep.us": [2053], "strtgr.fr": [2053], "*.mapraider.com": [10139], "www.derbyshirealert.co.uk": [19896], "homelessveterans.co.uk": [7624], "career.paradoxplaza.com": [12591], "www.mixbit.com": [10654], "at.nick.com": [2053], "7dv.me": [2053], "robb.us": [2053], "on.ryot.org": [2053], "culm.unizar.es": [17643], "clcorp.dengisend.ru": [4440], "medipartner.nl": [2053], "masty.nl": [10225], "rbcommons.com": [13634], "mapstr.at": [2053], "39i6.com": [2053], "gridigit.al": [2053], "wechat.com": [18315], "nordportal.ru": [20922], "*.factoryexpodirect.com": [5740], "d4h.link": [2053], "docs.chef.io": [3115], "wikidevi.com": [18592], "ads.asnetworks.de": [1305], "jescaja.de": [2053], "autodiscover.rsc.org.uk": [13691], "mypassword.provost.usc.edu": [17564], "themes.getbootstrap.com": [6729], "350zevolution.com": [129], "issh.ac.jp": [8418], "jira.richrelevance.com": [14104], "renee.io": [2053], "support.sirsidynix.com": [21459], "emp.fyi": [2053], "metafetish.com": [10482], "mway.io": [2053], "planning.walthamforest.gov.uk": [18262], "tj.my": [2053], "www.eleave.osu.edu": [11959], "test.winehq.org": [18652], "vstam.nl": [2053], "novikom.dengisend.ru": [4440], "pingyao.meituan.com": [10405], "courseproviders.theguardian.com": [16554], "yelp.com.ar": [18979], "cleob.co": [2053], "s.garitv.eu": [2053], "yelp.com.au": [18979], "su.chinmath.com": [2053], "exam.consumerfinance.gov": [3667], "analytics.yandex.com": [18956], "fyl.uniovi.es": [17479], "www.myvarian.com": [10986], "www.lib.calpoly.edu": [2806], "www.whonix.org": [18564], "www.thisproxykillscensors.uk": [21725], "hwzt.co": [2053], "bangor.ac.uk": [1687], "gd1.alicdn.com": [846], "wiki.onosproject.org": [11848], "members.sina.com.cn": [15086], "*.tvnewscheck.com": [16142], "kindacool.co": [2053], "askebsa.dol.gov": [19938], "www.distrowatch.org": [4663], "bugreports.qt-project.org": [13544], "community.runabove.com": [14271], "aaahe.at": [2053], "www.fnmag.co": [5695], "www.alexhaydock.co.uk": [839], "dlar.ge": [2053], "www.basildon.gov.uk": [19494], "ecn.t6.tiles.virtualearth.net": [18046], "app.paymoapp.com": [12693], "on.fndgo.us": [2053], "thecjm.me": [2053], "g.leaf.fm": [2053], "dolo.news": [2053], "info.mkto.visioncritical.com": [18067], "ga.pietsweer.nl": [2053], "gongyi.fanli.com": [5769], "blog.linode.com": [9547], "mstrbkg.co": [2053], "pub.nieuwsbrief.unit4.com": [21856], "rhou.se": [2053], "jdi.nacti.me": [2053], "blog.1688.com": [44], "www.ccccloud.com": [2597], "computerfulfillment.com": [3599], "app.nickelled.com": [20909], "tsta.pt": [2053], "ssl-cdn-assets.tmz.com": [16087], "act.greenpeace.org": [7064], "haveyoursay.westsussex.gov.uk": [18507], "online.uralfd.ru": [17696], "yseop.tech": [2053], "support.playwire.com": [13031], "inyt.com": [7919], "appmarket.nexternal.net": [11558], "lnkt.la": [2053], "glasgow.rocks": [2053], "databricks-prod-cloudfront.cloud.databricks.com": [4275], "data2.whicdn.com": [18200], "www.archomedia.com": [1208], "go.gdgs.pl": [2053], "pcdi.ly": [2053], "s4.mzstatic.com": [11041], "vh.co": [2053], "onfa.st": [2053], "a.sunil523.com": [2053], "wesellhom.es": [2053], "onsugar.com": [12014], "framabin.org": [6214], "coindesk.com": [3458], "blog.assembla.com": [1312], "tash.website": [2053], "txuna.ml": [2053], "www.interfax.kz": [20476], "mer.cr": [2053], "norway.usembassy.gov": [21879], "rdpxl.com": [2053], "ir.alibaba.com": [850], "chemtech.mirea.ru": [20805], "www.ncisf.org": [11071], "nbn.li": [2053], "boligprat.sparebank1.no": [21524], "www.iceleads.com": [8061], "msio.co": [2053], "venveo.co": [2053], "autoconfig.yandex.kz": [18957], "www.aera.at": [722], "sccs.illuminateed.com": [20430], "login.wx2.qq.com": [13514], "loisirs3.cff.ch": [15946], "blog.groupees.com": [7097], "mylinkshort.ga": [2053], "dev.arma3.com": [1238], "dealflow.flippa.com": [6043], "banners.adultfriendfinder.com": [683], "sharkfest.wireshark.org": [18670], "windlgroup.engineering.osu.edu": [11959], "in-tend.co.uk": [20448], "businesslink.gov.uk": [2518], "skillzone.work": [2053], "rusztikho.me": [2053], "www.bwurst.org": [1626], "wnatl.com": [2053], "urx.com": [17294], "zhoumo.taobao.com": [16206], "lemde.fr": [2053], "donmai.us": [19947], "wilhelm-gym.net": [18610], "365tickets.com": [138], "www.argosemails.co.uk": [1224], "www.americaslongestwar.com": [988], "cluster-1.skillclub.com": [15155], "s.t42.fr": [2053], "lvstm.co": [2053], "hpy.co": [2053], "dl.gogs.io": [20264], "www.csirt.vutbr.cz": [17814], "hosting-advantage.com": [11384], "go.cpanel.net": [2710], "uprod.biz": [17289], "webr.ws": [2053], "pac-uk.org": [21059], "hud.gov": [17296], "tangzhuang.jd.com": [8571], "epitesz.bme.hu": [1570], "ebay.to": [2053], "royaldns.net": [21331], "uk.pcpartpicker.com": [12709], "bebold.ly": [2053], "www.rentler.com": [14011], "cole16.com": [2053], "i3.social.microsoft.com": [10543], "www.it-pol.dk": [8540], "pahq.co": [2053], "guangyuan.meituan.com": [10405], "in30.co": [2053], "cms.ipressroom.com.s3.amazonaws.com": [7943], "ws.amazon.de": [19369], "app.cloudsponge.com": [3354], "theo.re": [2053], "www.serovglobus.ru": [21414], "mediaarea.net": [10320], "sfa.st": [2053], "images.ironsolutions.com": [7963], "ztailors.co": [2053], "fandago.com": [5765], "ssl.s.xnimg.cn": [18884], "ji.sc": [2053], "store2.esellerate.net": [5462], "vnvn.gq": [2053], "js.ad-stir.com": [552], "ladygo.tmall.com": [21748], "badoo.com": [1652], "requestpolicy.com": [14025], "shop.kingston.com": [9054], "leptop.hu": [9308], "britishairways.com": [1527], "mttr.io": [2053], "gavinhungry.io": [6590], "seattleix.net": [14695], "savannah.cern.ch": [2632], "psy.social": [2053], "r.sampic.eu": [2053], "www.skillsmatter.com": [15156], "losepounds.me": [2053], "eu.citrix.com": [3237], "verisign.com.br": [17915], "newportmotorsports.com": [11511], "searchstorage.de": [16273], "www.teamweek.com": [16260], "md02.plex.tv": [13036], "ukreg.com": [5801], "on.mrtlrts.me": [2053], "p3smysqladmin01.secureserver.net": [14755], "lstn.at": [2053], "etcusc.co": [2053], "link.kdvr.com": [2053], "www.clothingattesco.com": [3334], "9.fanli.com": [5769], "g.cf": [2053], "cs.ut.ee": [17347], "haat.ch": [2053], "www.theepochtimes.com": [5430], "wustl.edu": [18290], "superstart.se": [15890], "h264-aws.vevo.com": [17773], "edihealth.com": [4993], "careers.state.gov": [17345], "support.xapo.com": [18841], "velo.ws": [2053], "links.laughingsquid.com": [20641], "nzoo.me": [2053], "ouad.unizar.es": [17643], "*.sslcert19.com": [15598], "citrixready.citrix.com": [3237], "mhs.io": [2053], "ada.lt": [586], "absys1.ulpgc.es": [17411], "pogoplug.com": [13074], "mis.cc.ntu.edu.tw": [11160], "color.idea.org": [2053], "gocatfish.in": [2053], "photos-f.ak.fbcdn.net": [5816], "www.radiocane.info": [21247], "www.gmo-registry.com": [6463], "www.healthfuze.com": [7401], "espaceautogere.squat.net": [21549], "etapestry.com": [5475], "*.javascriptmvc.com": [8676], "img1.doubanio.com": [19954], "webcare.estara.com": [5472], "*.jobamatic.com": [8743], "account.nvidia.com": [11174], "cvs.web.cern.ch": [2630], "wnk.so": [2053], "iiflw.net": [2053], "bmcg.us": [2053], "phpa.me": [2053], "jp.rakuten-static.com": [21251], "redletterdays.co.uk": [13911], "regilite.nytimes.com": [11189], "s.vinyets.cat": [2053], "findingma.st": [2053], "euwest1-beta-pix.dsp.io": [4883], "portent.co": [2053], "forum.lenovo.com": [9409], "ogt.jp": [8257], "angus.spydus.co.uk": [21546], "pntl.enaza.ru": [5332], "www.dieselnet.com": [4541], "2kom.ru": [114], "breuninger.com": [2360], "events.sjpl.org": [21465], "tjenester.uninett.no": [17477], "secure.getprice.com.au": [6737], "thepulp.me": [2053], "nyu.edu": [11486], "*.danzappone.com": [16594], "dus.jibbed.org": [20539], "heyor.ca": [2053], "www.rocketnet.jp": [14171], "www.bx.in.th": [1627], "fireeye.com": [5967], "argos.resinfo.org": [14041], "*.yelp.se": [18979], "abaguan.jd.com": [8571], "www.scene.org": [8417], "developer.mashery.com": [10210], "zmr.wienit.at": [18582], "donna.kr": [2053], "*.pbworks.com": [12420], "fife.gov.uk": [20106], "cdn1.vendocdn.com": [17898], "analytics.mashape.com": [10208], "www.fulltraffic.net": [6370], "shambhalamountain.org": [14901], "wlnt.cc": [2053], "hdvidtv.tk": [2053], "pfizer.com": [12822], "scenetap.com": [14582], "apcks.us": [2053], "3.mrwrk.nl": [2053], "nvla.ws": [2053], "*.noris.net": [11682], "u.salimbo.me": [2053], "hoon.io": [2053], "dmsc.me": [2053], "de-nl.dict.cc": [4536], "nwprogressive.org": [11789], "support.tapatalk.com": [16209], "www.ship-ment.com": [14950], "niod.worldcat.org": [18748], "www.parkingeye.co.uk": [12613], "www.syntevo.com": [15995], "ikhaya.ubuntuusers.de": [17383], "*.redbullcontentpool.com": [13901], "www.secondlookforensics.com": [14707], "m.yuga.ru": [22121], "m.ajurveda.hu": [2053], "m.jacoblo.se": [2053], "joyent.com": [8800], "*.multicastmedia.com": [10887], "gnusocial.de": [6478], "www.kryptnostic.com": [9169], "www.ip-projects.de": [7932], "italia.isidewith.com": [20414], "convention.bio.org": [1562], "carguy.co": [2053], "www.shacombank.com.hk": [14903], "chkto.com": [2053], "www.pepephone.com": [22068], "m.maynards.com": [2053], "ctyj.hu": [2053], "sympa.org": [15974], "*.gumgum.com": [7147], "www.studentessentials.cornell.edu": [3744], "brs.li": [2053], "mail.websupport.sk": [18456], "mavrck.net": [2053], "my.southwark.gov.uk": [15445], "login.numergy.com": [11777], "roseshi.re": [2053], "awsm.uk": [2053], "kodi.tv": [9104], "ccs.cabinetoffice.gov.uk": [2760], "cbssportsnetwork.com": [2583], "classic.fastmail.fm": [5804], "ktrent.us": [2053], "m.legal.yandex.com.tr": [18954], "api.adrtx.net": [631], "xpc.cloudpath.net": [3372], "s.topics.be": [2053], "carousel.rsc.org": [14230], "*.mun.ca": [10423], "img.godaddy.com": [6898], "www.electrum.org": [5257], "cms.rugby.gov.uk": [14262], "cnsl.me": [2053], "chloro.uk": [2053], "www.websecurify.com": [18442], "static.rbth.com": [21267], "vscl.osu.edu": [11959], "sufficientlysecure.org": [15835], "www.vh2.vutbr.cz": [17814], "th.foursquare.com": [6200], "blog.mondediplo.com": [10729], "user.tagboard.com": [21649], "www.hobbyking.com": [7582], "research.facebook.com": [5733], "use.typekit.com": [17189], "ciachef.be": [2053], "www.ligatus.nl": [9502], "itbit.com": [8532], "top.list.ru": [9609], "support.gamigo.com": [6563], "minorityinternships.energy.gov": [5355], "u.lds.li": [2053], "www5.basildon.gov.uk": [19494], "issues.jasig.org": [8670], "surreycc.gov.uk": [21611], "www.kinox.nu": [20597], "jobs.fm-world.co.uk": [20138], "stky.gd": [2053], "pacit.tech": [2053], "battelle.org": [1740], "www.clusterconnection.com": [3383], "ticketdriver.com": [16684], "leiama.is": [2053], "revelb.us": [2053], "officiel-des-vacances.com": [11953], "s.dallerup.net": [2053], "pinterst.ga": [2053], "services.devon.gov.uk": [4509], "www.standeyo.com": [15626], "kampyle.co": [2053], "www.question-defense.com": [13585], "bcportal.symantec.com": [15969], "reg.centrum.cz": [19674], "1topicne.ws": [2053], "content.gallup.com": [6527], "cdn.dmtmag.com": [4690], "n.icetravel.xyz": [2053], "www.airwarriors.com": [19332], "*.tsmc.com": [16117], "library.wellcome.ac.uk": [22001], "wdhne.ws": [2053], "developers.spiceworks.com": [15517], "global.content.compendiumblog.com": [3581], "*.psswrdbx.com": [12644], "generationawake.eu": [4467], "natrlambtn.info": [2053], "palaute.olvi.fi": [11983], "dearfcc.org": [4342], "s2.mt-cdn.net": [9963], "duna.vc": [2053], "xe.com": [18810], "spclr.us": [2053], "api.dol.gov": [19938], "www.fineartamerica.com": [5959], "mencap.org.uk": [10429], "i.daxue.taobao.com": [16206], "www.faxcritics.com": [5810], "webmail.hosteurope.de": [7660], "acquisition.jpl.nasa.gov": [11058], "ndfndr.in": [2053], "www.ivents.ya.ru": [18930], "mgb.nyc": [2053], "analytics.ponyfoo.com": [21169], "www.coxdigitalsolutions.com": [3807], "*.controlscan.com": [3688], "goint.us": [2053], "www.gp-digital.org": [20274], "build.particle.io": [12626], "www.spektrix.com": [21532], "securityevaluators.com": [14770], "webtraffiq.com": [18462], "cdn.stackcommerce.com": [15613], "app.tutanota.de": [17126], "myitsm.nih.gov": [11241], "stewilliams.com": [21576], "support.hoverwatch.com": [20367], "perm.beeline.ru": [1801], "url.ebdg.cu.cc": [2053], "livingsocial.com": [9679], "l.hchuang.info": [2053], "passport.i.ua": [7800], "www.cleveland.police.uk": [3296], "earn.greensmoke.com": [7055], "live.mayfirst.org": [10266], "cfl.re": [2053], "www.micasa.ch": [10520], "pkgs.org": [12969], "certifications.apple.com": [1160], "ewu.worldcat.org": [18748], "smarthelp.mcafee.com": [10282], "static.ant1.gr": [7040], "audiocultu.re": [2053], "www.mousematrix.com": [10813], "paradi.link": [2053], "itech.bz": [2053], "r.mzstatic.com": [11041], "vsq.io": [2053], "lok.ee": [2053], "psh.me": [2053], "tinkoff.ru": [16748], "research.bpcrc.osu.edu": [11959], "cmpr.tw": [2053], "portonorth.info": [2053], "tinylls.com": [2053], "aidsinfo.nih.gov": [11241], "info.movableink.com": [10816], "twisted4life.com": [17161], "wp1mo.in": [2053], "docs.roundcube.net": [14219], "help.netflix.com": [11421], "codeu.rs": [2053], "nkj.ru": [20915], "prvs.ly": [2053], "*.moatads.com": [10674], "johann.im": [2053], "www.manutan.fr": [10129], "studentaccounts.georgetown.edu": [6668], "keys.qubes-os.org": [13574], "pdfimages.wondershare.com": [22044], "pt.squat.net": [21549], "blog.bibliothek.kit.edu": [8949], "bugzilla.novell.com": [11728], "02faq.com": [2053], "secureleisure.telford.gov.uk": [21675], "asset-0.netbeans.org": [11376], "s1.online2pdf.com": [12071], "asia.adform.net": [625], "bugs.mysql.com": [10970], "track.juno.com": [8835], "online.email.hsbc.co.uk": [20375], "edc.intel.com": [8359], "www.google.com": [6974], "brians.photos": [2053], "tctmag.me": [2053], "*.dmlimg.com": [4182], "www.piraten-mfr.de": [12923], "colab.uniovi.es": [17479], "www.housingauthority.gov.hk": [7208], "answerology.cosmopolitan.com": [3758], "d53.co": [2053], "www.surespot.me": [15901], "koumbit.org": [9149], "*.admin.onesite.com": [11845], "www.palgrave.com": [12547], "sc2.sinacloud.com": [15088], "*.webresint.com": [18339], "www.nowness.com": [11732], "projectwonderful.com": [13370], "www.shellfish.io": [14940], "nars.engineering.osu.edu": [11959], "www.gimmickwear.com": [6782], "globe.thecthulhu.com": [16600], "i.niuradio.cl": [2053], "africangreyparrotcentre.co.uk": [748], "cs.idg.se": [7852], "stickhet.com": [15729], "srilanka.usembassy.gov": [21879], "iaea.org": [7812], "www.business.usa.gov": [17307], "bt.abbamboo.com": [2053], "*.propublica.net": [13339], "kabel.canaldigital.se": [2862], "lnk.gntr.org": [2053], "imgkings.com": [20440], "epen.is": [2053], "matlab.my": [2053], "a2.ec-images.myspacecdn.com": [11037], "l.next.dj": [2053], "lwn.net": [9266], "www.mg2mobile.com": [10508], "secure.instantssl.com": [8335], "kudelskisecurity.com": [9182], "uat.courierpost.co.nz": [3784], "*.geizhals.at": [6631], "photos.live.com": [9644], "*.nehta.gov.au": [11256], "t-nx.us": [2053], "healthreach.nlm.nih.gov": [11241], "globes.co.il": [6866], "ch.cahelpers.in": [2053], "l3.51fanli.net": [198], "mtbm.ag": [2053], "nccgroupdomainservices.com": [11070], "static.x10hosting.com": [18799], "s.styl.be": [2053], "thehut.com": [16489], "d.mact.me": [2053], "l.namira4ka.com": [2053], "forum.cmbchina.com": [2683], "www.atmos.uiuc.edu": [17234], "verifiedvotingfoundation.org": [17912], "*.go.com": [6480], "provider.communitycares.com": [19762], "assets.insnw.net": [8324], "x.kabam.com": [2053], "adminer12.vas-hosting.cz": [21896], "www.news.osu.edu": [11959], "17th.co": [2053], "sav.la": [2053], "www.smart-invests.biz": [15229], "arturkim.com": [1271], "l.connatix.com": [2053], "glsh.in": [2053], "www.snakehosting.dk": [15271], "*.lockbox.com": [9705], "etracker.com": [5495], "partner.redhat.com": [13909], "www.llvm.org": [9244], "sitefinity.com": [15126], "edmt.cc": [2053], "otbblog.co": [2053], "help.lendingclub.com": [9404], "sso.mhfi.com": [20791], "teenv.ge": [2053], "mobify.me": [10679], "discovernetwork.com": [4638], "makeloveland.com": [10074], "lincolnshire.gov.uk": [9525], "kickasstorrents.to": [9031], "agariomods.com": [759], "www.ebs.ncrs.nhs.uk": [11102], "meteorhacks.com": [10492], "vpncritic.com": [17798], "swift.hydranodes.de": [20401], "www.finmozg.ru": [5963], "acikakademi.com": [514], "projects.cloud.icij.org": [7831], "marge.fa.vutbr.cz": [17814], "www.nicennaughty.co.uk": [11579], "fedregistry.renater.fr": [13999], "webhost355.asu.edu": [1232], "ajsch.me": [2053], "themoneyreferral.com": [3570], "s8am.com": [2053], "stc.synology.com": [15992], "livelove.ly": [2053], "static.hackerspace.pl": [7280], "hits.guardian.co.uk": [7128], "img.autobytel.com": [1462], "abysmal.nl": [472], "www.klerk.ru": [20607], "l.mbwd.pt": [2053], "crosskeyshomes.co.uk": [19820], "iitm.be": [2053], "moi.gov.sa": [14545], "states.secular.org": [14716], "veterans.georgetown.edu": [6668], "js.chefkoch-cdn.de": [3116], "www.midlothian.gov.uk": [10556], "aai-logon.fhnw.ch": [5682], "secondlife.com": [14706], "edge.ie": [2053], "redmine.openinfosecfoundation.org": [12214], "pc.moorig.com": [2053], "mybenefitsplan.osu.edu": [11959], "www.pirateportal.xyz": [21215], "support.crypteron.com": [3921], "www.koolspan.com": [20615], "shop.toonpool.com": [16827], "televize.kn.vutbr.cz": [17814], "www.betterfap.com": [1880], "coloradoattorneygeneral.gov": [3503], "*.web4u.cz": [18348], "ourtesco.com": [12348], "usfigu.re": [2053], "heifer.org": [7423], "chekpag.es": [2053], "huseyin.me": [2053], "thesne.ws": [2053], "www.rivieratours.com": [14142], "indig.ooo": [2053], "www.stacksity.com": [15617], "www.dml.georgetown.edu": [6668], "forms.moon-ray.com": [10765], "l.maxkostow.com": [2053], "www.getsatisfaction.com": [6738], "*.tweakers.net": [17143], "cdn.static1.marvelstore.com": [10204], "rapid7.com": [13788], "translate.yandex.kz": [18957], "emskr.chefkoch-cdn.de": [3116], "shop.nknews.org": [11123], "v007.ax2600ab.omdx.uprr.com": [21870], "tally-ho.me": [2053], "sports.vice.com": [17959], "i-1.me": [2053], "kinyetbna.gq": [2053], "www.nrc-cnrc.gc.ca": [11247], "cogreens.org": [2053], "www.omakaseweb.com": [11986], "online1.drweb.com": [4879], "4n6.mobi": [2053], "www.mediamarkt.se": [10343], "stressfaktor.squat.net": [21549], "leedsforlife.leeds.ac.uk": [17604], "landrover.here.com": [7465], "jaast.com": [12555], "athena.iubenda.com": [8544], "soldierx.com": [15363], "wf.net.au": [2053], "isd.hscic.gov.uk": [20388], "information.dk": [8272], "www.rocketmail.com": [18942], "*.edublogs.org": [5193], "www.adelphi.de": [622], "www.sunroofwinddeflectors.com": [15861], "twistlock.com": [21827], "trumanlibrary.org": [7346], "m.washington.edu": [17577], "90poe.com": [2053], "emrkt.in": [2053], "rol.st": [2053], "studentlife.osu.edu": [11959], "www.goodreads.com": [6957], "help.greencubes.org": [20281], "theinternetco.net": [16561], "www295.americanexpress.com": [972], "databits.net": [4274], "trash.net": [16962], "gototraining.com": [6913], "techflavor.io": [2053], "surveys.ofsted.gov.uk": [20985], "mep-store.engineering.osu.edu": [11959], "legovine.com": [2053], "ap2.pccu.edu.tw": [12425], "dagmar.me": [2053], "nss.wustl.edu": [18290], "xihua.meituan.com": [10405], "www.ridus.ru": [21309], "surge.omniti.com": [11994], "ldscdn.org": [16485], "truecrypt.ch": [17042], "stjin.me": [2053], "www.eshop.kensington.com": [9004], "infotools.lloydsbank.com": [9686], "m.static.newsvine.com": [11541], "leo.camp": [2053], "gzhls.at": [13252], "www.2ch.cm": [108], "plunderpirat.es": [2053], "blankslate.io": [2111], "blog.magellanmodels.com": [18730], "influencersconference.com": [8247], "dmrg.co": [2053], "s.primepix.ru": [2053], "test.osha.gov": [11869], "www.assetmanagement.hsbc.com": [7233], "www.akira.org": [804], "theappendix.net": [16509], "www.bellingcat.com": [1818], "mywebsitepersonal.1and1.com": [61], "alaska.worldcat.org": [18748], "www.snapwidget.com": [15274], "ibww.eu": [2053], "imgur.com": [8149], "www.zoink.it": [5103], "digitalcommons.wustl.edu": [18289, 18290], "alumni1.brunel.ac.uk": [19599], "search.wikileaks.org": [18590], "dexmedia.com": [4515], "webmail.brenet.de": [2349], "*.samwhited.com": [14498], "challi.es": [2053], "terrain.jp": [2053], "money.fbk.info": [5818], "internetsociety.org": [8423], "openmrs.org": [12149], "www.vidahost.com": [17971], "tbiddy.com": [2053], "portugal.usembassy.gov": [21879], "k.sjks.us": [2053], "go.veeed.com": [2053], "blog.mageia.org": [10014], "pbox.travel.rakuten.co.jp": [13768], "www6.slac.stanford.edu": [15635], "www.cravatar.eu": [19814], "go.continuum.io": [19781], "sexyveggie.co": [2053], "issibn.swm.de": [14444], "git.beaker-project.org": [1781], "secure.doublerobotics.com": [4808], "td10.us": [2053], "uprr.com": [21870], "lnk.virican.net": [2053], "rt2.map.gtimg.com": [7121], "api.playkey.net": [13027], "tumutanzi.com": [17103], "www.visionartforum.com": [18066], "plan-summaries.anthem.com": [19395], "m.rns.online": [21316], "89pi.es": [2053], "bbaccs.co": [2053], "stu.link": [2053], "tem.mn": [2053], "x.mikaelf.com": [2053], "www.staffportal.surreyheath-online.gov.uk": [21612], "images.42floors.com": [170], "nxdr.co": [2053], "goods-guru.ru": [2053], "blogdaredacao.catracalivre.com.br": [2967], "shrtdn.com": [2053], "help.maven.co": [10252], "static.eurodns.com": [5511], "ivsezaodnogo.ru": [20516], "peopleschoice.com": [12765], "editions.thing.net": [16622], "*.netnod.se": [11438], "wp01.dudley.gov.uk": [4891], "csync.org": [3972], "www.dianomi.com": [4525], "classic.iridiumbrowser.de": [8504], "drupalwatchdog.com": [4878], "van.so": [2053], "search.creativecommons.org": [3848], "6wunderkinder.com": [214], "labs.nationalarchives.gov.uk": [11265], "gephardtinstitute.wustl.edu": [18290], "www.gpugrid.net": [6491], "rtco.ws": [2053], "movieposter.com": [10832], "nr.qq.com": [13513], "promtec.tk": [2053], "mcc.fyi": [2053], "xgeek.in": [2053], "sellercentral.amazon.in": [19372], "education.isc2.org": [7967], "cru.is": [2053], "s.2o6.net": [2053], "limesurvey.org": [9517], "myw.lu": [2053], "marthastewart.com": [10196], "sm.ai": [2053], "www.playfire.com": [13025], "masspirgstudents.org": [9882], "*.trachtenshop24.de": [16903], "www.idstronghold.com": [8085], "www.research.hsbc.com": [7233], "mis.sn": [2053], "unc.tv": [2053], "go.alan.cm": [2053], "imap-01.ct.infn.it": [7913], "s.luizfilipe.me": [2053], "www.eo.mondediplo.com": [10729], "*.righthaven.com": [14118], "wiki.warthunder.ru": [21977], "careers.symantec.com": [15969], "nine.li": [2053], "shiseido-fb.jp": [2053], "mjr.bz": [2053], "lansforsakringar.se": [9304], "*.i-kiz.de": [7797], "ygnition.com": [18984], "forms.southwark.gov.uk": [15445], "webcompat.com": [18409], "igg.me": [8222], "trobs.me": [2053], "hdsupply.fm": [2053], "jthy.pe": [2053], "ebzr.tk": [2053], "bourn.co": [2053], "jfrmilner.co.uk": [2053], "portma.net": [2053], "gclay.ws": [2053], "openhpi.de": [12138], "cdn.torrentfunk.com": [16852], "lucurat.es": [2053], "broadbandmap.gov": [2404], "my.egift.io": [2053], "ce.gs": [2053], "vevent.com": [21913], "zt.meituan.com": [10405], "vs5.bdstatic.com": [1662], "finalsfever.courierpost.co.nz": [3784], "l.shiorino.com": [2053], "getty.edu": [6739], "urbanvilla.nl": [17699], "www-cache1.extensis.com": [5634], "metrode.al": [2053], "shibboleth.stanford.edu": [15635], "worldhealth.net": [18764], "*.customerhub.net": [8286], "*.processnet.hu": [4756], "shadow.cs.umn.edu": [17554], "www.jsclasses.net": [8808], "decs.dict.cc": [4536], "sbux.jp": [2053], "www.wd2go.com": [18194], "airbnb.*": [788], "supermoms.net": [2053], "lhvci.com": [2053], "www.math.uchicago.edu": [17532], "*.kobo.com": [9101], "linuxserver.io": [9595], "www.bnkomi.ru": [19563], "scot.sh": [2053], "swfdec.freedesktop.org": [6243], "xm.techxpress.net": [16277], "login.linode.com": [9547], "mflwr.co": [2053], "mobile.willhaben.at": [18613], "stf.cc": [2053], "manage.ukfsn.org": [17244], "wpmudev.org": [18770], "yoyo.q-assets.com": [21235], "progressreport.cancer.gov": [2864], "gotfuturama.com": [6980], "kv.topv.nl": [2053], "www.edri.org": [4997], "pear2.php.net": [12453], "*.kobobooks.pt": [9101], "ocamaria.com": [2053], "www.chartbeat.com": [3077], "uncha.in": [2053], "ants.cafe": [2053], "learn.javascript.ru": [20527], "smackcoders.com": [15224], "origin.www.upcbusiness.nl": [17281], "leisure.cheshireeast.gov.uk": [3125], "go.unruly.co": [21860], "www.mathsisfun.com": [10235], "*.uni-rostock.de": [17621], "updates.software-univention.de": [17511], "hsbc.com.bd": [20377], "ferga.info": [2053], "static-www.elastic.co": [5243], "sfu.ca": [14893], "lk.godrenews.us": [2053], "pulse.me": [13452], "sfmoma.me": [2053], "imsl.engineering.osu.edu": [11959], "vdub.in": [2053], "byandlar.ge": [2053], "service.marshall.usc.edu": [17564], "blogaveli.co": [2053], "grn.me": [2053], "www.3sat.de": [162], "rad.ical.io": [2053], "www.sempervideo.de": [14816], "secby.us": [2053], "amway.com": [929], "www.colorofchange.org": [3502], "www.tokyotosho.se": [16809], "on.moby.com": [2053], "blog.statcounter.com": [15669], "fluiddynamics.osu.edu": [11959], "a.alest.com.br": [2053], "asset-1.soupcdn.com": [15416], "reporting.here.com": [7465], "cdn.leagueoflegends.com": [9362], "infogrow.us": [2053], "www.faiusa.org": [6115], "luannan.meituan.com": [10405], "www.jquerymobile.com": [8599], "www.hostbillapp.com": [7652], "nittele.jp": [2053], "www.8ch.net": [234], "*.arstechnica.net": [1253], "*.nd.edu": [17614], "brulinesfuelsolutions.com": [17955], "www.infoblox.com": [8255], "omho.me": [2053], "my025.tk": [2053], "theatlantic.com": [16511], "d2bs.us": [2053], "l.mkj.is": [2053], "grindr.com": [20283], "vpsportal.gmocloud.com": [6460], "www.varietylatino.com": [17859], "www.kitepackaging.co.uk": [9074], "www.roleplaychat.org": [14186], "csull.in": [2053], "tvngl.sm": [2053], "www.synology.com": [15992], "ucsb.worldcat.org": [18748], "stable-changelog.wesnoth.org": [18500], "f.day.az": [2053], "harris24.com": [2053], "buerger-cert.de": [2453], "*.virginia.edu": [17575], "www.yosemitenews.info": [19004], "support.ansible.com": [1097], "rlb.im": [2053], "aarondcampbell.com": [432], "ibz.cc": [2053], "www.cs.ucsd.edu": [17216], "nanocancer.ideascale.com": [20423], "emubrightfutures.org": [18730], "5joycasino.com": [20552], "esybuy.co": [2053], "www.marketpress.com": [10173], "www.neptuneos.com": [20889], "www.northeastern.edu": [11697], "www.wiltshire.police.uk": [22030, 22031], "www.coverageforall.org": [3798], "i.pubu.tw": [2053], "bblox.me": [2053], "www.adisc.org": [307], "sites.yammer.com": [18952], "khmao.beeline.ru": [1801], "mypayquake.com": [12681], "www.act.ulaval.ca": [17515], "static.flocabulary.com": [6051], "advisorfor.ms": [2053], "ss.mirachem.com": [2053], "hai.rs": [2053], "www.pardot.com": [12605], "bd.tapad.com": [2053], "standards.freedesktop.org": [6243], "ngvty.co": [2053], "cache22.net": [2053], "metaboli.co.uk": [10479], "game.hao123.com": [20312], "blog.codeanywhere.com": [19746], "m.mail.ru": [10040], "srewis.me": [2053], "realestate.msn.com": [9959], "benjm.in": [2053], "www.domreg.lt": [4767], "cdn.rawgit.com": [13814], "gdig.io": [2053], "pens.pe": [2053], "forum.kaosx.us": [20575], "wiki.openstack.org": [12173], "photos.pcpro.co.uk": [12431], "xteam.brookings.edu": [2416], "www.incloak.es": [8179], "sjlopezb.eu": [2053], "hatim.co": [2053], "snelpanel.com": [15279], "jndoe.co": [2053], "at.vrcine.org": [2053], "rysny.me": [2053], "strongswan.org": [21593], "hardware.redhat.com": [13909], "sso.vodafone.ie": [18108], "store.manageengine.com": [10103], "u.jimsmusic.co": [2053], "soul.tools": [2053], "otr.to": [11881], "gentoo.petteriraty.eu": [12815], "store.omnigroup.com": [11992], "lookbook.zalando.com": [19094], "static.bitcoinity.org": [2034], "subversion.renater.fr": [13999], "ilovefreegle.org": [8037], "codeclimate.com": [3423], "demandprogress.org": [4423], "upland.illuminateed.com": [20430], "dc2.client.hip.live.com": [9644], "bubble.104.com.tw": [18], "lumo.cf": [2053], "www.opensource.apple.com": [1160], "ede-look.org": [21006, 21007], "zensoo.link": [2053], "www.itspa.org.uk": [7996], "ango.in": [2053], "ifocus.me": [2053], "iolov.es": [2053], "mgr.ph": [2053], "colrme.club": [2053], "go.sfu.ca": [14893], "contests.nvidia.com": [11174], "csh.la": [2053], "to.mdtrttr.com": [2053], "fa.lk": [2053], "dmu.worldcat.org": [18748], "www.osmfoundation.org": [11871], "kapital.kz": [20576], "hello.campaignmonitor.com": [2839], "dpike.me": [2053], "shopqa.mheducation.com": [20790], "c15.oaug.org": [2053], "youtube.co.ma": [19016], "cryptad.com": [3913], "www.pfizerpro.com": [12824], "ns.sinaimg.cn": [15091], "www.harlandclarkegiftcard.com": [7339], "texasgroup.worldcat.org": [18748], "dot5hosting.com": [4784], "*.postimg.org": [13204], "library.rit.edu": [13667], "news-images.vice.com": [17959], "www.brandweeruitgeest.nl": [2340], "www.oaklandish.com": [11893], "www.youtube.com.pt": [19016], "vex.net": [21914], "www.thecommunicationtrust.org.uk": [21694], "jn.cm": [2053], "imgtec.com": [20441], "autoadmanager.com": [1457], "cdn11.contentabc.com": [3678], "irssi.org": [8507], "policy.isis.poly.edu": [13113], "www.dnscurve.com": [4137], "www.websitealive9.com": [18445], "wsstatic.govmetric.com": [6993], "www.yellowpagesoptout.com": [18978], "ssl.post-gazette.com": [12945], "dstas.me": [2053], "fictionpress.com": [5887], "endcu.org": [2053], "manage.coreix.net": [3739], "ggnz.la": [2053], "x.enepal.net.np": [2053], "r.pst.org": [2053], "www.rvlution.net": [13715], "my.backpage.com": [1644], "go.sgic.com.au": [2053], "ask.threatmatrix.com": [21730], "de.functions-online.com": [20187], "www.reklamport.com": [13984], "www.bitsharestalk.org": [2068], "cdwg.com": [2623], "netdna.bootstrapcdn.com": [2271], "l.smthng.co": [2053], "nes.cu.cc": [2053], "opsmgr.nu": [2053], "news.vtig.com": [2053], "caiop.me": [2053], "www.finn.no": [5964], "sltfrm.com": [2053], "hairoffer.us": [2053], "go.cradio.fm": [2053], "lfait.com": [9226], "lwy.io": [2053], "ad.himediadx.com": [7551], "sedo.com": [14785], "jobs.lever.co": [9428], "vidahost.com": [17971], "*.bruxelles.indymedia.org": [8234], "m.next.westlaw.com": [18514], "itrequest.ucsc.edu": [17591], "www.megapath.com": [10396], "housingmanagement.lambeth.gov.uk": [20631], "tb.cn": [16236], "downapp.baidu.com": [1661], "*.vulture.com": [18170], "nschur.de": [2053], "www.bitmask.net": [2056], "tmac.ro": [2053], "rmbl.es": [2053], "keiran.biz": [2053], "jck.pt": [2053], "djoserwandelenfiets.nl": [7597], "esdiscuss.org": [5068], "mineralnye-vody.beeline.ru": [1801], "janovas.unizar.es": [17643], "auphonic.com": [1407], "www.bootswatch.com": [2272], "app-uk.resrc.it": [13832], "help-de-eu.nike.com": [11595], "www.groupon.com.br": [7099], "beta.maps.yandex.com": [18956], "www.americanflyertrains.com": [979], "jspace.co": [2053], "www.silvertunnel.org": [15048], "desktop.ucsd.edu": [17216], "hell.io": [2053], "app.arachnys.com": [1189], "nicebeer.me": [2053], "l.lookfor.hk": [2053], "mljff.com": [2053], "vocabulary.com": [21938], "bilet.sakh.com": [21360], "www.gavinhungry.com": [6591], "responsibility.verizon.com": [17918], "beller.in": [2053], "goslice.com": [15200], "coinomat.com": [3470], "www.vdv.de": [17770], "ablete.ch": [2053], "rt.ru": [13703], "mail.monkeybrains.net": [10746], "shplz.it": [2053], "static.dealabs.com": [19881], "virwox.com": [18022], "l.jusbr.com": [2053], "www.dna.land": [4130], "servehere.rocks": [2053], "thersitis.espiv.net": [20058], "usuz.unizar.es": [17643], "ln.twine.me": [2053], "cdn.inspectlet.com": [8325], "u.stop-cri.me": [2053], "*.cyberduck.io": [4041], "fortbragg.illuminateed.com": [20430], "mpd.vc": [2053], "link.2net.co.il": [2053], "cpry.net": [2053], "mxgm.org": [9975], "opis.cmft.nhs.uk": [11102], "action.aarp.org": [270], "www.cybrary.it": [19844], "*.3cdn.net": [156], "calchamer.com": [2785], "blx.co": [2053], "tags.bluekai.com": [2186], "http.maxon.net": [10263], "orbitalatk.com": [12295], "www.smartronix.com": [15246], "jeankno.ws": [2053], "pic.iptorrents.com": [7945], "stanfordevents.stanford.edu": [15635], "nernst.chem.sfu.ca": [14893], "bryansk.rt.ru": [13703], "downloads.cloudbees.com": [19736], "fchusj.org": [2053], "migrol.ch": [10562], "www.cites.illinois.edu": [17544], "mini.bugs.opera.com": [12252], "www.nxtgn.org": [11793], "consult.richmond.gov.uk": [21307], "wsp.to": [2053], "chinafile.com": [19705], "custdc.status.io": [21569], "snapwidget.com": [15274], "www.konami-korea.kr": [9124], "iacr.org": [8404], "hamradio.com": [7315], "drone.io": [4862], "suvir.me": [2053], "*.fwmrm.net": [6254], "appsoft-web.com": [2053], "continuousphp.com": [19780], "popsty.la": [2053], "members.fas.org": [5840], "avnspl.us": [2053], "*.arukereso.hu": [1272], "linksfu.com": [9541], "webropolsurveys.com": [18437], "on.razlan.net": [2053], "media.glasses.com": [6824], "apps.stratford.gov.uk": [21586], "a4.jimstatic.com": [8720], "zoekje.me": [2053], "on.intersect.es": [2053], "everyface.co": [2053], "skylrk.us": [2053], "downloadeu3.teamviewer.com": [16259], "www.realtimeboard.com": [21275], "valleywag.gawker.com": [6593], "l.rabbitohne.ws": [2053], "www.habervision.com": [7257], "www.verisignlabs.com": [17916], "www.amnesty.org.tr": [1008], "irp.nih.gov": [11241], "frugalware.org": [6352], "webenrol.com": [21991], "my.oodio.net": [2053], "drama.id": [2053], "ivn.us": [8206], "www.mirtv33.ru": [20806], "*.eventbrite.co.uk": [5546], "wip.imagient.ro": [2053], "www.totalicare.com": [16874], "dev.mondediplo.com": [10729], "ecommerce.oblic.com": [11807], "georgia.usembassy.gov": [21879], "fishnetsecurity.com": [5997], "8gwc-kbhkort.kk.dk": [8883], "allure.com": [3616], "wikihub.berkeley.edu": [17526], "www.dnschain.net": [4134], "s.sysness.com": [2053], "s.pgab.me": [2053], "bellring.in": [2053], "bandainam.co": [2053], "www.gna.org": [6882], "m3.ttxm.co.uk": [16123], "monabo.lemonde.fr": [9348], "dataconsole.kruxdigital.com": [9166], "shilpa.us": [2053], "qiwi.com": [13533], "masq.in": [2053], "autism.link": [2053], "mpagano.com": [10859], "on.sgsoccer.net": [2053], "on.lauffer.co": [2053], "z.john.am": [2053], "help.georgetown.edu": [6668], "mozaik.axosoft.com": [1517], "www.guarantorusloans.co.uk": [7126], "sow.media": [2053], "spreadshirt.de": [15552], "my.beck-thom.as": [2053], "gogadget.news": [2053], "c.mpj.jp.net": [2053], "www.efinancialcareers.cn": [5009], "openlistings.co": [12217], "pokeinthe.io": [21160], "topoption.com": [16833], "spreadshirt.dk": [15552], "ly.zdf.de": [22127], "t.adapt.dk": [2053], "ibanking.stgeorge.com.au": [21577], "armenia.usembassy.gov": [21879], "site24x7.com": [15108], "eh.ly": [2053], "secure.gettyimages.no": [6741], "kenexa.com": [9002], "jariangibson.com": [8669], "secure.gettyimages.nl": [6741], "eform.udngroup.com": [17224], "workiva.com": [18744], "www2.amnesty.org.uk": [1009], "*.datacard.com": [4276], "ez.meituan.com": [10405], "cdn.pulpix.co": [13451], "pics.crucial.jp": [3902], "rates.psc.gov": [21220], "services.assetmanagement.hsbc.co.uk": [20375], "rui.gwallet.com": [13756], "*.blazonco.com": [2117], "fhacks.link": [2053], "teleci.ne": [2053], "support.qacafe.com": [21237], "blog.decc.gov.uk": [19885], "cdn10.sure-assist.com": [15899], "verfassungsschutz.de": [2483], "dsnmtr.ir": [2053], "weifang.jd.com": [8571], "tusfiles.net": [17124], "arabi.st": [2053], "i-cares.wustl.edu": [18290], "flixbus.fr": [6047], "tom.vgwort.de": [17775], "proxybay.press": [21771], "www.globusonline.org": [6869], "wigan.gov.uk": [18585], "www3.firstdirect.com": [20127], "suppliersignup.kagi.com": [8918], "www.aps.org": [969], "www.mitpress.mit.edu": [9916], "quadrantsec.com": [13553], "ar.piliapp.com": [12887], "essaysreasy.net": [5469], "spmk.it": [2053], "nerdne.ws": [2053], "coyotepr.it": [2053], "ontt.tv": [2053], "fee.org": [5677], "jboss.com": [8564], "www.wiltsmessaging.co.uk": [22032], "law.ox.ac.uk": [17557], "s.ccmc.pw": [2053], "img5.qiyipic.com": [20413], "hackerboard.de": [7277], "45millionvoices.org": [175], "*.blogspot.co.ke": [2166], "onlandscape.co.uk": [12016], "marionlibrary.osu.edu": [11959], "www.vetdepot.com": [17946], "multimedia.pol.dk": [13083], "bugbase.adobe.com": [655], "ionicframework.com": [8487, 8488], "www.morphis.com": [10786], "dsr.gd": [2053], "www.sonypictures.co.uk": [15400], "news.eastsussex.gov.uk": [19994], "rdar.co": [2053], "guyb.ca": [2053], "educationnext.hks.harvard.edu": [5196], "coe.uaa.alaska.edu": [17519], "beaconreader.com": [1779], "www.mariestopes.org.au": [10156], "www.discovery.org": [4641], "network.pivotal.io": [12947], "apps.cheshireeast.gov.uk": [3124], "touchbase.state.gov": [17345], "mobly.vc": [2053], "apigee.com": [1132], "1.downloader.disk.yandex.com": [18956], "phabricator.haskell.org": [7361], "dw.cbsi.com": [2585], "go.tidev.io": [2053], "pkp.sfu.ca": [14893], "www.st.org": [14423], "www.louiseharrisoncouture.com": [9784], "www.udacity.com": [17392], "ak.quantcast.com": [13567], "www.digitalwpc.com": [4585], "forum.games.mail.ru": [10040], "www2.trash.net": [16962], "www.collegeinfogeek.com": [19755], "order.bayphoto.com": [1755], "m.river.ad": [2053], "www.openbookpublishers.com": [12200], "savedeo.com": [14551], "cushwk.co": [2053], "century.im": [2053], "wxlink.jd.com": [8571], "delish.com": [4408], "btcchina.com": [1599], "on.bams.de": [2053], "www.peerreach.com": [12729], "clic.reussissonsensemble.fr": [14068], "webmail.plop.at": [21151], "daserste.ndr.de": [11310], "en-us.help.blackboard.com": [2103], "yudu.meituan.com": [10405], "mcmagic.biz": [2053], "blubrry.com": [19560], "waze.com": [18311], "www.amwaygrand.com": [928], "i-secure.walmartimages.com": [18261], "host-tracker.com": [7647], "de-sr.dict.cc": [4536], "stec-t03.xhcdn.com": [18815], "o89.in": [2053], "guardian.co.tt": [7127], "c.affil.walmart.com": [18260], "www.ncta.com": [11077], "jdtc.us": [2053], "anderz.org": [2053], "www.trumpia.com": [17054], "www.corrent.org": [3754], "www.browser.yandex.com.ua": [18955], "qbcc.build": [2053], "www.websupport.cz": [18389], "dmsguild.com": [12029], "infusedsystems.com": [8285], "www2.scribblelive.com": [14653, 14654], "now.wthr.com": [2053], "www.championsofregnum.com": [3050], "placesonline.com": [12974], "pirates.pw": [21709], "dl.c7photo.com": [2053], "ellas.li": [2053], "*.american.edu": [971], "my.salemefc.org": [2053], "s.p2pdai.com": [2053], "caliber.re": [2053], "liferay.com": [9494], "www.cdw.com": [2623], "z.jman100.com": [2053], "arewee10syet.com": [19412], "perf.weborama.fr": [18434], "iq.ly": [2053], "publikationen.sachsen.de": [14454], "www.udemy.com": [17393], "expr.ws": [2053], "www.offog.org": [11955], "linsrv104.linuxcontrolpanel.co.uk": [9586], "www.jwplayer.com": [9752], "azc.bz": [2053], "m.here.com": [7465], "themacro.com": [16605], "advertiser.adknowledge.com": [639], "3m3.us": [2053], "www.tcpalmextras.com": [16048], "s.k39.la": [2053], "pfre.us": [2053], "direct.yandex.by": [18953], "cp.pt": [3813], "www.nationaldefensemagazine.org": [11238], "dv8.nl": [2053], "ebrkohchang.com": [2053], "link.e-psf.org": [2053], "pensionsmyndigheten.se": [12752], "g7.hitravel.xyz": [2053], "plant.autotrader.co.uk": [19457], "flinto.com": [6039], "mgel.osu.edu": [11959], "jgj.im": [2053], "ethicslab.georgetown.edu": [6668], "foundationsource.com": [6195], "*.arhivach.org": [19414], "modelviewculture.com": [10705], "otl.stanford.edu": [15635], "ll-assets.tmz.com": [16087], "www.itch.io": [8537], "starinv.co": [2053], "eurm.recs.richrelevance.com": [14104], "jwpsrv.com": [8855], "qidian.qpic.cn": [13539], "www.bvg.de": [1623], "vikn.gs": [2053], "livb.tk": [2053], "pathpost.co": [2053], "nmb.li": [2053], "pindropsecurity.com": [21125], "cla.rocks": [2053], "www.starwars.com": [15648], "livr.pl": [2053], "riverisland.com": [14139], "nap.rkn.gov.ru": [14146], "www.spamicity.info": [15464], "l4.chaucanh.net": [2053], "chtmds.me": [2053], "bitly.pb2.co": [2053], "illinoistech.org": [8116], "peliaika.fi": [6511], "mobile.openbank.ru": [21008], "iplg.in": [2053], "cfcu.co": [2053], "novorossiysk.beeline.ru": [1801], "in.cio.co.ke": [2053], "yom.nu": [2053], "cdc-tree.stanford.edu": [15634], "www.leetway.com": [9382], "a.agileyes.com": [2053], "software.brown.edu": [2421], "www.autistica.org.uk": [19454], "malcovery.com": [10086], "en.clave.cc": [2053], "torrentz.to": [16862], "bruns.online": [2053], "www.peerlibrary.org": [12728], "images.hostcentric.com": [7653], "www.chaox.net": [3066], "ams.amazon.de": [19369], "mrbrain.tv": [2053], "www.storehouse.co": [21583], "www.leboncoin.fr": [20650], "chopo.intecca.uned.es": [17446], "tonyarcieri.com": [16820], "bitme.com": [2058], "contextly.com": [3681], "ateamz.com": [2053], "impl.cg": [2053], "connect.astaro.com": [5280], "dmnd.la": [2053], "een.ec.europa.eu": [5525], "pride-at.work": [2053], "purephar.ma": [2053], "vaned.co": [2053], "www.salenames.ru": [14485], "elaf.mobi": [2053], "www.js.org": [20555], "feeds.jivesoftware.com": [8733], "artsm.it": [2053], "s.scholzi100.de": [2053], "ecuador.usembassy.gov": [21879], "270.is": [2053], "payscale.rocks": [2053], "styler.rbc.ua": [21263], "www.serverstack.com": [14853], "rgol.in": [2053], "plastidipuruguay.com": [13001], "pbpo.st": [2053], "cultiv8.me": [2053], "www.niehs.nih.gov": [11241], "it.about.aegeanair.com": [7041], "on.qnsmade.co": [2053], "www.aeon.co": [720], "techtv.mit.edu": [9916], "coreinfrastructure.org": [3735], "*.getshine.com": [6725], "piku.la": [2053], "eigen.tuxfamily.org": [21820], "cliqueja.com": [2053], "cbps.canon.com": [2868], "www.pingone.com": [12898], "self.shoes": [2053], "myciu.biz": [2053], "*.bransonzipline.com": [2341], "hydra.nixos.org": [11624], "datadirect.com": [4258], "dominexfoods.us": [2053], "www.sso.bluewin.ch": [2210], "chat.cari.net": [2576], "www.lokun.is": [9727], "www.cotse.net": [3764], "link.fnf.fm": [2053], "www.1337x.to": [38], "conferencing.vodafone.pt": [18109], "northnorfolk.org": [11695], "www.abi.org.uk": [278], "std3.ru": [15699], "elanex.biz": [5242], "secure.p03.eloqua.com": [5282], "accountchooser.com": [499], "strato.*": [14428], "*.santanderbillpayment.co.uk": [14531], "*.wsod.com": [10188], "getadblock.com": [556], "muckrock.com": [10873], "*.player.fm": [13022], "checkmyping.com": [3110], "i4.hdslb.com": [20327], "wasa.bz": [2053], "scholarships.stanford.edu": [15635], "snelserver.com": [15279], "oxfordlearnersdictionaries.com": [12396], "greenam.org": [2053], "job.otto.de": [12339], "library.cwi.nl": [3020], "bug.me": [2053], "wpmag.me": [2053], "it.malwarebytes.org": [10093], "mobile.btcchina.com": [1599], "s.udn.com.tw": [17224], "bhphotovideo.com": [19527], "www.websitealive5.com": [18445], "12mars.rsf.org": [14018], "zpkd.it": [2053], "rhoml.com": [2053], "ccfn.ncsu.edu": [11690], "swingers.theadulthub.com": [21690], "www.rnengage.com": [13673], "jlcfan.link": [2053], "purinastore.com": [13475], "www.sciamdigital.com": [14626], "opencha.com": [2053], "de.visioncritical.com": [18067], "www.complianceoffice.wustl.edu": [18290], "stipendia.vutbr.cz": [17814], "www.nustarz.com": [11761], "invoiceocean.com": [8480], "www.peertech.org": [12737], "dataskydd.net": [4293], "iblocklist.com": [8047], "go.andyy.me": [2053], "www.eauth.usda.gov": [17495], "*.esetstatic.com": [5056], "www.vodafone.de": [18107], "www.virtualspirits.com": [18045], "corp.qiwi.com": [13533], "sbox.es": [2053], "www.barracudanetworks.com": [1728], "dw.com.com": [2584], "mizba.la": [2053], "gearhog.com": [6605], "amsl.com": [350], "*.icims.com": [7832], "nottingham.ac.uk": [11726], "cafepress.co.uk": [2775], "cisofy.com": [2672], "zelenodolsk.beeline.ru": [1801], "*.4rx.com": [180], "shop.flixbus.at": [6047], "1lnk.de": [2053], "dvdd.tk": [2053], "www.biallo.de": [1892], "www.driverseddirect.com": [4861], "french.chad.usembassy.gov": [21879], "help.theplatform.com": [16496], "cdsmedia.cern.ch": [2632], "secure.stage-gettyimages.be": [6741], "b2ben.to": [2053], "business.mtt.ru": [20848], "www.shellterproject.com": [14942], "people.sovcombank.ru": [21516], "ols.business.yahoo.co.jp": [18944], "downloads.xenproject.org": [18859], "www.privnote.com": [13333], "www.ukwebsolutionsdirect.co.uk": [17246], "cybershambles.com": [4036], "www.cia.gov": [2657], "globaltestsupply.com": [6841], "beacon.rubiconproject.com": [14247], "mappedinisrael.com": [10137], "www.esolangs.org": [5464], "www.kcl.ac.uk": [9052], "url.cap3.de": [2053], "urb.bz": [2053], "kikiwrit.es": [2053], "lccdataexchange.lincolnshire.gov.uk": [9525], "a0.jimstatic.com": [8720], "www.cof.ens.fr": [5029], "mtu.edu": [9967], "robeco.nl": [14153], "cdn.mxpnl.com": [10929], "changde.meituan.com": [10405], "www.communitycares.com": [19762], "cebit.de": [2984], "*.whispersystems.org": [18546], "cp.win-rd.jp": [18625], "www.bc.edu": [1542], "webapp1.law.cuhk.edu.hk": [2747], "hft-leipzig.de": [7523], "patrickbateman.biz": [12668], "fashionmix.bg": [2053], "j-ch.me": [2053], "flo.vc": [2053], "snm21.xyz": [2053], "www.ohio-state.edu": [11960], "messenger.live.com": [9644], "*.rpxnow.com": [13683], "incredbl.co": [2053], "maps.yuga.ru": [22121], "otpdirekt.sk": [12337], "l4b3l.co": [2053], "imgsrc.baidu.com": [1662], "m.montereybayaquarium.org": [10755], "cbhklr.me": [2053], "clock.yandex.com": [18956], "www.camaya.net": [2822], "winterswijk.nl": [11324], "blog.vpn.ac": [21954], "www2.lcsd.gov.hk": [7211], "mail.subsignal.org": [15820], "pilgrim.ceredigion.gov.uk": [3025], "gcm.atechmedia.com": [408], "www.githost.io": [20242], "messenger2.providesupport.com": [13401], "www.incloak.com": [8178], "andredi.as": [2053], "exxile.net": [5094], "justin.cm": [2053], "lubakiagenda.squat.net": [21549], "kitc.es": [2053], "mjlb.co": [2053], "grondalmulticenter.kk.dk": [8883], "email.usc.edu": [17564], "at.sufs.org": [2053], "www.highways.gov.uk": [20340], "dgrb.me": [2053], "z.qutome.ru": [2053], "haicang.meituan.com": [10405], "dotnetkicks.com": [19952], "tlead.co": [2053], "i.erik.lu": [2053], "gitlab.lrz.de": [9396], "klerk.ru": [20607], "www.simplesamlphp.org": [21451], "barbour.uk": [2053], "strick.li": [2053], "remx.co": [2053], "benefitsweb.com": [1829], "satoshilabs.com": [21372], "walkfr.ee": [2053], "wishq.co": [2053], "projecthoneypot.org": [13363], "rapidmoviez.eu": [21254], "rad.msn.com": [9961], "nationaleyegene.nei.nih.gov": [11241], "cyberpatrol.com": [4034], "www.chroniclevitae.com": [3183], "vidwst.cc": [2053], "vbank.in": [2053], "awsom.ml": [2053], "devx.com": [18371], "lists.srcf.net": [15590], "touch.afisha.mail.ru": [10040], "caravans.autotrader.co.uk": [19457], "www.ofsted.gov.uk": [20985], "kdg.link": [2053], "spreadshirt.co.uk": [15552], "busdk12.illuminateed.com": [20430], "productsafety.gov.au": [13352], "coin-swap.net": [3454], "paste.leloop.org": [9347], "apan.org": [369], "www.softwarefreedom.org": [15347], "govloop.com": [20273], "highseer.com": [7543], "hosting.nic.ru": [11573], "kostroma.rt.ru": [13703], "drby.co": [2053], "zoyya.pe.hu": [2053], "winefood.mx": [2053], "quinstreet.com": [13597], "did.hscic.gov.uk": [20388], "www.registro.br": [13968], "netex.link": [2053], "lis.gov": [9236], "mbuzz.ca": [2053], "mediaxus.com": [10351], "web.uillinois.edu": [17238], "komi.beeline.ru": [1801], "student-affairs.buffalo.edu": [17583], "www.varnish-cache.org": [17861], "zakupki.domru.ru": [4768], "parti-pirate.ch": [12487], "sim.ac": [2053], "www.el-tramo.be": [5238], "www.uclh.nhs.uk": [11102], "qbim.ca": [2053], "pickler.me": [2053], "*.rememberthemilk.com": [13993], "14.fish": [2053], "tomsk.rt.ru": [13703], "download.halowaypoint.com": [7307], "co.la.welt.de": [18492], "thisisj.co": [2053], "jptech.ninja": [2053], "aas.org": [271], "www.octorate.com": [11916], "www.cic.ch": [1702], "de17a.com": [4320], "hypersend.labcorp.com": [9276], "t.netsales.pl": [2053], "de.discussions.tomtom.com": [16812], "*.readwrite.com": [13846], "migros-service.migros.ch": [10566], "support.eliomotors.com": [5268], "pics.computerbase.de": [3602], "www.vsipprogram.com": [17805], "cloudpassage.com": [19739], "nelsone.ws": [2053], "gn.meituan.com": [10405], "bugcrowd.com": [2463], "ng-book.com": [11564], "seurinternacional.com": [14879], "cashboardapp.com": [15814], "bookdepository.com": [16483], "evisa-vietnam.com": [5567], "red-gate.com": [13892], "*.cachefly.net": [2767], "scene7.com": [14580], "www.ukrnames.com": [17408], "floridanav.worldcat.org": [18748], "uat.dwolla.com": [4913], "websetnet.com": [21996], "www.mikrotik.com": [10574], "jfurn.co": [2053], "nl.aliexpress.com": [847], "systemcenteradviser.net": [16014], "asdagoodliving.co.uk": [19431], "jjl.cc": [2053], "www.alliancebernstein.com": [891], "www.ticketmaster.*": [16690], "www.digitale-gesellschaft.ch": [19920], "mobile.southdevon.ac.uk": [15437], "pingyin.jd.com": [8571], "speedof.me": [15507], "assets.bugcrowdusercontent.com": [2464], "media.dustin.eu": [4906], "*.travelzoo.com": [16975], "svn.sfu.ca": [14893], "www.foreninger.uio.no": [17615], "www.riscure.com": [14132], "s.ashford.io": [2053], "jmann.us": [2053], "media.oxfam.org.uk": [12393], "plyc.be": [2053], "*.tedcdn.com": [16061], "data.gov.hk": [19854], "anujb.me": [2053], "cancerslay.in": [2053], "tiar.at": [2053], "stanfordcareers.stanford.edu": [15635], "censornet.com": [19666], "phks.co": [2053], "*.d3.ru": [4072], "mapquesthelp.com": [10134], "benle.co.uk": [2053], "kiah.co": [2053], "petakillsanimals.com": [12444], "invtful.cc": [2053], "flowerona.uk": [2053], "ptj.am": [2053], "u.yoi.sg": [2053], "estatico.vozpopuli.com": [18156], "itunesconnect.apple.com": [1160], "www.itif.org": [20512], "4.url.cn": [21874], "www.newspaperdirect.com": [11538], "community.opendns.com": [12130], "oand.co": [2053], "www.bitinvest.com.br": [2048], "metro.srgssr.ch": [21550], "customer.active24.com": [19275], "downloadeu1.teamviewer.com": [16259], "beta.duckduckgo.com": [4888], "myname.to": [2053], "www.suicidepreventionlifeline.org": [11286], "www.ecgd.gov.uk": [20002], "www.plantsolution.de": [12995], "www.ccodearchive.net": [3592], "petermolnar.eu": [12804], "blog.bytemark.co.uk": [2547], "pomoc.nazwa.pl": [11307], "nycdoggi.es": [2053], "lnk.varadhja.in": [2053], "www.jcp.org": [8567], "card.buv.edu.vn": [2053], "clinicalinformatics.stanford.edu": [15635], "tibeti.xfce.org": [18812], "ibeu2.mookie1.com": [10764], "hpwb.net": [2053], "vpnssl3.cs.fh-nuernberg.de": [16428], "www.tampabaysod.com": [16192], "tfd.me": [2053], "papercut.ics.illinois.edu": [17544], "*.searchmarketing.com": [14687], "trvllr.co": [2053], "www.aquanw.nhs.uk": [11102], "www.angular-gantt.com": [1058], "yahooaccessibility.tumblr.com": [17100], "frdd.be": [2053], "oc.ederdrom.de": [5177], "cutedo.se": [2053], "www.gitshell.com": [6805], "stem.fi.ncsu.edu": [11690], "ard.yahoo.co.jp": [18944], "bejoyo.us": [2053], "www.yourchoiceyourhome.org.uk": [22112], "ontrac.com": [12091], "advertise.courant.com": [19801], "r-js.com": [2053], "www.divessi.com": [4668], "cltp.co": [2053], "pa.nache.fr": [2053], "*.css.gov.au": [3560], "nl.xhamster.com": [18816], "okh.li": [2053], "order.zen.co.uk": [19129], "jgalaxy.us": [2053], "mlsecproject.org": [9926], "ictserv1.lsbu.ac.uk": [9252], "weblogin.washington.edu": [17577], "dolphin-emu.org": [4734], "swisscom.ch": [15951], "www.vgtrk.com": [21917], "qb50.eu": [13508], "dnf.lt": [2053], "help.mail.ru": [10040], "pedromm.pw": [2053], "s.icetravel.xyz": [2053], "wbhlc.in": [2053], "*.coremotives.com": [3732], "jobs.1und1.de": [82], "yarcube.ru": [22094], "developerforums.blackberry.com": [2102], "b.tuna.ren": [2053], "bold.so": [2053], "www.westminster.gov.uk": [18516], "infoworld.com": [8280], "cdn-website.nanorep.com": [11222], "blog.cacert.org": [2578], "shaanig.org": [21421], "services.angus.gov.uk": [1059], "library.hubspot.com": [7739], "next-geebee.ft.com": [5941], "phonograph2.voxmedia.com": [21953], "www.paypal.com": [12678], "xj.meituan.com": [10405], "soft.uv.es": [17750], "www.yceml.net": [3546], "stelladot.com": [15719], "anunciou.com": [1114], "smr.inl.gov": [20462], "www.play0ad.com": [13012], "www.denic.de": [4442], "seiu1000.me": [2053], "chartio.com": [3083], "talky.io": [16189], "bdp.de": [2053], "www.pogoda.yandex.kz": [18957], "www.seattleprivacy.org": [14696], "img.ashampoo.com": [1285], "publish.omniture.com": [12002], "buycg.co": [2053], "tr.squat.net": [21549], "rewards.vodafone.co.uk": [18106], "mkateb.com": [10663], "api.piwik.org": [12950], "forge.gluster.org": [6876], "www.rscweb.org": [14230], "cornify.com": [3745], "lelo.com": [9401], "www.derbyshireyouthinc.com": [19898], "www.plainenglish.co.uk": [21142], "missionrelay.pyeongchang2018.com": [21229], "slo.to": [2053], "www.dlang.org": [19930], "www.vutbr.cz": [17814], "01.creativecdn.com": [3852], "adminklient.ppl.cz": [12486], "athumbnails.5min.com": [208], "squ.re": [2053], "qz.com": [13618], "seph.me": [2053], "phnrbtl.co.uk": [2053], "cgmanager.linuxcontainers.org": [9580], "www.eventim.fi": [9600], "graphics.adultfriendfinder.com": [683], "panel-beta.bytemark.co.uk": [2547], "fxhero.es": [2053], "p6.zdassets.com": [19121], "bdeal.co": [2053], "www.bishopfox.com": [1969], "jeremymorgan.com": [20537], "www.tickets.calpoly.edu": [2806], "yote.us": [2053], "freedome.f-secure.com": [5654], "accounts.snapchat.com": [15275], "www.sesamstrasse.de": [14873], "obmedia.xyz": [2053], "scltrb.com": [2053], "sick.com": [15002], "reviewjr.nl": [2053], "togo.rbl.ms": [13825], "underthehood.myob.com": [9980], "openleaks.org": [12146], "b.urlb.ag": [2053], "isms.ignou.ac.in": [8102], "content7.flixster.com": [6049], "dplus.umeng.com": [21847], "www.apcmag.com": [370], "xmnxg.jd.com": [8571], "r.ligatus.com": [9502], "www.kickasstorrents.eu": [9031], "futr.be": [2053], "discuss.io": [4644], "www.telekom.sk": [16346], "truekey-beta.mcafee.com": [10282], "ehow.com": [19983], "url.m4i.ir": [2053], "beta.metooo.io": [10495], "icpen.org": [7836], "kims.bz": [2053], "*.startingpage.com": [8553], "download.drweb.com": [4879], "www.1f0.de": [68], "timesofmoney.com": [16737], "www.enahost.com": [5330], "vans.autotrader.co.uk": [19457], "on.issue.by": [2053], "*.webstat.com": [18452], "crdt.co": [2053], "www.datadoghq.com": [4279], "partnerships.register.com": [13965], "*.vara.nl": [17856], "sa.scha.st": [2053], "blog.vulnhub.com": [18167], "www.guug.de": [6515], "ulaval.ca": [17515], "work4labs.com": [18738], "spinics.net": [15528], "www.projectgus.com": [21209], "spjpgrd.me": [2053], "blog.livefyre.com": [9668], "ranallolawoffice.com": [11581], "kkh-allianz.de": [8885], "signup.active24.co.uk": [19274], "cs.mycommerce.com": [10942], "www.fnal.gov": [5869], "www.dynatrace.com": [4923], "y.rdius.me": [2053], "secretariavirtual-proves.upf.edu": [17674], "crm.georgetown.edu": [6668], "newcg.enfield.gov.uk": [5359], "www.jura.ch": [21629], "hipa.us": [2053], "m.crazynina.tv": [2053], "mayfirst.org": [10266], "framabee.org": [6214], "madeby.house": [2053], "www.ctt.pt": [3978], "dhansak.collabora.co.uk": [3481], "lth.to": [2053], "ptpimg.me": [13420], "templatemonster.com": [16367], "icon.cnzz.com": [3391], "you2b.gq": [2053], "dm.nazwa.pl": [11307], "stl.fm": [2053], "www-s.housing.illinois.edu": [17544], "tvlife.kr": [2053], "cricvi.co": [2053], "reymond.in": [2053], "s.2904.cc": [2053], "prn.la": [2053], "ctbl.us": [2053], "www.garstelecom.ru": [20204], "swdlp.apple.com": [1160], "mercury.ornl.gov": [11892], "www.quitter.no": [13602], "c.olstrom.com": [2053], "yeahtv.com": [18918], "flgc.info": [2053], "smp.link": [2053], "store.berniesanders.com": [1848], "portal.ual.es": [17361], "on.wmtw.com": [2053], "buildsecurityin.us-cert.gov": [17705], "community.sophos.com": [15403], "www.wiwi.htwk-leipzig.de": [7736], "docu.scot": [2053], "money.mail.ru": [10040], "pmddtc.state.gov": [17345], "www.davidsontutoring.com": [4308], "cdns-files.deezer.com": [4381], "www.humanrightsdefensecenter.org": [7754], "youtube.ma": [19016], "tugate.ch": [2053], "youtube.me": [19016], "c3p.me": [2053], "*.pimg.net": [12889], "youtube.mx": [19016], "deloi.tt": [2053], "www.accountsupport.com": [498], "www.anonine.com": [1087], "www.acdd.tk": [3597], "samwhited.com": [14498], "www.loverslab.com": [9796], "baku.click": [2053], "tweetdeck.com": [17146], "pguru.co": [2053], "uvt.nl": [16716], "monch.xyz": [2053], "www.ifb.htwk-leipzig.de": [7736], "blm.gd": [2053], "pds.tips": [2053], "go.fmylife.com": [2053], "proxy6.switchadhub.com": [15954], "domainsite.com": [19942], "spnet.nl": [14399], "i.wombiapps.com": [2053], "geokretymap.org": [20227], "hackweek.ninja": [2053], "finders.ibx.com": [20419], "static3.urbandictionary.com": [17697], "www.askewsandholts.com": [19438], "firstam.us": [2053], "ico.org.uk": [7835], "www.eyeos-apps.org": [21006], "assets3.roadtrippers.com": [21317], "jnandj.sh": [2053], "h2hc.com.br": [7173], "www.bedford.gov.uk": [19509], "zamos.ru": [22125], "www.alltop.com": [901], "catracalivre.com.br": [2967], "*.mailstation.de": [10057], "cmake.org": [19741], "r.mradx.net": [10865], "cjky.it": [2053], "chartsinfrance.net": [3084], "danie.ly": [2053], "bluejeanscable.com": [2193], "eat.seasonal.ly": [14693], "developer.windriver.com": [18638], "*.eztv.it": [5103], "sxp.microsoft.com": [10543], "ae03.alicdn.com": [846], "a11y.link": [2053], "spreadsheets.google.com": [6962], "pssl.com": [12503], "anonscm.debian.org": [4353], "datongshi.meituan.com": [10405], "realtime.roblox.com": [14156], "www.hexspoorwms.nl": [7522], "ldhl.tk": [2053], "dnkt.in": [2053], "sc.wsj.net": [22059], "supportline.microfocus.com": [10528], "seshu.me": [2053], "www.datapipe.com": [4290], "food.gy": [2053], "apps.olin.wustl.edu": [18290], "gacc.pt": [2053], "support.godaddy.com": [6898], "analytics.163.com": [43], "zona.telekom.sk": [16346], "www.medienzentrum.uni-mainz.de": [17611], "centre.li": [2053], "bitcoinmagazine.com": [2031], "api.bitcoincharts.com": [2027], "www.laprox.com": [20637], "shuma.jd.com": [8571], "apexmic.ro": [2053], "uklawstudent.thomsonreuters.com": [21728], "ecoff.org": [5156], "ico.gov.uk": [17245], "l.802101.com": [2053], "teamstre.am": [2053], "ksdinfor.tk": [2053], "blog.geogebra.org": [6659], "my-r.es": [2053], "rioseo.co": [2053], "cryptobib.di.ens.fr": [5029], "support.softnik.com": [21498], "data.fcc.gov": [5826], "bigba.sh": [2053], "wrldd.at": [2053], "hellocere.al": [2053], "web.croakun.com": [2053], "weather.yandex.by": [18953], "scriptfodder.com": [14662], "*.ticketmaster.com": [16690], "www.vuxml.org": [21962], "lovelo.is": [2053], "c.cupoes.online": [2053], "zubiri.mx": [2053], "calazan.com": [2792], "bronto.com": [2415], "www.huffingtonpost.ca": [7744], "launchpad.ufcfit.com": [17227], "dee.wongs.link": [2053], "ugh.wtf": [2053], "www.moodle.org": [10763], "www.validlab.de": [7735], "api.uow.edu.au": [17636], "l.globezip.com": [2053], "tatabingo.com": [2053], "www.bakerlab.org": [1667], "www.backed.io": [1640], "findit.library.jhu.edu": [16562], "ysp.wusm.wustl.edu": [18290], "moaf.org": [10669], "mngdb.co": [2053], "www.candhlures.com": [2865], "framanews.org": [6214], "webmailcluster.perfora.net": [21110], "mail.lavaboom.com": [9327], "gsl.me": [2053], "www.stringeditions.leeds.ac.uk": [17604], "cnbc.com": [2689], "www.burstnet.eu": [2503], "account.deepin.org": [4380], "www-acs.ucsd.edu": [17216], "setome.ga": [2053], "dozuki.com": [4828], "resenha.li": [2053], "slm.io": [2053], "ostomy.me": [2053], "ign.tn": [2053], "texascpa.co": [2053], "cn.codecombat.com": [3424], "blogs.nvidia.com": [11171], "media.readspeaker.com": [13843], "martineve.com": [10197], "www.ovh.lt": [12378], "comstern.at": [3520], "secure.livestream.com": [9676], "brazil.usembassy.gov": [21879], "pcamp.it": [2053], "netherlands.indymedia.org": [8234], "www.prism-break.org": [12491], "sophos.com": [15403], "player.fm": [13022], "pydio.com": [13497], "s100.cnzz.com": [3391], "go.friends.ca": [2053], "arge.to": [2053], "*.nagano.cz": [11198], "liberty.me": [9458], "parkingcrew.com": [12612], "express.servicenow.com": [14866], "*.booklooker.de": [2257], "www.isshub.io": [8525], "www.snabb.co": [15264], "kb.gfi.com": [6441], "p2plend.it": [2053], "support.mattermark.com": [20761], "absolventi.vutbr.cz": [17814], "nyc.indymedia.org": [8234], "strib.ga": [2053], "*.spreadshirt.dk": [15552], "simonswain.com": [15061], "embed.polskieradio.pl": [13112], "geermu.meituan.com": [10405], "on.cgiar.org": [2053], "*.sslcert14.com": [15597], "www.livingsocial.co.uk": [9678], "microsoftstore.com": [10547], "doc.qt.io": [13545], "www.ukba.homeoffice.gov.uk": [20355], "xiiim.com": [2053], "api.kickstarter.com": [9034], "www.tarsnap.com": [16220], "cslfr.co": [2053], "*.scribus.net": [14658], "q.anh.lv": [2053], "assets.thecreatorsproject.com": [16529], "www.genode.org": [20222], "putl.in": [2053], "gdis.co": [2053], "www.unisend.com.mx": [17484], "sl.stalheim.net": [2053], "taleo.com": [16178], "app.solarlist.com": [15359], "i.tcall.me": [2053], "cins.ws": [2053], "www.securelist.ru": [14748], "crazespaces.pw": [19815], "givedirectly.org": [6810], "*.shoplocal.com": [14961], "staticassets.zanesvilletimesrecorder.com": [19100], "bib.kuleuven.be": [8969], "zoef.me": [2053], "linksunten.indymedia.org": [8234], "go.workpop.com": [2053], "pbproxy.com": [21709], "mathbuntu.org": [10231], "kmymoney.org": [8891], "*.mndcdn.com": [9932], "investments.hsbc.co.uk": [20375], "www.facebook.de": [5736], "ubuntu.com": [17382], "www.ultratools.com": [17416], "cdn.imgjam.com": [8650], "support.warframe.com": [18274], "www.cancer.fi": [15998], "www.speakeasy.net": [15484], "go.jafarnet.com": [2053], "*.popphoto.com": [13149], "optout.smart-places.org": [21478], "learn2.io": [2053], "ad.carbonim.com": [2053], "register.tmall.com": [21748], "www.akzonobel.acs.org": [966], "www.globalnetworkinitiative.org": [6850], "66536666.com": [2053], "nfstud.io": [2053], "services.wsje.com": [11513], "lyk.ee": [2053], "w.hwh.jp": [2053], "zeitung.welt.de": [18492], "blog.paperspace.io": [12586], "cmsdescubre.hipercor.es": [7555], "auth.gamespot.com": [6544], "hostpoint.ch": [7685], "de.malwarebytes.org": [10093], "www.sparkstudios.com": [15473], "www.thingiverse.com": [16626], "enyo.me": [2053], "tetra.osmocom.org": [12329], "s.nlab.io": [2053], "mylokai.co": [2053], "compliance.chef.io": [3115], "www.bnd.bund.de": [2486], "nevm.pw": [2053], "rsmry.co": [2053], "www.dnsleaktest.com": [4143], "www.kotex.com": [9144], "www.washington.edu": [17577], "www.theinquirer.fr": [11390], "*.nowybip.pl": [11733], "lighthouseapp.com": [9506], "noon.ms": [2053], "mays.fyi": [2053], "fachschaft.in.th-nuernberg.de": [16428], "represent.us": [14022], "pr.d-will.info": [2053], "ovh.sn": [12378], "o3.aolcdn.com": [363], "jci.org": [8795], "www.spbas.com": [14390], "chem.1688.com": [44], "checkin.continental.com": [3685], "www.weather.yandex.com": [18956], "wdp.io": [2053], "classx.stanford.edu": [15635], "pictwttrcom.us": [2053], "kinet.al": [2053], "en-ru.dict.cc": [4536], "aiha.org": [19327], "a.contentdj.com": [2053], "farl.mx": [2053], "getmarket.in": [2053], "bmr.ng": [2053], "arbne.ws": [2053], "www.dolphin.com": [19939], "sh.13337.dk": [2053], "ksplice.com": [9177], "*.groupersocialclub.com.au": [7098], "slyar.com": [15222], "thamesvalleyalert.co.uk": [21686], "git.popcorntime.io": [13142], "prcog.com": [2053], "vlada.gov.sk": [15217], "*.econsumer.equifax.ca": [5436], "status.mailchimp.com": [10042], "jazzy.id.au": [8685], "www.chromeexperiments.com": [3177], "user.95516.com": [240], "skin.ztat.net": [19094], "ticketingnetworkeastmidlands.co.uk": [16689], "community.imgtec.com": [20441], "host1plus.com": [7649], "jud.ct.gov": [2738], "allnatchic.com": [2053], "aaronsan.de": [2053], "www.buildsecurityin.us-cert.gov": [17705], "issuu.com": [8526], "viaway.me": [2053], "img1.blogblog.com": [2160], "sharedl.ink": [2053], "ihc.ru": [7883], "www.tito.io": [16677], "*.santander.co.uk": [14530], "www.sel4.systems": [14675], "www.quamnet.com": [13564], "nava.cc": [2053], "www.students.unibe.ch": [17524], "amanic.us": [2053], "rt.com": [13702], "totalbarcode.com": [16871], "mide.ms": [2053], "vshosting.cz": [17804], "emeapressoffice.oracle.com": [12284], "xiuyan.jd.com": [8571], "whitaker.org.uk": [2053], "q.uir.ky": [2053], "osemagazine.osu.edu": [11959], "support.laquadrature.net": [9267], "nero.com": [11354], "*.nwf.org": [11277], "azgov.biz": [2053], "talli.ca": [2053], "myupc.upc-cablecom.ch": [21865], "www.dropdeadpaper.com": [4866], "us-st.xhamster.com": [18816], "abu.buzz": [2053], "prdm.co": [2053], "*.dawanda.com": [4175], "nikolai.mobi": [2053], "*.optimost.com": [12276], "promo.avito.ru": [19465], "www.crossdresser-forum.de": [3887], "gkch.us": [2053], "static3.boligportal.dk": [2244], "twt.jnks.info": [2053], "getdigital.eu": [6694], "www.allerderm.com": [15238], "go.eus.cl": [2053], "pics.paypal.com": [12678], "stat.ip-home.net": [20487], "openpaymentsdata.cms.gov": [19742], "w.scancrush.com": [2053], "www.wishlistgranted.com": [18674], "www.doncaster.gov.uk": [4770], "mediatakeout.com": [10330], "wlcb.meituan.com": [10405], "i.gotzippy.com": [2053], "netnewscheck.com": [11392], "www.d2jsp.org": [4071], "sv6.cu.cc": [2053], "kuku.nu": [2053], "revo.bike": [2053], "i3wm.org": [7806], "squid.academics.de": [476], "zenmate.co.il": [19133], "motherpipe.co.uk": [10798], "imjul.es": [2053], "ec-media.soundcloud.com": [15410], "g04.a.alicdn.com": [846], "spbas.com": [14390], "personalisedloanquote.hsbc.co.uk": [20375], "r8.mzstatic.com": [1159], "mdco.io": [2053], "alm.tips": [2053], "davissystem.net": [4310], "design.1105media.com": [22], "inr.inl.gov": [20462], "www.edsurge.com": [20008], "www.amoena.fr": [1017], "www.sharideangelo.com": [14926, 14927], "mindef.sg": [2053], "atrls.co": [2053], "tinyl.in": [2053], "nuand.com": [11764], "mcol.co": [2053], "plarium.com": [21147], "file12.bizrate-images.com": [2086], "moon-ray.com": [10765], "pokr.io": [2053], "ads.indeed.com": [8200], "in.tune.com": [21812], "saray.me": [2053], "shop.pandaexpress.com": [12560], "go.alejonext.co": [2053], "lpfb.dk": [2053], "wakefo.rest": [2053], "pacdn.500px.org": [195], "*.cincinnati.com": [3197], "forum.3sat.de": [162], "go.brq.me": [2053], "s.baldr.jp": [2053], "tbbt.eu": [2053], "cohub.co": [2053], "s.nanakii.fr": [2053], "*.maas360.com": [9982], "bzz.re": [2053], "e7.aztravel.xyz": [2053], "biicode.com": [1922], "cap3.co": [2053], "fs25.formsite.com": [20148], "mailgun.net": [10051], "cnan.ca": [2053], "premiumize.me": [13254], "www.students.uni-mainz.de": [17611], "s.yuhnote.com": [2053], "kb.uwm.edu": [17580], "about.pinterest.com": [12914], "ediplomacy.afp.com": [761], "segments.webtrends.com": [18467], "my.virginmedia.com": [18028], "roundcube.serveriai.lt": [14860], "tenants.southampton.gov.uk": [15440], "geo.messenger.services.live.com": [9644], "gml.tips": [2053], "tisarana.ca": [16769], "www.wireedit.com": [18662], "www.ghowen.me": [6753], "community.visma.no": [21928], "www.mulliner.org": [20852], "m.webnames.ru": [21994], "abr.hm": [2053], "secure22.pipni.cz": [12460], "www.nserver.ru": [11746], "blog.tierra.net": [16705], "www.emaileri.com": [5294], "jal.bz": [2053], "www.shop.bt.com": [1593], "www.runnersconnect.net": [21339], "fbapp.telegraph.co.uk": [16340], "s.rcconf.com": [2053], "www.dsl.vodafone.de": [18107], "xui.ptlogin2.qq.com": [13514], "allinfamily.us": [2053], "jkl33.com": [2053], "www.youtube.com.br": [19016], "play4-tv.gq": [2053], "*.marketgid.com": [10172], "www.sharpmen.com": [14929], "submit.ioccc.org": [7922], "usmenfolk.us": [2053], "www.itmatrix.eu": [8005], "photontic.link": [2053], "www.afilias.info": [745], "pkware.com": [12468], "sb-bcn.com": [2053], "www.cafegate.com": [2776], "wholesale.swisscom.com": [15951], "eventmb.com": [2053], "astnd.co": [2053], "ssl-eniro.tns-cs.net": [21752], "usfreeads.com": [17321], "pck.rs": [2053], "nationale-it-security-monitor.nl": [11278], "robertsspaceindustries.com": [14154], "abl.im": [2053], "rfld.me": [2053], "maps.bristol.gov.uk": [19592], "i.utb.cc": [2053], "rentby.uk": [2053], "www.canadiandimension.com": [2857], "bsturm.htwk-leipzig.de": [7736], "eiskent.co.uk": [5018], "newegg.ehosts.net": [5220], "www.keyghost.com": [9019], "mail-index.netbsd.org": [11375], "a.spyn.co": [2053], "www.esetnod32.ru": [5055], "campina.es": [2841], "craftbanter.com": [3821], "blz.us": [2053], "physiowpg.news": [2053], "barnardos.org.uk": [19486], "go.arnabsen.com": [2053], "cvedetails.com": [4019], "vwk.me": [2053], "talktalktechnology.com": [16183], "cstm.us": [2053], "*.libreplanet.org": [9473], "x.ipv8.net": [2053], "skinflint.co.uk": [15159], "*.blogspot.ba": [2166], "cdn.crowdrise.com": [3898], "front.uned.es": [17446], "*.blogspot.be": [2166], "*.blogspot.bg": [2166], "3nt.co": [2053], "bcrmsk.xyz": [2053], "linkon.in": [2053], "www.idr-trade.com": [9910], "www.sole.dk": [15364], "organicconsumers.org": [12306], "klmy.meituan.com": [10405], "nagra.com": [11199], "actionautowreckers.com": [530], "www.youtube.com.bh": [19016], "lcom.bz": [2053], "beta.incoin.io": [8195], "optics.osu.edu": [11959], "*.secusmart.com": [14781], "apt.securelist.com": [14736], "ffx.subsignal.org": [15820], "tumblr.com": [17101], "1.163.com": [42], "www.zenmate.co.nz": [19133], "www.devalate.com": [19903], "b.pairs.lv": [2053], "tjenester.ecampus.no": [4981], "nobrk.in": [2053], "www.hivos.nl": [7572], "ad.maist.jp": [20738], "www.england.nhs.uk": [11102], "weedma.ps": [2053], "colm.net": [3497], "s.djt.im": [2053], "halvsi.es": [2053], "looq.at": [2053], "wselect.rs": [2053], "zongheng.com": [22137], "ummecheng.in": [2053], "p3.xyx.hao123img.com": [20313], "www.hostingas.lt": [7679], "support.rg.thomsonreuters.com": [16650], "seedr.cc": [14794], "estavisas.org.uk": [5065], "osmy.in": [2053], "www.planningportal.gov.uk": [21146], "copia.is": [3720], "ps-img.lasallehs.net": [9314], "de-de.facebook.de": [5736], "notifications.roblox.com": [14156], "runforyourlives.com": [14270], "volusion.com": [18132], "www.hosting90.cz": [7671], "atyr.co": [2053], "www.linux-magazin.de": [9553], "apricorn.com": [1178], "e.mail.ru": [10040], "download.intsig.net": [20481], "novara.ie": [4597], "we.bbw-love.com": [2053], "mlg.to": [2053], "fifa.wtf": [2053], "www.disneyprivacycenter.com": [4653], "s37.cnzz.com": [3391], "*.joyent.com": [8800], "aclu-wa.org": [293], "gfx.aftonbladet-cdn.se": [753], "poodle.io": [12480], "agra-net.net": [772], "palemoon.org": [12545], "cambridgeshire.spydus.co.uk": [21546], "content.etilize.com": [6743], "code.osu.edu": [11959], "v.admaster.com.cn": [569], "wal.bz": [2053], "s.devplus.be": [2053], "y.jd.com": [8571], "www.commentarymagazine.com": [3543], "sierraware.com": [15017], "nttr.st": [2053], "midandeastcornwall.greenparty.org.uk": [7052], "go.rubicon.com": [2053], "*.serato.com": [14838], "ssl-fromcs.2cnt.net": [111], "tickets.gwr.com": [16695], "partypoker.com": [12629], "anselma.org": [2053], "wwwciss.ca": [2053], "buy.drweb.com": [4879], "www.prochoice.org": [11263], "putlocker.com": [13486], "nitroflare.com": [20912, 20913], "www.sedirekt.se": [14782], "www.gettyimages.fi": [6741], "netbeans.org": [11376], "w.servicios.in": [2053], "zpr.me": [2053], "trdl.se": [2053], "l.brfannexet.se": [2053], "tendatta.com": [16372], "kans.me": [2053], "siteor.pl": [15130], "ovh.nl": [12378], "taginfo.openstreetmap.org": [12177], "icio.us": [8065], "xi.hope.net": [7637], "kdw.me": [2053], "shrtscr.net": [2053], "hot.1688.com": [44], "www.akademikerf\u00f6rs\u00e4kring.se": [797], "wds.to": [2053], "iciprop.info": [2053], "de-da.dict.cc": [4536], "blog.checkpoint.com": [3106], "onapp.rocks": [2053], "go.eduin.info": [2053], "omnovia.com": [11985], "s14.cnzz.com": [3391], "opbr.ge": [2053], "www4.smartadserver.com": [15228], "www.kiwibyrd.org": [20605], "db.riskwaters.com": [8194], "subeta.net": [15812], "g.xoteens.com": [2053], "st.cm": [2053], "browser.yandex.com": [18956], "en.m-nicolay.de": [2053], "ekiga.net": [5231], "mediacru.sh": [10337], "map.apan.org": [369], "blsmus.com": [2053], "premier.fortiguard.com": [6173], "communigate.com": [3562], "da.simpsn.com": [2053], "my.fortbim.com": [2053], "*.well.com": [18561], "link.hgf.org": [2053], "*.tipseri.net": [7879], "littlesvr.ca": [9639], "rzep.ec": [2053], "*.euroflorist.no": [5512], "*.secure.co1.msn.com": [9961], "p.suntravel.xyz": [2053], "cdn3.thr.com": [16068], "isc.org": [7966], "tds.search.ch": [14684], "moneta.trove.com": [17038], "taixing.meituan.com": [10405], "starwars.com": [15648], "shp.qpic.cn": [13539], "k.yimg.jp": [18992], "macdevtips.com": [2053], "www.xt-commerce.co.uk": [18897], "dntx.com": [4146], "scdlink.co": [2053], "g1261.co": [2053], "scalabil.it": [2053], "incommon.org": [8180], "slalom.ws": [2053], "standagainstspying.com": [15628], "support.norton.com": [11703], "falk.hn": [2053], "paclab.githost.io": [20242], "www.theanarchistlibrary.org": [16482], "www.disabledgo.com": [4623], "crftby.co": [2053], "discuss.gohugo.io": [20265], "libbsd.freedesktop.org": [6243], "www.g2links.com": [20193], "qntt.tv": [2053], "prd.to": [2053], "juliareda.eu": [8822], "app.etapestry.com": [5475], "deav.in": [2053], "img6.2345.com": [87], "pic.alipayobjects.com": [857], "maemo-apps.org": [21006, 21007], "ppd.sydney.edu.au": [21631], "www.netswarm.net": [11444], "short.robime.it": [2053], "on.whdh.com": [2053], "support.pay4bugs.com": [12677], "theory.stanford.edu": [15634], "bitdeli.com": [2039], "mopr.co": [2053], "nmmag.us": [2053], "elub.in": [2053], "*.blog.gov.uk": [6483], "www.zcarot.com": [19063], "www.jeded.com": [20533], "www.blip.tv": [2133], "tvlive.16mb.com": [2053], "r66t.com": [13625], "decidethefuture.org": [19886], "irclogs.canonical.com": [2869], "arch.umd.edu": [17549], "dpier.me": [2053], "bl.discant.net": [2053], "www.buzzeff.com": [2537], "clusterconnection.com": [3383], "www.personal.hsbc.com.hk": [20380], "bit.infra.link": [2053], "www.objective-see.com": [11902], "www.norton.com": [11703], "pnsne.ws": [2053], "www.jamstec.go.jp": [8561], "www.uvm.edu": [17353], "pad.piraten.lu": [21133], "rshar.ma": [2053], "link.rbnsln.com": [2053], "hbsmooth.tk": [2053], "apto.com.vc": [2053], "data.gov": [4253], "blog.balboa.io": [1670], "tads.smartstream.tv": [15247], "epfl.ch": [5041], "peelregion.ca": [12722], "nousrandom.net": [20935], "polimedia.info": [2053], "guug.de": [6515], "programmableweb.com": [13358], "t2-project.org": [21644], "howudo.in": [2053], "exeterfamily.co.uk": [5599], "pmg-prd.stanford.edu": [15635], "lb.to": [2053], "kent.gov.uk": [9005], "email.kn.vutbr.cz": [17814], "sc.edu": [14323], "go.vcreators.co": [2053], "tssd.eu": [2053], "zxidp.org": [19081], "blog.neustar.biz": [11472], "xiangxi.meituan.com": [10405], "i.benm.at": [2053], "www.us.playstation.com": [13015], "go.appyland.com": [2053], "1xbet.com": [83], "afcad.osu.edu": [11959], "booster.qnetp.net": [13535], "www.techdirt.com": [16281], "landalcampings.be": [18790], "nzherald.co.nz": [11193], "importer.alibaba.com": [850], "rckt.in": [2053], "b.fmbox.cl": [2053], "yoapp.me": [2053], "tandridge.objective.co.uk": [20979], "ga.co": [2053], "lnk.osalt.com": [2053], "wbrp.li": [2053], "www.ideoclick.com": [8090], "www.sns.ias.edu": [7815], "support.ideel.com": [8079], "mwc.news": [2053], "www.honest.com": [7626], "imgt4.bdstatic.com": [1662], "krasnodar.beeline.ru": [1801], "uidaho.edu": [17543], "in.redhat.com": [13909], "nccs.nasa.gov": [11058], "fitc.it": [2053], "hospitalcompare.hhs.gov": [7192], "tittygram.ru": [16777], "m.flughafen-zuerich.ch": [20136], "jbks.de": [2053], "www.cardtocall.courierpost.co.nz": [3784], "*.umwblogs.org": [17547], "t.mookie1.com": [10764], "unwb.co": [2053], "www.mail.be": [10038], "pingler.com": [21126], "on.gdhnews.com": [2053], "rimg04.rl0.ru": [14147], "www.rackspace.dk": [13737], "achaea.com": [19264], "metrica.yandex.by": [18953], "www.desec.io": [19879], "*.store.micgadget.com": [9909], "im.style": [2053], "factura.net": [2053], "www.thinkup.com": [16631], "*.cryptocloud.org": [3940], "esi.news": [2053], "det-te.ch": [2053], "www.esportsea.com": [4944], "labt.ag": [2053], "www.beautifuldecay.com": [1792], "dspy.me": [2053], "r.advg.jp": [703], "support.tagged.com": [16164], "src.bike": [2053], "jl.meituan.com": [10405], "meetbsd.com": [10376], "www.peterkieser.com": [21112], "crossp.co": [2053], "www.dropboxforum.com": [4865], "s.infopaytv.com": [2053], "*.kidsfootlocker.com": [9037], "media.supplychain.nhs.uk": [11102], "publish.nyc.indymedia.org": [8234], "*.joker.com": [8768], "cud.li": [2053], "secgeek.net": [14703], "acs-stage.eventpoint.com": [5549], "*.csis.org": [2732], "l.slmoslo.no": [2053], "pyweek.org": [13495], "www.poradte.cz": [21171], "nikeplus.nike.com": [11595], "i.fantasycricket.telegraph.co.uk": [16340], "knst.in": [2053], "zlrasg.com": [2053], "img.buch.ch": [16433], "finance.aliyun.com": [861], "business.bookitsecure.com": [19571], "daringfireball.net": [4225], "ourwatchmember.org.uk": [21046], "trpz.gp": [2053], "ask.mstr.cd": [2053], "lvna.co": [2053], "cybersitter.com": [2754], "gobmi.ch": [2053], "wmar.me": [2053], "api-global.netflix.com": [11421], "store.steampowered.com": [15704], "seafile-server.de": [14677], "glamu.se": [2053], "swapoff.org": [15932], "growth.bufferapp.com": [2459], "s.encode.moe": [2053], "ebayclassifieds.com": [20001], "speedyshare.com": [15510], "signon.shaw.ca": [14932], "adme.ru": [646], "www.bignerdranch.com": [1912], "danzo.me": [2053], "support.roadtrippers.com": [14150], "www.manabalss.lv": [10101], "www.syncplicity.com": [15984], "www.musikskole-tilmelding.dk": [10910], "learnertrack.net": [20649], "police.illinois.edu": [17544], "a-z-l.de": [2053], "fusewa.me": [2053], "fonts.geekzu.org": [6617], "revolutiontt.me": [14083], "agresso2.plymouth.ac.uk": [13055], "www.x-cart.com": [18794], "disk.yandex.com.tr": [18954], "www.surreyoutdoorlearning.uk": [21614], "apps.adr.org": [19298], "www.yousendit.com": [19015], "standorte.migrosbank.ch": [10563], "www.nousrandom.net": [20935], "rclnk.us": [2053], "pspa.in": [2053], "www.wyre.gov.uk": [22074], "openmamba.org": [21018], "community.monash.edu": [10728], "go.iwebdo.com": [2053], "to.leif.me": [2053], "flvrplt.com": [2053], "*.chatango.com": [3090], "mrsnk.com": [2053], "*.myaloecleanse.com": [10989], "exposingtheinvisible.org": [5625], "live-r.net": [2053], "devconf.cz": [4496], "wiki.voidlinux.eu": [21942], "www.maninthemirror.org": [10100], "www.providesupport.jp": [13400], "go.sgio.com.au": [2053], "mikrocontroller.net": [10575], "revoltgames.com": [14082], "www.extensiondefender.com": [5632], "partners.pricegrabber.com": [13279], "lk.mmtech.it": [2053], "schang.link": [2053], "www.admissions.stoke.gov.uk": [21579], "cmxlog.com": [3389], "yelp.de": [18979], "golink.info": [2053], "yelp.dk": [18979], "www.stable.melpa.org": [10414], "my.npre.illinois.edu": [17544], "mordoviya.beeline.ru": [1801], "media.wwte.com": [18232], "www.normalesup.org": [11683], "urbanterror.info": [17698], "piratebay.unlockproject.com": [21771], "bls.ch": [1566], "id.washingtonpost.com": [18287], "softwarefreedom.org": [15347], "mtrcsztr.hu": [2053], "karbyn.co": [2053], "contact2.yandex.com.tr": [18954], "eri.ma": [2053], "travel.nytimes.com": [11189], "erlang.org": [5449], "login.caller.com": [2812], "www.blackphone.ch": [2100], "brianog.net": [2053], "nh.meituan.com": [10405], "store.hackaday.com": [20303], "pbar.us.dell.com": [4413], "www.codemilltech.com": [3416], "static.avaaz.org": [1476], "gohwz.ws": [2053], "zaehlwerk.net": [19089], "alt.ac.uk": [1330], "s.berny.sk": [2053], "slm-assets1.secondlife.com": [14706], "l.envolee.net": [2053], "*.generationawake.eu": [4467], "static.a.gs-cdn.net": [7091], "wtb.mobi": [2053], "www.worldsecuresystems.com": [653], "qdispat.ch": [2053], "optimise.com.br": [12271], "www.privacy.org.au": [13312], "prisguide.no": [21200], "mednews.stanford.edu": [15634], "sh.plesnik.de": [2053], "hypanova.com": [7788], "images.grab-media.com": [7007], "www.pi-hole.net": [21121], "gssh.co": [2053], "www.cnes.fr": [2691], "let-share.org": [2053], "amplify.nginx.com": [20906], "alleg.co": [2053], "v.hao123.com": [20312], "onbsys.com": [2053], "accuga.com": [2053], "zu.lc": [2053], "r.subject4s.me": [2053], "beo.piratenpartei.de": [12938], "datapath.io": [4287], "okanuncie.ga": [2053], "documents.plymouth.ac.uk": [13055], "www.ixit.cz": [8028], "mail-latest.websupport.sk": [18456], "hipca.mp": [2053], "www.computer.ly": [3601], "cen.as": [2053], "ie.godaddy.com": [6898], "snap.ci": [2053], "mail.yandex.ua": [18961], "dirxion.com": [4621], "www.domainfest.com": [12374], "*.cvut.cz": [4066], "he.4.boardgamearena.com": [2219], "www.sfn.org": [15327], "sjwc.co": [2053], "digitalcommons.law.scu.edu": [14528], "www.rapidrar.com": [21255], "sdprof.us": [2053], "a-r.link": [2053], "x3.cm": [2053], "w2m.co": [2053], "infosecurity-magazine.com": [13936], "on.wsav.com": [2053], "mochithin.gs": [2053], "pulse-forum.ind.ie": [8197], "www.xamarin.com": [18840], "www.dosowisko.net": [4782], "www.paste2.org": [12649], "wlfriends.org": [6335], "*.fsb.org.uk": [5841], "www.literaryreview.co.uk": [20702], "www.uicbookstore.org": [17232], "go.wustl.edu": [18290], "xparkmedia.com": [18885], "judge.wizards.com": [18687], "s.reli.vn": [2053], "wifigw.cis.vutbr.cz": [17814], "i.ppz.com": [2053], "*.greatnonprofits.org": [7037], "bacain.ga": [2053], "joshkno.ws": [2053], "gsmin.fo": [2053], "bau.mn": [2053], "dancesafe.org": [4212], "ezszn.com": [2053], "nartac.com": [11227], "blog.nexcess.net": [11549], "preds.co": [2053], "www.blog.uni-erlangen.de": [17597], "yosemite.ucc.ie": [17210], "w3b.li": [2053], "s.ocmsanse.org": [2053], "jesusled.biz": [2053], "www.apiok.ru": [11968], "learn.open.ac.uk": [12184], "www.donationcoder.com": [4769], "kkmc.info": [2053], "connectiveportal.axosoft.com": [1517], "rrl.osu.edu": [11959], "www.iar.com": [7814], "ur.wustl.edu": [18290], "bouc.as": [2053], "discovery.nationalarchives.gov.uk": [11254], "pages.chef.io": [3115], "link.qw4rtz.fr": [2053], "atdig.net": [2053], "parentview.ofsted.gov.uk": [20985], "decorrespondent.nl": [4323], "zenmate.se": [19133], "heatm.in": [2053], "pritunl.com": [13305], "sue.casehub.com": [2053], "mnbkr.com": [2053], "login.lisam.liu.se": [9238], "s.maggi.cc": [2053], "ke.vc": [2053], "test-vefa.difi.no": [4547], "www.indyreader.org": [8230], "www5.atomicorp.com": [1364], "wnpr.in": [2053], "l.codehate.com": [2053], "diskusjonsforum.uio.no": [17615], "8of12.com": [2053], "mailxchange.1and1.com": [61], "www.phpartners.org": [12456], "washingtonpost.com": [18287], "ivdopia.com": [17875], "cdn.rt.com": [13702], "ivill.ag": [2053], "demo.sparebank1.no": [21524], "xlab.li": [2053], "shop.telus.com": [16364], "strob.es": [2053], "x.noggalito.com": [2053], "images.sourceforge.net": [15423], "www.q4os.org": [21236], "myoptimizerplus.com": [11002], "www.freedomnotfear.org": [6291], "supah.ro": [2053], "imagemagick.org": [8126], "mcdee.com.au": [10290], "cf.mpuk.cc": [2053], "api.qrsolutions.com": [13516], "broking.postbank.de": [13186], "bburl.co": [2053], "vlky.re": [2053], "dev.stackauth.com": [15611], "silverflint.com": [15046], "kanyebay.co.uk": [21712], "portfoliotracker.usatoday.com": [17310], "logotype.se": [9725], "milr.eu": [2053], "m.vineyardvines.com": [18015], "personenverkehr.oebb.at": [20984], "marclinks.com": [2053], "win-ben-win.com": [2053], "arcnct.co": [2053], "portaldovoluntario.rio2016.com": [21310], "www.polybrowser.com": [13114], "dwnp.net": [2053], "www.fastspringblog.com": [5792], "otfs.it": [2053], "fch.meituan.com": [10405], "*.gatewaysb.com": [6585], "ampatico.com": [1018], "grzr.me": [2053], "jobs.osu.edu": [11959], "my.medicare.gov": [20772], "www.mediastorehouse.net": [10312], "ums.umftgm.ro": [21848], "mymerchantguard.com": [8843], "api.ln-s.it": [2053], "cdn.insights.gravity.com": [7028], "tpblist.xyz": [21771], "daohang.taobao.com": [16206], "*.eventim.co.il": [5548], "s.ngs.ru": [20907], "bamide.as": [2053], "gss3.baidu.com": [1661], "s.thestar.com": [16846], "www.uppsalahem.se": [17686], "t.grpr.co": [2053], "webmail.telford.gov.uk": [21675], "slevert.me": [2053], "cfb.mx": [2053], "coboy.tk": [2053], "fancybrideness.com": [20097], "www.ctan.org": [2739], "s.omnisales.com": [2053], "billing.nodeserv.com": [11644], "northeastern.worldcat.org": [18748], "auth.williamhill.com": [18615], "receiver.amplify.nginx.com": [20906], "merchants.ozon.ru": [12405], "mss.io": [2053], "california.worldcat.org": [18748], "api-co.la.welt.de": [18492], "chemspider.com": [14230], "affl.sucuri.net": [15829], "trusteer.com": [17068], "als.meituan.com": [10405], "infoseek.co.jp": [8277], "sstatic1.histats.com": [20343], "w.me.uk": [2053], "webmaster.yandex.ua": [18961], "incode.fir.im": [20123], "images.waterfrontmedia.com": [5559], "argyll-bute.spydus.co.uk": [21546], "*.footballfanatics.com": [6131], "a.asa.fyi": [2053], "divalicio.us": [2053], "link.dl2tom.de": [2053], "www.vbulletin.com": [17763], "www.umassathletics.com": [17550], "t.1mix.co.uk": [2053], "wrp.la": [2053], "www.netzfreiheit.org": [11467], "johnwohn.com": [2053], "www.silktide.com": [15041], "health.unian.net": [21851], "binarybiz.com": [1943], "ro.libreoffice.org": [9471], "blog.gerv.net": [6680], "tix.deals": [2053], "georgian.georgia.usembassy.gov": [21879], "media.kickstatic.com": [9028], "ayo.dakwah.in": [2053], "leo.org": [9414], "api-latam.groupon.com": [7100], "aox.ag": [2053], "gaaturustigslapen.nl": [6518], "email-comparethemarket.com": [20030], "www.lanayachocolate.com": [9274], "members.aas.org": [271], "short.wirzi.com": [2053], "www.scorerestore.com": [14634], "ests.us": [2053], "hecky.es": [2053], "bam.nr-data.net": [11143], "lambda-linux.io": [9289], "b32cronos.ual.es": [17361], "lbird.org": [2053], "yui.yahooapis.com": [18943], "weatherimages.tv2.dk": [16136], "genges.com": [6642], "intelfreepress.com": [8361], "waze.jlss.eu": [2053], "hromadskeradio.org": [20371], "drwrnrb.com": [2053], "u.cdiscount.vc": [2053], "tbs-url.com": [2053], "vosd.org": [2053], "jai.sh": [2053], "*.howtogeek.com": [7716], "a1stor.co": [2053], "euniovi.uniovi.es": [17479], "*.discshop.se": [4643], "file.cmbchina.com": [2683], "www.dojotoolkit.org": [4727], "*.gamona.de": [6568], "dgttu.co": [2053], "deakinandfrancis.co.uk": [19880], "snkrhd.uk": [2053], "start.fedoraproject.org": [5843], "photos.barvaux.org": [1733], "rmvets.com": [2053], "s.midd.ag": [2053], "usecryptos.com": [17713], "muzhi.baidu.com": [1661], "captora.com": [19643], "status.nodejitsu.com": [11647], "o365du.de": [2053], "veve.me": [2053], "betsta.rs": [2053], "lift.openx.com": [12193], "tescocompare.com": [16398], "joycasino.com": [20552], "foresters.*": [6148], "u.rorpage.com": [2053], "topb.co": [2053], "divshare.com": [19928], "www.torrentfunk.com": [16852], "0.asset.soup.io": [15415], "aden.la": [2053], "*.helpocean.com": [7443], "tr.house": [2053], "bailen.me": [2053], "www.prometeus.net": [13376], "www.nnsa.energy.gov": [5355], "1nm.co": [2053], "www.openkeychain.org": [12236], "dlab.us": [2053], "stpls.la": [2053], "blog.comsigntrust.com": [3519], "i.kapital.kz": [20576], "www.whois.net": [22020], "mad.eik.bme.hu": [1570], "lnwd.cc": [2053], "getinvolved.wustl.edu": [18290], "postovabanka.sk": [13208], "stylistlounge.stelladot.com": [15719], "www.dengisend.ru": [4440], "fon.tech": [2053], "*.partito-pirata.ch": [12487], "wtrmln.co": [2053], "www.championat-rostov.ru": [19683], "fffit.co": [2053], "nl.avm.de": [1493], "donate.libreoffice.org": [9471], "es.patronbase.com": [21083], "isolde-project-rilis.web.cern.ch": [2632], "www.anon-ib.co": [1075], "arabic.norton.com": [11703], "*.nrao.edu": [11144], "ds.eduid.cz": [5198], "upx69.com": [17694], "mvaltas.com": [2053], "northerntool.com": [11699], "voodoo.com": [18135], "securemail.powys.gov.uk": [21183], "on.forex.com": [2053], "*.prolexic.com": [13374], "downloads.iridiumbrowser.de": [8504], "*.mozilla.org": [10846], "www.einsteinathome.org": [5228], "lists.pld-linux.org": [12470], "vt.tumblr.com": [17101], "*.vungle.com": [18172], "www.kakao.com": [8859], "www.nigms.nih.gov": [11241], "www.strategypage.com": [21585], "karwansaraypublishers.com": [8953], "l.ybalrid.info": [2053], "zanox.com": [19102], "www.poopjournal.rocks": [13126], "images2.bovpg.net": [2305], "cwisdb.kuleuven.be": [8969], "work.taobao.com": [16206], "docusign.com": [4717], "skydsl.eu": [15180], "*.sonnettech.com": [15387], "online.t-mobilebankowe.pl": [21643], "mjdk.dk": [20807], "rickshar.es": [2053], "www.transifex.com": [16943], "verkhnyaya-pyshma.beeline.ru": [1801], "payson.se": [12700], "io9.com": [8483], "ins.ms": [2053], "benchmarks.cisecurity.org": [2673], "www.engagesciences.com": [5361], "link.pb.io": [2053], "www.skypeassets.com": [15185], "www.chinalaborwatch.org": [3141], "buryatiya.beeline.ru": [1801], "www.londonsockcompany.com": [9746], "ozk.space": [2053], "foreseeresults.com": [6140], "go.loginvsi.com": [2053], "jskom.lysator.liu.se": [9238], "www.baruwa.com": [19490], "www.billing.flokinet.com": [6054], "secure.post.harvard.edu": [7351], "ipek.su": [2053], "rth.ms": [2053], "c.viens.ca": [2053], "www.cdn.jsdelivr.net": [8805], "www.pgcon.org": [12447], "*.hostname.sk": [7682], "acess.ws": [2053], "cs.ucsd.edu": [17216], "ssb.no": [14409], "alaska.edu": [17521], "aful.org": [325], "resourcex2.dditscdn.com": [4317], "cogn.im": [2053], "sgkb.ch": [20574], "steelhouse.io": [2053], "dagou100com.oss.aliyuncs.com": [19346], "s.dosp.org": [2053], "webs.nl": [2053], "cheer.media": [2053], "polygrant.com": [13115], "*.cottages4you.co.uk": [18790], "lib.washington.edu": [17577], "www.driving.co.uk": [19962], "webtimeclock.com": [18460], "scribblelive.com": [14654], "wre.jp": [2053], "www.slate.fr": [15194], "quidco.com": [13594], "wwa.wipe.de": [22035], "securefileshare.wales.nhs.uk": [11102], "academia.edu": [475], "admission.tameside.gov.uk": [21659], "try-smart.jd.com": [8571], "resources.joomla.org": [8776], "unian.ua": [21851], "www.wealth.anz.com": [355], "qdomain-saenew.stor.sinaapp.com": [15083], "splin.tt": [2053], "wimm.club": [2053], "stus.se": [2053], "amdram.info": [2053], "jam.sh": [2053], "mdl1.udn.com": [17224], "doba.us": [2053], "www.itradecimb.co.id": [2662], "ccedk.com": [2604], "elms.warrington.gov.uk": [18280], "www.digitaldollhouse.com": [4575], "cesium.di.uminho.pt": [17553], "fitm.ag": [2053], "enphaseenergy.com": [5386], "mantodea.mantisadnetwork.com": [10126], "cdntest-c.ndla.no": [11309], "netlogin.kuleuven.be": [8969], "indr.co": [2053], "piwik.ip-projects.de": [7932], "f3.thejournal.ie": [16490], "abdussamad.com": [445], "www.frys.com": [6354], "planet-work.*": [12977], "cwe.mitre.org": [10649], "patches.linaro.org": [9522], "maintenance.fastly.com": [5803], "suite.websecurify.com": [18442], "unid.utah.edu": [17574], "*.saintcon.org": [21358], "wicworks.fns.usda.gov": [17495], "p19.qhimg.com": [13531], "honlap.farm": [2053], "password-hashing.net": [12642], "threatexchange.fb.com": [5814], "jdreed.co": [2053], "a0.websitealive.com": [18445], "press.livefyre.com": [9668], "static.hackaday.io": [7270], "c.ichiba.jp.rakuten-static.com": [21251], "*.avaya.com": [1486], "www.workingatbooking.com": [22049], "www.reverbnation.com": [14075], "b.gohere.ir": [2053], "n.stocks.co.zw": [2053], "vp-studentaffairs.stanford.edu": [15635], "support.udacity.com": [17391], "campustreball-proves.upf.edu": [17674], "wndr.dk": [2053], "share.sbndev.net": [14321], "thalasseo.com": [16430], "e.caine.in": [2053], "reviews.virginmobileusa.com": [18025], "barrierbusting.communities.gov.uk": [19761], "p.confinale.ch": [2053], "ahpra.gov.au": [1431], "abtt.co": [2053], "ogi.lt": [2053], "www.peterborough.gov.uk": [12806], "ogi.lv": [2053], "www.ultimedecathlon.com": [21845], "*.sundancechannel.com": [15853], "dvrinfo.de": [2053], "*.bidz.com": [1902], "sh-m.ag": [2053], "staticgen.com": [15680], "forums.absolute.com": [469], "slne.us": [2053], "hr-dept.web.cern.ch": [2632], "faxian.appinn.com": [1156], "mein.webprospector.de": [18377], "go.ruec.jp": [2053], "khashaev.ru": [20589], "www.doublethedonation.com": [4809], "comsuper.gov.au": [3522], "pethelpful.com": [21113], "spunout.info": [2053], "help-de-de.nike.com": [11595], "blog.gustavus.edu": [7155], "wiki.eth0.nl": [5481], "lfg.fyi": [2053], "cfif.org": [3010], "g.01j.me": [2053], "lhk.meituan.com": [10405], "gaos.com": [7035], "in.himytv.com": [2053], "36v.me": [2053], "yixing.meituan.com": [10405], "toolsfor.lv": [2053], "mercury.jd.com": [8571], "catalog.utdallas.edu": [17349], "tale.sh": [2053], "www.joshbegley.com": [8783], "s.yotsuba.to": [2053], "s0.playscdn.tv": [13030], "ijb.mg": [2053], "www.chessbase-shop.com": [3126], "flonline.eu": [5691], "scriptsource.org": [14661], "uvw.crase.org": [2053], "results.ielts.org": [7866], "lmelibrary.worldcat.org": [18748], "www.anybalance.com": [1116], "bse.havering.gov.uk": [7377], "go.dtrix.tv": [2053], "awdc.aliyun.com": [861], "til.ink": [2053], "www.visioncritical.com": [18067], "id2.idqqimg.com": [8073], "mtgrf.co": [2053], "fr.zenmate.ch": [19133], "tescophoto.com": [16401], "forums.questionablecontent.net": [13587], "assetcdn.500px.org": [195], "rstt.eu": [2053], "lk.kav.fr": [2053], "www.getfinal.com": [6712], "www.iosafe.com": [8485], "bbs.deepin.org": [4380], "*.reviewjournal.com": [9313], "*.bigstockimages.com": [1920], "diyconsumer.co": [2053], "talon.bz": [2053], "2wh.cc": [2053], "ssl.ptlogin2.qq.com": [13514], "go.dekalee.net": [2053], "entreu.uv.es": [17750], "go.wbs.com": [2053], "portal.uv.es": [17750], "sl.meituan.com": [10405], "*.ting.com": [16744], "www.cz.redhat.com": [13909], "m.koreahq.net": [2053], "enfr.dict.cc": [4536], "committeepapers.barnet.gov.uk": [19487], "www.xlhost.com": [18819], "gtran.ch": [2053], "www.planetnetbeans.com": [12283], "j.calcium.pw": [2053], "www.planet-source-code.com": [12976], "jfol.in": [2053], "labs.runabove.com": [14271], "secure.bhphotovideo.com": [19527], "link.udd.cl": [2053], "moodle.thm.de": [16066], "ubeyd.tk": [2053], "kickson.fr": [2053], "login.bazaarvoice.com": [1759], "l.grebbedijk.nl": [2053], "trac.mplayerhq.hu": [9949], "www.kinox.io": [20597], "swisscex.com": [14443], "smauto.co.uk": [2053], "cwp.stanford.edu": [15635], "themuse.com": [16611], "insidecelebs.com": [8318], "www.richmondshire.gov.uk": [14110], "acilia.me": [2053], "cdon.se": [2620], "suicidegirls.com": [15840], "parisvega.com": [21073], "hmsrc.me": [2053], "sibel.ga": [2053], "dulwich.io": [4896], "spinn.es": [2053], "sig11.haxor.hu": [2053], "missions.opencorporates.com": [12129], "*.medicinenet.com": [10360], "ntldstats.com": [11151], "mongodb.com": [10741], "48ertandler.wien.gv.at": [22025], "*.simplytechnology.net": [15080], "safety-security.uchicago.edu": [17532], "joke-link.de": [2053], "cal.berkeley.edu": [17526], "monazilla.org": [20820], "*.sysproserver.de": [21639], "survivetheclaireperryinter.net": [15916], "assets.highways.gov.uk": [20340], "dhcpforum.isc.org": [7966], "lnk.nextit.de": [2053], "schrf.be": [2053], "yllwp.gs": [2053], "nginx.com": [20906], "out.webbson.net": [2053], "securehnw.northwarks.gov.uk": [11696], "112rsd.nl": [2053], "ope.unizar.es": [17643], "www.kinkontap.com": [9060], "www.typora.io": [17193], "bngo.co": [2053], "www.foodprotectiontaskforce.com": [6118], "www.amazon.com.au": [19366], "www.lib.polyu.edu.hk": [13116], "selger.canaldigital.no": [2862], "www.vitrinepix.com.br": [21931], "eloconcursos.com.br": [5278], "www.ireeco.com": [8503], "u.iza.ac": [2053], "suining.meituan.com": [10405], "support.zoneedit.com": [19212], "pac12.me": [2053], "thechinastory.org": [16523], "www.vn.hsbc.com": [7233], "www.lesbianpornfan.com": [20662], "w.mrlasser.com": [2053], "biciperros.org": [1896], "fedoramagazine.org": [5844], "kpl.us": [2053], "him.ac": [2053], "msm.mitre.org": [10649], "www.snipt.net": [15284], "www.m86security.com": [9867], "kissourads.com": [2053], "apps.bz": [2053], "l.ludw.in": [2053], "www.proxy.uchicago.edu": [17532], "account.wandoujia.com": [18267], "www.cheapassfiction.com": [3102], "digium.com": [4594], "litehosting.org": [9617], "www.slysoft.com": [15221], "*.webstarts.com": [18387], "www.fullcontact.com": [6367], "ugenr.dk": [17398], "www.peopleconnect.scot.nhs.uk": [11102], "kcory.co": [2053], "community.godaddy.com": [6898], "cov.ky": [2053], "codesearch.debian.net": [4351], "aera.at": [722], "filesharingpremium.com": [20109], "blackgate.net": [19552], "909.ibero909.fm": [2053], "stand.org": [15627], "webapps.telford.gov.uk": [21675], "cabos.xyz": [2053], "font.by": [2053], "link.sl": [2053], "www.hopkins-interactive.com": [7638], "fogbo.ws": [2053], "hallam.co": [2053], "at.harilo.com": [2053], "blog.advance.net": [688], "prek.co": [2053], "memne.ws": [2053], "fdol.pl": [2053], "www.verio.com": [17914], "flockport.com": [6052], "1msoul.us": [2053], "www.buckwear.com": [19606], "s.galvezgil.com": [2053], "ch.meituan.com": [10405], "mnhne.ws": [2053], "golfdig.st": [2053], "www.notalone.gov": [11713], "l.elpete.com": [2053], "www.cubify.com": [3982], "fm2.cl": [2053], "1.darkroom.shortlist.com": [14979], "vorstand.piratenpartei.de": [12938], "jeat.ca": [2053], "ie.norton.com": [11703], "meta.appinn.com": [1156], "opros.ok.ru": [11968], "acfou.io": [2053], "shopspring.com": [21432], "dnt.abine.com": [458], "choc.to": [2053], "ticketea.com": [16688], "b.yandex.by": [18953], "aflcio.mn": [2053], "targz.link": [2053], "www.taras.yandex.com.ua": [18955], "www.porter.io": [13162], "faq-es.ssa.gov": [21552], "minforsyning.kmd.dk": [20612], "sharerepo.com": [14911], "growmyteam.xyz": [2053], "d.simpsn.com": [2053], "freezone.co.uk": [6306], "ly.fftn.co": [2053], "lobn.co": [2053], "scrx.es": [2053], "account.courierpostonline.com": [3783], "wageworks.com": [18241], "b.lordbanks.com": [2053], "static.thejournal.ie": [16490], "m.contact2.yandex.com.tr": [18954], "cn.unionpay.com": [17478], "jstz.co": [2053], "dev.wix.com": [18684], "grafistik.net": [2053], "companis.to": [2053], "www.allpayments.net": [19354], "nacdl.us": [2053], "zeroanthropology.net": [22132], "russfr.it": [2053], "nplx.be": [2053], "build.chromium.org": [3179], "run.adkoli.net": [2053], "www.healthdesigns.com": [7394], "i.makeagif.com": [20740], "doska.sobytiya.info": [21496], "www.wigan.gov.uk": [18585], "url.ihostbr.com": [2053], "adm.osp.cuhk.edu.hk": [2747], "*.mindhealthconnect.org.au": [10600], "webmail.uic.edu": [17517], "www.ikea.com": [8108], "smartronix.massrel.io": [10215], "fasterbadger.com": [5800], "www.walmart.com": [18260], "aldi.fr": [338], "www.entropay.com": [5402], "www2.blogger.com": [2160], "adactio.com": [588], "sclo.by": [2053], "www.ensijaturvakotienliitto.fi": [20043], "a.bnb.im": [2053], "*.fullslate.com": [6368], "home.thescottishsun.co.uk": [21717], "content.magix.com": [9874], "dudley.firmstep.com": [20125], "rlin.st": [2053], "samba.com": [14308], "sourcefabric.org": [15429], "pvac-forum.leeds.ac.uk": [17604], "fotki.yandex.by": [18953], "hedge.bz": [2053], "www.nikosdano.com": [11598], "tino.cu.cc": [2053], "myat.tk": [2053], "a.arsti.la": [2053], "www.riksgalden.se": [14123], "j.wovn.io": [18212], "www.dal.net": [4077], "on.nbc26.tv": [2053], "s2.rationalcdn.com": [21261], "olcf.ornl.gov": [11892], "mobify.net": [10680], "www.osalt.com": [21033], "platina.ru": [13006], "*.gnome.org": [6471], "www.cs.kent.ac.uk": [17603], "secure.sprintbuyback.com": [15566], "hnulibrary.worldcat.org": [18748], "flinto.in": [2053], "articles.braintreepayments.com": [2327], "nslovo.info": [20956], "stev.us": [2053], "get.jftrial.com": [2053], "wj.meituan.com": [10405], "www.coverartarchive.org": [3797], "www.tus.ac.jp": [16808], "online.cheshirewestandchester.gov.uk": [19700], "tools.cisco.com": [3221], "rutblo.com": [2053], "unodc.org": [17272], "www.racetohealth.co.uk": [13726], "ctan.org": [2739], "go.wktk.jp": [2053], "l.rondier.io": [2053], "www.kelcomaine.com": [8996], "mps.theplatform.com": [16496], "gtgkd.co": [2053], "tarena.in": [2053], "gatsby.party": [2053], "changyuan.meituan.com": [10405], "frederikshavn.dk": [6234], "en.faq.buffalo-global.com": [2454], "sthru.co": [2053], "stylisheve.link": [2053], "static.hubspotqa.com": [7740], "www.zenmate.es": [19133], "image10.bizrate-images.com": [2086], "www.lushstories.com": [20728], "stec-t07.xhcdn.com": [18815], "*.nationalpriorities.org": [11274], "imd.online": [2053], "*.siliconrus.cmtt.ru": [3388], "worldtour.kartfighter.com": [8952], "poll.sakh.com": [21360], "nl.napster.com": [20874], "sausage.gawker.com": [6593], "moneycrashe.rs": [2053], "ar.verbling.com": [17907], "chiken.link": [2053], "www.ausregistry.com.au": [1411], "www.element5.com": [5259], "w.kabam.com": [2053], "www.ask-inc.com": [16939], "www.opendemocracy.net": [12230], "i3.sndcdn.com": [15278], "jhodg.us": [2053], "www.nootriment.com": [11666], "religion.interfax.kz": [20476], "www.debian-art.org": [21006], "www.manageengine.com": [10103], "tpgimc.us": [2053], "websvc.migrol.ch": [10562], "netmediaeurope.fr": [11390], "link.mjcomp.com": [2053], "anxco.re": [2053], "www.francisfrith.com": [20158], "crunchboard.com": [3905, 12797], "prvn.io": [2053], "ep2013.europython.eu": [5514], "img.bzimages.com": [2341], "optistar.co": [2053], "playsafe.events": [2053], "publictools.tiaa-cref.org": [16071], "chickensoup.com": [3132], "code.x2go.org": [18800], "unode50.co": [2053], "legacy.illinois.edu": [17544], "thermoscientific.com": [16617], "poivron.org": [13211], "blog.xamarin.com": [18840], "sosecu.re": [2053], "www.propertydeals.com.pk": [13386], "u.novus.com": [2053], "musiciansfriend.com": [10906], "sportys.com": [15544], "jcrosoft.com": [8569], "www-ee.stanford.edu": [15635], "careers.peopleclick.com": [12762, 12763], "lenovopicks.com": [9411], "galaxus.ch": [6525], "earth.illinois.edu": [17544], "roari.link": [2053], "communications.williams.edu": [18616], "cuinfo.cornell.edu": [3744], "kccne.co": [2053], "app-de7.resrc.it": [13832], "app-us5.resrc.it": [13832], "ovp.lenovo.com": [9409], "mann.link": [2053], "jadi.ml": [2053], "zwmail.de": [19245], "intranet.nes.scot.nhs.uk": [11102], "eventtracker.friendsofnra.org": [20176], "www.theinformation.com": [16559], "link.coder.si": [2053], "goff.im": [2053], "compulab.co.il": [3594], "ocas.nl": [2053], "www.epilepsyontario.org": [5425], "cms.medianova.com": [10346], "hkex.com.hk": [7629], "cityoflondon.police.uk": [3253], "tkrt.xyz": [2053], "swiss-virtual.com": [15948], "gatwickairport.com": [6586], "pingxx.com": [12905], "netis.cis.vutbr.cz": [17814], "www.zwmail.de": [19245], "pahp.me": [2053], "gco.io": [2053], "wiki.openitp.org": [12145], "tartarus.org": [16221], "fdhl.co": [2053], "seryer.net": [2053], "appwiki.checkpoint.com": [3106], "httpsnow.org": [5007], "snd.st": [2053], "www.sakittome.com": [5411], "suitey.com": [15843], "uofmhealth.org": [17665], "www.mims.com.hk": [9910], "clkads.com": [3331], "theprov.in": [2053], "willia4.link": [2053], "snd.sc": [2053], "lamer.co": [2053], "walul.is": [2053], "*.ubisoftgroup.com": [17371], "go.magento.co.uk": [10016], "tybo.co": [2053], "imne.ws": [2053], "asset-1.netbeans.org": [11376], "www.ezrss.it": [5103], "thinkx.me": [2053], "shepway.objective.co.uk": [20979], "zocdoc.me": [2053], "go.danpatra.org": [2053], "sussan.com.au": [15919], "plzen.idnes.cz": [20425], "myfitnesspal.com": [10947], "console.qcloud.com": [13530], "i.gathering.org": [2053], "*.research.de.com": [10385], "l.gos.si": [2053], "icann.org": [7828], "www.mobilecore.com": [10683], "www.subply.com": [15810], "support.intego.com": [8351], "smartos.org": [15235], "www.bsdconsulting.co.jp": [1586], "gobolinux.org": [20262], "cyclistapp.co": [2053], "perevod.vtb24.ru": [21961], "to.ichetkar.fr": [2053], "glov.es": [2053], "abebooks.com": [447], "healthcarestaffbenefits.org": [7399], "tech.yandex.com": [18956], "www.movistar.es": [22067], "billing.gitter.im": [6806], "tchibo.pl": [16240], "ztan.tk": [16819], "bigg.ie": [2053], "info.microsoft.com": [10543], "www.openculture.com": [12203], "www.plugin-planet.com": [13048], "www.trustthevote.org": [17059], "uptime.centrify.com": [19673], "nl.icecat.biz": [8059], "mianchi.meituan.com": [10405], "img04.findgravy.com": [5958], "on.boeffi.net": [2053], "magpi.cc": [2053], "wuzhen.meituan.com": [10405], "www.broxtowe.gov.uk": [19598], "www.panstwomiasto.pl": [12574], "kmshair.co": [2053], "m.footlocker.com": [6126], "sso.swiss-va.com": [15947], "mdgdgt.com": [2053], "halc.kk.dk": [8883], "hexian.meituan.com": [10405], "www.mysql.fr": [10970], "dfs.bz": [2053], "gcfum.com": [2053], "*.meteonews.net": [10489], "l.rbh-bb.de": [2053], "blogtw.ashleymadison.com": [1289], "hyec.jp": [2053], "blog.eurodns.com": [5510], "hc.verseone.com": [21909], "wiki.ocf.berkeley.edu": [17526], "jobs.github.com": [6801], "dcif.uniovi.es": [17479], "img7.anidb.net": [1062], "www.associatie.kuleuven.be": [8969], "www.hbo.com": [20322], "itsartm.ag": [2053], "pas.org.my": [12557], "www.easychair.org": [5123], "aftr.dk": [2053], "games.mirrorbingo.com": [10634, 10635], "successchef.com": [15827], "tableau.com": [16152], "static-7headlines.pixfs.net": [12958], "yelp.co.nz": [18979], "l.kittest.se": [2053], "bossi.es": [2053], "a.rink.li": [2053], "kb.hostingsolutions.cz": [7675], "i1-groceries.asda.com": [387], "mdr.buzz": [2053], "chef.io": [3115], "syktyvkar.beeline.ru": [1801], "chessvib.es": [2053], "service.wienenergie.at": [18582], "www.dittdistrikt.no": [4664], "dev.pdr.leeds.ac.uk": [17604], "cryptsy.com": [3961], "exprt.co": [2053], "url.jarno.co": [2053], "postlapsaria.com": [13206], "boots.ie": [2268], "www.searchstorage.de": [16273], "extratorrent.com": [5637], "js-sec.casalemedia.com": [2929], "*.web.com": [18346], "sp.meituan.com": [10405], "bioethicsarchive.georgetown.edu": [6668], "buy.itunes.apple.com": [1160], "openbsd.org": [12118], "i.gruppe-n.eu": [2053], "cwo.guide": [2053], "developer.travis-ci.org": [16976], "mlw.al": [2053], "jobs.rakuten.co.jp": [13767], "mlma.alibaba.com": [850], "tixx.it": [2053], "*.starnet.com": [15645], "www.nrapvf.org": [20951], "zdv.uni-mainz.de": [17611], "youtube.co.th": [19016], "egiles.me": [2053], "www.enigmabox.net": [5376], "fr.pornworms.com": [13155], "eurosmartz.com": [5515], "bit.ottvideo.me": [2053], "status.groupon.com": [7100], "www.pressbooks.ch": [21194], "flse.at": [2053], "sptlzr.link": [2053], "www.vitamindcouncil.org": [18086], "smodus.nike.com": [11595], "www.aclum.org": [296], "www.homebid.org.uk": [20353], "shop.lego.com": [9222], "www.slackatwork.com": [15188], "thumbnail.gunosy.com": [7151], "hebdo.ch": [20330], "www.ffgg.ulaval.ca": [17515], "www.vlissingen.nl": [11324], "contribuez.cnnumerique.fr": [3654], "priv.gc.ca": [13307], "itefix.net": [20508], "cambr.co": [2053], "pscorp.pstprod.peoplestrategy.com": [12761], "ic3.gov": [17300], "mrlnfx.net": [2053], "www.shirazlug.ir": [14953], "forbesmagazine.com": [6136], "facebook.se": [5736], "www.albumarsiv.com": [821], "huhu.at": [2053], "www.aquagear.com": [1183], "go.minutes.io": [2053], "wiki.manjaro.org": [10121], "www.macworld.com.au": [9988], "l.docondev.com": [2053], "grande.xlhost.com": [18819], "neappl.es": [2053], "go.id.me": [2053], "www.netelligent.ca": [11416], "m.chromeexperiments.com": [3177], "in.wasaweb.net": [2053], "www.computerbasedmath.org": [3603], "image.istella.it": [8529], "csuloch.link": [2053], "fir.im": [20123], "cdn.markets.ft.com": [5941], "www.myoptplussecure.com": [11001], "publicaccess2.tmbc.gov.uk": [16082], "blogs.vtiger.com": [18161], "www.eastsussex.gov.uk": [19994], "login.independentmail.com": [8204], "img3.thalasseo.com": [16430], "kinkontap.com": [9060], "sglnk.us": [2053], "blog.radware.com": [13758], "ryxp.co": [2053], "www.velleman.be": [17888], "*.nexway.com": [11548], "ex.mail.ovh.net": [12378], "ideal.snsbank.nl": [14382], "plugins.jetbrains.com": [8708], "secure.i.uat1.telegraph.co.uk": [16340], "www.avast.com": [1484], "bctn.co": [2053], "ton.twimg.com": [17153], "passwordcard.org": [12645], "iosdevweekly.ly": [7929], "img.pr0gramm.com": [21185], "www.settrade.com": [14878], "knash.co": [2053], "iplawye.rs": [2053], "sochi.beeline.ru": [1801], "www.cloudcracker.com": [3343], "wag.so": [2053], "wallet.mynxt.info": [10961], "q.acero.uk": [2053], "oe2.us": [2053], "ekmsecure.co.uk": [5233], "www-cse.ucsd.edu": [17216], "mail.eclipso.de": [5152], "www.toolserver.org": [18595], "fabbuy.com": [2053], "sell.stubhub.co.uk": [15789], "svp.vgc.no": [17776], "account.companieshouse.gov.uk": [3571], "aia.ag": [2053], "bigiron.bid": [2053], "portal.hfo-telecom.de": [7187], "www.rumorscity.com": [14269], "cru-inc.com": [2718], "kulado.xyz": [2053], "idg.se": [7852], "benxi.meituan.com": [10405], "carekris.com": [2906], "www.pbagalleries.com": [12414], "www.linaro.org": [9522], "www.connectmyphone.com": [3646], "www.whisper.sh": [18545], "youtu.cf": [2053], "ps.dental": [2053], "prad.de": [13235], "vod.transformersmovie.com": [12599], "flyg.us": [2053], "l.westm.co.uk": [2053], "cdr.im": [2053], "www15.georgetown.edu": [6668], "northeast.aclufl.org": [286], "es.xfinity.com": [22082], "connect.webtrends.com": [18467], "gregslink.co": [2053], "www.netload.in": [11434], "secure.pegazhosting.com": [12739], "piratebay.unlockproject.tech": [21771], "www.mytritonlink.ucsd.edu": [17216], "www.geoplatform.gov": [6660], "ddr.my": [2053], "co.atcs.ms": [2053], "ohu.website": [2053], "assets.gratipay.com": [7026], "smallfarms.cornell.edu": [3744], "at.amlabc.com": [2053], "bookyourpc.lancashire.gov.uk": [20633], "edg.com": [4990], "www.planboardapp.com": [12975], "llportal.aylesburyvaledc.gov.uk": [19468], "tenten.vn": [16378], "blog.core.ac.uk": [19793], "pinkp.tv": [2053], "static.newamerica.org": [11493], "conviva.com": [3698], "blogher.com": [2155], "cdn.discourse.org": [4631], "cauv.in": [2053], "wtb.li": [2053], "glwmet.co": [2053], "www.atomiccowlick.com": [1361], "go.levees.org": [2053], "jnt.hn": [2053], "www.estavisas.org.uk": [5065], "*.memecenter.com": [10422], "nwtime.org": [11463], "suppliers.oracle.com": [12284], "www.cryptanalysis.eu": [3917], "rmarch.co": [2053], "url.helc.me": [2053], "www.periscope.io": [12784], "*.discordapp.com": [4629], "prized.na.leagueoflegends.com": [9361], "panel.dataspace.pl": [4264], "www.aeryon.com": [730], "relo.la": [2053], "virtu.es": [2053], "vias.symantec.com": [15969], "www.bolehvpn.net": [2241], "skylarkcloud.com": [15181], "cms.kiva.org.s3.amazonaws.com": [9077], "disk42.com": [4647], "on.aheram.com": [2053], "short.hyog.me": [2053], "hepo.fi": [7459], "bussgods.se": [2519], "www.cryptoins.com": [3943], "alumni.kuleuven.be": [8969], "sec.news": [2053], "mozillalabs.com": [10849], "cutty.me": [2053], "blog.shopstyle.*": [14964], "*.ngpvanhost.com": [11096], "www.vpnincome.com": [8173], "store.symantec.com": [15969], "www.rxportalexpress.com": [14290], "l.toch.im": [2053], "dub.washington.edu": [17576], "www.usfreeads.com": [17321], "*.crossmediaservices.com": [14961], "*.2o7.net": [117], "account.bilibili.com": [1928], "teenlife.co": [2053], "www.manuf.bme.hu": [1570], "static.daniweb.com": [4219], "news.lenovo.com": [9409], "gpsec.me": [2053], "e-fibank.bg": [5884], "cdn1.recombu.com": [13883], "hertsdirect.org": [7474], "splatoon.co": [2053], "contests.newsnet5.com": [11536], "devespanol.aclufl.org": [286], "zrfr.us": [2053], "segment.io": [14802], "fluffyclouds.dnainfo.com": [19932], "confluence.freeswitch.org": [6247], "federatedinvestors.com": [5838], "www.thepiratebay.cd": [21709], "ofrs.co": [2053], "www.moreal.co": [10775], "goto.ucsd.edu": [17215], "aap.cornell.edu": [3744], "beta.ipredator.se": [7951], "jellis.me": [2053], "get.it": [6687], "fcm.dhl.de": [4108], "www.espo.nasa.gov": [11058], "jira.secondlife.com": [14706], "tten.co": [2053], "odl.mit.edu": [9916], "craftsadore.uk": [2053], "dnssec-validator.cz": [4140], "www.toster.ru": [16870], "info83.top": [2053], "ian.com": [8040], "www.ligatus.it": [9502], "kf.cm": [2053], "adv.st": [2053], "tdg.csis.dk": [2731], "onswitchit.ca": [12015], "www.pep.uni-potsdam.de": [17618], "crclf.in": [2053], "opintoluotsi.fi": [12258], "yuntu.amap.com": [19360], "lethiaowens.net": [2053], "z.ettabox.eu": [2053], "www5.dudley.gov.uk": [4891], "framateam.org": [6214], "m.feedback.yandex.ua": [18961], "drops.htw-berlin.de": [7246], "www.icares.wustl.edu": [18290], "www.computec-academy.de": [3596], "frivillighetshuset.no": [6339], "intelish.com": [8363], "s.trn.gr": [2053], "nws.vrt.be": [2053], "autodiscover.1x.com": [59], "mais.moda": [2053], "meridian.sovrn.com": [21517], "trdsofla.com": [2053], "supadupa.me": [15866], "www.ianthehenry.com": [8041], "www.christophertruncer.com": [3174], "www.inoreader.com": [8306], "nordstromrack.com": [11676], "darlinghq.com": [4233], "moodle.dudley.gov.uk": [4890], "muuve.it": [2053], "ctap.it": [2053], "ok.sberbank.ru": [14560], "static2.flattr.net": [6024], "www.getfoxyproxy.org": [6713], "apidoc.c9.io": [3339], "*.uct.ac.za": [17592], "livertox.niddk.nih.gov": [11241], "cl.norton.com": [11703], "nj.jd.com": [8571], "www.narodnipanel.cz": [20875], "gpg4win.org": [7002], "mountco.mp": [2053], "www.mbnet.pt": [10277], "www.fsg.ulaval.ca": [17515], "imp.ulpgc.es": [17411], "www.nvidia.co.uk": [11172], "sjs.li": [2053], "chat.iptorrents.com": [7945], "www.noembed.com": [11651], "*.alertbot.com": [828], "*.mlpforums.com": [9924], "www.pti.iu.edu": [8214], "noblogs.org": [20919], "apricityos.com": [19408], "www.doel.kuleuven.be": [8969], "n.suntravel.xyz": [2053], "starawardssecure.snowfly.com": [15291], "pgln.me": [2053], "ajgeek.me": [2053], "celebritybabies.people.com": [12758], "wdfiles.com": [18593], "static.encyclopediadramatica.se": [5342], "s.maxlielje.co": [2053], "democracy.wirral.gov.uk": [18671], "fit.ly": [2053], "senai.sc": [2053], "wexnermedical.osu.edu": [11959], "ref.evoliatis.com": [5572], "cp.conoha.jp": [3652], "blog.popcorntime.sh": [21170], "jbass.me": [2053], "go.stanish.net": [2053], "www.shreksadventure.com": [21437], "www.xavisys.com": [18847], "www.hertz.hu": [7487], "www.hertz.hr": [7482], "www.verigames.com": [17913], "insider.razerzone.com": [13820], "www.ca.cz": [19624], "landing.lyris.com": [9850], "*.edupage.org": [5192], "new.devon.gov.uk": [4509], "cliter.us": [2053], "*.links.mkt41.net": [15047], "mobilevikings.com": [10689], "cdn3.xsolla.com": [18896], "*.postimg.io": [21180], "webmail.freecycle.org": [6280], "tamlab.osu.edu": [11959], "ps.xsolla.com": [18896], "www.infoq.com": [8250], "familie.bremen.aok.de": [357], "marqu.ee": [2053], "*.e-sea.net": [4944], "askives.com": [1302], "photo.domi.to": [2053], "wethep.pl": [2053], "threatmetrix.com": [16661, 16662], "courierpickupuat.courierpost.co.nz": [3784], "plcviewer.com": [2053], "verizon.net": [21906], "ibur.nu": [2053], "ditg.es": [2053], "*.opensrs.net": [12166], "ece.unm.edu": [17270], "hoku.co.jp": [14985], "bxf.tv": [2053], "rd.b-type.com": [2053], "justice.gawker.com": [6593], "alfrd.biz": [2053], "urls.im": [2053], "jfe.li": [2053], "conduit.hu": [2053], "madrid.usembassy.gov": [21879], "sellerhelp.taobao.com": [16206], "endpoint.efast.dol.gov": [19938], "southern-africa.hivos.org": [7573], "go.beardben.com": [2053], "www.couchpota.to": [3766], "www.galette.eu": [20195], "tbl.ac": [2053], "static.kirklees.gov.uk": [9067], "pages.balabit.com": [1668], "oauth.net": [11806], "www.indexoncensorship.org": [8208], "shotgunclub.com": [14982], "xively.com": [18880], "bugs.python.org": [13500], "muvluv.degica.com": [3396], "s.kjk.jp": [2053], "msfn.org": [9955], "clusterhq.com": [3382], "lzd.co": [2053], "secure.stage-gettyimages.co.uk": [6741], "www.eclipso.de": [5152], "searslabs.com": [14691], "stmz.it": [2053], "www.islenzka.net": [8517], "ocean.sci-hub.bz": [14615], "theinquirer.fr": [11390], "www.scooter-attack.com": [14632], "www.antok.co": [1111], "phoc.as": [2053], "m3.quel.jp": [2053], "admission.umftgm.ro": [21848], "*.thomashunter.name": [21726], "verisign.dk": [17915], "websecweekly.org": [18441], "aviani.net": [2053], "event.notifier.rakuten.co.jp": [13768], "peseu.tk": [2053], "wpfilm.co": [2053], "mywell-being.com": [10988], "elilabs.com": [5267], "coloradocollege.edu": [3506], "glassdoor.ca": [20246], "ns1.leboncoin.fr": [20650], "www.gismeteo.ru": [6789], "9to5google.com": [246], "akademy2007.kde.org": [8871], "prfr.co": [2053], "ssl.mail.126.com": [43], "itss.tv": [2053], "webassetsf.scea.com": [14327], "im.at-home.ru": [19446], "nodejsmodules.org": [11643], "prettygoodgoods.org": [21198], "srfnw.cz": [2053], "forum.antergos.com": [1102], "youchoose.redbridge.gov.uk": [13917], "cruzpay.ucsc.edu": [17591], "downloads.slack-edge.com": [15188], "www.pluscontrollers.com": [3691], "bytenoc.nl": [2549], "*.shopstyle.com": [14965], "macleather.co": [2053], "flights.webjet.co.nz": [18421], "hvyl.ch": [2053], "projects.fivethirtyeight.com": [6008], "dl.winehq.org": [18652], "hashcat.net": [7358], "games.d2jsp.org": [4071], "www.uprr.com": [21870], "internot.info": [8439], "fod.osu.edu": [11874], "www.federatedmedia.net": [5839], "ere.stanford.edu": [15635], "securingthehuman.org": [14760], "gazeta.ru": [6599], "quitter.no": [13602], "plex.tv": [13036], "www.secunet.com": [14718], "opencpu.org": [12124], "media.wnyc.org": [18211], "zohodiscussions.com": [19204], "www.playstation.com": [13015], "*.realtime.co": [13865], "tg.ethz.ch": [5074], "pf200.club": [2053], "www.csc.ncsu.edu": [11689], "netbarg.co": [2053], "www.kremlinpress.ru": [20619], "www.cookiepedia.co.uk": [19785], "wiki.ubuntu.com": [17382], "x.skimresources.com": [15158], "risparmiopostaleonline.poste.it": [13192], "filmy.me": [2053], "e4.xhamsterpremiumpass.com": [18817], "fdr.li": [2053], "bilddb.arch.ethz.ch": [5074], "www.vinelinux.org": [21925], "en-el.dict.cc": [4536], "motivatene.ws": [2053], "verizon.com": [17918], "skft.it": [2053], "remote.tripadvisor.com": [17017], "developer.vitalsource.com": [21930], "compete.org": [3582], "www.kupschke.net": [20623], "www.enjoy.com": [5380], "final-score.com": [5933], "adfs.ntu.edu.tw": [11160], "cryptocloud.org": [3940], "*.marchex.com": [10148], "enomcentral.com": [5033], "releasetheap.es": [2053], "recordsdm.xyz": [2053], "www.vc-kundencenter.de": [17764], "mcb.group": [2053], "arsm.co": [2053], "account.manning.com": [20748], "tagesschau.de": [21650], "www.responsys.com": [14048], "anirena.com": [1061], "reactos.org": [13837], "www.pastemonitor.com": [12651], "ethx.co": [2053], "bowl.by": [2053], "www.techenclave.com": [16265], "nucleo.agency": [2053], "httpshaming.tumblr.com": [17100], "tp.postbank.de": [13186], "invs.io": [2053], "fltec.info": [2053], "ibam.dengisend.ru": [4440], "vexped.it": [2053], "www.superantispyware.com": [15867], "www.kidshealth.org": [9036], "download.fedoraproject.org": [5843], "www.analysis.avira.com": [1489], "link.glamis.it": [2053], "grupocrm.org": [2053], "jornalnh.co": [2053], "protonmail.com": [13396], "soccerpunt.com": [7879], "www.priceza.com": [13283], "www.airtricity.com": [796], "www.sourced.fm": [15427], "tipmobile.sbb.ch": [15946], "tt.se": [16121], "posts.kirlism.ga": [20602], "www.applyweb.com": [1169], "ucsb.imodules.com": [7909], "datalens.here.com": [7465], "www.warframe.com": [18274], "fool.com": [10801], "myprojects.cancerresearchuk.org": [19637], "www.filesharingpremium.com": [20109], "lnysa.club": [2053], "account.wellcome.ac.uk": [22001], "www.ctswholesalesunglasses.com": [2744], "pd-nk.itunes.apple.com": [1160], "car-pictures.cars.com": [2923], "s77.cnzz.com": [3391], "secure.identrust.com": [8082], "independentmail.com": [8204], "runfreetour.org": [2053], "calendar.ferris.edu": [5871], "www.plarium.com": [21147], "www.politicopro.com": [13099], "withinw.in": [2053], "paulm.in": [2053], "ogb.me": [2053], "gordogeek.com": [2053], "britg.as": [2053], "www.hideme.ru": [7532], "m6f.de": [2053], "myneu.neu.edu": [11091], "www.fox-it.com": [6202], "vehbidz.com": [17883], "me.uaa.alaska.edu": [17519], "community.geogebra.org": [6659], "transifex.net": [16942], "li.solw.at": [2053], "l.sprout24.com": [2053], "downloads.2kgames.com": [104], "guilinguan.jd.com": [8571], "broker.bitcointoyou.com": [2036], "wsol.co": [2053], "diskusjon.no": [4649], "www.cheetosmuseum.com": [19695], "zanata.ci.cloudbees.com": [19736], "v-k.me": [2053], "www.crowdstrike.com": [19822], "de.flixster.com": [6049], "nullday.de": [11772], "saf.foodpros.co": [2053], "taihang.jd.com": [8571], "ocrne.ws": [2053], "www.hvgkonyvek.hu": [7251], "comsen.se": [2053], "dyno.site": [2053], "mineralcountypubliclibrary.worldcat.org": [18748], "lcsrv1.myhsphere.biz": [8756], "fcs.unizar.es": [17643], "suttonhomechoice.org.uk": [21619], "stats.spontex.org": [15538], "htwv.uk": [2053], "keikc.co": [2053], "compass-ssl.xbox.com": [18850], "data.nal.usda.gov": [17495], "deeu.megabus.com": [10401], "no-ip.com": [18084], "passwort-generator.com": [12646], "rapidbuyr.cachefly.net": [13790], "www.coinmate.io": [3462], "oval.mitre.org": [10649], "forex-metal.com": [6150], "ssl-dagbladet.tns-cs.net": [21752], "zefflin.com": [19125], "cson.mx": [2053], "www.spelthorne.gov.uk": [21533], "footballfanatics.com": [6131], "boxwoodtech.com": [2314], "www.koenrouwhorst.nl": [9106], "metrics.carzone.ie": [19651], "www.underwaterworld.com.au": [17444], "1105media.com": [22], "gentoo.org": [6653], "oia.osu.edu": [11959], "fosshub.com": [20150], "hideme.today": [7535], "buybe.at": [2053], "jobsonline.stoke.gov.uk": [21579], "pubweb.bnl.gov": [19564], "gsehelpsu.stanford.edu": [15635], "readyflowers.com": [13853], "mcmk.co": [2053], "on.wvva.com": [2053], "scc.buzz": [2053], "convar.de": [3692], "outr-in.org": [2053], "raynersw.com": [13819], "itk.org": [20513], "ppc.osu.edu": [11959], "www.youthscape.co.uk": [22115], "*.cihar.com": [3193], "www.mwrinfosecurity.com": [9974], "www.blocked.org.uk": [2145], "paservices.state.gov": [17345], "vhil.stanford.edu": [15635], "www.nicehash.com": [11577], "rlif.es": [2053], "cdn.worldreader.org": [18765], "amy.tips": [2053], "www.repozitar.cz": [14021], "kh.norton.com": [11703], "fr.piwik.org": [12950], "es34.co": [2053], "2912a.v.fwmrm.net": [6254], "changedetection.com": [3053], "suicidepreventionlifeline.org": [11286], "tksu.de": [2053], "static.independent.co.uk": [8202], "ahoff.me": [2053], "ads.afraccess.com": [5747], "darew.in": [2053], "puh.sh": [2053], "up.ht": [2053], "go.wgdm.net": [2053], "www.trafficsafetymarketing.gov": [16927], "*.skroutzstore.gr": [15167], "lulu.com": [9823], "www.nzbindex.nl": [11191], "s.remetal.jp": [2053], "karvel.me": [2053], "www.ing.com": [7916], "www.zalando.nl": [19094], "sswi.me": [2053], "huayin.meituan.com": [10405], "powertraveller.com": [13231], "herefordshire.gov.uk": [7466], "login.icommons.harvard.edu": [7351], "gsxapp.apple.com": [1160], "rita.ly": [2053], "prepaid.onlinesbi.com": [12072], "url.qutics.com": [2053], "images.aidsmap.com": [779], "data.sheffield.gov.uk": [14939], "www.whatdotheyknow.com": [18527], "www.bundlestars.com": [2494], "deb.li": [4345], "digital.freitag.de": [6313], "www.emory.edu": [5314], "wwws.lemonde.fr": [9348], "befnac.be": [2053], "thepiratesbay.pw": [21215], "nickjayk.co": [2053], "a8.chaucanh.net": [2053], "umg.fm": [2053], "dctr.io": [2053], "osc.hul.harvard.edu": [7351], "gpo.zugaina.org": [19238], "www.kickass.la": [9031], "www.mork.no": [10780], "pcpro.link": [2053], "devslack.getmondo.co.uk": [20232], "trader.flowbtc.com": [6060], "www.hostinglabs.pe": [7674], "b.lx.tc": [2053], "email.ipswich.gov.uk": [8499], "aiasf.me": [2053], "linnk.ml": [2053], "www.fueleconomy.gov": [6359], "sharetobuy.com": [21423], "o.samh.us": [2053], "scoop.it": [14631], "www.ameslab.gov": [19384], "webmania.me": [2053], "natbit.co": [2053], "qalimentar.tk": [2053], "boxuk.com": [2308], "andywalsh.com": [1050], "www.rtems.org": [13706], "s.ff-yj.com": [2053], "2.junky.fr": [2053], "th.piliapp.com": [12887], "www.arrl.org": [382], "tipstricks.itmatrix.eu": [8005], "public.create.msdn.com": [9953], "site-cdn1.ghosteryenterprise.com": [6750], "jiangshan.meituan.com": [10405], "j.mediajobs.com": [2053], "our-hometown.com": [12346], "pyatigorsk.beeline.ru": [1801], "www.mediate.com": [10350], "middlesbrough.firmstep.com": [20125], "esys.xyz": [2053], "www.kuther.net": [9199], "auksjon.qxl.no": [13617], "ja-jp.facebook.com": [5733], "www.eclkmpsa.com": [20004], "trav.li": [2053], "citi.asia": [2053], "dot.b4b4r07.com": [2053], "on.magrr.co": [2053], "stanford.edu": [15635], "std.al": [2053], "blog.udacity.com": [17391], "apps.yunos.com": [19055], "maps.tunbridgewells.gov.uk": [21811], "fsrg.co": [2053], "neuroscience.stanford.edu": [15635], "metallica.com": [10485], "get.codlo.com": [2053], "srv2.shoutlet.com": [21436], "*.careerperfect.com": [2903], "to.gvlden.com": [2053], "edgett.bc.ca": [2053], "wscont1.apps.microsoft.com": [10543], "cdn2.a1.net": [252], "issues.jenkins-ci.org": [8700], "e4i.me": [2053], "videos.cpanel.net": [2710], "www.postauto.ch": [13176], "s7g10.scene7.com": [14580], "adium.im": [635], "www.ananda.org": [1028], "favstar.fm": [5809], "*.curate.us": [3994], "www.dict.cc": [4536], "www.cse.osu.edu": [11959], "toolserver.org": [18595], "www.env.leeds.ac.uk": [17604], "grcmc.org": [7017], "4.srl": [2053], "relaxrm.us": [2053], "payment.link-region.ru": [20692], "annualcreditreport.com": [1073], "pix.revsci.net": [14073], "chorder.dosowisko.net": [4782], "ntw.lt": [2053], "blog.usni.org": [17323], "parl.ch": [2053], "mathid.mathtag.com": [10236], "encontro.libreoffice.org": [9471], "newsletter.sky.com": [15170], "ecok.it": [2053], "cms.madametussauds.com": [10002], "devj.im": [2053], "www.openccc.net": [12123], "monitoring.websitealive.com": [18445], "blogs.alfresco.com": [843], "intra.brunel.ac.uk": [19599], "embedded.edc.intel.com": [8359], "universityofncarolinaatpembroke.worldcat.org": [18748], "r69.me": [2053], "rijswijk.nl": [11324], "fr.functions-online.com": [20187], "b.hireart.co": [2053], "vi.tc": [2053], "www.cryptonator.com": [3952], "www.oyoony.net": [21057], "scharts.co": [2053], "www.coopzeitung.ch": [3712], "iam.netelligent.ca": [11416], "newstatesman.com": [11502], "eoral.uned.es": [17446], "sadclwscom.lowes.com": [9800], "profnd.co": [2053], "link.mlgill.co": [2053], "jacobinmag.com": [8636], "cbo.gov": [17295], "br.ln.com.ar": [2053], "www-en.htw-berlin.de": [7246], "blog.fau.de": [17597], "me.devbravo.net": [2053], "slpsd.us": [2053], "ucc.dk": [17209], "confluence.cornell.edu": [3744], "donggang.meituan.com": [10405], "sabinet.worldcat.org": [18748], "ro.norton.com": [11703], "store.aps.org": [969], "r.jirikuv.cloud": [2053], "ihas.co": [2053], "*.neomailbox.com": [11346], "secure.tesco.com": [16396], "buyace.us": [2053], "static2.startnext.com": [15665], "clients.x10hosting.com": [18799], "i8p.us": [2053], "www.espacejeux.com": [5465], "amersfoort.nl": [11324], "buzzdock.com": [2535], "christianprayercenter.com": [3170], "dao1.org": [2053], "www.money.pl": [10735], "shoucang.taobao.com": [16206], "static-2.gumroad.com": [7148], "payc.me": [2053], "c4.q-assets.com": [21235], "childcarejobs.hertsdirect.org": [7474], "*.ncsoft.com": [11080], "quotidien.framapad.org": [6214], "support.pogoplug.com": [13074], "itx.com": [8000], "tinyp.as": [2053], "xiayi.meituan.com": [10405], "lesterchan-lesterchan.netdna-ssl.com": [9420], "subscribe.thenation.com": [16465], "www.edp.pt": [4995], "myhelprequests.sky.com": [15170], "neon.li": [2053], "blog.whyopencomputing.ch": [22021], "nwrt.de": [2053], "vb-paradise.de": [17871], "forums.checkpoint.com": [3105], "my.whatsbroadcast.com": [18535], "go.hy.ly": [2053], "blogmql.ml": [2053], "www.piratesbay.pe": [21215], "bogner.sh": [19568], "on.m2m.tv": [2053], "alioth.debian.org": [4353], "my-uat.symantec.com": [15969], "w.illiams.com": [2053], "www.udk.com": [17223], "on.intesys.it": [2053], "idofoundation.org": [7796], "www.forgerock.com": [20145], "www.cj2.nl": [2674], "www.subtome.com": [15823], "gabry.hu": [6520], "pa.hinckley-bosworth.gov.uk": [7552], "unigine.com": [17472], "rtlpro.me": [2053], "eventoverload.com": [5544], "*.sankaty.com": [14525], "www.ciw.edu": [2916], "style.c.aliimg.com": [854], "transfer.sh": [21779], "bawm.co": [2053], "rybinsk.beeline.ru": [1801], "championsofregnum.com": [3050], "widgets.amazon.ca": [19362], "balabit.hu": [19480], "fthr.ly": [2053], "www.lexisnexis.com": [13936], "paws.uwm.edu": [17580], "eulr.co": [2053], "mobile.jingwei.com": [8723], "summerschool.wustl.edu": [18290], "mauerspecht.zdf.de": [22127], "common.cnblogs.com": [19743], "summit.alfresco.com": [843], "dnds.in": [2053], "status.quantopian.com": [13570], "static.sv.us.criteo.net": [3872], "konferenzen.telekom.de": [4490], "j.dunsta.net": [2053], "fius.us.es": [17706], "jia.tmall.com": [21748], "url.elcampo.in": [2053], "slabsca.pe": [2053], "eip.stanford.edu": [15635], "arenavc.com": [1218], "theigd.net": [2053], "kareo.ly": [2053], "mmnta.com": [2053], "assets0.frndcdn.net": [6336], "mxptint.net": [10930], "*.revision3.com": [14079], "analytics.in-tend.co.uk": [20448], "finalist.nl": [20116], "iosapi.xamarin.com": [18840], "breakingmuscle.com": [19588], "blog.risingstack.com": [21312], "omhb.eu": [2053], "thepoet.co": [2053], "*.dotmailer.com": [4789], "bugs.lede-project.org": [20652], "www.democracy.io": [4431], "morningstar.co.uk": [10783], "euca.it": [2053], "linux-dev.org": [9560], "msi-shop.de": [9956], "fls-eu.amazon.in": [19372], "*.nextag.ca": [11556], "sputnik.dengisend.ru": [4440], "bamajr.us": [2053], "trib.me": [2053], "nos-oignons.fr": [11709], "huuu.ge": [2053], "metros.mx": [2053], "transtec.events": [2053], "status.vinilox.eu": [18016], "ypos.ch": [2053], "pina.work": [2053], "nicta.com.au": [11112], "*.sciencedirect.com": [14617], "billund.dk": [1938], "efinancialnews.com": [11513], "dsm.la": [2053], "bloomingtonfools.org": [6228], "clck.yandex.com": [18956], "cdn3.a1.net": [252], "b4.hitravel.xyz": [2053], "openclipart.org": [12104], "cdn.clinicalkey.com": [3326], "*.torservers.net": [16866], "envoydirect.com": [5413], "caltech-sp.caltech.edu": [2815], "press.avast.com": [1484], "lotame.com": [9776], "1srdream.org": [2053], "splitreason.com": [15533], "yuk.travel": [2053], "fil.nrk.no": [11744], "pelck.me": [2053], "uncfsu.worldcat.org": [18748], "*.immerda.ch": [20442], "m.nbr.org": [2053], "reports.eyereturn.com": [5643], "golch.in": [2053], "www.insidehw.com": [8315], "mit.information.dk": [8272], "myaccount.news.com.au": [11530], "go.ewu.edu": [2053], "www.domaincontext.com": [4743], "cdlejob.com": [2053], "hyiph.us": [2053], "partnervideo.slashdot.org": [15192], "www.salisbury.greenparty.org.uk": [7052], "directory.osu.edu": [11959], "astrobiology.nasa.gov": [11058], "www.myswitzerland.com": [20867], "ja-jp.facebook.jp": [5736], "ikeda.me": [2053], "qkk.me": [2053], "store.discojuice.org": [4626], "l.pdoteam.com": [2053], "adat.is": [2053], "www.html5sec.org": [7240], "buzz.typo3.org": [16149], "openbookpublishers.com": [12200], "trendweight.com": [16988], "www.runforyourlives.com": [14270], "member.udn.com": [17224], "lists.ourproject.org": [21044], "*.hamradioscience.com": [7311], "eid.link": [2053], "osce.usembassy.gov": [21879], "niel.sn": [2053], "finnchristiansen.de": [5965], "slgr.co": [2053], "neo.ly": [2053], "ut10.xhcdn.com": [18815], "www.is.ut.ee": [17347], "likes.com": [9511], "blog.opendz.org": [18730], "elements.yandex.by": [18953], "cdnp.kink.com": [20596], "details.payment.yahoo.co.jp": [18944], "www.uie.com": [17233], "www.sony.se": [15392], "go.sohi.to": [2053], "hfsvwr.london-fire.gov.uk": [20715], "www.fraudlabs.com": [6229], "xjx2g.jd.com": [8571], "www.internetcoup.org": [8429], "laurin.me": [2053], "qa-coupons.paypal.com": [12678], "ffsg.org": [5679], "winq.org": [2053], "wiki.haskell.org": [7361], "www.bitmaintech.com": [2055], "youtube.hk": [19016], "www.scaleway.com": [14566], "www.coreyabramson.com": [3741], "www.onioncat.org": [12061], "www.video-dean.com": [17985], "*.ecwid.com": [5167], "shop.a1.net": [252], "soup.io": [15415], "bpm.me": [2053], "myshadow.org": [11005], "*.airbnb.com.au": [788], "dtbl.org": [2053], "static.memrise.com": [10427], "ci.appveyor.com": [19407], "img1.thalasseo.com": [16430], "tmglnk.com": [2053], "dstnjc.com": [2053], "jmldirect.uat.venda.com": [8590], "clickiturl.com": [2053], "mth.care": [2053], "plesk2.thephone.coop": [16614], "superrepo.org": [15871], "chris-w.us": [2053], "lob.com": [9695], "uhulinux.hu": [21837], "cpyne.me": [2053], "jstn.io": [2053], "www.insa-strasbourg.fr": [8342], "gaoyao.jd.com": [8571], "accag.in": [2053], "www.myregextester.com": [20862], "openpgpkey.info": [12238], "vrly.co": [2053], "www.elec.ru": [20021], "hjlp.dk": [2053], "zeff.ly": [2053], "jstark.co": [2053], "www.wcs.anthem.com": [19395], "www.webhostone.de": [18418], "ifc.org": [8407], "getreno.news": [2053], "googler.ga": [2053], "2pb.in": [2053], "vault.studio.ndnmediaservices.com": [11083], "www.tpvs.hmrc.gov.uk": [7219], "reasoncoresecurity.com": [13870], "chaturbate.com": [3093], "reestr.rublacklist.net": [14249], "tomtomrunningrace.com": [16812], "zarb.org": [19110], "easyedi.tietoenator.com": [16708], "bel.fi": [1550], "suitabletech.com": [15841], "jira.zarafa.com": [19109], "jamila.ro": [2053], "audubon.org": [1401], "www.slough.gov.uk": [15216], "cbilabs.org": [2053], "assistance-multimedia.fr": [1319], "normdaten.digitale-diathek.net": [4587], "avatar3.status.net": [15690], "sendpepper.com": [14823], "pro.jamendo.com": [8649], "bikerbuzz.info": [2053], "repo.continuum.io": [19781], "cdn.earthdata.nasa.gov": [11058], "sterli.nl": [2053], "monkeyguts.com": [10745], "www.aei.org": [316], "openmedia.ca": [12155], "old.tsn.ua": [21805], "v034.ax2600ab.omdx.uprr.com": [21870], "www.battleforthenet.com": [1743], "chng.it": [2053], "en-ca.ondeck.com": [20994], "picsity.com": [12879], "desertnews.com": [4465], "my.woking.gov.uk": [22041], "images.mailaway.homeaway.com": [20351], "www.bato.to": [19496], "zhanzhang.baidu.com": [1661], "www2.barnsley.gov.uk": [19488], "nine-2-one.com": [11605], "smbyj.us": [2053], "scotch.io": [14637], "wiki.pirateparty.ca": [12928], "brwu.nl": [2053], "www.netfilter.org": [11417], "billiger.de": [1935], "www.chocolatey.org": [3155], "dpaula.photo": [2053], "academy.unbounce.com": [17436], "*.robloxlabs.com": [14156], "admin.legislation.gov.uk": [20656], "ricoh.sg": [14112], "metoffice.gov.uk": [10472], "ws1.bakerlab.org": [1667], "www.un.org": [17261], "e14.xhamsterpremiumpass.com": [18817], "extranet.dotprojects.be": [4799], "www.diagrid.org": [4521], "jobpacks.com": [2053], "hbrtr.co": [2053], "go.nlc.edu": [2053], "pastas.serveriai.lt": [14860], "nobk.in": [2053], "rbk.tw": [2053], "proy.ca": [2053], "aax-eu.amazon-adsystem.com": [950], "b.billr.me": [2053], "www.av18mov.com": [1473], "fdnd.eu": [2053], "appt.us": [2053], "myservice.xbox.com": [18850], "l.forzieri.com": [2053], "epa-bprg.ornl.gov": [11892], "go.w2nd.com": [2053], "www.lrz-munich.eu": [9396], "mbh.la": [2053], "jsuppli.es": [2053], "srw.me": [2053], "id.bigmir.net": [1919], "curt.io": [2053], "c.tgknt.com": [16426], "apart.li": [2053], "netload.in": [11434], "usalliance.org": [17311], "accounts.ft.com": [5941], "enta.net": [5392], "proxy.ohiolink.edu": [11961], "l.silvexis.com": [2053], "onionoo.thecthulhu.com": [16600], "analytics.xsolla.com": [18896], "m.files.bbci.co.uk": [19501], "www.instapaper.com": [8339], "partner.salenames.ru": [14485], "buchmesse.taz.de": [16042], "www.joycasino3.com": [20552], "jmg.im": [2053], "www.nfadmin.net": [11094], "craphound.com": [3831], "toddwilson.us": [2053], "status.stripe.com": [15781], "amara.org": [948, 19361], "*.nydailynews.com": [11180], "dscr.in": [2053], "wsgfl.westsussex.gov.uk": [18507], "mozay.io": [2053], "snpt.be": [2053], "shotk.it": [2053], "dpsg.jobs": [2053], "s.btstatic.com": [1621], "tcfbike.com": [2053], "pcr-online.biz": [21095], "digitalaccess.bostonglobe.com": [16517], "adyadvantage.com": [712, 713], "paymentsuat.mppglobal.com": [20841], "hbrgez.link": [2053], "leaf.dragonflybsd.org": [4834], "mydn.org": [2053], "app.compete.com": [3583], "css.static.shropshire.gov.uk": [21440], "pl.norton.com": [11703], "tbarta.de": [2053], "contribute.jquery.org": [8597], "gurulabs.com": [7153], "link.xferic.com": [2053], "russianamericancompany.com": [14283], "*.img.digitalrivercontent.net": [4582], "ihgplc.com": [7885], "julien.work": [2053], "trademanager.alibaba.com": [850], "europa.d66.nl": [4074], "maltris.org": [10088], "failuremag.com": [5743], "go.lyricth.com": [2053], "voa.gov.uk": [21936], "www.sporx.com": [21541], "de-el.dict.cc": [4536], "dental.uw.edu": [17355], "www.pizzahut.co.uk": [12968], "livepassdl2.conviva.com": [3698], "labs.integrity.pt": [8353], "m.rdh.com": [2053], "rgsbankmobile.dengisend.ru": [4440], "go.subforum.com": [2053], "www.tipeeestream.com": [21742], "support2.magix.com": [9874], "redcross.org.uk": [2397], "chemeketa.worldcat.org": [18748], "preparedness.georgetown.edu": [6668], "projects.honeynet.org": [20357], "www.motorola.de": [10803], "bp.kolekte.com": [2053], "sankaty.com": [14525], "s.pbdeg.com": [2053], "dining.osu.edu": [11959], "jond.be": [2053], "site.etoro.com": [5077], "mnvil.com": [2053], "ld-5.itunes.apple.com": [1160], "consumerswin.com": [3670], "threev.co": [2053], "sw.meituan.com": [10405], "go.hmu.es": [2053], "s6.cnzz.com": [3391], "*.turner.com": [17120], "secure.marketwatch.com": [10185], "ssimh.co": [2053], "pix04.revsci.net": [14073], "gcclink.net": [2053], "www.taboola.com": [16153], "www.eon-uk.com": [4959], "geeklan.co.uk": [6614], "live.slynet.tv": [2053], "www.easyodds.com": [5135], "on.yau.uk": [2053], "marsh.ly": [2053], "i.sky.re": [2053], "onsalesit.com": [12083], "spacecomm.nasa.gov": [11058], "login.1688.com": [44], "mercurial.selenic.com": [10454], "link.planb.eu": [2053], "platform4.liverail.com": [9657], "bnft.io": [2053], "webmail.zen.co.uk": [19129], "l.coumori.com": [2053], "surfline.com": [15906], "www.winpcap.org": [18627], "googlemail.com": [6971], "www.mail4kidz.eu": [10041], "www.moa.idmanagedsolutions.com": [7857], "bl.cuongdq.com": [2053], "*.eurobilltracker.com": [20068], "soundonsight.org": [15409], "faq.weblog.tudelft.nl": [4403], "ffal.us": [2053], "admin.animenewsnetwork.com": [19391], "www.huntcal.com": [7767], "success.yammer.com": [18951], "rocki.ng": [2053], "hacker.lugons.org": [9262], "srslylou.uk": [2053], "moje.zuno.sk": [19079], "cdn.switchadhub.com": [15954], "medconfidential.org": [10303], "silm.me": [2053], "mmkt.in": [2053], "dtlnk.us": [2053], "uszoda.sch.bme.hu": [1570], "nolb.dhl.de": [4108], "docs.cerit-sc.cz": [2628], "hava.yandex.com.tr": [18954], "embed.gyazo.com": [7165], "static4.holidayextras.com": [7595], "download.attachmate.com": [1372], "eclevelandclinic.org": [3295], "strathaven.spydus.co.uk": [21546], "gfx6.hotmail.com": [7704], "community.muselive.com": [10898], "yotube.cc": [2053], "www.gettyimages.no": [6741], "www.gettyimages.nl": [6741], "www.btinstallershop.com": [19601], "mimibtq.com": [2053], "daved.kg": [2053], "www.eda.admin.ch": [21629], "atlfal.co.nz": [2053], "reverseheartbleed.com": [14076], "p.eshel.io": [2053], "bulksms.co.uk": [2471], "azm.io": [2053], "parm.us": [2053], "mpop.to": [2053], "blogs.progress.com": [13360], "*.compendiumblog.com": [3581], "ananda.org": [1028], "scsun.co": [2053], "i.ledadableu.fr": [2053], "www.studentrecords.wustl.edu": [18290], "tdvri.es": [2053], "g.sevki.org": [2053], "www.ipify.org": [20489], "stories.californiasunday.com": [2808], "lists.bnl.gov": [19564], "www.nspublieksprijs.nl": [20957], "popsugar.com": [13138], "smbiz.us": [2053], "staging.mutts.com": [20855], "usa.anon-ib.net": [1078], "krlmedia.nl": [8901], "link.base79.com": [2053], "www.ngpvan.com": [11096], "store.guidancesoftware.com": [7134], "get.popcorntime.sh": [21170], "gettyimages.fr": [6741], "online.danskebank.dk": [4223], "gettyimages.fi": [6741], "lwj.pwm.cc": [2053], "cache.net-a-porter.com": [11363], "lookingglass.email": [9761], "*.slitaz.org": [15199], "rgb.uno": [2053], "verticalacuity.com": [17929], "cache.snacktv.de": [15268], "togahotels.com": [16801], "dashboard.liveramp.com": [9658], "vicb.us": [2053], "*.gotpantheon.com": [12578], "d204.co": [2053], "citl.illinois.edu": [17544], "goldenadventures.com": [6938], "linkto.briz.vn": [2053], "securenet.com": [14737], "wdsdg.org": [2053], "jdmdig.it": [2053], "l.oscarc.net": [2053], "*.geneseephoto": [6647], "cmehappy.info": [2053], "www.nvisium.com": [11175], "intranet.engineering.wustl.edu": [18289], "hs13.snstatic.fi": [14383], "wokon.in": [2053], "www.voterinfo.gov.hk": [21950], "arnita.me": [2053], "fxd.pt": [2053], "resta.co": [2053], "www.site.yandex.com": [18956], "status.podio.com": [13068], "www.videointerchange.com": [17986], "www.gonewsoft.com": [6906], "www.instaradio.com": [13633], "kungfunation.com": [9189], "www.windowsazure.com": [18644], "www.quadrantsec.com": [13553], "tcat.tc": [2053], "jon.endpoint.com": [5344], "go.url-hn.cu.cc": [2053], "yacuna.com": [18934], "we.bgrrl.com": [2053], "diginb.us": [2053], "voxel.net": [18148], "podgorica.usembassy.gov": [21879], "to.jane.coffee": [2053], "wnyc.org": [18211], "record.mx": [2053], "hm.baidu.com": [1661], "www.66option.com": [211], "bugs.xenserver.org": [18858], "avaya.com": [1486], "fapmc.ru": [5664], "friendlyduck.com": [6332], "l.bizeul.fr": [2053], "rother.gov.uk": [14211], "cdn.snipcart.com": [15283], "www.weblogawards.org": [18424], "store.btcc.com": [2438], "thrsv.lu": [2053], "kulp.co": [2053], "go.nhsp.uk": [2053], "westcapitolwatch.westlaw.com": [18514], "*.powershellgallery.com": [13219], "myapm.apm.com": [372], "*.lufthansa.com": [9819], "www.cokecce.com": [3476], "abestweb.com": [282], "to.brq.me": [2053], "yuncheng.meituan.com": [10405], "sw.nohold.net": [11630], "www.thestamp.umd.edu": [17549], "dis.okmoi.nl": [2053], "to.satoorn.fr": [2053], "www.pirateparty.gr": [21135], "www.vub.sk": [18164], "l.shiori.live": [2053], "dver.se": [2053], "cityspy.rocks": [2053], "fws.arts.cornell.edu": [3744], "offog.org": [11955], "cp-d.rentalserver.jp": [14009], "st.evo.uk.com": [2053], "*.btguard.com": [1612], "alzbc.org": [2053], "showcase.ionicframework.com": [8487], "app.danskebank.dk": [4223], "www.bettershopping.eu": [1883], "shopilmd.com": [2053], "talktalkbusiness.co.uk": [16185], "woods.stanford.edu": [15635], "www.megayoutubeviews.com": [10400], "cdn.su.edu": [14943], "zhecheng.meituan.com": [10405], "gistmarks.com": [6791], "www.samsungdirect.com": [14504], "m.wien.gv.at": [22025], "www.vocabulary.com": [21938], "kids.froscon.org": [6210], "luxinvit.es": [2053], "www.nsa-observer.net": [11745], "*.cloudforce.com": [3363], "www.hinckley-bosworth.gov.uk": [7552], "nieman.de": [20911], "9joycasino.com": [20552], "nestleusa.taleo.net": [16177], "www.quantcast.com": [13567], "szel.us": [2053], "webmail.illinois.edu": [17544], "on.ovaleye.tv": [2053], "devops.profitbricks.com": [13357], "training.citrix.com": [3236, 3237], "hola.bz": [2053], "zrkl.tips": [2053], "uwpho.to": [2053], "infragard.net": [8283], "www.rising.jhu.edu": [16562], "try.jupyter.org": [8839], "www.gitbook.io": [6795], "neighbourhoodalert.co.uk": [20884], "lilithlela.cyberguerrilla.org": [4033], "blog.movableink.com": [10816], "www.epilepsyfoundation.org": [5424], "mordoviya.rt.ru": [13703], "pcwrld.us": [2053], "www.manning.com": [20748], "www.my.osu.edu": [11959], "on-ajc.com": [2053], "jsperf.com": [8806], "ref.brow.si": [2053], "xkcd.org": [22085], "svz.bz": [2053], "www.pingler.com": [21126], "newsmax.com": [11534], "www.manilaprinciples.org": [10119], "watershed.co.uk": [18299], "go.vicshih.com": [2053], "nrk.tns-cs.net": [21752], "www.bakabt.me": [1665], "www.reichelt.de": [13978], "we.ma.de": [2053], "ir.gmocloud.com": [6460], "anorsham.tk": [2053], "gaizhou.meituan.com": [10405], "journals.cambridge.org": [2825], "uky.worldcat.org": [18748], "merovx.io": [2053], "tolvutaekni.is": [16811], "drake.net.nz": [2053], "support.paloaltonetworks.com": [12553], "yo.yo-rg.info": [2053], "gls-group.eu": [6645], "www.openmicroscopy.org": [12219], "www.xanmod.org": [22079], "lien.sic.re": [2053], "i4wifi.cz": [20407], "s7sps5.scene7.com": [14580], "edvina.net": [5202], "www.turktk.com": [17114], "rix22.no": [2053], "csis.ysu.edu": [19049], "k02.in": [2053], "ckjobs.us": [2053], "webtrends-sdc.niehs.nih.gov": [11241], "decryptedmatrix.com": [4368], "40f.nl": [2053], "payments.dudley.gov.uk": [4891], "ethics.uillinois.edu": [17238], "fanfiction.net": [5762], "thequestion.ru": [16615], "nealpoole.com": [11311], "dbo.uralfd.ru": [17696], "erdgeist.org": [5443], "grnd.gd": [2053], "www.shamansgarden.com": [14900], "rdbl.co": [2053], "www.os.uk": [11861], "labr.ie": [2053], "www.executiveinterviews.com": [5597], "elroy.twit.tv": [16147], "journeyed.com": [8798], "gatewaytohomechoice.org.uk": [20205], "piratetimes.net": [12925], "on.miner.tv": [2053], "developer.apple.com": [1160], "exoticads.com": [5610], "americanenglish.state.gov": [17345], "tdudz.com": [2053], "piratenpartei.de": [12938], "www2.hgst.com": [7189], "community.1and1.com": [61], "theaj.co.uk": [1201], "mssql.active24.com": [19275], "*.city.ac.uk": [3246], "id4.idqqimg.com": [8073], "grdncl.ge": [2053], "gncap.org": [2053], "spgur.us": [2053], "www.offcloud.com": [11934], "www.technologyreview.in": [21669], "ftravelc.link": [2053], "secure.drivee.ne.jp": [4860], "arteus.aerohosting.cz": [728], "www.allinvestments.ru": [19352], "*.bstatic.com": [2255], "gongxiao.tmall.com": [21748], "r.nlping.ru": [2053], "valuedopinions.co.uk": [17838], "education.symantec.com": [15969], "lexis.at": [2053], "josel.in": [2053], "pandaction.wwf.ch": [22060], "cirt.net": [2669], "dailyfantasyradio.com": [4196], "www.appsto.re": [1176], "apotheke.de": [1139], "weichouji.sina.com": [21455], "www.ipvanish.com": [7946], "www.flippa.com": [6043], "apps.community-uat.adr.org": [19298], "mos.meituan.com": [10405], "www.gladrags.com": [6818], "rt.ocf.berkeley.edu": [17526], "webmaster.yandex.by": [18953], "koenie.eu": [2053], "www.wondershare.com": [22044], "*.readthedocs.org": [13844], "instr.me": [2053], "images.tomsofmainestore.com": [16816], "modmypi.com": [10699], "i.ubbai.me": [2053], "www.youtube.fi": [19016], "www.licensebuttons.net": [9485], "cyberguerrilla.org": [4033], "mysql.geektechlabs.com": [6620], "growprof.it": [2053], "resources.library.georgetown.edu": [6668], "www.haxx.se": [20319], "*.shuddle.us": [14995], "jeffn.at": [2053], "serviceplus.cengage.com": [2998], "addisonlee.com": [617], "git.inf.mit.bme.hu": [1571], "hertz247.de": [7485], "www.flattr.com": [6025], "tmhe.at": [2053], "aussieperthtours.com.au": [1413], "sstrk.co": [2053], "y.hitravel.xyz": [2053], "corelan.be": [3743], "egypt.usembassy.gov": [21879], "sunlightfoundation.com": [15857], "bangw.in": [2053], "*.tynt.com": [17184], "mis.sh": [2053], "thinkup.com": [16631], "www.probank.gr": [7038], "sunbeltsoftware.com": [15852], "link.wtch.mn": [2053], "home.wabi.com": [18233], "scclia.cms.gov": [19742], "url.ash9.jp": [2053], "www.names.co.uk": [11214], "brow.nz": [2053], "tafe.at": [2053], "suoyiren.oss.aliyuncs.com": [19346], "gtgloss.uk": [2053], "mydy.co": [2053], "wiki.debconf.org": [4346], "www.dsinternals.com": [4159], "www.consuwijzer.nl": [3659], "klsy.me": [2053], "impact.leeds.ac.uk": [17604], "d.dunkkings.com": [2053], "go.bibomart.net": [2053], "vaforvets.va.gov": [17297], "i.t.net.ar": [16218], "hotels.nationalrail.co.uk": [11244], "l.michaelk.me": [2053], "gil.gd": [2053], "interkassa.com": [8400], "recordstoreday.com": [13884], "alumfx.com": [936], "*.theiet.org": [7867], "secure.fanboy.co.nz": [5764], "hackread.com": [7267], "phonedirectory.vanderbilt.edu": [17850], "wgu.io": [2053], "taste.md": [2053], "samharris.org": [14497], "litespeedtech.com": [9618], "www.wickr.com": [18579], "kids.froscon.de": [6210], "www.bsi.bund.de": [5828], "g.ibtimes.co.uk": [7823], "l.stian.info": [2053], "internetsuccess.at": [8437], "lhrocks.co": [2053], "www.sick.com": [15002], "www.forecast.io": [6141], "jrj.io": [2053], "cache.cheapassgamer.com": [3097], "*.shopbootsusa.com": [2267], "community.alibaba.com": [850], "umbra.co": [2053], "code.facebook.com": [5733], "w.mazparts.net": [2053], "albertathome.org": [5228], "lists.ruhr-uni-bochum.de": [14267], "git.eclipse.org": [5150], "unity.com": [17506], "www.sourceforge.net": [15423], "www.rebeltorrent.net": [13874], "wwrld.us": [2053], "www.searchlock.com": [21394], "www.noordwijkerhout.nl": [11324], "careers.mheducation.com": [20790], "er.ntnu.no": [11153], "g03.a.alicdn.com": [846], "adgtl.uk": [2053], "www.idms-linux.org": [20424], "asu.edu": [1231], "dvo.lv": [2053], "pbbans.com": [21090], "www.full30.com": [20185], "www.tinychat.com": [16752], "askezra.cornell.edu": [3744], "jdclnr.us": [2053], "techin.ch": [2053], "www.hertz.com.hk": [7486], "*.vpn.alaska.edu": [17521], "jwd.link": [2053], "lowpo.st": [2053], "projects.parabolagnulinux.org": [12590], "wgnr.es": [2053], "vehivial.unizar.es": [17643], "latinum.me": [2053], "telus.com": [16364], "*.isorno.com": [8523], "help.segment.com": [14803], "portals.clevelandclinic.org": [3295], "editmysite.com": [5186], "t.pp.ua": [2053], "vefa.difi.no": [4547], "info.threatmatrix.com": [21730], "www.apschedule.com": [376], "jiasule.com": [8716], "parchis.cf": [2053], "dsm.li": [2053], "flex.ntr.br": [2053], "www.canyouseeme.org": [18083], "paltel.me": [2053], "birobidzhan.beeline.ru": [1801], "en-pt.dict.cc": [4536], "www.nnm-club.me": [11132], "kanhai.me": [2053], "l.mylapka.com": [2053], "adkontekst.pl": [640], "support.hasoffers.com": [7354], "edge2.digicert.com": [4556], "ltu.se": [9821], "tuwien.ac.at": [18000], "payments.ncl.ac.uk": [11073], "mvnsy.co": [2053], "*.dynamitedeals.com": [4928], "www.bazaarbay.org": [1757], "www.scriptsource.org": [14661], "ssw.pt": [2053], "pnw.cl": [2053], "whleso.me": [2053], "unian.net": [21851], "www.smi2.net": [15251], "lnkn.it": [2053], "gearman.org": [6606], "www.cloudron.io": [3373], "hipercontas.com.br": [20341], "msns.engineering.osu.edu": [11959], "www.opentrackers.org": [12248], "www.vidling.com": [18005], "nrahqrange.nra.org": [20943], "i.walmartimages.com": [18261], "leadwerks.com": [9358], "*.blogspot.lt": [2166], "*.symanteccloud.com": [15969], "www.defenceimagery.mod.uk": [17253], "www-cache4.extensis.com": [5634], "zpchips.com": [19074], "ghostery.com": [6749], "jmmy.co": [2053], "advbd.co": [2053], "*.itsanhonour.gov.au": [8542], "www.adsecurity.org": [313], "www.upcbusiness.nl": [17281], "ytba.se": [2053], "swale.objective.co.uk": [20979], "chakasmmm.com": [3043], "thedrum.com": [16536], "www.travelhouse.ch": [7698], "s.jpbe.de": [2053], "ianp.co": [2053], "meduza.io": [10371], "ss0.baidu.com": [1661], "www.amberswann.com": [958], "lytmos.co": [2053], "bancaonline.bankinter.com": [1694], "login.search.ch": [14684], "f3.blick.ch": [2125], "netbel.oxfamireland.org": [12394], "go.berryz.fr": [2053], "fd.cm": [2053], "www.battelle.org": [1740], "*.pimienta.org": [13211], "aliexpr.es": [2053], "bhusal.com.np": [2053], "security.vt.edu": [18031], "css.weibopay.com": [21998], "www.business.bt.com": [1593], "oem.whyopencomputing.com": [22021], "www.twitchstatus.com": [21828], "go.yi.io": [2053], "gdata.ch": [6410], "statistik.bayern.de": [15688], "cryptocon.org": [3928], "mfo.li": [2053], "simplebooklet.com": [15070], "cdnslssl.coveritlive.com": [3804], "nym.ag": [2053], "monk.ly": [2053], "support.livechatinc.com": [9641], "fehigueras.es": [2053], "upgr.de": [2053], "hertzequipmentsales.com": [7511], "*.readthedocs.com": [13844], "prsde.us": [2053], "www.indiestylestore.com": [20452], "www.kura.io": [9193], "www.apac.redhat.com": [13909], "discuss.pirateparty.org.au": [12929], "awak.enin.gs": [2053], "hopefaith.us": [2053], "www.entangledstates.org": [20044], "*.eusecwest.com": [5080], "meinfernbus.de": [10406], "theoldreader.com": [16491], "migrosbank.ch": [10563], "hrsmart.com": [7231], "hagrid.libart.calpoly.edu": [2806], "www.6xq.net": [217], "images.rottentomatoescdn.com": [14214], "appguru.com": [1145], "www.s-3.com": [14294], "secure.infotoday.com": [8252], "en.spontex.org": [15538], "www.openmedia.ca": [12155], "www.hsbc.co.kr": [20374], "7.dbstatic.no": [19866], "static.fncash.com": [5694], "lgo.mit.edu": [9916], "www.cimbclicks.co.id": [2662], "autorimsandaccessories.com": [1459], "www.genymotion.com": [6656], "bitquick.tw": [1992], "rentfl.at": [2053], "www.tchibo.sk": [16240], "w.dkaodai.com": [2053], "eyeo.com": [20085], "nc-unbrick1.apple.com": [1160], "d.254a.com": [96], "regattaurl.com": [2053], "*.hds.com": [7563], "*.volunteer2.com": [18129], "samhalpern.com": [2053], "commondreams.org": [3552], "ningbo.jd.com": [8571], "drummond.st": [2053], "byjc.co": [2053], "sickdaysurfshop.com": [15003], "tersee.com": [21678], "shared.aces.illinois.edu": [17544], "www.lchost.co.uk": [9220], "pujiang.meituan.com": [10405], "ifttt.fitbit.com": [6002], "assets.gunosy.com": [7151], "homes.jp": [2053], "www.budgetgolf.se": [2450], "www.chatsecure.org": [3089], "static5.wonderwall.com": [18714], "ktlov.es": [2053], "x.arbis.pro": [2053], "uploads.dailystavropol.ru": [19848], "rossc888.com": [2053], "solarmovie.ph": [15360], "www.fass.se": [5785], "migs.news": [2053], "coinjabber.com": [3460], "l.sbh.idv.tw": [2053], "compete.com": [3583], "www.ticketsource.co.uk": [21737], "westcornwall.greenparty.org.uk": [7052], "emergingthreats.net": [5308], "www.malware-research.org": [10090], "wtsn.tk": [2053], "legislature.maine.gov": [10060], "rnl.ist.utl.pt": [16288], "etrans.energy.gov": [5355], "www.mobify.net": [10680], "regmedia.co.uk": [13973], "on.splice.com": [2053], "www.hamstudy.org": [7310], "i.buraga.org": [2053], "www.userstyles.org": [21883], "gentoo-art.org": [21006, 21007], "gene.si": [2053], "adk2cdn.cpmrocket.com": [2705], "kikatek.com": [9038], "*.weburbanist.com": [18393], "www.europeana.eu": [20070], "kernel.org": [9011], "secure.pdcnet.org": [12838], "smishcraft.co": [2053], "www.fireflycarrental.com": [7511], "parag.tech": [2053], "sc2.maps.live.com": [9644], "www.yoursupportservices.co.uk": [19039], "jobs.netflix.com": [11421], "writelatex.com": [18775], "www.simpel.nl": [21450], "beno.re": [2053], "blocktrail.com": [2140], "adcenter.microsoft.com": [10543], "cyphertite.com": [4060], "cmp.io": [2053], "mick.fm": [2053], "planetblood.deathmask.net": [4344], "7gen1d.co": [2053], "link.eml.skyandtelescope.com": [15179], "twt.gp": [2053], "feeds.itunes.apple.com": [1160], "cms.artsy.net": [1270], "www.who.is": [18556], "theiphonewiki.com": [16596], "s.prive.net": [2053], "medlem.amnesty.se": [1010], "gkw.re": [2053], "bseen.co": [2053], "nanchong.meituan.com": [10405], "tmsy.tk": [2053], "geektechlabs.com": [6620], "s.comg.jp": [2053], "bokap.it": [2053], "aarn.co": [2053], "www.readcomicsinpublic.com": [13838], "subdownloader.net": [15809], "images.mcafeesecure.com": [10281], "anaheim.tips": [2053], "americanscientist.org": [983], "*.widgetbox.com": [18580], "cssgrid.me": [2053], "verfj.es": [2053], "publicaccess.aylesburyvaledc.gov.uk": [19468], "www.opendaylight.org": [12132], "halo.fyi": [2053], "imagesb.btol.com": [1666], "tinyki.fr.nf": [2053], "www.docstorepro.com": [4711], "host2.bg": [7650], "cdn.cathaypacific.com": [2963], "mytaxandbenefits.wyreforestdc.gov.uk": [22075], "noh.la": [2053], "skrot.es": [2053], "opendns.com": [12130], "quilm.es": [2053], "census.gov": [17305], "lynr.biz": [2053], "siteca.st": [2053], "208.68.106.8": [9227], "pass.alitrip.com": [858], "alxr.me": [2053], "labs.aweber.com": [416], "rsimm.me": [2053], "www.wello.com": [18490], "1sm.es": [2053], "www.qt-project.org": [13544], "a.grimn.es": [2053], "worldwinner.com": [6534], "www.chronixradio.com": [3180], "adults.eastsussexlearning.org.uk": [19996], "8chan.co": [235], "login.webgo24.de": [18362], "12wbt.com": [10523], "www.returnpath.net": [14067], "goldmann.pl": [6943], "wllw.de": [2053], "jwhit.mn": [2053], "esbjerg.kmdcareborgerportal.kmd.dk": [20612], "kollegorna.se": [9115], "pytamy.pl": [21233], "repoindex.bnymellon.com": [19566], "lulzhahaha.com": [2053], "iout.co": [2053], "ecptr.it": [2053], "usmile.at": [17738], "mymem.es": [2053], "eatsim.pl": [2053], "1f0.de": [68], "middleeastmonitor.com": [10555], "pixelated-project.org": [12955], "banx.io": [1705], "it.icecat.biz": [8059], "careercenter.wustl.edu": [18290], "www.mazacoin.org": [10273], "www.sutn.sk": [15217], "f-ox.co": [2053], "skyid.sky.com": [15170], "*.belgium.indymedia.org": [8234], "search.oracle.com": [12284], "as.cornell.edu": [3744], "go.ofeks.com": [2053], "*.groupon.de": [7103], "webstore.gemalto.com": [6635], "apld.ws": [2053], "*.prisms.deewr.gov.au": [4099], "s0.meituan.net": [10405], "*.zagony.ru": [19090], "chart.googleapis.com": [6967], "tf.uio.no": [17615], "news.efinancialcareers.com": [18730], "kr8.me": [2053], "www.gnuheter.org": [6889], "sergiopizza.ru": [21413], "www.findababysitter.com.au": [5950], "u.goflow.me": [2053], "guardtime.com": [20292], "box.com": [2306], "neva.events": [2053], "www.perens.com": [2432], "genius.itunes.apple.com": [1160], "tigo.org": [2053], "*.serialist.net": [14840], "dis.tl": [2053], "forum.warthunder.ru": [21978], "payments.allerdale.gov.uk": [19348], "cambridgelibrary.worldcat.org": [18748], "clientnews.anthem.com": [19395], "csaw.isis.poly.edu": [13113], "tianqi.2345.com": [87], "www.ssl2buy.com": [14414], "fewo-mehrtens.de": [5879], "*.inwx.ch": [8381], "www.minotar.net": [20801], "getpostman.com": [20233], "capbea.st": [2053], "www.pv.gov.sa": [14545], "www.securitymouse.com": [14775], "asal.me": [2053], "messenger3.providesupport.com": [13401], "koptalk.in": [2053], "s.tas.pw": [2053], "a.goliathpvp.cf": [2053], "msuservicestatus.statushub.io": [15692], "chomba.top": [2053], "northamptonshire.gov.uk": [20925], "hdvest.com": [20328], "www.pirateparty.org.uk": [12930], "www.lightwidget.com": [20685], "kasperskycontenthub.com": [8964], "themarshallproject.org": [16563], "*.sheffield.ac.uk": [17624], "shop.mind.org.uk": [10594], "tw.norton.com": [11703], "www.i-cares.wustl.edu": [18290], "emember.heraldcorp.com": [7460], "cherkessk.rt.ru": [13703], "tndvr.com": [2053], "apps.cndls.georgetown.edu": [6668], "curryrice.stanford.edu": [15634], "infrmd.ch": [2053], "rpt.cedexis.com": [2986], "www.ygnition.com": [18984], "pebln.de": [2053], "www.websmithing.com": [18449], "gamezebo.com": [6562], "edgeca.st": [2053], "istabi.li": [2053], "hend.li": [2053], "saltrun.pub": [2053], "rx.roids.biz": [2053], "acdl.bz": [2053], "*.thirdage.com": [16636], "tv2.gd": [2053], "www.trafficshop.com": [16921], "www.youtube.qa": [19016], "www.cannex.com": [2573], "caimi.jd.com": [8571], "adnews.ms": [2053], "styles.wienerstadtwerke.at": [18582], "m710.co": [2053], "makeapledge.stanford.edu": [15635], "secure.api.search.sky.com": [15170], "read.ag": [2053], "ehour.me": [2053], "thelc.ms": [2053], "www.onlineforms.edgarfiling.sec.gov": [17301], "developerforce.com": [14487], "sso.ens.fr": [5029], "pgi.billdesk.com": [1930], "base.liveperson.net": [9654], "accounts.stanford.edu": [15634], "f.fanli.com": [5769], "read.douban.com": [4802], "jafri.co": [2053], "yougetsignal.com": [22110], "meez.crwdcntrl.net": [9776], "gama-gama.ru": [20198], "www.factor.io": [20090], "radio.lqtv.nyc": [2053], "baruwa.com": [19490], "staysmartonline.gov.au": [15696], "cafemambo.com": [2053], "*.tasb.org": [16411], "www.spsn.net": [15572], "sec.crain.com": [3829], "accounts.icharts.net": [7843], "jmgo.jd.com": [8571], "blog.logentries.com": [9715], "aulo.in": [1405], "maps.derbyshire.gov.uk": [19895], "w.jpmclean.me": [2053], "*.se-mc.com": [15394], "feeds.alestic.com": [832], "haase.cc": [2053], "eed.osu.edu": [11959], "www.canvas.net": [2871], "*.enjin.com": [5379], "resource.dopus.com": [4616], "cas.edutheque.cndp.fr": [2690], "johnhin.es": [2053], "www.watsoninstitute.org": [18302], "go.luc-a.de": [2053], "creators.ning.com": [11608], "hostingcatalog.com": [7678], "update.tdesktop.com": [16244], "www.computersnyou.com": [3604], "careers.globalways.net": [6863], "vlr.io": [2053], "thepiratebay.bypassed.online": [21217], "cse.umich.edu": [17552], "quan.1688.com": [44], "nphw.me": [2053], "ekd.be": [2053], "qianggou.taobao.com": [16206], "privnote.com": [13333], "online2.statefarm.com": [15671], "home.thesun.ie": [21720], "playwarz.com": [18272], "mobile.jd.com": [8571], "oesta.do": [2053], "rvlution.net": [13715], "education.staffordshire.gov.uk": [15622], "r-ob.in": [2053], "scpsa.us": [2053], "jobs.onr.org.uk": [21001], "databricks.com": [4275], "diffuse.ca": [4546], "huxian.meituan.com": [10405], "go.znrauto.com": [2053], "www.pqcrypto.org": [12488], "pcm.mcafee.com": [10282], "fcsvitm.in": [2053], "search.no.citrix.com": [3237], "rtmpdump.mplayerhq.hu": [9949], "isoc.org.br": [7973], "www.vevo.com": [17773], "yespic69.com": [18982], "www.widgit.com": [22023], "on.sonc.us": [2053], "kboo.co.uk": [2053], "autoanything.me": [2053], "secure.stage-gettyimages.it": [6741], "r.decharme.vn": [2053], "xpda.com": [22086], "pdjrnl.com": [2053], "asset-1.soup.io": [15415], "heathkit.com": [7416], "www.morgenweb.de": [10779], "pimage.timespeople.nytimes.com": [11189], "secure.stage-gettyimages.ie": [6741], "cctools.wustl.edu": [18290], "*.pingidentity.com": [12899], "marineshop.net": [10163], "groupbuy.topbuy.com.au": [16830], "www.horizon.tv": [21865], "help.spike.newswhip.com": [11525], "www.sdk.cn": [21391], "build.hmailserver.com": [7222], "joycasino777.co": [20552], "jkc.me": [2053], "ir.i.wp.pl": [18217], "ique.st": [2053], "robyn.at": [2053], "mccu.in": [2053], "account.skrill.com": [15165], "www.kea.nu": [2345], "bre.nz": [2053], "garl.ink": [2053], "swam.mp": [2053], "disaster.nlm.nih.gov": [11241], "blog.cr.yp.to": [3817], "ch.norton.com": [11703], "www.myiuhealth.org": [8012], "www.healthtap.com": [7395], "ncl.uz": [2053], "joshh.is": [2053], "baofeng.meituan.com": [10405], "sepl.us": [2053], "link.tuango.ca": [2053], "photographytalk.com": [12858], "outsidegui.de": [2053], "srvfsno.cc": [2053], "www.tescofinance.com": [16397], "unlearn.cc": [2053], "d.blakesl.ee": [2053], "cldh.se": [2053], "chiclet.ymlp.com": [19029], "france.usembassy.gov": [21879], "www.vindico.com": [18012], "dt.scanscout.com": [14577], "usctea.ch": [2053], "ecom.ibx.com": [20419], "static.1wt.eu": [58], "www.nullday.de": [11772], "e-bae.xyz": [2053], "www.m6d.com": [10315], "images3.jlist.com": [8589], "dezertdepot.com": [4517], "tac.bis.doc.gov": [17336], "c.jsrdn.com": [20558], "www.filterdigital.com": [5928], "www.kickstarter.com": [9034], "ads.hospitalityleaders.com": [7644], "docs.gimp.org": [20240], "mediac.at": [2053], "is.alicdn.com": [846], "www.wolfsonmicro.com": [18702], "benzi.co": [2053], "papogram.me": [2053], "static.rbl.ms": [13825], "enfield.gov.uk": [5359], "www.intelligentexploit.com": [8366], "youtube.com.ar": [19016], "a21.tv": [2053], "www.getbootstrap.com": [6729], "skilldrum.com": [1150], "kvasir.no": [9201], "go.twenga-solutions.com": [17148], "rodekru.is": [2053], "go.profab.io": [2053], "www.trustly.se": [17072], "qpbs.imageg.net": [6505], "wiki.argonit.cz": [1221], "failai.serveriai.lt": [14860], "siteco.re": [2053], "www.partspider.com": [12625], "www.ifixit.com": [7874], "adweb01.wku.edu": [22039], "m.slovari.yandex.by": [18953], "rekrutacja.goldenline.pl": [6941], "campuspack.eu": [2844], "bizrate.com": [2086], "www.lookingglass.email": [9761], "chitot.org": [2053], "magix.com": [9874], "gmv.eu": [2053], "pyyk2016.anadolu.edu.tr": [1025], "thesaturdaypaper.com.au": [16575], "printservice.web.cern.ch": [2632], "www.asc.osu.edu": [11959], "support.rovio.com": [14222], "*.informit.com": [8266], "utopianet.org": [17749], "comid.as": [2053], "fins.com": [11513], "eval.fi.ncsu.edu": [11690], "www.it.arch.ethz.ch": [5074], "webroot.com": [18436], "filmlush.com": [5926], "yml.me": [2053], "secure.fangamer.com": [5767], "koushixin.duoshuo.com": [19969], "vpnsecure.me": [17796], "bootstrap.debian.net": [4351], "yourdatelink.com": [19034], "socialjedi.co": [2053], "www.cs.washington.edu": [17577], "webographe.com": [2053], "etorologsapi.etoro.com": [5077], "support.mozillamessaging.com": [10850], "login.modernus.is": [10712], "www.ewent.ya.ru": [18930], "wyndhamrentals.com": [18790], "mc.skycure.com": [21472], "www.yts.to": [18927], "uts.ac": [2053], "kszk.sch.bme.hu": [1570], "wssrstrm.com": [2053], "emmie.me": [2053], "via.coret.org": [2053], "entertainment.slashdot.org": [15192], "success.parature.com": [12602], "katja.la": [2053], "ftp.avm.de": [1493], "static.newsela.com": [20901], "bhtt.co": [2053], "atxhipsters.net": [2053], "weborder.active24.nl": [19279], "jaww.org": [2053], "shoeshow.com.au": [14958], "mm.care": [2053], "jwato.com": [2053], "cabridg.es": [2053], "kmart.com": [9088], "dollaraday.co": [4733], "s.thebrighttag.com": [2379], "b-linked.bbyo.org": [19471], "www.filmarkivet.no": [20114], "www.cornell.edu": [3744], "trustthevote.org": [17059], "secureportal.translations.com": [21781], "gavelbuddy.com": [6587], "zlfstd.be": [2053], "www2.eiffel.com": [5224], "gathering.geogebra.org": [6659], "bdins.co": [2053], "spreturns.eastsussex.gov.uk": [19994], "www.f1.htw-berlin.de": [7246], "*.ssrn.com": [14419], "sseri.es": [2053], "www.greenpeace-jugend.de": [7061], "glean.pop6.com": [13128], "www.moodsmith.com": [10758], "blog.agilebits.com": [765], "www.certivox.com": [3027], "swiz.ec": [2053], "www.precursorapp.com": [13248], "www.ct.gov": [2738], "myctg.la": [2053], "blk.sh": [2053], "msh.io": [2053], "www.praegnanz.de": [13236], "vost.ro": [2053], "m5.baidu.com": [1661], "magnetsearch.net": [21709], "store.juno.com": [8835], "batstrading.com": [1531], "flacs.mindmodeling.org": [10595], "l.knpw.rs": [2053], "heidelberg.de": [7422], "csie.org": [2729], "hnz.meituan.com": [10405], "pyrl.gy": [2053], "eu-st.xhamster.com": [18816], "international.courierpost.co.nz": [3784], "tmpr.co": [2053], "trbx.co": [2053], "www.firstvds.ru": [5987], "servedbyadbutler.com": [557], "kongress-soziale-arbeit.htwk-leipzig.de": [7736], "www.endesa.pt": [5348], "andysf.org": [2053], "ourrange.com": [2053], "newmansoc.org": [2053], "www.uefidk.com": [17395], "go.netcetera.im": [2053], "www.chrs-mln-krs.com": [19711], "element.yandex.by": [18953], "www.popvote.hk": [13139], "console.twistage.com": [17160], "spendvision.com": [21534], "notanet.com.br": [11716], "chuzhou.meituan.com": [10405], "learningbizpackage.com": [9370], "competitions.nra.org": [20942], "commerce.us.reuters.com": [14069], "biomedicalprograms.georgetown.edu": [6668], "acls.org": [285], "g.blog4temp.com": [2053], "www.webwewant.org": [18394], "scratch.mit.edu": [9916], "noku.co": [2053], "r5d.co.uk": [2053], "blogs.microsoft.com": [10543], "circleci.com": [3214], "jud2.ct.gov": [2738], "tkmc.me": [2053], "ry.ly": [2053], "flic.kr": [6032], "training.linuxfoundation.org": [9572], "*.unix4lyfe.org": [17640], "www.sharefile.com": [14908], "y4.hitravel.xyz": [2053], "www.adkontekst.pl": [640], "secure.flickr.com": [6034], "bidtellect.com": [1901], "*.database.com": [4273], "m.amazon.co.uk": [19365], "s.brighthub.com": [2380], "wachtwoord.kuleuven.be": [8969], "chipin.com": [3145], "rostovskaya-obl.beeline.ru": [1801], "planetnetbeans.org": [12283], "dacw.co": [2053], "gimmev.co": [2053], "ubuntu-eu.org": [17374], "southkesteven.firmstep.com": [20125], "tr.apsislead.com": [1180], "catalysts.osu.edu": [11959], "fedoraproject.org": [5843], "nizhegorodskaya-obl.beeline.ru": [1801], "mediadaten.sueddeutsche.de": [15831], "wammo.co.nz": [9079], "aspectsecurity.com": [1306], "passwort.gmx.net": [6467], "www.nervous.io": [11355], "realperson300.net": [12273], "soundonsound.com": [15408], "status.librato.com": [9467], "www.filmlair.com": [5925], "webmail.graasmilk.net": [7005], "www.evermeet.cx": [5554], "asmp.co": [2053], "swisssign.com": [13176], "cdn.webtrends.com": [18467], "nplusonemag.com": [11735], "www.sbrf.ru": [14560], "courtlistener.com": [3789], "dev.otto.de": [12339], "i.kfs.io": [9024], "slfmd.biz": [2053], "secure.sophos.com": [15403], "www.linuxacademy.com": [9578], "t3.qlogo.cn": [13534], "movie4k.tv": [10824], "tjbr.dk": [2053], "*.udmedia.de": [17225], "www.fastcompany.com": [5786], "theinformation.com": [16559], "thewi.uk": [2053], "www.actel.com": [529], "www.meo.pt": [10440], "a.zhng.co": [2053], "*.panasonic.com": [12558], "movie4k.to": [10824], "topceo.co": [2053], "ssl.informatics.uow.edu.au": [17636], "cdn.thomasnet.com": [16644], "on.glowsalon.ca": [2053], "whenwhere.link": [2053], "www.orgreenoptics.com": [12308], "prochur.ch": [2053], "s.masr.me": [2053], "i.urlb.ag": [2053], "scene.org": [8417], "hifx.co.uk": [7527], "a.local.ch": [9697], "l.noornegar.com": [2053], "serverdensity.com": [14858], "bsuk.co": [2053], "www.crowdrise.com": [3898], "secure.itweb.co.za": [7999], "dakar.bz": [2053], "afcea.org": [319], "embeds.vice.com": [17959], "ulti.pro": [2053], "bpcdc.org": [2053], "thad.me": [2053], "www.directbox.eu": [4613], "zakonyprolidi.cz": [19093], "environment-agency.gov.uk": [20047], "yixian.meituan.com": [10405], "mwis.us": [2053], "url.ps4blog.net": [2053], "www.foolz.us": [6125], "cp-vps.rentalserver.jp": [14009], "www2.voterinfo.gov.hk": [21950], "bbc.in": [2053], "inkstars.96.lt": [2053], "poy.nu": [2053], "londontrustmedia.com": [20716], "feedblitz.com": [5848], "error.alibaba.com": [850], "1800quitnow.cancer.gov": [2864], "proof.ly": [2053], "buy.wsj.com": [22058], "aircrack-ng.org": [789], "www.solihull.gov.uk": [15371], "api.qunitjs.com": [13521], "federalfleets.energy.gov": [5355], "lternet.edu": [9257], "l.joress.com": [2053], "studentaid.ed.gov": [4988], "made2measure.next.co.uk": [11552], "www.egenix.com": [19980], "itlogix.io": [2053], "*.freshbooks.com": [6320], "www.walkit.com": [21968], "partnerlocator.trendmicro.eu": [16992], "www.food.gov.uk": [20142], "brickc.it": [2053], "*.bizjournals.com": [16444], "docs.webplatform.org": [18376], "dox.al": [2053], "www.abcm.ch": [2245], "antmy.cc": [2053], "www.panoramio.com": [12571], "ilus.me": [2053], "invstplc.com": [2053], "assets.juicer.io": [8818], "www.gnuradio.org": [6476], "mailman.videolan.org": [17981], "studentportal.strode-college.ac.uk": [15784], "pic.pimg.tw": [12890], "media8.congstar-media.de": [3641], "www.lib.washington.edu": [17577], "q.flate.eu": [2053], "campaign.iwill.org.uk": [20520], "posta.yandex.com.tr": [18954], "trupan.in": [2053], "prochoice.org": [11263], "*.4chan.org": [185], "localradr.co": [2053], "www.lumesse.com": [9827], "channel.alibaba.com": [850], "f-secure.com": [5654], "www.redmondmag.com": [13930], "www.youtube.com.jo": [19016], "brklk.com": [2053], "tfd.bz": [2053], "goplcs.com": [2053], "lodg.it": [2053], "belnet.be": [1821], "gentoo-handbook.lugons.org": [9262], "dns-oarc.net": [4133], "shck.me": [2053], "www.southern-electric.co.uk": [15443], "di.dk": [3631], "lkd.org.tr": [9240], "zerzar.com": [19165], "heg.com": [7646], "imeem.com": [8135], "renegade.co": [2053], "www.wikilov.es": [18595], "living.livingsocial.com": [9679], "www.cabforum.org": [2564], "account.live.com": [9644], "borsa.io": [2053], "ya.ru": [18930], "www.sr.se": [15928], "www.christianbook.com": [3172], "limw.co": [2053], "jegeorge.co": [2053], "mnoy.es": [2053], "alpha.app.net": [1141], "imageshack.*": [8129], "go.nasa.gov": [2053], "ga1a.co": [2053], "investor.gov": [8469], "www.sneakersaddict.com": [21492], "powerhousemuseum.com": [13227], "www.gitter.im": [6806], "www.frascaticafe.nl": [6224], "lks.gd": [2053], "tactic.al": [2053], "kndn.es": [2053], "zilla.cc": [2053], "web2.westlaw.com": [18514], "assets.newscheckmedia.com": [11532], "gefpmis.org": [8408], "wierden.nl": [11324], "www.skm.io": [15162], "ssl.cdngc.net": [2618], "www.python-pillow.org": [12888], "rbs.lib.cuhk.edu.hk": [2747], "canal.uned.es": [17446], "n.rosner.io": [2053], "movelia.es": [10820], "et09.xhcdn.com": [18815], "www.risi.com": [13666], "l.arefsh.me": [2053], "ahmia.fi": [776], "shwymy.co": [2053], "salux.es": [2053], "im.qa.bnymellon.com": [19566], "ltcplan.me": [2053], "*.shutterfly.com": [14999], "mail.live.com": [9644], "secure.skandiabanken.no": [15142], "appinn.me": [1156], "interest.sky.com": [15170], "saamwerk.it": [2053], "neos.eu": [11088], "sc4.rgstatic.net": [13655], "5.darkroom.shortlist.com": [14979], "looktothestars.org": [9759], "coloradocaptures.com": [3505], "tmlive.us": [2053], "vgf.re": [2053], "accounts.bizo.com": [2084], "secure.sitelock.com": [15114], "lexlevinrad.net": [2053], "champssports.com": [3051], "bahn-bkk.de": [1659], "whatssapp.cf": [2053], "sdmedia.link": [2053], "33bits.org": [126], "cryptonator.com": [3952], "www.skrill.com": [15165], "analytics.freepress.net": [6265], "emailmarketing.techxpress.net": [16277], "www.specialforces.com": [15489], "selfservice.peterborough.gov.uk": [12806], "webmail.iu.edu": [8214], "devon.gov.uk": [4509], "support.cumulusnetworks.com": [3990], "dl.fedoraproject.org": [5843], "oct-oeeo.ca": [2053], "scottishpower.co.uk": [14641], "100-gute-gruende.de": [11], "www.alumni.leeds.ac.uk": [17604], "newspr.in": [2053], "research.de.com": [10385], "huntfi.sh": [2053], "www.fatwreck.com": [20100], "emtn.me": [2053], "extra.vc": [2053], "fanboy.co.nz": [5764], "www.mca-marines.org": [9892], "www.spankwire.com": [15466], "mailxchange.1and1.co.uk": [63], "readynas.com": [13852], "aueos.de": [2053], "f.acke.rs": [2053], "www.wolframcdn.com": [18699], "sassets.j2global.com": [8558], "www.utl.pt": [16288], "i.shareasale.com": [14906], "new.aol.com": [361], "www.mbed.org": [10275], "codeweavers.com": [3413], "tag.perfectaudience.com": [12771], "staticstuff.net": [6730], "wavecon.de": [18305], "dedikuoti.lt": [4370], "cacher.dozuki.net": [4827], "www.malcontentsgambit.com": [10085], "semi.payback.pl": [21088], "www.leastfixed.com": [9374], "www.avonandsomerset.police.uk": [1494], "www.vultr.com": [18169], "link.1javad.ir": [2053], "parallel.illinois.edu": [17544], "data.glasgow.gov.uk": [6821], "truste.com": [16111], "surfeasy.com": [15904], "revresponse.com": [14072], "e.rubr.it": [2053], "*.totemapp.com": [16878], "mp.toutiao.com": [16881], "api.snelis.com": [15279], "assets-jpcust.jwpsrv.com": [8855], "dealernavigator.capitalone.com": [2878], "b-europe.com": [14380], "ccrea.tv": [2053], "playlabs.co": [2053], "sbc.anthem.com": [19395], "bitly.qa": [2053], "salm.onl": [2053], "gtgtgt.com": [2053], "opticalli.ng": [2053], "ferroh.com": [5873], "lfr.news": [2053], "gismeteo.ua": [6790], "www.cms.gov": [19742], "freeboard.io": [20161], "www.thalescomminc.com": [16431], "tsherrell.us": [2053], "prepaid-phones.t-mobile.com": [16026], "www.tacoma.uw.edu": [17355], "edinburgh.pirateparty.org.uk": [12930], "fb.zverinice.si": [2053], "s3.netdialog.se": [11413], "comparethemarket.com": [3575], "research.brown.edu": [2421], "umass.edu": [17551], "kazu69.in": [2053], "booking.hillingdon.gov.uk": [7550], "www.trustworthyinternet.org": [17075], "img01.taobaocdn.com": [16207], "static1.startnext.com": [15665], "adv.s8bbs.com": [21352], "www.energystar.gov": [5357], "lider.cc": [2053], "www.ifortuna.sk": [8095], "carbonshar.es": [2053], "mousejack.com": [20832], "netloan.southwark.gov.uk": [15445], "dpcc.me": [2053], "gawkermediagroup.com": [20207], "sofurry.com": [15295], "rewards.sky.com": [15170], "mbrd.ml": [2053], "www.gnu.io": [6473], "rn.accufl.com": [2053], "www.newsmaxhealth.com": [11535], "livecorp.com.au": [9647], "nettica.com": [11445], "accounts.gigaom.com": [6764], "friendster.com": [6336], "gen.us": [2053], "www.mountspace.com": [10809], "alwaysdata.com": [939], "geekevents.org": [6622], "www.cryptocapital.co": [3937], "www.jaspan.com": [8672], "help.5apps.com": [205], "whdy.us": [2053], "www.noreplied.com": [11679], "forte.events": [2053], "preview.npmjs.com": [11737], "www.gchq-careers.co.uk": [6424], "cimjsea.engineering.osu.edu": [11959], "school-of-engineering-faculty-search.mit.edu": [9916], "alt-sheff.org": [912], "www.locality.com": [20707], "www.vectorborne.fralin.vt.edu": [18031], "devel.rtems.org": [13706], "online.dudley.gov.uk": [4890], "www.ip2location.com": [7933], "fmkt.net": [2053], "hotelplan.ch": [7698], "2ch.hk": [109], "liveclicker.com": [9665], "www.jud.ct.gov": [2738], "info56.top": [2053], "www.attic-backup.org": [1374], "mzmg.fr": [2053], "anonsvn.wireshark.org": [18670], "www.webmagazin.de": [18425], "webtraxs.com": [18465], "pizza.fr": [12966], "i.socialrank.com": [15306], "webdesignmarketing.eu": [18397], "www.ssllabs.com": [14416], "*.thecutestsiteontheblock.com": [16448], "l.jamiete.ch": [2053], "zapis.cesa.vutbr.cz": [17814], "airasiamegastore.com": [785], "jdz.meituan.com": [10405], "link.masrur.org": [2053], "www.archos.com": [1209], "go.u.hol.es": [2053], "download.qt-project.org": [13544], "www.acluidaho.org": [16439], "evidcl.co": [2053], "iotne.ws": [2053], "serpdisplay.yandex.com.tr": [18954], "www2.accessedge.com": [19262], "mediamemo.allthingsd.com": [879], "tcast.org": [2053], "ks4.us": [2053], "taskflow-portal.dundeecity.gov.uk": [4897], "n.carhur.com": [2053], "jd2008.jd.com": [8571], "developer.yammer.com": [18952], "firsttechfed.com": [5986], "d.so.city": [2053], "crwd.sc": [2053], "imue.tv": [2053], "libs.iraiser.eu": [8501], "passport.meituan.com": [10405], "*.lelo.com": [9401], "fs.here.com": [7465], "wrkshp.pl": [2053], "dansekapellet.kk.dk": [8883], "source.opennews.org": [12160], "ti.to": [16677], "s.dron.tv": [2053], "srlchf.com": [2053], "liliani.com.br": [9513], "iljmp.com": [8113], "boutique.gemalto.com": [6635], "rgsntl.rgs.cuhk.edu.hk": [2747], "mars.nasa.gov": [11057, 11058], "www.tarlogic.com": [16219], "hands.com": [7321], "agncy.re": [2053], "d.knaack.me": [2053], "joycasino7.com": [20552], "s4ds.in": [2053], "business.bt.com": [1593], "*.hawkhost.com": [7380], "shockmedia.nl": [14956], "siedler25.org": [14065], "mudgum.net": [10874], "box-look.org": [21006, 21007], "crwd.si": [2053], "addons.mozilla.jp": [10844], "velex.htwk-leipzig.de": [7736], "www.phantompeer.com": [12827], "community.gotomeeting.com": [6912], "medway.spydus.co.uk": [21546], "bromley.gov.uk": [2414], "tieto.com": [16707], "passport.cnblogs.com": [19743], "what.jd.com": [8571], "hddls.co": [2053], "xserver.*.jp": [18895], "assets-cdn.github.com": [6801], "acoustics.org": [517], "*.spreadshirt.se": [15552], "life.ru": [20684], "w.index.etc.br": [2053], "math.stanford.edu": [15634], "account.nicovideo.jp": [11584], "bbrains.co": [2053], "wwr.dj": [2053], "teo.lt": [16379], "blog.consumeraffairs.com": [3664], "www.continuousphp.com": [19780], "a.norc.co": [2053], "pressguidance.state.gov": [17345], "secure.suggest.search.sky.com": [15170], "li.iamsarav.com": [2053], "kima.me": [2053], "faq.migros.ch": [10566], "datacamp.com": [4254], "www.ymcmbofficial.com": [18923], "pro.104.com.tw": [18], "corelib.trendmicro.com": [16993], "fighthub.eu": [2053], "sat.sanoma.fi": [14527], "www.gyazo.com": [7165], "cpeople.ru": [19809], "weboolu.com": [18433], "flengyel.com": [2053], "go.t0m.co": [2053], "www.boe.ca.gov": [2566], "matkahuolto.info": [10239], "l2e.info": [2053], "ssl.microsofttranslator.com": [10549], "kfs-prod.adminapps.cornell.edu": [3744], "autodiscover.samfox.wustl.edu": [18290], "nbs.io": [2053], "peng.fish": [2053], "www.renkum.nl": [11324], "docencia.lsi.uned.es": [17446], "techmeme.com": [16284], "isoi.info": [2053], "i.esk.jp": [2053], "www.joycasino10.com": [20552], "gcdn.org": [6423], "thsa.co": [2053], "www.ucat.osu.edu": [11959], "lists.bufferbloat.net": [2460], "ovh.com": [12378], "www.westconsincuhb.org": [18511], "liuhe.meituan.com": [10405], "www.zakonyprolidi.cz": [19093], "www.autorimsandaccessories.com": [1459], "www.tpb-proxy.top": [21771], "enose.jpl.nasa.gov": [11058], "www.dsp.io": [4883], "*.boingohotspot.net": [2235], "cloudwear.com": [3376], "samarbeid.difi.no": [4547], "bdrag.ga": [2053], "fdgtl.co": [2053], "www.carsabi.com": [2924], "ideias.vc": [2053], "discordapp.com": [4629], "aliem.link": [2053], "pictures.vimention.com": [18009], "www.rotlogix.com": [14213], "hcafc.info": [2053], "nc-as-images.apple.com": [1160], "aviation.osu.edu": [11959], "*.eventim.se": [5548], "w.inm.uy": [2053], "www.alternalabs.com": [920], "24.kartal24.com": [2053], "wrk.guru": [2053], "b.blmt.ht": [2053], "etouches.com": [5494], "brmm.ag": [2053], "alpinelinux.org": [909], "www.learnshare.com": [9367], "www.foxitsoftware.com": [6204], "help-en-eu.nike.com": [11595], "ffit.me": [2053], "dpacksupport.dell.com": [4413], "ir.netflix.com": [11421], "icloud.com": [7845], "tyumenskaya-obl.beeline.ru": [1801], "yousend.it": [2053], "account.1and1.co.uk": [63], "www.billycreative.com": [1939], "www.tdconline.se": [16054], "www.ric.org": [13662], "leaz.es": [2053], "www.howtoforge.com": [7719], "www.hmapps.net": [7580], "building.coursera.org": [3788], "learn.polyu.edu.hk": [13116], "www.gannett.cornell.edu": [3744], "kford.pw": [2053], "www.carbonmade.com": [2891], "psocial.eu": [2053], "ems.northlincs.gov.uk": [20928], "searchandpromote.omniture.com": [12002], "www.skandiabanken.no": [15142], "topeka.ccmr.cornell.edu": [3744], "bmc.com": [1567], "dffy.us": [2053], "customs.alibaba.com": [850], "howe.bid": [2053], "foreignaffairs.com": [6143], "cdn.101domain.com": [15], "frascaticafe.nl": [6224], "cesd.illuminateed.com": [20430], "thumb.ccsd.cnrs.fr": [6314], "es.xhamster.com": [18816], "s.lmncdn.com": [9687], "wwwlacie.seagate.com": [14679], "spilnu.dk": [15526], "momentusmedia.com": [10725], "memopol.panoptykon.org": [12570], "to.drrtyr.mx": [2053], "springshare.com": [15564], "wusmhealth.wustl.edu": [18290], "ingobecker.me": [2053], "www.yp4h.osu.edu": [11959], "tbbl.biz": [2053], "url.fatlabs.org": [2053], "litoralver.de": [2053], "www.omnetpp.org": [11835], "rgj.com": [14002], "wiki.greencubes.org": [20281], "lnp.io": [2053], "www.frictionalgames.com": [6328], "lici.la": [2053], "*.englishdefenceleague.net": [5372], "psc.gs": [2053], "trendtv.96.lt": [2053], "mimor.in": [2053], "www.upc-cablecom.ch": [21865], "brntpb.st": [2053], "*.sywcdn.net": [14446], "foxtradez.co": [2053], "tweet.amg22.com": [2053], "landscape.io": [9295], "backlot.ooyala.com": [12099], "ad.adlegend.com": [642], "ucom.osu.edu": [11959], "consultation.eastsussex.gov.uk": [19994], "ro.4.boardgamearena.com": [2219], "*.atsb.gov.au": [1440], "en-es.dict.cc": [4536], "tirerack.com": [16767], "access-kaiseki-tools.com": [482], "hoeringsportalen.dk": [7587], "threattracksecurity.com": [16664], "jolt.es": [2053], "www.clinkle.com": [3328], "www.hiconversion.com": [7526], "alliancebernstein.com": [891], "www.sociomantic.com": [15329], "fastpiratebay.co.uk": [21711], "andrewblum.net": [1040], "www.arts.cornell.edu": [3744], "ebusiness.hangseng.com": [7326], "*.outernet.is": [12356], "kino.1tv.ru": [79], "billie.codes": [2053], "cp.gohsphere.com": [8756], "popads.net": [13129], "nr.tn": [2053], "link.web123.com": [2053], "*.democracyinaction.org": [4432], "jsna.portsmouth.gov.uk": [21175], "www.bath.ac.uk": [17586], "ow.lc": [2053], "www.neobits.com": [11344], "universalsubtitles.org": [17513], "www.jako-o.de": [8643], "up.ppxls.net": [2053], "cassi.uniovi.es": [17479], "api.scratch.mit.edu": [9916], "www.techweekeurope.fr": [11390], "scap.in": [2053], "myunited.com": [2053], "dictation.io": [19915], "sinergie.misy.eu": [4995], "ter.ly": [2053], "impsec.org": [8159], "forum.kinopoisk.ru": [20601], "dsy.mx": [2053], "www.firelady.com": [5977], "t.onthe.io": [12089], "i.fameal.com.ar": [2053], "*.imag.fr": [8123], "lwblog.me": [2053], "nckwt.rs": [2053], "auctionthing.net": [1382], "payment.anthem.com": [19395], "cdn.pcpartpicker.com": [12709], "www.packrafting-store.de": [21063], "rd.rakuten.co.jp": [13768], "wetmo.re": [2053], "www.taskforce.is": [16224], "tinybt.org": [2053], "shop.1and1.co.uk": [63], "gogetssl.com": [6905], "e-cosm2015.engineering.osu.edu": [11959], "i.llbarkat.com": [2053], "knoxsem.org": [2053], "c4tw.net": [2563], "unity.ubuntu.com": [17382], "oceandr.social": [2053], "vdmakeup.com": [2053], "say.ac": [21374], "jkos.ch": [2053], "indianadun.es": [2053], "text2go.de": [2053], "from.rublev.me": [2053], "bengc.me": [2053], "jcore.fr": [8568], "reztrip.com": [14087], "ce.mnch.tk": [2053], "myaccount.nytimes.com": [11189], "*.blogs.nytimes.com": [11189], "fsf.org": [5713], "www.nismonline.org": [11271], "www.panic.com": [12566], "abusix.com": [471], "gulangyu.meituan.com": [10405], "plug.dj": [13044], "emily.gift": [2053], "hopsct.ch": [2053], "efile.fara.gov": [20099], "faq.hosteurope.de": [7660], "realthread.co": [2053], "sanhe.meituan.com": [10405], "hespk.st": [2053], "mobileca.re": [2053], "www.yoyogames.com": [22117], "ripe65.ripe.net": [14128], "www.grouplogic.com": [7095], "link.gyt.hu": [2053], "bimestriel.framapad.org": [6214], "blog.creativecommons.org": [3848], "mobigum.com": [10678], "*.mersenne.org": [10463], "passport.www.lofter.com": [20712], "bbbatt.co": [2053], "rocrsubmissions.ic.nhs.uk": [11102], "full.pr0gramm.com": [21185], "www.edeveloperz.com": [4998], "mundobr.in": [2053], "tmninja.us": [2053], "go.rrb.ro": [2053], "bcarr.us": [2053], "yardim.yandex.com.tr": [18954], "*.tamu.edu": [16415], "www.monmouthshire.gov.uk": [10748], "os-cillation.de": [12318], "mypods.club": [2053], "bizf.us": [2053], "www.mailpile.is": [10056], "ifc.tv": [2053], "s.tkfd.or.jp": [2053], "piwik.ovpn.se": [11887], "wnbr.gr": [2053], "dashboard.opendns.com": [12130], "files.cloudprivacy.net": [3338], "rp.sccassessor.org": [14578], "ovr.li": [2053], "beltcraft.co": [2053], "movc.mx": [2053], "www.adamcod.es": [19285], "public.gamedev.net": [6536], "beautytv.co": [2053], "on.dad.fm": [2053], "to.teamcoco.com": [2053], "heatst.com": [7414], "wp-poc.details.com": [4480], "image.guim.co.uk": [7142], "e0.xhamsterpremiumpass.com": [18817], "magvac.co": [2053], "saltlakeho.me": [2053], "performancehorizon.com": [12779], "blogs.cornell.edu": [3744], "ad-specs.guoshipartners.com": [20298], "7pockets.link": [2053], "www.popsugar.com": [13138], "cn.bing.com": [1949], "www.rankwise.net": [13784], "ssl.palmcoastd.com": [12550], "outnet.co": [2053], "positivessl.com": [13173], "sweetly.xyz": [2053], "vip.115.com": [25], "bk.jd.com": [8571], "enterprise.podomatic.com": [13061], "7headlines.com": [219], "drmh.me": [2053], "tpik.co": [2053], "recruitment.cumbria.gov.uk": [19838], "fatwallet.com": [5807], "cbt.news": [2053], "editorial.rottentomatoes.com": [14214], "gospotted.com": [2053], "imgt5.bdstatic.com": [1662], "mdpt.fr": [2053], "wwp.icq.com": [7837], "fossbazaar.org": [5701], "forums.somethingawful.com": [15379], "www.ctftime.org": [2742], "sccgov.org": [14579], "tas.buzz": [2053], "on.goatcirc.us": [2053], "beamyourscreen.de": [1782], "usni.org": [17324], "s1.hughesnet.com": [7748], "www.myeddebt.com": [9979], "www.icony.com": [8069], "dtou.ch": [2053], "regonline.com": [13957], "alt.fedoraproject.org": [5843], "dadd.io": [2053], "threema.ch": [16668], "www.vcd.org": [17766], "markdubois.me": [2053], "www.switchadhub.com": [15954], "my.ntu.edu.tw": [11160], "www.manlysealifesanctuary.com.au": [10123], "mblx.us": [2053], "www.vodafone.co.nz": [18105], "karriere.rewag.de": [13649], "unk.ai": [2053], "wintotal.de": [18659], "access.redhat.com": [13909], "*.hitbtc.com": [7561], "coag.gov.au": [3771], "tzema.ch": [2053], "neng.im": [2053], "opnstre.am": [2053], "swww.tokbox.com": [16804], "support.panopto.com": [12569], "qzl.link": [2053], "vom.pw": [2053], "*.actonsoftware.com": [526], "account.level3.com": [9426], "www.family.utoronto.ca": [17629], "url.timb.us": [2053], "sfwatch.co": [2053], "bodyworkmovementtherapies.com": [8791], "s.portmann.one": [2053], "pistoncloud.com": [12944], "feedback.115.com": [25], "staticma.de": [2053], "freedomhou.se": [2053], "poslife.me": [2053], "hdd.mx": [2053], "hungry.cat": [2053], "www.youtube.pe": [19016], "simplystamps.com": [15077], "my.ispsystem.com": [7980], "careers.scs.illinois.edu": [17544], "www.youtube.pl": [19016], "mach.us": [2053], "deda.dict.cc": [4536], "t.rw.nu": [2053], "www.youtube.ph": [19016], "b.ldmn.nl": [2053], "m.saint-petersburg.ru": [21357], "www.youtube.pt": [19016], "blog.epa.gov": [5037], "docs.syncthing.net": [15986], "www.youtube.pr": [19016], "powerlinemanmag.com": [13229], "collabora.tv": [2053], "www.getdigital.fr": [6695], "m.mumr.co": [2053], "tldrlegal.com": [16077], "101weiqi.com": [17], "myra.gov": [10968], "prudentbear.com": [13411], "www.crikey.com.au": [3866], "www.jiveon.com": [8734], "tameflow.zone": [2053], "buzzeff.com": [2537], "app.compendium.com": [3580], "*.caradvice.com.au": [2887], "mgtrx.net": [2053], "www.gkg.net": [6454], "www.des.ikea.com": [8108], "www.ohiostatealumni.org": [11963], "www.politie.nl": [11324], "terrie.co": [2053], "lgbtrc.usc.edu": [17564], "u1.qiyipic.com": [20413], "providertalk.com": [13244], "resources.windowsphone.com": [18646], "tj.meituan.com": [10405], "www4.basildon.gov.uk": [19494], "www.cybermill.com": [4046], "seth.tw": [2053], "contact.ofsted.gov.uk": [20985], "irs01.com": [20498], "unibet.com.au": [17464], "trapwi.re": [2053], "irmd.ru": [2053], "appstream.debian.org": [4353], "kmpl.co": [2053], "ssvy.co": [2053], "graasmilk.net": [7005], "us.elsevierhealth.com": [5289], "*.itu.dk": [7986], "store.ppy.sh": [13232], "a.wdym.in": [2053], "www.cantheyseemydick.com": [2850], "www.altinget.dk": [932], "*.theserverexpress.com": [14855], "suburban.nl": [15824], "ausgraben.com": [2053], "s.g-z.one": [2053], "gettext.wesnoth.org": [18500], "apps-planet.mcafee.com": [10282], "idm.upf.edu": [17674], "oxfd.in": [2053], "ssl.fark.com": [5776], "focus.ti.com": [16413], "link.kfsm.com": [2053], "www.news.am": [20900], "search.debian.org": [4353], "*.syncboss.com": [15980], "jonathan.porta.codes": [13160], "twnprm.co": [2053], "mrkd.at": [2053], "test.wandt.us": [2053], "target.zedo.com": [19122], "forum.ovh.ie": [12378], "www.afcyhf.com": [3546], "*.golang.org": [6917], "www.ivarch.com": [8547], "doubleclick.net": [4811], "www.sockshare.com": [15331], "www.anarchistnews.org": [1029], "sho.rten.us": [2053], "www.btcgear.com": [1607], "connect.linaro.org": [9522], "yingcheng.meituan.com": [10405], "forum.librivox.org": [9479], "pop.sfu.ca": [14893], "stat.heiseshop.de": [7428], "ihgmerlin.com": [7884], "www.rent2buy.com.br": [7479], "shop.ws.nl": [2053], "pppr.ch": [2053], "*.pflag.org": [12446], "www.nuimagemedical.com": [11763], "myoptplussecure.com": [11001], "desktop.vip.symantec.com": [15969], "www.livelingua.com": [9662], "donate.greenpeace.org": [7064], "support.untangle.com": [17657], "ebar.ohiobar.org": [11962], "edin.com": [2053], "vim.io": [2053], "online-offshore.lloydstsb.com": [9685], "www-zeuthen.desy.de": [4479], "memcenter.maximintegrated.com": [10261], "www.sparkfun.com": [15471], "l.harryjms.uk": [2053], "www.cefbuilds.com": [2989], "www.cryptonit.net": [3953], "iranne.ws": [2053], "tucowsdomains.com": [17091], "5eh.it": [2053], "rea.link": [2053], "ma.ttmuller.com": [2053], "www.google-melange.com": [6970], "e.huffpost.com": [7744], "hr.919.jp": [2053], "highfidelity.io": [7542], "js-fr.thinksteroids.com": [9904], "www.afsp.org": [968], "mzwrit.es": [2053], "awrld.nl": [2053], "cf.addthis.com": [611], "kanaga.ml": [2053], "*.artinstitutes.edu": [16440], "bruju.la": [2053], "www.xpda.com": [22086], "www.netnewscheck.com": [11392], "cnry.io": [2053], "*.spreadshirt.es": [15552], "socrata.com": [15332], "nflx.it": [2053], "cdn-img.fimfiction.net": [5931], "rubygems-china.oss.aliyuncs.com": [19346], "deusm.com": [4485], "git.leloop.org": [9347], "trackalyzer.com": [16904], "democracy.ipswich.gov.uk": [8499], "knofly.zone": [2053], "vr.se": [17802], "demo.illuminateed.com": [20430], "www.whatismyreferer.com": [22013], "granitephone.com": [15030], "www.sourceconference.com": [15426], "umail.iu.edu": [8214], "btnt.co": [2053], "forms.sophos.com": [15403], "ad.epochtimes.com": [5430], "btobonline.com": [3828], "itdashboard.gov": [8001], "www.omguk.com": [11833], "spn.sr": [17781], "www.national-lottery.co.uk": [11260], "*.adtraxx.de": [681], "lists.cam.ac.uk": [17529], "gozluk.hizlisaat.com": [7574], "townnews365.com": [16889], "nccc.nl": [11323], "maven.alfresco.com": [843], "ssl6.ovh.net": [12378], "www.verkkouutiset.fi": [17922], "www.iter.org": [7992], "a4.itc.cn": [8536], "bugzilla.instantbird.org": [8336], "partitopirata.ch": [12487], "help.gitbook.com": [6794], "cyberleninka.ru": [4045], "guerrillast.at": [2053], "dju.tips": [2053], "soply.co": [2053], "s.parks.today": [2053], "*.subscribenww.com": [11459], "hu.support.tomtom.com": [16812], "join.tv": [8764], "on.spyhi.com": [2053], "system.vovici.com": [18144], "crypteron.com": [3921], "www.pointshound.com": [13077], "go.s1008.ru": [2053], "websitegrowers.com": [18446], "lalone.us": [2053], "cache.gawker.com": [6593], "fsu.navs.me": [2053], "torrentfreak.com": [16851], "nervohn.tk": [2053], "tech-recipes.com": [16263], "ederic.ph": [2053], "beacon.fastly.com": [5803], "historum.co": [2053], "bedis.eu": [1797], "pentesterlab.com": [21105], "osantd.osa.cuhk.edu.hk": [2747], "apps.stanford.edu": [15635], "go.pedrozv.sk": [2053], "cdn.lsistatic.com": [9421], "*.freshmilk.de": [6323], "th.aliexpress.com": [847], "coquillita.co": [2053], "silvertunnel.org": [15048], "umbc.worldcat.org": [18748], "researchport.umd.edu": [17549], "2fa.in": [2053], "tnxt.nl": [2053], "uolcb.co": [2053], "smashfly.com": [15248], "pln.bitcurex.com": [2037], "www.intelrad.com": [8371], "invenio-software.org": [8460], "www.cafemakers.com": [2777], "metapress.org": [10477], "tenvoi.com": [69], "listas.us.es": [17706], "heroes.rsf.org": [13692], "www.map.cam.ac.uk": [17529], "ftp.cryptopp.com": [3957], "www.isidewith.com": [20414], "ipxe.org": [7947], "dongenergy.dk": [4151], "sredneuralsk.beeline.ru": [1801], "go.esport42.fr": [2053], "mavi.me": [2053], "isspix.com": [2053], "r9.mzstatic.com": [1159], "www6.homedepot.com": [7614], "ripe62.ripe.net": [14128], "wiki.tocco.ch": [16797], "home.truelife.com": [17045], "www.immobilienscout24.de": [8153], "whiskeyice.co": [2053], "*.dreamstime.com": [4851], "experiencedays.co.uk": [5616], "tkno.pw": [2053], "polkadb.com": [2053], "chicagodj.co": [2053], "tdwu.eu": [2053], "common-lisp.net": [3549], "s39.cnzz.com": [3391], "willowgarage.com": [18618], "mvp.to": [2053], "apps.fedoraproject.org": [5843], "mdm.portal.srgssr.ch": [21550], "www.pcbsd.org": [12421], "sympa.inria.fr": [8309], "noxa.de": [20940], "www.vpncompare.co.uk": [17792], "www.capitaloneconnect.*": [2877], "jeth.tk": [3597], "gonk.io": [2053], "unbubble.eu": [21849], "tloc.al": [2053], "support.ancestry.com": [1031], "media-cdn.ubuntu-de.org": [17373], "adzn.de": [2053], "*.scoop.it": [14631], "rechnung.hfo-telecom.de": [7187], "www.processing.org": [13348], "otummstore.se": [12341], "tracking.onefeed.co.uk": [12055], "*.care2.com": [2898], "online.vodafone.co.uk": [18106], "jm.meituan.com": [10405], "*.cruisersforum.com": [3903], "content.mkt941.com": [15047], "abc11.tv": [2053], "helpy.ws": [2053], "help.here.com": [7465], "www.myhappyoffice.com": [11022], "www.home.ch": [7609], "iflygo.com": [20261], "codeca.mp": [2053], "compass-ssl.surface.com": [15902], "ehrw.ch": [2053], "signin.thomsonreuters.com": [16650], "x.loxaesmas.org": [2053], "*.zipcloud.com": [8843], "www.tuxedocomputers.com": [17134], "ysis.me": [2053], "metrotransit.org": [10504], "dafz.co": [2053], "parents.williams.edu": [18616], "b2bshop.cinestar.de": [3202], "www.carezone.cz": [2908], "rfnry.org": [2053], "italerts.stanford.edu": [15635], "www.openbsdstore.com": [12120], "cdn.agbr.com": [2053], "mltbx.com": [2053], "www.path-follower.com": [12661], "eoc.empireblue.com": [20033], "blog.coresecurity.com": [3736], "l.fim-live.com": [2053], "forums.aws.amazon.com": [954], "www.telushealth.co": [16364], "images.conferences.wsj.net": [22059], "go.tutum.co": [2053], "en-sq.dict.cc": [4536], "hub.turnkeylinux.org": [17116], "b.agile.co": [2053], "go.webwonder.gr": [2053], "ssldecoder.org": [14415], "www.tum.de": [17099], "on.sports.dj": [2053], "apple.slashdot.org": [15192], "www.wag.com": [21965], "vtna.tk": [2053], "www.blogblog.com": [2160], "lbcga.co": [2053], "www.storify.com": [15752], "*.gametreelinux.com": [6546], "mu.tanx.com": [21661], "*.ou.edu": [11882], "mbav.co": [2053], "dblnc.fm": [2053], "www.suse-art.org": [21006], "sin.tips": [2053], "kvmst.nl": [2053], "qunitjs.com": [13521], "i2.technet.microsoft.com": [10543], "slm-assets3.secondlife.com": [14706], "xbx.lv": [2053], "debg.dict.cc": [4536], "chetverg.navalny.com": [11300], "forgotpassword.login.vu.nl": [17813], "go.hallrecs.com": [2053], "smolenskaya.beeline.ru": [1801], "www.custodianvaults.com.au": [4009], "adk2.com": [638], "insidescience.org": [8317], "tasty.network": [2053], "mail.latino.aol.com": [361], "subscribe.zanesvilletimesrecorder.com": [19100], "wcl.greenparty.org.uk": [7052], "geek.com": [6611], "n17.fyi": [2053], "ir.dbr.fm": [2053], "www.swartzfiles.com": [15934], "developer.companieshouse.gov.uk": [3571], "xoll.eu": [2053], "freecode.club": [20163], "mzstatic.com": [11041], "www.transitionnetwork.org": [16945], "sh.clanmuir.net": [2053], "create.demandstudios.com": [4421], "odb.outbrain.com": [12355], "iii.lib.cuhk.edu.hk": [2747], "bits.zujev.eu": [2053], "*.aktion-deutschland-hilft.de": [809], "tapps.us": [2053], "*.irishbroadband.ie": [8505], "movie2k.nu": [10823], "hhphoto.us": [2053], "tutfist.co": [2053], "homa.ge": [2053], "dropscafe.top": [2053], "*.sarava.org": [14538], "ethicalhacker.net": [5486], "lzno.tk": [2053], "admin.names.co.uk": [11214], "liqr.co": [2053], "wx.qq.com": [13514], "murv.us": [2053], "womensexpova.com": [18707], "login.unizar.es": [17643], "anycommson.wirral.gov.uk": [18672], "lif.sh": [2053], "www.tawk.to": [16233], "www.local.ch": [9697], "www.doublefine.com": [4805], "cp.servercow.de": [14856], "vonwong.co": [2053], "consult.eastsussex.gov.uk": [19994], "hhh.umn.edu": [17554], "appsecute.com": [1174], "doodle.tips": [2053], "rit.wiki": [2053], "us.en.kb.sony.com": [15393], "mutterschaftsgeld.de": [10918], "bsqrd.co": [2053], "www.geekfaeries.fr": [20215], "mydiscussion.gofrugal.com": [6903], "nebrija.com": [11318], "advi.so": [2053], "sparkweb.org.uk": [2053], "betterplace.org": [1881], "spectrum.com": [15497], "www.savannah.vc": [14548], "fcbcentral.me": [2053], "nvxie.taobao.com": [16206], "pte.bz": [2053], "analystone.com": [1026], "acc-stats.web.cern.ch": [2632], "hostedservices.panopto.com": [12569], "thepirategoogle.com": [16494], "go.eset.com": [5463], "ext.re": [2053], "ruby-forum.com": [14250], "www.lotusoriginals.com": [9779], "www.panovski.me": [12573], "go.nsychev.ru": [2053], "joytun.es": [2053], "www.consumer.gov": [3663], "www.takuu-saatio.fi": [16171], "gkcr.de": [2053], "audiothe.me": [2053], "cdn.playwire.com": [13031], "felg.ch": [2053], "*.flite.com": [6044], "verv.mx": [2053], "lists.spdx.org": [14393], "glassdoor.com.au": [20249], "xjobs.brassring.com": [19586], "www.leroyfcpress.com": [9415], "marcrogers.org": [10145], "bit.tai.life": [2053], "yelp.it": [18979], "www.johnshopkins.edu": [8760], "psv.media": [2053], "7m.cl": [2053], "1.ecu.edu.au": [2053], "www.baumglueck.de": [19499], "tigerdirect.com": [16711], "cans.ec": [2053], "a2.itc.cn": [8536], "reviews.reviewboard.org": [14077], "kronis.in": [2053], "loebs.clothing": [2053], "go.mimumimu.net": [2053], "api.ranking.rakuten.co.jp": [13768], "team.enaza.ru": [5332], "l1.de": [2053], "*.readthedocs.io": [13844], "s2.ltrbxd.com": [9424], "malwaretracker.com": [10092], "glry.io": [2053], "www.virtkick.com": [18036], "images.e.debenhams.com": [19884], "cybersecuritychallenge.org.uk": [4027], "go.dcsu.co.uk": [2053], "www.facultydiversity.org": [5741], "bracu.ga": [2053], "piratebayblocked.com": [21215], "fldta.uk": [2053], "postoffice.co.uk": [13181], "hotspot.widsl.de": [18570], "*.njedge.net": [11122], "www.morrisons-corporate.com": [10788], "support.ubnt.com": [17363], "www.spacecraft.digital": [21520], "contentful.com": [3680], "store.corsair.com": [3755], "nvrnet.ru": [20968], "olv.la": [2053], "image2.pubmatic.com": [13422], "scientificamerican.com": [14626], "shortlist.com": [14979], "www.donottrack-doc.com": [4699], "redmine.ruby-lang.org": [14252], "www.fbme.htwk-leipzig.de": [7736], "illnz.link": [2053], "www.simflight.*": [15051], "www.nic.ar": [11106], "estante.tk": [2053], "groupupnow.co": [2053], "trasie.ca": [2053], "www.genesis-technologies.com": [6648], "pub.dreamboxcart.com": [4847], "www.nic.ac": [11574], "howtoforge.de": [7720], "res.smzdm.com": [15263], "two42.co": [2053], "blog.anthonycameron.com": [1104], "mail.1x.com": [59], "www.pentabarf.org": [12753], "media.ztat.net": [19094], "buckngoodti.me": [2053], "arretsurimages.net": [19421], "www.fefe.de": [5857], "www.citrusbyte.com": [3240], "static.seetickets.com": [14790], "katedra.skolaonline.cz": [21471], "ics.ws.hmrc.gov.uk": [7219], "segs.btrll.com": [2376], "bolig.sparebank1.no": [21524], "www.sidn.nl": [14358], "bglove.co": [2053], "gsnccp.org": [2053], "www.sell2uk.co.uk": [21406], "rohieb.name": [14181], "pwc.nz": [2053], "www.craftysyntax.com": [3824], "zwheat.com": [2053], "crossdresser-forum.de": [3887], "www.spyshelter.com": [15576], "bronx.esat.kuleuven.be": [8969], "www.oswatch.net": [11878], "courthousenews.com": [3790], "*.postimage.org": [21179], "htgb.co": [2053], "blog.gradescope.com": [7009], "savoryou.net": [2053], "searx.me": [14692], "visit.pixcept.de": [12952], "effi.org": [5209], "surfl.in": [2053], "southafrica.usembassy.gov": [21879], "flycl.ps": [2053], "nodes.dk": [11649], "sas.com": [14312], "web.nvd.nist.gov": [11240], "www.pythonclock.org": [13502], "pcp.ch": [12708], "www.cryptonomicon.com": [3954], "www.redweb.com": [13934], "apps.splash.riverbed.com": [14140], "cwspod.com": [2751], "reg.cologne-cfd.de": [3500], "www.freecallscanada.co.uk": [20709], "jamendo.com": [8649], "mbrowser.yandex.kz": [18957], "bell-labs.com": [1816], "s.theliel.es": [2053], "dn.com": [4127], "mander.com": [2053], "fb.mljba.fr": [2053], "joycasino5.com": [20552], "touch.news.mail.ru": [10040], "email.visiblebody.com": [18064], "zipf.co": [2053], "icn.ms": [2053], "s3.india.com": [8209], "brx.co": [2053], "1tulatv.ru": [78], "www.assoc-amazon.ca": [1320], "mentalhelp.net": [20780], "www.freegeoip.net": [6295], "rediris.es": [13896], "avc.lu": [2053], "adr.org": [19298], "falcon-uav.com": [5753], "g.ahmad1996.com": [2053], "on.tdev.co": [2053], "go.ft.la": [2053], "sunxi.org": [9561], "portal.walthamforest.gov.uk": [18262], "micampuscompact.org": [10524], "login.oca.ucsc.edu": [17591], "shop.performancealley.com": [12781], "fightforthefuture.org": [5899], "vpstudentsblog.utoronto.ca": [17629], "www.transportation.gov": [16957], "levesoninquiry.org.uk": [9429], "fajit.as": [2053], "www.iatspayments.com": [7816], "www.prisonphonejustice.org": [13304], "tmr.vn": [2053], "www.crypto.cat": [3922], "portal.skolaonline.cz": [21471], "glmrtr.com": [2053], "www.whmcs.com": [18201], "qr2it.us": [2053], "thailand.allianz.com": [19351], "k.kbros.com.br": [2053], "intellipoker.bg": [20472], "mpornpass.com": [10860], "de-sk.dict.cc": [4536], "www.ouaza.com": [12342], "mcmaster.ca": [10288], "www.hosted-ci.com": [20362], "cache.vevo.com": [17773], "quantserve.com": [13571], "reports.adblockplus.org": [601], "abonent.redcom.ru": [21281], "*.manitu.de": [10120], "*.voxcdn.com": [18148], "*.archlinux.org": [1196], "*.llnl.gov": [9335], "www.osgeo.org": [11868], "zun.ms": [2053], "*.ds01.swisscom.com": [15951], "*.itespresso.fr": [11390], "*.data.gov.au": [4259], "download.jabberd.org": [8626], "l.dnetguru.com": [2053], "ru.xhamster.com": [18816], "bgifx.co": [2053], "www.microspot.ch": [3712], "jeffhappe.com": [2053], "momente.migros.ch": [10566], "reddl.es": [2053], "cdn.bootcss.com": [2266], "www.afcd.gov.hk": [7204], "rankingdigitalrights.org": [21253], "thishome.rocks": [2053], "buildxp.deathmask.net": [4344], "*.tlsfun.de": [16785], "vgd.lt": [2053], "secured.leeds.gov.uk": [20653], "www.mongodb.com": [10741], "rnrwheels.com": [13671], "m9.baidu.com": [1661], "go.wilko.ca": [2053], "coub.com": [3765], "huian.meituan.com": [10405], "glas.jp": [2053], "kineticrev.me": [2053], "anthemwtsdc.anthem.com": [19395], "www.sanalmarket.com.tr": [14514], "j2dw.co": [2053], "sido.pw": [2053], "nla.gov.au": [11259], "paste.sh": [12648], "badges.gitter.im": [6806], "www.gratipay.com": [7026], "eff.org": [5007], "blog.vungle.com": [18173], "fixmystreet.com": [6009], "*.mochimedia.com": [10696], "b.tmor.jp": [2053], "a.topzehn.tv": [2053], "*.highqsolutions.com": [7540], "secure.voyage-prive.co.uk": [18151], "*.humpi.at": [7761], "www-cdn.sitescout.com": [15118], "customers.thomsonreuters.com": [16650], "www.scans.io": [14576], "save-notes.com": [14549], "www.journal-news.net": [8790], "www.bitcoinsil.co.il": [2035], "theeroticreview.com": [16488], "mylivechat.com": [10999], "bugs.anwiki.com": [19398], "hmcn.tk": [2053], "www.mozfr.org": [20836], "fiap.me": [2053], "errata.software-univention.de": [17511], "x.gusiev.com": [2053], "vybory.openrussia.org": [12243], "url.oak.is": [2053], "4sqmob.com": [2053], "lvi.re": [2053], "f4a.tv": [2053], "v2cigs.com": [17754], "lung.ca": [2853], "static.horizon.tv": [21865], "static.mydealz.de": [10944], "t2w.io": [2053], "delivery.pbgrd.com": [12705], "aba.re": [2053], "mars.utm.edu": [17628], "www.fylde.gov.uk": [6408], "avale.re": [2053], "l43.it": [2053], "conta.cc": [2053], "conta.co": [2053], "jabber.dk": [8621], "il0veu.cf": [2053], "onelove.im": [2053], "blog.cms.gov": [19742], "www.sourceware.org": [15433], "*.lovelens.ch": [9793], "wrb.uopnet.plymouth.ac.uk": [13055], "healfi.es": [2053], "support.techxpress.net": [16277], "www.t-mobile.co.uk": [16023], "epop.life": [2053], "varon.is": [2053], "scadacs.org": [14324], "short.ax.lt": [2053], "si1.rgstatic.net": [13655], "newclimateforpeace.org": [11494], "www.si.se": [14356], "dhnow.org": [2053], "appres.nav.no": [20878], "www.capita-software.co.uk": [19641], "womenintest.com": [2053], "lo.libreoffice.org": [9471], "link.gurman.mk": [2053], "sockshare.com": [15331], "rscar.in": [2053], "forge.ipsl.jussieu.fr": [8842], "www.csie.org": [2729], "wiki.namecoin.info": [11212], "lets.govda.id": [2053], "build.slashdot.org": [15192], "nismonline.org": [11271], "www.embed.ly": [5299], "northhertfordshire-self.achieveservice.com": [19265], "eu-securem.ikea.com": [8108], "localsaving.co": [2053], "affiliates.websharks-inc.com": [18381], "josh.tw": [2053], "w.leopoly.com": [2053], "go.fontiran.com": [2053], "*.bigstockphoto.com": [1920], "cdn.flipboard.com": [6041], "swww35.glam.com": [6819], "exchange.btcc.com": [2438], "www.dash-player.com": [4239], "www.amnesty-in-bewegung.de": [995], "static.springer.com": [15561], "www.velox-project.eu": [17892], "wauland.de": [18304], "www.amazon.com": [952], "rothaconference.leeds.ac.uk": [17604], "www.gearworkstire.com": [6608], "fsv.link": [2053], "www.comodo.net": [3569], "media.andersonvalleypost.com": [5087], "atheists.org": [1349], "superevr.com": [15883], "www.beej.us": [19512], "www.slipplate.com": [14371], "downthemall.net": [4818], "cdn.dataopedia.com": [4286], "www.vanlanschot.com": [17844], "www.dnscurve.net": [4137], "*.tradenetworks.com": [16912], "trustsealinfo.websecurity.norton.com": [11703], "s24.cnzz.com": [3391], "hie-isolde.web.cern.ch": [2632], "addons.palemoon.org": [12545], "fz.meituan.com": [10405], "www.registryrocket.com": [13970], "www.wholefoodsmarket.com": [18562], "kochava.com": [9102], "www.donate.acs.org": [966], "flightopportunities.nasa.gov": [11058], "recs.richrelevance.com": [14104], "sempervideo.de": [14816], "link.sapatos.no": [2053], "trac.openstreetmap.org": [12177], "*.usnautic.com": [17342], "blog.fastmail.com": [5804], "*.bluecava.com": [2182], "hkyantoyan.com": [7217], "glasscraftexpo.com": [6822], "www.arlanda.se": [1236], "identity.uchicago.edu": [17532], "www.land-der-ideen.de": [9292], "www.mxcursos.com": [9978], "cdn.teads.tv": [16250], "cloud.sagemath.org": [14476], "hey.nl": [2053], "commonplacebooks.com": [3553], "dk.godaddy.com": [6898], "www.ethack.org": [5482], "elderscrollsonline.com": [5247], "aspha.lt": [2053], "www.thesafety.us": [16502], "images4.bovpg.net": [2305], "snacksize.it": [2053], "www.factoryhomesale.com": [5740], "help.scribblelive.com": [14654], "www.papermart.com": [12585], "img1.glassdoor.co.in": [20247], "wifipartners.itsc.cuhk.edu.hk": [2747], "img.thalia.ch": [16433], "chinoise.migros.ch": [10566], "assets.sky.com": [15170], "i-hab.it": [2053], "l.shiney.com": [2053], "taxi.sakh.com": [21360], "atlantis.sk": [1355], "rejseplanen.dk": [13983], "www.teamtailor.com": [16258], "p.aizzard.net": [2053], "www.sss.gov": [17302], "www.trycelery.com": [17079], "dca.xyz": [2053], "xjtacheng.jd.com": [8571], "m.arket.me": [2053], "cockpit.m-budget.migros.ch": [10566], "dbry.uk": [2053], "wander.gl": [2053], "encs.dict.cc": [4536], "paginazero.com.br": [12538], "vikingvpn.com": [18004], "www.awsinsider.net": [413], "balla.cc": [2053], "cdn.ipip.net": [20490], "richmondshire.firmstep.com": [20124], "www.openload.co": [21017], "itservices.webtrends.com": [18467], "txpo.li": [2053], "s.brush-up.jp": [2053], "psg.to": [2053], "k2ne.ws": [2053], "www.digitalegesellschaft.de": [4588], "mongolia.usembassy.gov": [21879], "allshareplay.com": [878], "s.coit.es": [2053], "bulletinmessenger.net": [2474], "www.pokerstarspartners.com": [21163], "ausaid.govspace.gov.au": [6994], "thftrs.co": [2053], "consult.kettering.gov.uk": [9015], "sysstaff.ucsd.edu": [17216], "alexlig.ht": [2053], "www.librivox.org": [9479], "reuffel.de": [21301], "tsprt.co": [2053], "graph.facebook.com": [5733], "prbb.in": [2053], "lnk.ph": [2053], "c.wpimg.pl": [22055], "psprt.mx": [2053], "crdev.us": [2053], "www.theproxypirate.pw": [21709], "blog.golflink.com": [4421], "www.logincasino.com": [20714], "cl1.cc": [2053], "www.daniweb.com": [4219], "lk.redhat.com": [13909], "wya.ttlew.in": [2053], "rabbitporno.com": [13722], "vlrth.co": [2053], "static4.twilio.com": [17152], "www.spdx.org": [14393], "akur.us": [2053], "frkt.in": [2053], "blackpearlpdm.com": [2091], "dwly.eu": [2053], "daniweb.com": [4219], "hkw.de": [7215], "pledgefor.life": [2053], "dscm.fi": [2053], "www.naturalskinshop.com": [11292], "static-cdn.vouchercodes.co.uk": [21952], "discover.aol.com": [361], "janestreet.com": [8659], "beijingguan.jd.com": [8571], "www.mywell-being.com": [10988], "tmblr.co": [16787], "c3noc.net": [2560], "s-id.in": [2053], "emrld.co": [2053], "wepwr.it": [2053], "office.microsoft.com": [10543], "ykurilsk.sakh.com": [21360], "*.dab-bank.de": [4075], "h.fastcompany.net": [5797], "projects.icij.org": [7831], "hashnest.com": [7360], "dpmbappsqa.lowes.com": [9800], "www.weswap.com": [18322], "survey.sans.org": [14310], "iwill.org.uk": [20520], "k6s.me": [2053], "blogs.zoho.jp": [19201], "fixstars.com": [20128], "www.partners.servicenow.com": [14866], "google.com": [6968, 6974, 6975], "www.thebluealliance.com": [16599], "klnyt.us": [2053], "fb.longhand.hu": [2053], "portland.freedesktop.org": [6243], "opyd.net": [2053], "golfdigest.com": [6950], "sapext.www.uprr.com": [21870], "bld.cm": [2053], "blog.bankinter.com": [1694], "go.bantool.com": [2053], "sygi.tk": [2053], "he.com": [7774], "vpn.usainteanne.ca": [21877], "cac.cas.usuhs.edu": [17330], "ppmobileimages.lowes.com": [9800], "businesscare.tdc.dk": [16051], "liberty-human-rights.org.uk": [9459], "noginsk.beeline.ru": [1801], "acs.org": [966], "realtimeboard.com": [21275], "clicklogger.rm.uol.com.br": [17276], "on.civis.ca": [2053], "l.dezaiso.jp": [2053], "www.conferences.uillinois.edu": [17238], "help.crazyegg.com": [3835], "kurilsk.sakh.com": [21360], "cshort.co": [2053], "pokeratl.as": [2053], "secure.rosehosting.com": [14201], "mini.opera.com": [12252], "rdy.to": [2053], "*.kinocheck.de": [20598], "*.eduroam.gr": [7042], "www.schraubenluchs.de": [21381], "www.fasttrack.va.gov": [17297], "kemped.net": [2053], "www2.hsbc.co.uk": [20375], "kino.search.ch": [14684], "consultwebs.com": [3661], "ath.tw": [2053], "payeer.com": [12685], "www.powerbuy.co.th": [13224], "fadhi.la": [2053], "bgevent.in": [2053], "circanews.com": [3213], "intranet.wku.edu": [22039], "circlejtp.me": [2053], "g-wijzer.nl": [2053], "pa.westlancs.gov.uk": [22008], "amigo.mail.ru": [10040], "p0.raasnet.com": [13890], "digitalrights.center": [19921], "kununu.com": [9190], "c.ronz.io": [2053], "www.dpfoc.com": [4829], "enum.ru": [5407], "www.neighbourhoodlink.co.uk": [20885], "www.avira.com": [1489], "www.rmcybernetics.com": [14028], "www.isocpp.org": [7976], "t.teads.tv": [16250], "kwsm.co": [2053], "patreon.thecthulhu.com": [16600], "b.qr.ae": [2053], "legacy.mapillary.com": [10135], "admin.sitelock.com": [15114], "proxy.sh": [13408], "l.ooyala.com": [12099], "res.heraldm.com": [7460], "www.localsearch.ch": [9703], "compass.xbox.com": [18850], "kevinptztos.com": [2053], "joycasino6.com": [20552], "r.9jang.net": [2053], "aclfest.co": [2053], "pogoda.yandex.by": [18953], "si1.twimg.com": [17153], "cashco.co": [2053], "go.cahill.io": [2053], "rcantin.es": [2053], "21.cf": [2053], "paris.mheducation.com": [20790], "zalando.com": [19094], "oulaloum.espiv.net": [20058], "21.co": [85], "www.webento.com": [18412], "pbsz.ebank.cmbchina.com": [2683], "www.changeip.com": [3054], "uktools.aol.co.uk": [360], "secure.stage-gettyimages.com.au": [6741], "extr.tv": [2053], "hungryforchange.tv": [7765], "buyiphone4.apple.com": [1160], "www.flashback.org": [6019], "winpcap.org": [18627], "100experienc.es": [2053], "www.xssposed.org": [18836], "dosequ.is": [2053], "tor.thecthulhu.com": [16600], "mywindo.ws": [2053], "x.wamyers.com": [2053], "forum.bandisoft.com": [1685], "var.thejh.net": [8660], "goligers.travel": [2053], "cdn.zeeagency.com": [19123], "javascriptmvc.com": [8676], "style.com": [15805], "postdocs.stanford.edu": [15634], "pages.uv.es": [17750], "s7.static.hootsuite.com": [7633], "kong.si": [2053], "www.weusecoins.com": [18324], "c4.hitravel.xyz": [2053], "www.kcrw.com": [20584], "go.benjguin.com": [2053], "pyco.co": [2053], "nzyn.at": [2053], "www.spartafx.com": [15474], "form.cz.mbank.eu": [9888], "cf.8it.me": [2053], "h2bc.co": [2053], "www.f.switchadhub.com": [15954], "mysky.sky.com": [15170], "l.icilalune.net": [2053], "contiki-os": [3683], "northwest.greenparty.org.uk": [7052], "register.sky.com": [15170], "eir.cisco.com": [3221], "democracy.kent.gov.uk": [9005], "www.newamerica.org": [11493], "audiko.net": [1394], "artistna.me": [2053], "lists.rtems.org": [13706], "hmnc.nl": [2053], "link.anonima.ru": [2053], "openas.org": [12228], "woobox.com": [18718], "support.linaro.org": [9522], "surf.nl": [14433], "l.jshultz.co": [2053], "r.perl6.com": [2053], "lajob.co": [2053], "vdd.me": [2053], "aof.anadolu.edu.tr": [1025], "vfalun.se": [2053], "anakat.info": [2053], "*.psnt.ebay.eu": [4973], "pjryan.co": [2053], "gradian.info": [2053], "evntsrc.ca": [2053], "w.forteds.com": [2053], "rising.jhu.edu": [16562], "ehengshu-filebucket.oss.aliyuncs.com": [19346], "l.baravalle.com": [2053], "www.womenshealth.de": [18712], "study.bz": [2053], "eresources.jjc.edu": [8587], "s.fxpreview.com": [2053], "lati.in": [2053], "sbill.co": [2053], "www.soe.ucsc.edu": [17591], "qa.coreboot.org": [3737], "s2t2.co": [2053], "process-one.net": [13347], "fahrkarten.bahn.de": [1660], "developer.nike.com": [11595], "sankatyadvisors.com": [14525], "a.badcheese.com": [2053], "support.viber.com": [17956], "www.nyc.gov": [11484], "structuredabstracts.nlm.nih.gov": [11241], "webmail.fastwebhost.com": [5794], "afisha.sakh.com": [21360], "bgrt.co": [2053], "*.codefuel.com": [3429], "givv.co": [2053], "tshirt.bargains": [2053], "fgroa.st": [2053], "hoosie.rs": [2053], "cptr.me": [2053], "cdn.embedly.com": [5302], "registration.fsfe.org": [5714], "www.ilogo.in": [7902], "*.gannettlocal.com": [6572], "patchwork.alpinelinux.org": [909], "moneropool.com": [20822], "on.ufc.com": [2053], "secure.maxcdn.com": [10256], "profiles.nlm.nih.gov": [11241], "nrc.nl": [11145], "www.trellian.com": [16985], "www.hitchhq.com": [7566], "zuva.tk": [2053], "appstore.blackphone.ch": [2100], "troveread.com": [17039], "chp.mn": [2053], "www.nicotine-anonymous.org": [11583], "rtnews.fyi": [2053], "www.revolet.com": [14081], "lurkmore.so": [9838], "portal.isoc.org": [7974], "go.jjfu.com": [2053], "link.kfor.com": [2053], "wjusd.illuminateed.com": [20430], "owine.me": [2053], "unz.fr": [2053], "blogs.secondlife.com": [14706], "evre.me": [2053], "www.newyorkcasual.com": [11543], "cdiari.es": [2053], "sapato.ru": [14534], "dcboee.org": [4087], "croc3.tk": [2053], "*.divide.com": [4669], "desec.io": [19879], "testedthis.com": [2053], "nachtjeweg.nl": [7596], "local.brent.gov.uk": [2358], "go.borealis.cx": [2053], "www.heatmap.me": [7417], "itch.itcher.com": [2053], "blmbra.in": [2053], "link.fox8.com": [2053], "static.quto.ru": [13613], "nmaccl.com": [2053], "*.omeda.com": [11990], "bcin.me": [2053], "cmpg.in": [2053], "www.gamigo.com": [6563], "*.sapato.ru": [14534], "dl.mail.com": [10039], "*.imgix.net": [8145], "packtpub.com": [12524], "gfi.nl": [6437], "z.pnk.fr": [2053], "fperfect.co": [2053], "inpx.it": [2053], "www.services-prefecture.com": [14870], "dk.aliloan.com": [19344], "toptax.co": [2053], "www.nooelec.com": [11664], "gic2.mycdn.me": [11014], "www.funio.com": [6382], "cilo.la": [2053], "www.dxw.com": [4915], "sl-retargeting.adsonar.com": [578], "mirror.datapipe.net": [4289], "js.leadin.com": [20648], "www.kvasir.no": [9201], "ryazan.beeline.ru": [1801], "atent.co": [2053], "www.mondo2000.net": [10731], "delawareonline.com": [4399], "pulpcentral.com": [12508], "reports.instantatlas.com": [20468], "a.spot.ee": [2053], "liu.jo": [2053], "launch.newsinc.com": [11527], "*.pepperjamnetwork.com": [12766], "www.imagecurl.com": [20432], "mujbiz.cz": [10879], "m.taobao.com": [16206], "wfall.in": [2053], "www.kat-de-paris.fr": [8966], "vadino.com": [21891], "www.pac-uk.org": [21059], "origin.www.upc.cz": [17278], "guardiansubscriptions.co.uk": [7132], "hydra.geht.net": [6630], "www.loc.gov": [9690], "premiumissuer.com": [21191], "ucsd.edu": [17216], "l.bebna.de": [2053], "get.koach.tv": [2053], "www.offshore.hsbc.com": [7233], "cdn.webmail.aol.com": [361], "mirror.netcologne.de": [11379], "youversion.com": [19017], "www.sepa.org.uk": [21412], "insit.es": [2053], "mm.taobao.com": [16206], "futures.georgetown.edu": [6668], "*.benefitsweb.com": [1829], "fcj.me": [2053], "www.fatwallet.com": [5807], "yvolve.me": [2053], "w.webguruit.com": [2053], "cdn2.sportxx.ch": [15543], "x.leafcull.com": [2053], "www.eer.ru": [20013], "help.sourcefabric.org": [15429], "rentex.com": [14010], "oag.ca.gov": [2804], "drinkwi.co": [2053], "www.portal-credo.ru": [21174], "www.perimeterinstitute.ca": [21111], "clearclu.es": [2053], "mzd.bz": [2053], "waverley.firmstep.com": [20124], "clbrtr.com": [2053], "www.flixbus.be": [6047], "calsky.com": [2786], "jty.me": [2053], "webmail.atl.earthlink.net": [5106], "hackney.greenparty.org.uk": [7052], "acaf.food.gov.uk": [20142], "on.omd.pt": [2053], "up1.ca": [17667], "penctu.psmd.plymouth.ac.uk": [13055], "bitly.myhaus.us": [2053], "aidswa.lk": [2053], "buildbot.openmpt.org": [12148], "securycast.com": [14780], "s.int.lv": [2053], "planete.mozfr.org": [20836], "mobde3-cmp.tk": [2053], "www.dotultima.com": [4801], "support.formstack.com": [6164], "digitalunion.osu.edu": [11959], "us.markbillingham.com": [20753], "scotpho.nhsnss.scot.nhs.uk": [11102], "alert.wpm.neustar.biz": [11472], "vote.usa.gov": [17307], "gedery.us": [2053], "qlink.me": [2053], "scrambl.is": [14644], "guifi.net": [7138], "www.youneedabudget.com": [19014], "my.intency.com": [8372], "bbcchildreninneed.co.uk": [1539], "centrum.cz": [19674], "m.megamozg.ru": [20775], "bookshop.iseas.edu.sg": [7969], "s.glbimg.com": [6826], "emergency.uic.edu": [17517], "pcbooster.com": [12436], "j1visawaiverrecommendation.state.gov": [17345], "bst2.gismeteo.ru": [6789], "www.oseems.com": [12323], "jorsika.com": [2834], "www.ncwlookup.acs.org": [966], "mcboatco.com": [2053], "www.protecciondelconsumidor.gov": [11267], "fdun.tk": [2053], "www.fb-assets.com": [6320], "fidelity.com": [5889], "*.siosm.fr": [15101], "www.justeat.it": [20565], "mobile.local.ch": [9697], "etltest.decc.gov.uk": [19885], "via.trp.nz": [2053], "ttnk.nyc": [2053], "nrv.io": [2053], "mizz.us": [2053], "mhm.link": [2053], "image.newsru.com": [11539], "www.autosport.com.ru": [19456], "comic-con.org": [3530], "tom.lc": [2053], "*.nbnco.com.au": [11065], "www.ilivid.com": [7901], "olmn.org": [11829], "opnga.ma": [2053], "www.freebsdnews.com": [6238], "researchcompliance.stanford.edu": [15635], "myfolio.kent.ac.uk": [17603], "gss0.baidu.com": [1661], "www.tahetorn.ut.ee": [17347], "asciinema.org": [1282], "www.gloucestershire.police.uk": [6873], "www.conetix.com.au": [3630], "micro.vinilox.eu": [18016], "www.hashcrack.org": [20316], "www.act-on.co.uk": [19266], "www.spideroak.com": [15520], "hg.qwebirc.org": [21246], "ckys.info": [2053], "mdola.co": [2053], "developers.acuityscheduling.com": [543], "amy.wales": [2053], "testu.be": [2053], "labevents.org": [2053], "bounce.io": [2297], "jxadio.us": [2053], "lvw4.marinsoftware.com": [10161], "www.verisign.se": [17915], "www.oxfordcc.co.uk": [21054], "ncbar.org": [11079], "business.americanexpress.com": [972], "okmag.co": [2053], "*.wdfiles.com": [18593], "static.video.sky.com": [15170], "*.policemutual.co.uk": [13088], "shurgardpayment.eu": [14996], "auth.hitbtc.com": [7561], "mall.brands.com.tw": [2339], "all-inkl.*": [865], "thegfrd.com": [2053], "steadfast.net": [15700], "goo.gl": [6972], "etradesbi.onlinesbi.com": [12072], "b.exoly.com": [2053], "afrinic.net": [747], "trac.i2p2.de": [7804], "www.moviemaps.org": [10825], "m.addison.vt.edu": [18031], "customercenter.dynamic1001.eu": [19974], "www.hertz.co.uk": [7510], "*.unvienna.org": [17502], "progllc.com": [13379], "dntdl.xyz": [2053], "shop.ubuntu.com": [17382], "pro.amara.org": [19361], "store-media.nytimes.com": [11189], "halle.co": [2053], "www.crazybump.com": [3836], "dzqun.gtimg.cn": [7120], "koh.ac": [2053], "atitud.es": [2053], "dunkelangst.org": [4898], "videopros.com": [17983], "autodiscover.law.georgetown.edu": [6668], "gentoo-euetib.upc.es": [13119], "canadiandimension.com": [2857], "os.hiig.de": [7198], "global.fncstatic.com": [6203], "help.twitch.tv": [17164], "cren.cc": [2053], "www.listbox.com": [9610], "bracknell-forest-consult.objective.co.uk": [20979], "mheducation.com": [20790], "l.fbml.net": [2053], "www.bkrtx.com": [19549], "www.hertztrucks.com.au": [7475], "dedicatedgaming.com.au": [4369], "pureswe.at": [2053], "applyonline.leeds.ac.uk": [17604], "webassetsi.scea.com": [14327], "www.websitealive4.com": [18445], "www.subscribe.wsj.com": [22058], "leeg.ca": [2053], "widgets.jamendo.com": [8649], "jmh.today": [2053], "cia.gov": [2657], "finte.ch": [2053], "www.reignofgaming.net": [4006], "msfs.georgetown.edu": [6668], "toyne.ws": [2053], "cdn.mail.aol.com": [361], "m.phiong.com": [2053], "factfiles.us": [2053], "jeca.us": [2053], "pappp.net": [12413], "liangshanxian.meituan.com": [10405], "cards.nusextra.co.uk": [20966], "forum.voidlinux.eu": [21942], "custom.search.yahoo.co.jp": [18944], "www.flameeyes.eu": [6015], "shiftboard.com": [14949], "gosc.co": [2053], "sasapo.st": [2053], "kredittkort.sparebank1.no": [21524], "myrednet.ch": [2053], "scn.sr": [2053], "mkk.com.tr": [9921], "*.yandex.ru": [18962], "m.webtrends.com": [18467], "www.warez-bb.org": [18273], "*.ignimgs.com": [7877], "a2.websitealive.com": [18445], "wrtnews.co": [2053], "l.aidp.us": [2053], "creator.zoho.com": [19202], "consejosocial.unizar.es": [17643], "*.franktimis.com": [6219], "surveygizmo.com": [15913], "tv4play.se": [16137], "fb.ykh.be": [2053], "xagasoft.com": [18838], "www.vh1.ro.vutbr.cz": [17814], "orientation.its.sfu.ca": [14893], "static.anidb.net": [1062], "dns-ip.net": [4693], "fonts.voxmedia.com": [21953], "mercola.com": [20782], "um.tdc.no": [16052], "aub13.co": [2053], "beam.stanford.edu": [15635], "www.dpd.co.uk": [19956], "jdxinyi.jd.com": [8571], "www.smashfly.com": [15248], "nerd.cab": [2053], "www.bookit.nl": [7597], "webmail.xmission.com": [18831], "ai-online.com": [1466], "lcrf.org": [2053], "used.ph": [2053], "www.naacpcompanystore.org": [11051], "i.delik.co.id": [2053], "www.lovefilm.*": [9788], "pyd.io": [13496], "btsf.co": [2053], "mth4.co": [2053], "*.chambal.com": [3048], "browser-statistik.de": [2423], "www.unpac.org": [17428], "www.morningstaronline.co.uk": [10782], "sport.rapmag.tv": [2053], "abciview.tv": [2053], "dasp.in": [2053], "www.opengarden.com": [12233], "doc.owncloud.com": [12386], "crlw.co": [2053], "nbrx.us": [2053], "uc.plugz.me": [2053], "secure.studiesabroad.com": [15795], "swatmag.com": [21627], "topfox.co.uk": [16832], "edmsho.ws": [2053], "libcat.dudley.gov.uk": [4891], "resources.bingads.microsoft.com": [10543], "kunshan.meituan.com": [10405], "hbst.cc": [2053], "random.org": [13780], "www.thenewbay.org": [21709], "buildingenergyscore.energy.gov": [5355], "ori.dhhs.gov": [19909], "jobs.gigaom.com": [6764], "photo.trend.az": [21786], "egenix.com": [19980], "rise.re": [2053], "achvd.co": [2053], "www.reparieren.ch": [21908], "www.mwellner.de": [10926], "ert.cern.ch": [2632], "hwlo.link": [2053], "mbpro.us": [2053], "cdn.tvc.ru": [21821], "app.pr0gramm.com": [21185], "acsapps.wku.edu": [22039], "www.openafs.org": [12114], "*.clicktale.com": [3311], "my.swboro.us": [2053], "data.jd.com": [8571], "www.guildford.gov.uk": [20294], "blog.camscanner.com": [19636], "headr.es": [2053], "hrk.me": [2053], "analytics.paste.ee": [12647], "site.douban.com": [4802], "translate.edgecast.com": [5180], "*.mos.org": [10903], "siparistakip.yemeksepeti.com": [18980], "payments.wychavon.gov.uk": [22073], "www.prisma-it.com": [13302], "hsselite.com": [7705], "www.philzimmermann.com": [12832], "virag.si": [18023], "freeoffer.info": [2053], "www.psy.plymouth.ac.uk": [13055], "forums.webnms.com": [18374], "ssm.upickem.net": [17677], "assets.parkerpen.com": [12611], "www.kamchatinfo.com": [20572], "www20.pipni.cz": [12460], "www.selangorku.com": [14808], "nrablog.com": [20944], "apply2jobs.com": [1167], "wiki.zentyal.org": [19149], "smrtl.cl": [2053], "onionshare.org": [12062], "www.avcosystems.com": [19460], "www.festival.london2012.com": [9735], "turtlebay.foreignpolicy.com": [6142], "www.xchatdata.net": [18807], "f.crbb.ru": [2053], "mobile.plugrush.com": [13045], "schlf.fr": [2053], "rep.bz": [2053], "www.mtnafoundation.org": [9966], "rc.ouvaton.coop": [12360], "1fc.koeln": [2053], "ap.lijit.com": [9510], "u.jiceb.net": [2053], "*.www-cse.ucsd.edu": [17215], "smi2.net": [15251], "ref.awmoore.com": [2053], "pix.nl.eu.criteo.net": [3872], "shopkeeper.kagi.com": [8918], "vpncompare.co.uk": [17792], "www.sonyentertainmentnetwork.com": [15398], "*.gaiaonlinehelp.com": [6522], "www.cubecraft.net": [19835], "ll.dyn.cc": [2053], "sfex.news": [2053], "rh.ulaval.ca": [17515], "stitcher.acast.com": [19259], "simplesharebuttons.com": [15069], "www.stopcyberspying.com": [15739], "link.dmbgy.net": [2053], "www.incommon.org": [8180], "zenmate.dk": [19133], "network.zmanda.com": [19198], "shane.ly": [2053], "media4.woolworths.com.au": [18723], "prev.prediction.io": [13249], "srphoto.im": [2053], "ocio.nih.gov": [11241], "openstack.cern.ch": [2632], "www.studentbenefits.ca": [15792], "justin.tv": [17164], "www.perfecthair.ch": [21109], "newsregistry.com": [11515], "www.bo.infn.it": [7913], "www.bluestatedigital.com": [2197], "upmlive.hants.gov.uk": [7328], "url.ienlab.net": [2053], "s129.cnzz.com": [3391], "wiltshire.objective.co.uk": [20979], "www.3v1n0.net": [166], "email.secureserver.net": [14755], "go.cmgenius.com": [2053], "*.wurfljs.com": [18784], "herego.es": [2053], "r.rschu.me": [2053], "agvocate.news": [2053], "status.duo.com": [4900], "u.tinkertry.com": [2053], "bugzilla.penango.com": [12743], "onboardkit.com": [12022], "on.mawqe3.net": [2053], "r.eadnan.com": [2053], "advertising.yandex.kz": [18957], "makerbot.com": [10079], "www.pantelligent.com": [12576], "love.jamies.nz": [2053], "ichi.link": [2053], "www.irtf.org": [7965], "eclipsecon.org": [5150], "brrl.it": [2053], "*.marthastewartweddings.com": [10196], "cdn-1.tribepad.com": [21789], "cas.usuhs.edu": [17330], "js.recurly.com": [13887], "waworld.me": [2053], "biurl.co": [2053], "myfoxdetroit.com": [11512], "haiyan.meituan.com": [10405], "alamy.com": [814], "meli.uz": [2053], "0xacab.org": [9], "mcare.us": [2053], "people.ysu.edu": [19049], "dawa.meituan.com": [10405], "www.crossorigin.me": [19821], "mail.ziggo.nl": [19179], "www.arch.umd.edu": [17549], "lifesafer.me": [2053], "link.mattfox.ca": [2053], "tmf.social": [2053], "solutions.secondstreet.com": [14704], "a.lext.in": [2053], "iioffice.liginc.co.jp": [20686], "blogs.taz.de": [16042], "www.ivegotkids.com": [8549], "review.cyanogenmod.org": [4026], "pliktverket.se": [13038], "sleepjnk.es": [2053], "rdgwy.it": [2053], "link.node.co.nz": [2053], "tdnam.com": [16245], "xyntekinc.com": [18912], "ta2place.me": [2053], "wyzerme.com": [18792], "www.jlist.com": [8589], "link.abrons.com": [2053], "ishopnew.qiwi.ru": [13533], "ozlabs.org": [12402], "a.meipian.cn": [10404], "www.ipsos-mori.com": [8497], "sjsd.illuminateed.com": [20430], "scvhhsauth.sccgov.org": [14579], "logos.visioncriticalpanels.com": [18068], "www.sigaint.org": [21445], "www.commotionwireless.net": [3561], "*.channelme.tv": [3063], "theca.mp": [2053], "sh.chapplin.com": [2053], "forum.t-mobile.nl": [16025], "augu.fr": [2053], "engine.rk.doublepimp.com": [4812], "deutscher-radiopreis.de": [4493], "www.ifca.ai": [8414], "shangcai.meituan.com": [10405], "stage.browsec.com": [19596], "customlocation.here.com": [7465], "bbva.es": [1766], "oener.gy": [2053], "www.esi-group.com": [5058], "i02.i.aliimg.com": [854], "hee.nhs.uk": [11102], "visoa.net": [2053], "common.hao123.com": [7308], "go.dnovelas.com": [2053], "web10.dk": [16180], "www.cs.uni-mainz.de": [17611], "klaw.me": [2053], "packer.io": [12519], "mycarfinance.lloydsbank.com": [9686], "mirg.osu.edu": [11959], "www.fsras.htwk-leipzig.de": [7736], "my.ece.illinois.edu": [17544], "www.domainsbyproxy.com": [4755], "lesroch.es": [2053], "helfer.froscon.de": [6210], "adminmedia.spontex.org": [15538], "ink.inforesist.org": [20457], "ratrap.in": [2053], "www.itslearning.com": [8543], "goget.fund": [2053], "www.voyage-prive.com": [18152], "see.cyberco.de": [2053], "getclouder.com": [6691], "brandaid.it": [2053], "on.variety.com": [2053], "www.mosr.sk": [15217], "www.archive.org": [8419], "jjc.edu": [8587], "wbbmtt.de": [2053], "pepperdine.worldcat.org": [18748], "cfmueller.de": [2757], "insider.thomsonreuters.com": [16650], "www.extratorrent.com": [5637], "kks.link": [2053], "telemetrics.symantec.com": [15969], "tec.hm": [2053], "*.asterisk.org": [1334], "pokemon-world-online.net": [13080], "*.vanityfair.com": [17854], "developer.windows.com": [18642], "ryanin.me": [2053], "roosev.lt": [2053], "www.sunmotors.co.uk": [21606], "bookworm.oreilly.com": [2260], "p4db.freebsd.org": [6237], "rumblegam.es": [2053], "www.pages03.net": [15047], "www.suicidegirls.com": [15840], "sheetmusicplus.com": [14938], "vozpopuli.com": [18156], "www.swale.gov.uk": [21624], "www.provenance.org": [13399], "bit.namecoin.info": [11212], "blog.bandcamp.com": [18730], "*.memecdn.com": [10422], "www.bedfordshireccg.nhs.uk": [11102], "acen.to": [2053], "biapy.fr": [1893], "rags2ri.ch": [2053], "www.hertz.co.nz": [7495], "cdata.browser.360.cn": [130], "*.staples.com": [15640], "zoic.ca": [2053], "usanet.tv": [2053], "ut07.xhcdn.com": [18815], "about.fundinfo.com": [6379], "piflc.xbox.com": [18850], "intranet.dbbs.wustl.edu": [18290], "skch.me": [15148], "www.embeddedarm.com": [5300], "sihui.meituan.com": [10405], "d-id.tk": [2053], "enthr.al": [2053], "schulthess.com": [21382], "nvoice.tk": [2053], "a.quiklink.me": [2053], "bb.lekumo.jp": [20658], "www.cbscorporation.com": [19658], "www.lupport.com": [20727], "akutangulo.es": [2053], "*.qualys.com": [13563], "communities.coverity.com": [3803], "www.ifap.ed.gov": [4988], "nwrk.co": [2053], "www.usalliance.org": [17311], "www.omaze.com": [11988], "jbte.ch": [2053], "ctf-team.vulnhub.com": [18167], "go.mmn.on.ca": [2053], "www.makeshop.jp": [10072], "www.cs.us.es": [17706], "accounts.nice.org.uk": [11110], "stores.houseoffraser.co.uk": [7709], "rbord.es": [2053], "ffa.ro.vutbr.cz": [17814], "assets.levoleague.com": [9435], "sid.libreoffice.org": [9471], "webrtc-experiment.com": [18378], "saratov.rt.ru": [13703], "static.studiegids.tue.nl": [16129], "go.clubt.jp": [2053], "www.outlook.com": [12358], "releases.cpanel.com": [2708], "alterra.be": [2053], "www.dwin1.com": [4169], "coci.io": [2053], "plyr.tv": [2053], "adjust.com": [637], "www.tpb.run": [16493], "gna.li": [2053], "pinkbike.com": [12909], "wiki.openttdcoop.org": [12179], "www1.taxact.com": [16234], "www.familie.nordwest.aok.de": [357], "www.middendrenthe.nl": [11324], "trendmic.ro": [2053], "fivethirtyeight.com": [6008], "zenmate.es": [19133], "home.cisco.com": [3221], "download.freebsd.org": [6237], "js.cdn.static.malwarebytes.org": [10093], "netmarketshare.com": [11389], "ac4g.net": [2053], "www.cwspodmusic.com": [2752], "wayfarer.lifehacker.com": [9492], "gvdc.nl": [2053], "feedback.mendeley.com": [10430], "dgn.co": [2053], "www.publicinsightnetwork.org": [13437], "hml.lsbu.ac.uk": [9252], "www.freshports.org": [6325], "wetanz.com": [18520], "radikale.dk": [13748], "thehill.com": [16556], "tvbrowser.org": [16138], "*.scribol.com": [14657], "piratesbay.pe": [21215], "malware-research.org": [10090], "goave.pt": [2053], "shop.netways.de": [11452], "bln.cc": [2053], "nurse.farm": [2053], "teteny.bme.hu": [1571], "potion.in": [2053], "www.sceper.eu": [14584], "abu.sx": [2053], "tac.ph": [2053], "connect.fca.org.uk": [5670], "piratesbay.pw": [21216], "mttbshm.co": [2053], "www.theaa.com": [16481], "iamo.tech": [2053], "wickedlasers.com": [18577], "www.wit.ai": [18679], "rmpl.me": [2053], "doperap.co": [2053], "strin.gr": [2053], "mobileacs.org": [2053], "yelp.se": [18979], "avira.com": [1489], "it.baffl.es": [2053], "latvian.riga.usembassy.gov": [21879], "duke-energycenter.com": [4893], "uk.norton.com": [11703], "oma.io": [2053], "projects.fruct.org": [5708], "driven.tips": [2053], "digitalpacific.com.au": [4579], "cybel.it": [2053], "btur.co.uk": [2053], "officedepot.com": [11946], "computefest.seas.harvard.edu": [7351], "rkdl.me": [2053], "time.orioninc.com": [12312], "*.windstream.com": [18649], "www.datasheetcatalog.com": [4292], "rma.scea.com": [14327], "annotum.org": [19393], "hello.tokyo": [7435], "img.limango-media.de": [9515], "invenio-demo.cern.ch": [2631], "go.moesubs.com": [2053], "www.privatetunnel.com": [13326], "sprk.li": [2053], "dominical.cc": [2053], "dl3.apk-dl.com": [19403], "svn.postgresqlfr.org": [13199], "bidbubble.com": [1897], "partners.manageengine.com": [10103], "www.g.switchadhub.com": [15954], "img.car.com": [2886], "*.downloadster.net": [4824], "re-x.me": [2053], "mxs.chal.ch": [2053], "excellence.life": [2053], "sslvpn.busfin.ohio-state.edu": [11960], "forum.x-cart.com": [18794], "utop.inria.fr": [8309], "static.brandfolder.com": [2336], "vzls.net": [2053], "assets.iu.edu": [8214], "ngvpn17.nvidia.com": [11174], "analysis.f-secure.com": [5654], "accionistas.walmart.com": [18260], "store4geeks.com": [15748], "library.slashdotmedia.com": [15193], "www.cualbr.com": [3546], "www.americorpsconnect.org": [11279], "partnernet.symantec.com": [15969], "supr.cl": [2053], "community.spiceworks.com": [15517], "*.nrelate.com": [11743], "www.kimberly-clark.com.*": [9042], "liling.meituan.com": [10405], "pastebin.ca": [12653], "url.imageek.ovh": [2053], "www.magellanmodels.com": [10015], "pk.an.de": [1023], "www.theengineroom.org": [16595], "wayskinny.com": [18309], "ens.fyi": [2053], "hkk.de": [7213], "topsi.fi": [2053], "www.asia.elsevierhealth.com": [5289], "www.akbars.ru": [19335], "t.guarva.com.au": [2053], "takeonthegame.com": [21654], "on.dvf.com": [2053], "t.mysns.co": [2053], "go.flip.me": [2053], "www.employeeexpress.gov": [5319], "simch.as": [2053], "csapps.norfolk.gov.uk": [20923], "leadin.com": [20648], "1off.me": [2053], "find.t-mobile.com": [16026], "mobile.agima.ru": [19324], "au.cm.life": [2053], "www.issafrica.org": [7982], "www.tipico.de": [16764], "www.passwordcard.org": [12645], "celsys.io": [2053], "webmail.axboe.dk": [1508], "www.tunnelsup.com": [21813], "www.topiama.com": [16836], "myhr.sydney.edu.au": [21631], "research.chemistry.ohio-state.edu": [11960], "www.unixmen.com": [17642], "tpya.ps": [2053], "drdan.co": [2053], "hmailserver.com": [7222], "lma.unizar.es": [17643], "www.collegebeschermingpersoonsgegevens.nl": [4910], "salaryservice.ieeeusa.org": [7864], "*.kit.edu": [8950], "www.frontlinedefenders.org": [6344], "tronixcomputers.com": [17033], "www.smallnetbuilder.com": [17893], "hayde.es": [2053], "bml.li": [2053], "eprivacy.eu": [20049], "*.neoseeker.com": [11349], "*.blockr.io": [2150], "rtntr.ms": [2053], "bgav.me": [2053], "getsix.in": [2053], "sherlocc1.oxfordcc.co.uk": [21054], "yudis.16mb.com": [2053], "www.cozmedics.com.au": [2701], "www.ecn.ulaval.ca": [17515], "brkg.at": [2053], "lk.stoat.com.br": [2053], "www.fuscia.info": [6389], "www.toppreise.ch": [21757], "art.ufanet.ru": [21836], "nirog.am": [2053], "www.fitbit.com": [6002], "thesanct.us": [2053], "ric.nal.usda.gov": [17495], "extranet.skat.dk": [15144], "freedesktop.org": [6243], "wy.meituan.com": [10405], "london-nano.com": [9737], "bulletin.cern.ch": [2632], "it.luno.be": [2053], "on.fuselab.it": [2053], "www.kat.am": [8965], "assets.red-gate.com": [13892], "people.openmoko.org": [12237], "nat.tg": [2053], "c36.ch": [2053], "showcase-tv.com": [14985], "opensource.osu.edu": [11959], "training.enthought.com": [5401], "earthvpn.com": [19990], "daa.gs": [2053], "www.oracle-base.com": [12282], "9startup.com": [2053], "wltqq.meituan.com": [10405], "t.nscom.jp": [2053], "www.mghocd.org": [9868], "auto.yandex.com.tr": [18954], "businessblog.udacity.com": [17391], "*.wikispooks.com": [18597], "illiad.law.georgetown.edu": [6668], "dfly.in": [2053], "cdn.imagecurl.com": [20432], "gtps.nl": [2053], "elektrostal.beeline.ru": [1801], "solmusica.com": [15354], "mrygrv.co": [2053], "conferences.williams.edu": [18616], "freebsd.org": [6237], "max.jotfor.ms": [8786], "*.caller.com": [2812], "www.tuvdotcom.com": [3692], "cambridge.org": [2826], "gatag.it": [14452], "shifang.meituan.com": [10405], "security.switch.ch": [15952], "s.rchv.us": [2053], "www.thecenterforrights.org": [16521], "www.cscprotectsbrands.com": [3751], "u1.hitravel.xyz": [2053], "members.mayfirst.org": [10266], "ab.ai": [2053], "i.rixv.net": [2053], "archives.sccgov.org": [14579], "*.zenfolio.com": [19142], "webmail.cesky-hosting.cz": [19680], "mmont.es": [2053], "s.mangodev.net": [2053], "www.gsb.stanford.edu": [15635], "skycat.ch": [2053], "candidates.democracyclub.org.uk": [19891], "movil.bbva.es": [1766], "jobs.stacksocial.com": [15615], "szl.io": [2053], "*.chip-kiosk.de": [2652], "huggies.link": [2053], "www.bbc.co.uk": [1538, 19500], "rottnestexpress.com.au": [14216], "aldo.io": [2053], "www.bitchmagazine.org": [2006], "astrakhan.rt.ru": [13703], "subversion.cru.fr": [3900], "ws.amazon.com": [952], "darrenlik.es": [2053], "widgets.amazon.co.jp": [19364], "www.userlike.com": [17728], "dsa.dft.gov.uk": [19908], "api.yamli.com": [18950], "sencha.com": [14820], "go.tapiki.com": [2053], "gbltd.co": [2053], "dscgo.info": [2053], "www.downtownhost.com": [4826], "goldenfrog.com": [6940], "mangolanguages.com": [10115], "tickengo.*": [16680], "whsgd.st": [2053], "buffalo.edu": [17583], "hbrs.co": [2053], "pubmed.gov": [13423], "palada.re": [2053], "cache.tv.qq.com": [13513], "*.cld.me": [3265], "www.redcare.com": [21280], "sondage.leboncoin.fr": [20650], "oronde.me": [2053], "www.criosweb.ro": [3870], "nessie.uihr.uillinois.edu": [17238], "gras.sh": [2053], "www.spdns.de": [14392], "www.nationalserviceresources.org": [11279], "feweb.vu.nl": [17813], "oss.oracle.com": [12284], "www.openrepos.net": [21020], "www.vidble.com": [17973], "mensuel.framapad.org": [6214], "harlandclarkegiftcard.com": [7339], "www.tele-task.de": [16324], "www.yopto.com": [19000], "www.redditbot.com": [21283], "nytm.org": [11177], "uofi.illinois.edu": [17544], "extranet.zg.ch": [21629], "c0re.co": [2053], "thecalmzone.net": [16520], "threema-forum.de": [16667], "www.offcampus.osu.edu": [11959], "office.co.uk": [11941], "www.capris.no": [643], "hway.co": [2053], "a2.formsite.com": [20148], "electroscience.osu.edu": [11959], "godotengine.org": [20263], "4.*.wdfiles.com": [18593], "dal.net": [4077], "static-ssl.businessinsider.com": [2512], "www.theproxybay.pw": [21709], "fgvip.uk": [2053], "go.touchcommerce.com": [16882], "webglobe.sk": [18416], "talam.as": [2053], "precisionmarinetools.com": [13246], "wiki.zarafa.com": [19109], "www.policyalternatives.ca": [21164], "www.ichkoche.at": [8063], "gtec.ly": [2053], "*.www.textbooks.com": [16420], "eofire.co": [2053], "*.ebuyer.com": [5144], "somethingawful.com": [15379], "orrick.websitealive.com": [18445], "www.ahosting.cz": [778], "zoklet.net": [19206], "www.amiga.adage.com": [3829], "earnw.co": [2053], "reg.dtic.mil": [17306], "sws.link": [2053], "supervalu.com": [14432], "www.mysolarcity.com": [15358], "pj.pizza": [2053], "git.devuan.org": [4514], "aus-der-region.migros.ch": [10566], "www.hgi.rub.de": [13712], "www.peelregion.ca": [12722], "wiltshire-consult.objective.co.uk": [20979], "bbfo.to": [2053], "projectslice.com": [15200], "www.dawsonera.com": [4313], "rewards.xbox.com": [18850], "a.laseyne.info": [2053], "braindecoder.com": [2320], "security.wmtransfer.com": [18373], "millie.in": [2053], "cpunks.org": [3816], "cadetnet.gov.au": [2773], "www.truthdig.com": [17078], "www.refer.ly": [13948], "*.internetbs.net": [8424], "www.paymentaccuracy.gov": [12687], "login.advent.com": [693], "mouseflow.com": [10812], "static.car.com": [2886], "dribbble.com": [4855], "duozai.duoshuo.com": [19969], "nmetrics.samsung.com": [14501], "community.bitnami.com": [2062], "bootswatch.com": [2272], "*.onlinecreditcenter6.com": [12079], "pt.verbling.com": [17907], "bostonreview.net": [2290], "aarena.si": [2053], "gatill.com": [2053], "suppliesfordreams.org": [15891, 15892], "tempolibero3.ffs.ch": [15946], "imagecomics.com": [8125], "www.givedirectly.org": [6810], "sspace.cu.cc": [2053], "fapa.edp.pt": [4995], "skews.me": [2053], "4-mn.es": [2053], "metanet.ch": [10487], "aleporte.la": [2053], "gentooquebec.org": [6654], "chrb.co": [2053], "zhouzhuang.meituan.com": [10405], "edume.me": [2053], "www.whosgamingnow.net": [18568], "joew.tech": [2053], "wbm.in": [2053], "list.riseup.net": [14133], "1seculodeenergia.edp.pt": [4995], "tcyt.me": [2053], "qkgf.me": [2053], "bestcovery.com": [1861], "loans.car.com": [2886], "charles-carreon.com": [18730], "cout.ie": [2053], "www.naromax.com": [11226], "customercenter2.dynamic1001.eu": [19974], "frnd.li": [2053], "rebrick.lego.com": [9222], "xperiencedays.com": [18887], "gocol.in": [2053], "a.wpimg.pl": [22055], "javascriptobfuscator.com": [20528], "t1joe.tk": [2053], "*.yelp.my": [18979], "m2.nsimg.net": [11748], "www.fokus.fraunhofer.de": [6230], "member.myshaklee.com": [14899], "sprts.bar": [2053], "onehealthtalk.org": [12048], "gp.se": [6485], "opsmate.com": [12264], "istheinternetonfire.com": [20503], "mttmk.com": [2053], "visitoak.land": [2053], "img.travel.rakuten.co.jp": [13768], "www.seowizard.ru": [14833], "*.raumzeitlabor.de": [13811], "*.onion.ink": [16837], "www.instantpage.me": [8337], "*.zillow.com": [19182], "support.drweb.com": [4879], "support.webgo.de": [18361], "*.sysward.com": [16003], "network23.org": [11457], "*.wso2.com": [18226], "rbl.pw": [2053], "www.7terminals.com": [227], "on.blindchat.gr": [2053], "feedthefuture.gov": [20103], "www.sandstorm.de": [14521], "customz.nustarz.com": [11762], "ltln.es": [2053], "www.selenic.com": [10454], "upmcwp.us": [2053], "www.medicine.wustl.edu": [18290], "colleg.in": [2053], "bcc.re": [2053], "wildflr.ca": [2053], "go.minigrid.com": [2053], "msjc.worldcat.org": [18748], "issuetracker.unity3d.com": [17506], "shasta.vc": [2053], "*.googlecode.com": [6972], "ecos.osu.edu": [11959], "illumos.org": [8119], "l.marganian.com": [2053], "go.cr8.cc": [2053], "f.airtet.in": [2053], "www.freebiblesoftware.com": [6257], "forums.obdev.at": [11894], "portal.mobify.com": [10681], "www.ecrimeresearch.org": [4986], "www.dustin.eu": [4906], "*.ensighten.com": [5388], "sendshowoff.com": [2053], "support.launchrock.com": [17732], "kski.tips": [2053], "myaccount.shaw.ca": [14932], "lffl.me": [2053], "www.debian-administration.org": [4347], "clubs.nra.org": [20942], "flyp.io": [2053], "beran.me": [2053], "ftp.mirrorservice.org": [10638], "reeses.me": [2053], "digitalmars.com": [4576], "music.stanford.edu": [15635], "bviphotovideo.com": [1624], "www.litecoin.info": [9622], "employees.usc.edu": [17564], "perfecthair.ch": [21109], "pasteup.guim.co.uk": [7142], "bitmit.net": [2060], "pingdong.meituan.com": [10405], "lhc-beam-operation-committee.web.cern.ch": [2632], "*.neonmob.com": [11347], "ricoh.com": [14112], "www.bestchange.org": [1856], "www.priv.gc.ca": [13307], "go.gtww.net": [2053], "aspnhts.com": [2053], "neko.im": [11329], "www.barnet.gov.uk": [19487], "members.tip.net.au": [12423], "cht.hm": [2053], "colr.tv": [2053], "www.hants.gov.uk": [7328], "action.amnesty.org.uk": [1009], "www.masterxchange.com": [10219], "zarafa.com": [19109], "my.jolicloud.com": [20547], "selected.jd.com": [8571], "www.couchsurfing.com": [19798], "*.bris.ac.uk": [17587], "capl.es": [2053], "zenmate.lu": [19133], "konto.dagbladet.no": [4184], "www.seacloud.cc": [14676], "re.is": [13644], "www.freepressunlimited.org": [6266], "zenmate.lv": [19133], "znc.bz": [2053], "kcole.com": [2053], "myposte.poste.it": [13192], "streaming-url.tape.tv": [16210], "www.thejournal.ie": [16490], "20.theladbiblegroup.com": [21703], "s.sashag.net": [2053], "meebo.com": [10373], "plymouth.objective.co.uk": [20979], "www.hotfile.com": [7701], "*.blendle.nl": [2121], "ctri.co": [2053], "gentoo-blog.de": [6651], "www.naytev.com": [11306], "fenxiao.taobao.com": [16206], "icw.ink": [2053], "bucklink.xtgem.com": [18899], "www.hosts-file.net": [20365], "asee.osu.edu": [11959], "denmark.usembassy.gov": [21879], "zions.me": [2053], "auth.habrahabr.ru": [7262], "paddle.com": [12528], "shapeshift.io": [14905], "www.source-elements.com": [15417], "he.3.boardgamearena.com": [2219], "jrn.link": [2053], "kro.im": [2053], "i2.services.social.microsoft.com": [10543], "blog.cachethq.io": [2768], "ruggedsoftware.org": [14263], "jobsite.com": [8750], "krtsrc.com": [2053], "bltprf.net": [2053], "www.eiseverywhere.com": [5494], "www.parallax.com": [12595], "jdok.nl": [2053], "internetgovernance.org": [8420], "relate.mit.edu": [9914], "medarbejdersignatur.dk": [10305], "educause.edu": [5197], "freeonline.cf": [2053], "bsptechno.us": [2053], "agedcarecomplaints.govspace.gov.au": [6994], "iget.link": [2053], "craigslist.co.uk": [3826], "cdn.mobclix.com": [10677], "r9q.net": [2053], "home.silentcircle.com": [15031], "bbnk.co": [2053], "fortune.com": [6179], "rimg05.rl0.ru": [14147], "motion-docs.adtile.me": [680], "tidbits.com": [16700], "kb.uaa.alaska.edu": [17519], "rood.sp.nl": [14389], "wiki.xiph.org": [18878], "safeguarding.southwark.gov.uk": [15445], "bucklink.me": [2053], "kum.com": [9186], "useitandsee.com": [5281], "www.westyorkshireobservatory.org": [18510], "cmnf.engineering.osu.edu": [11959], "moje.zuno.cz": [19077], "*.posthaven.com": [13201], "www.test.de": [21681], "ftb.click": [2053], "gfi-italia.com": [6436], "billing.metartnetwork.com": [10473], "dict.cc": [4536], "mycampina.com": [2842], "www.cases.legal": [19653], "email.wustl.edu": [18290], "asfera.info": [19434], "bia.me": [2053], "secure-js.adsonar.com": [578], "kobo.com": [9101], "*.cwru.edu": [2933], "forms.bostonfed.org": [19576], "linqu.meituan.com": [10405], "a.dmdm.online": [2053], "iubenda.com": [8544], "sltxwx.com": [2053], "marketwire.com": [10186], "dmnt.ir": [2053], "sc2.rgstatic.net": [13655], "www.joinus.today": [8766], "thesoup.tv": [2053], "tamas.ws": [2053], "*.lp0.eu": [9803], "s85.cnzz.com": [3391], "www.firsts.com": [5995], "sprig.ht": [2053], "bit.kenh12.com": [2053], "opshopweek.info": [2053], "tpr.ly": [2053], "shark.douyucdn.cn": [4813], "www.klick2contactsales.com": [20609], "forum.mapillary.com": [10135], "patches.ubuntu.com": [17382], "www.dma.org.uk": [4606], "manage.my.t-mobile.com": [16026], "touge.me": [2053], "mandalay.lv": [2053], "ffc.im": [2053], "mobile.yandex.com.ua": [18955], "thesyp.com": [2053], "www-sandbox.buttercoin.com": [2521], "emsonline.somerset.gov.uk": [15376], "video.regjeringen.no": [13972], "dai.alibaba.com": [850], "digitale-gesellschaft.ch": [19920], "searchlock.com": [21394], "www.questioncopyright.org": [13586], "postsuisseid.ch": [13176], "www.lurkmore.to": [9838], "moodle.strode-college.ac.uk": [15784], "static1.sockshare.com": [15331], "stats.bbc.co.uk": [1538], "bpa.gov": [2251], "aeso.sytes.net": [2053], "nzz.to": [2053], "heywi.re": [2053], "go.gfpoint.com": [2053], "esenshop.net": [2053], "chisel.eecs.berkeley.edu": [17526], "shop.freertos.org": [6246], "cmt.osu.edu": [11959], "bokborgen.se": [2236], "tflig.ht": [2053], "paraguay.usembassy.gov": [21879], "www.cloudproven.net": [3360], "hdchalleng.es": [2053], "www.lookout.com": [9764], "*.m.poczta.home.pl": [7610], "subversion.automattic.com": [1465], "klwr.nl": [2053], "hiscreviews.com": [2053], "regmovi.es": [2053], "crm.zoho.com": [19202], "zebra.dog": [2053], "podcasts.it.ox.ac.uk": [17557], "l.tomprice.ca": [2053], "snapengage-1.wpengine.netdna-cdn.com": [15273], "isca.pe": [2053], "to3.si": [2053], "drwho.virtadpt.net": [4880], "atypon.com": [1378], "w17m.com": [2053], "denpa.moe": [4446], "mapw.biz": [2053], "nola.red": [2053], "videos.mtvnn.com": [17953], "l1.51fanli.net": [198], "www.d0wn.biz": [4070], "www.ntu.ac.uk": [11161], "adfs.leeds.ac.uk": [17604], "sn.lut.nu": [2053], "www.rcfp.org": [13637], "firefox.net.cn": [5975], "share.aw": [2053], "tif.li": [2053], "service.maxymiser.net": [10264], "stkgrp.com": [2053], "moskovskaya-obl.beeline.ru": [1801], "www.socialdemocrats.ie": [21497], "hartz.us": [2053], "neverddos.com": [11477], "content.esupport.sony.com": [15393], "pqa.mheducation.com": [20790], "rd.redpepper.ws": [2053], "l0.51fanli.net": [198], "dialog.filepicker.io": [5916], "sokr.org": [2053], "*.optorb.com": [12279], "www.rettighedsalliancen.dk": [14064], "url.gray365.com": [2053], "help.eset.com": [5463], "*.dafont.com": [4180], "passtech.us": [2053], "citrixonline.com": [3238], "mbcc.me": [2053], "hurl.it": [20397], "edition.mondediplo.com": [10729], "wjax.tv": [2053], "lists.nasa.gov": [11058], "bitvps.com": [2011], "on.hwnair.com": [2053], "short.noip.me": [2053], "metrika.yandex.com.tr": [18954], "on.searchlr.net": [2053], "edapt.co": [2053], "hmbt.co": [2053], "whyopencomputing.com": [22021], "www.chathamhouse.org": [3091], "www.websitegrowers.com": [18446], "cdn.thinglink.me": [16624], "fr.cryptonator.com": [3952], "e-pages.dk": [4956], "flashgot.net": [6018], "swns.us": [2053], "ubfoundation.buffalo.edu": [17583], "listman.redhat.com": [13909], "lwise.us": [2053], "grew.al": [2053], "dcv.cc": [2053], "carestream.com": [2907], "ntrc8.us": [2053], "info.ambervalley.gov.uk": [19375], "eigenlab.org": [20020], "www.btsport.com": [1617], "ps3media.ign.com": [7877], "eadmissions.westsussex.gov.uk": [18507], "heteml.jp": [7514], "papaya.link": [2053], "avh.me.uk": [2053], "bbbiz.co": [2053], "api-read.facebook.com": [5733], "www.keep2share.cc": [8858], "helpfiles.thepensionsregulator.gov.uk": [21708], "filler.coinjar.com": [3461], "warthunder.com": [21976], "sh.yeahokay.ca": [2053], "www.pdfreaders.org": [12713], "wrwr.co": [2053], "googleartproject.com": [6961], "bp.specificclick.net": [15493], "on.wlbz2.com": [2053], "poyang.meituan.com": [10405], "cerbuna.unizar.es": [17643], "s3.pstatp.com": [16881], "dor.stanford.edu": [15635], "hs-ws1.oracle.com": [12284], "759425240.r.cdn77.net": [18911], "www.insure-systems.co.uk": [4523], "diff.smartadserver.com": [15228], "go.bigidea.ws": [2053], "www.chronicle-store.com": [3181], "zbolan.tk": [2053], "pixel.rubiconproject.com": [14247], "www.c-base.org": [2550], "giveto.osu.edu": [11959], "press.kaspersky.com": [8958], "wiki.openjdk.java.net": [8673], "cli.linksynergy.com": [9543], "*.citizen.org": [13436], "www.oiss.wustl.edu": [18290], "dkq.me": [2053], "otg1.us": [2053], "i5.buimg.com": [16704], "www.latam.citibank.com": [3230], "www.pashm.com": [12631], "a.academia-assets.com": [474], "a.collective-media.net": [3485], "svnt.co": [2053], "icewarp.com": [8058], "pl.avm.de": [1493], "usr.mn": [2053], "*.hexonet.net": [7520], "mysymantec.symantec.com": [15969], "uk.4.boardgamearena.com": [2219], "img.buzzfeed.com": [2531], "fraunhofer.de": [6230], "mmoga.de": [9930], "thepiratebay.unblocked.host": [21217], "training.github.com": [6801], "cakedecmag.uk": [2053], "sevn.la": [2053], "atsec.com": [1368], "explorer.namecoin.info": [11212], "www.simplybusiness.co.uk": [15078], "www.itradecimb.com.sg": [2664], "pt.mondediplo.com": [10729], "hiu.worldcat.org": [18748], "cnn.it": [2053], "www.aisec.fraunhofer.de": [6230], "cdn.viaduct.io": [17954], "www.oboom.com": [20980], "2600.com": [98], "insightexpressai.com": [8322], "tendering.dongenergy.com": [4151], "sacredcrystalsingingbowls.com": [3963], "glennga.be": [2053], "static2.boligportal.dk": [2244], "thd90.com": [2053], "joomag.com": [8774], "01.imgmini.eastday.com": [5119], "spideroak.com": [15520], "adserver.goldenline.pl": [6941], "xtube.com": [18905], "widgets.getpocket.com": [6702], "apt528.co": [2053], "ned.nih.gov": [11241], "visitsl.info": [2053], "macq.it": [2053], "rewild.in": [2053], "aiasurety.com": [328], "rossierstudents.usc.edu": [17564], "observium.org": [11905], "www.fastshoppingcart.com": [13590], "www.onsalesit.com": [12083], "blogs.norman.com": [11684], "www.fallout4.com": [5756], "lxcnn.eu": [2053], "on.qumbr.com": [2053], "www.dyndns.berlin": [4920], "gitpri.me": [2053], "gor.environment-agency.gov.uk": [20047], "shop.dd-wrt.com": [4092], "treasury.gov": [16980], "www.influencersconference.com": [8247], "s.x100500.ru": [2053], "thwskr.com": [2053], "my.sec.fail": [2053], "*.partipirate.ch": [12487], "gpo.iitb.ac.in": [7891], "vonage.co.uk": [18133], "acvsha.re": [2053], "*.toonpool.com": [16826], "politik.fm": [2053], "freesmall.org": [2053], "scontent-b.igcdn.com": [8099], "notalwayslearning.com": [20931], "www.cardcash.com": [2893], "www.klibert.pl": [9083], "mvzj.nl": [2053], "p1.zdassets.com": [19121], "ma-pl.es": [2053], "cuckoosandbox.org": [19837], "hir.ee": [2053], "autola.ws": [2053], "q8car.com": [13507], "central-america.hivos.org": [7573], "transfer.srgssr.ch": [21550], "shoppingcart.aliexpress.com": [847], "gfx.nrk.no": [11744], "www.jianguoyun.com": [8715], "www10.pipni.cz": [12460], "vtl.life": [2053], "th.norton.com": [11703], "linsrv101.linuxcontrolpanel.co.uk": [9586], "desk.lezhin.com": [20672], "*.spoonful.com": [15539], "home.nra.org": [20943], "api.paydirekt.de": [12684], "riki.wha.la": [2053], "dot.isawo.xyz": [2053], "compasscard.ca": [3579], "webpier.at": [2053], "portal.clickandpledge.com": [3314], "sympathy.legacy.com": [9384], "www.passwd.hu": [12641], "sns.isc.org": [7966], "mixpo.co": [2053], "pipe.li": [2053], "bagazos.com": [2053], "craigslist.org": [3827], "bulletin.engineering.columbia.edu": [3512], "cryptothrift.com": [3935], "hostingso.lu": [2053], "tp4.sinaimg.cn": [15091], "yz.meituan.com": [10405], "yfan.tv": [2053], "lists.itnog.it": [8007], "www.cltglobal.com": [2681], "envirostyles.ca": [5411], "libappprod1.stanford.edu": [15635], "www.janhendrikpeters.de": [8657], "www.icg.isy.liu.se": [9238], "toysarmy.co": [2053], "bite.lt": [2041], "www.mpetroff.net": [10247], "therd.co": [2053], "rubicondev.com": [14248], "p6.raasnet.com": [13890], "memberservices.beunlimited.co.uk": [16331], "info.ecosia.org": [5164], "www.segment.io": [14802], "www.rigb.org": [14227], "top10supps.com": [2053], "like.iwantmyname.com": [20517], "vgm.gr": [2053], "jdi.sidakova.cz": [2053], "upatient.com": [17288], "www.xplosion.de": [18888], "l.juno.is": [2053], "sg.norton.com": [11703], "*.usf.edu": [17561], "stumble-upon.com": [15799], "pr.netflix.com": [11421], "welcome.webmaker.org": [10852], "keskustelut.piraattipuolue.fi": [21128], "community.zarafa.com": [19109], "www.packetstatic.com": [12521], "www.888voip.com": [232], "www.davidtisch.com": [4302], "idmsa.apple.com": [1160], "vpsboard.com": [18158], "hrservices.plymouth.ac.uk": [13055], "zboe.be": [2053], "drugstore.com": [4875], "client.pritunl.com": [13305], "sd3.jalan.net": [2053], "r.ridesharp.co": [2053], "www.1lotstp.com": [54], "autodiscover.coverity.com": [3803], "gsfc.org": [6504], "cnt.in": [2053], "*.alaskaair.com": [817], "s.seedprod.com": [2053], "genode.org": [20222], "linuxdistrocommunity.com": [9581], "wiki.piraattipuolue.fi": [21128], "*.actblue.com": [528], "assets.crucial.fr": [3902], "api.artsy.net": [1270], "presn.cc": [2053], "lansstyrelsen.tdconline.se": [16054], "steamid.eu": [15708], "www.mediaarea.net": [10320], "energy.ch": [20040], "*.lansquared.com": [9217], "resources.captora.com": [19643], "mail.fsfeurope.org": [5715], "f41.link": [2053], "readthedocs.org": [13844], "myaccount.dedicatedgaming.com.au": [4369], "s.bitomule.com": [2053], "jihlava.idnes.cz": [20425], "s.regot.co": [2053], "sc1.maps.live.com": [9644], "forums.gpgauth.org": [7003], "www2.taxact.com": [16234], "eon.law.harvard.edu": [7351], "www.eis.kent.gov.uk": [9005], "*.nine.ch": [11606], "beeron.us": [2053], "eliotsocietyvolunteer.wustl.edu": [18290], "www.wimp.no": [18573], "tjanster.idg.se": [7852], "www.bitcoinpool.com": [2019], "forums.oracle.com": [12284], "url.oradba.ch": [2053], "rhi.io": [2053], "www.familie.aok.de": [357], "collis.in": [2053], "www.*.uidaho.edu": [17543], "motherless.com": [10797], "ssn.uillinois.edu": [17238], "ocurl.no": [2053], "mrqt.nl": [2053], "dns.lc.wix.com": [18684], "mostyn.co": [2053], "secure.me": [14732], "www.mediamath.com": [10323], "chdir.org": [3096], "meebey.net": [10372], "sirrix.com": [15106], "dav.dropdav.com": [4863], "hub.united.com": [17498], "blog.tropo.com": [17035], "web.projectdev.org": [21208], "www.secur1ty.com": [14720], "3.darkroom.shortlist.com": [14979], "static-cdn1.ustream.tv": [17743], "weekendjeweg.nl": [7597], "www.dogsbodyhosting.net": [4723], "www.sussan.com.au": [15919], "quran-online.ru": [21245], "data.115.com": [25], "s.tripmii.com": [2053], "multiplayer.unity3d.com": [17506], "perq.us": [2053], "slides.ly": [2053], "arce.intecca.uned.es": [17446], "link.jwilde.me": [2053], "*.www.cloudhexa.com": [3365], "conv.indeed.com": [8200], "jp.msn.com": [9961], "e8.io": [2053], "pen-testing.sans.org": [14310], "mulesoft.com": [10880], "help-es-la.nike.com": [11595], "www.anyfi.net": [1119], "www.geektechlabs.com": [6620], "supportforums.cisco.com": [3221], "investor.activisionblizzard.com": [542], "www.adroll.com": [575], "prz.us": [2053], "twitter.freifunk.net": [6311], "manage.norton.com": [11703], "adk.kay.my": [2053], "chip-digital.de": [2651], "store.checkpoint.com": [3106], "womenonwaves.org": [18709], "unblocked.red": [17434], "www.makewebeasy.com": [10081], "img2.picload.org": [12873], "plyby.nl": [2053], "www.thetfp.com": [16582], "img.en25.com": [5329], "huabei.alipay.com": [857], "ses.ac": [2053], "*.manufrog.com": [10128], "tydenik.echo24.cz": [20003], "api.opencorporates.com": [12129], "evk.onl": [2053], "boposta.bo.infn.it": [7913], "squareup.com": [15580], "remit.onlinesbi.com": [12072], "geant3.archive.geant.net": [6430], "vicf.fr": [2053], "ua.zenmate.com": [19133], "www.media5.com": [20766], "contact-privacy.com": [17092], "tfrankli.me": [2053], "www.southglos.gov.uk": [15438], "medicai.de": [2053], "www.community.mcafee.com": [10282], "www.podseed.org": [13070], "www.securelime.com": [14747], "othr.in": [2053], "webassetsa.scea.com": [14327], "kolpino.beeline.ru": [1801], "newsl.zalando.de": [19094], "easily.co.uk": [5111], "www2.glam.com": [6819], "www.qz.com": [13618], "play.itunes.apple.com": [1160], "clevelandclinicmeded.com": [3295], "en.mtmei18n.com": [10378], "mgg.mm.my": [2053], "trafficshop.com": [16921], "webappl.web.sh.se": [14352], "x.johndo.de": [2053], "s134.cnzz.com": [3391], "pxlrmpg.com": [2053], "p.paramore.me": [2053], "focaljet.com": [6090], "www.alldaycalm.com": [885], "engin.cf.ac.uk": [2895], "android.com": [1045], "tip4commit.com": [16763], "static1.meetupstatic.com": [10386], "s.kis.ro": [2053], "hiq.bz": [2053], "forum.paradoxplaza.com": [12591], "www.c-spanvideo.org": [2552], "slashdotmedia.com": [15193], "coinwallet.eu": [3464], "q8ne.ws": [2053], "sdilej.cz": [14673], "huit.harvard.edu": [7351], "accesspiratebay.com": [21709], "fge.me": [2053], "wawf.org": [2053], "red.jd.com": [8571], "www.aktiiviraha.fi": [7317], "digital.cabinetoffice.gov.uk": [2760], "connect.facebook.com": [5733], "thehub.thomsonreuters.com": [16650], "phoenix.com": [12844], "flixbus.at": [6047], "www.searchmarketingexpo.com": [16635], "sadimt.co": [2053], "cdn.taboolasyndication.com": [16154], "linux42.org": [21006, 21007], "talentopoly.com": [16176], "www.lps.ruhr-uni-bochum.de": [14266], "frozentux.net": [6351], "www.jdi.na.vutbr.cz": [17814], "diveb.uz": [2053], "rule.taobao.com": [16206], "*.zacks.com": [19086], "www.vas-hosting.cz": [21896], "valiant.one": [2053], "si.dery.me": [2053], "*.mail.live.com": [9644], "www.uber.com": [17368], "snap.nal.usda.gov": [17495], "www.myfoxdetroit.com": [11512], "talentsource.udacity.com": [17392], "l.coset.co": [2053], "webdav.cubby.com": [3980], "*.disneyinternational.com": [4652], "ywa.ms": [2053], "superteacherworksheets.com": [15878], "lobby.tools": [2053], "l.cidverse.com": [2053], "forums.shutterfly.com": [14998], "tcf.im": [2053], "portal.webgility.com": [18415], "rus.gogetssl.com": [6905], "www.skolaonline.cz": [21471], "adbutler.com": [557], "fuzzing-project.org": [6403], "sbridal.us": [2053], "kimsufi.com": [9045], "forum.sv.no": [14437], "planauskunft.swm.de": [14444], "gcmprm.oracle.com": [12284], "bydavidwittig.com": [2542], "proxfree.com": [13402], "jianyang.meituan.com": [10405], "www.arkane-studios.com": [1234], "fresha.es": [2053], "barnet.gov.uk": [19487], "newarrivals.fyi": [2053], "institute.lds.org": [16485], "st.ipad.ly": [2053], "klp.li": [2053], "eso.massyx.de": [2053], "kspr.me": [2053], "cdn.wwwpromoter.com": [22071], "rmkrcm.com": [2053], "1300.me": [2053], "*.hddn.com": [11380], "openkeychain.org": [12236], "belgorodskaya-obl.beeline.ru": [1801], "wms-na.assoc-amazon.com": [1323], "nclud.me": [2053], "syndication.theguardian.com": [16554], "voxcinemas.info": [2053], "parship.kurier.at": [9194], "fashde.co": [2053], "on.22ndcm.com": [2053], "cabinet.pogamay.ru": [13072], "discountti.re": [2053], "downloads.chef.io": [3115], "mybitly.uk.to": [2053], "www.uslaw.link": [17737], "spreadshirt.ch": [15552], "heatherhas.info": [2053], "dsorg.us": [2053], "slrs.co": [2053], "cryptovpn.com": [3936], "my.rmfa.cc": [2053], "misolde.com": [2053], "labs.ripe.net": [14128], "*.media.ipcdigital.co.uk": [7937], "alumni.leeds.ac.uk": [17604], "smart.cr": [2053], "styrk.in": [2053], "www.pornhublive.com": [13154], "cho.lt": [2053], "testclever.ly": [2053], "www.phpnet.org": [12454], "www.deepin.org": [4380], "bitcoinized.com": [2053], "ty.meituan.com": [10405], "prbdn.de": [2053], "people.mit.edu": [9914], "trendmicro.com": [16993], "*.gdata.pl": [6410], "wiis.co": [2053], "www.socialcodedev.com": [15311], "anand.im": [2053], "lgno.me": [2053], "*.lovelens.li": [9793], "www.chrdnet.com": [19710], "fodor.it": [2053], "www.thebay.space": [21217], "gocho.tk": [2053], "hr.harvard.edu": [7351], "keywork.me": [2053], "l.duyetdev.com": [2053], "t.tuki.info": [2053], "yoly.tips": [2053], "fn.gl": [2053], "rf.osu.edu": [11959], "gamestop.com": [6545], "g2crowd.com": [6412], "datavis.ch": [2053], "talklondon.london.gov.uk": [9741], "webmail.verizon.com": [17918], "pt.calameo.com": [2790], "jack.ml": [2053], "www.startmail.com": [15663], "collegeinfogeek.com": [19755], "url-2.com": [2053], "mitchell.pr": [2053], "csvcus.homeaway.com": [20351], "pantelligent.com": [12576], "codecoon.com": [3425], "nmllr.de": [2053], "2eet.co": [2053], "glbe.co": [2053], "intertru.st": [2053], "donate.rsf.org": [14018], "exchange.plymouth.ac.uk": [13055], "*.hkyantoyan.com": [7216], "statcounter.com": [15670], "www.web.de": [18347], "*.i.blip.tv": [2133], "v0g.prod-e.web.apps.uprr.com": [21870], "*.planetdiscover.com": [12984], "lessthan3.com": [9417], "noyes.me": [2053], "shp.hm": [2053], "www.cue.me": [3983], "*.baylor.edu": [1754], "www.anybeat.com": [1117], "acrylicwifi.com": [525], "chenghai.meituan.com": [10405], "download.fir.im": [20123], "kenai.com": [8999], "www.medwatch.dk": [10304], "www.t-mobile.nl": [16025], "edge.navs.me": [2053], "lists.xen.org": [22080], "www.mtna.org": [9965], "*.unc.edu": [17263], "egg.com": [5213], "delegated.osu.edu": [11959], "bugzilla.openvz.org": [12189], "nomadesk.com": [11657], "mobile.dhl.de": [4108], "globalnews.iu.edu": [8214], "abd.li": [2053], "religionnews.com": [13990], "bannersnack.com": [1700], "piery.ovh": [2053], "jmb.mobi": [2053], "img.utdstc.com": [21873], "sys4.de": [16000], "bensabic.social": [2053], "secure.manchester.gov.uk": [10107], "disneyprivacycenter.com": [4653], "*.nifty.com": [11114], "dynstatus.com": [4921], "www.lpo.org.uk": [9251], "ocul.us": [2053], "www.mville.edu": [10118], "www.nemertes.com": [11336], "livestrong.com": [9663], "styles.litmuscdn.com": [9633], "www.mirrorreaderoffers.co.uk": [10637], "easypdfonline.com": [5129], "gemini.com": [6636], "payments.bolton.gov.uk": [19569], "workspaces.acrobat.com": [520], "go.bulleit.co": [2053], "a.mbx.io": [2053], "turktk.com": [17114], "hertz247.it": [7491], "docs.fastly.com": [5803], "ossswebcs.admin.uillinois.edu": [17238], "player.video.news.com.au": [11529], "fr.boardgamearena.com": [2219], "www.academiapress.be": [473], "www.soccerwaveuk.com": [15303], "www.researchblogging.org": [14027], "www.jhalderm.com": [8617], "secure.ngagelive.com": [11565], "status.silktide.com": [15041], "sn.sbisec.co.jp": [2053], "pdfreaders.org": [12713], "clientarea.ewebscapes.com": [5090], "payu.ru": [12702], "mediaspace.nottingham.ac.uk": [11726], "discoveryplacekids.org": [4642], "hol.is": [2053], "marketo.ringcentral.com": [14124], "myc.im": [2053], "organo.mx": [2053], "*.ntwk45.com": [11757], "www.mekanist.net": [10408], "go.12wave.com": [2053], "ussitez.link": [2053], "fotoalbumy.azet.sk": [1520], "webmail.cari.net": [2575], "ysubookstore.com": [19050], "datenschutz-ist-buergerrecht.de": [4296], "get.exp.sr": [2053], "assets.over-blog.com": [12361], "www.enterprisersproject.com": [5395], "marketing.anadolu.edu.tr": [1025], "m.washingtonpost.com": [18287], "*.www.ionaudio.com": [7924], "www.a14electronics.com": [253], "on.evr.st": [2053], "2pay.ru": [118], "a3.mzstatic.com": [11041], "www.hertzautovermietung.pl": [7497], "zudu.uk": [2053], "www.researchgate.net": [14030], "mtnafoundation.org": [9966], "dacort.me": [2053], "www.london-nano.com": [9737], "cllgn.co": [2053], "2.robu.co": [2053], "kanotix.de": [8934], "b.99su.co": [2053], "lfshoe.com": [2053], "autotrader.co.uk": [19457, 19458], "24m.fr": [2053], "womenshealthspecialists.org": [18711], "www.tek.no": [16319], "go.imotors.com": [2053], "*.fontspring.com": [6112], "www.webmetrics.com": [18429], "cottle.co": [2053], "connect.jhu.edu": [16562], "i.cars.ru": [19650], "showroom.qt.io": [13545], "ussu.co": [2053], "steelbld.gs": [2053], "tr.godaddy.com": [6898], "osum.it": [2053], "lauramercier.com": [929], "ldrsnb.st": [2053], "zwischenwelt.milchkind.net": [10578], "planning.warwickshire.gov.uk": [21980], "getpopcorntime.org": [21170], "www.iblocklist.com": [8047], "s111.cnzz.com": [3391], "wuhu.meituan.com": [10405], "captl1.co": [2053], "www.thegoodfight.fm": [16548], "www.stubhub.com": [15789], "*.sptimes.com": [14397], "www.nhseportfolios.org": [11103], "developers.dwolla.com": [4913], "*.yelp.com.tw": [18979], "www.olioboard.com": [11980], "sandwell.gov.uk": [21367], "codm.info": [2053], "go.unite.ad": [2053], "rolex.com": [14187], "document.no": [4714], "*.penguinwebhosting.com": [12747], "ppolly.com": [2053], "*.elte.hu": [5024], "tv-family.ga": [2053], "list.jabber.at": [8620], "musecdn2.businesscatalyst.com": [2516], "url.gracey.net": [2053], "www.endrift.com": [5350], "trqu.se": [2053], "www.fveydocs.org": [5722], "www.nodesecurity.io": [11646], "www.xagasoft.com": [18838], "www.ubykotex.com.au": [17199], "gxsit.es": [2053], "www.digboston.com": [4549], "device.is": [2053], "local-rximage.nlm.nih.gov": [11241], "icdn.lenta.ru": [20661], "openvirtualizationalliance.org": [12225], "x.baronkutz.com": [2053], "mx.su": [2053], "www.cisecurity.org": [2673], "status.qtcloudservices.com": [13546], "meine.rwe.de": [21349], "kemerovskaya-obl.beeline.ru": [1801], "seroundtable.com": [14343], "*.marketo.com": [10180], "shopstyle.*": [14965], "school-txt.me": [2053], "*.burlingtonfreepress.com": [2498], "fdworlds.net": [5820], "asym.us": [2053], "eirc.taiget.ru": [21652], "www.studentloans.gov": [15790], "misd.sc": [2053], "imageoptim.com": [8127], "secure.eu.ikea.com": [8108], "*.battle.net": [1741], "on.oceg.org": [2053], "bibliotek.kk.dk": [8883], "openmoko.org": [12237], "lhc-statistics.web.cern.ch": [2632], "motherindia.just-eat.ie": [20565], "mm.atom.com": [2053], "nbsp.fr": [2053], "www.littlesis.org": [9637], "nab.com.au": [11054], "canadahelps.org": [2851], "unst.me": [2053], "*.ssl.hwcdn.net": [7785], "www.okturtles.org": [11973], "my-lavi.cf": [2053], "www.southampton.gov.uk": [15440], "namei.org": [11213], "s.lookfor.hk": [2053], "vanmonckautonomousgym.squat.net": [21549], "patin.co": [2053], "manage.nodeserv.com": [11644], "www.webcruiter.no": [18411], "p-c-g.info": [2053], "action.careinternational.org.uk": [19646], "mastercard.us": [20756], "travelba.gs": [2053], "dashboard.jwplatform.com": [8614], "artinstitutes.edu": [16440], "condo.lu": [2053], "lockscalecompare.com": [20711], "goavt.com": [2053], "blog.stefan-betz.net": [15717], "fueleconomy.gov": [6359], "2cc.co": [2053], "subscriberservices.mcclatchy.com": [10283], "videoaidedinstruction.com": [17984], "www.clara.io": [3269], "www.clixgalore.com": [19733], "enil.us": [2053], "carul.li": [2053], "www.readyflowers.com": [13853], "apichangelog.com": [19402], "u.mpscan.org": [2053], "mwt.bz": [2053], "moshiri.me": [2053], "isha.co": [2053], "reportingitc2.apple.com": [1160], "s.vaderrp.com": [2053], "s-hertogenbosch.nl": [11324], "n8j1s.co": [2053], "dmds.cc": [2053], "mail.google.com": [6962], "ir.exus.co": [2053], "apps.doncaster.gov.uk": [4770], "aspirations.sbi.co.in": [14320], "cibot.bufferapp.com": [2459], "getrave.com": [6721], "blogcatalog.com": [2153], "*.neimanmarcus.com": [16106], "banner3.utm.edu": [17628], "www.bcash.com.br": [1767], "activtracker.johnshopkins.edu": [8760], "www2.ilxgroup.com": [7900], "joshl.im": [2053], "t.bowl.com": [2053], "client.hip.live.com": [9644], "mailpoet.com": [10046], "www.sipgate.io": [15103], "y16.se": [2053], "sngy.ly": [2053], "heatmap.it": [7417], "llayer.eu": [2053], "pwg.gtimg.cn": [7120], "a.nqa96.me": [2053], "staging.dol.gov": [19938], "evanced.info": [5539], "www.ithaca.edu": [8539], "gamebase.dealspwn.com": [7693], "geoiptool.com": [20225], "pds-naif.jpl.nasa.gov": [11058], "www.ibutsu.org": [20418], "webmail.mit.edu": [9914], "v.alue.co": [2053], "www.cs.bme.hu": [1571], "budejovice.idnes.cz": [20425], "joycasino8.com": [20552], "www.sedonaaz.gov": [3244], "kuro5hin.org": [9196], "xact.spiceworks.com": [15517], "a2.jimstatic.com": [8720], "adl.engineering.osu.edu": [11959], "prn.to": [2053], "mypack.ncsu.edu": [11690], "x.hitravel.xyz": [2053], "deutsche-boerse.com": [4488], "bfpne.ws": [2053], "admin.over-blog.com": [12361], "www.savana.cz": [14547], "news-cdn.efinancialcareers.com": [5010], "r.yunlo.net": [2053], "nitin.io": [2053], "m9.chaucanh.net": [2053], "sbird.co": [2053], "www.watson.ch": [21983], "www.browser.yandex.com": [18956], "freetype.org": [20172], "www.dol.gov": [19938], "demor.at": [2053], "huw.li": [2053], "imgjam2.jamendo.com": [8649], "feedback.vodafone.co.nz": [18105], "richarddawkins.net": [14105], "wolblog.com": [2053], "mkca.ga": [2053], "www.pentestpartners.com": [12742], "iwtas.me": [2053], "www.tl63.co.uk": [16781], "arlgp.co": [2053], "cdn.findnsave.com": [5951], "kirkslc.me": [2053], "flgd.co": [2053], "tvp.ag": [2053], "blog.lizdenys.com": [9682], "smallnetbuilder.com": [17893], "igi.gs": [2053], "chillicothegazette.com": [3136], "www.meteoprog.kz": [10490], "nicbravo.co": [2053], "aravot.am": [19410], "www.cell.com": [2993], "dealabs.me": [2053], "reader.uni-mainz.de": [17611], "www.9to5toys.com": [248], "unixstickers.com": [17641], "nue.md": [2053], "www.computer-bild.de": [19767], "trailofbits.com": [16930], "mrzine.monthlyreview.org": [10756], "www.bosfera.ru": [19574], "lnrs.co": [2053], "www.orangestatic.com": [12293], "go.pulsem.me": [2053], "careers.bremer.com": [2354], "www.matricien.org": [20759], "lib.polyu.edu.hk": [13116], "delta.no": [4415], "cog.to": [2053], "hackerspace.pl": [7280], "file.status.net": [15690], "org-rev.com": [2053], "www.poliisi.fi": [13092], "32red.com": [124], "secure.gktw.org": [6808], "crowdfunding.justgiving.com": [8845], "www.europe-miniatures.com": [5527], "www.parship.nl": [12624], "www.classpath.org": [6474], "titn.co": [2053], "fr.spontex.org": [15538], "stookes.co": [2053], "mcdelivery.com.my": [10285], "nachhaltigesbauen.htwk-leipzig.de": [7736], "www.youtube.co.ug": [19016], "www.heapanalytics.com": [7407], "javelinstrategy.com": [8679], "www.twinsornot.net": [17158], "oobld.com": [2053], "www.hs.ias.edu": [7815], "rooof.com": [14197], "learning.isc2.org": [7967], "bricew.me": [2053], "www.gradimages.com": [7008], "pl.4.boardgamearena.com": [2219], "wibi.co": [2053], "www.atlatszo.hu": [1358], "panopto.con.ohio-state.edu": [11960], "medicinescomplete.com": [10361], "www.eduroam.cz": [5199], "catalysts.engineering.osu.edu": [11959], "astrill.com": [1337], "dkmn.tl": [2053], "go.elsifi.com": [2053], "www16.pipni.cz": [12460], "illinois.edu": [17544], "bg.libreoffice.org": [9471], "www.pentestmag.com": [12756], "im.mtv.fi": [20849], "wishlistgranted.com": [18674], "leed.st": [2053], "*.dntrck.com": [4147], "files.readme.io": [13841], "privatetunnel.com": [13326], "www.vavinet.vutbr.cz": [17814], "www.fabiankeil.de": [5730], "s.umhb.us": [2053], "fjm.es": [2053], "semprep.ro": [2053], "lbclibrary.worldcat.org": [18748], "cpner.com": [2053], "centri.info": [2053], "l.xat.social": [2053], "chiro.link": [2053], "spacetelescope.org": [7741], "w.escortera.com": [2053], "yakk.in": [2053], "go.brefe.com": [2053], "gitweb.dragonflybsd.org": [4834], "rayrc.urled.me": [2053], "oxd.link": [2053], "my.securepoint.de": [14753], "cacert.org": [2578], "www.cqrcengage.com": [2711], "www.io9.com": [8483], "minwax.link": [2053], "intranet.fce.vutbr.cz": [17814], "1cart.com": [53], "www.sendgrid.com": [14821], "www.sonatype.com": [15381], "alls.tl": [2053], "go.grox.com.au": [2053], "brandfolder.com": [2336], "forms.nrc.gov": [17497], "www.guidefaq.com": [7136], "app.srcclr.com": [15588], "blog.sourcefabric.org": [15429], "b.mamund.com": [2053], "mybitcointrade.com": [2007], "soez.bz": [2053], "www.bitgamer.su": [2046], "spookstud.io": [2053], "www.marshut.net": [10192], "jtn.me": [2053], "r29.us": [2053], "www.nikon-lenswear.com": [11597], "*.thedailybeast.com": [16531], "yelpblog.com": [22098], "www.e-mail-made-in-germany.de": [4940], "wndr.nu": [2053], "bo.xm.com": [18821], "www.marieclaire.co.uk": [10157], "carwash.dhs.gov": [4109], "*.hp-ww.com": [7517], "p.amoad.com": [352], "pg-vb.cdn.viber.com": [17956], "my.cs.illinois.edu": [17544], "stve.me": [2053], "www.cloudsleuth.net": [3353], "photos.cams.com": [2846], "stanfordfund.stanford.edu": [15635], "bitn.am": [2053], "ddd.444.hu": [172], "*.involver.com": [8481], "www.certificate-transparency.org": [3028], "eval.georgetown.edu": [6668], "fundfill.com": [6374], "www.torguard.net": [16838], "link.worldcat.org": [18748], "phil.camera": [21116], "sonsh.in": [2053], "learndrupal.stanford.edu": [15635], "static-cdn2.ustream.tv": [17743], "jmao.me": [2053], "chudson.me": [2053], "www.etmirror.com": [20063], "www.geenstijl.nl": [20217], "url.bitflix.me": [2053], "epoch.com": [5428], "nzbindex.nl": [11191], "apply.mebank.com.au": [9902], "cc.moticos.io": [2053], "by.jhernandz.es": [2053], "www.boxopus.com": [2312], "derbyshire.gov.uk": [19895], "itbig.co": [2053], "user.riseup.net": [14133], "ad.adc-srv.net": [19288], "sky.com": [15170], "www.grc.com": [6497], "careers.nra.org": [20942], "ohmbb.com": [2053], "nypost.com": [20972], "help.avast.com": [1484], "victorinox-japan.tumblr.com": [17100], "www.paydirtgold.com": [12682], "www.eventbrite.de": [20071], "www.silicon.fr": [11390], "www-lt.net-a-porter.com": [11363], "healthyforkids.wpengine.netdna-cdn.com": [7404], "*.secure-donor.com": [14725], "francisfrith.com": [20158], "qcpri.de": [2053], "nibusinessinfo.co.uk": [20908], "www.legaldirectories.com": [9386], "www.sendmoneytoschool.com": [14822], "discuto.io": [4646], "blog.mybb.com": [11013], "infobase.thomsonreuters.com": [16650], "olc.energy.gov": [5355], "hrw.io": [2053], "vegasdealhunter.com": [17881], "*.888173.net": [230], "odeli.us": [2053], "desmume.org": [4321], "c00l.cc": [2053], "www.greenmangaming.com": [7059], "capitadiscovery.co.uk": [19642], "5.*.wdfiles.com": [18593], "www.dishonored.com": [19144], "coursesmart.com": [19803], "global.stanford.edu": [15635], "webmail.fsdata.se": [5718], "bringr.it": [2053], "bib.schema.org": [21377], "api.unthem.com": [17660], "www.habbo.fi": [7255], "rossendale.gov.uk": [14206], "mghty.pe": [2053], "corporate.livingsocial.com": [9679], "mgnm.fotogr.fr": [2053], "news.stanford.edu": [15635], "metrorev.org": [2053], "media.tori.net": [21760], "owca.mp": [2053], "stmpe.de": [2053], "martiago.ourproject.org": [21044], "lists.sch.bme.hu": [1570], "twistedmatrix.com": [17162], "ssllabs.com": [14416], "www.cimbbank.com.my": [2663], "kislovodsk.beeline.ru": [1801], "store.couchsurfing.com": [19798], "www.unitednuclear.com": [17493], "path.st": [2053], "an.drwlng.me": [2053], "nnewsh.co": [2053], "ah.yimg.jp": [18992], "s.komarch.net": [2053], "www.convertkit.com": [3695], "*.esri.com": [5468], "www.homebase.com": [7621], "www.indybay.org": [8231], "g.mikorobyo.com": [2053], "sauc.me": [2053], "link.icon.me": [2053], "support.counterpath.com": [19799], "picscore.co": [2053], "gocan.es": [2053], "ivfte.ch": [2053], "www.zarkzork.com": [19113], "*.goldencharter.co.uk": [6939], "www.forbesmagazine.com": [6136], "pg2.me": [2053], "domru.ru": [4768], "politicalwire.com": [13097], "docs.oracle.com": [12284], "unwf.co": [2053], "www.suburban.nl": [15824], "www.prospectmagazine.co.uk": [13389], "soraiseyourglasses.com": [15292], "skibu.ms": [2053], "madewith.unity.com": [17506], "unwr.tn": [2053], "chomes.ca": [2053], "tcns.tk": [2053], "f1.support.mindtouch.com": [10596], "www.supercard.ch": [3712], "bro.org": [2400], "www.notalwayslearning.com": [20931], "thepiratebay.sx": [21710], "grandhaventribune.com": [7019], "hookupcioud.com": [2053], "www.jobandtalent.com": [22065], "www.scratch.mit.edu": [9916], "rlauren.co": [2053], "mrfile.me": [10863], "cakepdx.co": [2053], "brian.pe": [2053], "www.legitbs.net": [9390], "manage.hosting.digiweb.ie": [4597], "wkbg.co": [2053], "www.dundeecity.gov.uk": [4897], "suspen.se": [2053], "*.xe.com": [18810], "dnt.me": [2053], "1.s-jung.com": [2053], "static.vliegtickets.nl": [18095], "vy.recordfy.com": [2053], "hogs.me": [2053], "*.gweb.io": [7162], "www.audits.uillinois.edu": [17238], "malea.us": [2053], "snutt.nrk.no": [11744], "go.eizil.com": [2053], "www.dedigitaletopschool.nl": [4324], "crate.io": [3834], "www.opendnssec.org": [11130], "ontsi.red.es": [13894], "crm.fsfe.org": [5714], "imgad0.pconline.com.cn": [12437], "r.sal.tt": [2053], "ojs.uv.es": [17750], "u.kai.gs": [2053], "www.irunsafe.com": [14272], "www.cherry.de": [3120], "www.eai.org": [5252], "*.wikinvest.com": [18596], "w.cnzz.com": [3391], "bedfordcornexchange.co.uk": [19510], "tile2.bbcimg.co.uk": [19502], "medievalstudies.georgetown.edu": [6668], "connect.mail.ru": [10040], "secure.swisspostbox.com": [13176], "ftn.co": [2053], "kwsplc.com": [2053], "neptun.bme.hu": [1570], "dry.gd": [2053], "start.duckduckgo.com": [4888], "*.startpage.com": [8553], "to.kibab.de": [2053], "fb.finam.ru": [5936], "eu.oheuaqui.com": [2053], "www.mujbiz.cz": [10879], "on.robyn.com": [2053], "www.sec.informatik.uni-goettingen.de": [17451], "prace.cz": [13234], "dhwk.me": [2053], "webtask.io": [18457], "produits.migros.ch": [10566], "southend.firmstep.com": [20125], "rcat.es": [2053], "ftp.linux-mips.org": [9573], "www.freebusy.io": [6242], "www.jsbi.org": [8603], "community.microfocus.com": [10528], "stockport.nhs.uk": [11102], "s.richie.fi": [2053], "shop.corsair.com": [3755], "www.it-agenten.com": [7983], "eshopbrokers.co.uk": [19976], "mailtest.nanog.org": [11688], "labs.opera.com": [12252], "petek.im": [2053], "osvita.ua": [21040], "www.rethink.org": [21299], "garagegames.com": [6575], "connect.soundcloud.com": [15410], "online.sberbank.ru": [14560], "islington.gov.uk": [8518], "s.wihel.de": [2053], "jboss.org": [8565], "a.rznv.eu": [2053], "about.gitlab.com": [6798], "titanfile.com": [16772], "www.codehs.com": [3409], "fengtai.meituan.com": [10405], "feeds.thetimes.co.uk": [16734], "ehot.me": [2053], "campaigns.f-secure.com": [5654], "tempo.cnrs.fr": [6314], "ade.clmbtech.com": [19735], "whatca.st": [2053], "3drmedia.com": [2053], "www.rivalseek.com": [14138], "ecustomeropinions.com": [4987], "*.privatepaste.com": [13329], "www.markmail.biz": [10168], "www.simlar.org": [15057], "www.fluidhosting.com": [6068], "woori.se": [2053], "grmp.co": [2053], "ncsi.com": [11076], "www.oesar.osu.edu": [11959], "indy.st": [2053], "www.engineering.osu.edu": [11959], "www.brueckenbauer.ch": [10567], "anmol.cc": [2053], "go.jejs.wedding": [2053], "ngib.in": [2053], "mutts.com": [20855], "corningcu.org": [3746], "download-cdn.gfe.nvidia.com": [11174], "security-database.com": [14762], "london.greenparty.org.uk": [7052], "www.aea.se": [718], "web1.dist.maricopa.edu": [10153], "*.ideafit.com": [8074], "www.saucenao.com": [14541], "teylingen.nl": [11324], "urls.dyc.qa": [2053], "w.thefga.org": [2053], "gavelbuddylive.com": [6588], "blusigd.es": [2053], "www.happyassassin.net": [7333], "upc-cablecom.biz": [21865], "www.moerdijk.nl": [11324], "dfmf.uned.es": [17446], "*.fbo.gov": [5831], "status.acast.com": [19259], "www.redcare.bt.com": [1593], "china.taobao.com": [16206], "console.theplatform.com": [16496], "www.clkrev.com": [3331], "www.dbforums.com": [4085], "airme.ch": [2053], "l.gnva.com": [2053], "komments.net": [9117], "watersgeo.epa.gov": [5036], "fe-ddis.dk": [5676], "s.verinosa.com": [2053], "www.museumsarbeit.htwk-leipzig.de": [7736], "m.ianstanley.ie": [2053], "*.fyre.co": [9670], "*.myaccount2.chicagotribune.com": [3131], "labelsig.com": [9279], "skbt.co": [2053], "info.vmware.com": [5280], "e8.biz": [2053], "marketing.yell.com": [22096], "cdn.fnmag.co": [5696], "twd.ac": [2053], "thisproxykillscensors.uk": [21725], "thrl.st": [2053], "pages05.net": [12537], "www.imf.org": [7904], "tiggerswelt.net": [16712], "my.nypost.com": [20972], "www.erc.edu": [5048], "edc2.healthtap.com": [7395], "hiw.is": [2053], "travel.state.gov": [17345], "www.eplus-gruppe.de": [4943], "amo.news": [2053], "photo.issuu.com": [8526], "06.imgmini.eastday.com": [5119], "yanao.beeline.ru": [1801], "developer.mydigipass.com": [11017], "cmne.ws": [2053], "shipwi.re": [2053], "videoyun.tk": [2053], "vinho.me": [2053], "endi.co.tt": [2053], "xenbits.xen.org": [22080], "ojsspdc.ulpgc.es": [17411], "sanmarcos.illuminateed.com": [20430], "visitante.acesso.uol.com.br": [17276], "cee.mitre.org": [10649], "www.ornl.gov": [11892], "cdn3.spiegel.de": [15523], "miflota.co": [2053], "trsz.me": [2053], "bunyo.ro": [2053], "i.abesh.net": [2053], "g3.std3.ru": [15699], "netease.im": [11381], "accesslink.ucsd.edu": [17216], "atlt.co": [2053], "www.parkhere.org": [14579], "raq.cc": [2053], "picomoney.com": [12876], "hnkscrft.co": [2053], "volksverschluesselung.de": [18124], "developer-dev.allizom.org": [896], "d2.i5m.nl": [2053], "pskov.beeline.ru": [1801], "tuf.bz": [2053], "fam.state.gov": [17345], "fldr.to": [2053], "cdn.static2img.com": [3993], "swimu.com": [2053], "get.pictos.cc": [12881], "s-passets-cache-ak1.pinimg.com": [12906], "jomill.co": [2053], "9l7gf7x5o9v.xyz": [2053], "www.6connect.com": [215], "www.thedma.org": [16530], "www.clearxchange.com": [3290], "mariadb.org": [10152], "s.siemoto.com": [2053], "en.about.aegeanair.com": [7041], "video.blick.ch": [2125], "itsfrom.me": [2053], "crowdcontrol.lotame.com": [9776], "rys.link": [2053], "www.hea.net": [7186], "iipvv.nl": [7887], "intellij-support.jetbrains.com": [8708], "assets-sports.vice.com": [17959], "assetspost.com": [3046], "www.bestwebhostinggeek.com": [911], "m.udn.com": [17224], "*.tonytan.cn": [16819], "o.ocho.co": [2053], "www.act-on.com": [19268], "api.pcbsd.org": [12421], "beta.root.cz": [14199], "cricket.redbull.in": [13900], "honorcards.heifer.org": [7423], "fave.me.uk": [2053], "sacjr.nl": [2053], "htc2.accu-weather.com": [503], "official.contest.yandex.com": [18956], "library.linode.com": [9547], "redweb.com": [13934], "u.suntravel.xyz": [2053], "www.oralb-blendamed.de": [12286], "www.hola.org": [7589], "regardz.me": [2053], "warrington.greenparty.org.uk": [7052], "support.samsungknox.com": [14507], "wbr.io": [2053], "cgti.unizar.es": [17643], "algolia.com": [844], "e.here.com": [7465], "www.coralproject.net": [19792], "lvmanagement.com": [9312], "fntx.co": [2053], "support.distilnetworks.com": [4659], "smartbear.com": [21479], "acedemo.oss.aliyuncs.com": [19346], "gutheal.me": [2053], "bodyandf.it": [2053], "styles.freescale.com": [6302], "www.breakingviews.com": [19589], "www.cryptonotefoundation.org": [19827], "ideas.spkcn.com": [15530], "sjfc.worldcat.org": [18748], "puffl.es": [2053], "*.csis.gc.ca": [2861], "wbsnlabs.com": [2053], "lnk.renteapp.nl": [2053], "blog.caat.org.uk": [19625], "www.freedomsphoenix.com": [20165], "www.quitter.is": [13601], "armagazine.com": [2053], "c1.websitealive.com": [18445], "tac.meituan.com": [10405], "hccdashboard.web.cern.ch": [2632], "tkon.li": [2053], "www.appguru.com": [1145], "go.jpanzer.de": [2053], "tv.yandex.com.tr": [18954], "cvs.debian.org": [4353], "hillingdon.greenparty.org.uk": [7052], "tito.io": [16677], "fxne.ws": [2053], "applet.danid.dk": [4209], "blogs.oucs.ox.ac.uk": [17557], "dexpr.es": [2053], "dni.sh": [2053], "midio.ma": [2053], "rsr.nyc": [2053], "flirtprof.is": [2053], "finanzcheck.de": [20119], "rfxn.com": [14090], "www.beeline.ru": [1801], "www.ct.de": [7428], "services.amazon.de": [19369], "kpcne.ws": [2053], "qlik.to": [2053], "trm128.brassring.com": [19586], "thunderclap.it": [16674], "www.coursefinder.io": [3786], "s.bussanten.jp": [2053], "avaa.net": [2053], "tver.beeline.ru": [1801], "eetv.la": [2053], "goto.cattes.net": [2053], "kornerstoneadmin.com": [9139], "preferences-mgr.truste.com": [16111], "youtube.hu": [19016], "vel.ms": [2053], "www.speedrun.com": [15508], "z.jd.com": [8571], "largeform.at": [2053], "riot.mail.ru": [10040], "glueckspost.ch": [6875], "journal-republican.com": [12869], "openrightsgroup.org": [12221], "blogs.faz.net": [5667], "dianebe.al": [2053], "profiles.udacity.com": [17392], "sas.fazekas.hu": [5813], "b.aviho.st": [2053], "www.designova.net": [4469], "t.brianwolf.tv": [2053], "www.vz-nrw.de": [17909], "geizhals.at": [6631], "www.cure53.de": [3998], "connexity.com": [3648], "conteudos.meo.pt": [10440], "*.veinteractive.com": [17877], "j.arvicor.de": [2053], "www.beaconreader.com": [1779], "beacon.savingscatcher.walmart.com": [18260], "lists.bugzilla.org": [2466], "niteflirt.com": [11618], "omiai.yahoo.co.jp": [18944], "uncho.se": [2053], "cncrtblg.gr": [2053], "onep.gr": [2053], "fanhb.co": [2053], "ec.europa.eu": [5526], "cide.red": [2053], "sagt.co": [2053], "swrm.es": [2053], "osscvs.cern.ch": [2631], "portal.cms.gov": [19742], "rbmbenz.com": [2053], "dev.mutt.org": [10917], "jobmarket.nytimes.com": [11189], "hohndel.org": [3568], "*.startjesucces.nl": [20416], "curiosity-driven.org": [4001], "uniorg.githost.io": [20242], "pixel.criteo.net": [3872], "on.lpfisite.com": [2053], "login.uni-mainz.de": [17611], "*.spreadshirt.ch": [15552], "paw.im": [2053], "rwick.it": [2053], "0.k0uk0s.gr": [2053], "actiaccyberinitiative.ideascale.com": [20423], "cdn.vocab.com": [21937], "www.go.ncsu.edu": [11690], "pa247.tk": [2053], "harakah.net.my": [7334], "froscon.de": [6210], "www.kt.kz": [20622], "health.ucsd.edu": [17216], "*.ad-srv.net": [16216], "www.ativismo.org.br": [1351], "bugs.dokuwiki.org": [4728], "jiaofei.alipay.com": [857], "tachanka.org": [16155], "*.foreseeresults.com": [6140], "tools.linuxlovers.at": [9592], "b3-uk.mookie1.com": [10764], "itsupport.usc.edu": [17564], "sedorset.greenparty.org.uk": [7052], "ras.org.uk": [14225], "bthl.church": [2053], "q4os.org": [21236], "go.coverity.com": [3803], "snkrhd.fr": [2053], "idprotect.verisign.com": [17915], "cryptonews.ca": [2053], "content8.flixster.com": [6049], "wirbr.de": [2053], "dms-sweden.com": [4121], "foresters.co": [2053], "newsletter.raiffeisen.ch": [13761], "api.cyph.com": [4056], "haka-ds.funet.fi": [6381], "zerotier.com": [19159], "happi.me": [2053], "www.orb-international.com": [11858], "*.badgeville.com": [1648], "c.boardgamearena.net": [2219], "tanks.dft.gov.uk": [19908], "hfear.co": [2053], "smartcou.pl": [2053], "go.pmc.com.br": [2053], "soulful.us": [2053], "www.deutsche-boerse.com": [4488], "sloth.in": [2053], "wnydeals.co": [2053], "app.intercom.io": [8392], "cmdf.us": [2053], "www.fcitx-im.org": [5819], "yourgeni.us": [2053], "abo.spiegel.de": [15523], "*.blaze.com": [2114], "fabrianivan.com": [2053], "communities.oracle.com": [12284], "inspiration.dal.net": [4077], "debugs.theforeman.org": [21699], "ad-juster.com": [551], "tarlogic.com": [16219], "www.wrongplanet.net": [18776], "centri.net.co": [2053], "l.stenstrom.no": [2053], "screamqueens.co": [2053], "img3.glassdoor.com.au": [20249], "www.pritunl.com": [13305], "socializer.cc": [15321], "support.groundspeak.com": [7093], "groo.tk": [2053], "chrisd.news": [2053], "joy-kasino.com": [20552], "*.foxbusiness.com": [6203], "trdkk.com": [2053], "s.ccmss.org.mx": [2053], "manchester.pirateparty.org.uk": [12930], "ansky.co.uk": [2053], "mga.im": [2053], "webofknowledge.com": [18404], "cozumpark.com": [3811], "chekhov.beeline.ru": [1801], "cyberplat.ru": [4047], "applications.cpanel.com": [2708], "bride.st": [2053], "www.hos.hostalite.com": [20361], "cnsns.us": [2053], "prodfederate.pfizer.com": [12822], "www4.ulpgc.es": [17411], "www.mcmaster.ca": [10288], "ww1.econda-monitor.de": [5158], "training.nih.gov": [11241], "me.samsungknox.com": [14507], "www.sil.org": [14361], "metrics1.citibank.com": [3230], "b.urgo.in": [2053], "kukurap.alarabiya.net": [19336], "patk.in": [2053], "targobank-kredit.web.de": [18347], "sast.ro": [2053], "twitter.neighbourhoodalert.co.uk": [20884], "hi.sephen.cn": [2053], "ativa.in": [2053], "n.olutador.com": [2053], "2.mok.io": [2053], "afe2.specificclick.net": [15493], "www.upvoted.com": [17692], "louiseharrisoncouture.com": [9784], "kmts.ch": [2053], "forocoches.com": [6166], "connect.charter-business.com": [3078], "traffic.outbrain.com": [12355], "sml.keller.edu": [2053], "l.46hours.com": [2053], "utba.ph": [2053], "cs.fit.edu": [6058], "www.revolvermaps.com": [21303], "click.simba.taobao.com": [16206], "360p.sg": [2053], "consult.southdowns.gov.uk": [21512], "montyprogram.com": [10757], "i.stbr.co": [2053], "www.openmw.org": [12151], "mth.me": [2053], "secure.ssa.gov": [21552], "tsite.co": [2053], "blenderclan.tuxfamily.org": [21820], "v.calheers.ca.gov": [3800], "*.omniupdate.com": [11996], "tarosite.net": [2053], "press.blip.tv": [2133], "for-good.net": [2053], "qbnews.link": [2053], "counter.hitslink.com": [7568], "tru.fyi": [2053], "c-z.us": [2053], "bmb.scot": [2053], "manglory.co": [2053], "epsom-sthelier.nhs.uk": [11102], "www.ostagram.ru": [12331], "www.prediction.io": [13249], "thecx.pro": [2053], "j.udn.com.tw": [17224], "mklr.me": [2053], "rokstr.me": [2053], "track.roiservice.com": [14183], "101domain.com": [15], "templates.campaignmonitor.com": [2839], "*.exacttarget.com": [5585], "www.4gamer.net": [187], "om.zdnet.com.au": [19065], "millshq.uk": [2053], "ultimatebootcd.com": [17412], "founders.design": [2053], "nurtur.es": [2053], "chalkkids.co": [2053], "sl.sonisa.com": [2053], "www.plant-world-seeds.com": [12993], "img.china.alibaba.com": [850], "hdfv.be": [2053], "ncatools.education.gov.uk": [20009], "integration.richrelevance.com": [14104], "uwm.edu": [17580], "airpair.com": [786], "*.nelonenmedia.fi": [11333], "advance.science.sfu.ca": [14893], "comkort.com": [3533], "motv.st": [2053], "zane.ml": [2053], "inside.wustl.edu": [18290], "urbn.fr": [2053], "fordn.co": [2053], "parrot.org": [12619], "mygl.am": [2053], "fdbl.co": [2053], "img03.mifile.cn": [10560], "miscolor.es": [2053], "vpn.c3noc.net": [2560], "iamj.be": [2053], "www.adadvisor.net": [16040], "vhrzn.uk": [2053], "myeddebt.com": [9979], "relax.ngs.ru": [20907], "portfolio.ncl.ac.uk": [11073], "www.the-fca.org.uk": [16455], "libcat.oxfordshire.gov.uk": [21056], "blog.rackspace.com": [13740], "flycapturetest.environment-agency.gov.uk": [20047], "emilyloula.uk": [2053], "rememberthemilk.jp": [13993], "business2.danskebank.dk": [4223], "southernct.edu": [15444], "www.dowjones.com": [11512], "rankwise.net": [13784], "www.comstern.at": [3520], "www.tld.pl": [16782], "load.kerbl.de": [2053], "*.ibtimes.com": [8405], "mbsportsweb.ca": [9887], "t.neustar": [2053], "*.textbooks.com": [16420], "s.tribalfusion.com": [17001], "recipelab.org": [13879], "abplink.com": [2053], "blog.p2pfoundation.net": [12407], "jaredamy.co": [2053], "oficinaverde.unizar.es": [17643], "visha.re": [2053], "gmz75.migros.ch": [10566], "artinthe.co": [2053], "www.switchip.info": [3597], "ncjoel.link": [2053], "npte.ch": [2053], "bioenergy.inl.gov": [20462], "s.yamazaki.sexy": [2053], "www.feedly.com": [5853], "www.cpge.utexas.edu": [17571], "wardt.ms": [2053], "www.modern.ie": [10706], "*.westlotto.com": [18515], "rossulbricht.org": [14205], "www.eply.com": [5044], "satch.co": [2053], "osc.gov": [21034], "bugzilla-dev.allizom.org": [896], "mktg.act-on.com": [19267], "bit.titoit.com": [2053], "static.eat.ch": [4966], "www.yworks.de": [22091], "c.fixunix.com": [6010], "cdn.bagus.my.id": [2053], "vsl.vc": [2053], "ctc.i.gtimg.cn": [7120], "on.uah.edu": [2053], "bblnk.com": [2053], "kevinames.news": [2053], "fc.webmasterpro.de": [21993], "hgo.se": [7188], "de.foursquare.com": [6200], "jud.net": [2053], "crypteia.moreal.co": [10775], "lists.opencsw.org": [12125], "y-gg.co": [2053], "sams.tc": [2053], "blog.plex.tv": [13036], "secure.disc-soft.com": [4624], "provost.wustl.edu": [18290], "wd.meituan.com": [10405], "s.gums.org.au": [2053], "fluiddynamics.engineering.osu.edu": [11959], "b12.yahoo.co.jp": [18944], "islamabad.usembassy.gov": [21879], "relap7.inl.gov": [20462], "groceries-qa2.asda.com": [387], "www.pinkbike.com": [12909], "yper.at": [2053], "bgt.taobao.com": [16206], "sale.jd.com": [8570], "ironsearch.com": [7962], "corporate.aldi.com.au": [338], "sparkhub.databricks.com": [4275], "www.tailgatersparking.com": [16167], "trgs.ly": [2053], "onlineregistrationcenter.com": [12076], "m-connect.ch": [10566], "s.httr.pl": [2053], "*.jumptap.com": [8829], "karin.fyi": [2053], "www.skype.com": [15184], "static.ichkoche.at": [8063], "www.firstamendmentcoalition.org": [5989], "interpri.se": [2053], "zazzle.com": [19119], "www.clssl.org": [3378], "padmapper.com": [12527], "rlmedeiros.tk": [2053], "veil-framework.com": [17885], "esuite.pjm.com": [12463], "ep3.co": [2053], "www.barikat.gr": [7042], "test.retwt.me": [2053], "gnu.pl": [6475], "mypb.me": [2053], "yd.md": [2053], "api.taboola.com": [16153], "proteansec.com": [13392], "ru.mondediplo.com": [10729], "*.bm23.com": [2415], "mail.metasploit.com": [10488], "maira.im": [2053], "labth.in": [2053], "z9.chaucanh.net": [2053], "chessurl.com": [2053], "hlryd.in": [2053], "wwhub.ws": [2053], "www.bitkonan.com": [2049], "updates.jenkins-ci.org": [8700], "karty.skylink.cz": [15183], "lbsprop.info": [2053], "pogoda.yandex.com": [18956], "funho.me": [2053], "clevelandclinic.org": [3295], "img4.linuxdeepin.com": [4380], "sketch.pixiv.net": [12960], "www.piratpartiet.dk": [21136], "fgcuath.co": [2053], "ms.boardgamearena.com": [2219], "zoucheng.meituan.com": [10405], "giving.illinois.edu": [17544], "id.bbc.co.uk": [1538], "s.wombase.jp": [2053], "iwdc.ucsd.edu": [17216], "area51.pcbsd.org": [12421], "portal.microsoftonline.com": [10546], "pebblepad.co.uk": [12721], "www.majordesignsdollfashions.com": [10065], "community.mville.edu": [10118], "richp.us": [2053], "translate.foursquare.com": [6200], "hdvlink.com": [20328], "*.lmgtfy.com": [20705], "tunnelbroker.com": [17109], "j.faz.io": [2053], "j.visionect.com": [2053], "advertising.yandex.com": [18956], "cryptalloy.de": [3915], "highon.coffee": [7539], "www.aidsmap.com": [779], "kazi.info": [2053], "www.requestb.in": [21293], "contributors.gettyimages.com": [6740], "watch.yandex.by": [18953], "i.keyxi.com": [2053], "catedras.unizar.es": [17643], "images.journals.lww.com": [9599], "smky.io": [2053], "phpmyadmin.ouvaton.coop": [12360], "ausrug.by": [2053], "imperial.ac.uk": [8165], "www.zenmate.co.il": [19133], "saijo.co": [2053], "greenleft.org.au": [7051], "www.zenmate.co.id": [19133], "eposavje.com": [2053], "www.aiha.org": [19327], "u.pwcc.cc": [2053], "safehop.com": [2053], "cabal.ws": [2758], "yanshi.meituan.com": [10405], "uclan.ac.uk": [17593], "sexy.adults.men": [2053], "azstar.net": [2053], "*.vzw.com": [17920], "dariusjula.eu": [2053], "www.staytoday.com": [15697], "bc.meituan.com": [10405], "go.bbpp.us": [2053], "atr.fm": [2053], "phouse.co": [2053], "ads11.contentabc.com": [3678], "jnew.mn": [2053], "od.czcamp.eu": [2053], "e.rmazda.com": [2053], "*.mdgms.com": [10295], "balpa.org": [2393], "zangki.tk": [2053], "goqr.it": [2053], "www.are.berkeley.edu": [17526], "retargeting.sklik.cz": [15161], "p.layli.st": [2053], "dsgn.me": [2053], "bzb.org.uk": [2053], "www.timbro.se": [16724], "dellin.ru": [19890], "www.pistoncloud.com": [12944], "modelnprod.zilog.com": [19183], "totem.web.cern.ch": [2632], "www.nutyx.org": [20967], "lonesurvivor.co.uk": [9748], "my.betteradvertising.com": [5565], "l.wdmc.us": [2053], "maps.tmbc.gov.uk": [16082], "www.amazonsupply.com": [955], "tienda.ulpgc.es": [17411], "wdat.es": [2053], "riscos.com": [13665], "rega.ch": [13958], "huielibrary.worldcat.org": [18748], "voat.co": [18102], "store.agra-net.com": [771], "sewray.me": [2053], "*.happyherbivore.com": [7332], "my.illumina.com": [8117], "*.dynamitedata.com": [4929], "bbzsogr.so.ch": [21629], "digital.gamefly.com": [6537], "*.decipherinc.com": [4361], "intelte.ch": [2053], "aam.im": [2053], "s.gama-gama.ru": [20198], "geekoutwith.us": [2053], "nwgn.us": [2053], "atohio.engineering.osu.edu": [11959], "salk.edu": [14489], "my.dietfb.com": [2053], "secure.sendyourfiles.com": [14824], "www.netsemi.com": [11407], "peopleschoicecu.com.au": [12764], "*.prx.org": [12496], "www.256.com": [97], "buy.barrons.com": [19489], "jvv.pw": [2053], "pads.ci.uchicago.edu": [17532], "www1.tauntondeane.gov.uk": [16232], "www2.nero.com": [11354], "www.mapy.cz": [10141], "clusterize.js.org": [20555], "br.godaddy.com": [6898], "www.soap.com": [15300], "www.asseenonresponsetv.com": [1311], "afw.rocks": [2053], "fhpmerch.com": [2053], "8.1688.com": [44], "www.beginlinux.com": [1806], "opencryptoaudit.org": [12202], "www.stresslinux.org": [21592], "jawnl.am": [2053], "mmv.rocks": [2053], "collaborate.admin.uillinois.edu": [17238], "go.microsoft.com": [10543], "f0.thejournal.ie": [16490], "lib.rus.ec": [9444], "www.regiobank.nl": [13962], "*.financialcontent.com": [5937], "www.mi6.ua": [9908], "kosars.com": [2053], "thegol.dk": [2053], "ones.pt": [2053], "i.faad.co": [2053], "live.irtl.homeoffice.gov.uk": [20355], "*.invoca.net": [8478], "travelregistration.state.gov": [17345], "www.looktothestars.org": [9759], "plw.me": [2053], "dynamitedata.com": [4929], "abiggersociety.com": [422], "lejournal.cnrs.fr": [6314], "media.mit.edu": [9916], "m.sol.no": [21502], "www.paddle.com": [12528], "forums.lshtm.ac.uk": [9739], "*.lyris.com": [9851], "www.careers.cam.ac.uk": [17529], "*.datamappi.fi": [4281], "gssn.gr": [2053], "isshub.io": [8525], "urls.co.za": [2053], "www.o2-tv.cz": [16332], "get.adobe.com": [655], "*.righttobuy.communities.gov.uk": [19761], "sitecu.es": [2053], "r.collings.co": [2053], "shopcrazy.deals": [2053], "surfingip.info": [3597], "iuaa.imodules.com": [7909], "riaa.com": [13660], "pwmt.org": [13491], "grnlt.info": [2053], "www.coinaxis.com": [3455], "www.chita.ru": [19706], "oralpl.us": [2053], "syndication.traffichaus.com": [16926], "www.donorregister.nl": [11324], "uwcb.uk": [2053], "gnupg.org": [6887], "nxtpg.co": [2053], "www.res-x.com": [3032], "ftmag.co": [2053], "*.superpetusa.com": [15877], "okl-scene7.insnw.net": [8324], "a1ok.com": [2053], "www.rpw.sh": [14239], "isel.bz": [2053], "www.nieuwsblad.be": [11587], "eca.state.gov": [17345], "support.telltalegames.com": [16359], "sv.getsatisfaction.com": [6738], "hich.am": [2053], "s.ovo.ie": [2053], "barnon.co": [2053], "piratpartiet.se": [12940], "*.fireeye.com": [5967], "www.gemseek.com": [6641], "asa-g.com": [2053], "cdn2.hubspot.com": [7739], "eozy.us": [2053], "wie.osu.edu": [11959], "flyersrights.org": [6078], "secure-hwcdn.libsyn.com": [9482], "esfulletperdut.ourproject.org": [21044], "statics3.seeedstudio.com": [14796], "www.mybenefitscalwin.com": [10934], "*.ex.ac.uk": [17537], "share.america.gov": [19380], "go.suu.edu": [2053], "subscribe.theguardian.com": [16554], "studentservices.ignou.ac.in": [8102], "batti.es": [2053], "xen.pt": [2053], "svn.boost.org": [2264], "support.soe.ucsc.edu": [17591], "a4-content.vouchercloud.com": [21951], "m.mygaa.club": [2053], "dimn.in": [2053], "bitnamihosting.com": [1994], "tpvs2.hmrc.gov.uk": [7219], "www.edrcdn.com": [4996], "sakhalinskaya-obl.beeline.ru": [1801], "app.netlify.com": [11432], "my.red7th.com": [2053], "niederoesterreich.neos.eu": [11088], "link.stmath.com": [2053], "on.gallup.com": [2053], "onthemap.staffordshire.gov.uk": [15622], "ritningar.uppsalahem.se": [17686], "visuals.soundcloud.com": [15410], "sr.stanford.edu": [15635], "*.flinto.com": [6039], "mrkt.us": [2053], "viewbook.co": [2053], "webmaptcs.trafficmap.ch": [21663], "s74.cnzz.com": [3391], "humanists.club": [2053], "blog.affiliatewindow.com": [4568], "hock.in": [2053], "morseko.de": [2053], "brukerprofil.difi.no": [4547], "geekto.us": [2053], "www.tema.liu.se": [9238], "www.umeahackerspace.se": [17426], "zon.ky": [2053], "enalean.com": [5331], "static.packagelab.com": [12518], "securedatejoin.com": [21400], "garstelecom.ru": [20204], "studentbursarysupport.education.gov.uk": [20009], "ovh.it": [12378], "www.drawception.com": [4840], "desilva.biz": [4325], "5apps.com": [206], "produkte.web.de": [18347], "prss.ms": [2053], "www.watermarquee.com": [18297], "mvdg.be": [2053], "www.paket.de": [12541], "ovh.ie": [12378], "app.coinjar.com": [3461], "support.cheezburger.com": [3114], "powerlineman.com": [13228], "admitere.umftgm.ro": [21848], "www.daft.ie": [4181], "www.libsyn.com": [9482], "productimages.nimbledeals.com": [11601], "socallinuxexpo.org": [15294], "www.microsoftstudios.com": [10548], "arame.ga": [2053], "pixlnet.works": [2053], "zzgav.in": [2053], "espanol.aclufl.org": [286], "urgentfury.link": [2053], "d10.me": [2053], "www.expat.hsbc.com": [7233], "www.streamline.uprr.com": [21870], "ngvpn12.nvidia.com": [11174], "booking.swiss.com": [15948], "uclinics.com": [17222], "zelenograd.beeline.ru": [1801], "plneta.de": [2053], "www.pvac.leeds.ac.uk": [17604], "l.myk.do": [2053], "smplsd.com": [2053], "nsgt.me": [2053], "developers.livechatinc.com": [9641], "extreme.idg.se": [7852], "mtn.im": [2053], "*.willowgarage.com": [18618], "lms.cr": [2053], "www.advancement.osu.edu": [11959], "cftc.gov": [3547], "www.roarmag.org": [21319], "dev.modernrepo.com": [10711], "www.coinforum.de": [3459], "egm.io": [2053], "werbung.localsearch.ch": [9703], "editorae.me": [2053], "ditii.com": [4067], "visitorinsight.silverpop.com": [15047], "fuwu.alipay.com": [857], "drupalgardens.com": [4877], "store.canon.com.au": [19640], "nanorep.com": [11222], "eslasele.co": [2053], "ads.adswitcher.com": [19303], "sims.canon-europe.com": [2868], "www.crazespaces.pw": [19815], "www.realmatch.com": [13857], "s.rsreview.com": [2053], "www.goturkey.com": [6921], "purdueplantdoctor.com": [13462], "www.tor.com": [9996], "s101.cnzz.com": [3391], "cudisol.ourproject.org": [21044], "debet.east.ru": [19991], "paramountmovies.com": [12599], "schoolsupportservices.camden.gov.uk": [2830], "iddi.us": [2053], "f.chtah.com": [3113], "wdevne.ws": [2053], "link.adito.no": [2053], "support.simplyhired.com": [15075], "collateralmurder.com": [3482], "images.kingdomofloathing.com": [1343], "linshunghuang.com": [9521], "auto.cars.ru": [19650], "iid.io": [2053], "ibp.alibaba.com": [850], "careers.dyson.com": [4935], "www.middleeastmonitor.com": [10555], "trst.pl": [2053], "*.grupotriton.com": [7113], "silkn.com": [15038], "glawe.photo": [2053], "univofpretoria.worldcat.org": [18748], "www.cs.jhu.edu": [16562], "vgwort.de": [17775], "code.directadvert.ru": [4608], "www.lifeinthefastlane.ca": [9490], "gaff.in": [2053], "ftp.computerbase.de": [3602], "widgets.amung.us": [18565], "mhf.oss.aliyuncs.com": [19346], "a24.li": [2053], "www.buchmesse.taz.de": [16042], "madewith.unity3d.com": [17506], "opnot.es": [2053], "www.websupport.sk": [18456], "knda.ma": [2053], "international.lloydsbank.com": [9686], "www.hacoder.com": [7254], "decide2.be": [2053], "www.virk.dk": [18032], "comic.piliapp.com": [12887], "accessibility.harvard.edu": [7351], "www.password-hashing.net": [12642], "forum.utorrent.com": [21831], "ningjinnj.meituan.com": [10405], "4a.io": [2053], "education.travis-ci.com": [16976], "jb1.us": [2053], "mathid-origin.mathtag.com": [10236], "*.freshmilk.tv": [6324], "www.numa.paris": [11773], "www.deepdotweb.com": [4377], "i.canddi.com": [19638], "zhihu-web-analytics.zhihu.com": [19173], "firefox.yandex.com.tr": [18954], "studentessentials.cornell.edu": [3744], "chndlrmcl.co": [2053], "static-admin.mailigen.com": [10052], "av18mov.com": [1473], "lnx.uno": [2053], "owens.li": [2053], "dino.team": [2053], "www.dedikuoti.lt": [4370], "www.bycraft.cz": [2541], "store5.esellerate.net": [5462], "berr.im": [2053], "altkgm.in": [2053], "images.lowes.com": [9800], "ak1.polyvoreimg.com": [21168], "p2.qhimg.com": [13531], "ict4.school": [2053], "www.joppix.com": [8779], "t.homes.jp": [2053], "brainyquote.com": [2328], "bugs.contribs.org": [3686], "apercen.us": [2053], "www.diffnow.com": [4542], "bareos.org": [1716], "thepl.me": [2053], "samia.gidnetwork.com": [6450], "short.amido.com": [2053], "www.informatick.net": [8271], "ecode360.com": [5155], "splasho.me": [2053], "sapgw.ro.vutbr.cz": [17814], "gamedev.net": [6536], "sallybeauty.ugc.bazaarvoice.com": [14490], "a.sctxt.org": [2053], "www.pica.army.mil": [17306], "www.vtb.com": [17806], "www.flyn.org": [6083], "engine.doublepimp.com": [4812], "m.efinancialcareers.com": [5010], "forums.oneplus.net": [12041], "www.cateee.net": [2960], "hostingsolutions.cz": [7675], "wzclz.us": [2053], "liberdade.digital": [9456], "main-ws.tmi.twitch.tv": [17164], "center.kaspersky.com": [8958], "www.lessigforpresident.com": [9419], "lists.blockstream.com": [2152], "strato-hebergement.fr": [14428], "newstral.com": [11540], "calendar.live.com": [9644], "creative.adobe.com": [655], "city.sakh.com": [21360], "rc.codexns.io": [3446], "help.iwantmyname.com": [20517], "new.ftc.gov": [5837], "img.tineye.com": [16739], "svazurich.ch": [21622], "www.rsf.org": [14018], "2.jus.tn": [2053], "cisco.com": [3221], "susyradio.com": [15922], "*.eriklundblad.com": [20053], "harv.bio": [2053], "kaytan.com": [2053], "sdr.stanford.edu": [15635], "cryptomonkeys.com": [3950], "verno.uk": [2053], "nuget.org": [11760], "login.justcloud.com": [20564], "www.pddoc.com": [12438], "www.usdoedregistration.ed.gov": [4988], "amazon.jobs": [951], "wiremag.co": [2053], "images.otto.de": [12339], "ruidoblan.co": [2053], "www.thepiratebay-proxylist.org": [16493], "support.pivotal.io": [12947], "www.freshbsd.org": [6319], "gis.sepa.org.uk": [21411], "musicbrainz.org": [10905], "lendup.me": [2053], "www.cambridgeshire.gov.uk": [19632], "www.tshaonline.org": [16116], "static.dealnews.com": [4339], "cmnty.link": [2053], "drsd.so": [2053], "www.rijswijk.nl": [11324], "sentinelone.com": [14832], "go.endr.me": [2053], "mytailgate.tv": [2053], "twm.co": [2053], "research.isis.poly.edu": [13113], "c3.reifman.org": [13979], "www.responsive.io": [14047], "booking.com": [2255], "www.dornsife.usc.edu": [17564], "visabuxx.com": [18054], "nptp.us": [2053], "mishan.meituan.com": [10405], "i.thms.be": [2053], "joshs.link": [2053], "on.cfr.org": [2053], "philshobbyshop.com": [12840], "poronaysk.sakh.com": [21360], "kasperskyclub.ru": [8961], "dgarch.us": [2053], "stec-t05.xhcdn.com": [18815], "s.amazon-adsystem.com": [950], "honk.sigxcpu.org": [15029], "derekb.bz": [2053], "static.tue.nl": [16129], "subconadmin.com": [15811], "dpspreview.usc.edu": [17564], "modmyi.com": [10700], "wartung.migros.ch": [10566], "www.cyrus.foundation": [4063], "go.kerja.in": [2053], "download.freedesktop.org": [6243], "bcnparti.es": [2053], "eu-sonar.sociomantic.com": [15329], "compgeo.stanford.edu": [15635], "thewesternworld.com": [16590], "rossierfaculty.usc.edu": [17564], "l.331.io": [2053], "www.securityexperten.com": [14772], "c.gatech.edu": [2053], "checkout.unity.com": [17506], "www.es.lastminute.com": [9318], "bn2.me": [2053], "sourceafrica.net": [15418], "cgi.f-secure.com": [5654], "shop.cinestar.de": [3202], "*.co-operativebank.co.uk": [3392], "mobil.co": [2053], "launchpadlibrarian.net": [9323], "sport.mail.ru": [10040], "onmo.co": [2053], "www.moneycorp.com": [20823], "www.movie4k.pe": [10824], "selz.com": [14813], "lmsl.engineering.osu.edu": [11959], "billing.travis-ci.com": [16976], "s.update.chartbeat.com": [3077], "linksalpha.com": [9540], "www.dnsexit.com": [4695], "rxportalexpress.com": [14290], "badtimi.ng": [2053], "blkmrkt.me": [2053], "via.ericthn.fr": [2053], "my.nanorep.com": [11222], "marcansoft.com": [10146], "siren.link": [2053], "www.powertothepooch.com": [13223], "ppl.cz": [12486], "symlynx.com": [15973], "merchdirect.com": [10451], "landslide.com": [9297], "www.pconline.com.cn": [12437], "store.youmail.com": [19013], "*.uclouvain.be": [17516], "carma.astro.umd.edu": [17549], "l.mariobarth.de": [2053], "lvftt.co": [2053], "mjsk.jp": [2053], "www.proxybay.one": [21215], "code.qt.io": [13545], "stec-t04.xhcdn.com": [18815], "xhamster.biz": [825], "bgpmon.com": [1554], "*.bloodhoundgang.com": [2169], "gco.am": [2053], "m.shoup.me": [2053], "previa.se": [13270], "psb.pw": [2053], "lisas.co": [2053], "signin1.bt.com": [1593], "vel.joomla.org": [8776], "archive.anon-ib.net": [1078], "events.oracle.com": [12283], "fam4he.al": [2053], "platform.slack-edge.com": [15188], "nwslg.nl": [2053], "matkay.cc": [2053], "nshar.co": [2053], "dsgnbl.co": [2053], "item.taobao.com": [16206], "hsdo.stanford.edu": [15635], "www.asctrust.com": [386], "spanish.caracas.usembassy.gov": [21879], "performingarts.georgetown.edu": [6668], "labs.tineye.com": [16739], "tab.yt": [2053], "*.tinydl.com": [16759], "rumorscity.com": [14269], "easy.myfonts.net": [10949], "go.yoeori.nl": [2053], "bzsu.co": [2053], "superdesk.pro": [15881], "www.researchstore.com": [4284], "aash.to": [2053], "uis.georgetown.edu": [6668], "www.villahostels.com": [18007], "blog.travelrepublic.co.uk": [16970], "iamjen.co": [2053], "starz.tv": [2053], "go.mp3xd.com": [2053], "go.aw.my.com": [2053], "trstri.com": [2053], "lgosdm.mit.edu": [9916], "tabsoft.co": [2053], "germany.usembassy.gov": [21879], "brandr.it": [2053], "www.dribbble.com": [4855], "qrious.ly": [2053], "www.irb.fraunhofer.de": [6230], "static.wpm.neustar.biz": [11472], "german.tags.literotica.com": [9628], "blog.cyberpowerpc.com": [19843], "*.exxile.net": [5094], "autoreview.ru": [19455], "telushealth.co": [16364], "id.guim.co.uk": [7142], "moar.bruce.gg": [2053], "www.forensic.to": [19146], "4.dbstatic.no": [19866], "jensart.co": [2053], "l.jugemcart.com": [2053], "log1k.al": [2053], "aight.xyz": [2053], "www.servercircle.com": [14854], "datstat.com": [4247], "mystuff.wku.edu": [22039], "shop.buzzfeed.com": [2531], "openscholarship.wustl.edu": [18289, 18290], "www.pliktverket.se": [13038], "www.stealthy.io": [15703], "erooups.com": [5453], "mail.aol.com": [361], "tch4.in": [2053], "weihui.meituan.com": [10405], "ays.me": [2053], "atomic-clock.org.uk": [17402], "bc.howd.ee": [2053], "armservers.com": [18730], "*.n-ergie.de": [11043], "*.nbcnews.com": [11063], "uen.org": [17744], "binxblog.com": [2053], "tvn2.co": [2053], "cbc.cm": [2053], "ulife.gmu.edu": [6666], "cloudaccess.net": [3337], "bnss.cf": [2053], "s.troveread.com": [17039], "groupon.se": [7102], "*.cnn.com": [2693], "techjourney.net": [16278], "www.graphene-lda.com": [7021], "wx1.qq.com": [13514], "hadje.dj": [2053], "www.smartertrack.com": [15242], "data.calameo.com": [2791], "www.bttrack.com": [2441], "trader.skandiabanken.no": [15142], "members.met-art.com": [10471], "cinlib.org": [2053], "alpnames.com": [910], "tel.search.ch": [14684], "meetmecorp.com": [10379], "wikimedia.es": [18595], "www.as.au.edu": [17200], "albert.apple.com": [1160], "snackomat2.snacktv.de": [15268], "bp.chaucanh.net": [2053], "on.ful.lt": [2053], "newsletter.rbth.com": [21267], "tourismeca.com": [2053], "shpkp.com": [2053], "emcs.ws.hmrc.gov.uk": [7219], "jobs.illinois.edu": [17544], "m.abtal.me": [2053], "dealextreme.com": [4331], "yadui.business.yahoo.co.jp": [18944], "cahub.cancer.gov": [2864], "search.f-secure.com": [5654], "a.zakarija.com": [2053], "thedead.xyz": [2053], "actor-s.co": [2053], "www.greenqloud.com": [7046], "an.unutag.com": [2053], "upmy.biz": [2053], "blog.obnox.de": [11904], "*.imperial.ac.uk": [8165], "yo.hkan.se": [2053], "m.nkj.ru": [20915], "mathaml.in": [2053], "niestud.io": [2053], "divxpress.com": [4666], "scoremore.co": [2053], "s50.cnzz.com": [3391], "trumba.com": [17053], "cruise.gs": [2053], "*.estat.com": [10344], "n.capital.es": [2053], "www.isohunt.com": [8520], "gfxpro.hu": [9308], "freebarrettbrown.org": [6256], "s.yonitu.de": [2053], "vip.104.com.tw": [18], "www.2co.com": [112], "voronezh.rt.ru": [13703], "ordercourses.com": [2998], "t1.qlogo.cn": [13534], "eu1.snoobi.com": [15286], "i.dslr.net": [4157], "*.luv.asn.au": [9264], "film.list.co.uk": [16464], "*.acessoseguro.net": [511], "dwrght.co": [2053], "tdog.co": [2053], "opencfp.immunityinc.com": [8156], "www.ncsc.nl": [11075], "just-eat.ca": [20565], "upforit.com": [825], "fsisac.com": [5719], "vitamini.co": [2053], "shop.dft.gov.uk": [19908], "api.wetter.de": [18521], "*.footaction.com": [6130], "www.staysafeonline.org": [15695], "medapps.wustl.edu": [18290], "s.flinkefolk.lt": [2053], "www.apereo.org": [1128], "nrcc.me": [2053], "www.vtecdirect.com": [17809], "best-online.ga": [2053], "*.stadt-bremerhaven.de": [15619], "zkw.me": [2053], "myvie.co": [2053], "*.fb.me": [5815], "vitalgamers.com": [18082], "www.arewecompressedyet.com": [1216], "trials.ca.com": [2569], "mybbc.files.bbci.co.uk": [19501], "asustor.com": [19445], "kbk.fyi": [2053], "www.hacklab.to": [7266], "xw.meituan.com": [10405], "cdn.gigantic.com": [6771], "sprsmpl.me": [2053], "dscvr.xyz": [2053], "delivery.d.switchadhub.com": [15954], "assist-erp.osu.edu": [11959], "respectnetwork.com": [14045], "lllr.it": [2053], "p-a-s.me": [2053], "go4a.de": [2053], "t.trackedlink.net": [4789], "mbdcs.osu.edu": [11959], "accounts.expresscoin.com": [5628], "brie.cf": [2053], "uberaba.vc": [2053], "pdos.csail.mit.edu": [9916], "kat.am": [8965], "alertir.com": [829], "www.quest.com": [13581], "www.meldium.com": [10410], "www.movabletype.org": [10815], "undergrad.stanford.edu": [15635], "clickfoz.com": [2053], "theiot.me": [2053], "qo-de.co": [2053], "www.vs4.com": [21959], "s.raab.link": [2053], "www.worlde-idcongress.com": [18760], "www.lindtusa.com": [9527], "flash-mp3-player.net": [6017], "accidentalne.ws": [2053], "v.mn3njalnik.si": [2053], "ctr.stanford.edu": [15635], "cert.org": [2640], "tgd.co": [2053], "lk.iamniz.co.uk": [2053], "developers.corvisa.com": [3756], "newsroom.unsw.edu.au": [17273], "7rea.org": [2053], "briant.ml": [2053], "it.zenmate.ch": [19133], "pharmacology.georgetown.edu": [6668], "redx.ml": [2053], "www.itf.gov.hk": [7209], "js.aq.qq.com": [13514], "dogzonline.com.au": [4724], "analytics.pubnxt.net": [13424], "consortiumlibrary.org": [3656], "www.philanthropy.cam.ac.uk": [17529], "csr.engineering.osu.edu": [11959], "www.sedo.de": [14786], "ares.umd.edu": [17549], "www.freeyourandroid.org": [6273], "nadiame.li": [2053], "tsonlinepermit.wusm.wustl.edu": [18290], "linkinghub.elsevier.com": [5287], "avwk.us": [2053], "s0.thejournal.ie": [16490], "storyfarm.co": [2053], "20s.life": [2053], "www.lagen.nu": [9285], "t.tapactive.com": [2053], "feeds.podtrac.com": [21158], "www.cheznous.com": [18790], "saechsdsb.de": [4457], "climatecentral.org": [3324], "eu.hunchlab.com": [7763], "imgc.nxjimg.com": [11790], "hoere.jetzt": [2053], "www.colocation-datacenter.com": [20280], "mirtv33.ru": [20806], "bdone.hu": [1771], "cbpweb.nl": [4910], "chppe.engineering.osu.edu": [11959], "sdkbr.com": [2053], "*.gsn.com": [6534], "www.clicky.com": [6730], "innovation.cms.gov": [19742], "bengbu.meituan.com": [10405], "stores-assets.stackcommerce.com": [15613], "m.behr.com": [1811], "www.hepo.fi": [7459], "p2ppayments.capitalone.com": [2878], "stats.liqd.net": [9602], "i.crownma.de": [2053], "status.mythic-beasts.com": [11039], "stopglobalwarming.org": [15741], "www.lib.ncsu.edu": [11690], "wiki.mediatemple.net": [10331], "7eer.net": [224], "navicast.co.jp": [14985], "go.fdpbo.de": [2053], "i.mj-jang.com": [2053], "kemerovo.beeline.ru": [1801], "cas.homeaway.com": [20352], "newyork.gumtree.com": [20296], "spain.ikea.es": [2053], "onlychange.com": [12080], "on.tempty.hu": [2053], "thebay.tv": [21711], "info.web.de": [18347], "me.onthe.io": [12089], "api.plixi.com": [9707], "mining.bitcoin.cz": [10614], "secure.premiumize.me": [13254], "tysn.xyz": [2053], "facultyaffairs-humsci.stanford.edu": [15635], "mjc.life": [2053], "mi4urinsk.ru": [10511], "video.fortinet.com": [6174], "zaperela.net": [2053], "www.rottentomatoes.com": [14214], "help.sakura.ad.jp": [14306], "psgrfy.uk": [2053], "opensource.srlabs.de": [14764], "bittiraha.fi": [2074], "ftp.gnu.org": [6474], "www.globalbersih.org": [6844], "enno.dict.cc": [4536], "mail.scs.illinois.edu": [17544], "dromar.us": [2053], "fazendas.co": [2053], "www.journeyed.com": [8798], "mbusa.com": [9890], "mekanist.net": [10408], "mckemp.com": [2053], "www.lpice.eu": [9250], "abrm.us": [2053], "blade19.ual.es": [17361], "*.aquent.com": [1184], "www.usfsco.uillinois.edu": [17238], "novel.pixiv.net": [12960], "elttam.com.au": [20029], "eth.nanopool.org": [11220], "em.ge": [2053], "giving.jhu.edu": [16562], "mytishchi.beeline.ru": [1801], "www.portalmasq.com": [12483], "events.uchastings.edu": [17217], "cdn.b5media.com": [899], "sitepoint.com": [15117], "crsx.de": [2053], "byn.rocks": [2053], "selangorku.com": [14808], "images.justgiving.com": [8845], "ouvadmin.ouvaton.coop": [12360], "dftba.com": [4105], "www.knot-resolver.cz": [20613], "r.cowtech.it": [2053], "www.rublacklist.net": [14249], "hetlnvloket.nl": [11324], "biz.points.yahoo.co.jp": [18944], "seal.entrust.net": [5406], "www.ploum.net": [13043], "wiff.us": [2053], "nl.libreoffice.org": [9471], "50b.me": [2053], "m.mk2.com": [20808], "*.coremetrics.com": [3731], "ns-cdn.neustar.biz": [11472], "ca.evanced.info": [5539], "haskellonheroku.com": [7362], "l.cmoretti.it": [2053], "shb.myuni.sydney.edu.au": [21631], "tlk.bz": [2053], "cimbclicks.com.sg": [2664], "112wga.nl": [2053], "cdn.overclock.net": [12368], "www.ycombinator.com": [7273], "xbm.se": [2053], "bigboxsave.com": [1913], "my-mb.me": [2053], "icts.kuleuven.be": [8969], "creativecow.com": [3849], "apply.gemoney.com.au": [6432], "entrtnmnt.com": [2053], "prais.co": [2053], "*.passthepopcorn.me": [12635], "smartcity.wien.at": [22025], "*.adserver01.de": [669], "bigdecis.io": [2053], "99bitcoins.com": [243], "usc.one": [2053], "kbim.mcafee.com": [10282], "emoryhealthcare.org": [5313], "im.ov.yahoo.co.jp": [18944], "www.philosophynow.org": [12839], "www.stackoverflow.com": [15611], "minsk.usembassy.gov": [21879], "www.hao123.com": [20312], "philosophynow.org": [12839], "www.itao.com": [20507], "cdn.smugmug.com": [15260], "openideo.com": [12142], "isleaked.com": [8510], "west.tn": [2053], "www.netveano.com": [11448], "cdn.statimgs2.com": [3993], "springer-gabler.de": [15559], "hhmi.org": [7718], "*.volusion.com": [18132], "www.subconadmin.com": [15811], "fr.aldi.be": [338], "aq.meituan.com": [10405], "gnumeric.org": [6890], "visitor.wustl.edu": [18290], "kpxl.in": [2053], "anwers.billiondigital.com": [1936], "1111.ulpgc.es": [17411], "i.doctv.gr": [2053], "www.clarendon.ox.ac.uk": [17557], "nick7.co.uk": [2053], "api-secure.solvemedia.com": [15375], "*.tu-darmstadt.de": [16125], "www.mytemp.email": [10980], "secureapi.escrow.com": [5459], "www.dejure.org": [4398], "*.groups.et.byu.net": [1628], "www.zorrovpn.com": [19229], "www.seagate.com": [14679], "godzilla.websitealive.com": [18445], "qfri.co": [2053], "kepzes.sch.bme.hu": [1570], "me.1688.com": [44], "static.tinkoff.ru": [16748], "dbstatic.no": [19866], "reg.domainreseller.ru": [4754], "reia.ch": [2053], "www.denso-wave.com": [4447], "*.qrobe.it": [13540], "irishbroadband.ie": [8505], "tw.xxxxx.tw": [2053], "www.americanhunter.org": [19381], "x.exgame.lt": [2053], "www.northamptonshire.gov.uk": [20925], "login.webgo.de": [18361], "login.1und1.de": [82], "risimg.com": [2053], "bsaa.co": [2053], "www.designernews.co": [4468], "linux.oracle.com": [12284], "www.lshtm.ac.uk": [9739], "stripefees.com": [15783], "www.humblebundle.com": [7759], "pc.openx.com": [12193], "www.fraglive.cl": [6213], "accuri.de": [2053], "wwlks.org": [2053], "bnf.org": [2396], "sjbft.org": [2053], "listserv.uned.es": [17446], "tcp.fyi": [2053], "www.spogo.co.uk": [15536], "rss.warwickshire.gov.uk": [21980], "biderundtanner.ch": [19529], "belgacoin.com": [1813], "djw.cs.washington.edu": [17577], "jsh.mx": [2053], "golflink.net": [6947], "www.websetnet.com": [21996], "m.japanese.alibaba.com": [850], "courseapi.theguardian.com": [16554], "rravi7.info": [2053], "support.500px.com": [194], "annonce.borsen.dk": [2278], "sprav.yandex.by": [18953], "www.wnyc.org": [18211], "mbx.li": [2053], "www.resus.org.uk": [14053], "prettyeasyprivacy.com": [12714], "www.netbsd.org": [11375], "cz.o2.com": [16332], "pugh.pw": [2053], "www.edenhost.com": [5176], "clcvr.se": [2053], "rob.st": [2053], "www.okturtles.com": [11972], "www.ziplist.com": [19192], "netsemi.com": [11407], "ttix.it": [2053], "mayoclinic.org": [10272], "www.lwn.net": [9266], "www.plazakauppa.fi": [12335], "to.faearch.me": [2053], "btrman.me": [2053], "usg.to": [2053], "pcma.co": [2053], "www.istockphoto.com": [20505], "solutionpartner.cisco.com": [3221], "www.linuxplumbersconf.net": [9557], "domreg.lt": [4767], "oss-binaries.phusionpassenger.com": [12866], "marx.org": [10206], "www.rec-log.jp": [13875], "blossom.io": [2174], "zenmate.ie": [19133], "networking4all.com": [11466], "eu.soyoustart.com": [15299], "lagunita.stanford.edu": [15635], "tso.to": [2053], "fis.dudley.gov.uk": [4891], "urlpie.com": [2053], "creo.onl": [2053], "strx.co": [2053], "*.ivegotkids.com": [8548], "zenmate.it": [19133], "jdpt.link": [2053], "www.fsaregistration.ed.gov": [4988], "tasrace.in": [2053], "tails.thecthulhu.com": [16600], "gitcafe.com": [6796], "wv.ly": [2053], "mobileolo.gy": [2053], "wdmag.nl": [2053], "paimai.taobao.com": [16206], "uical.uic.edu": [17517], "i1.gallery.technet.s-msft.com": [14296], "www.securitykiss.com": [14765], "zalando.de": [19094], "cdn.trafficstars.com": [21776], "www.cloudflarestatus.com": [3362], "www.terragalleria.com": [16386], "*.edfenergy.com": [4989], "rcde.info": [2053], "instagr.am": [8330], "coliege.co": [2053], "meusig.no": [2053], "orhelp.osu.edu": [11959], "myidp.sciencecareers.org": [14620], "www.walsallhealthcare.nhs.uk": [11102], "www.portugal.gov.pt": [13170], "svn.python.org": [14440], "sportsblogs.post-gazette.com": [12945], "ems.wolverhampton.gov.uk": [18705], "*.ihg.com": [8380], "on.dstroy.co": [2053], "on.colbertnation.com": [2053], "nytimes.com": [11189], "nkl.as": [2053], "openidp.feide.no": [5858], "vladikavkaz.rt.ru": [13703], "andytyson.com": [1049], "www.browserscope.org": [22062], "exavault.com": [5581], "security.ias.edu": [7815], "url.fmk.de": [2053], "gee.co": [2053], "pickle.design": [2053], "jtt.im": [2053], "miltonkeynes.spydus.co.uk": [21546], "kivi.li": [2053], "*.wellsfargo.com": [18491], "ext.host-tracker.com": [7647], "help.burthub.com": [2509], "someserver.de": [15378], "i4.chaucanh.net": [2053], "erikump.com": [2053], "audioboo.fm": [1396], "rackspace.com": [13740], "www.bookacourse.com": [2253], "sgfe.st": [2053], "www.dropboxatwork.com": [4864], "p91.in": [2053], "scala.run": [2053], "infinet.com.au": [8241, 8242], "ccspca.us": [2053], "nilegui.de": [2053], "bama13.co": [2053], "www.zscaler.com": [19231], "npc4.net": [2053], "www.greenpeace-energy.de": [7060], "teachersassurance.co.uk": [16248], "pix.bit.ly": [2052], "aulis.plaza.fi": [12335], "www.parisschoolofeconomics.eu": [12608], "svn.pld-linux.org": [12471], "www.projecteuler.net": [13362], "urbandictionary.com": [17697], "wwww.limesurvey.org": [9517], "bclnanet.ml": [2053], "connect.kaltura.com": [8926], "netmeister.org": [11436], "m.sparebank1.no": [21524], "mngle.tw": [2053], "zimbra.xiala.net": [22083], "oxy.worldcat.org": [18748], "www.dudleyfoi.org.uk": [19967], "www304.americanexpress.com": [972], "ytri.us": [2053], "redo.to": [2053], "odeturusorgu.anadolu.edu.tr": [1025], "fluechtlinge.wien.at": [22025], "lfive.uk": [2053], "www.lincolnshire.gov.uk": [9525], "help.pay.sina.com.cn": [15086], "www.conviva.com": [3698], "buzzvpn.com": [2533], "66option.com": [211], "computerlabsolutions.com": [3600], "*.unimi.it": [17475], "bgmma.com": [2053], "www.qiwi.com": [13533], "ipv6.tunnelbroker.com": [17109], "www.arcadeflex.com": [5326], "go.ryland.com": [2053], "odintsovo.beeline.ru": [1801], "www.havering.gov.uk": [7377], "websocially.com": [18384], "discuss.citra-emu.org": [19718], "www.campina.es": [2841], "twc.sg": [2053], "espanol.crocs.com": [3878], "www.cryptostore.ru": [19829], "meta.mathoverflow.net": [15611], "www.tverweek.com": [21824], "www.calispora.org": [2811], "prit.ly": [2053], "www.smartplanet.com": [15237], "dcard.tw": [19869], "images.vg247.com": [21916], "www.pledgie.com": [13033], "ipv6.nebezi.cz": [11317], "franceserv.fr": [6216], "hellojohn.co": [2053], "buffered.io": [2461], "scloby.co": [2053], "miraisk.net": [2053], "shrinktheweb.com": [14991], "sg.sg": [2053], "mensaplan.de": [10434], "www.vps.net": [17800], "jslog.krxd.net": [9167], "betway.mx": [2053], "puls.uni-potsdam.de": [17618], "www.tab-beim-bundestag.de": [21645], "www.secularhumanism.org": [14717], "inspire.st": [2053], "staging.data.gov": [4253], "geo.digitalpoint.com": [4581], "*.h-da.de": [4234], "*.o2online.de": [11801], "*.livefyre.com": [9670], "cnfttave.co": [2053], "ssl.opera.com": [12252], "customerservice.kirklees.gov.uk": [9067], "s62.cnzz.com": [3391], "gardeni.st": [2053], "www.travis-ci.com": [16976], "my.psoft.net": [13172], "sgne.ws": [2053], "www.indiemerchandising.com": [8219], "www.skat.dk": [15144], "bhhc.co": [2053], "yya.be": [2053], "proofpoint.com": [13381], "leytto.in": [2053], "www.hostr.co": [7687], "snd.tf": [2053], "ls.1688.com": [44], "m.vtb24.ru": [21961], "www.tritonlink.ucsd.edu": [17216], "meetups.jquery.com": [8598], "visophyte.org": [18071], "casperogfrank.dk": [2945], "static1.holidayextras.com": [7595], "p1r.es": [2053], "linenfinder.co": [2053], "tfir.es": [2053], "3d88duefqgf2d7l2p18hja4194m.wpengine.netdna-cdn.com": [9670], "newton.teksyndicate.com": [16321], "walkit.com": [21968], "geni.net": [6435], "kit.mondediplo.com": [10729], "alloscomp.com": [898], "w-a.link": [2053], "flmhs.tv": [2053], "wwwtst.pnpr.jp": [2053], "banners.victor.com": [17962], "www.save-notes.com": [14549], "mehura.jp": [2053], "iapt-sglos.awp.nhs.uk": [11102], "*.english-country-cottages.co.uk": [18790], "lhc-mpwg.web.cern.ch": [2632], "tis.im": [2053], "boko.in": [2053], "broadbandbuyer.co.uk": [2405], "faq.amextravel.com": [943], "cocolink.cc": [2053], "pirateproxy.yt": [21711], "www.discoverbsd.com": [4634], "interspire.com": [1906], "rdaily.co": [2053], "fave.co": [2053], "thp.io": [16657], "weike.jd.com": [8571], "blog.linuxmint.com": [20699], "wicap.co": [2053], "bigstockphoto.com": [1920], "zhaopin.jd.com": [8571], "api.ftp-master.debian.org": [4353], "ggtv.net.au": [2053], "verizon.mcafee.com": [10282], "soc.att.com": [2053], "prvwst.us": [2053], "kmd.easycruit.com": [5124], "tv.planeta.ru": [21143], "secure.clearcenter.com": [3288], "estore.ti.com": [16413], "p64.eu": [2053], "www.sunglasswarehouse.com": [15856], "publikdemand.com": [13446], "de.bdc.cat": [2053], "www.mbdetox.com": [9886], "vidds.ee": [2053], "accounts.wizards.com": [18687], "tshrtnr.com": [2053], "enru.dict.cc": [4536], "visit.sc": [2053], "pictures.dealer.com": [4334], "kthr.in": [2053], "mltsr.org": [2053], "efile.sccassessor.org": [14578], "muspy.com": [10914], "china.isidewith.com": [20414], "www.playwarz.com": [18272], "www.paperspace.io": [12587], "www.delaware.gov": [15673], "strant.com": [2053], "sas.css.microsoft.com": [10543], "scummvm.org": [14672], "fanoe.dk": [5770], "blaiz.be": [2053], "tn123.org": [21751], "healthyeater.com": [7403], "radpill.com": [2053], "col.stc.s-msn.com": [14297], "www.e-rewards.com": [4958], "*.muenchen.de": [10875], "*.insft.com": [8285], "webapps.jhu.edu": [16562], "corp.rakuten.co.jp": [13767], "*.semiaccurate.com": [14815], "syng.ma": [2053], "eels.co": [2053], "sebastianwick.net": [14699], "www.thc.org": [16065], "dailyinfo.co.uk": [4201], "pskov.rt.ru": [13703], "*.lww.com": [9598], "motb.co": [2053], "www.synergy-foss.org": [15990], "met1.hp.com": [7516], "www.apress.com": [1177], "eventim.fi": [9600], "www.wilderssecurity.com": [18606], "*.gotransit.com": [6484], "nervoussystems.org": [11356], "www.freedom-to-tinker.com": [6285], "gamefly.gameflycdn.com": [6538], "l.edemmester.hu": [2053], "www.bidtellect.com": [1901], "s10wly.tk": [2053], "static.theadex.com": [16597], "classes.osu.edu": [11959], "lurkmo.re": [9838], "gb.jd.com": [8571], "31dayson.info": [2053], "www.sciencealert.com": [21383], "tuvdotcom.com": [3692], "slipplate.com": [14371], "ncle.co": [2053], "www.moevideo.net": [10717], "freeyourandroid.org": [6273], "www.careers.tvnz.co.nz": [16141], "mnino.com": [2053], "bishan.meituan.com": [10405], "gla.ac": [2053], "*.mellanox.com": [10413], "bendon.co": [2053], "avira.ideascale.com": [20423], "hvidovrekajakklub.dk": [7782], "*.internet.bs": [8424], "www.miracl.com": [20804], "cdn.whappodo.com": [18524], "lurkmore.co": [9838], "mpfmembers.org.uk": [20839], "campaignmonitor.com": [2839], "learn.utdol.com": [2053], "trustee.ietf.org": [7868], "jmnt.co": [2053], "mazout-migrol.ch": [10562], "svn.sukimashita.com": [15844], "download.macromedia.com": [9999], "*.panel.home.pl": [7610], "www-stage.oracle.com": [12284], "sonyentertainmentnetwork.com": [15398], "ibqonline.com": [8049], "www.providesupport.com": [13401], "trading.markets.hsbc.com": [7233], "www84.smartadserver.com": [15228], "www.microchipdirect.com": [10534], "www.heatst.com": [7414], "babel.hathitrust.org": [7371], "secure.wistia.com": [18678], "www.livememe.com": [9653], "scpnewsgrp.com": [2053], "www.finka.pl": [5962], "www.assistance-multimedia.fr": [1319], "eun.io": [2053], "itwinterclose.stanford.edu": [15635], "apps.community.adr.org": [19298], "contact.boat.voyagegroup.com": [18154], "sims-prd.sfu.ca": [14893], "wfl.me": [2053], "customer.cyberplat.ru": [4047], "static.webyog.com": [18470], "gngr.info": [6883], "www.siit.tk": [3597], "demo.odoo.com": [11926], "www.xiscosoft.info": [18879], "www.tv.com": [16133], "*.macainfo.org": [9990], "assets.qa.medicare.gov": [20772], "www.paxvapor.com": [21087], "bunkus.org": [19611], "www.plantcommunity.de": [12994], "louismilan.com": [9783], "shop.joomla.org": [8776], "*.adoptionlink.co.uk": [19297], "www.nsn.com": [11656], "jianli.meituan.com": [10405], "univadis.net": [2053], "secure.bigbrother.se": [1909], "yoursay.houseoffraser.co.uk": [7709], "cineble.com": [3203], "pages.cloudbees.com": [19736], "contributoria.com": [3687], "fpcomplete.com": [5704], "cdn.bonosrama.newsvine.com": [11541], "gdtl.engineering.osu.edu": [11959], "www.grit.io": [7084], "brinkster.com": [2388], "rhs.us.to": [2053], "nicoleruss.in": [2053], "www.eyeboot.com": [5646], "eservice.sony.com": [15393], "www.lonelyplanet.com": [9750], "img02.taobaocdn.com": [16207], "azrs.tk": [2053], "staging.piwik.org": [12950], "kazned.ru": [20581], "voiles.io": [2053], "www.renrencaopan.com": [14005], "www.surveygizmo.com": [15913], "mtmweb.biz": [10356], "poolp.org": [13125], "www.oxford.gov.uk": [21053], "lacrossealerts.com": [9272], "sitecheck.sucuri.net": [15829], "n.rivals.com": [21313], "static2.gac.edu": [6418], "qa.fastmail.com": [5804], "systemli.org": [16019], "itfutur.es": [2053], "eftplus.asia": [5008], "goaruna.com": [6895], "companiesintheuk.co.uk": [3572], "www.envoyer.io": [5415], "girv.cc": [2053], "mpfund.uk": [20840], "www.womensexpova.com": [18707], "apic.douyucdn.cn": [4813], "innsida.ntnu.no": [11153], "rutlandcounty.moderngov.co.uk": [20816], "zh.functions-online.com": [20187], "www.verisign.ch": [17915], "weborder.active24.co.uk": [19274], "ebhbooks.us": [2053], "online-emr.com": [12075], "tdsc.click": [2053], "blogtalkradio.com": [2156], "www.paycheckrecords.com": [12683], "mast.stanford.edu": [15635], "sckchr.ps": [2053], "www.agilebits.com": [765], "so53.info": [2053], "pscom.org.za": [2053], "*.creativevirtual.com": [3855], "qa-advertising.paypal.com": [12678], "oa.dingtalk.com": [19923], "fr.about.aegeanair.com": [7041], "*.light-paint.com": [9503], "googlefu.link": [2053], "siex.us": [2053], "leic.ht": [2053], "cdn.stormfront.org": [15754], "samsungmobile.accu-weather.com": [503], "url.mjrasta.com": [2053], "headstre.am": [2053], "stayfriends.at": [15698], "forceb.co": [2053], "ngop.co": [2053], "aanze.eu": [2053], "account.leagueoflegends.com": [9362], "library.brown.edu": [2421], "wiki.torrent411.com": [16036], "agrwl.us": [2053], "shop.vodafone.co.uk": [18106], "forum.vodafone.de": [18107], "cpcty.to": [2053], "www.inventhelp.com": [8461], "www.stirling.gov.uk": [15731], "*.accc.gov.au": [1422], "s.techbana.com": [2053], "hitslink.com": [7568], "support.vitalsource.com": [21930], "sigterm.no": [15028], "my.enahost.com": [5330], "w.pairs.lv": [2053], "telecom.sk": [16346], "js.final4ever.com": [5934], "trunk.evernote.com": [5556], "ucsf.worldcat.org": [18748], "mybank.cn": [20861], "simonv.uk": [2053], "smartplanet.com": [15237], "www.movie2k.nu": [10823], "www.wyndhamrentals.com": [18790], "*.bangordailynews.com": [1688], "www.webzilla.com": [18396], "share.dre.io": [2053], "*.tmpwebeng.com": [16086], "zugaina.org": [19237], "infokuis.xyz": [2053], "tech.zalando.com": [19094], "cjunk.es": [2053], "docs.wto.org": [18229], "www.questionablecontent.net": [13587], "corpub.ro": [2053], "invoca.com": [8477], "motleydenim.eu": [2053], "vcr.bz": [2053], "asfw.refin5.co": [2053], "comms.anz.co.nz": [19399], "android.tv4play.se": [16137], "maspho.us": [2053], "www.mysql.com": [10970], "tmall.hk": [16786], "natren.me": [2053], "10.root.cz": [14199], "ds.org.za": [2053], "tools.taskcluster.net": [16222], "nnjpr.de": [2053], "researchbriefings.parliament.uk": [21074], "qtastatic.com": [13548], "*.vanillaforums.com": [17851], "ads.smartstream.tv": [15247], "gsir.ca": [2053], "projet-coclico.org": [3403], "cms.citrixonline.com": [3238], "www.wolfson.cam.ac.uk": [2820, 17529], "www.armenpress.am": [19418], "www.nearlyfreespeech.net": [11313], "b1.raptrcdn.com": [21256], "*.humanbrainproject.eu": [7752], "blogs.plos.org": [12474, 13434], "fxm.li": [2053], "on.dailym.net": [2053], "www.talkable.com": [21657], "thoughtstreams.io": [16654], "energimanager.dongenergy.dk": [4151], "www.sitepoint.com": [15117], "jobs.georgetown.edu": [6668], "withgoogle.com": [18681], "forums.tesla.com": [21680], "l.trippiece.com": [2053], "wms.assoc-amazon.com": [1323], "i.arantxanb.net": [2053], "lighttpd.net": [9507], "blog.pinboard.in": [12891], "raltay.rt.ru": [13703], "*.berlios.de": [1841], "hackyourselffirst.troyhunt.com": [21798], "www.jadi.net": [8638], "acceo.jobs": [2053], "shangxiguan.jd.com": [8571], "get.opera.com": [12252], "i.flubox.fr": [2053], "secure.game.se": [6420], "objednavka.active24.sk": [19281], "alumni.princeton.edu": [13291], "zdnet.com.au": [19065], "spigen.co": [2053], "3dvisionlive.com": [150], "stec-t12.xhcdn.com": [18815], "rdml.it": [2053], "static1.theiconic.com.au": [16558], "*.porn-w.org": [13152], "lumo.me": [9831], "mapillary.com": [10135], "preview.msn.com": [9961], "ishop.qiwi.com": [13533], "aktiiviraha.fi": [7317], "hrpo.wustl.edu": [18290], "landlord.cambridge.gov.uk": [19630], "popi.stalbans.gov.uk": [21563], "thmsfsh.co": [2053], "ms0.meituan.net": [10405], "dgt-te.in": [2053], "transit.land": [16944], "gmail.com": [6971], "img.beeg.com": [19511], "*.anonymous-proxy-servers.net": [8772], "cspr.me": [2053], "cbs.com": [2584], "www.ietf.org": [7868], "www.disc-soft.com": [4624], "rzr.sg": [2053], "account.wildstar-online.com": [18602], "convertkit.com": [3695], "www.damballa.com": [4205], "dolinsk.sakh.com": [21360], "barbican.org.uk": [1709], "www.insurance.va.gov": [17297], "cultureme.sh": [2053], "finance.car.com": [2886], "*.this-download-would-be-faster-with-a-premium-account-at-good.net": [6954], "libraryebooks.co.uk": [20677], "taymyrskiy-mr.beeline.ru": [1801], "img.s-msn.com": [14297], "nj02all02.baidupcs.com": [1663], "booking.tigerair.com.au": [16710], "webresource.its.calpoly.edu": [2806], "forms.aweber.com": [416], "turkish.alibaba.com": [850], "tune.com": [21812], "pak.horse": [2053], "internationalman.com": [8411], "www.bettercrypto.org": [1879], "l.egal.bz": [2053], "lists.gforge.inria.fr": [8309], "netnod.se": [11438], "ping.dozuki.com": [4828], "meaa.io": [2053], "contacts.zoho.com": [19202], "nadir.org": [11197], "epars.wustl.edu": [18290], "gastrojob.jetzt": [2053], "siteblindado.com": [15123], "*.posportal.com": [12484], "ezaccessory.com": [5648], "znaturalfoods.com": [19084], "www.collabora.ca": [3481], "congresos.uned.es": [17446], "pabudget.state.gov": [17345], "conferences.uillinois.edu": [17238], "www.oesrc.researchcompliance.vt.edu": [18031], "player.pulpix.co": [13451], "fordele.tdc.dk": [16051], "wiki.vuze.com": [18175], "paddleapi.com": [12528], "developer.qualcomm.com": [13558], "cafegate.com": [2776], "bestwecando.ourproject.org": [21044], "www.singlehop.com": [15094], "kccr.me": [2053], "chelyabinskaya-obl.beeline.ru": [1801], "hvosting.ua": [7783], "card2card.bankuralsib.ru": [1699], "demouk.spydus.co.uk": [21546], "lists.ubuntu-eu.org": [17374], "go.area801.com": [2053], "bfa.st": [2053], "cdn.coderwall.com": [3439], "www.allshareplay.com": [878], "redwb.co": [2053], "gnikn.us": [2053], "trendd.co": [2053], "m.svh.cc": [2053], "dl.google.com": [6962], "kcc.webhostone.de": [18418], "protect.tacticaltech.org": [16156], "ems.southglos.gov.uk": [15438], "publit.as": [2053], "www.popular.com.tw": [13146], "xs01.meituan.net": [10405], "man.gl": [2053], "ccccloud.com": [2597], "s-work.tv": [2053], "esupport.trendmicro.com": [16993], "supportcommunity.swisscom.ch": [15951], "www.ht.vc": [7731], "www.travelocity.com": [16973], "yelp.com.tw": [18979], "*.foxydeal.com": [6206], "benedikt-bitterli.me": [1827], "www.brendaneich.com": [2355], "viagem.catracalivre.com.br": [2967], "train2web.wustl.edu": [18290], "*.ccavenue.com": [2591], "piwik.sysmocom.de": [16010], "seo.georgetown.edu": [6668], "iufoundation.iu.edu": [8214], "www.video.yandex.kz": [18957], "www.periscope.tv": [12785], "hcc.web.cern.ch": [2632], "dialogic.com": [19912], "www.redwoodsinyosemite.com": [13935], "ploum.net": [13043], "register.plos.org": [13434], "cmscdn.staticcache.org": [15684], "oam.tdc.dk": [16051], "mrvan.ca": [2053], "abandonus.link": [2053], "wun.io": [2053], "support.octoshape.com": [11917], "www.soundviz.com": [15407], "yourta.com": [2053], "media2.wnyc.org": [18211], "sevenoaks.gov.uk": [14882], "vdv.de": [17770], "winegeo.me": [2053], "www.clicky.visophyte.org": [18071], "onaru.co": [2053], "www.digitalocean.com": [4578], "www.madametussauds.com": [10002], "g.tbcdn.cn": [16237], "rentler.com": [14011], "support.checkpoint.thomsonreuters.com": [16650], "hkfd.io": [2053], "origin.images.webs.com": [18440], "republicwi.re": [2053], "tbib.org": [16238], "kellydelay.to": [2053], "www.cio.illinois.edu": [17544], "www.directbox.com": [4613], "statics2.beauteprivee.fr": [1791], "on.tendo.hk": [2053], "www.evga.com.au": [5085], "www.tenon.com": [16374], "jwplayer.com": [9752], "hjv.kursuslogin.dk": [7578], "*.successfactors.com": [15826], "engineeringforchange.org": [5369], "learning.microsoft.com": [10543], "career.rakuten.co.jp": [13768], "www.grctech.com": [6498], "www.galleryofguns.com": [20196], "www.deutschepost.com": [19901], "*.datacamp.com": [4254], "mail2web.com": [15339], "on.theknife.net": [2053], "nataliebennett.greenparty.org.uk": [7052], "www.green-wood.com": [7043], "rickyw.co": [2053], "l.misfitrad.io": [2053], "www.monthlyreview.org": [10756], "hostr.co": [7687], "volc.io": [2053], "help.dkit.ie": [4114], "deno.dict.cc": [4536], "swivelf.ly": [2053], "mixbit.com": [10654], "cas.fbm.vutbr.cz": [17814], "a.swagbit.ch": [2053], "gaoyang.meituan.com": [10405], "m.google.*": [6965], "mzip.it": [2053], "just-eat.co.uk": [20565], "www.redbullmobile.at": [13904], "sharpmen.com": [14929], "app.geofeedia.com": [20224], "wcts.co": [2053], "proportal.oaklands.ac.uk": [20976], "*.strongswan.org": [21593], "theengineroom.org": [16595], "cntr.sc": [2053], "myinmon.com": [10998], "renqiu.meituan.com": [10405], "static.hugedomains.com": [7746], "dan.me.uk": [4208], "*.psu.edu": [12750], "downloads.commotionwireless.net": [3561], "de.pcisecuritystandards.org": [12428], "pod.orkz.net": [12314], "tripwell.com": [17024], "lists.nuug.no": [11169], "brennancenter.org": [2356], "cntr.st": [2053], "auct.io": [2053], "yaz.link": [2053], "torrent.tm": [16848], "*.w3roi.com": [1504], "forum.hashkiller.co.uk": [20317], "www.31tv.ru": [123], "enjoy.com": [5380], "www.wien.at": [22025], "job.cnblogs.com": [19743], "habrahabr.ru": [7262], "savage2.com": [14300], "leroy.co": [2053], "time.yandex.com.tr": [18954], "hlblog.capitalone.com": [2878], "*.denh.am": [4441], "tiwyaw.com": [2053], "transparencyreport.uber.com": [17368], "community.1und1.de": [82], "koho8.com": [2053], "www.bankir.ru": [19484], "yotuku.cn": [22109], "statefarm.com": [15671], "herofund.whitehelmets.org": [22017], "delaluz.mx": [2053], "www.tag1consulting.com": [16158], "alrt.me": [2053], "photoblab.com": [12851], "tenable.com": [16370], "freekib.com": [2053], "www.courtneyluv.com": [2185], "lists.kernelnewbies.org": [20586], "secure.clickability.com": [4925], "www.jethrocarr.com": [8709], "workaround.org": [18742], "www.gettyimages.com.au": [6741], "www.mankier.com": [10122], "x.annihil.us": [1071], "intranet.nic.cz": [11572], "ap.uniregistry.com": [17482], "www.amica.com": [993], "tyarn.com": [2053], "*.giving.buffalostate.edu": [2458], "clik.ga": [2053], "lokaty-bankowe.money.pl": [10734, 10735], "bit.inv.tech": [2053], "help-assets.soundcloud.com": [15410], "srna.sk": [15593], "tpbunblocked.org": [21711], "crshlv.ly": [2053], "pcvlab.ceegs.ohio-state.edu": [11960], "apsia.online": [2053], "e-man.me": [2053], "jingjiang.meituan.com": [10405], "nani.gs": [2053], "product.getsatisfaction.com": [6738], "go.idmnet.bbelements.com": [1764], "outsde.in": [2053], "chrscld.xyz": [2053], "polycat.lib.calpoly.edu": [2787], "login.sucuri.net": [15829], "me.washington.edu": [17576], "webmail.ie.cuhk.edu.hk": [2747], "www.webclaim.net": [4993], "on.fb.me": [2053], "docs.sonatype.com": [15381], "www.venuscafem.com": [17904], "c.1tw.org": [57], "scrib.me": [2053], "www.postfinance.ch": [13176], "api-v1-stage.websitealive.com": [18445], "bathsa.lt": [2053], "c-ware.de": [2555], "slovari.yandex.kz": [18957], "www.greenpeace-magazin.de": [7062], "greenpeace-magazin.de": [7062], "createspace.com": [3842], "trucks.autotrader.co.uk": [19457], "avoinministerio.fi": [19466], "www.etretouchy.com": [5499], "photon-link.com": [2053], "rober.link": [2053], "dongguan.jd.com": [8571], "j.okmg.club": [2053], "www.hosthorde.com": [7657], "www.siteuptime.com": [15122], "www.zmanda.com": [19198], "hijk.eu": [2053], "shodan.io": [14957], "accounts.zoho.com": [19202], "cas.uvm.edu": [17353], "imsr.me": [2053], "s3.rationalcdn.com": [21261], "pro.darkreading.com": [17204], "chs.cc": [2053], "*.gaiaonline.com": [6522], "tidalhifi.com": [16701], "*.hosted.exlibrisgroup.com": [5579], "www.gradescope.com": [7009], "www.imageraider.com": [20434], "carm.illuminateed.com": [20430], "dl.https.cl": [2053], "totalchoicehosting.com": [16873], "mediapost.com": [10328], "sv.piliapp.com": [12887], "slp.somerset.gov.uk": [15376], "www.scoding.de": [21385], "*.yelp.co.nz": [18979], "owp.sccgov.org": [14579], "dept.dict.cc": [4536], "shr.li": [2053], "www.capify.org": [2876], "www.europeancensorship.eu": [5532], "fritz.im": [2053], "disabilitystudies.osu.edu": [11959], "teach.udemy.com": [17393], "www.torrents-time.com": [21762], "fs17.formsite.com": [20148], "hornbach.ch": [7640], "zhaoshang.tmall.com": [21748], "login.opendns.com": [12130], "wwrr.co": [2053], "forum.hornbach.at": [7640], "blog.whiteout.io": [18554], "futureboy.us": [6401], "www.shoebuy.com": [14959], "bce.baidu.com": [1661], "retsinformation.dk": [14063], "doc.difi.no": [4547], "unizar.es": [17643], "aurza.co": [2053], "e2.boxcdn.net": [2306], "pamela.biz": [12556], "forum.bitcoin.org": [1980], "www.quantixtickets1.com": [13569], "www.tripadvisor.co.nz": [21793], "detr.dict.cc": [4536], "acr.tw": [2053], "info.timst.com": [2053], "se7ens.in": [2053], "dd2.cc": [2053], "aspinalls.club": [2053], "coxdigitalsolutions.com": [3807], "bryansk.beeline.ru": [1801], "www.dsg.cs.tcd.ie": [16044], "www.cryptdown.eu": [3914], "ggtoon.lezhin.com": [20672], "lists.balabit.hu": [19480], "issues.shibboleth.net": [14947], "ais.by": [19333], "oic.lcsd.gov.hk": [7211], "l.chebat.pro": [2053], "sesplan.objective.co.uk": [20979], "greenvehicleguide.gov.au": [7048], "www.landalskilife.com": [18789], "vrsa.co": [2053], "t-shirt.deals": [2053], "www.gimpfoo.de": [6451], "blog.compose.io": [3590], "discounts.aarp.org": [270], "portmoresby.usembassy.gov": [21879], "uib.li": [2053], "rad1o.badge.events.ccc.de": [2596], "assets0.github.com": [6801], "www.rack911.com": [13729], "*.websocially.com": [18384], "tdhur.st": [2053], "skyhi.me": [2053], "mail.udngroup.com": [17224], "shaoshan.meituan.com": [10405], "public.dhe.ibm.com": [7821], "subscription-assets.timeinc.com": [16731], "www.fsdata.se": [5718], "cnflncr.me": [2053], "bayproxy.press": [21217], "www.tricue.com": [16997], "realty.mail.ru": [10040], "ak.c.ooyala.com": [12099], "job.lineup.vn": [2053], "www.boots.ie": [2268], "ubuntu.com.cn": [17372], "recruiters.newscientist.com": [11490], "mmcny.org": [2053], "huuto.net": [20398, 20399], "heidi.migros.ch": [10566], "sunshineweek.org": [15862], "hivelocity.net": [7571], "ssl1.ovh.net": [12378], "free-tv-video-online.me": [6236], "ufcw8.us": [2053], "unm.is": [2053], "m3.idg.se": [7852], "*.frooition.com": [6345], "cai.itsc.cuhk.edu.hk": [2747], "moctu.com": [2053], "www.goexplore.net": [6902], "*.dnb.no": [4132], "darkmatter.cyberguerrilla.org": [4033], "on.ysupr.net": [2053], "downloadcenter.intel.com": [8359], "p.sf.net": [15423], "mcbsa.org": [2053], "api.appear.in": [1153], "www.hauke-m.de": [7372], "poz.si": [2053], "wiki.debian.org": [4353], "oztech.me": [2053], "fuqing.meituan.com": [10405], "www.eforms.rbkc.gov.uk": [21266], "opennet.ru": [12158], "iana.org": [7813], "www.isoc24.com": [7975], "7ent.co": [2053], "envirocall.newcastle.gov.uk": [11507], "kz.meituan.com": [10405], "*.brainyquote.com": [2328], "cyberpowerpc.com": [19843], "baise.meituan.com": [10405], "pidg.in": [12883], "blog.intercom.io": [8392], "mari-sa.co": [2053], "d.dellamoda.com": [2053], "info.local.ch": [9697], "im.ag": [2053], "s.cci-vk.de": [2053], "shby.co": [2053], "short.jtray.me": [2053], "touch.otvet.mail.ru": [10040], "www.tdc.dk": [16051], "www.dogsbodytechnology.com": [4723], "fosb.us": [2053], "moscow.usembassy.gov": [21879], "cust.io": [2053], "search.americanexpress.com": [972], "facebook.it": [5736], "www.obsproject.com": [11808], "subscriptions.nzherald.co.nz": [11506], "facebook.is": [5736], "trillian.im": [17011], "www.officeworks.com.au": [11952], "yaoi.kr": [2053], "support.appsflyer.com": [1171], "www.easypress.ca": [5131], "latg.co": [2053], "origin.pubmatic.com": [13422], "marketplace-used.com": [10183], "www.pandaexpress.com": [12560], "people.csail.mit.edu": [9916], "dubel.in": [2053], "albertinesw.im": [2053], "duoestudio.link": [2053], "www.trello.com": [16986], "mail.yandex.by": [18953], "intranet.uillinois.edu": [17238], "ghazisaeidigroup.engineering.osu.edu": [11959], "askjb.me": [2053], "www.citibank.com": [3230], "imaginif.eu": [2053], "www.virustotal.com": [18048], "www.timex.com": [16738], "www.register.ie": [4597], "login.digicert.com": [4556], "slides.com": [15209], "alfamob.co": [2053], "lslv.es": [2053], "www.inboxapp.com": [8188], "t.pdabr.com": [2053], "tidstyv.difi.no": [4547], "filialen.migros.ch": [10566], "schum.in": [2053], "42floors.com": [170], "trysuperbgreencoffee.com": [17081], "honorcross.me": [2053], "hs91.uk": [2053], "s.shabooty.com": [2053], "gamefly.com": [6537], "edit.bulkorder.ftc.gov": [5837], "images.somethingawful.com": [15379], "psychiatry.stanford.edu": [15635], "media-curse.cursecdn.com": [4006], "icbi.georgetown.edu": [6668], "hilfe.webgo24.de": [18362], "api.keen.io": [8989], "evans.tips": [2053], "catarse.me": [2958], "petcu.be": [2053], "lincang.meituan.com": [10405], "fiesta.gamigo.com": [6563], "sh2.org": [2053], "thepiratebay.bypassed.pw": [21217], "appdb.winehq.org": [18652], "*.lvoc.org": [9265], "*.jumpingjack.com": [8827], "itsglamoro.us": [2053], "support.namecheap.com": [11208], "jms.bz": [2053], "service1.internet2.edu": [8427], "www.voys.nl": [18155], "drkul.id": [2053], "www.osu.edu": [11959], "www.torrentprivacy.com": [16853], "emsi.worcestershire.gov.uk": [22046], "curo.co.za": [4004], "detail.huobi.com": [7769], "www.dwheeler.com": [4168], "mashery.com": [10210], "gosw.im": [2053], "www.orbital-apps.com": [12294], "registrierung.raiffeisen.ch": [13761], "apadv.co": [2053], "www.servery.cz": [21416], "*.statesmanjournal.com": [15676], "z-j.co": [2053], "secure.gettyimages.com": [6741], "dartlang.org": [4235], "versacart.com": [17925], "egeg.gs": [2053], "www.au.org": [986], "zajac.la": [2053], "www.soup.io": [15415], "ii.nlm.nih.gov": [11241], "hak5.org": [7298, 7299], "www.dms-sweden.com": [4121], "srvt.org": [2053], "*.livestrong.com": [9663], "profitbricks.de": [13356], "people.nasa.gov": [11058], "teresa.cce.com": [2930], "r.hkbsc.net": [2053], "hashi.co": [2053], "r.alch.xyz": [2053], "maps.georgetown.edu": [6668], "jira.cyanogenmod.org": [4026], "support.arpnetworks.com": [5030], "yabopu.sh": [2053], "northnorfolk.greenparty.org.uk": [7052], "vouchercodes.co.uk": [21952], "register.bg": [13964], "hipservice.live.com": [9644], "images.instagram.com": [8331], "laravel-news.com": [9309], "president.osu.edu": [11959], "lkstudent.com": [2053], "harris.co": [2053], "stpr.es": [2053], "dagensbedste-dbapp.netdna-ssl.com": [4185], "hsivonen.fi": [7253], "*.silkn.com": [15038], "www.reportingproject.net": [14019], "*.dmstatic.com": [4182], "www.angelikafilmcenter.com": [1054], "flckr.ml": [2053], "www.informatik.uni-ulm.de": [21850], "revv.rubiconproject.com": [14247], "piwik.accessnow.org": [485], "x.empece.info": [2053], "client.jabbi.pl": [8627], "schooladmissions.wirral.gov.uk": [18672], "tail.gr": [2053], "*.forocoches.com": [6166], "www.pacsec.jp": [12512], "www.fareham.gov.uk": [5775], "zenbox.click": [2053], "www.yourmembership.com": [19032], "zrg.io": [2053], "www.pacs.wustl.edu": [18290], "*.namecentr.al": [11207], "s1.cnzz.com": [3391], "my-beta.variomedia.de": [17860], "damballa.com": [4205], "pand.as": [2053], "sprinklr.com": [21544], "jeds.me": [2053], "cyberguerrilla.info": [4032], "www.sharethenetwork.com": [14915], "mpil.us": [2053], "ddlvalley.eu": [19877], "cyoa.co": [2053], "s.lilm.in": [2053], "paut.mx": [2053], "www.effectivemeasure.net": [5208], "paulschou.com": [21085], "dubs.at": [2053], "sj4.us": [2053], "releases.linaro.org": [9522], "postgresql.us": [13200], "on.vuck.nl": [2053], "mshare.net": [10602], "chuvashiya.rt.ru": [13703], "www.partyprogress.org": [12630], "go.gooley.co": [2053], "tripgigs.com": [2053], "ebook.money.pl": [10735], "mypu.sh": [2053], "*.mumzworld.com": [10891], "entp.hud.gov": [17296], "rta.tl": [2053], "go.fly.com": [2053], "amolivros.net": [2053], "hanty.rt.ru": [13703], "thejns.org": [8792], "*.carleton.ca": [2911], "w-o.it": [2053], "www.podfilter.de": [21157], "www.canddi.com": [19638], "cdn.anonfiles.com": [1082], "subscribe.courierpostonline.com": [3783], "low.es": [2053], "koid.in": [2053], "beats.is": [2053], "roada.me": [2053], "alt.coxnewsweb.com": [3809], "hivtest.cdc.gov": [19663], "l.odoketa.com": [2053], "t.album.youmix.co.uk": [19022], "m.magajin.jp": [2053], "libra.to": [2053], "www.givingprograms.com": [6813], "email.freenet.de": [6300], "myradiocreative.com": [11004], "ripe69.ripe.net": [14128], "derus.fr": [2053], "www.rvm.io": [13716], "eureka.uninett.no": [17477], "wgkl.im": [2053], "leads.infousa.com": [8259], "wilv.ga": [2053], "leads.demandbase.com": [4420], "tymovskoe.sakh.com": [21360], "www.beusergroup.co.uk": [16331], "directa.cat": [4612], "vis.immo": [2053], "juniors2016.com": [2053], "discsto.re": [2053], "www2.alibaba.com": [850], "btyfdbl.com": [2053], "*.moovweb.net": [10770], "tnfsh.tk": [2053], "wand.com": [18266], "imgdc.us": [2053], "kev.gs": [2053], "authorcentral.amazon.fr": [19371], "ticket.yandex.com": [18956], "dengta.meituan.com": [10405], "kids.rts.ch": [21550], "images.g.switchadhub.com": [15954], "portal.rz.htw-berlin.de": [7246], "l.giambo.org": [2053], "gwent.police.uk": [7163], "www.justsecurity.org": [8849], "doc.anwiki.com": [19398], "getsafeonline.org": [6722], "firelady.com": [5977], "lp.outbrain.com": [12355], "styin.me": [2053], "wwwmeleno.lurkmore.so": [9838], "brad.mn": [2053], "profiles.tmt.org": [16638], "www.wikileaksparty.org.au": [18594], "community.nationalarchives.gov.uk": [11254], "www.onlinesbi.com": [12072], "wusu.meituan.com": [10405], "obnd.co": [2053], "moatads.com": [10674], "amlk.uk": [2053], "www.creare.co.uk": [3839], "darkroom.taskforceonshalegas.uk": [16223], "s.guol.in": [2053], "james.pictures": [2053], "temai.etao.com": [5072], "www.winscp.net": [18629], "hmpph.jozz.xyz": [2053], "mnst.rs": [2053], "forms.rbwm.gov.uk": [21268], "int-mas.wiiings.com": [18587], "j.pave.com": [2053], "pixelx.de": [12953], "stylem.ag": [2053], "www.linearcollider.org": [9530], "www.popcorn-time.to": [21170], "p.ipont.ca": [2053], "rtd.tubemogul.com": [17089], "i.cdnpark.com": [2619], "hop.labs.coop": [2053], "find.my.t-mobile.com": [16026], "osf.to": [2053], "ru.opera.com": [12252], "dev.enaza.ru": [5332], "*.kenai.com": [8999], "www.lifeline.org.au": [9493], "jiml.me": [2053], "motigo.com": [10800], "chim.pn": [2053], "a.adaw.uk": [2053], "res.mobsec.ruhr-uni-bochum.de": [14267], "ii.cx": [2053], "s.4now.net": [2053], "melrose.eu": [2053], "q.melikyan.me": [2053], "nhsdirect.nhs.uk": [11100], "www.omni.media": [20991], "i.istockimg.com": [20504], "d.copsywrite.nl": [2053], "m.visiblebody.com": [18064], "www.weneedtoknow.info": [18319], "luema.fashion": [2053], "it.3.boardgamearena.com": [2219], "ites.so": [2053], "voxer.com": [18149], "www.operationfabulous.com": [12254], "cdns.usablenet.com": [17710], "ch-fr.norton.com": [11703], "static.blog.playstation.com": [13015], "*.wegohealth.com": [18480], "ves.io": [2053], "edu.kde.org": [8871], "www.wiki.hidekisaito.com": [7533], "rug.bi": [2053], "www.konami.com": [9125], "*.wral.com": [18225], "www.racf.bnl.gov": [19564], "mincommsy.uni-hamburg.de": [9911], "*.vtourist.com": [18042], "windows.net": [18643], "blog.fastly.com": [5803], "sfnmedia.com": [2053], "stc.utdstc.com": [21873], "*.http.cdn.softlayer.net": [15343], "centos.org": [3003], "lnks.me": [2053], "parkncu.be": [2053], "www.frozen-yogurt-franchise.org": [6350], "eye.gd": [2053], "www.gazetaexpress.com": [6600], "www.pingtest.net": [12093], "pureloto.com": [13473], "rapidgator.net": [13794], "*.visaliatimesdelta.com": [18058], "dc.cr": [2053], "a1s.unicdn.net": [17461], "*.nextag.fr": [11556], "www.talktalkbusiness.co.uk": [16185], "static3.wonderwall.com": [18714], "webtv.netcologne.de": [11379], "linuxcloudvps.com": [9579], "komoona.com": [9119], "www.pubsbenefits.acs.org": [966], "wix.gosquared.com": [6909], "mh.meituan.com": [10405], "thrmwr.nl": [2053], "www.mises.org": [10643], "cjb.uniovi.es": [17479], "eliminatejunkemail.com": [12540], "s7sps7.scene7.com": [14580], "java.twistedmatrix.com": [17162], "eveonline.com": [5084, 20072], "www.lowes.com": [9800], "d.stavrovski.net": [15693], "www.developermail.io": [4500], "admin.na5.acrobat.com": [520], "cendio.com": [2995], "whois.domaintools.com": [4750], "trmr.us": [2053], "lars.biz": [2053], "edbpr.dk": [2053], "www.btplc.com": [1590], "banym.de": [1707], "eastsussex.libraryreserve.com": [20678], "tacit.pub": [2053], "guides.thenextweb.com": [16568], "*.what.cd": [18526], "brulte.co": [2053], "anglsrch.net": [2053], "unglue.it": [17448], "enj0y4ja.cf": [2053], "h-tr.xyz": [2053], "k.eep.me": [2053], "www.madstein.at": [10009], "www.sweetandsourstudio.com": [15937], "*.sitemeter.com": [15129], "software.intel.com": [8359], "icaro.ual.es": [17361], "sumome.com": [21604], "csfd.blaboly.cz": [2053], "meet.jit.si": [8731], "ewmcdonald.com": [2053], "www.baltika.fm": [19482], "svn.alfresco.com": [843], "yahoo.yieldmanager.com": [14114], "snipt.net": [15284], "geniusdisplay.com": [20221], "www.submissiontechnology.co.uk": [15817], "plans.communitycares.com": [19762], "*.win-rar.com": [18628], "assets.sbnation.com": [14317], "www4-static1.gog.com": [6482], "insight.sensiolabs.com": [14831], "www.deri.ie": [11253], "chsweb.me": [2053], "ski.nensa.net": [2053], "atom.iop.org": [8345], "www.grad.washington.edu": [17577], "www.hkk.de": [7213], "openvz.org": [12189], "install.winzip.com": [18633], "api.random.org": [13780], "securemedia.newjobs.com": [11510], "mlend.co": [2053], "barmer-gek.de": [1720], "www.coloman.nl": [3501], "www.engineyard.com": [5367], "blogs.spectator.co.uk": [21527], "pfl.ag": [2053], "freesoundeffects.com": [6249], "dotcom-tools.com": [19951], "m.library.usyd.edu.au": [21885], "www.maemo.org": [10011], "3voi.es": [2053], "fdic.gov": [5827], "academics.usc.edu": [17564], "dnn.ly": [2053], "tmoya.us": [2053], "lyv.rs": [2053], "eventbrite.com": [5547], "eportal.schools.doncaster.gov.uk": [4770], "www.lindy.com": [9528], "export.cr.yp.to": [3817], "wiki.bitnami.com": [2062], "wakediv.school": [2053], "www.maysoft.com": [10268], "salestraining.apple.com": [1160], "m.aldi.be": [338], "admissions.warrington.gov.uk": [18280], "jrical.de": [2053], "uvo.gov.sk": [15217], "www.economy.com": [5163], "msights.co": [2053], "anonyproz.com": [1121], "s.styla.com": [2053], "esade.me": [2053], "nasadrones.thecthulhu.com": [16600], "www.zopa.com": [19226], "bada55.cr.yp.to": [3817], "youranimal.info": [2053], "mail.xen.org": [22080], "hmrp.pl": [2053], "*.jorsika.com": [2834], "www.va.gov": [17297], "*.ndchost.com": [11081], "t.jd.com": [8571], "vi.sa": [2053], "ligatus.at": [9502], "tracking.immobilienscout24.de": [8153], "cycl.chat": [2053], "s3.trafficmaxx.de": [16929], "shop.geocaching.com": [6664], "russellgroup.ac.uk": [14279], "directv2.ilovefreegle.org": [8037], "whomentors.info": [2053], "blog.zalando.com": [19094], "golfte.es": [2053], "kimberly-clark.com": [9042], "yorkfitness.com": [19003], "env.is": [2053], "fmkt.aero": [2053], "www.nsnam.org": [11749], "luxetvl.com": [2053], "w.erbloggt.de": [2053], "bzzzz.tk": [2053], "whitefence.com": [18548], "sml.ac": [2053], "iic.cisecurity.org": [2673], "www.mackeeper.com": [9984], "ftbnd.info": [2053], "beta.startmail.com": [15663], "www.pubkey.is": [13429], "3ple.link": [2053], "genius-upload.itunes.apple.com": [1160], "z2z.co": [2053], "pycon.sg": [13493], "xjzt.jd.com": [8571], "pressable.com": [13262], "on.jefftham.com": [2053], "vrtas.co": [2053], "necome.si": [2053], "shpock.com": [14990], "recode.net": [13882], "l.ksp.ca": [2053], "summerinstitutes.stanford.edu": [15634], "m.quel.jp": [2053], "www.globusvoyages.ch": [7698], "vocaroo.com": [18103], "zoomed.us": [2053], "*.imageshack.us": [8129], "www.micampuscompact.org": [10524], "jjtfl.com": [2053], "fullcontact.com": [6367], "login.usc.es": [17711], "4for4.co": [2053], "neustar.com": [11474], "www.mathias-kettner.de": [10232], "pkcommunitywatch.co.uk": [21141], "amblog.ashleymadison.com": [1290], "valflora.migros.ch": [10566], "cloud.disk42.com": [4647], "firm24.com": [5979], "pactified.com": [2053], "www.bigcartel.com": [1903], "h2o.examp1e.net": [5589], "macfound.fluxx.io": [6075], "b.kglover.net": [2053], "www.demonbuddy.com": [2284], "staging.ycharts.com": [18917], "gl.libreoffice.org": [9471], "see-more.xyz": [2053], "collegehumor.com": [3490], "www.systemintegra.ru": [16013], "yandex.kz": [18957], "www.osumarion.osu.edu": [11959], "www.emailcenter.acs.org": [966], "*.us1.cloud.oracle.com": [12284], "www.compliance.idoxgroup.com": [20426], "atmbnk.uk": [2053], "adar.sh": [2053], "secure.gacollege411.org": [6421], "www.theses.cz": [16618], "www.htaccessbook.com": [7732], "zynga.com": [19251], "www.bayleaks.com": [1747], "passport-ckicheck.yandex.com": [18956], "www.engelsystem.de": [5366], "www.deutsch.peerius.com": [12733], "sia.unizar.es": [17643], "www.gloucestershire.gov.uk": [6872], "secretescap.es": [2053], "arrisi.com": [1251], "www.resistsurveillance.org": [14042], "www.exmo.com": [5607], "secure.38degrees.org.uk": [145], "gogoyoko.com": [6935], "*.gpgtools.org": [6488], "chppe.osu.edu": [11959], "sharenet.brent.gov.uk": [2358], "tr.cloudflare.com": [3344], "i9senare.de": [2053], "na.llnet.bioware.cdn.ea.com": [1957], "*.thestranger.com": [16581], "memrise.com": [10427], "fivesta.rs": [2053], "www.thepiratebay.xn--fiqs8s": [21709], "www.w.th-mittelhessen.de": [16064], "connect.sfu.ca": [14893], "linkbox.argonit.cz": [1221], "vircurex.com": [18024], "*.min.us": [10625], "www.dollaraday.co": [4733], "afom.nl": [2053], "static.bitvc.com": [1998], "go.lnp.tv": [2053], "api.musixmatch.com": [10911], "smile.qa": [2053], "run.pivotal.io": [12947], "net-mobile.com": [11370], "merca20.com": [10448], "efinancialcareers.com": [5010], "twiki.cern.ch": [2632], "viaduct.io": [17954], "ae04.alicdn.com": [846], "www.govwaste.co.uk": [6996], "l.spin.wtf": [2053], "puckey.org": [13449], "cart.taobao.com": [16206], "*.radioshack.com": [13749], "git.tocco.ch": [16797], "frsky.me": [2053], "www.piratebox.top": [21217], "lindy.com": [9528], "peri.pw": [2053], "georgetown.edusupportcenter.com": [20012], "zh.pcisecuritystandards.org": [12428], "ipinvite.iperceptions.com": [20411], "wozz.in": [2053], "ponews.co": [2053], "nam.aviationweather.gov": [19463], "go.supergr.jp": [2053], "jmoo.fi": [2053], "swpwrld.com": [2053], "diety.wp.pl": [18216], "sell.carzone.ie": [19651], "hlm.tc": [2053], "convers.al": [2053], "d.ezona.org": [2053], "goto.idnc.biz": [2053], "dish.ly": [2053], "go.td90uk.co.uk": [2053], "dwx.me": [2053], "youtube.com.sa": [19016], "moodscope.com": [20829], "bbly.me": [2053], "bme.engineering.osu.edu": [11959], "rive.re": [2053], "odns.co": [2053], "mci.edu": [10291], "www.wimp.com": [18623], "snakehosting.dk": [15271], "www.giving.acs.org": [966], "www.hieber.de": [20337], "en-sr.dict.cc": [4536], "ohling.com": [11964], "www.systeme.familie-redlich.de": [5758], "cio.evanta.com": [2053], "adbrvl.co": [2053], "static8.startnext.com": [15665], "rsc.li": [2053], "manuf.bme.hu": [1570], "i2.iis.net": [7888], "ndgz.it": [2053], "ihfs.teteny.bme.hu": [1571], "forum.linuxserver.io": [9595], "youtube.my": [19016], "northlincs-self.achieveservice.com": [19265], "pei2.me": [2053], "okpay.com": [11828], "thvo.me": [2053], "b5.yahoo.co.jp": [18944], "werkenbijdeoverheid.nl": [11324], "superplus.sovcombank.ru": [21516], "zencoder.com": [19135], "parabola.nu": [12589], "www.mheducation.com": [20790], "tzkr.in": [2053], "www.bike24.com": [1923], "vay.as": [2053], "soscisurvey.de": [15297], "eastsussex.objective.co.uk": [20979], "delfogo.com": [4402], "www.stableit.ru": [21558], "hof.fm": [2053], "www.patrickbateman.biz": [12668], "mysmp.fr": [2053], "www.gokgs.com": [20266], "ttshr.co": [2053], "veja-este.link": [2053], "dlghtfl.co": [2053], "notehub.org": [20932], "www.linuxjournal.com": [9590], "images.sockshare.com": [15331], "agst.us": [2053], "cncrt.tips": [2053], "labs.opendns.com": [12130], "api.accuweather.com": [503], "www.hackaday.io": [7270], "webapi.link": [2053], "je-re.me": [2053], "www.dei.gr": [7042], "nnii.co": [2053], "s3.lbrcdn.net.s3-external-3.amazonaws.com": [9331], "www.globalchokepoints.org": [5007], "maps.ngdc.noaa.gov": [11272], "mail.mcb.net": [10130], "www.unizar.es": [17643], "s.ichec.ie": [2053], "app.recurly.com": [13887], "ezin.es": [2053], "www.mrmcd.net": [9951], "img0.bdstatic.com": [19507], "digital-future.it": [4564], "ring.ly": [2053], "maharaj.ca": [2053], "az.chaucanh.net": [2053], "minetest.ru": [10606], "www.tox.chat": [16891], "*.flightaware.com": [6035], "www.mir-politika.ru": [20803], "pfizerhelpfulanswers.com": [12823], "okdiar.io": [2053], "tip.sbb.ch": [15946], "advancement.uic.edu": [17517], "ethoscustombrands.com": [5491], "wfb.tc": [2053], "www.w00tads.com": [18182], "btslinger.ie": [2053], "internetconsultatie.nl": [11324], "*.pricerunner.com": [13280], "taigu.meituan.com": [10405], "dotmailer.co.uk": [4789], "rollvt.tv": [2053], "x.kolo.mx": [2053], "api.thumbalizr.com": [21733], "wornthrough.com": [18766], "img.yumpu.com": [19054], "freedom-ip.com": [6282], "0ughy3ss.ml": [2053], "seedrs.com": [14795], "donnu.net": [2053], "prscp.me": [2053], "www.gitcafe.com": [6796], "cotonou.usembassy.gov": [21879], "www.placeimg.com": [12972], "jo.org.es": [2053], "trac.adium.im": [635], "artnt.de": [2053], "www.blossom.co": [2175], "cessle.me": [2053], "edit.productie.gx.uvt.nl": [16716], "granularproject.org": [20277], "link.tv4.se": [2053], "ceip.org": [2053], "defamer.gawker.com": [6593], "rss.final4ever.com": [5934], "8.url.cn": [21874], "by.zedbloc.com": [2053], "login.mailigen.com": [10052], "shinystat.com": [21426], "*.mayoclinic.com": [10272], "yangjiang.jd.com": [8571], "jasonsmovieblog.com": [20524], "status.rubygems.org": [14254], "*.gsu.edu": [6509], "gkon.tk": [2053], "zabbix.ulpgc.es": [17411], "fommy.me": [2053], "bethsoft.com": [1871, 1872], "trycelery.com": [17079], "risd.cc": [2053], "usenix.org": [17318], "www.suppliesfordreams.org": [15892], "www.human.cornell.edu": [3744], "vmss.boldchat.com": [2240], "spiil.org": [15525], "login.eset.com": [5463], "se.gy": [2053], "cdn.atdmt.com": [10540], "app.maven.co": [10252], "www.data.gov.hk": [19854], "einsteinathome.org": [5228], "webmail.timeweb.ru": [16728], "tvweekm.ag": [2053], "gohak.ly": [2053], "alex.news": [2053], "www.itpol.dk": [8540], "pan.taobao.com": [16206], "tabrd.co": [2053], "*.ona.gov.au": [11947], "www.searslabs.com": [14691], "www.hipointinc.com": [7529], "kbj.me": [2053], "people.collabora.com": [3481], "hoyakids.georgetown.edu": [6668], "getclef.com": [6710], "hellobond.com": [7438], "jrho.de": [2053], "au.patronbase.com": [21083], "relevate.ru": [13988], "*.trialpay.com": [17000], "stefa.no.it": [2053], "sources.debian.net": [4351], "www.onlinewellnessassociation.com": [12078], "reader.qq.com": [13514], "cdn1.kongcdn.com": [9127], "spec.es": [2053], "www.sofurryfiles.com": [15295], "r.kvdl.com": [2053], "qa.medicare.gov": [20772], "eservice.websupport.novell.com": [11728], "bbrwn.co": [2053], "dbgam.in": [2053], "mobile.zuno.cz": [19077], "kdoes.nl": [8985], "pandora.com": [12564], "getcloudapp.com": [9532], "cdn.silktide.com": [15041], "www.nih.gov": [11241], "www.amnesty.gr": [1001], "lds.rocks": [2053], "nlm.nih.gov": [11241], "secom.pe": [2053], "qck.me": [2053], "www.sf.se": [14346], "dom.riastatic.com": [13661], "status.transifex.com": [16943], "*.bigcommerce.com": [1906], "s0.static.hootsuite.com": [7633], "mazacha.in": [10274], "bryn.link": [2053], "forum.slysoft.com": [15221], "www.syncsearch.jp": [15985], "sgmia.co": [2053], "ozyr.me": [2053], "aae.co": [2053], "lists.cs.illinois.edu": [17544], "on.kipp.org": [2053], "sutton.moderngov.co.uk": [20816], "secure.join.me": [8765], "quadrigacx.com": [13554], "www.profitbricks.co.uk": [13355], "eyes.nasa.gov": [11058], "truemo.me": [2053], "ab4all.com": [19254], "www.flamingspork.com": [6016], "download.xmarks.com": [18882], "xerte.plymouth.ac.uk": [13055], "a.mytoy.tw": [2053], "erikshar.es": [2053], "bfm.ru": [19524], "www.sj.se": [14363], "precharge.com": [13242], "rg3.github.com": [6801], "www.infotomb.com": [8253], "lqfb.piratenpartei.de": [12938], "rebelmouse.com": [13873], "*.delawareonline.com": [4399], "www.web-stat.com": [18344], "bgell.me": [2053], "www.speakerdeck.com": [15485], "www.freeswitch.org": [6247], "www.ss.prbrds.com": [13338], "jcsd.dk": [2053], "*.fusionio.com": [6393], "cdn.ultrahdtv.net": [17419], "dongxing.meituan.com": [10405], "go.cloudbees.com": [19736], "www.tk.de": [16292], "*.merca20.com": [10448], "www.tastselv.skat.dk": [15144], "klikkm.hu": [2053], "go.maneu.fr": [2053], "cdn.itproportal.com": [11366], "www.shoppbs.org": [12416], "www.togetherjs.com": [16802], "www.masterchan.org": [10217], "*.mediafactory.fm": [10334], "employer1.anthem.com": [19395], "teraction.link": [2053], "hosting.de.inter.net": [8379], "*.cpni.gov.uk": [3018], "kiosk.onlinesbi.com": [12072], "perf.cloud.unity3d.com": [17506], "code.freent.de": [6300], "support.leagueoflegends.com": [9362], "norx.io": [11708], "www.earth.leeds.ac.uk": [17604], "www.walsall.gov.uk": [21971], "s43.cnzz.com": [3391], "opendata.ch": [21011], "boldne.ws": [2053], "chipworks.com": [3148], "www.laeditorialupr.com": [17619], "x.think26.com": [2053], "status.popcorntime.io": [13142], "www.nisit69.com": [11616], "go.nw.de": [2053], "cets.georgetown.edu": [6668], "mobile.github.com": [6801], "www.mouseflow.nl": [10812], "blog.qt.digia.com": [4558], "ndchost.com": [11081], "www.freespeech.org": [6269], "secure.s.telegraph.co.uk": [16340], "gl.dinahosting.com": [4603], "parking.newcastle.gov.uk": [11507], "nat-sec.me": [2053], "slackatwork.com": [15188], "coloradonocall.com": [3504], "rcblood.org": [2053], "vlog.leadformix.com": [9349], "*.memberclicks.com": [10418], "etfm.eu": [2053], "l.gamedok.net": [2053], "*.cbsnews.com": [2584], "correo.ulpgc.es": [17411], "www.vanityfair.com": [3616], "sponsok.it": [2053], "www.studentaid2.ed.gov": [4988], "www.snowdrift.coop": [15290], "l.rene.im": [2053], "frontend.ndla.no": [11309], "www.recordstoreday.com": [13884], "pabloygl.es": [2053], "netnativ.es": [2053], "labp.htwk-leipzig.de": [7736], "chip-chap.com": [3144], "depkatalog.no": [4453], "rasc.in": [2053], "rsa.im": [2053], "lapweb.info": [2053], "ande.rs": [2053], "on.deedcast.com": [2053], "static.mediaworks.co.nz": [10333], "weblogin2.geant.net": [6430], "jobs.uwm.edu": [17580], "*.linkbucks.com": [9537], "secure.skypeassets.com": [15185], "javacoolsoftware.com": [8677], "gforge.inria.fr": [8309], "oppictures.com": [17504], "static.rust-lang.org": [14284], "mercatus.org": [10450], "l.coldzone.co": [2053], "tesia.me": [2053], "jobs.nottingham.ac.uk": [11726], "dfed.ru": [2053], "www.onamae-server.com": [12019], "ccbakery.biz": [2053], "www.fpcomplete.com": [5704], "gwo.is": [2053], "t.mmdp.tk": [2053], "platform.appcelerator.com": [1152], "tmobile.com": [16089], "images.b.switchadhub.com": [15954], "medialoot.com": [10341], "tco.li": [2053], "go.kijis.com": [2053], "ngvpn13.nvidia.com": [11174], "talkingphonebook.com": [9699], "stag-result.cntraveler.com": [3620], "amctheatres.com": [346], "stb.style": [2053], "opbk.co": [2053], "door.desy.de": [4479], "codeclubpro.org": [3415], "dy6.co": [2053], "*.easyvoicebiometrics.com": [5132], "r79.co": [2053], "ca.netflix.com": [11420], "www.crunchbase.com": [3904], "*.uidaho.edu": [17543], "zenjoy.me": [2053], "affil.walmart.com": [18260], "rdl.sr": [2053], "feitbulbs.com": [5860], "s87.cnzz.com": [3391], "moonpig.com.au": [10766], "unmaintained.git.collabora.com": [3481], "tpte.co": [2053], "go-mobi.net": [2053], "l.maxjchung.com": [2053], "syntevo.com": [15995], "eatglobe.org": [2053], "ixwebhosting.com": [8027], "marc-stevens.nl": [10144], "openid.yubico.com": [19052], "brokerportal.mo.anthem.com": [19395], "psql.active24.com": [19275], "www.ioam.de": [7930], "careers.vodafone.co.uk": [18106], "artiswall.co": [2053], "d.ytet5uy4.com": [2053], "hakin9.org": [7300], "www.nurdspace.nl": [11166], "akle.in": [2053], "jewishvirtuallibrary.org": [20538], "my.mstrick.com": [2053], "bl.fftn.co": [2053], "roe.ch": [14175], "sport.times.am": [21740], "youngalumni.stanford.edu": [15635], "imdb.com": [7903], "hummingbird.sandiegoreader.com": [14511], "www.kaltura.com": [8927], "*.royalmailgroup.com": [14234], "jbow.co": [2053], "www.piraattipuolue.fi": [21128], "www.tbray.org": [16043], "info.ooyala.com": [12099], "xpl.theadex.com": [16597], "get.theskeet.im": [2053], "distrib-coffee.ipsl.jussieu.fr": [8841], "labom.at": [2053], "www2.sans.org": [14310], "secure.southampton.gov.uk": [15440], "www.brand.osu.edu": [11959], "*.kym-cdn.com": [8909], "theb.fi": [2053], "es.lastminute.com": [9318], "theiet.org": [7867], "brand.osu.edu": [11959], "b4h.us": [2053], "corporate.walmart.com": [18260], "marksandspencer.com": [10108], "mgab.it": [2053], "partnernet-uat.symantec.com": [15969], "*.test-ipv6.cz": [16405], "collada.org": [2694], "xiaoyi.meituan.com": [10405], "piraattipuolue.fi": [21128], "sdacs.ucsd.edu": [17216], "imwukong.com": [20447], "fotg.co": [2053], "www.octopart.com": [11913], "i.groceries.asda.com": [387], "www.baltimoresun.com": [17006], "www.geodacenter.org": [1231], "alzaware.net": [2053], "www.videoly.co": [17990], "api.zenhub.io": [22129], "rf.gl": [2053], "neaf.gov.au": [11257], "the-group.net": [16553], "nantou.meituan.com": [10405], "iphone-client.fitbit.com": [6002], "submittable.com": [21598], "homepages-fb.thm.de": [16066], "marketing.xrllc.com": [22087], "*.tripodo.de": [17023], "c1.q-assets.com": [21235], "www.retsinformation.dk": [14063], "secure.cdn.us.playstation.com": [13015], "books.sonatype.com": [15381], "www.alias.io": [849], "oogl.us": [2053], "e.teenbr.com.br": [2053], "lepalmier.squat.net": [21549], "www.banki.ru": [1692], "coolutils.com": [3706], "9in.style": [2053], "kotaku.com": [9143], "gss2.baidu.com": [1661], "l.afcleuven.be": [2053], "jobbik.hu": [8744], "billing.hudsonvalleyhost.com": [7743], "static6.startnext.com": [15665], "cf.gcaptain.com": [6428], "rcar.me": [2053], "maps.me": [10140], "politicalcompass.org": [13096], "vpn.taiget.ru": [21652], "www.wealden.gov.uk": [21987], "specimens.cancer.gov": [2864], "www.smozaika.ru": [21486], "carolkurth.com": [2053], "wokingham.spydus.co.uk": [21546], "intranet.zetel.de": [19167], "mngn.co": [2053], "*.codesion.com": [3346], "8ug.at": [2053], "www.multiseek.net": [10884], "resilientsystems.com": [14039], "nobi.cc": [2053], "ch.icecat.biz": [8059], "cemas.osu.edu": [11959], "mateso.co": [2053], "guangde.meituan.com": [10405], "uim.tifbs.net": [21739], "chcra.site": [2053], "list.nih.gov": [11241], "snipe.ly": [2053], "jira.spring.io": [15555], "easil.link": [2053], "*.e-plus.de": [4942], "www.lesestoff.ch": [20664], "www.gwinnettcounty.com": [7164], "www.alumni.rmit.edu.au": [13670], "billcloud.unionpay.com": [17478], "on.v3t.co": [2053], "blog.us.playstation.com": [13015], "bebo.com": [1795], "my.meituan.com": [10405], "www.secure.switchkonnect.com": [15955], "go.sylop.com": [2053], "north.worldcat.org": [18748], "*.cmbi.ru.nl": [13744], "www.france-universite-numerique-mooc.fr": [6215], "pobox.com": [13057], "foreignrr.www.uprr.com": [21870], "sykmelding.nav.no": [20878], "wordpress.com": [18731], "minfra.me": [2053], "www.wanglibao.com": [18268], "*.conduit-data.com": [3627], "appcenter.html5tools-software.intel.com": [8359], "topvill.as": [2053], "cdn.msf.org.uk": [9954], "www.fraserxu.me": [6227], "www.infocentral.state.gov": [17345], "www.vbg.de": [17760], "*.your-server.de": [7515], "omot.in": [2053], "cmag.pw": [2053], "*.gymglish.com": [7168], "wiki.xenserver.org": [18858], "gkby.it": [2053], "min.dj": [2053], "gatorchrysler.net": [4333], "pribook.co": [2053], "min.do": [2053], "*.ratfishoil.com": [13808], "www.olabini.se": [20987], "1pic.us": [2053], "i2.weibopay.com": [21998], "wkrn.tv": [2053], "ganyu.meituan.com": [10405], "huidong.meituan.com": [10405], "info.sumologic.com": [15848], "efadatacollections.education.gov.uk": [20009], "www.torrentz.eu": [16863], "travelblog.org": [16965], "links.rashty.me": [2053], "ledger.co": [9376], "nm.contextweb.com": [3682], "hd1st.com": [2053], "on.dsoh.net": [2053], "spaceweatherphone.com": [15462], "links.fagan.me": [2053], "meo.pt": [10440], "s.rhb.ch": [2053], "leend.rs": [2053], "selfservice.mville.edu": [10118], "forum.ubuntu-nl.org": [17380], "inkbunny.net": [8298], "dev.hackaday.io": [7270], "rstforums.com": [13699], "rehabitlabs.com": [2053], "www.po.st": [13056], "login.aarp.org": [270], "leadin.hubspot.com": [7739], "www.lubakiagenda.net": [20722], "raco.cc": [2053], "trtl.co": [2053], "wwwdev.lbl.gov": [9219], "url.taizona.jp": [2053], "kimt.co.uk": [2053], "brainshark.com": [2323], "toster.ru": [16870], "sl.ookb.co": [2053], "svs.informatik.uni-hamburg.de": [17229], "text.nanog.org": [11688], "demill.us": [2053], "news.tid.al": [16698], "nbcumv.co": [2053], "edel.me": [2053], "buckeyevoices.osu.edu": [11959], "www.dacapoalfine-dd.de": [4176], "www.warnerartists.com": [18277], "checkbox.com": [19693], "www.welsh-country-cottages.co.uk": [18790], "itservices.gmu.edu": [6666], "tpr.metafaq.com": [20787], "gchg.co": [2053], "my.nofussg.us": [2053], "wsdebug.dingtalk.com": [19923], "vlamin.gs": [2053], "*.live1.mintedcdn.net": [10623], "wikimedia.org.uk": [18595], "www.zohodiscussions.com": [19204], "*.lrb.co.uk": [9745], "3loons.me": [2053], "wojo.co.nz": [2053], "pcp.com": [12430], "image.auction.rakuten.co.jp": [13768], "mengjin.meituan.com": [10405], "*.guildwars2.com": [7139], "invest.deals": [2053], "rts.ch": [21550], "status.mantisadnetwork.com": [10126], "w-f.co": [2053], "systemed.net": [16018], "l.sbio.me": [2053], "1431am.org": [39], "proposal.illinois.edu": [17544], "cdn.mypypeline.com": [4583], "tum.de": [17099], "gnats.netbsd.org": [11375], "*.libguides.com": [9448], "hstor.org": [7730], "dems.me": [2053], "kklein.xyz": [2053], "youtube.co.ke": [19016], "vav.vutbr.cz": [17814], "writl.in": [2053], "www.speedof.me": [15507], "typekit.com": [17189], "www.fsisac.com": [5719], "btfy.co": [2053], "www.russia2all.com": [14282], "z.arzor.com": [2053], "www.keepass.info": [8986], "donate.careinternational.org.uk": [19646], "www.sogo.nu": [14386], "wiki.arkos.io": [1233], "www.dahmw.org": [4763], "iantromp.link": [2053], "ysmk.org": [2053], "daft.ie": [4181], "qa.linuxcontainers.org": [9580], "www.buyaplan.co.uk": [19618], "kennedyinstitute.georgetown.edu": [6668], "l.osg.my": [2053], "stpz.co": [2053], "help-fr-eu.nike.com": [11595], "mail.roffey.org": [14178], "jp.twimg.com": [17153], "production.nursing.osu.edu": [11959], "maps.googleapis.com": [6969], "cdn.coderouge.co": [3437], "blkshp.link": [2053], "jua.com": [8609], "www.nationalinterest.org": [20876], "jcry.me": [2053], "content.govdelivery.com": [6990], "www.bibbitec.com": [1894], "dabney.caltech.edu": [2814], "dmv.ca.gov": [2800], "blogs.intel.com": [8359], "www.nventio.com": [11788], "stats.fs.usc.edu": [17564], "sdrma.tk": [2053], "www.lulzbot.com": [9824], "owa.macfound.org": [9983], "piwik.fsf.org": [5713], "wcshv.in": [2053], "www.kabelbw.de": [20570], "registrar.stanford.edu": [15635], "xgaming.com": [18814], "emp.bbci.co.uk": [19501], "www.nia.nih.gov": [11241], "wiki.selfhtml.org": [21405], "theslot.jezebel.com": [8713], "www.opendoor.com": [12206], "shop.tvnz.co.nz": [16141], "seldo.me": [2053], "imagesa.btol.com": [1666], "www.tibus.com": [21735], "link.ohnate.com": [2053], "www.thoughtbot.com": [16656], "static.paste2.org": [12650], "pacific.to": [2053], "dgtl.me": [2053], "geovation.uk": [6672], "phytopedia.fsaa.ulaval.ca": [17515], "refr.de": [2053], "pubservice.com": [13448], "www.triplebyte.com": [17022], "linzhou.meituan.com": [10405], "awy715.com": [2053], "tunas.co": [2053], "thinkingtogether.educ.cam.ac.uk": [17529], "www.joycasino5.com": [20552], "www.sitelock.com": [15114], "www.cottageselection.co.uk": [18790], "www.dialshield.com": [1503], "supplierhelp.due-north.com": [19968], "www.dribper.com": [19960], "www.febo.com": [20101], "bugs.funtoo.org": [6386], "gsb.download.bva.bund.de": [5833], "ruralchampions.govspace.gov.au": [6994], "ki1.in": [2053], "downloads1.mamp.info": [20744], "www.imgdino.com": [8140], "silavers.com": [2053], "xiorex.co": [2053], "webges.uv.es": [17750], "bugzilla.org": [2466], "*.tor2web.com": [16837], "geokrety.org": [20226], "is.fuqed.net": [2053], "myshaklee.com": [14899], "saas.hsbc.co.uk": [20375], "www.c3noc.net": [2560], "community.capitalone.com": [2878], "klyo.us": [2053], "lists.quagga.net": [13555], "balthy.me": [2053], "listento.direct": [2053], "ablogc.ms": [2053], "kb.juniper.net": [8834], "prlsgk.us": [2053], "imperialcollegeunion.org": [8164], "mail.gettyimages.com": [6741], "s.edson.co": [2053], "kync.tv": [2053], "link.barryko.tw": [2053], "mrch.in": [2053], "en.site1.answcdn.com": [1099], "www.freecode.com": [6279], "help.agilebits.com": [765], "adultwork.com": [685], "account.mouseflow.com": [10812], "klubitus.org": [9087], "www.cmth.bnl.gov": [19564], "filecache.drivetheweb.com": [12490], "www.syndie.de": [15988], "help.disqus.com": [4656], "fpp.wusm.wustl.edu": [18290], "www.oblivia.vc": [11903], "hasylab.desy.de": [4479], "www.tapgage.net": [16211], "www.jal.co.jp": [8662], "sugarand.cl": [2053], "cabaneid.fr": [2053], "www.cs.berkeley.edu": [17526], "*.rockstargames.com": [14173], "kirsle.net": [9069], "www.edgarfiling.sec.gov": [17301], "tinypass.com": [16761], "www.surfcanyon.com": [15903], "fbclg.us": [2053], "cheatography.com": [19692], "portal.nexcess.net": [11549], "learningnetwork.cisco.com": [3221], "www.elttam.com.au": [20029], "plan.scambs.gov.uk": [21375], "q3k.org": [13505], "careers.wustl.edu": [18290], "www.asdacalltime.com": [19430], "airsoftgi.com": [793], "borne.nl": [11324], "sans.org": [14310], "www-q.kaufland.cz": [8975], "www.hostica.com": [7667], "www.myradiocreative.com": [11004], "bunchball.net": [2481], "picasaweb.google.co.*": [6965], "www.amnesty.org.nz": [1005], "www.gehrcke.de": [6629], "*.voxer.com": [18149], "tonybianco.com.au": [16818], "www.sous-surveillance.fr": [15434], "*.onsecure.gov.au": [12013], "s42.cnzz.com": [3391], "tczn.ro": [2053], "kraje.idnes.cz": [20425], "wormly.com": [22053], "munizipal.zaks.ru": [22124], "s.y-force.info": [2053], "vet.io": [2053], "insdr.co": [2053], "jkat.me": [2053], "panoptykon.org": [12570], "simpla.link": [2053], "www.brightfort.com": [2375], "go.flachdcd.com": [2053], "rktr.co": [2053], "www.metrogroup.de": [10502], "narodnipanel.cz": [20875], "*.thcdn.com": [16489], "cdn.udn.com": [17224], "dig.domains": [4548], "pixels.livingsocial.com": [9679], "islenzka.net": [8517], "oybo.us": [2053], "ynzc.am": [2053], "static.ustream.tv": [17743], "myshannonconnection.org": [14904], "imptdcd.me": [2053], "dogstud.io": [2053], "duidlk.nl": [2053], "s3.devtools.us": [2053], "spin.de": [15527], "sfbr.tk": [2053], "www.vevent.com": [21913], "o.nifty.fashion": [2053], "www.nhscareers.nhs.uk": [11102], "forum.wesnoth.org": [18500], "secure.meetupstatic.com": [10386], "cdntest-a.ndla.no": [11309], "www.adultwork.com": [685], "100me.info": [2053], "www.bluewin.ch": [2210], "spreadshirt.nl": [15552], "www.mountainreservations.com": [10808], "datawrapper.dwcdn.net": [4167], "shbelle.jianguoyun.com": [8715], "btrx.pl": [2053], "myfonts.com": [10948], "www.privatelee.com": [13331], "secure.gettyimages.pt": [6741], "bloadr.com": [2135], "cumbriamss.yourpensionservice.org.uk": [22114], "piratebay.unlockproject.host": [21771], "bigez.it": [2053], "newslook.com": [11522], "*.simosnap.com": [15063], "www.zarb.org": [19110], "wsb.li": [2053], "shworldwide.cvent.com": [4020], "en-bg.dict.cc": [4536], "*.heroku.com": [7471], "eafnd.it": [2053], "txhsfb.link": [2053], "nrdlv.co": [2053], "rwdfx.com": [2053], "2mf.in": [2053], "www.civicalg.com.au": [19720], "sales.epochstats.com": [5429], "q2.chaucanh.net": [2053], "colleeneakns.me": [2053], "gdata.fr": [6410], "www.notebooknagyker.hu": [9308], "www.business.illinois.edu": [17544], "2aero.com": [2053], "kwp.al": [2053], "st.kinopoisk.ru": [20601], "hsports.co": [2053], "www.avonmaquiagem.com.br": [1495], "openinternet.state.gov": [17345], "t-media.educ.cam.ac.uk": [17529], "rph.im": [2053], "www.affiliatefuture.com": [19316], "childrens.eastsussexlearning.org.uk": [19996], "bit.hcc.me": [2053], "mr-t.im": [2053], "brnk.li": [2053], "etrieve.htzpartners.com": [7511], "westfield.illuminateed.com": [20430], "theblueskylife.com": [16515], "smuxi.de": [15262], "peopleclick.com": [12763], "on.vitn.de": [2053], "krl.yt": [2053], "f-droid.org": [5653], "ecx.images-amazon.com": [953], "mc.meituan.com": [10405], "cndls.georgetown.edu": [6668], "my.justcloud.com": [20564], "dongxi.douban.com": [4802], "a3.twimg.com": [17153], "login.meo.pt": [10440], "dpfoc.com": [4829], "td.wku.edu": [22039], "api.listenerapproved.com": [9612], "www.eurovision.de": [5536], "open.nasa.gov": [11058], "wode.nz": [2053], "www.nutrition.gov": [11782], "origin.www.ieee.org": [7862], "erhvervkundeservice.tdc.dk": [16051], "filmthreat.com": [5920], "rev30.com": [2053], "*.storenvy.com": [15751], "ology.com": [11981], "datatables.net": [4266], "thef.no": [2053], "strawpoll.me": [15771], "www.energinet.dk": [5354], "miapple.me": [10512], "pimg.mycdn.me": [11014], "prenot.es": [2053], "registrace.skylink.cz": [15183], "build.origami.ft.com": [5941], "silverum.cz": [15049], "hoorn.nl": [11324], "checkout.rakuten.co.jp": [13767], "kipz.io": [2053], "sparring.li": [2053], "global2000.at": [6842], "special-trade.de": [15488], "cembr.it": [2053], "status.fsf.org": [5713], "www.dataexchangewales.org.uk": [19856], "s.yearg.in": [2053], "www.guardiansubscriptions.co.uk": [7132], "ibtimes.co.uk": [7823], "frosty.me": [2053], "tile1.bbcimg.co.uk": [19502], "icka.idnes.cz": [20425], "lowpowerlab.com": [9799], "getify.com": [6734], "build.enlightenment.org": [5382], "downloads2.mamp.info": [20744], "myfren.ch": [2053], "hdsa.org": [7183], "cdn.geekwire.com": [6616], "tshwn.me": [2053], "ecc.earthdata.nasa.gov": [11058], "www.alice-dsl.de": [851], "api.nanigans.com": [11218], "ps3crunch.net": [12500], "city.yandex.ua": [18961], "chdrgtr.com": [2053], "mooshi.com.au": [10768], "www.slyar.com": [15222], "www.nitrocloud.com": [11622], "lesincroyablesrencontres.leboncoin.fr": [20650], "www.zoneedit.com": [19212], "city.ac.uk": [3246], "hckrn.st": [2053], "mail.aerohosting.cz": [728], "americorpsconnect.org": [11279], "*.digia.com": [4558], "www.nebezi.cz": [11317], "www.nytm.org": [11177], "myworkplace.ncl.ac.uk": [11073], "theme.co": [16607], "flk.io": [2053], "hartwork.org": [7349], "courtsofnz.govt.nz": [3791], "m.hawaii-h.com": [2053], "samsungknox.com": [14507], "babyblossom.us": [2053], "redir.adap.tv": [593], "www.whatismyip.com": [18528], "www.sata-io.org": [14313], "www.northdevontheatres.org.uk": [11693], "wikide.openmpt.org": [12148], "cdn.vgc.no": [17776], "*.wrzuta.pl": [18777], "rroo.co": [2053], "segurosocial.gov": [21403], "byb.li": [2053], "tierra.net": [16705], "proxybay.eu.org": [21709], "youraccount.glasgow.gov.uk": [6821], "wstar.co": [2053], "pppl.at": [2053], "ind.ie": [8197], "pirateparty.org.uk": [12930], "shop.empireblue.com": [20033], "vik.bme.hu": [1570], "fact.group": [20089], "cgne.ws": [2053], "doc.ubuntu-fr.org": [17376], "meet.utm.edu": [17628], "kate.nz": [2053], "*.egg.com": [5213], "blog.flickr.com": [6034], "fs02.androidpit.info": [1048], "wong.lol": [2053], "www.jodel-app.com": [8755], "s.azur.io": [2053], "www.numsys.eu": [11778], "control.snel.com": [15280], "www.doileak.com": [4725], "www.ohloh.com": [11965], "www.tomtomrunningrace.com": [16812], "waltertgd.us": [2053], "cfweb.cc.ysu.edu": [19049], "suff.co": [2053], "st8.mn": [2053], "fingate.stanford.edu": [15635], "register.ft.com": [5941], "marxists.org": [10206], "lovelens.ch": [9793], "www.blogtopsites.com": [2158], "jucy.onl": [2053], "truevault.com": [17046], "advertising.amazon.es": [19370], "myaccess.georgetown.edu": [6668], "images.dailyexpress.co.uk": [4187], "zulius.com": [19240], "pac.osu.edu": [11959], "lunarpages.com": [609], "hilfe.gmx.net": [6467], "bewerben.htw-berlin.de": [7246], "from.cr": [2053], "calpolyarts.org": [2788], "www.transcend.org": [16937], "mail.gnu.org": [6474], "engine.vliegtickets.nl": [18095], "files.foreignaffairs.com": [6143], "mobile.tiscali.it": [16770], "geekisp.com": [6613], "b.mickenta.net": [2053], "*.kneon.com": [9093], "clctv.co": [2053], "capec.mitre.org": [10649], "consult.wakefield.gov.uk": [21966], "foswiki.stanford.edu": [15634], "www.business.hsbc.co.uk": [20375], "l.lukeabell.com": [2053], "www.sci-hub.io": [14615], "www.cdnjs.com": [2981], "luvit.io": [9839], "img.propellerads.com": [13383], "short.motta.jp": [2053], "infm.us": [2053], "mail.schibsted.no": [14592], "rogerevans.link": [2053], "gmc.ee": [2053], "a.t.webtracker.jp": [18461], "m.ahat.cat": [2053], "cafepress.com": [2775], "www.datapath.io": [4287], "images.nordichardware.com": [11669], "santuario.apache.org": [1125], "hackerrank.com": [7274], "healths.biz": [7402], "cs.thomsonreuters.com": [16650], "www.fnh.utoronto.ca": [17629], "jyll.tv": [2053], "mot.ly": [2053], "ldtp.freedesktop.org": [6243], "gearsourcecdn.com": [6603], "*.nationwide.co.uk": [11280], "thepiratebay.cd": [21709], "kgoods.co": [2053], "engineering.com": [5368], "www.meego.com": [10374], "www1.elfa.se": [5263], "engineering.stanford.edu": [15634], "githubstats.com": [6802], "oisshome.wustl.edu": [18290], "magserv.com": [10029], "nily.in": [2053], "sts.psc.gov": [21220], "avsb.migros.ch": [10566], "api.segment.io": [14803], "wafami.ly": [2053], "governmentjobs.com": [20272], "s.koban.tk": [2053], "docs.playstation.com": [13015], "qtc.tf": [2053], "shmnt.co": [2053], "ldig.it": [2053], "wwte9.com": [18232], "pti.iu.edu": [8214], "azz.me": [2053], "git.collabora.com": [3481], "ekt.rt.ru": [13703], "see-twitter.com": [2053], "library.jhu.edu": [16562], "www.diasp.eu": [4527], "www.pappp.net": [12413], "community-cache-uat.freescale.com": [6302], "*.rssing.com": [13698], "freebsd.kde.org": [8871], "ro2.us": [2053], "rbarn.es": [2053], "cflow.co": [2053], "estream.ch": [2053], "www.fanboy.co.nz": [5764], "managebeta.smartadserver.com": [15228], "shme.co": [2053], "sourcefire.com": [15430], "idealco.link": [2053], "nobleurl.com": [2053], "go.adams.life": [2053], "4lf.in": [2053], "fearfe.st": [2053], "lvmwd.info": [2053], "*.derby.ac.uk": [17596], "wde.us": [2053], "sipit.co": [2053], "*.omnovia.com": [11985], "to.fortado.nl": [2053], "vzaar.co": [2053], "meynconnect.com": [10507], "cblelabs.co": [2053], "rktit.uk": [2053], "privatecore.com": [13328], "blog.veber.co.uk": [17878], "oktatas.hu": [11976], "ixquick-proxy.com": [8553], "s.torrentday.com": [16850], "*.inwx.de": [8381], "adic.to": [2053], "link.l3vi.de": [2053], "projects.tigase.org": [16709], "vhdo.nl": [2053], "www.deekayen.net": [4373], "gostats.com": [6910], "e.xpo.today": [2053], "activestate.com": [538], "a.mrid.net": [2053], "secure.stage-gettyimages.de": [6741], "techblog.netflix.com": [11420], "blbs.be": [2053], "zend.com": [19136], "*.hatena.ne.jp": [7370], "css-tricks.com": [2736], "resource.shenka.95516.com": [240], "tndr.lv": [2053], "tndr.li": [2053], "web.telegram.org": [16337], "tinde.rs": [2053], "t.navigaweb.net": [2053], "my.hero.vc": [2053], "community.spot.im": [15545], "hnst.us": [2053], "shp.news": [2053], "*.downloadbox.me": [4823], "info.ordiges.eu": [2053], "*.cduniverse.ws": [2625], "pw.mail.ru": [10040], "track.ft.com": [5941], "agor.at": [2053], "lacie.com": [9271], "www.oucs.ox.ac.uk": [17557], "www.cesky-hosting.cz": [19680], "trollingeffects.org": [17032], "ctwatch.net": [3979], "greensky.com": [7047], "recordedbooks.com": [21276], "t1cdn.mediamath.com": [10323], "www.metoxia.uio.no": [17615], "www.idevelop.ro": [8092], "rolexpepsi.com": [2053], "roseres.co": [2053], "my.juno.com": [8835], "wimdu.co.uk": [18622], "playstationnetwork.com": [13016], "ado.hr": [2053], "nber.org": [11266], "www.deco.proteste.pt": [4366], "login.capitalone.com": [2878], "www.java.com": [8674], "portal.strode-college.ac.uk": [15784], "latania.co": [2053], "lists.wald.intevation.org": [18250], "www.extractwidget.com": [5636], "vz.to": [2053], "dr.pundir.com": [2053], "*.adkontekst.pl": [641], "www.kali.org": [8923], "sapphireforum.com": [14537], "hotmail.live.com": [9644], "www.nytimesathome.com": [11190], "wryl.ee": [2053], "m4y.us": [2053], "www.scsk.jp": [14328], "selnd.com": [2053], "tvsr.in": [2053], "transifex.com": [16943], "www.darkcoinfoundation.org": [4229], "igsha.co": [2053], "www.ghostery.com": [6749], "engineering.sharethrough.com": [14925], "drif.tt": [2053], "s3.roosterteeth.com": [14207], "care2.com": [2898], "s72.cnzz.com": [3391], "mobot.net": [7693], "static.geetest.com": [20218], "courscrypto.org": [3785], "sakhalin.info": [21360], "teamall.in": [2053], "met.am": [2053], "buy.pcpro.co.uk": [2053], "www.projet-plume.org": [13373], "witopia.net": [18576], "www.ncats.nih.gov": [11241], "nbnco.com.au": [11065], "www.pin.harvard.edu": [7351], "www.medleyads.com": [10367], "*.invitemedia.com": [8474], "gss.civilservice.gov.uk": [19721], "v.somethingawful.com": [15379], "punki.es": [2053], "fedbizopps.gov": [5831], "es.pn": [2053], "magaza.bilio.com": [1929], "www.defuse.ca": [4393], "casa.com": [19652], "stats.thermitic.net": [16616], "sub.fm": [21596], "bitcoiness.com": [2053], "sueb.ly": [2053], "icony.com": [8069], "abone.cumhuriyet.com.tr": [19839], "crbug.com": [3838], "mybl.ee": [2053], "lifepnt.com": [2053], "www.recruitmentplatform.com": [13886], "cinemanow.com": [3206], "movim.eu": [10833], "aodocs.statushub.io": [15692], "secure.thebodyshop.co.uk": [16516], "ebx.io": [2053], "www.lunarpages.com.mx": [609], "transportation.amazon.de": [19369], "fgrl.me": [2053], "wiki.oasis-open.org": [11805], "voicedailydeals.com": [17788], "merrejep.gazetaexpress.com": [6600], "popularmechanics.com": [13148], "stj-now.s-msn.com": [14297], "h5.m.taobao.com": [16206], "s2member.com": [14303], "culinary.imodules.com": [7909], "www.faxbigbrother.com": [5811], "stlo.es": [2053], "go.td.com": [2053], "newwb.org": [2053], "www.aswirlgirl.com": [1342], "time.thecthulhu.com": [16600], "www.mypack.ncsu.edu": [11690], "eg-online.ru": [20017], "www.ceskaposta.cz": [3034], "vri.gd": [2053], "forum.duckduckhack.com": [19966], "msy.ms": [2053], "*.fluctishosting.com": [6066], "www.uchicago.edu": [17532], "pic3.zhimg.com": [19173], "bin.mailgun.net": [10050], "ssrc.food.gov.uk": [20142], "cstdn.tl": [2053], "ochome.info": [2053], "zomato.com": [19208], "equella.nottingham.ac.uk": [11726], "utb.news": [2053], "onclickads.net": [12023], "validlab.de": [7735], "intelnews.org": [20474], "sem.georgetown.edu": [6668], "s.jbit.biz": [2053], "*.mybcvs.ch": [1703], "ml.meituan.com": [10405], "mld.sg": [2053], "bookshare.org": [2258], "londondrugs.com": [9742], "m.ask.fm": [1296], "s41.cnzz.com": [3391], "awempire.com": [687], "www.tutorialspoint.com": [17128], "yis.hu": [2053], "www.gefpmis.org": [8408], "www.aldi.lu": [338], "i.nuseek.com": [11780], "yt-dl.org": [19051], "caveman.team": [2053], "developer.cisco.com": [3221], "saggia.me": [2053], "*.blog.gustavus.edu": [7155], "l.reidgober.com": [2053], "email.dynect.net": [4933], "developer.axonix.com": [1516], "www.unmitigatedrisk.com": [17647], "acuityscheduling.com": [543], "tlf.meituan.com": [10405], "in-d.fm": [2053], "webapp.itsc.cuhk.edu.hk": [2747], "vellemanusa.com": [17888], "change.org": [3052], "verify-inc.co": [2053], "insr.us": [2053], "webjoe.co": [2053], "*.alice.de": [851], "roffey.org": [14178], "bradford.moderngov.co.uk": [20816], "smaa.to": [2053], "cybermap.kaspersky.com": [8958], "go.playr.at": [2053], "www.thalia.ch": [16433], "utilityservices.no.citrix.com": [3237], "www.patentbaristas.com": [12659], "stylehatch.co": [15806], "www.hypeshell.com": [14398], "storage.pardot.com": [12605], "renewableenergy.inl.gov": [20462], "autodiscover.asus.com": [397], "www.fixmystreet.com": [6009], "www.mail-tester.com": [10037], "on.brb.rs": [2053], "office365.com": [11944], "prcp.io": [2053], "link.spnr.de": [2053], "tngo.tv": [2053], "marketplace.trafficjunky.net": [16922], "www.comscoredatamine.com": [3518], "www.aspone.cz": [19440], "fs8.formsite.com": [20148], "www.minfil.org": [10590], "seansays.click": [2053], "dot.kde.org": [8871], "ourfacebook.com": [2053], "educiamo.ci": [2053], "*.lukasa.co.uk": [20724], "*.whoson.com": [18566], "xz.meituan.com": [10405], "www.bleachbit.org": [19556], "console.qtcloudservices.com": [13546], "wscont2.apps.microsoft.com": [10543], "netcologne.de": [11379], "cdn.rivals.com": [21313], "hl.meituan.com": [10405], "www.websitealive10.com": [18445], "cloudcracker.com": [3343], "www.gawker.com": [6593], "system.data.sqlite.org": [14401], "www.scottbrand.com": [14639], "pubsub-edge.twitch.tv": [17164], "i.technoportal.ua": [16295], "www.mychoice.staff.hsbc.co.uk": [20375], "in.fluence.us": [2053], "poweredbyprogress.progress.com": [13360], "www.xenvps.com": [18860], "trmp.co": [2053], "press.spotify.com": [15548], "akademy2008.kde.org": [8871], "www.awempire.com": [687], "www.alamy.com": [814], "link.jasma.lv": [2053], "*.storage.googleapis.com": [6967], "connorlyn.ch": [2053], "www.takecontrolbooks.com": [16169], "civcr.net": [2053], "www.marx.org": [10206], "openresty.org": [12242], "mail.haskell.org": [7361], "fig.co": [5897], "badge.waffle.io": [18239], "www.charlottenaturemuseum.org": [3073, 19687], "plantcommunity.de": [12994], "uk.icecat.biz": [8059], "payment.neustar.com": [11474], "philatelie.deutschepost.de": [19901], "deaddrops.com": [4327], "bcd.to": [2053], "listes.renater.fr": [13999], "cdn.wcdc.xfinity.com": [22082], "ilcnte.ilc.cuhk.edu.hk": [2747], "c-wrk.mx": [2053], "*.szkb.ch": [20574], "shopatron.com": [14969], "education.illinois.edu": [17544], "www.earcu.com": [4968], "www.sevenoaks.gov.uk": [14882], "zerigo.com": [19150], "dmp.scot.nhs.uk": [11102], "mrjsn.us": [2053], "fashionara.com": [5782, 5783], "hi10.tk": [2053], "*.jeena.net": [8692], "static.seagm.com": [14334], "ccem.osu.edu": [11959], "status.sumologic.com": [15848], "*.openas.org": [12228], "go-sm.co": [2053], "03.imgmini.eastday.com": [5119], "download.moodle.org": [10763], "nm.newegg.com": [11508], "ktred.me": [2053], "kb.status.io": [21569], "vdg.tl": [2053], "fuelcycleevaluation.inl.gov": [20462], "ferg.link": [2053], "451research.com": [173], "s-watch.jp": [2053], "www.telegram.org": [16337], "4plebs.org": [189], "brny.org": [2053], "img5.eadaily.com": [19986], "www.fbw.vu.nl": [17813], "www.gis.g4s.com": [20194], "www.cryptopro.ru": [3932], "webmail.sf-mail.de": [14345], "gifyo.com": [6763], "www.magix.com": [9874], "systembolaget.se": [16017], "cpxx.de": [2053], "url.mark.do": [2053], "slipfire.com": [15210], "netpay.cmbchina.com": [2683], "slackhq.com": [15188], "finra.org": [5939], "qingfood.1688.com": [44], "barkbox.com": [1718], "brdy.co": [2053], "www.blockexplorer.nu": [2138], "direktmarketingcenter.de": [19901], "educto.co": [2053], "prjctu.tv": [2053], "atheists.fm": [2053], "www.fodevarewatch.dk": [6094], "groupthink.jezebel.com": [8713], "www.pageloc.com": [18423], "gamestarmechanic.com": [6559], "blockspring.com": [2151], "autorank.jd.com": [8571], "cib.li": [2053], "images.secureserver.net": [14755], "l.ccarfi.com": [2053], "streams.twitch.tv": [17164], "*.bu.edu": [2291], "bugs.downthemall.net": [4818], "wcfacts.info": [2053], "img2.leboncoin.fr": [20650], "www.thecompassionclub.org": [16527], "flashback.org": [6019], "ifrype.com": [4838], "dpmc.gov.au": [4152], "eyeks.com": [2053], "cloudinary.com": [3367], "tb.popcash.net": [13132], "*.targetimg3.com": [16215], "reportingproject.net": [14019], "www.serverpros.com": [13244], "go.miftatnn.com": [2053], "drtyf.ac": [2053], "jp.vuejs.org": [18165], "pinterest.com": [12914], "cheshireeast.objective.co.uk": [20979], "bbt.gs": [2053], "successfactors.com": [15826], "on.sny.tv": [2053], "mead.illuminateed.com": [20430], "www.formkeep.com": [6159], "secure.zooku.ro": [19218], "wcr.qld.gov.au": [2053], "static3.meetupstatic.com": [10386], "scvevents.info": [2053], "app.weswap.com": [18322], "www.youtube.com.mx": [19016], "uefidk.com": [17395], "www.section9.co.uk": [14714], "ksull.me": [2053], "www.wh0rd.org": [22012], "prod.lists.apple.com": [1160], "ssdrm.samsung.net": [14510], "hsph.harvard.edu": [7351], "brenet.de": [2350], "nlkkdr.nl": [2053], "darujme.ludialudom.sk": [9816], "on.cagop.org": [2053], "www.ntlite.com": [20958], "2820.link": [2053], "salzburg.neos.eu": [11088], "l.tat.sh": [2053], "hhgre.gg": [2053], "academy.amnesty.at": [996], "www.tpptraining.com": [16108], "*.secure.nonprofitsoapbox.com": [11661], "pl.support.tomtom.com": [16812], "mwne.ws": [2053], "ces.williams.edu": [18616], "thef.am": [2053], "www.wildcardcorp.com": [18604], "s3a.pstatp.com": [16881], "www.olvi.fi": [11983], "whatsappbrand.com": [22014], "gunsamerica.com": [20297], "mysite.somerset.gov.uk": [15376], "gadgets.stanford.edu": [15635], "m.rasp.yandex.com.tr": [18954], "education.github.com": [6801], "dreamspark.com": [4845], "olark.com": [11978], "bayproxy.site": [21217], "dandwiki.com": [4216], "s16.cnzz.com": [3391], "pressguidance2.state.gov": [17345], "mobile.leboncoin.fr": [20650], "hopstudios.com": [7636], "kinshasa.usembassy.gov": [21879], "www.icpen.org": [7836], "cfnproposals.bnl.gov": [19564], "bfr.li": [2053], "*.dkb.de": [4113], "survey.alibaba.com": [850], "chi.ps": [2053], "p100-sandbox.itunes.apple.com": [1160], "fm.je": [2053], "i.jd.com": [8571], "www.eth0.nl": [5481], "mnot.net": [10668], "www.serverdensity.com": [14858], "my.f-secure.com": [5654], "www.minaterm.com": [10593], "www.offensivebits.com": [11936], "i.sakh.com": [21360], "*.unvanquished.net": [17661], "www.tele2.se": [16326], "www.lens.io": [9412], "upvoted.com": [17692], "wiki.parabola.nu": [12589], "deviantart.com": [4503], "visit.mashery.com": [10210], "*.idg.de": [8093], "www.sapphireforum.com": [14537], "pnt.so": [2053], "jpgmag.com": [8595], "mycomputer.com": [10943], "img1.bdstatic.com": [19507], "6secgear.com": [2053], "awts.in": [2053], "lavabit.com": [9326], "netchi.co": [2053], "iglnk.co": [2053], "toigo.red": [2053], "e.dianping.com": [19913], "www.static.rtbf.be": [14244], "lufeng.meituan.com": [10405], "a.fightforthefuture.org": [5898], "innovation.bbg.gov": [19503], "intsig.net": [20481], "ed.tips": [2053], "enhyour.net": [2053], "delivery.h.switchadhub.com": [15954], "23ccc.in": [2053], "www.gipsprojekt.de": [6452], "www.bedfordcornexchange.co.uk": [19510], "reddit.com": [13923], "sylvancompany.com": [15968], "lists.fedoraproject.org": [5843], "www.confirmsubscription.com": [3636], "bimedu.pl": [2053], "dgt-mr.in": [2053], "s.abix.jp": [2053], "artrabb.it": [2053], "url.ghai.me": [2053], "ouaza.com": [12342], "www.postnord.se": [13177], "www.gmo.com": [6458], "kri.gr": [2053], "superherotrainingnetwork.com": [15885], "www.raphaelhertzog.com": [13787], "battle.net": [1741], "is-al.us": [2053], "civilservice.gov.uk": [19721], "fdo.osgeo.org": [11868], "thewatershed.com": [16586], "status.contentful.com": [3680], "retrace.fedoraproject.org": [5843], "troni.me": [2053], "ecology.unian.net": [21851], "jacbhac.co": [2053], "abitus.jp": [2053], "pica7.ub.uni-mainz.de": [17611], "*.e.final-score.com": [5933], "sandbox.2checkout.com": [100], "www.orkts.cuhk.edu.hk": [2747], "*.movim.eu": [10833], "www.burningshed.com": [2499], "app-de-lb1.resrc.it": [13832], "www.1prime.ru": [73], "i3.services.social.microsoft.com": [10543], "*.wegotwax.com": [18317], "*.lfchosting.com": [9227], "cxd.li": [2053], "www.meduza.io": [10371], "sosm.ag": [2053], "chat.icq.com": [7837], "kanui.me": [2053], "www.sony.co.uk": [21508], "www.dd-wrt.com": [4092], "www.asexuality.org": [19433], "r.rjweb.in": [2053], "fz4.io": [2053], "managementconsole.thomson.com": [16651], "m.rabota.yandex.kz": [18957], "www.animallaw.info": [1064], "www.thersa.org": [16572], "uss.emetriq.de": [18888], "js.arcgis.com": [1194], "modern.ie": [10706], "www.maps.me": [10140], "tinybytes.me": [16751], "go.nutri.tech": [2053], "tersesystems.com": [16393], "blackpit.douban.com": [4802], "traxarmstrong.com": [16979], "go4url.info": [2053], "stealthnet.de": [15702], "thefiringline.com": [21698], "f24.my": [2053], "trextape.co": [2053], "jhaas.us": [2053], "khms2.google.com": [6969], "paccoweb.poste.it": [13192], "vectorborne.fralin.vt.edu": [18031], "etrtbs1.smartstream.tv": [15247], "carolstre.am": [2053], "*.desk.com": [4472], "bankuralsib.ru": [1699], "*.gondor.co": [6952], "sofort.com": [15338], "quintao.me": [2053], "employees.www.uprr.com": [21870], "harnan.me": [2053], "bgrd.co": [2053], "quantummansite.com": [13572], "orbis.eastsussexlearning.org.uk": [19996], "qpt.al": [2053], "geneva.usmission.gov": [17341], "planet.squat.net": [21549], "*.ecom.attccc.com": [404], "www.simplepickup.com": [15068], "wilshp.uk": [2053], "owa.calderdale.gov.uk": [2794], "wiki.debian-fr.org": [4349], "tcc.xyz": [2053], "max.sup.live.com": [9644], "grugq.tumblr.com": [17100], "moba.ge": [2053], "moja.co": [2053], "sjd.net": [8780], "www.toggl.com": [16803], "tchibo-ideas.de": [16240], "pirate-party.ch": [12487], "i18n.tiki.org": [16715], "de.cryptonator.com": [3952], "chromium.woolyss.com": [18724], "sds.kent.ac.uk": [17603], "moto-g.com": [10802], "vishakeswwwabcde.trappedinsidethecomputer.net": [16960], "thalys.com": [16434], "housingamsterdam.squat.net": [21549], "alln.cc": [2053], "aellis.us": [2053], "tractica.cc": [2053], "kic.f-secure.com": [5654], "www.kachingle.com": [8916], "hengxinli.com": [20334], "www.bsi-fuer-buerger.de": [5828], "www.rotherham.gov.uk": [14212], "l.wat.wtf": [2053], "faqs.channel5.com": [3057], "jpkteam.com": [2053], "gac.edu": [6418], "coglik.es": [2053], "underskog.no": [17441], "brd.gs": [2053], "uptrack.ksplice.com": [9177], "autodiscover.comp.leeds.ac.uk": [17604], "www.alaraby.co.uk": [19337], "*.webmail.brenet.de": [2350], "goto.orcl.pro": [2053], "yellow.local.ch": [9697], "brgsgrprty.com": [2053], "validator.w3.org": [18184], "iberia.com": [8043], "www.secureupload.eu": [14741], "djbooth.it": [2053], "to.liftrep.com": [2053], "status.playstation.com": [13015], "hulu.tv": [2053], "history.google.com": [6962], "www.zsim.de": [19232], "www.carlosprioglio.com": [2913], "www.verasafe.com": [17905], "bioinformatics.vt.edu": [18031], "fjky.co": [2053], "needmorehits.com": [11325], "itradecimb.com.sg": [2664], "repairshandbook.oxford.gov.uk": [21053], "aisinfo.wustl.edu": [18290], "dho.us": [2053], "client.luosimao.com": [20726], "trbc.it": [2053], "btd.sg": [2053], "m.groupon.com": [7100], "assets-9gag-lol.9cache.com": [244], "www.invoicefinance.hsbc.co.uk": [20375], "app.webinspector.com": [18337], "ebilling.companieshouse.gov.uk": [3571], "guldencoin.com": [7144], "*.sinefa.com": [15093], "www.flownative.com": [6063], "mixw.co": [2053], "bananea.me": [2053], "tspne.ws": [2053], "en-la.dict.cc": [4536], "3d.iqdb.org": [20492], "anker.to": [1068], "bits.awaits.me": [2053], "bsudol.com": [2053], "in-the-sky.org": [8176], "bitnz.com": [1989], "www.thijsalkema.de": [16621], "fold.cm": [6099], "blog.zerties.org": [19163], "*.uni-kl.de": [17455], "www.dinahosting.pt": [4604], "go.enz0.net": [2053], "www.lea.manchester.gov.uk": [10107], "m.xkcd.org": [22085], "sweb.ru": [15457], "i.yimg.jp": [18992], "enterprise.here.com": [7465], "gboard.me": [2053], "www.enphase.com": [5385], "citz.in": [2053], "b3.manchester.gov.uk": [10107], "etkinlik.cumhuriyet.com.tr": [19839], "url.tmsrv.org": [2053], "images.mobilism.me": [20814], "blgtm.ch": [2053], "static.gay-torrents.net": [6597], "*.expedia.com": [5612], "tv.sport1.de": [15540], "*.icann.org": [7828], "icc-cpi.int": [7830], "blog.uber.com": [17368], "readon.link": [2053], "104.com.tw": [18], "ellis.li": [2053], "ly.lefant.net": [2053], "app.upc.cz": [17278], "*.spreadshirt.nl": [15552], "cloud4.co": [2053], "jti.me": [2053], "ssl11.ovh.net": [12378], "help.bigcartel.com": [1903], "pamnews.com": [12555], "osgeo4w.osgeo.org": [11868], "korean.alibaba.com": [850], "paw.by": [2053], "fifengine.de": [5686], "ferpaen.es": [2053], "adv-jour.nl": [2053], "account2.lego.com": [9222], "connect.stripe.com": [15781], "events.lugons.org": [9262], "git.playgrub.com": [13026], "fastwebhost.com": [5795], "passwordreset.leeds.ac.uk": [17604], "tako8.jp": [2053], "*.mxcdn.net": [10385], "career.berkeley.edu": [17526], "www.springfiles.com": [15557], "ads.flatdy.com": [6059], "auth.enum.ru": [5407], "bbry.lv": [2053], "python-nbxmpp.gajim.org": [6523], "edwardsvillelibrary.worldcat.org": [18748], "pim.kde.org": [8871], "eth-0.nl": [5481], "www.blogmint.com": [2163], "ensfr.co": [2053], "shop.seagate.com": [14679], "blog.localist.com": [9702], "swb.us": [2053], "stumil.es": [2053], "consumer.gov": [3663], "webmail.oaklands.ac.uk": [20976], "orderbook.net": [12299], "*.shopmania.com": [14962], "www.faq-o-matic.net": [5773], "*.piratenpartei.ch": [12487], "*.jariangibson.com": [8668], "vpay.io": [2053], "depolitiezoekt.nl": [11324], "secure.shreksadventure.com": [21437], "v1e.it": [2053], "kewfy.us": [2053], "alpha.fortnite.com": [6175], "web.theplatform.com": [16495], "www.thenanfang.com": [16566], "s.optimisti.lv": [2053], "nmds.co": [2053], "media.charterbusiness.com": [3081], "www.give.stanford.edu": [15635], "online.pragmaticstudio.com": [13240], "floek.net": [6053], "ca10.us": [2053], "heelnormaal.snsbank.nl": [14382], "www.becker.wustl.edu": [18290], "www.muenchen.tv": [10876], "lister.mysql.cesky-hosting.cz": [19680], "www.secgeek.net": [14703], "omaze.info": [11989], "myiu.org": [10997], "ivanovskaya-obl.beeline.ru": [1801], "ngvpn30.nvidia.com": [11174], "etraining.wto.org": [18229], "theid.co": [2053], "topwar.ru": [21759], "colm.es": [2053], "u.mrvt.io": [2053], "www.lubin82.pl": [9804], "www.webcampus.wilmu.edu": [18620], "*.nationalexpress.com": [11239], "personalsavings.americanexpress.com": [972], "*.service.gov.uk": [14865], "*.ibb.ubs.com": [17206], "now.msn.com": [9961], "images.gizmag.com": [6816], "steve-o.me": [2053], "assets.sunlightfoundation.com": [15857], "community.rallydev.com": [13772], "suntru.st": [2053], "developers.douban.com": [4802], "mkt2.us": [2053], "verisign.es": [17915], "static.video.news.com.au": [11529], "ljla.uk": [2053], "www.counterwallet.io": [3776], "i.po.st": [13056], "s.synqa.jp": [2053], "bvogt.us": [2053], "7ubo.h4ck.me": [2053], "*.cryptocloud.com": [3940], "fmlas.eu": [2053], "smuxi.net": [15262], "www.joomla-security.de": [20549], "static.xsolla.com": [18896], "cem.vc": [2053], "mile.io": [2053], "www.s2member.com": [14303], "rbfy.me": [2053], "nigh.pw": [2053], "stats.slideshare.net": [15207], "img1.dditscdn.com": [4317], "wqic.nal.usda.gov": [17495], "comscore.com": [3517], "robolinux.org": [21320], "images1.q8car.com": [13507], "fourecks.de": [6198], "www.admissions.osu.edu": [11959], "classic.torrentday.com": [16850], "ndc.click": [2053], "www.fotisl.com": [6190], "pnt.hn": [2053], "ceasefiremagazine.co.uk": [2985], "on.cmt.com": [2053], "wwwvh.zdv.uni-mainz.de": [17611], "point.rakuten.co.jp": [13767], "www.tellmescotland.gov.uk": [21677], "memberplus.raiffeisen.ch": [13761], "linux.lu": [9565], "m.vodafone.de": [18107], "sites.southglos.gov.uk": [15438], "mdl5.udn.com": [17224], "www.style.com": [15805], "wiki.ut.ee": [17347], "bonus.unionpayintl.com": [17478], "www.centos.org": [3003], "www.gamedev.net": [6536], "meet.vivek.co": [2053], "apne.ws": [2053], "twib.anz.com": [355], "www.jastusa.com": [20525], "zgzc.es": [2053], "www.qsli.com": [13517], "vote.fsfe.org": [5714], "strgbr.gr": [2053], "9kbhkort.kk.dk": [8883], "velikiy-novgorod.beeline.ru": [1801], "drew.cc": [2053], "ugw1r3.com": [2053], "a.sgdf.fr": [2053], "meetalx.co": [2053], "q.cnblogs.com": [19743], "*.wsodcdn.com": [10188], "www.21.co": [85], "www.replicaperfection.com": [14013], "mt.cpanel.net": [2710], "www.vtunnel.com": [17812], "forum.eurofurence.org": [5519], "realtimeregister.com": [13866], "fssso.capitalone.com": [2878], "zeemitv.com": [2053], "omondi.eu": [2053], "www.youtube.ro": [19016], "nztunl.ca": [2053], "stdr.us": [2053], "www.glasgow.gov.uk": [6821], "www.information.dk": [8272], "i4.social.microsoft.com": [10543], "webfwd.org": [18359], "www.opencart.com": [12126], "alerter.ndla.no": [11309], "api.autopilothq.com": [1469], "blogblog.com": [2160], "arni.es": [2053], "talopodcast.com": [2053], "xlct.it": [2053], "vereinigte-ikk.de": [17911], "r.pinger.com": [2053], "www.snellman.net": [15281], "recycling.org.ohio-state.edu": [11960], "misweb.cc.ntu.edu.tw": [11160], "castasi.de": [2053], "clientf.it": [2053], "heihe.meituan.com": [10405], "www.canon.co.uk": [2868], "www.postpointsrewards.com": [13178], "www.woz.ch": [18768], "go.ccmo.me": [2053], "myorders.sky.com": [15170], "www.honestpolicy.com": [7627], "www.kagi.com": [8918], "i.mail.qq.com": [13514], "www.armservers.com": [18730], "sl.4.boardgamearena.com": [2219], "sig-io.nl": [15018], "support.serverdensity.com": [14858], "go.joost.me": [2053], "i04.c.aliimg.com": [854], "bla24.eu": [2053], "www.jako-o.at": [8643], "msdf.co": [2053], "w.piratenpartei.at": [12937], "*.swu.de": [15961], "www.impsec.org": [8159], "unnikked.ml": [2053], "capture.condenastdigital.com": [3619], "chkthisout.us": [2053], "www.tls.so": [16080], "ffald.ml": [2053], "yosp.in": [2053], "heaith.org": [2053], "btth.me": [2053], "nfc.usda.gov": [17495], "riseup.net": [14133], "www.ideel.com": [8079], "sheffielddemocracy.moderngov.co.uk": [20816], "jiangdu.meituan.com": [10405], "images.politico.com": [13098], "www.crowdfunding.correctiv.org": [3753], "mnhom.es": [2053], "ubj.com": [2053], "profile.microsoft.com": [10543], "api.centili.com": [3013], "bg.3.boardgamearena.com": [2219], "*.worldofwarplanes.com": [18762], "thul.me": [2053], "wwrck.in": [2053], "*.mylikes.com": [10958], "bacas.southampton.gov.uk": [15440], "bleachbit.org": [19556], "askmonty.org": [1297], "championat-rostov.ru": [19683], "rsdll.in": [2053], "4.cn": [168], "s.wr.gs": [2053], "billboard.com": [1933], "www.caltech.edu": [2815], "gets.lockscalecompare.com": [20711], "cdn.ology.com": [11982], "simplednscrypt.org": [15071], "thed.cc": [2053], "uk.sitestat.com": [15132], "wangpu.taobao.com": [16206], "www.smart-places.org": [21478], "cironline.org": [2670], "happyp.pl": [2053], "*.mplxtms.com": [17834], "rmre.us": [2053], "versionista.com": [21912], "t.bernex.lt": [2053], "mirror.umd.edu": [17549], "spw3.co": [2053], "net.vutbr.cz": [17814], "altika-saral.cnes.fr": [2691], "s3.feedly.com": [5853], "www.directorystore.com": [4617], "sherrin.com.au": [14946], "myoc.com.br": [2053], "www.meetic.pt": [10382], "on.xovine.com": [2053], "mpv.io": [10861], "branchprod.harland.net": [7339], "www.ot.wustl.edu": [18290], "www.host.co.id": [7648], "noglov.es": [2053], "bdon.me": [2053], "www.friedhoefewien.at": [18582], "static.prsa.pl": [12497], "static.hwpi.harvard.edu": [7351], "www.palemoon.org": [12545], "tnation.t-nation.com": [16027], "fojems.state.gov": [17345], "ssqt.ch": [2053], "nats.nz": [2053], "www.openstreetmap.fr": [12245], "on.create.it": [2053], "www.pardus.org.tr": [12606], "*.junostatic.com": [8837], "thesitewayne.ml": [2053], "noblehour.com": [11641], "ticket.yandex.com.tr": [18954], "islay.cc": [2053], "cookflix.me": [2053], "techoffice.sedo.de": [14783], "www.vox.com": [18146], "shoptiq.it": [2053], "tools.feide.no": [5858], "download.cc.ntu.edu.tw": [11160], "fsx.host": [2053], "plyvnyl.co": [2053], "preg.centrum.sk": [19675], "www.thinkmoney.co.uk": [21722], "randsinrepose.com": [13782], "www.dhl.de": [4108], "dmq.cm": [2053], "www.cpj.org": [2703], "www.pro.whitepages.com": [18555], "forum.ubuntu.com.cn": [17372], "go.aquarela.co": [2053], "www.geneticliteracyproject.org": [20219], "hu.3.boardgamearena.com": [2219], "www.forsec.nl": [6169], "fuyangfy.meituan.com": [10405], "www.gdata.es": [6410], "carmenconnect.osu.edu": [11874], "campus.georgetown.edu": [6668], "estonian.estonia.usembassy.gov": [21879], "i.dnel.us": [2053], "static.globalreach.com": [20254], "exhibition.ecc-platform.org": [4978], "phastid.io": [2053], "card.rakuten.co.jp": [13767], "housing.usc.edu": [17564], "*.evga.com": [5085], "blazonco.com": [2117], "ams-ix.net": [1021], "press.ci.uchicago.edu": [17531], "sciamdigital.com": [14626], "taizhong.meituan.com": [10405], "wordentropy.org": [18734], "visitorboost.com": [1504], "mosis.com": [9943], "www.informe.org": [8265], "daktne.ws": [2053], "*.further.co.uk": [6388], "www.mediamarkt.es": [22066], "dimitrovgrad.beeline.ru": [1801], "lipetsk.beeline.ru": [1801], "1.slopeedge.ca": [2053], "publisher.assetstore.unity3d.com": [17506], "identity.uillinois.edu": [17238], "auto.sakh.com": [21360], "egp.li": [2053], "j.frew.in": [2053], "bndna.us": [2053], "vree.ws": [2053], "cbi.vc": [2053], "a5.mzstatic.com": [11041], "betterbills.com.au": [1876], "eeiccourses.engineering.osu.edu": [11959], "www.deploybot.com": [19894], "*.amazonaws.com": [954], "img.jp.fujitsu.com": [6362], "*.on-web.fr": [12006], "visahq.com": [18053], "static.xhamster.com": [18816], "ca.megabus.com": [10401], "gemoney.com.au": [6432], "ezh.io": [2053], "www.ebankingmasicuro.ch": [4969], "docs.npmjs.com": [11737], "webinspector.com": [18337], "shanghai.douban.com": [4802], "r.elsmore.me": [2053], "www.browsermob.com": [2429], "ecosia.org": [5164], "betl.meituan.com": [10405], "torrentsstorage.net": [21764], "m90.co": [2053], "fbhexpo.com": [5740], "www.dmesg.gr": [4685], "status.linode.com": [9547], "rachelbythebay.com": [13727], "www.deltager.no": [4416], "wwwcms.tkk.fi": [16076], "chaika.navalny.com": [11300], "behmm.com": [2053], "ssc.me": [2053], "myaccount.socialsecurity.gov": [15308], "www.metachris.com": [20786], "justlea.se": [2053], "www.penango.com": [12743], "t.ermunro.com": [2053], "careers.unbounce.com": [17436], "img.adplan-ds.com": [308], "www.rbu.sh": [13827], "shop.web.de": [18347], "ruby-toolbox.com": [14251], "a-gauna.com": [2053], "scgo.co": [2053], "imagestore2.boomerang.com": [2262], "rckm.co": [2053], "koji.fedoraproject.org": [5845], "gloucestershire.firmstep.com": [20125], "eastsussexlearning.org.uk": [19996], "welcometometlife.com": [18485], "www.dot-bit.org": [4785], "member.1688.com": [44], "*.oberlin.edu": [11897], "resources.cisnet.cancer.gov": [2864], "s1.c4tw.net": [2563], "give.works": [2053], "assets.vice.com": [17959], "www.serverbase.ch": [21415], "bonefi.sh": [2053], "ssl4.ovh.net": [12378], "unruly.co": [21860], "fbw.vu.nl": [17813], "*.solution.weborama.fr": [18434], "azhca.org": [420], "watford.greenparty.org.uk": [7052], "linuxdays.cz": [9569], "lnk.zone84.net": [2053], "kickass.mx": [9031], "a.bigtopmag.com": [2053], "fb.parto.in": [2053], "m.bbva.es": [1766], "store.comcast.com": [3525], "familywize.io": [2053], "buyonline.rackspace.co.uk": [13733], "ashleylauren.me": [2053], "share.cc.here.com": [7465], "www.iu.edu": [8214], "water.org": [18296], "kimberly-clark.com.*": [9042], "*.vantiv.com": [17855], "*.blogspot.hk": [2166], "newsletters.cnes.fr": [2691], "careers.11main.com": [28], "backoffice.efinancialcareers.com": [5010], "ongl.es": [2053], "www.helpingrhinos.org": [20333], "shootingillustrated.com": [21427], "jiagu.360.cn": [130], "*.blogspot.hu": [2166], "www.integrity.pt": [8353], "www.investorfunds.us.hsbc.com": [7233], "deri.ie": [11253], "bankia.es": [22061], "ennl.dict.cc": [4536], "www.trendmicro.com": [16993], "8bitb.ro": [2053], "qpc.mx": [2053], "sri.to": [2053], "darkmail.info": [4231], "statics.huxiu.com": [7779], "edtru.st": [2053], "dsl.vodafone.de": [18107], "calderdale.greenparty.org.uk": [7052], "www.easy2coach.net": [5122], "shiquan.meituan.com": [10405], "blmyo.com": [2053], "secure.sydneytowereye.com.au": [15964], "www.packagist.org": [21060], "ts.meituan.com": [10405], "mail.bnl.gov": [19564], "rajoka.info": [2053], "www.thepiratebay.mg": [21709], "l8r.li": [2053], "www.thepiratebay.mk": [21709], "*.charityweb.net": [3070], "go.khalifah.biz": [2053], "portalcorreo.ulpgc.es": [17411], "www.thepiratebay.mn": [21710], "www.blueonyx.it": [19561], "www.thiswebhost.com": [16640], "*.ontsi.red.es": [13894], "ocmal.ourproject.org": [21044], "*.blogautomobile.fr": [2157], "secure.roboform.com": [14157], "h5.m.jd.com": [8571], "www.jochen-hoenicke.de": [8754], "blog.gls.de": [6457], "media.petridish.org": [12811], "hdut.ch": [2053], "www.praktica.de": [14599], "questionablecontent.net": [13587], "wpbox.link": [2053], "zorpia.com": [19228], "herox.com": [7469], "ozin.ga": [2053], "bit.prime.pt": [2053], "sovh.co": [2053], "gg.meituan.com": [10405], "brewtou.rs": [2053], "www.freecode.club": [20163], "www.hackaday.com": [20303], "mail.qq.com": [13514], "wallacecenter.rit.edu": [13667], "www.x.ai": [22077], "7joycasino.com": [20552], "login.uptobox.com": [21872], "www.watkins.edu": [18300], "lotuscars.com": [9778], "mdl4.udn.com": [17224], "*.virtualtourist.com": [18042], "static2.holidayextras.com": [7595], "epnt.in": [2053], "researchonline.org.uk": [21296], "*.artemisinternet.com": [1265], "cia.com": [2656], "seagnature.info": [2053], "www.nevistashealth.com": [11479], "www.hostcentric.com": [7653], "flex.msn.com": [9961], "cobid.net": [2053], "*.bucketexplorer.com": [2443], "www.youtube.mx": [19016], "creative.rev2pub.com": [14071], "www.youtube.me": [19016], "*.quantserve.com": [13571], "sedo.de": [14786], "spot.btcc.com": [2438], "www.toogl.com": [16823], "janraincapture.com": [8656], "razoo.com": [13822], "www2.swisscom.ch": [15951], "intand.com": [16195], "openf2.org": [12134], "xmpp.jp": [18825], "i.chikara.co": [2053], "sloanm.it": [2053], "gomm.co": [2053], "collections.aliexpress.com": [19343], "meeting.jd.com": [8571], "jobs.dailymail.co.uk": [4197], "atelier.gresille.org": [7071], "i.nierhoff.info": [2053], "bitcoin.it": [2012], "lplogin.com": [609], "sso.mims.com": [9910], "www.milkandmore.co.uk": [10583], "b20.banan.cz": [1528], "nayf.li": [2053], "image.ceneo.pl": [2997], "www.mips.com": [9912], "donate.creativecommons.org": [3848], "gu.com": [7122], "pix.dsp.io": [4883], "heeseminars.engineering.osu.edu": [11959], "1.pilates.ws": [2053], "webquik.vtb24.ru": [21961], "www.mtnacertification.org": [9965], "kwin.city": [2053], "everfi.me": [2053], "bplaced.net": [19583], "bib.support": [2053], "discount.teengfs.com": [13266], "botswana.usembassy.gov": [21879], "voyager.wine": [2053], "jlop.in": [2053], "www.myopenid.com": [10962], "*.swin.edu.au": [15943], "dch.ie": [2053], "spaces.internet2.edu": [8427], "e-preneur.de": [2053], "www.riigiteataja.ee": [14122], "www.s2mediadigital.com": [14301], "player.kent.ac.uk": [17603], "uam.osu.edu": [11959], "community.obi.at": [20977], "jastusa.com": [20525], "drive2.ru": [4858], "elegantthemes.com": [5258], "nvidianews.nvidia.com": [11171], "onamae.com": [12020], "c1.tacdn.com": [21646], "eternallybored.org": [20061], "hvdh.site": [2053], "westm.in": [2053], "alestic.com": [832], "wordpress.mattermark.com": [20761], "thesco.re": [2053], "oeffentliche.de": [11929], "us.hunchlab.com": [7763], "stemulitefitnessformula.com": [15723], "www.rt.ru": [13703], "jump.aesrv.net": [2053], "mrcp.me": [2053], "enphase.com": [5385], "www.surge.sh": [15908], "artoo.co": [2053], "volcanoecigs.com": [18120], "p.thewebfix.com": [2053], "www.solarlist.com": [15359], "www.themuse.com": [16611], "tall.ut.ee": [17347], "www.serversforhackers.com": [14862], "www.faradaysec.com": [5774], "superpri.de": [2053], "*.reviews.llvm.org": [9244], "myaccount.southend.gov.uk": [15442], "getcloak.com": [6690], "kr.forums-stage.oracle.com": [12284], "www.supervalu.com": [14432], "uzr.co": [2053], "q.wipen.net": [2053], "soybn.us": [2053], "www.yoursav.me": [19045], "nowybip.siteor.com": [11733], "www.efficios.com": [5210], "j.royxiang.me": [2053], "hdsnp.me": [2053], "socialke.com": [2053], "epilepsyfoundation.org": [5424], "safesmokedfish.food.gov.uk": [20142], "privacy.rakuten.co.jp": [13768], "dalixian.meituan.com": [10405], "cambridgesoft.com": [2827], "selfservice.woking.gov.uk": [22041], "nsrl.bnl.gov": [19564], "ksurf.in": [2053], "cdn.kaltura.com": [8927], "projects.iq.harvard.edu": [7351], "authorcentral.amazon.com": [952], "nousha.co": [2053], "media.playstation.com": [13015], "blog.boxun.com": [19581], "hipeac.org": [7528], "clrlv.rs": [2053], "macfix.es": [2053], "hostvoice.com": [7663], "*.jigsaw.com": [8719], "wiki.musicbrainz.org": [10905], "1xrun.co": [2053], "lcrx.co": [2053], "careers.appnexus.com": [1148], "pro.sigaqua.com": [2053], "shorefi.re": [2053], "grp01.api.rp.rakuten.co.jp": [13768], "www.greentechmedia.com": [7065], "et01.xhcdn.com": [18815], "adreducation.org": [19300], "www.buckeyevoices.osu.edu": [11959], "gcvmt.co": [2053], "in.yota.ru": [22107], "rjbs.ws": [2053], "integrity.sportradar.com": [21540], "www.outbrain.com": [12355], "bee.st": [2053], "hi5fri.com": [2053], "golfdigestschool.com": [3616], "www.designcentersearch.com": [3616], "spiderwebsoftware.com": [15521], "deekayen.net": [4373], "fdn.ro": [2053], "intranet.crick.ac.uk": [19816], "www.geniusdisplay.com": [20221], "metrika.ya.ru": [18930], "ibphoenix.com": [7822], "*.customer.io": [4013], "ssl.trendmicro.com": [16993], "hrg.stanford.edu": [15635], "www.emssoftware.com": [20035], "www.bohoomil.com": [2233], "www.imperial.nhs.uk": [11102], "happ.ie": [2053], "cdn.softlayer.com": [15342], "mensa.org.uk": [10433], "tbbcoa.ch": [2053], "saml.in": [2053], "erkurt.co": [2053], "moxiesoft.com": [10834], "www.shrew.net": [21438], "www.movienewsletters.net": [10831], "ip.e-paycapita.com": [19978], "cv.usc.es": [17711], "www.casecurity.org": [2577], "zenmate.com": [19133], "static.umeng.com": [21847], "form.mx": [2053], "minutra.de": [2053], "westminster.gov.uk": [18516], "syndie.de": [15988], "kralenstart.nl": [9155], "stntc.jd.com": [8571], "www.netmediaeurope.fr": [11390], "mtrics.cdc.gov": [19663], "www.lurkmo.re": [9838], "wilkinsons-auctioneers.co.uk": [22029], "gsfacket.se": [7116], "mtwrk.co": [2053], "7search.com": [225], "www.bitcoin.it": [2012], "koom.be": [2053], "auth-key.berkeley.edu": [17526], "anchel.eu": [2053], "www.bitcoin.in": [2012], "www.tyk.io": [17180], "help.relevate.ru": [13988], "*.com.edgesuite.net": [799], "datart.cz": [4082], "proxy.video.sky.com": [15170], "itao.com": [20507], "cp.adform.net": [625], "agtz.fr": [2053], "doprava.idnes.cz": [20425], "www.lorea.org": [9773], "hw.zone": [2053], "lybr8.me": [2053], "files.adform.net": [625], "amsa.co": [2053], "amsa.cl": [2053], "foaly.me": [2053], "app.balboa.io": [1670], "superio.city": [2053], "sfeconnect.warwickshire.gov.uk": [21980], "wallst.com": [10188], "webapi.amap.com": [19360], "heger.li": [2053], "meeperoos.com": [2053], "filezilla-project.org": [5911], "ipsos-mori.com": [8497], "laststp.me": [2053], "proxy.storify.com": [15752], "rockcreek.com": [14166], "bangalore.btcxindia.com": [1616], "www.xiscosoft.org": [18879], "parkright.westminster.gov.uk": [18516], "www.pine64.com": [12892], "www.rackspace.nl": [13739], "www.feide.no": [5858], "gfalinks.xyz": [2053], "*.financialtrans.com": [5942], "www.points.homeoffice.gov.uk": [20355], "remedyweb.stanford.edu": [15635], "edukacja.senat.gov.pl": [14817], "ca.3.boardgamearena.com": [2219], "secure.islington.gov.uk": [8518], "image.wemakeprice.com": [18494], "vey.li": [2053], "captcha-static.touclick.com": [16880], "paymoapp.com": [12693], "my.nottingham.ac.uk": [11726], "mjg.ph": [2053], "info.jetbrains.com": [8708], "www.support.sensiolabs.com": [14831], "style.sndcdn.com": [15278], "transact.nab.com.au": [11054], "rvwb.co": [2053], "scan5.coverity.com": [3803], "aula.esci.upf.edu": [17674], "secure.cdgcommerce.com": [2610], "*.distributed.net": [4661], "iisp.org": [7890], "prous01.netforumpro.com": [11382], "gawk.in": [2053], "sii.itcelaya.edu.mx": [7990], "m.zalando.at": [19094], "jai.la": [2053], "hansbr.gr": [2053], "johnrennie.net": [18730], "newgn.solutions": [2053], "static.ocamlcore.org": [11812], "www.registrar.wustl.edu": [18290], "*.gambleid.com": [6530], "cdn8.iconfinder.com": [8066], "aberdeenshire.gov.uk": [451], "www.occupywallst.org": [11908], "edcrt.nl": [2053], "netzguerilla.net": [11468], "www.energiecomfort.at": [18582], "encuestas.unizar.es": [17643], "l.husnan.com": [2053], "bb.wustl.edu": [18290], "s.huobi.com": [7769], "ride.st": [2053], "brasshouse.birmingham.gov.uk": [19536], "b.scorecardresearch.com": [14635], "fluctishosting.com": [6066], "www.24img.com": [95], "*.tryprocleanse.com": [10989], "develop100.com": [19905], "corncotts.com": [2053], "bigrecycle.portsmouth.gov.uk": [21175], "projectdent.com": [13365], "partipirate.ch": [12487], "*.blogspot.com": [2166], "www.oxfordtoday.ox.ac.uk": [17557], "html5test.com": [7242], "www.smack.co.uk": [15223], "bewerbungen.bvg.de": [1623], "rade.tk": [3597], "fisolive.cheshireeast.gov.uk": [3125], "isim.georgetown.edu": [6668], "federation.renater.fr": [13999], "penguinwebhosting.com": [12747], "g.bradwhite.net": [2053], "www.markonefoods.com": [10189], "www.gnosis.cx": [6884], "www.fabianfranke.de": [5729], "decathlon.es": [22063], "kenshoo.com": [8936], "hub.funio.com": [6382], "dosomething.org": [4781], "dornsife.usc.edu": [17564], "tastekid.com": [16227], "lbl.to": [2053], "webmail.riverbed.com": [14140], "osmi.osu.edu": [11959], "tscltd.tk": [2053], "adda.at": [2053], "s.shinanotei.jp": [2053], "paclearances.state.gov": [17345], "rab.me": [2053], "community.migros.ch": [10566], "s.emp.re": [2053], "campusteruel.unizar.es": [17643], "www.0x.co": [5], "gitshell.com": [6805], "*.inq.com": [16882], "www.hrw.org": [7756], "www.moinmo.in": [10720], "eu-gmtdmp.gd1.mookie1.com": [10764], "chiping.meituan.com": [10405], "trade.jr.jd.com": [8571], "tracking.wix.com": [18684], "yelp.nl": [18979], "icc.tips": [2053], "www.ourvacationcentre.net": [18789], "bedrockformssg.msn.com": [9961], "sos.ink": [2053], "zoner.fi": [19213], "*.bannersnack.com": [1700], "www.gradsch.cuhk.edu.hk": [2747], "forexctlogin.tradenetworks.com": [6152], "www.dzne.de": [6678], "fb.mobile.de": [20811], "ssl.com": [14413], "elauw.it": [2053], "argosonline.es": [1224], "www.radikale.dk": [13748], "go4gold.uol.com.br": [17276], "feed.mikle.com": [10573], "cangzhou.meituan.com": [10405], "pyum.co": [2053], "geti2p.net": [6714], "dev.maxmind.com": [10262], "ft.ornl.gov": [11892], "www.adaptavist.com": [594], "www.dgdr.cnrs.fr": [6314], "edog.link": [2053], "sittard-geleen.nl": [11324], "callrail.com": [19629], "qr.equipo.dk": [2053], "gopacesetter.ca": [2053], "pass.yandex.com": [18956], "mattuhri.ch": [2053], "dot.quart.red": [2053], "*.newsday.com": [11533], "biggy.tv": [2053], "libca.st": [2053], "moz.com": [20834], "akincludes.okccdn.com": [11969], "broadband-forum.org": [2402], "pc.nick.com": [2053], "adigital.org": [630], "semabuzz.com": [14338], "bmy.bezeq.co.il": [19522], "rspca.org.uk": [13695], "www.publicobject.com": [13442], "omfg.at": [2053], "tsl.cm": [2053], "northherts.greenparty.org.uk": [7052], "intra.us": [2053], "sbr.io": [2053], "www.corelan.be": [3743], "odenvalt.de": [2053], "swca.org": [14442], "www.ikk-suedwest.de": [7896], "cucast.me": [2053], "it-pol.dk": [8540], "www.etarget.ro": [5477], "link.wipont.com": [2053], "cdn.mytemp.email": [10980], "smplfy.cm": [2053], "realrobothigh.com": [13861], "s.m2i3.com": [2053], "docs.codehaus.org": [3431], "www.opensource.com": [12244], "endpoint.com": [5344], "fastwebmedia.com": [5787], "tomc.li": [2053], "hosteuropegroup.com": [7646], "cpx.golem.de": [6946], "img04.taobaocdn.com": [16207], "www.amebaownd.com": [19379], "*.blinkeye.ch": [2130], "www.deepsec.net": [4376], "go.kevsully.us": [2053], "sciencemag.org": [14624], "gweb03.webstorepackage.com": [18447], "ps18.squat.net": [21549], "www.turnkeylinux.org": [17116], "services.nvidia.eu": [11173], "www.360buy.com": [135], "halo.ge": [2053], "www.iot.uk": [20485], "expedia.co.uk": [5612], "htwk-alumni.de": [7735], "aegee-enschede.nl": [315], "insnty.us": [2053], "www.opennet.net": [12159], "www.biostars.org": [1962], "superdrug.com": [15882], "www.reefledlights.com": [13941], "ubuzz.me": [2053], "www.sirinlabs.com": [21457], "pensions.southwark.gov.uk": [15445], "whistleout.com": [18547], "*.experian.experiandirect.com": [5615], "www.stop-ttip.org": [15738], "talk.openmrs.org": [12150], "clouds.chromeexperiments.com": [3177], "*.beender.co": [1803], "demos.govdelivery.com": [6990], "capitan.in": [2053], "1226.co": [2053], "www.*.vba.va.gov": [17297], "avrm.eu": [2053], "gigenetcloud.com": [6777], "m.broxtowe.gov.uk": [19598], "www.zvv.ch": [22146], "ruizmc.us": [2053], "ballup.us": [2053], "accesstojustice.gov.au": [493], "thuzi.me": [2053], "acw.elsevier.com": [5287], "projectsecretidentity.org": [13368], "g.suntravel.xyz": [2053], "taxii.mitre.org": [10649], "i2.ooshirts.com": [12097], "faf.ornl.gov": [11892], "to.justpitch.me": [2053], "fas.org": [5840], "atlasofprejudice.com": [1356], "progress.com": [13360], "streak.com": [21587], "paten.to": [2053], "meta.ifixit.com": [7874], "belgium.indymedia.org": [8234], "www.adacore.com": [587], "panel.pixfs.net": [12958], "mickj.surf": [2053], "www.ggdns.de": [20235], "en.bbs.deepin.org": [4380], "mktg.bz": [2053], "nthn.ml": [2053], "khouz.am": [2053], "jf.alipay.com": [857], "h4q.me": [2053], "go.jpg.yt": [2053], "avc.io": [2053], "dango.co": [2053], "fgr.me": [2053], "braintreepaymentsolutions.com": [2327], "aises.osu.edu": [11959], "www.corporatedomains.com": [3751], "chrty.bz": [2053], "opening-times.co.uk": [21016], "l.faun.me": [2053], "secdn.williamhill.com": [18615], "mbdetox.com": [9886], "www.globalsign.*": [6840], "dchr.ca": [2053], "www.ffrf.org": [6283], "clickfunnels.com": [3305], "app.snipcart.com": [15283], "www.bruteforce.gr": [2434], "duni.co": [2053], "www.libreoffice.org": [9471], "www.lerner.ccf.org": [3295], "www.justseed.it": [20567], "www.pjrc.com": [12464], "owengrp.co": [2053], "pd.meituan.com": [10405], "*.ostkcdn.com": [12375], "www.rubicondev.com": [14248], "qrpedia.org": [13541], "*.webhostinggeeks.com": [18400], "content6.flixster.com": [6049], "hxti.de": [2053], "myutm.sophos.com": [15403], "signin.intel.com": [8359], "images.d.switchadhub.com": [15954], "vms.admin.qbrick.com": [13529], "ift.tt": [2053], "dbs.com.hk": [4084], "greenhost.nl": [7057], "count.spiegel.de": [15523], "p6d.co": [2053], "jobs.nih.gov": [11241], "www.ocf.berkeley.edu": [17526], "shtst.re": [2053], "t.icetravel.xyz": [2053], "stapi.snacktools.net": [15267], "elitecastingnetwork.com": [5270], "kmcabi.net": [2053], "www.piratpartiet.se": [12940], "rhonk.com": [2053], "hsdzsw.jd.com": [8571], "bw.com": [1625], "getsharex.com": [6724], "www.layer-ads.de": [14301], "woof.photo": [2053], "lrtrjns.co": [2053], "spanish.alibaba.com": [850], "webpouz.unizar.es": [17643], "toyfoundry.net": [16893], "checkout.buydomains.com": [19619], "sso.skrill.com": [15165], "3ly.me": [2053], "zxs.me.uk": [2053], "direct.ukash.com": [17404], "www.pingdom.com": [12902], "www.newhumanist.org.uk": [20898], "dsnews.me": [2053], "z3.hitravel.xyz": [2053], "shrtn.ws": [2053], "assets.mery.jp": [9903], "lookinglocal.gov.uk": [9762], "cpf.osu.edu": [11959], "www.privacyrights.org": [13320], "passionfruitads.com": [12639], "blog.gigya.com": [6779], "xyz.napmdd.org": [2053], "mijnsimpel.nl": [21450], "vgtrk.com": [21917], "magx.us": [2053], "unworld.life": [2053], "www.salesmanago.pl": [14307], "mecoffee.nl": [10297], "i.umeng.com": [21847], "www.downloadverse.com": [4822], "cyberagent.co.jp": [4029], "print2fastprint.nvcc.edu": [11787], "alva.li": [2053], "secure7.pipni.cz": [12460], "blogs.balabit.com": [1668], "sanya.meituan.com": [10405], "millionenklick.web.de": [18347], "service-now.com": [14864], "bugs.merproject.org": [10444], "www.ixicorp.com": [8025], "*.top.mail.ru": [10040], "www.blockexplorer.com": [2137], "apertureinsight.com": [13454], "jusek.se": [8840], "www.nttcoms.com": [11156], "htwb.co": [2053], "ubuntustudio.org": [17388], "kkbox.com": [8884], "support.cyberguerrilla.org": [4033], "tuts4you.com": [17130], "www.hdtracks.com": [7185], "365v.nl": [2053], "opsc.nl": [2053], "duoshuo.com": [19969], "www.caseking.biz": [2934], "otalk.im": [12334], "www.steamstat.ru": [21572], "spoki.lv": [15537], "vrijstellingoldtimer.nl": [21958], "ubs.com": [17206], "l.solid.dj": [2053], "image-pics.com": [2053], "geocoder.ca": [6658], "www.aberdeencity.gov.uk": [449], "a-mx.com": [2053], "www.kreativvonalak.hu": [9160], "hmdi.site": [2053], "www.allthingsd.com": [880], "www.occrp.org": [11810], "apt.rocks": [2053], "pef.io": [2053], "hw.infowars.com": [8279], "gaokao.baidu.com": [1661], "hrobson.uk": [2053], "www.pirateaccess.xyz": [21712], "thuisbezorgd.nl": [16669], "mjs.cc": [2053], "mirrors.berkeley.edu": [17526], "sbforge.org": [14319], "www.hipercor.es": [7555], "nasas.info": [2053], "truecolo.rs": [2053], "liew.co": [2053], "www.virusbulletin.com": [18049], "blog2.biz": [2053], "liew.cf": [2053], "ngvpn34.nvidia.com": [11174], "maintenance.snapnames.com": [9018], "www.freestateproject.org": [6270], "sport.bt.com": [1593], "www.transip.de": [21780], "katap.lt": [2053], "on.renoir.me": [2053], "m.btcxindia.com": [1616], "wolverhampton.gov.uk": [18705], "u.cwl.cc": [2053], "mag.iptvpro.pw": [2053], "register.theguardian.com": [16554], "www.sediarreda.com": [21401], "t16.co": [2053], "to.neer.pro": [2053], "4.rapidrage.org": [2053], "l.dioclecio.com": [2053], "on.gan.gg": [2053], "shop.canonical.com": [2869], "autos.aarp.org": [270], "www.cryoutcreations.eu": [3910], "activiti.alfresco.com": [843], "extended-validation-ssl.verisign.com": [17915], "frmy.tv": [2053], "fluidhosting.com": [6068], "privacytools.io": [13318], "salon.umeng.com": [21847], "ua.autoreview.ru": [19455], "akaes.ms": [2053], "pcreditprod.alipay.com": [857], "cdig.co": [2053], "universalcoin.com": [21858], "larep.it": [2053], "thepiratebay.link": [21709], "wbpty.ca": [2053], "kldp.net": [8887], "s.officehit.biz": [2053], "www.finra.org": [5939], "www.bountysource.com": [2301], "travelplan.gr": [16969], "cart.sxsw.com": [15435], "www.otavamedia.fi": [12335], "sccr.mx": [2053], "fruity.link": [2053], "picture.immobilienscout24.de": [8153], "osdc.com.au": [11864], "communication.on24.com": [11837], "oclink.us": [2053], "questions.medicare.gov": [20772], "cloudforce.com": [3363], "www.recipelab.org": [13879], "bentolunch.es": [2053], "rhf.mx": [2053], "safeornot.net": [21355], "thundrt.ch": [2053], "www.govhack.org": [6992], "smileexperts.osu.edu": [11959], "ais.badische-zeitung.de": [1650], "mobilepki.org": [10690], "newsletter.kabelmail.de": [8912], "zilog.com": [19183], "dowc.co": [2053], "clinicalaudit.hscic.gov.uk": [20388], "b.jackzmc.me": [2053], "linac4-project.web.cern.ch": [2632], "haringey.greenparty.org.uk": [7052], "ssif.cf": [2053], "shop.ashampoo.com": [1285], "wales.greenparty.org.uk": [7052], "preemie.world": [2053], "tribetn.co": [2053], "fuerzapopularpe.keikoperu.com": [6361], "phoenix.de": [21117], "www.reportlab.com": [14016], "fred.li": [2053], "eschools.co.uk": [20056], "lockkey.com": [2053], "edge4.digicert.com": [4556], "fred.ly": [2053], "www.royalvoluntaryservice.org.uk": [21332, 21333], "*.surveydaddy.com": [15915], "repeal2a.com": [2053], "www.acf.hhs.gov": [7192], "bloomsky.com": [19559], "1.topsetups.com": [2053], "www.nokia.co.uk": [11655], "photos-h.ak.fbcdn.net": [5816], "libre.adacore.com": [587], "www.skylarkcloud.com": [15181], "build.cloud.unity3d.com": [17506], "ftc.com": [2053], "webmail.claranet.pt": [3271], "labs.igalia.com": [8098], "bowenp.rs": [2053], "www.yuri-ism.net": [19059], "d1.io": [2053], "wifi.meo.pt": [10440], "www.mindmodeling.org": [10595], "ca.jobindex.dk": [8746], "sg.cm": [2053], "dol.ph": [2053], "jarb.ro": [2053], "tsl.guru": [2053], "www.mozy.com": [10857], "ecitizen.tameside.gov.uk": [21659], "inevents.se": [2053], "noco.ag": [2053], "rblg.me": [2053], "isdai.ly": [2053], "gxy.rocks": [2053], "domains.laproxsites.com": [9307], "lexity.com": [9439], "riskiq.com": [14135], "www.stackmonkey.com": [15614], "res-4.cloudinary.com": [3367], "ws.sharethis.com": [14913], "www.ludios.org": [9817], "anvil.rubiconproject.com": [14247], "fbpro.co": [2053], "www.muse.mu": [10897], "grad.uw.edu": [17355], "blastingnews.com": [2112], "cas.cnrs.fr": [6314], "www.mappingmediafreedom.org": [10138], "www.tmt.org": [16638], "www.gps.caltech.edu": [2815], "www.112cafe.com": [24], "www.amazon.fr": [19371], "l.siz.io": [2053], "elections.rbc.ua": [21263], "www.campustechnology.com": [19635], "zhili.1688.com": [44], "*.nla.gov.au": [11259], "jeffm.co": [2053], "thalia.ch": [16433], "rns.online": [21316], "realtime.statushub.io": [15692], "win.gs": [2053], "www.ksaglass.com": [8902], "ibuc.co": [2053], "i.bashfoo.com": [2053], "www.gpgauth.org": [7003], "deb.opera.com": [12252], "winm.kr": [2053], "tags.tiqcdn.com": [16251], "blog.webmaker.org": [10852], "dl3.checkpoint.com": [3106], "www.coventry.gov.uk": [19807], "frcr.cz": [2053], "*.babylon.com": [1635], "jeman.de": [20535], "*.audible.de": [1386], "fit.fraunhofer.de": [6230], "www.sixapart.com": [21463], "www.bluetooth.org": [2208], "www.ourtesco.com": [12348], "igs.io": [2053], "teruel.unizar.es": [17643], "www.gettyimages.co.jp": [6741], "swright.us": [2053], "fhfi.re": [2053], "dereck.io": [2053], "fredericia.dk": [6233], "hypety.pe": [2053], "help.research.vt.edu": [18031], "bitdrift.org": [2040], "odpadnes.sk": [19197], "to.newsdesk.pm": [2053], "zwezd.in": [2053], "*.api.roblox.com": [14156], "iambleona.net": [2053], "verbling.com": [17907], "www.thepiratebay.gs": [21710], "sagernotebook.com": [14477], "afl.nab.com.au": [11054], "sparx.org.nz": [15476], "mutualart.com": [10920], "mccou.ch": [2053], "www.suttonhomechoice.org.uk": [21619], "www.bnz.co.nz": [1576], "mitp.ch": [2053], "bdi.link": [2053], "blackboard.usc.edu": [17564], "s.dev-vision.ro": [2053], "kennett.design": [2053], "nuculture.ly": [2053], "apps.1und1.de": [82], "on.kigalian.com": [2053], "isuppli.es": [2053], "wingolog.org": [18653], "*.tjoos.com": [16779], "www.nei.nih.gov": [11241], "*.extralunchmoney.com": [5635], "www.pivotaltracker.com": [12949], "ftftl.com": [2053], "storage.msn.com": [9961], "p.schall.tv": [2053], "www.destinydb.com": [19095], "per.im": [2053], "b.shinseki.us": [2053], "virustracker.net": [18050], "sample-default.readme.io": [13841], "careereagles.osu.edu": [11959], "doncaster.gov.uk": [4770], "url.minerva.lt": [2053], "www.ricardo.ch": [14100], "westmorland.greenparty.org.uk": [7052], "www.tigerdirect.com": [16711], "elefant.sale": [2053], "user.atlas.sk": [19449], "s4.goeshow.com": [6924], "mrtv.io": [2053], "tres.vc": [2053], "lokaldealen-dbapp.netdna-ssl.com": [4185], "dev.storify.com": [15752], "pirata.top": [21709], "www.gsu.edu": [6508], "*.chromeadblock.com": [556], "stringeditions.leeds.ac.uk": [17604], "www.schooltoprison.org": [14606], "heg.media": [2053], "rebrush-oas.fazjob.net": [5667], "github.cms.gov": [19742], "meteor.com": [10491], "source.openmpt.org": [12148], "altape.li": [2053], "continuingstudies.stanford.edu": [15635], "r.by.no": [2053], "linshu.meituan.com": [10405], "www.xxxbunker.com": [18911], "xiapu.meituan.com": [10405], "imgdes.pro": [2053], "www.backblaze.com": [1636], "aye.ac": [2053], "www.tickengo.*": [16680], "whois.net": [22020], "mcpmag.com": [9895], "download.zarafa.com": [19109], "ptp.aldi.com.au": [338], "parkhere.org": [14579], "sath.co": [2053], "mss.cammp.anthem.com": [19395], "tr2.gtimg.com": [7121], "active24.es": [19278], "www.trash-mail.com": [16961], "cron-job.org": [19818], "ngs.ru": [20907], "e1.targusinfo.com": [16040], "v2v.io": [2053], "comment-app.hhs.gov": [7192], "*.gitc.finance.gov.au": [3557], "sttu.info": [2053], "assets.rovio.com": [14222], "portal.ascio.com": [1283], "www.abestweb.com": [282], "hosting.com": [20363], "sydney.edu.au": [21631], "www.pirates.pw": [21709], "asterisk.org": [1334], "www.platinumperformance.com": [13007], "go.kayayalc.in": [2053], "jobmky.com": [2053], "clear.thomsonreuters.com": [16650], "www.telvue.com": [16323], "called2.be": [2053], "s.benzi.io": [2053], "dataminelab.com": [4261], "aquabounty.com": [1182], "www.lis.gov": [9236], "*.bitlove.org": [2050], "www.epay.uio.no": [17615], "tags.crwdcntrl.net": [9776], "se.support.tomtom.com": [16812], "forge.ocamlcore.org": [11812], "s.bk9.us": [2053], "nitrokey.com": [11623], "digitallab.link": [2053], "le.ai": [2053], "docs.travis-ci.com": [16976], "abmrt.xyz": [2053], "mello.link": [2053], "blackboard.uic.edu": [17517], "collik.es": [2053], "k1.hitravel.xyz": [2053], "l.comicsia.ru": [2053], "ezoshosting.com": [5102], "cpo.st": [2053], "welsh-country-cottages.co.uk": [18790], "profile.1688.com": [44], "rnch.xyz": [2053], "www.usmint.gov": [17340], "www.impfen-info.de": [8167], "dieselnet.com": [4541], "u.bee.moe": [2053], "ny.curbed.com": [3997], "u.0x004a.eu.org": [2053], "anon-ib.ru": [1079], "pagefair.com": [12533], "owncloud.org": [12387], "master.yandex.kz": [18957], "www.mwave.com.au": [10925], "1v3.me": [2053], "wthr.fr": [2053], "webftp.cesky-hosting.cz": [19680], "lbnow.ml": [2053], "www.paypalobjects.com": [21089], "www.ostif.org": [21038], "apprnt.us": [2053], "buryleisureonline.bury.gov.uk": [19614], "deals.montomeryadvertiser.com": [6571], "*.check24.de": [3103], "mss.a1.net": [252], "rackspace.nl": [13739], "datarecovery.wondershare.com": [22044], "assets.nrarofcochairs.com": [20953], "1tcl.co": [2053], "login.tmall.com": [21748], "archive.nlm.nih.gov": [11241], "jira.codehaus.org": [3431], "eitb.eu": [2053], "developer.oculusvr.com": [11921], "taipo-01-hkg-remote.cathaypacific.com": [2963], "thvideo.us": [2053], "www.homefinder.com": [7612], "dprg.co": [2053], "*.adp.com": [1464], "edp.is": [2053], "e17-stuff.org": [21006, 21007], "trellian.com": [16985], "jangy.com": [2053], "www.shanaproject.com": [14902], "www.sv2.biz": [15923], "bb.mail.ru": [10040], "www.retailmenot.com": [14055], "sk.mbank.eu": [9888], "www.mplayerhq.hu": [9949], "r.skimresources.com": [15158], "cinn.mn": [2053], "glandium.org": [20244], "vdga.ga": [2053], "*.mozilla.com": [10843], "bnka.co": [2053], "troyhunt.com": [21798], "guru.ba": [2053], "rule.tmall.hk": [16786], "talktalk-labs.com": [16182], "njbba2csg.bloomberg.net": [2171], "readby.me": [2053], "goodpo.in": [2053], "my.unit4.com": [21856], "mmtc.co": [2053], "labelsbythesheet.com": [9280], "crifere.com": [2053], "fere.co": [2053], "cdn.spectator.co.uk": [21528], "www.chipland.hu": [3146], "ipredator.se": [7951], "jhnthn.co": [2053], "ologie.co": [2053], "metrica.ya.ru": [18930], "www.nhattao.com": [11570], "ele.na.it": [2053], "amerika21.de": [989], "reda.io": [2053], "on.empreggo.com": [2053], "mtn.bz": [2053], "avadomains.com": [1474], "qh.meituan.com": [10405], "marsstaticcdn.jpl.nasa.gov": [11058], "ri12.tk": [2053], "www.workplacegiving.co.uk": [18745], "zrg.ca": [2053], "www.openmailbox.org": [12152], "ntbn.nl": [2053], "suna.co": [2053], "nickfro.st": [2053], "halogenuseradmin.dft.gov.uk": [19908], "users.isy.liu.se": [9238], "secure.kagi.com": [8918], "avangate.com": [1479], "blog.fig.co": [5897], "licensing.west-lindsey.gov.uk": [18501], "dp.specificclick.net": [15493], "j2int.co": [2053], "exchange.thepensionsregulator.gov.uk": [21708], "m.akbars.ru": [19335], "go.booty.lv": [2053], "ac-rc.org": [2053], "jslink.it": [2053], "engadget.com": [5360], "support.ourlocality.org": [12349], "*.adsmarket.com": [10241], "redirect.1and1.com": [61], "www.aff.biz": [733], "mwny.co": [2053], "firefart.at": [5968], "brdfrd.com": [2053], "mktne.ws": [2053], "vgnx.co": [2053], "teachable.com": [21665], "listener.co.nz": [9611], "cdn.rns.online": [21316], "m.ceviri.yandex.com.tr": [18954], "schuelervz.net": [14608], "lfto.tk": [2053], "www.diagonalperiodico.net": [4522], "www.leadin.com": [20648], "www.kei.pl": [8994], "turm.us": [2053], "communitycontent.marketwatch.com": [10185], "gta.digitale-diathek.net": [4587], "oaweixin.unionpay.com": [17478], "www.special-trade.de": [15488], "bedd.tk": [3597], "static3.symanteccloud.com": [15969], "rezdy.com": [21304], "cc.o.qcloud.com": [13530], "on.rclazo.com": [2053], "ul.to": [4024], "static.corsair.com": [3755], "s.sora-1.net": [2053], "bradlemon.me": [2053], "kiev.unian.info": [21851], "sbrf.ru": [14560], "soycr.com": [2053], "css-hx.newjobs.com": [11510], "*.pokeinthe.io": [21160], "www.selectricity.org": [14809], "investor.google.com": [6962], "educacion.unizar.es": [17643], "www.dataquest.io": [4262], "connect.charter.com": [3079], "pclick.yahoo.co.jp": [18944], "w.patelaxay.com": [2053], "go.educipta.com": [2053], "l.rcty.in": [2053], "archbang.org": [1197], "*.bpt.me": [2420], "wunderkraut.fi": [18783], "despora.de": [4474], "marketplace.plenti.com": [13034], "fanxian.meituan.com": [10405], "sher.so": [2053], "www.citmedialaw.org": [4120], "da.getsatisfaction.com": [6738], "emergencytool.cancer.gov": [2864], "i.bankuralsib.ru": [1699], "rootcolo.com": [2053], "id.unity.com": [17506], "files.cheapies.nz": [19691], "idp.nottingham.ac.uk": [11726], "secure.alumni.georgetown.edu": [6668], "eaps.lcsd.gov.hk": [7211], "appj.mp": [2053], "srvyr.com": [2053], "wvrm.nl": [2053], "cloud.tech-recipes.com": [16263], "krazy.me": [2053], "mygirlfund.com": [10953], "stalkr.net": [15624], "logo.www.sogou.com": [21500], "*.33across.com": [125], "www.spacepolicyonline.com": [15455], "bidsystem.com": [639], "www.ipay.uillinois.edu": [17238], "api.vistumbler.net": [13779], "ecomm.vendercom.com": [17895], "lylep.me": [2053], "*.scania.com": [14573], "biblioteca.ourproject.org": [21044], "bizx.info": [19546], "adtu.co": [2053], "img08.mifile.cn": [10560], "thech.ca": [2053], "documents.sofort.com": [15338], "joy.sapatos.no": [2053], "securityblog.redhat.com": [13909], "www.vouchercloud.com": [21951], "dn-img3appinn.qbox.me": [13528], "lounge.automattic.com": [1465], "roundcube.xeneris.net": [18861], "secure4.coveritlive.com": [3804], "commons.lbl.gov": [9219], "riccilab.stanford.edu": [15635], "identity.moneycorp.com": [20823], "cof.red": [2053], "www.buergerkraftwerke.at": [18582], "cdmf.co": [2053], "englisch.sueddeutsche.de": [15831], "*.yelp.pt": [18979], "dd-wrt.com": [4092], "www.bitcurex.com": [2037], "ccboi.se": [2053], "instagav.in": [2053], "clayte.ch": [2053], "s7.mt-cdn.net": [9963], "actvl.mp": [2053], "touch.vg.no": [17776], "www.enphaseenergy.com": [5386], "datadepot.hscic.gov.uk": [20388], "static.tvtropes.org": [16145], "support.ustream.tv": [17743], "stell.in": [2053], "www.waymoot.org": [18308], "triodos.nl": [17016], "nvtr.it": [2053], "www.perfectaudience.com": [12771], "iaoc.ietf.org": [7868], "thegreatcourses.com": [16458], "abeagle.buzzfeed.com": [2531], "ams2.bohoomil.com": [2233], "jstcg.jd.com": [8571], "bgbl.us": [2053], "pxlws.link": [2053], "*.cloudimage.io": [3366], "biotech.inbre.alaska.edu": [17521], "kuno.co": [2053], "www.telecolumbus.com": [16329], "fs6.formsite.com": [20148], "istbf.co": [2053], "*.att.com": [404], "*.water.org": [18296], "webgo24.de": [18362], "tixs.ee": [2053], "travelfr.ee": [2053], "www.foreignaffairs.com": [6143], "hotkitchen.co": [2053], "st-m.me": [2053], "plkids.tv": [2053], "gcm.so": [2053], "diigo.com": [4599], "unblocked.li": [17434], "mizoapk.in": [2053], "tipp.fm": [2053], "ssnake.me": [2053], "u9.hitravel.xyz": [2053], "crplz.in": [2053], "www.sportisimo.com": [14396], "cntr.ca": [2053], "fatandhandso.me": [2053], "plantare.ourproject.org": [21044], "login.naukri.com": [11298], "landalskilife.fr": [18789], "elpa.gnu.org": [6474], "www.csrsupport.com": [2735], "img.ebyrcdn.net": [5146], "*.ccczh.ch": [19660], "tlglife.in": [2053], "mrblesbra.in": [2053], "prgmr.com": [13274], "msve.me": [2053], "asia.pkg.bunsenlabs.org": [19612], "thefe.st": [2053], "www.buckid.osu.edu": [11959], "flattr.net": [6024], "g9.hitravel.xyz": [2053], "newsko.ru": [20902], "promotions.drweb.com": [4879], "www.jisc.ac.uk": [8726], "cdn-www.demandstudios.com": [4422], "tondel.li": [2053], "czechorchidsociety.org": [19845], "dad.camp": [2053], "www.asus.com": [397], "gmx.sg": [6467], "smdaysd.co": [2053], "intern.nasa.gov": [11058], "www.fredericia.dk": [6233], "answers.microsoft.com": [10543], "aftv.ga": [2053], "laad.in": [2053], "login.ezproxy.lib.rmit.edu.au": [13670], "www.citeulike.org": [3226], "wiki.sugarlabs.org": [15836], "order.mysecureconnect.com": [10973], "blog.status.io": [21569], "hightown.verseone.com": [21909], "bco.vtb24.ru": [21961], "buslanepayments.newcastle.gov.uk": [11507], "expresscoin.com": [5628], "vns.moe": [2053], "www.rage3d.com": [13760], "ems.southampton.gov.uk": [15440], "panax.net": [12559], "community.appcelerator.com": [1152], "marketplace.secondlife.com": [14706], "l.unomaha.edu": [2053], "assets2.roadtrippers.com": [21317], "lnk.vanisaac.nl": [2053], "arvi.cc": [2053], "220volt.hu": [86], "www.cypouz.com": [4061], "4di.co": [2053], "bryton.news": [2053], "vindico.com": [18012], "wsidecar.apple.com": [1160], "mrf.la": [2053], "forhisfa.me": [2053], "www.homeless.org.uk": [20354], "ohardt.us": [2053], "1time.aero": [77], "pouget.indymedia.org": [8234], "adrw.me": [2053], "cdn.thinksteroids.com": [9904], "jodel-app.com": [8755], "invent.ge": [2053], "u.mqx.ninja": [2053], "cmb.ornl.gov": [11892], "drexe.lu": [2053], "apply.7-eleven.com": [218], "halsnaes.dk": [7309], "toaster.mysql.cesky-hosting.cz": [19680], "oisc.homeoffice.gov.uk": [20355], "bostonglobe.com": [16517], "cable-tv-deals.com": [18786], "www.nimh.nih.gov": [11241], "truefactor.io": [17048], "trip.taobao.com": [16206], "richmond.gov.uk": [21307], "go.evetos.com": [2053], "chp.click": [2053], "sncs.io": [2053], "volume.vox-cdn.com": [18145], "www.mountainview.gov": [3250], "www.business.leeds.ac.uk": [17604], "client.lock-box.net": [9705], "wizx.co": [2053], "incontri.tiscali.it": [16770], "www.bkk-advita.de": [1564], "plantsolution.od1.vtiger.com": [18161], "go.evan.co": [2053], "plugins.piwik.org": [12950], "www.alandroidnet.com": [815], "sh.fmauk.org": [2053], "z.gert.is": [2053], "russian.dushanbe.usembassy.gov": [21879], "ipswich.gov.uk": [8499], "www.adactio.com": [588], "l.gwrelay.org": [2053], "*.igloo.nsidc.org": [11251], "dev_rpgmakerweb.degica.com": [3396], "subscribe.wsj.com": [22058], "www.tribalhosting.net": [17002], "app.svnlab.com": [14439], "chiros.us": [2053], "qdr.io": [2053], "r00tz-org.theidentityproject.com": [13623], "thepiratebay.eu.com": [21709], "plans-review.stanford.edu": [15635], "www.esad.ulaval.ca": [17515], "svnweb.freebsd.org": [6237], "aiuto.computer": [2053], "www.undergraduatecouncil.wustl.edu": [18290], "security-portal.cz": [14763], "www.trialfunder.com": [16999], "jolicloud.com": [20547], "www.palmetto.com": [12551], "en.itao.com": [20507], "deven.cc": [2053], "www.traxarmstrong.com": [16979], "www.dof.dk": [4721], "i-ca.pe": [2053], "endo-us.link": [2053], "webapps.stgeorge.com.au": [21577], "icaro3.ual.es": [17361], "classes.usc.edu": [17564], "abetter.mn": [2053], "*.www.filmthreat.com": [5920], "mhmgrl.com": [2053], "www4.shropshire.gov.uk": [21440], "apschedule.com": [376], "*.vdopia.com": [17875], "static.ads-twitter.com": [19301], "go.siadlak.com": [2053], "webchat.freenode.net": [20168], "www.bobafamily.com": [2225], "catalog.umd.edu": [17549], "hlgn.tv": [2053], "www.browserleaks.com": [2425], "www.veracode.com": [17906], "joeas.tn": [2053], "affiliate-program.amazon.com": [952], "userfox.com": [17726], "grftn.in": [2053], "*.napoleonmakeupacademy.com": [11225], "fidh.org": [5684], "go.she.com": [2053], "*.openrightsgroup.org": [12221], "gixen.com": [6815], "shopping.udn.com": [17224], "so.stellr.co": [2053], "*.myheritage.no": [11023], "bfzr.de": [2053], "magni.in": [2053], "help.tune.com": [21812], "stlexp.at": [2053], "www.pbhs.com": [12415], "m.pinterest.com": [12914], "investors.demandware.com": [4425, 4427], "mitu.la": [2053], "*.poczta.home.pl": [7610], "hoodfamo.us": [2053], "du.ignud.de": [2053], "cdn.synapsepay.com": [21634], "s.cstrlr.com": [2948], "www.intenseschool.com": [8374], "www.afip.gob.ar": [19317], "cdn1.talkingpointsmemo.com": [16187], "global.duke.edu": [4894], "on.fayard.re": [2053], "admissions.plymouth.gov.uk": [21153], "store.edgerunner.com": [5183], "make.opendata.ch": [21011], "lists.wikimedia.cz": [18595], "www.paypal-forward.com": [12679], "www.takeonthegame.com": [21654], "bit.therua.net": [2053], "uruguay.usembassy.gov": [21879], "gigs.ky": [2053], "status.rackspace.com": [13740], "pingshan.meituan.com": [10405], "mupdf.org": [20853], "s2k.it": [2053], "www.shaunlorrain.com.au": [14931], "stats.jabber.at": [8620], "www.jenkins.io": [20536], "www.doomwiki.org": [4775], "abudhabi.usembassy.gov": [21879], "ehoiva-fi.directo.fi": [19982], "hwreg.environment-agency.gov.uk": [20047], "theu.be": [2053], "wusmeducation.wusm.wustl.edu": [18290], "*.ur.wvu.edu": [18508], "soloma.net": [2053], "grewis.me": [2053], "openid.aol.com": [361], "enliken.me": [2053], "www.webcamboys.us": [18408], "rptag.us": [2053], "degoosta.club": [2053], "shortluke.ml": [2053], "*.ign.com": [7876], "7dtv.nl": [2053], "*.akb.ch": [20574], "www.your-file-system.com": [19027], "iptv.canaldigital.dk": [2862], "mall.taobao.com": [16206], "form.ms.yahoo.co.jp": [18944], "www.tangiblesecurity.com": [16199], "mitlie.be": [2053], "gurw.in": [2053], "gsy.me": [2053], "selct.de": [2053], "ol.iver.ws": [2053], "mbiz.co": [2053], "cooperazione.ch": [3712], "order.1and1.ca": [62], "conversionruler.com": [10169], "l8p.ru": [2053], "passport.bilibili.com": [1928], "1.vgc.no": [17776], "dmoz.org": [4688], "links.leloop.org": [9347], "crrck.com": [2053], "developers.arcgis.com": [1194], "storage-file-eu.gmx.com": [6467], "bclv.it": [2053], "newsroom.firstdirect.com": [20127], "eg.card24h.info": [2053], "dsft.co": [2053], "wiki.piratpartiet.no": [12941], "katzporn.in": [8973], "jlbcsdp.com": [2053], "pic002.cnblogs.com": [19743], "*.vertriebsassistent.de": [17935], "go.runicgam.es": [2053], "techhouse.org": [16267], "1337x.org": [37], "www.edwardtufte.com": [5204], "hairsaff.co": [2053], "stream-now.cf": [2053], "whsky.me": [2053], "jen.is": [2053], "*.foodandwaterwatch.org": [6119], "www.youtube.ma": [19016], "login.ashampoo.com": [1285], "j.mjrredfox.org": [2053], "www.wyzant.com": [18791], "job.o.qcloud.com": [13530], "www.zentralbahn.ch": [22131], "www.xenomai.org": [18866], "1pc.club": [2053], "cryptoins.com": [3943], "webmail.telus.net": [16364], "dms.vdv.de": [17770], "*.coxbusiness.com": [3808], "unisend.com": [17485], "mzp.io": [2053], "idg.me": [2053], "edwar.de": [2053], "rateyourlocalservice.co.uk": [21260], "pdn.im": [2053], "mctr.st": [2053], "cuteness.com": [19840], "www.dnuk.com": [4565], "www.userium.com": [17727], "www.calyx.net": [2819], "c.speedtest.net": [15509], "opensource.org": [12223], "l.paos.org": [2053], "smesh.co": [2053], "www.bathnes.gov.uk": [1737], "sugarsync.com": [15838], "goto.dj": [2053], "ballou.se": [1677], "www.cvimellesgriot.com": [2750], "czr.fm": [2053], "www.2345.com": [87], "box.wustl.edu": [18290], "fsaregistration.ed.gov": [4988], "portal.mkk.com.tr": [9921], "emuz.us": [2053], "www.evga.com.tw": [5085], "scrl.in": [2053], "fcpablog.com": [5672], "citra-emu.org": [19718], "hrnt.jhu.edu": [16562], "2disney.us": [2053], "www.jonathanmayer.org": [8773], "txpod.net": [2053], "www.winehq.org": [18652], "promo.untangle.com": [17657], "pt.foursquare.com": [6200], "www.sourcegraph.com": [15431], "connect.ohiobar.org": [11962], "ciotti.cc": [2053], "www.sharesix.com": [14912], "opera.yandex.kz": [18957], "bst5.gismeteo.ru": [6789], "a.pgtb.me": [10325], "jdsk.io": [2053], "tntra.co": [2053], "vocoll.com": [21939], "ss3.bdstatic.com": [19507], "static.edeka.de": [20006], "www.iosco.org": [7926], "ticket-ituat.courierpost.co.nz": [3784], "s.ppjol.net": [13260], "geoclub.de": [6665], "bataysk-gorod.ru": [19495], "jabjab.de": [8618], "m.yr.no": [22120], "bit.telomero.mx": [2053], "community.cisecurity.org": [2673], "try.gogs.io": [20264], "oper.cc.ntu.edu.tw": [11160], "web.aexp-static.com": [717], "kar.kent.ac.uk": [17603], "digipaper.fi": [10306], "eforms.wakefield.gov.uk": [21966], "ffrd.ml": [2053], "search.nadir.org": [11197], "my.fandrip.com": [2053], "*.hotwire.com": [7706], "incites.thomsonreuters.com": [16650], "zealdocs.org": [22128], "www.unicefusa.org": [17467], "pipl.com": [12916], "dgt-hi.in": [2053], "r.ippl.it": [2053], "saba.com": [21353], "www.searchcloudcomputing.de": [16273], "h0p.to": [2053], "omicron.at": [11834], "genbank.ru": [6643], "www.direct123.fi": [4607], "www.philshobbyshop.com": [12840], "lilumbrel.la": [2053], "www.proxy.sh": [13408], "xynz.co": [2053], "fastlane.nsf.gov": [11249], "ehosting.ca": [5219], "www.fee.org": [5677], "1l-view.mail.ru": [10040], "hcwa.it": [2053], "cdn.sunglasswarehouse.com": [15856], "badge.facebook.com": [5733], "www.1and1.co.uk": [63], "molevalley-consult.objective.co.uk": [20979], "www.adblockplus.org": [601], "blufiles.storage.msn.com": [9961], "www.hostbaby.com": [7651], "vjam.es": [2053], "pocarl.es": [2053], "rutgers.edu": [14285], "histry.us": [2053], "media.style.com": [15805], "www.cheatography.com": [19692], "*.jboss.org": [8565], "www.thetrainline.com": [16504], "ap236.ca": [2053], "videogamegeek.com": [17978], "siteuptime.com": [15122], "www.digwebinterface.com": [19922], "crtcatalogs.com": [2053], "l.rnbk.org": [2053], "summerhumanities.stanford.edu": [15635], "cdn.torlock.com": [16839], "go.manheim.com": [2053], "go.saraygio.com": [2053], "www.editola.com": [5187], "portal.sans.org": [14310], "auth.jino.ru": [8724], "agilei.se": [2053], "ymkn.us": [2053], "anybeat.com": [1117], "cathaypacific-campaign.com": [2963], "french.benin.usembassy.gov": [21879], "m.nic.ru": [11573], "later.al": [2053], "*.desire2learn.com": [4470], "static-assets.metartnetwork.com": [10473], "klik.ki": [2053], "halcyon.sh": [7303], "planetromeo.com": [12983], "sales.liveperson.net": [9654], "assets.yumpu.com": [19054], "ily.fr.nf": [2053], "cms.hipercor.es": [7555], "lsdev.sir.sportradar.com": [21540], "www.warwickshire.police.uk": [18283], "img.spog.ga": [2053], "go.withjuan.com": [2053], "moer.link": [2053], "ajs.io": [2053], "fallout4.com": [5756], "*.clickfuncasino.com": [3319], "*.puhkaeestis.ee": [13450], "media.gexpro.com": [6742], "www.perception.psy.ulaval.ca": [17515], "looove.it": [2053], "hvyhvy.co": [2053], "eoszak.me": [2053], "sureup.us": [2053], "*.zeroc.com": [19156], "iac.ac": [2053], "blog.doublerobotics.com": [4807], "apns.atechmedia.com": [408], "qualtrics.com": [13562], "primorskiy-kr.beeline.ru": [1801], "ex10.biz": [5578], "www.uvpn.de": [21832], "gocoo.gs": [2053], "hipos.co": [2053], "secure.commonground.convio.com": [3697], "*.craftstats.com": [3822], "webmail.sfu.ca": [14893], "8.dbstatic.no": [19866], "sobitia.ya.ru": [18930], "kirov.rt.ru": [13703], "www.porteus-kiosk.org": [13163], "at.kjmp.co": [2053], "www.apotea.se": [1137], "www.freesnowden.is": [6268], "qult.co": [2053], "go.tess.ec": [2053], "t411.io": [16036], "s.jakusit.cz": [2053], "cykloteket.se": [4054], "fausti.me": [2053], "myaccount.hightownha.org.uk": [20339], "bistudio.com": [2232], "www.thinkprogress.org": [3005], "s.holist.de": [2053], "noavg.me": [2053], "rckf.sh": [2053], "passports.gov.au": [1435], "slouken.libsdl.org": [9449], "bdnpull.bangorpublishing.netdna-cdn.com": [1688], "hornbach.nl": [7640], "catersnews.com": [2961], "lkmart.com.au": [9242], "photos.meetme.com": [10378], "cnqr.us": [2053], "byhendrikus.com": [2053], "kryptronic.com": [9174], "dsgnlal.us": [2053], "*.conversionruler.com": [10169], "ntst.umd.edu": [17549], "www.oyoony.at": [21057], "zenmate.com.pa": [19133], "hcw.io": [2053], "nemlog-in.dk": [11335], "signup.claranet.de": [3270], "watch.yandex.com.ua": [18955], "feedback.yandex.com.tr": [18954], "*.realtidbits.com": [13864], "*.azhca.org": [420], "on.postem.in": [2053], "tiffhuang.me": [2053], "unionpacific.jobs": [21854], "m.taxi.ya.ru": [18930], "belive.ru": [19514], "www.axeso5.com": [1512], "wis.sndcdn.com": [15278], "i9.piimg.com": [16704], "1ts.at": [2053], "s.hgtv.ca": [2053], "support.ktk.bme.hu": [1570], "ldz.com.au": [2053], "www.hertz247.fr": [7484], "minifree.org": [20800], "logon.hjv.dk": [7577], "ntqt.cm": [2053], "www.blackbaud.com": [2101], "ad.dc2.adtech.de": [678], "weese.me": [2053], "despeck.be": [2053], "oneweb.cz": [11847], "amazon.com.mx": [19368], "gztt.ca": [2053], "beta.lewrockwell.com": [9437], "r2d.to": [2053], "recsports.osu.edu": [11959], "tindie.com": [16742], "www.catalog.yandex.by": [18953], "www.rub.de": [13712], "shili.1688.com": [44], "dant.co": [2053], "addme.io": [2053], "www.upi.com": [17282, 17283], "ternopil.unian.ua": [21851], "pcdiy.asus.com": [397], "rvrb.us": [2053], "osir.mx": [2053], "images.obi.at": [20977], "myaccount.newcastle.gov.uk": [11507], "forums.web4all.fr": [18349], "fastsoft.com": [5791], "benefitsu.stanford.edu": [15635], "api.instagram.com": [8331], "aresu.dsi.cnrs.fr": [6314], "flukers.me": [2053], "l.21zoo.com": [2053], "www.dizzcloud.com": [4676], "hidemyass.com": [7536], "afp548.com": [322, 323], "inspectlet.com": [8325], "vidn.verisign.com": [17915], "fu-k.it": [2053], "www.public.surreyheath-online.gov.uk": [21612], "joslin.org": [8785], "kcbooks.us": [2053], "apps.xo.com": [18833], "jesuiten.info": [2053], "umeahackerspace.se": [17426], "drivee.ne.jp": [4860], "m.blogs.yandex.kz": [18957], "mer.io": [10445], "mmak.es": [2053], "version6.edeveloperz.com": [4998], "www.hertz.no": [7496], "xrhyth.ms": [2053], "ndoch.govspace.gov.au": [6994], "smirnyh.sakh.com": [21360], "bnjmn.pw": [2053], "angus.tips": [2053], "racked.com": [13731], "b2b.goodline.info": [20269], "policy.stonybrook.edu": [15736], "www.kmh.se": [8890], "*.zpcdn.com": [19228], "www.nest.com": [11358], "hiphops.link": [2053], "s.n0t.net": [2053], "out.exxica.com": [2053], "qhne.ws": [2053], "narri.tv": [2053], "www.wunderkraut.fi": [18783], "hbuk.co": [2053], "hk.norton.com": [11703], "link.srce.hr": [2053], "heliny.com": [7430], "cmxl.gy": [2053], "telltalegames.com": [16359], "www.bancomer.com": [1540], "jews.tl": [2053], "myaccount.avira.com": [1489], "xpbg.it": [2053], "tchak.link": [2053], "globalsign.co.*": [6840], "plen.tl": [2053], "logicbox.es": [2053], "tvnewscheck.com": [16142], "lukesn.me": [2053], "s65.cnzz.com": [3391], "kenexagovernmentsolutions.com": [9001], "rsf.org": [14018], "imba.gl": [2053], "www.ico.gov.uk": [17245], "wrkw.me": [2053], "test.commentarymagazine.com": [3543], "rdlt.uk": [2053], "mintel.tv": [2053], "i.money.163.com": [42], "mushro.ms": [2053], "pcn.cityoflondon.gov.uk": [3249], "www.migros-ferien.ch": [10564], "dihrd.me": [2053], "smpl.li": [2053], "forms.ceredigion.gov.uk": [3025], "www.lambeth.gov.uk": [20631], "i.darjeelin.fr": [4226], "authd.me": [2053], "*.toxstats.com": [21768], "*.symlynx.com": [15973], "openvpn.net": [12187], "www.openeffect.ca": [21013], "facultyappts.stanford.edu": [15635], "connect.agariomods.com": [759], "ls.meituan.com": [10405], "www.bittorrent.org": [2076], "*.tibco.com": [16072], "gr.contrainfo.espiv.net": [20058], "nametiles.co": [11215], "miffl.in": [2053], "j.paydirekt.de": [12684], "wallet.btcs.com": [1603], "www.Tunnelbear.com": [17108], "m.southwark.gov.uk": [15445], "mylimehouse.west-norfolk.gov.uk": [22004], "www.xfce-help.org": [21006], "eu4all.adenu.ia.uned.es": [17446], "prtnrs.us": [2053], "www.evoliatis.com": [5572], "gpoa.in": [2053], "qzonestyle.gtimg.cn": [7120], "wiki.desmume.org": [4321], "fshp.co.uk": [2053], "scfne.ws": [2053], "www.irc.lc": [20494], "papakaya.com": [12583], "www.softnik.com": [21498], "rum.wpm.neustar.biz": [11472], "ela.eset.com": [5463], "www.securecerts.ie": [4596], "www.akamai.com": [800], "mansursolar.com": [2053], "zoho.com": [19202], "wrongplanet.net": [18776], "the.goldin.gs": [2053], "iwong.us": [2053], "3mi.me": [2053], "umahidol.worldcat.org": [18748], "portal.zen.co.uk": [19129], "link.premia.cat": [2053], "www.5vpn.net": [209], "it.itpro.es": [2053], "playpau.se": [2053], "l.saadh.com": [2053], "re.ston.tc": [2053], "mkt.report": [2053], "em60.nl": [2053], "www-aws.stanford.edu": [15635], "guiad.in": [2053], "alastairs-place.net": [818], "www.aldi-nord.de": [338], "et13.xhcdn.com": [18815], "www.hrsmart.com": [7231], "agsoc.com": [2053], "exratione.com": [5580], "tinymbr.com": [2053], "shft.me": [2053], "www.vtb24.ru": [21961], "foris.extranet.sonymobile.com": [15394], "digt.in": [2053], "advising.engineering.osu.edu": [11959], "forum.meo.pt": [10440], "sirinlabs.com": [21457], "blog.websupport.sk": [18456], "lpth.co": [2053], "www.accesspressthemes.com": [486], "om.pro2om.net": [2053], "js.letvcdn.com": [20667], "netforumpro.com": [11382], "www.ligatus.de": [9502], "www.webrtc-experiment.com": [18378], "l.ons.to": [2053], "et.4.boardgamearena.com": [2219], "l.prepa.co": [2053], "ciona.in": [2053], "www.pluralsight.com": [21152], "pharmacyschool.usc.edu": [17564], "thecha.pl": [2053], "digitabportals.com": [4562], "www.nex.sx": [11546], "shields.io": [21425], "clients.openitc.co.uk": [12144], "www.cancerresearchuk.org": [19637], "www.24ways.org": [93], "highr.es": [2053], "inmais.ml": [2053], "support.trakt.tv": [21777], "speed.twistedmatrix.com": [17162], "euro.yuga.ru": [22121], "www.kinox.tv": [20597], "irpa.umd.edu": [17549], "scdn.nflximg.net": [11421], "basilisk.aetherflyff.com": [732], "bracknell-forest.objective.co.uk": [20979], "migros-ferien.ch": [10564], "sumologic.com": [15848], "southandvale-consult.objective.co.uk": [20979], "u.pw": [2053], "litfl.org": [2053], "www.smssecure.org": [14377], "one.umd.edu": [17549], "brilig.com": [2386], "bitmex.com": [1985], "honeynet.org": [20357], "trafficsafetymarketing.gov": [16927], "www.fsfeurope.org": [5715], "bngrp.co": [2053], "ds.static.rtbf.be": [14244], "undrarmr.co": [2053], "makemodules.ning.com": [11608], "os.inf.tu-dresden.de": [16126], "l.lumension.com": [2053], "dnews.asia": [2053], "oagaviation.com": [17204], "crowd.xenserver.org": [18858], "pic6.58cdn.com.cn": [202], "seedinve.st": [2053], "bonf.im": [2053], "ssl.laproxsites.com": [9307], "m.hivtest.cdc.gov": [19663], "uadmissions.georgetown.edu": [6668], "vlprrc.co": [2053], "jtb.cc": [2053], "www.twilio.com": [17152], "www.justice.gov.sk": [15217], "paulm.cc": [2053], "www.moneropool.com": [20822], "status.maxcdn.com": [10256], "knf.space": [2053], "mirror.aarnet.edu.au": [269], "promoti.es": [2053], "developerblog.redhat.com": [13909], "hndpt.co": [2053], "reynir.dk": [14086], "cgi.stanford.edu": [15635], "spsch.eu": [21545], "avex.io": [2053], "costarica.usembassy.gov": [21879], "flatkomfort.telefonanschluss.de": [7187], "owasp.org": [11890], "arbitrage.wmtransfer.com": [18373], "m.swag.ly": [2053], "mentorfdn.us": [2053], "secure.newscheckmedia.com": [11532], "yourlocaledge.com": [19036], "l2ag.com": [2053], "bridget.mp": [2053], "art.inl.gov": [20462], "ld-1.itunes.apple.com": [1160], "www.dynamicweb.it": [4924], "conscious.to": [2053], "jayesh.xyz": [2053], "spkd.us": [2053], "search.ndla.no": [11309], "dash.readme.io": [13841], "portal.vzp.cz": [17816], "aminterest.com": [2053], "notevenpast.org": [11715], "bear.im": [1786], "piwik.omnigroup.com": [11992], "burrittlibrary.worldcat.org": [18748], "40.se": [2053], "www.shadowproof.com": [14898], "tfl.to": [2053], "www.leakedsource.com": [9364], "business.upc.nl": [17280], "overdrive.com": [12365], "gibill.va.gov": [17297], "nines.nl": [11607], "www.wmjobs.co.uk": [18210], "forum.1and1.ca": [62], "blog.openttdcoop.org": [12180], "lfay.me": [2053], "clikc.me": [2053], "rms.builders": [2053], "www.edgecast.com": [5180], "img.olx.com.br": [11831], "ctcaho.pe": [2053], "l.rocgaude.com": [2053], "on1.so": [2053], "*.thewire.com": [16591, 16592], "l.smarks.me": [2053], "localw.in": [2053], "et03.xhcdn.com": [18815], "blogs.rcuk.ac.uk": [13640], "ltl96.tech": [2053], "hnrysc.hn": [2053], "smbgo.co": [2053], "akamp.us": [2053], "visitor.constantcontact.com": [3657], "livenation.com.au": [9642], "s.m-w.com": [2053], "webmail.easymail.ca": [5127], "*.bitstamp.net": [2073], "thepiratebay.skillproxy.com": [21217], "*.pharmgkb.org": [21115], "www.kinotehnik.com": [9062], "*.cert.gov.uk": [2635], "mydistrict.chichester.gov.uk": [19702], "mhdebr.xyz": [2053], "mailman.common-lisp.net": [3549], "casascius.com": [2931], "six1.co": [2053], "adaptec.com": [595], "api.btcc.com": [2438], "www.thunderclap.it": [16674], "ratgeber-verbraucherzentrale.de": [17909], "stat.difi.no": [4547], "*.faround.net": [5780], "giv.lt": [2053], "go.emmache.com": [2053], "qrnz.me": [2053], "ctune.co": [2053], "o1.hitravel.xyz": [2053], "atstuff.com": [1369], "tays.wf": [2053], "ashw.ink": [2053], "www.0x539.se": [8], "agnitum.com": [768], "librarybookings.leeds.gov.uk": [20653], "svy.be": [2053], "mail.netscape.com": [11441], "autodiscover.osu.edu": [11959], "www.tinderfoundation.org": [16741], "chod.zamenej.sk": [2053], "jugendrei.se": [2053], "smili.stanford.edu": [15634], "legal.nodejitsu.com": [11647], "bwbridgesrv.com": [2053], "totaltravel.co.uk": [18942], "sho.pe": [2053], "account.billiondigital.com": [1936], "mypension.wirral.gov.uk": [18672], "manager.mijndomeinreseller.nl": [20745], "www.sandstorm.io": [14522], "cdn.grahamcluley.com": [7013], "accordancebible.com": [495], "www.gay-torrents.net": [6597], "www.railtours.at": [20984], "chiebukuro.yahoo.co.jp": [18944], "forestanders.in": [2053], "moreal.co": [10775], "merill.at": [2053], "olve.me": [2053], "skepticalscience.com": [15152], "changemypassword.leeds.ac.uk": [17604], "static.truetrophies.com": [17051], "kelv.in": [2053], "status.parsely.com": [12621], "tpllp.co": [2053], "cloud.aculab.com": [545], "de-sv.dict.cc": [4536], "www.zalando.dk": [19094], "sg.meituan.com": [10405], "career.teamtailor.com": [16258], "prozeny.cz": [13343], "message.alibaba.com": [850], "library.bury.gov.uk": [19614], "www.zalando.de": [19094], "livephi.sh": [2053], "darius.im": [2053], "www.in-disguise.com": [8173], "www.glyph.im": [6878], "red.ldrdg.com": [2053], "ebaum.it": [2053], "grif.gd": [2053], "fondfol.io": [2053], "lushanls.meituan.com": [10405], "lkle.in": [2053], "autodiscover.webtrends.com": [18467], "muut.com": [10923], "phos.ph": [2053], "www.vehbidz.com": [17883], "somethings.msi.com": [9957], "www.discuto.io": [4646], "maha.uno": [2053], "a.prgm.me": [2053], "munchies.com.de": [2053], "l.datapa.com": [2053], "preferences.news.com.au": [11530], "my.medicinec.si": [2053], "cdn.callrail.com": [19629], "ochssc.org": [2053], "s.scotslass.com": [2053], "app.callrail.com": [19629], "*.mediapart.fr": [10348], "www.dutchdpa.nl": [4910], "affiliates.upickem.net": [17677], "shareholder.com": [14922], "www.globaltap.com": [6862], "www.openbank.ru": [21008], "u1.uicdn.net": [17236], "arhomes.us": [2053], "www.zwiebelfreunde.de": [19244], "app.bluecats.com": [2181], "www.freescorenation.com": [6248], "*.shannonhealth.com": [14904], "community.sendgrid.com": [14821], "www.codingteam.net": [3447], "bexley.greenparty.org.uk": [7052], "www.contrastsecurity.com": [19783], "*.artfiles.de": [1266], "www.tunisia-sat.com.tn": [17107], "crew.sc": [2053], "www.ruby-toolbox.com": [14251], "brac.co": [2053], "forums.hubic.com": [7742], "www.learnmyway.com": [9368], "bzng.us": [2053], "capita.slough.gov.uk": [15216], "*.ovid.com": [12380], "forums.xamarin.com": [18840], "www2.merkleinc.com": [20783], "brnd.ws": [2053], "www.slov-lex.sk": [15217], "rk0.eu": [2053], "www.miga.org": [8408], "it-cube.net": [7984], "adblade.com": [600], "thing.net": [16623], "adnn.cf": [2053], "www.bergenopzoom.nl": [11324], "cbfisap.ed.gov": [4988], "www.exhibition.ecc-platform.org": [4978], "socialscreamer.com": [15315], "itsthevi.be": [2053], "learning.southglos.gov.uk": [15438], "*.yelp.be": [18979], "www.bediff.com.br": [1775], "globalreach.com": [20254], "mail4kidz.eu": [10041], "www.uni-hannover.de": [17453], "www.geekgirlsguide.com": [6618], "praetorian.com": [13237], "blogs.fsfeurope.org": [5715], "xsearch.stanford.edu": [15635], "google.com.*": [6966, 6968, 6973, 6975], "str4t.gy": [2053], "dnksp.nl": [2053], "thefoundry.co.uk": [16544], "adisc.org": [307], "it.biovendor.cz": [1956], "www.plenti.com": [13034], "www.yieldlab.de": [18988], "normation.com": [11686], "astat.brave.pigg.ameba.jp": [963], "2.odsynth.com": [2053], "allaboutus.warrington.gov.uk": [18280], "discoverja.com": [2053], "www.yourcounciljobs.co.uk": [19041], "de-bg.dict.cc": [4536], "ucollege.wustl.edu": [18290], "shwds.co": [2053], "*.myheritage.com.il": [11023], "tracker.openitp.org": [12145], "r.fco.cc": [2053], "ko.3.boardgamearena.com": [2219], "outofcontrol.ca": [12352], "jupyter.org": [8839], "rbrt.cc": [2053], "nova.li": [2053], "secure.nationalparks.gov.uk": [20877], "northumberland-consult.objective.co.uk": [20979], "www.gnusocial.de": [6478], "kinyetbna.ml": [2053], "widgetserver.com": [18580], "open.ad.yieldmanager.net": [14114], "spamcop.net": [21522], "go.mudunuru.com": [2053], "edp.pt": [4995], "nubi.la": [2053], "pipeline.livingsocial.com": [9679], "ccmis.psc.gov": [21220], "www.acluofnc.org": [289], "pcbooking.doncaster.gov.uk": [4770], "sjd.md": [2053], "hscj.ufl.edu": [17538], "speakerdeck.com": [15485], "cp.bluesnap.com": [2189], "mail.wusm.wustl.edu": [18290], "community.wizards.com": [18687], "blgwd.us": [2053], "tortoise.link": [2053], "s.mzstatic.com": [11041], "image.slidesharecdn.com": [15208], "docs.appcelerator.com": [1152], "www.athleticstadium.bedford.gov.uk": [19509], "hipaa.wustl.edu": [18290], "tbo.ly": [2053], "plazakauppa.fi": [12335], "trappl.co": [2053], "www.hesaplabakalim.com": [7512], "dodlive.mil": [17306], "mivamerchant.com": [10653], "gftv.us": [2053], "3st.co": [2053], "switchnetworks.com.au": [15956], "shr.antonin.us": [2053], "beta.campusmap.wvu.edu": [18508], "patronbase.com": [21083], "*.ucsd.edu": [17216], "kantarlatam.com": [8937], "bossup.us": [2053], "www.swiss.com": [15948], "cit.ms": [2053], "www1.youm7.com": [19021], "jezykpolski.istockphoto.com": [20505], "sno.buzz": [2053], "es.pcisecuritystandards.org": [12428], "www.certdepot.net": [19678], "cabn.co": [2053], "invincea.com": [8472], "groov.link": [2053], "boards.ie": [2222], "2016.gaobase.admin.cam.ac.uk": [17529], "www.altoonamirror.com": [935], "bt.aspr.gr": [2053], "ard.ndr.de": [11310], "www.mediaed.org": [10316], "www.galpon.org": [20197], "vclem.us": [2053], "protectionofminors.georgetown.edu": [6668], "www.zenger.nl": [19143], "4gifs.com": [6155], "wyzant.com": [18791], "go.maton.com.au": [2053], "mydealz.de": [10944], "kingdomofloathing.com": [1343], "www.raymond.cc": [13818], "ediholdings.co": [2053], "www.tiggerswelt.net": [16712], "s.s-tatami.info": [2053], "g33kinfo.com": [6415, 6416], "www.seeks-project.info": [14798], "go.conats.com": [2053], "shop.asus.com": [397], "sj.la": [2053], "euserv.de": [5082], "k.mpbk.us": [2053], "www.skylink.sk": [15183], "www.vle.cam.ac.uk": [17529], "identitymanagement.uchicago.edu": [17532], "ikk-gesundplus.de": [7895], "jadi.net": [8638], "tode.io": [2053], "s.hoto.me": [2053], "fwal.co": [2053], "linkyb.it": [2053], "dating.thechive.com": [16524], "central.aclufl.org": [286], "anxbtc.com": [354], "a.wspomagam.org": [2053], "www.rheden.nl": [11324], "atechmedia.com": [408], "canlii.org": [2847], "vegfre.sh": [2053], "turnkeylinux.org": [17116], "wwwdc2.hertzentertainment.com": [7511], "pndq.co": [2053], "b.wpimg.pl": [22055], "webmail.quickline.com": [21243], "go.kylero.se": [2053], "eservices.plymouth.ac.uk": [13055], "www.econda-monitor.de": [5158], "zafcreations.cf": [2053], "www.basekit.com": [19493], "markov.ee": [2053], "pandawhale.com": [12561], "l9.hitravel.xyz": [2053], "hyper.sh": [7790], "gmx.net": [6467], "blog.webplatform.org": [18376], "kristiandill.ch": [2053], "middleware.internet2.edu": [8427], "delicate.psc.edu": [12502], "www.webhostingtalk.com": [18336], "idpsir.uned.es": [17446], "ox-d.netline.com": [11433], "bucknell.edu": [2445], "bnkd.me": [2053], "crm.fsf.org": [5713], "sonos.com": [15389], "www.comviq.se": [3611], "bbnaut.ibillboard.com": [7825], "www.mainlinehobby.net": [10062], "oplata.bankuralsib.ru": [1699], "on.ataf.club": [2053], "video.vzaar.com": [18179], "blchr.tv": [2053], "tickets.com": [16694], "bohoomil.com": [2233], "fbrd.link": [2053], "toegr.de": [2053], "*.apache.org": [1126], "banan.jd.com": [8571], "s.clc.tf": [2053], "proxysite.com": [13409], "arabavia.com": [2053], "lhcdashboard.web.cern.ch": [2632], "www.arquetype.org": [1247], "www.blog.documentfoundation.org": [16487], "www.tcd.ie": [17012], "*.unitedsafcu.org": [17494], "votesmart.org": [13369], "www.g33kinfo.com": [6415, 6416], "tckt.ws": [2053], "eda.sakh.com": [21360], "helpdesk.crashplan.com": [3833], "www.bostonbuilt.org": [2285], "www.clever.com": [3297], "yuchengxian.meituan.com": [10405], "*.bulletinmessenger.net": [2474], "rg.tl": [2053], "metasploit.com": [10488], "help.aliyun.com": [861], "koer.co": [2053], "a5-content.vouchercloud.com": [21951], "lsvr.osu.edu": [11959], "acad.my": [2053], "igualdad.us.es": [17706], "library.eastriding.gov.uk": [5115], "on.bogner.com": [2053], "actv.rs": [2053], "buy.xmarks.com": [18882], "djangogirls.org": [4680], "realas.co": [2053], "a.7wbr.com": [2053], "thepiratebay-proxy.com": [21711], "q.dmahajan.com": [2053], "www.austrian.com": [1443], "www.calligra-suite.org": [2813], "forums.atomicorp.com": [1364], "epic.com": [5422], "ptrust.uk": [2053], "bet.us": [2053], "ron.ly": [2053], "booklooker.de": [2257], "trialfunder.com": [16999], "etr.my": [2053], "www.torrentleech.org": [16858], "buinfo.me": [2053], "go.say-z.com": [2053], "ctr.bz": [2053], "mnt.st": [2053], "bmpharmacy.com": [1574], "escrow.com": [5459], "projectodd.ci.cloudbees.com": [19736], "tinydl.com": [16759], "linuxtag.org": [9577], "politicopro.com": [13099], "www.onename.io": [12037], "www.apprenticeships.scot": [19404], "go.2600.pro": [2053], "c-js.info": [2053], "itbl.es": [2053], "kimbl.es": [2053], "chilebit.net": [3134], "pd.incb.us": [2053], "www.gfi.com": [6441, 20234], "*.nationalacademies.org": [11234], "cambridge.gov.uk": [19630], "act.ucsd.edu": [17216], "status.status.io": [21569], "vpac.org": [17789], "*.instructables.com": [8348], "*.fullerton.edu": [6372], "puzzlep.ro": [2053], "lvhb.net": [2053], "mirmed.org": [2053], "g-off.me": [2053], "dl.yennhi.net": [2053], "safe-in-cloud.com": [14461], "loop.tl": [2053], "uv.es": [17750], "glft.co": [2053], "www.kinogo.co": [20599], "tez-tour.gr": [2053], "t6.hitravel.xyz": [2053], "kitesista.media": [2053], "kg.tl": [2053], "*.photobucket.com": [12856], "fuled.tk": [2053], "trucks.autoreview.ru": [19455], "chsv.co": [2053], "www.owncloud.com": [12386], "www.us.adjug.com": [565], "isnic.is": [7971], "bolton.greenparty.org.uk": [7052], "thewatershedresidence.com": [16587], "kinsts.com": [2053], "sexyfunwith.me": [2053], "ma.rcello.com": [2053], "dreampass.jp": [4848], "check1.fsrar.ru": [20181], "wee.re": [2053], "cubet.to": [2053], "cysh.eu": [2053], "tcol.es": [2053], "my-qa.symantec.com": [15969], "www.mediaroots.org": [20770], "the.shrn.co": [2053], "pureinfo.com": [13468], "fs4.formsite.com": [20148], "4chan-ads.org": [185], "go.voz48.xyz": [2053], "b.alipay.com": [857], "f.1steroids.biz": [2053], "www.comnews-conferences.ru": [3516], "3wh.co": [2053], "4mf.me": [2053], "nationbuilder.com": [11232], "via.kas.ky": [2053], "i3.hitravel.xyz": [2053], "l.blmx.de": [2053], "bitcoinforum.com": [2029], "cgshed.co.uk": [2053], "www.rosettacode.org": [14203], "www3.bibl.liu.se": [9237], "www.authy.com": [1448], "admin.pipni.cz": [12460], "mailmax.trustwave.com": [17074], "capitalone360.com": [2879], "fsualumni.info": [2053], "fsrmedien.htwk-leipzig.de": [7736], "testllwcmlw.barnardos.org.uk": [19486], "www.ita.hsr.ch": [17522], "www.thepiratebay.id": [21709], "bounty.github.com": [6801], "ubnt.com": [17363], "whsmith.co.uk": [18204], "blogs.technet.com": [16285], "qctim.es": [2053], "1abv.co": [2053], "bmwk.me": [2053], "www.staticv.net": [17865], "www.assoc-amazon.de": [1324], "i.360.cn": [130], "www.blogs.uni-mainz.de": [17611], "l.bivab.de": [2053], "stage.beaker-project.org": [1781], "www.comscore.com": [3517], "etracker.de": [5495], "ct4.addthis.com": [611], "king.com": [9050], "www.zrkuban.ru": [22141], "s.hbr.org": [2053], "ikut.in": [2053], "*.thepermitstore.com": [16492], "ashdirect.com": [2053], "uparw.com": [2053], "wiki.openmrs.org": [12150], "plugins.longtailvideo.com": [9752], "ndrums.com": [2053], "deena.be": [2053], "m.du00.cc": [19964], "www.fafsa.gov": [5663], "www.secureholidays.com": [18790], "omgrcm.co": [2053], "shef.ac.uk": [17624], "glfs.hk": [2053], "link.suppa.me": [2053], "forum.selfhtml.org": [21405], "*.umu.se": [17427], "dv-zeuthen.desy.de": [4479], "tkwy.st": [2053], "go.mynetx.net": [2053], "www.crondash.com": [19819], "wethegoondas.in": [18327], "bobwp.us": [2053], "convo.im": [2053], "www.hsv.se": [7235], "www.thepiratebay.is": [21710], "store.wpiinc.com": [18758], "ubmail.buffalo.edu": [17583], "mirrorbingo.com": [10634, 10635], "*.powerpay.biz": [13218], "brit.sh": [2053], "ihenow.com": [2053], "news.rusd.org": [2053], "anders.com": [1036], "www.cable6.net": [2761], "www.o2shop.cz": [16332], "www.amazon.jobs": [951], "wn.meituan.com": [10405], "a.hlkbrand.info": [2053], "i.kinja-img.com": [9056], "toolbarbrowser.com": [16825], "xmail.utm.edu": [17628], "softnik.com": [21498], "usukita.org": [17346], "adversary.org": [694], "*.dreamwidth.org": [4852], "forum.mindfactory.de": [10599], "imdb-mov.ml": [2053], "visitormotion.com": [5495], "www.mailoutinteractive.com": [10055], "dev.springer.com": [15561], "owncloud.aktivix.org": [810], "pdsb.me": [2053], "rajce.idnes.cz": [20425], "ponthi.eu": [2053], "www.socialsecurity.gov": [15308], "wmail1.cc.ntu.edu.tw": [11160], "fiber.google.com": [6962], "jrblz.info": [2053], "www.campinaopschool.nl": [2842], "fsn.link": [2053], "sp.auth.adobe.com": [655], "bh-p.co": [2053], "zlrahk.com": [2053], "ivo.me": [2053], "wlmart.ml": [2053], "ada.fyi": [2053], "tripwire.me": [2053], "psk.io": [2053], "snapengage-5.wpengine.netdna-cdn.com": [15273], "www.wweek.com": [18612], "*.lttng.org": [9260], "*.harriscomputer.com": [7344], "citservices.med.wustl.edu": [18290], "mftr.org": [2053], "wmp.ssusa.org": [21556], "www.matsuev.com": [4444], "popmodels.cancercontrol.cancer.gov": [2864], "pc-t.in": [2053], "forum.hackinthebox.org": [7285], "scipy.org": [14616], "www.projectmeshnet.org": [13367], "examine.com": [5587], "www.odmwheels.com": [11815], "i1.social.s-msft.com": [14296], "r.josephc.in": [2053], "www.alfa.cz": [841], "www.rare.us": [13798], "commotionwireless.net": [3561], "ort.fi": [15865], "www.store.economist.com": [5161], "s.jce.io": [2053], "app.asana.com": [1277], "cleverbridge.org": [3299], "megaphone.fm": [20776], "sttscp.com": [2053], "xtopher.us": [2053], "www.linshunghuang.com": [9521], "go.bmi.com": [2053], "labs.letemps.ch": [9346], "tamu.edu": [16415], "espo.nasa.gov": [11058], "kontakt.amnesty.se": [1010], "cardgno.me": [2053], "support.iraiser.eu": [8501], "ss-download.co": [2053], "ufcfit.com": [17227], "joomla-security.de": [20549], "ja.net": [8562], "ryto.gr": [2053], "sdr.io": [2053], "www.casperogfrank.dk": [2945], "www.unity3d.com": [17506], "my.com": [10932], "globalsiste.rs": [2053], "app-uk1.resrc.it": [13832], "next.westlaw.com": [18514], "biology.georgetown.edu": [6668], "www.gwent.police.uk": [7163], "shop.amnesty.de": [998], "dwolla.com": [4913], "www.raur.co": [13633], "t-it.us": [2053], "didntdo.it": [2053], "www.data.nasa.gov": [11058], "fr2.rpmfind.net": [14237], "s.funrun.com": [2053], "egg.alipay.com": [857], "www.tunisia-sat.com": [17107], "www.blosxom.com": [2176], "grids.ec": [2053], "*.visualwebsiteoptimizer.com": [18076], "img2.bdstatic.com": [19507], "db.cnzz.com": [3391], "*.shop.linuxnewmedia.com": [9556], "s.ohsuda.com": [2053], "www.11footballclub.com": [29], "rsrv.ca": [2053], "umhealth.me": [2053], "secure.budgetinsurance.com": [2449], "structuralengineering.de": [7735], "enom.com": [5383], "joy-cazino.com": [20552], "guarde.co": [2053], "ppf.bz": [2053], "minilock.io": [10608], "totaltravel.com": [18942], "i.lexus.com.br": [2053], "clebrun.us": [2053], "partners.alfresco.com": [843], "kooki.es": [2053], "legacy.utm.edu": [17628], "r.taxi33.fr": [2053], "washsp.ec": [2053], "info.dplmo.com": [2053], "liveinternet.ru": [9649], "s.afogh.dk": [2053], "support.imation.com": [8134], "maxi.sh": [2053], "operatingsystems.io": [12253], "redbull.*": [13900], "news.spotify.com": [15548], "jennie.io": [2053], "link.lineup.vn": [2053], "emilstahl.dk": [5310], "wwp.tv": [2053], "eif.buzz": [2053], "www.omnigroup.com": [11992], "teams.pirateparty.gr": [21135], "vitalmend.com": [18081], "zhangpu.meituan.com": [10405], "csc.com": [2724], "lds.loodos.com": [2053], "tradedirect.ch": [20574], "vec7.uk": [2053], "dunn.ly": [2053], "manhattan-institute.org": [10116], "mass.cat": [2053], "scache.vevo.com": [17773], "account.asus.com": [397], "seancassidy.me": [14682], "sqlconverter.com": [14400], "am.urlb.ag": [2053], "*.sunrise.ch": [15859], "gef.li": [2053], "iservice.uniontrib.com": [17348], "voices.allthingsd.com": [879], "eogrid.esrin.esa.int": [5535], "www.bhosting.ru": [1559], "rokk.co": [2053], "gwdsms.co": [2053], "odl.me": [2053], "idol.sankakucomplex.com": [21368], "bz.meituan.com": [10405], "headstrong.de": [7392], "dinsmore.co": [2053], "overnig.ht": [2053], "tec.tv": [2053], "hsbc.co.kr": [20374], "p.ooi.im": [2053], "*.a8.net": [263], "*.tripit.com": [17019], "shopredone.us": [2053], "promo.st": [2053], "idox.bathnes.gov.uk": [1737], "privacysos.org": [13310], "www.artsci.wustl.edu": [18290], "www.incandescent.xyz": [20450], "ih2.redbubble.net": [13895], "pay.qq.com": [13514], "www.gettyimages.de": [6741], "file.gmobb.jp": [6459], "sheehan.me": [2053], "www.snapsurveys.com": [21489], "www.gettyimages.dk": [6741], "elive.uaa.alaska.edu": [17519], "textracer.dk": [16422], "stbk.co": [2053], "zalando.at": [19094], "license.avira.com": [1489], "ccreq.com": [2053], "www.firm24.com": [5979], "www1.oculusvr.com": [11921], "josh.re": [2053], "asplos14.cs.illinois.edu": [17544], "talentsmart.com": [16175], "van-go.us": [2053], "yourchoiceyourhome.org.uk": [22112], "mcfwf.co": [2053], "support.unseen.is": [17656], "www.sustainableelectronics.org": [15920], "igorlik.es": [2053], "geleia.tv": [2053], "auckland-tv.ga": [2053], "into.aalto.fi": [428], "wntz.nl": [2053], "leap.southdevon.ac.uk": [15437], "web.icq.com": [7837], "www.sky-ip.org": [15169], "on.gz-up.com": [2053], "conduit.com": [3629], "www.tmit.bme.hu": [1570], "hosting.uk.adjug.com": [565], "*.tum.de": [16291], "www.accesspiratebay.com": [21709], "www.terrapass.com": [16388], "shop.politiken.dk": [13101], "bhe.fm": [2053], "legacy.qualaris.com": [13557], "luminoworld.com": [9830], "futurity.org": [6402], "revenuesbenefits.havant.gov.uk": [20318], "privacy-handbuch.de": [13308], "ibanking.cimbthai.com": [2665], "www.privatebank.citibank.com": [3230], "static-wap.norton.com": [11703], "swooned.it": [2053], "mnye.ca": [2053], "*.monetate.net": [10732], "juicemo.bi": [2053], "www.wpacracker.com": [3343], "riskmanagement.georgetown.edu": [6668], "platinum.ohiolink.edu": [11961], "www.dustri.org": [4908], "correo.unizar.es": [17643], "smtvj.com": [2053], "www.scandinavianphoto.no": [14572], "jackandjill.ie": [8628], "tscfm.in": [2053], "www.linuxtag.org": [9577], "dtdg.co": [2053], "a1le.bz": [2053], "go.medico.com": [2053], "mywebsitepersonal.1and1.ca": [62], "s.ngenius.com": [2053], "onlinesbi.com": [12072], "www.hacktivity.com": [20305], "myfiles.yandex.com": [18956], "cf2.imgobject.com": [5768], "localdining.plenti.com": [13034], "login.attachmategroup.com": [1371], "rainforestqa.com": [13766], "byjoe.ws": [2053], "go.crowdstrike.com": [19822], "todaoferta.uol.com.br": [17275], "iiucbd.tk": [2053], "mietzahlungscheck.immobilienscout24.de": [8153], "css-seeker.newjobs.com": [11510], "lkab2.tdconline.se": [16054], "klatschmagaz.in": [2053], "momsmedia.com": [17833], "*.king.com": [9050], "oschina.net": [12321], "rareconnect.org": [13800], "www.downstreamtoday.com": [4825], "www.esj.com": [5061], "espanol.verizon.com": [17918], "www2.bancopastor.es": [1681], "tradeking.com": [16909], "ycn.cz": [2053], "pt.libreoffice.org": [9471], "bb-8.co": [2053], "l.judge.ovh": [2053], "cdn.taxactonline.com": [16234], "www.therealreal.com": [21714], "miteinander.mariahilf.wien.gv.at": [22025], "contact.fitbit.com": [6002], "www.wasilczyk.pl": [18292], "*.fifi.org": [5894], "piwik.bandinelli.net": [1684], "ivanteevka.beeline.ru": [1801], "oas.guardian.co.uk": [7128], "arkans.as": [2053], "schools.oxfordshire.gov.uk": [21055], "dailystar.co.uk": [4200], "www.digitaltrends.com": [4584], "link.jer.design": [2053], "deshop.in": [2053], "mybell.bell.ca": [1815], "vis.pm": [2053], "vice.idnes.cz": [20425], "wlsn.me": [2053], "ttt.wf": [2053], "api.vaultoro.com": [21897], "*.specificmedia.com": [15492], "i2.timeinc.net": [16731], "redbullcontentpool.com": [13901], "0ef.de": [2053], "go.clipsv.tk": [2053], "vieux.mondediplo.com": [10729], "www.dotomi.com": [4797], "sr.meituan.com": [10405], "dianbai.meituan.com": [10405], "eclipso.ch": [5151], "*.static-nextag.com": [11556], "connect.ala.org": [337], "ebanking.cash.ch": [19654], "e-ra.eu": [2053], "macapi.xamarin.com": [18840], "pdig.co": [2053], "ace-analyzer.com": [507], "kueh.ly": [2053], "portugal.gov.pt": [13170], "privacynotprism.org.uk": [13315], "kbpublisher.com": [8865], "trashmail.com": [16963], "industry.1688.com": [44], "www.hotelwifi.com": [7697], "beaverbrooks.co.uk": [1794], "www.globalclimatemarch.org": [6859], "wiki.linaro.org": [9522], "koinify.com": [9108], "www.ece.unm.edu": [17270], "www.housing.osu.edu": [11959], "exchange.btcchina.com": [1599], "au.godaddy.com": [6898], "wcs.anthem.com": [19395], "s.tjeu.ga": [2053], "a1.sphotos.ak.fbcdn.net": [5816], "eonefil.ms": [2053], "brasegu.ro": [2053], "metrics.mzstatic.com": [11041], "segfault.linuxmint.com": [20699], "cdn.axonify.com": [1515], "go.ledet.com": [2053], "sustainableelectronics.org": [15920], "*.mozdev.org": [10835], "shop.sundtek.com": [15855], "uk.pinterest.com": [12914], "login.norton.com": [11703], "community.canvaslms.com": [2873], "azart.co": [2053], "app-de-lb2.resrc.it": [13832], "bitquick.in": [1992], "www.bell-labs.com": [1816], "www.westgateleisure.chichester.gov.uk": [19703], "bstorm.in": [2053], "theladbiblegroup.com": [21703], "convention.liberal.ca": [9453], "s.nowiknow.com": [2053], "l.csommer.de": [2053], "bh.ht.vc": [7731], "pbgrp.link": [2053], "ncks.co": [2053], "jdb.io": [2053], "hdz.li": [2053], "sso.jd.com": [8571], "hootum.co": [2053], "heimdalsecurity.com": [7425], "hbob.club": [2053], "agileu.com": [766], "m-lips.com": [2053], "www.searchnetworking.de": [16273], "wien.at": [22025], "eastsussex-consult.objective.co.uk": [20979], "www.thepiratebay.vg": [21710], "auburntige.rs": [2053], "www.vc-server.de": [17764], "encolh.eu": [2053], "www.phishd.com": [12842], "food.1688.com": [44], "*.rpi.edu": [14006], "vitaminshoppe.com": [18087], "soth.in": [2053], "hr.osu.edu": [11959], "static.catlinseaviewsurvey.com": [2964], "www.gayswap.com": [6596], "bulk.resource.org": [13435], "bulkorder2.ftc.gov": [5837], "toi.sr": [2053], "ecommerce.com": [5157], "huaiyang.meituan.com": [10405], "stolr.co": [2053], "www.trustedmessenger.com": [17063], "asiangirl.co": [2053], "licence.root.cz": [14199], "db.debian.org": [4353], "ozkanhcrg.engineering.osu.edu": [11959], "international.nytimes.com": [11189], "www.quch.io": [13576], "serve.williamhill.com": [18615], "s.lroy.nl": [2053], "go.1688.com": [44], "www.ncpw.gov": [11267], "signup.linkshare.com": [13769], "www.mux.de": [10924], "govhack.org": [6992], "www.frascatitheater.nl": [6226], "link.packtpub.com": [12523], "opendoor.com": [12206], "r.mavaez.ir": [2053], "jppf.it": [2053], "thehoxton.com": [16557], "adwords.google.com.*": [6965], "nl.cloudflare.com": [3344], "*.kopiosto.fi": [9133], "jointhegame.kde.org": [8871], "0p.no": [4], "es.4.boardgamearena.com": [2219], "www.mimsonline.com.au": [9910], "the.fndtn.com": [2053], "u.vmstan.com": [2053], "kde-look.org": [21006, 21007], "www.hmailserver.com": [7222], "1.kentuu.org": [2053], "*.thumbshots.com": [16670], "www.ravendb.net": [13812], "humanrightsfirst.org": [7755], "pushkin.beeline.ru": [1801], "m.fifedirect.org.uk": [5893], "accounts.pixiv.net": [12960], "www.adjuggler.com": [566], "blog.leeds.ac.uk": [17604], "dev.clickability.com": [4925], "webgate.ec.europa.eu": [5526], "developers.fortumo.com": [6178], "store.nike.com": [11595], "www.kinsta.com": [9063], "postgresql.org": [13200], "famis-sunet.stanford.edu": [15635], "go.suraya.my": [2053], "litebit.eu": [9616], "rp3.io": [2053], "sbizl.us": [2053], "yastatic.net": [18967], "lawfareblog.com": [20642], "cloudfoundry.com": [3359], "a2p.co": [2053], "www.universityadmissions.se": [17638], "pjm.com": [12463], "guru.sol.no": [21502], "stats2.immoscout24.ch": [8154], "brx.libreoffice.org": [9471], "wordstat.yandex.com.ua": [18955], "eegn.meituan.com": [10405], "affsum.it": [2053], "one-tab.com": [12026], "westberks.gov.uk": [22005], "www.gnome-look.org": [21006], "hgi.rub.de": [13712], "cgi.sfu.ca": [14893], "cablemystreet.virginmedia.com": [18028], "dms3.it": [2053], "www.fandango.com": [5766], "vub.sk": [18164], "qqnow.us": [2053], "www.percy.io": [21108], "openbook.etoro.com": [5077], "enisey.tv": [20042], "cdn.staticneo.com": [11349], "*.1fichier.com": [69], "sh.lvdbit.tk": [2053], "*.osdv.org": [11866], "img4.qiyipic.com": [20413], "l.fan.si": [2053], "www.djurrattsalliansen.se": [4681], "nin.tl": [2053], "hertz247.be": [7478], "akkan.to": [2053], "auditshark.com": [1398], "go.tip.ventures": [2053], "protectnetwork.org": [13394], "viepratique.fr": [17999], "www.mediaxus.com": [10351], "help.kik.com": [20593], "dave.org.uk": [4300], "www.hfs.washington.edu": [17577], "contentvmx.com": [2053], "manteniment.uv.es": [17750], "ma.thsterk.net": [2053], "briansmith.org": [2365], "kidsfootlocker.com": [9037], "resourcecenter.911.gov": [238], "www.bluegenio.com": [2184], "digital-gap.de": [2053], "help.yam.com": [18948], "www.open.ac.uk": [12184], "anciennebel.gq": [2053], "data.eindhoven.nl": [5227], "newamerica.org": [11493], "hex.tips": [2053], "www.glx-dock.org": [20256], "tlk.design": [2053], "drugscrime.uk": [2053], "4s.nz": [2053], "www.sueddeutsche.de": [15831], "sihong.meituan.com": [10405], "tpb.unlockme.top": [21771], "medibankhealth.com.au": [10352], "www.admatrix.jp": [570], "oig.state.gov": [17345], "whatsdeployed.paas.allizom.org": [896], "cruises.united.com": [17498], "viduli.ch": [2053], "lib.uaa.alaska.edu": [17521], "mailing.finalist.nl": [20116], "theepochtimes.com": [5430], "www.hpi.de": [7225], "static.mmo-champion.com": [4006], "kwtt.net": [2053], "via.kham.is": [2053], "i.soklear.com": [2053], "www.hautelookcdn.com": [7374], "blcw.me": [2053], "qas2.yandex.com.tr": [18954], "if.lbp.me": [20644], "s.qbs.com.br": [2053], "servedby.openxmarket.asia": [21024], "forums.adafruit.com": [589], "lt.boardgamearena.com": [2219], "docs.cloud.databricks.com": [4275], "ozon.travel": [12404], "www.modxcloud.com": [9938], "www.sofawolf.com": [15337], "niap-ccevs.org": [11104], "spench.net": [15511], "multiply.com": [10889], "arqmed.es": [2053], "biology.williams.edu": [18616], "listas.galpon.org": [20197], "gldy.ca": [2053], "go.semarak.news": [2053], "www.svazurich.ch": [21622], "assets.linuxacademy.com": [9578], "currency.ostermiller.org": [21037], "secure.shareit.com": [14914], "bigdec.is": [2053], "t.ablabs.it": [2053], "pogoda.sakh.com": [21360], "slfrd.gs": [2053], "kodsana.vdoth.com": [17876], "dd4.us": [2053], "l.duosia.id": [2053], "blog.getbootstrap.com": [6729], "www.freeutopia.org": [6272], "www.roketfiyat.com": [14184], "www.pamela.biz": [12556], "career.balabit.com": [1668], "fassi.ws": [2053], "webdav.mydrive.ch": [11018], "joyclub.de": [8799], "t20.io": [2053], "api.vpsfree.cz": [21956], "astore.amazon.co.jp": [19364], "www.bet365affiliates.com": [19518], "www.tenmarks.com": [16368], "plugin-planet.com": [13048], "segf.in": [2053], "downloads.rc.fas.harvard.edu": [7350], "register.it.ox.ac.uk": [17557], "flotation.link": [2053], "dees.dict.cc": [4536], "www.gn3campus.uninett.no": [17477], "drikaart.es": [2053], "reaganlibrary.gov": [21273], "px.spiceworks.com": [15517], "blog.l0cal.com": [9213], "www.vabali.de": [17817], "support.textmagic.com": [16418], "bgpstream.com": [1553], "*.epartnershub.com": [5419], "deutschland-spielt.de": [19902], "tafs.me": [2053], "wardrobe.sh": [2053], "owa.clients.kiwiirc.com": [9081], "ajax.dynatrace.com": [4923], "42.ie": [2053], "ac.104.com.tw": [18], "fakturownia.pl": [5752], "wvusports.co": [2053], "go.dlm.im": [2053], "links.luisjo.mx": [2053], "indiemerch.com": [8218], "vinnica.unian.ua": [21851], "broxtowe.firmstep.com": [20125], "cloud.runabove.com": [14271], "edtx.us": [2053], "pcs.baidu.com": [1661], "ioix.tv": [2053], "mobile.yandex.ua": [18961], "ninjaseo.link": [2053], "svk46.de": [2053], "ladderslasher.d2jsp.org": [4071], "blogs.brown.edu": [2421], "blockitpocket.com": [2149], "p.chaidir.pe.hu": [2053], "diplomaticrooms.state.gov": [17345], "etuoguan.taobao.com": [16206], "newtonew.com": [20905], "go.boltwolf.net": [2053], "sec-i.top.de": [16829], "bowenpress.com": [19579], "passport01.leeds.ac.uk": [17604], "www.youngminds.org.uk": [19024], "blob.freenet.de": [6300], "console.turn.com": [17115], "s.gosu.co": [2053], "dash.runbook.io": [14273], "hitchhq.com": [7566], "spektrix.com": [21532], "elsevier.com": [5287], "registration.hispeed.ch": [21865], "bikenorth.birmingham.gov.uk": [19536], "cdmx.it": [2053], "atmail.com": [1359], "letstalkbitcoin.com": [9423], "facultydiversity.org": [5741], "e-services.worcestershire.gov.uk": [22046], "rsaconference.com": [13688], "www.zmap.io": [19070], "last.fm": [9315], "cascadingmedia.com": [2932], "sciencem.it": [2053], "secure.blubrry.com": [19560], "hotel.jd.com": [8571], "kepwa.re": [2053], "airtricity.com": [796], "www.maps.org": [9876], "d30.co": [2053], "aj.aas.org": [271], "www.arma2.com": [19416], "slait.it": [2053], "mrln.be": [2053], "cyberinitiative.actiac.org": [19269], "dlm.ag": [2053], "ruby-lang.org": [14252], "svas.at": [2053], "goob.tk": [3597], "topmais.site": [2053], "secure.adviva.net": [707], "aceff.co": [2053], "owyls.us": [2053], "mainstream.radiox.ch": [13750], "hdspr.ng": [2053], "www.rsc.org.uk": [13691], "plc-twlttler.co": [2053], "bearta.co": [2053], "support.steampowered.com": [15704], "chrgtr.com": [2053], "cdn.volumio.org": [21946], "arbe.ml": [2053], "500px.com": [194], "shop.highsoft.com": [7545], "gohewitt.com": [2053], "sinav.anadolu.edu.tr": [1025], "kintera.com": [9064], "ontraport.com": [21003], "andor.com": [1038], "csii.co": [2053], "xri.ng": [2053], "www.wwte14.com": [18232], "a.ppstore.co": [2053], "www.bhiab.se": [1889], "www.wkustore.com": [22040], "mailinglist.science.energy.gov": [5355], "news.asolve.it": [2053], "www.c9.io": [3339], "curl.haxx.se": [20319], "rave.pub": [2053], "*.vid.ly": [17967], "rad.live.com": [9644], "bre.yt": [2053], "my.cloudfloordns.com": [10551], "rchl.li": [2053], "www.livecorp.com.au": [9647], "bancofino.us": [2053], "a.mobify.com": [10681], "vianet.co.uk": [17955], "www.shadowofmordor.com": [14897], "zeharkagenda.squat.net": [21549], "gelife.co": [2053], "kik.li": [2053], "www.checkmyping.com": [3110], "www.golfdigestschool.com": [3616], "www.hsbc.com.lb": [20381], "havard.me": [2053], "www.dartlang.org": [4235], "apl.osu.edu": [11959], "*.vtluug.org": [17810], "isaiah.tv": [2053], "ralk.co": [2053], "xplosion.de": [18888], "docs.coinkite.com": [3469], "defnews.ly": [2053], "www.bbbsilicon.org": [1534], "hit32.hotlog.ru": [7691], "downloads3.mamp.info": [20744], "swing.to": [2053], "www.navalny.com": [11300], "www.franziskawellner.de": [6223], "tune.clarte.co": [2053], "b2b.amoena.fr": [1017], "new.surreycc.gov.uk": [21611], "wxch.nl": [2053], "lv2.at": [2053], "www.rxpharmacyusa.com": [14289], "ad2.netshelter.net": [11400], "cti.w55c.net": [18187], "jobs.flughafen-zuerich.ch": [20136], "m.zalando.no": [19094], "business.youmail.com": [19013], "www.tescohelp.com": [16400], "tmsz.com": [16789], "on.men.hu": [2053], "gateway.sfa.bis.gov.uk": [17243], "mattyk.me": [2053], "alibaba.com": [850], "analytics.proxer.me": [13403], "ilikear.ch": [2053], "garagecabi.net": [2053], "kinghost.com.br": [9051], "www.loomio.org": [9766], "www.6joycasino.com": [20552], "npr.org": [11139], "cargocollective.com": [2909], "fik.sh": [2053], "contribula.me": [2053], "ilsfdc.co": [2053], "metadata.eduid.cz": [5198], "terminal.com": [16383], "i6.3conline.com": [157], "www.forum-3dcenter.org": [20149], "enterprise.cloudshark.org": [19740], "www.mechse.uiuc.edu": [17234], "www.terminal.com": [16383], "sfl.tirol": [2053], "hdh.ucsd.edu": [17216], "*.akademiskahus.se": [798], "www.cscportal.org.uk": [19832], "myds.synology.com": [15992], "de.4.boardgamearena.com": [2219], "bcvs.ch": [1703, 20574], "mobile.tmall.com": [21748], "uof.sc": [2053], "ahm.com.au": [775], "www.opm.gov": [11853], "www.git.io": [6792], "emu.sc": [2053], "jobboerse.arbeitsagentur.de": [1192], "www.youtube.com.sa": [19016], "extractwidget.com": [5636], "www.ascendapp.com": [1280], "french.france.usembassy.gov": [21879], "gsi.de": [6506], "www.fncash.com": [5694], "mozest.com": [10838], "bit.ly": [2052], "ind.tf": [2053], "news.ecan.org": [2053], "oasis-open.org": [11805], "1041jack.fm": [2053], "stuff.mit.edu": [9916], "lists.acpica.org": [302], "tapgage.net": [16211], "mkdel.co": [2053], "corporate.aldi.co.uk": [338], "www.careerbuilder.com": [2901], "biketr.co": [2053], "www.dntly.com": [4696], "omniti.com": [11993], "s86.cnzz.com": [3391], "carlsed.com": [2053], "welder.link": [2053], "sahom.es": [2053], "awkn.tips": [2053], "prgress.co": [2053], "theag.com": [2053], "www.bettercgi.com": [1878], "mae.li": [2053], "smuxi.im": [15262], "support.bioconductor.org": [1959], "loak.org": [2053], "e3cp.link": [2053], "webinars.boomstarter.ru": [19573], "anadolu.edu.tr": [1025], "kpc.am": [2053], "njhrfil.ms": [2053], "armin.ml": [2053], "gen.pxpig.io": [2053], "www.standagainstspying.net": [15628], "contact.nra.org": [20943], "mvmtwatch.co": [2053], "shop.magix.com": [9874], "strom.tchibo.de": [16240], "ping.gg": [12897], "2015.appseccalifornia.org": [1173], "wrb.plymouth.ac.uk": [13055], "jasondavies.com": [8671], "reserve.cdn-apple.com": [2611], "kinox.tv": [20597], "bb.unizar.es": [17643], "go.suga.tv": [2053], "caipiao.taobao.com": [16206], "assemb.la": [2053], "s.pixfs.net": [12958], "d.emsi.com.au": [2053], "payment.cyberplat.ru": [4047], "vn-ty.fr": [2053], "pinkpanda.co": [2053], "birdi.ng": [2053], "msgenesis.com": [2053], "replays.wesnoth.org": [18500], "www.filtrala.org": [5930], "global.ebsco-content.com": [4970], "vzpominkynabudoucnost.squat.net": [21549], "www.unido.org": [17268], "publishers.quinstreet.com": [13598], "bilio.com": [1929], "members.easynews.com": [5128], "aerosti.ch": [2053], "bennbookings.rugby.gov.uk": [14262], "stu.starfishsolutions.com": [21565], "riff.me": [2053], "storage.capita-software.co.uk": [19641], "a.kaelon.com": [2053], "bluessl.com": [2188], "www.iws.htwk-leipzig.de": [7736], "www.yp.ru": [22118], "dotcomsecurity.de": [4793], "usercenter.checkpoint.com": [3106], "on.cooliris.com": [2053], "tdn.me": [2053], "on.nh.is": [2053], "www-secure.symantec.com": [15969], "fallscreek.com.au": [5757], "i.rias.be": [2053], "grow.vc": [2053], "impact.ac": [2053], "english.alarabiya.net": [19336], "saint-petersburg.ru": [21357], "feeds.lfc.vn": [2053], "r.ixpanel.com": [2053], "myfavm.ag": [2053], "go.muk.fm": [2053], "nac.vodafone.ie": [18108], "chprd.co": [2053], "forum.bytemark.co.uk": [2547], "prkl.cf": [2053], "dev.tocco.ch": [16797], "garysold.it": [2053], "subs.bikebiz.com": [19533], "web1.johnshopkins.edu": [8760], "jark.us": [2053], "shrp.co": [2053], "yancheng.meituan.com": [10405], "kb.cnblogs.com": [19743], "seca.news": [2053], "support.shopsite.com": [21431], "home.1688.com": [44], "fortbildung.springerzahnmedizin.de": [15562], "www.cryptoexperts.com": [3929], "dhfn.org": [2053], "podre.co": [2053], "tinyurl.us": [2053], "xakep.ru": [18839], "desn.it": [2053], "www.corpimages.de": [3747], "secure.siteparc.fr": [15131], "inserieren.badische-zeitung.de": [1650], "gdpla.net": [2053], "cdn.onapp.com": [12007], "api.wp.6scan.com": [213], "*.tictail.com": [16697], "goexplore.net": [6902], "converse.sg": [2053], "da.virginmedia.com": [18028], "sipgate.de": [15104], "www.hbokids.com": [20323], "www.openwrt.org": [12190], "www.usenet-crawler.com": [17717], "hbrot.org": [2053], "netbank-ratenkredit.web.de": [18347], "sfts.samsung.net": [14510], "tcodevelopment.com": [16243], "cloudmonitor.nimsoft.com": [2567], "p.ordas.fr": [2053], "loginuat.courierpost.co.nz": [3784], "www.bertrandmeyer.com": [1851], "manything.com": [20751], "jbks.co": [2053], "1026.at": [2053], "iom6.co": [2053], "media.netflix.com": [11421], "go.law360.com": [2053], "trac.videolan.org": [17981], "bate.mn": [2053], "toddwi.lk": [2053], "blog.viaduct.io": [17954], "countbayesie.com": [3772], "www.mycampina.com": [2842], "tpbc.rocks": [2053], "url.naruvid.net": [2053], "deathmask.net": [4344], "sslcert35.com": [15599], "ajfgo.co": [2053], "makeshop.jp": [10072], "yunpan.360.cn": [130], "dv.developer.here.com": [7465], "utica.edu": [17746], "www.geolistening.com": [6662], "www.commlink.org": [3536], "medicaljane.com": [10355], "*.uservoice.com": [17733], "anypoint.mulesoft.com": [10880], "si2.twimg.com": [17153], "drm8.top": [2053], "odk.io": [2053], "*.wsws.org": [18227], "se-02.adtomafusion.com": [19305], "wsm.co": [2053], "transportation.stanford.edu": [15635], "smt.admaster.com.cn": [569], "plone.org": [13041], "argusne.ws": [2053], "nxtgn.org": [11793], "memecenter.com": [10422], "ita.cx": [2053], "www.amnistia.org.mx": [1015], "f1.sapseod.mindtouch.us": [10597], "tfra.me": [2053], "s.atjoseph.net": [2053], "vte4.me": [2053], "partner.vxcp.de": [17917], "eforms.aylesburyvaledc.gov.uk": [19468], "usb.org": [17313], "evaske.com": [5540], "www.sky.de": [15171], "atinyurl.com": [2053], "www.scienceathome.org": [14623], "rapidrar.com": [21255], "mndt.ch": [2053], "jekyllrb.com": [20534], "accounting.xmission.com": [18830], "upln.me": [2053], "dfre.us": [2053], "phoenixunion.illuminateed.com": [20430], "comnews-conferences.ru": [3516], "cysp.pro": [2053], "meerssen.nl": [11324], "budgetinsurance.com": [2449], "static.enaza.ru": [5332], "app.pluralsight.com": [21152], "www.avaaz.org": [1476], "www.caprioli.se": [12802], "binaer.at": [2053], "www.sidux-ev.org": [15012], "ella.xyz": [2053], "tsuchiya.bz": [2053], "analytics.ind.ie": [8197], "brk.li": [2053], "abruce.us": [2053], "www.streamtip.com": [15775], "kfwlr.me": [2053], "s.iwaishin.com": [2053], "www.rottnestexpress.com.au": [14216], "adsimilis.com": [671], "gettyimages.co.nz": [6741], "x.strats.co": [2053], "fnf.vc": [2053], "tribne.ws": [2053], "biyang.meituan.com": [10405], "arangodb.com": [1191], "ms.yahoo.co.jp": [18944], "stormfront.org": [15754], "licensing.biz": [8376], "dwc.news": [2053], "www.envato.com": [5409], "www.unrealircd.org": [17651], "chief.si": [2053], "www.pastee.org": [12655], "fcc.re": [2053], "chief.sc": [2053], "segment-data.zqtk.net": [19075], "wurr.ly": [2053], "s.gilly.cat": [2053], "fils.cnblogs.com": [19743], "pocket.minetrack.me": [20799], "cms.htw-berlin.de": [7246], "regizug.zg.ch": [21629], "occrp.org": [11810], "www.vacareers.va.gov": [17297], "cedmagazine.com": [2626], "*.fcla.edu": [6057], "undrs.co": [2053], "migrolcard.ch": [10562], "projects.thm.de": [16066], "www.ids-nf.org": [20427], "www.hartwork.org": [7349], "www.usmile.at": [17738], "go.z7ev3n.com": [2053], "tax.sh": [2053], "obsproject.com": [11808], "hrcdn.net": [7274], "s.somediatic.fr": [2053], "juke.mmi.bemobile.ua": [1776], "theses.cz": [16618], "bowl.today": [2053], "udntalks.udn.com": [17224], "www.howentrepreneur.com": [20369], "fsiavailability.northumberland.gov.uk": [20929], "french.brazzaville.usembassy.gov": [21879], "schaafpc.com": [14586], "www.aquilaclothing.co.uk": [1186], "vadenpatient.stanford.edu": [15635], "burtonschools.illuminateed.com": [20430], "imperialviolet.org": [8166], "*.nrc.nl": [11145], "globalfutures.georgetown.edu": [6668], "srlabs.de": [14764], "dajmw.in": [2053], "et02.xhcdn.com": [18815], "forum.ovh.it": [12378], "glassho.us": [2053], "*.freewheel.tv": [6253], "fno.me": [2053], "altdesign.tk": [2053], "login.teamviewer.com": [16259], "dustin.se": [4907], "www.ffa.vutbr.cz": [17814], "*.gnome-look.org": [21007], "www.chichester.gov.uk": [19703], "rvm.io": [13716], "plusroi.co": [2053], "cdn.lst.fm": [9315], "mixa.me": [2053], "js.admeld.com": [6961], "support.illuminateed.com": [20430], "*.blau.de": [2113], "revolv.es": [2053], "*.simplereach.com": [15067], "pad.artsci.wustl.edu": [18290], "plor.in": [2053], "megamozg.ru": [20775], "assets4.getsatisfaction.com": [6738], "dirk.to": [4619], "*.arsenalnews.net": [9030], "ln.damselem.com": [2053], "midasgreentech.com": [10553, 10554], "ma.rnix.nl": [2053], "lushan.meituan.com": [10405], "www.ece.illinois.edu": [17544], "s.wferr.com": [2053], "www.vispahost.com": [18073], "iqza.in": [2053], "researchgateway.wustl.edu": [18290], "riskbuster.biz": [2053], "madcap.us": [2053], "sslcdn.jandan.net": [8655], "www.btcxindia.com": [1616], "simp.cc": [2053], "manage.vice.com": [17959], "turtl.it": [17122], "shemeel.in": [2053], "www.olat.uni-hamburg.de": [17229], "www.fourmilab.ch": [6199], "eulerian.voyage-prive.com": [18152], "multivu.com": [2998], "stationlrowingclub.com": [15687], "603.be": [2053], "ful.cr": [2053], "www.expertbail.com": [328], "console.mxlogic.com": [10279], "stlnmy.com": [2053], "three.ne.jp": [16069], "www.usatoday.com": [17309], "bbmu.net": [2053], "credoaction.com": [3863], "posta2.vshosting.cz": [17804], "i.accu.fm": [2053], "www.boligejer.dk": [2242], "archive.moe": [1204], "bitcoinsil.co.il": [2035], "k4r3.ca": [2053], "klser.us": [2053], "thumbnail.image.space.rakuten.co.jp": [13768], "app.netease.im": [11381], "drby.tk": [2053], "tbwv.org": [2053], "enrollmentmanagement.illinois.edu": [17544], "triphip.com": [17018], "campinaboerderijdag.nl": [2841], "blomretail.co": [2053], "www.thepiratesbay.pw": [21215], "ams.amazon.co.uk": [19365], "m.spontex.org": [15538], "elitekeyboards.com": [5269], "on.csell.net": [2053], "www.unm.edu": [17269], "jiaozhou.meituan.com": [10405], "t3blog.com": [16035], "bhome1.bezeq.co.il": [19522], "bitmixer.io": [19542], "www.palantir.com": [12543], "deniz.nu": [2053], "gvwy.co": [2053], "ccrrockland.cancer.gov": [2864], "f.ajf3.me": [2053], "cryptocoincharts.info": [3941], "*.stevens.edu": [15726], "soliho.me": [2053], "hmtro.com": [2053], "heere.ma": [2053], "oyoony.net": [21057], "mas.wiiings.com": [18587], "ale.pt": [2053], "*.blogspot.co.id": [2166], "youtube.gr": [19016], "www2.whatsbroadcast.com": [18535], "web-assets.therealreal.com": [21714], "*.blogspot.co.il": [2166], "goturkey.com": [6921], "www.uformia.com": [17396], "hautebl.gr": [2053], "touch.auto.mail.ru": [10040], "thoriumne.ws": [2053], "atdw.tq.com.au": [16886], "*.m.godaddy.com": [6898], "c4d3d.com": [2053], "cdn.datatables.net": [4266], "adobeformscentral.com": [658], "*.dpfile.com": [19957], "m40.so": [2053], "v3.pebblepad.co.uk": [12721], "jobs.scot.nhs.uk": [11102], "www.idsoftware.com": [8072], "114.1688.com": [44], "marvell.com": [10205], "office.live.com": [9644], "geizhals.de": [6632], "fr.witness.org": [18683], "jeffmitchell.me": [8694], "m.ut.ee": [17347], "mises.org": [10643], "photo.goodreads.com": [6957], "docs.ocf.berkeley.edu": [17526], "marketplace.equinix.com": [5438], "pnkn.ws": [2053], "tickhistory.thomsonreuters.com": [16650], "www.silverflint.com": [15046], "launchpad.net": [9323], "mnpd.me": [2053], "tgit.me": [2053], "thedaywefightback.org": [16533], "cymo.es": [2053], "s03.flagcounter.com": [20129], "www.nordichosting.com": [11672], "bytes.com": [19623], "c2.chaucanh.net": [2053], "*.helmet.fi": [7440], "d.jahner.xyz": [2053], "www.home.uni-erlangen.de": [17597], "images.eoportal.org": [5417], "aprv.me": [2053], "www.sprintrebates.com": [15567], "tv.yandex.kz": [18957], "xuron.me": [2053], "jzt.jd.com": [8571], "ais.wetter.de": [18521], "www.pgpru.com": [12161], "l.tune2tech.com": [2053], "go.gemod.com.br": [2053], "cdn.defenseone.com": [4388], "*.intellichat.com": [8843], "dm-p.ro": [2053], "samihfadli.com": [2053], "srver.ml": [2053], "thehiddenbay.eu": [21709], "sammylin.tw": [2053], "ddosbreak.com": [4095], "thewellss.org": [2053], "media.education.gov.uk": [20009], "riley.nal.usda.gov": [17495], "thepiratebay.mn": [21710], "url.dubra.cz": [2053], "dond.us": [2053], "smshot.us": [2053], "u.scar45.com": [2053], "software.ucsd.edu": [17216], "store.enthought.com": [5401], "p15.qhimg.com": [13531], "www.rsync.net": [14242], "grp09.ias.rakuten.co.jp": [13768], "opt4tx.com": [2053], "bgf.st": [2053], "onbodypass.com": [2053], "marca.to": [2053], "mivoltma.444.hu": [172], "ghos.tw": [2053], "xiscosoft.net": [18879], "fco.gov.uk": [5671], "syncxmas.com": [2053], "ymdbook.com": [2053], "i.hozana.org": [2053], "telethon.it": [16353], "www.yu.edu": [18981], "p.key-p.jp": [2053], "policy.usc.edu": [17564], "www.isen.com": [8514], "nohayinter.net": [2053], "privacyfoundation.ch": [21201], "ovjk.nl": [2053], "www.iwill.org.uk": [20520], "solarsystem.jpl.nasa.gov": [11058], "*.bentley.edu": [1833], "t32.li": [2053], "myaccount.zen.co.uk": [19129], "jang.ws": [2053], "gsvy.co": [2053], "*.acronis.com": [523], "s70.cnzz.com": [3391], "vbd.cdn.viber.com": [17956], "apwu.org": [970], "interpol.int": [8441], "camino.gl": [2053], "trustees.osu.edu": [11874], "twki.nl": [2053], "1hd.in": [2053], "mlogin.wosign.com": [18693], "on.felipe.rs": [2053], "hwcdn01.vuze.com": [18175], "ascri.be": [2053], "pofpa.web.cern.ch": [2632], "tcamp.sunlightfoundation.com": [15857], "kcped.ca": [2053], "k4.chaucanh.net": [2053], "eeultra.me": [2053], "www.bitclubnetwork.com": [19540], "ai-radio.org": [327], "abila.com": [456], "img8.eadaily.com": [19986], "www.vlc-addons.org": [21006], "bnl.gov": [19564], "publimx.mx": [2053], "www.ymail.com": [18942], "dyete.ch": [2053], "eo66.co": [2053], "dc4.co": [2053], "fleet.io": [2053], "bil.et": [2053], "*.blogs.balabit.com": [1668], "inst.winzip.com": [18633], "netmundial.net": [11405], "partners.oo-software.com": [12092], "www.melpa.org": [10414], "s831.us": [2053], "kid.mysql.cesky-hosting.cz": [19680], "wmp.li": [2053], "*.appkb.ch": [20574], "dow.sh": [2053], "sciencemeetup.444.hu": [172], "ankang.meituan.com": [10405], "it.isidewith.com": [20414], "dgold.me": [2053], "intenseschool.com": [8374], "tongcheng.1688.com": [44], "link.mgalfa.com": [2053], "denagam.es": [2053], "wiki.allmyvideos.net": [897], "listen.akvorrat.org": [336], "www.vayable.com": [17870], "copernic.com": [3718], "orebz.com": [2053], "cincinnati.com": [3197], "media-social.s-msn.com": [14297], "henr.co": [2053], "top.taobao.com": [16206], "www.biteasy.com": [2042], "facteurh.org": [2053], "jacks.in": [2053], "portfolio.wsj.com": [22058], "nyob.co": [2053], "anadyr.beeline.ru": [1801], "alumni.gsb.stanford.edu": [15635], "xgam.es": [2053], "wyrebc-consult.objective.co.uk": [20979], "charnwood.gov.uk": [3074], "fnis.thomsonreuters.com": [16650], "a.ntv.io": [11756], "facepalm.me": [2053], "online.met.police.uk": [20785], "www.skift.com": [21469], "bdnsun.ca": [2053], "afsw.co": [2053], "www.fossil-scm.org": [6189], "belkin.com": [1814], "democracy.merton.gov.uk": [10464], "draugiem.lv": [4838], "righttobuy.communities.gov.uk": [19761], "pokec.azet.sk": [1520], "diegofx.co": [2053], "xiph.org": [18878], "adspeed.biz": [579], "www.alloresto.fr": [20565], "academy.cityoflondon.police.uk": [3253], "www.atmia.com": [19451], "www.archive.today": [1203], "fengcheng.meituan.com": [10405], "gameoapp.com": [6551], "lists.buildbot.net": [19609], "rrss.dgt.es": [2053], "febo.com": [20101], "www.biditbob.com": [1898], "unionpay.com": [17478], "a8c.us": [2053], "thesmokinggun.com": [16577], "waa.moe": [2053], "shop.vodafone.ie": [18108], "rcconf.net": [2053], "sarah.lv": [2053], "privacyisawesome.com": [5898], "www.kanotix.com": [8934], "c4isrnet.ly": [2053], "aksi.ga": [2053], "myfee.li": [2053], "media.coveritlive.com": [3804], "panama.usembassy.gov": [21879], "macc.at": [2053], "topbuy.com.au": [16830], "charting.vwdservices.com": [18176], "macc.as": [2053], "www.mondemp3.com": [10730], "zendesk.com": [19139], "vavinet.vutbr.cz": [17814], "luv.web.id": [2053], "secure.eth0.nl": [5481], "sbstn.de": [2053], "dwo.me": [2053], "link.pba.to": [2053], "mymues.li": [2053], "www.globevestor.com": [6868], "m3m.cc": [2053], "photo.tagasauris.com": [16161], "n.sushk.in": [2053], "lia.io": [2053], "neihuang.meituan.com": [10405], "www.premii.com": [7581], "mixtapeleak.com": [10659], "boxoffice.forestry.gov.uk": [20144], "noblewin.rigzone.com": [1970], "bartbania.com": [1730], "bishopi.com": [1971], "vc.ru": [17872], "community.elgg.org": [3566], "dcor.co": [2053], "customers.asmallorange.com": [249], "s.hugg.me": [2053], "cjr.bz": [2053], "l.exspere.com": [2053], "*.diwi.org": [4671], "jquerymobile.com": [8599], "www.synaesthesie.net": [15977], "www.americanscientist.org": [983], "hosting.adjug.com": [565], "t.ttan.org": [2053], "gb.redhat.com": [13909], "go.email0.co.uk": [2053], "pt.chuyenht.com": [2053], "diger.at": [2053], "handy.de": [7324], "o7.no": [2053], "architektur.htwk-leipzig.de": [7736], "www.nekvapor.com": [11086], "*.rugstudio.com": [14261], "smartertrack.com": [15242], "www.hoku.co.jp": [14985], "huizespoorloos.squat.net": [21549], "www.youtube-nocookie.com": [19016], "partnerreg.seagate.com": [14679], "prism-break.org": [12491], "s.tonns.net": [2053], "www.akolaproject.org": [807], "pingyang.meituan.com": [10405], "i.acdn.us": [18942], "nacl.cr.yp.to": [3817], "advertising.paypal.com": [12678], "planet.qt-project.org": [13544], "portal.m.jd.com": [8571], "www.php-fusion.co.uk": [12452], "ezctr.co": [2053], "www.tribepad.com": [21788], "www.vpn.asia": [21955], "www.ricoh.co.in": [14112], "smuxi.com": [15262], "reportcard.wmflabs.org": [18595], "bodine.me": [2053], "rbw.si": [2053], "link.myccs.org": [2053], "se.usembassy.gov": [21879], "www.gftplns.org": [15721], "www.curo.co.za": [4004], "computerbild.de": [19767], "www.architekturinstitut.htwk-leipzig.de": [7736], "kbx.es": [2053], "fin.gy": [2053], "www.1wt.eu": [58], "getlogin.rosbank.ru": [21328], "bigcr.eu": [2053], "raptr.com": [13796], "finda.farm": [2053], "utakeaway.just-eat.co.uk": [20565], "stn.vg": [2053], "intlrv.rs": [2053], "antsdaq.com": [19397], "www.endgame.com": [20038], "i3.msdn.microsoft.com": [10543], "dev.www.govhack.org": [6992], "cdn.aim.com": [329], "hyperledger.org": [20405], "stiesx2-ntrs.larc.nasa.gov": [17304], "cpanel.guru": [2709], "l.dnsmirror.org": [2053], "clnenergy.org": [2053], "serverpros.com": [13244], "go.wgno.com": [2053], "cdw.re": [2053], "roundcube.dreamhost.com": [4844], "asp.net": [393], "frm86.com": [2053], "avaaz.org": [1476], "www.filozofia.bme.hu": [1570], "webmedia.bankofamerica.com": [1696], "tttcrn.ca": [2053], "empresas.bankinter.com": [1694], "blu.stc.s-msn.com": [14297], "diagnostics.wpm.neustar.biz": [11472], "uprising.org.uk": [21868], "parrish.pro": [2053], "snag.gy": [21487], "blog.vidyard.com": [17998], "petsq.re": [2053], "median.es": [2053], "anning.meituan.com": [10405], "www.netbeat.de": [11409], "m.getslice.com": [2053], "legtux.org": [9394], "img-cdn.prestashop.com": [13265], "ruby.froscon.de": [6210], "moa.biz": [2053], "cdn2.broadcasthe.net": [2408], "support.gmo.jp": [6462], "cloud.24ways.org": [93], "libertyflailmowers.com": [9460], "www.britishgas.co.uk": [2394], "b.e9inc.com": [2053], "stat.1688.com": [44], "queue.vendini.com": [21904], "plmap.oracle.com": [12284], "ib.mebank.com.au": [9902], "damteq.it": [2053], "girlsoutwestfreestuff.com": [6788], "www.gdata.ch": [6410], "apw.fyi": [2053], "onsal.es": [2053], "she.ngs.ru": [20907], "woolyss.com": [18724], "www.onekingslane.com": [20998], "jiveon.com": [8734], "nzi.me": [2053], "mobile.hertz.com": [7511], "www.culturesforhealth.com": [3988], "www.crux.nu": [3907], "mucao.co": [2053], "sal.st": [2053], "renewals.symantec.com": [15969], "corporatecom.ms": [2053], "xy.meituan.com": [10405], "www.pathways2gsfa.org": [12665], "jason.town": [2053], "docs.pld-linux.org": [12471], "r3f.co": [2053], "ric.org": [13662], "on.kwwl.com": [2053], "sales.mail.ru": [10040], "comeatbro.me": [2053], "pvyb.me": [2053], "my.fllwshp.com": [2053], "cidsgn.co": [2053], "soclfe.it": [2053], "octoshape.com": [11917], "s.mumu.nu": [2053], "zab.cab": [2053], "bbi.bz": [2053], "bod.ajbb.life": [2053], "tls.al": [2053], "api.yandex.com": [18956], "www.piratebay.se": [21710], "on.gabale.se": [2053], "tenantshandbook.oxford.gov.uk": [21053], "l.ishuman.co": [2053], "my.lib.cuhk.edu.hk": [2747], "gchat.com": [6429], "app.work4labs.com": [18738], "amherst.edu": [991], "www.cocubes.com": [3395], "blog.xs4all.nl": [18835], "www.shinystat.com": [21426], "quetak.me": [2053], "bintraywidget.jfrog.com": [8580], "braz.me": [2053], "ece.engineering.osu.edu": [11959], "jonm.me": [2053], "www.mugenmonkey.com": [10878], "your.st": [2053], "bmr.link": [2053], "knstr.it": [2053], "techsupport.uaa.alaska.edu": [17519], "distrowatch.org": [4663], "ngvpn37.nvidia.com": [11174], "www.siteheart.com": [15113], "czar.xxx": [2053], "mynerdnest.is": [2053], "*.shop.haymarket.com": [7382], "url.hoteia.com": [2053], "particle-physics.desy.de": [4479], "int.anon-ib.net": [1078], "democracy.blackpool.gov.uk": [2108], "jcm.jd.com": [8571], "perasma.espiv.net": [20058], "w1.fi": [18183], "cbb.dk": [2972], "www.surveyserver.net": [21615], "isasonline.bva.bund.de": [5833], "dtdt.co": [2053], "www.fictiv.com": [5888], "rfc-editor.org": [13651], "tverskaya-obl.beeline.ru": [1801], "baymirror.tech": [21217], "filtrala.org": [5930], "tutsplus.com": [17129], "guest.tl": [2053], "*.cetic.be": [2643], "www.wizbangpop.com": [18689], "alexcabal.com": [834], "apac.haymarket.com": [7382], "img.thevideo.me": [16505], "landliebe.de": [2842], "pdv.co": [2053], "pharus.thm.de": [16066], "rvwd.co": [2053], "www.gaaturustigslapen.nl": [6518], "stcjp.msn.com": [9961], "utzp.in": [2053], "www.sexkompas.net": [14886], "*.fool.com.au": [10801], "engagedoncaster.co.uk": [5363], "smart.jd.com": [8571], "www.thesun.co.uk": [21719], "www.everplans.com": [5557], "untp.it": [2053], "olo.so": [2053], "www.admincontrol.com": [19293], "cdrs.columbia.edu": [3512], "plbz.biz": [2053], "edex.adobe.com": [655], "partnerweb.westminster.gov.uk": [18516], "email.nottingham.ac.uk": [11726], "mail.bioinfo.pl": [1952], "www.ftlgame.com": [5721], "translations.com": [21781], "jdun.cc": [2053], "z.worthynew.com": [2053], "www.nwas.nhs.uk": [11102], "*.webofknowledge.com": [18404], "www.monde-diplomatique.de": [9343], "refrug.by": [2053], "short.serppa.fi": [2053], "vi.libreoffice.org": [9471], "www.finanzcheck.de": [20119], "cs.pn": [2053], "d-mado.link": [2053], "hardcoreteengirls.com": [7335], "hzzichi.1688.com": [44], "ripe68.ripe.net": [14128], "datagovau.ideascale.com": [20423], "silw.i.ng": [2053], "www.prettygoodgoods.org": [21198], "global.sony.eu": [15391], "www.ami.com": [347], "iko.io": [2053], "thegoodfight.fm": [16548], "jrm.me": [2053], "www.moderngov.co.uk": [20816], "maybemaimed.com": [10269], "trd.cm": [2053], "juxtr.io": [2053], "mydornsife.usc.edu": [17564], "homefinder.com": [7612], "popsqt.ch": [2053], "newzbin2.es": [11544], "books.ch": [16433], "ageo.co": [2053], "www.cat.yandex.by": [18953], "2013.de.pycon.org": [13492], "www.privacysos.org": [13310], "www.standaard.be": [15630], "login-stage.oracle.com": [12284], "discountclick.com": [690], "widgets.opera.com": [12252], "salymorte.ro": [2053], "kurchatov.beeline.ru": [1801], "woltlab.com": [18704], "www.activestatic.net": [541], "www.lls.org": [9243], "learn.shrinktheweb.com": [14991], "afnic.fr": [321], "hsm.la": [2053], "globalbersih.org": [6844], "vi.siting.us": [2053], "instaradio.com": [13633], "www.digital.report": [19919], "sto-ri.es": [2053], "my.drweb.com": [4879], "commercialbanking.lloydsbank.com": [9686], "artsci.wustl.edu": [18290], "egc.tw": [2053], "www.leibniz-supercomputing-centre.eu": [9396], "fr.visioncritical.com": [18067], "cfg.la": [2053], "www.aboutthedata.com": [467], "rgb.ovh": [2053], "www.antivigilancia.org": [1109], "www.coinworker.com": [3465], "refrs.co": [2053], "tbl.co": [2053], "pl.boardgamearena.com": [2219], "cshake.in": [2053], "www.blackfire.io": [2104], "xinchang.meituan.com": [10405], "shef.ac": [2053], "appcel.us": [2053], "ecess1.cdn.continent8.com": [3684], "gliv.es": [2053], "es.dinahosting.com": [4603], "clckbank.tk": [2053], "viciousblack.co": [2053], "www.fbi.gov": [5825], "www.medienstiftung-hsh.de": [10363], "*.bitre.gov.au": [2497], "help.lasallehs.net": [9314], "mpl.io": [2053], "bpacks.com": [2053], "ff.duckduckgo.com": [4888], "partner.nitrosell.com": [11621], "www.summitroute.com": [15847], "mpl.is": [2053], "vgc.no": [17776], "cheshireeast-consult.objective.co.uk": [20979], "*.www.spoki.lv": [15537], "brispri.de": [2053], "mcgf.in": [2053], "accounts.douban.com": [4802], "udmy.me": [2053], "wongmjane.tumblr.com": [17100], "sycom.co.jp": [15962], "mariy-el.beeline.ru": [1801], "hotstopsmag.com": [2053], "media.bolero.be": [2053], "diglib.co": [2053], "ddsply.co": [2053], "mail.alumni.caltech.edu": [2815], "ipqualityscore.com": [7942], "toptim.es": [2053], "www.bityes.com": [2001], "ovh.de": [12378], "providercentral.org.uk": [21214], "fxosphone.mozilla.com.tw": [10842], "mhsw.ml": [2053], "lists.pwmt.org": [13491], "thri.se": [2053], "urhome.umd.edu": [17549], "free.360totalsecurity.com": [133], "vxl.cc": [2053], "dslchecker.bt.com": [1593], "linn.works": [2053], "r.openx.net": [12191], "lrn.co": [2053], "mx.demos.ru": [4438], "chain.com": [3040], "cdn.ozb.me": [12400], "fav.m.taobao.com": [16206], "www.goingup.com": [6936], "aqtickets.com": [2053], "www.projects.fruct.org": [5708], "u6.qiyipic.com": [20413], "desk.com": [4472], "att-beta.mcafee.com": [10282], "s10.cnzz.com": [3391], "iaq.nu": [2053], "qa.phpdoc.org": [12865], "www.thankyou.com": [16435], "valueapplications.com": [17831], "swj.news": [2053], "feedback.minus.com": [10624], "insightexpress.com": [8321], "i.tadanori.net": [2053], "amtr.ac": [2053], "jimw.me": [2053], "iloyal.axosoft.com": [1517], "portal.charnwood.gov.uk": [3074], "download.lenovo.com": [9409], "business.usa.gov": [17307], "heis.cf": [2053], "link.aenfis.com": [2053], "nyl.co": [2053], "jhayl.es": [2053], "jide.com": [8585], "www.suprizkizlar.com": [15896], "orsl.nl": [2053], "forms.adviceguide.org.uk": [704], "www.britcoin.co.uk": [2391], "c.cps.fm": [2053], "informit.com": [8266], "xa.meituan.com": [10405], "*.www.insightmgr.com": [4590], "www.infosactu.com": [20458], "help.thebodyshop.co.uk": [16516], "link.ni-ko.com": [2053], "www.linutronix.de": [9550], "www.tiny.cc": [16750], "media.fit.edu": [6058], "u-gr.us": [2053], "*.infopaginas.com": [8263], "ontrck.in": [2053], "fossmg.me": [2053], "bikerspost.it": [2053], "www.cubby.com": [3980], "go.faqfox.com": [2053], "mcd.me": [2053], "www.filehoot.com": [5906], "uhurunet.us": [2053], "jmm.co": [2053], "brueckenkurse.thm.de": [16066], "www.online-emr.com": [12075], "community.pebblepad.co.uk": [12721], "app.mbuy.com": [9891], "dream.rakuten.co.jp": [13767], "mst.mstsage.com": [2053], "my.xyratex.com": [18913], "computerbasedmath.org": [3603], "dymynd.co": [2053], "sd.gatordev.com": [2053], "support.twinprime.com": [17157], "treb.re": [2053], "overupc.upc.nl": [17280], "manage.sprintpcs.com": [15565], "lukenlather.me": [2053], "city.yandex.com.tr": [18954], "btcxindia.com": [1616], "www.jezebel.com": [8713], "elmex.co": [2053], "thescore.thejournal.ie": [16490], "www.victoriassecretcanada.ca": [17965], "riga.usembassy.gov": [21879], "www.creativecommons.org": [3848], "en.flossmanuals.net": [5690], "drib.in": [2053], "govspace.gov.au": [6994], "sopastrike.com": [5898], "ca.squat.net": [21549], "jujus.co": [2053], "limeroad.me": [2053], "shoptbb.com": [2053], "pic2.58cdn.com.cn": [202], "i.koove.co": [2053], "isadom.wustl.edu": [18290], "www.campusship.ups.com": [17285], "yanzhou.meituan.com": [10405], "ajnasz.hu": [19334], "dataprotection.ie": [4250], "lpth.in": [2053], "www.emblem.cancer.gov": [2864], "yangshuo.meituan.com": [10405], "brin.ga": [2053], "www.reynir.dk": [14086], "youthscape.co.uk": [22115], "hub.rother.gov.uk": [14210], "gold.1prime.ru": [73], "mehedi.xyz": [2053], "fly.onthe.space": [2053], "xha.ch": [2053], "c.betrad.com": [5565], "on.langlers.com": [2053], "dotcologne.de": [4788], "lorentzcenter.nl": [9774], "mrglmbrt.tv": [2053], "shopmanhattanite.com": [10117], "beem.li": [2053], "2pin.me": [2053], "buspass.wokingham.gov.uk": [22042], "etfelici.to": [2053], "assets.gcs.thomsonreuters.com": [16650], "uef.fi": [17536], "itservices.uchicago.edu": [17532], "hk.168qiquan.com": [45], "profile-df.live.com": [9644], "status.vitalsource.com": [21930], "*.hostooplecom.netdna-cdn.com": [7683], "www.glassdoor.co.uk": [20248], "news.cnblogs.com": [19743], "rtview.me": [2053], "cptz.me": [2053], "wss.apan.org": [369], "police.stanford.edu": [15635], "greenpolkadotbox.com": [7054], "g3eks.gq": [2053], "chkmrx.co": [2053], "fro.gg": [2053], "e.go-greece.net": [2053], "facilities.wustl.edu": [18290], "ctlb.eu": [2053], "nikr.me": [2053], "go.digiyan.com": [2053], "adwords.ac": [2053], "l.likeasimon.de": [2053], "www.fangamer.net": [5767], "yourepe.at": [2053], "datart.sk": [4082], "www.pixeline.be": [12957], "dukki.tk": [2053], "ak3.boxcdn.net": [2306], "rtn.co": [2053], "wordcamp.org": [18729], "bwick.org": [2053], "secure.jotform.us": [8787], "cdn.jadu.net": [8639], "resources.4tulemar.com": [182], "pgt.ovh": [2053], "a1.mzstatic.com": [11041], "brown.edu": [2421], "basq.in": [2053], "www.jetico.com": [8710], "thepiratebay.la": [21710], "api.ctwatch.net": [3979], "ccpn.de": [2053], "pinegram.com": [12893], "uploaded.ml": [2053], "style.gf": [2053], "visit.parliament.uk": [21075], "agosto.me": [2053], "www.biciperros.org": [1896], "static.eventoverload.com": [5544], "rmk.ph": [2053], "biotrimlabs.com": [1963], "dev-web.inka.f4.htw-berlin.de": [7246], "ekdahl.co": [2053], "meta.askubuntu.com": [15611], "chrisnewland.com": [3166], "www.sf.net": [15423], "studien-sb-service.th-mittelhessen.de": [16064], "mwell.co": [2053], "www.catalog.usmint.gov": [17340], "www.nodejitsu.com": [11647], "yaca.yandex.by": [18953], "carleton.ca": [2911], "icsalabs.com": [7838], "jba.im": [2053], "jba.io": [8686], "a.kopczyk.xyz": [2053], "rule.alibaba.com": [850], "www.vicetorrent.com": [21215], "www.word.camera": [22047], "on.webmd.com": [2053], "img.gizmag.com": [6816], "blck.by": [2053], "knopper.net": [9098], "cdn.media.zylom.com": [19247], "*.extabit.com": [5629], "entmd.co": [2053], "moscow.rt.ru": [13703], "cms.surf.nl": [14433], "gloucestershire-consult.objective.co.uk": [20979], "ameme.me": [2053], "jofo.org": [2053], "analytics.xxxyours.com": [22090], "mapkyc.me": [2053], "econz.unizar.es": [17643], "seal.xramp.com": [18891], "neiulibrary.worldcat.org": [18748], "iceleads.com": [8061], "files.vagrantup.com": [17822], "choice.live.com": [9644], "www.my.gov.au": [20859], "khori.us": [2053], "getvoip.com": [6705], "kats.li": [2053], "r.rdmr.ca": [2053], "mhl.us": [2053], "prgp.us": [2053], "*.blogspot.ug": [2166], "fused.com": [6390], "*.scribd.com": [14655], "idl.cs.washington.edu": [17577], "volunteer.sccgov.org": [14579], "trl.mx": [2053], "cwil.es": [2053], "www.london.gov.uk": [9741], "aka.asqf.net": [2053], "www.blog.kaspersky.ru": [8959], "stuff.umeahackerspace.se": [17426], "rafflecopter.com": [13759], "www.abebooks.co.uk": [446], "msg.115.com": [25], "iwantth.is": [2053], "piwik.werosys.de": [18321], "www.harlandforms.com": [7339], "extract.services.disqus.com": [4656], "altoonamirror.com": [935], "w9r.de": [2053], "www.ksiegarniawarszawa.pl": [9176], "caribbeanpoetry.educ.cam.ac.uk": [17529], "exploreb2b.com": [5620], "chop.is": [2053], "www.scalability.org": [14564], "beads-ly.com": [2053], "static.boardgamearena.net": [2219], "www.nationale-it-security-monitor.nl": [11278], "kuvat.huuto.net": [20398], "pixiemk.com": [2053], "freedommunitions.com": [20164], "pediatricsclerkshipblog.stanford.edu": [15636], "*.verticalresponse.com": [17934], "mubasher.alarabiya.net": [19336], "blog.facebook.com": [5733], "me.vs.it": [2053], "autoconfig.eecs.berkeley.edu": [17526], "www.campfireunion.com": [2840], "go.tnc.digital": [2053], "rfe.me": [2053], "www.ingress.com": [8291], "vrt.as": [2053], "aai.io": [2053], "bolurl.com": [2053], "opensource.conformal.com": [3637], "igame.qq.com": [13514], "anidb3.anidb.net": [1062], "*.bestoliveoils.com": [1858], "www.posta.ch": [13176], "www.pullingladies.com": [12469], "tsf.stanford.edu": [15635], "x.ptstyle.biz": [2053], "css.chefkoch.de": [3116], "cdn.oops.org": [12096], "rbne.ws": [2053], "goettingen.freifunk.net": [6309], "*.apobox.com": [374], "ferr.co": [2053], "www.proxy.library.georgetown.edu": [6668], "www.winkdex.com": [18656], "vid.ly": [17967], "kov.lt": [2053], "dashboard.covad.com": [3794], "privacyassociation.org": [8412], "thesol.es": [2053], "powerdns.com": [13216], "bit.utoft.org": [2053], "www.akademikerforsakring.se": [797], "wt.research.gov": [14029], "nsidc.org": [11251], "cmi.ameslab.gov": [19384], "jenn.pw": [2053], "www.astronomynow.com": [1341], "hnkjsc.ok.1688.com": [44], "insideillinois.info": [8316], "www.robokassa.ru": [14159], "huainingguan.jd.com": [8571], "go.ljasinski.pl": [2053], "balabit.com": [1668], "eag4m.es": [2053], "www.timroes.de": [16723], "mylearning.southampton.gov.uk": [15440], "www.open.com.au": [12113], "andersonvalleypost.com": [5088], "jobmatcher.hodesiq.com": [1847], "*.truevault.com": [17046], "www.yabause.org": [18932], "www.sknvibes.com": [14364], "login.vk.com": [17784], "ca.4.boardgamearena.com": [2219], "re-publica.de": [13830], "www.gamasutra.com": [16276], "www.psarips.com": [12501], "ilstr.io": [2053], "secure.ancestry.co.uk": [1031], "communities.netapp.com": [11374], "aap.events": [2053], "dingzhou.meituan.com": [10405], "wumath.wustl.edu": [18290], "service.sumologic.com": [15848], "opia.illinois.edu": [17544], "nevelsk.sakh.com": [21360], "sbn.to": [2053], "bgmb.me": [2053], "bitflyer.jp": [1981], "southgate.so": [2053], "hk.taobao.com": [16206], "cis.vutbr.cz": [17814], "static.events.ch": [5550], "canvas.iu.edu": [8214], "freelancer.com": [6296], "www.demworks.org": [4419], "www.sainsburys.co.uk": [14481], "go.onelink.me": [20999], "allpoetry.com": [900], "bravou.re": [2053], "link.myiasp.com": [2053], "go.rocne.ws": [2053], "gc.digitalriver.com": [4566], "desert.sn": [2053], "w.tt": [2053], "wisebr.us": [2053], "amch.questionmarket.com": [13588], "slideshare.net": [15207], "*.jobs.ch": [20545], "jp.fujitsu.com": [6362], "bitnik.org": [2063], "*.torlink.co": [16837], "gr8imag.es": [2053], "static.bandisoft.com": [1685], "cs.yieldoptimizer.com": [18990], "evalua.gent": [2053], "gongdan.oss-cn-hangzhou.aliyuncs.com": [19346], "jd.mail.ru": [10040], "jws.link": [2053], "newgtlds.icann.org": [7827], "irrlab.com": [18730], "apply.commonapp.org": [3548], "www.gaborszathmari.me": [6519], "www.playmates.com": [13029], "www.dfn-cert.de": [4104], "*.tersee.com": [21678], "images.redbox.com": [13915], "laos.usembassy.gov": [21879], "0-static.ideel.com": [8079], "labs.mwrinfosecurity.com": [9974], "cables.com": [2763], "ftw.dj": [2053], "www.visa4uk.fco.gov.uk": [5671], "reports.bezeq.co.il": [19522], "bangui.usembassy.gov": [21879], "at.tgs.org": [2053], "to.ocgp.org": [2053], "boston.gumtree.com": [20296], "wptbc.com": [2053], "less.works": [20665], "cheapies.nz": [19691], "troy.hn": [2053], "kanaga.ga": [2053], "qk.hitravel.xyz": [2053], "app.perfectaudience.com": [12771], "www.ordbogen.com": [12298], "funds.gofundme.com": [6904], "g.kruger.joburg": [2053], "fctry.us": [2053], "zol.ac": [2053], "kanaga.gq": [2053], "flibusta.is": [6031], "net-dns.org": [11130], "sata.seagate.com": [14679], "thedailygreen.com": [7408], "secure-media.ztat.net": [19094], "f4.hitravel.xyz": [2053], "copi.cc": [2053], "u-bordeaux.fr": [17195], "b.dav3.net": [2053], "www.telecomindustrydialogue.org": [16330], "gayakuman.com": [6598], "gastro.deals": [2053], "www.ffs.ch": [15946], "act.credoaction.com": [3863], "scio.li": [2053], "revision3.com": [14079], "henr.ie": [2053], "api.btcchina.com": [1599], "andrij.me": [2053], "nisit69.com": [11616], "www.volcanoecigs.com": [18120], "*.dmcdn.net": [4202], "www.4armed.com": [184], "bluemovie.eu": [2179], "pubs.aaas.org": [266], "www.barvaux.org": [1733], "k.bytefreq.com": [2053], "sellbox.us": [2053], "devwiki.pfsense.org": [12819], "mbh.me": [2053], "stout.in": [2053], "locate.apple.com": [1160], "partner.toutiao.com": [16881], "adfs.strode-college.ac.uk": [15784], "pvts.tk": [2053], "thepiratebay.lu": [21215], "at.rust.la": [2053], "www.eset.at": [5052], "www.jsfiddle.net": [20556], "link.uepath.com": [2053], "*.ariejan.net": [1229], "an.affec.tv": [737], "dbzl.it": [2053], "bt.zamartz.com": [2053], "www.slf.se": [14369], "www.guerrillamail.com": [7133], "www.educause.edu": [5197], "login.dealer.com": [4334], "translate.yandex.ua": [18961], "zhuji.meituan.com": [10405], "www.ledgerscope.net": [9378], "mosr.tk": [2053], "*.lapatilla.com": [9269], "growerscup.coffee": [20285], "polarssl.org": [13085], "japsand.x2go.org": [18800], "blog.ethereum.org": [5484], "front.facetz.net": [5738], "*.aclj.org": [976], "thetinhat.com": [16585], "schbstd.com": [2053], "www.vpsfree.cz": [21956], "rk.to": [2053], "tref.is": [2053], "www.sched.co": [14589], "oppelt.com": [12261], "api.eia.gov": [5016], "www.techhouse.org": [16267], "flb.me": [2053], "my.msn.com": [9959], "handtekening.nl": [7323], "fmsrel.com": [2053], "www.vdio.com": [17874], "bprbzk.nl": [11324], "*.euserv.de": [5082], "zlyxy.me": [2053], "business.shaw.ca": [14932], "www.coreinfrastructure.org": [3735], "fmeio.tk": [2053], "*.rapidbuyr.com": [13790], "fb.uanhc.net": [2053], "kck.fyi": [2053], "img.store.sogou.com": [21500], "proph.se": [2053], "www.base64decode.org": [19492], "g1.std3.ru": [15699], "www.nds.rub.de": [13712], "wusmaccount.wustl.edu": [18290], "simply.ac": [2053], "l.0l.de": [2053], "www.wakatime.com": [18247], "t.jomelle.com": [2053], "autn.be": [2053], "www.tmsz.com": [16789], "fav.me": [4502], "rec-law.us": [2053], "pep.uni-potsdam.de": [17618], "lads.cc": [2053], "manc.it": [2053], "dixon.link": [2053], "tr1.gtimg.com": [7121], "kbyte.xyz": [2053], "nlsrs.com": [2053], "uk.gamespot.com": [6544], "www.dedyn.io": [19879], "gntg.onl": [2053], "u.tknet.nl": [2053], "www.tfes.org": [16425], "statsquiz.difi.no": [4547], "stagingdeb.theforeman.org": [21699], "lib.is": [2053], "intranet.hslu.ch": [7728], "ecrm.taobao.com": [16206], "skimlinks.me": [2053], "hothardware.pricegrabber.com": [13278], "stella.vc": [2053], "azn.do": [2053], "fortepan.444.hu": [172], "www.ghirardelligiftguides.com": [6747], "rynd.tk": [2053], "air-mil.es": [2053], "*.info.edgesuite.net": [799], "maildr.gettyimages.com": [6741], "cdn.gsstatic.com": [6910], "hostap.epitest.fi": [22054], "btg.mtvnservices.com": [17953], "accounts.spiceworks.com": [15517], "*.twitcasting.tv": [17163], "rasp.yandex.kz": [18957], "cran.r-project.org": [13621], "develop-online.net": [19904], "stpeter.im": [15759], "www.threat2alert.com": [16660], "link.druel.com": [2053], "help.consumerfinance.gov": [3667], "www.pandaction.wwf.ch": [22060], "www.gavelbuddy.com": [6587], "goafs.co": [2053], "u.mairc.tk": [2053], "prati.eu": [2053], "blog.selfhtml.org": [21405], "pda.104.com.tw": [18], "www.norwegianclass101.com": [11707], "developer.asana.com": [1277], "www.grasswire.com": [7024], "eu.link.decdna.net": [4359], "alkohol.cz": [863], "blog.bethcodes.com": [13197], "rcfbb.com": [2053], "www.halebop.se": [7304], "bssl.es": [2053], "lmpgam.es": [2053], "epocs.leeds.ac.uk": [17604], "yantaiguan.jd.com": [8571], "codebutler.com": [13197], "hiveage.com": [7570], "vets100.dol.gov": [19938], "fbc.im": [2053], "www.drserver.net": [4832], "orcid.org": [12108], "cxpr.in": [2053], "allerdalecopeland.greenparty.org.uk": [7052], "behavioralpolicy.org": [1810], "onti.cc": [2053], "nut.sh": [2053], "sjikl.tk": [2053], "chcido.o2.cz": [2053], "brnw.ch": [2053], "corh.io": [2053], "global01.mifile.cn": [10514], "shmny.me": [2053], "windowsazure.com": [18644], "penn.io": [2053], "nnit.easycruit.com": [5124], "lbre-internal.stanford.edu": [15635], "my.robokassa.ru": [14159], "www.lbl.gov": [9219], "adverts.ie": [702], "tipt.in": [2053], "www.treasury.uillinois.edu": [17238], "m.huxiu.com": [7779], "l.monao.net": [2053], "edp2.adriver.ru": [573], "devwp.fsdata.se": [5718], "login.aftonbladet.se": [754], "serprotel.link": [2053], "www.hoodline.com": [7631], "cs.kent.ac.uk": [17603], "selfharm.co.uk": [21404], "ext.vt.edu": [18031], "printm3d.com": [13295], "identitymanager.eems.usda.gov": [17495], "tz.meituan.com": [10405], "getvo.lt": [2053], "ma.tune.com": [21812], "www.theme.co": [16607], "hbo.com": [20322], "www.gigantti.fi": [6772], "generator.webtrends.com": [18467], "o.swisscom.ch": [15951], "deewoo.me": [2053], "go.fokkezb.nl": [2053], "adfox.ru": [563], "thepirate.pw": [21709], "kaos.to": [8940], "www.ozon.travel": [12404], "gavelp.it": [2053], "plute.tech": [2053], "adbrite.com": [604], "mailchimp.com": [10043], "toms.sh": [2053], "g.fernandez.sx": [2053], "stringst.xyz": [2053], "www.neteller-group.com": [12270], "*.gigaserver.cz": [6774], "userpanel.ero-advertising.com": [5451], "url.anson.link": [2053], "pom.nu": [2053], "www.carhire.lastminute.com": [9318], "www.iosdevweekly.com": [7928], "tec.rigoni.org": [2053], "iktls.com": [2053], "training.nra.org": [20942], "starrett.co": [2053], "geekcu.lt": [2053], "cdn2.illuminateed.com": [20430], "www.domru.ru": [4768], "ouinnov.co": [2053], "*.bcbits.com": [1683], "erme.co": [2053], "www.logoyes.com": [9724], "hays.tc": [2053], "www.roia.biz": [14182], "j3.58cdn.com.cn": [202], "ssl.abma.de": [460], "dentistry.osu.edu": [11959], "beech.es": [2053], "www.postbank.de": [13186], "btczone.com": [1606], "www.zenmate.com.ve": [19133], "www.muusikoiden.net": [10922], "secure.lloydsbank.com": [9686], "cauble.us": [2053], "repositori.upf.edu": [17674], "uk.at.atwola.com": [358], "www.jaast.com": [12555], "bbzz.co": [2053], "tarynwil.li": [2053], "img.dt-static.com": [4750], "makediscipl.es": [2053], "sg-logiciels.fr": [21420], "sso.smq.mydatapipe.com": [10992], "www.mulesoft.com": [10880], "autocontext.begun.ru": [1808], "tvstreamhd.ga": [2053], "leolop.es": [2053], "11main.com": [28], "harrogate.greenparty.org.uk": [7052], "bloomz.us": [2053], "evsweb.bls.ch": [1566], "icgne.ws": [2053], "7-eleven.com": [218], "shop.oebb.at": [20984], "a.alientech.com": [2053], "freifunk-goettingen.de": [6309], "instacominc.com": [8328], "secure.leadforensics.com": [9353], "sprtn.im": [2053], "rauw.cc": [2053], "armscontrol.org": [19419], "go.fox43.com": [2053], "noc.ac.uk": [17562], "www.howsecureismypassword.net": [7715], "admission.ignou.ac.in": [8102], "flattr.com": [6025], "support.havelockinvestments.com": [7376], "comedy.co.uk": [19758], "*.commondatastorage.googleapis.com": [6967], "t7r8.ga": [2053], "isharemaps.bathnes.gov.uk": [1737], "pwrp.hn": [2053], "uni-mainz.de": [17611], "fdshort.com": [2053], "www.spectrum.com": [15497], "gplsg.co": [2053], "m4s.me": [2053], "farand.is": [2053], "filmp.je": [2053], "www.siz.ch": [21464], "www.publishing-technology.de": [7735], "go.souyri.com": [2053], "bhal.co": [2053], "ebnc.us": [2053], "mynlg.net": [2053], "www.quirks.com": [13599], "suggests.rasp.yandex.com.tr": [18954], "*.banners.victor.com": [17962], "www.skyprogrammeinformation.co.uk": [15176], "webirc.darkfasel.net": [4230], "sustainablebusiness.com": [15921], "mojote.ch": [2053], "ttj.pw": [2053], "architectsjournal.co.uk": [1201], "support.stormpath.com": [15756], "torgodar.tk": [2053], "*.thebureauinvestigates.com": [16518], "masterh7.adriver.ru": [573], "npctex.as": [2053], "clun.yt": [2053], "go.ptrck.nl": [2053], "admin.banan.cz": [1528], "vpnservice.ru": [17797], "www.snoonet.org": [15287], "bellasartes.us.es": [17706], "tntim.es": [2053], "cottages4you.co.uk": [18790], "tpb.unlockme.download": [21771], "www.scintilla.utwente.nl": [14629], "buysaf.es": [2053], "nnich.uk": [2053], "newerarec.tk": [2053], "www.sys4.de": [16000], "e5tsr.ga": [2053], "labti.me": [2053], "www.computerlabsolutions.com": [3600], "www.centrify.com": [19673], "remb.ly": [2053], "delivery.swid.switchads.com": [15954], "calc.mellanox.com": [10412], "crft.us": [2053], "www.securitymetrics.com": [14766], "photos3.meetupstatic.com": [10386], "seeksadm.in": [2053], "w4tchn0w.ml": [2053], "www.tivi.de": [22127], "*.represent.us": [14022], "l3.hitravel.xyz": [2053], "nootriment.com": [11666], "*.yelp.com.hk": [18979], "gsp1.baidu.com": [1661], "digikeytest.digikey.com": [4552], "stratagon.us": [2053], "portal.issworld.com": [7981], "raincat.ch": [2053], "www.vfemail.net": [17774], "passwordscon.org": [21079], "leafly.com": [9360], "astyle.co.za": [2053], "el-mun.do": [2053], "2.mrwrk.nl": [2053], "ksh.hu": [8903], "www.valeofglamorgan.gov.uk": [17825], "www.ads-creativesyndicator.com": [3851], "www.openinternet.state.gov": [17345], "resources.mendeley.com": [10430], "heroicsear.ch": [2053], "status.realtimeboard.com": [21275], "vandd.me": [2053], "www.anonops.com": [1083], "nhm.ac.uk": [11097], "link.bawiec.com": [2053], "i.t.webtracker.jp": [18461], "bitlydemo.xyz": [2053], "movic.us": [2053], "ichrt.co": [2053], "login.courierpost.co.nz": [3784], "www.envirotrend.com.au": [5412], "credit.szfw.org": [21641], "eatdr.in": [2053], "*.norsk-tipping.no": [20924], "www.mail.com": [10039], "playerio.com": [13024], "eeqj.com": [5003], "fjd.me": [2053], "ikaz.co": [2053], "www.ecigpros.com": [4983], "msf.me": [2053], "methodactingstrasberg.com": [10493], "adserver-sb-fra.adtech.de": [678], "sourcer.me": [2053], "grootzakelijk.upc.nl": [17280], "accelogixportal.axosoft.com": [1517], "api.jqueryui.com": [8601], "we.riseup.net": [14133], "elatinos.com": [5026], "peersm.com": [12735], "nyantec.com": [20969], "linyi.jd.com": [8571], "club.lego.com": [9222], "imprl.biz": [2053], "home.entrust.net": [5406], "comments.richarddawkins.net": [14105], "jobamatic.com": [8743], "cashmere.mery.jp": [9903], "static-cdn.ashleymadison.com": [1290], "customercare.symantec.com": [15969], "hostedtalkgadget.google.com": [6962], "www.firefoxosdevices.org": [5976], "luxurycustomwheels.com": [9842], "cihan.at": [2053], "www.swift.org": [15941], "www.berlinonline.de": [1845], "bueno.bz": [2053], "www.newsko.ru": [20902], "m.flox.co.za": [2053], "sta1.36krcnd.com": [142], "flyingmeat.com": [6082], "adamlin.co": [2053], "*.wikia.nocookie.net": [18591], "le.qa": [2053], "rlist.biz": [2053], "*.site5.com": [15109], "lk.egas.us": [2053], "silksupply.co": [2053], "partners.servicenow.com": [14866], "account.pbbans.com": [21090], "static.xm-cdn.com": [18820], "troopers.de": [17034], "webelos336.com": [2053], "k.suntravel.xyz": [2053], "ba.yandex.com.tr": [18954], "www.gulesider.no": [7145], "tv-ww.com": [2053], "forums.netbeans.org": [11376], "www.citrixonlinecdn.com": [3239], "mtwst.co": [2053], "stopwco.com": [2053], "str.ms": [2053], "s32.cnzz.com": [3391], "www.traceroute-online.com": [21773], "trilightzone.org": [21791], "*.postgresql.org": [13200], "apps.skypeassets.com": [15185], "ypl.io": [2053], "list.tmall.hk": [16786], "pubc.it": [2053], "go-he.re": [2053], "stls.us": [2053], "domtele.com": [19945], "s.jay-toeic.com": [2053], "fscc.me": [2053], "m.local.ch": [9697], "5.url.cn": [21874], "acmefa.me": [2053], "dw1.s81c.com": [21351], "kancloud.cn": [20573], "s.p-h2o.com": [2053], "help.ekmpowershop.com": [5232], "member.harland.com": [7339], "nowlab.cse.ohio-state.edu": [11958], "www.00f.net": [0], "honestpolicy.com": [7627], "developermail.io": [4500], "alxj.co": [2053], "link.fox4kc.com": [2053], "www.iolproperty.co.za": [7923], "nmt.starfishsolutions.com": [21565], "gocart.valueclickmedia.com": [17833], "analytics.snoobi.com": [15286], "digikey.de": [4552], "clickrover.ml": [2053], "cnn.ph": [2053], "www.leblibrary.com": [9375], "orel.rt.ru": [13703], "nie-wieder-vds.de": [11586], "e-plus.de": [4942], "www.maldon.gov.uk": [20742], "*.homedepot.com": [7615], "ssl.bbc.co.uk": [1538], "click.ml": [2053], "techtime.mit.edu": [9914], "layar.it": [2053], "*.pressdisplay.com": [11537], "tr.gamigo.com": [6563], "kenduri.in": [2053], "www.it-offshore.co.uk": [7985], "wicnss.nal.usda.gov": [17495], "at.ma": [2053], "xornal.de": [2053], "a.mjuk.is": [2053], "www.navut.cz": [11194], "rimg01.rl0.ru": [14147], "www.dailyedge.ie": [19846], "bvts.in": [2053], "at.lclark.edu": [2053], "undergrad.osu.edu": [11959], "forums.qrz.com": [13543], "yng.li": [2053], "developer.jamendo.com": [8649], "zhaoqing.jd.com": [8571], "meanstinks.com": [10299], "go.booty.com.au": [2053], "www.tokbox.com": [16804], "lgaevents.local.gov.uk": [17250], "tr01.co.uk": [2053], "www.nsa.gov": [11250], "www.bizo.com": [2084], "media-cache-ec1.pinterest.com": [12914], "hairpower.co.uk": [2053], "goto.irenes.co": [2053], "prasiatko.vpsfree.cz": [21956], "a.unused.link": [2053], "athens.usembassy.gov": [21879], "www.goslice.com": [15200], "www.bundesverfassungsgericht.de": [2491], "membernotifications.aol.com": [361], "www-portal-stage.oracle.com": [12284], "consult.tunbridgewells.gov.uk": [21811], "www.unhosted.org": [17449], "l.agis.co": [2053], "www.careers.wustl.edu": [18290], "weert.nl": [11324], "allgeek.co.uk": [2053], "goals4u.us": [2053], "up.s3cr3t.net": [2053], "www2.richmond.gov.uk": [21307], "twt.xtrust.it": [2053], "fuwu.aliexpress.com": [19343], "portal.volexity.com": [18121], "www.helponclick.com": [7444], "2oo.life": [2053], "l.odasubs.com": [2053], "portnerpress.com.au": [13168], "vavel.me": [2053], "mrmweb.co": [2053], "www.childwatch.uio.no": [17615], "ctrlpanel.mythic-beasts.com": [11039], "solarflare.com": [15362], "hlav.ac": [2053], "www.adultswim.com": [19306], "colocation-datacenter.com": [20280], "newsroom.godaddy.net": [6897], "astore.amazon.ca": [19362], "frdsc.net": [2053], "amp.as": [2053], "www.paste.sh": [12648], "webmail.swan.sk": [15931], "*.bho.pl": [2204], "homes.redding.com": [5087], "chaosreigns.com": [3065], "m3a.vhlcentral.com": [17778], "*.aquiss.net": [1187], "www.bittrex.com": [2078], "cn.piliapp.com": [12887], "africanamericanstudies.georgetown.edu": [6668], "compliance.georgetown.edu": [6668], "wwf.to": [2053], "fast.to": [2053], "*.endace.com": [5345], "highways.gov.uk": [20340], "servicesblog.redhat.com": [18730], "getax.co": [2053], "prxs.us": [2053], "wustl.libapps.com": [9446], "secur.ly": [2053], "www.foursquare.com": [6200], "pxl.ht": [2053], "sfd.click": [2053], "fcnews.tv": [2053], "ticketmaster.co.uk": [16690], "recruit2.info": [2053], "itbookshelf.com": [8004], "fr.hertz.be": [7478], "l.niklas.top": [2053], "cltch.us": [2053], "wwte4.com": [18232], "kb.duo.com": [4900], "entrust.com": [5405], "steamstat.us": [21573], "static.siteheart.com": [15113], "prs.pctvix.co": [2053], "nakedsecurity.sophos.com": [15403], "www.illiniunion.illinois.edu": [17544], "main.trafficfactory.biz": [16924], "delat.se": [2053], "binary.cr.yp.to": [3817], "samsungapps.sina.cn": [15084], "ynr.la": [2053], "browser.yandex.com.ua": [18955], "wawa.re": [2053], "login.wustl.edu": [18290], "mastiff-online.korelogic.com": [9136], "*.netseer.com": [11399], "monov.me": [2053], "sspl.org": [21554], "clickon.com.ar": [3308], "passport.yandex.com.tr": [18954], "ad.amgdgt.com": [990], "ask.barclayscorporate.com": [1711], "goto.jy.am": [2053], "zscaler.com": [19231], "nb.style": [2053], "www.ctera.com": [2741], "westbred.ag": [2053], "duo.sc": [2053], "irc.lc": [20494], "*.dailymotion.com": [4202], "uh.ma": [2053], "client.downtownhost.com": [4826], "iqq.be": [2053], "www.edas.info": [5174], "blockexplorer.nu": [2138], "virool.com": [18033], "hitsebeats.ml": [2053], "blog.aereo.com": [723], "www.groupees.com": [7097], "hbags.info": [2053], "inwx.at": [8381], "l.mc-au.com": [2053], "pic2.58.com": [201], "t4.liverail.com": [9657], "pvp.city": [2053], "teamestates.com": [2053], "1cart.co.nz": [53], "*.audiogo.com": [1395], "iot.uk": [20485], "amzsup.co": [2053], "forms.thomsonreuters.com": [16650], "tps10206.doubleverify.com": [4804], "bldtrk.io": [2053], "held.me": [2053], "uhub.org": [17403], "xuyi.meituan.com": [10405], "cbp.net.br": [2582], "www.benchmarkjs.com": [19516], "drha.us": [2053], "*.xfce-look.org": [21007], "doh.kr": [2053], "slon.ru": [15214], "tccg.cf": [2053], "vufind.org": [18163], "shazam.com": [14934], "a.jimdo.com": [8721], "yrevista.dgt.es": [2053], "www.opennicproject.org": [21019], "a-p.it": [2053], "lef.org": [9383], "www.easycron.com": [19997], "help.xbox.com": [18850], "avfc.se": [2053], "welove.to": [2053], "bbqatx.co": [2053], "gpoi.state.gov": [17345], "deater.net": [4343], "u.laliberte.io": [2053], "kinabalu.link": [2053], "becker1.wustl.edu": [18290], "www.onedrive.com": [12031], "ircquotes.anidb.net": [1062], "aan.sh": [429], "beaucro.me": [2053], "grit.io": [7084], "telegeography.com": [16327], "eforsa.pl": [5012], "ishop.taobao.com": [16206], "static.flattr.net": [6024], "tuquito.org.ar": [21814], "www.foscam-bg.com": [6186], "forum.xfce.org": [18813], "cursosdeespanol.unizar.es": [17643], "gultd.us": [2053], "go.nevergone.ru": [2053], "shaoyang.jd.com": [8571], "areyou.local.ch": [9697], "l.webone.io": [2053], "jakb.it": [2053], "*.peer1.com": [12724], "sa-proview.thomsonreuters.com": [16650], "webftp.dreamhost.com": [4844], "edigitalresearch.com": [4999], "justapple.com": [8848], "per.ln.com.ar": [2053], "alice-dsl.de": [851], "groov.co": [2053], "payment.vas-hosting.cz": [21896], "www.mixer.cz": [10656], "www.hirlevel.aldi.hu": [338], "*.neteller.com": [12270], "overclockers.co.uk": [12363], "www.rubytogether.org": [14256], "campus-map.stanford.edu": [15635], "www.soi.city.ac.uk": [3246], "events.osrfoundation.org": [12111], "movieth.com": [10826], "economics.unian.net": [21851], "h.javidnia.com": [2053], "fii.info": [2053], "manzy.it": [2053], "about.udemy.com": [17393], "gener.is": [2053], "cldcmp.us": [2053], "b.smartcode.ch": [2053], "down.360safe.com": [132], "gmx.ch": [6467], "rbt.io": [2053], "go.itpcs.org": [2053], "l.inickster.com": [2053], "gmx.cc": [6467], "kpn.com": [8897], "canv.as": [2872], "wordpress.grc.nasa.gov": [11058], "rbt.is": [2053], "id.norton.com": [11703], "rkh.co.uk": [21314], "mmfr.co": [2053], "forums.whirlpool.net.au": [18542], "dgq.me": [2053], "servus.tv": [2053], "t.v91.co": [2053], "www.trust-guard.com": [17055], "line.st": [2053], "ohdev.in": [2053], "nz.bidbubble.com": [1897], "channels.ap.dell.com": [4413], "aldi.pl": [338], "alx.im": [2053], "www.campuslabs.com": [2845], "nl.support.tomtom.com": [16812], "www.googlewatchblog.de": [6976], "staging.aboutads.info": [462], "skg.me": [2053], "mdst.mn": [2053], "www.pkr.com": [12970], "hinckleyandbosworthonline.org.uk": [7553], "m.soft.yandex.com.tr": [18954], "cart.mcafee.com": [10282], "macular.org": [10000], "*.tusfiles.net": [17124], "aldi.pt": [338], "*.intuitstatic.com": [8452], "securestudies.com": [14739], "wespi.re": [2053], "signup.dreamhost.com": [4844], "lcsd.gov.hk": [7211], "domainnamesales.com": [4745], "bgcworld.today": [2053], "gyft.com": [7166], "ess.bathnes.gov.uk": [1737], "umc.tips": [2053], "morrisons.co.uk": [10789], "johnmurch.info": [2053], "vuxml.org": [21962], "mysupport.capita-software.co.uk": [19641], "zalfa.cf": [2053], "www.lynchinteractive.com": [9846], "www.the-dma.org": [16449], "levl.in": [2053], "helpdesk.eyeota.net": [20086], "giveaway.ml": [2053], "pricezombie.com": [13281], "wlcx.us": [2053], "jbty.us": [2053], "myuvm.uvm.edu": [17353], "forms.lincoln.gov.uk": [9523], "l.netmag.mx": [2053], "webstatistieken.xs4all.nl": [18835], "macfarlanepackaging.com": [9991], "str.pm": [2053], "ly.dgfish.org": [2053], "dot.djmonta.me": [2053], "gerld.me": [2053], "www.icmail.com": [7834], "voicerepublic.com": [18116], "uwglibrary.worldcat.org": [18748], "nebula.com": [11319], "argos.co.uk": [1224], "developers.owler.com": [21050], "taxga.in": [2053], "dl.wootylab.com": [2053], "pashm.com": [12631], "abanica.me": [2053], "mbayaq.co": [2053], "www.festivusgames.com": [5875], "nokiasiemensnetworks.com": [11656], "www.pragmaticstudio.com": [13240], "bodyenf.it": [2053], "congress2015.erc.edu": [5048], "www.smul.sachsen.de": [14454], "kentsexualhealth.nhs.uk": [11102], "www.tescobank.com": [16397], "cxx.de": [2053], "lucky2u.net": [9813], "www.movie.to": [10824], "suma.stanford.edu": [15634], "www.link-page.info": [20691], "svn.mageia.org": [10014], "ta.libreoffice.org": [9471], "passport.yandex.com": [18956], "billing.cloudaccess.net": [3337], "bbs.taobao.com": [16206], "links.mead.io": [2053], "prms.ca": [2053], "r4.mzstatic.com": [1159], "www.secure-usb.co.uk": [21399], "b.tomget.com": [2053], "www.datalogix.com": [4280], "esdpubs.nasa.gov": [11058], "i5.3conline.com": [157], "*.bitnami.org": [1993], "stkittszipline.com": [15606], "webmail.talktalk.co.uk": [16184], "*.bidsystem.com": [639], "stv.pm": [2053], "kariera.ceneo.pl": [2996], "link.cac.sc": [2053], "512pixels.net": [197], "upaymobile.co.uk": [17671], "majesticseo.com": [10064], "e.prisedi.cat": [2053], "on.vh1.com": [2053], "rightmove.co.uk": [14119], "www.phpdoc.org": [12865], "thcservers.com": [21687], "zaif.jp": [19091], "www.ncar.cc": [20879], "*.www.wikinvest.com": [18596], "www.forevernew.com.au": [6149], "admatrix.jp": [570], "myedaccount.com": [10945], "ftp.rfc-editor.org": [13651], "hsalinks.com": [2053], "lepoolahugo.com": [2053], "wargaming.com": [18275], "hbbtv.ndr.de": [11310], "loooriiis.xyz": [2053], "debaak.net": [2053], "www.btcstore.eu": [1610], "askewsandholts.com": [19438], "slack-service.gitbook.com": [6794], "*.networkforgood.org": [11456], "ath.re": [2053], "bonfi.de": [2053], "www.netnow.co": [11393, 11394], "wpgo.co": [2053], "ews.osu.edu": [11959], "wiltsmessaging.co.uk": [22032], "www.city-link.co.uk": [3241], "nho.io": [2053], "imperian.com": [20444], "rny.me": [2053], "q.is": [2053], "blimpme.com": [2127], "mhcache.com": [10510], "*.urbanterror.info": [17698], "www.uv.es": [17750], "www.blogburst.com": [4421], "www.mozy.co.uk": [10857], "alliance-media.org.uk": [19350], "tmco.co": [2053], "actionab.ly": [2053], "ustud.io": [2053], "campus.afip.gob.ar": [19318], "www.zenmate.dk": [19133], "roze.in": [2053], "www.digital-future.it": [4564], "auto.idnes.cz": [20425], "asahi-fb.jp": [2053], "akahnn.com": [2053], "fb.maps.me": [10140], "studentloans.gov": [15790], "*.copyninja.info": [19791], "www.fosshub.com": [20150], "lplza.co": [2053], "insidehighered.com": [8313], "secure.gettyimages.co.jp": [6741], "www.entropywave.com": [5403], "go.ux.ee": [2053], "tonytan.io": [16819], "img5.leboncoin.fr": [20650], "*.scrumbleship.com": [21390], "telejec.tv": [2053], "bzr.debian.org": [4353], "wiki.shibboleth.net": [14947], "chqny.in": [2053], "www.itsc.umd.edu": [17549], "go.spazz.com": [2053], "faround.net": [5780], "mcgcruise.com": [2053], "delhicowork.com": [2053], "export.gov": [17305], "www.hollywoodreporter.com": [7599], "247nfl.co": [2053], "status.leagueoflegends.com": [9362], "m-lp.co": [2053], "w2u.eu": [2053], "s7d2.scene7.com": [14580], "chessprep.com": [2053], "url.jael.ee": [2053], "smp.specificmedia.net": [15492], "ourmojo.us": [2053], "wpsm.nl": [2053], "a.bjm.cc": [2053], "www.esf-works.com": [5057], "pureg.us": [2053], "www.daofile.com": [19850], "www.jiffyfreescore.com": [8717], "ku.dornick.net": [2053], "api.fitbit.com": [6002], "zb45.nl": [19062], "www-cache-css.extensis.com": [5634], "www.bungie.net": [2495], "nmfc.engineering.osu.edu": [11959], "s95.cnzz.com": [3391], "nik.xyz": [2053], "vade.taxi": [2053], "rush.band": [2053], "nkdc.moderngov.co.uk": [20816], "8kbhkort.kk.dk": [8883], "cdn5.openculture.com": [12204], "boyerurl.ca": [2053], "shocm.me": [2053], "www.us.jobs": [21876], "api.ipify.org": [20489], "ncm.novarait.com": [4597], "grandcentral.cloudbees.com": [19736], "aswww.eu": [2053], "publicinsightnetwork.org": [13437], "dns.js.org": [20555], "gdky.in": [2053], "ekfws.link": [2053], "releasenotes.webtrends.com": [18467], "ahisc.xyz": [2053], "donate.doctorswithoutborders.org": [4713], "gerd.io": [2053], "host14.top": [2053], "images.dealertrend.com": [4337], "mail2k.udngroup.com": [17224], "bundb.li": [2053], "www.arcor.de": [1211], "www.gog.com": [6482], "www.sproutvideo.com": [15571], "xishui.meituan.com": [10405], "cdb.io": [2053], "*.login.live.com": [9644], "superkuh.com": [15887], "mythicalcreatureslist.com": [11040], "llewq.link": [2053], "techmw.st": [2053], "aec.org.es": [2053], "jyllands-posten.dk": [8857], "nic.tel": [16360], "zeni.to": [2053], "fr.mash.to": [2053], "p.devsgoons.com": [2053], "rpcgiving.club": [2053], "c-nfa.jd.com": [8570], "a.buds.org.uk": [2053], "studyabroad.georgetown.edu": [6668], "connect.sheknows.com": [14936], "img02.rl0.ru": [14147], "www.osufoundation.org": [12302], "api.digits.com": [4593], "wys.meituan.com": [10405], "crowdin.net": [3897], "spree.tw": [2053], "www.batstrading.com": [1531], "www.aerio.biz": [726], "passport.jd.com": [8570], "k5erp.me": [2053], "mikeyev.in": [2053], "c4sa.co": [2053], "get.torrentpier.me": [21761], "nhanh.co": [2053], "preparedness.usc.edu": [17564], "cwc.onl": [2053], "skullsecurity.org": [15168], "amnesty.no": [1012], "*.arvixe.com": [1273], "tigerdreams.co": [2053], "kf.dianping.com": [19913], "beta.usa.gov": [17307], "uefa.to": [2053], "yatharth.tk": [2053], "linux.web.cern.ch": [2632], "www.internetprotectionlab.net": [8432], "tms.pl": [21750], "getmondo.co.uk": [20232], "apicdn.viglink.com": [18003], "ext.accesslabs.net": [484], "fotki.yandex.ua": [18961], "media6degrees.com": [10315], "moviefone.com": [10829], "my.dexmedia.com": [4515], "rsac.me": [2053], "ukpirateproxy.xyz": [21711], "*.a4apphack.com": [260], "*.metropolia.fi": [10503], "fwdrv.ws": [2053], "engine.4dsply.com": [186], "r.buildblox.net": [2053], "kingsroadmerch.com": [9053], "sellercentral.amazon.com.mx": [19368], "azaz.ie": [2053], "checkout.jwplayer.com": [9752], "vshort.me": [2053], "s.wsj.net": [22059], "gss0.bdstatic.com": [19507], "telegram.wiki": [16338], "aldai.ly": [2053], "w-tune.com": [18403], "bobby.mx": [2053], "uedm.ml": [2053], "kanotix.net": [8934], "opencontainers.org": [12201], "witness.org": [18683], "weibopay.com": [21998], "*.zohostatic.com": [19205], "thompsonschools.illuminateed.com": [20430], "dash.org": [4240], "webdrive.htw-berlin.de": [7246], "rros.ch": [2053], "olb.nationwideuk.ie": [11280], "epget.bme.hu": [1570], "www.junge-piraten.de": [8831], "armadaworkplace.cisco.com": [3221], "athenea.upo.es": [17683], "s4.pimg.tw": [12890], "twdc.to": [2053], "aelikes.me": [2053], "cge.ms": [2053], "link.rozak.net": [2053], "secure.whitepages.com": [18555], "pathdefender.com": [12663], "bit.leqg.xyz": [2053], "www.thepirategoogle.com": [16494], "kilbeggan.fourecks.de": [6198], "solitelefons.uv.es": [17750], "muscletips.xyz": [2053], "pstars.im": [2053], "homelessnessclearinghouse.govspace.gov.au": [6994], "skystills.com": [2053], "skyrckt.com": [2053], "webservices.amazon.com": [954], "static6.businessinsider.com": [2512], "kabardino-balkariya.beeline.ru": [1801], "www.kinko.me": [9061], "*.where2getit.com": [18538], "yingxiao.taobao.com": [16206], "xcat.nl": [18804], "checkout.subscriptiongenius.com": [15819], "*.eastbay.com": [5117], "recurly.com": [13887], "ynuf.alipay.com": [857], "bt.numerique.ca": [2053], "admd.yam.com": [18948], "www.youbetrayedus.org": [19019], "www.stdhivtraining.org": [2802], "piratebay.inbypass.download": [21771], "*.marinellarose.com": [10164], "natbkj.me": [2053], "iclv.co": [2053], "origin.www.upc.ie": [17279], "rflh.us": [2053], "bugz.foocorp.net": [6114], "www.entrust.net": [5406], "uofi.uillinois.edu": [17238], "beta.fastmail.fm": [5804], "apttherapy.com": [2053], "www.pcisecuritystandards.org": [12428], "juneoven.com": [8830], "praia.usembassy.gov": [21879], "mxr.theplatform.com": [16495], "www.warwickshire.gov.uk": [21980], "al-muqaweel.com": [2053], "www.stine.uni-hamburg.de": [17229], "fsd.merton.gov.uk": [10464], "j.amaal.co": [2053], "www.flixbus.de": [6047], "navut.ro.vutbr.cz": [17814], "www.pingupod.de": [12904], "lendingclub.com": [9404], "www.turbo.htwk-leipzig.de": [7736], "r.chrisw.us": [2053], "hsc.lt": [2053], "kiks.yandex.ua": [18961], "www.juniperresearch.com": [8833], "3-4.fr": [2053], "www.transmode.com": [16953], "ckng.us": [2053], "www.saucelabs.com": [14542], "anaphoto.uk": [2053], "www.medocmall.co.uk": [10368], "stallman.org": [15625], "tivi.de": [22127], "url.conecte.co": [2053], "masu.rocks": [2053], "abt.cm": [2053], "www.groklearning.com": [7090], "gcsc.georgetown.edu": [6668], "handmadekultur.de": [7320], "vtvr.gati.be": [2053], "mediaroots.org": [20770], "ll-media.tmz.com": [16087], "tyku.it": [2053], "forums.kali.org": [8923], "www.sourcefire.com": [15430], "rc.meituan.com": [10405], "beonespark.com": [1552], "daxue.aliexpress.com": [19343], "go.olrd.me": [2053], "computextaipei.com.tw": [19768], "rink.me": [2053], "login.thepensionsregulator.gov.uk": [21708], "www.scieneo.de": [14625], "fontacto.co": [2053], "qa.php.net": [12453], "games.juno.com": [8835], "www.vvcap.net": [17815], "story.qnynp.com": [2053], "www.thezaplab.com": [19105], "store.tenable.com": [16370], "osper.me": [2053], "soylentnews.org": [15449], "mindof.media": [2053], "on.mash.to": [2053], "pic3.qiyipic.com": [20413], "lk.meup.org": [2053], "sync2.audtd.com": [1400], "scandinavianphoto.se": [14572], "bde.li": [2053], "s.aolcdn.com": [363], "support.codebasehq.com": [3420], "jrein.co": [2053], "links.pjr.bz": [2053], "www.kinimatorama.net": [20595], "smrtwt.ch": [2053], "rockhur.st": [2053], "polyvore.com": [21167], "www.aurous.me": [1408], "centreforeffectivealtruism.org": [3017], "boc.im": [2053], "servicedesk.idoxgroup.com": [20426], "www.qb50.eu": [13508], "qualityunit.com": [13561], "passwords.cites.illinois.edu": [17544], "dvcs.w3.org": [18184], "static.ashleymadison.com": [1290], "r.mjm.media": [2053], "randy.tips": [2053], "beun.io": [2053], "r.ispot.jp": [2053], "printer.sch.bme.hu": [1570], "utwente.nl": [17350], "www.foreverinfamous.com": [8238], "spcvt.org": [2053], "static1.autoit-cdn.com": [1453], "careers.slac.stanford.edu": [15635], "apps2.shareholder.com": [14922], "*.adage.com": [3829], "w4tchh3re.tk": [2053], "helpdesk.softcom.com": [15339], "portoncv.gov.cv": [13169], "business.bell.ca": [1815], "probe.yieldlab.net": [18989], "events.fit.edu": [6058], "researchgate.net": [14030], "blog.bazaar.canonical.com": [2869], "funre.us": [2053], "directory.ncl.ac.uk": [11073], "vdopia.com": [17875], "chip-kiosk.de": [2652], "kamchatka.rt.ru": [13703], "51.to": [2053], "unitedpts.com": [2053], "btinfo.co": [2053], "*.doi.org": [4150], "www.kongregate.com": [9128], "j.jwf.io": [2053], "www.oneadmin.cz": [11840], "site-cdn5.ghosteryenterprise.com": [6750], "subscribe.billboard.com": [1933], "play4-show.gq": [2053], "www.nordea.*": [11667], "fr-fr.facebook.fr": [5736], "universal.iperceptions.com": [20411], "www.puritan.com": [13476], "www.fdworlds.net": [5820], "*.activestate.com": [538], "mcgil.lu": [2053], "arun.objective.co.uk": [20979], "b.fastcompany.net": [5797], "propel.to": [2053], "69d.sx": [2053], "go.e-league.com": [2053], "shop.eset.co.uk": [5053], "g.bornweg-dt.de": [2053], "shop.typo3.org": [16149], "by.aug.st": [2053], "kwro.se": [2053], "wms.assoc-amazon.de": [1324], "*.foxycart.com": [6205], "www38.polyu.edu.hk": [13116], "adap.tv": [593], "facaumupgra.de": [2053], "orhn.co": [2053], "mixedatsonic.co": [2053], "*.popin.cc": [13134], "www.wfncnews.com": [18199], "sarc.usc.edu": [17564], "www.regjeringen.no": [13972], "ftp.intevation.org": [8445], "lsgrps.co": [2053], "l.zepher.me": [2053], "wms.geo.admin.ch": [21629], "obs-ing.com": [2053], "j-vh.me": [2053], "bugs.winehq.org": [18652], "tyrolit.social": [2053], "www.nationwide-jobs.co.uk": [11280], "iasen.gop": [2053], "internetbs.net": [8424], "ds3.static.rtbf.be": [14244], "www.estavisas.org": [5066], "on.bchil.org": [2053], "scoding.de": [21385], "www.cherwell.gov.uk": [3121, 19696], "borvilag.aldi.hu": [338], "services-sj.mediuscorp.com": [10365], "www.ideone.com": [8091], "inqs.tv": [2053], "i0s.sinaimg.cn": [15091], "bizlaw.guru": [2053], "m.uic.edu": [17517], "yk.meituan.com": [10405], "jojo.click": [2053], "on.edison.com": [2053], "kliksegera.com": [2053], "www.billetnet.dk": [16690], "katalog.yandex.by": [18953], "s-minho.tk": [2053], "toa.click": [2053], "wservices.ch": [18778], "plugins.vuze.com": [18175], "facebook.be": [5736], "yt.meituan.com": [10405], "digs.by": [2053], "withne.ws": [2053], "zbu.tv": [2053], "go2.trendmicro.com": [16993], "donghai.meituan.com": [10405], "hakkalabs.co": [7301], "dify.me": [2053], "bx.in.th": [1627], "djust.info": [2053], "x.cynion.com": [2053], "uberspace.de": [17369], "dl.getblogo.com": [2053], "www.jobs.economist.com": [5161], "raven.im": [2053], "islinkedto.com": [2053], "xincai.meituan.com": [10405], "gai.me": [2053], "priceonomics.com": [13282], "1lotstp.com": [54], "www.phobos.bnl.gov": [19564], "travelnow.com": [16967], "metrika.yandex.com": [18956], "www.invenio-software.org": [8460], "universities.caat.org.uk": [19625], "fvjobs.com": [2053], "moar.click": [2053], "sso.cisco.com": [3221], "my.ancvideo.com": [2053], "www-947.ibm.com": [7821], "dnsexit.com": [4695], "hautelook.com": [7373], "justdrive.us": [2053], "www.dailypix.me": [4195], "dealda.sh": [2053], "go54.com": [2053], "tudr.in": [2053], "www.bcaa.com": [1543], "www.netscape.com": [11441], "ssl.bandisoft.com": [1685], "sm2b.me": [2053], "www.getmybalance.ca": [6735], "endoflife.stanford.edu": [15635], "img1.tv4cdn.se": [16137], "solvenci.com": [2053], "mitpress.mit.edu": [9916], "www.nhsbsadental.nhs.uk": [11102], "ucomm.stanford.edu": [15635], "helpocean.com": [7443], "businessinsider.com": [2512], "i.googledd.com": [2053], "www.shwyz.ca": [15001], "maine.gov": [10060], "gqtr.to": [2053], "*.forums.frugalware.org": [6352], "beta.hrw.org": [7756], "www.gemnasium.com": [6640], "tecmobowl.co": [2053], "www.samsungsem.com": [14508], "www.mni.thm.de": [16066], "dtx.li": [2053], "dfds.co": [2053], "www.healthnet.com": [20329], "holywdtrmnt.com": [2053], "tvrain.ru": [21826], "infotech-team.com": [18395], "www.coophotellkupp.com": [19788], "claimyourname.io": [3266], "www.digitalriver.com": [4566], "www.pirateproxies.net": [21709], "*.marksandspencer.com": [10108], "zaxman.ml": [2053], "l3-2.kiva.org": [9077], "chinasuppliers.alibaba.com": [850], "glutenl.es": [2053], "ld-nk11.itunes.apple.com": [1160], "orbital.com": [12296], "slickproductsusa.com": [15202], "dspor.tv": [2053], "www.outspark.com": [12359], "hunch.com": [7762], "www.lawgeex.com": [9330], "wap.spdb.com.cn": [21526], "herlev.emply.net": [5320], "ohce.us": [2053], "humorpics.net": [2053], "y-b.me": [2053], "home.slac.stanford.edu": [15635], "hugs.so": [2053], "www.zenmate.ma": [19133], "nsm.stat.no": [11228], "tagasauris.com": [16161], "www.sealedabstract.com": [14680], "soekris.com": [15334], "*.belnet.be": [1821], "www.simplyzesty.com": [21453], "fee.ba": [2053], "www.player.io": [13024], "*.gravatar.com": [7027], "*.salsalabs.com": [14492], "www.lotuscars.com": [9778], "storywriter.amazon.com": [952], "iqdb.org": [20492], "translation.alfresco.com": [843], "www.virtualboximages.com": [18040], "vanas.us": [2053], "phrmwb.com": [2053], "mc.manuscriptcentral.com": [14603], "ametsoc.org": [351], "nickg.uk": [2053], "assets.dice.com": [4534], "register.ie": [4597], "link.springer.com": [15561], "www.senat.edu.pl": [14817], "musitb.ga": [2053], "cdn.muscleandstrength.com": [10896], "loginex.microsoftonline.com": [10546], "3c.tmall.com": [21748], "www.uptobox.com": [21872], "de-tr.dict.cc": [4536], "oclo.se": [2053], "www.blogsmithmedia.com": [359, 10829], "tmshop.tm.com.my": [16341], "celebr.in": [2053], "msrow.land": [2053], "services.wsj.com": [22058], "betterscience.org": [19520], "cru.org": [3901], "router.vuejs.org": [18165], "rof.im": [2053], "kona33.kontera.com": [9131], "www.iti.illinois.edu": [17544], "www.foss.in": [5700], "fgpro.co": [2053], "thalia.at": [16433], "cbse.soe.ucsc.edu": [17591], "*.ucalgary.ca": [17220], "pdu.edu": [13166, 13167], "usmagazine.com": [17708], "cxt.1688.com": [44], "soz.wtf": [2053], "l10n.cacert.org": [2578], "da.gd": [4174], "www.oca.ucsc.edu": [17591], "s.fujino.us": [2053], "helpdesk.wustl.edu": [18290], "www.sciencenews.org": [14621], "htwk-leipzig.de": [7736], "www.redports.org": [13933], "boxoffice.com": [2307], "www.ijmfreedommaker.org": [7892], "10mtweet.netmeister.org": [11436], "opam.ocaml.org": [11811], "rankings.gawker.com": [6593], "www.vimeopro.com": [18010], "www.lawfareblog.com": [20642], "bshpcr8v.ca": [2053], "dailynk.com": [4199], "onlrl.uk": [2053], "lnk.pbcnx.com": [2053], "products.sel.sony.com": [15393], "eps.unizar.es": [17643], "texashhs.ideascale.com": [20423], "3ct.me": [2053], "*.sailfishos.org": [14478], "www.hosteurope.de": [7660], "*.wuala.com": [18781], "on.bamboost.org": [2053], "www.wordtothewise.com": [18733], "goguac.io": [2053], "flxi.co": [2053], "36.fotogr.fr": [2053], "www.origin.com": [12309], "dieet.at": [2053], "cmusantaisabel.unizar.es": [17643], "r8u.me": [2053], "docs.openx.com": [12193], "natesnose.info": [2053], "stockton.edu": [15735], "www.urbanvilla.nl": [17699], "cdn.research.nabtrade.com.au": [11054], "visitsor.no": [2053], "*.tvtorrents.com": [17136], "www.midnightbsd.org": [20795], "cdbaby.com": [19662], "webauth.uvm.edu": [17353], "*.iapc.utwente.nl": [20416], "mnrpl.net": [2053], "jobs.citigroup.com": [3231], "*.swtor.com": [15960], "pbthdm.bt.motive.com": [20831], "www.iab.net": [8386], "www.c3s.cc": [2558], "www.rdio.com": [13828], "www.ezcrypt.it": [5100], "apps.shareholder.com": [14922], "bullionstar.com": [2477], "dev.commentarymagazine.com": [3543], "recn.co": [2053], "sambei.tk": [2053], "webpr.us": [2053], "*.fogbugz.com": [6096], "ztre.site": [2053], "c.atdmt.com": [10540], "www.acsf.cornell.edu": [3744], "imageforensic.org": [8130], "partner.just-eat.ca": [20565], "crdnrd.com": [2053], "www.phil.camera": [21116], "www.affili.net": [738], "gaoyou.jd.com": [8571], "www.braveinfo.net": [2346], "www.bitterwallet.com": [7692], "webmail.rrz.uni-hamburg.de": [17229], "staff.gd": [2053], "www.mercola.com": [20782], "www.emoryhealthcare.org": [5313], "media.cndls.georgetown.edu": [6668], "youngstonewall.org.uk": [22111], "developer.jwplayer.com": [9752], "gobold.me": [2053], "myshazam.com": [11006], "waikato.ac.nz": [17633], "nextview.vc": [2053], "www.coccoc.com": [3402], "blstc.msn.com": [9961], "academy.kaspersky.ru": [8959], "presseportal.zdf.de": [22127], "www.phishtank.com": [12841], "console.boxcar.io": [2310], "x.3qr.org": [2053], "elsevierhealth.com.au": [5288], "up.dorijan.co": [2053], "hanna.tips": [2053], "www.lenovo.co.uk": [9409], "franklincollege.worldcat.org": [18748], "stry.eu": [2053], "ticket.seferler.yandex.com.tr": [18954], "www.databits.net": [4274], "*.rudi.net": [13713], "sndp.lt": [2053], "nji.co": [2053], "l.florida.pe": [2053], "ignum.cz": [7878], "jmf.im": [2053], "pksl.tv": [2053], "datapipe.co.uk": [4288], "programming.wolframcloud.com": [18700], "funes.in": [2053], "www.cultura.no": [3986], "asearch.alicdn.com": [846], "collection.itunes.apple.com": [1160], "mobilegaming.williamhill.com": [18615], "forge.indepnet.net": [8207], "vologda.beeline.ru": [1801], "seo.laproxsites.com": [9307], "vitalcred.com.br": [12532], "pub.school": [2053], "huoqiu.meituan.com": [10405], "tcko.us": [2053], "sl.fnf.fm": [2053], "*.www.city.ac.uk": [3246], "cdn4.sure-assist.com": [15899], "atru.org": [2053], "networkworld.com": [11459], "piratebayportal.co.uk": [21712], "uklinux.net": [17249], "jko.io": [2053], "www.pastebin.com": [12654], "www.social.anz.com": [355], "listings.digiguide.tv": [19918], "www.nuclearblast.de": [11765], "belk.in": [2053], "re.al.net": [2053], "www.buddyauth.com": [2284], "olbx.us": [2053], "tavr.es": [2053], "enr.gy": [2053], "danr.me": [2053], "lantmateriet.se": [9305], "ec2-images-amazon.test.edgekey.net": [5182], "30acr.es": [2053], "westmont.worldcat.org": [18748], "www.rateip.com": [13807], "survey.piwik.org": [12950], "dyne.org": [4932], "mauras.ch": [10250], "kunming.jd.com": [8571], "inform.umd.edu": [17549], "www.mindfactory.de": [10599], "deb.bi": [2053], "www.circlegroup.org.uk": [19715], "cdn5.xvideosx.tv": [18837], "www.securosis.com": [14778], "static.vzaar.com": [18179], "nature.berkeley.edu": [17526], "b2.bigmrc.com": [2053], "c-az.org": [2053], "www.buckeyemail.osu.edu": [11959], "dea.com": [4340], "2014.asiabsdcon.org": [1293], "gse.stanford.edu": [15635], "ccmm.li": [2053], "hackforums.net": [7283], "u.plift.me": [2053], "mijnd66.nl": [10568], "crzo.co": [2053], "cbox.ws": [19657], "cllp.co": [2053], "wrs.io": [2053], "atlchp.co": [2053], "m.115.com": [25], "kuzbank.dengisend.ru": [4440], "volotrend.com": [2053], "www.linux-dev.org": [9560], "gsob.co": [2053], "www.univ-brest.fr": [17508], "aaronlindsay.com": [433], "vtd-tar.co": [2053], "www.aftonbladet.se": [754], "mmedia.me": [10456], "thereadingroom.com": [16498], "support.redhat.com": [13909], "canoncla.st": [2053], "faridn.in": [2053], "www.mcli.dist.maricopa.edu": [10153], "www.linuxlovers.at": [9592], "flagrate.org": [6014], "metaproducts.com": [10478], "www.afcom.com": [320], "home.bt.com": [1593], "ajmorris.us": [2053], "www.glljobs.org": [20252], "max.adobe.com": [655], "www.hotelplan.ch": [7698], "preview.webplatform.org": [18376], "imjp.co.uk": [2053], "apps.nowwhere.com.au": [20938], "www.optimise.com.br": [12271], "www.mindtouch.com": [10596], "dccc.org": [4088], "jqueryui.com": [8601], "websitealive.com": [18445], "netid.cornell.edu": [3744], "www.sw.centrum.cz": [19674], "i2.answers.microsoft.com": [10543], "www.juick.com": [20560], "pdd.io": [2053], "mor.network": [2053], "locho.mx": [2053], "x.jonizeta.net": [2053], "studentconduct.wustl.edu": [18290], "footprints02.main.ad.rit.edu": [13667], "stillmed.olympic.org": [20988], "tlyfe.io": [2053], "scvhhsrap.sccgov.org": [14579], "hunban.taobao.com": [16206], "poach.it": [2053], "epuk.info": [2053], "online.welt.de": [18492], "www.luckyreferrals.com": [20723], "www.evolvesocially.org": [5575], "www.librarything.com": [9464], "frm.twspmr.eu": [2053], "50p.eu": [2053], "rd.connexity.net": [3649], "forum-pl.msi.com": [9957], "x.greatify.co": [2053], "ssl.webserviceaward.com": [18402], "heatss.civicalg.com.au": [19720], "boredtodeath.me": [2276], "nyphil.us": [2053], "www.cpanel.guru": [2709], "latechwat.ch": [2053], "www.bitcoinfoundation.org": [2030], "adrb.io": [2053], "online-office.1and1.co.uk": [63], "loanhub.capitalone.com": [2878], "livechat.boldchat.com": [2240], "thinka.be": [2053], "*.netdna-ssl.com": [11414], "smpl.as": [2053], "groklearning.com": [7090], "www.hertz247.ie": [7490], "at.nickjr.com": [2053], "www.healthcheckusa.com": [7393], "gasp.la": [2053], "bimportprod.tk": [2053], "account.blesta.com": [2123], "on.moncler.com": [2053], "www.hertz247.is": [7488], "onbik.es": [2053], "www.sumome.com": [21604], "www.hertz247.it": [7491], "okmexi.co": [2053], "www.looloo.com": [9765], "gobr.us": [2053], "m.ichangego.com": [2053], "www.enterprise.com": [5393], "l.anglican.ca": [2053], "www.songsterr.com": [15384], "rtn.church": [2053], "movbonanza.com": [2053], "chat.apan.org": [369], "l.bod.org": [2053], "rnz.to": [2053], "ahow.es": [2053], "www.proxysolutions.net": [13410], "www.sks-keyservers.net": [14365], "u.arcww.com.tw": [2053], "go100.me": [2053], "studentaid2.ed.gov": [4988], "www.modelaircraft.org": [477], "viphat.me": [2053], "zuli.ly": [2053], "cryptostocks.com": [3958], "www.books.ch": [16433], "2mr.us": [2053], "ubuntu.org.cn": [17372], "www0.maths.ox.ac.uk": [17557], "timt.la": [2053], "opendata.cheshireeast.gov.uk": [3125], "*.airbnb.com": [788], "boe.ca.gov": [2566], "cert.webtrust.org": [18390], "www2.netflix.com": [11421], "portal.johnshopkins.edu": [8760], "embl.us": [2053], "wt.proquest.com": [13340], "zhaoshang.alitrip.com": [858], "blis.news": [2053], "apps-community.akamai.com": [800], "*.factiva.com": [11513], "file2.answcdn.com": [1099], "webmail.htw-berlin.de": [7246], "search.dokuwiki.org": [4728], "noh.how": [2053], "loveplanet.ru": [9790], "www.landliebe.de": [2842], "klcjr.nl": [2053], "acluva.org": [292], "miers.co": [2053], "cmap.it": [2053], "cmap.is": [2053], "neil.to": [2053], "www.gotoassist.com": [6911], "m-bri.co": [2053], "offcampus.osu.edu": [11959], "fant.in": [2053], "on.luiscao.com": [2053], "www.apperdeck.com": [7606], "www.thehoxton.com": [16557], "www.5min.com": [208], "on.thaserv.de": [2053], "mir-politika.com": [20803], "www.aerohosting.cz": [728], "list.zerties.org": [19163], "toyot.ag": [2053], "pixel.redditmedia.com": [13924], "s.panc.ro": [2053], "aerling.us": [2053], "static.intercomcdn.com": [8393], "ptl.mx": [2053], "antalyagrillhouse-blanchardstown.just-eat.ie": [20565], "rlv.zcache.com": [19120], "logmeininc.com": [9712], "arvixe.com": [1273], "bit.bfb.net.nz": [2053], "ddr.ornl.gov": [11892], "www.sunxi.org": [9561], "devprom.ru": [4512], "www.kyleisom.net": [9207], "tfal.me": [2053], "karriere.cyberport.de": [4048], "c.aprilsteve.us": [2053], "*.gwu.edu": [6667], "test.qrlott.com": [2053], "www.skylink.cz": [15183], "bfm.swisscom.com": [15951], "doci.me": [2053], "www.name.com": [11204], "nsk.zarplata.ru": [20907], "globalpublicsquare.blogs.cnn.com": [18730], "socl.ly": [2053], "www.filmaffinity.com": [20113], "psyjn.ir": [2053], "www.kinox.am": [20597], "www.makeloveland.com": [10074], "www.spring.io": [15555], "cs.soe.ucsc.edu": [17591], "shunde.1688.com": [44], "p.ngx.cc": [11569], "persoonlijk.knab.nl": [9091], "cycl.gr": [2053], "gvgb.co": [2053], "kissinsights.com": [8879], "ss1.zedo.com": [19122], "visionartforum.com": [18066], "viu.gg": [2053], "ftav.me": [2053], "www.otto.de": [12339], "pier.onl": [2053], "hrvys.ch": [2053], "lumigon.com": [9829], "smileysnetwork.com": [15252], "surbitcoin.com": [15898], "intranet.uniovi.es": [17479], "amos.taobao.com": [16206], "saintmikes.net": [2053], "static.smdg.ca": [15250], "hd.meituan.com": [10405], "*.abuse.ch": [470], "www.yes.co.il": [22101], "gizm.ag": [2053], "*.adbuyer.com": [606], "e-citations.ethbib.ethz.ch": [5074], "hma.io": [2053], "*.heritage.org": [7468], "nbx.es": [2053], "www.broadband-forum.org": [2402], "www.pittsburghmassageandwellness.com": [12946], "inertianetworks.com": [8235], "cimb-principal.com.my": [2663], "bit.mtbird.com": [2053], "www.httplab.it": [7733], "carrot.cr": [2053], "ozn.bg": [2053], "yourcall.xyz": [2053], "tildedave.com": [16717], "londonpreparesseries.com": [9734], "about.musixmatch.com": [10911], "leroyfcpress.com": [9415], "neverho.me": [2053], "kids.360.cn": [130], "btplc.com": [1590], "ss.knet.cn": [8892], "on.red-uk.co": [2053], "cncrts.co": [2053], "a2.mzstatic.com": [11041], "drivestyle.co.uk": [4859], "techweekeurope.fr": [11390], "www.anomos.info": [1074], "bcln.us": [2053], "transferwise.com": [16938], "roi.ms": [2053], "www.moechel.com": [10715], "vungle.com": [18173], "dwht.co": [2053], "erati.me": [2053], "planauskunft.netcologne.de": [11379], "go.siteina.com": [2053], "servicetick.com": [14867], "listes.aful.org": [325], "www.just-eat.co.uk": [20565], "tickets.montereybayaquarium.org": [10755], "www.das-labor.org": [4237], "kell.in": [2053], "pipedot.org": [12915], "*.pagodabox.com": [12539], "www.arranca.org": [1248], "*.ace-host.net": [509], "swpstd.com": [2053], "s.cdon.com": [2620], "static.wistia.com": [18678], "giveto.usc.edu": [17564], "sr.libreoffice.org": [9471], "eide-itc.no": [5223], "bbash.it": [2053], "login.wosign.com": [18693], "jenkins.osmand.net": [12327], "*.onesite.com": [11845], "rw-online.co.uk": [21348], "eben.us": [2053], "pcm.link": [2053], "*.uakron.edu": [17360], "baggageclaim.britishairways.com": [1527], "linkedin.com": [9538], "p.ya.ru": [18930], "cdn3.recombu.com": [13883], "biofitt.com": [1960], "ln.pkts.es": [2053], "cdn.tradelab.fr": [16917], "dating.zoosk.com": [19225], "hyb.pw": [20400], "go.tseytlin.com": [2053], "www.veronikamaine.com.au": [17923], "*.vsco.co": [17803], "ry5.org": [2053], "*.plastic-bin.com": [13002], "try.taobao.com": [16206], "sdss3.org": [15212], "pravydiplom.cz": [13241], "www.consumeraffairs.com": [3664], "jeded.com": [20533], "webmail.daily.co.uk": [4190], "retz.us": [2053], "www-stage.aggregateknowledge.com": [764], "flipitcase.co": [2053], "canadianwebhosting.com": [2854], "ludit.kuleuven.be": [8969], "asteriskexchange.com": [1335], "tianqi.hao123.com": [20312], "litetree.com": [9620], "bhawk.me": [2053], "www.bahn.de": [1660], "house.resource.org": [13435], "www.bluenotes.anz.com": [355], "www.postto.me": [13183], "french.guinea.usembassy.gov": [21879], "secure.lijit.com": [9510], "pervouralsk.beeline.ru": [1801], "link.jukwa.tv": [2053], "inf.tips": [2053], "coop.no": [3713], "data.togethertrust.org.uk": [21753], "chkl.st": [2053], "amoena.com": [1017], "dev.bukkit.org": [19610], "s.omniti.net": [11995], "id-card.umd.edu": [17549], "www.catalysis.com": [2954], "s.huchen.me": [2053], "gtee.co": [2053], "mr3.doubanio.com": [19954], "ige.ch": [15949], "secure.datinglab.net": [19861], "ppgre.net": [2053], "6kbhkort.kk.dk": [8883], "www.fraedom.com": [20155], "galaxy.ansible.com": [1097], "sav.sk": [15217], "map.geo.admin.ch": [21629], "g2play.net": [6414], "swl.ink": [2053], "fren.tv": [2053], "appthemes.com": [1149], "dev.yandex.com": [18956], "codethink.co.uk": [3443], "vume.me": [2053], "www.webtrends.com": [18467], "www.danid.dk": [4209], "r3.mail.ru": [10040], "on.car.org": [2053], "3v1n0.net": [166], "qd.meituan.com": [10405], "image.rakuten.co.jp": [13768], "hackinparis.com": [7268], "www.xmpp.org": [18827], "ntpandp.com": [11164], "www.*.alaska.edu": [17521], "aablg.xyz": [2053], "sickjok.es": [2053], "*.nzbmatrix.com": [11192], "guidancesoftware.com": [7134], "origin.eplayer.performgroup.com": [12442], "a.fwlink.us": [2053], "leseprobe.buch.de": [16433], "m.jmam.co.jp": [2053], "www.juliareda.eu": [8822], "pres.so": [2053], "ma.dsemil.com": [2053], "pside.co": [2053], "rapzil.la": [2053], "mydiv.co": [2053], "brownschool.wustl.edu": [18290], "ca.cz": [19624], "mkjns.li": [2053], "ukjobs.g4s.com": [20194], "www.metrotransit.org": [10504], "shop.xeu.com": [18811], "bertuc.ci": [2053], "lv.3.boardgamearena.com": [2219], "jsao.io": [8608], "go.cosh.me": [2053], "forge.centreon.com": [3019], "wiki.qubes-os.org": [13574], "japan.hertz.com": [7511], "car.osu.edu": [11959], "*.makerbot.com": [10079], "cacti.allmyvideos.net": [897], "www.klinikum.uni-heidelberg.de": [17459], "help.thepensionsregulator.gov.uk": [21708], "info.newrepublic.com": [11500], "mdc.st": [2053], "www.zcomm.org": [19064], "lnk.rockshop.nz": [2053], "www.upds.com": [21866], "www.koinify.com": [9108], "a2.sphotos.ak.fbcdn.net": [5816], "fun.gu3.se": [2053], "www.createspace.com": [3842], "seejane.link": [2053], "media.screened.com": [18543], "www.amazon.in": [19372], "partners.fortinet.com": [6174], "wind.social": [2053], "lechang.meituan.com": [10405], "rousseau.gitbook.com": [6794], "www.car.osu.edu": [11959], "mirl.me": [2053], "ohnopodcast.com": [15583], "www.intranet.fmed.ulaval.ca": [17515], "www.cuabroad.cornell.edu": [3744], "help.adbrite.com": [603], "www.dtp.nci.nih.gov": [11241], "elq.to": [2053], "www.thephoenixbay.com": [21709], "www.media.mit.edu": [9916], "my.upc.cz": [17278], "lv.foursquare.com": [6200], "pxlbx.at": [2053], "fullp.in": [2053], "mt30com.duoshuo.com": [19969], "help.youcaring.com": [19011], "evesys.unisys.co.jp": [17488], "d-williams.com": [2053], "static.solfoinc.netdna-cdn.com": [18926], "upem.it.ohio-state.edu": [11960], "securestore.xfinity.com": [22082], "www.dialogs.com": [4524], "moderngiver.com": [10708], "bluehost.com": [2203], "www.t.co": [16030], "www.mybbcentral.com": [10933], "tinyfile.net": [2053], "blog.fortumo.com": [6178], "vhphttp.dsi.cnrs.fr": [6314], "www.bitvisor.org": [1999], "joycazino.com": [20552], "e61.be": [2053], "downloads.comcast.net": [3524], "trb.la": [2053], "bnd.bund.de": [2486], "cf-media.sndcdn.com": [15278], "www.isst.fraunhofer.de": [6230], "extranets.pinsentmasons.com": [12912], "discoverer.ulpgc.es": [17411], "www.mediamarkt.ru": [10342], "lheb.fr": [2053], "vlad.trade": [2053], "grns.in": [2053], "wds.meituan.com": [10405], "aolplatforms.com": [365], "agustint.com": [2053], "www.threema.ch": [16668], "zhongce.360.cn": [130], "osuosl.org": [12302], "attac.at": [1370], "videa.hu": [17976], "s.bumbacea.ro": [2053], "bijie.meituan.com": [10405], "jobs.stockport.gov.uk": [21578], "verismo.co": [2053], "2l.ng4.me": [2053], "goaspha.lt": [2053], "data-secure.solvemedia.com": [15375], "on.cwtv.com": [2053], "www.appvault.com": [1150], "drrw.us": [2053], "fpgam.es": [2053], "*.clicktale.net": [3311], "*.codeux.com": [3445], "sgould.co": [2053], "unicosusta.in": [2053], "blog.newswhip.com": [11524], "www.exchange.iu.edu": [8214], "swa.xyz": [2053], "subway.com": [15825], "link-page.info": [20691], "static.tenable.com": [16370], "www.webooluinc.com": [18433], "schiedam.nl": [11324], "*.ology.com": [11981], "s.450nm.com": [2053], "www.ad-stir.com": [552], "sl.resonance.is": [2053], "calendar.nih.gov": [11241], "paste.ubuntuusers.de": [17383], "marketing.voxmedia.com": [18147, 21953], "digitaltrends.com": [4584], "news.vice.com": [17959], "7l4.se": [2053], "equip.org": [5439], "spanish.101domain.com": [14, 15], "tpb.unlockme.club": [21771], "www.tsp.gov": [21806], "deepdotweb.com": [4377], "fr.support.tomtom.com": [16812], "sofn.com": [15336], "cinemoz.co": [2053], "secure.gettyimages.dk": [6741], "small.1688.com": [44], "manageengine.com": [10103], "labels101.com": [2053], "videos.5min.com": [208], "accounts.firefox.com": [5974], "vetr.in": [2053], "lfbz.it": [2053], "www.uniforum.uio.no": [17615], "organizer.gmx.com": [6467], "tadr13.ga": [2053], "www.kyivpost.com": [9206], "*.battlecreekenquirer.com": [1742], "bellsouth.com": [1817], "kora.re": [2053], "newman.uts.ohio-state.edu": [11960], "dersverilir.net": [4463], "pivothd.com": [2053], "ideel.com": [8079], "beckpc.ch": [1796], "h.s.sl.pt": [14536], "billettservice.no": [16690], "exstonet.merkleinc.com": [20783], "thepiratebay.mg": [21709], "kan.taobao.com": [16206], "infopankki.fi": [8264], "franchiseradioshack.com": [13749], "www.ie.cuhk.edu.hk": [2747], "uwest.worldcat.org": [18748], "wineaustralia.com": [18651], "vpge.stanford.edu": [15635], "adx.adform.net": [625], "ip.ngx.cc": [11569], "mentor.com": [10438], "acp.stanford.edu": [15635], "www.tv.yandex.kz": [18957], "gmsp.gr": [2053], "quickline.com": [21243], "klamm.ws": [2053], "b.sveri.no": [2053], "nokia.*": [11655], "go.imgg.me": [2053], "api.weixin.qq.com": [13514], "app.zencoder.com": [19135], "www.sandvine.com": [14523], "nenot.es": [2053], "airgat.es": [2053], "irnw.me": [2053], "teevox.com": [16317], "eastriding-consult.objective.co.uk": [20979], "it.arch.ethz.ch": [5074], "top.elec.ru": [20021], "wiki.tox.chat": [16891], "sysysportal.axosoft.com": [1517], "meierbe.at": [2053], "www.jsperf.com": [8806], "utx.as": [2053], "special.mirea.ru": [20805], "warsaw2014.honeynet.org": [20357], "*.ladyfootlocker.com": [9282], "apj.aas.org": [271], "*.firehost.com": [5969], "brando.ws": [2053], "kgou.cf": [2053], "*.utsandiego.com": [17348], "www.de-captcher.com": [4318], "s2.pimg.tw": [12890], "collabora.co.uk": [3481], "gbr.nu": [2053], "c2u.de": [2053], "archive.angus.gov.uk": [1059], "bankofscotland.de": [1697], "media.campaign.harvard.edu": [7351], "s.metiix.com": [2053], "www.thomsonreuters.com": [16650], "q8.yt": [2053], "indiga.cc": [2053], "siggraph.org": [15022], "stags.bluekai.com": [2186], "assets.sidearmsports.com": [15009], "*.libdems.org.uk": [9451], "*.staticflickr.com": [15682], "kagorg.es": [2053], "www.cars.unm.edu": [17270], "www-mail.biologie.ens.fr": [5029], "www.hushmail.com": [7777], "reelhd.com": [13942], "www.t3blog.com": [16035], "weln.es": [2053], "ifms.hdfcbank.com": [7389], "hertzentertainment.com": [7511], "l.jdn.im": [2053], "nmo.to": [2053], "comlibrary.worldcat.org": [18748], "www.sophos.com": [15403], "global.ahnlab.com": [777], "norman.com": [11685], "cnv.com": [19744], "trac.jitsi.org": [8731], "scts.ee": [2053], "casper.com": [2944], "imssr.com": [7907], "www.siedler25.org": [14065], "link.aiesec.cz": [2053], "ntnu.no": [11153], "g4it.tk": [2053], "flames.lu": [2053], "mgcl.us": [2053], "amnesty.org.tr": [1008], "bloodhoundgang.com": [2169], "go.2igeek.com": [2053], "*.fcac.org": [5748], "secure.rentalcars.com": [14008], "scacommunity.usc.edu": [17564], "on.sugarsca.pe": [2053], "vog.vg": [2053], "grisko.co": [2053], "rti.link": [2053], "gn3t.ml": [2053], "faculty.ischool.syr.edu": [15999], "btn.createsend1.com": [3844], "ifitnaweb.com": [2053], "*.tso.co.uk": [16118], "www.get.how": [6698], "unon.in": [2053], "ciand.cd": [2053], "imss-website-storage.cloud.caltech.edu": [2815], "davincivaporizer.com": [4309], "tfsprays.com": [16063], "intevation.org": [8445], "training.breakingmuscle.com": [19588], "itswa.de": [2053], "dev.office.com": [11942], "amp.lc": [2053], "ucollege.du.edu": [2053], "idportal.lrz.de": [9396], "shipclaim.com": [2053], "padpub.us": [2053], "groups.csail.mit.edu": [9916], "sgh.re": [2053], "www.wienenergie.at": [18582], "feedback.adroll.com": [574, 575], "gwhois.org": [6517], "www.devstructure.com": [4498], "aldf.us": [2053], "breakingviews.com": [19589], "u.getim.co": [2053], "www.golf2go.net": [1546], "corp.yota.ru": [22107], "www.highon.coffee": [7539], "www.hamradio.com": [7315], "coop.uk": [2053], "joycasino4.com": [20552], "nanfa.ng": [2053], "dashboard.tinypass.com": [16761], "clsf.co": [2053], "re.kgp.su": [2053], "mtp.io": [2053], "*.visiblemeasures.com": [18061], "beta.n-somerset.gov.uk": [11046], "d.ibtimes.co.uk": [7823], "on.jake.to": [2053], "*.herdict.org": [7464], "som.li": [2053], "*.deviantart.com": [4503], "mta.openssl.org": [12168], "www.impactstory.org": [8162], "www.gigaom.com": [6764], "www.zenmate.com.pa": [19133], "support.wandisco.com": [18189], "t3n.me": [2053], "odbf.co.uk": [2053], "www.zenmate.com.ph": [19133], "maxgotts.tk": [2053], "resource-cms.springer.com": [15561], "rockfo.to": [2053], "mfil.es": [2053], "who.is": [18556], "www.essaysreasy.com": [5469], "s.keiba0.com": [2053], "x.daringer.org": [2053], "*.vespermarine.com.au": [17943], "illicoweb.videotron.com": [17993], "as.meituan.com": [10405], "www.centrum.cz": [19674], "*.mediafire.com": [10317], "plyr.in": [2053], "www.kn.vutbr.cz": [17814], "refunder.me": [2053], "emaileri.com": [5294], "fah.stanford.edu": [15635], "genivi.org": [6433, 6434], "virusbulletin.com": [18049], "xav.com": [18846], "www.amherst.edu": [991], "stnx.in": [2053], "xiangshan.meituan.com": [10405], "parabolagnulinux.org": [12590], "vishnu.netfilter.org": [11417], "subs.mi-pro.co.uk": [20792], "cygnul.com": [2053], "bzu.lu": [2053], "outlook.leeds.ac.uk": [17604], "wiki.instantbird.org": [8336], "mis.tl": [2053], "url.smithtx.us": [2053], "shop.m.taobao.com": [16206], "www.hertzrent2buy.com.br": [7479], "img.fam-ad.com": [20096], "twitteer.site": [2053], "lr.ai": [2053], "media.grc.com": [6497], "*.squat.gr": [21548], "ilias.hft-leipzig.de": [7523], "linyixian.meituan.com": [10405], "1138.nu": [2053], "dooz.us": [2053], "static.gearslutz.com": [6607], "www.libreswan.org": [9477], "lens.io": [9412], "academy.redhat.com": [13909], "ultra4k.tk": [2053], "glc.church": [2053], "www.filebox.tv": [5903], "shouguang.meituan.com": [10405], "api.groupon.com": [7100], "laizhou.meituan.com": [10405], "cacti.its.thm.de": [16066], "rhk.me": [2053], "alve.al": [2053], "toppreise.ch": [21757], "link.kwgn.com": [2053], "websitealive7.com": [18445], "app.jd.com": [8571], "static.digitecgalaxus.ch": [4592], "helan.jd.com": [8571], "vendorcentral.amazon.fr": [19371], "rcfp.org": [13637], "hg.python.org": [13500], "realfavicongenerator.net": [21274], "www.univention.com": [17511], "fr.malwarebytes.org": [10093], "fr33-tv.cf": [2053], "studnt.ms": [2053], "ecustomer.plantsolution.de": [12996], "js.createsend1.com": [3844], "webmail.ktk.bme.hu": [1570], "www.levels.io": [9427], "www.south-wales.police.uk": [21511], "kaiseki.me": [8920], "ighome.com": [8096], "om.tdc.dk": [16051], "fcsh.unizar.es": [17643], "intch.co": [2053], "remedy.canon-europe.com": [2868], "softether.org": [15341], "mexicoleaks.mx": [10506], "youtube.co.ae": [19016], "aftmd.us": [2053], "toclick.tk": [2053], "www.datapipe.co.uk": [4288], "*.logicboxsoftware.com": [9718], "blog.webtype.com": [18391], "www.hamptons.curbed.com": [3997], "www.piratehole.com": [21709], "crayv.it": [2053], "trvlabt.co": [2053], "ln.s-pan.jp": [2053], "nb.3.boardgamearena.com": [2219], "www.noblehour.com": [11641], "www.davidadrian.org": [4303], "doodle.com": [4773], "*.cbs.com": [2584], "my.evidon.com": [5565], "rdca.vc": [2053], "fr.chaturbate.com": [3093], "sdis.co": [2053], "macs.ws": [2053], "personal.uv.es": [17750], "www.nurd.space": [11165], "marktickt.in": [2053], "abrd.us": [2053], "hvl.co": [2053], "3bm.co": [2053], "mintne.ws": [2053], "www.vex.net": [21914], "www.plex.tv": [13036], "juscolle.ge": [2053], "pages.here.com": [7465], "alexandercoward.com": [837], "www.york.ac.uk": [17637], "www2.payback.pl": [21088], "novostivoronezha.ru": [20937], "clubsoda.me": [2053], "subscribe.condenet.com": [3623], "healthstream.usc.edu": [17315], "hmediadev.com": [2053], "www.moaf.org": [10669], "*.beetailer.com": [1804], "xiscosoft.org": [18879], "amar.is": [2053], "hs11.snstatic.fi": [14383], "gsa.tirol": [2053], "www.gemeentewesterveld.nl": [11324], "www.sitecontrol.us": [15124], "www.tmbc.gov.uk": [16082], "www.uploaded.net": [17681], "www.adbit.co": [555], "dominustemporis.com": [4765], "www.identitytheft.org.uk": [8087], "hnurture.co": [2053], "scm-fusioncrm.oracle.com": [12284], "go.zeeborn.net": [2053], "stkate.worldcat.org": [18748], "95516.unionpay.com": [17478], "assets.bwbx.io": [2540], "zhangqiu.meituan.com": [10405], "lt.libreoffice.org": [9471], "*.meetrics.com": [10385], "www1.maine.gov": [10060], "l.ynx.co": [2053], "gscp.us": [2053], "www.weblearn.ox.ac.uk": [17557], "on.deimar.co": [2053], "*.salesforce.com": [14487], "www.ontology.co": [12090], "autotrack.nl": [1455], "pa.wiwi.uni-mainz.de": [17611], "brviv.nl": [2053], "eduroam.cz": [5199], "www.twenga-solutions.com": [17148], "avto.kazanfirst.ru": [20580], "affiliates.flirt4free.com": [20133], "rossiercareers.usc.edu": [17564], "sec.taobao.com": [16206], "mobstac.com": [10676], "www.lilliputti.com": [9514], "www.systemli.org": [16019], "pht.io": [2053], "office2010.microsoft.com": [10543], "www.fiscal.treasury.gov": [16980], "qn.meituan.com": [10405], "www.filebyid.com": [5912], "msb.sovcombank.ru": [21516], "igaming.biz": [7879], "jkp.io": [2053], "cdn.blisstree.com": [899], "secure8.itradecimb.com.my": [2663], "www.v-dem.net": [21888], "skdn.pw": [2053], "www.xakep.ru": [18839], "www.geocoder.ca": [6658], "www2.uic.edu": [17517], "www.tripadvisor.ca": [21792], "u.hrmg.eu": [2053], "differencebetween.net": [4544], "phlvb.com": [2053], "www.sydostran.se": [15965], "front-admin.voyage-prive.co.uk": [18151], "orenburgskaya-obl.beeline.ru": [1801], "download.microsoft.com": [10543], "www.fancybrideness.com": [20097], "manage.rackspacecloud.com": [13741], "bg53.co": [2053], "*.adobeconnect.com": [656], "static.cuttlefish.com": [4017], "online.aberdeenshire.gov.uk": [451], "hans.ws": [2053], "ivy.gr.com": [2053], "webmail.bell.net": [1815], "80.386sx.org": [2053], "www.jltorrent.com": [21709], "4vu.ca": [2053], "icinga.org": [8064], "www.surftown.com": [15907], "enzo.live": [2053], "aef.alumni.sfu.ca": [14893], "i.inink.cz": [2053], "dolgoprudnyy.beeline.ru": [1801], "hummingbird.me": [7760], "sonar.sociomantic.com": [15329], "www.yawnbox.com": [18969], "www.tdf-telecom.fr": [16056], "gun.io": [7150], "www.wbplay.com": [18193], "bsik.io": [2053], "academy.kaspersky.com": [8958], "on.blmusic.co": [2053], "wealth.bar": [2053], "search.24img.com": [95], "community.flockport.com": [6052], "www.snelis.com": [15279], "bugs.x2go.org": [18800], "jenkins.debian.net": [4351], "tap.cr": [2053], "www.catersnews.com": [2961], "urchur.ch": [2053], "bcent.fit": [2053], "godaddy.com": [6898], "sge.bz": [2053], "wiki.cites.uiuc.edu": [17234], "www.privacyfix.com": [13319], "alumni.indiana.edu": [8215], "m.matthewli.com": [2053], "fonticons.com": [6108], "blogs.law.harvard.edu": [7351], "www.cironline.org": [2670], "www.deliciousgreencoffee.com": [4406], "p.adsymptotic.com": [19304], "fblnk.co": [2053], "bluemfy.com": [2053], "uac.mobi": [2053], "www.probmods.org": [13346], "a.mtstatic.com": [10872], "developer.service.hmrc.gov.uk": [7219], "www.etegro.com": [5076], "www.citialumninetwork.com": [3228], "www.brashear.me": [2342], "signups.braintreepayments.com": [2327], "starwarslife.co": [2053], "www.encyclopediadramatica.se": [5342], "misadventureswithandi.com": [10640, 10641], "www.cmw-leipzig.de": [7735], "tec.im": [2053], "*.4sqi.net": [191], "analytics.systemli.org": [16019], "heygorge.us": [2053], "syncthing.net": [15986], "on.mnt.hk": [2053], "esp2.ap.equinix.com": [5438], "www.c-cex.com": [2551], "*.mbl.is": [10276], "wj.hitravel.xyz": [2053], "runbeco.me": [2053], "u.m.taobao.com": [16206], "www.osl.iu.edu": [8214], "clearpt.cc": [2053], "videoplaza.tv": [17991], "youtube.co.nz": [19016], "*.texastribune.org": [16417], "www.chriscoyne.com": [3165], "snowdrift.coop": [15290], "myho.tl": [2053], "apps2.nlm.nih.gov": [11241], "sbsf.li": [2053], "www.ruby-lang.org": [14252], "bezeqint.net": [1886], "ecomm.io": [2053], "l.ikd.be": [2053], "kubuntu.org": [9180], "registratie.powned.tv": [13212], "www.usenix.org": [17318], "docs.snap-ci.com": [21488], "josh.gy": [2053], "dmat.ch": [2053], "securetransfer.portsmouth.gov.uk": [21175], "josh.gr": [2053], "flare.trashmail-static.com": [16963], "image.books.rakuten.co.jp": [13768], "banu.com": [1704], "*.kinghost.com.br": [9051], "collections.stanford.edu": [15635], "*.autotrader.com": [1456], "kangurum.com.tr": [8933], "ryanbrooks.me": [2053], "ademag.co.za": [2053], "prza.co": [2053], "bookit.nl": [7597], "infus.me": [2053], "*.webtrekk.net": [18466], "matnat.uio.no": [17615], "tv.sub.fm": [21596], "thom.sn": [2053], "topk.me": [2053], "cgsinc.axosoft.com": [1517], "www.businessclick.com": [19615], "ubuntu-tr.net": [17381], "spdx.org": [14393], "brkncrcl.es": [2053], "www.ucarp.org": [21834], "jp.chaturbate.com": [3093], "www.stripefees.com": [15783], "www.luu.org.uk": [9263], "www.alltubedownload.net": [902], "rss.leboncoin.fr": [20650], "rpa.la": [2053], "www.gnupg.org": [6887], "www.linuxcloudvps.com": [9579], "go.ldjb.co.uk": [2053], "auth.athensams.net": [12117], "netnow.co": [11393, 11394], "img0.pconline.com.cn": [12437], "su.nottingham.ac.uk": [11726], "static.librarything.com": [9464], "www.nic.tel": [16360], "across.im": [2053], "www.oralb.com": [13349], "st4y.tk": [2053], "sts.edp.pt": [4995], "ktie.fyi": [2053], "jbbr.co": [2053], "cachegames.mirrorbingo.com": [10635], "ly.hrck.se": [2053], "*.valueclickmedia.com": [17834], "aviation-safety.net": [19462], "*.bestcovery.com": [1861], "www.symfony.com": [15971], "experian.experiandirect.com": [5615], "btsr.co": [2053], "www.itbiz.cz": [8535], "oneiros.tech": [2053], "www.digid.nl": [11324], "amazon.de": [19369], "a.lansky.com": [2053], "easycra.at": [2053], "krasnoe-selo.beeline.ru": [1801], "www.submittable.com": [21598], "news.slac.stanford.edu": [15635], "promotion.aliexpress.com": [847], "ballotpedia.org": [19481], "shmag.co": [2053], "www.haobtc.com": [7329], "thewell.cc": [2053], "go.albaweb.tk": [2053], "pixel.condenastdigital.com": [3619], "absolute.com": [469], "krkn.me": [2053], "barracuda.com": [1728], "webforms.lidl.com": [9488], "b-a-b.uk": [2053], "*.b0.upaiyun.com": [17670], "ums.adtechus.com": [679], "www5.nottingham.ac.uk": [11726], "entitlement.auth.adobe.com": [655], "www.newsregistry.com": [11515], "dwet.co": [2053], "plus.jcloud.com": [8690], "jrobh.com": [2053], "y8s.me": [2053], "t.p30games.ir": [2053], "www.jcea.es": [8689], "fws.jcloud.com": [8690], "account.norton.com": [11703], "services.quickline.com": [21243], "linak.as": [2053], "www.pdc.prd.xfinity.com": [22082], "valeforms.valeofglamorgan.gov.uk": [17825], "17track.net": [48], "www.student-affairs.buffalo.edu": [17583], "pprm.tv": [2053], "vidaysalud.com": [17970], "u.rfe.so": [2053], "pitz.desy.de": [4479], "mail.multiseek.net": [10884], "lsu.edu": [9786], "superantispyware.com": [15867], "sicy.li": [2053], "stayhard.biz": [2053], "www.boardgamearena.com": [2219], "www.itefix.net": [20508], "www.finlex.fi": [20121], "login.xilo.net": [18818], "www.torrentz-proxy.com": [16861], "rise.cr": [2053], "i.yastatic.net": [18967], "www.msb.georgetown.edu": [6668], "lagri.ma": [2053], "www.s2media.be": [14301], "norfolk.overdrive.com": [12365], "www.attictv.com": [1375], "www.brighton.com": [2385], "top.sogou.com": [21500], "iusoic.us": [2053], "images3.variety.com": [17858], "trove.com": [17038], "data.awp.is": [1327], "www.studentaffairs.stonybrook.edu": [15736], "kwilson.me": [2053], "zhiyou.smzdm.com": [15263], "blny.ca": [2053], "*.dancingastronaut.com": [4213], "my.sitetagger.co.uk": [15120], "support.on.aol.com": [361], "www.safeassign.com": [14463], "saml.peopleclick.com": [12763], "socialshows.net": [15309], "csirt.cz": [2730], "*.derpicdn.net": [4461], "union.moda": [2053], "uncf.us": [2053], "www.mcafeemobilesecurity.com": [10280], "unibet.me": [2053], "kcl.ac.uk": [9052], "callo.ws": [2053], "hotspotshield.com": [7705], "rbln.ws": [2053], "math.aalto.fi": [428], "opensc-project.org": [12165], "www.infobaselistexpress.com": [548], "direct.yandex.com": [18956], "ace-tag.advertising.com": [701], "www.geni.net": [6435], "www.piwik.org": [12950], "seal.alphassl.com": [907], "sp.f-secure.com": [5654], "trade.2.taobao.com": [16206], "m.thai.alibaba.com": [850], "s.lain.li": [2053], "developer.tizen.org": [16778], "projects.ic.nhs.uk": [11102], "www.citizensinformation.ie": [3235], "nuuvem.com": [11784], "www.erdgeist.org": [5443], "mirrors.xmission.com": [18831], "cultivated.it": [2053], "milchweb.frieslandcampina.com": [2842], "lcfx.co": [2053], "www.jdsupra.com": [8575], "signup.netflix.com": [11421], "milonic.com": [10587], "ma.mesaazcorruptionreport.com": [14129], "tme.engineering.osu.edu": [11959], "www.5joycasino.com": [20552], "gfoas.co": [2053], "astra.io": [1336], "www.lrens.ch": [20719], "cpro2.baidustatic.com": [1662], "eaplus.georgetown.edu": [6668], "www.epsilon-telecom.de": [5433], "*.zimbra.com": [19185], "www.phaser.io": [12828], "rostov.press": [21329], "aboutads.info": [462], "gohe.ro": [2053], "secretariat.nanog.org": [11688], "www.nzz.at": [20974], "palgrave.com": [12547], "udn.epicgames.com": [5423], "randstad.me": [2053], "blog.hipmunk.com": [7556], "sdnr.it": [2053], "cytel.today": [2053], "shop.skanetrafiken.se": [15143], "secure.n-able.com": [11047], "best.aliexpress.com": [847], "service.fsrar.ru": [20181], "c.3.cn": [121], "*.atlanticmetro.net": [1353], "gianp.in": [2053], "ampd.asia": [2053], "trac.hohndel.org": [3568], "nazran.beeline.ru": [1801], "www.abacus.com": [439], "w.innomotion.me": [2053], "v-c.it": [2053], "www.aussieperthtours.com.au": [1413], "yourhosting.nl": [19043], "www.netnanny.com": [11406], "www.rescue.org": [21295], "saratov.beeline.ru": [1801], "*.tampabay.com": [16191], "sandbox.buttercoin.com": [2521], "g03.s.alicdn.com": [846], "open2.baidu.com": [1661], "image.exct.net": [5590], "www.bitcoinmagazine.com": [2031], "server.adform.net": [625], "community.sabayon.org": [14450], "www.domaindiscount24.net": [19940], "s5.pimg.tw": [12890], "drudge.tw": [2053], "matricien.org": [20759], "y3.chaucanh.net": [2053], "rngtbl.com": [2053], "piwik.vates.fr": [17867], "acd.my": [2053], "*.umbc.edu": [17259], "www.out-law.com": [12351], "swalm.us": [2053], "*.smartphoneexperts.com": [15245], "pds.gd": [2053], "zukun.tf": [2053], "www.wao.gov.uk": [21972], "lichfielddc.objective.co.uk": [20979], "passport.yandex.kz": [18957], "apmhscan.com": [2053], "www.mitpressjournals.org": [9917], "grsmtn.ca": [2053], "www.tcodevelopment.com": [16243], "ausgehen.tageswoche.ch": [16162], "help.creator.zoho.com": [19202], "www.switchie.ch": [15957], "wholesale.alibaba.com": [850], "nghtcr.tk": [2053], "webzilla.com": [18396], "henri.link": [2053], "cntrc.tv": [2053], "*.tent.is": [16377], "pensionschemes.hmrc.gov.uk": [7219], "go.jfsx.net": [2053], "j365.in": [2053], "christianbook.com": [3172], "intwiki.anidb.net": [1062], "s66.cnzz.com": [3391], "s-media-cache-ak0.pinimg.com": [12906], "www.a.switchadhub.com": [15954], "hiremove.rs": [2053], "*.worldmate.com": [18751], "kurganskaya-obl.beeline.ru": [1801], "www.3dstats.com": [148], "news.drweb.com": [4879], "bobafamily.com": [2225], "changyi.meituan.com": [10405], "freo.me": [2053], "login.deepin.org": [4380], "www.fortiguard.com": [6173], "www.e-food.gr": [4949], "porn-w.org": [13152], "bk55.ru": [19548], "on.atxrail.com": [2053], "maac.hu": [2053], "coachesonly.breakingmuscle.com": [19588], "dosowisko.net": [4782], "www.dash.org": [4240], "wallacema.de": [2053], "www.10joycasino.com": [20552], "host.co.id": [7648], "pda.metro.ya.ru": [18930], "ce1.com": [3846], "mo.playsmart.fr": [2053], "digits.com": [4593], "www.parkingcrew.com": [12612], "uni-passau.de": [17616], "labs.webfoundation.org": [18399], "*.ovh.net": [12377], "coughl.in": [2053], "forum.stanford.edu": [15635], "uprrp.worldcat.org": [18748], "a.youtube-1.net": [2053], "edcr8.co": [2053], "webmail.hosting.earthlink.net": [5106], "usenetserver.com": [17720], "wncn.tv": [2053], "www.arin.net": [378], "arju.in": [2053], "socialte.am": [2053], "dot.bage.jp": [2053], "recyclenow.com": [13889], "tplr.net": [2053], "clim.at": [2053], "romab.se": [14195], "www.triumph-adler.de": [17028], "uxlab.us": [2053], "hhi.hub.am": [2053], "rd.doyle.media": [2053], "temai.taobao.com": [16206], "rad.so": [2053], "code.stripe.com": [15781], "isurveys.researchresults.com": [14033], "store.ar15.com": [377], "flosus.co": [2053], "rustika.design": [2053], "seoj.in": [2053], "kelly.io": [2053], "mobilephones.comparethemarket.com": [3575], "help.homeaway.com": [20352], "sso-prod0.cisco.com": [3221], "ordinarysoft-jp-cart.degica.com": [3396], "go.rowright.uk": [2053], "tpg.com": [16105], "orekhovo-zuevo.beeline.ru": [1801], "www.mufin.com": [10877], "www.swisscex.com": [14443], "gln.io": [2053], "go.res-ol.cz": [2053], "*.schibsted.se": [14593], "piraten-basel.ch": [21132], "www.spider.io": [15519], "www.glassdoor.co.in": [20247], "coralsoft.link": [2053], "96boards.org": [241], "ddragon.leagueoflegends.com": [9362], "az.turbobytes.net": [17113], "wildfiregames.com": [18607], "c.arthur.life": [2053], "hormi.link": [2053], "ilearning.oracle.com": [12284], "ssl.ticketportal.sk": [16692], "chicagofed.org": [3129], "io.tdc.no": [16052], "jobs.jhu.edu": [16562], "via.shavit.in": [2053], "files.pfsense.org": [12819], "paul.reny.me": [2053], "www.ruelala.com": [14259], "unhosted.org": [17449], "img.rating-widget.com": [13810], "thtc.io": [2053], "community-uat.adr.org": [19298], "firebe.ly": [2053], "www.therebellin.com": [21715], "mixxx.org": [10661], "dinahosting.pt": [4604], "www.digitalrights.center": [19921], "www.belarus.indymedia.org": [8234], "*.expohomes.com": [5740], "translate.google.*": [6965], "*.nranews.com": [20950], "secure.gaug.es": [7124], "www.nacdl.org": [11055], "lovelens.li": [9793], "affiliate.finanzcheck.de": [20119], "confex.com": [3632], "apologie.paris": [2053], "prol.in": [2053], "c.navs.me": [2053], "learning.calderdale.gov.uk": [2794], "comsigntrust.com": [3519], "www.heute-show.de": [22127], "lists.alpinelinux.org": [909], "crackedconsole.com": [3820], "gsnmagazine.com": [6997], "pottermore.com": [21182], "mminds.co": [2053], "nso.link": [2053], "www.hertz247.co.uk": [7510], "download.jitsi.org": [8731], "beacon.securestudies.com": [14739], "vestky.st": [2053], "appload.link": [2053], "dcccd.info": [2053], "fblo.co": [2053], "bart.gov": [1729], "mail082.websupport.sk": [18456], "matricula-proves.upf.edu": [17674], "buteco.me": [2053], "www.google.co.*": [6966, 6968, 6973, 6975], "lpo.uk": [2053], "s.samr.me": [2053], "sample-threes.readme.io": [13841], "clickssl.com": [3310], "psms.co": [2053], "www.rya.nc": [14291], "www.intagme.com": [20470], "et.symantec.com": [15969], "m.jmphotos.ca": [2053], "researchtoreality.cancer.gov": [2864], "edienterpriseuat.courierpost.co.nz": [3784], "www.alastairs-place.net": [818], "bt.sunward-t.jp": [2053], "rt.marinsoftware.com": [10161], "clara.io": [3269], "www.madetech.com": [10006], "asnbank.nl": [392], "connect.arkos.io": [1233], "ebanking.danskebank.dk": [4223], "pdla.co": [2053], "flashtalking.com": [6021], "www.friendpaste.com": [6334], "java-apps.org": [21006, 21007], "download.ib.nab.com.au": [11054], "www.aircrack-ng.org": [789], "media2.congstar-media.de": [3641], "www.linguee.com": [9534], "www.heg.com": [7646], "google.bitnami.com": [2062], "twinings.co.uk": [17156], "www.variety.com": [17858], "btwk.eu": [2053], "fightaging.org": [5900], "sv-se.facebook.se": [5736], "entpa.as": [2053], "www.conetrix.com": [3397], "www.parse.com": [12620], "alau.kz": [19338], "hao123.com": [20312], "me.freelabel.me": [2053], "utbm.fr": [21886], "waad.co": [2053], "*.mua.hrdepartment.com": [7231], "skier.co": [2053], "oberbayern.piratenpartei-bayern.de": [12936], "www.magicalbutter.com": [10024], "go.tjosm.com": [2053], "images.hk.as.criteo.net": [3872], "yates.georgetown.edu": [6668], "datax.baidu.com": [1661], "x.eresep.com": [2053], "www.stelladot.com": [15719], "www.copenhagenmarathon.dk": [3716, 3717], "fen.red": [2053], "exonet.nl": [20078], "img6.doubanio.com": [19954], "ohmedia.me": [2053], "on.kliiq.com": [2053], "www.globalservices.bt.com": [1593], "hardik.info": [2053], "www.openingscience.org": [12235], "iono.us": [2053], "b.rian.cc": [2053], "cdn.rawnet.com": [13816], "advowi.re": [2053], "support.uidaho.edu": [18730], "kjgoodwin.us": [2053], "strm.co": [2053], "*.eyeviewads.com": [5647], "wfbg.co.uk": [2053], "t.archireed.net": [2053], "widget.tippebannere.no": [21743], "audmag.net": [2053], "fnct.in": [2053], "bilibili.hdslb.com": [20327], "shop.flixbus.fr": [6047], "nisod.cc": [2053], "tech.plug.dj": [13044], "gdata.pt": [6410], "bs3.doubanio.com": [19954], "www.winxdvd.com": [22034], "kulturkalender.faz.net": [5666], "pray.dm": [2053], "*.universalsubtitles.org": [17513], "manage.audienceadnetwork.com": [1388], "*.tricolumbia.org": [17008], "mobil.0180.info": [16363], "on.esimsar.com": [2053], "secure.stage-gettyimages.ca": [6741], "consult.scotland.gov.uk": [21387], "shanaproject.com": [14902], "bis.gov.uk": [17243], "www.pogoda.yandex.com.ua": [18955], "sdo.onl": [2053], "images-cdn.lowyat.net": [9801], "code.getfoxyproxy.org": [6713], "www.solidlogic.com": [15369], "maps-api-ssl.google.com": [6969], "i.pbsm.us": [2053], "keymile.com": [9022], "private-c.gmocloud.com": [6460], "competitions.cr.yp.to": [3817], "www.projectwonderful.com": [13370], "getfirebug.com": [6696], "a4tt.us": [2053], "prvrja.in": [2053], "ple.com.au": [12472], "marcheswoo.tumblr.com": [17100], "www.switch.ch": [15952], "epoca.tech": [2053], "telford-consult.objective.co.uk": [20979], "stanleypubliclibrary.worldcat.org": [18748], "*.adverts.ie": [702], "cbsloc.al": [2053], "tylercipriani.com": [17181], "cis-india.org": [2671], "www.scadacs.org": [14324], "ihg.nz": [2053], "hkatx.com": [2053], "mededresearch.stanford.edu": [15635], "on.erwan.tk": [2053], "gateway.answerscloud.com": [1101], "acas4u.biz": [2053], "thevgncnr.co": [2053], "topolis.cf": [2053], "www.bitsnoop.com": [2069], "intcos.nl": [2053], "wegoh.co": [2053], "www.digitalnewsagency.com": [4577], "www.clusterhq.com": [3382], "wustlkey.wustl.edu": [18290], "syoparekisteri.fi": [15998], "dialogue.openboard.info": [11060], "www.superstrands.com": [15873], "jjthrd.it": [2053], "chbk.me": [2053], "seal.digicert.com": [4556], "finnchamber.com": [15238], "www.casinoestrella.com": [2942], "go.skire.de": [2053], "areah.es": [2053], "r.myqrad.com": [2053], "4.4xq.ca": [2053], "admin.goeshow.com": [6924], "strategicplan.illinois.edu": [17544], "pgusd.illuminateed.com": [20430], "agay.us": [2053], "aberystwythartscentre.co.uk": [19255], "sfuad.worldcat.org": [18748], "mammut.ch": [10097], "stars.gs": [2053], "m.fotki.yandex.ua": [18961], "studentmoney.uillinois.edu": [17238], "aero.sh": [2053], "mailfire.newsinc.com": [11527], "itunesu.anadolu.edu.tr": [1025], "subscription.mims.com": [9910], "app.ubertags.com": [17367], "brd.life": [2053], "malls.ru": [20743], "developer.windowsphone.com": [18646], "fiba.us": [2053], "www.fribid.se": [6327], "lizdenys.com": [9682], "jjtmn.com": [2053], "b.poulpi.fr": [2053], "*.glkb.ch": [20574], "audiover.se": [2053], "irkutsk.beeline.ru": [1801], "www.ovpn.se": [11887], "bnrd.it": [2053], "reachandrich.antevenio.com": [1103], "www.veredelungslexikon.htwk-leipzig.de": [7736], "crowdfunding.piwik.org": [12950], "mjksn.ws": [2053], "nxt-o-mat.o2.de": [2053], "wiki.ncsa.illinois.edu": [17544], "*.vstech.net": [17928], "download.yuri-ism.com": [19059], "lesbianpornfan.com": [20662], "nc.meituan.com": [10405], "www.hertzequipmentrentals.com": [7511], "remote.jpress.co.uk": [8762], "erm.yt": [2053], "tomsk.beeline.ru": [1801], "pxdy.co": [2053], "www.webjet.com.au": [18421], "*.ifriends.net": [7875], "wikis.resonant.org": [14043], "img.cache.vevo.com": [17773], "www.beaconinitiative.com": [1778], "koitz.co": [2053], "tambovskaya-obl.beeline.ru": [1801], "gcxcare.globalcloudxchange.com": [6846], "www.mit.bme.hu": [1571], "guevents.georgetown.edu": [6668], "pcquinn.us": [2053], "n-ax.gq": [2053], "conference.civica.co.uk": [19719], "www.ridecompare.com": [21308], "www.academy.kaspersky.com": [8958], "www.top.de": [16829], "noisey.com": [11654], "rpmalert.to": [2053], "lcdd.in": [2053], "vwoa.us": [2053], "bldyrtmr.nl": [2053], "www.nuomi.com": [20963], "passwordregistration.dkit.ie": [4114], "ganaar.eu": [2053], "gems.tm.com.my": [16341], "ahleni.us": [2053], "entagroup.com": [5391], "isic.vutbr.cz": [17814], "jeffala.us": [2053], "up0.net": [17666], "pkwa.re": [2053], "www.plug.dj": [13044], "loggregator.paas.uninett.no": [17477], "link.samsung.com": [14501], "online.net": [12069], "www.solar1.net": [15357], "ijobs-rs.madgexjb.com": [10007], "cdn.amazonblogs.com": [957], "fr.biotrimlabs.com": [1963], "i3n.co": [2053], "kore.us": [2053], "uxxiac.upo.es": [17683], "hochschule-trier.de": [7586], "register.com": [13965], "kildarestreet.com": [9039], "dprtmnt.co": [2053], "u.laj.lv": [2053], "lanayachocolate.com": [9274], "www.uklinux.net": [17249], "ivpn.net": [8014], "bugs.otr.im": [11880], "95k.de": [2053], "relayrides.com": [13986], "www.uninett.no": [17477], "www.trendin.com": [16994], "minix.org": [10617], "artists.jamendo.com": [8649], "www.safello.com": [14471], "fx.yandex.com.tr": [18954], "panel.bytemark.co.uk": [2547], "go.iku.lt": [2053], "kisa.at": [2053], "secure17.pipni.cz": [12460], "terrymcfly.us": [2053], "www.vindicosuite.com": [18013], "upwave.co": [2053], "paleo.so": [2053], "de-hu.dict.cc": [4536], "webkite.com": [18366], "app.realtime.email": [13858], "ymlp.com": [19029], "blogon.me": [2053], "va.pyang.me": [2053], "food.osu.edu": [11959], "vbook.me": [2053], "tweetnacl.js.org": [20555], "www.usenetjunction.com": [17718], "library.georgetown.edu": [6668], "www.sysdream.com": [16007], "astrd.co": [2053], "landdesig.net": [2053], "greatnet.de": [7036], "hit.chatdep.com": [2053], "png.nlx.org": [20918], "www.crimestoppers-uk.org": [19817], "www.bawsi.org": [1532], "campwe.st": [2053], "flagcounter.com": [20129], "eone.solutions": [2053], "webgta.ethz.ch": [5074], "s.2.taobao.com": [16206], "minprofil.info": [2053], "durham.police.uk": [4905], "accellion.com": [479], "g.nw7us.us": [2053], "*.softcreatr.de": [15340], "ethio.be": [2053], "scinewzbz.ga": [2053], "staples.com": [15640], "howto.gov": [7714], "dataservice.ipinyou.com": [7950], "assets.filemobile.com": [5915], "sm.design": [2053], "benefits.stanford.edu": [15635], "perthne.ws": [2053], "fls-cn.amazon.cn": [19363], "usainteanne.ca": [21877], "infosecisland.com": [8276], "prrl.co": [2053], "i.loveht.ml": [2053], "kpr-kom.me": [2053], "cryn.io": [2053], "i.mostafa.info": [2053], "securepcissl.com": [14752], "to.morecar.es": [2053], "fsoa.org.uk": [20180], "globe.chromeexperiments.com": [3177], "images.indianexpress.com": [8212], "on.li.cr": [2053], "infocritique.fmed.ulaval.ca": [17515], "www.placesonline.com": [12974], "t.rasp.yandex.com.tr": [18954], "www.a1afastcash.com": [255], "www.swiss-prime-site.ch": [21628], "malaysia.allianz.com": [19351], "www.syllable.org": [21632], "www.shipto.com": [14952], "www.eplayer.performgroup.com": [12442], "www.surfeasy.com": [15904], "minecraft.net": [10604], "sim.bo": [2053], "4ndeh.me": [2053], "bit.mrua.eu.org": [2053], "www.sis.nlm.nih.gov": [11241], "www.die.net": [4539], "splash-opm.com": [2053], "biz.world.waze.com": [18311], "s.evbuc.com": [5542], "piratebay.se": [21710], "origin.gigya.com": [6779], "dnaserum.com": [4131], "www.thejns.org": [8792], "hr.od.nih.gov": [11241], "seevents.co": [2053], "catalog.federalsoup.com": [5836], "c0z.me": [2053], "a.abcnews.com": [276, 277], "en.mail.qq.com": [13514], "lnv.gy": [2053], "1080p.96.lt": [2053], "www.btcbuy.info": [1594], "gaoling.meituan.com": [10405], "*.blogspot.al": [2166], "ipv6.lurkmo.re": [9837], "weborder.active24.de": [19277], "www.namecheap.com": [11208], "www.fundfill.com": [6374], "*.slhost.com": [15339], "tspy.eu": [2053], "tgen.me": [2053], "germi.es": [2053], "www.vpn-service.us": [17790], "secure.westlancs.gov.uk": [22008], "energy.opendata.ch": [21011], "suggests.rasp.yandex.by": [18953], "encrypt.today": [5336], "*.mtgsy.net": [10551], "edy.rakuten.co.jp": [13767], "awrd.it": [2053], "go.naida.com.br": [2053], "sl.bridgenc.com": [2053], "www.comcast.com": [3525], "onlinebackup.elgiganten.dk": [5264], "krakaoke.squat.net": [21549], "mobilecoe.dhs.gov": [4109], "butler.freecycle.org": [6280], "jiangxi.jd.com": [8571], "delivery.rakuten.co.jp": [13767], "www.ja.wiki.hidekisaito.com": [7533], "www.yummynames.com": [17091], "download.sugarlabs.org": [15836], "mmoculture.com": [9931], "mmrk.io": [2053], "atrat.is": [2053], "bstrc.ps": [2053], "sanger.ac.uk": [18488], "lk.bbodinat.com": [2053], "stats.videolan.org": [17981], "sdm.osu.edu": [11959], "*.fckme.org": [12469], "pt.stackoverflow.com": [15611], "es.pforce.nvidia.com": [11174], "bufferbloat.net": [2460], "chocolatfrey.ch": [3156], "damz.eu": [2053], "thehiddenbay.xyz": [21215], "rossier.usc.edu": [17564], "pmknbch.com": [2053], "alnh.co": [2053], "security.freebsd.org": [6237], "sqsp.com": [15579], "quanjiao.meituan.com": [10405], "anmlxh.se": [2053], "u.s.kqed.org": [8900], "blogs.princeton.edu": [13291], "impdig.eu": [2053], "dndy.io": [2053], "openccc.net": [12123], "bs.meituan.com": [10405], "t.physio.sk": [2053], "www.aclunc.org": [298], "tcpalmextras.com": [16048], "test.browsec.com": [19596], "subscribe.hollywoodreporter.com": [7599], "go.tony.io": [2053], "*.hackpad.com": [7289], "khudd.am": [2053], "kennedy-center.org": [20585], "estudiantes.us.es": [17706], "mypca.me": [2053], "me.onmedic.com": [2053], "linds.at": [2053], "*.ypbot.net": [18926], "openssh.com": [12167], "go.zando.co.za": [2053], "www.mathinf.uni-heidelberg.de": [17459], "download.winzip.com": [18633], "ghill.me": [2053], "www.leloop.org": [9347], "zoop.la": [2053], "vns.vet": [2053], "socialrank.com": [15306], "www.charterbusiness.com": [3081], "ncat.worldcat.org": [18748], "sixt.pw": [2053], "dniester.ru": [19933], "jobcorps.gov": [20543], "jtuck.xyz": [2053], "disu.ga": [2053], "*.openttd.org": [12180], "www.youtube.com.pe": [19016], "mindf.li": [2053], "crdx.us": [2053], "travis-ci.com": [16976], "a4who.com": [2053], "sv.gnu.org": [6474], "clickerheroes.com": [3318], "pipers.sc": [2053], "add.unizar.es": [17643], "www.mijnlandal.nl": [18790], "wandisco.com": [18189], "essweb.wustl.edu": [18290], "hexonet.net": [7520], "infosida.nih.gov": [11241], "kornlink.com": [2053], "mirea.ru": [20805], "questionpro.ideascale.com": [20423], "aswirlgirl.com": [1342], "sia.homeoffice.gov.uk": [20355], "divn.us": [2053], "www.tokyotosho.info": [16809], "quadreeinc.com": [2053], "vbi.vt.edu": [18031], "mexbt.com": [10298], "rrgvideo.com": [2053], "annikawal.sh": [2053], "burnley.gov.uk": [2501], "bhw.de": [1557], "muo.fm": [2053], "workzonesafety.org": [22050], "artpo.li": [2053], "nickyhager.info": [11582], "www.boundarydevices.com": [19578], "camhideout.net": [2053], "static.freebase.com": [6275], "thesti.ng": [2053], "webcenter.tiscali.it": [16770], "arbeidskontoret.piratpartiet.no": [12941], "sidibouras.com": [15011], "edyo.es": [2053], "drd.life": [2053], "indy.im": [8229], "inst.tc": [2053], "www.agariomods.com": [759], "metin2.co.nz": [10494], "www.joyclub.de": [8799], "l.saunier.me": [2053], "j-p.me": [2053], "assets.fitbit.com": [6002], "s.insighto.com": [2053], "a.renn.in": [2053], "classes.soe.ucsc.edu": [17591], "shsrav.com": [2053], "consult.bracknell-forest.gov.uk": [19584], "aard.mn": [2053], "secure.pressreader.com": [13261], "saladecomunicacion.bankinter.com": [1694], "mtpc.govspace.gov.au": [6994], "irca.co": [2053], "lnk.suryaloe.id": [2053], "mediasite.osu.edu": [11959], "2014.appseccalifornia.org": [1173], "youtube.com.pt": [19016], "hungary.usembassy.gov": [21879], "honghu.meituan.com": [10405], "1tv.ru": [79], "trojansalert.usc.edu": [17564], "www.zenmate.fi": [19133], "disc.to": [2053], "rosehosting.com": [14201], "cas.nebezi.cz": [11317], "youtube.com.pe": [19016], "4gamer.net": [187], "bkind.ly": [2053], "foorumi.piraattipuolue.fi": [21128], "youtube.com.ph": [19016], "dotbair.es": [2053], "i3.buimg.com": [16704], "www.schema.org": [21377], "apkmirror.com": [1134], "xnt.me": [2053], "desa.do": [2053], "switchie.ch": [15957], "nlap.in": [2053], "www.africangreyparrotcentre.co.uk": [748], "battlegrounds.leagueoflegends.com": [9362], "getchef.com": [6709], "fashion.taobao.com": [16206], "view.truste.com": [16111], "lt10.co": [2053], "www.swisscom.ch": [15951], "www.onenetworkdirect.com": [12038], "madani.co": [2053], "awkn.co": [2053], "www.courierpost.co.nz": [3784], "www.capnproto.org": [2882], "www.hyperledger.org": [20405], "ir.tn.com.ar": [2053], "lhm.bz": [2053], "f1.com": [2053], "wasm.usyd.edu.au": [21885], "coreos.com": [3733], "veu.me": [2053], "static6.twilio.com": [17152], "proxysolutions.net": [13410], "ulysses.calvin.edu": [2817], "www.lambdaops.com": [9291], "emljok.es": [2053], "apollo4.ds.leeds.ac.uk": [17604], "on.wusa9.com": [2053], "cdm.cursecdn.com": [4006], "g.tpoc.co.uk": [2053], "blog.outbrain.com": [12355], "dav3h.co.uk": [2053], "w2.futectv.com": [2053], "r.ting.com": [2053], "www.otalk.im": [12334], "wescom.wirral.gov.uk": [18672], "sosmednews.org": [2053], "www.alipay.com": [857], "o2o.1688.com": [44], "enex.is": [2053], "www.renovationexperts.com": [14003], "collaborate.plymouth.ac.uk": [13055], "ex.ac.uk": [17537], "thumbs.deviantclip.com": [3830], "nrws.io": [2053], "xml.yandex.kz": [18957], "markets.ft.com": [5941], "ww.xovain.com": [2053], "www.ushmm.org": [17736], "rpi.edu": [14006], "docs.xamarin.com": [18840], "b.atgrace.com": [2053], "www.csbaacademy.com": [2722], "topf5.com": [2053], "webmail.plymouth.gov.uk": [21153], "4shared.com": [181], "community.nightdev.com": [11588], "cao.carnegiescience.edu": [2916], "*.tonytan.io": [16819], "loc.hertz.com": [7511], "okta6.ideone.com": [8091], "qelectrotech.org": [21238], "www.utica.edu": [17746], "listarchives.libreoffice.org": [9471], "mediasolutions.zalando.com": [19094], "nate.at": [2053], "aforest.life": [2053], "name.social": [2053], "tajik.dushanbe.usembassy.gov": [21879], "beng.cf": [2053], "images.sohu.com": [15352], "guang.taobao.com": [16206], "thechroma.cloud": [2053], "checkcoverage.apple.com": [1160], "contix.io": [2053], "v.7gen.com": [2053], "www.youtube.com.ng": [19016], "register.cnchost.com": [3390], "my2.begun.ru": [1808], "apps.icard.uillinois.edu": [17238], "jpd.nyc": [2053], "m.sporx.com": [21541], "tmt-blg.com": [2053], "morelli.fit": [2053], "phpsugar.me": [2053], "on.rsts11.com": [2053], "planetrulers.com": [21144], "inwx.net": [8381], "uxp.me": [2053], "s3.etoro.com": [5077], "bodybd.co": [2053], "www.schlossbergstore.com": [14595], "staff.snelis.com": [15279], "vip.btcchina.com": [1599], "www.3dr.com": [159], "www.myricom.com": [11032], "mltarycrusr.com": [2053], "tldis.it": [2053], "getpocketbook.com": [13060], "gfsfrance.com": [6443], "wholesale.vodafone.co.nz": [18105], "tmplabs.info": [2053], "optagelse.dk": [12267], "1nspi.re": [2053], "wholesale.1688.com": [44], "deputi.es": [2053], "www.userapi.com": [21881], "hdmoviefree.ga": [2053], "www.bestattungwien.at": [18582], "btcs.yahoo.co.jp": [18944], "www6.pipni.cz": [12460], "kbc.com": [8863], "checkmarx.com": [3109], "my.videobloom.com": [17977], "half.supply": [2053], "sphhp.buffalo.edu": [17583], "www.tonyarcieri.com": [16820], "allis.li": [2053], "img.okcoin.com": [11827], "www.adc-srv.net": [19288], "perforce.freebsd.org": [6237], "civoti.it": [2053], "lnsl.tk": [2053], "arcd.hu": [2053], "www.netflix.com": [11421], "ssl-trust.com": [14412], "buysellads.com": [2526], "www.anders.com": [1036], "preprod.www.hispeed.ch": [21865], "tmall.com": [21748], "sbrief.ly": [2053], "www.godaddy.com": [6898], "go.jobwise.com": [2053], "registrar.cornell.edu": [3744], "tmg-trackr.media.mit.edu": [9914], "targeta.uv.es": [17750], "migrationsverket.tdconline.se": [16054], "oso.site": [2053], "modcab.in": [2053], "stanmed.stanford.edu": [15634], "fsu.edu": [5716], "hrto.me": [2053], "changde.jd.com": [8571], "img3.2345.com": [87], "flughund.li": [2053], "web-code.educ.cam.ac.uk": [17529], "www.redbox.com": [13915], "teachseo.co": [2053], "www.d.switchadhub.com": [15954], "*.secure.griffith.edu.au": [7081], "www.mbank.com.pl": [9888], "gla.li": [2053], "www.americas1stfreedom.org": [19383], "ie.usembassy.gov": [21879], "shop.abc.net.au": [275], "controlpanel.blogs.news.com.au": [11530], "forum.videolan.org": [17981], "registracia.azet.sk": [1520], "m.rasp.yandex.by": [18953], "elo.pe": [2053], "fybse.se": [5726], "video.oms.eu": [11836], "e-hi.us": [2053], "ews.onl": [2053], "kraf.tk": [2053], "07t.co": [2053], "*.desura.com": [4478], "blog.quantopian.com": [13570], "babeljs.io": [1633], "lensba.by": [2053], "matty.link": [2053], "spk2.us": [2053], "*.staticsfly.com": [14999], "www.anapirana.com": [19387], "api.whatpulse.org": [18529], "nrafamily.org": [20946], "koen.pro": [2053], "www.perel.eu": [17888], "go.porks.tv": [2053], "*.anbg.gov.au": [1436], "resourcecenter.odee.osu.edu": [11959], "l.mrt.io": [2053], "cdn2.spiegel.de": [15523], "s.1mg.ro": [2053], "pdr.nl": [2053], "content.eventim.com": [5548], "aus.wwte8.com": [18232], "bugs.au.freebsd.org": [6237], "cossacklabs.com": [3760], "certify.104.com.tw": [18], "icad.ae": [2053], "csja.us": [2053], "asset.7headlines.net": [219], "environment.data.gov.uk": [19855], "rt.pornhub.com": [13153], "annsummers.com": [1069], "l.trend.az": [2053], "niqi.li": [2053], "om.eamobile.com": [5253], "www.bitcoinstats.com": [2021], "gitlab.kitware.com": [20603], "www.cvedetails.com": [4019], "joinus.today": [8766], "phabricator.whonix.org": [18564], "mcallr.com": [2053], "www.octopuce.fr": [11915], "wjcf.co": [2053], "www.soekris.com": [15334], "on.kgw.com": [2053], "internalaudit.georgetown.edu": [6668], "literaryreview.co.uk": [20702], "ijyi.co": [2053], "mjp.io": [2053], "surfcanyon.com": [15903], "www.cryptodesign.org": [3938], "openafs.org": [12114], "nwleics-self.achieveservice.com": [19265], "accounts.courierpost.co.nz": [3784], "events.linuxfoundation.org": [9572], "ai.hn": [2053], "madho.it": [2053], "operaa.me": [2053], "data3.whicdn.com": [18200], "slshow.us": [2053], "go.xjon.me": [2053], "beachhuts.bournemouth.gov.uk": [2304], "www.techslinger.com": [16307], "claudiodangelis.com": [3279], "dev.netease.im": [11381], "thugs.me": [2053], "www.nerdster.org": [20890], "bonusweb.idnes.cz": [20425], "www.interspire.com": [1906], "wiki.atomicorp.com": [1364], "www.circle.org.uk": [19714], "www.hitta.se": [20345], "streaming.media.ccc.de": [2596], "learningzone.northyorks.gov.uk": [20930], "stuart.photos": [2053], "s.tfcdn.com": [16601], "static1.wareable.com": [21973], "help.webtrends.com": [18467], "support.aolonnetwork.com": [364], "www.brandisty.com": [2338], "massrev.org": [2053], "uni.hi.is": [7196], "property.birmingham.gov.uk": [19535], "lhc-commissioning.web.cern.ch": [2632], "ninver.se": [2053], "curec.lk": [2053], "link.ej.vc": [2053], "elgabri.de": [2053], "nawaat.org": [11305], "*.blogspot.com.mt": [2166], "exo.co": [2053], "dontlog.me": [2053], "l.betrad.com": [5565], "weblife.us": [2053], "tprls.me": [2053], "lft.to": [2053], "bisnow.com": [1972], "tdc.me": [2053], "go.fsci.in": [2053], "www.tatepublishing.com": [16229], "infohr.do": [2053], "secure.legolanddiscoverycenter.com": [9391], "rdhs.tv": [2053], "vgr.tdconline.se": [16054], "codecoop.org": [3426], "de-centralize.com": [4319], "smartertools.com": [15241], "rum-static.pingdom.net": [12901], "suhai.sg": [2053], "webmail.nedlinux.com": [11323], "forum.choiceofgames.com": [3158], "www.spump.com": [7511], "xine-project.org": [18876], "usp.li": [2053], "www.it.johnshopkins.edu": [8760], "library.launchkit.io": [9320], "s360.us": [2053], "hazen.xyz": [2053], "www.virustracker.net": [18050], "fellowship.berkeley.edu": [17526], "bang.taobao.com": [16206], "x.kinja-static.com": [9057], "nats.girlsoutwest.com": [6787], "payment-ca.anthem.com": [19395], "brand.jquery.org": [8597], "forage.redbull.ru": [13900], "*.cyberstreetwise.com": [4050], "svn.openezx.org": [12133], "syxin.com": [16020], "passport.yuga.ru": [22121], "envoymediagroup.com": [5414], "iptfd.com": [2053], "www.gigaone.pl": [6773], "knsy.in": [2053], "www.lds.org": [16485], "malware-tracker.com": [10092], "www.zetetic.net": [19168], "mobil.sparebank1.no": [21524], "ca.infousa.com": [8259], "axess.sahr.stanford.edu": [15635], "*.netfronts.com": [11383], "www.autotools.io": [1472], "fkof.it": [2053], "*.tvlim.com": [16140], "empw.red": [2053], "*.fetlife.com": [5876], "mitsumoto.rs": [2053], "aaps.illuminateed.com": [20430], "cryptohaze.com": [3942], "www.nationaleatingdisorders.org": [11284], "ui.adsupply.com": [583], "clixgalore.com": [19733], "blog.flameeyes.eu": [6015], "shuya.beeline.ru": [1801], "mitsmr.com": [2053], "intentio.fit": [2053], "diskozanis.com": [2053], "edienterprise.courierpost.co.nz": [3784], "i.ontraport.com": [21003], "3lx.net": [2053], "firebase.com": [5970], "blog.webtrends.com": [18467], "philanthropy.cam.ac.uk": [17529], "trt.so": [2053], "monitor.cm": [2053], "e37.fr.nf": [2053], "search.usa.gov": [17307], "tools.grassroots.org": [7022], "slvtr.it": [2053], "www.tiras.ru": [21744], "itechnician.co.uk": [8008], "www.sccvote.org": [14579], "inxpo.com": [8482], "js.nyt.com": [11186], "kelaino.bunsenlabs.org": [19612], "1oz.us": [2053], "carrabb.as": [2053], "cl1ck.website": [2053], "b.mirachem.com": [2053], "tina.bz": [2053], "begn.in": [2053], "appsto.re": [1176], "stats.aws.rubiconproject.com": [14247], "a-eng.in": [2053], "www.stalbans.gov.uk": [21563], "moodledev.uowplatform.edu.au": [17636], "vpn.zg.ch": [21629], "eyed.cc": [2053], "chix.im": [2053], "newsday.com": [11533], "*.besmith.com": [1629], "www.woothemes.com": [18717], "zlavy.odpadnes.sk": [19197], "ko.4.boardgamearena.com": [2219], "itfree.info": [2053], "hertz247.com": [7511], "www.kudelskisecurity.com": [9182], "coalicion.es": [2053], "dashboard.qubitproducts.com": [13575], "ssl-static.libsyn.com": [9482], "zach.in": [2053], "ezproxy.utm.edu": [17628], "tmo.im": [2053], "games.meetme.com": [10378], "on.ofczianka.hu": [2053], "l.epkm.fr": [2053], "xc.oj.cx": [2053], "salasen.com": [2053], "tuct.co": [2053], "www.nationstates.net": [11233], "ipromo.link": [2053], "ja.boardgamearena.com": [2219], "go.hacklife.co": [2053], "vfcl.fr": [2053], "www.ticketnet.fr": [16691], "go.cwa.net": [2053], "eo.libreoffice.org": [9471], "computing.artsci.wustl.edu": [18290], "www.home.bt.com": [1593], "blog.vpn.asia": [21955], "*.history.com": [7559], "forgifs.com": [6155], "hipag.es": [2053], "dthero.co": [2053], "api.fir.im": [20123], "brtdr.com": [2053], "jvn.jp": [8612], "www.dsply.com": [17866], "conference.gajim.org": [6523], "yuzhou.meituan.com": [10405], "paitstaging.state.gov": [17345], "boxcar.io": [2310], "neelwafurat.com": [11326], "competitionsbywyndham.com.au": [18790], "easycron.com": [19997], "prg.gamesradar.com": [6397], "www.peachosi.com": [21100], "static.copiny.com": [3721], "www.softether.org": [15341], "urlk.ml": [2053], "facebook-studio.com": [5735], "list.qq.com": [13514], "pfs-access.com": [2053], "hy.meituan.com": [10405], "dtrnsfr.us": [2053], "polycomlab.com": [2053], "static-eu1.vimention.com": [18009], "meetey.com": [10380], "wiki.openmoko.org": [12237], "aq.qq.com": [13514], "www.geany.org": [6602], "static.planeta.ru": [21143], "mss.anthem.com": [19395], "corrupcia.net": [19795], "willkimbley.me": [2053], "offensive-security.com": [11935], "b.social.ee": [2053], "r.sudotv.com": [2053], "nava.bi": [2053], "www.annsummers.com": [1069], "pharmacycorefacilities.usc.edu": [17564], "getmein.com": [9642], "shap.es": [2053], "status.hipchat.com": [7554], "www.jondos.org": [8772], "on.gfmg.us": [2053], "blackboard.jhu.edu": [16562], "bit.ishake.me": [2053], "short.daus.xyz": [2053], "fastcompany.com": [5786], "www.wwwpromoter.com": [22071], "suggests.rasp.yandex.kz": [18957], "deti.mail.ru": [10040], "www.br.de": [1581], "www.presscoders.com": [13256], "frieslandcampina.com": [2841], "g10code.com": [6411], "fllr.cf": [2053], "www.lib.vt.edu": [18031], "ausl.us": [2053], "uec-images.ubuntu.com": [17382], "www.ual.es": [17361], "www.vaes.vt.edu": [18031], "enpt.dict.cc": [4536], "oracle-base.com": [12282], "hollymeyer.co": [2053], "www.etarget.cz": [5479], "changzhi.meituan.com": [10405], "camscanner.com": [19636], "slts.osu.edu": [11959], "packd.it": [2053], "mndigital.com": [10326], "odusplus.com": [2053], "kuv4n.ga": [2053], "www.piratebayblocked.com": [21215], "t.dvp.me": [2053], "oms.symantec.com": [15969], "*.hackint.org": [20304], "wiki.mozfr.org": [20835], "digi.hu": [4553], "contact.voyagegroup.com": [18154], "brdgm.xyz": [2053], "b9.yahoo.co.jp": [18944], "pvsd.us": [2053], "police.wustl.edu": [18290], "jeena.net": [8692], "giggl.io": [2053], "cdnstatic.outspark.com": [12359], "www.careers.fi": [2905], "*.pandawhale.com": [12561], "webspectator.com": [18386], "*.flaska.net": [6022], "transferapproval.dreamhost.com": [4844], "sweiss.me": [2053], "hsbc.tbs.aon.com": [19400], "vtb.com": [17806], "fyl.unizar.es": [17643], "ssxp.lc": [2053], "tv.search.ch": [14684], "ghaznitowers.state.gov": [17345], "x.dnmt.ch": [2053], "search.hhs.gov": [7192], "inschrijven.nl": [8311], "humanrights.gov.au": [1432], "f6.aztravel.xyz": [2053], "lists.exim.org": [5602], "its.shared.by": [2053], "support.rhinosupport.com": [14096], "avry.co": [2053], "stvq.co": [2053], "vsearch.ws": [2053], "producthelp.webtrends.com": [18467], "consult.southend.gov.uk": [15442], "www.theamericanscholar.org": [16508], "worldut.io": [2053], "yeah.net": [18971], "images5.bovpg.net": [2305], "go.webhuset.no": [2053], "s.eg-ls.com": [2053], "*.challengepost.com": [3046], "*.preyproject.com": [13271], "ib.lbp.me": [20644], "cdn.hfo-telecom.de": [7187], "spreadshirt.com.au": [15552], "anon.inf.tu-dresden.de": [16126], "newsroom.mastercard.com": [10216], "www.rochesterhomepage.*": [14164], "i.lashb.ac": [2053], "djir.ie": [2053], "irecruitment.oracle.com": [12284], "roh.news": [2053], "arthur.cm": [2053], "safe.txmblr.com": [17179], "hathitrust.org": [7371], "mprss.ly": [2053], "dcc.news": [2053], "stat.svzt.ru": [21623], "lyrk.co": [2053], "ev.fyi": [2053], "community.compuwareapm.com": [3608], "www.teo.lt": [16379], "descinet.bbva.es": [1766], "jjg.me": [2053], "i0.c.dk": [2556], "d-i.debian.org": [4353], "gp1.wac.edgecastcdn.net": [5180], "www.nhnnext.org": [11099], "fdirect.co": [2053], "www.superuser.com": [15611], "www.russian-malta.com": [21344], "yu.edu": [18981], "www.kontrolling.bme.hu": [1570], "www.artchristina.com": [1257], "abis-studien.se": [279], "link.agk.io": [2053], "my.gumtree.com": [20296], "awesome.leeds.ac.uk": [17604], "static.torrentday.com": [16850], "fullertonpubliclibrary.worldcat.org": [18748], "vidfru.it": [2053], "jan-m.net": [2053], "www.bagnet.org": [1658], "prodct.cf": [2053], "leicestershirecc.firmstep.com": [20125], "thepirategoogle.mrcarch.com": [16494], "spinup.unizar.es": [17643], "fsln.me": [2053], "mypango.us": [2053], "a.fresh.lu": [2053], "see.leeds.ac.uk": [17604], "n3.sinaimg.cn": [15091], "b-o.pp.ua": [2053], "www.open-groupe.nl": [21004], "webmail.argewebhosting.nl": [1220], "hoover.ms": [2053], "abuse.dreamhost.com": [4844], "wsrd.net": [2053], "www.kcc.webhostone.de": [18418], "www.kasperskyclub.ru": [8961], "gawker.com": [6593], "www.rubixlinux.org": [21337], "wal.mw": [2053], "*.websterwood.com": [18454], "www.hynek.me": [7787], "www.meltwaternews.com": [10416], "daft.onl": [2053], "img.zemanta.com": [19128], "shahed.link": [2053], "lnk.wlc.cc": [2053], "frst.cc": [2053], "hoof.little.my": [9636], "8.hf8.co": [2053], "panel.nazwa.pl": [11307], "piwik.paris-web.fr": [21072], "ico.ee": [16190], "docs.software-univention.de": [17511], "epst.uk": [2053], "social.umeahackerspace.se": [17426], "tclb.biz": [2053], "portal01.sparebank1.no": [21524], "numr.us": [2053], "tokyotosho.info": [16809], "stats.gamingonlinux.com": [6565], "ttip-stoppen.at": [16122], "js.bizographics.com": [2085], "boca.gov.tw": [2218], "business.pinterest.com": [12914], "origin.scdn.co": [15547], "i2.sndcdn.com": [15278], "backchannel.com": [19474], "mrlxkds.com": [2053], "jp.opera.com": [12252], "dgrf.be": [2053], "campina.be": [2841], "nhrul.es": [2053], "simyo.de": [15082], "rglz.it": [2053], "secure.business.bt.com": [1593], "comment.gp-digital.org": [20274], "nbct01.baidupcs.com": [1663], "vippy.co": [18021], "owj.wine": [2053], "reviora.co": [2053], "go.tkwillis.com": [2053], "m1.baidu.com": [1661], "rottnestfastferries.com.au": [14217], "img3.eadaily.com": [19986], "fonts.condenast.com": [3617], "*.ironsearch.com": [7962], "e.csndicas.com": [2053], "vpn.ac": [21954], "partner.aktiencheck.de": [808], "lloc.in": [2053], "tdf.gd": [2053], "hul.la": [2053], "coverfire.com": [3801], "www.hofer.at": [338], "fwd.environment-agency.gov.uk": [20047], "cvote.it": [2053], "studentaffairs.georgetown.edu": [6668], "airbornescience.nasa.gov": [11058], "questacon.edu.au": [13583], "sequanux.org": [14837], "accessnow.org": [485], "bthl.nl": [2053], "go.www.bible": [2053], "www.ultimatebootcd.com": [17412], "0gwc-kbhkort.kk.dk": [8883], "brml.co": [2053], "mm.shortnote.jp": [21433], "hpex.io": [2053], "sull.cr": [2053], "www.lide.cz": [9487], "symaccount.symantec.com": [15969], "find.fmm.li": [2053], "www.igb.illinois.edu": [17544], "xrbn.co": [2053], "juick.com": [20560], "l.irrayyan.com": [2053], "www.nber.org": [11266], "www.formsite.com": [20148], "l.kimchisan.com": [2053], "wiki.bnl.gov": [19564], "cltd.io": [2053], "se-sy.org": [21392], "*.ebid.net": [19979], "www.behr.com": [1811], "facultysenate.georgetown.edu": [6668], "rrul.es": [2053], "ais.channel4.com": [3062], "s1.meituan.net": [10405], "craigsmith.net": [19813], "www.uillinois.edu": [17238], "alci.mx": [2053], "internetbrands.com": [8428], "greencubes.org": [20281], "origin.ih.constantcontact.com": [3657], "afsa.gov.au": [1429], "fiets.cc": [2053], "www.cxholidays.com": [2963], "system8.rbwm.gov.uk": [21268], "mail.verticalmedia.com": [17931], "landrover.us": [2053], "barfi.news": [2053], "scot.frl": [2053], "motort.re": [2053], "www.ovscruise.com": [18790], "andtrap.it": [2053], "l.monorover.cz": [2053], "unionpaysecure.com": [17478], "beta.herefordshire.gov.uk": [7466], "mmmn.us": [2053], "gcfjobs.com": [2053], "p.lua.kr": [2053], "nineivy.co": [2053], "www.merlinux.eu": [10462], "aans.org": [965], "vnr.link": [2053], "www.downforeveryone.com": [4820], "doteasy.com": [4796], "bancodev.org": [2053], "tash.to": [2053], "usarmy.*.llnwd.net": [17306], "felixbrt.hol.es": [2053], "lesershop24.de": [20663], "emma.fyi": [2053], "i10.3conline.com": [157], "ads.exoclick.com": [5608], "studyinsweden.se": [21595], "pride.sh": [2053], "wildwestdomains.com": [18599], "www.f-droid.org": [5653], "jagifts.us": [2053], "www.lovehoney.co.uk": [9789], "lnkd.in": [9688], "cs.umd.edu": [17549], "ares.epic.hpi.uni-potsdam.de": [17456], "www.usaspending.gov": [17312], "abc7.la": [2053], "i.mdsmt.be": [2053], "*.planet3dnow.de": [12980], "*.unmultimedia.org": [17274], "clk.msmart.me": [2053], "flo.gg": [2053], "*.carpromods.com": [2888], "nikon-lenswear.com": [11597], "deal.chpskt.com": [2053], "nhdisplay.com": [2053], "hdi.to": [2053], "plaza.jp.rakuten-static.com": [21251], "www.chocolate-doom.org": [3154], "pxu.co": [2053], "imgne.co": [2053], "esa.mx": [2053], "marketingoops.com": [10178], "adulttoys4u.com.au": [686], "go.servseek.com": [2053], "bigbrotherwatch.org.uk": [1910], "stat.ameba.jp": [963], "gd2.alicdn.com": [846], "yaounde.usembassy.gov": [21879], "www.zhihu.com": [19173], "on.hellophc.co": [2053], "sptag1.com": [15574], "cdnmaster.com": [19664], "cislblog.stanford.edu": [15635], "www.exeterfriendly.co.uk": [5599], "camb.ro": [2053], "cassinoestrela.com": [2947], "engine.streamate.doublepimp.com": [4812], "startlogic.com": [15662], "partake.club": [2053], "expd.me": [2053], "concordia.tech": [2053], "www.init7.net": [8293], "cat.yandex.by": [18953], "firedept.link": [2053], "*.stlinux.com": [14427], "risas.co": [2053], "l.ward.guru": [2053], "www.geldermalsen.nl": [11324], "france.debian.net": [4351], "bloque.info": [2053], "s1.plays.tv": [13030], "larsro.se": [2053], "plati.ru": [13005], "on.jahkno.com": [2053], "wlfbr.me": [2053], "python-pillow.org": [12888], "*.baremetal.com": [1714], "areyou.localsearch.ch": [9703], "b.oor.li": [2053], "www.biderundtanner.ch": [19529], "fb.apnadesi.net": [2053], "hahcmn.com": [2053], "www-act.ucsd.edu": [17216], "sell.2.taobao.com": [16206], "schedule.georgetown.edu": [6668], "taizhou.meituan.com": [10405], "ghsj.me": [2053], "klin.beeline.ru": [1801], "www.japantimes.co.jp": [16461], "link.vice.com": [17959], "expandcart.info": [2053], "srcs.link": [2053], "l.itswar.be": [2053], "publicaccess.westoxon.gov.uk": [18517], "wargamevault.com": [12029], "ui.ad.yieldmanager.com": [14114], "linehea.lt": [2053], "x.solotwink.com": [2053], "trte.ch": [2053], "kra.mr": [2053], "stavropolskiy-kr.beeline.ru": [1801], "t.ams.mx": [2053], "delawaretoday.com": [4401], "mirantis.com": [10632], "qr.piconda.com": [2053], "blog.join.me": [9710], "dotz.vc": [2053], "highlighter.me": [2053], "dokuwiki.org": [4728], "bcfunky.com": [2053], "leve.ca": [2053], "zourl.de": [2053], "suprizkizlar.com": [15896], "www.gayromeo.com": [12983], "bul.tn": [2053], "www.foreignpolicy.com": [6142], "louissh.xyz": [2053], "secure.freshbsd.org": [6319], "vpn.carnegiescience.edu": [2916], "webmail.ual.es": [17361], "point.gmo.jp": [6462], "st.backstage.here.com": [7465], "mikhaylovsk.beeline.ru": [1801], "cdn.ycombinator.com": [7273], "zenmate.co.uk": [19133], "secure.cnchost.com": [3390], "www.goo.im": [6953], "firebrand.to": [2053], "ipv4.tunnelbroker.com": [17109], "seoul.usembassy.gov": [21879], "*.owkb.ch": [20574], "connect.mit.edu": [9916], "cdmn.cl": [2053], "forum.zwame.pt": [19243], "i.kumapon.jp": [9187], "sebastian-siebert.de": [14698], "*.hidemyass.com": [7536], "en.calameo.com": [2790], "www.admissions.com": [649], "*.picsity.com": [12879], "s.cagn.net": [2053], "syd.tax": [2053], "www-int.dexmedia.com": [4515], "static.affiliate.rakuten.co.jp": [13768], "subsignal.org": [15820], "takarakuji.rakuten.co.jp": [13768], "life.alipay.com": [857], "blog.codeship.com": [3440], "lakome.com": [9288], "www.lewisham.gov.uk": [20671], "www.giblod.no": [6754], "humansubjects.stanford.edu": [15635], "neo.run": [2053], "sawaleef.me": [2053], "x.apwn.de": [2053], "ahcg.co": [2053], "www.openrunet.org": [21021], "www.profibeer.ru": [21207], "palmetto.com": [12551], "secure.ca.ikea.com": [8108], "files.scene.org": [8417], "lc.meituan.com": [10405], "fom.bnl.gov": [19564], "cdn.topwar.ru": [21759], "andreafabrizi.it": [1039], "www.vine.co": [18014], "www.ugst.umd.edu": [17549], "bfnd.co.uk": [2053], "staysafeonline.org": [15695], "yit.co": [2053], "enfermeriahuesca.unizar.es": [17643], "ously.me": [2053], "aircmp.us": [2053], "acunio.me": [2053], "www.pentestgeek.com": [12754], "www.surfermag.com": [15905], "thezaplab.com": [19105], "tso.co.uk": [16118], "me-cdn.effectivemeasure.net": [5208], "gmk.io": [2053], "momentedergeschichte.zdf.de": [22127], "mkkh.at": [2053], "www.exsila.ch": [20081], "birds-are-nice.me": [1966], "catalog.library.georgetown.edu": [6668], "salsacommons.org": [14492], "*.dt00.net": [9906], "fsp.gs": [2053], "static.adsafeprotected.com": [577], "dimebag.peteraba.com": [12803], "cas.baidu.com": [1661], "www.juniper.net": [8834], "analytics.tylercipriani.com": [17181], "*.wwte7.com": [18232], "lo-co.us": [2053], "ogwatches.co": [2053], "jway.info": [2053], "sjj.link": [2053], "chud.gr": [2053], "www.clipth.net": [17876], "veryde.li": [2053], "parisschoolofeconomics.eu": [12608], "naresponsa.catracalivre.com.br": [2967], "www.commission-junction.com": [3546], "id.google.com.*": [6965], "www.360totalsecurity.com": [133], "batmanarkhamorigins.com": [1739], "credit-cardapply.asda.com": [387], "cocate.ch": [2053], "tinkersoup.de": [16746], "london2012.com": [9735], "hntd.ch": [2053], "b3.hitravel.xyz": [2053], "wwwapps.ups.com": [17285], "www.psiphon.ca": [21221], "prodotti.migros.ch": [10566], "l.lwb.me": [2053], "id.boardgamearena.com": [2219], "www.anchor.net.au": [19388], "pbiz.me": [2053], "online.akbars.ru": [19335], "jodym.me": [2053], "lj.meituan.com": [10405], "feedburner.google.com": [6962], "jmblx.tv": [2053], "blendle.com": [2121], "helphandl.es": [2053], "gartner.cc": [2053], "doresearch.stanford.edu": [15635], "*.zeit.de": [19126], "scg.ulaval.ca": [17515], "affirms.net": [2053], "*.admized.com": [651], "une.pm": [2053], "www.blogtalkradio.com": [2156], "gabclement.com": [2053], "greensmoke.co.uk": [7055], "*.myinmon.com": [10998], "kaluzhskaya-obl.beeline.ru": [1801], "cpbonlinebanking.com": [3492], "syedkaz.im": [2053], "gavick.com": [20206], "*.glerups.dk": [6830], "www.freeprivacypolicy.com": [6838], "static.shropshire.gov.uk": [21440], "rpf.link": [2053], "avicoder.me": [19464], "shir.tc": [2053], "myjd.crm.jd.com": [8570], "promotionbuilder.livingsocial.com": [9679], "www.hyperoptic.com": [7793], "senderscore.org": [14825], "fegta.xyz": [2053], "brdbt.com": [2053], "5stardealer.co": [2053], "tonytan.cn": [16819], "www.easypdfonline.com": [5129], "www.arretsurimages.net": [19421], "f.hollr.in": [2053], "go.belahze.com": [2053], "bag.gs": [2053], "nayaklab.stanford.edu": [15636], "ehospice.com": [5218], "www.premiumlinkgenerator.com": [21193], "fnih.com": [2053], "network.cern.ch": [2632], "www.brunel.ac.uk": [19599], "revisium.com": [14080], "jke.im": [2053], "www.bnc4free.com": [2217], "www.channeladvisor.com": [3058], "securitymetrics.com": [14766], "i.n8thnl8ng.me": [2053], "apps.clicks.lv": [3321], "hktr.hkma.gov.hk": [7206], "reviewr.ml": [2053], "kibble.centrify.com": [19673], "cine.search.ch": [14684], "voordelig.st": [2053], "www.lmms.io": [20706], "cimb.com": [2663], "kazan-tatarstan.beeline.ru": [1801], "chongzhi.jd.com": [8571], "purl.stanford.edu": [15635], "*.dante.net": [4079], "hryb.co": [2053], "www.recordedfuture.com": [13885], "oz-affiliate.com": [12399], "noisebridge.net": [11652], "gimpfoo.de": [6451], "yelp.ca": [18979], "yelp.cl": [18979], "www.mobile.de": [20811], "homebuzz.co.uk": [7620], "yelp.ch": [18979], "j.iphoting.com": [2053], "cscssl.jd.com": [8571], "apps2.staffordshire.gov.uk": [15622], "loanscience.com": [9693], "advertising.amazon.co.uk": [19365], "i.ber.im": [2053], "help.venmo.com": [17899], "p1.meituan.net": [10405], "correo.terra.com.mx": [16387], "www.businessdirect.bt.com": [1593], "us-u.openx.net": [12191], "p2.zdassets.com": [19121], "fablabtruck.nl": [5728], "mp3skull.wtf": [9944], "gng-gr.com": [2053], "ads.ibibo.com": [8045], "askyvi.tips": [2053], "pitiq.tv": [2053], "consult.cherwell.gov.uk": [3121], "plenti.com": [13034], "piper.sbb.ch": [15946], "on.bxrink.com": [2053], "www.cipeg.leeds.ac.uk": [17604], "ww.bowenpress.com": [19579], "logs.inf2011.dosowisko.net": [4782], "ali.saglam.in": [2053], "cyb7.click": [2053], "helpdocsonline.com": [7447], "crsn.co": [2053], "zeus.jesus.cam.ac.uk": [2821], "www.globalconnections.hsbc.com": [7233], "news.immobilienscout24.de": [8153], "www.opencontainers.org": [12201], "etarget.sk": [5478], "*.apollohq.com": [1166], "oregontomb.com": [2053], "resources.oncourse.iu.edu": [8214], "webmail.bo.infn.it": [7913], "www.bunsenlabs.org": [19612], "www.europol.europa.eu": [5526], "mninjas.com": [2053], "raynersoftware.com": [13819], "itservices.bt.com": [1593], "www.exante.eu": [5092], "pornworms.com": [13156], "www.edlund.dk": [5189], "xiscosoft.com": [18879], "hge.me": [2053], "viciousbt.ch": [2053], "future.moodle.com": [10760], "asktom.oracle.com": [12284], "rkhd.in": [21315], "mmbiz.qlogo.cn": [13534], "selection.alibaba.com": [850], "*.ceonex.com": [3022], "servicenow.com": [14866], "strngr.in": [2053], "www.init.sh": [20459], "andbur.uk": [2053], "www2.blocket.se": [2147], "*.staticsitegenerators.net": [15683], "cyha.es": [2053], "beluga.link": [2053], "cloudsso2.cisco.com": [3221], "rwjf.ws": [2053], "yebprod.alipay.com": [857], "twilio.com": [17152], "www.muttscomics.com": [10919], "forums.oculusvr.com": [11921], "ih0.redbubble.net": [13895], "hrc.io": [2053], "img.f2.constantcontact.com": [3657], "tcrypto.ga": [2053], "subo.fr": [2053], "esq.tv": [2053], "davidgold.co.uk": [4304], "gobby.0x539.de": [7], "sueddeutsche.de": [15831], "ngvpn19.nvidia.com": [11174], "selfserve.outbrain.com": [12355], "ncsdo.me": [2053], "*.potager.org": [13211], "caffo.link": [2053], "assets.kcc.digital": [8866], "dshop.se": [4882], "www.unindented.org": [17476], "www.coinsquare.io": [3473], "www.gran-turismo.com": [7016], "dizaineriai.lt": [4675], "www.idealconceal.com": [20422], "666note.co": [2053], "ldgr.ch": [2053], "oml.me": [2053], "nedcon.co": [2053], "themoscowtimes.com": [21706], "test1.gatewaytohomechoice.org.uk": [20205], "bbog.me": [2053], "*.kde-help.org": [21007], "*.dot.swiss": [19950], "appcanary.com": [1142], "*.banu.com": [1704], "rootless.org": [21327], "*.ferris.edu": [5872], "dl.rakuten.co.jp": [13767], "stat.yandex.ua": [18961], "leadformix.com": [9349], "aplicar.internetessentials.com": [20477], "medicalert.org": [10353], "brmo.co": [2053], "ci.testling.com": [21683], "roia.biz": [14182], "www1.videolan.org": [17981], "n.sinaimg.cn": [15091], "awilk.co": [2053], "mobile.unionpay.com": [17478], "edu.acer.ac": [2053], "bkst.co": [2053], "bkst.ch": [2053], "zenmate.ro": [19133], "100fans.de": [13], "mktg.im": [2053], "vpn-service.us": [17790], "vragen.upc.nl": [17280], "partner.wamba.com": [18264], "dobrochan.org": [4700], "api.tv4play.se": [16137], "www.ewellnessmag.com": [5091], "*.netgear.com": [11425], "*.greatteachersgreatschools.org": [15627], "www.hkyantoyan.com": [7217], "dhinews.me": [2053], "docs.oseems.com": [12323], "higuide.us": [2053], "www.socialfixer.com": [15312], "wholesalelabels.com": [18563], "magali.co": [2053], "yuga.ru": [22121], "www.steamstat.us": [21573], "alnso.me": [2053], "www.thegearhunter.co.uk": [16547], "www.eprivacy.eu": [20049], "just-eat.es": [20565], "annonce.cz": [1072], "bose.co.uk": [2282], "www.trashbox.ru": [21784], "developer.constantcontact.com": [3657], "fikra.gd": [2053], "*.forex.com": [6151], "openmpt.org": [12148], "tlab.me": [2053], "www.smartlingsource.com": [15243], "nederbyshire-ss.achieveservice.com": [19265], "markmail.biz": [10168], "specialforces.com": [15489], "sbarg.me": [2053], "mymoney.jd.com": [8571], "driverseddirect.com": [4861], "answers.themler.com": [16610], "www.tls-o-matic.com": [16079], "chirp.ly": [2053], "*.tzoo-img.com": [16975], "alltel.web.mcore.com": [10805], "id.arduino.cc": [1214], "www.deakinandfrancis.co.uk": [19880], "*.lanistaads.com": [9303], "rt.powerdns.com": [13216], "automattic.com": [1465], "marathonbet.com": [10143], "cmsen.rbth.com": [21267], "west-norfolk-consult.objective.co.uk": [20979], "com.municat.to": [2053], "dne.oracle.com": [12284], "sso.americanexpress.com": [972], "*.louderthanwar.com": [9781], "huadian.meituan.com": [10405], "evid.in": [2053], "beardsr.us": [2053], "aptq.co": [2053], "www.solarmovie.is": [15360], "love.ale.fot.br": [2053], "vape.ac": [2053], "webmail.1and1.com": [61], "support.laprox.com": [20637], "citizenfourfilm.com": [3233], "cdca.mp": [2053], "*.photosugar.com": [12855], "rmp.kondor.co.uk": [9126], "help.provost.usc.edu": [17564], "beacon.krxd.net": [9167], "www.verisign.es": [17915], "convt.co": [2053], "*.pgeverydaysolutions.com": [13349], "go.techbuff.in": [2053], "www.grupfoni.com": [7112], "s22.cnzz.com": [3391], "svn.automattic.com": [1465], "share.law.yale.edu": [18946], "azingsport.se": [1521], "doesnotwork.eu": [4720], "wiki.zoho.com": [19202], "bpckt.io": [2053], "travelinsurance.asda.com": [387], "www.srlabs.de": [14764], "aste.in": [2053], "*.sidearmsports.com": [15008], "www.bluejeanscable.com": [2193], "help.grindr.com": [20283], "d.lerv.me": [2053], "www.tankafetast.com": [16201], "mouseblocker.com": [10811], "thepirateshore.eu": [21215], "rubyforge.org": [14253], "tlnt.at": [2053], "codebasehq.com": [3420], "url.tamilcc.com": [2053], "*.emailvision.com": [5296], "publicfiling.infousa.com": [8259], "e1.boxcdn.net": [2306], "ahoy.re": [21709], "panovski.me": [12573], "nab.co": [2053], "www.youtube.co.ma": [19016], "www.pao-pao.net": [12581], "www.woolworths.com.au": [18723], "shanghang.meituan.com": [10405], "technology.uaa.alaska.edu": [17519], "u.kyezr.com": [2053], "jscss.cp.ctscdn.com": [16106], "finalsite.com": [5935], "rivals.com": [21313], "s.oopad.com": [2053], "jct32.co": [2053], "e-y.es": [2053], "m.exct.ly": [2053], "gcirc.us": [2053], "www.technologycareers.g4s.com": [20194], "wondershare.com": [22044], "community.constantcontact.com": [3657], "weightlossplans.net": [12373], "7gege.jd.com": [8571], "security.nl": [14767], "4ms.me": [2053], "me.com": [9901], "dfn.de": [4495], "paymt.ly": [2053], "picviews.co": [2053], "streemz.be": [2053], "www.mcssl.com": [10293], "a1bs.co": [2053], "www.lespaceclient.fr": [9224], "pocket.dict.cc": [4536], "jabber.no": [8622], "homebid.org.uk": [20353], "companic.nl": [19763], "corpimages.de": [3747], "uscham.com": [2053], "llb.re": [2053], "c.microsoft.com": [10543], "courses.hss.caltech.edu": [2814], "www.muv.uio.no": [17615], "data.ero-advertising.com": [5451], "socialblade.com": [15319], "ypassociation.org": [18974], "lists.baruwa.com": [19490], "admissions.osu.edu": [11959], "www.telepigeon.com": [16350], "iss.leeds.ac.uk": [17604], "adoyacademy.se": [662], "sheffdio.org": [2053], "support.reporo.com": [14015], "www.cdon.se": [2620], "gnar.in": [2053], "canadajobs.g4s.com": [20194], "pirateproxy.tf": [21711], "ja.pcisecuritystandards.org": [12428], "www.rbth.ru": [14280], "allafrica.com": [19347], "hybrid-analysis.com": [7786], "www.someserver.de": [15378], "customers.peoplefluent.com": [12760], "hifxonline.co.uk": [7527], "*.adjuggler.com": [567], "pogoda.unian.net": [21851], "storage.myfreecopyright.com": [10951], "www.plan-summaries.anthem.com": [19395], "houdask.tmall.com": [21748], "static1.blocktrail.com": [2140], "debtdeeply.org": [2053], "kurgan.rt.ru": [13703], "hmlab.ch": [2053], "www.saechsdsb.de": [4457], "americawith.in": [2053], "giz.pw": [2053], "ettus.com": [5501], "emdl.engineering.osu.edu": [11959], "bezosexpeditions.com": [1887], "arridge.co.uk": [2053], "govexec.com": [1352], "jkrums.it": [2053], "www.pnasfirstlook.org": [12476], "qy.meituan.com": [10405], "lendlea.se": [2053], "api.creativecommons.org": [3848], "tracker-software.com": [16905], "joe.cr": [2053], "ningjin.meituan.com": [10405], "cltv.at": [2053], "st3.gismeteo.ru": [6789], "southampton.firmstep.com": [20125], "amr-stage.oracle.com": [12284], "www.cryptolux.org": [3930], "tamiu.worldcat.org": [18748], "professional.player.qbrick.com": [13529], "secure.thepensionsregulator.gov.uk": [21708], "eip.udngroup.com": [17224], "jacksonsun.com": [8633], "www.bertrams.com": [1873], "gdshp.ch": [2053], "*.winner.com": [18657], "cleeng.it": [2053], "politicasocial.unizar.es": [17643], "getinvolved.croydon.gov.uk": [19824], "hbl.lt": [2053], "www.1688.com": [44], "psssd.com": [2053], "secure.marvel.com": [10202], "optms.in": [2053], "verbraucher-sicher-online.de": [17908], "www.givskudzoo.dk": [6814], "sites.coloradocollege.edu": [3506], "vtecdirect.com": [17809], "*.algolia.com": [844], "forum.fortinet.com": [6174], "www.optum.com": [21026], "jkjv.in": [2053], "www.wosign.cn": [18692], "wayland.freedesktop.org": [6243], "www.equityzen.com": [5441], "www.bitinstant.com": [1983], "ksat.tv": [2053], "data.phishtank.com": [12841], "content.yieldmanager.com": [14114], "secure.stage-gettyimages.ae": [6741], "book.tf": [2053], "wa-m.co": [2053], "conflict.nsfwcorp.com": [11747], "khms3.google.com": [6969], "haritalar.yandex.com.tr": [18954], "couponimages.redplum.com": [13897], "accesspressthemes.com": [486], "www.yourpensionservice.org.uk": [22114], "mediasite.it.ohio-state.edu": [11960], "get.teamviewer.com": [16259], "thewest.gawker.com": [6593], "*.riverisland.fr": [14139], "dvesrt.tech": [2053], "payments.amazon.com": [952], "places.studio": [2053], "www.segpaycs.com": [14800], "ts.oebb.at": [20984], "russian.101domain.com": [15], "poma.jp": [2053], "by.wss.com.ve": [2053], "usodep.blogs.govdelivery.com": [20271], "blacklotus.net": [2099], "tax.thomsonreuters.com": [16650], "gsl-co2.com": [6507], "trits.ch": [2053], "supportkb.riverbed.com": [14140], "hermite.uvt.nl": [16716], "go.parameta.co": [2053], "fasrc.us": [2053], "feriecamp.kk.dk": [8883], "forums.iis.net": [7888], "www.f4map.com": [20087], "apps.usaspending.gov": [17312], "cdn.betacie.com": [1867], "dtmrw.us": [2053], "businessclick.com": [19615], "go1z.com": [2053], "origin-www.progress.com": [13360], "go.mm1.ca": [2053], "www.xplr.com": [18889], "checkinto.ph": [2053], "resources.bazaarvoice.com": [1759], "www.free-tv-video-online.me": [6236], "www.nic.ru": [11573], "solutions.oracle.com": [12284], "go.takashi.be": [2053], "french.haiti.usembassy.gov": [21879], "xtremegunsandammo.com": [22089], "teaching.brunel.ac.uk": [19599], "www.archiveofourown.org": [1206], "sd.mallin.com": [2053], "www.tripadvisor.co.uk": [21794], "blog.gmocloud.com": [6460], "personforsikring.sparebank1.no": [21524], "stats.creativecommons.org": [3848], "nonstop.tms.pl": [21750], "static.yubico.com": [19052], "vodafone.ie": [18108], "ports.yougetsignal.com": [22110], "bit.edb.co.il": [2053], "tlm.is": [2053], "izug.zg.ch": [21629], "karensmindekulturhus.kk.dk": [8883], "lifelu.me": [2053], "i.sankakucomplex.com": [21368], "disrpt.me": [2053], "service.piratenpartei.de": [12938], "txrt.co": [2053], "scripts.its.thm.de": [16066], "www.dogwheelchairscenter.com": [4722], "www.allcrypt.com": [869], "melis.today": [2053], "link.solvo.nl": [2053], "shop.stripe.com": [15781], "jtt.co": [2053], "bluegur.us": [2053], "s.t1202.info": [2053], "dteddie.com": [2053], "bestchange.org": [1856], "123contactform.com": [31], "www1.vocativ.com": [18104], "pogoda.yandex.kz": [18957], "axt.me": [2053], "www.torrentdr.com": [21709], "app.dingtalk.com": [19923], "thestanfordchallenge.stanford.edu": [15634], "supermileage.engineering.osu.edu": [11959], "b1.bigmrc.com": [2053], "sama32.squat.net": [21549], "sxnarod.com": [14883], "*.cupid.com": [3991], "matildajaneplatinum.com": [10238], "cfor.cc": [2053], "secure.madametussauds.com": [10002], "fr.zenmate.be": [19133], "kunming.1688.com": [44], "foodzy.me": [2053], "goats.at": [2053], "mw2.google.com": [6969], "usa.anon-ib.ru": [1079], "sccassessor.org": [14578], "ru.content.eventim.com": [5548], "www2.swale.gov.uk": [21625], "tloa.eu": [2053], "wchbl.co": [2053], "www.privacyfoundation.ch": [21201], "www.barnsley.gov.uk": [19488], "snf.is": [2053], "en.discussions.tomtom.com": [16812], "motl.am": [2053], "tlrk.it": [2053], "client.redplum.com": [13897], "da-is.us": [2053], "trndy.co": [2053], "wiki.cse.buffalo.edu": [17583], "cabine.li": [2053], "bouq.it": [2053], "btbrepresent.me": [2053], "www.ukjobs.g4s.com": [20194], "www.scaron.info": [14329], "wolverineaccess.umich.edu": [17552], "www.xpra.org": [18890], "mse.osu.edu": [11959], "csdivul.ga": [2053], "login1.capitalone.com": [2878], "repserv.us": [2053], "time.yandex.kz": [18957], "www.consumer.ftc.gov": [5837], "jobs.eoportal.org": [5417], "scndw.st": [2053], "s20.cnzz.com": [3391], "webm.red": [21992], "xengo.in": [2053], "desfm.com": [2053], "achvrsgrp.us": [2053], "dhavalkapil.com": [4520], "todaysdigitalsolutions.websitealive.com": [18445], "www.svnlab.com": [14439], "pbev.in": [2053], "altii.de": [930], "atao.uk": [2053], "tr1.kaspersky.com": [8958], "ookb.ee": [2053], "pur.cm": [2053], "abine.com": [458], "i.amap.com": [19360], "oboom.com": [20980], "media.kbc.be": [2053], "pnc.com": [12477], "bolsaviviendas.imp.ulpgc.es": [17411], "ceac.state.gov": [17345], "www.myrusakov.ru": [20863], "donate.garyjohnson2012.com": [6581], "xitracs.utm.edu": [17628], "oliw.tv": [2053], "mobilepay.dk": [10684], "orawww.uibk.ac.at": [21838], "sweitzman.com": [2053], "counterpartychain.io": [3775], "f3mimages.com": [5657], "rum-collector.pingdom.net": [12901], "partners.yandex.com": [18956], "sw.vutbr.cz": [17814], "data.aggregateknowledge.com": [764], "business.comcast.com": [3525], "backstage.pragmaticstudio.com": [13240], "kitepackaging.co.uk": [9074], "unfpa.org": [17266], "herit.ag": [2053], "mov24hr.com": [18972], "www.securities.com": [14761], "uts.nlm.nih.gov": [11241], "www.scoreassured.com": [21386], "auribe.mx": [2053], "g2links.com": [20193], "hop2.it": [2053], "*.iv.lt": [8545], "vur.li": [2053], "nwsp.me": [2053], "img.sedoparking.com": [14789], "*.tms.hrdepartment.com": [7231], "osce.usmission.gov": [17341], "bho.pl": [2204], "press.krvl.co": [2053], "zopim.com": [19227], "www.securestudies.com": [14739], "eprihlaska.vutbr.cz": [17814], "*.uni-weimar.de": [1744], "qwriters.co": [2053], "cch.law.stanford.edu": [15635], "nsna.me": [2053], "tools.ietf.org": [7868], "rngr.ir": [2053], "31tv.ru": [123], "telefonanschluss.de": [7187], "trvlrt.ch": [2053], "shr.tc": [2053], "www.secretmaryo.org": [14711], "static.awempire.com": [687], "fr.zenmate.ca": [19133], "shad.contest.yandex.com": [18956], "matthewsmarking.com": [10248], "yaroslavl.rt.ru": [13703], "vidmail.net": [2053], "m.hitravel.xyz": [2053], "velox-project.eu": [17892], "iacs.seas.harvard.edu": [7351], "cmpro.link": [2053], "mh17.correctiv.org": [3753], "patientslikeme.com": [12666], "www.alecomm.com": [827], "b.coopey.me": [2053], "pengyangguan.jd.com": [8571], "static.jiasule.com": [8716], "northerntool.ugc.bazaarvoice.com": [11699], "yaprobki.ru": [18965], "2.kobi5.com": [2053], "activetea.ch": [2053], "scaros.so": [2053], "jianghu.tmall.com": [16206], "tinyurl.com": [16756], "blog.gumtree.com": [20296], "thdmet.co": [2053], "dsja.me": [2053], "site.ya.ru": [18930], "ekit.org.uk": [2053], "s.wp8.com.br": [2053], "forum.fruct.org": [5708], "www.olympic.org": [20988], "www.sg-logiciels.fr": [21420], "houten.nl": [11324], "aioe.org": [783], "appsplus1.woolworths.com.au": [18723], "earnd.it": [2053], "olikka.it": [2053], "my.oschina.net": [12321], "serve.popads.net": [13129], "yakunin.fbk.info": [5818], "chupakabra.gq": [2053], "buff.ly": [2053], "www.solydxk.com": [21505], "*.trackalyzer.com": [16904], "nagios.stanford.edu": [15635], "www.smokefree.gov": [21484], "static1.twilio.com": [17152], "sovereignman.com": [15447], "www.onebit.cz": [11841], "www.intand.com": [16195], "srnd.fr": [2053], "gran.tl": [2053], "kindle.amazon.co.jp": [19364], "*.thegcloud.com": [16545], "beil.dk": [2053], "l.kygeek.com": [2053], "battleforthenet.com": [1743], "shubbard.co": [2053], "drupalthemes.stanford.edu": [15635], "mayor.cambridge.gov.uk": [19630], "wusmdar1.wustl.edu": [18290], "aer.gov.au": [1427], "dcm.me": [2053], "gpu.yt": [2053], "nl.alpinelinux.org": [909], "jonmul.com": [2053], "vr.org": [18159], "bougn.at": [2053], "screenshot.ru": [14651], "zohm.in": [2053], "service.mail.com": [10039], "on.khmerhdr.com": [2053], "airdownload.adobe.com": [654], "www.bedfordhospital.nhs.uk": [11102], "www.yunaq.com": [22122], "blog.nic.cz": [11572], "edfil.es": [5178], "th.itradecimb.com.sg": [2664], "ubuntugnome.org": [17387], "development.standards.ieee.org": [7862], "raweb.inria.fr": [8309], "sgear.link": [2053], "bmall.1688.com": [44], "onev.me": [2053], "unpakt.io": [2053], "anime-planet.com": [1065], "*.transparencytoolkit.org": [16955], "s-b.io": [2053], "vatt.fi": [17829], "rslvr.co": [2053], "url.pyload.net": [2053], "www.oschina.net": [12321], "tp-s.nflximg.net": [11421], "*.technoratimedia.com": [16301], "mediamarkt.es": [22066], "b1u3r4y.tk": [2053], "zastro.ws": [2053], "*.bookdepository.com": [16483], "*.tu-muenchen.de": [16291], "*.steganos.com": [15718], "aacf.stanford.edu": [15634], "www.huxo.co.uk": [7780], "rule.1688.com": [44], "www.batmanarkhamorigins.com": [1739], "sentientpri.me": [2053], "sacramento.cbslocal.com": [2587], "videoly.co": [17990], "webcheck.tigerair.com.au": [16710], "worldmate.com": [18751], "babergh.firmstep.com": [20125], "inseen.co": [2053], "blog.101domain.ru": [16], "sobollubov.ru": [15302], "bgbrow.co": [2053], "www.acpa.ca": [784], "verde.444.hu": [172], "warringtondirect.warrington.gov.uk": [18280], "www.secure-mobiles.com": [14726], "sdm.mit.edu": [9916], "go.citrix.com": [3237], "asb2.it": [2053], "www.broadbandconvergent.com": [2403], "bugs.busybox.net": [2520], "gongan.meituan.com": [10405], "appcu.es": [2053], "na.meituan.com": [10405], "www.omegaup.com": [11991], "forum.t411.ch": [16036], "dstny.cc": [2053], "google.org": [6964], "unbounce.com": [17436], "myaccount.northumberland.gov.uk": [20929], "x.defy.ca": [2053], "s.warp.is": [2053], "res.levexis.com": [9430], "webos.is": [2053], "billyver.de": [2053], "btwm.us": [2053], "gmx.tm": [6467], "www.feedmyinbox.com": [5854], "crsh.me": [2053], "link.wahlix.nu": [2053], "l.j-inb.net": [2053], "www.coinfloor.co.uk": [3467], "umano.me": [17424], "webassetsb.scea.com": [14327], "kucha.es": [2053], "aircu.li": [2053], "pq.agency": [2053], "gmx.tw": [6467], "wiki.skynet.ie": [16475], "weogeo.us": [2053], "tourate.ch": [2053], "online.citibank.com": [3230], "ari4.me": [2053], "bit.kissa.jp": [2053], "img4.wsimg.com": [14751], "lnk.biro.net": [2053], "oisweb.net": [2053], "mikeg.biz": [2053], "cenowarka.pl": [2999], "vcp.jd.com": [8571], "www.bestpractical.com": [1859], "coeus.buffalo.edu": [17583], "assets.nrapvf.org": [20951], "see.by": [2053], "simpel.nl": [21450], "www.proxybay.bid": [21771], "ypsine.ws": [2053], "etel.net": [2053], "verisign.com.sg": [17915], "24img.com": [95], "go.hrs.de": [2053], "l.fsinsight.org": [2053], "aldi.es": [338], "mobile.portal.equinix.com": [5438], "s.ig2ad.com": [2053], "freetown.usembassy.gov": [21879], "go.shards.top": [2053], "myit.rocks": [2053], "koo.do": [2053], "gutja.de": [2053], "www.active24.nl": [19279], "pfsense.org": [12819], "*.point.im": [13075], "business.tomtom.com": [16812], "learn.lc": [2053], "bip.panoptykon.org": [12570], "lnk.ossisnt.com": [2053], "www.lynda.com": [9847], "tmc.li": [2053], "www.fstoppers.com": [6357], "trustedcs.com": [17065], "pingability.com": [12900], "www.audioboom.com": [19452], "fnnl.co": [2053], "spirit.kn.vutbr.cz": [17814], "openitp.org": [12145], "c.mateoc.com": [2053], "arpel.photo": [2053], "spiceuk.me": [2053], "*.castel-bayart.com": [2949], "cps-static.rovicorp.com": [14221], "jfhjr.com": [2053], "tags.literotica.com": [9628], "go.f3n.me": [2053], "kbtinyurl.com": [2053], "stroud.greenparty.org.uk": [7052], "blog.ukrnames.com": [17408], "coos.to": [2053], "crowd.stanford.edu": [15635], "www.presid.infn.it": [7913], "www.news.dk": [11516], "www.bloomsky.com": [19559], "www.dns.lc.wix.com": [18684], "atst.co": [2053], "jnr.bz": [2053], "expatexplorer.hsbc.com": [7233], "twimler.com": [17154], "www.12wbt.com": [10523], "fairtrd.us": [2053], "spaceup.org": [15456], "novainfosec.com": [11634], "*.interactivedata.com": [8390], "www.elbadil.com": [5245], "kinox.pe": [20597], "deng.camp": [2053], "conetrix.com": [3397], "www.themoviedb.org": [16565], "mos.ai": [2053], "victors.us": [2053], "www.sloanconsortium.org": [15213], "support-cn.samsung.com": [14501], "www.cosmo.org": [3757], "piwik240.mybluemix.net": [10990], "jwr.link": [2053], "www.rabobank.nl": [13723], "nmcteam.com": [2053], "tasc-play-room.stanford.edu": [15635], "www.calibre-ebook.com": [2799], "i00.c.aliimg.com": [854], "fatfrog.us": [2053], "www.docker.io": [4705], "ads.contentabc.com": [3678], "apsd.illuminateed.com": [20430], "zh.fop.us.to": [2053], "www.dhammaloka.org.au": [1587], "lyft.me": [9845], "extranet.hse.gov.uk": [20389], "freedomnotfear.org": [6291], "sktch.dk": [2053], "sgi.com": [14349], "www.forum.telekom.de": [4490], "stan4d.us": [2053], "s.kaiyuan.eu": [2053], "tvsupport.net": [17139], "images10.newegg.com": [11508], "www.verizon.com": [17918], "crel.biz": [2053], "support.datamotion.com": [19859], "de-mail.1und1.de": [82], "jira.gravity4.com": [7030], "feixiang.meituan.com": [10405], "tvmax9.tv": [2053], "ewebscapes.com": [5090], "immo.search.ch": [14684], "*.starbucks.com": [15652], "urlsnip.co.uk": [2053], "ofsted.gov.uk": [20985], "clover.com": [3377], "cdsmty.eu": [2053], "aftenposten.no": [749, 750], "jndcrd.co": [2053], "www.openbittorrent.com": [12122], "*.pubnub.com": [13425], "search.ico.org.uk": [7835], "wine-apps.org": [21006, 21007], "mos.org": [10902, 10903], "actionsalvage.com": [530], "*.plista.com": [13040], "*.thumbshots.org": [16670], "images.laterooms.com": [20639], "t-h-f.co": [2053], "uic.edu": [17517], "noseworthy.co": [2053], "cmbr.me": [2053], "noaddedsugar.com": [11640], "www.keytosuccess.education.gov.uk": [20009], "www.democrator.ru": [19892], "www.uhub.org": [17403], "www.mediastore.portsmouth.gov.uk": [21175], "qlgroup.quickline.ch": [21243], "1gwc-kbhkort.kk.dk": [8883], "elearning.sydney.edu.au": [21631], "go.kiman.me": [2053], "gmo.com": [6458], "rush.gallery": [2053], "21.pe": [2053], "webmail.koumbit.net": [9148], "assessment.vt.edu": [18031], "www.thedungeons.com": [16452], "*.bmc.com": [1567], "www.conversionsbox.com": [3694], "antek.me": [2053], "24byt.es": [2053], "sexslurp.com": [14884], "www.gl.ch": [21629], "turbo.htwk-leipzig.de": [7736], "on.jerberas.it": [2053], "www.silencerforum.com": [21447], "myorig.in": [2053], "learn.pluralsight.com": [21152], "www.intrepidmuseum.org": [8447], "connecttosupport.org": [19776], "static.newsru.com": [11539], "demo.whappodo.com": [18524], "secure-ds.serving-sys-int.com": [14871], "media.mmo-champion.com": [4006], "oto.yandex.com.tr": [18954], "www.fibonacci.uvt.nl": [16716], "gdp.alicdn.com": [846], "w0ng.me": [2053], "www.espionageapp.com": [5467], "www.idg.se": [7852], "vai.cau.arq.br": [2053], "sync.go.sonobi.com": [15388], "doggyloot.us": [2053], "wikispooks.com": [18597], "fltr.tv": [2053], "wnioski.t-mobilebankowe.pl": [21643], "grny.io": [2053], "healthe.info": [2053], "yout.gq": [2053], "dev.piwik.org": [12950], "brianto.ga": [2053], "www.fxsystems.com": [5724], "hubcm.us": [2053], "www.postovoy.org": [21181], "a.flox.co.za": [2053], "pnut.me": [2053], "tracking.verisign.com.hk": [17915], "delivery.f.switchadhub.com": [15954], "saawt.co": [2053], "wegs.co": [2053], "www.gnumeric.org": [6890], "vizz.link": [2053], "r.lacroketa.net": [2053], "rss.rtbf.be": [14244], "esi2calculator.hmrc.gov.uk": [7219], "graphics.stanford.edu": [15635], "pinlnk.co": [2053], "gi.de": [6681], "packetstatic.com": [12521], "www.mims.com.vn": [9910], "abnamro.nl": [281], "news-at.zhihu.com": [19173], "news.dk": [11516], "clck.ge": [2053], "tent.is": [16377], "seal.godaddy.com": [6898], "skycreek.io": [2053], "commercialwaste.westminster.gov.uk": [18516], "a.yimg.jp": [18992], "s96.cnzz.com": [3391], "go.vetr.com": [2053], "whereis.mit.edu": [9916], "freightforward.courierpost.co.nz": [3784], "www.postovabanka.sk": [13208], "emlib.ent.sirsidynix.net.uk": [15107], "uberent.com": [17364], "revolet.com": [14081], "triumph-adler.de": [17028], "www.roadworks.org": [21318], "bookstore.wku.edu": [22039], "bitsig.ht": [2053], "*.porlaputa.com": [13151], "hkst.ca": [2053], "31439.eu": [2053], "justtomatoes.com": [8847], "bstblu.es": [2053], "fomnetworks.com": [5697], "jacquelinegold.com": [8637], "wellbid.com": [18487], "dwec.is": [2053], "s.pamfax.biz": [12556], "*.trakt.us": [21777], "3g.1688.com": [44], "secure.live.sipgate.co.uk": [15102], "love.travis-ci.org": [16976], "go.topista.com": [2053], "www.gigafreak.net": [6768], "*.firedrive.com": [5973], "www.lowpowerlab.com": [9799], "www.west-norfolk.gov.uk": [22004], "morawa-buch.at": [20830], "m-jon.es": [2053], "saransk.beeline.ru": [1801], "sct2.com": [2053], "new.interkassa.com": [8400], "www.artsandsciences.osu.edu": [11959], "lulo.info": [2053], "r.edvan.info": [2053], "www.terminatio.org": [16384], "myco.us": [2053], "docsafe.swisscom.com": [15951], "www.bib.kuleuven.be": [8969], "tambor.me": [2053], "ieg4app.wakefield.gov.uk": [21966], "allbids.auction": [2053], "u.chipshout.com": [2053], "a.fiksu.com": [5902], "ie.isidewith.com": [20414], "www.globes.co.il": [6866], "envs.co": [2053], "enthought.com": [5401], "cf9.100r.org": [12], "netbynet.enaza.ru": [5332], "anjane.sh": [2053], "www.jamieoliver.com": [8652], "nisti.co": [2053], "diewildenkerle.spiel.tivi.de": [22127], "downloads.sf.net": [15423], "l.color-on.info": [2053], "www.soic.indiana.edu": [8215], "www.usesthis.com": [17734], "*.provenue.net": [13341], "*.rezdy.com": [21304], "www.southernct.edu": [15444], "bndmr.ch": [2053], "i0.hdslb.com": [20327], "tpoint.mx": [2053], "mhd.bz": [2053], "asdapriceguarantee.co.uk": [19432], "openapi.360.cn": [130], "www.discuss.io": [4644], "hs1.in": [2053], "www.haskellonheroku.com": [7362], "cms.widsl.de": [18570], "vh1.ro.vutbr.cz": [17814], "angulo.me": [2053], "netloan.cambridgeshire.gov.uk": [19632], "betcoin.tm": [1865], "www.securepaths.com": [14750], "ad.reachlocal.com": [13835], "*.ee.co.uk": [5564], "1984.is": [49], "firefoxos.mozfr.org": [20836], "tstock.mn": [2053], "cqsa.be": [2053], "autodiscover.ee.leeds.ac.uk": [17604], "netclean.com": [11378], "*.247realmedia.com": [91], "www.laquadrature.net": [9267], "wdrp.us": [2053], "kimonolabs.com": [9043], "o.deboni.net": [2053], "*.linuxnewmedia.de": [9556], "nynystake.org": [2053], "www.gfihispana.com": [6439], "hootie.co": [2053], "you.fi.it": [2053], "ch-it.norton.com": [11703], "worldofeas.canon.com.au": [19640], "go.gcprive.com": [2053], "str8ripp.in": [2053], "wol.im": [2053], "m.flickr.com": [6034], "*.moreover.com": [10778], "fvqtip.com": [2053], "nacba.info": [2053], "computerworld.ch": [3606], "my.itunes.apple.com": [1160], "www.anpost.ie": [1024], "yelp.at": [18979], "leblibrary.com": [9375], "www.kaust-cu.cornell.edu": [3744], "*.kundenserver42.de": [11471], "www.golfrev.com": [6948], "pear.phpdoc.org": [12865], "s1.al": [2053], "cms.megaphone.fm": [20776], "rico.im": [2053], "phpmagazin.de": [12455], "pinal.me": [2053], "magicmembers.com": [10023], "starwars.madametussauds.com": [10002], "fs18.formsite.com": [20148], "kpln.org": [2053], "ntl.ms": [2053], "p.btcchina.com": [1599], "www.verbraucherschutz.sachsen.de": [14454], "ad.cnblogs.com": [19743], "sykn.tk": [2053], "www.hsivonen.fi": [7253], "pulpcon.xyz": [2053], "www.projects.dm.id.lv": [4117], "royal.gov.uk": [14232], "www.systemausfall.org": [16016], "d981.ml": [2053], "www.stormfront.org": [15754], "mindsca.pe": [2053], "silicon.fr": [11390], "travelcardonline.n-somerset.gov.uk": [11046], "switchip.info": [3597], "de.aldi.be": [338], "cacou.cc": [2053], "api.mediatemple.net": [10331], "shoplift.byte.nl": [2544], "l.dieron.com": [2053], "on.shopspring.com": [21432], "www.croydonhealthservices.nhs.uk": [11102], "ngeru.info": [2053], "slt.la": [2053], "hut8.co": [2053], "*.concur.com": [3615], "aa.andreew.info": [2053], "ads.where.com": [18537], "recon.cx": [13650], "potager.org": [13211], "wiki.warthunder.com": [21975], "dropoff.brunel.ac.uk": [19599], "www.ipsidixit.net": [8496], "t.channeladvisor.com": [3059], "subnet05.ru": [21599], "sweflix.to": [15939], "balkongshoppen.se": [1673], "time.doesnotwork.eu": [4720], "www.opendatacity.de": [21012], "backpack.tf": [1642], "atdv.us": [2053], "gig.sc": [2053], "go.iqonomy.de": [2053], "hur.yt": [2053], "rboot.co": [2053], "thenewbay.org": [21709], "gscapp.co": [2053], "g24.me": [2053], "www.pydio.com": [13497], "unsctr.me": [2053], "control.earthlink.net": [5106], "assets.rbl.ms": [13825], "timeclockdeals.com": [16730], "go.marquez.co": [2053], "www.red-pill.eu": [13893], "ndlap4cpanelhost01v.ndlap4.ndla.no": [11309], "slfed.uits.iu.edu": [8214], "activeliv.es": [2053], "poopjournal.rocks": [13126], "x.agoncraft.net": [2053], "udk.nu": [2053], "go.carporn.ph": [2053], "forum.syllable.org": [21632], "cf.sonymusic.com": [15396], "alit.me": [2053], "www.aravot.am": [19410], "24kilat.es": [2053], "pwg2.gtimg.cn": [7120], "f.a40.de": [2053], "onbe.co": [2053], "www.mobify.com": [10681], "bepress.com": [1835], "www.btnapps.net": [2408], "xinmin.meituan.com": [10405], "myanimelist.net": [11012], "swe.engineering.osu.edu": [11959], "go.it.ai": [2053], "s.smhn.info": [2053], "s.fendmark.com": [2053], "cdn.auth0.com": [1444], "www.imperian.com": [20444], "filmne.ws": [2053], "*.simyo.de": [15082], "www.studyinsweden.se": [21595], "hmbk.pl": [2053], "tickets.calpoly.edu": [2806], "seg.li": [2053], "www.pythian.com": [21234], "g04.t.alicdn.com": [846], "dff.io": [2053], "scandinavianphoto.fi": [14572], "clc.serverfault.com": [15611], "www.marshall.usc.edu": [17564], "on.playmo.tv": [2053], "uvpn.de": [21832], "nhnnext.org": [11099], "url.f8vn.net": [2053], "fsune.ws": [2053], "www.cnr.vt.edu": [18031], "brez.link": [2053], "fafsa.ed.gov": [4988], "shop.us.samsung.com": [14501], "review.typo3.org": [16149], "letmed.co": [2053], "ddy.mn": [2053], "ctly.st": [2053], "cdn.mailerlite.com": [10048], "www.aboutus.org": [464], "bi.tune.com": [21812], "v1520.co": [2053], "tracker.debian.org": [4353], "momdoes.co": [2053], "am.thecthulhu.com": [16600], "edero.co": [2053], "hrs.104.com.tw": [18], "crb.research.illinois.edu": [17544], "weblibrary.cdn.citrixonline.com": [3238], "brighttag.com": [2378], "orbtlnfo.com": [2053], "www.stacksocial.com": [15615], "internet-radio.com": [8421], "odmp.org": [11950], "ignyt.co": [2053], "www.dps.illinois.edu": [17544], "i4url.com": [2053], "uod.ac.uk": [2053], "on.websauga.com": [2053], "www.acessa.com": [510], "www.day.org.ru": [19864], "basildon-consult.objective.co.uk": [20979], "sl.yearg.in": [2053], "ang.us": [2053], "s.qmatteoq.com": [2053], "www.develop100.com": [19905], "m20.co": [2053], "reversewhois.domaintools.com": [4750], "link.usao.edu": [2053], "venat.us": [2053], "img4.2345.com": [87], "marchex.com": [10148], "download.openmpt.org": [12148], "www.projecthoneypot.org": [13363], "x.ptt-ro.com": [2053], "hetman.epuap.gov.pl": [19985], "gunax.in": [2053], "l.jobwrk.com": [2053], "diveusa.net": [2053], "uat.groupon.com.br": [7099], "www.mansfield.gov.uk": [20749], "url.webikeo.fr": [2053], "bravemedia.org": [2345], "hrld.li": [2053], "hsbc.com.hk": [20380], "store.bobafamily.com": [2225], "*.tuhh.de": [16131], "mail.lsbu.ac.uk": [9252], "incommonfederation.org": [8180], "swww2.glam.com": [6819], "mindtouch.us": [10597], "*.reformal.ru": [13954], "srsplus.com": [14407], "blog.alternativeto.net": [925], "images-cf.mheducation.com": [20790], "w.krulz.nl": [2053], "pushon.so": [2053], "ocl-cal.gc.ca": [11940], "c.cpni.nl": [2053], "netzf.eu": [2053], "xprts.us": [2053], "gohy.co": [2053], "whi.ms": [2053], "4dg.us": [2053], "www.drollette.com": [10245], "paulh.us": [2053], "gdata.youtube.com": [6967], "m.pivotal.la": [2053], "tripit.com": [17019], "internetfonden.se": [8436], "habets.pp.se": [7258], "nav.bloomberg.com": [2172], "pol.moveon.org": [10819], "www.dnaserum.com": [4131], "cal.network": [2053], "*.andyet.com": [1051], "ekomi-us.com": [5020], "youtube.com.qa": [19016], "w0o.xyz": [2053], "extranet-gemeinsam.wienerstadtwerke.at": [18582], "www.valueapplications.com": [17831], "emailnew.azet.sk": [1520], "www.obi.de": [20977], "www.bemobile.ua": [1776], "primelocation.com": [21199], "vigna.li": [2053], "www.upgradedself.com": [17675], "energia.edp.pt": [4995], "geog.illinois.edu": [17544], "ecitizen.maidstone.gov.uk": [10035], "opsw.co": [2053], "2014.confidence.org.pl": [3634], "listening.aldi.ie": [338], "spvideos.5min.com": [208], "wral.com": [18225], "jcrm.io": [2053], "labs.kollegorna.se": [9115], "zipler.ru": [19191], "www.freeassangenow.org": [6255], "fin-fusioncrm.oracle.com": [12284], "sitegenie-external.quinstreet.com": [13598], "images.chainlove.com": [3041], "support.thingiverse.com": [16626], "pantz.org": [12580], "view.de.adjug.com": [565], "b.n1ck.li": [2053], "discourse.chef.io": [3115], "s.on.aol.com": [361], "equityzen.com": [5441], "r.twimg.com": [17153], "*.webmd.com": [18367], "tula.beeline.ru": [1801], "v.evereve.com": [2053], "forum.pirate-party.ru": [12919], "dtc.gplhost.co.uk": [6489], "sozialnachhaltig.migros.ch": [10566], "authors.aps.org": [969], "disk.wedos.com": [18197], "www.leadershipacademy.nhs.uk": [11102], "www.fraunhofer.de": [6230], "www.chloe.re": [3152], "noyz.in": [2053], "*.megafon.ru": [10393], "*.de17a.com": [4320], "www.mixcloud.com": [10655], "xpnd.us": [2053], "www.americanfuturefund.com": [981], "secure.jhu.edu": [16562], "zhi.taobao.com": [16206], "magpi.es": [2053], "cdncss.dmjx.dk": [4687], "concerts.livenation.com": [9642], "orland.illuminateed.com": [20430], "cdmi.osu.edu": [11959], "bc.whirlpool.net.au": [18542], "ampersandjs.com": [1019], "parrot.com": [12617], "clube.ecommercebrasil.com.br": [4984], "nsis.ro": [20955], "isen.com": [8514], "homedepot.com": [7615], "cardtocall.courierpost.co.nz": [3784], "jobs.irs.gov": [7964], "ep2012.europython.eu": [5514], "www.wustlconnections.com": [18291], "ble.ac": [2053], "cdna.tid.al": [16699], "afric.in": [2053], "*.azcentral.com": [1519], "occupycorporatism.com": [11907], "*.megafiles.se": [10392], "suresupport.com": [15900], "pbttbcpn.bt.motive.com": [20831], "lev2.de": [2053], "www.7digital.com": [223], "*.pgmcdn.net": [7598], "drawception.com": [4840], "www.americanexpress.com": [972], "m24.cc": [2053], "cdn.c9.io": [3339], "vdc-sy.org": [3006], "skysql.com": [15172], "musik.ee": [2053], "api.addthis.com": [611], "s99.to": [2053], "sm.azhar.eg": [2053], "larry52.com": [2053], "codinghorror.com": [3448], "wiki.akvorrat.at": [811], "static.youhua.baidu.com": [1661], "bato.to": [19496], "wordstat.yandex.kz": [18957], "web.syllable.org": [21632], "cr8.lv": [2053], "aax.amazon-adsystem.com": [950], "pano.bz": [2053], "gamesin.asia": [2053], "www.thewatershedresidence.com": [16587], "www.clinicaltrials.gov": [3327], "*.popsugar-assets.com": [13137], "www.sheetsu.com": [21424], "www.marionlibrary.osu.edu": [11959], "*.clarionledger.com": [3272], "*.mirantis.com": [10632], "rhb.ch": [14091], "nets.ec": [11397], "ipsos-na.com": [8498], "u-a-f.de": [2053], "growth.so": [2053], "www.rspcashop.co.uk": [13696], "akademikerforsakring.se": [797], "www.aexp-static.com": [717], "sell.taobao.com": [16206], "oma.zoner.fi": [19213], "techblog.constantcontact.com": [3657], "peer5.youcanbook.me": [19010], "www.cpmstar.com": [2704], "sparta.global": [2053], "www.resin.io": [14040], "gfello.com": [2053], "nowonl.in": [2053], "w.itpro.es": [2053], "www.owner.io": [12390], "go.kowitz.co": [2053], "fs9.formsite.com": [20148], "www.motesplatsen.se": [10793], "webcron.org": [21990], "alleywat.ch": [2053], "www.wikihow.com": [18589], "tribler.org": [17005], "theplacetelford.com": [21713], "felix.co": [2053], "*.merproject.org": [10446], "ftc.gov": [5837], "clinicaltrials.georgetown.edu": [6668], "login.dtcc.edu": [4400], "infosactu.com": [20458], "hylex.xyz": [2053], "forums.nutyx.org": [20967], "www.seafileserver.de": [14677], "hrusecky.net": [10522], "www.cdromland.nl": [2624], "my.southampton.gov.uk": [15440], "ct1.addthis.com": [611], "cacetech.com": [2765], "*.searchmobius.org": [9936], "jtcoch.com": [2053], "*.ssl.mts.ru": [20846], "opn4.biz": [2053], "cdn.ca9.uscourts.gov": [17334], "www.shaanig.org": [21421], "www.codeclubpro.org": [3415], "ecmom.co": [2053], "bugs-staging.swift.org": [15941], "market.aliyun.com": [861], "skylink.sk": [15183], "eolewater.com": [5418], "www.igvita.com": [8121], "www.ricoh.com": [14112], "www.baymirror.win": [21217], "cell.com": [2993], "svkhlm.se": [2053], "jonas.click": [2053], "proxy.org": [13407], "r6n.me": [2053], "lms.learning.hhs.gov": [7192], "skins.agariomods.com": [759], "www.curiouscat.me": [4002], "o.sid.pw": [2053], "gozmk.com": [2053], "mtdl.nl": [2053], "www.maist.jp": [20738], "uks.enaza.ru": [5332], "forum.techidiots.net": [16283], "www.myslo.ru": [20864], "nrh.link": [2053], "www.happybearsoftware.com": [20314], "acttea.ut.ee": [17347], "www.norge.no": [11680], "uocpres.uillinois.edu": [17238], "videos.t-mobile.com": [16024], "njs.de.vc": [2053], "hdcvr.me": [2053], "partner.bluekai.com": [2186], "bugle.rocks": [2053], "www.wix.com": [18684], "go.blolol.com": [2053], "assured.se": [19443], "*.netdna.com": [11380], "changzhou.jd.com": [8571], "www.discoversignage.com": [4639], "www.passagebank.com": [12636], "s.vondarl.de": [2053], "beta.southglos.gov.uk": [15438], "jdpay.com": [8576], "*.beyondbinary.io": [19521], "awwstn.com": [2053], "novoed.com": [11729], "amcla.tv": [2053], "vua.cc": [2053], "abosgratis.de": [461], "brlttb.tk": [2053], "myhealthonline.sccgov.org": [14579], "truff.sh": [2053], "lastminute.com": [9318], "danielmiessler.com": [4221], "vpn.aclutx.org": [291], "on.yeupet.vn": [2053], "bish.al": [2053], "pfun.co": [2053], "dfsw.co": [2053], "ricar.me": [2053], "cecp.me": [2053], "corinne.co": [2053], "*.putlocker.com": [13486], "antivigilancia.org": [1109], "chriscardone.us": [2053], "toi.ivwbox.de": [16028], "loyal.ms": [2053], "apps.support.t-mobile.com": [16026], "apicasystem.com": [1131], "go.brain.st": [2053], "libraryreserve.cdn.overdrive.com": [12365], "*.mmoga.de": [9930], "teamviewer.com": [16259], "plausible.coop": [13011], "api.video.rakuten.co.jp": [13768], "lnk.sweetweb.fr": [2053], "es.senti.al": [2053], "scsk.jp": [14328], "readyhosting.com": [13851], "efghij.pfmes.ca": [2053], "webcamboys.us": [18408], "online.vtb24.ru": [21961], "www.ligatus.at": [9502], "www.tele2.lt": [16325], "c2.ahosting.cz": [778], "ko.foursquare.com": [6200], "mnsf.co": [2053], "dpprsm.com": [2053], "assets.blubrry.com": [19560], "agmk.net": [767], "www.joycasino6.com": [20552], "demo.inka.f4.htw-berlin.de": [7246], "www.statistik.sachsen.de": [14454], "v.tumblr.com": [17101], "www.passwort-generator.com": [12646], "elementary.io": [5260], "together.jolla.com": [8771], "developer.longtailvideo.com": [9752], "change4life.wales.gov.uk": [18252], "thompson.com": [16645], "agc.greenparty.org.uk": [7052], "communitiesx.state.gov": [17345], "igowild.com": [8104], "www.sitc.cuhk.edu.hk": [2747], "*.viepratique.fr": [17999], "graduation.berkeley.edu": [17526], "www.shareconnect.com": [14907], "forms.hubspot.com": [7739], "www.consultmahan.com": [10031], "houndci.com": [7707], "trendblog.deichmann.com": [4394], "*.vitalcred.com.br": [12532], "frag.ly": [2053], "nm4.in": [2053], "*.16personalities.com": [47], "b.ohtake.net": [2053], "oplataprosto.dengisend.ru": [4440], "www.wijgaannaareg.nl": [22026], "connect.internet.org": [8426], "go.dryan.com": [2053], "www.simblee.com": [15054], "rbo.one": [2053], "19r.co": [2053], "projects.kde.org": [8871], "go.ove.com": [2053], "forge.univention.de": [17511], "phoukka.org": [2053], "urkb.ch": [20574], "myob.com": [9980], "insidegme.wusm.wustl.edu": [18290], "old.lwn.net": [9266], "*.linuxpl.com": [9594], "www.issh.ac.jp": [8418], "www.echo24.cz": [20003], "nagano.cz": [11198], "okalex.net": [2053], "catedraspfremap.unizar.es": [17643], "boardgamearena.com": [2219], "caddyserver.com": [2771], "b3.yahoo.co.jp": [18944], "craigmurray.org.uk": [19812], "portal.zwame.pt": [19243], "sellnrg.co": [2053], "propub.li": [2053], "bzg.me": [2053], "charities.org": [987], "ymkn.co": [2053], "www.coursera.org": [3788], "js.ptengine.jp": [13418], "obtle.co": [2053], "lynk.at": [2053], "hair.adsfrom.us": [2053], "on.gb-world.net": [2053], "nsbeer.co": [2053], "www.decryptcryptolocker.com": [4367], "roostr.video": [2053], "www.oculusvr.com": [11921], "*.ebscohost.com": [4971], "google.tv2.dk": [16135], "xignite.com": [18875], "s2.mzstatic.com": [11041], "*.ighome.com": [8096], "cds.sevenoaks.gov.uk": [14882], "www.statewatch.org": [15677], "cdn.timetrade.com": [16726], "swisscom.com": [15951], "surviv.es": [2053], "www.stonewallcymru.org.uk": [21581], "www.barmer-gek.de": [1720], "openfarmgame.com": [12208], "yike.it": [2053], "www.cpubenchmark.net": [2707], "caei.ro": [2053], "www.tuxic.nl": [17133], "tr.im": [16898], "*.surfaid.ihost.com": [3731], "keiba.rakuten.co.jp": [13767], "npost.sg": [2053], "www.jedec.org": [20532], "freq.care": [2053], "hxh.cl": [2053], "tbl.click": [2053], "lcurl.xyz": [2053], "doc.satoshilabs.com": [21373], "fcg.meituan.com": [10405], "tknst.uk": [2053], "www.aeapri.asso.ulaval.ca": [17515], "topiama.com": [16836], "edmu.in": [2053], "*.us.archive.org": [8419], "za.godaddy.com": [6898], "lk.gd": [2053], "rt-short.link": [2053], "pacif.co": [2053], "help.familysearch.org": [5760], "invoca.net": [8478], "epb.net": [5039], "*.blogg.se": [2159], "ba-cdn.ghostery.com": [6749], "www.leaserig.net": [9371], "seo.osu.edu": [11959], "marketing.lunarpages.com": [608], "srgnt.tv": [2053], "class.agency": [2053], "adfi.li": [2053], "url.kamar.vn": [2053], "chipn.co": [2053], "electroscience-backup.engineering.osu.edu": [11959], "idsfac.me": [2053], "map.bloomsky.com": [19559], "go.zoodisk.com": [2053], "apto.top": [2053], "sndfrq.co": [2053], "cass.ee": [2053], "tagged.com": [16164], "www.nslds.ed.gov": [4988], "wcha.it": [2053], "cmw.htwk-leipzig.de": [7736], "www.freshmeat.club": [20174], "univention.de": [17511], "lnx.krawiec.com": [2053], "aw4c.com": [2053], "mail.espiv.net": [20058], "richarddawkinsfoundation.org": [14106], "report.amap.com": [19360], "alrtlgc.com": [2053], "forum.logentries.com": [9715], "www.devuan.org": [4514], "gltw.co": [2053], "asmc.de": [1304], "artedolar.com.br": [1263], "tweet.matox.si": [2053], "www.amnistia.cl": [1014], "de.squat.net": [21549], "link.sva.edu": [2053], "skyler.link": [2053], "t-ri.de": [2053], "get.videolan.org": [17981], "a3.jimstatic.com": [8720], "lgy.co": [2053], "m.ixit.cz": [8028], "p7.qhimg.com": [13531], "lubsws01.leeds.ac.uk": [17604], "dcerpc.org": [19870], "www.titanic-magazin.de": [16774], "developers.filepicker.io": [5916], "teamlab.co": [2053], "usvisas.state.gov": [17345], "widgitonline.com": [22024], "tomsh.net": [2053], "www.site.yandex.by": [18953], "bad.gr.com": [2053], "2ndrun.news": [2053], "s1.wsj.net": [22059], "hipcompass.co": [2053], "www.ist-track.com": [8527], "ingentaconnect.com": [8289], "acecommunications.statushub.io": [15692], "ap2.bvg.de": [1623], "univention.com": [17511], "nrchur.ch": [2053], "upri.me": [2053], "britcoin.co.uk": [2391], "i-nd.com": [2053], "swiss-prime-site.ch": [21628], "onone.buzz": [2053], "ua.edu": [17202], "www.zalando.at": [19094], "blog.transifex.com": [16943], "www.nikcub.com": [11593], "atmsuf.inl.gov": [20462], "achim.cc": [2053], "stpete.rs": [2053], "ny.taobao.com": [16206], "docs.sony.com": [15393], "www.sendspace.com": [14828], "www.ygtech.tools": [18919], "licensing.symantec.com": [15969], "*.bittorrent.com": [1997], "wuzhou.meituan.com": [10405], "inka.htw-berlin.de": [7246], "rctru.st": [2053], "yabs.yandex.com.tr": [18954], "truthmarket.com": [17076], "www.faststream.civilservice.gov.uk": [19721], "www.mozillaignite.com": [10848], "rvwsna.co": [2053], "meyt.al": [2053], "go.naaaprtp.org": [2053], "bchnn.co": [2053], "bailey.gr": [2053], "www.sos.state.co.us": [3507], "research.domaintools.com": [4750], "j1.chaucanh.net": [2053], "nexc.es": [2053], "zingcheckout.com": [19187], "ifood.la": [2053], "main-host.de": [10059], "apps.wandoujia.com": [18267], "*.4d.com": [177], "www.friendlybracelets.com": [6333], "ifi.uio.no": [17615], "nrw.vcd.org": [17766], "rbth.ru": [14280], "cht.rs": [2053], "mornie.me": [2053], "h-da.de": [4234], "www.deusm.com": [17204], "intserveis-e.upf.edu": [17674], "ogpn.media": [2053], "rgi.me": [2053], "l.harri.com": [2053], "shop.boingboing.net": [2234], "imo.im": [8157], "kredyty-mieszkaniowe.money.pl": [10734, 10735], "fusion.webfusion-secure.co.uk": [18414], "l.sgoyal.net": [2053], "j.goudsm.it": [2053], "bulk.internetessentials.com": [20477], "cas105.nl": [2053], "library.polyu.edu.hk": [13116], "kb.berkeley.edu": [17526], "pf.md": [2053], "cloud.zaehlwerk.net": [19089], "richmondteaparty.com": [14109], "mangol.in": [2053], "www.eindhoven.nl": [5227], "aberdeencity.spydus.co.uk": [21546], "www.kent.gov.uk": [9005], "www.linux-sunxi.org": [9561], "youtube.ua": [19016], "m.andersonvalleypost.com": [5087], "www.haproxy.com": [7175], "www.thermoscientific.com": [16617], "youtube.ug": [19016], "forum.ethereum.org": [5484], "img.okcoin.cn": [11826], "abam.in": [2053], "mesura.me": [2053], "g2014.hm": [2053], "wyndh.am": [2053], "multisoft.com": [10885], "mstryexps.com": [2053], "nwmn.co": [2053], "sinv.st": [2053], "support.sas.com": [14312], "grtstyl.us": [2053], "people.wku.edu": [22039], "go.tonywinn.me": [2053], "internetweek.jp": [8435], "rossy.me": [2053], "food.opendata.ch": [21011], "whskr.us": [2053], "anonops.com": [1083], "wix.click": [2053], "kazan.beeline.ru": [1801], "swissinfo.ch": [21550], "lgdw.gg": [2053], "amex.co": [2053], "wvnz.org.nz": [2053], "kr-znamya.ru": [20617], "www.jadu.net": [8639], "*.rambler.ru": [13775], "www.webfusion-support.co.uk": [18414], "havain.in": [2053], "l.bridgeinc.us": [2053], "lodi.co": [2053], "www.secdev.com": [14701], "nvrd.co": [2053], "www.securecoding.cert.org": [2640], "fragdenstaat.de": [6212], "www.usa.gov": [17307], "mmedia1.ozon.ru": [12405], "ldrsft.com": [2053], "www.icedivx.com": [8055], "ijobs.independent.co.uk": [8202], "nws.io": [2053], "13and.co": [2053], "www.bioinfo.pl": [1952], "gjopen.com": [6453], "secure.dover.gov.uk": [4814], "gls.sr": [2053], "insom.co": [2053], "*.fundrazr.com": [6375], "secure.addthis.com": [611], "secure2.intl.match.com": [10228], "r.ctrlc.in": [2053], "oregonstate.edu": [12302], "yeah.gr": [2053], "redbee.cc": [2053], "nutry.ml": [2053], "fbapp.uat.telegraph.co.uk": [16340], "mackenz.ie": [2053], "www.ntia.doc.gov": [17336], "pendle.gov.uk": [12744], "www.ubfoundation.buffalo.edu": [17583], "regularish.com": [13976], "s.ptwr.co": [2053], "stash.alonetone.com": [906], "qvc.co": [2053], "medschool.wustl.edu": [18290], "ajh.me": [2053], "kayit.anadolu.edu.tr": [1025], "*.stackexchange.com": [15611], "origin.at.ai": [836], "*.mozo.co": [10855], "fitk.me": [2053], "mtwn.co": [2053], "www.riversidemajestic.com": [14141], "pm-utils.freedesktop.org": [6243], "bugzilla.mindrot.org": [10601], "nexway.com": [11548], "alphablog.citizensadvice.org.uk": [19716], "xcdn.co": [18805], "faq.ssa.gov": [21552], "alumnimagazine.rmit.edu.au": [13670], "1n0.uk": [2053], "support.blackphone.ch": [2100], "sec.levexis.com": [9430], "croydon.greenparty.org.uk": [7052], "groton.org": [7092], "cled.georgetown.edu": [6668], "euinline.msi.com": [9957], "a-hy.de": [2053], "giforacle.me": [2053], "rbil.co": [2053], "security.web.cern.ch": [2632], "naacpcompanystore.org": [11051], "community.particle.io": [12626], "leya69.me": [2053], "findthebest.com": [5955], "2015.gaobase.admin.cam.ac.uk": [17529], "spt.ink": [2053], "www.soundgasm.net": [15411], "vegaspartnerlounge.com": [17882], "pavone.ovh": [2053], "www.ifi.uio.no": [17615], "b9.hitravel.xyz": [2053], "wbru.co": [2053], "blog.openhub.net": [12210, 12211], "cdn.lezhin.com": [20672], "mengyin.meituan.com": [10405], "a.tintuctop.com": [2053], "jfrieda.de": [2053], "howto.landure.fr": [9298], "www.cabletv.com": [2762], "appdo.cc": [2053], "www.ulogin.ru": [21841], "www.library.jhu.edu": [16562], "lndr.co": [2053], "www.eurosmartz.com": [5515], "hicw.co": [2053], "anahaw.news": [2053], "choicerewards.lloydsbank.com": [9686], "4id.channel4.com": [3062], "plti.co": [2053], "gerv.makes.org": [10080], "*.rand.org": [13631], "securestore.discovery.com": [4640], "m.aldi-nord.de": [338], "grp03.api.rp.rakuten.co.jp": [13768], "kablepackaging.com": [8915], "mit.worldcat.org": [18748], "ag.ch": [21629], "uget4.me": [2053], "www.blackpool.gov.uk": [2108], "ws.usembassy.gov": [21879], "ciorc.al": [2053], "muj.idnes.cz": [20425], "cath.li": [2053], "s.or-z.net": [2053], "mcgo.es": [2053], "denverimag.es": [2053], "www.itdashboard.gov": [8001], "a2ski.me": [2053], "poltava.to": [21166], "bbm.ph": [2053], "1025.us": [2053], "teacupsandtrinkets.co.uk": [16249], "www.numbersusa.com": [11776], "fvsd.illuminateed.com": [20430], "jp.8chan.co": [235], "trade.autotrader.co.uk": [19458], "trumpia.com": [17054], "privatewifi.com": [13330], "slgx.co": [2053], "*.rnrwheels.com": [13671], "mdc.plus": [2053], "dtk.to": [2053], "www.helmich.de": [7442], "sp0.baidu.com": [1661], "subs.toynews-online.biz": [21769], "formilux.org": [6162], "i3.technet.microsoft.com": [10543], "pico.ly": [2053], "d.iscour.se": [2053], "cdn.speedof.me": [15507], "horizon.halton.gov.uk": [20308], "*.biz.edgesuite.net": [799], "andnor.se": [2053], "conserve.sc": [2053], "exactag.com": [5586], "cdn1.gbot.me": [6934], "ehs.stanford.edu": [15635], "r.tcpipweb.net": [2053], "thepiratebay.ae.org": [21709], "seetickets.com": [14790], "r.xpander.fr": [2053], "streammygame.com": [15773], "*.officedepot.com": [11946], "blog.fortinet.com": [6174], "www.kayak.co.uk": [8976], "nap.edu": [16466], "shop-america.u-blox.com": [17198], "www.equalitytrust.org.uk": [5435], "api.t411.me": [16036], "www.131002.net": [36], "reachout.link": [2053], "www.fit.fraunhofer.de": [6230], "csvv.co": [2053], "ntr.lu": [2053], "stand.oxfam.org.uk": [12393], "support.mayfirst.org": [10266], "cdn-3.convertexperiments.com": [19784], "tldff.com": [2053], "epa-heast.ornl.gov": [11892], "financial.ucsc.edu": [17591], "connect.aber.ac.uk": [452], "kgx.cc": [2053], "avm.de": [1493], "socl.xyz": [2053], "tsc.li": [2053], "spork.ly": [2053], "u.cam.vc": [2053], "u3.qiyipic.com": [20413], "www.transferwise.com": [16938], "cdnjs.touclick.com": [16880], "www.skysql.com": [15172], "www.butlerandthechef.com": [16445], "4freeproxy.com": [183], "webmail.bristol.gov.uk": [19592], "bio.org": [1562], "go.thips.de": [2053], "verkaufen.ch": [21908], "ceazari.info": [2053], "go.btlr.link": [2053], "www.mirrorservice.org": [10638], "reflex.cz": [13951], "gallery.debianforum.de": [4354], "www1.ibdcd.com": [8471], "uproxx.it": [2053], "leisure1.sbb.ch": [15946], "*.neosmart.net": [11343], "verkkokauppa.duodecim.fi": [4901], "ualinux.com": [21833], "myheritage.com": [11023], "link.gmo.gl": [2053], "quiz.itespresso.fr": [11390], "cardoza.link": [2053], "www2.taxactonline.com": [16234], "bear.fyi": [2053], "ctv.mk": [2053], "dcsp.me": [2053], "content.azorus.com": [1244], "mmbl.me": [2053], "crtfy.us": [2053], "webapp.zdf.de": [22127], "discourse.osmc.tv": [21036], "etfgui.de": [2053], "nlgo.uk": [2053], "jobs.redhat.com": [13909], "defenceimagery.mod.uk": [17253], "afeed.co": [2053], "plastic-bin.com": [13002], "musixmatch.com": [10911], "s.tsy.jp": [2053], "passlab.eu": [2053], "www.reiner-sct.com": [13981], "docs.unrealengine.com": [17652], "standards.ieee.org": [7862], "www.polygrant.com": [13115], "www.alsoactebis.com": [340], "ashq.co": [2053], "saur0.tech": [2053], "reversens.domaintools.com": [4750], "go.padstm.com": [12531], "l.phielo.com": [2053], "uds.pw": [2053], "digitalgov.gov": [4571], "bbs.ttmeiju.com": [21808], "kam.im": [2053], "r.sebdic.de": [2053], "fluendo.com": [6067], "www.obermassing.at": [11898], "kpn.nl": [8897], "c3.nasa.gov": [11058], "*.figue.com": [5687], "xxx.upx69.com": [17694], "sbms.bnl.gov": [19564], "ubub.us": [2053], "i.gtimg.cn": [7120], "shbos.ch": [2053], "www.birds-are-nice.me": [1966], "trk.euclead.com": [2053], "circle.org.uk": [19714], "ironp.net": [2053], "lazi.gs": [2053], "gaytx.us": [2053], "pass.tmall.hk": [16786], "www.mims-online.com": [9910], "sqrn.ch": [2053], "*.www.cfda.gov": [2953], "hllow.lt": [2053], "zammad.com": [19097], "ilsendems.co": [2053], "dmcloud.net": [4202], "peerj.com": [12727], "url.rcclab.com": [2053], "www.effectivemeasure.com": [5207], "l.magiclabs.de": [2053], "tre.li": [2053], "cngrm.co": [2053], "*.yandex.net": [18959], "zagony.ru": [19090], "newpor.tc": [2053], "www.3bbwifi.com": [155], "tpbproxy.website": [21709], "atlink.ml": [2053], "cdn4.xvideosx.tv": [18837], "*.tal.de": [16172], "www.versions.nodejitsu.com": [11647], "billingproxy.fineproxy.org": [5960], "www.nitrokey.com": [11623], "blog.10gen.com": [21], "www.flipkart.com": [6042], "idms-linux.org": [20424], "wildapricot.org": [18603], "randomhouse.biz": [13777], "www.gaug.es": [7124], "websmithing.com": [18449], "poipic.coccoc.com": [3402], "docme.in": [2053], "www.nixonlibrary.gov": [20914], "blog.mozfr.org": [20836], "ractod.org": [2053], "watt.so": [2053], "n.arteid.net": [2053], "engel.pics": [2053], "*.alrc.gov.au": [1433], "static.tlasecure.com": [21746], "bn1files.storage.msn.com": [9961], "*.st-hatena.com": [7370], "providesupport.jp": [13400], "cnsi.ucla.edu": [17527], "kyrkis.com": [2053], "s.daserste.de": [2053], "spam.sans.org": [14310], "uptilo.com": [17690], "idp.comcast.net": [3524], "youngp.ro": [2053], "berea.link": [2053], "rspb.org.uk": [13694], "pdxint.at": [2053], "agva.nl": [2053], "redstate.com": [13898], "obitalk.com": [20978], "www.signup.socialsecurity.gov": [15308], "portal.richrelevance.com": [14104], "*.tnsinfo.com": [16097], "www.breakoutband.com": [2353], "jmlord.net": [2053], "bea.md": [2053], "www.cs-cart.com": [2719], "nicjb.com": [2053], "www.cheapairportparkingbirmingham.com": [3101], "i1.code.msdn.s-msft.com": [14296], "ukwebsolutionsdirect.com": [17246], "m.arabic.alibaba.com": [850], "*.mpi-sws.org": [10254], "yancya.jp": [2053], "dns.d0wn.biz": [4070], "g.live.com": [9644], "careers.thejournal.ie": [16490], "x.plorlight.com": [2053], "secureusa.greenpeace.org": [7064], "events.emssoftware.com": [20035], "ar.redhat.com": [13909], "ssl.goeswhere.com": [6931], "www.8tracks.com": [236], "ud-media.de": [17225], "*.bytelove.com": [2548], "pro.connexity.com": [3648], "el.libreoffice.org": [9471], "johoobuy.com": [8763], "culp.tv": [2053], "deutsch.peerius.com": [12733], "betzwinery.com": [2053], "it.cloudflare.com": [3344], "webforms.telford.gov.uk": [21675], "edlund.dk": [5189], "on.ora.tv": [2053], "my.talktalk.co.uk": [16184], "www.master.yandex.kz": [18957], "www.heathkit.com": [7416], "www.bw.com": [1625], "fairwork.gov.au": [5746], "blakino.la": [2053], "efinancialcareers.cn": [5009], "www.amnesty.at": [996], "elftree.co": [2053], "komplett.no": [9121], "theproxy.pw": [21709], "www.webarchitects.coop": [18406], "lumesse.com": [9827], "mercul.es": [2053], "news.ub-g.com": [2053], "2wsb.tv": [2053], "chrs-mln-krs.com": [19711], "adserver.adtechus.com": [679], "bugs.sabayon.org": [14450], "assets.alicdn.com": [846], "intelexit.org": [8362], "sandbox.bluesnap.com": [2189], "wpcom-themes.svn.automattic.com": [1465], "jta2.com": [2053], "www.titania.com": [16773], "www.websitealive.com": [18445], "uslr.us": [2053], "vspor.to": [2053], "phptesting.org": [21120], "b.cfo-coach.com": [2053], "re.directrev.com": [4618], "mobilshop.netcologne.de": [11379], "rensk.in": [2053], "malv.es": [2053], "api.fortiguard.com": [6173], "xplr.it": [2053], "wiki.gsi.de": [6506], "councillors.herefordshire.gov.uk": [7466], "strem.io": [15778], "regint.accelus.com": [19261], "altera.com": [917], "uni-tuebingen.de": [17632], "api.v2.badgeville.com": [1649], "www.zynga.com": [19251], "vz-nrw.de": [17909], "bobbyshar.ma": [2053], "info.ceneo.pl": [2996], "usembassy.gov": [21879], "a.hotelecam.com": [2053], "www.wantful.com": [18271], "www.ekmsecure6.co.uk": [5235], "csbk.co": [2053], "escoladesegu.ro": [2053], "go.kuota.jp": [2053], "www.transversal.com": [16959], "cryptome.wikileaks.org": [18590], "www.expatpartnersurvival.com": [20079], "ssl-nrk.tns-cs.net": [21752], "alhefzi.me": [2053], "domdex.com": [4758], "secure.warwick-castle.com": [18282], "contrastsecurity.com": [19783], "www.cyberpowerpc.com": [19843], "www.kva.se": [20624], "cdn.zwame.pt": [19243], "s123.cnzz.com": [3391], "aaryangala.co": [2053], "www.discounttheatre.com": [4630], "dcoy.co": [2053], "v2c.lrz.de": [9396], "upware.comcast.com": [3525], "uchicago.edu": [17532], "ourtes.co": [2053], "ps-inc.co": [2053], "punahou.link": [2053], "www.nodes.dk": [11649], "passwordless.net": [21078], "l.vspc.net": [2053], "stadt-bremerhaven.de": [15619], "alianza.tv": [848], "b.off-to-on.com": [2053], "swat.ch": [2053], "www.artedolar.com.br": [1263], "url.florky.com": [2053], "sale.aliyun.com": [861], "www.17track.net": [48], "de.indymedia.org": [8234], "shawan.meituan.com": [10405], "playsense.kr": [2053], "www.maidsafe.org": [10034], "z.tigabytes.com": [2053], "mbox9.offermatica.com": [11937], "utm.edu": [17628], "m6.hitravel.xyz": [2053], "s.chuplus.jp": [2053], "schl.mn": [2053], "1.shoz.de": [2053], "elynx.us": [2053], "gdfl.co": [2053], "ssl.assets.sheetmusicplus.com": [14938], "g4l.at": [2053], "rmr.me": [2053], "hangerproject.com": [20310], "va.pe": [2053], "docs.agiusa.com": [2053], "peake.link": [2053], "zackw.co": [2053], "site.yandex.kz": [18957], "jshr.me": [2053], "www.edigitalsurvey.com": [5000], "m.sogou.com": [21500], "youtube.bg": [19016], "wl.jd.com": [8571], "validator-suite.w3.org": [18184], "applications.cpanel.net": [2710], "www.threatpost.ru": [16665], "secure.manga.com": [10112], "bjr.jozz.xyz": [2053], "www.master.yandex.com.tr": [18954], "masdh.es": [2053], "my.vodafone.pt": [18109], "oran.ge": [2053], "nanling.meituan.com": [10405], "stai.rs": [2053], "ckdis.co": [2053], "shftbrd.com": [2053], "www.mcafeesecure.com": [10281], "illustre.ch": [20431], "support.plex.tv": [13036], "www.cryptome.info": [3948], "chat.hfo-telecom.de": [7187], "www.servercow.de": [14856], "s99.cnzz.com": [3391], "chl.it": [2655], "wrbls.co": [2053], "www.puppetlabs.com": [13460], "servix.idnes.cz": [20425], "code.randomhouse.com": [13778], "fairway.news": [2053], "ehrweb.104.com.tw": [18], "pfa.levexis.com": [9430], "veronikamaine.com.au": [17923], "*.ramnode.com": [13773], "metadata.cesnet.cz": [2642], "tlsi.co": [2053], "ft.lc": [2053], "www.pro-managed.com": [13335], "phonebook.cern.ch": [2632], "www.acoustics.org": [517], "khpi.com": [9001], "rdl.me": [2053], "rcpmag.com": [13639], "www.corporatetravelmoney.com": [19794], "dom.yuga.ru": [22121], "dealking.tk": [2053], "s14uncs.us": [2053], "familie-redlich.de": [5758], "*.wufoo.com": [18782], "www.fsfe.org": [5714], "www.gowalker.org": [6923], "img3.wakelet.com": [18248], "www.zenmate.de": [19133], "www.gettyimages.ae": [6741], "gobi.krystal.co.uk": [9175], "browseraddon.com": [2427], "msdnadminprodscussu1.app.msdnadmin.visualstudio.com": [18078], "en.blog.nic.cz": [11572], "on.insas.be": [2053], "www.gettyimages.at": [6741], "saml.uvt.nl": [16716], "oskicatp.berkeley.edu": [17526], "abn.com": [2053], "www.lurkmore.co": [9838], "dmtracking.1688.com": [44], "www.vikingvpn.com": [18004], "pcapredict.com": [21091], "aligned.online": [2053], "lists.96boards.org": [241], "outcampaign.org": [12354], "www.arpxs.com": [1245], "cmpxchg8b.com": [2685], "bookacourse.com": [2253], "blogs.gartner.com": [6580], "passport.weibo.com": [18482], "westyorkshireobservatory.org": [18510], "s.karing5.club": [2053], "*.onescreen.com": [12042], "sprint.com": [15565], "holly.illuminateed.com": [20430], "zimperium.com": [19186], "commonsensemedia.org": [19760], "img7.leboncoin.fr": [20650], "diogomonica.com": [4605], "www.eleves.ens.fr": [5029], "youm7.com": [19021], "zhitongche.baidu.com": [1661], "bugzilla.untangle.com": [17657], "thepirateproxybay.xyz": [21709], "gwoodard.me": [2053], "jyclr.co": [2053], "graphics.boston.com": [2287], "helios.psy.vu.nl": [17813], "*.compiz.org": [3586], "joum.me": [2053], "geany.org": [6602], "kicksapp.co": [2053], "store.adultshopping.com": [684], "www.freenode.org": [20168], "cheshirepolicealert.co.uk": [19698], "www.dynu.com": [4934], "r-sec.casalemedia.com": [2929], "dsalumni3.ds.leeds.ac.uk": [17604], "*.trafficholder.com": [16920], "emfrc.ca": [2053], "observatorioigualdad.unizar.es": [17643], "wjr.me": [2053], "dasm.ag": [2053], "wssnr.nl": [2053], "niglink.xyz": [2053], "partner.yandex.com": [18956], "www.elastic.co": [5243], "knq.li": [2053], "piwik-short.web.cern.ch": [2632], "appleid.apple.com": [1160], "mycontactual.com": [3675], "ag.ouvaton.coop": [12360], "cby.tw": [2053], "a.xiaolan.space": [2053], "gfx2.aftonbladet-cdn.se": [753], "rcll.nl": [2053], "kinocheck.de": [20598], "pegahsystem.co": [2053], "www.shaw.ca": [14932], "poff.it": [2053], "trustsealinfo.verisign.com": [17915], "pic4.58cdn.com.cn": [202], "web3.cc.ntu.edu.tw": [11160], "www.mobygames.com": [10692], "mbar.me": [2053], "www.ntid.rit.edu": [13667], "explo.in": [2053], "www.lrcd.com": [9806], "blog.viddler.com": [17974], "hgrn.es": [2053], "runnymede.gov.uk": [21340], "sonystyle.com.mx": [15399], "services.netbeans.org": [11376], "metallostroy.beeline.ru": [1801], "slcrts.com": [2053], "fr.zalando.ch": [19094], "adtmag.com": [312], "www.planetkde.org": [12987], "web.extension.illinois.edu": [17544], "bvdp.co": [2053], "assertible.com": [19441], "staged-by.rubiconproject.com": [14247], "liv-isl.in": [2053], "s.zf2.ru": [2053], "wiki.geogebra.org": [6659], "resellerratings.com": [14035], "tpb.patatje.eu": [21215], "pressdisplay.com": [11537], "cho.ba": [2053], "b-ssl.grvcdn.com": [7115], "www.offerpop.com": [11938], "static.voog.com": [21948], "engelsystem.de": [5366], "netkompakt-fuer-mitarbeiter.netcologne.de": [11379], "nuji.co": [2053], "compaq.com": [3574], "www.thinglink.com": [16624], "yellowpages.ca": [18976], "itunes.com": [8010], "upphandling24.idg.se": [7852], "www.stlbeacon.org": [15607], "jblack.me": [2053], "ethos-os.org": [5490], "ad6.nl": [2053], "xue.taobao.com": [16206], "www.openreach.co.uk": [12241], "fengning.meituan.com": [10405], "at.kineo.com": [2053], "braunschweig.de": [2344], "static-hp-eus.s-msn.com": [14297], "static.mux.de": [10924], "media.gta.arch.ethz.ch": [5074], "dl.codebay.in": [2053], "links.sonatype.com": [15381], "www.coincheck.jp": [3466], "stmh.it": [2053], "servicesonline.opm.gov": [11853], "id.tmtm.ru": [16092], "www.nakedcitizens.eu": [11202], "myplacelive.walthamforest.gov.uk": [18262], "www.prettylittlething.com": [13269], "www.icommons.org": [7847], "www.centresdirect.co.uk": [19672], "www.fotopigeon.com": [6192], "*.kariera.gr": [8948], "www.truecommerce.com": [21800], "appengine.google.com": [6962], "smq.tc": [2053], "trac.xiph.org": [18878], "images.shazam.com": [14934], "kanaiya.in": [2053], "wibl.it": [2053], "careers.usc.edu": [17564], "hwb.birmingham.gov.uk": [19536], "*.instantservice.com": [399], "www.southbankcentre.co.uk": [15441], "puu.sh": [13487], "sw.ro.vutbr.cz": [17814], "pandaexpress.com": [12560], "shevi.be": [2053], "aitr.co": [2053], "bmdw.org": [1569], "www.tuleap.org": [17098], "webcaster.pro": [21988], "w.pib.by": [2053], "baysho.re": [2053], "index.docker.io": [4705], "releases.qt-project.org": [13544], "degib.re": [2053], "wimg.co": [2053], "www.hitfarm.com": [7567], "vagrantcloud.com": [17821], "phrind.mobi": [2053], "djazz.it": [2053], "www.reformgovernmentsurveillance.com": [13952], "ksig.ma": [2053], "www.truste.com": [16111], "8ball.co": [2053], "ijar.us": [2053], "aflismp.com": [2053], "www.aclufl.org": [286], "alumni.law.cuhk.edu.hk": [2747], "thehrd.co": [2053], "thwsb.me": [2053], "www.nationalgrid.com": [11270], "azure.microsoft.com": [10543], "redbox.com": [13915], "kirlism.ga": [20602], "www.petsathome.com": [12813], "www.amd.com": [962], "amazon.co.jp": [19364], "ibutsu.org": [20418], "cducsu.cc": [2053], "i.neox.fm": [2053], "api.btnapps.net": [2408], "mmrkt.co": [2053], "kinnear.wigan.gov.uk": [18585], "blazeti.me": [2115], "periscope.tv": [12785], "nt4.in": [2053], "italiatv.link": [2053], "realty.ngs.ru": [20907], "city.yandex.by": [18953], "cloudera.com": [3361], "bbc21cccs.us.to": [2053], "smetrics.barclays.co.uk": [1710], "on.pnj.com": [2053], "fsdata.se": [5718], "www.nfc.usda.gov": [17495], "jira.onosproject.org": [11848], "www.iea.org": [8413], "hh1.co": [2053], "psi.oasis-open.org": [11804], "listserv.opm.gov": [11853], "sunycorning.cc": [2053], "www.hkn.de": [7214], "www.eloconcursos.com.br": [5278], "pbrd.co": [2053], "stripecdn.com": [15782], "sen.na.tl": [2053], "l.hrzn.uk": [2053], "trv-science.ru": [21802], "www.savvyhawk.com": [14555], "chime.in": [3138], "www.canon.lt": [2868], "www.canon.lu": [2868], "www.canon.lv": [2868], "zum.bz": [2053], "www.elie.im": [5266], "advertising.amazon.de": [19369], "grainfree.ly": [2053], "www4.labcorp.com": [9276], "adnetdelivery.adnet.pro": [19295], "asianstudies.georgetown.edu": [6668], "soc.koviah.com": [2053], "www.addy.co": [619], "alcatel-lucent.com": [822], "gopalad.in": [2053], "b.gogeb.co": [2053], "stage.satoshilabs.com": [21372], "www.leastauthority.com": [9373], "videos.sproutvideo.com": [15571], "customcare.fender.com": [5863], "youtube.co.at": [19016], "prometheus-group.com": [13378], "www.privacyenforcement.net": [13314], "www.apan.org": [369], "benefits.caltech.edu": [2815], "jobs.lewisham.gov.uk": [20671], "capitaller.ru": [2880], "ctf.thechildrensmutual.co.uk": [3133], "wuchuan.jd.com": [8571], "www.mutualofamerica.com": [10921], "diplopt.mondediplo.com": [10729], "mnstr.me": [2053], "www.economist.com": [5161], "burgerd.ag": [2053], "*.physicalsecurity.ucsc.edu": [17590], "www.prod.facebook.com": [5733], "thegarrettp.com": [2053], "www.pcpartpicker.com": [12709], "cit.tips": [2053], "z.larksoft.com": [2053], "www.study.cam.ac.uk": [2821], "my.over-blog.com": [12361], "joinup.ec.europa.eu": [5526], "www.landofbitcoin.com": [9293], "vllg.es": [2053], "zhenya.site": [2053], "*.offeredby.net": [12593], "www.changemakers.com": [3055], "spiceworks.com": [15517], "ejmag.co": [2053], "openssl.org": [12168], "assets.wp.nginx.com": [20906], "woothemes.com": [18717], "understood.org": [17442], "www.major.io": [10066], "s25.cnzz.com": [3391], "www.embeddedanalytics.com": [5301], "go.hsthree.com": [2053], "baztab.net": [1760], "y.yolk.cc": [2053], "redirect.www.ibm.com": [7821], "bookmyname.com": [2252], "*.scanadu.com": [14571], "www.reasons.to": [13871], "www.versionista.com": [21912], "x.alexkavel.com": [2053], "www.casa.com": [19652], "le.clubdo.us": [2053], "voipuserportal.co.uk": [5392], "www.ivdopia.com": [17875], "k7r.eu": [20569], "netistrar.com": [11430], "filepost.com": [5908], "www.openx.com": [12193, 21023], "shoppdv.com": [2053], "events.networkworld.com": [11458], "babytalk.stanford.edu": [15635], "aj.jelpyu.com": [2053], "www.plusme.net": [13053, 13054], "*.cryptalloy.de": [3915], "rbkx.nl": [2053], "www.noo.org.uk": [11133], "popcorntime.sh": [21170], "jobs.douban.com": [4802], "www.card.wustl.edu": [18290], "secure.inertianetworks.com": [8235], "hugobiz.net": [2053], "www.firstdirect.com": [20127], "resusrv.com": [2053], "dignityhlth.org": [2053], "hm.meituan.com": [10405], "www.mailoo.org": [10054], "lists.akvorrat.at": [811], "adr.social": [2053], "forum.security-portal.cz": [14763], "ppnkie.co": [2053], "xemail.de": [18856], "huazhou.meituan.com": [10405], "n.macoscope.com": [2053], "burstmedia.co.uk": [2504], "leggiero.uk": [20655], "s.martin.ae": [2053], "plbt.tk": [2053], "pic6.qiyipic.com": [20413], "*.skch.me": [15148], "foes.do": [2053], "cache1.bigcartel.com": [1903], "goto.intera.de": [2053], "romania.usembassy.gov": [21879], "karelia.rt.ru": [13703], "papazola.ga": [2053], "consultmahan.com": [10031], "wac.edgecastcdn.net": [5180], "go.monrobot.xyz": [2053], "sedonaaz.gov": [3244], "www.paypal.co.uk": [12678], "rbnn.me": [2053], "qbe.co": [2053], "www.store.3drobotics.com": [149], "dvvk.info": [2053], "www.uhulinux.hu": [21837], "adjd.co": [2053], "www.carmen.osu.edu": [11959], "www.superrepo.org": [15871], "lloydslink.online.lloydsbank.com": [9686], "go.tjhole.uk": [2053], "myveg.as": [2053], "turn.com": [17115], "www.grad.stonybrook.edu": [15736], "newscenter.lbl.gov": [9219], "2700.ch": [2053], "track.tagesanzeiger.ch": [16163], "bankir.ru": [19484], "i.blanktv.com": [2053], "api.del.icio.us": [8065], "www.globalreach.com": [20254], "it-vertrieb.net": [2053], "w103.camscanner.com": [19636], "gerstnr.eu": [2053], "www.investorsinpeople.co.uk": [8470], "wiki.maemo.org": [10011], "nyx.cz": [11798], "buddhibox.us": [2053], "www.moonpig.com": [10766], "pbell.co": [2053], "bw1.co": [2053], "mybenefitscalwin.com": [10934], "www.ethoscustombrands.com": [5491], "rhinosupport.com": [14096], "software.cisco.com": [3221], "secure.stage-gettyimages.se": [6741], "threat2alert.com": [16660], "gist-assets.github.com": [6801], "53per.center": [2053], "sxy.li": [2053], "proultratrim.com": [13345], "static.sehirfirsati.com": [14806], "yinan.meituan.com": [10405], "naacp.org": [11050], "nyan.tokyo": [2053], "fodevarewatch.dk": [6094], "telekom.de": [4490], "wenchang.meituan.com": [10405], "myvarian.com": [10986], "f5networks.co.uk": [5658], "www.zdfsport.de": [22127], "marketingresearch.org": [10177], "2k.com": [103], "bibliometrics.ki.se": [8878], "bitclubnetwork.com": [19540], "help.nametiles.co": [11215], "jstin.me": [2053], "netlocity.co": [2053], "create.mheducation.com": [20790], "out-law.com": [12351], "duv.ly": [2053], "olincareers.wustl.edu": [18290], "portadi.com": [13161], "izhevsk.beeline.ru": [1801], "www.zdf.de": [22127], "autodiscover.bassetlaw.gov.uk": [1736], "my.ncl.ac.uk": [11073], "hosdi.eu": [2053], "geoportal.statistics.gov.uk": [21568], "tibiamaps.io": [21734], "hiphopdai.ly": [2053], "jan4.me": [2053], "vwrd.nu": [2053], "manual.wesnoth.org": [18500], "slackers.co": [2053], "webmail.fruct.org": [5708], "icis.inl.gov": [20462], "www.argeweb.nl": [1219], "culi.org": [3011], "kasserver.com": [8860], "www.andor.com": [1038], "mapfeedback.here.com": [7465], "b.macsf.net": [2053], "lnge.ms": [2053], "vaden.stanford.edu": [15634], "youtube.bh": [19016], "ebankingabersicher.ch": [4969], "on.abc15.com": [2053], "c26.co": [2053], "gkji.me": [2053], "www.holtwick.it": [7605], "i1.pixiv.net": [12960], "smarthome.jd.com": [8571], "*.igniterealtime.org": [8100], "i.taobao.com": [16206], "l.3dgo.net": [2053], "cs.cornell.edu": [3744], "pf1.at": [2053], "player.sky.com": [15170], "www.nettitude.co.uk": [11446], "www.edarabia.com": [5173], "blog.refeds.org": [13646], "moskva.beeline.ru": [1801], "charb.ro": [2053], "camw.me": [2053], "scap-on-apple.macosforge.org": [9985], "www.libcat.oxfordshire.gov.uk": [21056], "git.csx.cam.ac.uk": [17529], "www.lotame.com": [9776], "snl.com": [14381], "youtube.kr": [19016], "forsikring.sparebank1.no": [21524], "courtesan.com": [7025], "developer.venmo.com": [17899], "zcarot.com": [19063], "store.courant.com": [19800], "members.worlddab.org": [18750], "canna.bi": [2053], "gosi.gov.sa": [14545], "whatsnew.vandyke.com": [17842], "www.gamesonly.at": [6554], "www.zuerich.ch": [22143], "videscape.video": [2053], "door.fyi": [2053], "roleplaychat.org": [14186], "envy.im": [2053], "internetfreedomfestival.org": [20478], "t.cslico.com": [2053], "wtop.com": [18779], "strinv.co": [2053], "gpoutcomes.hscic.gov.uk": [20388], "*.ige.ch": [15949], "aax-us-east.amazon-adsystem.com": [950], "*.liftdna.com": [9500], "yotpo.co": [2053], "sd7.es": [2053], "costprojections.cancer.gov": [2864], "www01.extra.americanexpress.com": [972], "gistest.gloucestershire.gov.uk": [6872], "www.ldscdn.org": [16485], "jefftuts.co": [2053], "fwd.rocks": [2053], "x.jmwtf.com": [2053], "bunsenlabs.org": [19612], "wed.li": [2053], "www.phone.coop": [12847], "mdovt.co": [2053], "gin.gd": [2053], "qsrc.co": [2053], "keny.in": [2053], "awm.gov.au": [1442], "cchile.com": [2053], "datafile.com": [19857, 19858], "i.grolex.eu": [2053], "parad.is": [2053], "liss.in": [2053], "blog.exacttarget.com": [5584], "education.magix.com": [9874], "media.220volt.hu": [86], "www.kivikakk.ee": [20604], "i02.c.aliimg.com": [854], "partnersignup.register.com": [13965], "i.freeporngif.com": [6264], "ausgovboards.gov.au": [1430], "royalmail.com": [14233], "sbbp.org": [2053], "fr.redhat.com": [13909], "eduk.io": [2053], "l.byjohan.eu": [2053], "mir.mn": [2053], "www2a.cdc.gov": [19663], "www.lambda-linux.io": [9289], "service.xbox.com": [18850], "76.9.16.34": [16920], "plone.lucidsolutions.co.nz": [9808], "glls.be": [2053], "mudc.at": [2053], "*.portal.mxlogic.com": [10279], "*.ztan.tk": [16819], "amped.asia": [2053], "support.justcloud.com": [20564], "nrenservices.geant.net": [6430], "mtsystems.ch": [10870], "3dstats.com": [148], "mathonline.co": [2053], "delo.yuga.ru": [22121], "scsu.mn": [2053], "s.tmocache.com": [16091], "polyv.re": [2053], "p0st.us": [2053], "erike10.tk": [2053], "l.milli.az": [2053], "w.fullsail.edu": [2053], "malabo.usembassy.gov": [21879], "www.sugarcrm.com": [15837], "www.dizaineriai.lt": [4675], "www.mullet.se": [10881], "www.webinspector.com": [18337], "app.uclinics.com": [17222], "p0.focus.de": [6091], "auto.rakuten.co.jp": [13767], "northwestern.io": [2053], "r29.co": [2053], "blk.is": [2053], "code.ethereum.org": [5484], "teapartypatriots.org": [16247], "www.gnomefiles.org": [21006], "hbbtv.org": [7385], "www.harrow.io": [7345], "static2.symanteccloud.com": [15969], "whrsml.eu": [2053], "paleo.co": [2053], "focuscamera.com": [6092], "x.ai": [22077], "www.thepiratebay.org": [16493], "www.garrysmods.org": [20203], "www.spice-space.org": [15515], "intranet.slac.stanford.edu": [15635], "itapp.in": [2053], "login.barracuda.com": [1728], "*.brainsonic.com": [2324], "widget.whatsbroadcast.com": [18535], "ezproxy.uned.es": [17446], "realt.rbc.ua": [21263], "mercurial-scm.org": [10454], "micropartsusa.com": [10538], "formalyzer.com": [16904], "gekko.spiceworks.com": [15517], "www.gerv.net": [6680], "mysitemyway.com": [11033], "abcd.abuledu.org": [19258], "www.danielmiessler.com": [4221], "images.store.westlaw.com": [18514], "classicland.co": [2053], "boone.lol": [2053], "analytics.pirateparty.org.au": [12929], "byucom.ms": [2053], "*.terresoubliees.com": [16392], "report.fbk.info": [5818], "subsurface.hohndel.org": [3568], "dnainfo.com": [19932], "www.monex.co.jp": [10733], "leadershipcircle.stanford.edu": [15635], "my.avast.com": [1484], "s.flipboard.com": [6041], "turn.li": [2053], "onlineservice.netcologne.de": [11379], "patn.in": [2053], "thejh.net": [8660], "earplay.io": [2053], "*.cloudera.com": [3361], "s.kvdl.com": [2053], "from.io": [2053], "go.wfryer.me": [2053], "shopc.at": [2053], "rok.land": [2053], "blog.profitbricks.com": [13357], "api.mailigen.com": [10052], "upplandsvasby.se": [17685], "www.shopstyle.*": [14965], "stum.pt": [2053], "st.web.cern.ch": [2632], "quitter.se": [13603], "p.iivt.com": [12629], "jamesthebard.net": [8651], "myruck.us": [2053], "merchants.groupon.com": [7100], "alanste.in": [2053], "bsimms.net": [2053], "t.abthorpe.org": [2053], "blog.act-on.com": [19268], "advertising.courant.com": [19801], "securedcontent.net": [14745], "help.x-cart.com": [18794], "www.podcasts.it.ox.ac.uk": [17557], "vertceri.se": [2053], "www.gymaesthetics.de": [20301], "www.anarplex.net": [1030], "up.nytimes.com": [11189], "gcloud.civilservice.gov.uk": [19721], "support.euro.dell.com": [4413], "www.robustirc.net": [21321], "on.gdg.nz": [2053], "servercentr.al": [2053], "vlpblog.com": [2053], "a.ravenpine.com": [2053], "chat.livechatinc.net": [9646], "eleccionesrectorado.uniovi.es": [17479], "forums.linuxmint.com": [20700], "cdn.*.truenudists.com": [17050], "advancement.osu.edu": [11959], "sagepay.com": [14475], "landaire.net": [20635], "coopzeitung.ch": [3712], "service.cyberplat.ru": [4047], "cacert.com": [2578], "cx.hinckley-bosworth.gov.uk": [7552], "tde.bz": [2053], "dotomi.com": [4797], "eshop.asus.com": [397], "voronezhskaya-obl.beeline.ru": [1801], "*.gamelink.com": [6533], "img.cash.ch": [19654], "www.ventrachicago.com": [17902], "www.bitcoinaverage.com": [2018], "www.teac.co.jp": [16059], "*.sitemason.com": [15128], "nic.es": [4764], "www.finansportalen.no": [5945], "www.degreeaudit.osu.edu": [11959], "fweuro.pe": [2053], "invention.nasa.gov": [11058], "clss.link": [2053], "checksconnect.com": [7339], "www.dpfile.com": [19957], "m.treasury.gov": [16980], "hashcrack.org": [20316], "developer.telesign.com": [21672], "pchat.pw": [2053], "www.runtimeverification.com": [21341], "bravelyonward.com": [2347], "dev.openttdcoop.org": [12180], "sojoxo.me": [2053], "queer.to": [2053], "fs.liu.se": [9238], "id.socialreader.com": [15314], "supporterservices.amnesty.org.nz": [1005], "bostonglobemedia.com": [2288], "bs.serving-sys.com": [14872], "caringcommunity.cornell.edu": [3744], "www.exposingtheinvisible.org": [5625], "hlbrk.net": [2053], "sii.watch": [2053], "www.docracy.com": [4708], "slfacilities.osu.edu": [11959], "torrentfunk.com": [16852], "kickpu.sh": [2053], "seekapply.to": [2053], "abild.es": [2053], "www.pin1.harvard.edu": [7351], "www.jrrt.org.uk": [8782], "www.acehotel.com": [508], "www.wrapbootstrap.com": [18772], "pw.cdn.gmru.net": [6466], "www.gweb.io": [7162], "www.shared.sx": [14917], "www.becu.org": [1549], "it.squat.net": [21549], "kineshma.beeline.ru": [1801], "templates.prediction.io": [13249], "animenewsnetwork.com": [19391], "stdy.pl": [2053], "go.letit3d.com": [2053], "misadv.us": [2053], "lingue.de": [9534], "secure.stage-gettyimages.nl": [6741], "bbrush.me": [2053], "cbu01.alicdn.com": [846], "paoc.me": [2053], "causes.presscdn.com": [2968], "pwblink.co": [2053], "fdri.co": [2053], "shewa.ch": [2053], "go.workway.com": [2053], "ht-cdn.couchsurfing.com": [19798], "www.deepin.com": [4380], "realtimestats.com": [13859], "g.matho.co": [2053], "www.alpinelinux.org": [909], "wbsc.nl": [2053], "odkaz.youber.cz": [2053], "www.account3000.com": [496], "vvsdialog.kmd.dk": [20612], "tilestream.ecc-platform.org": [4978], "ihart.la": [2053], "discovery.illinois.edu": [17544], "tubros.me": [2053], "growthhackers.com": [7110], "www.ukpayments.org.uk": [17254], "www.portaldocidadao.pt": [7000], "cceu.rocks": [2053], "craigeo.us": [2053], "networkcomputing.com": [11461], "pic4.qiyipic.com": [20413], "www.yarcube.ru": [22094], "cdn.ghacks.net": [6445], "b2j.us": [2053], "authors.spl.org": [2053], "aws-cache.vevocdn.com": [17773], "www.communicatelive.co.uk": [3564], "aurel32.debian.net": [4351], "sur.ly": [15897], "www.megamozg.ru": [20775], "aniltj.us": [2053], "zamg.ac.at": [19096], "www.visionairlines.com": [18065], "mala.la": [2053], "fsadownload.ed.gov": [4988], "to.custcomm.net": [2053], "butler.software": [2053], "www.altimatewellness.com": [931], "cs.washington.edu": [17577], "us-business.kaspersky.com": [8958], "*.myregisteredsite.com": [11031], "static.disability.gov": [4622], "www.bls.ch": [1566], "enterprisersproject.com": [5395], "uploads.www.gigya.com": [6779], "chemnitzer.linux-tage.de": [9558], "smartyield.smartstream.tv": [15247], "www.diningservices.wustl.edu": [18290], "mirror.thecthulhu.com": [16600], "metrics.skype.com": [15184], "23andme.com": [89], "s.rezdy.net": [2053], "go.gpal.me": [2053], "verseone.com": [21909], "noblogs.ai-cdn.net": [19326], "4qinvite.4q.iperceptions.com": [20411], "www.ssldecoder.org": [14415], "my.greenqloud.com": [7046], "dagestan.beeline.ru": [1801], "www.modmyi.com": [10700], "cpa.io": [2053], "petergof.beeline.ru": [1801], "secimg.vmmpxl.com": [18099], "i0.letvimg.com": [20668], "www.pdfcrowd.com": [12712], "www.favu.vutbr.cz": [17814], "cdn.vidyard.com": [17998], "www.survs.com": [15917], "my.johnshopkins.edu": [8760], "regonlineportal.activenetwork.com": [540], "www.myaffiliateprogram.com": [20860], "resinfo.org": [14041], "www.ar15.com": [377], "metrics.washingtonpost.com": [18287], "law.lexmachina.com": [9438], "victorinox.com": [17966], "smschur.ch": [2053], "shop.esetnod32.ru": [5055], "www.state.gov": [17345], "jointventure.apple.com": [1160], "i.kuonamaoni.com": [9191], "homepages.thm.de": [16066], "mansfield.gov.uk": [20749], "munch.es": [2053], "www.linuxfr.org": [9570], "soiq.net": [2053], "theucguy.me": [2053], "mirakar.com": [10629], "lando.social": [2053], "sbox.it": [2053], "go.jce.do": [2053], "auth.vt.edu": [18031], "www.businessnews.com.au": [19616], "golfcourseindustry.com": [6949], "fgh.nl": [2053], "cimm.yt": [2053], "dmfj.tk": [2053], "s.ownzone.org": [2053], "gdw.biz": [2053], "www.linphone.org": [9549], "www.dailyinfo.co.uk": [4201], "navigation.1and1.co.uk": [63], "agile.am": [2053], "9or.ca": [2053], "www.npmjs.org": [11738], "bit.nyas.org": [2053], "u.dileep.com.np": [2053], "s.joeyfoo.com": [2053], "www.unbounce.com": [17436], "bolagsverket.se": [2239], "osmc.tv": [21036], "egmd.co": [2053], "daofile.com": [19850], "www.gcentral.biz": [6409], "s.weeker.org": [2053], "www.gsnmagazine.com": [6997], "www.rstudio.com": [13701], "malegislature.gov": [9885], "mydonate.bt.com": [1593], "synthetix.net": [15997], "tftmo.de": [2053], "rxl.io": [2053], "amr.oracle.com": [12284], "youtube.tn": [19016], "bwc.io": [2053], "workout.bz": [2053], "srlabs.co": [2053], "pizzaportal.pl": [21140], "www.bodleian.ox.ac.uk": [17557], "mularroya10.cps.unizar.es": [17643], "www.rbth.com": [21267], "d.responsabl.es": [2053], "cdn1.vox-cdn.com": [18145], "directory.middlemanapp.com": [20793], "mturk.com": [9970], "to.flipjam.me": [2053], "*.commoncriteriaportal.org": [3555], "c1.popads.net": [13129], "email.seznam.cz": [14891], "jason.so": [2053], "master.odoo.com": [11926], "static.weibo.com": [18482], "planetkde.org": [12987], "askleo.com": [1298], "www.webmail.earthlink.net": [5106], "bob.re": [2053], "mwhip.us": [2053], "outreach.osu.edu": [11874], "direct.tescoassets.com": [16396], "www.aldi.fr": [338], "phgkb.cdc.gov": [19663], "*.mgid.com": [9906], "bat.bing.com": [1949], "www.kickassapp.com": [9027], "foxrad.io": [2053], "rocka.by": [2053], "join.app.net": [1141], "lssalud.es": [2053], "admin2.mobile.de": [20811], "www.kuvalehdet.fi": [12335], "anglp.co": [2053], "wh.yslow.org": [2053], "jacobhsu.tw": [2053], "www.darktrace.com": [19852], "openinventionnetwork.com": [12105], "usnwc.edu": [17325], "*.instartlogic.com": [8340], "imagestash.org": [8133], "*.upxth.com": [17695], "www.ctunnel.com": [2745], "webcal.maricopa.edu": [10153], "secure.xtwo.ne.jp": [18906], "businesswales.gov.wales": [6987], "j.andreapit.com": [2053], "www.internet2.edu": [8427], "www.webm.red": [21992], "www.oasis-open.org": [11805], "mode.mg": [2053], "corp.kaltura.com": [8927], "pwdr.li": [2053], "ankang.jd.com": [8571], "utepn.ws": [2053], "suttonhousingpartnership.org.uk": [21620], "www.opendata.ch": [21011], "brusimm.org": [2053], "fr.rsf.org": [14018], "dhaka.usembassy.gov": [21879], "ysza.in": [2053], "www.readme.io": [13841], "www.3questionsgetthegirl.com": [18011], "npt.im": [2053], "lrcinfos.com": [2053], "usguy.tokyo": [2053], "go.syahid.net": [2053], "evesys11.sstest.jp": [15602], "image.email.argos.co.uk": [1224], "nvcl.co": [2053], "www.hummingbird.me": [7760], "*.roem.ru": [14177], "bms.edeka.de": [20006], "go.igal.org": [2053], "hotaisl.es": [2053], "hrbar.co": [2053], "utah.re": [2053], "sprng.io": [2053], "donate.unhcr.org": [17267], "weather.yandex.com.tr": [18954], "omesacr.tv": [2053], "bits.nad.me": [2053], "impv.in": [2053], "mpbio.com": [9948], "doctor.vutbr.cz": [17814], "www.spokane.wustl.edu": [18290], "www.spectrumbusinessinsights.com": [15499], "forums.cpanel.net": [2710], "www.fastmail.fm": [5804], "path2pri.me": [2053], "jmp.fourtain.jp": [2053], "berre.bi": [2053], "steepandcheap.com": [15716], "funi.to": [2053], "ebar.com.ar": [2053], "g6.ro": [2053], "www.lbhf.gov.uk": [9218], "www.neowin.net": [11350], "ja.stackoverflow.com": [15611], "reporting.ligatus.com": [9502], "www.canon.com.cn": [2868], "marsoc.co": [2053], "at-work.me": [2053], "c0.dk": [2053], "launchpad.37signals.com": [143], "sqrd.in": [2053], "www.g2crowd.com": [6412], "go.webhalal.cf": [2053], "ga.fir.im": [20123], "server4.web-stat.com": [18344], "cottage.ngs.ru": [20907], "book.invasion.com": [8458], "download.my-chrome.ru": [20856], "mobileapptracking.com": [20812], "pic.accessify.com": [19263], "services.housing.berkeley.edu": [17526], "go.cramer.com": [2053], "btcbuy.info": [1594], "youtube.be": [19016], "adsupply.com": [583], "www.nextregister.com": [11554], "youtube.ba": [19016], "www.fastlane.nsf.gov": [11249], "fontmarketplace.com": [6106], "www.frallc.com": [5705], "www.samsungtechwin.co.kr": [14509], "ittraining.iu.edu": [8214], "www.shakespeare.osu.edu": [11959], "amrap.us": [2053], "board.carnegiescience.edu": [2916], "www.15mpedia.org": [41], "static.rasset.ie": [13805], "auth.greenqloud.com": [7046], "moco.mp": [2053], "heroti.co": [2053], "www.wowinterface.com": [18694], "zone-h.org": [19211], "ngobas.org": [2053], "community.speed-dreams.org": [15500], "www-cache2.extensis.com": [5634], "martus.org": [10199], "dramauk.co": [2053], "to.jkohl.com": [2053], "tesglobal.com": [21679], "www.minilock.io": [10608], "bitcasino.io": [1979], "messerfinancial.com": [10470], "i.alicdn.com": [846], "autodiscover.leeds.ac.uk": [17604], "defender411.us": [2053], "dz.meituan.com": [10405], "blogs.kennedy-center.org": [20585], "www.themesandco.com": [16608], "website-cdn.pico-app.com": [12875], "lapha.ms": [2053], "www.unixstickers.com": [17641], "rovid.aiee.hu": [2053], "ogr.uillinois.edu": [17238], "manage.dynect.net": [4933], "www.extratorrentlive.com": [20082], "registrierung.springer-medizin.de": [15560], "accounts.itcs.umich.edu": [17552], "s8bbs.com": [21352], "www.projectdent.com": [13365], "rezaa.li": [2053], "yrfree.be": [2053], "b.jc21.com": [2053], "goenergetix.com": [5352], "jli.st": [2053], "lijin.meituan.com": [10405], "planet.collabora.co.uk": [3481], "gearlab.osu.edu": [11959], "prj.be": [2053], "stopbadware.org": [15745], "aneros.com": [1052], "www.hootsuite.com": [7633], "www.livestrong.org": [9677], "b2btagmgr.azalead.com": [19469], "www.zuoyebang.com": [22145], "myspc.ml": [2053], "exante.eu": [5092], "*.gameswelt.net": [6560], "mech.tk": [2053], "cc94.co": [2053], "tracking.codecoon.com": [3425], "reports.zoho.com": [19202], "eecs-search.eecs.mit.edu": [9916], "access.ripe.net": [14128], "chapma.nu": [2053], "my.oops.org": [12096], "randl.ph": [2053], "amaintf.sfu.ca": [14893], "123-reg.co.uk": [30], "entertainmentlogin.verizon.com": [17918], "pijnacker-nootdorp.nl": [11324], "cesarjes.us": [2053], "www.openmamba.org": [21018], "www.rockpapershotgun.com": [14168], "careers.amica.com": [993], "to.jshb.me": [2053], "qualcomm.com": [13558], "russian.bishkek.usembassy.gov": [21879], "pgi.com": [12451], "s.fapce.com.br": [2053], "status.coinfloor.co.uk": [3467], "jobs.pcworld.com": [15074], "*.easily.co.uk": [5111], "marwo.co": [2053], "www.pdcnet.org": [12838], "help.jd.com": [8571], "kascope.co": [2053], "www.pindrop.com": [21124], "entsupport.symantec.com": [15969], "tongchengguan.jd.com": [8571], "su.netbytes.com": [2053], "316space.harralmedia.com": [2185], "hivos.org": [7573], "treehousei.com": [16982], "secure.westernunion.com": [18512], "tt.gy": [2053], "www.indure.org": [7912], "secure.vispa.net.uk": [18073], "inzp.in": [2053], "laroche.starfishsolutions.com": [21565], "natz.net": [2053], "*.nationalgeographic.com": [11269], "www7.smartadserver.com": [15228], "ussco.com": [17504], "guadec.org": [6514], "speech.leseweb.dk": [21530], "stamp.cm": [2053], "services.bristol.gov.uk": [19592], "www.thespartaninstitute.com": [15475], "c2.rgstatic.net": [13655], "www.youtube.com.kw": [19016], "pmetrics.performancing.com": [12783], "www.my.commbank.com.au": [3542], "on.wgal.com": [2053], "www.hsbc.com.mu": [20382], "trade.cex.io": [2644], "d.camiel.co": [2053], "camtools.cam.ac.uk": [17529], "success.emssoftware.com": [20035], "cloud0.lchost.co.uk": [9220], "*.russia.ru": [14281], "jgy.cr": [2053], "agresearchmag.ars.usda.gov": [17495], "pe.godaddy.com": [6898], "services.amazon.es": [19370], "pamfax.biz": [12556], "rui.do": [2053], "www.adtmag.com": [312], "*.sipr.ucl.ac.be": [17516], "www.shopmimigreen.com": [14967], "myyearbook.com": [11010], "fm.tl": [2053], "www.disqus.com": [4656], "*.longform.org": [9755], "ehsanakhgari.org": [20019], "copie.me": [2053], "costco.com": [3762], "ovs.acunetix.com": [546], "wb-sn.com": [2053], "www.kdab.com": [8870], "mabag.fr": [2053], "conns.ie": [2053], "*.globalwitness.org": [6839], "mobile.greyhound.com": [7073], "static5.uk.businessinsider.com": [2512], "www.lingue.de": [9534], "b.mpt.io": [2053], "acd.mic.io": [2053], "www.drugscience.org.uk": [4874], "smack.co.uk": [15223], "blockscript.com": [2139], "zaifx.jp": [2053], "www.heerenveen.nl": [11324], "medicare.gov": [20772], "www.news.anthem.com": [19395], "jenkins.mni.thm.de": [16066], "mods.factorio.com": [20091], "mod.my": [2053], "www.cambridge.gov.uk": [19630], "vitamindcouncil.org": [18086], "rcuny.li": [2053], "mlmurph.com": [2053], "www.markng.co.uk": [10170], "www.mp3skull.wtf": [9944], "www.freenode.net": [20168], "nursing.georgetown.edu": [6668], "go.pl.bbelements.com": [1764], "mersaidee.us": [2053], "gbgo.in": [2053], "manboo.st": [2053], "www.paddleapi.com": [12528], "lenen.snsbank.nl": [14382], "www.eclipso.ch": [5151], "partner.domaining.com": [4753], "bmntsys.tm": [2053], "sv.theanarchistlibrary.org": [16482], "a772.g.akamai.net": [1161], "hc2.humanclick.com": [9655], "photos.aircrack-ng.org": [789], "rwhy.es": [2053], "uptime4.me": [2053], "gopne.ws": [2053], "www.k2s.cc": [8858], "ohiolink.edu": [11961], "www.clearlink.com": [3293], "saic.com": [14305], "ativismo.org.br": [1351], "artemisinternet.com": [1265], "humbl.es": [2053], "necu.org": [11322], "cbj.co": [2053], "autoconfig.yandex.com.tr": [18954], "www.convertexperiments.com": [19784], "www.gdata.de": [6410], "webdesign.stanford.edu": [15635], "ohmy.lv": [2053], "ipo.uchicago.edu": [17532], "de-ru.dict.cc": [4536], "www.iojs.org": [8486], "nublue.co.uk": [11758], "www.hipertextual.com": [20342], "paragonie.com": [12594], "l.tyang.im": [2053], "ndr.me": [2053], "sav.tempty.hu": [2053], "pleaseignore.com": [13032], "anas.cc": [2053], "bike2.me": [2053], "cas.richrelevance.com": [14104], "s19.cnzz.com": [3391], "xyx.hao123.com": [20312], "professionalsecuritytesters.org": [13354], "www.zb45.nl": [19062], "mensagem.es": [2053], "fastshoppingcart.com": [13590], "odod.info": [2053], "www.auditorius.ru": [1399], "mrsmcnastys.com": [10866], "teknews.me": [2053], "www.anz.co.nz": [19399], "bkay.me": [2053], "test-www.car.com": [2886], "www.atagar.com": [1344], "pycm.co": [2053], "ticketone.it": [16683], "static.a-ads.com": [250], "wotby.com": [2053], "l.seaway.edu.vn": [2053], "s.nullcraft.de": [2053], "ww.premiumlinkgenerator.com": [21193], "isyne.us": [2053], "ndp.church": [2053], "vonuns-vonhier.migros.ch": [10566], "www.zonomi.com": [19216], "www.hboneplus.hu": [11118], "crtvlsy.ca": [2053], "www.doteasy.com": [4796], "wanning.meituan.com": [10405], "amazon.com.au": [19366], "boligtxt.no": [2053], "fmhub.us": [2053], "exam.ignou.ac.in": [8102], "www.laptop.hu": [9308], "www.se.no": [21393], "home.cnblogs.com": [19743], "autistici.org": [1450], "dica.online": [2053], "cdn2.rsc.org.uk": [13691], "secure-media.victoriassecret.com": [17964], "gulli.com": [20295], "dittrich.link": [2053], "s.effectivemeasure.net": [5208], "hplusdigitalseries.com": [7227], "hacking.ventures": [7284], "adfs.vutbr.cz": [17814], "dbrack.co": [2053], "l.clients.am": [2053], "nnn.is": [2053], "tdlab.co": [2053], "cruclick.us": [2053], "endsp.am": [2053], "aklamio.com": [806], "wayf.mit.edu": [9916], "hgyol.in": [2053], "sfsoc.us": [2053], "benjerrys.co": [2053], "www.richardandjudy.co.uk": [14107], "dg50.mycdn.me": [11014], "anybots.com": [1118], "cla.to": [2053], "blocket.com": [2146], "mobil.yandex.com.tr": [18954], "*.www.champssports.com": [3051], "hl1x.uk": [2053], "servedby.advertising.com": [701], "blog.viglink.com": [18003], "l.loslotos.com": [2053], "b-b.io": [2053], "profiles.tiki.org": [16715], "www.stickhet.com": [15729], "www.freitag.de": [6313], "www.bobcares.com": [2226], "www.vanessatorrivilla.com": [8122], "r.frog260.com": [2053], "izkl.co": [2053], "gorill.as": [2053], "milc.ms": [2053], "asdashboard.stanford.edu": [15635], "www.dn.dk": [4128], "store.osmc.tv": [21036], "l.tokk.de": [2053], "cuenot.es": [2053], "www.zalando.no": [19094], "www.dnsquery.org": [4138], "colaboratory.jupyter.org": [8839], "glam.ps": [2053], "nva.org": [11287], "websitealive9.com": [18445], "bsrs.me": [2053], "cre8rmov.org": [2053], "try.jd.com": [8571], "space2u.com": [15454], "www.viceland.com": [21921], "bfpeo.pl": [2053], "www.bedis.eu": [1797], "abdn.am": [2053], "security.cpanel.net": [2710], "www.xato.net": [18845], "ftrsck.com": [2053], "access.edgar-online.com": [4991], "ww1.salford.gov.uk": [21362], "ppls.link": [2053], "pdog.me": [2053], "kaizencrossfit.com": [4094], "www.satoshilabs.com": [21372], "fressnapf.de": [6326], "wefightcensorship.org": [18326], "communities.intel.com": [8359], "l.fleur.ua": [2053], "www.manasource.org": [10106], "www.pethelpful.com": [21113], "zhonggongyc.taobao.com": [16206], "tkt.bz": [2053], "obrien.akvorrat.at": [811], "www.danblah.com": [4210, 4211], "flownative.com": [6063], "www.privateinternetaccess.com": [13324], "cachethq.io": [2768], "global.wustl.edu": [18290], "fas.ohnward.com": [11966], "mdl2.udn.com": [17224], "ekwb.com": [5019], "fr.getapp.com": [20230], "www.dizzyjam.com": [19929], "b9r.co": [2053], "trustnet.wellcome.ac.uk": [22001], "wigs.ly": [2053], "nmfc.es": [2053], "www.indymedia.org": [8234], "regpop.com": [2053], "tenon.com": [16374], "www.e-cegjegyzek.hu": [4947], "litle.com": [9631], "www.random.org": [13780], "epost.powertech.no": [13221], "11monthmba.info": [2053], "iatspayments.com": [7816], "spotlight-media.jp": [21542], "files.snstatic.fi": [14383], "www.wirral.gov.uk": [18672], "on.bobr.com": [2053], "cisecurity.org": [2673], "ltsdo.it": [2053], "4uw.co": [2053], "lacriticona.ourproject.org": [21044], "genua.de": [20223], "partner.archive-it.org": [1202], "woodm.ag": [2053], "2nu.gs": [2053], "parking.chichester.gov.uk": [19703], "rtax.criteo.com": [3872], "www.antifascistnetwork.org": [19396], "tricae.me": [2053], "zhihu.com": [19173], "oftc.net": [11821], "istem.engineering.osu.edu": [11959], "hitr.ch": [2053], "observatory.derbyshire.gov.uk": [19895], "*.roku.com": [14185], "pscr.co": [2053], "eno.ug": [2053], "tudyma.cz": [2053], "brawl.in": [2053], "www.jobindex.dk": [8746], "www.sunshineweek.org": [15862], "mapping.scotborders.gov.uk": [14636], "ibittm.com": [2053], "booking.wokingham.gov.uk": [22042], "linkingyou.to": [2053], "catalog.yandex.by": [18953], "sec-cdn.static.xiaomi.net": [18874], "www.magnet.ie": [10027], "photos2.zillowstatic.com": [19182], "www.l2020.org": [9215], "envz.in": [2053], "*.spreadshirt.pl": [15552], "rzphoto.de": [2053], "www.magicaffiliateplugin.com": [10022], "cdn.usertags.com": [17366], "zarrel.la": [2053], "timt.biz": [2053], "r4ms.co.uk": [2053], "x.dpstatic.com": [19958], "sciontag.com": [2053], "globalways.net": [6863], "www.sycom.co.jp": [15962], "iway.ch": [20518], "platformone.neustar.biz": [11472], "www.integrityglobal.com": [20471], "krnr.net": [2053], "s0.hao123img.com": [20313], "www.idrbiz.com": [9910], "a.alee.mx": [2053], "onlinechat.nic.cz": [11572], "www.whirlpool.net.au": [18542], "topcoder.com": [16831], "go.amcpny.com": [2053], "travel.thankyou.com": [16435], "images3.q8car.com": [13507], "bchnc.org": [2053], "jane.io": [2053], "ivantur.es": [2053], "www.ashampoo.com": [1285], "yfs.rocks": [2053], "kvack.org": [9200], "www.open.wien.at": [22025], "storage.googleapis.com": [6967], "www.foldingforum.org": [6101], "www.vanwinkles.com": [17846], "www.etarget.sk": [5478], "ww2.epeat.net": [5040], "intr.mx": [2053], "www.alumni.wustl.edu": [18290], "zenmate.pk": [19133], "zona.telecom.sk": [16346], "info.arte.tv": [19422], "*.kde-files.org": [21007], "sakscanada.capitalone.com": [2878], "login.alpha.linode.com": [9547], "acnc.gov.au": [301], "www.motherpipe.co.uk": [10798], "www.xda-developers.com": [18808], "szm.com": [16021], "bcnm.stanford.edu": [15635], "www.thefappening.sexy": [16540], "read.seas.harvard.edu": [7350], "uif.unizar.es": [17643], "kaffee.migros.ch": [10566], "*.bishopinteractive.com": [1971], "www.dasource.ch": [4243], "washin.st": [2053], "cptl.pn": [2053], "www.trend.az": [21786], "cloudmagic.com": [3350], "mb-de.com": [2053], "www.thread.com": [16658], "s.zawanet.com": [2053], "vops1.us": [2053], "mss.empireblue.com": [20033], "hosting.fleetnetworks.net": [6027], "pqshibboleth.proquest.com": [13340], "to.libala.info": [2053], "flirt.badische-zeitung.de": [1650], "s4dl.co.uk": [2053], "piteo.us": [2053], "disabledgo.com": [4623], "mitsubishi.com": [10651], "www.trusteer.com": [17068], "url.kiyong2.net": [2053], "trustedcomputinggroup.org": [17066], "abandonpics.com": [2053], "www.sakhalin.info": [21360], "ptry.xyz": [2053], "www.tdnam.com": [16245], "www.payconnect.net": [4992], "www.xtwo.ne.jp": [18906], "on.geeku.be": [2053], "maseru.usembassy.gov": [21879], "*.cert-verbund.de": [2636], "huisk.es": [2053], "gemeentewestland.nl": [11324], "www.ovh.pt": [12378], "lmd.tf": [2053], "jw.refe.rs": [2053], "l.ptclinic.com": [2053], "warwick-castle.com": [18282], "www.openfmri.org": [12231], "techenclave.com": [16265], "merchants.livingsocial.com": [9679], "www.rpgmakerweb.com": [14236], "suva.usembassy.gov": [21879], "www.backbonesecurity.com": [1637], "www.dealchicken.com": [12843], "www.ovh.pl": [12378], "www.myprojects-proposals.ncl.ac.uk": [11073], "myaccount.lib.ncsu.edu": [11690], "clientportal.heanet.ie": [7406], "on.gucci.com": [2053], "pac.re": [2053], "coursera.org": [3788], "www.datenschutz.de": [18037], "dowl.in": [2053], "mdm.sc": [2053], "m.fanfiction.net": [5762], "pltfr.ma": [2053], "a.apadv.co": [2053], "img1.video.s-msn.com": [9959], "sheffield.ac.uk": [17624], "support.easy-hebergement.fr": [5134], "cntz.nl": [2053], "savingplac.es": [2053], "enterprise.gitbook.com": [6794], "secure.aadcdn.microsoftonline-p.net": [10545], "omeo.alipay.com": [857], "bnkmd.co": [2053], "pic-images.pw": [2053], "www.ashleymadison.com": [1290], "uniblue.com": [17465], "www.fas.org": [5840], "jira.neos.io": [11348], "www.thesprawl.org": [15551], "www.statichukd.com": [7693], "go.vc.ru": [2053], "zendesk.get.no": [20229], "okcoin.com": [11827], "14day.site": [2053], "iris.ut.ee": [17347], "asus.jd.com": [8571], "ntid.rit.edu": [13667], "www.mixx.com": [10660], "jp.unionpay.com": [17478], "d.nstrm.nl": [2053], "octorate.com": [11916], "support.kaspersky.com": [8958], "t.carrera.ag": [2053], "read.amazon.in": [19372], "on.gurustop.net": [2053], "stuff.sh": [2053], "b.gatech.edu": [2053], "ahor.ro": [2053], "ads4bg.cf": [2053], "www.mechon-mamre.org": [10302], "www.changecopyright.ru": [19685], "www.bauart.htwk-leipzig.de": [7736], "tampermonkey.net": [16193], "www.symphonyos.com": [21633], "httpwatch.com": [7245], "ly.anthstr.com": [2053], "stkat.es": [2053], "which.co.uk": [18539], "www.oyoony.de": [21057], "s.dime.media": [2053], "www.jamendo.com": [8649], "www.seedprod.com": [14792], "orafarm.com": [11857], "a.rehabs.pw": [2053], "online.aasc.vn": [2053], "ugr.ucsc.edu": [17591], "a.oup.com.mx": [2053], "www.therocktrading.com": [16573], "forum.geogebra.org": [6659], "ikeapers.com": [2053], "my.post-gazette.com": [12945], "m-pathy.com": [9858], "asms.reachboarding.com": [21272], "mtf.cern.ch": [2632], "coas.tl": [2053], "biditbob.com": [1898], "www.qtastatic.com": [13548], "gmechts.eu": [2053], "www.citrixonline.com": [3238], "kb.iu.edu": [8214], "www.advantagemedia.com": [689], "edk.io": [2053], "syndication.twimg.com": [17153], "www.admission.com": [16690], "u.b24.am": [2053], "www.lincs.fr": [9234], "sook.io": [2053], "mrchbr.co": [2053], "www.bioelectronics.leeds.ac.uk": [17604], "packagecontrol.io": [12517], "www.checkdomain.de": [3107], "frbapp.com": [2053], "www.tortoisegit.org": [16867], "ziggo.com": [19178], "hartcol.in": [2053], "insecta.shoes": [2053], "sphn.us": [2053], "partner.path.com": [12662], "www.pixelated-project.org": [12955], "facebook.nl": [5736], "www.secdev.ca": [14700], "*.netzguerilla.net": [11468], "smg.io": [2053], "38d.gs": [2053], "www.united-internet.de": [17491], "steppingout.stanford.edu": [15635], "*.gencat.cat": [6646], "cboo.st": [2053], "l.jnn.gs": [2053], "unisys.co.jp": [17488], "mayday.us": [10270], "northkoreatech.org": [11694], "conservatives.com": [3655], "res.mail.qq.com": [13514], "pntg.net": [2053], "mitei.mit.edu": [9916], "www.linuxforums.org": [9582], "030mag.de": [2053], "w3.anadolu.edu.tr": [1025], "al.st": [2053], "www.migrol-olio-combustibile.ch": [10562], "admin.clarahost.co.uk": [3271], "*.stayfriends.ch": [15698], "www.500ish.com": [193], "blogmaintenance.talktalkbusiness.co.uk": [16185], "go.zhang.me": [2053], "go.scoh.gov": [2053], "shopapi.ranking.rakuten.co.jp": [13768], "url.cevux.com": [2053], "descience07.carbonmade.com": [2891], "export.yandex.by": [18953], "*.jackimaging.com": [8629], "min.ndla.no": [11309], "kweed.co": [2053], "nttcoms.com": [11156], "canadapost.ca": [2852], "edg.im": [2053], "groupava2.mycdn.me": [11014], "safar.is": [2053], "*.myheritage.pl": [11023], "bediff.com.br": [1775], "blindseeker.com": [19557], "l.sgr.cc": [2053], "www.cnr.berkeley.edu": [17526], "www.legolanddiscoverycentre.ca": [9391], "www.novara.ie": [4597], "admin.sextoyfun.com": [14888], "shouji.tmall.com": [21748], "archive.li": [1203], "link.aebike.com": [2053], "r.gatech.edu": [2053], "blls.ie": [2053], "legolas-media.com": [9392], "krug.novayagazeta.ru": [20936], "m.nationalgrid.com": [11270], "zendylabs.com": [19141], "ucsf.edu": [17589], "yworks.de": [22091], "gt-us.co": [2053], "srd.simba.taobao.com": [16206], "copyninja.info": [19791], "collab.live": [2053], "longaccess.com": [9753], "jdale.us": [2053], "marsdd.it": [2053], "chlomo.org": [3153], "trane.com": [21778], "*.sifterapp.com": [11551], "sklar.co": [2053], "za.effectivemeasure.net": [5208], "www.metoffice.gov.uk": [10472], "stats.pandora.com": [12564], "fndra.co": [2053], "w.grbz.jp": [2053], "px.meituan.com": [10405], "actucarlotta.fr": [2053], "www.americanancestors.org": [974], "www.popsci.com": [13135, 13136], "images.del.icio.us": [8065], "fcstr.com": [2053], "fewdplay.com": [2053], "xxi.li": [2053], "www.webnium.co.jp": [18431], "redcap.wustl.edu": [18290], "www.elpueblo.com": [5239], "u.ayd.jp": [2053], "venturebeat.com": [17903], "affiliatefuture.com": [19316], "zocalopublicsquare.org": [19199], "rockni.ca": [2053], "bit2bit.us": [2053], "www.valuecommerce.com": [17835], "stirl.in": [2053], "www.nluug.nl": [11127], "itradecimb.com.my": [2663], "wwugo.com": [2053], "sgbk.co": [2053], "play-now.media": [2053], "www.rawgit.com": [13814], "i.hitravel.xyz": [2053], "bp.sgphotog.com": [2053], "1dwh.co": [2053], "r.whi.st": [2053], "titulospropios.uned.es": [17446], "fmg.fm": [2053], "rvn.us": [2053], "www.opnsense.org": [11855], "brightkidsnyc.com": [2381], "ixl.me": [2053], "ac.mediatemple.net": [10331], "shop.bt.com": [1593], "upay.co.uk": [17671], "engine.adsupply.com": [583], "adntokyo.gunosy.com": [7151], "select.social": [2053], "r.bujju.com": [2053], "licensing.sstaffs.gov.uk": [21555], "www.barter.vg": [1731], "chriscowley.me.uk": [3164], "paf.web.cern.ch": [2632], "preactor.co": [2053], "permskiy-kr.beeline.ru": [1801], "*.shkb.ch": [20574], "dvnl.in": [2053], "cook.ba": [2053], "d2e.co": [2053], "cpanel01.unimatrix.si": [21853], "ci.swift.org": [15941], "pge.post-gazette.com": [13175], "www.7eer.net": [224], "tvingo.enaza.ru": [5332], "magazine.thehackernews.com": [16604], "buro.im": [2053], "*.atomic-clock.org.uk": [17402], "fr.cloudflare.com": [3344], "redmine.vpsfree.cz": [21956], "visitors.berkeley.edu": [17526], "pjb3.me": [2053], "avram.co": [2053], "bitcoinpool.com": [2019], "catch.pt": [2053], "ui3.assets-asda.com": [19442], "get.mynewsdesk.com": [11030], "actiac.org": [19269], "sarahwoo.uk": [2053], "trpx.nyc": [2053], "xth.is": [2053], "www.northeastjobs.org.uk": [20926], "mlwx.co": [2053], "comviq.se": [3611], "jimei.meituan.com": [10405], "x.xo321.com": [2053], "fl.navs.me": [2053], "www.zh.ch": [21629], "theoutnet.com": [16569], "www.ais.by": [19333], "grantsandcontracts.wustl.edu": [18290], "whems.me": [2053], "pingone.com": [12898], "vuub.in": [2053], "bks.tg": [2053], "mxtb.co": [2053], "stat.ttk-chita.ru": [21807], "jai.buzz": [2053], "ui.ptlogin2.qq.com": [13514], "www.honeybeeloans.com": [7628], "homz.co": [2053], "kiwi.cr": [2053], "sbw.im": [2053], "*.gngr.info": [6883], "citrix.com": [3237], "jessiefit.com": [2053], "tw.adsmx.co": [2053], "*.securityexperten.com": [14771], "exas.co": [2053], "srg.vg": [2053], "account.lego.com": [9222], "img.yes.co.il": [22101], "text.westlaw.com": [18514], "fiel.in": [2053], "anand.am": [2053], "my.netviewer.com": [11451], "navr.es": [2053], "*.one.org": [11839], "tiki-toki.com": [16714], "shanghai.legolanddiscoverycenter.cn": [9391], "go.revaul.com": [2053], "on.koat.com": [2053], "cyg.me": [2053], "tdog-short.link": [2053], "mduu.de": [2053], "ncta.com": [11077], "www.kis.hosteurope.de": [7660], "www.vshosting.cz": [17804], "swars.jp": [2053], "webmail.thm.de": [16066], "www.migrosmagazin.ch": [10567], "www.jabber.dk": [8621], "sdp.tw": [2053], "voo.st": [18138], "roundcube.ouvaton.coop": [12360], "gr4m.com": [2053], "blog.coveralls.io": [3799], "cybertip.ca": [4051], "www.net.bme.hu": [1570], "amazon.es": [19370], "b.dns9.me": [2053], "*.blogspot.nl": [2166], "*.blogspot.no": [2166], "next.36kr.com": [142], "w.jianguoyun.com": [8715], "on.bc.edu": [2053], "purchasing.osu.edu": [11959], "proview.thomsonreuters.com": [16650], "pa.ag": [2053], "www.telltalegames.com": [16359], "growery.org": [7109], "italian.alibaba.com": [850], "www.friendster.com": [6336], "957.be": [2053], "antioch.illuminateed.com": [20430], "noveo.ru": [2053], "*.afnic.fr": [321], "cf-example.com": [3035], "www.placehold.it": [12973], "socialurl.co": [2053], "www.ixmaps.ca": [20522], "nyny.lv": [2053], "lists.windowmaker.org": [18640], "spout.ussg.indiana.edu": [8215], "mattrhod.es": [2053], "fr.isidewith.com": [20414], "recipe.ly": [2053], "tumi.rocks": [2053], "dbc.im": [2053], "p1.zemanta.com": [19128], "bujoi.me": [2053], "www.thn.li": [16067], "www.remoteapp.windowsazure.com": [18644], "crap.leocav.net": [2053], "www.reelvidz.com": [13944], "xorcode.net": [2053], "www.rbc.ua": [21263], "fltz.co": [2053], "www.vh2.ro.vutbr.cz": [17814], "metapress.com": [10476], "blog.compete.com": [3583], "rxin.fo": [2053], "tassl.cz": [2053], "kennb.org": [2053], "media.jd.com": [8571], "go.wod.by": [2053], "rm.recs.richrelevance.com": [14104], "media.richrelevance.com": [14104], "www.univention.de": [17511], "www.publicintelligence.net": [13438], "assets.jimstatic.com": [8720], "content.www.rspca.org.uk": [13695], "www.pnp4nagios.org": [12478], "elva.mapillary.com": [10135], "granne.me": [2053], "www.hertz.es": [7504], "dunya.compmusic.upf.edu": [17674], "www.youtube.sa": [19016], "finam.ru": [20117], "fvn.no": [6170], "www.youtube.se": [19016], "navy.gov.au": [14231], "www.youtube.sg": [19016], "cmsdoc.cern.ch": [2631], "hellomer.ch": [2053], "www.parents.wustl.edu": [18290], "*.unistra.fr": [17565], "histv.co": [2053], "wsyste.ms": [2053], "daha.net": [15339], "poker24.link": [2053], "domaincoin.net": [4742], "lang.ml": [2053], "sustatic.com": [15799], "esur.in": [2053], "ajude.cc": [2053], "www.mzv.sk": [15217], "webmail.hinxton.wellcome.ac.uk": [22001], "mqq-imgcache.gtimg.cn": [7120], "tlp.link": [2053], "static.tofour.net": [16793], "lists.verisignlabs.com": [17916], "www.georgetown.edu": [6668], "www.vesica.ws": [17942], "mosr.sk": [15217], "locuspri.me": [2053], "s.otos.be": [2053], "mooddisorders.ca": [10759], "empeopled.com": [5316], "brave.com": [19587], "bits.indiv.io": [2053], "tempo30.vcd.org": [17766], "42na.de": [2053], "symc.ly": [2053], "roncan.net": [2053], "hybrid.autobytel.com": [1461], "10j.co": [2053], "www.liv.sparebank1.no": [21524], "go.mygg.xyz": [2053], "podsincolor.xyz": [2053], "l.j2w.fr": [2053], "vanwa.co": [2053], "ecash.io": [4982], "humanaction.com": [7751], "asl19.org": [390], "www.buffalo.edu": [17583], "www.agilialinux.net": [19322], "cleanupbrita.in": [2053], "citizen-times.com": [1286], "naes.co": [2053], "www.bookmyname.com": [2252], "www.littler.com": [9634], "*.peerius.com": [12734], "float.ly": [2053], "origin-www.hertz247.com": [7511], "lanc.es": [2053], "sr.se": [15928], "a.ixq.com.tw": [2053], "the.fact.is": [2053], "pzip.it": [2053], "www.eastlothian.gov.uk": [5114], "www.rnsfpw.net": [3546], "bknpt-web5.bknpt.usc.edu": [17564], "l.adalia.ma": [2053], "get.mogo.ca": [2053], "pirate-proxy.info": [21709], "www.wildarchives.com": [18600], "nvc.ro": [2053], "click.mz.simba.taobao.com": [16206], "i.tsit.eu": [2053], "thecable.foreignpolicy.com": [6142], "www.thepiratebay.xn--q9jyb4c": [21709], "*.mixpanel.com": [10658], "staffstore.canon.com.au": [19640], "loan.mybank.cn": [20861], "www.adm.cuhk.edu.hk": [2747], "static.liverail.com": [9656], "haining.meituan.com": [10405], "fullstory.com": [6369], "pythonhosted.org": [13503], "eservice.spdb.com.cn": [21526], "f.root.cz": [14199], "kkg.buzz": [2053], "plymouth-self.achieveservice.com": [19265], "sumaz.in": [2053], "sjpr.co": [2053], "wii.pcf.wustl.edu": [18290], "tpb-proxy.top": [21771], "www.smuxi.de": [15262], "www.ch.bme.hu": [1570], "talk.google.com": [6962], "nhr.me": [2053], "hiig.de": [7198], "www.facebook.be": [5736], "www.sci-hub.org": [14615], "go.tomick.pl": [2053], "national-lottery.co.uk": [11260], "eis.ftc.gov": [5837], "sr2.liveperson.com": [9655], "embed.gettyimages.com": [6741], "findretros.com": [5954], "www.ebuzzing.com": [5145], "www.coursetalk.com": [3787], "mc.logmeinrescue.com": [9713], "www.respectourprivacy.com": [14046], "www.versacart.com": [17925], "webproxy.stealthy.co": [21571], "msd.me": [2053], "*.spylog.com": [15578], "cs.3.boardgamearena.com": [2219], "www.hhg.osu.edu": [11959], "ln.seanfisk.com": [2053], "kipstuff.com": [2053], "bigscorp.com": [2053], "hetzner.de": [7515], "*.mci4me.at": [10292], "irs.gov": [7964], "huevents.harvard.edu": [7351], "*.statuspage.io": [15691], "logo.taobao.com": [16206], "sugoid.es": [2053], "tjk.photo": [2053], "shop.snob.ru": [15285], "dlvr.it": [4684], "mapi.sitelock.com": [15114], "bit.gibo.co.uk": [2053], "sallie.stanford.edu": [15635], "chiphell.com": [3147], "yo.livinggym.tw": [2053], "www.achievementstats.com": [513], "htdj.in": [2053], "downloads.theforeman.org": [21699], "www.regularish.com": [13976], "loginza.ru": [9722], "*.la-hora.org": [17402], "www.parcelforce.com": [12603], "www.transmissionbt.com": [16951], "s.janke.im": [2053], "theco-op.ca": [2053], "en.chaturbate.com": [3093], "neostuff.com.mx": [2053], "vpn.weather.gov": [18331], "kjo.hn": [2053], "*.typography.com": [17192], "shaklee.com": [14899], "thump.vice.com": [17959], "juye.meituan.com": [10405], "zaujalo.me": [2053], "www.openmpt.org": [12148], "www.doctortrusted.org": [4712], "ms.urel.feec.vutbr.cz": [17814], "speedclicks.ero-advertising.com": [5451], "it-agenten.com": [7983], "usit.co": [2053], "spinpo.st": [2053], "a.thesash.me": [2053], "x20.es": [2053], "strato-pro.com": [14430], "supertl.me": [2053], "ixit.cz": [8028], "btfm.nu": [2053], "gvntube.com": [6516], "shs.wustl.edu": [18290], "blog.oo-software.com": [12092], "mypirateproxy.com": [21709], "de.aliexpress.com": [847], "openstat.com": [21022], "*.osvdb.org": [11876], "twimgs.com": [16276], "h.kabam.com": [2053], "flo.cno.org": [3487], "btc.diet": [1597], "cl.ick.me": [2053], "diasp.de": [4526], "www.securabit.com": [14721], "go.interone.de": [2053], "*.abr.gov.au": [1420], "bbry.in": [2053], "oesar.osu.edu": [11959], "www.physics.ox.ac.uk": [17557], "ta.media": [2053], "*.sonic.net": [15385], "cnslt.biz": [2053], "masinfo.dk": [2053], "sf.se": [14346], "www.invasion.com": [8458], "s.intsig.net": [20481], "servizi.tiscali.it": [16770], "*.niden.net": [11585], "m.kalwedo.com": [2053], "cdn.jsdelivr.net": [8805], "benefits.ornl.gov": [11892], "cx.meituan.com": [10405], "members.sofn.com": [15336], "onlinebiz.co": [2053], "l.ifeli.me": [2053], "mynottingham.nottingham.ac.uk": [11726], "golive123.tv": [2053], "www.eliotsocietyvolunteer.wustl.edu": [18290], "www.ire.org": [20496], "www.internetdefenseleague.org": [8430], "bslw.it": [2053], "semaphoreapp.com": [21408], "it.engineering.illinois.edu": [17544], "*.gmedianetworks.com": [6880], "cas01.autoscout24.ch": [1470], "dave.pt": [2053], "blog.infogr.am": [8258], "cfs-ca.co": [2053], "postdispat.ch": [2053], "www.izea.com": [8031], "migipedia.migros.ch": [10566], "livehelpvm01.ikoula.com": [8112], "www.bbva.es": [1766], "dgrab.net": [2053], "de.pycon.org": [13492], "clientservices.quinstreet.com": [13598], "appgratis.com": [1144], "cb.meituan.com": [10405], "advertising.amazon.com": [952], "mtest.gatewaytohomechoice.org.uk": [20205], "go.5rooms.com": [2053], "my.qrsolutions.com": [13516], "preprod.it.hispeed.ch": [21865], "quiz.risingstack.com": [21312], "auze.ro": [2053], "hi-eg.com": [7524], "nluug.nl": [11127], "registrierung.gmx.net": [6467], "www.digitalforest.co.jp": [11156], "product-images.imshopping.com": [7910], "tagboard.com": [21649], "arkly.ie": [2053], "g.fastcompany.net": [5797], "wincent.com": [18635], "wlfe.co": [2053], "dlisted.com": [4682], "salattu.huuto.net": [20398, 20399], "www.masspirg.org": [9880], "vsljr.nl": [2053], "i.adamevers.com": [2053], "eshop.rct.cuhk.edu.hk": [2747], "flwx.org": [2053], "likino-dulevo.beeline.ru": [1801], "dev.eclipse.org": [5150], "www.scenemusic.net": [14581], "www.der-preis-jaeger.de": [4458], "frieinntekter.regjeringen.no": [13972], "lif.to": [2053], "stu.gs": [2053], "exp.st": [2053], "static.slo-tech.com": [15211], "sn.elsl.ooo": [2053], "discovercarlisle.co.uk": [19927], "asc.osu.edu": [11959], "in.sane.pro": [2053], "aue.rs": [2053], "git.qubes-os.org": [13574], "*.govexec.com": [1352], "nordi.cc": [2053], "nordi.ca": [2053], "j.mp": [8557], "sgnr.co": [2053], "pst.mr": [2053], "cmhig.in": [2053], "i4.services.social.s-msft.com": [14296], "es.prepaid-phones.t-mobile.com": [16026], "news.js.org": [20555], "chillingeffects.org": [3137], "panel.phpnet.org": [12454], "*.sslcert35.com": [15599], "dmreg.co": [2053], "pbst.cc": [2053], "yomom.ma": [2053], "ucfnews.com": [2053], "jmay.es": [2053], "ddev.co": [2053], "community.remotestorage.io": [13996], "issafrica.org": [7982], "hostmonster-cdn.com": [7681], "ldne.ws": [2053], "www.jsonresume.org": [8606], "skorer.im": [2053], "www.alionet.org": [856], "geektimes.ru": [6628], "batorama.eu": [2053], "www.astrobotic.com": [1338], "dfat.ly": [2053], "www.yourbittorrent.com": [19030], "*.foebud.org": [6095], "dsrpt.it": [2053], "artjournal.me": [2053], "pack.resetthenet.org": [14038], "www.meetmecorp.com": [10379], "personal.xively.com": [18880], "*.packtpub.com": [12524], "ptbk.co": [2053], "static.clmbtech.com": [19735], "www.k7r.eu": [20569], "youpies.fr": [2053], "domeny.sk": [19944], "akhave.in": [2053], "claimformsplus.com": [3267], "d.decoconut.com": [2053], "www.newsreview.com": [11531], "www.ethicalhacker.net": [5486], "talk.roleplaychat.org": [14186], "blogs.oasis-open.org": [11805], "support.sugarsync.com": [15838], "bergdorfgoodman.com": [16106], "www.sportxx.ch": [15543], "vp.teamgnh.it": [2053], "i5.tietuku.com": [16704], "resnet.ucsd.edu": [17216], "*.macpaper.com": [9870], "linac4.web.cern.ch": [2632], "dealerportal.autotrader.co.uk": [19458], "seatzy.co": [2053], "www.secureconnect.com": [14734], "arrivabus.co.uk": [1252], "0m.io": [2053], "2cmu.tk": [2053], "www.ics.isy.liu.se": [9238], "ee.1688.com": [44], "prrm.ws": [2053], "a.wpgpho.to": [2053], "oauthplay.azurewebsites.net": [1523], "de.iglesia.net": [2053], "i3.zst.com.br": [19233], "www.szm.com": [16021], "nbc4i.co": [2053], "s.himayge.com": [2053], "ibmsmarteritservices.sourceforge.net": [15423], "btfit.me": [2053], "everydayrewards.com.au": [18723], "tweakimg.net": [17143], "clergyproject.org": [3294], "gibr.in": [2053], "*.the-group.net": [16553], "muns.ch": [2053], "2roads.com": [17173], "spn.rocks": [2053], "it.rbth.com": [21267], "fnbyts.co": [2053], "www.louismilan.com": [9783], "breakng.duoshuo.com": [19969], "useresponse.com": [17715], "grist.org": [20284], "peo.us.com": [2053], "virusbtn.com": [18049], "konzern.oebb.at": [20984], "www.fredrikolofsson.com": [20159], "www.homeandaway.hsbc.com": [7233], "www.secwiki.org": [14702], "www.sendvid.com": [14829], "sql5.endora.cz": [5349], "a.s.coop": [2053], "majw.co": [2053], "d.devsgoons.com": [2053], "my.markerly.com": [2053], "azwine.co": [2053], "cosmo.org": [3757], "www.yokl.com": [18996], "drotek.io": [2053], "www.sc.wustl.edu": [18290], "wnut.in": [2053], "socialbakers.com": [15317], "*.redbull.co.uk": [13900], "on.ribblefm.com": [2053], "bee83.me": [2053], "getkeepsafe.com": [6715], "bugs.acpica.org": [302], "l.j7.no": [2053], "downloadhelper.net": [4821], "hafner-ips.com": [7293], "www.outofcontrol.ca": [12352], "www.mefco.hsbc.com": [7233], "eors.us": [2053], "avinc.com": [1488], "tas.to": [2053], "1io.io": [2053], "redb.tv": [2053], "app.marinsoftware.com": [10161], "www.iptorrents.com": [7945], "mikei.sh": [2053], "skanetrafiken.se": [15143], "betts.com.au": [1884], "sharepoint.utm.edu": [17628], "www.ictrecht.nl": [7839], "spoon.graphics": [2053], "gab.mn": [2053], "www.audentio.com": [1385], "midphase.com": [10558], "img.shoppingshadow.com": [14975], "micropython.org": [10530], "hudsonsbay.capitalone.com": [2878], "i.wms.com": [2053], "rch.cm": [2053], "rlyb.us": [2053], "www1.lansforsakringar.se": [9304], "control.vps.net": [17801], "wrhstol.com": [2053], "ess.erp.johnshopkins.edu": [8760], "ux.moz.com": [20834], "freemail.sebijk.com": [7608], "cask.to": [2053], "www2.halton.gov.uk": [20308], "assemblyseries.wustl.edu": [18290], "www.myitworks.com": [8003], "*.audienceiq.com": [1392], "m.paralympic.org": [21070], "6.asset.soup.io": [15415], "assets.taobaocdn.com": [16207], "wpin.it": [2053], "lp.tms.pl": [21750], "www.gfisoftware.de": [6440], "kevinzullo.com": [2053], "bioinfo.pl": [1952], "www.openpublicservices.cabinetoffice.gov.uk": [2760], "movabletype.com": [10817], "harita.yandex.com.tr": [18954], "img05.rl0.ru": [14147], "www.victoriaforms.com": [21922], "hlweb.co": [2053], "cbp.gov": [2581], "verify.cpanel.net": [2710], "s.t4m.de": [2053], "leetway.com": [9382], "ssl1.washingtonpost.com": [18287], "sso.upo.es": [17683], "static-ns.rutracker.org": [21346], "s0.mt-cdn.net": [9963], "go.link.io": [2053], "gurkanaltay.com": [2053], "ad4.liverail.com": [9657], "www.oisshome.wustl.edu": [18290], "ageba.se": [2053], "nyaa.se": [11795], "www.ovirt.org": [11889], "four.cdn.directmailmac.com": [4611], "dashboard.mileiq.com": [10579], "dorian.mx": [2053], "hgr.me": [2053], "status.voxmedia.com": [18147], "ighq.us": [2053], "*.www.freelancer.com": [6296], "bigsandy-kctcs.edusupportcenter.com": [20012], "nancysgonegreen.com": [11216], "blossom.co": [2175], "drvlsinst.me": [2053], "projects.zoho.com": [19202], "strob.it": [2053], "assets.growingio.com": [20286], "up.jobs": [21864], "pvmentchvser.co": [2053], "ikvc.slovakrail.sk": [15218], "an.avast.com": [1484], "wtba.tips": [2053], "m.german.alibaba.com": [850], "cdn.okcimg.com": [11970], "www.portmorgan.com": [13159], "gfisoftware.de": [6440], "buzzfocus.com": [2532], "equt.org": [2053], "www.bluestargolf.com": [8578], "go.nrma.com.au": [2053], "app.livechatinc.com": [9641], "asset-f.soupcdn.com": [15416], "www.e-estonia.com": [4936], "dkp.link": [2053], "shm.bz": [2053], "tub.nl": [2053], "zhoub.in": [2053], "editor.fuelcdn.com": [6360], "ckm.bz": [2053], "www.deepbit.net": [4379], "www.recyclenow.com": [13889], "expan.me": [2053], "at.amgdgt.com": [990], "status.dwolla.com": [4913], "makeagif.com": [20740], "hotrod.ly": [2053], "pcbooking.bradford.gov.uk": [2317], "danzappone.com": [16594], "igwd.ml": [2053], "bpa.lc": [2053], "primus.com": [13289], "tmrne.ws": [2053], "*.cpsc.gov": [2706], "madewithcode.com": [10005], "phpdoc.org": [12865], "thu.gg": [2053], "jonberry.me": [2053], "tbwa.vn": [2053], "vnpr.gr": [2053], "www.writelatex.com": [18775], "gdc75.me": [2053], "prld.pl": [2053], "skptc.us": [2053], "chpydbs.site": [2053], "cdn.avanti247.com": [1482], "qsna.co": [2053], "board.goldesel.to": [20268], "www.plymouth.ac.uk": [13055], "www.federatedinvestors.com": [5838], "*.toofishes.net": [16822], "www.jres.org": [8602], "wiki.hackerspace.pl": [7280], "tune.yandex.com": [18956], "www.gvntube.com": [6516], "www.cco.caltech.edu": [2815], "prs.cgilink.org": [2053], "toutiao.1688.com": [44], "mysecureconnect.com": [10973], "www.mpi-soft.mpg.de": [10254], "techbase.kde.org": [8871], "sdz.to": [2053], "www.shagaholic.com": [825], "torrent411.com": [16036], "simcity.com": [15053], "rsne.ws": [2053], "payments.parkingeye.co.uk": [12613], "r.duckduckgo.com": [4888], "ofert.de": [2053], "miss.ml": [2053], "posteshop.it": [13193], "cornell.edu": [3744], "m.anthem.com": [19395], "www.jumpeyecomponents.com": [8826], "s-passets-ec.pinimg.com": [12906], "mail.virginmedia.com": [18028], "yfind.co": [2053], "smltrn.uk": [2053], "www.underhandedcrypto.com": [17440], "publicidade.brasil247.com": [2343], "game.gtimg.cn": [7120], "go.blight.be": [2053], "www.ahead.org": [19325], "tvn.digital": [2053], "cig.rs": [2053], "hosting.vyu.im": [2053], "myservice.erewash.gov.uk": [20051], "partners.nvidia.com": [11174], "s.polostudio.es": [2053], "support.cuteness.com": [19840], "svrflr.co": [2053], "v.cdn.vine.co": [18014], "www.choopa.com": [3160], "atmsbookings.staffordshire.gov.uk": [15622], "i2.piimg.com": [16704], "www.repl.it": [21291], "bookshop.theguardian.com": [16554], "fsup.net": [2053], "pur.st": [2053], "opst.co": [2053], "www.acttea.ut.ee": [17347], "www.antispam-ev.de": [1108], "www.dayz.com": [4314], "cdme.engineering.osu.edu": [11959], "neca.io": [2053], "fisz.bls.ch": [1566], "open.alibaba.com": [850], "static1.marvelstore.com": [10204], "parkdodg.us": [2053], "b0.thejournal.ie": [16490], "gcar.mx": [2053], "aha.to": [2053], "www.openskillz.com": [21006], "hk-en.norton.com": [11703], "movienot.es": [2053], "www.crowdsupply.com": [3894], "cart.godaddy.com": [6898], "wri.ting.tips": [2053], "a.assemblo.com": [2053], "jkpf.nl": [2053], "translate.apan.org": [369], "apisandbox.msdn.microsoft.com": [10543], "help.encoding.com": [5334], "go.praber.com": [2053], "engine.adzerk.net": [714], "blog.root.cz": [14199], "mlpassword.gmu.edu": [6666], "l.savas.io": [2053], "m-cpn.com": [2053], "sam.msi.com": [9957], "onzell.nl": [2053], "ssl-ds.static.rtbf.be": [14244], "www.intecca.uned.es": [17446], "mltcreative.co": [2053], "*.signals.com": [15027], "trop.ac": [2053], "kosam.ws": [2053], "go.gaiar.ru": [2053], "pikpok.com": [12885], "mipay.com": [10626], "leadership.uchicago.edu": [17532], "pro.realty.mail.ru": [10040], "adwork.ga": [2053], "stavanger2015.honeynet.org": [20357], "www.ettus.com": [5501], "meri.tv": [2053], "get.typo3.org": [16149], "crm.al": [2053], "ghjim.info": [2053], "ce.baidu.com": [1661], "sysnews.ncsu.edu": [11690], "paperless.ly": [2053], "elbs.me": [2053], "www.zone-h.org": [19211], "ads.perfectaudience.com": [12771], "leijo.net": [2053], "kcd.bz": [2053], "m.quote.comparethemarket.com": [3575], "online.fahrplan.zvv.ch": [22146], "bundespolizei.de": [2488], "mtsilver.co": [2053], "s.mg.co.za": [2053], "mekar.osu.edu": [11959], "dizzyjam.com": [19929], "soc.indusguard.com": [8225], "forum.openwrt.org": [12190], "vhradstock.uk": [2053], "marketing.acxiom.com": [19283], "tnsn.de": [2053], "*.huffpost.com": [7745], "x.koqoo.uk": [2053], "instartlogic.com": [8340], "app.applyyourself.com": [1170], "kryptosfera.pl": [9172], "cotswold-consult.objective.co.uk": [20979], "cashforcontracts.com": [2939], "jnls.tv": [2053], "*.advolution.de": [710], "www.noo.nhs.uk": [11102], "pjnk.co": [2053], "custom.cvent.com": [4020], "artfiles.de": [1266], "www.montereybayaquarium.org": [10755], "i.shoz.de": [2053], "msane.ws": [2053], "secureinthecircle.com": [14742], "video.yandex.kz": [18957], "o15.officeredir.microsoft.com": [10543], "min.slhenry.com": [2053], "cr.tn": [2053], "raulj.com": [2053], "steamstat.ru": [21572], "srini.im": [2053], "aaspring.com": [436], "*.vpnsearch.net": [17795], "player.ooyala.com": [12099], "westlaw.com": [18514], "helpsolve.me": [2053], "frogtape.co": [2053], "idcp.tk": [2053], "www.nanoengineering.ucsd.edu": [17216], "www.spilnu.dk": [15526], "www.cov.com": [3792], "packaging.python.org": [13500], "business.landsend.com": [9294], "opentablet.abuledu.org": [19258], "wfmthldr.com": [2053], "biza.gi": [2053], "by.taryo.net": [2053], "cdn.f5.com": [5659], "mj.1688.com": [44], "www.dnb.com": [4215], "camptl.ca": [2053], "img.pre.realty.mail.ru": [10040], "support.dandb.com": [4214], "wntr.it": [2053], "flx.is": [2053], "on.menau.org": [2053], "www.comdirect.de": [19757], "staticyb.douyu.com": [4813], "www.exoticads.com": [5610], "fosdem.org": [6187], "c-it.co": [2053], "www.osumc.edu": [11875], "imnky.com": [2053], "112zwein.de": [2053], "xmind.net": [18829], "secure.avahost.net": [1475], "startmail.com": [15663], "map.cam.ac.uk": [17529], "*.process-one.net": [13347], "www.scribblelive.com": [14653], "community.apan.org": [369], "nmpd.me": [2053], "www.panorama.am": [21069], "www.lsh.re": [9536], "cffpo.cf": [2053], "go.9am-5pm.com": [2053], "bluewi.re": [2053], "pic.la": [2053], "osp.drweb.com": [4879], "www.isiknowledge.com": [18404], "ingushetia.rt.ru": [13703], "s-paimai.taobao.com": [16206], "b.herfen.com": [2053], "bashkortostan.beeline.ru": [1801], "www.brianclifton.com": [2364], "dashboard.adtile.me": [680], "linguistics.stanford.edu": [15635], "pep.si": [2053], "aldi.us": [338], "agencythrive.us": [2053], "support.brighttalk.com": [2377], "events.ucc.ie": [17210], "www.mongodb.org": [10742], "3ida.de": [2053], "*.billiger.de": [1935], "arstechnica.com": [1253], "www.playvid.com": [13017], "*.bankofscotland.de": [1697], "metrics.pcmag.com": [19177], "translate.kontalk.org": [9130], "peijian.taobao.com": [16206], "macainfo.org": [9990], "goquike.xyz": [2053], "airixo.me": [2053], "so.swisscom.ch": [15951], "www.fedpol.admin.ch": [21629], "gemeenteberkelland.nl": [11324], "www.interac.ca": [8384], "vodkamethod.com": [21940], "pl.gamigo.com": [6563], "biddul.ph": [2053], "s.theeclub.info": [2053], "url.yerse.net": [2053], "nr-media-01.nationalreview.com": [11262], "staging.equityzen.com": [5441], "afew-store.com": [19315], "www.claimyourname.io": [3266], "radgm.es": [2053], "*.derwesten.de": [4464], "intrin.io": [2053], "frictionalgames.com": [6328], "go.volpon.it": [2053], "beta.rhb.ch": [14091], "ey.com": [5450], "blog.dwolla.com": [4912], "covers.elsevier.com": [5287], "ads.audienceamplify.com": [1391], "people.isy.liu.se": [9238], "hmbgr.me": [2053], "go2.kobi5.com": [2053], "*.productsafety.gov.au": [13352], "libre.lugons.org": [9262], "aulavirtual.uv.es": [17750], "hcpssne.ws": [2053], "2.f.ix.de": [8552], "roky.me": [2053], "www.vis.fsc.va.gov": [17297], "spotic.us": [2053], "therph.co": [2053], "megashare.im": [10398], "dfz.nl": [2053], "url.pierre.io": [2053], "lnk.to3.eu": [2053], "admin.imodules.com": [7909], "op.tejow.nl": [2053], "*.oversee.net": [12374], "cutsew.us": [2053], "www.linksnappy.com": [20695], "www.theiphonewiki.com": [16596], "fnjn.co": [2053], "optimizely.com": [12275], "blog.baruwa.com": [19490], "notebooknagyker.hu": [9308], "go.actaru5.it": [2053], "pcs.com": [12433], "ngsm.me": [2053], "qsli.com": [13517], "iwe.lt": [2053], "dwb.es": [2053], "www.ethz.ch": [5074], "jnma.co": [2053], "media.www.harvard.edu": [7351], "www.linkshare.com": [13769], "gtrk.tv": [20290], "bluenote.io": [2206], "www.schotty.com": [21380], "mixcloud.com": [10655], "theeli.st": [2053], "bizjournals.com": [16444], "acme.legiscan.com": [9387], "jray.io": [2053], "sis.nlm.nih.gov": [11241], "grb.to": [2053], "go.voya.com": [2053], "buyvail.today": [2053], "wiki.wesnoth.org": [18500], "l.xam.io": [2053], "public.slidesharecdn.com": [15208], "i-de.eu": [2053], "afpok.us": [2053], "www.apwu.org": [970], "resources.blogblog.com": [2160], "countermeasures.trendmicro.eu": [16990, 16992], "admin.lautre.net": [9325], "www.saimd.com": [3750], "mags247.in": [2053], "go.pjt.me": [2053], "ynfl.us": [2053], "la13-14.squat.net": [21549], "heyny.la": [2053], "bspk.me": [2053], "gmx.de": [6467], "b2s.co.il": [19473], "linux-tage.de": [9558], "i.jcloud.com": [8690], "girv.in": [2053], "joyy.me": [2053], "mds26.tk": [2053], "www.put.io": [13485], "strategysignals.com": [15767], "go.ktjx2.com": [2053], "cloud.highcharts.com": [7545], "www.nutritiondata.self.com": [11783], "sjwblog.com": [2053], "hellobar.com": [7433], "wtr.mn": [2053], "xcd.vn": [2053], "gkmt.link": [2053], "yerkramas.org": [22100], "ae.norton.com": [11703], "mtmates.com": [2053], "beautifuldecay.com": [1792], "cdn-3.tribepad.com": [21789], "jsph.co": [2053], "prstg.co": [2053], "www.lizardtech.com": [2991], "avo.gov.au": [1441], "partnervpn.symantec.com": [15969], "web.cern.ch": [2632], "exxonmobil.co": [2053], "telebrands.net": [16328], "pantheon.io": [12577], "princeari.es": [2053], "*.iwebreader.com": [8021], "blog.idnes.cz": [20425], "ryanair.com": [14292], "bancopostaonline.poste.it": [13192], "www.bandinelli.net": [1684], "jooleh.in": [2053], "kgr.io": [2053], "tracker.affility.com": [741], "donate.splcenter.org": [14395], "swimm.in": [2053], "beta.vidup.me": [17996], "online.tu-graz.ac.at": [16130], "dav.sx": [2053], "darktrace.com": [19852], "www.livewyer.com": [9659], "decs.osu.edu": [11959], "www.richarddawkinsfoundation.org": [14106], "awa.li": [2053], "job.hired.city": [2053], "b.ms9.me": [2053], "etsm.tl": [2053], "spectraflow.com": [15496], "*.specificmedia.co.uk": [15491], "crownya.click": [2053], "key.sc": [2053], "www.oecd-ilibrary.org": [11817], "maps.yandex.mobi": [18958], "www.update.microsoft.com": [10542], "community.aarp.org": [270], "go.dmf5.com": [2053], "spacepolicyonline.com": [15455], "www.cc.ntu.edu.tw": [11160], "www.bournetocode.com": [2303], "pt.3.boardgamearena.com": [2219], "newcastlecollection.newcastle.gov.uk": [11507], "blade22.ual.es": [17361], "bnr.mn": [2053], "zulucr.bz": [2053], "static.c-spanvideo.org": [2553], "reconingspeakers.com": [15486], "s.white-it.net": [2053], "xianning.meituan.com": [10405], "www.teteny.bme.hu": [1571], "www.visaeurope.com": [18055], "www.lduhtrp.net": [3546, 20646], "jscss.superpages.com": [15888], "www.cityoflondon.police.uk": [3253], "askd.rs": [2053], "alipay.com": [857], "ifosslr.org": [8409], "cryptome.info": [3948], "ncmm.uio.no": [17615], "knowingly.com": [20614], "ralph.bakerlab.org": [1667], "scripts.affiliatefuture.com": [19316], "*.eyeos-apps.org": [21007], "outwit.com": [12353], "www.usajobs.g4s.com": [20194], "osfilmesqvpa.tk": [2053], "scrm.it": [2053], "l.grimpancak.es": [2053], "demonii.com": [4435], "astronomynow.com": [1341], "g.brainofjt.com": [2053], "files.namecheap.com": [11208], "oag.com": [11802, 11803], "l.gdx.no": [2053], "www.imssr.com": [7907], "b.loco8.com": [2053], "www.rdot.org": [13643], "i.marketwatch.com": [10185], "browsealoud.com": [2422], "strawb.co": [2053], "revw.us": [2053], "*.taifex.com.tw": [16039], "reviews.lendingclub.com": [9404], "consult.cotswold.gov.uk": [19797], "wiki.mythtv.org": [11038], "ograc.xyz": [2053], "sciencecircle.stanford.edu": [15635], "www.redletterdays.co.uk": [13911], "avatar.115.com": [25], "pigecheng.1688.com": [44], "*.freecultr.com": [5707], "computerbase.de": [3602], "www.codeofhonor.com": [3404], "bizboo.st": [2053], "kh.kyu.cc": [2053], "support.sandvine.com": [14523], "www.vinilox.eu": [18016], "cityofchicago.org": [3243], "to.thebbz.com": [2053], "videopp.com": [17982], "ipython.org": [7954], "svabs.com": [2053], "ru.nl": [13744], "to.omy.fr": [2053], "fr.opendata.ch": [21011], "meiyantang.taobao.com": [16206], "www.parallels.com": [12597], "speedvolunteer.london.gov.uk": [9741], "picka.link": [2053], "portal.wakefield.gov.uk": [21966], "circle.ci": [2053], "www.bittylicious.com": [2079], "help.hootsuite.com": [7633], "www1.hsbc.co.uk": [20375], "guru.de": [20299], "ad.tips": [2053], "secure.logmein.com": [9711], "www.tenten.vn": [16378], "www.piter.tv": [21138], "www.asadotzler.com": [19428], "s.jiyugaoka.net": [2053], "iow.spydus.co.uk": [21546], "mobile.montereybayaquarium.org": [10755], "abc2w.xyz": [2053], "emsonline.gloucestershire.gov.uk": [6872], "lexbz.net": [2053], "chequecentre.eu": [2053], "ab.qiwi.com": [13533], "eun.li": [2053], "360cities.net": [131], "10minutemail.com": [19], "waymn.com": [2053], "brighton.com": [2385], "larkne.ws": [2053], "link.aukum.com": [2053], "m.toppreise.ch": [21757], "amqro.mx": [2053], "libressl.org": [9474], "ees.elsevier.com": [5285], "www.yandex.by": [18953], "go.czphot.ch": [2053], "www.easypost.com": [5130], "b.icetravel.xyz": [2053], "go.riguypro.com": [2053], "babewa.lk": [2053], "events.eoportal.org": [5417], "spcge.co": [2053], "chsaa.co": [2053], "postovoy.org": [21181], "www.pld-linux.org": [12471], "test.lasnik.net": [2053], "oascentral.sciencemag.org": [14624], "www.sonobi.com": [15388], "www.kvm-vps.com": [8908], "torrentproject.se": [16859], "cakt.us": [2053], "gov.wales": [6987], "image.space.rakuten.co.jp": [13768], "service.burstnet.eu": [2503], "go.insider.in": [2053], "link.mun.sc": [2053], "adwizard.springer.com": [15561], "*.assistly.com": [4472], "www.dreamhost.com": [4844], "binxian.meituan.com": [10405], "wdbj7.co": [2053], "salln.net": [2053], "hide.me": [7531], "ctlm.onlineshop.cz": [21000], "*.onswipe.com": [12086], "www.iterm2.org": [8009], "www.hekko.pl": [7429], "fixe.rs": [2053], "jdkasten.com": [8574], "sah.lt": [2053], "fng.link": [2053], "towel.myaero.us": [2053], "megafon.ru": [10393], "ziadi.co": [2053], "wiki.services.eoportal.org": [5416], "ww.f-1.me": [2053], "www.thr.com": [16068], "tulskaya-obl.beeline.ru": [1801], "forum.zazzle.com": [19119], "magnetic.domdex.com": [4758], "groove.eu.tf": [2053], "netverify.com": [11449], "danskeanalyse.danskebank.dk": [4223], "dvdnav.mplayerhq.hu": [9949], "www.7elements.co.uk": [220], "universityadmissions.se": [17638], "www.robinsonpool.bedford.gov.uk": [19509], "hcity.co": [2053], "m.stubhub.de": [15789], "meldium.com": [10410], "zynga.tm": [19250], "www.leisurebookings.birmingham.gov.uk": [19536], "www.bite.lt": [2041], "piratebaynew.co.uk": [21712], "bpaste.net": [2315], "6.vgc.no": [17776], "lovtidende.dk": [9798], "contnt.ly": [2053], "*.www.ladyfootlocker.com": [9282], "kphs.us": [2053], "drmtea.ch": [2053], "lesterchan.lesterchan.netdna-cdn.com": [9420], "b.appc.se": [2053], "securemail.southend.gov.uk": [15442], "link.jal.mx": [2053], "fssrt.be": [2053], "uszoda.teteny.bme.hu": [1571], "sjg.im": [2053], "2.healthca.mp": [2053], "*.microsec.hu": [10539], "pokene.ws": [2053], "snipt.it": [2053], "verisign.com.hk": [17915], "www.tripletex.no": [21796], "www.enalean.com": [5331], "optionbit.com": [12277], "sinaapp.com": [15089], "cdn2.teads.tv": [16250], "adst10.tk": [2053], "zh-cn.4.boardgamearena.com": [2219], "p2ia.us": [2053], "lafar.ge": [2053], "rios.in": [2053], "w4t.us": [2053], "rawgithub.com": [13815], "amnesty.at": [996], "0io.io": [2053], "lloydstsb-offshore.com": [9685], "netelligent.ca": [11416], "www.researchmatch.org": [14031], "g.cometchat.com": [2053], "www.ipswich.gov.uk": [8499], "markup.io": [10190], "titanpad.com": [16771], "im.mari.am": [2053], "www.stalkr.net": [15624], "suffolkcoastalandwaveneyl.firmstep.com": [20125], "a4.mzstatic.com": [11041], "www.ubuntu.com.cn": [17372], "vpsal.es": [2053], "selfserve.swale.gov.uk": [21625], "modo.ly": [2053], "download.clearlinux.org": [3291], "r.christoft.dk": [2053], "wumt.westernunion.com": [18512], "enocloud.com": [19984], "www.sourcefabric.org": [15429], "integrityglobal.com": [20471], "images.cnblogs.com": [19743], "pioneercharter.illuminateed.com": [20430], "asacp.org": [384], "greegam.es": [2053], "www.auditshark.com": [1398], "specs.adfox.ru": [563], "aclu.org": [294], "legal.yandex.kz": [18957], "s94.cnzz.com": [3391], "sl.covision.com": [2053], "www.lacie.com": [9271], "via.vry.gd": [2053], "api.buttercoin.com": [2521], "4r7hcmz0uv8fsq5a6zp9cozerpu80vf.icij.org": [7831], "components.xamarin.com": [18840], "edupage.org": [5192], "vzkrv.me": [2053], "actblue.com": [528], "utopia-ad.org": [21887], "sethvargo.com": [14877], "js-seeker.newjobs.com": [11510], "grahamcluley.com": [7013], "julia.gs": [2053], "gets.faz.net": [5667], "santita.co": [2053], "my.modulus.io": [10714], "www.justeat.nl": [20565], "cavirtex.com": [2969], "secure-www.novell.com": [11728], "exle.in": [2053], "plop.at": [21151], "www.jako-o.com": [8643], "help.www.net.cn": [20891], "www.baekdal.com": [1656], "windstream.com": [18649], "www.getlantern.org": [6716], "kuantokusta.pt": [9178], "*.crate.io": [3834], "webmail.bln.de.clara.net": [3271], "vsbl.at": [2053], "www.theproxy.pw": [21709], "radartv.nl": [13743], "static.adziff.com": [19177], "yk0.me": [2053], "dynabrainsportal.axosoft.com": [1517], "do.joinville.in": [2053], "aldi-suisse.ch": [338], "*.olark.com": [11978], "www.csaf.cz": [2721], "intranet.dsi.cnrs.fr": [6314], "ads.networkhm.com": [11465], "l.luke.scot": [2053], "*.conscallhome.com": [3653], "hypeshell.com": [14398], "rskt.ch": [2053], "stregis.ht": [2053], "computer.ly": [3601], "feee.li": [2053], "cloudconvert.org": [19737], "www.f4.htw-berlin.de": [7246], "infun.nl": [2053], "148.li": [2053], "terminatorx.org": [16385], "vacando.ch": [17818], "eth0.nl": [5481], "dxpr.es": [2053], "www.101domain.ru": [16], "mx.godaddy.com": [6898], "demo.sipgate.io": [15103], "science.jpl.nasa.gov": [11058], "blog.fitbit.com": [6002], "www.ricochet.com": [14111], "www.freevps.us": [6252], "yuanjiang.meituan.com": [10405], "www.doriancolor.com": [4779], "r.vnxk.com": [2053], "hu.nu": [2053], "sjbos.co": [2053], "fundinfo.com": [6380], "community.remedygames.com": [13992], "s.lug.bz": [2053], "www.hertz.co.th": [7508], "www.codersclan.net": [3438], "www.pcgarage.ro": [21093], "btig.co": [2053], "evernot.es": [2053], "www.flixbus.at": [6047], "fief.ca": [2053], "sap.report": [2053], "www.ircreviews.org": [7958], "1sms.co": [2053], "foundationbeyondbelief.org": [6196], "www.orange.jobs": [12287], "sp13dmztheme.inl.gov": [20462], "thenextweb.com": [16469], "connect.digitalwpc.com": [4585], "irishy.co": [2053], "gtipphotos.state.gov": [17345], "contentcafe2.btol.com": [1666], "canon.com.au": [19640], "daorgest.xyz": [2053], "su.addthis.com": [611], "bail3y.us": [2053], "forum.sakh.com": [21360], "websupport.sk": [18456], "afisha.yandex.by": [18953], "piliapp.com": [12887], "*.etracker.com": [5495], "on.wtsp.com": [2053], "uclahealth.org": [17212], "labs.opendoor.com": [12206], "polipayments.com": [12479], "openwiki.uninett.no": [17477], "*.weatherzone.com.au": [18334], "mamab.co": [2053], "pegelf.de": [12740], "www.homeinsurance.com": [7613], "m.voyage-prive.co.uk": [18151], "stat.finansportalen.no": [5945], "prime.wistia.com": [18678], "www.cjib.nl": [11324], "support.ualinux.com": [21833], "de.boardgamearena.com": [2219], "binsearch.info": [1942], "indico.desy.de": [4479], "roll.cl": [2053], "1000.chromeexperiments.com": [3177], "l.amsj.io": [2053], "abebooks.co.uk": [446], "skln.es": [2053], "e56.1688.com": [44], "www.objectif-securite.ch": [11901], "map.search.ch": [14684], "simple.com": [15065], "go.emiltorp.se": [2053], "*.convar.com": [3692], "sc3.rgstatic.net": [13655], "mies.link": [2053], "childrencentresnorth.northumberland.gov.uk": [20929], "a.daxi.us": [2053], "proxy3.switchadhub.com": [15954], "equinix.com": [5438], "pratt.in": [2053], "*.whitefence.com": [18548], "block.ly": [2053], "www.ddosbreak.com": [4095], "join.secondlife.com": [14706], "ist.berkeley.edu": [17526], "gmtr.me": [2053], "khc.so": [2053], "tchibo.de": [16240], "smm.presults.us": [2053], "mwd.buzz": [2053], "nuclear.inl.gov": [20462], "szo.us": [2053], "bpt.st": [2053], "pzr.me": [2053], "finv.us": [2053], "by.ari.bz": [2053], "stkme.me": [2053], "people-df.live.com": [9644], "blspy.co": [2053], "support.zen.co.uk": [19129], "*.tsgstatic.com": [17084], "aci.tips": [2053], "share.cdn.viber.com": [17956], "utopia.ai": [17748], "accounts.dns-shop.ru": [19934], "wbplay.wbgames.com": [3567], "zap2.it": [2053], "alctsr.co": [2053], "ly.aweleczka.de": [2053], "xcdm.co": [2053], "*.unister-adservices.com": [17487], "piratebay.click": [21711], "manage.zadarastorage.com": [19088], "bestiv.al": [2053], "urig.co": [2053], "rcm.nu": [2053], "strtc.oracle.com": [12284], "cpwb.us": [2053], "chainlove.com": [3041], "upc.nl": [17280], "splash.events": [2053], "www.phoenix.de": [21117], "blog.quinstreet.com": [13598], "www.talkoclock.com": [16188], "nmbl.engineering.osu.edu": [11959], "ekcko.it": [2053], "codeco.link": [2053], "landryfb.com": [2053], "puhkaeestis.ee": [13450], "cbks0.google.com": [6962], "*.biggestloserclub.com": [1915], "centros.ulpgc.es": [17411], "www.progress.com": [13360], "swjon.es": [2053], "wesnoth.wesnoth.org": [18500], "oppos.es": [2053], "www.torrentday.com": [16850], "nrsngnts.uk": [2053], "so-sha.re": [2053], "pzd.rakuten.co.jp": [13768], "www.fellowselection.acs.org": [966], "accounts.wmflabs.org": [18595], "git.typo3.org": [16149], "about2crui.se": [2053], "secure.keyghost.com": [9020], "nrty.me": [2053], "www.btc-e.com": [1595], "lttlr.me": [2053], "www.helbing.ch": [20331], "ncrn.gs": [2053], "www.eyereturnmarketing.com": [5644], "dl.hexchat.net": [20335], "ourskillsforce.co.uk": [21045], "blirn.co": [2053], "www.thegenealogist.co.uk": [21700], "bsk.to": [2053], "ads-creativesyndicator.com": [3851], "it.getsatisfaction.com": [6738], "www.hungerhost.com": [7764], "pkmd.us": [2053], "1klik.gq": [2053], "geekdad.com": [20214], "alphane.ws": [2053], "f5.com.cn": [5658], "id.e-generator.com": [4937], "staff.washington.edu": [17577], "go.idroot.net": [2053], "slx.fm": [2053], "www.op5.com": [12101], "consult.telford.gov.uk": [21675], "tony.idv.pw": [2053], "www.104.com.tw": [18], "dandb.com": [4214], "www.cari.net": [2576], "asia.norton.com": [11703], "realtime.services.disqus.com": [4656], "www3.atomicorp.com": [1364], "source.domaintools.com": [4750], "acp.bz": [2053], "bscmembers.leeds.gov.uk": [20653], "ipv6.google.com": [6962], "strongfil.ms": [2053], "www2.mrc-lmb.cam.ac.uk": [17529], "www.filestack.com": [5916], "www.publications.parliament.uk": [21074], "status.viaduct.io": [17954], "download.sonatype.com": [15381], "www.east-northamptonshire.gov.uk": [5112], "stocktwits.com": [15734], "ogsleep.co": [2053], "technology.wustl.edu": [18290], "wlfe.st": [2053], "*.thenextweb.com": [16469], "www.theglobeandmail.com": [6865], "copyleft.org": [3723], "www.absolute.com": [469], "forex.com": [6151], "afum.net": [2053], "homepages-fb.th-mittelhessen.de": [16064], "*.beaverbrooks.co.uk": [1794], "m.zipy.co.il": [19193], "cinem.ax": [2053], "l.viettri.vn": [2053], "t.tto.me": [2053], "signup.active24.com": [19275], "www.codeschool.com": [3417], "fir.ee": [2053], "a.bobby.is": [2053], "uniformwares.com": [17471], "cambeywest.com": [2823], "forums.asmallorange.com": [249], "blog.archive.today": [1203], "meminv.es": [2053], "wl.easydategroup.com": [825], "view.1688.com": [44], "danskebank.dk": [4223], "evmtn.uk": [2053], "www.nemid.nu": [11334], "reisen.tchibo.ch": [16240], "on.1010.tires": [2053], "analytics.cloud.unity3d.com": [17506], "astral.is": [2053], "terminal.securenet.com": [14737], "www2.enphase.com": [5385], "w.77.cr": [2053], "techslinger.com": [16307], "dnsdynamic.org": [4144], "v2.nu": [2053], "nature.com": [11293], "grdnt.is": [2053], "www.mirbsd.org": [10627], "ticketmaster.*": [16690], "www.wabi.com": [18233], "wghtloss.cc": [2053], "www.walderwyss.com": [18251], "*.nimenhuuto.com": [11603], "webtou.ch": [2053], "huating.meituan.com": [10405], "48f.de": [2053], "www.securycast.com": [14780], "axcess.click": [2053], "notsfw.me": [2053], "*.wisc.edu": [17635], "prbd.co": [2053], "lp.bvg.de": [1623], "s.rswebsols.com": [2053], "go.d42.nyc": [2053], "short.iprobe.it": [2053], "stats.owncloud.org": [12387], "nas.cr": [2053], "mstr.it": [2053], "gipan.de": [2053], "new.autobytel.com": [1461], "bcktb.co": [2053], "www.maurus.net": [10251], "cler.ky": [2053], "adherents.openstreetmap.fr": [12245], "judicalis.co.uk": [2053], "hlx.lt": [2053], "support.msi.com": [9957], "smetrics.sky.com": [15170], "www.bassetlaw.gov.uk": [1736], "www.weightlossplans.net": [12373], "www.nlg.org": [11125], "robati.info": [2053], "beatwik.com": [2053], "cumbriapartnership.nhs.uk": [11102], "fftfef.org": [5881], "www.contactprivacy.com": [3674], "iastudents.usc.edu": [17564], "www.armyoutlet.de": [1242], "www.theplacetelford.com": [21713], "www.webmail.shaw.ca": [14932], "www.greatdomains.com": [7034], "jburum.info": [2053], "sso.id.kent.ac.uk": [17603], "italliance.com": [7988], "www.lorentzcenter.nl": [9774], "marfit.de": [2053], "svb.me": [2053], "passport.twitch.tv": [17164], "www.knopper.net": [9098], "*.jappix.com": [8666], "ww.stallman.org": [15625], "magazine.fastcompany.com": [5786], "jotformpro.com": [8786], "request.cias.rit.edu": [13667], "mill.enni.al": [2053], "srv.asknet.com": [1303], "www.liteaddress.org": [9621], "hitbox.com": [7564], "freshports.org": [6325], "bairrorm.ga": [2053], "escpeuro.pe": [2053], "www.student.liu.se": [9238], "snob.ru": [15285], "s.gdi2290.com": [2053], "gemeinderecht.wien.at": [22025], "pantag.es": [2053], "getf.ly": [2053], "gtht.co": [2053], "untappd.com": [17658], "ascension.nyc": [2053], "ryanm.me": [2053], "api.gumroad.com": [7148], "atopya.squat.net": [21549], "www.surgery.cuhk.edu.hk": [2747], "cryptography.com": [3964], "docs.typo3.org": [16149], "thelist.creativecommons.org": [3848], "www.corbinfisher.com": [3728], "migto.mx": [2053], "cylar.me": [2053], "servercow.de": [14856], "club.arte.tv": [19422], "www.vr.org": [18159], "enterprise.github.com": [6801], "ksl.com": [8904], "edeveloperz.com": [4998], "www.cybersecuritychallenge.org.uk": [4027], "go.styjp.com": [2053], "ing.com": [7916], "welcomi.ng": [2053], "*.filepost.com": [5908], "ebayview.co.uk": [2053], "cdn.geekzu.org": [6617], "speak.rs": [2053], "dcly.de": [2053], "images.pornworms.com": [13156], "worldcommunitygrid.org": [18749], "i2.c.dk": [2556], "internal.ncsa.illinois.edu": [17544], "l.bherville.com": [2053], "pinescharter.net": [12894], "ask.fedoraproject.org": [5843], "ucmsv2.unitech.net": [21857], "www.hertz.co.id": [7489], "fbri.cz": [2053], "k.twiad.info": [2053], "courses.osu.edu": [11959], "makemytrip.com": [10071], "www.purina.com": [13474], "secure.f5.com": [5659], "starfieldtech.com": [15655], "ehpl.us": [2053], "getdigital.fr": [6695], "boutique.arte.tv": [19422], "mzvid.io": [2053], "jinchang.meituan.com": [10405], "whal.es": [2053], "hq.appsflyer.com": [1171], "petsymposium.org": [12445], "s.doubanio.com": [19954], "w00t.com": [18726], "www.microsoftstore.com": [10547], "125.stanford.edu": [15635], "rmsbg.co": [2053], "*.alioth.debian.org": [4353], "ceres.georgetown.edu": [6668], "winema.ps": [2053], "rttnbwy.co": [2053], "api.aimpulse.com": [782], "kaluga.rt.ru": [13703], "rickt.nl": [2053], "uber.tk": [2053], "www.electrek.co": [5249], "info.spkrb.de": [21536], "www.ingdirect.es": [8287], "osozluk.xyz": [2053], "payonline.ru": [12695], "s-3-c.com": [2053], "hu.cloudflare.com": [3344], "banners.webmasterplan.com": [18427], "www.ambervalley.gov.uk": [19375], "mlno6.com": [9928], "nikudutta.com": [2053], "apache.org": [1126], "researchcompliance.vt.edu": [18031], "pic.ress997.com": [2053], "nxti.es": [2053], "beacon.affil.walmart.com": [18260], "bbc.com": [1536], "www.knowingly.com": [20614], "smonty.co": [2053], "ftcpub.in": [2053], "www.joycasino8.com": [20552], "s.shortnote.jp": [21434], "fcv.rocks": [2053], "www.telus.com": [16364], "copenhagenmarathon.dk": [3716, 3717], "adman.otenet.gr": [12336], "bnw.im": [19565], "secure.ebis.ne.jp": [5141], "www.cloudmailin.com": [3368], "cjl.cx": [2053], "www.alumfx.com": [936], "cdn.livestream.com": [9676], "mrlac.eu": [2053], "w.expertera.com": [2053], "dc.nserver.ru": [11746], "techidiots.net": [16283], "www.epic.org": [5042], "erhverv.canaldigital.dk": [2862], "indycar.link": [2053], "ftmx.us": [2053], "itssm.pl": [2053], "jiangjin.meituan.com": [10405], "*.svbtle.com": [15925], "mjrspm.mx": [2053], "xtgem.com": [18900], "booktype.pro": [2259], "www.qubes-os.org": [13574], "3k.mail.ru": [10040], "lvng.me": [2053], "docs.aws.amazon.com": [954], "nv.gl": [2053], "kits.bz": [2053], "t411.ch": [16036], "www.tno.nl": [16094], "agora.uninett.no": [17477], "wiki.hslu.ch": [7728], "blogp.ws": [2053], "afine.ws": [2053], "*.rsys.net": [14243], "idp.feide.no": [5858], "s.amafashion.ro": [2053], "plugins.status.net": [15690], "secure.worldcommunitygrid.org": [18749], "lbmns.merton.gov.uk": [10464], "crick.ac.uk": [19816], "light.fm": [2053], "www.knowledgeblog.org": [9100], "t0r.eu": [2053], "www.eia.gov": [5016], "a.kiar.me": [2053], "m.toledo.kuleuven.be": [8969], "konto.nazwa.pl": [11307], "moneygeek.com": [20824], "www.aci-europe.org": [284], "uni-potsdam.de": [17618], "ghana.usembassy.gov": [21879], "www.alumniandfriends.usyd.edu.au": [21885], "m.suntravel.xyz": [2053], "online.s-pankki.fi": [14298], "voucherexpress.co.uk": [7456], "gcty.me": [2053], "www.screencraft.org": [14649], "trafficanalytics.here.com": [7465], "a-ads.com": [250], "gavinhungry.com": [6591], "tryhour.com": [2053], "media.netapp.com": [11373], "service-center.1und1.de": [82], "thepiratebay.bypassed.press": [21217], "discussions.udacity.com": [17392], "cfda.gov": [2953], "www.lcdcomps.com": [20645], "learn.equalit.ie": [5046], "gum.sh": [2053], "images-uat.freescale.com": [6302], "leea.co": [2053], "forum.syncthing.net": [15986], "solis.xyz": [2053], "cgd.to": [2053], "s4.uicdn.net": [17236], "modalitypartnership.nhs.uk": [11102], "www.seattleix.net": [14695], "openknowledge.worldbank.org": [8408], "go.lovin.vn": [2053], "assets.razerzone.com": [13820], "u.campus-owl.de": [2053], "zmbd.us": [2053], "www.vm.ag": [18096], "mttr.me": [2053], "cbscolle.ge": [2053], "fls.pt": [2053], "*.fanatics.com": [5763], "go.dostuff.net": [2053], "pv.gov.sa": [14545], "wheaton.ma": [2053], "bloodcenterblog.stanford.edu": [15635], "seg.sharethis.com": [14913], "drive.ru": [19961], "shootfood.co": [2053], "yacit.us": [2053], "beta.skype.com": [15184], "atutto.net": [2053], "www.kickass.cd": [9031], "oem.whyopencomputing.fr": [22021], "*.whatsapp.com": [18532], "hlwl.co": [2053], "listserv.heanet.ie": [7406], "mrk5math.com": [2053], "lfscript.org": [20674], "luobei.jd.com": [8571], "openlibrary.org": [12216], "give.illinois.edu": [17544], "www.tinhte.vn": [16745], "f.btcchina.com": [1599], "ems.westberks.gov.uk": [22005], "maum.soy": [2053], "padsdel.cdnads.com": [2978], "yunnan.jd.com": [8571], "tony.ma": [2053], "snapchat.com": [15275], "account3000.com": [496], "assistant.ricardo.ch": [14100], "new.research.illinois.edu": [17544], "loggames.de": [2053], "*.zapunited.com": [19108], "hackademix.net": [7271], "www2.informatik.uni-hamburg.de": [17229], "img.linuxfr.org": [9570], "xiajin.meituan.com": [10405], "opacsprd.stanford.edu": [15635], "joycasino3.com": [20552], "nardi.im": [2053], "*.imdb.com": [7903], "eleicoes.me": [2053], "graphics.cs.illinois.edu": [17544], "aftgosi.pe": [2053], "philips.to": [2053], "bitly.ivee.fr": [2053], "static.the42.ie": [21688], "commandlinefu.com": [3539], "s2.reutersmedia.net": [16649], "shareasale.com": [14906], "go.nooree.com": [2053], "sla.pt": [2053], "mg.ryujyu.us": [2053], "pablofa.in": [2053], "piwik.cc.kuleuven.be": [8969], "www.ubnt.com": [17363], "webapps.initial-website.com": [20460], "www.optimisemedia.com": [12272], "s.woobik.it": [2053], "www.services.irctc.co.in": [7957], "journals.aps.org": [969], "nss.li": [2053], "software.homeaway.com": [20351], "savvy.life": [2053], "*.oregon.gov": [15674], "mp3skull.is": [9944], "calsius.be": [2053], "onstn.biz": [2053], "forums.asp.net": [393], "ldap.hackerspace.pl": [7280], "articulate.com": [1268, 1269], "plugins.smyl.es": [14379], "girlsoutwest.com": [6787], "www.fagms.net": [5742], "letraslib.re": [2053], "go.chula.md": [2053], "*.typef.com": [4421], "nvda.ws": [2053], "osgeo.org": [11868], "www.casinoaffiliateprograms.com": [2941], "stats.cloud.online.net": [12069], "go.cmslearn.com": [2053], "dev-www3": [344], "sms.aplus.co.jp": [2053], "bo.getjaco.com": [6727], "pro.stubhub.co.uk": [15789], "tele2.se": [16326], "maestra.no": [2053], "ch.beck.de": [2053], "www.postbox-inc.com": [13187], "www.whisky.de": [22015], "lula.pro": [2053], "caduceus.me": [2053], "by.yowa.re": [2053], "topol.in": [2053], "rod.cx": [2053], "cache1.allpostersimages.com": [876], "sync.tidaltv.com": [16702], "flowingdata.com": [6061, 6062], "www.hon.ch": [7223], "ubrflp.in": [2053], "anxpro.com": [1115], "www.gitbook.com": [6794], "*.br.inter.net": [8379], "www.webxmedia.co.uk": [18196], "*.readyhosting.com": [13851], "kuathne.ws": [2053], "wiki.bedis.eu": [1797], "plex.moe": [2053], "zz.bdstatic.com": [19507], "www.prostovpn.org": [21212], "static.ivpn.net": [8014], "www.youtube.at": [19016], "kiko.im": [2053], "market.scribblelive.com": [14654], "colwares.link": [2053], "bzfd.it": [2053], "www.makershed.com": [10077], "www.cryptsy.com": [3961], "irunsafe.com": [14272], "webrtchacks.com": [18438], "*.smowtion.com": [15259], "ledgerscope.net": [9378], "blog.helpjuice.com": [7448], "co.godaddy.com": [6898], "blog.jupyter.org": [8839], "codexns.io": [3446], "diisd.illuminateed.com": [20430], "weborder.active24.es": [19278], "engineering.leeds.ac.uk": [17604], "sparkmed.stanford.edu": [15635], "planete.inrialpes.fr": [8310], "ad.adview.pl": [705], "whec.tv": [2053], "www.copia.is": [3720], "dreamnews.jp": [4846], "mylimehouse.eastsussex.gov.uk": [19994], "magellanmodels.com": [10015], "maxon.net": [10263], "techno.ph": [2053], "templates.office.com": [11942], "rtrv.co": [2053], "ots.optimize.webtrends.com": [18467], "*.tt.omtrdc.net": [12004], "netsho.es": [2053], "secure.hospital.uic.edu": [17517], "candc.ly": [2053], "walkinhershoes.careinternational.org.uk": [19646], "www.youtube.ae": [19016], "www.uspirates.org": [17344], "neryu.uk": [2053], "www.enigmail.net": [5377], "dagensgetaway-dbapp.netdna-ssl.com": [4185], "ideascale.com": [20423], "badwarebusters.org": [1655], "doublerobotics.com": [4808], "tipmobileint.sbb.ch": [15946], "hawaiianair.com": [7379], "ialcalde.es": [2053], "forum-fr.msi.com": [9957], "simkt.nl": [2053], "spnd.ws": [2053], "ehu.gs": [2053], "i.lenizdat.ru": [20659], "tpl.sh": [2053], "*.stockton.edu": [15735], "www.likelyloans.com": [20687], "antonius.imn.htwk-leipzig.de": [7736], "www.kozlekedes.bme.hu": [1570], "*.smjg.org": [15256], "mpp.specificclick.net": [15493], "ing.nl": [7916], "myfiles.yandex.com.tr": [18954], "moo.ma": [2053], "www.wdws.com": [18195], "www.netspi.com": [11398], "www.gobolinux.org": [20262], "ashbetmo.com": [2053], "jcopho.to": [2053], "btnd-dl.ga": [2053], "media1.congstar-media.de": [3641], "www.grepbugs.com": [7070], "shift.ng": [2053], "hongtong.meituan.com": [10405], "okcolab.co": [2053], "atname.ru": [400], "javascript.ru": [20527], "myva.co": [2053], "ftrc.me": [2053], "lifeb.co": [2053], "hfmag.co": [2053], "bmsoft.axosoft.com": [1517], "amo.im": [2053], "ddg.nu": [2053], "hollys.me": [2053], "www.easa.europa.eu": [5526], "itsakhandbok.irt.kau.se": [8861], "mville.edu": [10118], "*.yelp.fi": [18979], "securetrust.com": [14756], "www.open-mpi.org": [12106], "go.boin.gr": [2053], "mb.tips": [2053], "first4jobs.com": [2053], "alzheimers.org.uk": [942], "sj.se": [14363], "commercial.buckscc.gov.uk": [19605], "prnr.co": [2053], "dn-geekpark-new.qbox.me": [13528], "365hbr.co": [2053], "www.agnitum.com": [768], "*.ovpn.to": [11888], "www.thregr.org": [21731], "acs.akbars.ru": [19335], "www.condenast.com": [3617], "*.web-servers.com.au": [18343], "chou.lt": [2053], "affiliate.techstats.net": [16308], "*.walkingmen.com": [18254], "*.yelp.fr": [18979], "go.atallo.com": [2053], "auto.ro": [1451], "wci.io": [2053], "reisen.tchibo.de": [16240], "www.housting.de": [11369], "t.sabaia.com.br": [2053], "suizhou.meituan.com": [10405], "a.mindgarden.me": [2053], "dj.rasset.ie": [13805], "www.uni-ulm.de": [21850], "www.tyj.fi": [17186], "ham.my": [2053], "carolhin.es": [2053], "l.teamtoet.nl": [2053], "authorcentral.amazon.co.jp": [19364], "dailyhiit.com": [4192], "s.lunazy.red": [2053], "*.ssl-images-amazon.com": [954], "dcsimi.com": [2053], "cananolab.nci.nih.gov": [11241], "tenderhook.me": [2053], "new.shropshire.gov.uk": [21440], "modus.nike.com": [11595], "ciencias.unizar.es": [17643], "91digital.link": [2053], "tandlakarforbundet.se": [16196], "www.yotuku.cn": [22109], "by.rstana.sk": [2053], "en-it.dict.cc": [4536], "trial.coverity.com": [3803], "benefits.elmbridge.gov.uk": [5277], "www.vpnservice.ru": [17797], "on.sgstory.com": [2053], "secure19.pipni.cz": [12460], "zuerich.ch": [22143], "ureport.foxnews.com": [11512], "www.superdesk.pro": [15881], "analytics.gravity.com": [7029], "apps.jumpshare.com": [20561], "tthl.cc": [2053], "gwaste.northumberland.gov.uk": [20929], "sfca.lv": [2053], "blogautomobile.fr": [2157], "tnyg.co": [2053], "pro.lookup.whitepages.com": [18555], "fnpl.co": [2053], "szlwzl.com": [2053], "olin.edu": [6222], "tmaw.info": [2053], "d.liadm.com": [7940], "bhfrank.me": [2053], "bah.ourproject.org": [21044], "smetrics.aftonbladet.se": [754], "crwn.it": [2053], "scml.me": [2053], "ly.cpau.org": [2053], "www.gemeentewestland.nl": [11324], "obedovat.sk": [11895], "www.ai.ai": [1466], "api-public.addthis.com": [611], "api.tiles.mapbox.com": [10132], "www.bargainmoose.ca": [19485], "forum.mobilism.me": [20814], "atglance.web.cern.ch": [2632], "ishanghai.jd.com": [8571], "www.sharefilesupport.com": [14910], "wsna.to": [2053], "tcm.ag": [2053], "mantinad.es": [2053], "*.primary001.net": [8391], "htfacile.co": [2053], "derecho.unizar.es": [17643], "*.blacknight.com": [2106], "ingdirect.es": [8287], "s.jvrtech.net": [2053], "bloomberg.com": [2172], "*.linux42.org": [21007], "quantixtickets1.com": [13569], "roh.cm": [2053], "isana.jp": [2053], "www.lastcall.com": [16106], "b.project68.com": [2053], "gateway.audiencescience.com": [1390], "www.java.net": [8673], "enfz.me": [2053], "bxs.link": [2053], "technology.slashdot.org": [15192], "sitesoft.ru": [21462], "forums.hummingbird.me": [7760], "loader.la.welt.de": [18492], "rhinofri.es": [2053], "hotscripts.com": [7695], "watsoninstitute.org": [18302], "globalservices.bt.com": [1593], "vpnincome.com": [8173], "mgmt.parkerpen.com": [12611], "whim.dating": [2053], "osvpr.georgetown.edu": [6668], "dlgcns.lt": [2053], "chip.biz": [2053], "analysiscenter.veracode.com": [17906], "www.navynews.co.uk": [14228], "boounce.com": [2273], "s.baluie.de": [2053], "university.mongodb.com": [10741], "jms.meituan.com": [10405], "mwa.ma": [2053], "randywestergren.com": [21252], "www.duolingo.com": [4902], "*.solus-project.com": [15373], "edit.ftc.gov": [5837], "gan.taobao.com": [16206], "roger.jp": [2053], "www.net-backup.com": [11365], "tppnocertification.org": [16107], "firmware.netgate.com": [5981], "listes.gresille.org": [7071], "apnt.co": [2053], "jdsupra.com": [8575], "megayoutubeviews.com": [10400], "cdes.trafficforce.com": [16925], "cloud.seafile.com": [14678], "download-codeplex.sec.s-msft.com": [3435], "s.bus.ac": [2053], "*.lithium.com": [9630], "bernstein.com": [891], "schoolpartnership.wustl.edu": [18290], "symphonyos.com": [21633], "ars.to": [1253], "sublimegit.net": [15815], "felix.design": [2053], "lakehom.es": [2053], "imga.nxjimg.com": [11790], "espaceprive.moncompteformation.gouv.fr": [20821], "www.3min.de": [161], "forum.ubuntu-tr.net": [17381], "www.cult-labs.com": [3985], "*.blindseeker.com": [19557], "*.traveldoctor.com.au": [16966], "www.adyadvantage.com": [712, 713], "www.ocforums.com": [12370], "ar.syllable.org": [21632], "euro-ix.net": [5506], "m.gumroad.com": [2053], "febfox.com": [2053], "l.pm4gis.org": [2053], "web.redding.com": [5087], "*.wiredminds.de": [18665], "olx.sm": [2053], "pincheaqui.com": [2053], "telegr.am": [16333], "phpclasses.net": [12864], "secure.sakura.ad.jp": [14306], "www.coinsecure.in": [3472], "sunroofwinddeflectors.com": [15861], "www.stateoftheinternet.com": [15675], "subs.rcm.org.uk": [21271], "josho.yam.com": [18948], "www.masternet.org": [10218], "mail.kiva.org": [9077], "strb.it": [2053], "apri.link": [2053], "www.nccs.nasa.gov": [11058], "www.riscosopen.org": [14130], "my.outbrain.com": [12355], "bconer.com": [2053], "mor.nlm.nih.gov": [11241], "prefac.es": [2053], "atoztea.ch": [2053], "hume.is": [2053], "jmik.es": [2053], "typesafe.com": [17191], "4gs.club": [2053], "dl.meituan.com": [10405], "o.thebinc.in": [2053], "img2.xcart.com": [18806], "test.golfsuisse.ch": [6951], "scraperwiki.com": [14647], "*.codecoop.org": [3426], "www.wine-staging.com": [18650], "click-aici.tk": [2053], "tokyo2020.jp": [21754], "malideveloper.arm.com": [379], "static.plugrush.com": [13046], "www.ddg.gg": [4888], "conference.cpanel.com": [2708], "assets.thump.vice.com": [17959], "pubx.ch": [2053], "finaloffer.club": [2053], "www.sharethrough.com": [14925], "catalyst.harvard.edu": [7351], "www.usertags.jeremybieger.com": [17366], "de-sq.dict.cc": [4536], "www.resolv.org": [13648], "20.navalny.com": [11300], "j.4rd.co": [2053], "bn.com": [1726], "ibutton.maximintegrated.com": [10261], "www.chicagofed.org": [3129], "app-de8.resrc.it": [13832], "kinyetbna.cf": [2053], "svn.thedarkmod.com": [16532], "download.vzaar.com": [18179], "cafemakers.com": [2777], "ads2.zeusclicks.com": [19171], "idp.infn.it": [7913], "rethinkdb.com": [21300], "cal1card.berkeley.edu": [17526], "g01.t.alicdn.com": [846], "huh.gbrsr.co": [2053], "search.bt.com": [1593], "www.drivethrufiction.com": [12029], "wiki.blueonyx.it": [19561], "rs-static.wistia.com": [18678], "ped.li": [2053], "www.tchibo.pl": [16240], "lxr.missinglinkelectronics.com": [10645], "gdigesu.com": [2053], "popup.questionpro.com": [15912], "ntst.dk": [2053], "ereturns.wirral.gov.uk": [18672], "dev.umeng.com": [21847], "forums.zarafa.com": [19109], "www.gnusocial.no": [6479], "actor.im": [19282], "www.cyber.law.harvard.edu": [7351], "itpc.uillinois.edu": [17238], "s.reshet.tv": [2053], "fitbit.com": [6002], "phcheats.com": [12457], "a.lesterwish.ru": [2053], "coveritlive.com": [3804], "dober.tk": [2053], "www.pcug.org.au": [12423], "assets.bunchball.net": [2481], "atlarge.me": [2053], "www.magentocommerce.com": [10018], "a3.formsite.com": [20148], "*.cio.com": [2668], "ads.ad-center.com": [550], "ipk.fraunhofer.de": [6230], "useu.usmission.gov": [17341], "plex.is": [2053], "go.aps-web.jp": [2053], "www.spiegel.de": [15523], "hktshop.hk": [2053], "domain.com": [4738], "pm.cabinetoffice.gov.uk": [2760], "flie.me": [2053], "dl.lalalab.com": [2053], "movn.us": [2053], "*.sapo.pt": [14536], "answers.oculusvr.com": [11921], "www.spendabit.co": [15512], "piwik.akvorrat.at": [811], "musts.ee": [2053], "lrs.ms": [2053], "sv-contrainfo.espiv.net": [20058], "www.skeptoid.com": [21467], "*.wiley.com": [18609], "www.gotfuturama.com": [6980], "forum.rizon.net": [14144], "homeinsurance.com": [7613], "www.updateframework.com": [17673], "www.sitesoft.ru": [21462], "cdn-static.cloudflare.com": [3344], "ffc.vc": [2053], "newatl.as": [2053], "www.yaca.yandex.by": [18953], "app.beanstalkdata.com": [1784], "monshi.net": [2053], "mobile.yandex.com.tr": [18954], "static.life.ru": [20684], "*.facebookcorewwwi.onion": [5734], "metro.unizar.es": [17643], "unimi.it": [17475], "vet.osu.edu": [11959], "www.itbit.com": [8532], "arneswinnen.net": [19420], "shop.zend.com": [19136], "insurance.rakuten.co.jp": [13767], "prka.org": [2053], "androidfilehost.com": [1047], "staff.ask.sydney.edu.au": [21631], "chetumal.info": [2053], "allods.cdn.gmru.net": [6466], "prhack.com": [2053], "curated.co": [3995], "ssdp.org": [15793], "netzservice.wienenergie.at": [18582], "www.dirk.to": [4619], "voterinfo.gov.hk": [21950], "cheklapkok-01-hkg-remote.cathaypacific.com": [2963], "safeassign.blackboard.com": [2103], "www.usembassy.state.gov": [17345], "jenkins.libtoxcore.so": [9483], "dtrts.ca": [2053], "yoogiscloset.com": [22106], "images.virtualboximages.com": [18040], "tee.kaywa.com": [8980], "brilli.jp": [2053], "bellareed.com": [10164], "files2.enaza.ru": [5332], "www.billing.helpjuice.com": [7448], "mhk.meituan.com": [10405], "kmh.se": [8890], "letstalk.globalservices.bt.com": [1593], "uusd.help": [2053], "beacon-us-east.rubiconproject.com": [14247], "clients.uber.com": [17368], "binarydefense.com": [1945], "www.glittering.blue": [20251], "online2.akbars.ru": [19335], "embt.co": [2053], "trilogygolfclub.com": [8578], "newsreview.com": [11531], "bmcb.georgetown.edu": [6668], "r2gam.es": [2053], "buxforyou.cz": [2053], "loop.nigms.nih.gov": [11241], "webstats.squat.net": [21549], "www.xignite.com": [18875], "www.p6r.com": [12408], "*.jobsgopublic.com": [8749], "s.blogsmithmedia.com": [19558], "fume.tech": [2053], "weimarnetz.de": [22000], "infra.aircrack-ng.org": [19330], "osdisc.com": [21035], "support.starrez.com": [15646], "adform.com": [625], "myfsh.net": [2053], "cloudproxy.sucuri.net": [15829], "www.ginac.de": [6755], "www.mygoldencharter.co.uk": [6939], "accounts.illumina.com": [8117], "www.starwoodhotels.com": [15667], "www.xkcd.org": [22085], "inlcareers.inl.gov": [20462], "fuksa.link": [2053], "boingo.com": [2235], "issues.alfresco.com": [843], "c.hocol.at": [2053], "volunteer.pyeongchang2018.com": [21229], "data.iana.org": [7813], "www.freetype.org": [20172], "beginlinux.com": [1806], "kenton.bz": [2053], "joep.se": [2053], "www.insight.sensiolabs.com": [14831], "kuis.cf": [2053], "wrspayment.com": [2053], "tw.staygeo.com": [2053], "purechat.axosoft.com": [1517], "f.linmans.net": [2053], "ias.1und1.de": [82], "www.kqed.org": [8900], "btlnd.in": [2053], "proxypirate.pw": [21709], "www.kerbalspaceprogram.com": [9009], "sm.md": [2053], "centralcomputers.com": [3015], "kalastus.info": [2053], "sch.gy": [2053], "jtk.me": [2053], "www.howard-cottage.co.uk": [20368], "static.alipay.com": [857], "iclk.co": [2053], "sm.mk": [2053], "nccgroup.com": [11068], "support.vendini.com": [21904], "eric.ps": [2053], "cs.berkeley.edu": [17526], "*.linkedin.com": [9538], "s.cei.co.za": [2053], "*.marathonbet.com": [10143], "audentio.com": [1385], "e80p.com": [2053], "crn.verticalsearchworks.com": [2716], "blog.okfn.org": [20986], "www.mydatapipe.net": [10993], "order.store.yahoo.co.jp": [18944], "www.bareos.org": [1716], "ivnua.info": [2053], "www.unlimited401k.com": [17646], "webmailcluster.1and1.co.uk": [63], "accounts.digiguide.tv": [19918], "www.lurkmore.so": [9838], "dm-mailinglist.com": [4124], "amba.to": [2053], "www.variomedia.de": [17860], "econ.st": [2053], "mason.gmu.edu": [6666], "coventry.greenparty.org.uk": [7052], "segpaycs.com": [14800], "holidays.lastminute.com": [9318], "drugscience.org.uk": [4874], "l.jfvassoc.com": [2053], "cdnjs.com": [2981], "people.redhat.com": [13909], "apext.ac": [2053], "*.myopenid.com": [8656], "librarycatalogue.northamptonshire.gov.uk": [20925], "forms.sandwell.gov.uk": [21367], "assets.ubuntu.com": [17382], "res-5.cloudinary.com": [3367], "lxob.us": [2053], "portalpiratebay.co.uk": [21712], "apps.bhw.de": [1557], "www.webkit.org": [18422], "plotin.us": [2053], "www.chainlove.com": [3041], "dbclick.org": [2053], "fujisan.ms": [2053], "oblivia.vc": [11903], "www.eliomotors.com": [5268], "www.choicecheapies.co.nz": [12400], "act-on.co.uk": [19266], "jimg.dk": [8722], "olib.ro": [2053], "url.merion.com": [2053], "homade.us": [2053], "blog.wasilczyk.pl": [18292], "linuxvoice.com": [9585], "www.seancassidy.me": [14682], "nalink.to": [2053], "concrete5.org": [3614], "www.russellgroup.ac.uk": [14279], "b.snfcc.org": [2053], "www.vispashop.com": [18073], "www.eca.state.gov": [17345], "blog.docker.io": [4705], "xopri.se": [2053], "go.laposa.co.uk": [2053], "photos.sky.com": [15170], "www.joy-cazino.com": [20552], "thurrott.com": [16676], "wpfr.eu": [2053], "kaz-s.net": [2053], "www.ostel.co": [12332], "phowo.co": [2053], "sbpr.co": [2053], "diy.soylent.com": [15448], "yueqing.meituan.com": [10405], "eski.harita.yandex.com.tr": [18954], "blog.verticalacuity.com": [18730], "persian.iran.usembassy.gov": [21879], "secure.audubon.org": [1401], "medialayer.net": [10322], "www.cisco.com": [3221], "www.mcvuk.com": [20764], "dvatril.cz": [4173], "www.wipmania.com": [18207], "www.triphip.com": [17018], "www.bluebird.com": [2198], "pkap.co": [2053], "jshen.me": [2053], "ipgmail.com": [7939], "www.teddyonlinejudge.net": [16313], "mercuryhols.com": [2053], "rng.rs": [2053], "resept.it": [2053], "*.whyy.org": [18205], "calypso.tux.org": [17131], "pressandpolicy.bl.uk": [2395], "www.ezimages.eu": [5103], "www.getdnsapi.net": [6732], "mpblog.xyz": [2053], "iberdrola.es": [8042], "3.dbstatic.no": [19866], "xs.powerdns.com": [13216], "aom.link": [2053], "kathrein.de": [8970], "mysort.symantec.com": [15969], "servicepas.snsbank.nl": [14382], "news.wustl.edu": [18290], "virurl.com": [17781], "carrefoursa.com": [2921], "to.verbund.com": [2053], "pass.pt": [2053], "www.astra.io": [1336], "go.ntx.sx": [2053], "b30.in": [2053], "xiangtan.meituan.com": [10405], "www.nytexaminer.com": [11188], "lhcb.web.cern.ch": [2632], "faq.opendoor.com": [12206], "www.garmin.com": [20202], "*.vimgs.ru": [18160], "iheartdogs.co": [2053], "ligatus.ch": [9502], "ipv4.tunnelbroker.net": [17109], "www.githubstats.com": [6802], "montrealpri.me": [2053], "civica.co.uk": [19719], "kuppingercole.com": [9192], "pan.sohu.net": [15353], "serpl.us": [2053], "yaha.no": [18937], "hor.tn": [2053], "oq.qa": [2053], "umemphis.worldcat.org": [18748], "telepacifi.co": [2053], "webmail.fit.edu": [6058], "www.silentcircle.com": [15031], "ttaka.net": [2053], "cdn.forumwizard.net": [6182], "*.nimbushosting.co.uk": [11602], "atshopping.co": [2053], "www.twattle.net": [17140], "nextep.ws": [2053], "sputil.co": [2053], "xmms2.org": [18823], "my.bioquant.com": [2053], "gonzal.es": [2053], "www.wildwestdomains.com": [18599], "sogo.nu": [14386], "andrl.co": [2053], "social.bioware.com": [1957], "wolfsru.de": [2053], "u.napp.it": [2053], "brunel.ac.uk": [19599], "forums.bistudio.com": [2232], "thiagojdi.tk": [2053], "b.ichiba.jp.rakuten-static.com": [21251], "palau.usembassy.gov": [21879], "news.yandex.com.tr": [18954], "bitcoincharts.com": [2028], "guav.co": [2053], "elvn.co": [2053], "smartlessons.ifc.org": [8408], "belibro.ca": [2053], "www.jiasule.com": [8716], "byta.co": [2053], "www.northwarks.gov.uk": [11696], "fagms.net": [5742], "sl.jnapc.co.jp": [2053], "schu.bertia.de": [2053], "go.mywv.net": [2053], "thegaz.co": [2053], "images.boldchat.com": [2240], "*.theatlanticcities.com": [1352], "cert.at": [2637], "hilversum.nl": [11324], "login.money.pl": [10735], "anku.nl": [2053], "www.myheritageimages.com": [11024], "www.schoolforge.net": [14604], "www.ruxcon.org.au": [14287], "madot.ie": [2053], "projecteuclid.org": [13366], "457-northumberland.eschools.co.uk": [20056], "eddieeagle.nra.org": [20943], "pay.taobao.com": [16206], "sc.mondediplo.com": [10729], "share.xmarks.com": [18882], "xitang.meituan.com": [10405], "www.mindtools.com": [10598], "nvisium.com": [11175], "w.aross.se": [2053], "hopeweb.co.uk": [2053], "*.livenation.com.au": [9642], "*.arpnetworks.com": [381], "trendmicro.de": [16991], "www.salford.gov.uk": [21362], "thedma.org": [16530], "update.clearlinux.org": [3291], "d-cr.co": [2053], "ribei.ro": [2053], "resources.mentoringcentral.net": [10439], "bu-ly.com": [2053], "gigaset.com": [6775], "yrdr.it": [2053], "schoolbyt.es": [2053], "maerskd.co": [2053], "bms.tips": [2053], "escholarship.org": [5070], "calastone.com": [19628], "trlna.com": [2053], "seasonal.ly": [14693], "bradjust.us": [2053], "www.strato-mailcenter.com": [14429], "d6e.co": [2053], "url.rudenko.org": [2053], "ertos.nicta.com.au": [11111], "z.13djs.com": [2053], "www.linbit.com": [9232, 9233], "weblogs.asp.net": [393], "www.usshortcodes.com": [3550], "amoena.de": [1017], "shoprep.ly": [2053], "docs.compose.io": [3590], "laurc.ro": [2053], "licensing.fcc.gov": [5826], "atx.ms": [2053], "dstn.cz": [2053], "gawker-labs.com": [6592], "bitnb.co": [2053], "marketplace.domaintools.com": [4750], "otr.webcaster.pro": [21988], "www.net-a-porter.com": [11363], "khanacademy.org": [9025], "thawte.com": [16438], "go.cplace.net": [2053], "sussle.us": [2053], "thc.org": [16065], "zaoyang.meituan.com": [10405], "labor.dailykos.com": [4193], "cssm.entrust.com": [5405], "mathcircle.stanford.edu": [15635], "wttw.me": [2053], "marconisida.com": [4007], "www.omniref.com": [11997], "www.elastictrace.com": [5244], "schoolsonline.wokingham.gov.uk": [22042], "nomd.eu": [2053], "janus.wayf.dk": [18192], "nxp.me": [2053], "kiev.unian.ua": [21851], "spcs.ws": [2053], "app.halowaypoint.com": [7307], "www.anxpro.com": [1115], "donotcall.gov.au": [4698], "motoaction.us": [2053], "poc.corp.anthem.com": [19395], "kck.bz": [2053], "l.xida.de": [2053], "tauntondeane-consult.objective.co.uk": [20979], "stylewatch.stelladot.com": [15719], "startssl.net": [15660], "casfri.co": [2053], "fbcdn23dssr3jqnq.onion": [5734], "wadmin.green.ch": [20280], "www.revisium.com": [14080], "mosh.mit.edu": [9916], "www.ddlvalley.cool": [19876], "freedomsphoenix.com": [20165], "static.wellbid.com": [18487], "semipio.us": [2053], "www.majordomo.ru": [10068], "lzone.de": [20731], "kkk.com": [9082], "osturm.me": [2053], "cals.vt.edu": [18031], "gr8sh.it": [2053], "musopen.org": [10913], "de.pcpartpicker.com": [12709], "notalone.gov": [11713], "www.vates.fr": [17867], "tigt.ag": [2053], "tropo.com": [17036], "photos1.meetupstatic.com": [10386], "dnsstuff.com": [4145], "gympp.xyz": [2053], "crde.nl": [2053], "etrm.oracle.com": [12284], "*.my.mail.ru": [10040], "s.risley.co": [2053], "diweb.co": [2053], "sbi.sberbank.ru": [14560], "dusuntas.in": [2053], "83m.co": [2053], "kd2.us": [8869], "*.filmlinc.com": [5922], "www.lrz-muenchen.de": [9396], "pland.me": [2053], "klckstewa.com": [2053], "getmw.me": [2053], "www.percona.com": [12769], "blog.nanigans.com": [18730], "dgtsol.es": [2053], "www.burst.net": [2503], "h2d.dk": [2053], "www.vircurex.com": [18024], "www.zenmate.kr": [19133], "aboutface.ly": [2053], "support.smartbear.com": [21479], "wpvum.com": [2053], "ifca.ai": [8414], "p.jibe.com": [2053], "alfresco.com": [843], "strap.li": [2053], "no-cache.hubspotqa.com": [7740], "go.arbopl.bbelements.com": [1764], "leningradskaya-obl.beeline.ru": [1801], "m5m.eu": [2053], "www.st-petersburg.uio.no": [17615], "lncnmo.co": [2053], "n2.chaucanh.net": [2053], "whate.ch": [2053], "continuum.io": [19781], "store.totalwebsolutions.com": [16877], "www.buyfacefx.com": [15038], "www.acm.wustl.edu": [18290], "ask.openstack.org": [12173], "blog.myrusakov.ru": [20863], "estates5.warwickdc.gov.uk": [21979], "uk.boardgamearena.com": [2219], "btnkdr.com": [2053], "edarabia.com": [5173], "www.onpatient.com": [12082], "z.icetravel.xyz": [2053], "www.chilebit.net": [3134], "zataz.com": [19115], "leszczynski.it": [2053], "web-toolkit.global.sky.com": [15170], "a-th.co": [2053], "cloudcontrol.com": [3342], "www.slac.com": [15187], "courses.illinois.edu": [17544], "bit.bhamani.com": [2053], "www.voo.st": [18138], "www.sobytiya.info": [21496], "veracode.com": [17906], "qs.ioam.de": [7930], "clite.co": [2053], "tonic.ly": [2053], "www.sics.se": [14357], "www.scriptjunkie.us": [14664], "*.rollernet.us": [14191], "addca.sh": [2053], "h6.chaucanh.net": [2053], "webassetsc.scea.com": [14327], "joniann.com": [2053], "*.suse-art.org": [21007], "osc.tips": [2053], "api.tiles.virtualearth.net": [18046], "*.clickbank.com": [3302], "oai.oracle.com": [12284], "verbraucherschutz.sachsen.de": [14454], "repository.cmu.edu": [2917], "devblog.songkick.com": [21507], "social.lenovo.com": [9409], "pusherapp.com": [13482], "d.prodicle.com": [2053], "www.eg-online.ru": [20017], "public.resource.org": [13435], "mtb.com": [9856], "thebodyshop.co.id": [21692], "list.co.uk": [16464], "fc.maxon.net": [10263], "szze.tk": [2053], "www.foofighters.com": [6113], "msnbc.msn.com": [9959], "jino.ru": [8724], "*.thedilbertstore.com": [16534], "supportservices.jobcorps.gov": [20544], "esi.incites.thomsonreuters.com": [16650], "tryhaskell.org": [17080], "www.landaire.net": [20635], "on24.com": [11838], "www.qiye.163.com": [43], "cdn2.sure-assist.com": [15899], "frier.us": [2053], "merchant.onlinesbi.com": [12072], "fla.st": [2053], "megadl.fr": [69], "e.comr.se": [2053], "l.d-v.us": [2053], "ejabberd.im": [5230], "jefit.pw": [2053], "on.nola411.com": [2053], "losa.me": [2053], "www.amazingcareers.firstdirect.com": [20126, 20127], "www.luez.tk": [3597], "clickbank.com": [3302], "globi.es": [2053], "www.malware-tracker.com": [10092], "piao.jd.com": [8571], "w.datawifi.co": [2053], "bind.re": [2053], "remodeli.st": [2053], "qa.ccwed.me": [2053], "industrymailout.com": [8227], "openreach.co.uk": [12241], "news.cs.washington.edu": [17577], "m.datart.sk": [4082], "homedepotfoundation.org": [7616], "es.empireblue.com": [20033], "energylivenews.com": [5358], "*.rrts.com": [13684], "h1t.it": [2053], "support.theplatform.com": [16496], "3.asset.soup.io": [15415], "jobsadmin.newscientist.com": [11490], "lor.ac": [2053], "fictiv.com": [5888], "aafes.cyberpowerpc.com": [19843], "forums.openoffice.org": [1124], "ebola.stanford.edu": [15635], "free.com.tw": [20160], "pivotal.io": [12947], "merchandising.expediaaffiliate.com": [5613], "autodiscover.bmb.leeds.ac.uk": [17604], "pay.ubuntu.com": [17382], "rng.im": [2053], "imgjam.com": [8141], "bighugelabs.com": [1907], "go.yaya.nl": [2053], "*.muni.cz": [10892], "a0.lscdn.net": [9256], "livestream.com": [9676], "pbx.uno.im": [17648], "js.thisismedium.com": [8591], "*.manchester.ac.uk": [17612], "cb.com": [2053], "sakittome.com": [5411], "cdn.gosquared.com": [6909], "coventry.gov.uk": [19807], "dna.land": [4130], "teslamotors.com": [16403], "static.superstart.se": [15890], "yanggu.meituan.com": [10405], "webassetse.scea.com": [14327], "images.linuxcontainers.org": [9580], "dltcg.jd.com": [8571], "admissions.bury.gov.uk": [19614], "securityexperten.com": [14771], "sgfnow.co": [2053], "physics.osu.edu": [11959], "n-tv.de": [20871], "bor.to": [2053], "carpag.es": [2053], "x.waded.org": [2053], "flntsk.in": [2053], "url.terror.team": [2053], "hk.meituan.com": [10405], "foliovision.com": [6102], "uwc.worldcat.org": [18748], "keepass.info": [8986], "alpinesta.rs": [2053], "goxi.ps": [2053], "blackboard.cornell.edu": [3744], "*.zissousecure.com": [19194], "lecid.re": [2053], "economics.harvard.edu": [7351], "flixbus.be": [6047], "download.taz.de": [16042], "somevid.com": [15380], "url.wheder.eu": [2053], "bgs.zg.ch": [21629], "disk.yandex.com": [18956], "gaitaobao1.alicdn.com": [846], "www.ixsystems.com": [8029], "crn.direct": [2053], "on.ptl.bz": [2053], "quimica.uniovi.es": [17479], "evozi.com": [5576], "www.evm.dk": [5568], "memopol.lqdn.fr": [9267], "bmdg.us": [2053], "lvb.me": [2053], "mrv.me": [2053], "pesa.us": [2053], "content.amadump.com": [19358], "snite.org": [2053], "www.33option.com": [127], "btnhl.net": [2053], "l.airtable.com": [2053], "www.oracle.com": [12284], "frmp.it": [2053], "www.urlaubspiraten.de": [21875], "www.compute.dtu.dk": [16286], "cohealth.co": [2053], "company.overdrive.com": [12364], "bitquick.co": [1992], "mifidii.thomsonreuters.com": [16650], "eluni.mx": [2053], "bonni.ci": [2053], "secure.teljari.is": [10712], "sicurezzarete.com": [21444], "amazon.fr": [19371], "decorcocina.net": [2053], "f32.co": [2053], "www.elderscrolls.com": [19144], "www.aarnet.edu.au": [269], "prqd.co": [2053], "imax.ly": [2053], "f0x.nl": [2053], "m.yandex.com.tr": [18954], "blirt.ly": [2053], "static1.dditscdn.com": [4317], "udnisap.js.org": [20555], "stickyvibe.tuxfamily.org": [21820], "illin.is": [2053], "array.is": [1249], "apimg.alipay.com": [857], "aktion-deutschland-hilft.de": [809], "myfbo.com": [10946], "podcast.at": [13065], "usenet-crawler.com": [17717], "*.cleanenergyfinancecorp.com.au": [3284], "www.erg.cuhk.edu.hk": [2747], "nydn.us": [2053], "bhnk.co": [2053], "solidarites.ch": [21504], "tstmbl.fr": [2053], "services.openbank.ru": [21008], "w.readwrite.com": [2053], "endml.co": [2053], "www.gondor.io": [6952], "www.firstgiving.com": [5984], "jgx.im": [2053], "ork.cc": [2053], "foda.in": [2053], "mybanklearning.sbi.co.in": [14320], "frdair.co": [2053], "appcelerator.com": [1152], "*.enta.net": [5392], "lcdisability.uk": [2053], "dev.techxpress.net": [16277], "prodavin.ci": [2053], "static1.urbandictionary.com": [17697], "www.unisys.co.jp": [17488], "danid.dk": [4209], "sparkly.black": [2053], "altlinux.org": [342], "renck.co": [2053], "vce.com": [17767], "navynews.co.uk": [14228], "bluetrain.me": [2053], "jameco.com": [8648], "datalxr.com": [2053], "dplus.cnzz.com": [3391], "*.proofpoint.com": [13381], "opens.at": [2053], "www.healthcarestaffbenefits.org": [7399], "code.webplatform.org": [18376], "beryl-themes.org": [21006, 21007], "reddit.premii.com": [7581], "usat.ly": [2053], "amaanf.info": [2053], "blog.sandstorm.io": [14522], "otrs-desa.ulpgc.es": [17411], "cldkd.com": [2053], "koderoot.net": [9103], "zhangye.meituan.com": [10405], "www.gupnp.org": [6471], "tptq-arabic.com": [16109], "copic.us": [2053], "asrvr.ir": [2053], "denh.am": [4441], "prton.info": [2053], "sabg.co": [2053], "easyjet.com": [5126], "www.turngs.com": [17118], "nos.netease.com": [11381], "twdx.in": [2053], "shkb.ch": [20574], "buildbot.net": [19609], "sonymobile.com": [15394], "edizb.tw": [2053], "udidac.tv": [2053], "subtome.com": [15823], "www.dealzon.com": [4097], "edwineuro.pe": [2053], "trnd.me": [2053], "www.kdelive.org": [8983], "ponyfoo.com": [21169], "s.automaton.am": [2053], "*.etsy.com": [5500], "files.thirdpresence.com": [16637], "antwer.pe": [2053], "s.dohkeblog.com": [2053], "www.boardgamegeek.com": [2220], "www.buzzdoes.com": [2536], "px.srvcs.tumblr.com": [17101], "4joycasino.com": [20552], "wjtk.pl": [2053], "now-static.norton.com": [11703], "getdropbox.com": [4864], "lfdnb.uk": [2053], "myforms.sc.egov.usda.gov": [17495], "idp.stanford.edu": [15635], "brixwork.com": [2398], "formatdynamics.com": [6161], "tr.foursquare.com": [6200], "whitelabel.net": [18553], "pfg.im": [2053], "experts.stanford.edu": [15635], "membership.theguardian.com": [16554], "democratic.bridgend.gov.uk": [19591], "www.curiosity-driven.org": [4001], "www.secularstudents.org": [14715], "heyad.am": [2053], "rewards.americanexpress.com": [972], "www.awxibrm.com": [3546], "www.onetimesecret.com": [12051], "chaoyangqu.meituan.com": [10405], "resiprocate.org": [13831], "ktmh.me": [2053], "my.maricopa.edu": [10153], "sonicwall.com": [15386], "shop-ly.com": [2053], "www.youtube.hu": [19016], "www.vid.me": [17968], "newpiratebay.co.uk": [21712], "slam.fm": [2053], "go.wvu.edu": [2053], "whatsmychaincert.com": [18533], "ebm.e.ccs.com": [2609], "my.smartbear.com": [21479], "*.aa.net.uk": [264], "rapp81.us": [2053], "l.psp83.co.uk": [2053], "monoc.me": [2053], "torrentleech.org": [16858], "www.medici-manager.com": [10357], "rptx.nl": [2053], "media.licdn.com": [9239], "nbviewer.jupyter.org": [8839], "codeschool.com": [3417], "payments.westminster.gov.uk": [18516], "periscope.io": [12784], "nelrst.co": [2053], "dehu.dict.cc": [4536], "lasftix.com": [2053], "www.gogetssl.com": [6905], "o3w.in": [2053], "cdn.environment-agency.gov.uk": [20047], "osdsc.alicdn.com": [846], "pic1.zhimg.com": [19173], "static.pinboard.in": [12891], "prl.si": [2053], "mmm.wtf": [2053], "cln.cloudlinux.com": [3349], "congresstmi.org": [5898], "i.itr0.pw": [2053], "ipto.ga": [2053], "e2e-m.net": [2053], "dobrochan.ru": [4700], "fotisl.com": [6190], "www.exeterfamily.co.uk": [5599], "*.netmarble.com": [11435], "orhnse.nl": [2053], "telework.gov.au": [16354], "ustream.tv": [17743], "pt-kit.mondediplo.com": [10729], "mirror.contribs.org": [3686], "www.oppelt.com": [12261], "link.epel.us": [2053], "crz.bz": [2053], "i.webgeek.ph": [2053], "mybenefitscalwin.net": [10934], "cp.timeweb.ru": [16728], "q.suntravel.xyz": [2053], "www.vilistlane.ut.ee": [17347], "www.hackread.com": [7267], "hydrogenaud.io": [20403], "thebay.space": [21217], "nl.chaturbate.com": [3093], "fbrogers.co": [2053], "writema.sh": [2053], "forums.okturtles.com": [11972], "rr.gy": [2053], "noomi.li": [2053], "link.tnm.li": [2053], "haobtc.com": [7329], "tpm.io": [2053], "ashletes.com": [2053], "delson.gq": [2053], "i3.piimg.com": [16704], "*.burstnet.com": [2505], "scripts.sil.org": [14360], "exl.is": [2053], "www.me.com": [9901], "www.onesignal.com": [12043], "s3.jrnl.ie": [20554], "on.nyls.edu": [2053], "smrd.csnva.link": [2053], "chlmrkrsr.ch": [2053], "ddar.ca": [2053], "tob.onl": [2053], "evga.com.tw": [5085], "f.omaporsas.ee": [2053], "tcdy.co": [2053], "helpspot.com": [7445], "crowdculture.se": [3891], "*.ujf-grenoble.fr": [17240], "kimbalik.es": [2053], "static.iono.fm": [8489], "wiki-vav.ro.vutbr.cz": [17814], "techtarget.com": [16274], "dfri.es": [2053], "marsocial.com": [9879], "kzuka.co": [2053], "consultation.hackney.gov.uk": [7287], "www.get.cm": [6686], "f5networks.co.jp": [5660], "talesblog.me": [2053], "link.bashea.net": [2053], "myinfo.lincoln.gov.uk": [9523], "raumzeitlabor.de": [13811], "billyjoel.ws": [2053], "www.campusvirtual.uniovi.es": [17479], "r.bstn.fr": [2053], "my.3ra.ca": [2053], "grepbugs.com": [7070], "on.sqisl.me": [2053], "nylas.com": [11796], "formstack.com": [6164], "dashboard.jwplayer.com": [9752], "www.worksthatwork.com": [18747], "theparliamentmagazine.eu": [16570], "wonkwangmd.org": [2053], "keen.io": [8989], "www.igt.hscic.gov.uk": [20388], "explore.co.uk": [7597], "o1.qnsr.com": [13536], "skir.tc": [2053], "travisw.net": [2053], "parkingpermits.kirklees.gov.uk": [9067], "cyberwar.nl": [4052], "coupon.cd": [2053], "special.geektimes.ru": [6628], "sitecontrol.us": [15124], "lagi.tk": [2053], "ent1.tk": [2053], "1tag.us": [2053], "snjy.me": [2053], "2rl.in": [2053], "myefc.efinancialcareers.com": [5010], "loyalforex.com": [9802], "corals.co": [2053], "vwell.cm": [2053], "lekh.com.np": [2053], "unibeds.info": [2053], "ddd.li": [2053], "nutrie.co": [2053], "clusters.de": [3384], "ondemand.sans.org": [14310], "georgetown.edu": [6668], "www.amersfoort.nl": [11324], "docs.saltstack.com": [14493], "djex.co": [2053], "www.xhamster.com": [18816], "ols.britac.ac.uk": [2389], "www.mpfmembers.org.uk": [20839], "registrierung.web.de": [18347], "jincheng.meituan.com": [10405], "www.fold.cm": [6099], "autodiscover.newsinc.com": [11527], "cdn.censornet.com": [19666], "webnames.ru": [21994], "*.sitepen.com": [15116], "cdn.engine.4dsply.com": [186], "bbcom.me": [2053], "gossbrig.com": [2053], "fostermktg.us": [2053], "bz.mercurial-scm.org": [10454], "alank.ca": [2053], "a1.nyt.com": [11186], "com-sys.de": [3514], "www.visatovietnam.org": [18056], "bircko.com": [1965], "pntlbs.co": [2053], "www.gmail.com": [6971], "openaccessbutton.org": [12197], "athens.indymedia.org": [8234], "gtr2.com": [2053], "www.assessment.vt.edu": [18031], "edint.co": [2053], "comprodr.pl": [2053], "tren.us": [2053], "s.bigdawggi.co": [2053], "*.ticketsnow.com": [16696], "www.magicmembers.com": [10023], "prestashop.com": [13265], "*.magserv.com": [10029], "edonorcentral.com": [5002], "travel.americanexpress.com": [972], "education.lego.com": [9222], "www.obi.cz": [20977], "unis.pt": [2053], "it.piliapp.com": [12887], "redbridge.gov.uk": [13917], "co.mposit.es": [2053], "quorks.ath.cx": [13608], "brdgtl.in": [2053], "esource.expo2020dubai.ae": [5622], "2day.fm": [2053], "panel.preyproject.com": [13272], "q.bibhas.in": [2053], "blog.terminal.com": [16383], "yun.taobao.com": [16206], "tube-test.geogebra.org": [6659], "ical.hbloom.com": [2053], "s.lnrdll.me": [2053], "bnrbk.com": [2053], "ipnurl.net": [2053], "spectru.me": [2053], "gsspubssl.nci.nih.gov": [11241], "www.hereplus.me": [7467], "ltradio.com": [9259], "peony.rocks": [2053], "netdnasite.wpengine.netdna-cdn.com": [11380], "api.mail.aol.com": [361], "research.net": [15914], "assets.digital.cabinet-office.gov.uk": [2759], "utclient.utorrent.com": [21831], "sbcc.us": [2053], "www.love2d.org": [9791], "olju.mn": [2053], "kh42.tk": [2053], "customer.stg.xfinity.com": [22082], "pupj.co": [2053], "resources.glassdoor.com": [6823], "stats.bancopastor.es": [1681], "flint.cf": [2053], "recettes.univers-libre.net": [17512], "ctx.to": [2053], "cp.element5.com": [5259], "www.sourcetreeapp.com": [15425], "hellovi.no": [2053], "partnerupload0.steampowered.com": [15704], "planetemu.net": [12985], "forum.susliving.org": [15918], "www.marcan.st": [10146], "egee-uig.web.cern.ch": [2632], "english-heritageshop.org.uk": [5371], "brena.us": [2053], "www.terveysportti.org": [16394], "rcitravelstore.co.uk": [18790], "holdall.norfolk.gov.uk": [20923], "www.foliovision.com": [6102], "enlightenment.org": [5382], "url.sphardy.com": [2053], "2.darkroom.shortlist.com": [14979], "j-ch.in": [2053], "riot.com": [2053], "hnka.co": [2053], "s.aneb.ca": [2053], "webie.eu": [2053], "www.yoyo.com": [22116], "wiki.eth-0.nl": [5481], "ianl.info": [2053], "oi.meetings.io": [10384], "planboardapp.com": [12975], "scalesystemweb.tdcserviceonline.com": [16053], "mail.telford.gov.uk": [21675], "www.qtdeveloperdays.com": [13547], "autodiscover.west-norfolk.gov.uk": [22004], "surespot.me": [15901], "sfn.org": [15327], "blsh.cc": [2053], "anl.yt": [2053], "tarpon.citrix.com": [3237], "aafic.me": [2053], "asiamil.es": [2053], "central-lincs.objective.co.uk": [20979], "x.wpimg.pl": [22055], "*.selfhost.de": [14810], "en-nl.dict.cc": [4536], "raymor.in": [2053], "evil32.com": [5566], "brewingwork.co": [2053], "carto.mondediplo.com": [10729], "preferences.hearstmags.com": [7410], "*.fastssl.net": [5789], "www.tindie.com": [16742], "wikif.in": [2053], "fiet.me": [2053], "benefits.tamworth.gov.uk": [21660], "*.ntt.com": [11155], "autodiscover.hcl-axon.com": [7179], "vue.com": [12718], "mustaphalab.stanford.edu": [15635], "afroniquely.us": [2053], "doxea.info": [2053], "www.stopbadware.org": [15745], "archive.baruwa.com": [19490], "12ma.co": [2053], "kirklees.greenparty.org.uk": [7052], "wwwsrv.bo.infn.it": [7913], "myapp.cdgcommerce.com": [2610], "superstats.com": [15872], "notebookkisker.hu": [9308], "activate.origin.com": [12309], "webseries.rsi.ch": [21550], "eforms.chichester.gov.uk": [19703], "url.coenm.nl": [2053], "pad.freifunk.net": [6311], "go.nc4pk.net": [2053], "digisci.co": [2053], "faq.fongo.com": [2053], "skoleni.root.cz": [14199], "app.statushub.io": [15692], "bqq.gtimg.com": [7121], "en.gay-lounge.net": [20208], "csene.ws": [2053], "mandiant.net": [10347], "ana.net": [1332], "cdn.emetriq.de": [18888], "univis.uni-mainz.de": [17611], "www.alibaba.com": [850], "hertz247.co.uk": [7510], "hitleap.com": [7562], "youtube.ru": [19016], "go.openco.ru": [2053], "youtube.rs": [19016], "playte.ch": [2053], "mortara.georgetown.edu": [6668], "riv.cc": [2053], "bulkorder.ftc.gov": [5837], "ogtbj.com": [2053], "static.gazeta.ru": [6599], "boig.co": [2053], "secure.manlysealifesanctuary.com.au": [10123], "fnt.webink.com": [18365], "youtube.ro": [19016], "qr8s.co": [2053], "2di.me": [2053], "site5.com": [15109], "www.hellobar.com": [7433], "www.emapawards.com": [5298], "rkz.com.br": [2053], "shared.ilovefreegle.org": [8037], "bertrandmeyer.com": [1851], "topblo.gs": [2053], "chplan.us": [2053], "c.bonyana.ir": [2053], "trov.to": [2053], "mswr.me": [2053], "fitocracy.com": [6005], "trueisl.am": [2053], "c.xkcd.com": [22085], "www.talkactive.net": [16180], "*.don.ac.uk": [4771], "stbrd.in": [2053], "juridicos.afip.gob.ar": [19318], "a9ny.com": [2053], "tdpf.co": [2053], "m.poczta.wp.pl": [18217], "www.hrkgame.com": [7724], "dms-d.wiiings.com": [18587], "www.farmaciforbundet.se": [5778], "ecdrappeals.ed.gov": [4988], "edinburghfestival.list.co.uk": [16464], "*.coloradoan.com": [3508], "www.gutefrage.net": [7157], "dedigitaletopschool.nl": [4324], "itweed.co": [2053], "ewf.companieshouse.gov.uk": [3571], "ciner.gy": [2053], "www.onionshare.org": [12062], "frwl.tv": [2053], "l.tpt.bz": [2053], "prtn.rs": [2053], "link.lejuez.com": [2053], "hy.is": [2053], "a.planetlan.com": [12990], "live.dus.c3voc.de": [2559], "kwdub.ai": [2053], "secure2.store.apple.com": [1160], "e-banking2.hangseng.com": [7326], "sealserver.trustwave.com": [17074], "tuiles.mondediplo.com": [10729], "addons.opera.com": [12252], "cs.vu.nl": [17813], "d.icetravel.xyz": [2053], "fama.alipay.com": [857], "thepiratebay.rs": [21709], "blog.ted.com": [16060], "biop.ox.ac.uk": [17557], "yuizinha.link": [2053], "x.nuckpup.ca": [2053], "glassfish.java.net": [8673], "rcdata.ca": [2053], "terengganu.worldcat.org": [18748], "krownz.info": [2053], "*.drownedinsound.com": [4869], "drakk.link": [2053], "kanal.meo.pt": [10440], "www.upf.edu": [17674], "my.wku.edu": [22039], "e-barr.com": [2053], "joao.cat": [2053], "icmag.*": [2867], "https.downforeveryone.com": [4820], "insight.rapid7.com": [13788], "blogs.kent.ac.uk": [17603], "www.okcupid.com": [11971], "www.risk.io": [14134], "luisrs.co": [2053], "uc.vtb24.ru": [21961], "srv.asknet.de": [1303], "www.mantor.org": [10127], "*.dx.com": [4331], "usplusu.com": [17739], "zeke.ws": [2053], "tob.ac": [2053], "assets.dnainfo.com": [19932], "ccan.me": [2053], "events.ch": [5550], "cms.myspacecdn.com": [11037], "gymhotti.es": [2053], "atcal.berkeley.edu": [17526], "a.next.la": [2053], "www.contact-sys.com": [3671], "p.noguwo.com": [2053], "buycraft.net": [2530], "www.westlandutrechtbank.nl": [18513], "*.nps.gov": [11273], "www.europe-consommateurs.eu": [20069], "lib.tax": [2053], "iampp.in": [2053], "b.tourkick.com": [2053], "yarch.co": [2053], "www.youtube.si": [19016], "zhiku.tmall.com": [21748], "www.snsbank.nl": [14382], "talent.usc.edu": [17564], "es.cryptonator.com": [3952], "bunchball.com": [2480], "mhy.me": [2053], "loud.ie": [2053], "1.lextogo.com": [2053], "www.usrowing.org": [17328], "bark.gs": [2053], "eps-images.tv2.dk": [16136], "content.oneplus.net": [12041], "on.axed.nl": [2053], "www.checkpoint.com": [3106], "www.groupon.com": [7100], "goldstar.com": [6945], "tywyn.wales": [2053], "a.kjp.co": [2053], "vldz.in": [2053], "bookkeeper.itunes.apple.com": [1160], "kdp.amazon.co.jp": [19364], "s.maxi.host": [2053], "addresspicker.io": [618], "www.healthunlocked.com": [7396], "allpayments.net": [19354], "vtr.pe": [2053], "www.peerio.com": [12732], "*.bcvs.ch": [1703, 20574], "gametreedeveloper.com": [6546], "*.atlantic.net": [1354], "link.cibul.cz": [2053], "claws.cf.ac.uk": [2895], "s.ajchan.com": [2053], "cheryl.at": [2053], "spanish.bogota.usembassy.gov": [21879], "give.am": [2053], "mvptitle.com": [9972], "blog.witness.org": [18683], "itseo.org": [2053], "shanxian.meituan.com": [10405], "i.byog.co": [2053], "account.buckscc.gov.uk": [19605], "blim.co": [2053], "macworld.idg.se": [7852], "casino.williamhill.com": [18614], "s.qbpros.net": [2053], "imgdino.com": [8140], "boss.berlinonline.de": [1845], "dukgo.com": [4888], "go.outfithq.de": [2053], "reep.refeds.org": [13646], "fandw.me": [2053], "www.alternatives.ca": [923], "foyi.net": [2053], "acre.ws": [2053], "twobyfo.re": [2053], "youtube.com.ua": [19016], "nmed.inl.gov": [20462], "frontier.co.uk": [6342], "marc.sx": [2053], "semiaccurate.com": [14815], "4bits.dk": [2053], "via.mrkw.se": [2053], "vspl.in": [2053], "fatcow.com": [5806], "static.reporo.com": [14015], "preview-studyinthestates.dhs.gov": [4109], "s.bfreeporn.com": [2053], "cdnakmi.kaltura.com": [8927], "*.nsidc.org": [11251], "www.infinow.net": [8245], "www.shorte.st": [14980], "www.studentchaptersonline.acs.org": [966], "shatura.beeline.ru": [1801], "documents.buzzfeed.com": [2531], "goparallel.sf.net": [15423], "lglifes.gd": [2053], "www.joycasino0.com": [20552], "solucionespyme.cisco.com": [3221], "grp03.id.rakuten.co.jp": [13768], "cern.ch": [2632], "podpora.skolaonline.cz": [21471], "*.electricembers.net": [5250], "ticket.yandex.kz": [18957], "epx.ms": [2053], "*.thesfmarathon.com": [14512], "5thin.gs": [2053], "ygtech.tools": [18919], "fbo.gov": [5831], "tlhp.cf": [16078], "h.live.com": [9644], "www.ourproject.org": [21044], "templ.show": [2053], "switch.uy": [2053], "alertonline.nl": [831], "www.jolicloud.com": [20547], "www.slice.com": [15200], "www.binsearch.info": [1942], "ilg.usc.es": [17711], "my.neo900.org": [11338], "static.jrnl.ie": [20554], "elrepo.org": [5023], "dvidshub.net": [4165], "rcm-ca.amazon.ca": [19362], "simplereach.com": [15067], "chrysalisventures.com": [3185], "streetlink.org.uk": [21591], "licensecompliance.gettyimages.com": [6741], "alfa.cz": [841], "i.fabian.mx": [2053], "webpaper.nzz.ch": [20974], "www.weibopay.com": [21998], "careers.dkit.ie": [4114], "at.lldlaw.com": [2053], "yeas.yahoo.co.jp": [18944], "lxty.us": [2053], "link.asseny.org": [2053], "link.kollmer.me": [2053], "lobjet.eu": [2053], "forum.sabayon.org": [14450], "cam.illinois.edu": [17544], "mlvk.co": [2053], "s1.adformdsp.net": [625], "www.ontraport.com": [21003], "trmm.net": [17031], "shoot.camp": [2053], "in.elisete.com": [2053], "pragmaticmarketing.com": [13239], "kz.rutracker.org": [21346], "skooz.me": [2053], "phs.tanx.com": [21661], "nush.co": [2053], "hsn.bz": [2053], "pic.mathi.eu": [2053], "home.capitalone360.com": [2879], "parkinsonsblog.stanford.edu": [15635], "molotro.ru": [20819], "mywebsite.1and1.ca": [62], "cheapairportparkingbirmingham.com": [3101], "s80.cnzz.com": [3391], "torfx.co": [2053], "kwn.is": [2053], "mail.vas-hosting.cz": [21896], "crnt.engineering.osu.edu": [11959], "www.dailystavropol.ru": [19848], "tagx.radiox.ch": [13750], "www.wingolog.org": [18653], "ugst.umd.edu": [17549], "printrbot.com": [13299], "cybercon.com": [4040], "icsu.co": [2053], "itp.link": [2053], "www.cryptostorm.is": [3959], "genglow.com": [2053], "at.pw.org": [2053], "beyondbinary.io": [19521], "www.ohiounion.osu.edu": [11959], "76.pe": [2053], "b.oudin.me": [2053], "curso.ms": [2053], "sbber.me": [2053], "partners.datamotion.com": [19859], "webaccess.uaa.alaska.edu": [17519], "wiki.rit.edu": [13667], "t.alipayobjects.com": [857], "tickets.eth0.nl": [5481], "activew.in": [2053], "aj-b.co": [2053], "www.cryptojedi.org": [3944], "lightning.cdn.overdrive.com": [12365], "event.condenastdigital.com": [3619], "rcm-na.assoc-amazon.com": [1323], "subscriptions.economist.com": [5161], "pc.1688.com": [44], "richardoil.me": [2053], "*.shld.net": [14355], "provost.stanford.edu": [15635], "pkg.im": [2053], "www.goeshow.com": [6924], "b.device42.com": [2053], "brasil247.com": [2343], "myb.tips": [2053], "mauritania.usembassy.gov": [21879], "webapp.wizards.com": [18687], "www.pgp.webtru.st": [18469], "kaifeng.meituan.com": [10405], "lists.mplayerhq.hu": [9949], "www.djoserjunior.nl": [7597], "cdn.ssbkyh.com": [15596], "myfreecopyright.com": [10950], "kwdesign.at": [2053], "communitymednews.stanford.edu": [15634], "b.dube.us": [2053], "skillet.lifehacker.com": [9492], "myprogress.collyers.ac.uk": [3496], "mysupport.attachmate.com": [1372], "frctr.me": [2053], "k.kiro.bg": [2053], "hailguardian.com": [7296], "www.libssh.org": [9481], "wfa.re": [2053], "script.ioam.de": [7930], "morocco.usembassy.gov": [21879], "www.iab.org": [7809, 7810], "s1rx.com": [2053], "brightfutures.portsmouth.gov.uk": [21175], "6.wate.com": [2053], "www.bose.co.uk": [2282], "cooltee.us": [2053], "youtube.ie": [19016], "iris.va.gov": [17297], "youtube.in": [19016], "www.skandia.se": [15141], "cdn5.fnmag.co": [5696], "youtube.it": [19016], "mnpx.fr": [2053], "findnsave.com": [5951], "www.ranallolawoffice.com": [11581], "dikle.in": [2053], "uwdo.gs": [2053], "liblearn.osu.edu": [11874], "www.adhocracy.de": [627], "s.lismo.jp": [2053], "www.mozilla.com.tw": [10842], "s3.antimac.org": [2832], "www.environment.leeds.ac.uk": [17604], "www.perfectmarket.com": [12772], "dzerzhinsk.beeline.ru": [1801], "trojanone.co": [2053], "u.eduk8.me": [2053], "dgtlgyd.in": [2053], "portal.emergingthreats.net": [5309], "posh.so": [2053], "eussencs.link": [2053], "vbrnt.us": [2053], "www.findretros.com": [5954], "s.ldg.me": [2053], "axp.zedo.com": [19122], "wiki.lugons.org": [9262], "lenovovision.com": [9409], "go.grabone.com": [2053], "www.openfoundry.org": [12136], "bhat.me": [2053], "forums.factorio.com": [20091], "rwdy.us": [2053], "*.gtcsonline.mycashflow.fi": [6511], "careerbuilder.com": [2901], "hsic.com": [2053], "aipaichina.1688.com": [44], "altacar.ga": [2053], "sidthms.us": [2053], "studclient.htwk-leipzig.de": [7736], "jpopsuki.eu": [8803], "sdsp.ipinyou.com": [7950], "mail.apan.org": [369], "kungfu.chef.io": [3115], "cache.podseed.org": [13070], "www.myshaklee.com": [14899], "compass.thecthulhu.com": [16600], "www.pcrdist.com": [21096], "gigasize.com": [6765], "imgbox.com": [8143], "openstreetmap.org": [12177], "2.t-dub.net": [2053], "akuzw.eu": [2053], "searchcommander.com": [14685], "qte.me": [2053], "bsi-ni.brain.riken.jp": [13663], "eddievera.com": [2053], "notiz.ie": [2053], "expohomes.com": [5740], "www.2ip.ru": [113], "*.verizonwireless.com": [17920], "fdbo.is": [2053], "butik.information.dk": [8272], "4dc.at": [2053], "wick.video": [2053], "casj.biz": [2053], "www.xm1math.net": [18881], "blackmesh.com": [2090], "*.isdewinkelopen.nl": [20416], "wuissrv20.wustl.edu": [18290], "*.he.net": [7774], "www.toyfoundry.net": [16893], "cansmile.net": [2053], "k-pop.fans": [2053], "tengzhou.meituan.com": [10405], "kable.com": [8914], "*.napoleonmakeupacademy.com.au": [11225], "shop.eset.com": [5463], "ktsaunders.co": [2053], "www.cm.be": [3169], "tweet.scmp.com": [2053], "www.zattoo.com": [19116], "agari.com": [758], "*.signon.trb.com": [17007], "*.populisengage.com": [13150], "*.butterflylabs.com": [2523], "jdami.co": [2053], "go.lpia.co": [2053], "iawat.ch": [2053], "signup.taboola.com": [16153], "ctznt.it": [2053], "m.uw.edu": [17355], "travel.sakh.com": [21360], "technical.lavaboom.com": [9327], "jamanetwork.com": [8559], "wanab.be": [2053], "st4.gismeteo.ru": [6789], "www.lebanon.hsbc.com": [7233], "www.tchibo.hu": [16240], "piwik.liberdade.digital": [9456], "dashboard.aggregateknowledge.com": [764], "immers.me": [2053], "www.ing.nl": [7916], "modernis.tk": [2053], "tailormadeanswers.com": [16168], "lists.lysator.liu.se": [9238], "www.vdqbulbs.com.au": [17769], "tlc.telford.gov.uk": [21675], "playfire.com": [13025], "azplay.co": [2053], "readrboard.com": [13850], "link.cgiu.org": [2053], "media.eloqua.com": [5281], "net.koide.jp": [2053], "go.djjavo.co.uk": [2053], "owa.groupware.kuleuven.be": [8969], "23systems.net": [88], "www.rockpaperphoto.com": [14167], "www.heatball.de": [7415], "www.metrix.net": [10497], "find.firefox.com": [5974], "www.asseenontv.com": [1275], "websitealive1.com": [18445], "members.jpost.com": [8804], "de.redhat.com": [13909], "*.oe24.at": [11927], "www.interns.org": [8440], "fox25.com": [2053], "fdopk.org": [5779], "ttl.ut.ee": [17347], "www.mobigum.com": [10678], "kantarworldpanel.com": [8938], "sgmothe.rs": [2053], "*.broadinstitute.org": [2401], "lfov.net": [9230], "eeic.osu.edu": [11959], "theguardian.com": [16554], "bet365.com": [1863], "cpq-1.co": [2053], "iwz.li": [2053], "nosky.us": [2053], "svdpgs.ru": [2053], "www.opencaching.pl": [21010], "ajm.im": [2053], "s.aysray.com": [2053], "anima.link": [2053], "media2.apnonline.com.au": [373], "thef.ro": [2053], "eshne.ws": [2053], "se.tips": [2053], "buy.stubhub.co.uk": [15789], "www.belpino.se": [1822], "*.assembly.com": [1316], "www.getdigital-blog.de": [6692], "www.debekijkerie.nl": [4322], "www.yottos.com": [22108], "prospect.prospectpublishi.netdna-cdn.com": [13389], "m.facebook.com": [5733], "notification.adblockplus.org": [601], "assets.couchsurfing.com": [19798], "pa6.me": [2053], "zyrotech.uk": [2053], "itunes.anadolu.edu.tr": [1025], "nwcn.tv": [2053], "www.netmediaeurope.co.uk": [11390], "*.leidenuniv.nl": [9399], "www.teacupsandtrinkets.co.uk": [16249], "cash.me": [15580], "www.agileu.com": [766], "trideci.com": [16998], "92keys.io": [2053], "re.porting.co": [2053], "rochford.firmstep.com": [20125], "l.hwm.io": [2053], "beckerweb.wustl.edu": [18290], "*.stayfriends.at": [15698], "call.vtweb.us": [2053], "mery.jp": [9903], "photos3.zillowstatic.com": [19182], "reisen.eduscho.at": [16240], "jcrmx.es": [2053], "portal.cloudisc.bezeqint.net": [1886], "*.etsystatic.com": [5500], "elisa.to": [2053], "kitapsatis.anadolu.edu.tr": [1025], "pjblack.me": [2053], "www.lightbluetouchpaper.org": [9504], "kb.mediatemple.net": [10331], "challenge25.go.jp": [8663], "scsi.sec.samsung.net": [14510], "kamkombank.dengisend.ru": [4440], "profesia.sk": [21206], "bazzapp.com": [1761], "markjr.link": [2053], "naprts.us": [2053], "support.apple.com": [1158], "www.bet365.es": [19517], "url.ttlvrs.com": [2053], "*.seconfig.sytes.net": [14709], "northamptonshire.firmstep.com": [20125], "rcicruiseholidays.ourvacationcentre.net": [18789], "kasp.co": [2053], "sale.jd.hk": [8572], "*.cargocollective.com": [2909], "conference.jesus.cam.ac.uk": [17529], "calqu.in": [2053], "lbk.li": [2053], "nxeassets.xbox.com": [18850], "debuggex.com": [4356], "config.webconverger.com": [21989], "golf2go.net": [1546], "bgm.stanford.edu": [15634], "mysqlbackup.zmanda.com": [19198], "newstuff.seagate.com": [14679], "interac.vogogo.com": [21941], "www.fortumo.com": [6178], "forumblog.org": [6181], "system.spektrix.com": [21532], "jakearchibald.com": [8642], "antho.cm": [2053], "gav.in": [2053], "pbwebdev.com": [12417], "kevmas.com": [2053], "knln.de": [2053], "tnwt.co": [2053], "lk.jyh.me": [2053], "m.corec.jp": [2053], "spec.org": [14394], "m.arqtgn.cat": [2053], "zzirc.xyz": [2053], "neimanmarcus.com": [16106], "wag.com": [21965], "www.webmaster.yandex.kz": [18957], "onlinepermits.lambeth.gov.uk": [20631], "img01.findgravy.com": [5958], "bazb.in": [2053], "rickw.in": [2053], "moti.onl": [2053], "pix.sv.us.criteo.net": [3872], "go.ousd.org": [2053], "getpol.org": [6728], "cdn4.colocationamerica.com": [3498], "*.www.maxymiser.com": [10264], "www.maps.yandex.com": [18956], "www.vacando.ch": [17818], "auth.berkeley.edu": [17526], "installations.bobcares.com": [2226], "hyp-r.co": [2053], "www.bosslinux.in": [19575], "kartta.porvoo.fi": [21176], "www.haaksbergen.nl": [11324], "asc.cc": [2053], "openfmri.org": [12231], "waste.org": [18191], "prospect.rsc.org": [14229], "help.aol.com": [361], "wealden-consult.objective.co.uk": [20979], "cdn7.openculture.com": [12204], "dailyre.co": [2053], "csawctf.poly.edu": [13113], "codingteam.net": [3447], "iform.zg.ch": [21629], "www.exploreb2b.com": [5620], "brightfort.com": [2375], "sparanoid.com": [21523], "elkline.co": [2053], "abhi.ws": [2053], "adingo.jp": [632], "360.gl": [2053], "to.dailey.io": [2053], "chpskt.com": [2053], "www.stealthy.co": [21571], "ip-search.ch": [15949], "static.yunaq.com": [22122], "faiz.cc": [2053], "partner.steamgames.com": [15707], "ruyang.meituan.com": [10405], "img5.bdstatic.com": [19507], "blpn.co": [2053], "channelslb.ap.dell.com": [4413], "www.assoc-amazon.co.uk": [1322], "*.segurosuniversales.net": [14805], "xetra.com": [18868], "*.custhelp.com": [4008], "nurd.space": [11165], "momloves.it": [2053], "pjain.co": [2053], "gsmmap.org": [20287], "chlstowg.co": [2053], "webtrends-lb.ericsson.net": [5447], "ws.cubby.com": [3980], "ubs.re": [2053], "s17.cnzz.com": [3391], "info.securityinabox.org": [14776], "dmil.uk": [2053], "cafrb.us": [2053], "hellosign.com": [7437], "tboxtv.de": [2053], "www.pbproxy.com": [21709], "cdns.gigya.com": [6779], "www.thalys.com": [16434], "dealtoday.me": [2053], "g2crowd.link": [2053], "jnls.cup.org": [2748], "nc.gs": [2053], "api.t411.io": [16036], "on.recode.net": [2053], "admin.ubuntuusers.de": [17383], "cargdn.co": [2053], "pol.mn": [2053], "yllwprl.com": [2053], "www.starttls.info": [14424], "reframe.gizmodo.com": [6817], "do206.co": [2053], "springe.st": [2053], "707.me": [2053], "owin.co": [2053], "drdnxt.de": [2053], "pkgs.clearlinux.org": [3291], "chbe.illinois.edu": [17544], "centzy.com": [3021], "epcpa.us": [2053], "ethlife.ethz.ch": [5073], "nr.gy": [2053], "www.pwdhash.com": [13490], "www.geoiptool.com": [20225], "blog.twenga.com": [17149], "ci.openmrs.org": [12150], "aegeanair.com": [7041], "*.cfapps.io": [3036], "blog.codebasehq.com": [3420], "www.ghostnoteapp.com": [6752], "*.americanheart.org": [982], "*.incommonfederation.org": [8180], "btno.de": [2053], "southbankcentre.co.uk": [15441], "econda.de": [5159], "shw.gd": [2053], "gorod.yandex.ua": [18961], "b.brianwolf.tv": [2053], "inkin.club": [2053], "cockpit.kolabnow.com": [9112], "on.ihs.com": [2053], "ypwn.co": [2053], "static4.flattr.net": [6024], "mae.osu.edu": [11959], "www.polyvore.com": [21167], "www.stemulitefitnessformula.com": [15723], "an.gl": [2053], "itmatrix.eu": [8005], "levier.news": [2053], "wwhoco.de": [2053], "members.mtna.org": [9966], "ichef.bbci.co.uk": [19501], "s.mior.ca": [2053], "www.cedmagazine.com": [2626], "app.alipay.com": [857], "zacks.com": [19086], "www.polymer-project.org": [13118], "foi.cardiff.gov.uk": [19644], "go.aerobyn.com": [2053], "meeting-reg.com": [10176], "www.sweden.se": [15936], "subscriptions.parliament.uk": [21075], "*.jiwire.com": [8714], "valuecommerce.ne.jp": [17835], "www.destroyallsoftware.com": [4476], "www.10minutemail.com": [19], "manager.web4all.fr": [18349], "www.triplemint.com": [17021], "*.en.alibaba.com": [850], "digi77.com": [4554], "col.ckbe.at": [2053], "web.housing.illinois.edu": [17544], "inka.f4.htw-berlin.de": [7246], "jobs.thomsonreuters.com": [16650], "privatelayer.com": [13325], "www.obsoleet.org": [11906], "l.carlo.sg": [2053], "cris.ws": [2053], "www.blacktonic.com": [2093], "buzzti.me": [2053], "timeweb.com": [16727], "www.sealswithclubs.eu": [14681], "vtunnel.com": [17812], "pirate-party.ru": [12919], "gianno.ug": [2053], "s.nikonpro.eu": [2053], "www.familie.bw.aok.de": [357], "www.mehring.com": [10403], "cleveland.police.uk": [3296], "keepupweb.us": [2053], "www.engineering.leeds.ac.uk": [17604], "jsw.li": [2053], "wupath.wustl.edu": [18290], "tv-online.gq": [2053], "fskills.idoxgroup.com": [20426], "aol.it": [2053], "webfolio.spla.ulaval.ca": [17515], "public.worcestershire.gov.uk": [22046], "*.lumosity.com": [9832], "www.cacetech.com": [2765], "dengfeng.meituan.com": [10405], "transparency.automattic.com": [1465], "ondemand2.monex.co.jp": [10733], "dealers.eurogap.cz": [5522], "icflw.co": [2053], "aviris.fi": [1490], "porco.cc": [2053], "preferences.truste.com": [16111], "sy.amebaownd.com": [19379], "revenuesbenefits.charnwood.gov.uk": [3074], "www.feedpress.me": [5850], "owa.alfa.de": [840], "snld.com.au": [2053], "upickem.net": [17677], "cloud.tyk.io": [17180], "imagecache2.allposters.com": [875], "blog.sys4.de": [16000], "fr.aliexpress.com": [847], "www.togahotels.com": [16801], "selfcare.tdc.dk": [16051], "a8.hitravel.xyz": [2053], "delallo.co": [2053], "s.approdo.it": [2053], "lohas-scout.de": [2053], "data.utsystem.edu": [17570], "5fi.sh": [2053], "www.tasteofthenorthend.org": [16226], "secure.security.nl": [14767], "invete.ch": [2053], "ubjobs.buffalo.edu": [17583], "l.shahr.uz": [2053], "paulrees.me": [2053], "hex.tw": [2053], "login.proxy.uchicago.edu": [17532], "businessservices.usc.edu": [17564], "secure.opinionlab.com": [12256], "npin.cdc.gov": [19663], "mssvm.sc": [2053], "invm.co": [2053], "www.kable.com": [8914], "comptroller.nyc.gov": [11484], "www.legitscript.com": [9389], "k.copyleft.org": [3723], "rbu.sh": [13827], "humc.ch": [2053], "www.mobot.net": [7693], "prettymuch.it": [2053], "l.pincom.be": [2053], "*.wildapricot.org": [18603], "f1.thejournal.ie": [16490], "muv.uio.no": [17615], "personal.zoho.com": [19202], "watson.ch": [21983], "www.banyen.com": [1706], "shr7t.com": [2053], "awkward.wtf": [2053], "bb16.us": [2053], "bizo.com": [2084], "hubpeople.com": [20393], "arsen.io": [2053], "ear.wf": [2053], "atupri.me": [2053], "maps.beeline.ru": [1801], "www.carters.com": [2927], "epikn.tw": [2053], "b4t.co": [2053], "insightseries.splashthat.com": [15532], "www.netteca.com": [11445], "lesestoff.ch": [20664], "www.thepiratebay.gy": [21710], "stars.leeds.ac.uk": [17604], "sciatl.org": [2053], "discussion.theguardian.com": [16554], "a.fetitch.com": [2053], "www.kybernetes.htwk-leipzig.de": [7736], "netc.im": [2053], "gospel4.life": [2053], "bot.djurl.co.uk": [2053], "www.dbnnor.no": [4692], "tbte.ch": [2053], "ricoh.com.hk": [14112], "attictv.com": [1375], "d7v.me": [2053], "community.oracle.com": [12284], "www.thepiratebay.gd": [21710], "www.thepiratebay.gg": [21709], "sother.ly": [2053], "newyorktimes.com": [11505], "a1.lscdn.net": [9256], "eduscho.at": [16240], "cpa.meetme.com": [10378], "forms.cert.org": [2640], "jkry.org": [8588], "reiner-sct.com": [13981], "www.browsershots.org": [2426], "downey.illuminateed.com": [20430], "fb.lagardere-pub.com": [9284], "tpb.unlockme.space": [21771], "on.wsoctv.com": [2053], "cdn.adsrvmedia.net": [674], "nwsty.co": [2053], "info.zscaler.com": [19231], "weypav.uk": [2053], "www.ascr.usda.gov": [17495], "bnst.lk": [2053], "films.deathmask.net": [4344], "go.vydia.com": [2053], "help.sina.com.cn": [15086], "www.openhub.net": [12211], "vhunt.rs": [2053], "pwk.cossacklabs.com": [3760], "community.invisionpower.com": [8473], "origin.img.domaintools.com": [4750], "www.studiumundbehinderung.kit.edu": [8949], "www.cryengine.com": [3909], "secure.ace.advertising.com": [701], "dkng.co": [2053], "wpp.to": [2053], "nl.hertz.be": [7478], "avina.sh": [2053], "www.youtube.cz": [19016], "drakene.ws": [2053], "wz2100.net": [18284], "dev.chromium.org": [3179], "storage.stgbssint.com": [15728], "pungence.info": [2053], "www.youtube.ch": [19016], "www1.firstdirect.com": [20127], "music.bi": [2053], "www.youtube.co": [19016], "jshoq.me": [2053], "www.youtube.ca": [19016], "www.it.uu.se": [17352], "4mn.ca": [2053], "secure.ourneighborhoodmilf.com": [12350], "bishopfox.com": [1969], "french.burkinafaso.usembassy.gov": [21879], "2tix.es": [2053], "code.hackerspace.pl": [7280], "bkp.al": [2053], "myprima.co": [2053], "cdn.xfinity.com": [22082], "blog.yourkarma.com": [19035], "rngd.es": [2053], "short.raggl.me": [2053], "www.dotsec.com": [4790], "ftsz.tv": [2053], "www.mysitemyway.com": [11033], "e.vo6.info": [2053], "freerunet.ru": [20170], "prima.urospace.net": [17704], "cheboksary.beeline.ru": [1801], "longyao.meituan.com": [10405], "hfn.me": [2053], "*.caintvnetwork.com": [2779], "onb.lu": [2053], "kunde.feide.no": [5858], "zenit.dengisend.ru": [4440], "mtna.org": [9965], "a.wish.org": [2053], "www.virtualizationreview.com": [18047], "tcr.bz": [2053], "apps.uillinois.edu": [17238], "data.archive.moe": [1204], "weotta.me": [2053], "www.tvheadend.org": [17137], "cadw.wales.gov.uk": [2774], "csbaacademy.com": [2722], "lrn.io": [2053], "cmpbell.com": [2053], "create-dmgmedia.co.uk": [3841], "box.repsol.info": [2053], "in-disguise.com": [8173], "qr.cmrn.cat": [2053], "www.lebsanft.org": [20651], "sharideangelo.com": [14926, 14927], "micetro.xyz": [2053], "secure2.sophos.com": [15403], "discoverypark.bnl.gov": [19564], "wddnc.es": [2053], "www.nodejsmodules.org": [11643], "ytfcne.ws": [2053], "www.iwantmyname.com": [20517], "hour.ly": [2053], "*.schoolloop.com": [14605], "caltech-sp.blackboard.com": [2103], "axit.me": [2053], "help.squat.net": [21549], "ssl.intevation.org": [8445], "www.ispid.nl": [7978], "team.oschina.net": [12321], "stomp.life": [2053], "mielv.be": [2053], "ae.ro": [2053], "track.rsdn.org": [21334], "surety-mail.com": [2053], "admin4.providesupport.com": [13401], "secure.vcab.com": [17765], "support.click-sec.com": [3300], "elsat.ch": [2053], "*.oppo.com": [12262], "www.rapidsite.jp": [13793], "cdsweb.cern.ch": [2632], "kspaceyfound.at": [2053], "w.rtnc.me": [2053], "4resu.lt": [2053], "lids.mit.edu": [9916], "appear.in": [1153], "support.tenable.com": [16370], "netreg.berkeley.edu": [17526], "ea.objective.co.uk": [20979], "ticketing.heanet.ie": [7406], "mvbdunlap.com": [2053], "st.gs": [2053], "query.nytimes.com": [11189], "eregistrar.westsussex.gov.uk": [18507], "rgr.cc": [2053], "www.ruby-forum.com": [14250], "crukip.cancerresearchuk.org": [19637], "lvngbnfts.com": [2053], "go.umair.me": [2053], "solasit.es": [2053], "janus.senate.gov.ph": [14819], "fed.apps.ikea.com": [8108], "ethr.ee": [2053], "www.eecs.berkeley.edu": [17526], "riot.site": [2053], "adverts.adgenie.co.uk": [626], "novn.ir": [2053], "office15client.microsoft.com": [10543], "kit.edu": [8950], "extranet.wienit.at": [18582], "customtiburon.com": [4011], "tor.spline.inf.fu-berlin.de": [6307], "www.thediplomat.com": [16451, 21697], "svc.engineering.osu.edu": [11959], "asset-7.soup.io": [15415], "nwlife.ch": [2053], "cdn.marcoslater.com": [20752], "manchester.objective.co.uk": [20979], "meta.ps": [2053], "nikg.uk": [2053], "bsdhistory.discoverbsd.com": [4634], "drhyman.me": [2053], "rda.link": [2053], "www.developer.here.com": [7465], "www.tacticaltech.org": [16156], "lockerdome.com": [9706], "retronaut.com": [14062], "jmcd.me": [2053], "s.durasite.net": [2053], "www.senderscore.org": [14825], "home.uni-erlangen.de": [17597], "chels.ag": [2053], "www.focusonlearningcenter.com": [6093], "onbusiness.britishairways.com": [1527], "mebeer.co": [2053], "www.charnwood.gov.uk": [3074], "s1.adform.net": [625], "datamappi.fi": [4281], "odwpr.us": [2053], "fishbase.us": [5996], "bigbrother.se": [1909], "www.oag.com": [11802, 11803], "craigslist.ca": [3825], "posta-online.poste.it": [13192], "www.wine-apps.org": [21006], "pcsp-emu.com": [5326], "success.economist.com": [5161], "www.gametreedeveloper.com": [6546], "www.getfirebug.com": [6696], "jobsatosu.com": [8748], "fpt.me": [2053], "*.retail-link.gr": [14054], "docs.nice.org.uk": [11110], "ticket4u.com.my": [21736], "smuglabs.com": [2053], "gfl.tips": [2053], "z.5162.us": [2053], "e12.xhamsterpremiumpass.com": [18817], "img1.chbtc.com": [3094], "www.he.com": [7774], "jmusic.id": [2053], "appsites.com": [1175], "www.energie.vellum.cz": [20039], "ei.wnev.es": [2053], "www.youngstonewall.org.uk": [22111], "studentaidcalculator.com": [15791], "stansult.com": [2053], "jpics.co": [2053], "*.logitech.com": [9723], "chita.beeline.ru": [1801], "www.bitin.io": [2047], "www.toutiao.com": [16881], "www.cyphar.com": [4057], "wafj.fm": [2053], "l.skarum.net": [2053], "*.cxt.ms": [4023], "mijn.groenlinks.nl": [7088], "cmrld.info": [2053], "ctpcba.net": [2053], "bsun.md": [2053], "*.alivenotdead.com": [860], "www.easthants.gov.uk": [5113], "dakko.us": [4203], "www.jabberd.org": [8626], "cc.earthlink.net": [5106], "cw.wycw.tv": [2053], "www.nginx.org": [11567], "whoshiring.io": [18567], "www.sitetagger.co.uk": [15120], "fly.ga": [2053], "mybelize.tips": [2053], "ox-d.aa.com": [265], "fo7.be": [2053], "forcecast.media": [2053], "www.makibox.com": [10083], "www.helpscout.net": [7446], "ir.pblos.org": [2053], "rlph.de": [2053], "4ftne.ws": [2053], "www.jenner.ac.uk": [8701], "freetvonline.com": [6271], "www.colm.net": [3497], "sphincs.cr.yp.to": [3817], "inetinteractive.com": [7921], "hwang.engineering.osu.edu": [11959], "snapengage-4.wpengine.netdna-cdn.com": [15273], "us.wa.ui-portal.de": [17230], "www.tacar.org": [16037], "2200kultur.kk.dk": [8883], "www.varian.com": [17857], "l.vom.tc": [2053], "on.branch.com": [2053], "svn.macports.org": [9986], "agenda.kuleuven.be": [8969], "mickey.us": [2053], "secure.mozilla.jp": [10844], "www.trendmicro.eu": [16992], "www.adagio.com": [590], "secure.gmo.jp": [6462], "o-w.ca": [2053], "www.uni-mainz.de": [17611], "qy.hitravel.xyz": [2053], "poshliving.com": [13171], "jeffl.co": [2053], "download.bleachbit.org": [19556], "sxbk.co": [2053], "raglan23.co.nz": [21249], "toxme.se": [16892], "pacificasd.illuminateed.com": [20430], "news.shazam.com": [14933], "pressroom.ceneo.pl": [2996], "kb.worldcat.org": [18748], "repix.us": [2053], "medcatalog.stanford.edu": [15634], "lrnlbty.co": [2053], "media.trafficjunky.net": [16922], "glyphicons.com": [6879], "airasia.com": [785], "tune.pk": [17104], "shittyurl.org": [2053], "n5.adshostnet.com": [670], "open.voa.gov.uk": [21936], "netflix.com": [11421], "l.maft.co": [2053], "zndr.nl": [2053], "www.sociamonials.com": [15324], "stjo.es": [2053], "go.chasset.net": [2053], "www.rossendale.gov.uk": [14206], "private.gmocloud.com": [6460], "andai.tk": [2053], "arcg.is": [2053], "arca.ly": [2053], "autoconfig.yandex.com": [18956], "admin.vik.bme.hu": [1570], "l.shadoll.com": [2053], "trails.com": [4421], "www.centralops.net": [19670], "torrentbit.net": [16856], "soundkit.io": [15406], "lq.meituan.com": [10405], "advertise.bingads.microsoft.com": [10543], "plun.me": [2053], "anthonycameron.com": [1104], "bwurst.org": [1626], "beckerproxy.wustl.edu": [18290], "jba.gs": [2053], "xtian.es": [2053], "teamcenter.desy.de": [4479], "arun-consult.objective.co.uk": [20979], "clill.me": [2053], "www.coloradocaptures.com": [3505], "www.sovsekretno.ru": [21518], "nyke.co": [2053], "tdig.it": [2053], "gotil.la": [2053], "donate.richarddawkins.net": [14105], "ccar.co": [2053], "demo.alternc.org": [919], "esiss.ac.uk": [5060], "*.psmprogram.gov.au": [13439], "wondo.us": [2053], "get.panopto.com": [12569], "rfba.uk": [2053], "blackbag.gawker.com": [6593], "uzlovaya.beeline.ru": [1801], "bbier.us": [2053], "cohor.se": [2053], "atariage.com": [1345], "renshiphil.com": [2053], "www.mcmelectronics.com": [9894], "tweaktown.to": [2053], "goucher.starfishsolutions.com": [21565], "saml.socialtext.net": [15322], "wiki.linuxlovers.at": [9591, 9592], "elster.de": [5290], "*.hi.nl": [7525], "status.recurly.com": [13887], "itweb.wku.edu": [22039], "ktlane.ws": [2053], "footlocker-inc.com": [6129], "www.nanohub.org": [11219], "www.isnic.is": [7971], "planet.enlightenment.org": [5382], "www.cs.umd.edu": [17549], "nexav.org": [2053], "*.0nl1ne.at": [3], "france.isidewith.com": [20414], "dyhu.co": [2053], "mfp.li": [2053], "bestmastersdegrees.com": [1855], "kolep.bva.bund.de": [5833], "r.kiloforce.com": [2053], "01.org": [1], "sanyaguan.jd.com": [8571], "l.wolt.com": [2053], "www.domainnamesales.com": [4745], "allstar.link": [2053], "static.nortoncdn.com": [11703], "service.telecolumbus.net": [16329], "tnie.in": [2053], "wgnrd.es": [2053], "flexo.co": [2053], "support-it.upc-cablecom.ch": [21865], "dataconservancy.org": [4270], "b.ur.ly": [2053], "blockchase.com": [2053], "www.ansibleworks.com": [1098], "nabs.us": [2053], "tracking.netcologne.de": [11379], "julesblake.com": [2053], "ycpi.ad.yieldmanager.com": [14114], "www.filescrunch.com": [5918], "range.nra.org": [20943], "www.rutracker.cr": [21346], "cas.oaklands.ac.uk": [20976], "files.conferencemanager.dk": [19771, 19772], "farmhou.se": [2053], "www.stanfordhealthcare.org": [15637], "dhmsmag.uk": [2053], "suffolk.spydus.co.uk": [21546], "forum.winehq.org": [18652], "support.cryptothrift.com": [3935], "afrinc.co": [2053], "mymeme.link": [2053], "*.waitrosedirect.com": [18246], "squarespace.com": [15584], "www.bk55.ru": [19548], "bst4.gismeteo.ru": [6789], "denx.de": [4102], "ichitaso.xyz": [2053], "marieclaire.co.uk": [10157], "i1s.sinaimg.cn": [15091], "blog.1und1.de": [82], "www.yunbi.com": [19057], "abernathy.io": [2053], "www.diffchecker.com": [4543], "lcsocial.net": [2053], "www.viestintavirasto.fi": [18001], "kier.uk": [2053], "burymbc.firmstep.com": [20125], "fsnfrm.com": [2053], "cubeweb.cc": [2053], "btprt.dj": [2053], "skynz.co": [2053], "kf.sudipb.com": [2053], "id.google.co.*": [6965], "vr.tl": [2053], "www.segment.com": [14803], "www.myscore180.com": [10972], "thaq.co": [2053], "cds.linear.com": [9529], "xnet.unit4.com": [21856], "us.carousell.com": [2919], "www.useotrproject.org": [17319], "www.ioninteractive.com": [20484], "account.jolla.com": [8771], "whiteraven.co": [2053], "getcashboard.com": [15814], "www.realtime.email": [13858], "navteq.com": [11062], "gewinnspiel.hofer.at": [338], "*.nhsdirect.nhs.uk": [11100], "www.pyneo.org": [13498], "app.hubspot.com": [7739], "suggest.atechmedia.com": [408], "hosting.dxw.com": [4915], "alojamiento02.unizar.es": [17643], "poistenie.financnahitparada.sk": [5943], "zhungeerqi.meituan.com": [10405], "login.secureserver.net": [14755], "www.freebin.org": [6241], "mktfan.es": [2053], "*.razorservers.com": [13823], "milodev.com": [10586], "www.cno.org": [3487], "a4apphack.com": [260], "dlhz.be": [2053], "www.miniand.com": [10610], "wiki.openmpt.org": [12148], "www.tdesktop.com": [16244], "static.contentful.com": [3680], "n4g.uk": [2053], "netloan.cardiff.gov.uk": [19644], "odair.cnt.br": [2053], "cdn.adreclaim.com": [19299], "carlson.pspr.fi": [2053], "binkypop.me": [2053], "www.bioinformatics.vt.edu": [18031], "*.cv.uma.es": [17423], "afi.me": [2053], "css.tv.itc.cn": [8536], "www.dhsspsni.gov.uk": [19911], "www.yubico.com": [19052], "media.rightmove.co.uk": [14119], "bitly.sork.in": [2053], "incoin.io": [8195], "www.puu.sh": [13487], "pt-contrainfo.espiv.net": [20058], "niden.net": [11585], "fastcodesign.com": [5796], "*.mototradeup.com": [10804], "go.c4dg.net": [2053], "gha.ly": [2053], "dfm.bz": [2053], "classes.cornell.edu": [3744], "*.bandcamp.com": [1683], "event.avdbf.uk": [2053], "discr.eu": [2053], "s.etcetera.ws": [2053], "blog.deepin.org": [4380], "emitent.1prime.ru": [73], "my.onmedic.com": [2053], "benzinga.com": [1834], "news.eoportal.org": [5417], "davidadrian.org": [4303], "www.portaildescours.ulaval.ca": [17515], "edmsdirect.desy.de": [4479], "opsgui.de": [2053], "www.jackandjillraffle.com": [8628], "svn.nmap.org": [11627], "www.advconversion.com": [691], "maps.here.com": [7465], "onlineshoes.com": [12073], "datane.ws": [2053], "www.cse.iitb.ac.in": [7891], "ftp.flux.utah.edu": [17574], "iztl.co": [2053], "support.socrata.com": [15332], "www.xsolla.com": [18896], "eulerian.sarenza.com": [14539], "secure.domaintools.com": [4750], "accounts.onlinegaming.wizards.com": [18687], "www.rating-widget.com": [13810], "familytr.ee": [2053], "projet-plume.org": [13373], "l.vincentr.me": [2053], "storage.aircrack-ng.org": [789], "purchase.1688.com": [44], "discourse.org": [4631], "krnr.org": [2053], "mobile.washington.edu": [17577], "www.vu.nl": [17813], "checkr.ml": [2053], "www.active24.es": [19278], "assa.intertelecom.ru.com": [20479], "huk.de": [7250], "go.bctv.hr": [2053], "titchy.me": [2053], "www.virginmedia.com": [18028], "smashing.glass": [2053], "spanish.chile.usembassy.gov": [21879], "i6x.duoshuo.com": [19969], "www.zhukovsky.net": [22133], "likelyloans.com": [20687], "cds.cern.ch": [2632], "ui.zanox.com": [19102], "static.wired.com": [18664], "l.execut.com.br": [2053], "rpgmakerweb.com": [14236], "www.oman.hsbc.com": [7233], "btcs.me": [2053], "esj.com": [5061], "www.criticalthinking.org": [3875], "umeng.com": [21847], "www.ferroh.com": [5873], "on.tdmark.co": [2053], "job.alibaba.com": [850], "hrbl.me": [2053], "forbetterliv.es": [2053], "searchpub.nssc.nasa.gov": [11058], "www.atrpms.net": [409], "rcicruiseholidays.com": [18789], "archive.ualinux.com": [21833], "beedie.sfu.ca": [14893], "fbc.cm": [2053], "en.trend.az": [21786], "www.ehrenamt.sachsen.de": [14454], "imss.caltech.edu": [2815], "publishing.aip.org": [330], "cdn0.theawl.com": [16442], "dgus.tv": [2053], "tambov.beeline.ru": [1801], "www.standagainstspying.org": [15628], "huanghua.meituan.com": [10405], "allianzfuercybersicherheit.de": [892], "glg.im": [2053], "blog.alwaysdata.com": [938], "otrs.unizar.es": [17643], "cata.ly": [2053], "jal.co.jp": [8662], "lfchosting.com": [9227], "www.ut.ee": [17347], "www.dhavalkapil.com": [4520], "tryo.co": [2053], "www.skatemall.com": [15145], "support.playkey.net": [13027], "www.factorio.com": [20091], "userecho.com": [17722], "a.ichiba.jp.rakuten-static.com": [21251], "passes.northyorks.gov.uk": [20930], "www.cit.cornell.edu": [3744], "q6.hitravel.xyz": [2053], "onfleet.com": [12058], "aspne.ws": [2053], "tx-assets.scdn5.secure.raxcdn.com": [21262], "mdsupport.emoryhealthcare.org": [5313], "tfsimg.alipay.com": [857], "mercyships.org": [10457], "metric.yandex.kz": [18957], "chromebook.me": [2053], "qtkp.me": [2053], "cbmi.catalyst.harvard.edu": [7351], "static.appcelerator.com": [1152], "mwrinfosecurity.com": [9974], "phrill.link": [2053], "www.webnms.com": [18374], "ugs.vg": [2053], "6.dbstatic.no": [19866], "www.redmatrix.me": [13912], "bitn.us": [2053], "cts-strasbourg.eu": [3975], "shop.usa.canon.com": [2868], "mht.co.in": [2053], "www.carbonwind.net": [2892], "www.edrive-hosting.cz": [5191], "www.hmrc.gov.uk": [7219], "tmzupdates.com": [2053], "static.slidesharecdn.com": [15208], "bmlink.nl": [2053], "reyn.ir": [14086], "registry.npmjs.org": [11738], "scarborough-self.achieveservice.com": [19265], "www.tripwire.com": [17025, 17026], "*.procensus.com": [21205], "waitrosedirect.com": [18246], "webita.ethz.ch": [5074], "www.iod.ucsd.edu": [17215], "esalink.info": [2053], "overclockers.com": [12370], "linkbiz.co": [2053], "fox-it.com": [6202], "www.connexity.com": [3648], "thmpr.co": [2053], "horizon.tv": [21865], "allthings.host": [2053], "webmail.domtele.com": [19945], "www.lean-hochschulgruppe.htwk-leipzig.de": [7736], "d-g-z.nl": [2053], "www.democracynow.org": [4433], "profile.surfconext.nl": [14434], "dslrmz.com": [2053], "anthemchur.ch": [2053], "urbnbd.co": [2053], "www.skreened.com": [15164], "m.slotsfarm.com": [2053], "jbh.uk": [2053], "elections.transformativeworks.org": [16940], "extidp.ornl.gov": [11892], "vle.lsbu.ac.uk": [9252], "hopp.mihalko.eu": [2053], "dude.aosvn.xyz": [2053], "entm.ag": [2053], "ampy.io": [2053], "on.pier1.com": [2053], "e3.hitravel.xyz": [2053], "dlcl.stanford.edu": [15635], "www.dyson.ie": [4935], "maps.org": [9876], "test.lurkmore.so": [9838], "shouji.360.cn": [130], "cernvm.cern.ch": [2632], "mssrts.co": [2053], "secure.helpscout.net": [7446], "static.adzerk.com": [715], "go.topbrands.ru": [2053], "*.uoregon.edu": [17277], "at.mclib.net": [2053], "www.lusternia.com": [20729], "vipserv.org": [17780], "epicgames.com": [5423], "offers.hubspot.com": [7739], "on.bcg.com": [2053], "x6.chaucanh.net": [2053], "f9.hitravel.xyz": [2053], "blog.nazwa.pl": [11307], "css.welt.de": [18492], "hlaun.ch": [2053], "panel.dreamhost.com": [4844], "iwantclips.com": [8019], "www.sseeventsgroup.com": [14410], "hctr.me": [2053], "zugerkb.ch": [20574], "static5.avonmaquiagem.com.br": [1495], "shop.netcologne.de": [11379], "deco.li": [2053], "ynccla.co": [2053], "warrington.gov.uk": [18280], "ijmfreedommaker.org": [7892], "*.britannica.com": [2390], "meatify.me": [2053], "mpw.bz": [2053], "www.rackspace.hk": [13738], "g.sislac.net": [2053], "www.parallella.org": [12596], "www.isc-events.com": [8410], "keio.me": [2053], "uqwimax.jp": [17291], "upc.edu": [13120], "postpointsrewards.com": [13178], "pd4s.uk": [2053], "financialprotection.usa.gov": [17307], "tknd.co": [2053], "secure.isidewith.com": [20414], "out.wf": [2053], "reflets.info": [21289], "www.assembly.wales": [1315], "now.netapp.com": [11374], "ancr.co": [2053], "moviemagnet.net": [10830], "azerbaijan.usembassy.gov": [21879], "doxy.li": [2053], "s.my.tmocache.com": [16091], "srce.mp": [2053], "www.geekflare.com": [20216], "files.messe.de": [4489], "mrk.ms": [2053], "*.yelp.com.br": [22097], "brightcontext.com": [2373], "gospel.mk": [2053], "fliparena.com": [2053], "w.mlv-cdn.com": [10958], "www.bioconductor.org": [1959], "sdtr.co": [2053], "pcm.websitealive.com": [18445], "www.online.hmrc.gov.uk": [7219], "mrk.mn": [2053], "insig.ht": [2053], "www.markup.io": [10190], "cre8.tips": [2053], "spin.sjd.net": [8780], "caeu.megabus.com": [10401], "fonts.com": [6110], "www.zenmate.ie": [19133], "ltmsu.com": [2053], "srv0.bakerlab.org": [1667], "www.law.illinois.edu": [17544], "crrev.com": [3899], "dagbladet.tns-cs.net": [21752], "mpp.mxptint.net": [10930], "1.url.cn": [21874], "referees.aps.org": [969], "ad.yello.biz": [2053], "nakenprat.nu": [2053], "sche.ma": [2053], "*.goldkeys.net": [6942], "psykologteam.dk": [13776], "subscriberconcierge.com": [10175], "drive.jolicloud.com": [20547], "mrrt.in": [2053], "allmyvideos.net": [897], "tpb.press": [21709], "voffka.com": [18111], "pha.ulaval.ca": [17515], "wwwl.accuweather.com": [503], "p2n.me": [2053], "cdn4.micasa.ch": [10520], "maawg.org": [9869], "freshlife.co": [2053], "hssk12.co": [2053], "store.cadlink.com": [19626], "www.informationactivism.org": [8274], "pictures.reuters.com": [14069], "nrarofcochairs.com": [20953], "shop.look.co.uk": [9756], "www.skepticink.com": [15151], "password.umd.edu": [17549], "techportal.eere.energy.gov": [5355], "l.m23.eu": [2053], "beenverified.com": [1802], "djangote.ca": [2053], "eaak.tk": [3597], "con.tra.do": [2053], "state.gov": [17345], "duckdns.org": [4889], "ting.com": [16744], "x-blog.jp": [18796], "espinafre.se": [2053], "ans.avast.com": [1484], "www.mhcache.com": [10510], "stg-campaigns.paypal.com": [12678], "fso-tapi.admatrix.jp": [570], "gm-x.ga": [2053], "adpu.sh": [2053], "www.48months.ie": [176], "l.fldx.org": [2053], "eken.ga": [2053], "www.coy.im": [3810], "transloadit.com": [4355], "twin.pk": [2053], "a.shuabao.us": [2053], "brewcabi.net": [2053], "hyperoptic.com": [7793], "www.truenudists.com": [17050], "portal.zarafa.com": [19109], "hitbtc.com": [7561], "k1ssm3n90.ml": [2053], "systemcenteradvisor.net": [16014], "jira.freeswitch.org": [6247], "nordichardware.com": [11670], "lin.kit.se": [2053], "clicktotweet.com": [3315], "gep13.me": [2053], "healthcare.gov": [7398], "www.healthiernorthwestlondon.nhs.uk": [11102], "r.6-cube.com": [2053], "www.productie.gx.uvt.nl": [16716], "go.siete7.org": [2053], "support.dell.com": [4413], "lensculture.co": [2053], "www.netbetsport.fr": [11377], "dashboard.pantheon.io": [12577], "nsmac.co": [2053], "s.nshoji.com": [2053], "play-full.96.lt": [2053], "amandify.pw": [2053], "teqrt.io": [2053], "opus-codec.org": [12280], "avt.foto.mail.ru": [10040], "nam.nes.scot.nhs.uk": [11102], "dev.horde.org": [7639], "robtv.co": [2053], "mrrenz.yt": [2053], "www.weizmann.ac.il": [18484], "www.vaultproject.io": [17869], "advancedsupport.oracle.com": [12284], "fx.yandex.kz": [18957], "a1.hertzrent2buy.com.br": [7479], "norf.in": [2053], "www.ndla.no": [11309], "*.scopus.com": [14633], "gkob.es": [2053], "l.rud.is": [2053], "www.ifosslr.org": [8409], "youtube.com.ng": [19016], "www.abookapart.com": [19257], "www.privacyfoundation.de": [6679], "blog.side.cr": [18730], "static.netverify.com": [11449], "commencement.usc.edu": [17564], "www2.edi7.lu": [4994], "thelayoff.com": [21705], "housing.nvcc.edu": [11787], "orange.jobs": [12287, 12288], "www.commando.io": [3540], "stij.in": [2053], "orangea.us": [2053], "bavington.uk": [2053], "zenmate.hk": [19133], "footaction.com": [6130], "www.tada.com": [16157], "www.bit9.com": [1974], "ly.ifra.cc": [2053], "www.xmpp.net": [18826], "l.nileshgr.com": [2053], "www.webmproject.org": [18370], "thatoneprivacysite.net": [16437], "www.plot.ly": [13042], "engaged.educ.cam.ac.uk": [17529], "*.hh.ru": [7190], "img.nxjimg.com": [11790], "mbsportsweb.com": [9887], "www.fastly.com": [5803], "clearlinux.org": [3291], "file.bagumec.be": [2053], "www.santafenewmexican.com": [16473], "www.orderhlp.com": [14969], "btbaggers.com": [2053], "7digital.com": [223], "history.com": [7558], "market.yandex.com.tr": [18954], "7chan.org": [222], "www.esn.bme.hu": [1570], "*.gymglish.co.uk": [7167], "srv.clickfuse.com": [3306], "bizlab.website": [2053], "www.spectraflow.com": [15496], "www.windstreambusiness.com": [18648], "portal.settrade.com": [14878], "loopfuse.net": [9767], "airwarriors.com": [19332], "*.u-strasbg.fr": [17565], "go.isiddiq.com": [2053], "*.maricopa.edu": [10154], "amos.alicdn.com": [846], "feedback2.yandex.com": [18956], "www.liveclicker.com": [9665], "beckag.us": [2053], "masataka.info": [2053], "lndt.us": [2053], "www.skm.vutbr.cz": [17814], "vorpal.io": [18139], "accountsolution.gcion.com": [6425], "shoppingcartelite.com": [14974], "einstellungen.e-plus.com": [4941], "poddery.com": [13066], "www01.fonts.com": [6110], "payzapp.biz.hdfcbank.com": [7389], "www.mapquesthelp.com": [10134], "*.uhrzeit.org": [17402], "pgpru.com": [12161], "hvnshp.ca": [2053], "www.findmyorder.com": [5956], "*.comenity.net": [3527], "portalcorreotest.ulpgc.es": [17411], "cabinet.multi-vpn.biz": [10886], "trafikozeti.yandex.com.tr": [18954], "mintid.co.uk": [2053], "reviewboard.kde.org": [8871], "globalhealth.stanford.edu": [15634], "rol.la": [2053], "*.fossbazaar.org": [5701], "skillstoolkit.ox.ac.uk": [17557], "cbx.im": [2053], "*.ipage.com": [7949], "80.93.18.36": [4596], "benlik.es": [2053], "media.spontex.org": [15538], "peytz.co": [2053], "oppin.st": [2053], "s.midokite.com": [2053], "allthingsd.com": [880], "base64encode.org": [19492], "freebible.to": [2053], "www.loggn.de": [9717], "downloads.somethingawful.com": [15379], "npth.se": [2053], "events.piratenpartei-bayern.de": [12936], "m.fp20.org": [2053], "wond.us": [2053], "docs.c9.io": [3339], "*.comodo.com": [3569], "credits.buzz": [2053], "dataplus.aliyun.com": [861], "static.bityes.com": [2001], "www.postel.it": [13194], "bazhong.meituan.com": [10405], "snkrs.me": [2053], "htacad.org": [2053], "link.jmcnee.uk": [2053], "www-static.exoclick.com": [5608], "endzone.me": [2053], "www.unionpacific.jobs": [21854], "kspr.io": [2053], "www.ico.jobs": [4614], "go.mkvstore.com": [2053], "go.tbforum.ru": [2053], "stat.yandex.by": [18953], "acor.bio": [2053], "snackomat.snacktv.de": [15268], "jnytrvl.es": [2053], "joshr.us": [2053], "getsafe.get.no": [20229], "r.thephonemt.eu": [2053], "rackspace.dk": [13737], "www.sabb.com": [21354], "www.gigya.com": [6779], "us.gamigo.com": [6563], "blog.nearlyfreespeech.net": [11313], "*.icu-project.org": [8406], "go.eiffel.ag": [2053], "submit.escholarship.org": [5070], "*.radikal.com.tr": [13747], "uci.site": [2053], "wgsmt.org": [2053], "t21c.com": [2053], "eurobsdcon.org": [5509], "pausani.as": [2053], "www.zeroanthropology.net": [22132], "www.campina.de": [2841], "scllc.co": [2053], "docs.moodle.org": [10763], "support.coinjar.com": [3461], "mdeglf.us": [2053], "help.gumroad.com": [7148], "investor.logmeininc.com": [9712], "www.epsom-sthelier.nhs.uk": [11102], "efiliale.de": [19901], "www.squirrelmail.org": [15587], "www.volksverschluesselung.de": [18124], "correoweb.ulpgc.es": [17411], "platform.corvisacloud.com": [3756], "blu.tips": [2053], "ucf.edu": [17530], "anderson.stanford.edu": [15635], "07.imgmini.eastday.com": [5119], "5by.co": [2053], "parkingeye.co.uk": [12613], "carparks.great-yarmouth.gov.uk": [20279], "*.pcicomplianthosting.com": [12747], "csycb.co": [2053], "naturpixel.link": [2053], "omha.net": [12088], "service.tanke-wienenergie.at": [18582], "scripps.edu": [14659], "greenwood.org": [7067], "gigaone.pl": [6773], "static.libsyn.com": [9482], "git.linux-mips.org": [9573], "ybe.cc": [2053], "rt.debconf.org": [4346], "cz28.ws": [2053], "atipso.com": [1350], "www.bucketlistly.com": [2442], "lfne.ws": [2053], "go.invetic.com": [2053], "dshs.state.tx.us": [16412], "tj2.me": [2053], "allmybase.com": [886], "img.sleviste.cz": [15198], "myesri.com": [5468], "fiddler2.com": [20104], "affsoc.com": [2053], "link.benzin.no": [2053], "merkleinc.com": [20783], "latika.me": [2053], "a.ct1v.com": [2053], "whast.us": [2053], "fbc.link": [2053], "www.saintaardvarkthecarpeted.com": [14482], "ceurl.net": [2053], "www.saint-petersburg.ru": [21357], "citymapper.com": [3252], "*.uni-stuttgart.de": [17568], "sprwd.com": [2053], "secure.bathnes.gov.uk": [1737], "rally.org": [13770], "medical-treatments-management.com": [10356], "*.maemo-apps.org": [21007], "kskrg.nl": [2053], "static.criteo.net": [3872], "ehrenamt.sachsen.de": [14454], "apps.fm": [19406], "www.biddeal.com": [1899], "cusd.illuminateed.com": [20430], "rtc.debian.org": [4353], "masternet.org": [10218], "fed.princeton.edu": [13291], "porter.io": [13162], "file.e-tabs.com": [2053], "si5.twimg.com": [17153], "www.iqualita.link": [8500], "alta.cc": [2053], "boardgamegeek.com": [2220], "www.movie2k.pe": [10823], "hlp.sc": [2053], "todd.upickem.net": [17677], "partners-api.pinterest.com": [12914], "xinghe.jd.com": [8571], "mimco.me": [2053], "bitly.orz.gr.jp": [2053], "www.neo-direct.com": [11087], "*.hostoople.com": [7684], "rohrcruise.co": [2053], "hlp.st": [2053], "anastasial.ca": [2053], "metrica.yandex.com": [18956], "choctaw.events": [2053], "teracomconsulting.com": [16381], "gw.api.aliexpress.com": [19343], "yum.theforeman.org": [21699], "www.cs.illinois.edu": [17544], "tfas.co": [2053], "mediavoice.com": [13084], "f.ranchi.se": [2053], "csc.gov.au": [3559], "researchmatch.org": [14031], "login.microsoftonline.com": [10546], "heychur.ch": [2053], "wazapp.im": [18310], "www.chooseblocks.com": [3161], "msdnadmin.visualstudio.com": [18078], "tune.yandex.ua": [18961], "vitamintalent.com": [18085], "media.xiph.org": [18878], "*.b9.stumbleupon.com": [15799], "angeliica.tk": [2053], "amzt.co": [2053], "*.koding.com": [9105], "cei.org": [3584], "shorte.st": [14980], "flybaden.win": [2053], "clov.in": [2053], "www.healthreach.nlm.nih.gov": [11241], "webftp.aerohosting.cz": [728], "jagm.us": [2053], "locationmetadataeditor.data.gov.uk": [19855], "buybitcoinww.co": [2053], "slp.tl": [2053], "bin.mediatemple.net": [10331], "www.tv.yandex.com.tr": [18954], "sups.co": [2053], "www.astro.rug.nl": [17540], "5am.info": [2053], "archive-it.org": [1202], "www.modsecurity.org": [10701], "technocrat.net": [16296], "cases.sc": [2053], "givingcomfort.com": [6812], "contact.yandex.com.tr": [18954], "www.supplyframe.com": [15893], "cyber-defense.sans.org": [14310], "www.asta.thm.de": [16066], "shortnow.tk": [2053], "kaust-cu.cornell.edu": [3744], "www.badosoft.com": [1653], "bajaurl.com": [2053], "www.zenmate.mx": [19133], "*.abba.accenture.com": [480], "steamunlock.com": [15712], "download.tizen.org": [16778], "downloadbox.me": [4823], "api.zhihu.com": [19173], "mee.in": [2053], "39dpi.com": [2053], "fate.libav.org": [9450], "paymentech.com": [12688], "signup.pagerduty.com": [12536], "www.mobioinsider.com": [10691], "donate.citizenweb.io": [3232], "dudleyfoi.org.uk": [19967], "a2.beeg.com": [19511], "www.groups.io": [7106], "www.pirateproxy.se": [21709], "www.facturanahora.vodafone.pt": [18109], "m.vitori.org": [2053], "sgral.udistrital.edu.co": [17394], "trafficjunky.com": [21775], "hot.s8bbs.com": [21352], "info.recurly.com": [13887], "boybrew.co": [2053], "consclass.eu": [2053], "www.theiabm.org": [7811], "www.owasp.org": [11890], "i.guim.co.uk": [7142], "silentsparks.com": [21448], "new.adestra.com": [624], "mcarlo.lv": [2053], "st.org": [14423], "www.cirw.in": [3219], "ashn.uk": [2053], "htvip.us": [2053], "www.hostcenter.com": [2209], "ke.qq.com": [13514], "ideabank.opendns.com": [12130], "huston.at": [2053], "www.campinaboerderijdag.nl": [2841], "sysdig.com": [21638], "alexlawn.com": [2053], "i3.microsoft.com": [10543], "ranzcp.org": [13632], "croc3.gq": [2053], "gmodules.com": [6967], "www.yeswescan.org": [13435], "*.adspirit.de": [582], "rm.pe": [2053], "as.stanford.edu": [15635], "benetech.org": [1830], "croc3.ga": [2053], "l.cs-5.me": [2053], "*.williams.edu": [18617], "go.elego.com": [2053], "grandmargherita.com": [7018], "www.awesomejar.com": [1502], "feedback.yandex.kz": [18957], "blog.getfirebug.com": [6696], "test-login.geant.org": [6431], "remote.utorrent.com": [21831], "montanalinux.org": [20825], "etutor.bls.ch": [1566], "mods.mybb.com": [11013], "thecanadianpress.com": [2860], "its2.monex.co.jp": [10733], "go.techsrv.biz": [2053], "twinsornot.net": [17158], "piwik1eaf.literotica.com": [9628], "open.weixin.qq.com": [13514], "fremz.co": [2053], "corporate.stanford.edu": [15635], "tqcali.com": [2053], "www.namespace.us": [11211], "www.oaa.osu.edu": [11959], "www.xhamster.biz": [825], "altos.it": [2053], "jon.oberheide.org": [11896], "resources.civilservice.gov.uk": [19721], "p.typekit.net": [17188], "mrcl.pw": [2053], "botkyrka.tdconline.se": [16054], "mobile.thehill.com": [16556], "cantheyseemydick.com": [2850], "barclaycard.co": [2053], "ecampusdot.com": [2053], "wdsc.club": [2053], "ck12.org": [19722], "www.drupalwatchdog.com": [4878], "cdn.tinybuddha.com": [16757], "btjunkie.org": [19602], "xenon.stanford.edu": [15635], "pg.onlinesbi.com": [12072], "junkie.cc": [2053], "ww3.autoreview.ru": [19455], "www.ftjcfx.com": [3546], "on.prsir.co": [2053], "tag.contextweb.com": [3682], "go.myejl.com": [2053], "whotels.ht": [2053], "www.cs.ut.ee": [17347], "helixo.fr": [20332], "multiply.crwdcntrl.net": [9776], "azg.xyz": [2053], "services.irctc.co.in": [7957], "*.ticketcorner.ch": [16687], "myaccount.stubhub.co.uk": [15789], "logoyes.com": [9724], "mass.ag": [2053], "ads.alibaba.com": [850], "dev.guardianproject.info": [7129], "superblock.net": [15880], "furf.it": [2053], "lbm.io": [2053], "media.pogliad.ua": [21159], "jerf.us": [2053], "sublimetext.com": [15816], "shows.ec": [2053], "www.cumbria.gov.uk": [19838], "astaro.com": [1333], "*.laverna.cc": [9329], "4impr.in": [2053], "debian-fr.org": [4349], "h.bing.com": [1949], "leic.it": [2053], "www.cira.kyoto-u.ac.jp": [9209], "cdn.tubemogul.com": [17089], "www.superbrightleds.com": [15874], "www.tofour.net": [16793], "thehabbos.org": [16603], "umassathletics.cstv.com": [17551], "logos.tlecdn.net": [16783], "pags.io": [2053], "www.iterm2.com": [20415], "j.taruo.net": [2053], "fileconnect.symantec.com": [15969], "psicologia.uniovi.es": [17479], "*.pool.datamind.ru": [4282], "rpclient.oebb.at": [20984], "box.qweery.nl": [13616], "mnspt.me": [2053], "*.schwab.com": [14611], "elligator.cr.yp.to": [3817], "southdowns.gov.uk": [21512], "knewt.ly": [2053], "casecurity.org": [2577], "api.nice.org.uk": [11110], "msd38.illuminateed.com": [20430], "xiping.meituan.com": [10405], "bitcoinstore.com": [2023], "*.convar.de": [3692], "temai.alitrip.com": [858], "www.iibuy.com.au": [8106], "www.richmondteaparty.com": [14109], "forums.informaction.com": [8270], "torrents-time.com": [21762], "digitalpoint.com": [4581], "baldershage.se": [1671], "lfrr.es": [2053], "shop.nbsklep.pl": [2053], "chrm.me": [2053], "az.trend.az": [21786], "tqn.me": [2053], "static1.symanteccloud.com": [15969], "www.bugsnag.com": [2465], "tempolibero1.ffs.ch": [15946], "linxia.meituan.com": [10405], "chnd.in": [2053], "mirweb.mir.wustl.edu": [18290], "qtl.us": [2053], "*.comm100.cn": [3534], "ritpress.rit.edu": [13667], "s.s-s.xyz": [2053], "camdenactive.camden.gov.uk": [2830], "pizzabottle.co": [2053], "i2.3conline.com": [157], "straply.com": [15761], "tw.kenmainr.net": [2053], "m.vtb.com": [17806], "cir0oo.cf": [2053], "whosgamingnow.net": [18568], "7.vgc.no": [17776], "core.epitesz.bme.hu": [1570], "l.dada.li": [2053], "scraporchard.com": [14646], "horde.active24.cz": [19276], "*.networkcomputing.com": [11461], "comcast.com": [3525], "www.cod.ed.gov": [4988], "topdz.in": [2053], "nsprn.co": [2053], "protonmail.ch": [13396], "assets.onelogin.com": [12035], "eater.com": [5139], "assets.clickmotive.com": [3307], "hfhome.com": [2053], "mobile.wwf.ch": [22060], "adjuggler.com": [566], "just-eat.be": [20565], "etrtbs4.smartstream.tv": [15247], "gameological.com": [6552], "forums.garrysmods.org": [20203], "graal.onl": [2053], "oversee.net": [12374], "i.hfahmy.net": [2053], "avoa.co": [2053], "pic2.qiyipic.com": [20413], "on.unknwn.com": [2053], "middendrenthe.nl": [11324], "libreville.usembassy.gov": [21879], "cdn.nice.org.uk": [11110], "r.foll.me": [2053], "www.prxy.com": [13413], "ldsc.info": [2053], "services.amazon.com": [952], "accountsolution.zanesvilletimesrecorder.com": [19100], "adage.com": [3829], "img.frostmourne-wow.eu": [6348], "phrma.co": [2053], "mjusd.illuminateed.com": [20430], "*.clickfun.com": [3319], "piratebaymirror.eu": [21711], "postto.me": [13183], "ql.ecrchs.net": [2053], "jpn.fm": [2053], "cdon.dk": [2620], "bsym.pl": [2053], "covr.me": [2053], "tncv.me": [2053], "lingshan.meituan.com": [10405], "www.hubzero.org": [7249], "www.assayassured.co.uk": [1310], "asana.com": [1277], "cookies.cmpnet.com": [2684], "www.avtrade.co.uk": [1497], "*.blog.hipmunk.com": [7556], "mattermap.nl": [20760], "www.ioplex.com": [7925], "npu.me": [2053], "www03.fonts.com": [6110], "www.nbcudigitaladops.com": [11064], "biblos.unizar.es": [17643], "tagmil.es": [2053], "na.gcsip.com": [20213], "www.glassdoor.com": [6823], "dslshop.vodafone.de": [18107], "f-p.us": [2053], "bmi.bund.de": [2485], "nojoneses.com": [2053], "on.kompass.ua": [2053], "publicaccess.northumberland.gov.uk": [20929], "osmglobal.com": [11872], "mobehero.com": [2053], "www.ovh.co.uk": [12378], "bigod.in": [2053], "bio.migros.ch": [10566], "go2arena.com": [6892], "hefr.in": [2053], "spd.gy": [2053], "foco.tax": [2053], "d.truemoney.com": [2053], "stuf.it": [2053], "n24.cm": [2053], "sbi.tips": [2053], "everde.me": [2053], "dil.sg": [2053], "www.oracleimg.com": [12284], "bury.greenparty.org.uk": [7052], "community.talktalk.co.uk": [16184], "*.dryicons.com": [4881], "prosto.beeline.ru": [1801], "cloud.google.com": [6962], "login.stormpost.datranmedia.com": [13454], "fatrat.dolezel.info": [4730], "vlc-addons.org": [21006, 21007], "smart.begun.ru": [1808], "cdn.xplosion.de": [18888], "www.fablabtruck.nl": [5728], "es.anthem.com": [19395], "goto.lto.de": [2053], "costes.to": [2053], "prometeus.net": [13376], "bhosting.ru": [1559], "focusonlearningcenter.com": [6093], "partner.internetessentials.com": [20477], "fusionforge.org": [6392], "hgdf.co": [2053], "tjmc.co": [2053], "*.zingcheckout.com": [19187], "freepress.net": [6265], "nationalcapital.gov.au": [11255], "go.fwbbbab.org": [2053], "eset.com": [5463], "glasgow.gov.uk": [6821], "y.yoritano.com": [2053], "www.vegasdealhunter.com": [17881], "alimng.ru": [2053], "debis.tips": [2053], "soe.ucsc.edu": [17591], "joelb.co": [2053], "www.mywickr.com": [18579], "dica.faisca.org": [2053], "onorobot.org": [11849], "bangjamal.my.id": [2053], "oxford.ly": [2053], "omnisky.co": [2053], "seiko.ec": [2053], "pt.piliapp.com": [12887], "ngvpn35.nvidia.com": [11174], "meg.tw": [2053], "forum.telekom.de": [4490], "af.1688.com": [44], "mail.linux-mips.org": [9573], "www.alkohol.cz": [863], "*.vegasinc.com": [17772], "foxydeal.com": [6206, 6207], "rj.cx": [2053], "wiki.greasespot.net": [7032], "healthia.be": [2053], "theadulthub.com": [21689], "*.rfihub.com": [14089], "naef.in": [2053], "fengche.growingio.com": [20286], "apps.sstaffs.gov.uk": [21555], "picviews.org": [2053], "cpni.gov.uk": [3018], "adultplay.se": [2053], "*.wikimedia.ch": [18595], "metrics.tape.tv": [16210], "sceneaccess.eu": [14583], "media.tango.me": [16200], "270h.io": [2053], "q.winofsql.jp": [2053], "davidsopas.com": [4306], "lisam.liu.se": [9238], "www.whitehelmets.org": [22017], "studweb.uio.no": [17615], "wcdy.org": [2053], "kali.org": [8923], "xdot.us": [2053], "datasaveslives.eu": [4263], "www.klub.com.pl": [9086], "smoove.ws": [2053], "readitlaterlist.com": [13840], "gfscan.ca": [2053], "sketchfab.com": [15154], "caravan.ma": [2053], "bulletproofmeteor.com": [2472], "www.finavia.fi": [5949], "kunversion.recurly.com": [13887], "www.acls.org": [285], "todayidol.id": [2053], "support.mapbox.com": [10132], "vliegtickets.nl": [18095], "goto.je": [2053], "www.wyreforest.greenparty.org.uk": [7052], "i2.services.social.s-msft.com": [14296], "elch.in": [2053], "bpxl.me": [2053], "www.globetrotter.de": [6867], "emvn.co": [2053], "crypto.stanford.edu": [15635], "mid-suffolk.greenparty.org.uk": [7052], "trchb.it": [2053], "moja.pss.sk": [13415], "oc.cm": [2053], "trvln.to": [2053], "go.cliqpass.com": [2053], "cindyk.me": [2053], "amwaygrand.com": [928], "h.ligatus.com": [9502], "s6.uicdn.net": [17236], "2.bonradio.com": [2053], "superoh.lt": [2053], "popup.taboola.com": [16153], "support.audioboom.com": [19452], "my.t-mobile.com": [16026], "*.slotsgaminator.com": [6564], "img.kaloo.ga": [8925], "vpnac.com": [21954], "styknd.co": [2053], "cwspodmusic.com": [2752], "dbspixel.hbz-nrw.de": [7386], "www.cdon.dk": [2620], "portail.strasbourg.eu": [15762], "go.techt3.com": [2053], "sobatkuis.tk": [2053], "b.i5m.nl": [2053], "thecenterforrights.org": [16521], "piquadro.com": [12918], "ddm.cu.cc": [2053], "www.yumpu.com": [19054], "night.sakh.com": [21360], "www.zoomeye.org": [19221], "u.ortc.link": [2053], "wwte10.com": [18232], "maldon.gov.uk": [20742], "*.vanillamastercard.com": [17852], "sverigesradio.se": [15928], "atlanticsoft.axosoft.com": [1517], "www.ipython.org": [7954], "xf.meituan.com": [10405], "nachbarschaft.immobilienscout24.de": [8153], "weget.co": [2053], "31b.it": [2053], "services.snoopy.swisscom.com": [15951], "androidpolice.com": [1046], "mnsw.ch": [2053], "fsurl.de": [2053], "historyp.in": [2053], "pixel.mathtag.com": [10236], "mrtn.is": [2053], "snydjack.xyz": [2053], "www.harvardpilgrim.org": [7352], "www.accessprivacy.ca": [487], "bandpass.me": [1682], "rbr.me": [2053], "v.qq.com": [13514], "tpg.li": [2053], "server.buycraft.net": [2530], "shz.meituan.com": [10405], "a.eyeoftree.com": [2053], "go.abhi.sk": [2053], "thumbshots.*": [16670], "m.kapital.kz": [20576], "*.versia.ru": [21910], "azof.fr": [2053], "www.lfgss.com": [9228], "xan.meituan.com": [10405], "cksource.com": [2679], "hrv.st": [2053], "documentation.cloudbees.com": [19736], "www.jkry.org": [8588], "shopping.sina.com": [21455], "www.serverfruit.com": [14859], "faq.web4all.fr": [18349], "www.courttheatre.org.nz": [19804], "mmrnll.com": [2053], "pixsa.us": [2053], "l.trio.sexy": [2053], "jobs.linux.com": [8741, 9563], "www.thepirate.zone": [21215], "signup.edgar-online.com": [4991], "pmrx.me": [2053], "tasc.stanford.edu": [15634], "libby.bz": [2053], "sl.tahr.org.tw": [2053], "cyrus.foundation": [4063], "sprdlx.co": [2053], "lewrockwell.com": [9437], "sht.golkai.com": [2053], "freehookupsearch.com": [20166], "www.gmx.at": [6467], "community.48months.ie": [176], "www.stanford.edu": [15635], "aj.fyi": [2053], "www.sis.gov.uk": [14713], "mem.gfx.ms": [6744], "e-onlinedata.com": [4955], "admin-vh.es.clara.net": [3270], "prefetch-maps.yandex.com.tr": [18954], "*.sanalika.com": [14513], "sc.imp.live.com": [9644], "ija.red": [2053], "media4.congstar-media.de": [3641], "thesun.co.uk": [21719], "www.libraryebooks.co.uk": [20677], "trustlogo.com": [3569], "www.flixbus.nl": [6047], "k99.fm": [2053], "americaslongestwar.com": [988], "www.owenservices.com": [12382], "canterbury.objective.co.uk": [20979], "developer.swisscom.com": [15951], "*.maliit.org": [10087], "www.enisa.europa.eu": [5526], "health.ancestry.com": [1031], "wkg.li": [2053], "raj.as": [2053], "nikp.in": [2053], "www.blackoutcongress.org": [2107], "cp1.com": [2053], "ioke.org": [20483], "www1.informatik.uni-erlangen.de": [17597], "holtstrom.com": [7604], "www.targetedthreats.net": [16217], "ld-8.itunes.apple.com": [1160], "www.o2extra.cz": [16332], "www.planet-work.fr": [12977], "merpic.intelliwebservices.com": [8369], "www.freed0m4all.net": [6281], "forums.verizon.com": [17918], "www.joindiaspora.com": [4529], "inspection.hyd.gov.hk": [7207], "be.ch": [21629], "on.lappari.com": [2053], "sanalmarket.com.tr": [14514], "help.anz.co.nz": [19399], "api.demandbase.com": [4420], "baina.jd.com": [8571], "sheknw.tk": [2053], "swot.cnes.fr": [2691], "sberbankdirect.de": [14561], "www.texthelp.com": [16421], "ciscobusinesslink.cisco.com": [3221], "www.shopyourway.com": [14968], "www.ieee.org": [7862], "www.waytools.com": [18307], "wetter.gq": [2053], "by.redstift.com": [2053], "cus.tm": [2053], "law.illinois.edu": [17544], "blogs.citizensadvice.org.uk": [19717], "elbadil.com": [5245], "webmail.gmobb.jp": [6459], "ic.lbp.me": [20644], "cineslate.net": [2053], "*.salesforceliveagent.com": [14488], "daniel.holba.ch": [7591], "hornbach.de": [7640], "websupport.f5.com": [5659], "id.dokyasde.com": [2053], "courses.wustl.edu": [18290], "s-asia.net": [2053], "ma.ttias.be": [9981], "www.utopianet.org": [17749], "vutbr.cz": [17814], "cluster.litmus.com": [9632], "www.video.oms.eu": [11836], "collect.anz.com": [355], "notice.ms.yahoo.co.jp": [18944], "www.aclumaine.org": [288], "itfr.dm": [2053], "chaitan.me": [2053], "sltz.us": [2053], "www.tageswoche.ch": [16162], "support.brookings.edu": [2416], "contents.gunosy.com": [7151], "webr.ch": [2053], "airwav.es": [2053], "iwpsd.georgetown.edu": [6668], "link.webmoney.ru": [18373], "farmlogs.com": [5777], "dhk.li": [2053], "strass.media": [2053], "www.science-alliance.de": [14618], "49e.info": [2053], "www.perishablepress.com": [12786], "op-lib.ch": [2053], "meetbot.fedoraproject.org": [5843], "www.ivsezaodnogo.ru": [20516], "portal.office.com": [11942], "sync.teads.tv": [16250], "icij.org": [7831], "blog.yammer.com": [18952], "shopthemint.co": [2053], "anyoption.com": [1120], "media.nips.cc": [11119], "chinapaymentservices.com": [3140], "baidj.us": [2053], "www.albertathome.org": [5228], "pairnic.com": [12540], "b.s-static.ak.facebook.com": [5733], "*.main-host.de": [10059], "partitaiva.tiscali.it": [16770], "www.hayward-pool.com": [7384], "www.successchef.com": [15827], "about.tagboard.com": [21649], "passed.cc": [12637], "www.theora.org": [16612], "www.eduroam.vutbr.cz": [17814], "www.reclog.jp": [13875], "www.hosts.co.uk": [7688], "l.endfy.com": [2053], "fi.theanarchistlibrary.org": [16482], "login.library.ethz.ch": [5074], "secure.excaliburfilms.com": [5591], "pkgs.fedoraproject.org": [5845], "balashov.beeline.ru": [1801], "www.nordkapp.net": [11674], "to.kras.nl": [2053], "norsk-tipping.no": [20924], "meritrustcu.org": [10459], "skatemall.com": [15145], "sbcusd.illuminateed.com": [20430], "clkvrt.co": [2053], "osicodesinc.com": [11870], "austenb.io": [2053], "hostasaurus.com": [7664], "b.hitravel.xyz": [2053], "difran.co": [2053], "crazzed.com": [3837], "s.mrj.ae": [2053], "login.domains.live.com": [9644], "dialdirect.co.uk": [4523], "chldrns.org": [2053], "shopcms.southbankcentre.co.uk": [15441], "s.mtv.fi": [20849], "padsdel2.cdnads.com": [2978], "l.motormsm.com": [2053], "outflux.net": [12357], "zooniverse.org": [19224], "lcchr.com": [2053], "*.webshopapp.com": [18443], "ropo.it": [2053], "ja.meituan.com": [10405], "hppkt.co": [2053], "securetheatre.telford.gov.uk": [21674], "ad.exelate.com": [5095], "cixi.meituan.com": [10405], "vrct.se": [2053], "seb.sx": [2053], "njm.at": [2053], "provider.havering.gov.uk": [7377], "s.pixogs.com": [4625], "www.bplaced.net": [19583], "images.yemeksepeti.com": [18980], "gira.ph": [2053], "planning.bradford.gov.uk": [2317], "cheapssl.com": [3099], "account.pcapredict.com": [21091], "hrla.ws": [2053], "www.shands.org": [17539], "2sx4u.com": [2053], "i3d.net": [7805], "www.gentooexperimental.org": [6655], "open-mesh.com": [12107], "tfgu.co": [2053], "huffpost.link": [2053], "pass.ag": [2053], "www.naturalmessage.com": [11290], "glyph.twistedmatrix.com": [17162], "www.scorecardresearch.com": [14635], "play.google.com": [6962], "*.rug.nl": [17540], "gaoan.meituan.com": [10405], "images.footlocker.com": [6126], "fldwrk.co": [2053], "uoc.to": [2053], "init.itunes.apple.com": [1160], "gum.co": [7146], "mumzworld.com": [10891], "www.smartmontools.org": [21481], "mchl.gr": [2053], "fowler.illuminateed.com": [20430], "do.ngs.ru": [20907], "learningcentral.cf.ac.uk": [2895], "partner.edgecast.com": [5180], "zona.media": [19210], "bkk-advita.de": [1564], "the.blvr.org": [2053], "www.polygon.com": [13117], "energiwatch.dk": [5353], "www.yaca.yandex.kz": [18957], "www.binbox.io": [1946], "www.icln.org": [7833], "*.shopping.com": [4972, 14973], "bawa.ba": [2053], "studentblackboardhelp.usc.edu": [17564], "mail.silentcircle.com": [15031], "customerlobby.com": [4012], "mvst.pe": [2053], "eagleeye.umw.edu": [17547], "www.3dvisionlive.com": [150], "allmovie-top.cf": [2053], "owa.1x.com": [59], "www.fas.harvard.edu": [7351], "www.blog.jolexa.net": [8770], "lubakiagenda.net": [20722], "my.bitdefender.com": [2038], "backstage.here.com": [7465], "www.exportingisgreat.gov.uk": [20080], "www.cozumpark.com": [3811], "ds.io": [2053], "wemonit.de": [18318], "t37.net": [16034], "origin-www.seagate.com": [14679], "hr-recruit.web.cern.ch": [2632], "topic.hao123.com": [7308], "www.active24.co.uk": [19274], "formspring.me": [6163], "ca-contrainfo.espiv.net": [20058], "gifl.it": [2053], "www.fat.bme.hu": [1570], "cbdr.se": [2053], "m.tune.yandex.kz": [18957], "metatu.be": [2053], "images.stackcommerce.com": [15613], "mdr.io": [2053], "atfamily.co": [2053], "s55.cnzz.com": [3391], "cdnapi.kaltura.com": [8927], "shop.niksoftware.com": [11594], "cpld.co": [2053], "btlbx.co": [2053], "photos.univers-libre.net": [17512], "els-sso.corp.aol.com": [361], "assets-auto.rbl.ms": [13825], "xianju.meituan.com": [10405], "isyot.com": [2053], "whosonfirst.mapzen.com": [10142], "hov.li": [2053], "s91.cnzz.com": [3391], "www.tqlkg.com": [3546], "portugues.istockphoto.com": [20505], "my.apa.org": [367], "www.widgitonline.com": [22024], "opts.jp": [2053], "ned.ipac.caltech.edu": [2815], "www.tomsofmainestore.com": [16816], "www.personalsavings.americanexpress.com": [972], "www.canon.dk": [2868], "longtailvideo.com": [9752], "empw.ca": [2053], "go.artywah.info": [2053], "cems.me": [2053], "shiri.info": [2053], "uat.adr.org": [19298], "wildarchives.com": [18600], "kiyoshifone.jp": [2053], "tawke.rs": [2053], "lib.law.washington.edu": [17577], "jpff.tk": [2053], "cas.wku.edu": [22039], "www.dobrochan.org": [4700], "runningrout.es": [2053], "hertzequip.com": [7511], "*.seedr.cc": [14794], "analytics.sanoma.fi": [14527], "www.resetthenet.org": [14038], "*.weebly.com": [18474], "www.collection.hotpics-amateur.com": [7694], "villas4you.co.uk": [18790], "dbphone.tk": [2053], "pkpla.net": [2053], "denl.dict.cc": [4536], "mancrush.me": [2053], "www.courses.osu.edu": [11959], "lesterchan.net": [9420], "mcdabb.in": [2053], "lumiblade-shop.com": [9828], "b.yandex.com.tr": [18954], "dating.independent.co.uk": [8202], "vip.invictus.mx": [2053], "*.partitopirata.ch": [12487], "videos.abuledu.org": [19258], "tpl.forsale": [2053], "l-dm.co": [2053], "socialwork.buffalo.edu": [17583], "luohe.meituan.com": [10405], "spr.tn": [2053], "js.hubspot.com": [7739], "ajax.asp.net": [393], "mmom.me": [2053], "shortnote.jp": [21434], "www.knightlab.com": [9097], "bioethics.georgetown.edu": [6668], "akademie.skolaonline.cz": [21471], "on.ampya.com": [2053], "www.circanews.com": [3213], "bustreaming.ulpgc.es": [17411], "www.gemeentebest.nl": [11324], "pics.qxlstatic.dk": [13525], "www.anonyproz.com": [1121], "www.people.ysu.edu": [19049], "on.epi.org": [2053], "ru.norton.com": [11703], "galaxy.ansibleworks.com": [1098], "www.evernote.com": [5556], "partners.rackspace.com": [13740], "www.statefarm.com": [15671], "i-share.carli.illinois.edu": [17544], "review.tizen.org": [16778], "my.ufanet.ru": [21836], "shoptpt.co": [2053], "www.downthemall.net": [4817, 4818], "www.proxybay.pl": [21216], "low.do": [2053], "wyndhamjobs.com": [18789], "www.news.cornell.edu": [3744], "api-stage.websitealive.com": [18445], "offi.gq": [2053], "hope.net": [7637], "mads.io": [2053], "powells.us": [2053], "feeds.bbci.co.uk": [19501], "www.telemetry.com": [16347], "p.spodermen.com": [2053], "www.audicon.net": [1387], "rlng.co": [2053], "www.viaduct.io": [17954], "www.nebelwelt.net": [11316], "riverbed.com": [14140], "sjmjr.me": [2053], "plus.politiken.dk": [13101], "www.anadolu.edu.tr": [1025], "t-mobile.nl": [16025], "s103.cnzz.com": [3391], "clear-link.com": [3287], "login.bibproxy.ulpgc.es": [17411], "www.glasgowconsult.co.uk": [20245], "logancij.com": [9714], "afcne.ws": [2053], "nottingham.greenparty.org.uk": [7052], "divitup.com": [4665], "hertzondemand.com": [7511], "lovingsupport.fns.usda.gov": [17495], "gcmasia.com": [6426], "crackstation.net": [3819], "u.tthe.se": [2053], "dixie.life": [2053], "on.wisn.com": [2053], "www.weekplan.net": [18476], "static.wangyin.com": [18269], "plusmtl.link": [2053], "providence.voxmedia.com": [21953], "bugzilla.redhat.com": [13909], "*.hd.se": [7181], "sf3.io": [2053], "dj1.xyz": [2053], "onehelp.cz": [11842], "brianchristner.io": [19590], "m.eclipso.de": [5152], "www.bbsey.es": [1765], "login.domaindiscount24.com": [19940], "hostgator.com": [7656], "ocronusa.net": [11912], "link.renga3.com": [2053], "www.warrington.gov.uk": [18280], "mcm.me": [2053], "updates-yum.ro.vutbr.cz": [17814], "u62.org": [2053], "emergency.illinois.edu": [17544], "rss.root.cz": [14199], "community.sbaglobal.com": [14869], "*.bendigobank.com.au": [1826], "www.rally.org": [13770], "maxm.eu": [2053], "www.changedetection.com": [3053], "camp.ai": [2053], "ipswit.ch": [2053], "feeds2.feedburner.com": [5849], "tangyin.meituan.com": [10405], "haweso.me": [2053], "creativepartnershipsaustralia.org.au": [3850], "www.cenowarka.pl": [2999], "jive.to": [2053], "*.aufeminin.com": [1509], "kunden.1und1.de": [82], "br1.es": [2053], "cas.iu.edu": [8214], "images.salon.com": [14491], "salesmedia.pl": [21361], "www.lenizdat.ru": [20659], "iconnect.colchester.gov.uk": [3477], "glze.me": [2053], "nasp.ws": [2053], "radio98fm.espiv.net": [20058], "go.wiriamu.net": [2053], "*.gamestar.de": [6558], "keepassx.org": [8987], "wiki.vortexbox.org": [21949], "www.matildajaneclothing.com": [10237], "downloads.plex.tv": [13036], "dod.mn": [2053], "hbjoy.co": [2053], "postcodeanywhere.co.uk": [21177], "*.consumersunion.org": [3669], "assetscdn.students.uophx.edu": [12845], "blog.netflix.com": [11420], "impression.tips": [2053], "www.drupalgardens.com": [4877], "vesica.ws": [17942], "s4.rationalcdn.com": [21261], "phclarity.co": [2053], "shuv.es": [2053], "burly.me": [2053], "jwdcr.com": [2053], "getoutofdebt.org": [6719], "cm.life": [2053], "ds.heanet.ie": [7406], "jw-l.info": [2053], "assu-web.stanford.edu": [15634], "bentasker.co.uk": [1824], "www.alldebrid.com": [870], "www.fluechtlinge.wien.gv.at": [22025], "www.translatewiki.net": [16947], "zcty.it": [2053], "www.tsv.fi": [16706], "www.royalsociety.org": [14235], "www.hook.io": [20360], "secure.payconnect.net": [4993], "saimd.com": [3750], "postmaster.tdc.dk": [16051], "trvl.chubit.com": [2053], "*.icbdr.com": [2901], "bakn.me": [2053], "cdyapp.co": [2053], "lifehap.pn": [2053], "smartf.ly": [2053], "lnks.li": [2053], "slax.org": [15196], "wmp.nrafamily.org": [20946], "blog.netways.de": [11452], "alfonso.link": [2053], "www.investsmart.com.au": [8464], "ykso.us": [2053], "videolab.avnet.kuleuven.be": [8969], "pubs.ext.vt.edu": [18031], "bsidesslc.org": [1589], "dd.lc": [2053], "www.blog.fau.de": [17597], "www.nordichardware.se": [11670], "s.sound-c.co.jp": [2053], "graduateschool.wustl.edu": [18290], "www.pacw.org": [12409], "benefits.usc.edu": [17564], "authproxy.trafficanalytics.here.com": [7465], "unrestrict.li": [17654], "ftfbr.co": [2053], "alternet.org": [916], "a.xgolf.kr": [2053], "out.vitzo.com": [2053], "www.pingability.com": [12900], "e.onthe.io": [12089], "upa.rocks": [2053], "livememe.com": [9653], "learn.adafruit.com": [589], "*.japantimes.co.jp": [16462], "x.thisr.com": [2053], "linux.rz.ruhr-uni-bochum.de": [14267], "social.mayfirst.org": [10266], "web-style.educ.cam.ac.uk": [17529], "www.hereford.greenparty.org.uk": [7052], "english.mirea.ru": [20805], "ashur.st": [2053], "anev.is": [2053], "webspace4clans.de": [18451], "alebego.li": [2053], "www.all4xs.net": [866], "ethai.land": [2053], "edweek.org": [5170], "*.iapplicants.com": [8738], "trachea.stanford.edu": [15635], "bdsdr.me": [2053], "firmstep.com": [20125], "www.slaveryfootprint.org": [15195], "*.bwin.com": [7880], "centb.io": [2053], "7mnpep.com2.z0.glb.clouddn.com": [6615], "zmknox.xyz": [2053], "cjs.leeds.ac.uk": [17604], "chrisd.me": [2053], "feeds.soundcloud.com": [15410], "*.adition.com": [634], "www.focus.de": [6091], "imagewz.winzip.com": [18633], "digimint.ly": [2053], "dukes.me": [2053], "pcr.io": [2053], "go.majksner.com": [2053], "www.sicontact.at": [15005], "wijchen.nl": [11324], "linuxnewmedia.de": [9555], "cvtt.me": [2053], "getglue.com": [6697], "ail.htwk-leipzig.de": [7736], "puxlit.tumblr.com": [17100], "qxl.no": [13617], "xarel.to": [2053], "web-api.migros.ch": [10566], "hgr.mn": [2053], "www.kolabsys.com": [9111], "www.otumm.com": [12340], "op1c.com": [2053], "www.cgran.org": [2648], "wordvine.sydney.edu.au": [21631], "tiberis.me": [2053], "mysafe.f-secure.com": [5654], "www.dice.com": [4533, 4534], "hoz.me.uk": [2053], "alp.hr": [2053], "vpn.uibk.ac.at": [21838], "keep2share.cc": [8858], "*.urkb.ch": [20574], "www.3fm.nl": [151], "www.passsource.com": [12634], "trav.pt": [2053], "*.synacor.com": [15976], "datadoghq.com": [4279], "jepmr.fr": [2053], "irhod.es": [2053], "sandbox.mydigipass.com": [11017], "www.waze.com": [18311], "secure.syndetics.com": [15987], "ulyanovsk.beeline.ru": [1801], "reach.fm": [2053], "www.l0g.us": [9214], "camden.spydus.co.uk": [21546], "knote.cc": [2053], "nfpeo.uk": [2053], "r.freecoins4.me": [2053], "ftp.rnl.tecnico.ulisboa.pt": [20184], "wolfire.com": [18696], "bookings.bookitsecure.com": [19571], "fous.ly": [2053], "new.enfield.gov.uk": [5359], "www.nasa.gov": [11058], "blog.travis-ci.com": [16976], "www.zenmate.jp": [19133], "abakan.beeline.ru": [1801], "lnk.nickmke.com": [2053], "y0y.me": [2053], "upc-cablecom.ch": [21865], "cgit.collabora.com": [3481], "www.piwik.uni-hamburg.de": [17229], "jobs.bce.ca": [1815], "nwst.cc": [2053], "invn.co": [2053], "adviate.ch": [2053], "hybridsp.com": [2053], "shopgbt.com": [2053], "elsevier.ca": [5286], "sceper.eu": [14584], "gthss.com": [2053], "modules.openmrs.org": [12150], "countysuppliesonline.hants.gov.uk": [7328], "thch.pl": [2053], "etrieveca.htzpartners.com": [7511], "manageengine.jp": [10102], "utk.edu": [17626], "picsea.me": [2053], "awtari.ca": [2053], "www.kth.bme.hu": [1570], "www.mastozytose-schweiz.org": [10224], "www.tribecafilm.com": [17003], "on.revo.com": [2053], "www.leaseweb.com": [9372], "www.bbpress.org": [1762], "*.stagingspeak.com": [17105], "www.cosmote.gr": [3759], "jdshot.us": [2053], "tlng.me": [2053], "go.techreach.in": [2053], "thumbs.dachix.com": [3830], "zenmate.com.tr": [19133], "c.pichard.me": [2053], "business.gov.au": [2511], "static.linuxdistrocommunity.com": [9581], "www.mnot.net": [10668], "tieclip.it": [2053], "amazon.co.uk": [19365], "support.evernote.com": [5556], "www.adobe.com": [655], "wrgm.ag": [2053], "grp15.ias.rakuten.co.jp": [13768], "peixun.alibaba.com": [850], "www.iseclab.org": [8513], "lagoa.in": [2053], "www.menshealth.de": [10435], "szamlazo.mito.hu": [10648], "wspk.co": [2053], "www.mcdelivery.com.my": [10285], "mghocd.org": [9868], "*.bigbrotherwatch.org.uk": [1910], "www.egedalkommune.dk": [5212], "searchengineland.com": [16635], "townre.nyc": [2053], "hi.bakingit.com": [2053], "broadbandreports.com": [4157], "ossbss.link": [2053], "collinz.co": [2053], "slu.gg": [2053], "a3.ec-images.myspacecdn.com": [11037], "support.codeanywhere.com": [19746], "jenkins.linuxcontainers.org": [9580], "my.devme.pw": [2053], "alumni.cgi.rice.edu": [14102], "jinhuo.1688.com": [44], "s.pairs.lv": [2053], "easy-tracking-protection.truste.com": [16111], "silverte.ch": [2053], "disk.yandex.kz": [18957], "*.host1plus.com": [7649], "www13.empireblue.com": [20033], "www.csiac.org": [2728], "zmb.me": [2053], "admission.stanford.edu": [15635], "spothe.ro": [2053], "overclockers.at": [12369], "www.roammobility.com": [14151], "base64-image.de": [19491], "community.marketdojo.com": [10174], "www.55ch.org": [199], "on.docx.ca": [2053], "kb.isc.org": [7966], "penngse.me": [2053], "www.vtnews.vt.edu": [18031], "info.bitsighttech.com": [1996], "*.oneclickdigital.eu": [20995], "imgnt.it": [2053], "facultyhandbook.georgetown.edu": [6668], "nominatim.openstreetmap.org": [12177], "zem.si": [2053], "dijitv.co": [2053], "www.firmstep.com": [20125], "trustpilot.com": [17073], "www.duckduckhack.com": [19966], "www.utbm.fr": [21886], "www.netforumpro.com": [11382], "zunhua.meituan.com": [10405], "www.happyhardcore.com": [7330], "cf.thumbs.xxxbunker.com": [18911], "ctvcom.co": [2053], "www.securepoint.de": [14753], "edht.cf": [2053], "tritonlink.ucsd.edu": [17216], "webmail.f-secure.com": [5654], "meetup.com": [10386], "espana.isidewith.com": [20414], "cornerstone.wustl.edu": [18290], "loui.sv": [2053], "smcvt.co": [2053], "www.mikeconley.ca": [10570], "www.vtv.fi": [17830], "myhub.biz": [2053], "www.pol.ulaval.ca": [17515], "www.meinfernbus.de": [10406], "www.aful.org": [325], "*.uk2.net": [17241], "keyghost.com": [9019], "toxstats.com": [21768], "www.stopthehacker.com": [15746], "on.wptz.com": [2053], "www.fiskeriverket.se": [6001], "bit.0.md": [2053], "secured.greenpeace.org": [7064], "jjvirg.in": [2053], "rply.cl": [2053], "www.kop11.com": [8894], "montag.akvorrat.at": [811], "ligatus.fr": [9502], "izag.co": [2053], "lkimg.zamimg.com": [19095], "photo.p0p0v.ru": [2053], "b2d-linux.com": [19472], "upcase.com": [17672], "secure.sextoy.com": [14887], "dl.bitmask.net": [2056], "hrweb.apple.com": [1160], "app-community.offerpop.com": [11938], "ib.rosbank.ru": [21328], "lmden.tl": [2053], "hrlink.healthnet.com": [20329], "www.oomphme.com": [12095], "d38.me": [2053], "fmly.co": [2053], "arc.publicdebt.treas.gov": [17337], "www.drillisch.de": [4856], "dlink.ml": [2053], "scotty.ac": [2053], "home.pl": [7610], "s.gflaig.eu": [2053], "kamchatskiy-kr.beeline.ru": [1801], "u.jobnavy.com": [2053], "*.myfbo.com": [10946], "daok.us": [2053], "resnet.rit.edu": [13667], "vidyaevo.beeline.ru": [1801], "dnd.wizards.com": [18687], "jefftips.co": [2053], "smsl.osu.edu": [11959], "shop.openbsdeurope.com": [12119], "mye.cards": [2053], "justpaste.it": [8846], "reseller.seagate.com": [14679], "chm.link": [2053], "jdc.io": [2053], "go.foxct.com": [2053], "frms.bz": [2053], "srware.net": [15595], "crunchbangplusplus.org": [3906], "alternativeto.net": [925], "l.safadinho.net": [2053], "qr.cogmpgt.org": [2053], "trdwnds.life": [2053], "si.wsj.net": [22059], "www.braincert.org": [2322], "val.vutbr.cz": [17814], "rd.bizrate.com": [2086], "dontspyonus.org.uk": [4772], "riz.li": [2053], "tilburguniversity.worldcat.org": [18748], "mail.ciw.edu": [2916], "u.horia.me": [2053], "gaoxiong.meituan.com": [10405], "altimatewellness.com": [931], "fs.monex.co.jp": [10733], "secure.brandify.com.au": [2337], "sh.balintant.me": [2053], "forum.jquery.com": [8598], "performance.demandbase.com": [4420], "www.rbdigital.com": [21264], "www.neko.im": [11329], "hiasrefuge.es": [2053], "www.permits.performance.gov": [12780], "safaribooksonline.com": [14459], "www.ciao.de": [3191], "wallet.tenpay.com": [16376], "mrvnchr.co": [2053], "yoklapi.com": [18997], "rusticwed.com": [2053], "liebach.tumblr.com": [17100], "forums.socialblade.com": [15318], "e18.xhamsterpremiumpass.com": [18817], "sharkloves.com": [2053], "ed25519.cr.yp.to": [3817], "kolbi.me": [2053], "proxybay.bid": [21771], "bookings.see.leeds.ac.uk": [17604], "www.adpeepshosted.com": [585], "is.onmedic.com": [2053], "1.goke.me": [2053], "reslife.wustl.edu": [18290], "www.intelligence.org": [8365], "jo.tl": [2053], "www.navicast.co.jp": [14985], "amd.co.at": [961], "jolla.com": [8771], "trgam.es": [2053], "value-domain.com": [17832], "community2.newcastle.gov.uk": [11507], "cancer-fi.directo.fi": [15998], "utsouthwestern.edu": [17569], "by.0atz.com": [2053], "pirates.mail.ru": [10040], "yanan.meituan.com": [10405], "mystr.us": [2053], "on.feif.me": [2053], "s-adserver.cxad.cxense.com": [2753], "s.hychen.org": [2053], "go.vtxw.com": [2053], "www.spacex.com": [15458], "link.aveeo.de": [2053], "www.dinside.no": [19925], "digital.georgetown.edu": [6668], "book.serversforhackers.com": [14862], "amnesty.org.uk": [1009], "www.dmgt.co.uk": [4198], "instructlab.educ.cam.ac.uk": [17529], "umw.io": [2053], "www.tescodiets.com": [16399], "lk.pirate-party.ru": [12919], "fyndiq.ly": [2053], "burst.net": [2503], "my.edgecast.com": [5180], "iabe.jp": [2053], "biz.wangyin.com": [18269], "labs.tageswoche.ch": [16162], "petitions.moveon.org": [10818, 10819], "ln-s.us": [2053], "nowj.ga": [2053], "mbpr.sh": [2053], "www.yemeksepeti.com": [18980], "www.providercentral.org.uk": [21214], "connecthr.nl": [2842], "domaincontext.com": [4743], "*.responsys.net": [14049], "latingram.my": [2053], "www.sinnfein.ie": [15098], "tfp.cool": [2053], "tools.digitalpoint.com": [4581], "gran-turismo.com": [7016], "s.adroll.com": [575], "jdrk.in": [2053], "newdelhi.usembassy.gov": [21879], "tuleap.udistrital.edu.co": [17394], "shltr.net": [2053], "playfi.sh": [2053], "endpol.io": [2053], "s7.addthis.com": [611], "srco.us": [2053], "i.zooettes.com": [2053], "s-light.co": [2053], "chinadialogue.net": [3143], "ico.jobs": [4614], "ssum.it": [2053], "downloads.openmicroscopy.org": [12219], "boomtra.in": [2053], "giveto.mariestopes.org.au": [10156], "www2.jcp.org": [8567], "hepe.com": [7458], "pt.malwarebytes.org": [10093], "www.bayproxy.press": [21217], "23consu.lt": [2053], "taskwarrior.org": [16225], "moneyandmarkets.com": [18483], "lukb.ch": [20574], "duplication.cdbaby.com": [19662], "natpo.st": [2053], "urbanproxy.eu": [21711], "forum.ubuntu.org.cn": [17372], "discuss.atom.io": [1360], "media3.congstar-media.de": [3641], "www.ernw.de": [5049], "my.figva.com": [2053], "www.similarweb.com": [15056], "pcani.com.br": [2053], "historia.uniovi.es": [17479], "ndia.org": [11238], "onlinebanking.mandtbank.com": [9856], "tco.osu.edu": [11959], "vi.aliexpress.com": [847], "support.brightidea.com": [2384], "thewire.com": [16591], "auctionbunker.com": [1381], "acym.tk": [2053], "jsh.gd": [2053], "ftx.me": [2053], "pop.pr": [2053], "ical.yc.sg": [2053], "cpoula.in": [2053], "utils.nypost.com": [20972], "idrsolutions.com": [7856], "sommerkunstskolen.jammerbugt.dk": [8654], "ustatik.com": [17741], "bill.sulwer.io": [2053], "stream.cz": [15772], "www.metafetish.com": [10482], "epires.me": [2053], "express-vpn.com": [5627], "wt.o.nytimes.com": [11189], "*.osa.org": [12268], "campusspiele.htwk-leipzig.de": [7736], "associates.amazon.co.uk": [19365], "biasreporting.georgetown.edu": [6668], "unref.in": [2053], "www.barracuda.com": [1728], "esdad.com": [2053], "arec.vaes.vt.edu": [18031], "7.wspa.com": [2053], "ine.do": [2053], "www.hosterbox.com": [7666], "zdns.knet.cn": [8892], "www.lenovoorders.com": [9410], "hosts.co.uk": [7688], "transportstyrelsen.se": [16958], "on.hoffarch.com": [2053], "go.smridh.com": [2053], "www.amnesty.fi": [999], "whitemts.us": [2053], "finance.google.com.*": [6965], "jobs.cardiff.gov.uk": [19644], "www.msfn.org": [9955], "www.vouchedfor.co.uk": [18143], "jnj.me": [2053], "on.str3am.cf": [2053], "famigros.migros.ch": [10566], "l.cvbell.com": [2053], "mycard.site": [2053], "*.gephi.org": [6673], "inbnd.li": [2053], "alexand.us": [2053], "garr.co": [2053], "www.exratione.com": [5580], "ymjc.me": [2053], "jasn.me": [2053], "mm.vh1.com": [2053], "facultydevelopment.stanford.edu": [15635], "bigjocker.com": [1916], "cisco.re": [2053], "www.sylvancompany.com": [15968], "blog.centreon.com": [3019], "anme.uk": [2053], "www.laravel-news.com": [9309], "go.stack.to": [2053], "terveysportti.net": [16394], "www.wikispaces.asu.edu": [1232], "*.speakychat.com": [15487], "casecurity.ssllabs.com": [14416], "nativeads.site": [2053], "www.gnutls.org": [6888], "www.voucherexpress.co.uk": [7456], "stats.linode.com": [9547], "cdn2.thr.com": [16068], "www.fastshare.cz": [5790], "yazm.in": [2053], "cdn-d-vid-public.pornhub.com": [13153], "i.cube-au.com": [2053], "mssv.ly": [2053], "www.oneclickreseller.com": [20996], "www.2ch.hk": [109], "ngvpn04.nvidia.com": [11174], "qd-sol.com": [2053], "*.hwstatic.com": [18339], "gmclerkstlgaccess.hants.gov.uk": [7328], "saltr.io": [2053], "sc.wustl.edu": [18290], "profil.wp.pl": [18217], "m.pogoda.yandex.by": [18953], "planning.lancaster.gov.uk": [20634], "knewone.com": [9095], "gehrcke.de": [6629], "firstdedic.ru": [5983], "corecode.at": [3729], "pajon.es": [2053], "kde.org": [8871], "mediaquestcorp.com": [10349], "imsh.co": [2053], "srv5.bakerlab.org": [1667], "www.planetromeo.com": [12983], "community.akamai.com": [800], "rejo.zenger.nl": [19143], "*.nagra.com": [11199], "wchom.es": [2053], "pardubice.idnes.cz": [20425], "www.huque.com": [7772], "www.mysociety.co.uk": [10975], "urlquery.net": [17702], "www.cryptopp.com": [3957], "www.researchcompliance.vt.edu": [18031], "liveupdate.symantec.com": [15969], "www.mycanvas.com": [10938], "latimes.com": [9775, 17006], "au.chaucanh.net": [2053], "polite.pw": [2053], "dl.boxcloud.com": [2309], "shiseido.jp": [2053], "www.beaker-project.org": [1781], "viajwat.ch": [2053], "datacentrumgids.nl": [4277], "www.vpac.org": [17789], "www.eweka.nl": [5577], "webmail.htwg-konstanz.de": [7247], "static.rutracker.org": [21346], "collegiatepeaksbank.com": [3492], "pex.me": [2053], "tem.fi": [17185], "team.ushahidi.com": [17735], "www.opensignal.com": [12172], "nhot.us": [2053], "gocrisp.in": [2053], "syn.ac": [2053], "mreh.ca": [2053], "sc03.alicdn.com": [846], "changji.meituan.com": [10405], "app.cameo.tv": [2053], "myloc.in": [2053], "netspi.com": [11398], "l.rzk.jp": [2053], "store.yubico.com": [19052], "startssl.org": [15660], "taxes.recurly.com": [13887], "riders.uber.com": [17368], "turkey.thecthulhu.com": [16600], "vzp.ro": [2053], "chatenabled.mail.google.com": [6962], "quizo.ro": [2053], "ipho.fi": [2053], "cienciastierra.unizar.es": [17643], "luoyang.meituan.com": [10405], "www.rki.de": [14145], "www.galaxus.com": [6525], "wosign.com": [18693], "xslt.alexa.com": [835], "p24.cc": [2053], "blog.snap-ci.com": [21488], "aum.worldcat.org": [18748], "www.spkrb.de": [21536], "mrr.gr": [2053], "obrazky.o2active.cz": [16331], "passportstatus.state.gov": [17345], "bhrld.co": [2053], "dwarffortresswiki.org": [4911], "auth.robokassa.ru": [14159], "releases.ansible.com": [1097], "www.onarbor.com": [12021], "www.burthub.com": [2509], "l1.suprana.com": [2053], "mbfair.info": [2053], "www.unian.net": [21851], "betvictor.com": [17962], "gtk-apps.org": [21006, 21007], "campustreball.upf.edu": [17674], "export.yandex.com": [18956], "stafftravel.ba.com": [1527], "theamuse.so": [2053], "stylessl.alibaba.com": [850], "adamr.is": [2053], "wpstar.me": [2053], "docs.owncloud.org": [12387], "gov.uk": [6483], "e15.xhamsterpremiumpass.com": [18817], "prsntbwy.co": [2053], "gnd-tech.com": [6468], "main.lurkmore.so": [9838], "adallom.com": [591], "c-and-a.com": [2554], "search3.openobjects.com": [12220], "cablog.me": [2053], "golinks.ncsu.edu": [11690], "www.villas4you.co.uk": [18790], "on.leosoki.com": [2053], "kbane.ws": [2053], "ostratest.ro.vutbr.cz": [17814], "blog.xen.org": [22080], "axeso5.com": [1512], "www.vinumeris.com": [18017], "www.lcsd.gov.hk": [7211], "b.eth.pw": [2053], "trusu.biz": [2053], "rimonth.ly": [2053], "news.techdirt.com": [16281], "www.dccc.org": [4088], "employment.harvard.edu": [7351], "www.performancewheel.com": [12782], "a320.emulate.su": [5327], "www.xmpp.jp": [18825], "ezeitung.badische-zeitung.de": [1650], "royr.us": [2053], "tknr.me": [2053], "trybooth.com": [21803], "trip30.co": [2053], "gettyimages.be": [6741], "notebook.zoho.com": [19202], "filez.link": [2053], "db.tt": [4864], "payments-parkright.westminster.gov.uk": [18516], "www.inventati.org": [1450], "storebrand.no": [15750], "tros.nl": [17037], "pamdyer.us": [2053], "git.rtems.org": [13706], "link.khevin.com": [2053], "support.google.com": [6962], "wrzru.com": [22057], "go.beert.co": [2053], "static.rottentomatoes.com": [14214], "ssl.pstatic.net": [13416], "hungertoho.pe": [2053], "l.col.lt": [2053], "fax.org": [2053], "www.ideastorm.com": [8076], "hydra.q1media.com": [13504], "s365.it": [2053], "spectrum.gettyimages.com": [6741], "privacy-policy.truste.com": [16111], "hwevents.co": [2053], "go.achuro.com": [2053], "*.windriver.com": [18637], "b-t.energy": [2053], "drchat.co": [2053], "appcenter.software-univention.de": [17511], "lien.csf.bc.ca": [2053], "cdn-storage.br.de": [1581], "pda-passport.yandex.com": [18956], "u.guanqun.org": [2053], "static.bitcoinstats.com": [2022], "hiro.pw": [2053], "blog.bizo.com": [2083], "thumbnail.image.shashinkan.rakuten.co.jp": [13768], "*.hsr.ch": [17523], "www.mediatemple.net": [10331], "www.fs01.androidpit.info": [1048], "fishtr.hk": [2053], "tvn967.co": [2053], "share.mp": [2053], "opbe.at": [2053], "ss1.bdstatic.com": [19507], "dyn.webtraffic.se": [18463], "pix.btrll.com": [2376], "www.isleaked.com": [8510], "stavropol.beeline.ru": [1801], "m.regalii.com": [13959], "rdae.eu": [2053], "txfusa.tv": [2053], "service.gmx.com": [6467], "diploar.mondediplo.com": [10729], "www.codetriage.com": [3444], "m.datart.cz": [4082], "www.recsports.osu.edu": [11959], "mtr.li": [2053], "www.faa.gov": [5830], "dcw.bz": [2053], "static.7x7-journal.ru": [228], "sfmoma.do": [2053], "*.cleanprint.net": [3285], "freiwilligenportal.wwf.ch": [22060], "caisse.me": [2053], "spreadshirt.es": [15552], "www.hpac.nhs.uk": [11102], "www.ipcc.ch": [7936], "www.hiawatha-webserver.org": [7530], "icure.ml": [2053], "scratchcards.williamhill.com": [18615], "www.sharefest.me": [14921], "ari.jozz.xyz": [2053], "makarov.sakh.com": [21360], "www.rcitravelstore.co.uk": [18790], "txhrt.org": [2053], "services.assetmanagement.hsbc.co.in": [20372], "missionandministry.georgetown.edu": [6668], "www.meet.fm": [10375], "consultations.oxfordshire.gov.uk": [21056], "fortumo.com": [6178], "www.censys.io": [3002], "kray.link": [2053], "aduhm4n9.ml": [2053], "www.tyumedia.ru": [21829], "www.korbit.co.kr": [9134], "vouve.tv": [2053], "pbproxy.tech": [21709], "*.clear-link.com": [3287], "coveredca.com": [3800], "*.wiredforchange.com": [14492], "httplab.it": [7733], "josipfranjkovic.com": [20551], "ras-gateway.ncl.ac.uk": [11073], "www.foodler.com": [6122], "a1.hitravel.xyz": [2053], "azbau.ru": [2053], "humanw.in": [2053], "videolan.org": [17981], "www.fanpagegeneratorpro.com": [6838], "group.cnblogs.com": [19743], "sesiri.org": [2053], "restricted.westberks.gov.uk": [22005], "shm.ir": [2053], "hacks.mit.edu": [9914], "bigredstop.me": [2053], "static.xiaomi.net": [18874], "support.alpnames.com": [910], "kb.vpsfree.cz": [21956], "macw.us": [2053], "iqon.me": [2053], "www.sp.nl": [14389], "icstars.com": [8071], "jomil.es": [2053], "shoporca.com": [21430], "*.dabs.com": [4177], "www.cheshiremerseysidecsu.nhs.uk": [11102], "support.tenten.vn": [16378], "www.congresstmi.org": [5898], "x.evrworld.com": [2053], "mailnull.com": [10045], "s7sps1.scene7.com": [14580], "www.wacken.com": [18237], "shoujiweishi.baidu.com": [1661], "eargasmic.me": [2053], "www.spirit.com": [15529], "www.login.bme.hu": [1570], "l.njpc.it": [2053], "sixt.info": [2053], "ahk4.me": [2053], "sbux.co": [2053], "www.pravda-kr.com.ua": [21187], "tools.its.waikato.ac.nz": [17633], "tescohub.com": [2053], "m.hertsdirect.org": [7474], "adhere.tips": [2053], "websrv01.kidshealth.org": [9036], "i.wpimg.pl": [22055], "trtl.bz": [2053], "xiangcheng.meituan.com": [10405], "blog.xapo.com": [18841], "thinkusc.com": [17563], "3spot.us": [2053], "blog.okturtles.com": [11972], "blog.sony.com": [15393], "corp.onlinesbi.com": [12072], "link.arroyo.me": [2053], "icom.live": [2053], "mndlss.biz": [2053], "*.visualrevenue.com": [18077], "www.transformativeworks.org": [16941], "media.business.spectrum.com": [15497], "www.tienda.ulpgc.es": [17411], "can01.anibis.ch": [19390], "www.studifit.htwk-leipzig.de": [7736], "motoring.guide": [2053], "*.vo.msecnd.net": [10867], "www.ruweb.ru": [14286], "sprbl.st": [2053], "mem.keepy.me": [2053], "sinc.ws": [2053], "labaia.ws": [9278], "m.oracle.com": [12284], "docusign.net": [4718], "crcp.it": [2053], "sab.to": [2053], "chicago.gumtree.com": [20296], "static.atv.hu": [402], "staff.uclan.ac.uk": [17593], "verify.givingprograms.com": [6813], "swne.ws": [2053], "sab.tg": [2053], "findyo.ga": [2053], "libraries.io": [9462], "*.bxl.indymedia.org": [8234], "spreadshirt.pl": [15552], "ctoday.link": [2053], "codeclub.org.uk": [3414], "elance.com": [5241], "pag.tech": [2053], "mosx.tv": [2053], "assetmanager.api.qbrick.com": [13529], "lancashiremss.yourpensionservice.org.uk": [22114], "www.unifiedtracking.com": [17470], "htqw.co": [2053], "testfamilysafety.bing.com": [1949], "www.suitey.com": [15843], "re-shap.es": [2053], "levoleague.com": [9435], "winswitch.org": [18641], "tgav.in": [2053], "www.mashape.com": [10208], "indiegam.es": [2053], "500miles.us": [2053], "forensic.to": [19146], "www.trumba.com": [17053], "static.mediatemple.net": [10331], "*.barnesandnoble.com": [1726], "ctpx.cc": [2053], "dng.li": [2053], "issues.oasis-open.org": [11805], "roger.ucsd.edu": [17216], "snagajob.com": [15270], "shurk.us": [2053], "l.vtech.fr": [2053], "*.adbutler.com": [557], "mxcursos.com": [9978], "localedge.com": [9699], "blogit.ashleymadison.com": [1289], "www.adjug.com": [565], "the-independent-news.com": [8205], "hoag.me": [2053], "tsptry.com": [2053], "songlist.hclippr.com": [7180], "www.remusexhauststore.com": [13998], "graphics.nytimes.com": [11189], "nesl.edu": [11090], "sponsoredprograms.illinois.edu": [17544], "www.tweetadder.com": [17145], "www4.pipni.cz": [12460], "www.esdiscuss.org": [5068], "metrics.geek.com": [19177], "www.sbvimprover.com": [14322], "remeslennik.ais.by": [19333], "clda.co": [2053], "etipos.sk": [5492], "jcp.org": [8567], "soundgasm.net": [15411], "www.pbproxy.tech": [21709], "www.eecs.umich.edu": [17552], "preview.catalog.usmint.gov": [17340], "defn.tv": [2053], "fcatha.la": [2053], "r.1k.dk": [2053], "tzkn.co": [2053], "ckbe.at": [2053], "mountaincode.eu": [10807], "blcrft.us": [2053], "task.actis.ru": [19272], "remote.vuze.com": [18174], "min.gs": [2053], "sports-aba.link": [2053], "www.andaluciapropertyrentals.com": [1035], "minecraftserverlijst.nl": [10605], "www.maketecheasier.com": [10075], "*.ekomi.co.uk": [5020], "vantiv.com": [17855], "armenpress.am": [19418], "resellers.trustico.com": [17069], "www.anonymousspeech.com": [1091], "qrsolutions.com": [13516], "pixe.lt": [2053], "www.dgl.cx": [4519], "my.ysu.edu": [19049], "www.cometdocs.com": [3528], "jobs.businessinsider.com": [15074], "cars.mail.ru": [10040], "www.ballicom.co.uk": [1675], "www.gototraining.com": [6913], "ciety.com": [3192], "scotseafar.ms": [2053], "frgt.co": [2053], "paxson.me": [2053], "www.ps3crunch.net": [12500], "paid2play.co.vu": [2053], "webmo.to": [2053], "g.rastitkac.net": [2053], "alumni.buffalo.edu": [17583], "hut.li": [2053], "www.jazz.co": [8684], "www.crosskeyshomes.co.uk": [19820], "shopping.nero.com": [11354], "mbsgrp.co": [2053], "www.theadulthub.com": [21689], "nu41nx.tk": [2053], "interacposcentre.ca": [8385], "lippupalvelu.fi": [16690], "caixadirectaonline.cgd.pt": [3038], "hlmod.ru": [7579], "van-works.jp": [2053], "www.ecodissident.net": [5154], "global.ib-ibi.com": [7820], "smilebox.co": [2053], "codeship.com": [3440], "2sm.pl": [2053], "privacy.f-secure.com": [5654], "dmdi.pl": [2053], "ci.numenta.com": [20961], "tomh.co": [2053], "postbank.de": [13186], "inburke.com": [8189], "lifenogg.in": [2053], "admissions.uic.edu": [17517], "jeze.co": [2053], "mp101.me": [2053], "www.pressfreedomfoundation.org": [6292], "www.wellingborough.gov.uk": [18489], "fa.gl": [2053], "s.melt.bz": [2053], "ysu.edu": [19049], "go.liondesk.com": [2053], "pingjiang.meituan.com": [10405], "web.de": [18347], "on.wdsu.com": [2053], "lonap.net": [9247], "1nsk.ru": [70], "bodw.info": [2053], "beta.hstor.org": [7730], "openingco.me": [2053], "www.canon.at": [2868], "www.jamadu.ch": [3711], "jy.sk": [2053], "www.netguava.com": [11427], "wad.mg": [2053], "a.247aussie.com": [2053], "erinjo.me": [2053], "trac.inf.mit.bme.hu": [1571], "metooo.io": [10495], "atarnotes.me": [2053], "www.directspace.net": [4609], "wd.sharethis.com": [14913], "cdn-eu-i1.userscontent.net": [17730], "bible.com": [19017], "abr.gov.au": [1420], "aktrack.pubmatic.com": [13422], "www.bitnami.com": [2062], "resilientcommunities.govspace.gov.au": [6994], "auth.verizon.com": [17918], "icims.com": [7832], "2tel.us": [2053], "www.wustl.edu": [18290], "www.918autoloans.com": [239], "vert.ms": [2053], "yandex.net": [18959], "www.bretagne-web.eu": [2359], "via.ecilia.fr": [2053], "*.tekgoblin.com": [16320], "cyberphoto.se": [4035], "maps.havering.gov.uk": [7377], "s.z80.be": [2053], "theexplorercard.com": [16538], "theke.migros.ch": [10566], "go.mcafee.com": [10282], "rdhl.us": [2053], "www.marketplace-used.com": [10183], "www.vkarpinsk.info": [21932], "url.lei.lt": [2053], "too.bz": [2053], "ncsc.nl": [11075], "shagaholic.com": [825], "www.easywhois.com": [5133], "www.silverrushstyle.com": [15045], "www.aeea.asso.ulaval.ca": [17515], "login.active24.com": [19275], "crdi.co": [2053], "sg.anz.com": [355], "www.benefits.caltech.edu": [2815], "wetransfer.com": [18323], "www.igtt.hscic.gov.uk": [20388], "robb.biz": [2053], "edge.avangate.net": [1479], "wpku.be": [2053], "diplomacy.state.gov": [21567], "bestofferbuy.com": [1857], "threadingbuildingblocks.org": [16659], "bqknews.com": [2053], "mine4su.re": [2053], "www.appdevelopermagazine.com": [1151], "moment.douban.com": [4802], "jining.meituan.com": [10405], "pafurl.com": [2053], "holderdeord.no": [7593], "bm.sarras.net": [2053], "kbia.fm": [2053], "trialpay.com": [17000], "linuxpl.com": [9594], "luxhv.com": [9840], "meltwaternews.com": [10416], "ibm.com": [7821], "dabot.co": [2053], "fls-na.amazon.ca": [19362], "thesmokers.club": [2053], "g1.hitravel.xyz": [2053], "shop.epsilon-telecom.de": [5433], "www.airtop-pc.com": [795], "www.lipreading.org": [9601], "jmdekker.it": [20542], "www.thefrozenfire.com": [16602], "s.willo.ws": [2053], "1838.co": [2053], "alfresco.ual.es": [17361], "gl.ch": [21629], "idaim.fr": [2053], "flab.be": [2053], "www.keenot.es": [8990], "www.vt.edu": [18031], "bitterman.me": [2053], "walthamforest.gov.uk": [18262], "www.ldpreload.com": [9342], "s.sjks.us": [2053], "www.smileexperts.osu.edu": [11959], "vmedar.tk": [2053], "itunes.apple.com": [1160], "ssca.pe": [2053], "www.cleanenergyexperts.com": [3283], "*.necuhb.org": [11322], "a--t.co": [2053], "proj-lti.web.cern.ch": [2632], "5222t.net": [2053], "i.tad.im": [2053], "explainxkcd.com": [5617], "c.egeka.nl": [2053], "s.vinals.me": [2053], "y1ne.ws": [2053], "www.srv2020real.com": [21551], "bk101.net": [2053], "leaptp.tk": [2053], "bmc.co": [2053], "factory.pixiv.net": [12960], "www.guidestar.org": [7135], "www.mozdev.org": [10836], "online3.drweb.com": [4879], "naper.cc": [2053], "fandango.com": [5766], "brmlab.cz": [2399], "l.rfsk.org.uk": [2053], "gyazo.com": [7165], "abo.tagesanzeiger.ch": [16163], "pue.zus.pl": [19080], "laser.unizar.es": [17643], "amnistia.org.mx": [1015], "rspcansw.org": [2053], "b.alethos.com": [2053], "*.sharpspring.com": [14928], "observatory.leeds.gov.uk": [20653], "blog.tape.tv": [16210], "*.blog.alwaysdata.com": [938], "www.digiguide.tv": [19918], "na.decdna.net": [4359], "rd.gt": [2053], "pic-google.com": [2053], "www.shareasale.com": [14906], "tokyotosho.se": [16809], "internet.mfpo.cuhk.edu.hk": [2747], "www.glot.io": [20255], "university.nginx.com": [20906], "hofstra.edu": [7588], "i.diarioip.com": [2053], "chibas.co": [2053], "rufus.li": [2053], "www.cbfisap.ed.gov": [4988], "clkk.me": [2053], "l.frumyk.me": [2053], "images.hostels.com": [18339], "www.cines.fr": [2666], "trevo.us": [2053], "pay.waverly.gov.uk": [21984], "cmtele.com": [2053], "mod.life": [20815], "wuzhong.meituan.com": [10405], "shop.newsmax.com": [11534], "horns.by": [2053], "www.meetme.com": [10378], "22t.be": [2053], "siz.ch": [21464], "petit.link": [2053], "www.kapital.kz": [20576], "www.open.hpi.de": [7225], "secure.asufoundation.org": [1231], "image-assets.stackcommerce.com": [15613], "edu.tiki.org": [16715], "go.labproy.com": [2053], "rbopl.nl": [2053], "www.openfarmgame.com": [12208], "www.findlegalforms.com": [5953], "joykazino.com": [20552], "iqt.org": [8174], "q.irhh.de": [2053], "u.techware.me": [2053], "grtlink.com": [2053], "elt2.co.uk": [2053], "www.escrowlive.net": [5460], "www.christ-swiss.ch": [3712], "delivery.support.theplatform.com": [16496], "mapquestapi.com": [10134], "sccsheriff.org": [14579], "swordfishdc.com": [15959], "l.scalepods.io": [2053], "images.wondershare.com": [22044], "kf-x.com": [2053], "worldlandscapearchitect.com": [18757], "a.ezero.mx": [2053], "blogs.msdn.com": [10543], "go.jreb.me": [2053], "*.ea.com": [5253], "iotmed.us": [2053], "uk.usembassy.gov": [21879], "red.ht": [2053], "cfaith.us": [2053], "*.hrcdn.net": [7274], "news.google.co.*": [6965], "luckymarmot.com": [9814], "s109.cnzz.com": [3391], "planapp.tue.nl": [16129], "fla-men.co": [2053], "www.simlystore.com": [15058], "nwf.org": [11277], "careers.lloydsbankinggroup.com": [20704], "www.seravo.fi": [14839], "help.vodafone.co.nz": [18105], "catsbway.co": [2053], "bb.rakboy.com": [2053], "www.akismet.com": [805], "ianmart.in": [2053], "static.weibopay.com": [21998], "www.highseer.com": [7543], "thereit.is": [2053], "osvdb.org": [11876], "diasporabr.com.br": [4530], "yoyogames.com": [22117], "recrw.pl": [2053], "nginx.nieman.de": [20911], "*.lokus.se": [9729], "openlinksys.info": [12147], "developer.mediamath.com": [10323], "weixin110.qq.com": [13514], "propertydeals.com.pk": [13386], "fisync.dwolla.com": [4913], "pnp.ru": [21155], "go.roszczyk.net": [2053], "buildd.debian.org": [4353], "www.ethics.uillinois.edu": [17238], "mathematics.stanford.edu": [15636], "pan.baidu.com": [1661], "thephone.coop": [16614], "vendetta-online.com": [17896], "go.win32.io": [2053], "www.icmag.*": [2867], "dcult.net": [2053], "www.filmon.com": [5927], "tinder.pt": [2053], "powerlane.co": [2053], "opal.com.au": [12103], "www.lead-analytics-1000.com": [20647], "ox-i.overdrive.com": [12365], "crux.bz": [2053], "www.bitaddress.org": [2003], "spanish.ecuador.usembassy.gov": [21879], "aphrodite.krystal.co.uk": [9175], "www.hazing.cornell.edu": [3744], "support.contentful.com": [3680], "nikcub.com": [11593], "onenet.vodafone.pt": [18109], "gnome.org": [6471], "mbr.nlm.nih.gov": [11241], "fxphd.com": [6407], "publish.indymedia.org": [8234], "kb8ojh.net": [8981], "mais.uol.com.br": [17276], "www.brighttalk.com": [2377], "dornsifecms.usc.edu": [17564], "s.beij.in": [2053], "cdn.photosynth.net": [12861], "myus.com": [10984], "www.kiwicon.org": [9080], "anwiki.com": [19398], "cdn3.sportxx.ch": [15543], "directory.fedoraproject.org": [5845], "mashape.com": [10208], "www.movelia.es": [10820], "e-filatelia.poste.it": [13192], "www.pokemon-world-online.net": [13080], "dengisend.ru": [4440], "www.rms.sexy": [14148], "www.sipsolutions.net": [14362], "purple.cm": [2053], "mrsl.co": [2053], "fed.cafe": [2053], "radi.co": [2053], "www.podupti.me": [13063], "artsci.inl.gov": [20462], "ince.co": [2053], "act-on.com": [19268], "gzero.tv": [2053], "adeccowaytowork.com": [620], "cod.worldcat.org": [18748], "mediate.com": [10350], "gifttool.com": [6761], "www.virtualqube.com": [18041], "cdn.bayan.ir": [1751], "www.scrambl3.com": [14645], "imja.me": [2053], "r.nirs.us": [2053], "strava.com": [15769], "esdal.dft.gov.uk": [19908], "www.hastrk1.com": [7367], "ftp.openmandriva.org": [12153], "pear.oops.org": [12096], "st.jakuta.biz": [2053], "wed.is": [18471], "catholicstudies.georgetown.edu": [6668], "www.jobzonen.dk": [8753], "partnerlocator.symantec.com": [15969], "nrrr.us": [2053], "www.adcap.biz": [558], "community.conviva.com": [3698], "prisonphonejustice.org": [13304], "zohocorp.com": [19203], "knry.us": [2053], "www.starrez.com": [15646], "refugees.jp": [2053], "files.list.co.uk": [16464], "a2.lc": [2053], "www.pirate-proxy.info": [21709], "diegocm.com": [2053], "docs.duckduckhack.com": [19966], "www.in-tend.co.uk": [20448], "ftom.co": [2053], "*.psychologicalscience.org": [1331], "www.calazan.com": [2792], "platform.vine.co": [18014], "fwre.co": [2053], "mietek.io": [10559], "zd.net": [2053], "cdn.cdtoimge.com": [3993], "123p3.sogoucdn.com": [15351], "a.domai.nr": [2053], "shopmania.es": [14962], "pheedo.com": [12830], "prov.ly": [2053], "kvalitet.difi.no": [4547], "goooo.cf": [2053], "www.transactauto.com": [16936], "lithive.com": [9615], "posta.ch": [13176], "www.amazon.cn": [19363], "stats.webplatform.org": [18376], "wmd.so": [2053], "hnds.hk": [2053], "www.fluxx.io": [6075], "lab.to": [2053], "www.geekdad.com": [20214], "redgage.me": [2053], "secure.gq.com": [6496], "on.ifgf.to": [2053], "ote.gr": [12336], "*.alz.org": [941], "lasvegas.hertzequip.com": [7511], "www.egotasticallstars.com": [5216], "www.eatsa.com": [19999], "fmworld.net": [6362], "img2.gtimg.com": [7121], "kikomila.no": [2053], "saud.ws": [2053], "scr.bi": [2053], "vand.so": [2053], "www.portlandoregon.gov": [3254], "gsx.apple.com": [1160], "ecops.org.uk": [20005], "www.mdosche.de": [10296], "korny.me": [2053], "www.macports.org": [9986], "www.thecreatorsproject.com": [16529], "careers.asa.org.uk": [19427], "m6.baidu.com": [1661], "psynrgy.us": [2053], "rdv.im": [2053], "statewatch.org": [15677], "l.pets-wd.com": [2053], "vine.co": [18014], "moldova.usembassy.gov": [21879], "join.boozedgfs.com": [13266], "gaborszathmari.me": [6519], "*.hrusecky.net": [10522], "www.dom.bg": [4735], "reporo.com": [14015], "visa.com": [18052], "www.thebuddyforum.com": [2284], "there.al": [2053], "archive.wired.com": [18664], "hertz247.is": [7488], "ib.swedbank.nl": [15935], "www.net.cn": [20891], "bfps.co": [2053], "crowdflare.it": [2053], "wikis.mit.edu": [9916], "*.atrativa.com.br": [1367], "lynda.georgetown.edu": [6668], "srmn.co": [2053], "www.blocket.com": [2146], "www.vocab.com": [21937], "bme.hu": [1570], "www.osdir.com": [11867], "admissions.rotherham.gov.uk": [14212], "binsearch.net": [1942], "whi.ch": [2053], "www.magicalbutter.com.au": [10024], "discovery.refeds.org": [13646], "webdesk.1and1.com": [61], "*.alumniconnections.com": [937], "paxum.com": [21086], "dmnd.ga": [2053], "hvb.de": [7795], "gpg4usb.cpunk.de": [3815], "seba-geek.de": [15378], "yc.meituan.com": [10405], "www.zerocater.com": [19157], "studentaffairs.stanford.edu": [15635], "qcvert.com": [2053], "www.verdadmedia.com": [17910], "info.ebayclassifieds.com": [20000], "trusted-introducer.org": [17061], "noevil.co": [2053], "store.globalresearch.ca": [6854], "www.checkbox.com": [19693], "blogs.nlnetlabs.nl": [11129], "david-campbell.org": [4301], "market.bigmir.net": [1919], "tlrd.us": [2053], "pcgns.tk": [2053], "mcp.anchor.com.au": [1032], "kenbuck.co": [2053], "rfq.alibaba.com": [850], "*.d4designstudios.com": [4073], "enrr.mx": [2053], "msds.ornl.gov": [11892], "blog.kaspersky.com": [8958], "msds.open.ac.uk": [12184], "sorry.google.com": [6974], "imba.illinois.edu": [17544], "klm.com": [8889], "www.webforest.eu": [18398], "rbinvestwdc.eu": [13635], "efsm.bristol.gov.uk": [19592], "kinox.nu": [20597], "akamai.kaltura.com": [8927], "konto.t-mobilebankowe.pl": [21643], "doza.it": [2053], "media.ldscdn.org": [16485], "www.societyforscience.org": [15328], "hertz247.ie": [7490], "6joycasino.com": [20552], "js.intercomcdn.com": [8393], "*.ede-look.org": [21007], "s3g.info": [2053], "itella.fi": [20509], "gohugo.io": [20265], "uclearning.ucsd.edu": [17216], "www.3taps.com": [165], "kxan.tv": [2053], "achin.gr": [2053], "ep2.vzp.cz": [17816], "ssp.life": [2053], "splash.riverbed.com": [14140], "exportingisgreat.gov.uk": [20080], "www.defenceandsecurity.ca": [2570], "g.marcgarcia.es": [2053], "ddfly.co": [2053], "campuslabs.com": [2845], "static.lpgenerator.ru": [20718], "howsecureismypassword.net": [7715], "klips.ch": [2053], "trk.names.co.uk": [11214], "bram.se": [2053], "cchcatalog.com": [2606], "csl.stanford.edu": [15634], "ha.meituan.com": [10405], "play.yandex.com.tr": [18954], "international.berkeley.edu": [17526], "m.anda.li": [2053], "4sun.es": [2053], "pdl8.co": [2053], "m.mutualofamerica.com": [10921], "healthtap.com": [7395], "cdn.print.io": [13292], "catalog.yuga.ru": [22121], "source-elements.com": [15417], "ldlw.me": [2053], "lmes.es": [2053], "ch.avm.de": [1493], "on.mlmbe.at": [2053], "go.mbasra.com": [2053], "reseller.ssl.com": [14413], "s04.de": [2053], "erickra.us": [2053], "accgov.com": [2053], "psiphon.ca": [21221], "dnvgl.link": [2053], "www.alumni.nottingham.ac.uk": [11726], "s.bsd.net": [1584], "3ds.vtb24.ru": [21961], "chat.adults.men": [2053], "ece.illinois.edu": [17544], "answers.com": [1100], "s.byeto.jp": [2053], "st.dcm-ich.jp": [2053], "piratetavern.net": [21709], "dmak.us": [2053], "s.aug.tw": [2053], "connect.brunel.ac.uk": [19599], "lippu.fi": [9600], "errors.ubuntu.com": [17382], "www.chromium.org": [3179], "www.umich.edu": [17552], "login.hdvlink.com": [20328], "static.itunes.apple.com": [1160], "lnk.dudas.in": [2053], "theapex.link": [2053], "www.aaai.org": [426], "veloviewer.com": [17891], "sends.ms": [2053], "roye.la": [2053], "big12.us": [2053], "www.tribalfusion.com": [17001], "somo.nu": [2053], "ja.foursquare.com": [6200], "www.splone.com": [15535], "s11.postimg.org": [13203], "mog.com": [9939], "langzijn.com": [2053], "sinsun.it": [2053], "oktd.kent.gov.uk": [9005], "support.maxcdn.com": [10256], "api.microsofttranslator.com": [10549], "go.r0x.fr": [2053], "www.bigfile.to": [19530], "rickb.ws": [2053], "chp.decc.gov.uk": [19885], "*.brightcove.com": [2382], "l.swissrail.com": [2053], "turisticke-znamky.cz": [21815], "data.alibaba.com": [850], "www.orderstatus.earthlink.net": [5106], "nrc-cnrc.gc.ca": [11247], "www.nelhage.com": [11093], "secure.stage-gettyimages.es": [6741], "www.nydailynews.com": [11179], "duno.co": [2053], "www.hackademix.net": [7271], "employeeexpress.gov": [5319], "stats.ft.com": [5941], "1prime.ru": [73], "s4.qhimg.com": [13531], "jffc.us": [2053], "turn.appear.in": [1153], "lnk.demb.com": [2053], "pcoa.ch": [2053], "alojamiento.unizar.es": [17643], "static.leboncoin.fr": [20650], "bny.mn": [2053], "analytics.yandex.by": [18953], "b.ptrlvn.us": [2053], "fotp.in": [2053], "www.get.no": [20229], "weechat.org": [18472], "logs1.smithsonian.museum": [15254], "rxpharmacyusa.com": [14289], "grant.expo2020dubai.ae": [5622], "www.palmcoastdata.com": [12549], "r.fpsnews.net": [2053], "acm.wustl.edu": [18290], "stat.openbank.ru": [21008], "*.vdownloader.com": [17771], "affiliate.abftracker.com": [454], "ondemand.duke.edu": [4894], "newmysky.sky.com": [15170], "editorialmanager.com": [5188], "nizhniy-novgorod.beeline.ru": [1801], "www.mobiusconsortium.org": [9935], "odmate.kr": [2053], "c.haq.de": [2053], "europeana.eu": [20070], "www.superguarantee.com": [15868], "gic7.mycdn.me": [11014], "sdcoop.jd.com": [8571], "*.yellowpages.ca": [18976], "www.minedu.sk": [15217], "innv.at": [2053], "hongkongfp.com": [20358], "s0.pimg.tw": [12890], "elliptictech.com": [5274], "acm.org": [299, 300], "p.tharroshk.com": [2053], "quickline.ch": [21243], "stillres.olympic.org": [20988], "gnat.me": [2053], "uprise.link": [2053], "rca.buzz": [2053], "nue.ag": [2053], "buyric.co": [2053], "flameeyes.eu": [6015], "sbx.cm": [2053], "go.qbeats.com": [2053], "42h.it": [2053], "*.avangate.com": [1479], "alexb.be": [2053], "haas.org": [2053], "www.laaclu.org": [287], "lojasadelia.co": [2053], "youtube.com.es": [19016], "cm.be": [3169], "tsqr.co": [2053], "portforward.com": [13158], "shared.gmocloud.com": [6460], "www.countermail.com": [3773], "url.jwzhang.com": [2053], "p.vanroeijen.nl": [2053], "pingdom.com": [12902], "farsi.alarabiya.net": [19336], "so-by.com": [2053], "stvp.stanford.edu": [15635], "youtube.com.ee": [19016], "kwiksurveys.com": [9202], "youtube.com.eg": [19016], "weheartit.com": [18314], "bcs.91.com": [237], "www.strasweb.fr": [15763], "opensource.cse.ohio-state.edu": [11960], "mail.sumologic.com": [15848], "chenzhou.meituan.com": [10405], "facilities.ucsd.edu": [17216], "www.salesmedia.pl": [21361], "iice.co": [2053], "dg53.mycdn.me": [11014], "tnl.su": [2053], "ju.st": [2053], "appsconnect.oracle.com": [12284], "payments.camden.gov.uk": [2830], "b3.aztravel.xyz": [2053], "publicaccess.chichester.gov.uk": [19703], "fastweb.com": [5805], "s.itoen.co.jp": [2053], "srvt.co": [2053], "www.sbc.empireblue.com": [20033], "agent.mcafee.com": [10282], "portal.distil.it": [4658], "returnpath.net": [14067], "secure.lesbianpornfan.com": [20662], "www.youtube.sn": [19016], "www.pijnacker-nootdorp.nl": [11324], "pims.dongenergy.dk": [4151], "www.dearfcc.org": [4342], "ultrabug.fr": [17420], "www.judicialwatch.org": [8814], "develop.thegreatcoursesplus.com": [16550], "brgdf.co": [2053], "ech.pub": [2053], "oem.why-opencomputing.com": [22021], "securosis.com": [14778], "webtrends.com": [18467], "whatimg.com": [18531], "t.bwrs.co": [2053], "et.nytimes.com": [11189], "info64.top": [2053], "prelove.ly": [2053], "www.noncombatant.org": [11662], "testweb.derby.gov.uk": [4460], "www.eigenlab.org": [20020], "*.berlin-airport.de": [1842], "masak.in": [2053], "prsup.io": [2053], "peremena.openbank.ru": [21008], "lists.volatilesystems.com": [18118], "aaau.org": [19253], "lrnja.net": [2053], "*.akcje.home.pl": [7610], "webcontrolcenter.com": [18410], "everysi.de": [2053], "secure.kettering.gov.uk": [9015], "bearded.link": [2053], "app.status.io": [21569], "search.1and1.com": [61], "my.covad.com": [3794], "msu.edu": [20844], "clarity.link": [2053], "wiki.emfcamp.org": [20032], "trf.fit": [2053], "media.mobyhub.com": [10693], "w01.my-files.de": [10931], "www.pop6.com": [13128], "*.tweakimg.net": [17143], "gds.bz": [2053], "hugoc.at": [2053], "logo.ui-portal.de": [17230], "lab.lugons.org": [9262], "videoassets.porndig.com": [21173], "phin.in": [2053], "www.zdv.uni-tuebingen.de": [17631], "testobb.ppby.de": [12923], "ws.vtc.sim-technik.de": [15050], "init.sh": [20459], "rcm.amazon.com": [952], "on.mylesnm.com": [2053], "gateway.lsc.gov.uk": [20720], "participer.framasoft.org": [6214], "coralsprin.gs": [2053], "kobo.to": [2053], "pinz.co": [2053], "bit.ccswim.net": [2053], "qres.me": [2053], "ly.hr-d.in": [2053], "bpfr.at": [2053], "www10.informe.org": [8265], "www.sportisimo.cz": [14396], "marketplace.zanox.com": [19102], "fxperts.ca": [2053], "www.ebankingabersicher.ch": [4969], "www.bananian.org": [1680], "redsk.in": [2053], "easy-hebergement.fr": [5134], "pr.computerworld.ch": [3606], "www.intelnews.org": [20474], "wi-fi.org": [18569], "groups.ic.nhs.uk": [11102], "cp.maxcdn.com": [10256], "*.wikimedia.org": [18595], "www.cbcrypt.org": [2580], "pacev.co": [2053], "images0.cnblogs.com": [19743], "journalistforbundet.dk": [8797], "hlab.co": [2053], "passets-ak.pinterest.com": [12914], "koba.lt": [2053], "danvr.1688.com": [44], "data.gov.au": [4259], "forum.linode.com": [9547], "cyber.law.harvard.edu": [7351], "*.ul.ie": [17257], "pirates-forum.org": [16493], "www.hydrogen.energy.gov": [5355], "nileshgr.com": [11600], "srlnk.co": [2053], "filmaffinity.com": [20113], "cfr.org": [3770], "ejecteject.com": [2053], "viddler.com": [17975], "blakec.me": [2053], "surveys.cardiff.ac.uk": [2895], "oculu.com": [11919], "solicitor-concierge.com": [15365], "saat.yandex.com.tr": [18954], "business.verizon.net": [21906], "plntxprs.com": [2053], "www.whitelabel.net": [18553], "onstp.net": [2053], "deepl.ink": [2053], "monoclem.ag": [2053], "torproject.org": [16847], "yka.be": [2053], "blog.0xbadc0de.be": [10], "nhn.com": [11098], "*.vxcdn.com": [17917], "opr.as": [2053], "qwi.ki": [2053], "zlin.idnes.cz": [20425], "go.ryanjose.com": [2053], "n4.chaucanh.net": [2053], "www.technomedia.com": [16299], "*.chitika.com": [3151], "www.ucl.ac.uk": [17581], "w4j.net": [2053], "support.vodafone.ie": [18108], "jpberlin.de": [8593], "www.medialayer.com": [10321], "www.skhynix.com": [14367], "cme.mitre.org": [10649], "as-sec.casalemedia.com": [2929], "tgilinks.com": [2053], "support.imodules.com": [7909], "cutesoft.net": [19841], "ntp.niehs.nih.gov": [11241], "assets.wwf.ch": [22060], "biotronicslab.osu.edu": [11959], "mastercard.com": [10216], "medicalxpress.com": [10354], "s.cfbolz.de": [2053], "svnweb.mageia.org": [10014], "javascriptkicks.com": [8675], "*.sandsmedia.com": [14448], "wifiwx.com": [18584], "gfx.fel.one": [2053], "fishshell.com": [5998], "partner.tageswoche.ch": [16162], "lists.manjaro.org": [10121], "www.maam.ru": [20734], "www.jenkins-ci.org": [8700], "teachstart.co": [2053], "shop.fsf.org": [5713], "*.hrep.nhmrc.gov.au": [7750], "zw1.co": [2053], "cache0.bigcartel.com": [1903], "www.meteorhacks.com": [10492], "www.decc.gov.uk": [19885], "manage.sencha.com": [14820], "fatpacket.me": [2053], "www.mturk.com": [9970], "activities.aliexpress.com": [19343], "trlov.com": [2053], "aplikace.skolaonline.cz": [21471], "on.digy.co": [2053], "www.anon-ib.net": [1078], "rmbl.co": [2053], "www.logancij.com": [9714], "thnk.cc": [2053], "koste.es": [2053], "rdpt.ga": [2053], "strato-mailcenter.com": [14429], "www.gaminatorslots.com": [6564], "www.gatewaytohomechoice.org.uk": [20205], "openarchives.org": [12198], "www.performancealley.com": [12781], "919.am": [2053], "www.directbox.at": [4613], "www.smart.ly": [15231], "secure.longtailvideo.com": [9752], "jenkins.x2go.org": [18800], "www.alumni.state.gov": [17345], "www.pay4bugs.com": [12677], "hmnds.io": [2053], "www.platinumskincare.com": [13008], "open.t.qq.com": [13514], "vxm.cc": [2053], "api.fixer.io": [6012], "eeeeeats.it": [2053], "vxm.co": [2053], "wn1.link": [2053], "www.slidedeck.com": [15205], "share.here.com": [7465], "webmail.hispeed.ch": [21865], "idsync.rlcdn.com": [13668], "netmediaeurope.co.uk": [11390], "srvl.co": [2053], "tosdr.org": [16794], "murf.co": [2053], "*.image-qoo10.cn": [13537], "parago.ehosts.net": [5220], "s.drawncon.com": [2053], "holoscripter.org": [7603], "socialnews.rakuten.co.jp": [13768], "www.teapartypatriots.org": [16247], "bynumlaw.net": [2543], "thepiratebay.gl": [21710], "www.snapnames.com": [9018], "thepiratebay.gs": [21710], "blog.pressdisplay.com": [2185], "tygr.me": [2053], "i.kissmetrics.com": [8880], "www.hertzrent2buy.fr": [7484], "paymium.com": [12691], "smarthead.ru": [21480], "music.ohiolink.edu": [11961], "tcare.co": [2053], "*.opc.gov.au": [11948], "b4tc.us": [2053], "blogs.halowaypoint.com": [7307], "ox4.li": [21051], "www.zoho.com": [19202], "partnerdirect.dell.com": [4413], "agenpremium.com": [19319], "www.gpfi.org": [6487], "www.mixi.co.jp": [10657], "noip.co": [2053], "alternativeto-blog.disqus.com": [4656], "yourworld.anz.com": [355], "jobs.zentralbahn.ch": [22131], "unesco-ihe.worldcat.org": [18748], "2.poppap.com": [2053], "npa4.me": [2053], "images.yemeksepetim.com": [18980], "raphaelhertzog.com": [13787], "linkbucks.com": [9537], "pccasegear.com": [12426], "secure2.segpay.com": [14800], "www.sslshopper.com": [14418], "nigeria.usembassy.gov": [21879], "ripe71.ripe.net": [14128], "municode.com": [10893], "dykesa.me": [2053], "savegaelic.com": [2053], "askubuntu.com": [15611], "www.tokyo2020.jp": [21754], "puush.me": [13488], "www.database.com": [4272], "crate.us": [2053], "go.r33d.me": [2053], "mxys.tk": [2053], "frtv.eu": [2053], "www.earthlink.net": [5106], "static.btcc.com": [2438], "www.click-sec.com": [3300], "*.cc.com": [2590], "cdn1.evernote.com": [5556], "go.isummary.nl": [2053], "uneasy.in": [2053], "feed.issuu.com": [8526], "www.ordercourses.com": [2998], "prmtiv.es": [2053], "www.hsbc.com.bd": [20377], "b96.yahoo.co.jp": [18944], "schl.asia": [2053], "movie4k.pe": [10824], "www-ne.ucsd.edu": [17216], "blog.spideroak.com": [15520], "opendata.bristol.gov.uk": [19592], "blog.vpsfree.cz": [21956], "jloving.info": [2053], "lcbo.me": [2053], "xenvps.com": [18860], "a.mefi.be": [2053], "itmb.in": [2053], "imp.pt.afl.rakuten.co.jp": [13768], "ttgt.co": [2053], "sochi.fbk.info": [5818], "jybd.co": [2053], "aquent.com": [1184], "on.elemb.ee": [2053], "*.justiceinspectorates.gov.uk": [3868], "belleclive.co": [2053], "1e3.us": [2053], "s5.addthis.com": [611], "verseone.vocoll.com": [21939], "www.consultwebs.com": [3661], "www.resiprocate.org": [13831], "accessweb.publish.uic.edu": [17517], "santoku-linux.com": [14532], "ghd.georgetown.edu": [6668], "mynewflag.com": [11497], "nibguy.uk": [2053], "ohpop.me": [2053], "www.waarschuwingsdienst.nl": [11324], "404ts.com": [2053], "atlas.centrum.cz": [19674], "gvnblk.com": [2053], "tcrl.engineering.osu.edu": [11959], "edge.ldscdn.org": [16485], "zht.alipay.com": [857], "isocpp.org": [7976], "to.ambrossa.ru": [2053], "api.dnschain.net": [4134], "branchable.com": [2330], "www.weedtraqr.com": [18475], "isidewith.com": [20414], "tapiture.com": [16212], "www.cryptoparty.org": [3955], "laup.nu": [9324], "hulaw.co": [2053], "lingshi.meituan.com": [10405], "flt1.us": [2053], "www.kd2.us": [8869], "s.tkool.info": [2053], "iceoblog.mit.edu": [9914], "netgate.com": [11424], "youwin.by": [2053], "www.videolicious.com": [17989], "certivox.com": [3027], "www.slant.co": [21474], "4.sisap.cat": [2053], "authcode.jd.com": [8570], "neos.io": [11348], "www.cimbclicks.com.sg": [2664], "www.bikeji.com": [1925], "click.aokhi.com": [2053], "neooffice.org": [11342], "auth.giantbomb.com": [6756], "www.help.perle.com": [12789], "platon.unizar.es": [17643], "link.mos.rocks": [2053], "pxlgfx.de": [2053], "www.jobsat.g4s.com": [20194], "petri.com": [12809], "cdn.travis-ci.com": [16976], "www.mito.hu": [10648], "go.grit.space": [2053], "www.threadingbuildingblocks.org": [16659], "publisher.weboolu.com": [18433], "fast.fonts.com": [6110], "www.yammer.com": [18952], "openingscience.org": [12235], "node3.bbcimg.co.uk": [19502], "ilha.es": [2053], "help.juno.com": [8835], "secregen.unizar.es": [17643], "www.catooh.com": [2966], "a4.websitealive.com": [18445], "m-wa.re": [2053], "www.acluva.org": [292], "tylrgt.rs": [2053], "md.taobao.com": [16206], "lehosit.net": [2053], "webmail.ameslab.gov": [19384], "gonewsoft.com": [6906], "francisc.us": [2053], "www.gdata.it": [6410], "bcaa.com": [1543], "code.berkeley.edu": [17526], "1.milfrases.org": [2053], "bugzilla.mplayerhq.hu": [9949], "bookonline.saudiairlines.com": [14544], "informer.onl": [2053], "neow.in": [2053], "beta.disk.yandex.com.tr": [18954], "info.woolyss.com": [18724], "s.outvia.cz": [2053], "careers.insidehighered.com": [8313], "ughk.co": [2053], "derpiboo.ru": [4461], "bbs.boxun.com": [19581], "sealinfo.verisign.com": [17915], "user.lucidmedia.com": [9807], "api.allmyvideos.net": [897], "domain.fi": [4740], "www.brightcontext.com": [2373], "dsny.com.au": [2053], "*.yottaa.com": [19009], "www.publichealth.wustl.edu": [18290], "*.networktimefoundation.org": [11463], "amito.tk": [2053], "www.yoursav.net": [19046], "zmgy.me": [2053], "kwls.in": [2053], "khabarovsk.beeline.ru": [1801], "help.runbox.com": [14274], "www.m2fjob.com": [9861], "secure.dundeecity.gov.uk": [4897], "americanfreedom.com": [980], "hackerschool.com": [7279], "sung.co": [2053], "bchbody.life": [2053], "b.globe.com": [2053], "blog.pushbullet.com": [13480], "compass.hdvlink.com": [20328], "test.metooo.io": [10495], "w0uter.nl": [2053], "l.liion.mx": [2053], "baby.360.cn": [130], "www.worldcommunitygrid.org": [18749], "blinkeye.ch": [2130], "css.x-cart.com": [18794], "viziciti.es": [2053], "blog.kryptnostic.com": [9169], "www.manyvids.com": [10131], "strategypage.com": [21585], "pages.endgame.com": [20038], "neocto.org": [2053], "eapp.us": [2053], "i.w55c.net": [18187], "open-groupe.nl": [21004], "nexus.od.nih.gov": [11241], "oeffentliche-it.de": [11928], "mobielbreedband.ziggozakelijk.nl": [19180], "*.sarenza.net": [14539], "papp.ca": [2053], "t4s.co": [2053], "www.tinkerforge.com": [16747], "eazyprint.uk": [2053], "www.unsw.edu.au": [17273], "dalia.click": [2053], "a.cavbk.ca": [2053], "rd.geekwind.net": [2053], "becker.wustl.edu": [18290], "websurveys.govmetric.com": [6993], "*.aweber-static.com": [417], "www.uni-heidelberg.de": [17459], "guitar.co.uk": [10452], "g.denik.cz": [4443], "www.cjfe.org": [2675], "www.tjournal.ru": [16780], "www.satoshidice.com": [14540], "images.amazon.com": [954], "www.lloydstsb-offshore.com": [9685], "www.icanhazip.com": [8053], "search.roblox.com": [14156], "cutedigi.com": [4016], "filologiainglesa.unizar.es": [17643], "zuf.cz": [2053], "www.gneis.bankinter.com": [1694], "screenshots.debian.net": [4351], "nghttp2.org": [11566], "source.ind.ie": [8197], "banyen.com": [1706], "browser.export.yandex.com": [18956], "wisedu.ca": [2053], "support.devzing.com": [4499], "search.amd.com": [962], "o.wowtrk.com": [2053], "developer.conviva.com": [3698], "pilot.ethernetportal.equinix.com": [5438], "www.tifpa.infn.it": [7913], "super.fanli.com": [5769], "metrics.extremetech.com": [5642], "u-mich.me": [2053], "nlyo.mx": [2053], "extensiblewebmanifesto.org": [5631], "hb.meituan.com": [10405], "vimal.mobi": [2053], "www.aits.uillinois.edu": [17238], "leisurecourses.derby.gov.uk": [4460], "auth.quakenet.org": [13556], "nctrn.co": [2053], "*.redbulls.com": [13900], "succeed.eloqua.com": [5281], "mobilism.org": [20814], "echoplex.us": [5148], "devfac.to": [2053], "riskware.sydney.edu.au": [21631], "bnptr.sk": [2053], "www98.verizon.com": [17918], "www.abuse.vutbr.cz": [17814], "dsc.fyi": [2053], "www.ntvspor.net": [11163], "*.collegehumor.com": [3490], "lachie.me": [2053], "bt.meituan.com": [10405], "portrait2.sinaimg.cn": [15091], "on.titans.space": [2053], "www.yourvideohost.com": [19040], "otumm.com": [12340], "shredded-n.fit": [2053], "ijustyn.xyz": [2053], "www.westlaw.com": [18514], "www.cqrollcall.com": [2712], "hmrl.es": [2053], "artof.co": [2053], "pancast.it": [2053], "jstsh.me": [2053], "my.okhi.co": [2053], "www.bpb.de": [19582], "licensingregisters.southlanarkshire.gov.uk": [15439], "www.spaceup.org": [15456], "cpro.baidu.com": [1661], "openstat.net": [12174], "cryptosanta.xyz": [3939], "www.hostican.com": [7668], "crap.at": [2053], "d4k.us": [2053], "s.zimcar.kr": [2053], "www.ovh.us": [11885], "www.jandan.net": [8655], "symb.co": [2053], "fitstudio.com": [6003], "sslstatic.wix.com": [18684], "self.maidstone.gov.uk": [10035], "img3.tv4cdn.se": [16137], "www.cefas.co.uk": [2988], "bude.co": [2053], "www.godoc.org": [6900], "l.db6edr.de": [2053], "*.spatialbuzz.com": [15480], "sc1.checkpoint.com": [3106], "cockpit.swisscom.ch": [15951], "twidex.com": [2053], "points.houseoffraser.co.uk": [7709], "go.joewang.net": [2053], "www.getasgard.com": [6706], "www.mitmproxy.org": [10647], "cdn.codementor.io": [3432], "link.boca.pro": [2053], "raconte-moi.abuledu.org": [19258], "flashtalking.net": [6021], "www.whitehathouston.com": [18552], "xinyu.meituan.com": [10405], "www.chrismatic.io": [3168], "betterbills.com": [1877], "pay.alfabank.ru": [842], "www.baylibre.com": [1748], "stwmd.ws": [2053], "*.pornbb.org": [21172], "www.aaau.org": [19253], "seeks-project.info": [14798], "zangki.cf": [2053], "mushnet.works": [2053], "jguitar.com": [8581], "secure.comic-con.org": [3530], "corset.tips": [2053], "smirne.de": [2053], "cdn1.pravobraz.ru": [21189], "bro.lv": [2053], "www.gelgif.ulaval.ca": [17515], "changdu.meituan.com": [10405], "s.daspixl.com": [2053], "i.jay.ph": [2053], "lionelba.com": [2053], "store.2600.com": [98], "wimp.no": [18573], "vubranch.com": [2053], "dotfully.co": [2053], "fbg.desidees.eu": [2053], "lljj.us": [2053], "nite.mobi": [2053], "shop.mheducation.com": [20790], "mindtools.com": [10598], "secure.sipgate.de": [15104], "haskell.org": [7361], "www.gamefly.co.uk": [6537], "client.fitbit.com": [6002], "user47.link": [2053], "help.switch.ch": [15952], "fdm.co": [2053], "cinplx.co": [2053], "*.luxsci.com": [9840], "leafne.ws": [2053], "www.fvap.gov": [20191], "2.zkc.idv.tw": [2053], "www.onorobot.org": [11849], "lynda.com": [9847], "marketing.extensis.com": [5633], "synapsepay.com": [21634], "n.wawolfpac.org": [2053], "spangle.us": [2053], "loopt.com": [9771], "vrs.legal": [2053], "www.joycasino7.com": [20552], "ritter.vg": [14137], "www.nubits.com": [11759], "trueachievements.com": [17047], "myid.cz": [2053], "ngvpn16.nvidia.com": [11174], "on.kttc.com": [2053], "monkey.collabora.co.uk": [3480], "mdst.in": [2053], "www.bitfinex.com": [2045], "soetke.es": [2053], "shawn.io": [2053], "u.den.my": [2053], "kc.mcafee.com": [10282], "sites.stanford.edu": [15635], "piwik.ei.rub.de": [13712], "halfton.es": [2053], "it.support.tomtom.com": [16812], "www.pyeongchang2018.org": [21229], "sexnarod.ru": [14883], "i.oozo.tv": [2053], "e.newsela.com": [20901], "privatesearch.io": [13332], "darcitalks.tips": [2053], "scounter.rt.com": [13702], "t3b.eu": [2053], "ericn.us": [2053], "l.fsfe.org": [5714], "gorod.yandex.com": [18956], "artsn.ax": [2053], "leisure.northlincs.gov.uk": [20927], "help.zencoder.com": [19135], "forum.fairphone.com": [5749], "forever.btcc.com": [2438], "mobile.1und1.de": [82], "auis.worldcat.org": [18748], "sergiev-posad.beeline.ru": [1801], "global.taobao.com": [16206], "widgets.amazon.com": [952], "fit.edu": [6058], "www.goodline.info": [20269], "manage.sendmoneytoschool.com": [14822], "www.drafthouse.com": [813], "committees.williams.edu": [18616], "www.masspirgedfund.org": [9881], "g.adspeed.net": [580], "go.ajsb.co": [2053], "www.socialprogressimperative.org": [15313], "pressetreff.3sat.de": [162], "tiny.direct": [2053], "corporatedomains.com": [3751], "vol.com.br": [2053], "*.compasscard.ca": [3579], "opendesktop.org": [21006, 21007], "www.middelburg.nl": [11324], "sifomedia.idg.se": [7852], "ppb.cancer.gov": [2864], "ssl.zoomshare.com": [19223], "stopfasttrack.com": [15740], "marconet.co": [2053], "www.bilio.com": [1929], "files.poulsander.com": [5917], "rt1.map.gtimg.com": [7121], "portal.bolehvpn.net": [2241], "cr8.link": [2053], "admeld.com": [647], "helpdesk.leeds.ac.uk": [17604], "shoppbs.org": [12416], "home.console.aliyun.com": [861], "kg-link.com": [2053], "www.pirateproxybay.tech": [21709], "html5rocks.com": [7239], "blog.recurly.com": [13887], "learning.environment-agency.gov.uk": [20047], "tchfsh.tk": [2053], "klimaschutzpartner-berlin.de": [9084], "spryd.com": [2053], "cpaclick.com": [2053], "secure.ethicspoint.com": [5487], "myadv.us": [2053], "via.cf.sg": [2053], "l.myi.gg": [2053], "e-junkie.com": [4951], "ss.brighthub.com": [2380], "spike.newswhip.com": [11525], "www.online.net": [12069], "s.anaz.ae": [2053], "imagecurl.com": [20432], "1.f.ix.de": [8552], "git.thm.de": [16066], "www.york.edu": [19001], "iwys.co": [2053], "Sesamstrasse.de": [14873], "*.reportnhsfraud.nhs.uk": [11102], "pegasusdigital.de": [12029], "brin.me": [2053], "*.thedrum.com": [16536], "registerresnet.neu.edu": [11091], "pbase.com": [12418], "lastpass.com": [9316], "syd.is": [2053], "www.libdrc.org": [9452], "*.keepallthethings.com": [8992], "www.nationalexpress.jobs": [11239], "go.oclasrv.com": [20981], "init7.net": [8293], "www.savethelink.org": [14552], "kiks.yandex.kz": [18957], "omns.americanexpress.com": [972], "gr.pn": [2053], "f85.fr": [2053], "xoom.io": [2053], "chet.today": [2053], "pnradio.tk": [2053], "tv.mail.ru": [10040], "www.camtools.cam.ac.uk": [17529], "info.hubspot.com": [7739], "spanish.tags.literotica.com": [9628], "es.cloudflare.com": [3344], "mining.money": [2053], "link.nawbi.com": [2053], "realty.ya.ru": [18930], "3dcrt.co": [2053], "www.eiffel.com": [5224], "brshar.es": [2053], "www.duckduckgo.com": [4888], "millei.ro": [2053], "tas-nl.nl": [2053], "www.faithinmotion.com.au": [5750], "tfs.me": [2053], "www.tokobitcoin.com": [16806], "*.jabbr.net": [8619], "www.12joycasino.com": [20552], "brbll.org": [2053], "mispy.me": [10644], "izuna.xyz": [2053], "static.vimention.com": [18009], "dinside.no": [19925], "dolltasti.cc": [2053], "formsite.com": [20148], "copy.bz": [2053], "www-edge.empflix.com": [5315], "www.launchclasses.com": [9322], "play.pokemonshowdown.com": [13081], "sq1res.com": [2053], "gtgn.co": [2053], "u.choy.in": [2053], "blogs.fsfe.org": [5714], "direct.companieshouse.gov.uk": [3571], "agroba.se": [2053], "mograph.video": [2053], "www.yedxxx24hr.com": [18973], "tools.euroland.com": [5523], "winweb.desy.de": [4479], "www.cabinet-office.gov.uk": [2759], "prv-web.eng.buffalo.edu": [17583], "www.getpol.org": [6728], "*.kitchenriddles.com": [9073], "www.legolanddiscoverycentre.de": [9391], "controlpanel.active24.com": [19275], "ms.cpa-net.jp": [2053], "www.istanbulhs.org": [8528], "ps.ht": [2053], "foroempleo.uniovi.es": [17479], "ape.ag": [2053], "link.etz.io": [2053], "herrig.es": [2053], "www.hyd.gov.hk": [7207], "letstou.ch": [2053], "askrew.ca": [2053], "total.ac": [2053], "bnchd.me": [2053], "www.nku.gov.sk": [15217], "directdebit.rother.gov.uk": [14211], "proera.nyc": [2053], "skillschk.com": [2053], "simpe.co": [2053], "brasil.isidewith.com": [20414], "tongji.alicdn.com": [846], "b.collective-media.net": [3485], "autd.us": [2053], "ad.yieldmanager.com": [14114], "s.inmon.de": [2053], "p.hue.sk": [2053], "www.dotnetkicks.com": [19952], "co.plugz.me": [2053], "analytics.yacuna.com": [18934], "eb.my.msn.com": [9959], "athometech.co": [2053], "www.wiki.unbit.it": [17431], "www.googleadservices.com": [6978], "svnly.org": [2053], "garnet.openmandriva.org": [12153], "devforums.apple.com": [1160], "fls-eu.amazon.de": [19369], "www.ultrabug.fr": [17420], "zenmate.co.nz": [19133], "freezeray.co": [2053], "telecurso.tc": [2053], "nrc.gov": [17497], "www.tmview.europa.eu": [5526], "wusmhelp.wustl.edu": [18290], "att.mcafee.com": [10282], "cntnd.cc": [2053], "fhl.uk": [2053], "economy.com": [5163], "season.kde.org": [8871], "www.lolnet.org": [9731], "corp.houseoffraser.co.uk": [7709], "delto.ro": [2053], "srt.ivrm.nl": [2053], "parkingappeals.bristol.gov.uk": [19592], "cpe.mitre.org": [10649], "craftbee.rs": [2053], "netbank2.danskebank.dk": [4223], "www.bbcchildreninneed.co.uk": [1539], "next.novayagazeta.ru": [20936], "*.blogspot.kr": [2166], "cxholidays.com": [2963], "www.cyphertite.com": [4060], "dpreview.com": [4580], "*.starsearchcasting.com": [15650], "bmpr.ca": [2053], "planet.lugons.org": [9262], "rochesterhomepage.*": [14164], "qingyangguan.jd.com": [8571], "ly.pantry.biz": [2053], "ralphie.co": [2053], "hilfe.telekom.de": [4490], "zona.t-com.sk": [16346], "bugs.wireshark.org": [18670], "nag.bz": [2053], "*.ardour.org": [1213], "img.bizrate.com": [2086], "www.blesta.com": [2123], "dpmaster.deathmask.net": [4344], "www.thepiratebay.rs": [21709], "www.livelib.ru": [9671], "corkg.bz": [2053], "mindtouch.onelogin.com": [12035], "www.oit.umd.edu": [17549], "support.fluidhosting.com": [6068], "www.sparklit.com": [15472], "udmedia.de": [17225], "fndz.us": [2053], "www.gov.wales": [6987], "jvd.ink": [2053], "nationalgrid.com": [11270], "lists.eurobsdcon.org": [5509], "eletmodvaltok.aldi.hu": [338], "chinalaborwatch.org": [3141], "m.eaipop.com.br": [2053], "auth.yell.com": [22096], "gifbook.io": [6758], "ixia.cc": [2053], "patronbase.co.uk": [21082], "asset-b.soupcdn.com": [15416], "manheim.to": [2053], "www.parking.wustl.edu": [18290], "go.shore3.com": [2053], "www.zuhah.com": [19239], "www.rainforestqa.com": [13766], "mail.ign.com": [7877], "www.kuantokusta.pt": [9178], "viralt.ag": [2053], "hark.com": [7338], "start.rit.edu": [13667], "*.get.it": [6687], "scip.portsmouth.gov.uk": [21175], "www.solar-energy-installers.com": [15355], "embrwb.link": [2053], "www.kimonolabs.com": [9043], "scrapbookroyalty.org": [3069], "ybc.church": [2053], "jgb.bz": [2053], "onion.com": [2053], "on.inc.com": [2053], "das-elena-verfahren.de": [5021], "trvltrxs.nl": [2053], "app.com": [1279], "exmo.com": [5607], "community.virginmedia.com": [18028], "www.dshs.state.tx.us": [16412], "webforest.eu": [18398], "san.fo": [2053], "refs.in": [2053], "tpl.fm": [2053], "gtld.knet.cn": [8892], "panicbutton.io": [12567], "www.youtube.lt": [19016], "www.youtube.lv": [19016], "okturtles.com": [11972], "*.buzzdock.com": [2535], "e.ryancowan.com": [2053], "shivd.me": [2053], "meetinleeds.co.uk": [10377], "pacio.me": [2053], "www.intuitpayments.com": [8451], "socio.us": [2053], "bairdmounts.com": [19479], "simplyjes.us": [2053], "login.cern.ch": [2632], "whistleout.com.au": [18547], "*.vmware.com": [17786], "hivoice-ct.hivos.org": [7573], "www.southdowns.gov.uk": [21512], "bter.com": [2439], "serverfruit.com": [14859], "www.securepurchaseserver2.com": [14754], "perlentaucher.de": [12790], "*.gitorious.org": [6804], "cdn.ws.citrix.com": [3237], "www.dialdirect.co.uk": [4523], "neotelecom.ru": [20887], "www.join.me": [8765], "www.milanuncios.com": [10576], "ztbh.co": [2053], "units.wesnoth.org": [18500], "identitytheft.org.uk": [8087], "ads3.contentabc.com": [3678], "wsio.buttercoin.com": [2521], "www.coastalmicrosupply.com": [3399], "www.voicethread.com": [18115], "*.booking.com": [2255], "b2b.t-mobile.com": [16026], "c.xbox.com": [18850], "jcastro.mx": [2053], "baja-rally.com": [2053], "www.reliableisp.net": [13989], "iqa.104.com.tw": [18], "thirstpro.je": [2053], "on.mhm.ag": [2053], "gargoyle.uni.illinois.edu": [17544], "static.clickon.com.ar": [3308], "c-tree.com": [2053], "fzue.tk": [2053], "blog.srcclr.com": [15588], "pl.usembassy.gov": [21879], "wiki.parabolagnulinux.org": [12590], "go.razgibaj.se": [2053], "pilot.cndls.georgetown.edu": [6668], "www.medicaljane.com": [10355], "sr4.liveperson.net": [9654], "i.appinn.com": [1156], "nitrocloud.com": [11622], "qcq.me": [2053], "www.bsdcan.org": [1585], "atemda.com": [648], "www.kumu.io": [9188], "7di.as": [2053], "companion.here.com": [7465], "www.nrsr.sk": [15217], "l.omer.io": [2053], "pon.gl": [2053], "nla.io": [2053], "wkx.jp": [2053], "intranet.thm.de": [16066], "showingcloud.com": [14988], "go.mgpf.it": [2053], "jackets.gardners.com": [20200], "sso.uvt.nl": [16716], "tiswww.case.edu": [2933], "thought.artsci.wustl.edu": [18290], "www.scientific.net": [14627], "www.pikpok.com": [12885], "bosh.io": [2283], "cvote.cc": [2053], "geology.illinois.edu": [17544], "wemineltc.com": [18496], "rpmfind.net": [14237], "skreened.com": [15164], "card.jd.com": [8571], "www.oz-affiliate.com": [12399], "eme.moe": [20031], "financement.m6r.fr": [9865], "runcourage.me": [2053], "yom.io": [2053], "meetings.ripe.net": [14128], "elipho.to": [2053], "emknowledge.gov.au": [1426], "logovut.ro.vutbr.cz": [17814], "besmith.com": [1629], "joec.co": [2053], "hcfun.co": [2053], "www.emaileri.fi": [5294], "community.g4s.com": [20194], "*.glad.org": [6456], "go.hea.biz": [2053], "l.nhaquan1.top": [2053], "m.shacombank.com.hk": [14903], "padlister.com": [12526], "www.guitar.co.uk": [10452], "link.hipo.kz": [2053], "aktion.netcologne.de": [11379], "www.sikur.com": [15030], "fwwat.ch": [2053], "download.elastic.co": [5243], "remoteadvisor.apple.com": [1160], "cdn.transifex.com": [16943], "freescale.com": [6302], "blot.im": [2177], "www.freelanguage.org": [6260], "spb.rt.ru": [13703], "taojinbi.taobao.com": [16206], "www.thepirateproxy.co": [21709], "primegrid.com": [13286], "billing.flokinet.com": [6054], "c101.co": [2053], "rnib.in": [2053], "bruteforce.gr": [2434], "libanywhere.com": [9463], "www.dulwich.io": [4896], "yuncheng.jd.com": [8571], "wasc.stanford.edu": [15635], "coxds.com": [3807], "go.ammarcus.com": [2053], "nodistribute.com": [20920], "slzbrt.com": [2053], "b.danielrozo.es": [2053], "webmail.websupport.sk": [18456], "finchi.es": [2053], "bhgmag.co": [2053], "secure.tameside.gov.uk": [21659], "astnmrt.in": [2053], "www.wimo.com": [18575], "accounts.cloud.databricks.com": [4275], "lists.metalab.at": [10484], "on.gobig.at": [2053], "jobhint.co": [2053], "indico.web.cern.ch": [2632], "decc.gov.uk": [19885], "forum.typo3.org": [16149], "link.crogo.com": [2053], "t.scl.io": [2053], "lavo.co": [2053], "packrun.info": [2053], "et12.xhcdn.com": [18815], "*.rega.ch": [13958], "anonimag.es": [1084], "2ton.com.au": [106], "www.kore.io": [9135], "notblocked.telex.cc": [16355], "www.devprom.ru": [4512], "hebrew.alibaba.com": [850], "anon.click": [1081], "secure.voyage-prive.it": [18153], "wholesaler.alibaba.com": [850], "tvfutu.re": [2053], "kitd.com": [8881], "www.buildbot.net": [19609], "gnv.xyz": [2053], "www.bostonreview.net": [2290], "gentoo-ev.org": [6652], "www.up.jobs": [21864], "www.dedra.cz": [4098], "blogs.constantcontact.com": [3657], "posthaven.com": [13202], "*.themoneyreferral.com": [3570], "dejon.es": [2053], "strasbourg.eu": [15762], "kokousalusta.fi": [9109], "food.gov.uk": [20142], "psst.li": [2053], "wiki.diasporafoundation.org": [4532], "ru.libreoffice.org": [9471], "fbdn.ga": [2053], "usembassy.state.gov": [17345], "www.kk.dk": [8883], "www.gpodder.net": [6494], "nuagemo.de": [2053], "nothing.ch": [11724], "static.flashback.org": [6019], "civic.moveon.org": [10819], "eiopa.europa.eu": [5526], "adv.money.pl": [10735], "www.amazon.com.br": [19367], "www.brewtourism.com.ua": [2363], "euro.gifts": [2053], "old.harita.yandex.com.tr": [18954], "airte.ch": [2053], "money.yandex.kz": [18957], "*.wholeliving.com": [10196], "enterprisecioforum.com": [5394], "www.orafarm.com": [11857], "worldsoc.cr": [2053], "via.khow.it": [2053], "true-security.nl": [16112], "static-cdn.malwarebytes.org": [10093], "portal3.wildfire.paloaltonetworks.com": [12553], "vall.ie": [2053], "surreymaps.surreycc.gov.uk": [21611], "caracas.usembassy.gov": [21879], "img.ifcdn.com": [20437], "techtun.es": [2053], "shop.sophos.com": [15403], "al.md": [2053], "w.zipbob.net": [2053], "darwin.uk": [2053], "www.facebook.mx": [5736], "istar.usc.edu": [17564], "tv-show.ga": [2053], "no.piliapp.com": [12887], "kib.ki.se": [8878], "www.zoosk.com": [19225], "dfab.it": [2053], "www.shop.harman.com": [7340], "quint.ly": [2053], "rnwd.net": [2053], "www.cheshirepolicealert.co.uk": [19698], "pixcept.de": [12952], "i.onthe.io": [12089], "aer.co": [2053], "cctnft.ch": [2053], "logo.to": [2053], "*.qoo10.com": [13538], "koumbit.net": [9148], "www.checkip.org": [18083], "www.meynconnect.com": [10507], "fnn.jp": [2053], "yorkshireandhumber.greenparty.org.uk": [7052], "therocktrading.com": [16573], "aehr.co": [2053], "acoustid.org": [516], "on.krem.com": [2053], "reddpics.com": [13921, 13922], "kt.meituan.com": [10405], "rpkjr.us": [2053], "workersandbox.mturk.com": [9970], "siemens.*": [15015], "potom.ac": [2053], "v.you2play.com": [2053], "jasondfox.com": [2053], "foodandwaterwatch.org": [6119], "tuxic.nl": [17133], "yur.is": [2053], "archdai.ly": [2053], "beli.io": [2053], "opentag.qubitproducts.com": [13575], "ldnbri.de": [2053], "petyard4.info": [2053], "icln.org": [7833], "bikin.ch": [2053], "hideki.hclippr.com": [7180], "clients.cleanenergyexperts.com": [3283], "www.myloc.de": [10959], "static.ucsc.edu": [17591], "eene.ws": [2053], "tibus.com": [21735], "r.sanzon.mx": [2053], "libya.usembassy.gov": [21879], "taylrm.sn": [2053], "tpglnk.com": [2053], "in2.kr": [2053], "s.atea.no": [2053], "fb.ypgames.fr": [2053], "gasngrills.com": [6582], "enbg.dict.cc": [4536], "lpil.es": [2053], "bit.pourboy.ca": [2053], "svn.o.qcloud.com": [13530], "marco.upo.es": [17683], "jira.enaza.ru": [5332], "*.alwaysdata.com": [939], "oscommerce.com": [12320], "www.code42.com": [3406], "london.hackspace.org.uk": [9744], "public.nicereply.com": [11580], "kennslumidstod.hi.is": [7196], "robotshop.com": [14160], "scimuseumok.org": [2053], "warisboring.com": [21974], "www.h.switchadhub.com": [15954], "www.mcxnow.com": [10294], "tonolucro.com": [2053], "assets-ssl.nnm-club.ws": [11132], "e-idt.co": [2053], "m.hertzequip.com": [7511], "*.torbit.com": [16841], "ga.libreoffice.org": [9471], "saleshack.it": [2053], "omron.me": [2053], "www.alertscc.com": [14579], "render.githubusercontent.com": [6801], "mail.yaziba.net": [20737], "*.bellinghamschools.org": [1819], "graphics.pop6.com": [13128], "12f.us": [2053], "noahr.co": [2053], "www.cyberplat.ru": [4047], "mkcor.us": [2053], "sport.leeds.gov.uk": [20653], "www.foriswine.com": [6157], "ussoc.cr": [2053], "duosecurity.com": [4899], "knihy.root.cz": [14199], "malcontentsgambit.com": [10085], "media.firstclassmagazine.se": [5991], "www2.enthought.com": [5401], "community.ican.org.uk": [20420], "360rea.ch": [2053], "prospecteye.com": [13390], "download.enlightenment.org": [5382], "disk.yandex.by": [18953], "aemi.edu.au": [317], "link.madeby.hm": [2053], "legal.alibaba.com": [850], "adfe.ro": [2053], "apps.eastsussex.gov.uk": [19994], "domainreseller.ru": [4754], "www2.woolworthsonline.com.au": [18723], "t.uani.com": [2053], "evth.in": [2053], "metrica.yandex.kz": [18957], "adobeid-na1.services.adobe.com": [655], "lane-preprod.stanford.edu": [15635], "b.wbec.ca": [2053], "www1.maths.ox.ac.uk": [17557], "myitworksevents.com": [10996], "*.i-grasp.com": [7882], "mobioinsider.com": [10691], "giftofspeed.com": [20239], "golly.cc": [2053], "vlebb.leeds.ac.uk": [17604], "buckeyelink3.osu.edu": [11959], "www.kirlism.ga": [20602], "vsqz.me": [2053], "probikekit.co.uk": [13344], "archi-strasbourg.org": [1200], "docs.oasis-open.org": [11805], "www.cmake.org": [19741], "www.ideascale.com": [20423], "jpmorgan.am": [2053], "collabora.com": [3481], "mchs.jwerk.in": [2053], "harrow.io": [7345], "flavors.me": [6026], "russko-vysotskoe.beeline.ru": [1801], "netpol.org": [11439], "piraten.lu": [21133], "jobs.n-kesteven.gov.uk": [11045], "www.litle.com": [9631], "totalinvestor.co.uk": [16876], "www.openit.de": [12143], "travelinsiders.americanexpress.com": [972], "app-us7.resrc.it": [13832], "flights.webjet.com.au": [18421], "fabbeat.us": [2053], "greensmoke.com": [7055], "mr.bitly.pro": [2053], "apap.wustl.edu": [18290], "makeuseof.com": [10073], "www.standagainstspying.com": [15628], "admissions.warwickshire.gov.uk": [21980], "link.mylesm.uk": [2053], "p-tr.fr": [2053], "www.voiceteachertraining.com": [11492], "www.webassign.net": [18351], "i85.me": [2053], "stats.traffichaus.com": [16926], "processnet.hu": [4756], "a.camp-king.com": [2053], "it-ccs.com": [20506], "*.decorrespondent.nl": [4323], "talitha.co": [2053], "on.e-nor.com": [2053], "www.uw.edu": [17355], "m.bnkomi.ru": [19563], "stlrs.co": [2053], "wallaby.demo.bitmask.net": [2056], "848.bz": [2053], "ampfy.in": [2053], "sprsm.pl": [2053], "www.briteobjects.com": [2392], "media7.congstar-media.de": [3641], "savana.cz": [14547], "notebook.bbg.gov": [19503], "onlinemovies.virginmedia.com": [18028], "deutsch.rt.com": [13702], "illinoislawreview.org": [8115], "openfabrics.org": [12135], "extranet.wienernetze.at": [18582], "static.theiconic.com.au": [16558], "certificatemonitor.org": [3029], "camcit.co": [2053], "*.stowesports.com": [333], "login.sas.com": [14312], "img.zwame.pt": [19243], "s.mblm.com": [2053], "smbz.us": [2053], "p.insighto.com": [2053], "ctl.tv": [2053], "hi.zenmate.in": [19133], "forge.typo3.org": [16149], "wbh.li": [2053], "papiro.unizar.es": [17643], "miraclewkr.com": [2053], "url.exefull.net": [2053], "construx.com": [3658], "link.xnet.tk": [2053], "www.incapsula.com": [8192], "twinlane.co": [2053], "thiswhole.city": [2053], "antitheft.drweb.com": [4879], "r.peterprice.tv": [2053], "www.1art.cz": [75], "macmia.co": [2053], "christianheilmann.com": [3171], "apps.n-somerset.gov.uk": [11046], "sh.mallet.be": [2053], "oxfordtoday.ox.ac.uk": [17557], "www.funkhauseuropa.de": [18312], "password.1and1.com": [61], "www.tar-jx.bz": [16213], "iea.org": [8413], "mario.ninja": [2053], "assets.1688.com": [44], "hrsystems.admin.cam.ac.uk": [17529], "watchon.co.vu": [2053], "www.pkcommunitywatch.co.uk": [21141], "lego.build": [2053], "yelp.my": [18979], "socialtyzetracking.com": [15323], "cmh.io": [2053], "amiibos.co": [2053], "ucat.osu.edu": [11959], "kkdn.at": [2053], "hp.com": [7517], "gvcr.info": [2053], "dl.polagr.am": [2053], "password.1and1.ca": [62], "eddieizzard.com": [5175], "sl.cesa6.org": [2053], "bookings.tmbc.gov.uk": [16082], "supgrnd.com": [2053], "www.kbpublisher.com": [8864, 8865], "sports.wakefield.gov.uk": [21966], "cjdns.info": [3263], "malexpinto.tk": [2053], "www.warisboring.com": [21974], "mojeid.cz": [10723], "l.htv.ninja": [2053], "buzzaldr.in": [2053], "u6.hitravel.xyz": [2053], "www.ncwit.org": [11078], "*.lessthan3.com": [9417], "bnbym.yandex.com.tr": [18954], "aes.uic.edu": [17517], "www.uif.uillinois.edu": [17238], "sprk.co": [2053], "nuneatonandbedworth.gov.uk": [20962], "jusjm.xyz": [2053], "sprk.cc": [2053], "pagseguro.uol.com.br": [17276], "static1.uk.businessinsider.com": [2512], "artsy.net": [1270], "www.nic.es": [4764], "sphomerun.co": [2053], "payments.rbwm.gov.uk": [21268], "www.anunciou.com": [1114], "lishui.meituan.com": [10405], "secure.officeleaks.com": [11945], "recruit.zoho.com": [19202], "tdjak.es": [2053], "insure-systems.co.uk": [4523], "www.scripts.mit.edu": [9916], "reut.tv": [2053], "code.mythtv.org": [11038], "chndlr.me": [2053], "pkr.com": [12970], "baja-truckz.com": [2053], "www.smartbear.com": [21479], "www.logmeininc.com": [9712], "ojrq.net": [11967], "www3.sans.org": [14310], "livlinks.me": [2053], "assets.simplifydigital.co.uk": [21452], "statics1.beauteprivee.fr": [1791], "api.yubico.com": [19052], "eoportal.org": [5417], "lh.church": [2053], "join.me": [8765], "t-pepping.eu": [2053], "rbpde.tv": [2053], "mirc.com": [9913], "go.osu.edu": [11959], "sso.skatteverket.se": [15147], "go.teamviewer.com": [16259], "nzos.me": [2053], "stellify.media": [2053], "t.iverged.com": [2053], "typodun.unistra.fr": [17462], "huig.es": [2053], "pirateproxies.info": [21709], "smsng.us": [2053], "payza.com": [12703], "dermpath.wustl.edu": [18290], "www.bigjocker.com": [1916], "thewashi.com": [2053], "demand.rubiconproject.com": [14247], "demo.tiki.org": [16715], "scm.thm.de": [16066], "htvn.co": [2053], "wiki.mythic-beasts.com": [11039], "snop.me": [2053], "venst.re": [2053], "wikia.com": [18591], "harrow.greenparty.org.uk": [7052], "i-su.es": [2053], "scpd.stanford.edu": [15635], "cdn.evbstatic.com": [5541], "ad.adriver.ru": [573], "insinuator.net": [8323], "www.bitso.com": [2070], "s36.cnzz.com": [3391], "www.leadwerks.com": [9358], "thinkmoney.co.uk": [21722], "tclr.se": [2053], "www.uni-hamburg.de": [17229], "www.asiabsdcon.org": [1293], "moodle2.unizar.es": [17643], "bugs.gpodder.org": [6494], "fau.org": [5665], "atlas.arbor.net": [1193], "you-tube-com.cf": [2053], "eam-gmbh.com": [4965], "n.planlicht.com": [2053], "www.maplight.org": [10133], "discrete18.com": [2053], "1ak.in": [2053], "lensrentals.com": [9413], "www.futurelearn.com": [6399], "mbts.cc": [2053], "go.prtgh.eu": [2053], "www.bookfusion.com": [19570], "www.dcpower.eu": [4090], "qr.6g.cl": [2053], "ccp.osu.edu": [11959], "icn.io": [2053], "popm.at": [2053], "hedgl.in": [2053], "www.outflux.net": [12357], "www.stonearch.net": [14815], "startcom.org": [15660], "blogs-stage.oracle.com": [12284], "www.rac.co.uk": [13628], "blog.simplyhired.com": [15075], "productregistration.sony.com": [15393], "breakoutband.com": [2353], "tgdn.co": [2053], "links.sn0w.me": [2053], "lieblingskaffees.tchibo.de": [16240], "c.snownavi.jp": [2053], "seopwr.st": [2053], "www.tverigrad.ru": [21823], "glife.kr": [2053], "j8.chaucanh.net": [2053], "oralb.com": [13349], "onlinebackup.elgiganten.se": [5264], "page.1688.com": [44], "apps1.bdimg.com": [1770], "hfpp.cms.gov": [19742], "zoo.mn": [2053], "www.ipredator.se": [7951], "*.dydx.io": [4917], "www.fcc.gov": [5826], "tkno.ir": [2053], "library.ingenico.com": [8288], "k.kitsos.ninja": [2053], "detail.chiebukuro.yahoo.co.jp": [18944], "ghealthcare.anthem.com": [19395], "ut13.xhcdn.com": [18815], "councilmeetings.lewisham.gov.uk": [20670, 20671], "en.avm.de": [1493], "mobil.dhl.de": [4108], "ads.eurogamer.net": [5520], "seclab.illinois.edu": [17544], "chav.is": [2053], "kyle.life": [2053], "performance.surreycc.gov.uk": [21611], "vborg.es": [2053], "p78.nl": [2053], "secureupload.eu": [14741], "img4.leboncoin.fr": [20650], "www.migros.ch": [10566], "*.lendo.se": [9405], "www.pbebank.com": [13431], "your-file-system.com": [19027], "ka.gg": [2053], "www.norx.io": [11708], "c1.hitravel.xyz": [2053], "superherostuff.com": [15886], "ems.cambridgeshire.gov.uk": [19632], "ubmcmm.baidustatic.com": [1662], "rclnk.me": [2053], "runbox.com": [14274], "rapidssl.com": [13792], "*.ugc.bazaarvoice.com": [1759], "my.curated.co": [3995], "gw2.alicdn.com": [846], "trader.tms.pl": [21750], "www.rns.online": [21316], "www.hee.nhs.uk": [11102], "chek.li": [2053], "www.cachebrowser.info": [2766], "static.bullionstar.com": [2477], "rememberthemilk.com": [13993], "blockr.io": [2150], "s.delphaber.com": [2053], "*.grdc.com.au": [7014], "www.subnet05.ru": [21599], "wbz.gy": [2053], "vip.jr.jd.com": [8571], "thomsonreuters.com": [16650], "ctln.co": [2053], "www.blimpme.com": [2127], "content22.online.citibank.com": [3230], "ppint.uk": [2053], "bioconductor.org": [1959], "robinsonpool.bedford.gov.uk": [19509], "aoquadrado.catracalivre.com.br": [2967], "digitalcourage.de": [4586], "tnij.noop.pl": [2053], "www.itk.org": [20513], "www.hr.uic.edu": [17517], "pubchem.ncbi.nlm.nih.gov": [11241], "*.raeng.org.uk": [14224], "auth.lbp.me": [20644], "www.paste.ee": [12647], "business.leeds.ac.uk": [17604], "i1.gallery.technet.microsoft.com": [10543], "n210adserv.com": [20872], "www.jackpotmillions.com": [8630], "www.swm-infrastruktur.de": [14444], "selfsolve.apple.com": [1160], "help.it.ox.ac.uk": [17557], "securemedia.compete.com": [3583], "go.mikepero.com": [2053], "static.yelpreservations.com": [22099], "senditnow.courierpost.co.nz": [3784], "piscatus.se": [12943], "www.python.org": [13500], "550g.mcafee.com": [10282], "dr.com.tr": [4153], "images.theappendix.net": [16509], "www.youtube.co.kr": [19016], "benfisher.me": [2053], "spja.in": [2053], "mobile.portalpilot.equinix.com": [5438], "pdo.io": [2053], "rvls.co": [2053], "igorbellino.com": [2053], "www.bitbucket.org": [2005], "exjlux.news": [2053], "hackweek.suse.com": [14435], "neustarlocaleze.biz": [11475], "dentaldost.in": [2053], "shantou.jd.com": [8571], "ct.gov": [2738], "gtnacd.me": [2053], "sensay.me": [2053], "armory.monster-wow.com": [10754], "on.yourolly.com": [2053], "*.images-amazon.com": [954], "www.area17.com": [1217], "*.adseekmedia.com": [668], "www.visualisingadvocacy.org": [18079], "moai.tw": [2053], "dukefuqua.com": [2053], "tech.bitrise.io": [19543], "kaosx.us": [20575], "*.cli-apps.org": [21007], "tstats.xyz": [2053], "alpharatio.cc": [19355], "services.sstaffs.gov.uk": [21555], "hudora.biz": [2053], "at.mtn.com.cy": [2053], "sproutinc.com": [15570], "service.bitsighttech.com": [1996], "www.inform.umd.edu": [17549], "ln.alian.info": [2053], "www.parrotsec.org": [21076], "www.northkoreatech.org": [11694], "*.comicvine.com": [18543], "mijnzakelijk.ing.nl": [7916], "www.sedo.com": [14785], "remote.gettyimages.com": [6741], "purecine.fr": [13472], "noao.edu": [11242], "onlinepayment.com.my": [9940], "bh.gg": [2053], "insights.gravity.com": [7029], "pfdry.me": [2053], "hopel.es": [2053], "taltak.com": [2053], "images.c-spanvideo.org": [2553], "globevestor.com": [6868], "aries.apache.org": [1125], "a.tuposllc.com": [2053], "r9.ms": [2053], "betvic.to": [2053], "r.kargel.at": [2053], "*.sxnarod.com": [14883], "fusionhelp-stage.oracle.com": [12284], "srqymca.org": [2053], "dentalassoc.us": [2053], "www.aivd.nl": [331], "secure.dotplex.de": [4798], "www.eftplus.asia": [5008], "lgti.me": [2053], "a1air.info": [2053], "cuffl.in": [2053], "access.hinckley-bosworth.gov.uk": [7552], "www.discovermeteor.com": [4637], "www.thephone.coop": [16614], "splsh.pw": [2053], "scai.fraunhofer.de": [6230], "www.royalnavy.mod.uk": [14228], "boi.st": [2053], "www.remixdepolitiek.nl": [12924], "pbh.online": [2053], "yatima.org": [18968], "polygon.com": [13117], "shrt.prog.li": [2053], "s.xgolf.kr": [2053], "www.glassdoor.ca": [20246], "www.tvsupport.net": [17139], "myaccount2.courant.com": [19801], "inmap.org": [2053], "suppliers.www.uprr.com": [21870], "u.boxwilson.com": [2053], "new.jd.com": [8571], "cdnsecureservep1.amexserve-static.com": [944], "ohag.xyz": [2053], "s3.percona.com": [12769], "maps.yandex.ua": [18961], "mchp.us": [2053], "sslcheck.alfabank.kz": [842], "blvdq.com": [2053], "www.cryptoparty.in": [3955], "css.nlx.org": [20918], "*.pairlite.com": [12540], "*.web-stat.net": [18340], "bspan.org": [2053], "winerooki.es": [2053], "schneier.com": [14601], "t.grimpe.fr": [2053], "camo.githubusercontent.com": [6801], "realmatch.com": [13857], "1.www.s81c.com": [21351], "home.f-secure.com": [5654], "gargoyle-router.com": [20201], "scistore.cambridgesoft.com": [2827], "www.tsbmag.com": [16114], "economics.unian.info": [21851], "j-r.io": [2053], "mackeypro.co": [2053], "wlcact.us": [2053], "benprie.be": [2053], "hotelsm.ag": [2053], "deis.dict.cc": [4536], "fatcy.cl": [2053], "reise.kurier.at": [9194], "gencat.cat": [6646], "ba.yandex.by": [18953], "news.zhatv.in": [2053], "images.nationalarchives.gov.uk": [11254], "www.agwa.name": [774], "stats.feedsportal.com": [5855], "billpay.de": [1931], "yammer.com": [18952], "snapitoff.nus.org.uk": [20964], "vhns.co": [2053], "flybuys.com.au": [6077], "www.distil.it": [4658], "www.liqd.net": [9602], "thumbs.motherlessmedia.com": [10796], "learningcentre.netapp.com": [11374], "cars24.link": [2053], "momysg.co": [2053], "orlan.do": [2053], "craftulo.us": [2053], "api.excellencegateway.org.uk": [20077], "www.docs.indymedia.org": [8234], "on.wnct.com": [2053], "tc.meituan.com": [10405], "www.blumenthals.com": [2211], "www.rev.com": [14070], "freeapi.domaintools.com": [4750], "merus.link": [2053], "biology4.wustl.edu": [18290], "slntd.co": [2053], "hcia.cms.gov": [19742], "ln.hhmr.biz": [2053], "about.downthemall.net": [4818], "www.cathaypacific.com": [2963], "three.ie": [16666], "fotocommunity.de": [6194], "go.web.cern.ch": [2632], "solarpowerrocks.com": [15356], "uppsalahem.se": [17686], "www.tibiamaps.io": [21734], "soundcloud-wpengine.netdna-ssl.com": [15410], "cdn2.static.xtube.com": [18905], "tancheng.meituan.com": [10405], "cdn4.iconfinder.com": [8066], "piwik.vm.de": [21933], "ruag.com": [21336], "americanrifleman.org": [19382], "ryatta-yt.com": [2053], "ichef-1.bbci.co.uk": [19501], "tcf.org": [16045], "ql.meituan.com": [10405], "community.gns3.com": [6472], "aoizemi.com": [2053], "ccianet.org": [2607], "riversidemajestic.com": [14141], "entr.dict.cc": [4536], "awaps.yandex.kz": [18957], "s.chikaki.me": [2053], "askkoko.co": [2053], "tor.com": [9996], "www.printmojo.com": [13294], "xiscosoft.es": [18879], "w.awsmpwrd.com": [2053], "go.rhino.link": [2053], "*.accountservergroup.com": [501], "on.wrex.com": [2053], "t.suntravel.xyz": [2053], "a.intentmedia.net": [8378], "www.compaign.ox.ac.uk": [17557], "www.arangodb.com": [1191], "diver.so": [2053], "risingstack.com": [21312], "women.nra.org": [20942], "spursgroups.com": [2053], "pocketmags.com": [21156], "www.santoku-linux.com": [14532], "myopac.oxfordshire.gov.uk": [21056], "www.forum.fruct.org": [5708], "stue.be": [2053], "alloresto.fr": [20565], "icflorida.us": [2053], "sfm-offshore.com": [14347], "htap.it": [2053], "www.tldrlegal.com": [16077], "files.quizsnack.com": [13605], "pokerstars.com": [21161], "www.barna.org": [1721], "yesah.co": [2053], "teimp.de": [2053], "go.cyfm.ca": [2053], "coh.link": [2053], "verifier.accounts.firefox.com": [5974], "rewards.thankyou.com": [16435], "lianzhou.meituan.com": [10405], "calnet.berkeley.edu": [17526], "itportal.decc.gov.uk": [19885], "eps.stanford.edu": [15635], "assembly.com": [1316], "burnab.it": [2053], "*.boingo.com": [2235], "standardne.ws": [2053], "fivewish.es": [2053], "for.photos": [2053], "assisto.net.br": [2053], "l.kevincheng.me": [2053], "pssap.gov.au": [13440], "ictrl.co": [2053], "tktk.gawker.com": [6593], "agfyi.info": [2053], "*.opendesktop.org": [21007], "aspplayground.net": [395], "www.spaceweatherphone.com": [15462], "astrobotic.com": [1338], "bsns.me": [2053], "manager.presspage.com": [13259], "www.protocolesevaluation.svs.ulaval.ca": [17515], "s.ghrebaa.com": [2053], "forum.pfsense.org": [12819], "huozhou.meituan.com": [10405], "uspgo.to": [2053], "bien-fait.paris": [2053], "aexrs.us": [2053], "hollister.co": [2053], "phone.coop": [12847], "barclayscorporate.com": [1711], "stanfordvideo.stanford.edu": [15636], "www.savethechildren.org.uk": [14553], "skyacademy.com": [15174], "randischumann.dk": [13776], "lase.lc": [2053], "reviewedge.ml": [2053], "www.widget.whatsbroadcast.com": [18535], "www.mynewflag.com": [11497], "tlcenter.wustl.edu": [18290], "umstudent.com": [2053], "koozzz.us": [2053], "www.cloudinary.com": [3367], "taheerah.com": [2053], "s.cstori.es": [2053], "danm.in": [2053], "fnk.lv": [2053], "inventhelp.com": [8461], "images2.dailykos.com": [4193], "ellen.tv": [2053], "bp.nserver.ru": [11746], "arsenal.rubiconproject.com": [14247], "www.qualityunit.com": [13561], "thefastandthefurious.com": [5799], "bbybgrl.com": [2053], "duracellcloud.com": [4904], "osadl.org": [11863], "on.dgx.me": [2053], "g1-bre.pagekite.net": [12534], "icefilms.info": [8056], "rs.broadcastjobs.co.uk": [2407], "acell.osu.edu": [11959], "test.quanam.cl": [2053], "docs.pivotal.io": [12947], "*.ssl.catalog.video.msn.com": [9961], "zzounds.com": [19083], "clocks.yandex.com": [18956], "go.csdo.org": [2053], "files.nyaa.eu": [11794], "radio4.nu": [2053], "www.cadence.com": [2772], "sharethrough.com": [14925], "www.blocketsannonswebb.se": [2148], "ciscolive.com": [3224], "fa.libreoffice.org": [9471], "mpiweb.org": [9946], "*.corecommerce.com": [3730], "longnow.org": [9754], "coinmate.io": [3462], "brstbl.me": [2053], "french.tags.literotica.com": [9628], "crunchbase.com": [3904], "circleofmoms.com": [3215], "go.3arrafni.com": [2053], "accesspr.us": [2053], "tsbohemia.cz": [21804], "service.wienit.at": [18582], "aktib.co": [2053], "cdn03.gitter.im": [6806], "l.copps.nz": [2053], "my.preston.gov.uk": [21196], "giz.tech": [2053], "images.google.com": [6968], "www.yorkfitness.com": [19003], "www.nextgen-gallery.com": [11560], "mobile.zuno.sk": [19079], "identity.paloaltonetworks.com": [12553], "elt.oup.com": [12397], "recipes.gobolinux.org": [20262], "andri.at": [2053], "www.verisign.dk": [17915], "www.myhearstnewspaper.com": [7409], "www.nerfnow.com": [11353], "*.uni-greifswald.de": [17599], "www.apc.homeoffice.gov.uk": [20355], "www.srm.de": [14406], "mysupport.nvcc.edu": [11787], "es.account.my.t-mobile.com": [16026], "press.post-gazette.com": [13175], "s.deratrox.de": [2053], "etegro.com": [5076], "active24.cat": [19273], "themes.nyc": [2053], "jemp.ml": [2053], "absolvent.vutbr.cz": [17814], "m.zalando.de": [19094], "ibank.akbars.ru": [19335], "ibmsmarteritservices.sf.net": [15423], "a.gfx.ms": [6744], "www.unfpa.org": [17266], "qlp.promo": [2053], "lp.am": [2053], "im.bnymellon.com": [19566], "reg.ft-static.com": [20182], "www.rol.im": [21325], "a.devb.us": [2053], "lcry.us": [2053], "www.learnertrack.net": [20649], "o.andromaza.com": [2053], "harv.pw": [2053], "coloniallife.us": [2053], "secure.zt03.net": [19234], "railsbox.io": [13763], "gbrl.me": [2053], "zein.nl": [2053], "b.id0.me": [2053], "cultura.unizar.es": [17643], "jwebb.me": [2053], "vtmnieu.ws": [2053], "qiu.be": [2053], "www.medicare.gov": [20772], "litographs.co": [2053], "www.inbenta.com": [8186], "gis.ngdc.noaa.gov": [11272], "forum.t411.io": [16036], "encres-noires.squat.net": [21549], "shib.raven.cam.ac.uk": [17529], "smartlingsource.com": [15243], "i.dell.com": [4413], "www.sudo.ws": [7025], "wbginvestmentclimate.org": [8408], "jay1.co": [2053], "lsca.st": [2053], "*.audiko.net": [1394], "www.bit2c.co.il": [1973], "www.stiftung.htwk-leipzig.de": [7736], "getconnected.gmu.edu": [6666], "pradee.ps": [2053], "yourlogicalfallacyis.com": [19037], "www.elsevier.ca": [5286], "521d.me": [2053], "*.traction-digital.com": [16907], "jrl.ink": [2053], "bhrl.ga": [2053], "go.350.org": [2053], "s.v9p.org": [2053], "*.utwente.nl": [17350], "lichfielddc.gov.uk": [20681], "products.office.com": [11942], "img1.glassdoor.ca": [20246], "teletrust.de": [21673], "*.devx.com": [18371], "origin-www.blackberry.com": [2102], "my.codecoon.com": [3425], "www.elrippoisland.net": [20028], "rqga.me": [2053], "jseltz.com": [2053], "chris.sh": [2053], "pcity.us": [2053], "publicaccess.barnet.gov.uk": [19487], "us.samsung.com": [14501], "cnxs.ca": [2053], "f.domdex.com": [4758], "jappix.org": [8665], "mlcruises.com": [2053], "www.cert.se": [2639], "stats.silentcircle.com": [15031], "vysl.in": [2053], "reseller.apple.com": [1160], "bit.fosk.it": [2053], "www.inductionsolutions.com": [8224], "www.hvb.de": [7795], "audits.uillinois.edu": [17238], "eplus-gruppe.de": [4943], "webmail.kth.se": [8905], "txag.me": [2053], "library.leeds.ac.uk": [17604], "121e.co": [2053], "www.smuxi.com": [15262], "who.int": [18203], "highschoolbioethics.georgetown.edu": [6668], "trial.scene7.com": [14580], "wiki.typo3.org": [16149], "fotki.yandex.kz": [18957], "ntss.ws": [2053], "ilo.org": [7899], "cn-hangzhou.oss.aliyun-inc.com": [19345], "tmx.mn": [2053], "*.careplace.org.uk": [19647], "www.compulab.co.il": [3594], "asset-a.soup.io": [15415], "links.fca.org": [2053], "www.upsploit.com": [17668], "oneonline.bradford.gov.uk": [2317], "cart.rapidbuyr.com": [13789], "standeyo.com": [15626], "*.extreme-dm.com": [5638], "crsh.in": [2053], "cscportal.org.uk": [19832], "cms.iprsoftware.com": [7943], "voscast.com": [18140], "man.freebsd.org": [6237], "recruiter.jobfinder.dk": [8745], "hogn.xyz": [2053], "aesnet.org": [967], "support.iopus.com": [7931], "filter.mywot.com": [10987], "*.patechmasters.com": [12835], "leadership.opm.gov": [11853], "ladesk.com": [9645], "121cc.us": [2053], "babyolo.gy": [2053], "foorumi.ovh-hosting.fi": [12378], "selby.greenparty.org.uk": [7052], "ko.snstatic.fi": [14383], "tsb.plus": [2053], "widgets.membership.s-msft.com": [14296], "font.me": [2053], "www.glyphicons.com": [6879], "izqciu.cl": [2053], "www.pgp.com": [12448], "getsoci.al": [2053], "bela.vc": [2053], "wof-cluster.desy.de": [4479], "biologia.uniovi.es": [17479], "*.e17-stuff.org": [21007], "w.lbci.com": [2053], "www.infrequently.org": [8284], "www.agenpremium.com": [19319], "tw.terps.io": [2053], "digitaldollhouse.com": [4575], "ghosteryenterprise.com": [6750], "usrc.me": [2053], "spaz.us": [2053], "cobaltmania.com": [3401], "files.ezaxess.com": [5650], "agil.cf": [2053], "msmales.co": [2053], "support.stripe.com": [15781], "*.businesscatalyst.com": [2515], "update.gitter.im": [6806], "pay02.zong.com": [19214], "tu.am": [2053], "lantern.news": [2053], "static.frostwire.com": [6347], "numato.com": [11774], "counter.theconversation.edu.au": [16528], "ivx.tv": [2053], "breslow.im": [2053], "www.jobbik.hu": [8744], "api.snip2code.com": [15282], "ymcmbofficial.com": [18923], "api.analytics.mashape.com": [10208], "x.tinglrr.com": [2053], "hrng.us": [2053], "mrko.nl": [2053], "www.aescrypt.com": [19312], "item-funs.com": [2053], "s.jiho.co.jp": [2053], "haber.yandex.com": [18956], "ixirc.com": [20521], "dubb.biz": [2053], "vallfer.in": [2053], "link.whotv.com": [2053], "www.fastwebmedia.com": [5787], "amnesty.de": [998], "movzeed.com": [18972], "rack911.com": [13729], "*.helpserve.com": [8977], "chimbio.com": [2053], "www.canarywatch.org": [2863], "*.craigsmith.net": [19813], "ease.edp.pt": [4995], "bo-staging.getjaco.com": [6727], "alelo.in": [2053], "mport.ua": [9950], "fhi.se": [5681], "e5.xhamsterpremiumpass.com": [18817], "amurskaya-obl.beeline.ru": [1801], "www.coloradocollege.edu": [3506], "eucalyptus.com": [5503], "s.ecosoft.co.jp": [2053], "bldng.gd": [2053], "rut.gr": [2053], "mxlogic.com": [10279], "members.vpnreactor.com": [17794], "t.iskmrkt.in": [2053], "l.ivoxy.com": [2053], "go.dhmtl.ca": [2053], "go.fg.cz": [2053], "s.hauter.de": [2053], "s.hofer.at": [338], "rbm.me": [2053], "player.qbrick.com": [13529], "assets.www.npo.nl": [11138], "www.btc.to": [2436], "studiolb.co": [2053], "www.dnsdynamic.org": [4144], "djle.in": [2053], "stonewallcymru.org.uk": [21581], "t4.qlogo.cn": [13534], "ql.e-diary.com": [2053], "g.patabbo.com": [2053], "pnpr.jp": [2053], "nrv.ee": [2053], "mtrz.us": [2053], "reb.fund": [2053], "egrvs.com": [2053], "*.adhands.ru": [564], "takeflight.me": [2053], "cloudfront-assets.reason.com": [13869], "www.hertzequipsales.com": [7511], "yipit.co": [2053], "yourmechanic.com": [19031], "www.sabayon.org": [14450], "leetmedia.com": [9381], "www.kinklink.me": [9059], "gatr.tk": [2053], "spontex.org": [15538], "biomedcentral.com": [1954], "tap2-cdn.rubiconproject.com": [14247], "chkytr.us": [2053], "me.assets.me": [2053], "*.void.gr": [7042], "soyef.info": [2053], "lhost.link": [2053], "esl.education": [2053], "adc-srv.net": [19288], "rangeservices.nra.org": [20943], "dot.j4ve1in.com": [2053], "gatewaysb.com": [6585], "witham-braintree.greenparty.org.uk": [7052], "login.qacomplete.smartbear.com": [21479], "idaas.iam.ibm.com": [7821], "www.ilxgroup.com": [7900], "la.tms.edu": [2053], "eipocimb.com": [2663], "kohalibrary.halton.gov.uk": [20307], "rod-g.us": [2053], "d4designstudios.com": [4073], "modsto.com": [2053], "scdistrib.com": [2053], "mmflint.me": [2053], "short.jo-co.com": [2053], "on.droidslk.com": [2053], "rgsguild.fr": [2053], "www.flibusta.is": [6031], "www.filetrip.net": [5910], "www.informatik.fh-nuernberg.de": [16428], "digikey.com": [4552], "s2.openrussia.org": [12243], "www.al-akhbar.com": [812], "dnfco.com": [2053], "kirkja.co": [2053], "meet.ioninteractive.com": [20484], "prtk.ca": [2053], "gosoapbox.com": [6908], "ed.stanford.edu": [15635], "lists.uu.se": [17352], "ba9.re": [2053], "dev.fitbit.com": [6002], "ger.ms": [2053], "adr.adriver.ru": [573], "*.roi.ru": [13678], "kldr.st": [2053], "www.buchhaus.ch": [19603], "www.info.apple.com": [1159], "montpelerin.org": [20826], "shop.buckscc.gov.uk": [19605], "www.hush.com": [7777], "*.bigo.net": [1560], "*.pixelx.de": [12953], "android-git.linaro.org": [9522], "exitco.uk": [2053], "goto.gpalmer.me": [2053], "elctrclassic.tk": [2053], "www.betterscience.org": [19520], "demo.richrelevance.com": [14104], "nkos.ms": [2053], "at.kitbs.com": [2053], "*.nss.udel.edu": [17535], "secure.x-cart.com": [18794], "www.thelayoff.com": [21705], "erica.click": [2053], "ecigpros.com": [4983], "familyinfoservice.westsussex.gov.uk": [18507], "fract.link": [2053], "prtimes.jp": [21219], "*.bestbuy.com": [1853], "sites-auth.hubspot.com": [7739], "shop.whyopencomputing.fr": [22021], "www.alljoyn.org": [872], "forumwizard.net": [6182], "myfreeschoolmeals.firmstep.com": [20125], "ghandlin.me": [2053], "akademy.kde.org": [8871], "jingxi.1688.com": [44], "dustn.ws": [2053], "ptagr.me": [2053], "chrisanthemums.com": [3167], "maxx.link": [2053], "terveysportti.org": [16394], "epson.com": [5434], "prnt.at": [2053], "security.stanford.edu": [15635], "www.naiin.com": [11201], "bestpractical.com": [1859], "networkedblogs.com": [11464], "afd.calpoly.edu": [2806], "bb.cdn.gmru.net": [6466], "u.folkano.com": [2053], "www.exaccess.ru": [13005], "webmon.com": [18430], "o.ayie.net": [2053], "www.defcon.ru": [4382], "atb-online.ru": [1346], "ipv6.tunnelbroker.net": [17109], "autodiscover.merton.gov.uk": [10464], "s119.cnzz.com": [3391], "hacklab.to": [7266], "oar.uwm.edu": [17580], "cssiw.wales.gov.uk": [18252], "www.cs.cornell.edu": [3744], "webmail.phpnet.org": [12454], "cgfang.taobao.com": [16206], "wowjs.zamimg.com": [19095], "09.imgmini.eastday.com": [5119], "evo.com": [5569], "images.yandex.kz": [18957], "cdn3.xvideosx.tv": [18837], "stats.zaehlwerk.net": [19089], "blog.diasporafoundation.org": [4532], "apps.secure.me": [14732], "ssaportal.parature.com": [12602], "*.nic.swiss": [19950], "hypo.neos.eu": [11088], "forms.business.yahoo.co.jp": [18944], "5.vgc.no": [17776], "helpvote.us": [2053], "mydundeeaccount.dundeecity.gov.uk": [4897], "webalert.jp": [18350], "go.srcr.nl": [2053], "0bin.net": [2], "mgm.congstar.de": [3642], "www.security-database.com": [14762], "mfund.link": [2053], "www.vis.occrp.org": [11810], "mail.bestmx.ru": [1862], "mmlt.me": [2053], "soros.org": [12109], "www.tgthr.com": [16427], "admin.govdelivery.com": [6990], "ads2.where.com": [18537], "totalrecall.com": [1943], "dev.modern.ie": [10706], "ve.godaddy.com": [6898], "gaona.work": [2053], "www.miramax.com": [10630], "login.proboards.com": [13338], "www.gawker-labs.com": [6592], "hsss.hsbc.co.uk": [20375], "fmc.vc": [2053], "roofclimb.com.au": [21326], "libav.org": [9450], "hio.ca": [2053], "apotea.se": [1137], "n.thaniel.co.uk": [2053], "ravihandika.com": [2053], "abo.mondediplo.com": [10729], "accel-ppp.org": [19260], "replay.pokemonshowdown.com": [13081], "cmsp.mobile.unionpay.com": [17478], "lhse.co": [2053], "2rog.at": [2053], "imagesc.btol.com": [1666], "rtb.photos": [2053], "www-apps.hillingdon.gov.uk": [7550], "gonol.es": [2053], "masterh3.adriver.ru": [573], "eetimes.com": [5006], "www.ponyfoo.com": [21169], "tric.es": [2053], "todd.in": [2053], "blog.xsolla.com": [18896], "izea.com": [8031], "fnly.co": [2053], "alternative-settings.educ.cam.ac.uk": [17529], "secure.newegg.com": [11508], "projetos.ossystems.com.br": [11877], "cpt.al": [2053], "pdf.datasheetcatalog.com": [4292], "chcemvediet.sk": [3095], "bonita.illuminateed.com": [20430], "www.ebanking.cimbthai.com": [2665], "fonder.ki.se": [8878], "marketplace.org": [10181, 10182], "gspp.berkeley.edu": [17526], "hpol.it": [2053], "umd1.mycdn.me": [11014], "quch.io": [13576], "v.suntravel.xyz": [2053], "a.company-target.com": [3573], "test.drive.ru": [19961], "pour.5euros.com": [2053], "www.vodafone.ie": [18108], "www.tutanota.de": [17126], "*.wikia.com": [18591], "src.openvz.org": [12189], "contributors.debian.org": [4353], "cn.shopbop.com": [21429], "static.nexcess.net": [11549], "downloads.powerdns.com": [13216], "intranet.uow.edu.au": [17636], "coursefinder.northyorks.gov.uk": [20930], "www.wintotal.de": [18659], "cntrvlr.com": [2053], "piratebay.site": [21217], "*.doclix.com": [4149], "downloads.bbc.co.uk": [19500], "ozcards.com": [2053], "m80.co": [2053], "sitemanager2.adicio.com": [628], "jserv.es": [2053], "creocommunico.com": [7645], "jobs.leeds.gov.uk": [20653], "on.einstein.is": [2053], "www.gettag.mobi": [6726], "ma2.twimg.com": [17153], "www.101weiqi.com": [17], "hometheaterreview.com": [7618, 7619], "*.richarddawkins.net": [14106], "sensiolabs.com": [14831], "appleseed.apple.com": [1160], "www.give.berkeley.edu": [17526], "shftwa.co": [2053], "partner.justeat.nl": [20565], "seminar.monex.co.jp": [10733], "haozip.2345.com": [87], "seattle.gov": [3251], "search.lbl.gov": [9219], "news.osu.edu": [11959], "ccc.jd.com": [8570], "wiki.srb2.org": [14403], "tomv.nl": [2053], "thedo.do": [2053], "oaa.onlinesbi.com": [12072], "mathinstitutes.ima.umn.edu": [17554], "placecrew.com": [2053], "ad.3.cn": [121], "omsk.beeline.ru": [1801], "myuw.washington.edu": [17577], "freeway.ju.taobao.com": [16206], "opscode.com": [12263], "sourcesup.renater.fr": [13999], "spkrb.de": [21536], "www.adaptec.com": [595], "l.webdo.tn": [2053], "km.saha.vn": [2053], "ricochet.com": [14111], "co.great.estate": [2053], "adsales.rakuten.co.jp": [13768], "www.brighttag.com": [2378], "introversion.co.uk": [8449], "www.languageperfect.com": [9300], "goemerchant.com": [6901], "go.eboy.com": [2053], "chat1.mylivechat.com": [10999], "tp.wpml.org": [18218], "www.ce.jhu.edu": [16562], "vn.webike.tk": [2053], "yelp.com.hk": [18979], "cmdl.us": [2053], "factus.ru": [20092], "on.ktvb.com": [2053], "store.xamarin.com": [18840], "monitor.bvg.de": [1623], "*.purdue.edu": [13463], "www.marc-stevens.nl": [10144], "codest.ag": [2053], "dropboxteam.com": [4864], "melvyl.worldcat.org": [18748], "go.jess.mk": [2053], "kona32.kontera.com": [9131], "www.scipy.org": [14616], "megg.io": [2053], "www.kch.nhs.uk": [11102], "shop.adapteva.com": [596], "www.bibl.liu.se": [9237], "www.codeship.com": [3440], "blul.at": [2053], "isc.hk": [2053], "ldstr.me": [2053], "indonesia.rbth.com": [21267], "dashboard.twinprime.com": [17157], "asp.io": [2053], "url.mik.nu": [2053], "mozakdesign.us": [2053], "wicnss.fns.usda.gov": [17495], "www.lumigon.com": [9829], "www.printm3d.com": [13295], "buywithconfidence.gov.uk": [19620], "caller.com": [2812], "pic.nudefap.com": [2053], "store.f-secure.com": [5654], "scaron.info": [14329], "a.plnk.co": [2053], "www.puphpet.com": [21226], "peertech.org": [12737], "a1afastcash.com": [255], "ssl.images-createspace.com": [8131], "www.mkk.com.tr": [9921], "*.parrable.com": [12616], "www.iei.liu.se": [9238], "get.no": [20229], "www.hgst.com": [7189], "richmond.firmstep.com": [20125], "*.nap.edu": [16466], "mj.taobao.com": [16206], "snel.derekk.nl": [2053], "sou.gratis": [2053], "www.bodum.com": [2227], "newrepublic.com": [11501], "lane-beta.stanford.edu": [15635], "augsburg.worldcat.org": [18748], "compass-ssl.microsoft.com": [10543], "ver.sh": [2053], "scripturaengage.com": [14667], "yangcheng.meituan.com": [10405], "melkweb.frieslandcampina.com": [2842], "www.tu-hamburg.de": [16131], "*.lboro.ac.uk": [9341], "downloadster.net": [4824], "drift.to": [2053], "docs.cloud.datapipe.com": [4290], "t.chzbgr.com": [3114], "trasy.docelu.pl": [4703], "subscriberhelp.govdelivery.com": [6990], "freshde.sk": [2053], "trac.transmissionbt.com": [16951], "gbd.meituan.com": [10405], "zugaina.com": [19236], "rpkr.co": [2053], "northernillinois.imodules.com": [7909], "few.vu.nl": [17813], "helk.im": [2053], "mrkt.co.in": [2053], "hub.togetherjs.com": [16802], "xto.ph": [2053], "*.polldaddy.com": [13106], "nrlc.cc": [2053], "snf.link": [2053], "tblk.co": [2053], "static2cdn.hubspot.com": [7739], "s.ymyzk.com": [2053], "www.shazam.com": [14934], "www.system-rescue-cd.org": [21640], "9oo.pl": [2053], "i.gyazo.com": [7165], "x.ligatus.com": [9502], "fp-fami.ly": [2053], "www.pokerstars.com": [21161], "cyber.mirea.ru": [20805], "a.fw.my": [2053], "qtcloudservices.com": [13546], "carlos.me": [2053], "dawanda.me": [2053], "iceintranet.admin.cam.ac.uk": [17529], "eonli.ne": [2053], "lpro.io": [2053], "flap.me": [2053], "l.dalahavens.se": [2053], "insight.adsrvr.org": [675], "detail.co": [2053], "www.r00tz.org": [13623], "grp02.id.rakuten.co.jp": [13768], "dragndropbuilder.com": [4831], "m20.mx": [2053], "editola.com": [5187], "jobs.redbridge.gov.uk": [13917], "hku.me": [2053], "www.slickedit.com": [15201], "seal.wosign.com": [18693], "medarbejdere.kk.dk": [8883], "escr.it": [2053], "feedbackify.com": [5851], "www.10gen.com": [21], "kt81.net": [2053], "yq.aliyun.com": [861], "ndunn.ca": [2053], "lifesty.ms": [2053], "bc.edu": [1542], "cog.mect.cuhk.edu.hk": [2747], "dcly.io": [2053], "go.hood.ie": [2053], "mcbmx.biz": [2053], "msp.f-secure.com": [5654], "ifs.io": [2053], "www.coursesmart.com": [19803], "blog.synology.com": [15992], "steven.im": [2053], "diffoscope.org": [4545], "md03.plex.tv": [13036], "geta.tw": [2053], "c3.thejournal.ie": [16490], "go.cri.ms": [2053], "test-events.kcrw.com": [20583], "downloads.sms.cam.ac.uk": [17529], "go.trakt.tv": [2053], "jpfara.co": [2053], "connect.globalcapacity.com": [6845], "ostrava.idnes.cz": [20425], "egy.im": [2053], "nycfc.us": [2053], "www.in2code.de": [8177], "ocws.us": [2053], "img2.thejournal.ie": [16490], "rip.city": [2053], "cluck.it": [2053], "www.overviewproject.org": [12376], "sphotos-d.ak.fbcdn.net": [5816], "sipgate.co.uk": [15102], "fahrradfoerderung.vcd.org": [17766], "lektorium.tv": [9400], "ahouse.me": [2053], "www.backpack.tf": [1642], "2.coubur.com": [2053], "wrs.sg": [2053], "electionmentions.com": [20022], "www.ratfishoil.com": [13809], "socialdigidu.de": [2053], "jren.info": [2053], "s.rana.at": [2053], "popularresistance.org": [13147], "j.kainy.cn": [2053], "www.cio.com.au": [2667], "www.sott.net": [15404], "bbits.in": [2053], "www.garagegames.com": [6575], "www.hertz.ae": [7509], "mldlink.info": [2053], "rollbar.com": [14190], "clkmon.com": [3331], "pensionscoach.cash.ch": [19654], "gu.twimg.com": [17153], "url.waqiang.com": [2053], "foodsafety.gov": [6116], "ttzn.co": [2053], "fundrazr.com": [6375], "support.unlocator.com": [21859], "roa.rs": [2053], "kaz.tips": [2053], "sc-mall.jd.com": [8571], "bitcoinplus.com": [2032], "go.odomera.com": [2053], "www.cvent.com": [4020], "login.mobile.de": [20811], "funque.us": [2053], "gnsys.info": [2053], "qwk.us": [2053], "audi.us": [2053], "a8.sphotos.ak.fbcdn.net": [5816], "nutsbolts.co": [2053], "www.eduncovered.com": [5172], "www.iwantclips.com": [8019], "setiathome.berkeley.edu": [17526], "abid.es": [2053], "avatarpicker.com": [1485], "pad.systemli.org": [16019], "hywr.us": [2053], "www.unian.info": [21851], "www.gmplib.org": [6465], "www.tros.nl": [17037], "cada.at": [2053], "rhcdc.cc": [2053], "a2hosting.com": [257], "www.servercraft.co": [14857], "seefun.town": [2053], "mcohn.me": [2053], "hosting.uaa.alaska.edu": [17519], "app-portal.volexity.com": [18121], "*.lookdumbass.com": [9758], "robrt.co": [2053], "www.veronmaksajat.fi": [17924], "cathca.re": [2053], "mirrorservice.org": [10638], "mappe.istella.it": [8529], "uke.li": [2053], "wsmith.us": [2053], "dot.se-1.net": [2053], "www.powerlinemanmag.com": [13229], "plusgirot.se": [13052], "forum.ubuntuusers.de": [17383], "frnd.su": [2053], "bibbs.li": [2053], "aproz.migros.ch": [10566], "mitre.org": [10649], "static.hummingbird.me": [7760], "digital-forensics.sans.org": [14310], "www.hangerproject.com": [20310], "www.create-dmgmedia.co.uk": [3841], "vw.hdvlink.com": [20328], "dntly.com": [4696], "www.census.gov": [17305], "gic3.mycdn.me": [11014], "intraweb.marion.ohio-state.edu": [11960], "vdfn.co": [2053], "isc.sans.org": [14310], "digitalbond.com": [4563], "f.blickamabend.ch": [2125], "promo.awempire.com": [687], "www.deathmask.net": [4344], "eecs.umich.edu": [17552], "seatgen.law.yale.edu": [18946], "cloudbees.com": [19736], "zooko.com": [19217], "cabr.us": [2053], "mji.me": [2053], "givetosyr.com": [2053], "u.s.kqed.net": [8900], "chat.pirate-party.ru": [12919], "dwsn.co": [2053], "spectrumbusiness.net": [15498], "fnsdr.com": [2053], "*.communigator.co.uk": [3563], "ju42.com": [2053], "woods.to": [2053], "www.rkhd.in": [21315], "enr.ms": [2053], "slark.gq": [2053], "www.etsi.us.es": [17706], "arb.so": [2053], "linuxliteos.com": [20698], "arb.sa": [2053], "egyptindependent.com": [5217], "image.ahnlab.com": [777], "www.ch9.ms": [3039], "lpb.io": [2053], "ale.solutions": [2053], "arb.st": [2053], "www.ahorroentinta.com": [16798], "www.promote.ie": [4597], "campusassist.sydney.edu.au": [21631], "www.houten.nl": [11324], "*.globalsources.com": [6855], "www.mngt.waikato.ac.nz": [17633], "pix.fr.eu.criteo.net": [3872], "s.update.rubiconproject.com": [14247], "tsrf.co": [2053], "www.tucowsdomains.com": [17091], "cdn.animenewsnetwork.com": [19391], "www.datacentrumgids.nl": [4277], "www.commonplacebooks.com": [3553], "eag.gr": [2053], "community.bistudio.com": [2232], "www.georgiegirl.com.au": [6670], "d.ynam.it": [2053], "fark.com": [5776], "i.vvall.com": [2053], "dyntrdr.co": [2053], "andyc.us": [2053], "www.w-tune.com": [18403], "bl.ifm.io": [2053], "johnny.loak.org": [2053], "www.ansible.com": [1097], "images.switchadhub.com": [15954], "live.wifidb.net": [18571], "www.kkbox.com": [8884], "nvcc.edu": [11787], "go.wisco.tech": [2053], "merlot.me": [2053], "calendario.cc": [2796], "nzy.ch": [2053], "www.purehacking.com": [13467], "*.networks.nhs.uk": [11102], "bbc.co.uk": [1538, 19500], "www.farehamandgosportccg.nhs.uk": [11102], "spectrum.jino.ru": [8724], "hood.ee": [2053], "megworld.co.uk": [10387], "stabm.ag": [2053], "mygov.elmbridge.gov.uk": [5276], "visindavefur.hi.is": [7196], "discuss.zetetic.net": [19168], "www.appsites.com": [1175], "images.ddlvalley.rocks": [19878], "webf.in": [2053], "bnlawfirm.co": [2053], "fhs.se": [5683], "applygene.com": [2053], "api.proofpositivemedia.com": [13382], "arlanda.se": [1236], "cmkra.us": [2053], "pda-passport.yandex.kz": [18957], "teampace.co": [2053], "esolangs.org": [5464], "on.adn.com": [2053], "pow.li": [2053], "faac.ec": [2053], "rcare.co": [2053], "aumigforu.ms": [2053], "thepiratebay.se": [16493], "git.chromium.org": [3179], "l.unplayer.com": [2053], "addthis.com": [611], "apollon.uio.no": [17615], "z.ad1.me": [2053], "reklama.1188.cz": [2053], "master.apan.net": [368], "new.eastsussex.gov.uk": [19994], "go.cbs4indy.com": [2053], "drinkc.sx": [2053], "origin-enterprise.omniture.com": [12002], "on.basf.com": [2053], "www.steaknshake.com": [15701], "manage.zerigo.com": [19150], "webhost.biz": [18417], "www.gifgratis.net": [6759], "jordans.ws": [2053], "blog.blocktrail.com": [2140], "marketing.dell.com": [4413], "opsnl.tk": [2053], "forum.inosmi.ru": [20464], "opvn.nl": [2053], "begrp.co": [2053], "cluedumps.mit.edu": [9914], "meshkit.weimarnetz.de": [22000], "threatpost.com": [16663], "6ep.ru": [2053], "mini-dweeb.org": [4887], "www.sugarlabs.org": [15836], "tbear.me": [2053], "www.4gifs.com": [6155], "tgq8.com": [2053], "node2.bbcimg.co.uk": [19502], "jpumc.org": [2053], "style.litmuscdn.com": [9633], "developer.gimp.org": [20240], "peterborough.spydus.co.uk": [21546], "link.boipr.com": [2053], "peterbroderick.com": [12801], "hidekisaito.com": [7533], "www.smartauction.biz": [905], "xml.yandex.com.tr": [18954], "statistik-gallup.net": [16095], "cryptoparty.org": [3955], "8.wfla.com": [2053], "cp-filin.mail.ru": [10040], "imena.ua": [20436], "www.globalsign.com.*": [6840], "oauth-admin.life.ru": [20684], "cba.co": [2053], "redcross.org": [13906], "i.nu11.co": [2053], "dn-firweb.qbox.me": [13528], "housing.osu.edu": [11959], "on.rsd.it": [2053], "subscribe.sloanreview.mit.edu": [9916], "cdn.myfonts.com": [10948], "rawk.es": [2053], "www.googlemail.com": [6971], "linkz.click": [2053], "www.hollywoodlife.com": [7600], "b.df2.co": [2053], "ssl-cdn.highwebmedia.com": [7548], "ccr-abcam.cancer.gov": [2864], "sb-ssl.google.com": [6962], "p.mediamath.com": [2053], "nom.ski": [2053], "wit.ai": [18679], "bit.cu.cc": [2053], "luna1.co": [20725], "go.spire.me": [2053], "mful.tv": [2053], "soh.ms": [2053], "st-en.jd.com": [8571], "go.ajayjp.com": [2053], "lsbbugs.linuxfoundation.org": [9572], "app.college.police.uk": [19754], "data1.bell.ca": [1815], "gobrn.co": [2053], "sjobs.brassring.com": [19586], "payments.heifer.org": [7423], "www.colors-il.com": [3510], "ajax.li": [2053], "edoha.us": [2053], "scottevest.com": [14640], "www.fundacion.uned.es": [17446], "*.piriform.com": [12942], "threestore.three.co.uk": [16666], "members.zipcar.com": [19190], "mx.isidewith.com": [20414], "bar.love.mail.ru": [10040], "www.relevate.ru": [13988], "forum.sparkfun.com": [15471], "nciphub.org": [20881], "c.katjezek.com": [2053], "mth.fyi": [2053], "www.risingstack.com": [21312], "*.business2community.com": [2514], "www.wpml.org": [18218], "m.sockassist.com.au": [16361], "cmf.li": [2053], "wocreative.co": [2053], "consult.wyre.gov.uk": [22074], "www.hydraproxy.party": [20402], "jarinmart.in": [2053], "relayurl.xxxbunker.com": [18911], "on-web.fr": [12006], "www.balabit.com": [1668], "lorea.org": [9773], "itkdl.biz": [2053], "l.uccsda.org": [2053], "libtoxcore.so": [9483], "gtar.pt": [2053], "sfg.ly": [2053], "b-s.ee": [2053], "consumosocial.catracalivre.com.br": [2967], "statuscake.com": [15689], "www.fenland.gov.uk": [5865], "corwm.decc.gov.uk": [19885], "ina.unizar.es": [17643], "accounts.google.co.*": [6965], "youtube.my.to": [2053], "enpass.io": [5384], "static-01-www.icij.org": [7831], "whis.tl": [2053], "www.hellolife.net": [7436], "i.ligatus.com": [9502], "amo.li": [2053], "menu.sakh.com": [21360], "www.hivos.org": [7573], "oxfam.org.uk": [12393], "homes.cs.washington.edu": [17577], "img0.dditscdn.com": [4317], "tech.wikimedia.org.uk": [18595], "www.figshare.com": [5901], "ethicspoint.com": [5487], "jobtracker.me": [2053], "conference.educ.cam.ac.uk": [17529], "wesllendj.tk": [2053], "partner.m3connect.de": [20733], "www.kirklees.gov.uk": [9067], "website.ws": [18383], "public.unit4.com": [21856], "glnr.in": [2053], "lists.w3.org": [18184], "lists.clearlinux.org": [3291], "*.grid5000.fr": [7075], "qs.tc": [2053], "bit.hb.tc": [2053], "khalud.tk": [2053], "maid.tw": [2053], "cody.unizar.es": [17643], "rug.nl": [17540], "www.snagajob.com": [15270], "www.tvcom-tv.ru": [21822], "artistscorner.jamendo.com": [8649], "app.fosshub.com": [20150], "www.dreamspark.com": [4845], "www.lib.uchicago.edu": [17532], "netiq.com": [11386], "audilatam.com": [2053], "cesk.ml": [2053], "*.mara.gov.au": [11949], "youcanbook.me": [19010], "printfection.com": [13297], "dom.lenta.ru": [20661], "tothis.info": [2053], "dnce.co": [2053], "one.southend.gov.uk": [15442], "tms.alicdn.com": [846], "www.msi-shop.de": [9956], "u.outbrain.com": [12355], "www.identrust.com": [8082], "barclays.co": [2053], "boshan.meituan.com": [10405], "secure.nationalarchives.gov.uk": [11254], "www.mitsubishi.com": [10651], "n4.hitravel.xyz": [2053], "netmath.illinois.edu": [17544], "commande.easy-hebergement.fr": [5134], "gmglam.me": [2053], "arcadeflex.com": [5326], "p.liadm.com": [7940], "fbinc.co": [2053], "accrualnet.cancer.gov": [2864], "mobile.hillingdon.gov.uk": [7550], "www.7joycasino.com": [20552], "tglb.it": [2053], "deal.canvas.my": [2053], "malechkino.beeline.ru": [1801], "liemph.us": [2053], "dspace.harvard.edu": [7351], "djy.meituan.com": [10405], "git.decadent.org.uk": [4358], "mingqi.1688.com": [44], "s-media-cache-ak1.pinimg.com": [12906], "stat.prostovpn.org": [21212], "cas.inria.fr": [8309], "store.sony.com": [15393], "google-melange.com": [6970], "manero.me": [2053], "sw.csiac.org": [2728], "mbg.is": [2053], "freelosophy.tiscali.it": [16770], "chc.li": [2053], "i.yldbt.com": [18987], "www.e-mail.sachsen.de": [14454], "origin.cdbaby.com": [19662], "nkor.de": [2053], "bittorrent.org": [2076], "mail.deathmask.net": [4344], "ova.la": [2053], "travel.openbank.ru": [21008], "www.dataskydd.net": [4293], "oneonline.monmouthshire.gov.uk": [10748], "ppmdeals.co": [2053], "rsnbl.us": [2053], "rettighedsalliancen.dk": [14064], "communication.sikur.com.br": [15030], "stec-t11.xhcdn.com": [18815], "img-sporx.mncdn.com": [10667], "jwchat.org": [8613], "helponclick.com": [7444], "samsungtechwin.co.kr": [14509], "s.v6ak.com": [2053], "account.jabber.at": [8620], "*.yelp.at": [18979], "www.readynas.com": [13852], "*.entertainment.ie": [5398], "www.schoolpartnership.wustl.edu": [18290], "k8t.ru": [2053], "www.cvis.vutbr.cz": [17814], "iibuy.com.au": [8106], "ahead.org": [19325], "fr.libreoffice.org": [9471], "www.themonthly.com.au": [16564], "www.oeffentliche-it.de": [11928], "shnsmn.co": [2053], "developers.adultwork.com": [685], "historytoday.com": [7560], "civicscience.com": [3260], "homesta.rs": [2053], "rki.lt": [2053], "mydigipass.com": [11017], "uni-hub.us": [2053], "www.xively.com": [18880], "commerce.ti.com": [16413], "notsc.co": [2053], "microca.st": [10532], "orkanmin.or.is": [21027], "www.lanyrd.com": [9306], "www.nattstad.se": [11288], "mcitours.us": [2053], "adserv.quality-channel.de": [15522], "c.angen.me": [2053], "www.onthemedia.org": [12017], "teachr.co": [2053], "tro.pe": [2053], "i4u.kr": [2053], "petcare.space": [2053], "missional.it": [2053], "plaza.rakuten.co.jp": [13767], "www.upay.co.uk": [17671], "www.dpbolvw.net": [3546], "partenaires.amazon.fr": [19371], "gozamm.life": [2053], "www.southwark.gov.uk": [15445], "x.suntravel.xyz": [2053], "tinhte.vn": [16745], "www.emeraldinsight.com": [5307], "lex.im": [2053], "www.federalregister.gov": [5829], "ylaw.us": [2053], "linguee.com": [9534], "faiusa.org": [6115], "economics.unian.ua": [21851], "tbo.mx": [2053], "cmln.co": [2053], "dpchm.de": [2053], "modsci.co": [2053], "nserver.ru": [11746], "www.airvpn.org": [787], "bacil.io": [2053], "qr.gruma.de": [2053], "kngo.co": [2053], "join.thesun.co.uk": [21719], "people.collabora.co.uk": [3481], "rsrch.co": [2053], "board.bs.to": [2500], "www.xbetsport.com": [18849], "fkick.co": [2053], "cwcc.io": [2053], "bidz.com": [1902], "wcd.me": [2053], "oe.cr": [2053], "www.iceheberg.fr": [8057], "tae.is": [2053], "toolchain.gitbook.com": [6794], "verisign.com": [17915], "schools.sheffield.gov.uk": [14939], "marc.info": [9877], "canzps.georgetown.edu": [6668], "www.indiemerchstore.com": [8220], "cdn.washingtonexaminer.biz": [16479], "artpractical.com": [1254], "spunq.oe24.strgstatic.com": [11927], "g.asian4fun.com": [2053], "codeimprv.co": [2053], "wuwei.jd.com": [8571], "neko.me": [2053], "soutez.vshosting.cz": [17804], "hdp.rocks": [2053], "equipment.nottingham.ac.uk": [11726], "s4ve.me": [2053], "hexgeo.co": [2053], "www.gemeentenoordenveld.nl": [11324], "purduealumni.org": [13461], "ssl.zoho.co.jp": [19201], "blinddesign.nl": [2128], "login.dagbladet.no": [4184], "mayas.us": [2053], "dochelp.debian.net": [4351], "hms.to": [2053], "erb.copeland.gov.uk": [19789], "miles-and-more-kreditkarte.com": [10581], "www.facedetection.com": [20088], "emc.com": [5028], "rosinterbank.dengisend.ru": [4440], "amazonsupply.com": [955], "help.ancestry.com": [1031], "geoamigo.com": [6657], "www.iglo.tk": [3597], "webmail.xs4all.nl": [18835], "codyhouse.co": [19750], "federatedmedia.net": [5839], "tomm.my": [2053], "ugc.futurelearn.com": [6399], "ston.tc": [2053], "mirrors.ocf.berkeley.edu": [17526], "account.cyanogenmod.org": [4026], "refer.istockphoto.com": [20505], "smnz.co": [2053], "l.lx4.us": [2053], "browse.dict.cc": [4536], "hndshk.in": [2053], "www.dnscrypt.org": [4136], "nwa.deals": [2053], "co-optim.us": [2053], "vagosec.org": [21892], "paste.openttdcoop.org": [12180], "www.nawaat.org": [11305], "l.nailbook.jp": [2053], "bitgamer.su": [2046], "drugs-forum.com": [4873], "www.douban.com": [4802], "*.nmugroup.com": [11131], "images.tlasecure.com": [21746], "windriver.com": [18637], "blog.getsatisfaction.com": [6738], "wrk.hk": [2053], "link.co.pl": [2053], "9f.to": [2053], "www.lzone.de": [20731], "38.de": [144], "appstore.alipay.com": [857], "s124.cnzz.com": [3391], "www.carekris.com": [2906], "womble.decadent.org.uk": [4358], "cms.fightforthefuture.org": [5899], "wsm.la": [2053], "toolbar.vip.symantec.com": [15969], "modernpgp.org": [10709], "mehcore.com": [2053], "translate.yandex.by": [18953], "marker.openstat.com": [21022], "brokun.link": [2053], "ch.armfx.com": [2053], "nic.ru": [11573], "gapt.ch": [2053], "www.fldemo.nsf.gov": [11249], "webanalytics.acs.org": [966], "www.billdesk.com": [1930], "jkr.li": [2053], "dmn.cc": [2053], "fahrinfo.bvg.de": [1623], "www.dragonflybsd.org": [4834], "my.usc.edu": [17564], "www.justiz.sachsen.de": [14454], "www.freifunk.net": [6311], "sjz.meituan.com": [10405], "www.temp-mail.ru": [16366], "beta.fastmail.com": [5804], "sierraclubgreenhome.com": [15016], "geb.xyz": [2053], "shop2give.us": [2053], "thankyoucard.citi.com": [3227], "parkingin.sheffield.gov.uk": [14939], "gudiol.info": [2053], "lsvr.engineering.osu.edu": [11959], "www.joycasino2.com": [20552], "www.gov.uk": [6483], "go.tfmes.com": [2053], "q.115.com": [25], "tinychat.com": [16752], "hilik.us": [2053], "www.bayphoto.com": [1755], "usbclientadvocacy.com": [17332], "fcw.com": [5673], "www.anzen.org.uk": [1122], "x5.hitravel.xyz": [2053], "x.translateth.is": [16946], "rjn.tw": [2053], "www.biofitt.com": [1960], "partnernaurovni.sk": [12628], "staff.tumblr.com": [17100], "cdn02.gitter.im": [6806], "gph.li": [2053], "elizabethtown-kctcs.edusupportcenter.com": [20012], "talentcommunity.bnymellon.com": [19566], "m.ssllabs.com": [14416], "cdn-t.omsnative.de": [11836], "www.vtrenz.net": [15047], "ngfl.northumberland.gov.uk": [20929], "dediserve.com": [4371], "login.f-secure.com": [5654], "www.riseup.net": [14133], "4sevens.com": [190], "www.petakillsanimals.com": [12444], "www.icio.us": [8065], "ma.rcel.biz": [2053], "www.forensischinstituut.nl": [11324], "*.spreadshirt.com.au": [15552], "www.asjo.org": [1295], "yougov.de": [19012], "www.mygoya.de": [11021], "lab.pentestit.ru": [12755], "htrne.ws": [2053], "new.showrss.info": [14989], "sg.dkv.es": [2053], "consumer.ftc.gov": [5837], "coupons.paypal.com": [12678], "wishwi.sh": [2053], "go.edoctor.us": [2053], "www.pacebus.com": [12515], "pshared.5min.com": [208], "code.sfu.ca": [14893], "url.n9mtq4.com": [2053], "squat.net": [21549], "asmallorange.com": [249], "www.cryptohaze.com": [3942], "ibxpress.ibx.com": [20419], "tudo.xyz": [2053], "www.esdominios.com": [5461], "matd.si": [2053], "trust.zscaler.com": [19231], "yelp.cz": [18979], "link.egton.net": [2053], "accesslabs.net": [484], "hb.valleyfirstcu.org": [17826], "pre-kpag.es": [2053], "rstud.io": [2053], "n.ons.org": [2053], "f1n.co.uk": [2053], "support.sonatype.com": [15381], "puteulanus.duoshuo.com": [19969], "safesetup.guidancesoftware.com": [7134], "blog.legacy.com": [9384], "simflight.*": [15051], "www.leadspend.com": [9352], "wlkh.to": [2053], "melhores.co": [2053], "lanling.meituan.com": [10405], "go.revo.pw": [2053], "version5.edeveloperz.com": [4998], "s-up.pl": [2053], "family.utoronto.ca": [17629], "me.mindwork.net": [2053], "s.maxikg.de": [2053], "coz.tokyo": [2053], "sp2015.photos": [2053], "*.heatmap.it": [7417], "storage.cloud.kargo.com": [8947], "e-fense.com": [19977], "www.firemail.de": [5978], "*.aweber.com": [417], "aben.ca": [2053], "www.clevelandclinic.org": [3295], "geodyna.mx": [2053], "www.moana-surfrider.com": [10671], "vmt.link": [2053], "*.prweb.com": [12495], "chptools.decc.gov.uk": [19885], "tokbw.co.uk": [2053], "www.openvpn.net": [12187], "themesandco.com": [16608], "plssl.com": [13258], "brnyrs.net": [2053], "www.pirate-party.ru": [12919], "svetlodarsk.com": [15929], "dashboard.optify.net": [12269], "go.allied.mv": [2053], "www.swm.de": [14444], "chartbigchart.gtm.idmanagedsolutions.com": [8390], "www.postsuisseid.ch": [13176], "tu.company": [2053], "onderwijssso.tue.nl": [16129], "go.iltempo.de": [2053], "kuler.adobe.com": [655], "rfd.video": [2053], "extranet.libis.be": [9461], "www.blackbox.co.uk": [2096], "support.preyproject.com": [5030], "*.tu-ilmenau.de": [16128], "www.rz.htw-berlin.de": [7246], "mdl3.udn.com": [17224], "cdn.cnblogs.com": [19743], "kao.sh": [2053], "calderdale-consult.objective.co.uk": [20979], "ands.be": [2053], "cdn.mommyish.com": [899], "dah.la": [2053], "plcstr.com": [2053], "commandfive.com": [3538], "zakupki.rt.com": [13702], "www.jobscout24.de": [8740], "sandilands.info": [14518], "specialisttraining.g4s.com": [20194], "bypassingcensorshipinthe.uk": [19622], "udd.debian.org": [4353], "i3.code.msdn.s-msft.com": [14296], "dis.us.criteo.com": [3872], "*.eease.com": [5318], "hppd.la": [2053], "cd.init.ai": [2053], "sntscr.tv": [2053], "halebop.se": [7304], "smplnr.gy": [2053], "lee.to": [2053], "dble.co": [2053], "loyo.la": [2053], "law-s.in": [2053], "cln.gs": [2053], "digitaltransactions.net": [4567], "rtby.co": [2053], "www.jewishvirtuallibrary.org": [20538], "metrics.autotrader.co.uk": [19458], "hackthe.computer": [7290], "bbliss.in": [2053], "www.apps1.lbhf.gov.uk": [9218], "nordicsemi.com": [11673], "avgr.co": [2053], "www.imine.co": [8151], "static.artskills.com": [1258], "www.avatarpicker.com": [1485], "securedcards.capitalone.com": [2878], "go.hffk.info": [2053], "cail.biz": [2053], "ss3.vas-hosting.cz": [21896], "www.bethblog.com": [19144], "www.fifengine.net": [5686], "debian-facile.org": [4348], "wrts.pm": [2053], "tigermobil.es": [2053], "resadmin.lsbu.ac.uk": [9252], "www.manisec.com": [10098], "counter.cnblogs.com": [19743], "www.campaignforhouston.com": [19634], "www.comparitech.com": [3578], "inx.press": [2053], "plk.me": [2053], "tejia.taobao.com": [16206], "www.experiencedays.co.uk": [5616], "theory.mondediplo.com": [10729], "paymants.snelis.com": [15279], "*.scu.edu": [14529], "www.pingless.co.il": [12903], "voyage-prive.co.uk": [18151], "tabee.mobi": [2053], "nustarz.com": [11761], "blog.dandb.com": [4214], "ptw.im": [2053], "infile.com": [8240], "cdn.nomensa.com": [11658], "*.tut.fi": [16132], "www.scapsync.com": [14325], "www.warmcat.com": [18276], "jessep.co": [2053], "m.slovari.yandex.kz": [18957], "cp.win-is.com": [18624], "media.dreamhost.com": [4844], "da-dk.facebook.com": [5733], "www.serversaurus.com.au": [14863], "iml.osu.edu": [11959], "portuguesbrasileiro.istockphoto.com": [20505], "wee.sk": [2053], "www.redditmedia.com": [13924], "docs.scipy.org": [14616], "cdnbakmi.kaltura.com": [8927], "myvigor.draytek.com": [4842], "ttmeiju.com": [21808], "otazky.skylink.cz": [15183], "wrkbx.com": [2053], "www.phusionpassenger.com": [12866], "searchmarketingnow.com": [16635], "www.hkex.com.hk": [7629], "kotb.co": [2053], "nl.media.rbth.ru": [14280], "nojork.us": [2053], "motherjones.com": [10794], "esuppliers.ic.nhs.uk": [11102], "url.krakn.xyz": [2053], "botaanikaaed.ut.ee": [17347], "ann.cc.ntu.edu.tw": [11160], "securitypsa.com": [2053], "*.markit.com": [10187], "www.onapp.com": [12007], "c.palbertus.ch": [2053], "ruck.ly": [2053], "admatic.com.br": [645], "dailyedge.ie": [19846], "www.law.cuny.edu": [3247], "magister.unizar.es": [17643], "sa.gumtree.com": [20296], "cuusoo.com": [4018], "camp16.faith": [2053], "st.dynamicyield.com": [4926], "git.netfilter.org": [11417], "acr.org": [978], "www.rw-online.co.uk": [21348], "kontakt.gmx.net": [6467], "welcome.logmein.com": [9711], "help.pushbullet.com": [13480], "alrt.co": [2053], "dev.bananian.org": [1680], "*.wlxrs.com": [18209], "www.shoporca.com": [21430], "www.teamsciencetoolkit.cancer.gov": [2864], "i01.lw.aliimg.com": [854], "www.syoparekisteri.fi": [15998], "www.sba-research.org": [14318], "e17.xhamsterpremiumpass.com": [18817], "htsab.co": [2053], "schallert.com": [14588], "pld-linux.org": [12471], "login.whitelabeldating.com": [22018], "knight.stanford.edu": [15636], "en.crupzi.com": [2053], "googlecode.com": [6972], "fetlife.com": [5876], "www.alfabank.ru": [842], "lkml.org": [9241], "content.truste.com": [16111], "ona.gov.au": [11947], "s.outpic.com": [2053], "johnlewis.ie": [8759], "www.gmu.edu": [6666], "www.trakt.tv": [21777], "at.strat.tools": [2053], "parks.coffee": [2053], "www.wind.com.gr": [18636], "careandsupportforyou.halton.gov.uk": [20308], "layn.es": [2053], "www.sanger.ac.uk": [18488], "www.archive-it.org": [1202], "www.osdv.org": [11865], "theproxypirate.pw": [21709], "www.iyouport.com": [8030], "*.shopstyle.co.uk": [14965], "search.motherpipe.com": [10799], "sbst.be": [2053], "mobil.idnes.cz": [20425], "earthlink.biz": [5106], "jpapa.me": [2053], "images.noteapp.com": [11719], "evts.io": [2053], "go.mehdi.it": [2053], "bldk.nl": [2053], "justgive.org": [8844], "shibboleth.illinois.edu": [17544], "www.vizzit.se": [18094], "uk.patronbase.com": [21083], "rrts.com": [13684], "www.rhombus-tech.net": [14098], "rabuja.xyz": [2053], "clxt.org": [2053], "cnp.mn": [2053], "www.browsec.com": [19596], "odn.io": [16841], "afearl.es": [2053], "easyd.us": [2053], "app-us-lb2.resrc.it": [13832], "www.f9.fi": [5661], "you.38degrees.org.uk": [145], "data.norge.no": [11680], "vtechworks.lib.vt.edu": [18031], "buy.courierpost.co.nz": [3784], "benaughty.com": [1773], "cpdmn.com": [2053], "nsomniture.nvidia.com": [11174], "wantickts.co": [2053], "ajax.aspnetcdn.com": [394], "lucidchart.com": [9809], "www.mondediplo.com": [10729], "www.pdftoword.com": [12440], "hlwd.ly": [2053], "www.aqmen.ac.uk": [19409], "affiliates.walmart.com": [18260], "tcds.mobi": [2053], "files.espiv.net": [20058], "domenkozar.com": [4759], "wodpla.net": [2053], "mt.libreoffice.org": [9471], "s.kamekura.org": [2053], "whoisaccuracy-portal.register.com": [13965], "mysupport.symantec.com": [15969], "openstack.org": [12173], "comix.jd.com": [8571], "hsbc.co.jp": [20373], "lv.hertzequip.com": [7511], "tune.yandex.by": [18953], "t.gan.co": [2053], "hpy.tax": [2053], "img03.taobaocdn.com": [16207], "tnbc.tanomail.com": [16202], "trh.la": [2053], "theory.org": [16613], "sessioncam.com": [14875], "boxopus.com": [2312], "gdhm.us": [2053], "volgograd.beeline.ru": [1801], "www.norman.com": [11685], "www.overclock.net": [12367], "dhi-scotland.com": [19910], "www.dephormation.org.uk": [4452], "bouch.co": [2053], "at.larron.se": [2053], "oldbayproxy.eu": [21709], "wbr.bike": [2053], "poweredbypaquin.com": [13225], "stars.chromeexperiments.com": [3177], "www.mystar.org.uk": [20865], "manage.www.namecheap.com": [11208], "bbgue.com": [2053], "link.vfmz.info": [2053], "broadland-consult.objective.co.uk": [20979], "lcef.us": [2053], "*.sc.edu": [14323], "internetessentials.com": [20477], "chat.wikileaks.org": [18590], "blog.openlibrary.archive.org": [8419], "www.yoursav.com": [19044], "mail2.virginmedia.com": [18028], "maj.to": [2053], "www.corbanworks.com": [3726], "calligra.org": [2813], "quill.link": [2053], "www.playosmo.com": [12328], "uakjobs.com": [17520], "spectrumbusinessinsights.com": [15499], "eme.ssa.gov": [21552], "www.naughtyshowreviews.com": [11297], "perfo.in": [2053], "u.sbhat.me": [2053], "static3.twilio.com": [17152], "thestamp.umd.edu": [17549], "ntv.ac": [2053], "t.vallier.ca": [2053], "www.bet365.com": [1863], "cooliris.com": [3710], "feeds.trendmicro.com": [16993], "hrz.io": [2053], "gettyimages.it": [6741], "to.y59.jp": [2053], "sctr.co": [2053], "lichfielddc-consult.objective.co.uk": [20979], "pdev.co": [2053], "*.fasthosts.co.uk": [5801], "to.junkpit.net": [2053], "www.cccure.org": [2599], "astatt.re": [2053], "enisa.europa.eu": [5526], "gettyimages.in": [6741], "wac.51d5.edgecastcdn.net": [13486], "*.bromley.gov.uk": [2414], "www.twittercounter.com": [17167], "e30.cc": [2053], "content.jwplatform.com": [8614], "eventp.tv": [2053], "blob.freent.de": [6300], "tuxingsun.net": [17086], "uoregon.edu": [17277], "filenuke.com": [5907], "recruitmentplatform.com": [13886], "www.viveris.fr": [18091], "c.cldlr.com": [3281], "xiw.cx": [2053], "explosm.net": [5621], "*.synopsys.com": [15993], "gogeek.us": [2053], "app.qlogo.cn": [13534], "golin.co": [2053], "popcorn.webmaker.org": [10852], "on.ktnv.com": [2053], "cnrd.dk": [2053], "scp.la": [2053], "jcullem.co": [2053], "www.hsbc.com.eg": [20379], "www.tookapic.com": [16824], "www.ultimateeditionoz.com": [21844], "libreoffice.collabora.co.uk": [3481], "vonage.my": [2053], "knab.nl": [9091], "partnerfocus.mcafee.com": [10282], "www.mailigen.com": [10052], "my.101domain.com": [15], "greggoodman.me": [2053], "escan.usa.cc": [2053], "cardtocalluat.courierpost.co.nz": [3784], "pinnovat.es": [2053], "business.upc.cz": [17278], "backoffice.cdn.arkena.com": [1235], "jinzhoushi.meituan.com": [10405], "orng.be": [2053], "mail.gibraltar.at": [20236], "www.totalbarcode.com": [16871], "support.fastwebhost.com": [5795], "z.spotsmath.com": [2053], "www.protu.fi": [13377], "www.zenmate.nl": [19133], "sndstr.ms": [2053], "www.uhhospitals.org": [17401], "m.fastcompany.com": [5786], "kbuzz.fr": [2053], "po.st": [13056], "gdatasoftware.com": [6410], "can2.biz": [2053], "get.bekind.gift": [2053], "mybizonline.org": [2053], "www.surveys.cardiff.ac.uk": [2895], "www.scaleengine.com": [14565], "moil.in": [2053], "analytics.sparkfun.com": [15471], "today4you.in": [2053], "p-360.de": [2053], "cdn.content.compendiumblog.com": [3581], "beacon-apac-hkg1.rubiconproject.com": [14247], "www.gotowebinar.com": [6914], "v.topmall.ua": [2053], "www.spiderwebsoftware.com": [15521], "solo.bodleian.ox.ac.uk": [17557], "enda.run": [2053], "mobile.bahn.de": [1660], "test-ipv6.cz": [16404, 16405], "stnthro.ch": [2053], "pic.yify-torrent.org": [18920], "ottsens.com": [2053], "sitesafe.org.nz": [15125], "forum.hosts-file.net": [20365], "swi.ucollege.wustl.edu": [18290], "www.alpnames.com": [910], "ims-dm.com": [8387], "www.samgentle.com": [14496], "unb.lu": [2053], "africajobs.g4s.com": [20194], "www.eduserv.org.uk": [20011], "zalando.fr": [19094], "www.quikcallus.com": [13596], "mysalifree.info": [2053], "partner.just-eat.dk": [20565], "gs1.wpc.edgecastcdn.net": [5180], "i.dpavlik.cz": [2053], "zalando.fi": [19094], "i-d-images.vice.com": [17959], "agent.mail.ru": [10040], "sd.tl": [2053], "tvnz.co.nz": [16141], "shivm.ch": [2053], "cards.linaro.org": [9522], "asihub.com": [2053], "www.bardwilhome.com": [1713], "adoption.state.gov": [17345], "umwblogs.org": [17547], "2lr.co": [2053], "www.medikamente-per-klick.de": [10364], "mail.marmotte.net": [10191], "denuncia.uol.com.br": [17276], "ambiti0.us": [2053], "www.peekvids.com": [21101], "link.cajs.co.uk": [2053], "bemobile.ua": [1776], "shopyouth.co": [2053], "static.mydrive.ch": [11018], "utne.ws": [2053], "indico.cern.ch": [2632], "app-us.resrc.it": [13832], "bephoto.id": [2053], "esd.kent.ac.uk": [17603], "www.cksource.com": [2679], "www.bd.alibaba.com": [850], "si.se": [14356], "s.scrbliv.me": [2053], "hgsd.us": [2053], "shtuff.it": [14993], "j-sca.link": [2053], "chemistry.georgetown.edu": [6668], "www.groenlinks.nl": [7088], "shkykns.co": [2053], "lsh.li": [2053], "dashlane.com": [4241], "2012.de.pycon.org": [13492], "www.mincommsy.uni-hamburg.de": [9911], "www.free.com.tw": [20160], "cdn4.openculture.com": [12204], "cbcblueprint.com": [2579], "wm-p.org": [2053], "mix-computer.de": [9919], "haidarax.ml": [2053], "cdn.at.ai": [836], "kigo3kombit.kmd.dk": [20612], "conghua.meituan.com": [10405], "shop.orangechickenlove.com": [12560], "riscure.com": [14132], "teddyonlinejudge.net": [16313], "b.s.thebrighttag.com": [2379], "begbiz.com": [2053], "images.vice.com": [17959], "www.attac.at": [1370], "www.ikeepincloud.com": [7897], "path.com": [12662], "*.plus.net": [13051], "on.tnfans.co.uk": [2053], "www.myhealthonline-emisweb.wales.nhs.uk": [11102], "igvita.com": [8121], "finaid.georgetown.edu": [6668], "2gwc-kbhkort.kk.dk": [8883], "forums.manageengine.com": [10103], "gitlab.com": [6798], "dl.stgraber.org": [15605], "app.convertexperiments.com": [19784], "subscribe.wired.com": [18664], "eu.api.kimsufi.com": [9045], "ba.rboza.com": [2053], "d.adsbyisocket.com": [8521], "lczine.com": [2053], "rjpho.to": [2053], "on.hoards.com": [2053], "mfwk.me": [2053], "experts.giffgaff.com": [20237], "signalblog.stanford.edu": [15635], "www.epoxate.com": [5431], "www.bartleby.com": [1732], "www.thepiratebay.run": [21215], "new.aviationweather.gov": [19463], "snapchats.me": [2053], "golucid.co": [6918], "chat.zuno.cz": [19077], "log.outbrain.com": [12355], "archive.fosdem.org": [6187], "ar.norton.com": [11703], "hn.premii.com": [7581], "www.jcore.fr": [8568], "g0g0.me": [2053], "messagingengine.com": [10468], "l.e-net.info": [2053], "proboards.com": [13338], "doku.spline.inf.fu-berlin.de": [6307], "cno.org": [3487], "buzzhosting.org": [2538], "hmztr.com": [2053], "eclipso.de": [5152], "rbslink.ca": [2053], "www.openstat.com": [21022], "ariejan.net": [1229], "oliahad.co": [2053], "investor.visa.com": [16648], "*.perl.org": [12788], "mrktng.tips": [2053], "mdc-b.de": [2053], "barrett.gr": [2053], "www-it.desy.de": [4479], "slf.se": [14369], "sns-static.aolcdn.com": [363], "join.queervids.com": [13579], "addiction-partnership.wustl.edu": [18290], "cdn.evbuc.com": [5542], "peppermintos.com": [21107], "slf.sh": [2053], "springdale.math.ias.edu": [7815], "emssoftware.com": [20035], "www2.redbridge.gov.uk": [13916], "plctwlttler.com": [2053], "wordstat.yandex.com.tr": [18954], "www.libraryfreedomproject.org": [9465], "crtc.io": [2053], "gp.meituan.com": [10405], "www.flatlinesecurity.com": [6023], "mondoplayer.net": [2053], "ogem.co": [2053], "oyb.kr": [2053], "a4.aztravel.xyz": [2053], "school.planeta.ru": [21143], "kipm.cc": [2053], "trdu.de": [2053], "jgaw.at": [2053], "www.jive.com": [8732], "www.epochstats.com": [5429], "testpilot.dinside.no": [19924], "www.civica.co.uk": [19719], "autozot.com": [2053], "www.cadlink.com": [19626], "upload.api.weibo.com": [18482], "*.secure.epi.org": [5160], "*.bpa.gov": [2251], "www.e-nls.com": [11592], "bop.li": [2053], "r.hbt.li": [2053], "neonarca.de": [2053], "emm.samsungknox.com": [14507], "docs.go.cd": [20259], "www.mikrocontroller.net": [10575], "www.cei.org": [3584], "www.tetadrogerie.cz": [21684], "spcie.de": [2053], "ads.gunosy.com": [7151], "thepiratebay.gg": [21709], "hye.tech": [2053], "*.shop.sandsmedia.com": [14449], "fut.bo": [2053], "direkt.postbank.de": [13186], "partners.tune.com": [21812], "pass.tanx.com": [21661], "m.salespro.co": [2053], "www.quidsi.com": [21244], "assets.fiercemarkets.net": [5891], "portal.lsbu.ac.uk": [9252], "husmaf.us": [2053], "www.oxfam.org.uk": [12393], "why-opencomputing.com": [22021], "i.fnn.kr": [2053], "on.gofbw.com": [2053], "bestgifs.makeagif.com": [20740], "plus.sandbox.google.com": [6962], "go.oust.me": [2053], "www.insight.bn-mclp.org": [2215], "lnks.era-go.com": [2053], "interac.ca": [8384], "www.falkirk.gov.uk": [5754], "samgentle.com": [14496], "mangaupdates.com": [10113], "click.showcase-tv.jp": [14985], "www.piratepartei.lu": [21134], "compassionjournal.stanford.edu": [15635], "playlists.net": [13028], "sc.org": [2053], "daim.co": [2053], "p11.vc": [2053], "sexysitehosting.com": [14890], "www.snacktools.com": [15266], "usessh001.com": [17716], "try.mongodb.org": [10742], "imstore.bet365affiliates.com": [19518], "subscribe.newscientist.com": [11490], "i8s.us": [2053], "jcso.to": [2053], "secure.kurier.at": [9194], "www.megaglest.org": [10394], "hbls.eu": [2053], "taich.in": [2053], "uwb.edu": [17356], "open.spotify.com": [15548], "lutube.leeds.ac.uk": [17604], "www.alchemyglobal.com": [824], "ejus.tc": [2053], "confluence.richrelevance.com": [14104], "moodle.uowplatform.edu.au": [17636], "audtd.com": [1400], "wbx.de": [2053], "codepunker.com": [3412], "oesp.horizon.tv": [21865], "yourls.org": [22113], "vjv.cc": [2053], "fabr.me": [2053], "*.spire.umass.edu": [17551], "selfcare.tiscali.it": [16770], "unilever.com": [17474], "2314.at": [2053], "u.dai.gr": [2053], "wiki.freifunk.net": [6311], "www.dsc.soic.indiana.edu": [8215], "go.spyluv.com": [2053], "proxytpb.nl": [21709], "rdhn.cf": [2053], "forge.ocaml.org": [11811], "0p.io": [2053], "cool.haxx.se": [20319], "irclogs.wesnoth.org": [18500], "ir.demandmedia.com": [4421], "www.southribble.gov.uk": [21515], "www.webmaster.yandex.com": [18956], "hslu.ch": [7728], "si2.rgstatic.net": [13655], "wwwow.osumc.edu": [11875], "commandoboxing.com": [3541], "www.lnf.infn.it": [7913], "i-rn.fr": [2053], "fr.xhamster.com": [18816], "4rx.com": [180], "youburnwith.us": [2053], "korb.io": [2053], "imagerights.com": [8128], "jt.mu": [2053], "10joycasino.com": [20552], "argentdata.com": [19413], "dn-st.oss.aliyuncs.com": [19346], "at.official.gr": [2053], "www.peertransfer.com": [12730], "cxense.com": [2753], "cdn.shoutlet.com": [21436], "toyzil.la": [2053], "mitey.us": [2053], "l.t-jark.de": [2053], "adeck.co": [2053], "fachschaft.informatik.fh-nuernberg.de": [16428], "saymedia.com": [14558], "*.liftsecurity.io": [9498], "*.pssl.com": [12503], "bsub.co": [2053], "www.ssb.no": [14409], "plsn.me": [2053], "wwpi.info": [2053], "support.leadpages.net": [9351], "secure.smallbits.com": [15226], "www.sans.edu": [14309], "epgy.stanford.edu": [15635], "secure.tt": [2053], "zde.ukaz.info": [2053], "www.wiremask.eu": [22037], "clocks.yandex.by": [18953], "a.faaacts.com": [2053], "thesixthaxis.com": [16503], "youtube.ca": [19016], "tdc-wholesale.com": [16051], "www.onlinepayment.com.my": [9940], "picviewers.co": [2053], "simplepickup.com": [15068], "www.mooshi.com.au": [10768], "govtrequests.facebook.com": [5733], "netbetsport.fr": [11377], "*.brightoncollectibles.com": [2385], "go.omf.org": [2053], "mmlearn.me": [2053], "cuca.illuminateed.com": [20430], "mtv.fi": [20849], "hms.media": [2053], "sfc1881.uk": [2053], "*.publicradio.org": [10618], "arranca.org": [1248], "images.11main.com": [28], "telfordandwrekin.greenparty.org.uk": [7052], "www.9to5mac.com": [247], "*.mixi.jp": [10657], "eventmanagement.wustl.edu": [18290], "wsgr.to": [2053], "emsisoft.com": [5325], "catchthemes.com": [19656], "*.merchantquest.net": [10453], "www.nanopool.org": [11220], "www.trainingcenter.nih.gov": [11241], "www.insecure.ws": [8312], "media.tmz.com": [16087], "bandce.info": [2053], "l.koeltzs.ch": [2053], "arms.crimestoppers-uk.org": [19817], "bluemountain.com": [2195], "www.cintec.cuhk.edu.hk": [2747], "bern.usembassy.gov": [21879], "www.torrenthounds.com": [16857], "knct.club": [2053], "www.tylercipriani.com": [17181], "thewordpro.com": [18732], "gloucestershire.objective.co.uk": [20979], "login.alibaba.com": [850], "as00.estara.com": [5472], "s.ynet.io": [18994], "ylilauta.org": [22104], "linx.la": [2053], "www.anon.click": [1081], "wiki.yabause.org": [18932], "urtm.co": [2053], "nigpl.us": [2053], "clane.in": [2053], "s.vdoga.me": [2053], "www.talemetrytoday.com": [16173], "fi.boardgamearena.com": [2219], "owen.in": [2053], "www.remotecoder.io": [13995], "dillonscott.co": [2053], "www.ibqonline.com": [8049], "enhr.dict.cc": [4536], "on-msn.com": [2053], "sb-bs.link": [2053], "www.weburg.me": [21997], "images-tv.adobe.com": [655], "wicworks.nal.usda.gov": [17495], "youtube.cz": [19016], "365mkup.co": [2053], "*.static.collegehumor.cvcdn.com": [3490], "parents.usc.edu": [17564], "www.tancity.de": [16194], "img10.360buyimg.com": [136], "djz.io": [2053], "zuki.ie": [2053], "cyberphoto.fi": [4035], "partners.overdrive.com": [12364], "ads.adriver.ru": [573], "chromedata.com": [3176], "jpackage.org": [8596], "raaf.gov.au": [2053], "www.elektro-paloucek.cz": [20024], "careers.g4s.com": [20194], "to.babaa.es": [2053], "ru.support.tomtom.com": [16812], "www.stgraber.org": [15605], "swoo.sh": [2053], "base-valid.com": [1734], "www.netgo.hu": [11385], "agent.blackphone.ch": [2100], "uptobox.com": [21872], "static.arxiv.org": [1188], "rupa2.co": [2053], "api.authbox.io": [1445], "track.affiliate-b.com": [739], "order.upc-cablecom.ch": [21865], "s.vizu.lt": [2053], "event.sovcombank.ru": [21516], "ns-cdn.neuweb.biz": [11476], "diasp.org": [4528], "student.gototraining.com": [6913], "www.businesscompanion.info": [2517], "recipe.piliapp.com": [12887], "seminary.lds.org": [16485], "d.seal.fyi": [2053], "*.inpros.net": [8308], "sustain.wustl.edu": [18290], "uttley.in": [2053], "hf.meituan.com": [10405], "ca.boardgamearena.com": [2219], "use.cloudtrax.com": [3356], "apiportal.whitepages.com": [18555], "recruitment.powys.gov.uk": [21183], "ohlc.us": [2053], "www.melbourneaquarium.com.au": [10409], "prod1si.click4assistance.co.uk": [3301], "www.bestvpn.com": [1860], "cmptch.ca": [2053], "clock.yandex.kz": [18957], "s12.cnzz.com": [3391], "popsci.com": [13135, 13136], "boutique.rts.ch": [21550], "saga.to": [2053], "www.cryptbin.com": [3918], "thomasnet.co": [2053], "help.zoho.com": [19202], "gizmobo.lt": [2053], "programm.froscon.org": [6210], "www.cp.fonality.com": [3812], "zezu.xyz": [2053], "yp4h.osu.edu": [11959], "fundusze-emerytalne.money.pl": [10734, 10735], "jerm.co": [2053], "yeni.asia": [2053], "affiliatewindow.com": [4569], "emailvision.com": [5296], "forum.eset.com": [5463], "security.symantec.com": [15969], "linkto.pro": [2053], "www.darktrace.jp": [19853], "t.vun.gl": [2053], "couchsurfing.org": [3768], "www.r66t.com": [13625], "marketo.net": [10179], "car.tmall.com": [21748], "rsnd.co": [2053], "f52.co": [2053], "ryangrim.es": [2053], "webbyawards.com": [18407], "cbsi.am": [2053], "grupfoni.com": [7112], "media9.congstar-media.de": [3641], "www.firstintegrity.com": [5992], "pipr.me": [2053], "chefexp.com": [2053], "rcm-na.amazon-adsystem.com": [950], "blackducksoftware.com": [2097], "rpc.mail.aol.com": [361], "gdata.co.jp": [6410], "israh.es": [2053], "www.montyprogram.com": [10757], "cur.lt": [2053], "sans.edu": [14309], "www.aboutads.info": [462], "support.lis.illinois.edu": [17544], "samknows.*": [14495], "www.donmai.us": [19947], "www.charlie.bz": [3072], "dmtr.us": [2053], "mail.bluepoint.com.ph": [2207], "www.jasondavies.com": [8671], "thefrozenfire.com": [16602], "360tourview.eu": [2053], "www.hoorn.nl": [11324], "url.kar.gl": [2053], "nodesource.com": [11645], "plexapp.com": [13037], "vt633.tk": [2053], "c.sg.msn.com": [9961], "notabug.org": [11712], "www.ageriul.asso.ulaval.ca": [17515], "on.uc.edu": [2053], "go.schieb.de": [2053], "goldsborowebdevelopment.com": [6944], "btguard.com": [1612], "www.floek.net": [6053], "ijreview.com": [7894], "www.kti.admin.ch": [21629], "guya.co.uk": [2053], "www.qxl.dk": [13524], "ve.ntu.re": [2053], "zoom.li": [2053], "inspiredgifts.unicefusa.org": [17467], "exsila.ch": [20081], "bmmm.fr": [2053], "solo-prd.bodleian.ox.ac.uk": [17557], "go.plixer.com": [2053], "hr.boardgamearena.com": [2219], "guide.alibaba.com": [850], "l.shop63.co.za": [2053], "lsf.htwg-konstanz.de": [7247], "ln.rs": [2053], "go.ca-de.com": [2053], "www.mycp.co.nz": [12234], "yank.life": [2053], "vrsl.nu": [2053], "thepiratebay.gy": [21710], "l.opdo.vn": [2053], "playstation.com": [13015], "tvnzzshop.ch": [20974], "l.loadx.io": [2053], "www.orwall.org": [12281], "www.mobile.yandex.com.ua": [18955], "www.stunnel.org": [15800], "newcastle-staffs.gov.uk": [20896], "www.fact.group": [20089], "reviews.ti.com": [16413], "manual.limesurvey.org": [9517], "secure.freedesktop.org": [6243], "www.siff.net": [14359], "rylands.wigan.gov.uk": [18585], "gstv.media": [2053], "shazmakeup.com": [2053], "slu.tdconline.se": [16054], "chzb.gr": [2053], "www.illinoistech.org": [8116], "www.bioxfel.org": [1958], "fah.life": [2053], "www.esrb.org": [5063], "mic.cx": [2053], "kea.nu": [2345], "adpselect.com": [310], "spectrum.stanford.edu": [15635], "stefand.es": [2053], "blog.haproxy.com": [7175], "wdfr.li": [2053], "surreali.sm": [2053], "skylink.cz": [15183], "www.smyl.es": [14379], "gt2l.com": [2053], "ad.us-ec.adtechus.com": [679], "*.supadupa.me": [15866], "advmot0.com": [2053], "maas.ubuntu.com": [17382], "shenqiu.meituan.com": [10405], "*.legtux.org": [9394], "www.nccam.nih.gov": [11241], "www.fishwrapper.com": [5999], "www.sirrix.de": [15106], "l.bobbinz.co.uk": [2053], "safelinking.net": [14470], "pip.verisignlabs.com": [17916], "dev.mysql.com": [10970], "lith.io": [2053], "themler.com": [16610], "khabarovsk-kr.beeline.ru": [1801], "g.tquran-wh.org": [2053], "meetic.pt": [10382], "feide.no": [5858], "signup.network-maker.com": [11462], "asset-1.java.net": [8673], "www.tshare.to": [16120], "www.linux.com": [9563], "nybba2csg.bloomberg.net": [2171], "*.riverisland.com": [14139], "okiene.ws": [2053], "forum.gsmhosting.com": [7119], "xanmod.org": [22079], "*.covisint.com": [3805], "tpb.dashitz.com": [21215], "*.reimanpub.com": [13980], "fraglive.cl": [6213], "webmail.web4all.fr": [18349], "stratechery.li": [2053], "vera.cd": [2053], "cpro.baidustatic.com": [1662], "txplo.re": [2053], "tools.verisignlabs.com": [17916], "on.vetr.com": [2053], "moxi.ee": [2053], "oekostrom.web.de": [18347], "ra.revolvermaps.com": [21303], "www.about.me": [463], "g33k.us": [2053], "pbym.co": [2053], "ocien.tm.com.my": [16341], "m-fanshop.ch": [9853], "itf.is": [2053], "alumnispac.es": [2053], "junostatic.com": [8837], "openshift.redhat.com": [13909], "jitscale.com": [8729], "www.hello.tokyo": [7435], "3will.com": [2053], "forums.zoho.com": [19202], "www-rba.educ.cam.ac.uk": [17529], "www.telegeography.com": [16327], "blumen.tchibo.de": [16240], "preyproject.com": [13271], "monday.pm": [2053], "ssl-images.newegg.com": [11508], "pgraf.eu": [2053], "anz.com": [355], "go.anki.com": [2053], "my.psychologytoday.com": [13417], "git.xenomai.org": [18866], "hj.meituan.com": [10405], "uk2img.net": [17241], "lheld.de": [2053], "tanks.mail.ru": [10040], "www.getmymgmbalance.com": [6735], "fig.re": [2053], "gmocloud.com": [6460], "nypf.org.uk": [20971], "fabb.lu": [2053], "s.ppy.sh": [13232], "movmov.tk": [2053], "api.storify.com": [15752], "bit.ms": [2053], "pville.ca": [2053], "mail.sedo.de": [14786], "hot.curry.com": [2053], "login.vutbr.cz": [17814], "www19.pipni.cz": [12460], "www.bahrain.hsbc.com": [7233], "oe24.at": [11927], "dropship.amazon.es": [19370], "*.dealextreme.com": [4331], "drivethrurpg.com": [12029], "dingyue.taobao.com": [16206], "wonga.com": [18715], "goril4zvid.tk": [2053], "io-gw.vutbr.cz": [17814], "npo.gs": [2053], "oks.enaza.ru": [5332], "viram.net": [2053], "pbc.fyi": [2053], "s.simonwill.me": [2053], "startssl.us": [15660], "www.backchannel.com": [19474], "sdc-cordis.mainstrat.com": [10063], "asterix.uvt.nl": [16716], "edtr.ru": [2053], "woolworths.com.au": [18723], "www.codefisher.org": [3428], "www.liquidlight.co.uk": [9604], "i1.buimg.com": [16704], "ping.fm": [12896], "www.proxypirate.pw": [21709], "go.dwnld.me": [2053], "lucy.apache.org": [1125], "richmond.objective.co.uk": [20979], "boutique.lemonde.fr": [9348], "newsome.cc": [2053], "crep.so": [2053], "www.census-labs.com": [3001], "p-lnk.alni.info": [2053], "www.suttonhousingpartnership.org.uk": [21620], "vv20.net": [2053], "openfiler.com": [12232], "blog.zen.co.uk": [19129], "kaiserslautern.de": [8922], "ww2.wirral.gov.uk": [18672], "hearinglosscure.stanford.edu": [15635], "a-w.me": [2053], "spb.buzz": [2053], "me.a2gigs.com": [2053], "gohite.ch": [2053], "www.972mag.com": [242], "2med.me": [2053], "unisend.com.mx": [17484], "www.unclineberger.org": [17264], "www.av-comparatives.org": [410], "weboffers.co": [2053], "*.myjobscotland.gov.uk": [11027], "*.hbrstatic.com": [2998], "forgestaging.puppetlabs.com": [13460], "biointensivo.ourproject.org": [21044], "cdfx.us": [2053], "geneseephoto.com": [6647], "thsnd.me": [2053], "www.onelogin.com": [12035], "password.kuleuven.be": [8969], "neorea.ch": [2053], "lnk.a-kep.at": [2053], "boc.engineering.osu.edu": [11959], "online.pdf-tools.com": [21098], "fosscon.us": [6188], "coventry.firmstep.com": [20125], "jlvallejo.es": [2053], "forum.taobao.com": [16206], "m.irs01.com": [20498], "www.marxists.org": [10206], "i.openhouses.do": [2053], "entlh.ch": [2053], "semantic-mediawiki.org": [21407], "www.police.wustl.edu": [18290], "avangard.ru": [1478], "qcloud.dpfile.com": [19957], "joycasino10.com": [20552], "www1.mplayerhq.hu": [9949], "utrec.ht": [2053], "www.contrasterra.ru": [19782], "ent-na.uk": [2053], "onestop.umn.edu": [17554], "openwrt-mirror.lede-project.org": [20652], "huggies.com.au": [7747], "www.alumni.ox.ac.uk": [17557], "bauwerksinformation.htwk-leipzig.de": [7736], "business.forums.bt.com": [1593], "daph.in": [2053], "joshtriplett.org": [8784], "user.img.todaoferta.uol.com.br": [17276], "rtd.rt.com": [13702], "www.accuenmedia.com": [504], "secure.trust-guard.com": [17055], "teik.ml": [2053], "smartinsig.ht": [2053], "cancermodels.nci.nih.gov": [11241], "pccomponentes.com": [21092], "iono.fm": [8489], "library.ecc-platform.org": [4978], "netsparker.com": [11443], "www.bioinfobank.com": [1953], "secure.rockfile.eu": [21322], "promo.rhb.ch": [14091], "developers.urx.com": [17294], "tsmm.co": [2053], "chriscloses1.st": [2053], "tdre.me": [2053], "168.airelf.com.tw": [19331], "shexian.meituan.com": [10405], "tsurl.nl": [2053], "rol.im": [21325], "californiaunitedbank.com": [2809], "m.empireblue.com": [20033], "jet.is": [2053], "ced.sascdn.com": [15228], "wtrpr.tl": [2053], "icenter.stanford.edu": [15635], "www.parkerpen.com": [12611], "global.blackberry.com": [2102], "insta.hm": [2053], "snwz.link": [2053], "o.pmzo.com": [2053], "threatassessment.georgetown.edu": [6668], "www.5july.org": [204], "proxy.lib.ohio-state.edu": [11960], "socialshows.com": [15309], "*.allseenalliance.org": [877], "parama.cf": [2053], "aylj.ru": [2053], "survey.risingstack.com": [21312], "*.emc.com": [5028], "kronshtadt.beeline.ru": [1801], "gadf.ly": [2053], "itmetrics.stanford.edu": [15635], "www.mediaquestcorp.com": [10349], "latemodelres.to": [2053], "idrix.fr": [7854], "sap.hslu.ch": [7728], "*.qualtrics.com": [13562], "godvillegame.com": [6930], "cardfit.co": [2053], "*.tau.ac.il": [16041], "sidwe.bz": [2053], "click.vnote.hk": [2053], "courttheatre.org.nz": [19804], "kettering.objective.co.uk": [20979], "assetstest.acs.org": [966], "*.ssl.qhimg.com": [13531], "waeplus.co.uk": [18188], "vidarholen.net": [17972], "www.isv.liu.se": [9238], "s.cmcdn.net": [3386], "tv2.li": [2053], "z.shao.jp": [2053], "start.vtb24.ru": [21961], "1.atwill.com": [2053], "webplatform.org": [18376], "heinzmkt.in": [2053], "ifttt.com": [7872], "*.uci.edu": [17528], "publish.uic.edu": [17517], "nationalexpress.com": [11239], "adsby.webtraffic.se": [18463], "store.apple.com": [1160], "go.pk-rocks.com": [2053], "www.heusden.nl": [11324], "*.frieslandbank.nl": [6337], "bydleni.idnes.cz": [20425], "tubeoffline.com": [17090], "*.limun.org": [9520], "o2online.de": [11801], "ayyildiz.de": [1518], "c-js.co.uk": [2053], "www.elatinos.com": [5026], "www.uplay.ubi.com": [17678], "taxactonline.com": [16234], "corporate.navteq.com": [11061], "www.48ertandler.wien.gv.at": [22025], "help.smartertools.com": [15241], "bwdlibraries.libraryebooks.co.uk": [20677], "study.163.com": [42], "partner.ncloud.dk": [11308], "www.thecthulhu.com": [16600], "www.freepracticetests.org": [6274], "hinesapp.com": [2053], "txt.msg.so": [2053], "gfield.me": [2053], "yemeksepeti.com": [18980], "zerve.com": [19164], "bokelskere.no": [2237], "brlnt.co": [2053], "i-2.info": [2053], "*.arizona.edu": [17585], "*.img.digitalriver.com": [4566], "i-ph.me": [2053], "community.developers.thomsonreuters.com": [16650], "stony.fm": [2053], "www.compose.io": [3590], "fnsz.co": [2053], "youtube.com.jo": [19016], "developer.github.com": [6801], "datacenterworld.com": [4269], "cs.marinsoftware.com": [10161], "kvue.tv": [2053], "form.sk.mbank.eu": [9888], "srm.de": [14406], "seatra.de": [2053], "slo.ms": [2053], "on.mi4p.info": [2053], "studentchaptersreview.acs.org": [966], "dmtracking2.alibaba.com": [850], "elearning.nursing.osu.edu": [11959], "videos.toypics.net": [21923], "m.dailykos.com": [4194], "www.hs-esslingen.de": [7585], "s.poin.co": [2053], "vuitton.lv": [2053], "ticketservice.zdf.de": [22127], "rosw.us": [2053], "magik.ml": [2053], "bamdan.uk": [2053], "www.keepassx.org": [8987], "menus.livingsocial.com": [9679], "scott.arciszewski.me": [1210], "land-der-ideen.de": [9292], "awkn.us": [2053], "jeadvoca.at": [2053], "gni.me": [2053], "www.lurkmore.net": [9837], "movie-ngur.tk": [2053], "downloads6.mamp.info": [20744], "favz.me": [2053], "www.broadcasthe.net": [2408], "m-ent.biz": [2053], "taym.co": [2053], "srtfl.io": [2053], "www.thinkpad.com": [9409], "domo.ly": [2053], "lists.illinois.edu": [17544], "skatteverket.se": [15147], "fpmaps.com": [2053], "censys.io": [3002], "sipb.mit.edu": [9916], "projectmeshnet.org": [13367], "formacionpermanente.uned.es": [17446], "www.flightglobalimages.com": [6036], "procurement.usc.edu": [17564], "services.amazon.co.uk": [19365], "mxpt.co": [2053], "belpino.se": [1822], "archangelsk.rt.ru": [13703], "bsoj.co": [2053], "manutan.fr": [10129], "frallc.com": [5705], "www.cirt.net": [2669], "www.origin.digicert.com": [4556], "heyaa.pl": [2053], "*.discovernetwork.com": [4638], "fpgroup.foreignpolicy.com": [6142], "screenit.com": [14648], "www.telekom.hu": [10030], "hd-site.com": [2053], "www.gnucitizen.org": [20258], "kindlescout.amazon.com": [952], "gc-pl.co": [2053], "blog.lenovo.com": [9409], "taylorbarr.co": [2053], "pmsq.it": [2053], "leam.info": [2053], "dcohen.xyz": [2053], "howtowriteabookasap.com": [6838], "02.imgmini.eastday.com": [5119], "da.boardgamearena.com": [2219], "justclicknow.ca": [2053], "*.rarbg.com": [21257], "eckig.es": [2053], "www.glowing.com": [6874], "button.flattr.com": [6025], "d-eship.com": [2053], "dplk.cf": [2053], "boulle.co": [2053], "istlsfastyet.com": [8511], "marinsoftware.de": [10160], "g4.tv": [2053], "i3a.unizar.es": [17643], "ncp-e.com": [20882], "ko.boardgamearena.com": [2219], "softperfect.com": [15344], "fedshirevets.gov": [20102], "andre.hemk.es": [7454], "2014.wooconf.com": [18716], "iconfindr.com": [2053], "honors.utdallas.edu": [17349], "polleverywhere.com": [13105], "www.starmotorcycles.com": [15641], "evaluations.state.gov": [17345], "www.cpanel.com": [2708], "lib.calpoly.edu": [2806], "s.twimg.com": [17153], "fmuth.beer": [2053], "qrd.qualcomm.com": [13558], "axosoft.com": [1517], "fatv.la": [2053], "trac.ubuntuusers.de": [17383], "cdn.evidon.com": [5565], "myaccount.hackney.gov.uk": [7287], "modsecurity.org": [10701], "mobile.umeng.com": [21847], "janedoz.es": [2053], "www.lichfielddc.gov.uk": [20681], "r.ealti.me": [2053], "vcommerce.com": [17873], "www.dmlp.org": [4120], "redant.link": [2053], "www.uni-kl.de": [17454], "go.random.re": [2053], "daryl.me.uk": [2053], "ato.gov.au": [1439], "liicr.nl": [2053], "www.xeromag.com": [18867], "www.harlandclarkewebsmart.com": [7339], "busoperations.inl.gov": [20462], "aon.io": [2053], "botbot.me": [2292], "mbank.pl": [9888], "j.hitoxu.com": [2053], "*.sae.kau.se": [8861], "labli.st": [2053], "www.powerdns.com": [13216], "mgn1.me": [2053], "tdm.pharm.buffalo.edu": [17583], "heyrecruit.me": [2053], "payments.valeofglamorgan.gov.uk": [17825], "dad.am": [2053], "webpsy.ch": [2053], "marionstar.com": [10165], "www.twisp.me": [17159], "www.vice.com": [17959], "www.lysator.liu.se": [9238], "zps.la": [2053], "*.o2.de": [16332], "j.alexmr.me": [2053], "philzimmermann.com": [12832], "partner.gmocloud.com": [6460], "www.commonsensemedia.org": [19760], "shr.ghosted.xyz": [2053], "ghrc.nsstc.nasa.gov": [11058], "www.ashford.com": [1287], "www.youtube.it": [19016], "www.kipoint.it": [9065], "theaa.com": [16481], "digitalnewsagency.com": [4577], "www.adlibris.com": [643], "wohnungsunternehmen.telecolumbus.de": [16329], "bedrift.get.no": [20229], "www.ekomi.co.za": [5020], "grssnbr.de": [2053], "gnccne.ws": [2053], "donate.icij.org": [7831], "jprh.de": [2053], "kiss.toshiba-tec.com.cn": [21765], "b.is-e.jp": [2053], "*.hcl.in": [7179], "yangzhong.meituan.com": [10405], "wld.mn": [2053], "go.psonar.com": [2053], "rcc.stanford.edu": [15635], "youtube.dk": [19016], "consult.peterborough.gov.uk": [12806], "cof.lu": [2053], "corporate.aldi.us": [338], "to.kisty.net": [2053], "b.brames.com": [2053], "ei.nl": [2053], "dynamics.com": [4927], "tjn.nz": [2053], "appdevelopermagazine.com": [1151], "robin.yt": [2053], "administration.thepensionsregulator.gov.uk": [21708], "fusma.de": [2053], "fschem.es": [2053], "ross.ma": [2053], "ipaddresslabs.com": [7935], "n.verbeke.co": [2053], "download.qfxsoftware.com": [13511], "billetten.dk": [1934], "*.telia.se": [16357], "*.channelintelligence.com": [3060], "n-4-2.dcs.redcdn.pl": [13919], "voidtools.com": [21943], "amlawye.rs": [2053], "backoffice.botscanner.com": [2293], "on.ramon82.com": [2053], "webrover.ru": [21995], "elfrn.co": [2053], "www.kazanfirst.ru": [20580], "lady.hao123.com": [20312], "*.and.co.uk": [4686], "cutler4.me": [2053], "support-en.upc-cablecom.ch": [21865], "oskins.com": [2053], "markete.rs": [2053], "i6.hitravel.xyz": [2053], "varuste.net": [17863], "goto.google.com": [6962], "dn4.im": [2053], "api.afeld.me": [19314], "www.bazaar.tf": [1756], "secure.migrosbank.ch": [10563], "bri.st": [2053], "my.everplans.com": [5557], "sfeg.co": [2053], "bill.relevate.ru": [13988], "rhp.cc": [2053], "msj.gs": [2053], "status.mediatemple.net": [10331], "6cp.ca": [2053], "static.trustedreviews.com": [17067], "litecoin.info": [9622], "www.jobs.barclays.co.uk": [1710], "geodacenter.org": [1231], "umlib.us": [2053], "www.kdoes.nl": [8985], "jamadu.ch": [3711], "www.balboa.io": [1670], "britishgas.co.uk": [2394], "fnrl.rip": [2053], "www.voog.com": [21948], "common.mutualofamerica.com": [10921], "secure.netistrar.com": [11431], "s.htc.com": [2053], "page.ly": [12535], "autodiscover.macfound.org": [9983], "yegne.ws": [2053], "agn.tl": [2053], "txt2.eu": [2053], "rcort.es": [2053], "firstdirect.com": [20127], "*.pirati.cz": [12939], "i.revelacnj.com": [2053], "www.tango.me": [16200], "on.breakline.us": [2053], "download.spdb.com.cn": [21526], "slm-assets2.secondlife.com": [14706], "fotp.ro": [2053], "yicheng.meituan.com": [10405], "cl.atcs.ms": [2053], "gusto.com": [7156], "nrth.it": [2053], "www.ugenr.dk": [17398], "*.bmmetrix.com": [2214], "www.easel.ly": [5110], "news.illinois.edu": [17544], "wiki.jasig.org": [8670], "ssp-rce.veeseo.com": [17880], "kopiosto.fi": [9133], "moo.bz": [2053], "hvac.mn": [2053], "www.gigaset.com": [6775], "itunes.swisscom.com": [15951], "www.vogogo.com": [21941], "hexchat.net": [20335], "m.office.co.uk": [11941], "donejs.com": [19946], "w2.sndcdn.com": [15278], "www.youtube.com.ar": [19016], "helpme.viber.com": [17956], "a.orkut.gmodules.com": [12313], "rms1.us": [2053], "dft.mnkys.io": [2053], "insir.is": [2053], "*.yoctoproject.org": [18995], "moscow.sci-hub.ac": [14615], "www.foodhub.co.nz": [6117], "yesil.co": [2053], "nearlyfreespeech.net": [11313], "acorns.com": [515], "myprofile.oracle.com": [12284], "seanpdent.com": [2053], "*.schetu.net": [14591], "autodiscover.eecs.berkeley.edu": [17526], "crocs.com": [3878], "indonesian.alibaba.com": [850], "pass.yandex.kz": [18957], "s.xodeus.dk": [2053], "conference.libreoffice.org": [9471], "moose.inl.gov": [20462], "digitalfiref.ly": [2053], "ec.consumerreports.org": [3665], "css.yuga.ru": [22121], "v4-alpha.getbootstrap.com": [6729], "l.mace.ws": [2053], "www.informahealthcarestore.com": [8269], "www.ovh.es": [12378], "eb.nu": [2053], "engineering.mit.edu": [9916], "www.heroup.com": [7470], "lilk.me": [2053], "evals.wustl.edu": [18290], "*.jeffnabers.com": [8695], "2frm.co": [2053], "capr.io": [2053], "www.platform.sh": [13003], "www.anonymousads.com": [1092], "www.surf.nl": [14433], "enroll.samsungknox.com": [14507], "firew.at": [2053], "www.bizland.com": [2082], "aka.ms": [335], "ssl-cdn-media.tmz.com": [16087], "16personalities.com": [47], "*.aspen.com": [1307], "on.roampod.com": [2053], "my.noctov.us": [2053], "sv.4.boardgamearena.com": [2219], "dfranke.us": [4172], "viciousre.co": [2053], "mmz.li": [2053], "ocio.osu.edu": [11959], "droidghost.ml": [2053], "ladsholidayguide.com": [20628], "cdn6.iconfinder.com": [8066], "www.scribusstuff.org": [21006], "www.wildlifesydney.com.au": [18608], "m.bilio.com": [1929], "*.fotki.com": [6191], "livelingua.com": [9662], "www.jmconnexus.com": [20541], "yich.meituan.com": [10405], "srv.cdn-asknet.com": [1303], "www.okcoin.com": [11827], "telerik-web-assets.com": [16351], "djf.me": [2053], "unrealircd.org": [17651], "webchat.jabber.at": [8620], "*.vegaspartnerlounge.com": [17882], "mscr.pt": [2053], "www.arbornetworks.com": [1193], "mahara.unizar.es": [17643], "fcglo.be": [2053], "sales.admin.cam.ac.uk": [17529], "masha.pe": [2053], "pic7.qiyipic.com": [20413], "albin.web.de": [18347], "stats.spydus.co.uk": [21546], "derrel.us": [2053], "s.onemapua.co": [2053], "pwdhash.com": [13490], "clicks.id": [2053], "www.messerfinancial.com": [10470], "zenmate.is": [19133], "jbrushwood.com": [2053], "service.upc.nl": [17280], "pogoda.yandex.com.ua": [18955], "lbcx.us": [2053], "n4l.nz": [2053], "pma.web4all.fr": [18349], "pinta-outlet.fi": [12913], "*.cyberwar.nl": [4052], "www.import.io": [20445], "d3.hitravel.xyz": [2053], "my.8d.cx": [2053], "info.giffgaff.com": [20237], "sexualviolence.wustl.edu": [18290], "flxr.co": [2053], "migrosmagazin.ch": [10567], "www.kabeldeutschland.com": [8912], "jasong.us": [2053], "portal.scanscout.com": [14577], "m.douban.com": [4802], "kel.by": [2053], "mymoustache.net": [10960], "btr-link.info": [2053], "1.kcls.org": [2053], "doileak.com": [4725], "newsroom.intel.com": [8358, 8359], "www.gdata.be": [6410], "visionairlines.com": [18065], "tvfo.co": [2053], "e360.link": [2053], "www2.physics.ox.ac.uk": [17557], "siff.net": [14359], "api.thebrighttag.com": [2379], "mcci.io": [2053], "secure.commbank.com.au": [3542], "lusternia.com": [20729], "lookbw.com": [2053], "it.johnshopkins.edu": [8760], "vinc.li": [2053], "luxresale.net": [2053], "www.registration123.com": [13967], "demo.owncloud.org": [12387], "antiviral.gawker.com": [6593], "pquent.in": [2053], "www.jua.com": [8609], "r131.us": [2053], "asset-5.soupcdn.com": [15416], "ngcomics.co": [2053], "enpl.dict.cc": [4536], "tv.jobindex.dk": [8746], "www.techxpress.net": [16277], "v.evbb.net": [2053], "wpgjets.co": [2053], "dmm.rocks": [2053], "pmyl.tk": [2053], "www.ibood.com": [8048], "portmorgan.com": [13159], "aacqa.gov.au": [267], "s.hsvcd.com": [2053], "nhq.se": [2053], "alitrip.com": [858], "f.money.chtah.net": [3187], "zoelife.biz": [2053], "fanhattan.com": [5768], "webstats.zdv.uni-mainz.de": [17611], "klient.ppl.cz": [12486], "*.duracellcloud.com": [4904], "haiku-os.org": [7294], "slm-assets0.secondlife.com": [14706], "tescoba.by": [2053], "signup.hasoffers.com": [7354], "dtribe.me": [2053], "www.plugunplug.net": [13047], "vtiger.com": [18161], "archy.re": [2053], "www.cdwg.com": [2623], "apwg.org": [1106], "quzhou.meituan.com": [10405], "monarc.ift.ulaval.ca": [17515], "www.pipl.com": [12916], "pss.united.com": [17498], "getstarted.uow.edu.au": [17636], "friend.weblogin.umich.edu": [17552], "salsanc.com": [2053], "www.panax.net": [12559], "uocoe.me": [2053], "bettersales.se": [1882], "tphar.ma": [2053], "cloud.r-project.org": [13621], "chmln.co": [2053], "plsiii.plsinfo.org": [12749], "csc.ncsu.edu": [11689], "webmail.domaindiscount24.com": [19940], "www.icehost.is": [8060], "skift.com": [21469], "piwik.documentfoundation.org": [16487], "www.jobfinder.dk": [8745], "myed.wachovia.com": [18236], "wearewizards.io": [18325], "esytt.com": [2053], "thef.net": [2053], "maps.aimpulse.com": [782], "www.judici.com": [8813], "bookie.deals": [2053], "www.bankrate.com": [1698], "links.neoid.es": [2053], "1upbox.co": [2053], "ufx.co": [2053], "www.gnu.pl": [6475], "i.snag.gy": [21487], "www.ilmasto-opas.fi": [8120], "*.chase.com": [3085], "cn.opera.com": [12252], "pt.wustl.edu": [18290], "ne.cr": [2053], "www.gemeenteberkelland.nl": [11324], "www.3dsupply.de": [160], "www.euroforum.com": [5518], "domainsbyproxy.com": [4755], "www.mikemasin.com": [10571], "static.wixstatic.com": [18685], "wsl.tv": [2053], "careers.stackoverflow.com": [15611], "www.barnardos.org.uk": [19486], "s-2.us": [2053], "jona.tw": [2053], "dinge.tips": [2053], "molevalley.objective.co.uk": [20979], "active24.cz": [19276], "roc4life.me": [2053], "intelligentexploit.com": [8366], "l.mettapsy.com": [2053], "offensivebits.com": [11936], "sav.cymru": [2053], "cdn0.sbnation.com": [14317], "*.systemcenteradvisor.net": [16014], "connect.facebook.net": [5732], "img.realty.mail.ru": [10040], "www.anpdm.com": [1094], "sarah.is": [2053], "www.chcidoo2.cz": [16332], "graphics.friendfinder.com": [6331], "spitf.re": [2053], "authbox.io": [1445], "tnrt.link": [2053], "be.avm.de": [1493], "www.verisign.com.br": [17915], "oodt.apache.org": [1125], "o00oo0o0illi.us": [2053], "www.igaming.biz": [7879], "init.unizar.es": [17643], "a5.sphotos.ak.fbcdn.net": [5816], "go.hbude.de": [2053], "www.laughingsquid.us": [9319], "is20.snstatic.fi": [14383], "www.pdu.edu": [13166], "spm.southwark.gov.uk": [15445], "cdn.culturesforhealth.com": [3988], "ollief.uk": [2053], "app.resrc.it": [13832], "ntlk.nl": [2053], "vpnglobe.com": [17793], "vida-sana.xyz": [2053], "www.flinkster.de": [20132], "debug.dingtalk.com": [19923], "toofishes.net": [16822], "drvk.ru": [2053], "jsk.tips": [2053], "api.autoscout24.ch": [1470], "my2.whatsbroadcast.com": [18535], "g.pedroq.org": [2053], "plarrys.co": [2053], "mvapich.cse.ohio-state.edu": [11958], "op-in.es": [2053], "lady.mail.ru": [10040], "www.neustar.com": [11474], "kncminer.com": [9090], "*.verzekeringssite.nl": [17940], "plastic.sc": [2053], "www.providesupport.ru": [13400], "bizhv.com": [2053], "planet.espiv.net": [20058], "*.mail2web.com": [15339], "www.grouponworks.com": [7105], "ielts.org": [7866], "s-brd.me": [2053], "lpc-afs.web.cern.ch": [2632], "brandnewbooty.com": [2333], "mirrorreaderoffers.co.uk": [10637], "www.zenmate.co.uk": [19133], "nd.edu": [17614], "blog.foreignpolicy.com": [6142], "zlra.co": [2053], "newark.webconsole.linode.com": [9547], "optim.ly": [2053], "careers.ageuk.org.uk": [19320], "stablelib.com": [15610], "*.billiongraves.com": [1937], "resweb.passkey.com": [12640], "extranet.wienenergie.at": [18582], "www.downloadhelper.net": [4821], "bituri.com": [2053], "www.polyu.edu.hk": [13116], "magicalbutter.com": [10024], "*.yourmoney.ch": [20574], "hdvn.ga": [2053], "majestic12.co.uk": [10064], "10x.news": [2053], "codeassass.in": [2053], "login.web.de": [18347], "www.crackstation.net": [3819], "pages.qualcomm.com": [13558], "www.digits.com": [4593], "static1.kikisso.com": [20594], "group.xakep.ru": [18839], "img.bol.de": [16433], "inno.im": [2053], "jiaohe.meituan.com": [10405], "www.osmand.cz": [12326], "forums.ouvaton.org": [12360], "ouya.tv": [11883], "shsling.me": [2053], "fstr.co": [2053], "x.ploki.me": [2053], "circularhub.com": [3216], "i22.me": [2053], "*.policymic.com": [13090], "verisign.ch": [17915], "variomedia.de": [17860], "*.homelessveterans.co.uk": [7623], "smartdo.tk": [2053], "yakutiya.beeline.ru": [1801], "www.adsl.by": [19302], "sec-sso.click-sec.com": [3300], "www.acnc.gov.au": [301], "notedcode.com": [11722], "shop.die-linke.de": [4538], "leapmotion.com": [9366], "flixfra.me": [2053], "www.multicore-devcon.com": [10888], "thrtf.org": [2053], "*.ua.edu": [17202], "findtbresources.cdc.gov": [19663], "christiene.ws": [2053], "www.kdenlive.org": [8984], "podfilter.de": [21157], "oh-b.tw": [2053], "www.gnuheter.com": [12986], "tr-add.com": [2053], "lendo.se": [9405], "icibarb.es": [2053], "mediafire.com": [10317], "static4.businessinsider.com": [2512], "skatelescope.org": [21466], "fs01.androidpit.info": [1048], "oxfordcc.co.uk": [21054], "babbel.com": [1631], "mobify.com": [10681], "hon.ch": [7223], "gvnkrlmr.de": [2053], "*.snapengage.com": [15273], "*.catalysthost.com": [2956], "21r.de": [2053], "theticketfactory.com": [16685], "superuser.com": [15611], "qa.fastmail.fm": [5804], "heroku.com": [7471], "d3k.me": [2053], "lists.nic.cz": [11572], "nevistashealth.com": [11479], "pop.claranet.de": [3271], "hbid.org.uk": [2053], "nhs.uk": [11102], "asept.co": [2053], "dinsr.uk": [2053], "deve1op.net": [2053], "kiere.nz": [2053], "labintel.cnrs.fr": [6314], "nlbb.engineering.osu.edu": [11959], "kaneva.com": [8932], "sda.so": [2053], "tap.tc": [2053], "clients.kickassvps.com": [9029], "app.fastshoppingcart.com": [13590], "www.playerio.com": [13024], "dprado.ml": [2053], "enterprisezones.gov.wales": [6987], "eum.io": [2053], "www.konstfack.se": [9129], "www.mathbuntu.org": [10231], "www.garlandscience.com": [8267], "cooldestinations.net": [3708], "www.internetevolution.com": [4484], "mmn.click": [2053], "rsb.mobi": [2053], "m.fotki.yandex.kz": [18957], "ssu.vg": [2053], "www.studentlife.osu.edu": [11959], "bundestag.de": [4494], "piwik.oppelt.com": [12261], "s.qli.jp": [2053], "sa0.roadtrippers.com": [21317], "s.softbag.jp": [2053], "www.digilinux.ru": [4561], "mme.events": [2053], "www.videopp.com": [17982], "forum.codeigniter.com": [19747], "s.thefletch.xyz": [2053], "post.update.chartbeat.com": [3077], "ergon.ch": [5444], "sslcam.news.com.au": [11530], "opkode.com": [12259], "static.ocf.berkeley.edu": [17526], "services.libis.kuleuven.be": [8969], "udacity.com": [17392], "glo.bo": [2053], "rss.packetstormsecurity.com": [12521], "employer.dice.com": [4534], "yy.1688.com": [44], "www.collegiatepeaksbank.com": [3492], "ancud.de": [1034], "preptix.me": [2053], "tagcommander.com": [16159], "kdup.co": [2053], "clclibrary.worldcat.org": [18748], "fnic.nal.usda.gov": [17495], "www.qualaris.com": [13557], "novaserrana.tk": [2053], "a.nicco.org": [2053], "1.shupilov.com": [2053], "apomedifot.de": [1136], "telemetry.soundcloud.com": [15410], "csswz.it": [2053], "brownpapertickets.com": [2420], "tikv.es": [2053], "90grados.mx": [2053], "mcp.bucket.nchr.io": [20880], "data.cloud.unity3d.com": [17506], "fangzhi.1688.com": [44], "adintegration.insideygs.com": [8319], "incm.in": [2053], "brshort.com": [2053], "www.magix-online.com": [9872], "untergeschoss.ch": [17659], "fy.io": [2053], "uindy.worldcat.org": [18748], "publib.boulder.ibm.com": [7821], "diversity.wustl.edu": [18290], "linux.com": [9563], "www.anquanbao.com": [1095], "jobs.nzz.ch": [20974], "forms.tcs.ph": [2053], "js.microsoft.com": [10543], "diqing.meituan.com": [10405], "vacenza.com": [17820], "crazysal.es": [2053], "hive.us": [2053], "prlog.gq": [2053], "pol.sh": [2053], "on.plugco.net": [2053], "t.tbj.me": [2053], "www.btcgreece.com": [1600], "px.belchevs.com": [2053], "brevado.com": [2361], "choctaw.link": [2053], "www.koumbit.net": [9148], "www.cga.ct.gov": [2738], "kerwinr.ae": [2053], "a.mesoshqip.org": [2053], "forum.spring.io": [15554], "luclibrary.worldcat.org": [18748], "dareboost.com": [4224], "tr0n.net": [16899], "azooz-pro.tk": [2053], "etrtbs6.smartstream.tv": [15247], "hawi.in": [2053], "curiosity.im": [2053], "freepri.se": [2053], "register.smext.faa.gov": [5830], "www.userscripts.org": [17724], "www.voyage-prive.co.uk": [18151], "tweegy.nl": [17144], "myfbc.info": [2053], "*.linuxaria.com": [9587], "www.wiroos.com": [22038], "do-it.org": [4697], "www.csszengarden.com": [3968], "www.footlocker.eu": [6128], "invisionpower.com": [8473], "upperc.se": [2053], "www.maddcalifornia.org": [9871], "ssl.gmobb.jp": [6459], "*.indystar.com": [8217], "veritone.us": [2053], "event.fanli.com": [5769], "*.prosystemfx.com": [13391], "s.thewieb.es": [2053], "www.luminoworld.com": [9830], "assets.codepen.io": [3410], "ksl.rocks": [2053], "securityinabox.org": [14776], "ovh.es": [12378], "pasazfin.wp.pl": [18217], "fm.douban.com": [4802], "dsl.1und1.de": [82], "sede.uned.es": [17446], "gns3.com": [6472], "blogmark.me": [2162], "netd.bz": [2053], "www.agol.dk": [769], "www.akvorrat.at": [811], "secure.xaraonline.com": [18844], "fed1.us": [2053], "nationaleatingdisorders.org": [11284], "guavap.as": [2053], "www.uniovi.es": [17479], "www.otummstore.se": [12341], "ftcy.co": [2053], "go.offside.id": [2053], "tecn.is": [2053], "drweb.com": [4879], "advertising.criteo.com": [3872], "s.iriss.org.uk": [2053], "medikamente-per-klick.de": [10364], "mo.ma": [2053], "amt24.sachsen.de": [14454], "bia2.com": [1891], "blog.ixwebhosting.com": [8027], "jaguar.cis.vutbr.cz": [17814], "inpvp.gg": [2053], "st6.gismeteo.ru": [6789], "ghbtns.com": [6746], "gridzdirect.com": [7079], "platt.com": [13009], "harakahdaily.net": [7334], "brlyavg.com": [2053], "www.tchibo.com.tr": [16240], "ictl.bs": [2053], "www.nothing.ch": [11724], "advertise.chicagotribune.com": [3131], "rgg.me": [2053], "sgr.is": [2053], "arfo.sk": [2053], "qqhr.meituan.com": [10405], "media.tumblr.com": [17101], "es.squat.net": [21549], "go.nien.co": [2053], "img.1und1.de": [82], "fr.rpmfind.net": [14237], "yahooresearch.tumblr.com": [17100], "www.e-magin.se": [4953], "honeynet.org.mx": [20356], "phlp.be": [2053], "sneakerfreaker.com": [21491], "newschallenge.org": [11526], "www.surreycc.gov.uk": [21611], "lklawl.es": [2053], "watche.es": [2053], "blbrd.co": [2053], "cdn01.animenewsnetwork.com": [19391], "www.priorygroup.com": [13301], "www.dynamicyield.com": [4926], "docelu.pl": [4703], "img05.taobaocdn.com": [16207], "barc.ly": [2053], "rsync.uhulinux.hu": [21837], "home.regit.org": [13971], "www.storebrand.no": [15750], "*.personalitypage.com": [12796], "assets.americas1stfreedom.org": [19383], "tml.osu.edu": [11959], "www.lv.com": [9673], "wooconf.com": [18716], "exposefacts.org": [5624], "elshoe.co": [2053], "utils.usembassy.gov": [21879], "halfl.io": [2053], "tokyo.webconsole.linode.com": [9547], "www.jiscmail.ac.uk": [8586], "landsend.com": [9294], "blog-content.glassdoor.com": [6823], "www.wemonit.de": [18318], "www.luxhv.com": [9840], "tkpk.me": [2053], "spirop.us": [2053], "metasearch.kib.ki.se": [8878], "*.wgcdn.net": [18522], "thatdai.ly": [2053], "*.wsjeuropesubs.com": [11513], "mail.jesus.cam.ac.uk": [17529], "sml.devry.edu": [2053], "work.1688.com": [44], "codesourcery.com": [10438], "www.bagatoo.se": [1657], "www.pantz.org": [12580], "grt.st": [2053], "qz.meituan.com": [10405], "go.titon.ovh": [2053], "lm.rtgit.com": [2053], "www.tilburguniversity.nl": [16716], "status.iwantmyname.com": [20517], "on.werviral.com": [2053], "se.icecat.biz": [8059], "bngl.es": [2053], "mrkpnvrd.site": [2053], "maintenance.etoro.com": [5077], "webmail.szm.com": [16021], "res2.nabtrade.com.au": [11054], "nyp.link": [2053], "bbseyes.com": [1765], "*.pgi.com": [12450], "acn.mx": [2053], "heym.co": [2053], "mrn.bz": [2053], "pa.gs": [2053], "to.thorp.co": [2053], "www.law.georgetown.edu": [6668], "dating.taobao.com": [16206], "e2.xhamsterpremiumpass.com": [18817], "caps.bz": [2053], "static.data.gov": [4253], "bit.imanel.net": [2053], "bunsen.wapolabs.com": [18234], "gp46.tk": [2053], "www.lucaspetter.com": [9805], "l.rltynyc.com": [2053], "www.yourmailinglistprovider.com": [19029], "gdp.stanford.edu": [15635], "*.armytimes.com": [1241], "nextthree.com": [2053], "dc.to": [2053], "www.iai.inf.tu-dresden.de": [16126], "bnns.co": [2053], "eurobilltracker.com": [20068], "devmo.co": [2053], "*.compiz-fusion.org": [3586], "yourkarma.com": [19035], "www.fresh-hotel.org": [6318], "uslax.in": [2053], "www.uniregistry.com": [17482], "storehouse.co": [21583], "www.levonline.com": [9436], "nyc.de": [2053], "basket.li": [2053], "aolo.tk": [3597], "www.rhapsody.com": [14092], "forums.usa.canon.com": [2868], "app.cityplan.es": [2053], "u.jle.im": [2053], "discre.co": [2053], "brand.wustl.edu": [18290], "a.logan.xyz": [2053], "2014.eurobsdcon.org": [5509], "cdn-w.gettraffic.com": [6704], "cn.isidewith.com": [20414], "www.elafnettv.com": [5240], "*.igodigital.com": [7881], "ickl.co": [2053], "ruji.co": [2053], "snp.cdn.dell.com": [4413], "getgo.de": [6733], "s1.rationalcdn.com": [21261], "onlinestore.ccccloud.com": [2597], "www.mensaplan.de": [10434], "adsecurity.org": [313], "runnersconnect.net": [21339], "www.residenciasuniversitarias.ulpgc.es": [17411], "q87.us": [2053], "*.fema.gov": [5832], "www.hypestat.com": [20406], "verserecla.me": [2053], "pass.beta.ya.ru": [18930], "cmdev.com": [2687], "ericri.es": [2053], "enlighten.enphaseenergy.com": [5386], "ru.pornworms.com": [13155], "fcusd.illuminateed.com": [20430], "brblck.com": [2053], "wac.20f5.edgecastcdn.net": [13944], "www.visophyte.org": [18071], "liquidweb.com": [9603], "nutyx.org": [20967], "guides.web4all.fr": [18349], "rollingstonesubscriptions.com": [14193], "etravelway.com": [5497], "bc3.tech": [2053], "apps.unhosted.org": [17449], "dcdt.io": [2053], "yarbank.dengisend.ru": [4440], "store.linksys.com": [9544], "www.jabber.no": [8622], "ssl9.ovh.net": [12378], "hosting.0x539.de": [7], "tw.opera.com": [12252], "cms.manchester.gov.uk": [10107], "applications.barnsley.gov.uk": [19488], "go.vgn.it": [2053], "r.suntravel.xyz": [2053], "melbfe.st": [2053], "mjam.net": [10662], "opn.so": [2053], "dzdz.cz": [2053], "portal.ultradns.com": [17414], "on.whas11.com": [2053], "www.ekiga.org": [5231], "startjesucces.nl": [20416], "public.earthcamcdn.com": [19989], "a.akashseo.com": [2053], "careers.tvnz.co.nz": [16141], "mz.cm": [2053], "www.hightail.com": [7547], "api.roblox.com": [14156], "wimpmusic.com": [18574], "yl.meituan.com": [10405], "x.ogxo.com": [2053], "l.khoanguyen.me": [2053], "docs.arangodb.com": [1191], "doane.worldcat.org": [18748], "*.blogspot.tw": [2166], "lse.ac.uk": [9253], "nsn.com": [11656], "b-link.bucknell.edu": [2444], "version.clearlinux.org": [3291], "s.naitwo.me": [2053], "www.productvisio.com": [13353], "cptha.ml": [2053], "ntvspor.net": [11163], "www.youtube.com.mk": [19016], "code.flickr.com": [6034], "go.visiblebody.com": [18064], "www.blekko.com": [2119], "www.movie4k.tv": [10824], "onenetuk.vodafone.pt": [18109], "badges.fedoraproject.org": [5843], "www.sacnas.org": [14304], "www.domoticz.com": [4766], "www.movie4k.to": [10824], "tedxth.es": [2053], "www.digitalpacific.com.au": [4579], "platform.sh": [13003], "www.ispgids.com": [7977], "www.icc-cpi.int": [7830], "f3y.eu": [2053], "go.jeprog.xyz": [2053], "atp2.co": [2053], "stau.fr": [2053], "tchms.to": [2053], "vod.super8-movie.com": [12599], "files.i4wifi.cz": [20407], "ols.nab.com.au": [11054], "omni.media": [20991], "era.nih.gov": [11241], "www-ssl.intel.com": [8359], "pime.us": [2053], "pubdash.q1media.com": [13504], "iconfinder.com": [8066], "www.abysmal.nl": [472], "artikel.li": [2053], "mobile.webtrends.com": [18467], "www.initex.com": [8295], "wf.mail.ru": [10040], "fltz.it": [2053], "thx.alibaba-inc.com": [19341], "youtube.se": [19016], "getcomposer.org": [6711], "bokon.se": [2238], "s.sharethis.com": [14913], "community.joomla.org": [8776], "erben.rhb.ch": [14091], "legalsolutions.thomsonreuters.com": [21728], "redirect.disqus.com": [4656], "thunderranchinc.com": [16672], "lookat.v-ip.co": [2053], "natu.re": [2053], "beli.cisco.com": [3221], "*.sjrdesign.net": [15788], "a3.hitravel.xyz": [2053], "ami.com": [347], "tv.native.ad": [2053], "www13.pipni.cz": [12460], "osp.vt.edu": [18031], "dzotsi.com": [2053], "www.store.xkcd.com": [22085], "*.golflink.com": [6947], "lianjiangxian.meituan.com": [10405], "dtns.ch": [2053], "delivery.a.switchadhub.com": [15954], "www.pbebank.com.my": [13431], "*.myheritage.com": [11023], "ftp.intevation.de": [8445], "*.boards.ie": [2222], "www.btcmarkets.net": [1608], "www.gruen-digital.de": [7111], "psmedia.playstation.com": [13015], "lists.zaehlwerk.net": [19089], "id.idnc.link": [2053], "url.folin.com": [2053], "www.cossacklabs.com": [3760], "thesavvy.us": [2053], "a6.sphotos.ak.fbcdn.net": [5816], "ad1.netshelter.net": [11400], "qvne.ws": [2053], "mcc.gov": [20763], "lumovies.com": [9833], "deals.sourceforge.net": [15423], "nationalexpress.jobs": [11239], "fais.co": [2053], "*.escapistexpo.com": [16453], "pix.boxi.me": [2053], "tracking.kurier.at": [9194], "afisha.ngs.ru": [20907], "go.csarabic.com": [2053], "firstclick.io": [2053], "gittip.com": [6807], "mapd.io": [2053], "publeaks.nl": [13430], "magneto-x.com": [2053], "zhuanlan.zhihu.com": [19173], "events.dianping.com": [19913], "spreadshirt.com": [15552], "shor-tn.us": [2053], "www.imation.com": [8134], "www.nodeserv.com": [11644], "i.v2ex.co": [17755], "www.coderwall.com": [3439], "chatme.im": [3088], "*.host.ie": [4597], "on.clemmer.co": [2053], "confuzzled.org.uk": [3639], "puri.fi": [2053], "ecn.t2.tiles.virtualearth.net": [18046], "tpet.me": [2053], "k-e-s.nl": [2053], "ssl.kaptcha.com": [8945], "dwrk.in": [2053], "cjsp.me": [2053], "eddie.linux-mips.org": [9573], "*.quora.com": [13607], "www.hf.ntnu.no": [11153], "gaiahost.coop": [6419], "sa.alibaba.com": [850], "*.metapress.com": [10476], "panel.cinfu.com": [3207], "www.hackthe.computer": [7290], "cdn1.static.xtube.com": [18905], "www.virtual-server.org": [18038], "login.m.taobao.com": [16206], "heroic.link": [2053], "img.printfection.com": [13297], "tribuna.pl.ua": [21790], "sprwttchn.com": [2053], "eia.gov": [5016], "kels.io": [2053], "salud.to": [2053], "creatives.gunosy.com": [7151], "oml.cc": [2053], "www35t.glam.com": [6819], "www.vrijstellingoldtimer.nl": [21958], "aldoz.xyz": [2053], "arctic0.co": [2053], "www.wdm.org.uk": [18755], "providersearch.communitycares.com": [19762], "www.corp.mamba.ru": [10096], "www.dpmc.gov.au": [4152], "autisticadvocacy.org": [1449], "elrippoisland.net": [20028], "legolanddiscoverycentre.de": [9391], "www.tm.com.my": [16341], "aliasane.com": [2053], "www.porta.codes": [13160], "x.bwine.nl": [2053], "thtes.co": [2053], "ethn.io": [5488], "*.zappos.com": [19106], "teams.nikhef.nl": [11596], "wangwang.1688.com": [44], "rtt.adrolays.de": [665], "nationstates.net": [11233], "secdev-foundation.org": [21396], "termsofservicegenerator.com": [6838], "myoffe.rs": [2053], "rd.sikanavi.jp": [2053], "www.aclu-sc.org": [290], "www.kde-files.org": [21006], "search.microsoft.com": [10543], "www.2pay.ru": [118], "www.bet555.eu": [1864], "ahpcrc.stanford.edu": [15634], "www.middleware.georgetown.edu": [6668], "hardware.slashdot.org": [15192], "www.neotelecom.ru": [20887], "aotw.in": [2053], "paid.outbrain.com": [12355], "standup2cancer.org": [15629], "forum.dokuwiki.org": [4728], "tklbs.us": [2053], "imagesource.allposters.com": [875], "agent.ipip.net": [20490], "scld.us": [2053], "forum.sozone.de": [15298], "jackpotmillions.com": [8630], "www.nine-2-one.com": [11605], "vinews.co": [2053], "only.co": [2053], "otapps.wustl.edu": [18290], "thewave.online": [2053], "apcmag.com": [370], "sttr.in": [2053], "s.ghctim.com": [2053], "webmate.io": [18428], "muslimmatch.thecthulhu.com": [16600], "linuxgamepublishing.com": [9583], "www.patchofland.com": [12658], "mysql12.vas-hosting.cz": [21896], "prlf.eu": [2053], "xxxyours.com": [22090], "innovaciondocente.unizar.es": [17643], "www.thingsquare.com": [16627], "lw.meituan.com": [10405], "www.bankia.es": [22061], "ultimateeditionoz.com": [21844], "armorfor.us": [2053], "nautl.us": [2053], "zakovska.skolaonline.cz": [21471], "*.halifax-online.co.uk": [7305], "sp.onlinelibrary.wiley.com": [18609], "static.legacy.com": [9384], "kowhy.xyz": [2053], "justeat.it": [20565], "s.neogard.ch": [2053], "www.acsac.org": [303], "protected.fscs.org.uk": [5711], "commencement.berkeley.edu": [17526], "www.sc.pages05.net": [12537], "fa.law.yale.edu": [18946], "research.cbc.osu.edu": [11959], "www.talky.io": [16189], "wiki.geant.org": [6431], "www.appsecute.com": [1174], "staticv.net": [17865], "imageservice.nordjyske.dk": [20921], "*.webmail.dotcomhost.com": [4786], "u.xuhuongmoi.vn": [2053], "on.4029tv.com": [2053], "londonsockcompany.com": [9746], "hackthissite.org": [7269], "usradio.xyz": [2053], "theartstack.com": [16510], "blur.by": [2053], "www.mport.ua": [9950], "www.yamgo.com": [18949], "go.imodules.com": [7909], "www.whyopencomputing.ch": [22021], "*.starfieldtech.com": [15655], "files.adspdbl.com": [672], "*.globalvoicesonline.org": [6857], "*.displaymarketplace.com": [4655], "1wt.eu": [58], "arnest.co": [2053], "www.sms.cam.ac.uk": [17529], "hospitalityleaders.com": [7644], "cineworld.catchdigital.com": [19655], "uolr3.leeds.ac.uk": [17604], "pa.elsevier.com": [5287], "viviscal.co.uk": [18092], "ens-lyon.org": [5387], "www.safariflow.com": [14460], "www.giganews.com": [6770], "tchsl.de": [2053], "units.georgetown.edu": [20228], "www.worlddab.org": [18750], "portal.polyu.edu.hk": [13116], "489tw.cc": [2053], "1.cgroup.iz.rs": [2053], "a.markmcdow.com": [2053], "historyofmedicine.wustl.edu": [18290], "www.bragazeta.ru": [19585], "www.nuug.no": [11169], "planningpublicaccess.southampton.gov.uk": [15440], "cyber.gd": [2053], "jnit.cz": [2053], "schla.gr": [2053], "yhoo.it": [2053], "cert-bund.de": [2633], "aldi-nord.de": [338], "hebook.engineering.osu.edu": [11959], "wmp.americas1stfreedom.org": [19383], "www.aldi.co.uk": [338], "in.pinterest.com": [12914], "seller.ju.taobao.com": [16206], "tic.tl": [2053], "feedly.com": [5853], "davis.com": [4311], "bg.mondediplo.com": [10729], "adecco.pe": [2053], "www.startengine.com": [15661], "www.ballotpedia.org": [19481], "m.kosmas.cz": [8895], "haveyoursay.ashford.gov.uk": [19435], "www.trideci.com": [16998], "passwordreset.dkit.ie": [4114], "tmb.fm": [2053], "myaccount.thomsonreuters.com": [16650], "ero-advertising.com": [5451], "www.landscape.io": [9295], "www.dtunnel.com": [4162], "broadcasthe.net": [2408], "cateee.net": [2960], "*.zugerkb.ch": [20574], "nomnom.fitness": [2053], "wareable.com": [21973], "far.gl": [2053], "ziron.it": [2053], "url2txt.com": [2053], "www.makeagif.com": [20740], "miacasa.is": [2053], "www.aralbalkan.com": [1190], "gps.caltech.edu": [2815], "baz.meituan.com": [10405], "oferrer.com": [2053], "*.ixquick.com": [8553], "*.magnatune.com": [10026], "img.geocaching.com": [6664], "larecla.me": [2053], "gr.meituan.com": [10405], "tvd.tips": [2053], "ww.catster.com": [2053], "*.sonos.com": [15389], "galena.mery.jp": [9903], "on.cranprep.org": [2053], "hhub.co": [2053], "wmsoftwa.re": [2053], "www.crashplan.com": [3833], "www.emaileri.net": [5294], "www.securityinnovation.com": [14773], "newmoon.com": [11482], "lab.mondediplo.com": [10729], "blogs.sans.org": [14310], "vzw.com": [17920], "www.msgme.com": [20842], "emrescr.ml": [2053], "*.eurexrepo.com": [5504], "s.daytraders.jp": [2053], "idus.co": [2053], "www.clicklivechat.com": [3320], "startsw.it": [2053], "rdsig.yahoo.co.jp": [18944], "rmbox.work": [2053], "go.csar.co": [2053], "cdn02.animenewsnetwork.com": [19391], "tickets.events.ccc.de": [2596], "u.domiciwk.com": [2053], "sh.loriena.lv": [2053], "iuware.iu.edu": [8214], "mobilelinux.co": [2053], "www.pirateproxies.org": [21709], "apps.cisco.com": [3221], "www.alexcabal.com": [834], "voltairenet.org": [21945], "vpn.nordicacademy.no": [11671], "password.gmu.edu": [6666], "smahoy.com": [2053], "www.fsf.org": [5713], "newstube.ru": [20904], "affiliate.bitbay.net": [1976], "owensad.com": [2053], "bayareapsy.ch": [2053], "adl.osu.edu": [11959], "kinguin.net": [9055], "scrpbx.in": [2053], "f.denaes.es": [2053], "static.ow.ly": [12381], "pthumbnails.5min.com": [208], "*.blogmark.me": [2162], "www.blockscript.com": [2139], "www.inapub.co.uk": [8185], "cyberlaw.stanford.edu": [15635], "www.politicalcompass.org": [13096], "linkit2.me": [2053], "fahrradguide.at": [2053], "goingup.com": [6936], "www.titanshare.to": [16775], "tedne.ws": [2053], "go.afrrent.com": [2053], "www.rockvalleycollege.edu": [14169], "dahmw.org": [4763], "dsl.wrating.com": [18774], "*.duosecurity.com": [4899], "chpqa.decc.gov.uk": [19885], "www.futurity.org": [6402], "tboomi.com": [2053], "beaconinitiative.com": [1778], "freecallscanada.co.uk": [20709], "www.bitcard.org": [1978], "www.df.eu": [4103], "*.sonystyle.com.mx": [15399], "lli.ucollege.wustl.edu": [18289], "2co.com": [112], "isiknowledge.com": [18404], "on.mtdb.com": [2053], "edequ.it": [2053], "iedm.io": [2053], "xiscosoft.info": [18879], "go.sfarn.tk": [2053], "ads.simplyhired.com": [15075], "dml.tdnetdiscover.com": [21664], "splp.me": [2053], "m.zuno.cz": [19077], "sweflix.net": [15939], "www.tutti.ch": [21818], "g.29a.in": [2053], "made.mn": [2053], "n.hashtagdc.com": [2053], "ws.amazon.co.jp": [1321], "social.sbi.co.in": [14320], "sigmaxi.org": [15024], "lh3.google.*": [6965], "mmoc.io": [2053], "ccf15.ca": [2053], "www.cp.org": [2860], "okcupid.com": [11971], "www.green.ch": [20280], "bigfi.sh": [2053], "www.sweflix.net": [15939], "beginnertriathlete.com": [1807], "virginiamason.org": [18030], "gcaptain.com": [6428], "sie.pm": [2053], "web.stonewall.org.uk": [21580], "dafont.com": [4180], "www.progllc.com": [13379], "help.mailgun.com": [10049], "iad.apple.com": [1160], "walsall.gov.uk": [21971], "prod3si.click4assistance.co.uk": [3301], "s.pu.nl": [2053], "www.postbydnx.com": [13188], "eclaim.walthamforest.gov.uk": [18262], "pool.btcc.com": [2438], "ngvpn33.nvidia.com": [11174], "1.next.westlaw.com": [18514], "unvanquished.net": [17661], "img.web.de": [18347], "cine.fund": [2053], "abk.pics": [2053], "www.inria.fr": [8309], "g3t.link": [2053], "juggler.services.disqus.com": [4656], "www.empflix.com": [5315], "chum.ba": [2053], "www.semabuzz.com": [14338], "online.openbank.ru": [21008], "opr.tl": [2053], "mta.wtf": [2053], "personalausweisportal.de": [12795], "dive.fyi": [2053], "eman.tht.re": [2053], "lazykush.com": [9339], "trendpics.today": [2053], "www.boulder.swri.edu": [15446], "boab.co": [2053], "picture.stanford.edu": [15636], "puser.centrum.sk": [19675], "hyv.ee": [2053], "www.sbc.anthem.com": [19395], "or.is": [21027], "*.4channel.org": [185], "www.just-eat.no": [20565], "www.voodooping.com": [18136], "www.votesmart.org": [13369], "c.france.st": [2053], "w3roi.com": [1504], "dovr.uk": [2053], "survey.admaster.com.cn": [569], "salesctr.me": [2053], "searscommerceservices.com": [14689], "npdgroup.com": [11136], "expld.co": [2053], "mdvs.me": [2053], "wealden.gov.uk": [21987], "go.idris.org": [2053], "farmaki.co": [2053], "hk.civil.photos": [2053], "www.space2u.com": [15454], "donn.us": [2053], "wiki.galaxyproject.org": [6526], "customers.darktrace.jp": [19853], "s.pixta.jp": [2053], "backbox.org": [1638], "www.webhungary.hu": [18420], "mwil.it": [2053], "cscoengs.co.vu": [2053], "vdust.co": [2053], "www.officersforbundet.se": [11951], "www.tune.pk": [17104], "cdn3.outspark.com": [12359], "www.hermite.uvt.nl": [16716], "cdn3.jitscale.com": [8730], "erubrica.upf.edu": [17674], "shamsher.in": [2053], "secunet.com": [14718], "www.supporterz.jp": [15894], "nav.no": [20878], "static.xxxbunker.com": [18911], "lnk.cmti.me": [2053], "www.itmanie.cz": [7994], "www.ampravda.ru": [19386], "p2p.alfabank.kz": [842], "alipass.alipay.com": [857], "cwstud.io": [2053], "gara.io": [2053], "nav.mageia.org": [10014], "www.kenshoo.com": [8936], "distraction.gov": [4660], "pxlabs.org": [2053], "pixlr.com": [12961], "microchipdirect.com": [10534], "fbf8.com": [5817], "neengland.greenparty.org.uk": [7052], "*.stardock.net": [15653], "online.hmrc.gov.uk": [7219], "wild.ng": [2053], "jotter.educ.cam.ac.uk": [17529], "vegas.williamhill.com": [18614], "connect.wustl.edu": [18290], "jamesmcd.com": [2053], "tchst.gs": [2053], "dwb.pw": [2053], "*.hush-hush.com": [7775], "elizabethsmartfoundation.org": [5272], "ayo.aqlis.in": [2053], "www.w1.fi": [18183], "www.t411.me": [16036], "measure.richmetrics.com": [2508], "brot.migros.ch": [10566], "lawblog.de": [9333], "www.asfera.info": [19434], "zenmate.my": [19133], "zenmate.mx": [19133], "pgnet.stanford.edu": [15635], "adobelogin.com": [659], "gayln.ru": [2053], "homebase.com": [7621], "www.dan.me.uk": [4208], "zenmate.ma": [19133], "partner.symantec.com": [15969], "www.ekmpowershop.com": [5232], "*.surpasshosting.com": [15909], "*.mozo.com.au": [10855], "s.fotoglut.de": [2053], "banniere.reussissonsensemble.fr": [14068], "www.openclipart.org": [12104], "socialsafety.org": [15307], "www.gabry.hu": [6520], "www.linux.conf.au": [9564], "www.thalia.de": [16433], "pfefferkoerner.de": [12820], "gympass.me": [2053], "s.qumaris.jp": [2053], "pacebus.com": [12515], "www.esv.de": [5067], "pledge.lessig2016.us": [9418], "favp.ro": [2053], "festeirice.com.br": [5874], "dnschain.net": [4134], "pitchi.it": [2053], "litecointalk.org": [9625], "thepiratebay.gd": [21710], "edu.github.com": [6801], "greaterchinajobs.g4s.com": [20194], "elgiganten.dk": [5264], "dev.c-ware.de": [2555], "linyi.meituan.com": [10405], "images.autoscout24.ch": [1470], "bgentry.io": [1888], "www.digitalmarketplace.civilservice.gov.uk": [19721], "static.milanuncios.com": [10576], "www.yourls.org": [22113], "hg.gajim.org": [6523], "monitor.returnpath.net": [14067], "greatbig.is": [2053], "ynevd.ml": [2053], "stdc.ro": [2053], "giv.today": [2053], "*.webhostingpad.com": [18401], "www.bizshark.com": [2087], "youtube-html.ga": [2053], "ttc.bz": [2053], "txrt.uk": [2053], "www.dobrochan.com": [4700], "admin.websupport.sk": [18456], "hchc.co": [2053], "infospyware.com": [8278], "www.glitterbank.com": [6833], "dailydot.com": [4191], "www.bufferapp.com": [2459], "*.jtlebi.fr": [8809], "secure.sipgate.co.uk": [15102], "secure.research.vt.edu": [18031], "gr8p.co": [2053], "link.kc.co.uk": [2053], "scien.se": [2053], "mtailor.com": [9969], "spboyer.me": [2053], "comixology.com": [3529], "10be.st": [2053], "*.sqsp.com": [15579], "epbfi.com": [5039], "trakt.tv": [21777], "mozo.com.au": [10854, 10855], "downloads.smartbear.com": [21479], "api.wsq.umeng.com": [21847], "crm.gd": [2053], "buy.wistia.com": [18678], "bedrockformsbluenext.msn.com": [9961], "kfm.city": [2053], "jobs.nintendo.de": [11612], "www.wpenginestatus.com": [18220], "postbus.ch": [13176], "happylaptop.chef.io": [3115], "*.kicknews.com": [9030], "www.beamyourscreen.de": [1782], "pro-talents.co": [2053], "engaging.me": [2053], "libdems.org.uk": [9451], "fr.hertz.ca": [7480], "avuofu.me": [2053], "pixel.facebook.com": [5733], "zj.taobao.com": [16206], "myta.co": [2053], "go72.de": [2053], "pcp.cancer.gov": [2864], "cdn.petri.com": [12809], "www.digikey.de": [4552], "secure.eventim.*": [5548], "go.syrkaz.com": [2053], "daac-news.ornl.gov": [11892], "*.myhosting.com": [15339], "postnewsads.com": [13207], "tlasecure.com": [21746], "*.bookdepository.co.uk": [16483], "go.disqus.com": [4656], "vivilo.us": [2053], "ats.stanford.edu": [15635], "stonelab.osu.edu": [11959], "androidapi.xamarin.com": [18840], "i1.c.dk": [2556], "doc.ogis.com.br": [2053], "resume.submittable.com": [21598], "maba.ga": [2053], "vivolab.unizar.es": [17643], "ebrk.net": [2053], "exchange.uic.edu": [17517], "clva.ca": [2053], "www.heliny.com": [7430], "wza.us": [18793], "*.invincea.com": [8472], "click.d4h.org": [2053], "310ei.biz": [2053], "rdmp.sydney.edu.au": [21631], "www.cjdns.info": [3263], "ganne.tt": [2053], "login.ezproxy1.library.sydney.edu.au": [21631], "date.adults.men": [2053], "oregon.gov": [15674], "abite.co": [2053], "www.aarondcampbell.com": [432], "l.jav4you.com": [2053], "hesaplabakalim.com": [7512], "www.anubisnetworks.com": [1113], "de-no.dict.cc": [4536], "www.stupid.com": [15802], "1nes.co": [2053], "gcomm.tv": [2053], "citgrd.co": [2053], "d-dv.us": [2053], "rh.gd": [2053], "samb.ga": [2053], "www.ipip.net": [20490], "selfservice.sevenoaks.gov.uk": [14882], "rockfile.eu": [21322], "www.lxcenter.org": [9844], "tonshalovo.beeline.ru": [1801], "echomedia.cz": [20003], "moreti.me": [2053], "www.prudentbear.com": [13411], "articulate.fyi": [2053], "yyg.me": [2053], "semor.cz": [14339], "connect.qq.com": [13513], "vedote.ch": [2053], "me.jd.com": [8571], "leapit.co": [2053], "jaoler.be": [2053], "ssopt.me": [2053], "threatwiki.checkpoint.com": [3106], "sl.njwag.com": [2053], "etsie.us.es": [17706], "gen.cat": [2053], "x.quadpoint.org": [2053], "e-banking1.hangseng.com": [7326], "easydns.net": [5125], "i.imm.io": [12961], "internationalsos.com": [8416], "embedded.communities.intel.com": [8359], "inandw.in": [2053], "www.livenation.co.*": [9642], "www.customercenter.dynamic1001.eu": [19974], "npy.so": [2053], "hex-rays.com": [7518], "www.initlab.org": [8294], "www.polity.co.uk": [13103], "jlos.go.ug": [17397], "aescentia.info": [2053], "kellyr.me": [2053], "insight.oxfordshire.gov.uk": [21055], "fontspring.com": [6112], "www.srware.net": [15595], "www.spark.ru": [15468], "www3.labcorp.com": [9276], "prime.500px.com": [194], "go.fox59.com": [2053], "nimius.maxon.net": [10263], "bshs.tk": [2053], "on.deezy.tips": [2053], "localina.local.ch": [9697], "dsbc.me": [2053], "mulliner.org": [20852], "mpull.co.za": [2053], "yworks.com": [22091], "eastriding.connecttosupport.org": [19776], "gbx.es": [2053], "s.sikac.hu": [2053], "moderngovwebpublic.bromsgrove.gov.uk": [19595], "s.ts4g.de": [2053], "www.fkie.fraunhofer.de": [6230], "open.live.bbc.co.uk": [19500], "browser.yandex.com.tr": [18954], "blaster.media": [2053], "anja.haxx.se": [20319], "*.nakanohito.jp": [17725], "www.boingboing.net": [2234], "*.gambling-affiliation.com": [7880], "pilot-eip.stanford.edu": [15635], "continental.com": [3685], "www.thrillist.com": [21732], "selam.io": [2053], "majordesignsdollfashions.com": [10065], "www.forum.bitcoin.pl": [2017], "www.wodc.nl": [11324], "a14.wal.co": [18249], "mdz.news": [2053], "associatedcontent.com": [1328], "www.ohiolink.edu": [11961], "larissa.spelthorne.gov.uk": [21533], "maliit.org": [10087], "pub9.media-clic.com": [10313], "reco.se": [13881], "disc.yandex.com": [18956], "elearn.cuhk.edu.hk": [2747], "twhite.me": [2053], "www.onetaste.us": [12045], "swisspost.com": [13176], "t.pbcc.me": [2053], "tcp.com.de": [2053], "*.esi.dz": [5059], "arth.me": [2053], "gunsmithing.nra.org": [20943], "akrwds.com": [2053], "aisec.fraunhofer.de": [6230], "cdn.apple-mapkit.com": [1157], "www.synchronicer.dk": [15983], "rb.voskie.com": [2053], "stage-api.digitalmedia.hhs.gov": [7192], "www.deluge-torrent.org": [4417], "www.bergdorfgoodman.com": [16106], "fcns.eu": [6341], "l.cpresence.com": [2053], "obh.me": [2053], "u.herrd.me": [2053], "jisc.ac.uk": [8726], "lsf.htw-berlin.de": [7246], "fsce.in": [2053], "ap.pn": [2053], "www.musixmatch.com": [10911], "cp.rentalserver.jp": [14009], "dom.sakh.com": [21360], "secure.membersaccounts.com": [20778], "amnesty.tw": [1011], "hpr.click": [2053], "www.ebis.ne.jp": [5141], "clubillico.videotron.com": [17993], "www.tonicdev.com": [21755], "heasarc.nasa.gov": [11058], "twit.tv": [16147], "tenpay.com": [16376], "apple.com": [1160], "www.securelist.com": [14736], "telegram.how": [16335], "www.tuitam.pl": [16127], "www.desy.de": [4479], "thearctic.in": [2053], "ln.ganshani.com": [2053], "nm.debian.org": [4353], "sneakac.es": [2053], "daus.to": [2053], "www.iqt.org": [8174], "aldpr.gs": [2053], "www.independentsubscriptions.co.uk": [20451], "rll.bz": [2053], "assetinsightinc.com": [1317], "online.mbank.pl": [9888], "outics.com": [2053], "personalitypage.com": [12796], "maps.yandex.by": [18953], "www.chartmogul.com": [3075], "support.gemalto.com": [6634], "tiksn.net": [2053], "viteb.sk": [2053], "b21win.es": [2053], "js.chefkoch.de": [3116], "socialtheater.com": [15316], "irc.tiki.org": [16715], "plblog.kaspersky.com": [8958], "api.mediaklik.com": [20768], "docs.redhat.com": [13909], "cardiffmail.cf.ac.uk": [2895], "usa.anon-ib.co": [1075], "subscribe.nypost.com": [20972], "ice.uniovi.es": [17479], "payments.discourse.org": [4631], "devfaq.kaywa.com": [8980], "drillisch.de": [4856], "nobitcoinlicense.org": [11636], "www.hustlermagazine.com": [7778], "cipr.uwm.edu": [17580], "meow.bnw.im": [19565], "l.vileware.com": [2053], "agol.dk": [769], "www.ruhr-uni-bochum.de": [14266, 14267], "nytimesathome.com": [11190], "bishopinteractive.com": [1971], "www.srb2.org": [14403], "joli.paris": [2053], "prsp.in": [2053], "www.m.maps.yandex.by": [18953], "psu.ag": [2053], "www.bytes.com": [19623], "revenuesqua.red": [2053], "pt.meituan.com": [10405], "stealthy.io": [15703], "talonline.worldcat.org": [18748], "www.bookstore.ucsd.edu": [17216], "www.freedompop.com": [6288], "yoci.al": [2053], "lianjiang.meituan.com": [10405], "www.p3pwiz.com": [11368], "hilli.us": [2053], "secureorders.digiweb.ie": [4597], "app.keeptempo.com": [8991], "bjns.ca": [2053], "apms.es": [2053], "*.nardikt.ru": [7464], "txna.co": [2053], "proverbs.es": [2053], "iarchiv.es": [2053], "x.mategelei.com": [2053], "mytalkdesk.com": [20868], "rvw.cc": [2053], "discuz-lbsbbs.oss-cn-hangzhou.aliyuncs.com": [19346], "b.shaney.net": [2053], "hammu.mx": [2053], "assets.amung.us": [18565], "ancstry.me": [2053], "news-info.wustl.edu": [18290], "www.gns3.com": [6472], "www.viviscal.co.uk": [18092], "fbidhs.thecthulhu.com": [16600], "images3.sanalmarket.com.tr": [14514], "flygoo.jd.com": [8571], "smxpo.com": [2053], "livehelp.cancer.gov": [2864], "www.backupify.com": [1646], "ad.propellerads.com": [13383], "bluvelvtg.com": [2053], "sfabe.es": [2053], "catalog.nhlbi.nih.gov": [11241], "m.russian.alibaba.com": [850], "m.tutti.ch": [21818], "kcq.site": [2053], "gateway.ipfs.io": [8491], "abo1.co": [2053], "j.avocarrot.com": [2053], "cauto.ca": [2053], "store.servicenow.com": [14866], "link.whnt.com": [2053], "bitin.io": [2047], "sous-surveillance.fr": [15434], "www.9seeds.com": [245], "esigns4.us": [2053], "srcclr.com": [15588], "www.onenews.cz": [11843], "mirin.xerq.net": [2053], "www.vc.ru": [17872], "emailpref.acs.org": [966], "3dv.me": [2053], "uptimerobot.com": [21871], "www.spotplanet.org": [15549], "7gp.de": [2053], "parallax.com": [12595], "thump.com.de": [2053], "nb.getsatisfaction.com": [6738], "yooutube.ml": [2053], "depo.bercsenyi.bme.hu": [1570], "buildbetter.software": [2467], "caleblik.es": [2053], "auth.elsevier.com": [5287], "www.bob131.so": [2224], "bett.es": [2053], "www.svs.ulaval.ca": [17515], "bahg.at": [2053], "studenthealth.ucsd.edu": [17216], "baca.vatih.com": [2053], "provost.georgetown.edu": [6668], "medias.jbfavre.org": [8687], "sansalvador.usembassy.gov": [21879], "photosby.tc": [2053], "bucketexplorer.com": [2443], "partners.nvbugs.nvidia.com": [11174], "pfbe.net": [2053], "overtherh.in": [2053], "rvbd.ly": [2053], "www.acs.ncsu.edu": [11690], "www.adjust.com": [637], "fndrzng.biz": [2053], "bower.io": [19580], "4.da.gd": [4174], "*.marvelheroes.com": [10203], "www.coolminiornot.com": [3705], "secure2.zylom.com": [19247], "moshc.am": [2053], "skycure.com": [21472], "tweb.fir.im": [20123], "evoltobor.co": [2053], "rc.active24.cz": [19276], "synopsys.com": [15993], "sunyadk.com": [2053], "89a.me": [2053], "*.conduit.com": [3629], "picload.org": [12873], "fullyinvo.lv": [2053], "squatting-manual.squat.net": [21549], "live.startmail.com": [15663], "www.netcloude.cz": [11410], "frederikssund.dk": [6235], "luciosgold.ca": [9812], "epigr.am": [2053], "t.www.ua": [2053], "dhminor.stanford.edu": [15635], "tnij.je": [2053], "bulmer.info": [2053], "secure.avaaz.org": [1476], "ukirelandblog.netflix.com": [11420], "register.cocubes.com": [3395], "feeds.gawker.com": [6593], "neo-direct.com": [11087], "kaku.io": [2053], "llnl.gov": [9335], "radsafety.wustl.edu": [18290], "www.tracker-software.com": [16905], "i.jhr.mn": [2053], "s.iknow.travel": [2053], "go.cordon.click": [2053], "www.farmlogs.com": [5777], "bookshop.europa.eu": [5526], "franchise.7-eleven.com": [218], "arego.co": [2053], "*.wikimedia.de": [18595], "cybersicherheits-allianz.de": [892], "tfa.codes": [2053], "overheid.nl": [11324], "*.history.state.gov": [17345], "prww.co": [2053], "techopedia.com": [16303], "img.myslo.ru": [20864], "butian.360.cn": [130], "r.foodco.ma": [2053], "lnitup.co": [2053], "cmack.me": [2053], "travelcb.com": [2053], "static.ngs.ru": [20907], "st-petersburg.uio.no": [17615], "uofl.me": [2053], "autode.sk": [2053], "gruen.net": [6501], "www.ilovefreegle.org": [8037], "www.zalando.co.uk": [19094], "ene.co": [2053], "rrhh.unizar.es": [17643], "libertymutual.economist.com": [5161], "*.cbsstore.com": [2588], "yun.boutique": [2053], "l.nzz.nl": [2053], "sbfs.spatialbuzz.com": [15479], "regencesecure.snowfly.com": [15291], "chs.meituan.com": [10405], "vidyard.com": [17998], "sslshopper.com": [14418], "cbla.st": [2053], "go.mytiny.de": [2053], "on.adzima.me": [2053], "an6.in": [2053], "totalboox.com": [16872], "www.djoserwandelenfiets.nl": [7597], "v.meson.kr": [2053], "eos1.it": [2053], "advize.tv": [2053], "gcbhm.co": [2053], "stories.rackspace.com": [13740], "buysub.com": [2621], "www.tauday.com": [16231], "jhsmh.org": [9008], "cce.mitre.org": [10649], "2mre.net": [2053], "xiangyuan.meituan.com": [10405], "id.avast.com": [1484], "4bbs.us": [2053], "seopl.us": [2053], "afsic.nal.usda.gov": [17495], "*.netnea.com": [11437], "fpn.croydon.gov.uk": [19824], "imgurs.cf": [2053], "lolws.link": [2053], "ohwildyou.tk": [2053], "st.ab0.me": [2053], "hfb.me": [2053], "lev.st": [2053], "*.asahi.com": [1276], "www.sydneytowereye.com.au": [15964], "cdn.securelist.ru": [14748], "www.privacychoice.org": [13313], "financiallink.ucsd.edu": [17216], "100-1.cz": [2053], "logs-01.loggly.com": [9716], "dgom.me": [2053], "ccczh.ch": [19660], "learninglink.dol.gov": [19938], "api.bt.com": [1593], "dbrgn.ch": [4316], "arden.tc": [2053], "cbet.ly": [2053], "gamefly2.gameflycdn.com": [6538], "www.tubbergen.nl": [11324], "tchno.be": [2053], "on.mfox.me": [2053], "booklibrarycomputer.derby.gov.uk": [4460], "dadc.co": [2053], "www.gem.co": [6633], "*.jobware.de": [8752], "devel.oops.org": [12096], "cookbt.es": [2053], "soarss.com": [2053], "www.hazro.com": [20321], "jgumm.us": [2053], "waptianqi.2345.com": [87], "wonderwall.msn.com": [9959], "fbme.htwk-leipzig.de": [7736], "consult.maidstone.gov.uk": [10035], "uzh.digitale-diathek.net": [4587], "www.imeem.com": [8135], "www.care-net.org": [2897], "genius-download-2.itunes.apple.com": [1160], "de.nlx.org": [20918], "radforduniversity.worldcat.org": [18748], "www.bridgeways.com": [2369], "authors.iop.org": [8345], "serpukhov.beeline.ru": [1801], "www.peteraba.com": [12803], "zh.cloudflare.com": [3344], "cfosat.cnes.fr": [2691], "sports-ne.ws": [2053], "planet-source-code.com": [12976], "osu.edu": [11959], "audible.de": [1386], "www.feedarea.de": [13065], "allan.re": [2053], "bbdig.it": [2053], "ads.admarvel.com": [568], "anyt.im": [2053], "www.rugby.gov.uk": [14262], "ftby.us": [2053], "neup.inl.gov": [20462], "bbs.jianguoyun.com": [8715], "www.ccc-mannheim.de": [2593], "dish.my": [2053], "kippcolorado.illuminateed.com": [20430], "objectif-securite.ch": [11901], "de-ro.dict.cc": [4536], "stitcher.com": [15732], "senor.cool": [2053], "software.ac.uk": [21499], "*.businesswire.com": [1840], "go.mmo-pro.com": [2053], "tlemcen.in": [2053], "mars.jpl.nasa.gov": [11057, 11058], "www.from-ua.com": [20178], "stirling.gov.uk": [15731], "id.leakedsource.com": [9364], "sboo.me": [2053], "yolovilag.444.hu": [172], "ctolink.us": [2053], "www.bundesrat.de": [2489], "ph.meituan.com": [10405], "urlq.me": [2053], "inkw.us": [2053], "*.itv.com": [7998], "superdeals.aliexpress.com": [19343], "uwaterloo.ca": [17578], "www.aka.ms": [335], "www.cert.fi": [2638], "access.gp": [2053], "link.wreg.com": [2053], "datavantage.com": [4267], "brighttalk.com": [2377], "npddecisionkey.com": [4364], "copt.co": [2053], "l.npbn.space": [2053], "www.defora.org": [4390], "widget.weibo.com": [18481], "hlvy.co": [2053], "tog4.me": [2053], "apt.mopidy.com": [10771], "onbe.in": [2053], "spi.georgetown.edu": [6668], "immunicity.org": [8155], "cjon.co": [2053], "dropbox.com": [4864], "icat.ch": [2053], "swtch.com": [21630], "accadis.eu": [2053], "cdn.mycommerce.com": [10942], "fr.godaddy.com": [6898], "simblee.com": [15054], "kankolmo.squat.net": [21549], "www.getpostman.com": [20233], "sa.segpay.com": [14800], "r-t.ca": [2053], "erayymz.com": [2053], "vvcap.net": [17815], "go.vomu.org": [2053], "www.braintree.gov.uk": [2326], "huizhou.meituan.com": [10405], "balh.us": [2053], "bit.dirigent.jp": [2053], "api.eat.ch": [4966], "s.studio040.nl": [2053], "zebit.me": [2053], "dcall.uk": [2053], "r.muito.in": [2053], "www.mollom.com": [10724], "emaileri.fi": [5294], "cpmt.link": [2053], "*.envirostyles.ca": [5411], "vinrcl.safercar.gov": [14472], "eci.ac": [2053], "taiget.ru": [21652], "oplata.info": [12260], "hostbaby.com": [7651], "ultrasurf.us": [17421], "ws.amazon.ca": [19362], "i.ci8.ca": [2053], "business-blog.zomato.com": [19208], "skltr.com": [2053], "siia.net": [15349], "www.logilab.org": [9720], "forums.servethehome.com": [14846], "www.virtualbox.org": [18039], "www.startlogic.com": [15662], "tag1consulting.com": [16158], "citrix.gettyimages.com": [6741], "es.business.t-mobile.com": [16026], "www.upickem.net": [17677], "reportingitc.apple.com": [1160], "www.intsig.net": [20481], "jobsearch.works": [2053], "developer.capitalone.com": [2878], "webstarts.com": [18387], "owls.oxfordshire.gov.uk": [21056], "mein.edeka.de": [20006], "www.technical.ly": [16289], "hilfe-center.1und1.de": [82], "*.richmond.edu": [14108], "medialayer.com": [10321], "www.playlists.net": [13028], "explore.data.gov": [4253], "namgate.nes.scot.nhs.uk": [11102], "jy2.me": [2053], "teenrevenue.com": [16315], "www.studentprivacypledge.org": [21594], "pt.godaddy.com": [6898], "*.saga.co.uk": [14474], "spell.roundcube.net": [14219], "pcgw.org": [2053], "www.cryptopia.co.nz": [3956], "www.hopstudios.com": [7636], "www.countbayesie.com": [3772], "webdl.symantec.com": [15969], "go.davidba.in": [2053], "charitynavigator.org": [3068], "www.kinguin.net": [9055], "reservationcounter.com": [14037], "mtafboston.com": [2053], "www.onecloudsecurity.com": [12030], "gearslutz.com": [6607], "s.gjm.it": [2053], "machinegunsvegas.com": [9994], "baylorpr.es": [2053], "ken.sc": [2053], "status.chartbeat.com": [3077], "support.leahscape.com": [9363], "chococurb.me": [2053], "api.sailthru.com": [14480], "www.epito.bme.hu": [1570], "www.fullrate.dk": [6373], "www.ccedlookup.acs.org": [966], "yrpay.co": [2053], "candiangeo.info": [2053], "www.gmx.de": [6467], "amt-softwareportal.axosoft.com": [1517], "canaldigital.dk": [2862], "x.ngjuliann.com": [2053], "theolo.gy": [2053], "e.weibo.com": [18482], "mcal.me": [2053], "kraken.com": [9154], "*.infomaniak.com": [8261], "webmailer.hosteurope.de": [7660], "gifgratis.net": [6759], "by.mediatica.co": [2053], "hcr8.co": [2053], "social.technet.microsoft.com": [10543], "at.doctv.gr": [2053], "www.pod.geraspora.de": [6674], "www.feefo.com": [5856], "dnain.fo": [2053], "watch-online.ga": [2053], "www.promisejs.org": [21210], "zhukovsky.net": [22133], "denisferrari.co": [2053], "go.rallydm.com": [2053], "esomar.org": [5062], "see.rahul.se": [2053], "secure.aces.illinois.edu": [17544], "www-pw.cr0.org": [3818], "justgiving.com": [8845], "tld.pl": [16782], "glv.nz": [2053], "*.zenimax.com": [19144], "iambosch.dk": [2053], "www.flsenate.gov": [20135], "janus.dsi.cnrs.fr": [6314], "hilbrink.org": [2053], "www.variantweb.net": [21895], "science.slashdot.org": [15192], "www.comedy.co.uk": [19758], "secure.indeed.com": [8200], "gww.rocks": [2053], "mot.ms": [2053], "res-x.com": [3032], "de-fi.dict.cc": [4536], "ceo.decc.gov.uk": [19885], "gms.georgetown.edu": [6668], "z.vvh.io": [2053], "kp.biovendor.cz": [1956], "grnr.in": [2053], "dx.im": [2053], "charts.edgar-online.com": [4991], "ads.pubsqrd.com": [21224], "x.enkin.cc": [2053], "gmx.org": [6467], "help.yandex.com": [18956], "cmply.info": [2053], "ohsx.stanford.edu": [15635], "partnernoc.cpanel.net": [2710], "*.yelp.co.jp": [18979], "www.network23.org": [11457], "api.ok.ru": [11968], "*.ofb.net": [11819], "cecpdonline.org": [3009], "webmail.freenet.de": [6300], "technical.bestgrid.org": [1774], "www.1tulatv.ru": [78], "nsfwstories.us": [2053], "*.ucla.edu": [17211], "andrewbrookins.com": [1042], "info12.top": [2053], "marketplace.firefox.com": [5974], "calendar.activedatax.com": [537], "telefonica.cz": [16332], "slashcdn.com": [15190], "www.photobtc.com": [12850], "gygy.ga": [2053], "www.ajnasz.hu": [19334], "etrtbs2.smartstream.tv": [15247], "nevada.ual.es": [17361], "migration.digitale-diathek.net": [4587], "www.joinos.com": [8767], "ppcoin.org": [12485], "minijob-zentrale.de": [10613], "student.liu.se": [9238], "census-labs.com": [3001], "south-america.hivos.org": [7573], "webmail.anchor.net.au": [19388], "engage.advent.com": [693], "mtle.bo": [2053], "lvld.nl": [2053], "assets.evoluted.net": [5573], "www.flixbus.com": [6047], "s46.cnzz.com": [3391], "piwik.i4wifi.cz": [20407], "www.supersec.com": [15889], "*.hosting.ru.nl": [13744], "www.nz.anz.com": [355], "www.lancaster.gov.uk": [20634], "opentpx.org": [12178], "*.mtb.com": [9856], "mintguide.org": [10622], "njhom.es": [2053], "goiowa.solar": [2053], "secure.www.cfr.org": [3770], "bjmn.co": [2053], "www.bitquick.in": [1992], "origin-software.intel.com": [8359], "www.ubermedia.com": [17365], "python.org": [13500], "client-event-reporter.twitch.tv": [17164], "familie.aok.de": [357], "center6.top": [2053], "badad.co": [2053], "nmky.be": [2053], "lpdedicated.com": [609], "dyson.ie": [4935], "www.astronautix.com": [5341], "*.adultadworld.com": [682], "cnhands.co": [2053], "url.veerkun.com": [2053], "nws.fd.nl": [2053], "accounts.silentcircle.com": [15031], "sphotos-h.ak.fbcdn.net": [5816], "www.hertz.qa": [7499], "canvas.net": [2871], "cdn.printfriendly.com": [13293], "golot.to": [2053], "lists.tizen.org": [16778], "*.wi-fi.org": [18569], "sg.redhat.com": [13909], "freelanguage.org": [6260], "eater.cc": [2053], "euronuclear.org": [5529], "kgcr.co": [2053], "munin.openstreetmap.fr": [12245], "piratenpartei-bayern.de": [12936], "bnjmn.al": [2053], "extranet.swisscom.ch": [15951], "madadsmedia.com": [20735], "franchisegator.com": [6217], "media.digikey.com": [4552], "33across.com": [125], "www.zsl.org": [19219], "mu.lmbt.uk": [2053], "manage.mcafee.com": [10282], "hst.net": [2053], "www.imgkings.com": [20440], "answers.argos.ie": [1223], "*.invincealabs.com": [20482], "kian.fit": [2053], "da-dk.facebook.dk": [5736], "online-convert.com": [12066], "srb.am": [2053], "*.wimm.com": [18206], "identity.mageia.org": [10014], "shoppt.co": [2053], "go.cara.media": [2053], "tpb.cricket": [21771], "eforms.lancashire.gov.uk": [20633], "im.my": [2053], "m.mintcams.com": [2053], "*.testcloud.de": [16406], "turku.fi": [21816], "kzbra.in": [2053], "theproxybay.pw": [21709], "altz.co": [2053], "*.www.emunews.net": [5326], "facebook.es": [5736], "www.dietmardreier.de": [19916], "l-m.co": [2053], "wos.im": [2053], "www.energiesparcheck.at": [18582], "promobra.in": [2053], "store.kcrw.com": [20584], "omarawad.tk": [2053], "buy.sky.com": [15170], "usv.io": [2053], "blumenthals.com": [2211], "www01.tracer.jp": [11156], "dams.stanford.edu": [15635], "clnpstr.com": [2053], "shrtct.cc": [2053], "cdn.netvibes.com": [11450], "jianhu.meituan.com": [10405], "cloudsquare.biz": [2053], "c9s.us": [2053], "betches.co": [2053], "yes.co.il": [22101], "www.casascius.com": [2931], "wiefleis.ch": [2053], "jasig.org": [8670], "www.xtremepapers.com": [18904], "svn.xiph.org": [18878], "7ubo.ro.lt": [2053], "www.adxpansion.com": [584], "blowfi.sh": [2053], "www-950.ibm.com": [7821], "www.careercenter.wustl.edu": [18290], "i.like.ie": [2053], "l.ll1l.net": [2053], "daac.ornl.gov": [11892], "help.openstreetmap.org": [12177], "i.depeempe.com": [2053], "via.picklu.com": [2053], "auth.bournemouth.gov.uk": [2304], "keelog.com": [8988], "iamthecavalry.org": [8032], "my.1and1.com": [61], "s3.cnzz.com": [3391], "mesfichiers.org": [69], "www.pixel.fsg.ulaval.ca": [17515], "shofu.so": [2053], "www.ifightsurveillance.net": [8033], "tinfoilsecurity.com": [16743], "wvnts.co": [2053], "metrics.reedbusiness.net": [13937], "webspace4all.eu": [18450], "www.omim.org": [20989], "www.ecpic.gov": [4979], "tid.bl.it": [2053], "fray.li": [2053], "spotseeker.cac.washington.edu": [17577], "trademark.harvard.edu": [7351], "die.net": [4539], "url.googol.im": [2053], "rtpj.us": [2053], "bugsnag.com": [2465], "assets.unbounce.com": [17436], "www.paris-web.fr": [21072], "stormcraft.xyz": [2053], "attta.ch": [2053], "box.georgetown.edu": [6668], "www.fotoblur.com": [6193], "ancla.info": [2053], "wwrb.tk": [2053], "www.ahmia.fi": [776], "swtlnk.net": [2053], "tasha.serversaurus.com.au": [14863], "go.fmb.co.uk": [2053], "mstr.cl": [2053], "mstr.cd": [2053], "x.fl.am": [2053], "outbrain.com": [12355], "koolf.ly": [2053], "bygil.es": [2053], "marron.link": [2053], "code.visualstudio.com": [18078], "tpbproxy.pw": [21709], "lists.young-pirates.eu": [19023], "for3.co": [2053], "*.foxydeal.de": [6206], "checkout.virginmedia.com": [18028], "pnch.us": [2053], "s.kotatsu.org": [2053], "www.accessibility.nl": [490], "ngrok.com": [11568], "cdabba.com": [2053], "ecal.in": [2053], "www.thepirateshore.eu": [21215], "mutuals.fsa.gov.uk": [5710], "tverweek.com": [21824], "manager.londit.com": [9733], "*.nextag.it": [11556], "yashi.me": [2053], "shft.bz": [2053], "fnh.utoronto.ca": [17629], "click.otaserve.net": [21041], "ups.xplosion.de": [18888], "zod.ee": [2053], "www.biblegateway.com": [1895], "langui.sh": [9301], "ogmo.de": [2053], "fanlit.net": [2053], "go.murt.uz": [2053], "*.pcbooster.com": [12436], "www.gfi-italia.com": [6436], "ftp.openssh.com": [12167], "apps1.buckscc.gov.uk": [19605], "www.ielts.org": [7866], "www.offlinemode.org": [11954], "tour.ua.edu": [17201], "tinyims.co": [2053], "bigdinosaur.org": [1914], "a2zinc.net": [258], "amyjo.be": [2053], "schoolsonlineservices.leeds.gov.uk": [20653], "status.hostdime.com": [7654], "signup.icij.org": [7831], "donate.lls.org": [9243], "carz88.com": [2053], "s.mailstand.net": [2053], "remote.nhclu.org": [11498], "jaxne.ws": [2053], "learn.agilebits.com": [765], "zru.me": [2053], "xplor.id": [2053], "lf.meituan.com": [10405], "www.voltairenet.org": [21945], "supraz.info": [2053], "albumarsiv.com": [821], "packages.deepin.org": [4380], "conference.apnic.net": [1291], "ehsaweb.wusm.wustl.edu": [18290], "www.krystalstatus.co.uk": [18730], "meta.serverfault.com": [15611], "jrhn.ga": [2053], "allynisconnect1.gemalto.com": [6635], "frkyf.st": [2053], "consult.education.gov.uk": [20009], "nwswimshop.com": [11701], "festvl.com": [2053], "coldb.us": [2053], "adhikara.tk": [2053], "courthou.se": [2053], "rwine.uk": [2053], "b.remarkabl.org": [2053], "instructables.com": [8348], "alble.us": [2053], "smkngsc.tn": [2053], "www.spamcop.net": [21522], "gillette.mn": [2053], "blogs.monash.edu": [10728], "www.mauras.ch": [10250], "win8.svn.automattic.com": [1465], "lvp.rs": [2053], "imakethingswork.com": [8035], "eforms.woking.gov.uk": [22041], "nintex.us": [2053], "technet.idnes.cz": [20425], "s02.flagcounter.com": [20129], "s.paulmarc.org": [2053], "inventivedesigners.com": [8462], "go.mpls.tv": [2053], "*.iomtt.com": [8484], "flytog.me": [2053], "casseta.me": [2053], "dlycpr.com": [2053], "iam.colorofchange.org": [3502], "cppt.rs": [2053], "www.sccgov.org": [14579], "selms.spydus.co.uk": [21546], "www.verisign.co.uk": [17915], "agrisupply.com": [773], "on9news.tv": [2053], "www.bookshare.org": [2258], "l.nutyoutube.tk": [2053], "lane.by": [2053], "mcuk.xyz": [2053], "linkshare.com": [13769], "avatar.ms": [2053], "siteground.com": [15112], "publishers.viglink.com": [18003], "sodaspeaks.org": [2053], "u.marlukki.eu": [2053], "epay.cardiff.gov.uk": [19644], "na.apachecon.com": [1127], "cle.clinic": [2053], "thepiratebay.immunicity.party": [21217], "afm.tv": [2053], "www.radio.feec.vutbr.cz": [17814], "r.2redbeans.com": [2053], "seome.ch": [2053], "app.gztlk.com": [2053], "chg.to": [2053], "s.smartson.se": [2053], "securitylabs.websense.com": [18380], "d.turn.com": [17115], "www.proxxy.site": [21709], "perens.com": [2432], "go.zicha.name": [2053], "gcsuns.com": [2053], "kurvy.co": [2053], "nvcp.tk": [2053], "static.kameleoon.com": [8928], "url.lalit.org": [2053], "gates.ly": [2053], "developers.intercom.io": [8392], "syfy.ly": [2053], "support.photobucket.com": [19138], "meetmaest.ro": [2053], "www.research.illinois.edu": [17544], "*.payza.com": [12703], "neobookings.com": [11345], "be.dad.com.br": [2053], "6sm.link": [2053], "www.torrentsmirror.com": [16860], "cdn3.eurodns.com": [5511], "mnma.de": [2053], "providers.filepicker.io": [5916], "semaphoreci.com": [14814], "zenmate.com.ru": [19133], "alpinez.com": [2053], "fujino.com": [2053], "images.selfridges.com": [14811], "noransom.kaspersky.com": [8958], "cyngn.com": [4055], "www.clickandpledge.com": [3314], "55chan.org": [200], "www.cchcatalog.com": [2606], "3d.hcask.com": [2053], "my.reflected.net": [13950], "www.upsilon.cc": [17688], "images.nvidia.com": [11174], "clicktools.com": [3323], "b.johnestep.com": [2053], "buckwear.com": [19606], "tradeinchecker.com": [16915], "kcoti.com": [2053], "suizhong.meituan.com": [10405], "51fanli.net": [198], "dailycamp.us": [2053], "yamil.cc": [2053], "api.growingio.com": [20286], "pma-old.wedos.net": [18197], "northumberland.objective.co.uk": [20979], "m.animenewsnetwork.com": [19391], "sndp.me": [2053], "www.anchor.com.au": [1032], "gys.1688.com": [44], "www.netcologne.de": [11379], "serkes.co": [2053], "m.stubhub.co.uk": [15789], "www.hackhands.com": [7265], "usdoedregistration.ed.gov": [4988], "www.dotdeb.org": [4794], "www.imgjam.com": [8141], "www.ask.fm": [1296], "mycouncil.surreycc.gov.uk": [21611], "miy.ag": [2053], "*.rsna.org": [13754], "my.bayphoto.com": [1755], "source.winehq.org": [18652], "tdnvl.me": [2053], "cts.vresp.com": [17933], "gkzn.mx": [2053], "help.securingthehuman.org": [14760], "moonfruit.com": [10767], "correu.upf.edu": [17674], "*.umw.edu": [17548], "album.surf": [2053], "southend-on-the-move.org.uk": [21513], "www.webtype.com": [18392], "webservices.stanford.edu": [15635], "i.canvasugc.com": [2872], "*.epic.com": [5422], "pvac-sites.leeds.ac.uk": [17604], "veganvi.be": [2053], "arruda.eu": [2053], "solar1.net": [15357], "www.accesslabs.net": [484], "npch.us": [2053], "lovehoney.co.uk": [9789], "api.challenge.gov": [3045], "g.ontrip.in": [2053], "agoga.me": [2053], "cq.meituan.com": [10405], "www.packagelab.com": [12518], "worldsecuresystems.com": [653], "www.yaostrov.ru": [22093], "images.apple.com": [1160], "to.axanite.net": [2053], "esprtsdsk.com": [2053], "webhostingpad.com": [18401], "om.dowjoneson.com": [11513], "rry.im": [2053], "site.biz.id": [7648], "rimg03.rl0.ru": [14147], "tsa.io": [2053], "learning.southdowns.gov.uk": [21512], "dstnc.rs": [2053], "newspix.nzherald.co.nz": [11506], "*.m-pathy.com": [9858], "artsprojekt.com": [19118], "skillsdevelopmentscotland.co.uk": [21470], "macosforge.org": [9985], "privacy-cd.org": [13311], "www.umeng.com": [21847], "squarepenguin.co.uk": [15581], "changshou.meituan.com": [10405], "aram.ca": [2053], "wlspro.com": [2053], "kdenlive.org": [8984], "www.myskai.ch": [11034], "www.dragonbyte-tech.com": [4833], "*.kunk.org": [11139], "online.firsttechfed.com": [5986], "wuro.wustl.edu": [18290], "en-sk.dict.cc": [4536], "plhair.co": [2053], "bbagm.info": [2053], "staging.www.gigya.com": [6779], "www.ivacy.com": [8546], "www.ip-check.info": [7948], "s.tjpmo.com": [2053], "together.wustl.edu": [18290], "usweeklysubscriptions.com": [17709], "ao.tstest.net": [2053], "www.genivi.org": [6433], "www.avuecentral.com": [1498], "fisonline.lancashire.gov.uk": [20633], "runsci.co": [2053], "svnsft.co.uk": [2053], "cert.uninett.no": [17477], "hellus.tk": [2053], "www.encosia.com": [5335], "ilovesa.lt": [2053], "indiasmbmarketplace.cisco.com": [3221], "www.newgrounds.com": [11509], "omgr.in": [2053], "biostatistics.wustl.edu": [18290], "ft0.eu": [2053], "os.geeki.es": [2053], "vehcl.es": [2053], "stlbeacon.org": [15607], "shop.forgefields.com": [6153], "www.erlang.org": [5449], "tige.rs": [2053], "tixto.info": [2053], "apm.buzz": [2053], "piwik.upo.es": [17683], "kyleisom.net": [9207], "usyd.be": [2053], "www.modulus.io": [10714], "p4.raasnet.com": [13890], "directory.unm.edu": [17269], "gw3.alicdn.com": [846], "en.nullday.de": [11772], "shop.bvg.de": [1623], "llhprd.ukw.jp": [21840], "cejf.me": [2053], "www.dragonflydigest.com": [4835], "www.troopers.de": [17034], "www.ultradns.*": [17415], "pure.unileoben.ac.at": [17463], "usask.ca": [17623], "www.rushmypassport.com": [14278], "www.infosecisland.com": [8276], "ontheweb.geekfaeries.fr": [20215], "tangiblesecurity.com": [16199], "www.cumbria.police.uk": [3989], "www.sigmabeauty.com": [15023], "go.miicut.com": [2053], "camden.pt": [2053], "debt.wmtransfer.com": [18373], "bspb.ru": [2435], "asset-4.soup.io": [15415], "nuaz.co": [2053], "smartftp.com": [15233], "ssrn.com": [14419], "hfs.washington.edu": [17577], "siod.co": [2053], "www.yarddigital.com": [18966], "*.dellin.ru": [19890], "wrc.osu.edu": [11959], "www.engagingnetworks.net": [5364], "kaj.me": [2053], "*.factoryselecthomes.com": [5740], "ecomm2.dell.com": [4413], "kbpravda.ru": [20582], "www.globalsign.co.in": [6840], "aarhus.dk": [430], "track.www.zazzle.com": [19119], "ufa.beeline.ru": [1801], "comic-con.net": [3530], "formget.com": [20147], "workspaces.statushub.io": [15692], "jnck.ga": [2053], "travel.piliapp.com": [12887], "on.wcvb.com": [2053], "slghtjr.nl": [2053], "milkd.it": [2053], "clientportal.fox-it.com": [6202], "strava.fitbit.com": [6002], "mbib.hsbc.com.hk": [20380], "jbn.pw": [2053], "nasa.gov": [11058], "anth.me": [2053], "santafelinux.com": [21371], "www.carnegiescience.edu": [2916], "www.planningpa.bolton.gov.uk": [19569], "*.parti-pirate.ch": [12487], "www.xdomain.ne.jp": [18854], "url.urandul.net": [2053], "wiki.ethereum.org": [5484], "www.hertz.nl": [7494], "www.linguistlist.org": [9235], "zeus.krystal.co.uk": [9175], "valueclick.com": [17834], "www.turku.fi": [21816], "jwat.ch": [2053], "www.adoyacademy.se": [662], "myscore180.com": [10972], "bitkonan.com": [2049], "klbr.co": [2053], "software-univention.de": [17511], "*.amiando.com": [992], "mixpanel.com": [10658], "bioextrat.us": [2053], "hhvw.lt": [2053], "wtreset.wellcome.ac.uk": [22001], "direct.rhap.com": [21305], "*.monsoon.co.uk": [10751], "at.azder.mk": [2053], "mail.sina.com.cn": [15086], "ari.li": [2053], "go.ogasuna.info": [2053], "cityoflondon.gov.uk": [3249], "grinnellcollege.worldcat.org": [18748], "www.sublimetextbook.com": [21597], "hosp.fr": [2053], "go.ivovi.ch": [2053], "go.housejoy.in": [2053], "tema.so": [2053], "rt.bakerlab.org": [1667], "www.mtmweb.biz": [10356], "b5.chaucanh.net": [2053], "kenneth.io": [9003], "ipv6.lurkmore.so": [9838], "cometdocs.com": [3528], "iwowcase.com": [8018], "wisesync.link": [2053], "sync.americanexpress.com": [972], "pjc.co": [2053], "declic.io": [2053], "devcup.evernote.com": [5555], "lavasoft.com": [9328], "blu.mn": [2053], "jiafang.ye.1688.com": [44], "*.redbull.com": [13900], "nsho.re": [2053], "fenghua.meituan.com": [10405], "mdyn.co": [2053], "l.hireup.com.au": [2053], "hpac.cambridgeshire.gov.uk": [19632], "ruanko.taobao.com": [16206], "stronger.su": [2053], "loc1.hitsprocessor.com": [7569], "mibi.xiaomi.com": [18873], "cdn1.xvideosx.tv": [18837], "indexcat.nlm.nih.gov": [11241], "www.qgazette.com": [13577], "gionn.net": [6784], "j19.me": [2053], "www.yourworld.anz.com": [355], "cdn.mediavoice.com": [13084], "www.credoaction.com": [3863], "cyberstewards.org": [4037], "medienberufe-sde.kursbuero.de": [9197], "shop.1prime.ru": [73], "maputo.usembassy.gov": [21879], "www.vmail.me": [18097], "dug.so": [2053], "hf-lx.de": [2053], "research.nvidia.com": [11174], "static.tierra.net": [16705], "feeds.thesun.co.uk": [21719], "parentalcontrol.eset.com": [5463], "ru.tsn.ua": [21805], "donbalon.us": [2053], "jstdb.com": [2053], "www.teachingcenter.wustl.edu": [18290], "owa.ncl.ac.uk": [11073], "pthree.org": [13419], "cg.meituan.com": [10405], "www.fortnite.com": [6175], "videolicious.com": [17989], "launchde.sk": [2053], "www.usmagazine.com": [17708], "adamlou.is": [2053], "aspiredrinks.us": [2053], "e5.io": [2053], "go.htc.de": [2053], "betnet.fr": [11377], "on.dgbarnett.me": [2053], "mtv.tl": [2053], "www.domainwho.is": [4751], "www.internetvotes.org": [3008], "mobile.xmarks.com": [18882], "lifeb.it": [2053], "mcdia.co": [2053], "ovh-hosting.fi": [12378], "*.hitbox.com": [7564], "postauto.ch": [13176], "www.net-mobile.com": [11370], "stmacs.ca": [2053], "cjs-cdkeys.com": [2676, 2677], "aqmag.co": [2053], "to.zdp.us": [2053], "mynexus.ch": [2053], "www.pximg.net": [12960], "cdn.xsolla.com": [18896], "pojonews.co": [2053], "poczta.hekko.pl": [7429], "cdn.samsung.com": [14501], "www.flexport.com": [6029], "xvrg.me": [2053], "www.bitmovin.com": [2061], "a.kodirai.com": [2053], "bw8.co": [2053], "bam-bu.co": [2053], "status.braintreepayments.com": [2327], "downloads.baruwa.com": [19490], "mollom.com": [10724], "mayh.ws": [2053], "www.gustavus.edu": [7155], "mtswelding.co.uk": [20847], "noncombatant.org": [11662], "www.lainchan.org": [9286], "webmail.digi.hu": [4553], "abovealloffers.com": [864], "fsf.deals": [2053], "thawrah.in": [2053], "auth.dtu.dk": [16286], "static.prisguide.no": [21200], "s68.cnzz.com": [3391], "www.fb18.de": [5668], "coro.la": [2053], "jknig.ht": [2053], "ad.zanox.com": [19102], "nikl.us": [2053], "japerna.com": [2053], "akademy2006.kde.org": [8871], "fnpl.io": [2053], "performancealley.com": [12781], "www.intevation.de": [8445], "www.getjaco.com": [6727], "forums.openvpn.net": [12187], "www.filesmonster.com": [20111], "www.familie.hessen.aok.de": [357], "anomos.info": [1074], "vestor.ly": [2053], "hashbang.ca": [7357], "calm.ac": [2053], "cqrollcall.com": [2712], "www.rit.edu": [13667], "buzzbytes.net": [2534], "in.opera.com": [12252], "mpul.ly": [2053], "are.to": [2053], "folkyp.com": [2053], "www.microcorruption.com": [10535], "www.uglymugs.ie": [17399], "www.diogomonica.com": [4605], "bnkomi.ru": [19563], "htwr.co": [2053], "lennier.info": [9407], "cbo.to": [2053], "mgs.bz": [2053], "bbs.aliyun.com": [861], "mtec.ir": [2053], "www.eoft.eu": [5034], "*.pokemon.com": [13079], "www.buzzvpn.com": [2533], "dco-cdn.w55c.net": [18187], "blog.justgiving.com": [20566], "techco.tl": [2053], "epro.marketing": [2053], "loader.engage.gsfn.us": [7117], "tools.percona.com": [12769], "*.roe.ch": [14175], "www.infocity.az": [20455], "developer.bluetooth.org": [2208], "arb-contrainfo.espiv.net": [20058], "grscp.com": [2053], "www.avm.de": [1493], "atomicinsights.com": [1362], "aravo.kompany.com": [9120], "lovefood.com": [9794], "go.piszek.com": [2053], "xssposed.org": [18836], "esfl.info": [2053], "home.mcafee.com": [10282], "ay.wtf": [2053], "www.xt-commerce.com": [18898], "citicenter.info": [2053], "backstage.soundcloud.com": [15410], "skrt.io": [2053], "nowsecure.com": [11731], "pnl.pe": [2053], "www.lbo-news.com": [20643], "profile.ak.fbcdn.net": [5816], "help.weibopay.com": [21998], "snabb.co": [15264], "yehz.us": [2053], "this-download-would-be-faster-with-a-premium-account-at-good.net": [6954], "framegrabs.vzaar.com": [18179], "www.forsakringskassan.se": [6168], "srv3.bakerlab.org": [1667], "*.net.edgesuite.net": [799], "www.enfuseconference.com": [7134], "ange.io": [2053], "dfrdb.gov.au": [4384], "westasia.hivos.org": [7573], "on.gorrindo.com": [2053], "twca.mp": [2053], "mynortonaccount.com": [11703], "blog.hitbtc.com": [7561], "litecoinlocal.net": [9626], "*.schwabcdn.com": [14612], "www.teardowniq.com": [16262], "center4.top": [2053], "selfservice.blackpool.gov.uk": [2108], "www.zalando.pl": [19094], "feedback-form.truste.com": [16111], "mobile.asda.com": [387], "www.tune.com": [21812], "de.syllable.org": [21632], "wpimg.wallstcn.com": [18258], "www.dersverilir.net": [4463], "faz.link": [2053], "www.squarefree.com": [8705, 15582], "bugreport.filemobile.com": [5914], "3ischn.de": [2053], "l.svendsen.xyz": [2053], "unc.live": [2053], "analysis.avira.com": [1489], "c.mms.fit": [2053], "*.ehawaii.gov": [7378], "www.neave.tv": [11315], "ansne.me": [2053], "cherkessk.beeline.ru": [1801], "dashboard.voice.aol.com": [361], "www.tip.net.au": [16075], "*.buerger-cert.de": [2453], "egfx.me": [2053], "upsilon.cc": [17688], "www-static.ubuntu-fr.org": [17376], "boxee.tv": [2311], "recalll.co": [13877], "beefree.io": [1798], "blog.replicant.us": [14014], "omniatv.com": [20992], "correo.upo.es": [17683], "as.upc.ie": [17279], "bvrs.us": [2053], "id.4.boardgamearena.com": [2219], "*.onion.to": [12059], "pws.sc.egov.usda.gov": [17495], "docketalarm.com": [4706], "swthm.co": [2053], "cisco-images.cisco.com": [3221], "bmay.me": [2053], "*.cupidplc.com": [3992], "www.livebusinesschat.com": [9661], "sparkyjax.link": [2053], "ska.li": [2053], "authdb.ohiolink.edu": [11961], "la.meituan.com": [10405], "btyw.info": [2053], "u.badgerdash.tk": [2053], "cdn.elegantthemes.com": [5258], "internet.org.nz": [8425], "bit.tdf.org": [2053], "oebb-co2-ticker.at": [20984], "bggk.co": [2053], "mainlinem.co.uk": [2053], "c21.in": [2053], "mohr4.me": [2053], "prop.red": [2053], "saisapp67.stanford.edu": [15634], "www.webpay.cl": [18435], "www.cimbpreferred.com": [2663], "uweb3.host.ie": [4596], "pndt.co": [2053], "tfrte.co": [2053], "becker.starfishsolutions.com": [21565], "discuss.dwolla.com": [4913], "www.anybots.com": [1118], "www.allcoin.com": [868], "99bitcoin.com": [2053], "workable.com": [18741], "coiiege.com": [2053], "nhn.li": [2053], "www.site.yandex.com.tr": [18954], "poste.io": [13191], "nslk.ly": [2053], "www.cartersoshkosh.ca": [2928], "fastmail.com": [5804], "archive.stsci.edu": [15461], "itzb.nl": [2053], "tmz.com": [16087], "precisionpros.com": [13245], "l.sd3.in": [2053], "blogs.vinuthomas.com": [18018], "sculpteo.com": [14671], "kbb.com": [8997], "es.foursquare.com": [6200], "jgw.io": [2053], "www.saymedia.com": [14558], "iphos.ru": [2053], "thiswebhost.com": [16640], "portalcontent.johnshopkins.edu": [8760], "jsb.im": [2053], "m.gatewaytohomechoice.org.uk": [20205], "lccn.loc.gov": [9690], "www.rapidmoviez.eu": [21254], "redpix.ie": [2053], "publish.escholarship.org": [5069], "securepaynet.net": [14751], "mcl.tw": [2053], "adamcaudill.com": [592], "thepiratebay.unblocked.stream": [21217], "ukfssweb.food.gov.uk": [20142], "1anh.com": [65], "verifiedvoting.org": [17912], "bow.life": [2053], "www.igolder.com": [8103], "reverbnation.com": [14075], "neowiki.neooffice.org": [11342], "nwk-unbrick2.apple.com": [1160], "www.oroboro.com": [21030], "www.up1.ca": [17667], "t.boegl.in": [2053], "bchydro.com": [1548], "m.btcchina.com": [1599], "j.w12.org": [2053], "www-amsweb-ext.imf.org": [7904], "lex.to": [2053], "p3nmssqladmin.secureserver.net": [14755], "rdns.cc": [4070], "r.priztek.com": [2053], "edtll.es": [2053], "www.sfz.uni-mainz.de": [17611], "pirateparty.gr": [21135], "l.xtsunamix.xyz": [2053], "ancora.click": [2053], "bcs-mx.com": [2053], "samples.asp.net": [393], "support.surfeasy.com": [15904], "ccsdlib.ccsd.cnrs.fr": [6314], "ftccomplaintassistant.gov": [5720], "www.phpclasses.org": [12864], "bit.thdev.net": [2053], "go.nelwel.net": [2053], "redcoon.pt": [13920], "dolimg.com": [4731], "as.cx": [2053], "meb.manuel.pw": [2053], "idgkonto.idg.se": [7852], "www.post.cz": [14891], "vologda.rt.ru": [13703], "mailman.stanford.edu": [15635], "gwdang.com": [20300], "static.chefkoch-cdn.de": [3116], "rottenecards.com": [14215], "thr.com": [16068], "s1s.ky": [2053], "www.post.ch": [13176], "sstats.adobe.com": [655], "esp.ap.equinix.com": [5438], "tongcheng.meituan.com": [10405], "raulmontero.tk": [2053], "*.opscode.com": [12263], "cmu.edu": [2918], "*.medical-treatments-management.com": [10356], "cdtlicio.us": [2053], "x.mcrbrasil.net": [2053], "www.solutionshealthcare.com": [15374], "l.evj.nl": [2053], "panajunior.com": [2053], "souq.social": [2053], "kink.ly": [2053], "oberpfalz.piratenpartei.de": [12923], "uchastings.edu": [17218], "assessment.sia.homeoffice.gov.uk": [20355], "kah.vi": [2053], "ffc.ph": [2053], "jrcon.me": [2053], "www.craphound.com": [3831], "audbn.co": [2053], "s.fam-rose.net": [2053], "t.anbell.co.uk": [2053], "services.postcodeanywhere.co.uk": [21177], "ausinfotech.net": [1412], "secular.org": [14716], "nsm.me": [2053], "vrg-s.com": [2053], "daweso.me": [2053], "deli.jd.com": [8571], "lists.gajim.org": [6523], "aninha.tk": [2053], "v.day.az": [2053], "avoinyliopisto.fi": [19467], "sbs.e-paycapita.com": [19978], "fell.to": [2053], "version6.ru": [21911], "h.irs01.com": [20498], "cqnow.co": [2053], "www.tuftsmedicalcenter.org": [17095], "www.meine-verbraucherzentrale.de": [17909], "realworldocaml.org": [13862], "shrty.pw": [2053], "cookbooks.adobe.com": [655], "nettitude.com": [11447], "sakerhet.idg.se": [7852], "chessbase.com": [3127], "policemutual.co.uk": [13088], "www.hertztrucks.de": [7485], "dropdav.com": [4863], "myin.at": [2053], "embracelife.co": [2053], "cl.vc": [2053], "www.docelu.pl": [4703], "tlu.yt": [2053], "www.valuedial.com": [17839], "www.sony.eu": [15391], "s-t-d.org": [21350], "login.asp.net": [393], "www.calendarwiz.com": [2795], "lnca.mp": [2053], "mystarwars.tk": [2053], "artsdashboard.stanford.edu": [15635], "jotace.me": [2053], "lrnskls.org": [2053], "www.notefly.org": [11718], "steverul.es": [2053], "img1.wsimg.com": [14751], "tcninfo.com": [2053], "grj.se": [2053], "games.yandex.com.tr": [18954], "*.infrastructure.gov.au": [4451], "www.gcaptain.com": [6428], "keyp.la": [2053], "myheritage.pl": [11023], "lstrn.us": [2053], "www.cluster1.easy-hebergement.net": [5134], "cal.net": [2783], "hdbits.org": [7388], "embed.5min.com": [208], "admin.zsl.org": [19219], "annualreport.stanford.edu": [15635], "tpbay.co": [21709], "xmpp.org": [18827], "mcshort.pe.hu": [2053], "german.alibaba.com": [850], "due.la": [2053], "mload.me": [2053], "sapaac.com": [2053], "mycg.hk": [2053], "m.onofoods.com": [2053], "professionals.engineering.osu.edu": [11959], "00f.net": [0], "go.ironman.com": [2053], "nieuwsblad.be": [11587], "nws.sunmarg.in": [2053], "roomscheduling.uwm.edu": [17580], "sitemanager.ncl.ac.uk": [11073], "www.franciskim.co": [6218], "mediastorehouse.net": [10312], "fb.aim-sa.net": [2053], "med.uio.no": [17615], "makerble.com": [10078], "fullcirclestudies.com": [6365], "nt.uni-ulm.de": [21850], "mkkh.co": [2053], "dl.web.sogoucdn.com": [15351], "to.thrivedc.org": [2053], "luci.criosweb.ro": [3870], "behance.net": [1809], "easthants.gov.uk": [5113], "api.weibo.com": [18482], "by.sjm.us": [2053], "glassdoor.co.in": [20247], "tinybp.com": [2053], "blog.newsela.com": [20901], "browsingprotection.f-secure.com": [5654], "books.enaza.ru": [5332], "so.arte": [2053], "thomsonreuters.com.ar": [21729], "events.berkeley.edu": [17526], "prky.me": [2053], "www.jaim.at": [8641], "1ty.me": [80], "www.bosh.io": [2283], "aboren.org": [2053], "webfestglobal.com": [18413], "greenmangaming.com": [7059], "talentne.ws": [2053], "l.imti.co": [2053], "go.luca.lk": [2053], "wldktn.co": [2053], "*.autohits.vn": [1452], "guides.lib.washington.edu": [17576], "fylde.gov.uk": [6408], "intux.de": [8456], "townta.lk": [2053], "btcbm.io": [2053], "skne.at": [2053], "www.uprising.org.uk": [21868], "www.jqplay.org": [20553], "s.suhrthu.com": [2053], "trowe.com": [2053], "suqian.meituan.com": [10405], "glam.opendata.ch": [21011], "wa236.teamviewer.com": [16259], "go.redirectingat.com": [21287], "mack.pw": [2053], "m.atoz2u.com": [2053], "tech.netapp.com": [11374], "ntnl.org.nz": [2053], "beatlim.it": [2053], "bugs.unrealircd.org": [17651], "static.yota.ru": [22107], "z.1re.ca": [2053], "webapp.imgix.com": [20438], "www.npi.org.uk": [11137], "www.upcase.com": [17672], "dna.ancestry.com": [1031], "training.obfs.uillinois.edu": [17238], "rossvi.de": [2053], "cbridge.to": [2053], "applications.telford.gov.uk": [21675], "anti-theft.kaspersky.com": [8958], "www.assoc-amazon.com": [1323], "doc.mono.ch": [2053], "volusiaflagler.aclufl.org": [286], "youmail.com": [19013], "madametussauds.com": [10002], "i1.services.social.microsoft.com": [10543], "itbiz.cz": [8535], "download.aircrack-ng.org": [789], "teltarif.de": [16363], "*.bellsouth.com": [1817], "on.namgbr.org": [2053], "admin.trafficstars.com": [21776], "api.curation.ameba.jp": [963], "re.taobao.com": [16206], "opac.ub.uni-mainz.de": [17611], "jaf.li": [2053], "www.icts.kuleuven.be": [8969], "hu.4.boardgamearena.com": [2219], "img6.eadaily.com": [19986], "www.slashdotmedia.com": [15193], "pkg.bunsenlabs.org": [19612], "www.kurly.fr": [9195], "ec2.cdn.dell.com": [4413], "simage4.pubmatic.com": [13422], "eatsa.com": [19999], "hannahousetours.stanford.edu": [15634], "www.torreycommerce.com": [16865], "to.appinvit.es": [2053], "altrm.co": [2053], "cancercoun.cl": [2053], "library.mit.edu": [9916], "ow.fwd.fm": [2053], "gradle.org": [7010], "*.alienvault.com": [853], "yourvideohost.com": [19040], "*.nulab-inc.com": [11770], "kachingle.com": [8916], "juni.pr": [2053], "test-nqs.nice264.com": [11576], "cdn.yottos.com": [22108], "l.skpetites.com": [2053], "*.htrnews.com": [7461], "cinema.usc.edu": [17564], "roblahb.la": [2053], "*.neo-interactive.hu": [11337], "evdrive.com": [5083], "slproweb.com": [15220], "testbed.aviationweather.gov": [19463], "brvry.me": [2053], "mondo2000.net": [10731], "www.acrobatusers.com": [521], "btnapps.net": [2408], "rdean.me": [2053], "blogs.nottingham.ac.uk": [11726], "c1.neweggimages.com": [11508], "militaryfriendly.com": [20797], "trituns.co": [2053], "www.kmymoney.org": [8891], "myaccount.rotherham.gov.uk": [14212], "my.yota.ru": [22107], "barnet.moderngov.co.uk": [20816], "www.net.vutbr.cz": [17814], "www.ecommercebrasil.com.br": [4984], "app.fastly.com": [5803], "star.erg.cuhk.edu.hk": [2747], "udc.bing.com": [1949], "www.latimes.com": [17006], "opaskartta.turku.fi": [21816], "p-g.me": [2053], "phrmcyt.ms": [2053], "evs.so": [2053], "sso.acs.org": [966], "www.faxrobot.com": [5812], "americanspaces.state.gov": [17345], "www.macfound.org": [9983], "res-ga.smzdm.com": [15263], "www.cimbsecurities.co.th": [2665], "www.charterourcommunity.com": [3082], "getapp.com": [20230], "www.brandnewbooty.com": [2333], "repar.co": [2053], "libraries.ceredigion.gov.uk": [3025], "i2.hdslb.com": [20327], "livehd.me": [2053], "dolphin.com": [19939], "cmag.to": [2053], "zarechye.beeline.ru": [1801], "fcs.co.at": [2053], "govsen.se": [2053], "carefre.co": [2053], "www.torchbox.com": [16843], "chromium.org": [3179], "careint.uk": [2053], "exchange.1and1.com": [61], "www4c.medicare.gov": [20772], "safelinks.f-secure.com": [5654], "stc.sandbox.pagseguro.uol.com.br": [17276], "w.tides.org": [2053], "www.lazycoins.com": [9338], "web3.login.cornell.edu": [3744], "www-304.ibm.com": [7821], "loc-aid.com": [9696], "typehype.eu": [2053], "likes.kr": [2053], "secure.coursesmart.com": [19803], "bgcky.us": [2053], "wcms-prod-web-3.ucsc.edu": [17591], "bmd.gy": [2053], "tr.prospecteye.com": [13390], "not-bad.link": [2053], "sologi.co": [2053], "img0.leboncoin.fr": [20650], "lipetskaya-obl.beeline.ru": [1801], "pxc.otto.de": [12339], "*.groupersocialclub.com": [7098], "apcjobs.co": [2053], "www.dotcologne.de": [4788], "mobiro.be": [2053], "www.airshipventures.com": [791], "bereavement.bedford.gov.uk": [19509], "www.chip-chap.com": [3144], "logmein.com": [9711], "ssl.aimpulse.com": [782], "www.six.feec.vutbr.cz": [17814], "g.lingona.com": [2053], "lick.ms": [2053], "mntr.it": [2053], "cloudmark.com": [3369], "perk.as": [2053], "myricom.com": [11032], "d.igit.al": [2053], "vikash.link": [2053], "livepassdl.conviva.com": [3698], "itci.eu": [2053], "mail.econda.de": [5159], "wikimedia.org.il": [18595], "qntm.co": [2053], "doc.zarafa.com": [19109], "*.gizmodo.com": [6817], "medicine.wustl.edu": [18290], "www.canon.fi": [2868], "www.canon.fr": [2868], "g4.std3.ru": [15699], "tresssd.es": [2053], "www.patronbase.com": [21083], "secure.*.onsugar.com": [12014], "ians.ch": [2053], "mygannett.gannett.cornell.edu": [3744], "www.openhpi.de": [12138], "shophumanity.us": [2053], "account.mypostoffice.co.uk": [13181], "os.alipayobjects.com": [857], "parallels.com": [12597], "kcrw.com": [20584], "codemirror.net": [3433], "argonaut.es": [2053], "bex.is": [2053], "tjunks.us": [2053], "urbanartcloud.com": [17700], "www.zimperium.com": [19186], "dpct.co": [2053], "myshar.es": [2053], "webregister.web.cern.ch": [2631], "securifera.com": [14759], "rajo.photo": [2053], "extra.sankakucomplex.com": [21368], "boyb.me": [2053], "sstic.org": [14421], "cases.legal": [19653], "u.iphide.net": [2053], "tinfoil.co": [16743], "www1.pconline.com.cn": [12437], "s.anime.dj": [2053], "l.udr.me": [2053], "cf-wp-prod.sharethis.com": [14913], "fetz.us": [2053], "steganos.com": [15718], "uimag.in": [2053], "clpush.es": [2053], "wibl.co": [2053], "dvadrt.co": [2053], "ctu.io": [2053], "endlp.me": [2053], "chltr.cl": [2053], "sangnite.info": [2053], "wbt.ms": [2053], "time.yandex.com": [18956], "mcross.us": [2053], "formscau.upf.edu": [17674], "jscsecmat.ctscdn.com": [3976], "nin.li": [2053], "www.antifa.cz": [1107], "go.logect.com": [2053], "subgraph.com": [15813], "chtl.it": [2053], "ec.razerzone.com": [13820], "vclz.co": [2053], "emeasuretool.cms.gov": [19742], "www.smarthide.com": [15234], "www.wolframscience.com": [18701], "boat.voyagegroup.com": [18154], "worldfoodprize.org": [18756], "secretmaryo.org": [14711], "whitefamily.in": [2053], "carbonmade.com": [2891], "m.superpages.com": [15888], "georgievsk.beeline.ru": [1801], "ian.cx": [2053], "kjbr.at": [2053], "online.alumni.rice.edu": [14103], "tbldr.co": [2053], "diogo.me": [2053], "admin.google.com": [6962], "qzy.fr": [2053], "phishd.com": [12842], "aoptix.com": [366], "badnerd.ml": [2053], "www.red-gate.com": [13892], "paymybill.uillinois.edu": [17238], "ocg.cancer.gov": [2864], "mountspace.com": [10809], "glamp.in": [2053], "web.boldchat.com": [2240], "w.drgarytho.com": [2053], "www.atlasofprejudice.com": [1356], "meter-svc.nytimes.com": [11189], "l.androdize.com": [2053], "www.studiegids.tue.nl": [16129], "customersonly.dtint.com": [4161], "habbo.news": [2053], "scriptjunkie.us": [14664], "static6.uk.businessinsider.com": [2512], "tatepublishing.com": [16229], "podhelp.me": [2053], "jobs.ieee.org": [7860], "c.bing.com": [1949], "i.gaenali.pe.kr": [2053], "affiliate.hitbtc.com": [7561], "y.yehs.co": [2053], "pnauti.co": [2053], "www.icsalabs.com": [7838], "21xxx.ml": [2053], "help.pandora.com": [12564], "www.parametersecurity.com": [12598], "www.instat.com": [8175], "cargom.tc": [2053], "on.tmj4.com": [2053], "balkanleaks.eu": [1672], "photobtc.com": [12850], "www.comic-con.org": [3530], "localc.us": [2053], "pdq.at": [2053], "thepiratebay.bypassed.download": [21217], "conference.oracle.com": [12284], "srbes.com": [2053], "spclzd.uk": [2053], "ajhaslett.info": [2053], "he-x.com": [2053], "grc.com": [6497], "git.cru.fr": [3900], "itg.sh": [2053], "abhis.hk": [2053], "forc.ir": [2053], "slce.us": [2053], "www.everydayfeminism.com": [5561], "yinchuan.meituan.com": [10405], "www.briehost.com": [2370], "www.speed-dreams.org": [15500], "desktop.vovici.com": [18144], "loopfuse.com": [9767], "b.tro.ph": [2053], "politiken.dk": [13101], "poole-consult.objective.co.uk": [20979], "www.slenderkitchen.com": [15197], "ae01.alicdn.com": [846], "moodle-test.uni-mainz.de": [17611], "sedo.fr": [14787], "azct.info": [2053], "rtfd.org": [13844], "store.wsj.com": [22058], "www.ictu.nl": [7840], "eti.ae": [2053], "sgms.co": [2053], "listonic.com": [9613], "torrentz.me": [16863], "sxod.im": [2053], "foodt.be": [2053], "xsens.com": [18894], "knowledge.hubspot.com": [7739], "rlink.pw": [2053], "mrea.ch": [2053], "mfaj.ml": [2053], "ngy.me": [2053], "*.cypherpunks.ca": [4059], "bitly.upslon.ga": [2053], "answers.virginmobileusa.com": [18025], "infor.mr": [2053], "popute.es": [2053], "www.electronicinsanity.com": [5255], "download2.mikrotik.com": [10574], "*.ellislab.com": [20027], "www.fimc.net": [10329], "processing.org": [13348], "chapin.williams.edu": [18616], "constantcontact.com": [3657], "www.gocoin.com": [6896], "www.beabloo.com": [19508], "www.familie.bayern.aok.de": [357], "diagonalperiodico.net": [4522], "ac-ao.de": [2053], "ccbill.com": [2592], "l.rthr.me": [2053], "slo-tech.com": [15211], "enovance.com": [19984], "*.aans.org": [965], "5pts.cc": [2053], "hpci-tech.aics.riken.jp": [13663], "roaringpenguin.com": [14152], "kulturhusetislandsbrygge.kk.dk": [8883], "ivanrafael.info": [2053], "goto.mattm.cc": [2053], "cdn-www.reflected.net": [13950], "reboot.vas-hosting.cz": [21896], "www.nnmclub.to": [11132], "cmbt.gt": [2053], "claytonsaur.us": [2053], "www.spacelaunchreport.com": [15460], "gsg.today": [2053], "www.amnesty.org.ru": [1007], "hngt.co": [2053], "sources.opencorporates.com": [12129], "www.adsafecontrol.com": [576], "allclearid.com": [867], "fgtix.to": [2053], "w5m.ag": [2053], "s.kalastro.id": [2053], "go.reckoning.nl": [2053], "www.formassembly.com": [6158], "betyt.ml": [2053], "lcurio.us": [2053], "www.jsis.washington.edu": [17577], "builtwith.com": [2469], "discussions.apple.com": [1160], "properties.metrogroup.de": [10502], "www.23andme.com": [89], "p7.raasnet.com": [13890], "www.drdobbs.com": [17204], "xinyixy.meituan.com": [10405], "ee-www.stanford.edu": [15635], "meteoprog.kz": [10490], "wennect.info": [18497], "sync.mathtag.com": [10236], "lists.us.dell.com": [4413], "portal.sevenoaks.gov.uk": [14882], "www.scottlinux.com": [14643], "vitalsupply.co": [2053], "at.svastha.net": [2053], "usvisa-info.com": [2723], "thinkcer.ca": [2053], "qianbao.baidu.com": [1661], "molloy.worldcat.org": [18748], "mjt.co": [2053], "domani.ly": [2053], "advq.yandex.com.ua": [18955], "www.kingston.greenparty.org.uk": [7052], "s.iuniv.tv": [2053], "edtech.team": [2053], "*.pipedot.org": [12915], "www.travelnow.com": [16967], "support.cape-it.de": [2875], "smutty.com": [15261], "rsdn.me": [2053], "se.wwte9.com": [18232], "sites.usa.gov": [17307], "link.jbeurel.io": [2053], "office.wikimedia.org.uk": [18595], "s.mouallem.com": [2053], "www.1x.com": [59], "support.runbox.com": [14274], "beesecure.prpa.org": [15291], "www.redcoon.pt": [13920], "www.sympa.org": [15974], "examcr.am": [2053], "mnd.ly": [2053], "cdn10.iconfinder.com": [8066], "erthx.pl": [2053], "ecco.me": [2053], "campusplan.georgetown.edu": [6668], "sanantonio2016.honeynet.org": [20357], "hostica.com": [7667], "gkgl.co": [2053], "www.yacuna.com": [18934], "sl8d.co": [2053], "dot.sachin21.jp": [2053], "tools.bakerlab.org": [1667], "http.jabber.at": [8620], "stiff.ninja": [2053], "n3.hitravel.xyz": [2053], "jamp.ae": [2053], "coachup.me": [2053], "edg.gs": [2053], "6may.fbk.info": [5818], "segue.link": [2053], "phonograph-static.voxmedia.com": [21953], "butrfli.es": [2053], "assessment.104.com.tw": [18], "www.provost.usc.edu": [17564], "hiesorrentovalley.hotelwifi.com": [7697], "www.zenmate.pt": [19133], "media.cheatography.com": [19692], "www.openmoko.org": [12237], "jira.upc-cablecom.ch": [21865], "specials.lidl.co.uk": [20682], "www.pss.sk": [13415], "order.1and1.co.uk": [63], "ztunnel.com": [19076], "www.acspul.asso.ulaval.ca": [17515], "www.mims.co.id": [9910], "rss.bataysk-gorod.ru": [19495], "alah.li": [2053], "lists.openswan.org": [12246], "*.violetindigo.com.au": [18020], "www.companic.nl": [19763], "stegre.fr": [2053], "visiba.com": [18060], "gaia-gis.it": [6521], "tekgoblin.com": [16320], "whatson.sydney.edu.au": [21631], "eventspace.georgetown.edu": [6668], "collcons.it": [2053], "www.xtgem.com": [18900], "504.la": [2053], "mus.cr": [2053], "earth.leeds.ac.uk": [17604], "www.juki.co.jp": [8611], "*.vcommerce.com": [17873], "urb.yt": [2053], "piratetavern.org": [21709], "*.buysellads.com": [2526], "s.draiser.net": [2053], "www.billmaher.com": [1932], "jrx.to": [2053], "developer.appcelerator.com": [1152], "sirket.yandex.com.tr": [18954], "kcons.co": [2053], "download.alipay.com": [857], "*.biowarestore.com": [1957], "wwwsecure.lego.com": [9222], "emailcenter.acs.org": [966], "audio-stori.es": [2053], "inter.ly": [2053], "flo.mx": [2053], "polpix.sueddeutsche.com": [15832], "twcardsonline.anz.com": [355], "www.volafile.io": [21944], "kop11.com": [8894], "lrc.businesslink.gov.uk": [2518], "find.siz.ch": [21464], "www.xfire.com": [18870], "mail.vieux.mondediplo.com": [10729], "pozne.ws": [2053], "www.antiphishing.org": [1106], "cdn.betteradvertising.com": [5565], "murmansk.beeline.ru": [1801], "img5.thalasseo.com": [16430], "pagseguro.captcha.uol.com.br": [17276], "nextgenautoparts.com": [11561], "now.mmedia.me": [10456], "door.wndr.nl": [2053], "lvoc.org": [9265], "waba.co": [2053], "vod.shaw.ca": [14932], "ebms.cimb.com": [2663], "hlst.ee": [2053], "therealreal.com": [21714], "mumbrel.la": [2053], "lk.cal2.com": [2053], "mysongspk.cf": [2053], "janus.cnrs.fr": [6314], "crtvint.co": [2053], "conferencing.swisscom.ch": [15951], "secure.prleap.com": [3624], "dotdeb.org": [4794], "linuxmint-art.org": [21006, 21007], "www.tinyapps.org": [16758], "library.ucsc.edu": [17591], "l.junookyo.xyz": [2053], "prezi.com": [13273], "7dt.us": [2053], "www.backbox.org": [1638], "*.trefis.com": [16983], "www.nghttp2.org": [11566], "www.datatilsynet.no": [4294], "postalheritage.org.uk": [13185], "slov-lex.sk": [15217], "cesky-hosting.cz": [19680], "*.nkb.ch": [20574], "caskstore.com": [2943], "darjeelin.fr": [4226], "www.homelessworldcup.org": [7625], "nc-buyiphone.apple.com": [1160], "leads.hdfcbank.com": [7389], "ceskaposta.cz": [3034], "forums.wildstar-online.com": [18602], "*.templatemonster.com": [16367], "*.habets.se": [7259], "www.blender.org": [2120], "it-blogger.co": [2053], "postpoints.washingtonpost.com": [18287], "s.iffy.io": [2053], "*.fused.com": [6390], "images-www.localist.com": [9702], "tlfc.co": [2053], "account.napster.com": [20874], "tsplin.es": [2053], "www.pagesix.com": [21064], "imoga.at": [2053], "vis.payola.cz": [2053], "develop.aliyun.com": [861], "pathways.nice.org.uk": [11110], "mgnwp.com": [2053], "updates.atomicorp.com": [1364], "www.somed.bfs.admin.ch": [21629], "bpl.me": [2053], "jonathan.sh": [2053], "www.wargaming.com": [18275], "www.pubs.ext.vt.edu": [18031], "www.identityworkshop.eu": [8088], "cdneu2.wahanda.net": [18243], "wed.rs": [2053], "i.1mlnlks.com": [2053], "hekko.pl": [7429], "notalwayshopeless.com": [20931], "idportal.lrz-muenchen.de": [9396], "www.rolex.com": [14187], "thndr.it": [2053], "avpti.me": [2053], "way.fm": [2053], "nitc.ga": [2053], "hobby.idnes.cz": [20425], "x1.xingassets.com": [18877], "*.activeevents.com": [534], "from.gd": [2053], "www3.open.ac.uk": [12184], "url.alexake.com": [2053], "adp.com": [1464], "i.sshare.ca": [2053], "vineyardvines.com": [18015], "*.shopstyle.com.au": [14965], "*.newyorker.com": [16468], "inv.ca": [2053], "solutionsfinder.capitalone360.com": [2879], "www.ultrahdtv.net": [17418], "flageo.lt": [2053], "mail.kn.vutbr.cz": [17814], "ptv.pro.br": [2053], "www.goodlucktrunk.com": [6956], "dlcu.homeoffice.gov.uk": [20355], "nstpmo.org": [2053], "baltika.fm": [19482], "bps.education": [2053], "eriksen.cz": [2053], "summerexperiences.wustl.edu": [18290], "redeem.itunes.apple.com": [1160], "boingboing.net": [2234], "zhaoyuan.meituan.com": [10405], "moralepatch.es": [2053], "h-node.org": [7172], "planet.haskell.org": [7361], "cumulusnetworks.com": [3990], "wll.coffee": [2053], "krystals.co": [2053], "secure.raynersw.com": [13819], "rescomp.stanford.edu": [15635], "www.abnamro.nl": [281], "benl.ink": [2053], "account.viber.com": [17956], "www.anxbtc.com": [354], "hilbr.ch": [2053], "trg.gr": [2053], "grid.worldcommunitygrid.org": [18749], "www.customworks.ca": [9742], "consumersunion.org": [3669], "techanarchy.net": [21668], "a-db.fr": [2053], "www.haixia-info.com": [20306], "www.brennancenter.org": [2356], "no.libreoffice.org": [9471], "www.freedominc.nl": [6289], "netzpolitik.org": [11470], "scldvnt.co": [2053], "waveney.firmstep.com": [20125], "chore.cm": [2053], "htrs.co": [2053], "wordo.za.com": [2053], "www.smartcity.wien.gv.at": [22025], "insp.ca": [2053], "my.wmtransfer.com": [18373], "x-info.org": [18797], "www.coisas.com": [3475], "static.mibi.xiaomi.com": [18873], "www.tvline.com": [16139], "hr.georgetown.edu": [6668], "rezo.pink": [2053], "umaine.edu": [17607], "docs.getfoxyproxy.org": [6713], "www.bsideslv.org": [1588], "esrb.org": [5063], "www.luckyshare.net": [9815], "crttns.co": [2053], "www.atmos.illinois.edu": [17544], "vstrm.com": [2053], "gcia.co": [2053], "www.koumbit.org": [9149], "app-us1.resrc.it": [13832], "cs.kindful.com": [9046], "hockey.saves.co": [2053], "ghst.pro": [2053], "correctiv.org": [3753], "jcbsn.gr": [2053], "cca.environment-agency.gov.uk": [20047], "bhad.info": [2053], "*.unm.edu": [17271], "www.aboutmyvote.co.uk": [466], "btcstore.eu": [1610], "m3server.com": [9863], "na.schottenland.de": [14607], "bulletin.net": [2473], "s.ign.com": [7877], "www.zalando.com": [19094], "kyhwana.org": [9205], "media.zylom.com": [19247], "www.ddlvalley.rocks": [19878], "kulturstationen.kk.dk": [8883], "ad.yieldlab.net": [18989], "skoo.ly": [2053], "procontract.due-north.com": [19968], "www.mlpchan.net": [9925], "cents.life": [2053], "img03.findgravy.com": [5958], "oxs.mediabistro.com": [10336], "g2a.com": [6413], "www.express-vpn.com": [5627], "skoo.li": [2053], "jkrbrnd.com": [2053], "esc.isis.poly.edu": [13113], "chatbox.kn007.net": [9089], "www.cse.umich.edu": [17552], "evolvecom.co": [2053], "dev.ashampoo.com": [1285], "longyou.meituan.com": [10405], "bulletin.stanford.edu": [15635], "image13.bizrate-images.com": [2086], "static.sparkfun.com": [15471], "go.ohd.io": [2053], "www.page.ly": [12535], "accan.org.au": [283], "www.life.ru": [20684], "afilias.info": [745], "dialogte.ch": [2053], "mail.win.dtu.dk": [16286], "cbu04.alicdn.com": [846], "ml314.com": [9923], "www.hobsons.com": [20348], "advertising.yandex.com.tr": [18954], "rlx.mx": [2053], "cap.st": [2053], "ambac.ht": [2053], "enforb.es": [2053], "atld.link": [2053], "www.alexandercoward.com": [837], "giyp.co": [2053], "rugshd.com": [14265], "s.theuswalk.com": [2053], "marcan.st": [10146], "rav.to": [2053], "*.slate.wvu.edu": [18508], "l.b-u-d.info": [2053], "firstlook.org": [5993], "trnql.space": [2053], "directline.metafaq.com": [4610], "www.42floors.com": [170], "veritas.com": [21905], "gentl.mn": [2053], "www.geology.illinois.edu": [17544], "sprtbd.co": [2053], "jmpho.to": [2053], "kswain.link": [2053], "money.yandex.by": [18953], "www.64px.com": [210], "thebrigade.thechive.com": [16524], "www.cublinux.com": [19836], "l1m1tl.es": [2053], "www.textmagic.com": [16418], "jobs.allianz.com": [19351], "*.bin-store.com": [1940], "o.xbox.com": [18850], "global.georgetown.edu": [6668], "btelecom.net": [2053], "1mj.io": [2053], "kiva.org": [9077], "www.pc-ostschweiz.ch": [12422], "www.stand.org": [15627], "go.franki.net": [2053], "esat.kuleuven.be": [8969, 9185], "m.apan.org": [369], "*.confused.com": [3638], "www.netim.com": [11429], "*.hackerschool.com": [7279], "american-favorites.migros.ch": [10566], "via.don.ph": [2053], "otc.georgetown.edu": [6668], "l.geocrono.com": [2053], "images.plattstatic.com": [13010], "cio2.uchastings.edu": [17219], "meeting.teamviewer.com": [16259], "superfast-openreach.co.uk": [15884], "go2sra.co": [2053], "buyer.alibaba.com": [850], "www.betts.com.au": [1884], "email.xnet.cz": [18832], "c.cksource.com": [2679], "amplifypixel.outbrain.com": [12355], "kyn.me": [9208], "s.gr-assets.com": [7004], "nr.church": [2053], "www.bigboxsave.com": [1913], "socialdemocrats.ie": [21497], "globalexpo.alibaba.com": [850], "img07.taobaocdn.com": [16207], "lilfox.co": [2053], "gwnne.org": [2053], "www.cpaptalk.com": [3814], "*.branchable.com": [2330], "seysol.com": [2053], "www.youtube.ru": [19016], "secureprosoftware.com": [14738], "www.tpbpro.xyz": [21217], "my.volia.com": [18123], "minnpo.st": [2053], "mbr.rosbank.ru": [21328], "clery-dev.ucsc.edu": [17591], "zoyya.ga": [2053], "www.100-gute-gruende.de": [11], "go.robozome.com": [2053], "lohud.us": [2053], "cimm.co": [2053], "coplusk.com": [2053], "www.newyorktimes.com": [11505], "y-v.de": [2053], "online2pdf.com": [12071], "shopgaia.nyc": [2053], "l.verslu.is": [2053], "envyus.gq": [2053], "kotaserang.net": [2053], "clsmat.es": [2053], "jsci.me": [2053], "bkate.me": [2053], "www.ddlvalley.eu": [19877], "enwp.org": [18595], "j.necjar.com": [2053], "www1.energy.gov": [5355], "www.bullionstar.com": [2477], "mbed.io": [2053], "image.winzip.com": [18633], "inmn.io": [2053], "voltalinux.sicurezzarete.com": [21444], "www.notehub.org": [20932], "ninthdecimal.com": [11614], "www.formatdynamics.com": [6161], "mcts.tech": [2053], "*.iheart.com": [7886], "jand.in": [2053], "*.crossrider.com": [3888], "jsp.hn": [2053], "fli.pm": [2053], "phabricator.cooltrainer.org": [19787], "kompleks.co": [2053], "brant.news": [2053], "kazakhstan.usembassy.gov": [21879], "researchstore.com": [4284], "lishui.1688.com": [44], "der.makf.de": [2053], "sccps.silentcircle.com": [15031], "*.wargaming.net": [18275], "desktopsummit.org": [4473], "www.kb.cert.org": [2640], "camn.is": [2053], "jag.photos": [2053], "ngvpn21.nvidia.com": [11174], "dd19.tk": [2053], "siterecruit.comscore.com": [3517], "u.rateout.co.uk": [2053], "www.aldi.hu": [338], "www.inaturalist.org": [7920], "secure.chesterfield.gov.uk": [19701], "*.differencebetween.net": [4544], "freeprivacypolicy.com": [6838], "www.authbox.io": [1445], "pedsit.stanford.edu": [15635], "staydine.com": [2053], "www.bikt.de": [1561], "russian.rt.com": [13702], "status.modern.ie": [10706], "soom.cz": [21509], "l.primal.mx": [2053], "xenomai.org": [18866], "www.mery.jp": [9903], "zsk.cm": [2053], "d3n.in": [2053], "support.bitmain.com": [2054], "whatismyip.com": [18528], "www.cnsi.ucla.edu": [17527], "*.kinja.com": [9058], "caktusgroup.com": [2782], "www.mecoffee.nl": [10297], "dashboard.lob.com": [9695], "images.yandex.com.tr": [18954], "ikkeh.ml": [2053], "www.swapoff.org": [15932], "www.fakaheda.eu": [5751], "cryptoexperts.com": [3929], "star.duodecim.fi": [4901], "zlla.co": [2053], "zys.im": [2053], "118information.co.uk": [27], "s.wlm.com.mx": [2053], "cloud.itsc.cuhk.edu.hk": [2747], "www.broadcom.com": [2409], "twitpic.es": [2053], "adair.co": [2053], "stopcyberspying.com": [15739], "icommons.org": [7847], "www.plannedgiving.com": [12992], "p8m.in": [2053], "on.ofadam.com": [2053], "flightglobalshop.com": [6037], "welles.me": [2053], "bg4.in": [2053], "icd10cc.co": [2053], "strongi.es": [2053], "www.holytransaction.com": [7607], "www.sa-as.com": [18059], "www.normer.uio.no": [17615], "secure.xfinity.com": [22082], "www.opentext.com": [12182], "cm.ipinyou.com": [7950], "nrio.co": [2053], "www.ibc.researchcompliance.vt.edu": [18031], "www.freech.net": [20162], "grilletlab.stanford.edu": [15635], "a16z.com": [254], "www.es.amnesty.org": [994], "wpi.sm": [2053], "*.awm.gov.au": [1442], "www.spicebox.co.jp": [15516], "g.xmez.co": [2053], "www.ubmchannel.com": [17204], "www.comixology.com": [3529], "by.hironozu.com": [2053], "shel.tv": [2053], "on.ftv.com": [2053], "www.seatgeek.com": [14694], "api.simplyhired.com": [15075], "addbooks.se": [610], "referafriend.xfinity.com": [22082], "myheritage.com.il": [11023], "subs.develop-online.net": [19904], "tltp.io": [2053], "972mag.com": [242], "wireshark.org": [18670], "website.webgo.de": [18361], "austinge.com": [2053], "yejin.1688.com": [44], "communigator.co.uk": [3563], "x2z.eu": [2053], "leonel.onl": [2053], "svzd.ch": [2053], "mathuinsgd.cf": [2053], "links.ngtv.nl": [2053], "inv8.co": [2053], "sim.cr": [2053], "info.binary.com": [2053], "www.aok.de": [357], "judici.com": [8813], "clipperz.is": [3330], "widget.boomads.com": [2261], "mkta.de": [2053], "www.susestudio.com": [14436], "proud4christ.us": [2053], "ctmr.tk": [2053], "microfocus.com": [10528], "www.jobsatosu.com": [8748], "join.pirateparty.org.au": [12929], "takuu--saatio-fi.directo.fi": [16171], "academico.unizar.es": [17643], "womeninnovatemobile.com": [18706], "babc.us": [2053], "bust.li": [2053], "poupe.info": [2053], "zdf.de": [22127], "camao.at": [2053], "q.nbtechllc.com": [2053], "haute.io": [2053], "twenga-solutions.com": [17148], "flitto.com": [6045], "ulpgc.es": [17411], "saltstack.com": [14493], "mers.me": [2053], "*.hbr.org": [7178], "scho.me": [2053], "affair-guide.com": [735, 736], "on.vfmb.ch": [2053], "www.haiku-os.org": [7294], "images.randomhouse.com": [13778], "gstand.co": [2053], "standards.data.gov.uk": [19855], "mjrlink.us": [2053], "apollo.ro.vutbr.cz": [17814], "arazas.unizar.es": [17643], "ukash.com": [17404], "gn3campus.uninett.no": [17477], "myfrey.ch": [3156], "www.hotukdeals.com": [7693], "docs.puppetlabs.com": [13460], "fulltraffic.net": [6370], "www.williamhill.com": [18615], "smash.social": [2053], "rfn.co": [2053], "*.android.com": [1045], "id5.idqqimg.com": [8073], "www.sigmaxi.org": [15024], "basko.ro": [2053], "dev.jd.com": [8571], "doctors.im": [2053], "schw-rz.de": [2053], "vanityfair.com": [3616], "nej.md": [2053], "ba.stienv.me": [2053], "status.bnc4free.com": [2217], "forum.glx-dock.org": [20256], "chiste.cc": [2053], "partner.yandex.kz": [18957], "cl-kit.mondediplo.com": [10729], "allerderm.com": [15238], "www.jbp.io": [8688], "api.dwolla.com": [4913], "metrics.westernunion.com": [18512], "idp.touchstonenetwork.net": [16885], "www.mirea.ru": [20805], "br.social": [2053], "tdcv.us": [2053], "webmail.jimdo.com": [8721], "js.org": [20555], "heyaw.co": [2053], "docu.sn": [2053], "m.web.cern.ch": [2632], "l.jsrm.dk": [2053], "nrthstr.co": [2053], "gamesrocket.de": [6557], "www.getdigital.co.uk": [6693], "llmap.in": [2053], "drupaltraining.stanford.edu": [15635], "img3.store.microsoft.com": [10543], "www.mendeley.com": [10430], "www.warthunder.com": [21976], "www.gchat.com": [6429], "blog.popads.net": [13129], "trustwave.com": [17074], "pics.crucial.fr": [3902], "15.lc": [2053], "*.thewatershed.com": [16586], "courseadmin.theguardian.com": [16554], "www.vtech.com": [17811], "thecreatorsproject.com": [16529], "primes.utm.edu": [17628], "www.smoozed.com": [21485], "www.as112.net": [383], "media.skyandtelescope.com": [15178], "s.r-tsushin.com": [2053], "www.canon.com.mk": [2868], "news.boxun.com": [19581], "swissin.fo": [2053], "kiwins.xyz": [2053], "acdn.stsdb.com": [14431], "secure2.roisolutions.net": [13679], "anongit.mindrot.org": [10601], "image.trucktrend.com": [17040], "magazine.redhat.com": [18730], "www.youtube.com.qa": [19016], "kirklees-consult.objective.co.uk": [20979], "itmb.nl": [7993], "whsq.qld.gov.au": [2053], "trycvr.co": [2053], "go.allen.io": [2053], "www.spatialbuzz.com": [15479], "go.cz.bbelements.com": [1764], "www.dotcom-tools.com": [19951], "1.hofarc.com": [2053], "isr.events": [2053], "vtly.co.uk": [2053], "j.ganzbunt.de": [2053], "sherw.in": [2053], "www.g-ir.com": [6836], "skycityauckland.co.nz": [14366], "www.balabit.hu": [19480], "nxtforum.org": [11791], "pintrest.ga": [2053], "vtb.ru": [8604], "lsulibraries.worldcat.org": [18748], "www.virtualedge.com": [311], "clinicaltrials.gov": [3327], "a.darjeelin.fr": [4226], "*.boum.org": [2296], "teamswch.in": [2053], "bsop.us": [2053], "ssl.tiggerswelt.net": [16712], "www.velex.htwk-leipzig.de": [7736], "ivrit.academy": [2053], "doel.kuleuven.be": [8969], "myshc.us": [2053], "ellak.gr": [7042], "vnjv.co": [2053], "wiki.x2go.org": [18800], "snellman.net": [15281], "s.pawlik.in": [2053], "spinfx.me": [2053], "rtek.biz": [2053], "cmgm3.stanford.edu": [15635], "montpellier.squat.net": [21549], "static.letvcdn.com": [20667], "www.lfg.com": [20673], "www.pdfill.com": [21099], "portal.whitelabeldating.com": [22018], "iflash.me": [2053], "vc-kundencenter.de": [17764], "insder.co": [2053], "magazin.tchibo.de": [16240], "ssl.weborama.fr": [18434], "www.informahealthcare.com": [8269], "datacell.is": [4255], "ser.bz": [2053], "cnre.vt.edu": [18031], "www.ytchannelembed.com": [18928], "stefan-betz.net": [15717], "harare.usembassy.gov": [21879], "webshop.scooter-attack.com": [14632], "codehs.com": [3409], "updates.postecert.poste.it": [13192], "lush.la": [2053], "www.ab4all.com": [19254], "app.fieldnation.com": [20105], "4armed.com": [184], "gsp3.baidu.com": [1661], "www.master.yandex.by": [18953], "reserveaspace.wustl.edu": [18290], "i.blauespony.de": [2053], "www.lyrishq.com": [9851], "ibitz.net": [2053], "fr.mondediplo.com": [10729], "nev4.com": [2053], "*.teachersassurance.co.uk": [16248], "synergistscada.com": [15989], "irresistabl.es": [2053], "vector.support": [2053], "www.bataysk-gorod.ru": [19495], "tickets.cpanel.net": [2710], "force.ft.com": [5941], "barra.r7.com": [13626], "control.fraedom.com": [20155], "a4-images.myspacecdn.com": [11037], "wap.tv.mail.ru": [10040], "appfx.in": [2053], "demichei.com": [2053], "ftp.intevation.net": [8445], "buyagile.com": [2053], "www.lavabit.com": [9326], "pyladi.es": [2053], "ezimages.eu": [5103], "metanav.uninett.no": [17477], "www.shop.mts.ru": [20846], "www.bezrealitky.cz": [19523], "40df.com": [2053], "analytics.meituan.com": [10405], "www.smuxi.net": [15262], "httpoxy.org": [20391], "blog.whitehatsec.com": [18549], "www.teddyhyde.com": [16312], "i.jspeaks.com": [2053], "dashho.us": [2053], "go.724685.com": [2053], "vxgrp.co": [2053], "gqrcode.alicdn.com": [846], "neck2neck.com": [11321], "findmycard.capitalone.com": [2878], "www.debian-facile.org": [4348], "www.m6r.fr": [9865], "mnyp.lc": [2053], "use.resrc.it": [13832], "spotify.aia.ag": [2053], "sts.wustl.edu": [18290], "oxelt.gl": [2053], "lifeline.org.au": [9493], "nyc-lane.wj32.org": [18690], "nyue.org": [2053], "jplspaceship.jpl.nasa.gov": [11058], "rapidsite.jp": [13793], "www.county-star.com": [3778], "nestle.com": [11360], "cre8.buzz": [2053], "mail.gna.org": [6882], "srvz.co": [2053], "newspape.rs": [2053], "tax.gd": [2053], "uptime.netcraft.com": [11411], "r.khammami.com": [2053], "qingfeng.meituan.com": [10405], "cnb.cx": [2053], "ovpn.se": [11887], "r.ryhug.com": [2053], "thinkprogress.org": [3005, 16630], "www.o2.sk": [16332], "mgmadv.com": [2053], "a.4sqdaykc.co": [2053], "sndofl.at": [2053], "mobil.danskebank.dk": [4223], "ideasonboard.com": [8078], "knot1.co": [2053], "web.rigoeva.ro": [2053], "tengxian.meituan.com": [10405], "*.inkfrog.com": [8297], "tajs.qq.com": [13514], "static4.wareable.com": [21973], "wlstrm.me": [2053], "imdb.to": [2053], "data.is": [2053], "yun.115.com": [25], "future.state.gov": [17345], "www.empleos.g4s.com": [20194], "wcp.link": [2053], "www.megabus.com": [10401], "tps30.doubleverify.com": [4804], "buyfacefx.com": [15038], "bsrbog.us": [2053], "www.s-t-d.org": [21350], "www.tem.fi": [17185], "segment.com": [14803], "cvnteyes.co": [2053], "iosafe.com": [8485], "support.cloudpassage.com": [19739], "*.minus.com": [10625], "www.piazza.com": [12870], "s.nichtray.com": [2053], "static1.money.pl": [10735], "s3o.ft.com": [5941], "www.goalworthy.com": [6925], "yoyo.com": [22116], "www.zerodium.com": [19069], "css.slough.gov.uk": [15216], "wamd.at": [2053], "www.zareason.com": [19111], "yandex.by": [18953], "*.git.sourceforge.net": [15422], "dnlchw.net": [2053], "build.go.cd": [20259], "acronymfinder.com": [524], "leastfixed.com": [9374], "cprit.us": [2053], "yoursav.me": [19045], "pcp.med.cuhk.edu.hk": [2747], "*.pearsonvue.com": [12718], "dsa.debian.org": [4353], "bjack.ca": [2053], "www.dn.no": [4129], "telesign.com": [21672], "php.net": [12453], "crysys.hu": [3908], "classx-admin.stanford.edu": [15635], "www.bercsenyi.bme.hu": [1570], "xnt.li": [2053], "*.samsungapps.com": [14502], "www.nraila.org": [20948], "megafiles.se": [10392], "cli-apps.org": [21006, 21007], "g.gethlc.org": [2053], "dfiles.eu": [4106], "healthdesigns.com": [7394], "subscribeonline.co.uk": [4816], "u.nm.com": [2053], "hoverwatch.com": [20367], "snag.tv": [2053], "secure.kicker.de": [9032], "p8.raasnet.com": [13890], "www.jdoqocy.com": [3546], "elektro-paloucek.cz": [20024], "fb.bmw.at": [2053], "n0.sinaimg.cn": [15091], "*.www.odcdn.com": [11946], "lconsu.lt": [2053], "kyb.buttercoin.com": [2521], "services.salford.gov.uk": [21362], "123count.com": [32], "www.juno.com": [8835], "*.hosting-advantage.com": [11384], "dbtb.us": [2053], "health.spectator.co.uk": [21528], "4linuxfun.duoshuo.com": [19969], "sclpro.co": [2053], "tonyc.me": [2053], "kura.io": [9193], "crucl.co": [2053], "*.umext.maine.edu": [17607], "www.washpostco.com": [18286], "newsagent.scoop.co.nz": [14630], "openbeta.usaspending.gov": [17312], "ebill2.virginmedia.com": [18028], "store.cpanel.net": [2710], "www.ero-advertising.com": [5451], "*.lighttpd.net": [9507], "www.kaspersky.com": [8958], "on.sctimes.com": [2053], "www.alum.kuleuven.be": [8969], "etreshop.com": [5498], "trinityhome.org": [17014], "www.forbrukerportalen.no": [6137], "www.kink.com": [20596], "monsanto.info": [2053], "www.websense.com": [18380], "warnerartists.com": [18277], "my.webmoney.ru": [18373], "go.jamesvg.com": [2053], "capitalone.com": [2878], "chan.sankakucomplex.com": [21368], "images.local.ch": [9697], "esp.attachmategroup.com": [1371], "williams.worldcat.org": [18748], "careers.georgetown.edu": [6668], "likeneon.love": [2053], "1.mrwrk.nl": [2053], "cif.pirate-party.ru": [12919], "guide-images.ifixit.net": [7873], "crimw.me": [2053], "bigfiles.upf.edu": [17674], "*.futurequest.net": [6400], "ucfknights.co": [2053], "weather.sina.com.cn": [15085], "truelife.com": [17045], "www.scanmyserver.com": [14570], "tym.cool": [2053], "dfnd.us": [2053], "tght.me": [2053], "khms0.google.com": [6969], "sheetsu.com": [21424], "r.coat.se": [2053], "www.megiteam.pl": [10402], "status.icq.com": [7837], "wmg.ie": [2053], "static7.startnext.com": [15665], "wepawet.iseclab.org": [8513], "*.fidelity.com": [5889], "gcmcomputers.com": [6427], "thesafety.us": [16502], "hi-rd.com": [2053], "jobregister.aas.org": [271], "www.websitesettings.com": [18448], "tlng.net": [2053], "baekdal.com": [1656], "www.gumstix.com": [7149], "on.mikyu.com": [2053], "gov1.info": [6988], "wiki.openmw.org": [12151], "www.visiba.com": [18060], "packs.clearlinux.org": [3291], "bpaz.me": [2053], "www.schiedam.nl": [11324], "wikitest.ro.vutbr.cz": [17814], "assets.cms.gov": [19742], "vamospra.la": [2053], "dlrs.link": [2053], "acc.partners": [2053], "static2.1tv.ru": [79], "staging.eastmon.com.au": [5121], "*.scrs.gc.ca": [2861], "workforceportal.elabor.com": [5025], "mkrs.ch": [2053], "s.am-ind.com": [2053], "go.anunt.com": [2053], "www.bandpass.me": [1682], "ellislab.com": [20027], "lenoblast.rt.ru": [13703], "cits.wustl.edu": [18290], "avito.ru": [19465], "ibank2.genbank.ru": [6643], "demp.mx": [2053], "www.0bin.net": [2], "s.frk.com": [2053], "broll.be": [2053], "s0.2mdn.net": [115], "maap.es": [2053], "app.curdbee.com": [17941], "www.lpi.org": [9249], "nowybip.pl": [11733], "mng.us": [2053], "tomril.co": [2053], "recruiting.aldi.hu": [338], "s.causio.com": [2053], "*.colossal.com": [16641], "sjobs.net": [2053], "dm3.so": [2053], "www.overpass-turbo.eu": [21048], "yglf.co": [2053], "blink-182.com": [2129], "ic1p.com": [2053], "getstory.in": [2053], "theproxy.site": [21709], "nti.org": [11150], "*.mynaweb.com": [11029], "bankieren.triodos.nl": [17016], "help.pardot.com": [12605], "www.filterbypass.me": [5929], "*.yourhosting.nl": [19043], "tv.yandex.by": [18953], "*.blogspot.com.ng": [2166], "www.orange.co.il": [12290], "www.whms.com": [18202], "talktalk.co.uk": [16184], "l.pack9nc.org": [2053], "c.msn.co.jp": [9960], "dailykos.com": [4194], "www.btcchina.com": [1599], "ptrtvoic.es": [2053], "l3nk.net": [2053], "www.alexandrasangelgifts.co.uk": [838], "www.39dollarglasses.com": [146], "www2.guidestar.org": [7135], "brtr.pl": [2053], "shftm.co": [2053], "1njera.com": [2053], "ikio.sk": [2053], "forum.nutyx.org": [20967], "on.purakai.com": [2053], "s.jessenixon.me": [2053], "www.webtatic.com": [18458], "www.printfection.com": [13297], "*.randombit.net": [13781], "m.voyage-prive.com": [18152], "www13.anthem.com": [19395], "*.corporate-ir.net": [3748], "stuwww.uvt.nl": [16716], "tofinosecurity.com": [16800], "rdhs.us": [2053], "www.rcicruiseholidays.com": [18789], "st5.gismeteo.ru": [6789], "subs.mcvuk.com": [20764], "biz.zumzi.com": [19241], "www.adbrite.com": [604], "*.38.de": [144], "www.*.vaforvets.va.gov": [17297], "service.garagegames.com": [6575], "a.crework.one": [2053], "silabs.com": [15033], "ctlst.me": [2053], "www.billetten.dk": [1934], "*.iaapa.org": [7807], "cdimage.linuxdeepin.com": [4380], "www.exonet.nl": [20078], "www.license.avira.com": [1489], "zikao.qiyukf.com": [21240], "aka.education.gov.uk": [20009], "on.wwltv.com": [2053], "2012.eurobsdcon.org": [5508], "*.claranet.nl": [3271], "cloudflarechallenge.com": [3345], "tedxfsm.com": [2053], "accounts.login.idm.telekom.com": [16345], "oh.fuh-q.com": [2053], "mnbrd.com": [2053], "fto.link": [2053], "p5s.co": [2053], "lastcall.com": [16106], "sapo.pt": [14536], "on.rolex.com": [2053], "zeist.nl": [11324], "i.rashdesign.co": [2053], "exootlab.com": [5609], "www.audience-discovery.com": [1389], "adn.fm": [2053], "ar.atcs.ms": [2053], "lux.ht": [2053], "i4.gallery.technet.microsoft.com": [10543], "u.fixstudio.com": [2053], "www.vivaciti.net": [18089], "punchouttest.digikey.com": [4552], "landalcampings.nl": [18790], "*.wemfbox.ch": [18495], "mrtch.co": [2053], "mmjne.ws": [2053], "domeny.aerohosting.cz": [728], "carnet.ec": [2053], "www.ingdirect.com.au": [7915], "blog.cyphertite.com": [4060], "www.streetmoda.com": [15777], "*.staticwars.com": [15681], "nspublieksprijs.nl": [20957], "brusselsnewcomernetwork.state.gov": [17345], "pa.shropshire.gov.uk": [21440], "rightoncri.me": [2053], "read.amazon.ca": [19362], "www.modelviewculture.com": [10705], "ruptly.tv": [14276], "ssl.apple.com": [1160], "www.uptonhomehardware.co.uk": [17691], "atm.tk": [2053], "www.roblox.com": [14156], "suppliers.houseoffraser.co.uk": [7709], "lists.ktk.bme.hu": [1570], "kundeservice.tdc.dk": [16051], "www.trustwave.com": [17074], "iwh.nz": [2053], "www.perryellis.com": [12792], "vish.co": [2053], "prosport.tsn.ua": [21805], "chank.me": [2053], "www.vgwort.de": [17775], "s.yunlou.net": [2053], "krakelbont.squat.net": [21549], "kindne.ws": [2053], "shop.list.co.uk": [16464], "slof.co": [2053], "bluemix.net": [2205], "steije.ga": [2053], "fcity.co": [2053], "*.bellareed.com": [10164], "track.iconfinder.com": [8066], "metafaq.com": [20787], "gyps.ws": [2053], "genpr.gs": [2053], "newsurp.co": [2053], "mail.bfriars.ox.ac.uk": [17557], "webpush.weixin.qq.com": [13514], "ctym.ps": [2053], "www.baymirror.tech": [21217], "www.tptq-arabic.com": [16109], "gateway-kctcs.edusupportcenter.com": [20012], "0kbhkort.kk.dk": [8883], "goldenblg.ch": [2053], "*.decisionbriefs.com": [4363], "tracfone.com": [16900], "ma3.twimg.com": [17153], "kis.hosteurope.de": [7660], "thestanfordfund.stanford.edu": [15635], "familie.plus.aok.de": [357], "ovh.us": [11885], "m00m.in": [2053], "libcal.com": [9447], "ausregistry.com.au": [1411], "*.trails.com": [4421], "westlandutrecht.nl": [18513], "anonbox.net": [1086], "floorforce.websitealive.com": [18445], "atblog.co": [2053], "*.business.gov.au": [2511], "hwcdn.libsyn.com": [9482], "on.apa.org": [2053], "signup.memberful.com": [10420], "wiki.osgeo.org": [11868], "ln.cronofy.com": [2053], "blogsp.ashleymadison.com": [1289], "humanresources.illinois.edu": [17544], "diffnow.com": [4542], "dnuk.com": [4565], "offt.me": [2053], "ibs.la": [2053], "help.sumome.com": [21604], "opalang.org": [12102], "www.broadcomfoundation.org": [2410], "taglink.us": [2053], "idlegam.es": [2053], "www.netwheels.fi": [20894], "www.telebrands.net": [16328], "www.taz.de": [16042], "map.utoronto.ca": [17629], "triplemint.com": [17021], "pfact.nottingham.ac.uk": [11726], "crook.st": [2053], "www.devpress.com": [4511], "i9.lbp.me": [20644], "mysweetiq.com": [10978], "mmkg.me": [2053], "leaseweb.com": [9372], "umcareer.center": [2053], "t.btstatic.com": [1621], "www.piratewiki.info": [21709], "benefits.georgetown.edu": [6668], "youtu.be": [19016], "events.sfu.ca": [14893], "motea.ch": [2053], "wana.run": [2053], "www.cals.cornell.edu": [3744], "assets0.redbubble.net": [13895], "profile.oracle.com": [12284], "www.base-valid.com": [1734], "www.windowsitpro.com": [18645], "tyjp.co": [2053], "resetthenet.org": [14038], "koolkat.co": [2053], "www.gridzdirect.com": [7079], "mastozytose-schweiz.org": [10224], "torlock.com": [16839], "zhongmou.meituan.com": [10405], "ir4.co": [2053], "iguate.me": [2053], "xmission.com": [18831], "*.gstatic.com": [6967], "envoc.io": [2053], "alfabank.ru": [842], "202.tw": [2053], "tdman.us": [2053], "go.howto.coffee": [2053], "gccma.info": [2053], "tescodiets.com": [16399], "belarus.indymedia.org": [8234], "nc.me": [11067], "nc.md": [2053], "seagate.jd.com": [8571], "*.myheritage.nl": [11023], "rcking.eu": [13638], "omprom.pt": [2053], "url.blanjo.id": [2053], "hivos.nl": [7572], "medf.nl": [2053], "shopbop.com": [21429], "rlmk.me": [2053], "huntonprivacyblog.com": [20396], "www.saucytime.com": [14543], "link.tomte.net": [2053], "to.relais.com": [2053], "fncash.com": [5694], "backblaze.com": [1636], "deniso.nu": [2053], "manage.rooof.com": [14198], "irnut.co": [2053], "www.anrdoezrs.net": [3546], "www.legolanddiscoverycenter.jp": [9391], "lu.taobao.com": [16206], "www.becoquin.com": [1772], "comoinsi.de": [2053], "nytchinese.disqus.com": [4656], "business.kaspersky.ru": [8959], "smjg.org": [15256], "webmail.ukeer.de": [17406], "www.artw.ru": [19423], "portal.pfsense.org": [12819], "eecscal.mit.edu": [9916], "cdn2.colocationamerica.com": [3498], "libraryh3lp.com": [11690], "wedc.lu": [2053], "h.prendho.com": [2053], "avadirect.com": [1477], "gifi.tf": [2053], "freecb.us": [2053], "www.jansbrug.nl": [8661], "myleague.com": [10956], "boj.im": [2053], "zeringo.com": [19151], "www.mjdk.dk": [20807], "powernotebooks.com": [13230], "www.gannettridge.com": [6573], "v51.co": [2053], "blackmoreops.com": [19553], "www.gnucash.org": [6885], "beanbaginc.com": [1783], "engees.unistra.fr": [17462], "secure.landal.com": [18790], "trce.in": [2053], "digitalrepository.smu.edu": [14378], "ihkofr.de": [2053], "2bg.tv": [2053], "museu.me": [2053], "shop.kagi.com": [8918], "trsoluco.es": [2053], "tallahassee.aclufl.org": [286], "hbbazhou.meituan.com": [10405], "jolexa.net": [8769], "*.image-repository.com": [17962], "deutsch.istockphoto.com": [20505], "halifax.co.uk": [7305], "www.shutthebackdoor.net": [14997], "divi.ng": [2053], "gadgt.co": [2053], "kayak.co.uk": [8976], "unix4lyfe.org": [17640], "*.git.sf.net": [15422], "zdoc.me": [2053], "redbullusa.com": [13900], "dbs.com.sg": [4084], "cert.se": [2639], "nerdhaven.nuug.no": [11169], "dgspe.ca": [2053], "www.tryzen99.com": [17082], "vidaengdl.mx": [2053], "static2.urbandictionary.com": [17697], "p0.qhimg.com": [13531], "*.craigslist.ca": [3825], "www.rt.com": [13702], "crst.in": [2053], "remote.modern.ie": [10706], "gamefly.co.uk": [6537], "treasury.uillinois.edu": [17238], "nhp.me": [2053], "daily.zhihu.com": [19173], "go.durham.fyi": [2053], "malwaredomainlist.com": [10094], "murmashi.beeline.ru": [1801], "assets-s3.usmagazine.com": [17708], "www.weather.yandex.by": [18953], "ads.pro-market.net": [13336], "shaza.ml": [2053], "disman.tl": [4650], "torrentdr.com": [21709], "support.recordedfuture.com": [13885], "www.matomymedia.com": [10240], "blints.me": [2053], "ire.org": [20496], "chambers.is": [2053], "www.mysmartrend.com": [15227], "en.aegeanair.com": [7041], "cms.lifereimagined.org": [9491], "k3000.com": [2053], "minforsyningplugin.kmd.dk": [20612], "www.unisg.ch": [17486], "go.mailinhs.com": [2053], "st-andrews.ac.uk": [15603], "update.utorrent.com": [21831], "www.3v4l.org": [167], "*.jotformpro.com": [8786], "wiki.ornl.gov": [11892], "wllmtt.cc": [2053], "l.lund.dk": [2053], "gnu.io": [6473], "blck.us": [2053], "www.cecpdonline.org": [3009], "service-beta.mcafee.com": [10282], "mng.no": [2053], "d.pixiv.org": [12960], "tuli.ga": [2053], "chen.cat": [2053], "rushput.in": [2053], "b2b.clickvoyage.ru": [3313], "www.leafly.com": [9360], "s.heartwalk.org": [2053], "walletgenerator.net": [18257], "l-rc.co": [2053], "motherboard.vice.com": [17959], "id.google.*": [6965], "allposters.com": [875], "img5.2345.com": [87], "rhymnbe.at": [2053], "*.yelp.no": [18979], "choutatsu.riken.jp": [13663], "lenizdat.ru": [20659], "i4.microsoft.com": [10543], "topdown.co": [2053], "kan.trylle.no": [2053], "premiumsupport.kaspersky.com": [8958], "lh.co.th": [9442], "tout.me": [2053], "apply.jhu.edu": [16562], "www.npp.org.hk": [20941], "api.hub.jhu.edu": [16562], "*.blogspot.de": [2166], "*.blogspot.dk": [2166], "to.balikita.com": [2053], "www.undergrad.osu.edu": [11959], "frsupport.msi.com": [9957], "www.lettre-de-motivation-facile.com": [9425], "video.eetimes.com": [5005], "www.eup-network.de": [5502], "www.semaphoreapp.com": [21408], "mnbvcxz.com": [2053], "buk.is": [2053], "www.notenoughshaders.com": [11714], "www.cihan.com.tr": [19713], "www.dota2.com": [4792], "l.peti.info": [2053], "cafeto.co": [2053], "*.leo.org": [9414], "1.*.wdfiles.com": [18593], "www.etext.illinois.edu": [17544], "saturnug.nottingham.ac.uk": [11726], "static.criteo.com": [3872], "jedb.xyz": [2053], "steals.me": [2053], "boozallen.com": [2274], "www.nervoussystems.org": [11356], "cdn.distilnetworks.com": [4659], "*.resellerratings.com": [14035], "mynewsdesk.com": [11030], "jcea.es": [8689], "digitalcommons.georgetown.edu": [6668], "dropdeadpaper.com": [4866], "instraffic.com": [8347], "view.us.adjug.com": [565], "www.tagboard.com": [21649], "gansvr2.desy.de": [4479], "jfelt.us": [2053], "www.krlmedia.nl": [8901], "aji.fyi": [2053], "barnskospecialisten.se": [1727], "jnv.dj": [2053], "links.ncqrs.org": [2053], "buffy.eecs.berkeley.edu": [17526], "t.iaaz.at": [2053], "www.lsa.umich.edu": [17552], "www.youtube.in": [19016], "mint.btcc.com": [2438], "www.mlno6.com": [9928], "piratenpartei.ch": [12487], "itsjust.in": [2053], "jibetalk.in": [2053], "ssl.theatlantic.com": [16512], "img.mixi.net": [10657], "www.scrambl.is": [14644], "dsco.rs": [2053], "drl.me": [2053], "r.tl": [2053], "lunarpages.com.mx": [609], "www.awltovhc.com": [3546], "vgnews.co": [2053], "mmpo.st": [2053], "webftp.active24.com": [19275], "fashion.1688.com": [44], "www.pottermore.com": [21182], "cenccu.co": [2053], "s.clickability.com": [4925], "jr.meituan.com": [10405], "songxian.meituan.com": [10405], "dcbroni.es": [2053], "scrnflx.us": [2053], "x.hypem.com": [2053], "ltp.im": [2053], "vota.trobadabcn.cat": [21797], "nxtck.com": [11792], "mobinar.tk": [2053], "on.aprilia.me": [2053], "marvin.linux-mips.org": [9573], "www.media.gta.arch.ethz.ch": [5074], "y.1ac.us": [2053], "as.alipayobjects.com": [857], "*.grenoble.indymedia.org": [8234], "sb.jlos.shoes": [2053], "tprc.pharm.buffalo.edu": [17583], "sgz.link": [2053], "www.2buntu.com": [107], "c.ooyala.com": [12099], "factor.io": [20090], "jjoynt.co": [2053], "help.blogger.com": [2160], "desmond.yfrog.com": [22102], "beiliu.meituan.com": [10405], "s.koumuwin.com": [2053], "acessando.co": [2053], "gradimages.com": [7008], "www.dbs.com.sg": [4084], "*.a1000words.com": [421], "litapp.me": [2053], "matter-lab.co": [2053], "www.canon.co.nz": [2868], "mzink.mx": [2053], "shaun.net": [14930], "pwne.ws": [2053], "buy.stubhub.com": [15789], "ccs.com": [2609], "xchange.demandware.com": [4427], "static.ijreview.com": [7894], "lsia.tk": [2053], "www.dct.org.uk": [19872], "cdn.joomla.org": [8776], "vpst.it": [2053], "deals.techdirt.com": [16281], "develop2050.vcd.org": [17766], "on.contv.com": [2053], "www.onemonth.com": [12050], "joyfulnoi.se": [2053], "fstrn.at": [2053], "www.denfri.dk": [4439], "hope.ly": [2053], "*.store.winzip.com": [18633], "www.tehtri-security.com": [16062], "ab-dep-op-elogbook.web.cern.ch": [2632], "wiki.cxense.com": [2753], "s.dv.nu": [2053], "finsurf.in": [2053], "www.torrentsstorage.net": [21764], "coventgarden.london": [19805], "www.superstranka.cz": [21610], "full.sc": [2053], "www.isc.org": [7966], "anue.cc": [2053], "pwc.to": [2053], "www.allmybase.com": [886], "admin.kuleuven.be": [8969], "go.ola.ski": [2053], "akevot.in": [2053], "*.towelroot.com": [21767], "piratebay.unlockproject.us": [21771], "g.christianbook.com": [3172], "blog.asmallorange.com": [249], "adreclaim.com": [19299], "secureportal.inl.gov": [20462], "librarylicense.org": [9466], "partyrev.info": [2053], "auscert.org.au": [1409], "static.alarabiya.net": [19336], "blana.ru": [2053], "research.sparx.org.nz": [15476], "s.sophia24.com": [2053], "sso.debian.org": [4353], "rford.me": [2053], "www.weblogin.umich.edu": [17552], "adpe.csod.com": [1464], "www.golflink.net": [6947], "go.visor.co": [2053], "gtcvrd.am": [2053], "desorden.co": [2053], "realtidbits.com": [13864], "cnet.co": [2053], "www.hyper.sh": [7790], "streetmoda.com": [15777], "manchesterdigital.com": [20746], "tbig.info": [2053], "fr.centos.org": [3003], "omht.us": [2053], "foodru.sh": [2053], "simon.butcher.name": [15060], "l.y4ng.com": [2053], "zendo.ly": [2053], "cta.cern.ch": [2632], "s92.cnzz.com": [3391], "cnyns.org": [2053], "www.asciinema.org": [1282], "canddi.com": [19638], "*.fuzzing-project.org": [6403], "data.nodc.noaa.gov": [11272], "digitalocean.com": [4578], "signup.deploybot.com": [19894], "www.bluemovie.net": [2179], "www.novainfosec.com": [11634], "api.wienenergie.at": [18582], "www.ericw.us": [5446], "www.utm.edu": [17628], "vendorsvoice.idg.se": [7852], "pajustice.org": [12751], "www.123count.com": [32], "vc-kundenservice.de": [17764], "eyoffie.co": [2053], "candi4.me": [2053], "on.app.com": [2053], "na3.www.gartner.com": [6580], "myuw.uw.edu": [17355], "*.coxds.com": [3807], "siepr.stanford.edu": [15635], "sixxsen.se": [2053], "vedomosti.ru": [21900], "ewellnessmag.com": [5091], "*.foundationsource.com": [6195], "clipgen.com": [2053], "darkroom.sundayworld.com": [15854], "communities.cisco.com": [3221], "lcp-dl.com": [2053], "image.syncsearch.jp": [15985], "ad.netshelter.net": [11400], "*.livenation.be": [9642], "www.ruag.com": [21336], "insightcommunity.com": [6056], "pczn.us": [2053], "so36.net": [21495], "oneday.lvrj.com": [9313], "economicimpact.publish.uic.edu": [17517], "k.hitravel.xyz": [2053], "connect.ulaval.ca": [17515], "uaegolf.info": [2053], "o-zwo.com": [2053], "andyhb.com": [2053], "jerry.tips": [2053], "www.huntonprivacyblog.com": [20396], "www.sencha.com": [14820], "thesysint.com": [2053], "ems.sheffield.gov.uk": [14939], "www.liu.se": [9238], "r.adc-srv.net": [19288], "youth.nra.org": [20942], "stjr.nl": [2053], "theideas.agency": [2053], "prof.ar.it": [2053], "au3.effectivemeasure.net": [5208], "hamburg.freifunk.net": [6311], "intelligence.house.gov": [17305], "o4u.me": [2053], "bookstore.law.illinois.edu": [17544], "slovakia.usembassy.gov": [21879], "www.alditalk.de": [338], "assets.metartnetwork.com": [10473], "soych.cl": [2053], "yedi.dk": [2053], "gaby.co": [2053], "happyassassin.net": [7333], "secularhumanism.org": [14717], "www.isoc.org": [7974], "k4m4sutr4.ml": [2053], "*.infinet.com.au": [8241], "dlink.to": [2053], "vsell.is": [2053], "*.chdir.org": [3096], "s.design.tc": [2053], "mpto.co": [2053], "ep.lendlea.se": [2053], "tiba.es": [2053], "groupon.gr": [7101], "wldt.ms": [2053], "rhizome.org": [14097], "samate.nist.gov": [11240], "doc.oss.aliyuncs.com": [19346], "logpres.so": [2053], "vsevolozhsk.beeline.ru": [1801], "yodb.it": [2053], "ourvacationcentre.net": [18789], "f.bnkomi.ru": [19563], "appv2.adextent.com": [560], "fus.news": [2053], "yichun.meituan.com": [10405], "my.enalean.com": [5331], "mail.pirate-party.ru": [12919], "on.wvec.com": [2053], "oldnvy.me": [2053], "smoozed.com": [21485], "vdgr.is": [2053], "masterchan.org": [10217], "mkts.me": [2053], "purecars.com": [13464], "urdu.alarabiya.net": [19336], "help.maxon.net": [10263], "today.gmu.edu": [6666], "adpub.desjardins.com": [4471], "mygf.eu": [2053], "glowing.com": [6874], "jive.com": [8732], "www.getname.ru": [6736], "learn.code.org": [3405], "comm.insure": [2053], "app.sourcedna.com": [15420], "kr.forums.oracle.com": [12284], "u.cppswift.org": [2053], "www.spamgourmet.com": [15463], "doc.chriseb.se": [2053], "secure.hostsearch.com": [7658], "amada.dj": [2053], "www.active24.de": [19277], "cn.norton.com": [11703], "*.circleci.com": [3214], "emg.tw": [2053], "stjo.co": [2053], "www.xfce-look.org": [21006], "ea.com": [5253], "sec-s.uicdn.com": [17235], "www.8r.com": [233], "politov.me": [2053], "koa.ipac.caltech.edu": [2815], "rsicc.ornl.gov": [11892], "chatdepot.twitch.tv": [17164], "mobilesecurity.norton.com": [11703], "sydostran.se": [15965], "sosi.mp": [2053], "rabota.gazeta.uz": [20212], "nebula.wsimg.com": [14751], "www.coop.no": [3713], "huit.re": [6214], "git.1f0.de": [68], "buggi.es": [2053], "pinocc.io": [12911], "go.onwae.com": [2053], "kander.team": [2053], "u7.qiyipic.com": [20413], "vgst.ch": [2053], "www.natureshop.com": [11294], "backup.ob.f-secure.com": [5654], "upm.cc": [2053], "wiz.bi": [2053], "t.dsot.it": [2053], "jhc.io": [2053], "publicintelligence.net": [13438], "tbh.io": [2053], "www.arrivabus.co.uk": [1252], "*.npr.org": [11139], "*.theoutnet.com": [16569], "hrvth.co": [2053], "qpap.us": [2053], "rockhursthawks.com": [14172], "labs.inspirehep.net": [8327], "info.undp.org": [17265], "dadshift.com": [2053], "elpo.in": [2053], "code.freenet.de": [6300], "deannaf.me": [2053], "*.trekaroo.com": [16984], "portal.mcafee.com": [10282], "www.spkcn.com": [15530], "usedcar.hdfcbank.com": [7389], "acfintl.org": [2053], "vifon.444.hu": [172], "deluge-torrent.org": [4417], "m.kshb.com": [2053], "upload.xhamster.com": [18816], "learnshare.com": [9367], "s3.www.universalsubtitles.org": [17513], "webreg.vsoe.usc.edu": [17564], "mediafactory.fm": [10334], "www.znaturalfoods.com": [19084], "account.console.aliyun.com": [861], "ru.godaddy.com": [6898], "wnwn.inl.gov": [20462], "*.dfiles.eu": [4106], "ca.usembassy.gov": [21879], "*.ucf.edu": [17530], "hal.buzz": [2053], "s2.hdslb.com": [20327], "abl.jobs": [2053], "intevation.net": [8445], "dontblink.ink": [2053], "lav.ac": [2053], "pages.dea.com": [4340], "sh.prosser.ch": [2053], "eu.elsevierhealth.com": [5289], "numbering.neustar.biz": [11472], "emre.im": [2053], "alumni.utah.edu": [17574], "www.hearthbuddy.com": [2284], "thebigweddingmovie.com": [16514], "cooltrainer.org": [19787], "static.bbc.co.uk": [19500], "go.sfr.io": [2053], "informationactivism.org": [8274], "www.comcav.com": [3515], "img2.dditscdn.com": [4317], "www.freemailer.ch": [6299], "sizzl.in": [2053], "pages.nist.gov": [11240], "adultlearning.lancashire.gov.uk": [20633], "cumassmail.itsc.cuhk.edu.hk": [2747], "easymail.ca": [5127], "d-vs.co": [2053], "www.formget.com": [20147], "www.itbookshelf.com": [8004], "secure.rochford.gov.uk": [14165], "minibuk.us": [2053], "sensei.pixiv.net": [12960], "files.ozbargain.com.au": [12400], "www.helloneighbour.com": [7434], "yelp.be": [18979], "catho.me": [2053], "*.bluessl.com": [2188], "westorangehistory.com": [18506], "www.voa.gov.uk": [21936], "cumbria.police.uk": [3989], "eservices.south-wales.police.uk": [21511], "tskel.me": [2053], "tlsur.net": [2053], "www.joycasino777.net": [20552], "hsht.gs": [2053], "cshcatering.com": [2053], "www.otr.im": [11880], "on.shopigo.com": [2053], "gridserver.com": [7077], "kcart.alipay.com": [857], "umm.ph": [2053], "comptepro.leboncoin.fr": [20650], "www.media-proweb.de": [10311], "laesp2.lad.gov.hk": [7210], "luckyv.it": [2053], "4y2c.com": [2053], "scontent.fmad3-1.fna.fbcdn.net": [5816], "ist.mit.edu": [9916], "massmail.argonit.cz": [1221], "webmail.gogetssl.com": [6905], "cordis.europa.eu": [5526], "s31.cnzz.com": [3391], "max.se": [10255], "git.xiph.org": [18878], "ldng.ag": [2053], "crbn38.co": [2053], "reasons.to": [13871], "de-captcher.com": [4318], "design.yammer.com": [18952], "t.tinkoff.ru": [16748], "alternativet.dk": [924], "gunadiframework.com": [491], "bioconductor.riken.jp": [13663], "xx.kojisese.com": [2053], "chenggu.meituan.com": [10405], "www.nylas.com": [11796], "omar.photo": [2053], "campus.alibaba.com": [850], "lcat.co": [2053], "gallery.debconf.org": [4346], "agbeg.in": [2053], "erds.meituan.com": [10405], "a.mintkit.com": [2053], "www.boredtodeath.me": [2276], "www.marketo.net": [10179], "slnews.me": [2053], "t.d3h.nl": [2053], "on.640k.in": [2053], "wbez.is": [2053], "mkau.rocks": [2053], "*.oneeyedman.net": [12046], "volby.idnes.cz": [20425], "ecoott.ca": [2053], "alec.at": [2053], "store.esellerate.net": [5462], "bit.karlots.eu": [2053], "*.hawaiianair.com": [7379], "antifa.cz": [1107], "manyvids.com": [10131], "rogueamoeba.com": [14180], "go.mdeco.kr": [2053], "www.wooconf.com": [18716], "static1.banki.ru": [1692], "garron.me": [6579], "www.waindigo.org": [18244], "datalink2.labcorp.com": [9276], "www.scenetap.com": [14582], "www.onthehub.com": [21002], "phpclasses.org": [12864], "it.functions-online.com": [20187], "csy.co": [2053], "cdni.wired.co.uk": [22036], "fengxian.meituan.com": [10405], "orlovskaya-obl.beeline.ru": [1801], "media.coindesk.com": [3458], "legislationsurveys.com": [9388], "garr.mobi": [2053], "limeservice.com": [9516], "m.haigou.unionpay.com": [17478], "desfichiers.com": [69], "*.adobelogin.com": [659], "q6.chaucanh.net": [2053], "libraryreserve.com": [20678], "www.amazon.co.uk": [19365], "www.discoveryplacekids.org": [4642], "travelocity.ca": [16973], "www.citywerkz.com": [3257], "audit.median.hu": [10345], "gpage.co": [2053], "www.maawg.org": [9869], "407.co.nz": [2053], "www.verizonbusiness.com": [21907], "messenger.com": [10469], "www.srclib.org": [15591], "www.staff.uni-mainz.de": [17611], "www.trademark.harvard.edu": [7351], "magictouch.com": [10025], "whois.serveriai.lt": [14860], "www.lexmachina.com": [9438], "www.notalwaysrelated.com": [20931], "www.qualityagent.com": [13560], "forge.laravel.com": [9310], "osl.iu.edu": [8214], "togo.usembassy.gov": [21879], "support.software.dell.com": [4413], "www.passports.state.gov": [17345], "sp.eota.energy.gov": [5355], "grotebroek.squat.net": [21549], "www.gettyimages.co.uk": [6741], "www.facebook.se": [5736], "www.gl.ciw.edu": [2916], "copyright.illinois.edu": [17544], "www.imperialcollegeunion.org": [8164], "s83.cnzz.com": [3391], "updates.thomsonreuters.com": [16650], "www.avangard.ru": [1478], "pjsi.ps": [2053], "www.easymail.ca": [5127], "wordstat.yandex.com": [18956], "nz.norton.com": [11703], "yummm.me": [2053], "sapna.cc": [2053], "bes.bz": [2053], "dxo.me": [2053], "s3.uicdn.net": [17236], "bklt.org": [2053], "4tt.co": [2053], "www.secure.jhu.edu": [16562], "s.frc.ch": [2053], "images.jitsmart.com": [8827], "www.aftenposten.no": [749], "mean.se": [2053], "embed.insider.thomsonreuters.com": [16650], "go.ocp.org": [2053], "visatovietnam.org": [18056], "my.rakuten.co.jp": [13768], "www.membernumberlookup.acs.org": [966], "uoflphysicians.com": [17664], "aereo.com": [724], "lists.dns-oarc.net": [4133], "www.kimpluscraig.com": [9044], "www.studentchaptersreview.acs.org": [966], "events.redditmedia.com": [13924], "ashampoo.com": [1285], "www.rbwmcarshare.co.uk": [21269], "mgid.com": [9906], "exep.jpl.nasa.gov": [11058], "press.3dr.com": [159], "pool.gridcoin.us": [7076], "s.jjapp.in": [2053], "bugzilla.clamav.net": [3268], "erinl.ee": [2053], "lp.appoi.me": [2053], "openaccess.easthants.gov.uk": [5113], "*.tugg.com": [17096], "bookshelf.theanarchistlibrary.org": [16482], "fb.trmb.co": [2053], "sana.odessa.tv": [20983], "rddrss.pl": [2053], "cdnjs.dmjx.dk": [4687], "marika.cc": [2053], "boum.org": [2296], "www.jesus.cam.ac.uk": [17529], "mobi.pccu.edu.tw": [12425], "dai.aliloan.com": [19344], "rnicole.co": [2053], "fb.peeptoe.cz": [2053], "git.soranzi.net": [2053], "challengepost.com": [3046], "support.verio.com": [17914], "your.derbyshire.gov.uk": [19895], "campushuesca.unizar.es": [17643], "bodum.com": [2227], "2bit.co.in": [2053], "www.pyd.io": [13496], "sndr.one": [2053], "service-prod.mcafee.com": [10282], "goodnet.com": [6954], "es.news.walmart.com": [18260], "theracosmeti.co": [2053], "fxsystems.com": [5724], "mtth.in": [2053], "academics.de": [476], "prs.do": [2053], "*.umaine.edu": [17607], "pravc.xyz": [2053], "mdecar.mx": [2053], "lghts.tk": [2053], "support.parature.com": [12602], "pulpix.co": [13451], "7thin.gs": [2053], "s.kibdg.in": [2053], "recalls.gov.au": [13351], "z.hebe.ch": [2053], "feedback.arma3.com": [1238], "kanotix.org": [8934], "checkip.dedyn.io": [19879], "www.wilkinsons-auctioneers.co.uk": [22029], "i.actup.org": [2053], "frim.nl": [6338], "remote.cathaypacific.com": [2963], "tver.rt.ru": [13703], "sallie-info.stanford.edu": [15635], "unei.info": [2053], "novell.com": [11728], "artdivas.co": [2053], "vsexshop.ru": [18160], "www.monazilla.org": [20820], "www.2ksports.com": [105], "ea.voyage-prive.co.uk": [18151], "edgar-online.com": [4991], "calacademy.worldcat.org": [18748], "bethere.co.uk": [16332], "asmedia.me.uk": [2053], "yunchengxian.meituan.com": [10405], "tippcenter.zdf.de": [22127], "cas.lis.illinois.edu": [17544], "research.cals.vt.edu": [18031], "docker.io": [4705], "www.addresspicker.io": [618], "argoscareers.com": [1224], "*.animoto.com": [1067], "l.4vr.me": [2053], "smdd.adviva.net": [707], "eina.unizar.es": [17643], "filozofia.bme.hu": [1570], "developer.riverbed.com": [14140], "my.fsb.de": [2053], "genome.gov": [17305], "control.thebrighttag.com": [2379], "media2.woolworths.com.au": [18723], "whatson.tameside.gov.uk": [21659], "unfrmw.com": [2053], "wijgaannaareg.nl": [22026], "www.morpho.hu": [10787], "i.jwie.be": [2053], "livelib.ru": [9671], "area17.com": [1217], "m.taz.de": [16042], "zmap.io": [19070], "www.milepoint.com": [10580], "h-s.in": [2053], "novaya-usman.beeline.ru": [1801], "s.tuuli.info": [2053], "l.rapimg.com": [13795], "customerservice.aldi.com.au": [338], "forum.jide.com": [8585], "classic.surreycc.gov.uk": [21611], "missyward.me": [2053], "www.hkw.de": [7215], "cs.bite.lt": [2041], "youtube.fi": [19016], "mjg.in": [9920], "frank69.eu": [2053], "paraduxmedia.com": [12592], "india.hivos.org": [7573], "www.bitflyer.jp": [1981], "levny-hosting.cz": [9433], "www.independent.co.uk": [8202], "www.pgi.com": [12451], "www.stg.comcast.com": [3525], "brewsne.ws": [2053], "*.utk.edu": [17626], "*.tidalhifi.com": [16701], "rij.cc": [2053], "arin.net": [378], "roadside-mba.stanford.edu": [15635], "labs.spotify.com": [15548], "vitgrp.com": [2053], "hci.tech": [2053], "www.dashpay.io": [4242], "landalparkshop.*": [18790], "postofficeshop.de": [19901], "feconnect.sfa.bis.gov.uk": [19537], "energymadeeasy.gov.au": [5356], "uat.community.mcafee.com": [10282], "docs.vogogo.com": [21941], "qv.hitravel.xyz": [2053], "matt.ucc.asn.au": [17582], "www.hubspot.com": [7739], "oi.poop.io": [2053], "www.openmedia.org": [12156], "www.hackthissite.org": [7269], "lfhk.ru": [2053], "registration.section508.gov": [21397], "gruss-u.info": [2053], "crb.li": [2053], "stg.gogobot.com": [6934], "raymond.cc": [13818], "dramaticarts.usc.edu": [17564], "schlicht-moebel.de": [21378], "jerr.yt": [2053], "image.www.gametracker.com": [6561], "l.5min.com": [208], "gobtb.co": [2053], "w.inaveed.com": [2053], "*.housingwire.com": [7710], "hizlisaat.com": [7574], "hammacher.com": [7313], "ppm.lowes.com": [9800], "www.rspca.org.uk": [13695], "russki.istockphoto.com": [20505], "ekmsecure6.co.uk": [5235], "passagebank.com": [12636], "c.live.com": [9644], "citywk.ly": [2053], "future-lab.co": [2053], "mp.fnac.pt": [6085], "delta.affinix.com": [742], "simrussia.com": [15051], "rehs.us": [2053], "careers.checkpoint.com": [3106], "*.man.com": [10099], "lyris.com": [9851], "www.emfcamp.org": [20032], "bevsit.es": [2053], "dmu.my.centrify.com": [19673], "elr.io": [2053], "thebe.cc": [2053], "www.dbtv.no": [19867], "qsna.us": [2053], "gb.hyd.gov.hk": [7207], "m.hdfcbank.com": [7389], "jeffmclean.co": [2053], "xrel.to": [18892], "mondediplo.com": [10729], "accessnow.createsend.com": [3843], "www.pure-privacy.org": [13465], "epoch.fit": [2053], "nekoz.in": [2053], "admissions.com": [649], "imagecache.allposters.com": [875], "selfpayca.sh": [2053], "college.georgetown.edu": [6668], "yunqi.aliyun.com": [861], "raffi.today": [2053], "xmlgw.companieshouse.gov.uk": [19765], "chelmsford.greenparty.org.uk": [7052], "hypernews.cern.ch": [2631], "netfronts.com": [11383], "s.glowfm.nl": [2053], "kau.toke.dk": [16805], "austrade.gov.au": [1416], "secure-checkout.t-mobile.com": [16026], "www.ca.com": [2569], "ggty.co": [2053], "www.computerfulfillment.com": [3599], "*.ivn.us": [8206], "www.peterodding.com": [12805], "new.leadforensics.com": [9353], "go.tdh.me": [2053], "www.subgraph.com": [15813], "blesk.sk": [2122], "gftd.pt": [2053], "wuan.meituan.com": [10405], "ots.treas.gov": [17337], "www.ceop.police.uk": [19676], "mobile.gmx.de": [6467], "conference.joomla.org": [8776], "www.eliminatejunkemail.com": [12540], "erhverv.tdc.dk": [16051], "domino.watson.ibm.com": [7821], "link2.mobi": [2053], "news.webpodo.de": [2053], "www.flockport.com": [6052], "beatmec.ca": [2053], "www.codepen.io": [3410], "cm1.criticalmass.com": [3873], "scoop.intel.com": [8359], "de.norton.com": [11703], "causa.men": [2053], "whs.pr": [2053], "songkick.rocks": [2053], "laughable-jam.surge.sh": [15908], "mysql.fr": [10970], "*.getmein.com": [9642], "bardwilhome.com": [1713], "sites.cardiff.ac.uk": [2895], "on.dogbees.com": [2053], "cuttlefish.com": [4017], "nigx.net": [2053], "techtargetsummit.techtarget.com": [16274], "www.vervehosting.com": [17937], "www.gsmmap.org": [20287], "popma.lt": [2053], "blog.alipay.com": [857], "bountic.video": [2053], "dontech.link": [2053], "news.ifrs.ne.jp": [2053], "om.cnet.com.au": [2584], "www.reyn.ir": [14086], "x2go.org": [18800], "linux-tips.org": [9559], "gdta.st": [2053], "x.bitcoin.co.id": [2015], "primp.in": [2053], "*.adpay.com": [663], "chidsweb1.admin.uillinois.edu": [17238], "*.media.collegehumor.cvcdn.com": [3489], "ls.sir.sportradar.com": [21540], "link.soph.space": [2053], "www.modx.pro": [20817], "sole.dk": [15364], "chatango.com": [3090], "enroll.allclearid.com": [867], "i4.tietuku.com": [16704], "www.myub.buffalo.edu": [17583], "mbot.co": [2053], "localsearchassociation.org": [18974], "cart.rackspace.com": [13740], "rledge.co": [2053], "*.deviantart.net": [4503], "www.db.ripe.net": [14128], "sportinghip.co": [2053], "ilivid.com": [7901], "jamesb.me": [2053], "brze.us": [2053], "tribalhosting.net": [17002], "panel.goldenline.pl": [6941], "tpshlf.co": [2053], "tectonic.com": [16311], "www.jamesvillas.co.uk": [18790], "rodaw.me": [2053], "pandoblog.com": [12563], "bortarsasag.hu": [2279], "optimizegoogle.com": [12274], "cuctac.cf": [2053], "time.yandex.by": [18953], "corris.pw": [2053], "www.cals.vt.edu": [18031], "wearete.mp": [2053], "koryw.co": [2053], "csdb.dk": [2726], "www.research.cals.vt.edu": [18031], "www.trinityhome.org": [17014], "wrkt.co": [2053], "www.grabcad.com": [7006], "debian.piwik.org": [12950], "api.meetme.com": [10378], "pagekite.net": [12534], "exploit.in": [5618], "rdmpt.in": [2053], "www.omniture-static.com": [12001], "www.andreafabrizi.it": [1039], "www.eduscho.at": [16240], "wiley.com": [18609], "www.gettyimages.co.nz": [6741], "usa.anon-ib.su": [1080], "login.engineyard.com": [5367], "military.stanford.edu": [15635], "odco.com": [2053], "a.curpress.com": [2053], "identity.lbl.gov": [9219], "novartisart.com": [11727], "url.hwbot.org": [2053], "tereva.pro": [2053], "*.startcom.org": [15660], "go.brit.co": [2053], "expobibtic.upf.edu": [17674], "ob.s.co": [2053], "scootermagru.de": [2053], "sipsolutions.net": [14362], "www.mykplan.com": [309], "debs.dict.cc": [4536], "mail.is74.ru": [20500], "mydrl.umd.edu": [17549], "www.collabora.co.uk": [3481], "up3.co": [2053], "lab.msdn.microsoft.com": [10543], "yho.com": [18985], "xbee.net": [18848], "www.amoad.com": [352], "*.shop.forgefields.com": [6153], "www.nominate.acs.org": [966], "bayphoto.com": [1755], "www.hft-leipzig.de": [7523], "bitly.run-e.com": [2053], "mv.peanuts.com": [2053], "www.obi.pl": [20977], "ib.primabanka.sk": [13284], "cybergolf.com": [4044], "prcl.io": [2053], "widgets.bufferapp.com": [2459], "elements.yandex.kz": [18957], "ssl.washingtonpost.com": [18287], "charts.ycharts.com": [18917], "*.infusedsystems.com": [8285], "oram.link": [2053], "www.crowthornepc.org.uk": [19823], "mein.radioeins.de": [13752], "hosting.asp.net": [393], "socr.it": [2053], "myno.tc": [2053], "theapp.voicelessonstotheworld.com": [11492], "benj.xyz": [2053], "onelov.co": [2053], "bbva.info": [2053], "nl.mouseflow.com": [10812], "www.maarssen.nl": [11324], "scottishculture.basekit.com": [19493], "*.allpoetry.com": [900], "highpeak-consult.objective.co.uk": [20979], "jucycruize.co.nz": [8610], "radar.squat.net": [21549], "www.edgewall.org": [5184], "demisto.com": [4430], "tbtbooks.us": [2053], "www.travelocity.ca": [16973], "egais.ru": [20018], "medienforschung.zdf.de": [22127], "cyta.co": [2053], "www.jobs.nhs.uk": [11102], "www.godaddymobile.com": [6899], "ca.com": [2569], "bornthiswayfoundation.org": [2277], "acmsf.food.gov.uk": [20142], "metrogroup.de": [10502], "www.aan.sh": [429], "publications.environment-agency.gov.uk": [20047], "r.qq.com": [13514], "www.spotify.com": [15548], "bundesrat.de": [2489], "cie.utm.edu": [17628], "znefx.com": [2053], "stellar.org": [15720], "www.choon.net": [3159], "owncloud.documentfoundation.org": [16487], "kilometrikisa.fi": [9041], "languageperfect.co.nz": [9300], "wdg2.apple.com": [1160], "wi.wtf": [2053], "live.asp.net": [393], "www.clevercoin.com": [3298], "geeksphone.com": [6627], "dgrl.co": [2053], "www.websitealive2.com": [18445], "g.mahditajik.ir": [2053], "beerded.link": [2053], "reg.centrum.sk": [19675], "nattstad.se": [11288], "www.usuhs.mil": [17331], "cdw.com": [2623], "go.s-fellow.com": [2053], "s.si.edu": [2053], "*.voodoo.com": [18135], "typeamanifes.to": [2053], "www.subdownloader.net": [15809], "blkd.md": [2053], "bugs.wine-staging.com": [18650], "betabeat.com": [1868], "blkd.mn": [2053], "frug.co": [2053], "www.mupdf.org": [20853], "tripadvisor.co.nz": [21793], "*.ssldomain.com": [15600], "pcache.alexa.com": [835], "www.sydneyaquarium.com.au": [15963], "opendemocracy.net": [12230], "sacfw.co": [2053], "www.londonpreparesseries.com": [9734], "mjb.media": [2053], "iute.ch": [2053], "www.balkongshoppen.se": [1673], "asapps.artsci.wustl.edu": [18290], "my.tv.mail.ru": [10040], "www.vineyardvines.com": [18015], "nationaleombudsman.nl": [11324], "vologodskaya-obl.beeline.ru": [1801], "blogs.fau.de": [17597], "stvh.me": [2053], "www.emptywheel.net": [5323], "www.webbyawards.com": [18407], "s.zigi.io": [2053], "occstrate.gy": [2053], "developer.clockworkmod.com": [3332], "codereview.qt-project.org": [13544], "go2me.net": [2053], "btwifi.co.uk": [1620], "www.getambassador.com": [6707], "calfutures.berkeley.edu": [17526], "etherpad.inka.f4.htw-berlin.de": [7246], "lkl.st": [2053], "maxmind.com": [10262], "www.sourcecoast.com": [15419], "www.vanhaaren.net": [17843], "optin.stopwatching.us": [15744], "bestdj.website": [2053], "developer.servicenow.com": [14866], "cdn-origin.snv.vcmedia.com": [17833], "static2.wareable.com": [21973], "lists.openwrt.org": [12190], "mailoutinteractive.com": [10055], "a.21bet.com": [2053], "i.23.design": [2053], "api.picatcha.com": [12871], "www.theforeman.org": [21699], "nokia.co.uk": [11655], "zdfsport.de": [22127], "miscssl.360buyimg.com": [136], "files.gyazo.com": [7165], "i2.gallery.technet.s-msft.com": [14296], "www.demisto.com": [4430], "agricen.ag": [2053], "www.diffuse.ca": [4546], "flhsfb.us": [2053], "smartmoney.com": [11513], "capitalbreastcare.georgetown.edu": [6668], "l.chornco.com": [2053], "infosecindustry.com": [8251], "labs-staging.data.gov": [4253], "go.tiket.com": [2053], "*.bishopi.com": [1971], "u.moneylover.me": [2053], "webmail.tierra.net": [16705], "www.cornerstone.wustl.edu": [18290], "iciv.fr": [2053], "go.skuare.net": [2053], "*.prositehosting.co.uk": [5801], "wildlifesydney.com.au": [18608], "american.edu": [971], "suse.com": [14435], "the109.org": [16506], "nahb.bz": [2053], "j6.hitravel.xyz": [2053], "www.pulpix.co": [13451], "my.2hrcash.com": [2053], "g.seion.me": [2053], "ozbargain.com.au": [12400], "j.labrecque.me": [2053], "www.partnerinfo.lenovo.com": [9409], "download.spiceworks.com": [15517], "daln.co": [2053], "dudesha.red": [2053], "alionet.org": [856], "gofundme.com": [6904], "s.therosies.net": [2053], "ztrk.me": [2053], "www.jhsmh.org": [9008], "hubcr.8iv.ca": [2053], "www.npm.im": [11736], "www.insurancetech.com": [17204], "grclrk.co": [2053], "webpub.mit.edu": [9916], "auth.telegraph.co.uk": [16340], "stuaff.usc.edu": [17564], "fotoservice.telekom.de": [4490], "kirklees.firmstep.com": [20125], "watermarquee.com": [18297], "www.blogoverflow.com": [15611], "on.kivitv.com": [2053], "passthepopcorn.me": [12635], "tarunchaw.la": [2053], "potok.alfabank.ru": [842], "t.kuozumi.jp": [2053], "www.veloplus.ch": [21903], "gearl.ch": [2053], "secure.capitalone360.com": [2879], "unrealengine.com": [17652], "paste.ee": [12647], "longdistance.uaa.alaska.edu": [17519], "ss.zumzi.com": [19241], "*.pentacon.de": [14599], "*.valuedopinions.co.uk": [17838], "www.coed.com": [3449], "corp.sts.microsoft.com": [10543], "exablox.io": [2053], "suo.fyi": [2053], "opensvc.com": [12170], "okm.ag": [2053], "sprtly.me": [2053], "static.stubhub.co.uk": [15789], "forms.oig.hhs.gov": [7192], "segurosuniversales.net": [14805], "uden.nl": [11324], "fs26.formsite.com": [20148], "ptn.io": [2053], "bcex.bedford.gov.uk": [19509], "www.highfidelity.io": [7542], "www.intuitlabs.com": [8453], "gmglf.co": [2053], "aboutus.org": [464], "form.education.gov.uk": [20009], "maps.sakh.com": [21360], "hideout.cc": [2053], "www.superblock.net": [15880], "superbreak.com": [7597], "www.forestsangha.org": [6147], "www.purinastore.com": [13475], "tedrub.in": [2053], "fastspringblog.com": [5792], "bank.hangseng.com": [7326], "bossier.illuminateed.com": [20430], "songtripp.in": [2053], "mcont.co": [2053], "cooks.io": [2053], "delaware.gov": [15673], "vanbler.gs": [2053], "portal.htbridge.com": [7248], "dvps.pro": [2053], "bugs.chromium.org": [3179], "docker.com": [4704], "static-titanium.cursecdn.com": [4006], "www.rediris.net": [13896], "poste-impresa.it": [13190], "motox.accu-weather.com": [503], "si.mpati.co": [2053], "getjive.com": [8732], "yourtee.co": [2053], "novosibirskaya-obl.beeline.ru": [1801], "publisher.tinypass.com": [16761], "to.akima.de": [2053], "s.8qp.co": [2053], "images.proboards.com": [13338], "shutup.us": [2053], "developer.actor.im": [19282], "greyhound.com.mx": [7073], "luxuryreplica.net": [9843], "www.scheduleonce.com": [14590], "staging.hellobond.com": [7438], "gr-contrainfo.espiv.net": [20058], "www.phoronix.com": [12849], "aldi.dk": [338], "kaas.mchetty.nl": [2053], "as.on.aol.com": [361], "b.jd.com": [8571], "cre.pe": [2053], "help.ubuntu.com": [17382], "brog.co": [2053], "i.l2df.com": [2053], "esote.ch": [2053], "barter.vg": [1731], "smartlivingnetwork.com": [15240], "membercentre.fairfax.com.au": [5747], "fusion.libsyn.com": [9482], "m.mpbk.us": [2053], "www.adeccowaytowork.com": [620], "content.worldnow.com": [18752], "projects.coin-or.org": [3595], "mail.t-com.sk": [16346], "secure.thestar.com": [16846], "sustainability.asda.com": [387], "bc.legal": [2053], "gz.jd.com": [8571], "btlr.net": [2053], "www.sparx.org.nz": [15476], "bnlip.co": [2053], "amblin.io": [959], "uapp.ly": [2053], "plctwltter.co": [2053], "erestra.pw": [2053], "au.norton.com": [11703], "wiki.junge-piraten.de": [8831], "rated.co.uk": [2053], "www.seeedstudio.com": [14796], "mdy.lv": [2053], "www.ripmixmake.org": [5007], "images.google.com.*": [6968], "protect.iu.edu": [8214], "bpspt.mobi": [2053], "epetitionslincolnshire.firmstep.com": [20124], "font.news": [2053], "dej.si": [2053], "developer.snapengage.com": [15272], "bsclibrary.worldcat.org": [18748], "*.ja.net": [8562], "from-ua.com": [20178], "eyelig.ht": [2053], "fundaciontelevisa.org": [6377], "www.camden.gov.uk": [2830], "blueprint.uchicago.edu": [17532], "fdscp.com": [2053], "www.byte.nl": [2544], "on.fzel.us": [2053], "mosaic.re.taobao.com": [16206], "mmi.bnymellon.com": [19566], "wakefield-consult.objective.co.uk": [20979], "blog.wku.edu": [22039], "lnkr.ch": [2053], "interns.org": [8440], "myaffiliateprogram.com": [20860], "lists.01.org": [1], "parnl.me": [2053], "*.itu.int": [7997], "support.zend.com": [19136], "www.geizhals.de": [6632], "pnn.cl": [2053], "www.facebook.us": [5736], "i3.gallery.technet.s-msft.com": [14296], "www.dml.kuleuven.be": [8969], "blog.wireshark.org": [18670], "sktch.es": [2053], "*.movabletype.net": [20833], "mcvpacific.com": [8376], "wiki.metroethernetforum.com": [10501], "rong.36kr.com": [142], "pages.goswm.com": [2053], "vliet.land": [2053], "helpdesk.panopto.com": [12569], "nixonlibrary.gov": [20914], "www.flexnow.ruhr-uni-bochum.de": [14267], "japanese.alibaba.com": [850], "myaccount.talktalkbusiness.co.uk": [16185], "nglbrg.us": [2053], "www.apollon.uio.no": [17615], "wap.sogou.com": [21500], "tpb.review": [21771], "*.prxy.com": [13413], "ibank.rosbank.ru": [21328], "piratebay.esbypass.download": [21771], "www.ew-online.de": [5089], "www.openvirtualizationalliance.org": [12225], "hornsby.law": [2053], "advq.yandex.by": [18953], "gateway.degica.com": [3396], "gtk.ninja": [2053], "ide.la": [2053], "www.library.cornell.edu": [3744], "awaps.yandex.ua": [18961], "www.iwoulddo.it": [8024], "sunwood.jd.com": [8571], "ejy.co": [2053], "*.fwc.gov.au": [5745], "developer.justgiving.com": [8845], "edmjr.nl": [2053], "bookstore.ucsd.edu": [17216], "paymybill.uic.edu": [17517], "media.ibm.com": [7821], "lkviva.tk": [2053], "s118.cnzz.com": [3391], "opencorporates.com": [12129], "emery.illuminateed.com": [20430], "profection.al": [2053], "www.aok-gesundheitspartner.de": [357], "tlrd.net": [2053], "barti.cz": [2053], "on.prx.org": [2053], "www.shacomsecurities.com.hk": [14903], "*.usfca.edu": [17320], "0w1.xyz": [2053], "ox.mediabistro.com": [10336], "s.epm-music.com": [2053], "berryreview.com": [1850], "static.104.com.tw": [18], "arevie.ws": [2053], "mycalendarbook.com": [10937], "nintendoworldreport.com": [11613], "ny529.us": [2053], "dev.withsix.com": [18680], "ndjamena.usembassy.gov": [21879], "t1.mediamath.com": [10323], "www.antananarivo.usembassy.gov": [21879], "itcast.tk": [2053], "www.gbatemp.net": [6422], "www.ghost.org": [6748], "survey.hslu.ch": [7728], "renfit.me": [2053], "sweetpepper.org": [13211], "dentistry.usc.edu": [17564], "b.4na.xyz": [2053], "netsafe.hdfcbank.com": [7389], "sws.me": [2053], "www3.bio.org": [1562], "*.suggester.pl": [15839], "gaozhou.meituan.com": [10405], "email.bild.de": [1926], "signup.thrillist.com": [21732], "felix.click": [2053], "rhsd.io": [2053], "tmla.bz": [2053], "customerservice.costco.com": [3762], "dennikn.sk": [4445], "lmd.guru": [2053], "erleb.es": [2053], "www.cs.cf.ac.uk": [2895], "ctr4.me": [2053], "www.legolandholidays.co.uk": [20657], "www.eregulations.ct.gov": [2738], "www.onthewire.io": [12018], "sl.boardgamearena.com": [2219], "puui.qpic.cn": [13539], "ningyang.meituan.com": [10405], "providesupport.cn": [13400], "xsf.to": [2053], "varda.gs": [2053], "pogose.at": [2053], "www.openprovider.ru": [12240], "gadel.me": [2053], "biz.kolektiva.com": [9114], "facilities.georgetown.edu": [6668], "mysql.active24.cz": [19276], "link.oevae.com": [2053], "*.goldstar.com": [6945], "t.umblr.com": [21846], "torrentbutler.eu": [16849], "lion8.us": [2053], "pakistanrisk.us": [2053], "osmpe.ourproject.org": [21044], "amre.st": [2053], "my.tecne.ws": [2053], "deprati.co": [2053], "redirekto.com": [2053], "videomeet.telekom.de": [4490], "leeg.photo": [2053], "p4tg.com": [2053], "www.computextaipei.com.tw": [19768], "www.scrapbookroyalty.org": [3069], "www.mdshooters.com": [10207], "a.irfe.cl": [2053], "members.rethink.org": [21299], "www.nlx.org": [20917], "www2.hostingsolutions.cz": [7675], "s.jaf0.com": [2053], "nbts.co": [2053], "*.infomaniak.ch": [8261], "chriscoyne.com": [3165], "holler.to": [2053], "liangshan.meituan.com": [10405], "digifund.link": [2053], "fltrgr.de": [2053], "expo.getbootstrap.com": [6729], "palazz.io": [2053], "movabletype.net": [20833], "military.ncpw.gov": [11267], "spdap.de": [2053], "flsinc.co": [2053], "explore.autotrader.co.uk": [19458], "secure.visitsealife.com": [21927], "ihose.co": [2053], "topuniversities.com": [16834], "combo.ag": [2053], "bpwsk.ca": [2053], "lefebvre.org": [9345], "f.cov.church": [2053], "ae02.alicdn.com": [846], "login.andersonvalleypost.com": [5088], "www.micron.com": [10537], "n8k.me": [2053], "brkn.ws": [2053], "tudcom.tk": [2053], "fastgam.es": [2053], "eltatar.com": [5291], "intigr.is": [2053], "nmtlg.me": [2053], "url.bazuki.com": [2053], "store.openhost.net.nz": [12234], "www.bofh.it": [2231], "en.inria.fr": [8309], "www.kentuckyonehealth.org": [9008], "mybenefitscalwin.org": [10934], "linux.conf.au": [9564], "lists.openmamba.org": [21018], "account.sogou.com": [21500], "oyun.yandex.com.tr": [18954], "www.pirateproxies.info": [21709], "simmtester.com": [15059], "shop.whyopencomputing.ch": [22021], "twtimg.co": [2053], "1105-sub.halldata.com": [7306], "lists.gnutls.org": [6888], "item.rakuten.co.jp": [13767], "synwork.oss.aliyuncs.com": [19346], "service.taobao.com": [16206], "www.torbay.gov.uk": [16840], "*.allplayers.com": [874], "billing.pluralsight.com": [21152], "vserver.pipni.cz": [12460], "www.bth.se": [1613], "ask.fm": [1296], "amp.freetalklive.com": [20171], "samsungsem.com": [14508], "uguu.se": [17400], "f9.chaucanh.net": [2053], "mip2014.engineering.osu.edu": [11959], "l.falu.me": [2053], "www.cyngn.com": [4055], "jcellb.io": [2053], "secure.bingads.microsoft.com": [10543], "buitr.es": [2053], "cylncr.me": [2053], "hanyin.meituan.com": [10405], "code.openhub.net": [12211], "knng.pw": [2053], "parkb.it": [2053], "kia.bi": [2053], "www.boarnsterhim.nl": [11324], "www.rwe.de": [21349], "hsuk.co": [2053], "pic.zhimg.com": [19173], "de.rt.com": [13702], "assets4.sendgrid.com": [14821], "pointroll.com": [13076], "www.thesaturdaypaper.com.au": [16575], "barvaux.org": [1733], "ultmt.rs": [2053], "comms.informahealthcare.com": [8268], "www.kontalk.net": [9130], "*.staradvertiser.com": [7630], "hendrik.luup.info": [7457], "facebook.us": [5736], "annasbest.migros.ch": [10566], "mijnlenen.snsbank.nl": [14382], "ds.hpci.nii.ac.jp": [11117], "*.nachrichtendienstgesetz.ch": [20873], "www.splashthat.com": [15532], "homebello.com": [7611], "sp8l.com": [2053], "www.ois.uic.edu": [17517], "*.alertir.com": [829], "www.kontoapi.de": [9132], "oh-tech.org": [11822], "afreetee.com": [2053], "rio2016.com": [21310], "on.hotelrado.pl": [2053], "haystacksoftware.com": [7383], "myinterfase.com": [11025], "w.gameduc.com": [2053], "binarycontrol.debian.net": [4351], "www.sgsstudentbostader.se": [14351], "ipify.org": [20489], "colossal.jp": [3511], "ihcc.us": [2053], "kozlekedes.bme.hu": [1570], "www.ecb.europa.eu": [5526], "icareifu.li": [2053], "s.buzzr.in": [2053], "0vercl0k.tuxfamily.org": [21820], "pono.net": [2053], "www.golfsuisse.ch": [6951], "login.apiary.io": [19401], "bbd.link": [2053], "linuxquestions.org": [9575], "law.washington.edu": [17577], "vmd.1688.com": [44], "www.xumaa.com": [18908], "geog.gr": [2053], "themoviedb.org": [16565], "forum.mamp.info": [20744], "tsb.ba": [2053], "cms.hhs.gov": [7192], "4cdn.org": [185], "www.tante.cc": [16203], "dsb.zh.ch": [21629], "scuba.im": [2053], "tch.ae": [2053], "faq.1and1.com": [61], "jux.by": [2053], "home.jolicloud.com": [20547], "uncg.edu": [17613], "*.mega.nz": [10390], "adamcod.es": [19285], "sxmelect.ro": [2053], "www.wholesalelabels.com": [18563], "myhosting.com": [15339], "apps.mhf.dod.mil": [17306], "www.ehoiva.fi": [19982], "www.thunderkick.com": [16675], "megiteam.pl": [10402], "finanswatch.dk": [5944], "l.mgsog.nl": [2053], "svnbrgr.eu": [2053], "fa2v.com": [2053], "mb.cash": [2053], "xy.ag": [2053], "greatergood.me": [2053], "takeaway.com": [16170], "sdi.agency": [2053], "mpp2.specificclick.net": [15493], "nihrecord.nih.gov": [11241], "www.onehelp.cz": [11842], "iimagepics.com": [2053], "apoc.freedesktop.org": [6243], "virtua.ca": [2053], "czr.bz": [2053], "i.lilsixty.com": [2053], "mrwrk.nl": [2053], "getpreso.com": [2053], "u.thebrighttag.com": [2379], "go.east-tec.com": [2053], "www.barnsley.nhs.uk": [11102], "kevinv.me": [2053], "www.sandwell.gov.uk": [21367], "sl1.ir": [2053], "hmwy.co": [2053], "hbdm.hbsp.harvard.edu": [7351], "hosted-oswa.org": [7665], "niamey.usembassy.gov": [21879], "asset-3.netbeans.org": [11376], "www.cdon.no": [2620], "stpiusweb.org": [2053], "shangyu.meituan.com": [10405], "www.sunlightfoundation.com": [15857], "ob.tener.me": [2053], "fellowship.fsfeurope.org": [5715], "ally.com": [905], "olinblog.wustl.edu": [18289], "p7.hitravel.xyz": [2053], "i.stv.tv": [2053], "*.perceptivepixel.com": [12768], "uva.nl": [17751], "docs.abuledu.org": [19258], "vxfd.cc": [2053], "tfish.us": [2053], "alxo.me": [2053], "nmbl.in": [2053], "stfa.uk": [2053], "dashboard.stanford.edu": [15635], "educatetheworld.com.au": [5195], "media.villahostels.com": [18006], "ayr.sg": [2053], "sahayn.es": [2053], "static.googlewatchblog.de": [6976], "connect.tms.pl": [21750], "netreg.stanford.edu": [15635], "greek.rit.edu": [13667], "www.ameliaandersdotter.eu": [964], "gd.libreoffice.org": [9471], "theatr.net": [2053], "i.drawy.xyz": [2053], "courses.washington.edu": [17577], "s1.2mdn.net": [115], "musicsorb.rocks": [2053], "aspen.com": [1307], "sids.me": [2053], "www.uno.im": [17648], "www.prettyeasyprivacy.com": [12714], "secure.gamblingcommission.gov.uk": [6531], "crwdly.co": [2053], "www.directadvert.ru": [4608], "room.rakuten.co.jp": [13768], "motherboard.tv": [10795], "www.vbseo.com": [17761], "*.dodlive.mil": [17306], "hrmatch.es": [2053], "modul.tivi.de": [22127], "*.hpcloud.com": [7226], "go.terbaru.us": [2053], "dziary.xyz": [2053], "lkld.cc": [2053], "www.guldencoin.com": [7144], "zhangshu.meituan.com": [10405], "www.yatima.org": [18968], "prolo.gs": [2053], "wp.kazy.in": [2053], "bink.it": [2053], "www.telex.cc": [16355], "scripts.kissmetrics.com": [8880], "blog.lookout.com": [9764], "earthfirst.org.uk": [5107], "advertising.yandex.by": [18953], "jdbr.ga": [2053], "go.kedco.ca": [2053], "acuitybus.com": [2053], "ponychat.net": [13123], "www.taxact.com": [16234], "www.nice.nhs.uk": [11102], "nl2.us": [2053], "l.floh.in": [2053], "ticketnet.fr": [16691], "www.dma.ens.fr": [5029], "theturtle.mobi": [2053], "g.wilker.org": [2053], "store.playstation.com": [13015], "api.littlesis.org": [9637], "www.aulani.jobs": [1404], "as2.in": [2053], "planning.chorley.gov.uk": [19709], "accesd.desjardins.com": [4471], "www.nuget.org": [11760], "inventati.org": [1450], "jfrog.com": [8580], "my.syncplicity.com": [15984], "tigr.net": [16713], "rigb.org": [14227], "cdn.dealerfire.com": [4335], "videodirect.amazon.co.jp": [19364], "www.fbf8.com": [5817], "eari.me": [2053], "m-rry.me": [2053], "npl.worldcat.org": [18748], "mcc.godaddy.com": [6898], "global.gotomeeting.com": [6912], "btb-preview.stanford.edu": [15635], "hell0.ws": [2053], "m.unibet.com.au": [17464], "solarlist.com": [15359], "burningshed.co.uk": [2499], "smfta.com": [14375], "nmtea.co": [2053], "ao.1sp.jp": [2053], "www.wusmhealth.wustl.edu": [18290], "clickbank.net": [3302], "fbs.usc.edu": [17564], "burtcorp.com": [2506], "intelfellowships.com": [8360], "fls-eu.amazon.it": [19373], "tageswoche.ch": [16162], "private-communities.netapp.com": [11374], "forum.avast.com": [1484], "eltirabeque.ourproject.org": [21044], "scrypt.cc": [14668], "*.loopfuse.net": [9767], "kf.al": [2053], "i.eroshare.com": [5454], "cdn.scriptlogic.com": [14665], "os.js.org": [20555], "www.openpetition.de": [12163], "sa.bbc.co.uk": [1538], "raspberrypi.org": [13803], "cdn5.iconfinder.com": [8066], "snl.blue": [2053], "uk.3.boardgamearena.com": [2219], "mediastore.portsmouth.gov.uk": [21175], "www.pharmacievirtuelle.pha.ulaval.ca": [17515], "go.brightcove.com": [5280], "merchant3.chinabank.com.cn": [3142], "hbnd.org": [2053], "me.scaasi.co.uk": [2053], "suay.co": [2053], "zhouzhi.meituan.com": [10405], "an9.104.com.tw": [18], "dax.comscore.com": [3517], "infojobs.net": [8249], "peerstudio.org": [12736], "corporate.leboncoin.fr": [20650], "lvng.ga": [2053], "boobne.ws": [2053], "s.savinyurii.ru": [2053], "www.lse.ac.uk": [9253], "t411.me": [16036], "bbmc.es": [2053], "stat.coxds.com": [3806], "fus.in": [2053], "www.grahamcluley.com": [7013], "at.rahemsa.com": [2053], "iforgot.apple.com": [1160], "support.wmtransfer.com": [18373], "nanzhuang.taobao.com": [16206], "ir.riverbed.com": [14140], "by.eslamoda.com": [2053], "www2.f-secure.com": [5654], "uk2.net": [17241], "www.nlnetlabs.nl": [11130], "holmesleads.uk": [2053], "ronsen.us": [2053], "glitterbank.com": [6833], "julia.fyi": [2053], "rec.x-lift.jp": [18798], "cdn2.moneycorp.com": [20823], "bpt.bz": [2420], "tag.cdnmaster.com": [19664], "hlbe.meituan.com": [10405], "amanuensans.net": [2053], "mgirl.nyc": [2053], "cheapoz.com.au": [3098], "assets.115.com": [25], "hghr.se": [2053], "nsites.me": [2053], "fuding.jd.com": [8571], "drm.chipworks.com": [3148], "www.2dialog.com": [101], "pgsql.vas-hosting.cz": [21896], "www.1u1s.de": [81], "penninecare.nhs.uk": [11102], "www4.walsall.gov.uk": [21971], "machcomedyfest.co.uk": [9993], "5gwc-kbhkort.kk.dk": [8883], "cdn.filepicker.io": [5916], "leisureworldmemberships.colchester.gov.uk": [3477], "gky.no": [2053], "diret.us": [2053], "kellytarltons.co.nz": [8998], "www.your-freedom.net": [19028], "www.hetlnvloket.nl": [11324], "maintool.fr": [2053], "s1-www.yamedia.tw": [18948], "mcgrl.net": [2053], "cyrilbladier.eu": [2053], "sse.jpl.nasa.gov": [11058], "beartooth.us": [2053], "vspc.us": [2053], "i1.microsoft.com": [10543], "yuntuapi.amap.com": [19360], "gabp.me": [2053], "sdigit.al": [2053], "a-i-b.eu": [2053], "www.hertz.jo": [7492], "l1.jo.je": [2053], "mshkn.ch": [2053], "rs.meituan.com": [10405], "hmrc.gov.uk": [7219], "x.chmuul.net": [2053], "www.swingfree.co.uk": [15945], "www.rheinland24.info": [14094], "mobileidentity.telus.com": [16364], "online.fit.edu": [6058], "ashu.uno": [2053], "dcra.in": [2053], "dev-lounge.gamigo.com": [6563], "www.budsgunshop.com": [2452], "nfa.jd.com": [8571], "nxtbl.us": [2053], "carolmorena.tk": [2053], "esinet.norfolk.gov.uk": [20923], "tacurl.com": [2053], "uncatolico.org": [2053], "csd.m9q8k3b.com": [2053], "api.23andme.com": [89], "blog.trendmicro.de": [16991], "links.shs.vn": [2053], "crwdwk.com": [2053], "*.tilt.com": [16719], "centbrowser.com": [19667], "varis.me": [2053], "uits.iu.edu": [8214], "icculus.org": [8054], "sophievipescort.com": [15402], "apress.com": [1177], "kstm.co": [2053], "*.httpwatch.com": [7245], "ropo.so": [2053], "*.sonicwall.com": [15386], "static.smallworldlabs.com": [15225], "ir.pleotec.com": [2053], "nakia.me": [2053], "www.qelectrotech.org": [21238], "tnyjtpk.com": [2053], "freeovi.com": [20169], "performance.westsussex.gov.uk": [18507], "trackbar-bap.navigator.web.de": [18347], "edeka.de": [20006], "i.khan.org": [2053], "facebook.no": [5736], "*.mygreenbeanextract.com": [7050], "aka-img-1.h-img.com": [7762], "upcbusiness.nl": [17281], "www.paymoapp.com": [12693], "defendr.co": [2053], "themins.co": [2053], "mvps.org": [9973], "netcloude.cz": [11410], "www.hurl.it": [20397], "securitylunch.stanford.edu": [15634], "www.snelpanel.com": [15279], "order.emcraft.com": [5303], "www.javacoolsoftware.com": [8677], "*.jobs2web.com": [8747], "tsou.sg": [2053], "lists.openmoko.org": [12237], "www.dealabs.com": [19881], "ads.intergi.com": [8397], "content.findnsave.com": [5951], "www.quinstreet.com": [13598], "go.bqphoto.info": [2053], "sec.ch9.ms": [3039], "www.fedbizopps.gov": [5831], "www.socialsafety.org": [15307], "orangestatic.com": [12293], "travel.files.bbci.co.uk": [19501], "kap.mx": [2053], "www.subway.com": [15825], "www.lizard-cloud.htwk-leipzig.de": [7736], "nutritionhistory.nal.usda.gov": [17495], "community.linksys.com": [9544], "mrshe.de": [2053], "cpnking.com": [2053], "lamar.sh": [2053], "syntra.li": [2053], "s1t1.net": [2053], "glsafe.co": [2053], "www.ciscolive.com": [3224], "dug.net.pl": [4163], "www.byo.com": [2362], "u.tap.me": [2053], "www.cyberport.de": [4048], "topti.ps": [2053], "php-webdav.pureftpd.org": [13466], "l.ph1l.tv": [2053], "moat.com": [10673], "investors.homeaway.com": [20352], "fpscdn.yam.com": [18948], "rc.mu": [2053], "argh.wtf": [2053], "www.metalab.at": [10484], "www.jinx.com": [8725], "aff.xnite.net": [2053], "panel.cint.com": [3208], "go.knitbot.com": [2053], "casro.org": [2946], "cva.io": [2053], "bbyb.ca": [2053], "crcls.in": [2053], "streamaloud.com": [2053], "selfservice.unit4.com": [21856], "w3counter.com": [18185], "leagueofgreenembassies.state.gov": [17345], "www.dac.co.jp": [4076], "hacoder.com": [7254], "express.hertz.com": [7511], "*.iberdrola.es": [8042], "www.33bits.org": [126], "support.astaro.com": [1333], "u.uneek.org": [2053], "www.swft.nhs.uk": [11102], "javadoc.io": [8678], "c.getsatisfaction.com": [6738], "support.gitter.im": [6806], "www.esinet.norfolk.gov.uk": [20923], "cr8.me": [2053], "gohc.net": [2053], "volgograd.rt.ru": [13703], "www.cyberaide.ca": [4051], "www.kqzyfj.com": [3546], "jtreminio.com": [20559], "lounge.zohocrm.com": [19200], "aci-europe.org": [284], "jepso.com": [8703], "www.oldebroek.nl": [11324], "*.grooveshark.com": [7091], "www.gemoney.com.au": [6432], "provantage.com": [13397], "kb.siteground.com": [15112], "www.projet-coclico.org": [3403], "idfo.in": [2053], "gradescope.com": [7009], "ut01.xhcdn.com": [18815], "www.quotesnsayings.com": [13610], "sug.htwk-leipzig.de": [7736], "telebasel.ch": [21670], "*.linkmaker.co.uk": [20694], "shft.io": [2053], "www.clover.com": [3377], "citi.com": [3227], "honors.illinois.edu": [17544], "huxo.co.uk": [7780], "daymrk.co": [2053], "www.carrefour.es": [19649], "payments.virginmedia.com": [18028], "gk1.biz": [2053], "logon.billpay.de": [1931], "sweetandsourstudio.com": [15937], "foto.vpsfree.cz": [21956], "deutsche-rentenversicherung.de": [4487], "www.solmusica.com": [15354], "photos.america.gov": [19380], "tpchur.ch": [2053], "webchat.quakenet.org": [13556], "kickass-torrents.to": [9031], "www.uaa.alaska.edu": [17519], "speed-burger.com": [15501], "www1.pollg.com": [7343], "www.kinox.pe": [20597], "interactiveonline.com": [8391], "www.caat.org.uk": [19625], "bose.co": [2053], "elkosmas.gr": [20026], "dofunsh.it": [2053], "opcw.org": [11852], "indeeds.ml": [2053], "*.parkersoft.co.uk": [12610], "rif.ai": [2053], "www.knot-dns.cz": [9099], "aleksin.beeline.ru": [1801], "autoimg.rtl.de": [13708], "astrakhan.ru": [19444], "mate.as": [2053], "join.fedoraproject.org": [5843], "rynobl.us": [2053], "catraquinha.catracalivre.com.br": [2967], "sacredrid.es": [2053], "vodafone.uk": [2053], "kameleoon.com": [8928], "ux-eco.corp.appnexus.com": [1148], "goes-app.cbp.dhs.gov": [4109], "pristi.ne": [2053], "*.plssl.com": [13258], "www.xprize.org": [18795], "l.mivistore.com": [2053], "chuang.36kr.com": [142], "www.armorybids.com": [1240], "www.taiget.ru": [21652], "the.realb.it": [2053], "admin.tagman.com": [16160], "www.tpb.cricket": [21771], "www.ciscolearningsystem.com": [3223], "www.miles-and-more.com": [10581], "clic-study.org": [2680], "*.garciniacambogiavitalmend.com": [6576], "www.adobeformscentral.com": [658], "mk7.cc": [2053], "www.english-heritage.org.uk": [5370], "scalability.org": [14564], "images.newrepublic.com": [11501], "bunte.biz": [2053], "www.malverndiabeticfoot.org": [10089], "portlandmercury.com": [13165], "gdbns.ga": [2053], "aac.io": [2053], "acecent.re": [2053], "nette.me": [2053], "flts.im": [2053], "www.betvictor.com": [17962], "www.starkist.com": [15643], "gfg88.tk": [2053], "sbtix.xyz": [2053], "demos.intercom.io": [8392], "s.rakit.my": [2053], "www.markeedragon.com": [10171], "*.helpdocsonline.com": [7447], "offi.me": [2053], "signup.hootsuite.com": [7632], "www.mijnusenet.nl": [20796], "psrm.co": [2053], "s.mentalt.jp": [2053], "lnk.eberapp.com": [2053], "prnr.me": [2053], "portalmasq.com": [12483], "s.wilton.com": [2053], "wpezdev.com": [2053], "secure.disney.co.jp": [4651], "www.hr.caltech.edu": [2815], "developer.mbed.org": [10275], "g3boy.ml": [2053], "asset-4.soupcdn.com": [15416], "nrdry.net": [2053], "cbpi.info": [2053], "armstrong.osu.edu": [11959], "www.invisionpower.com": [8473], "icsdelivery.com": [8070], "www.com-sys.de": [3514], "admin.mims.com": [9910], "*.webmail.uni-weimar.de": [1744], "static1.wonderwall.com": [18714], "mtu.news": [2053], "martamari.am": [2053], "dev.netzob.org": [11469], "www.nccgroup.com": [11068], "go.jadoel.info": [2053], "www.gay180.com": [6595], "portalval.cms.gov": [19742], "www.gmx.net": [6467], "forums.mageia.org": [10014], "appkb.ch": [20574], "assets.centralindex.com": [19669], "ibank.sovcombank.ru": [21516], "lists.contribs.org": [3686], "chemsysbio.stanford.edu": [15635], "tonicdev.com": [21755], "bear.me": [2053], "anidb2.anidb.net": [1062], "functions-online.com": [20187], "elburg.nl": [11324], "on.1170kfaq.com": [2053], "trent.utfs.org": [17745], "mdigit.al": [2053], "ickk.es": [2053], "b-static.net": [2222], "www.talkhealthpartnership.com": [16186], "www.winzip.com": [18633], "hitr8.me": [2053], "myaccount.utopianet.org": [17749], "sitetagger.co.uk": [15120], "www.toptip.ch": [3712], "clvnk.co": [2053], "ideamens.ch": [2053], "freeunlocks.com": [6251], "www.tinyurl.com": [16756], "safekey.mcafee.com": [10282], "team.hon.ch": [7223], "www.boostbybenz.com": [2265], "ffmpeg.org": [5678], "support.zadarastorage.com": [19088], "lh2.google.co.*": [6965], "hra-news.org": [7229], "fwd.youcanbook.me": [19010], "elru.moe": [2053], "eevee.moe": [2053], "portal.donotpay.treasury.gov": [16980], "www.familysearch.org": [5760], "lri.link": [2053], "planet.osgeo.org": [11868], "s137.cnzz.com": [3391], "mmahq.com": [9929], "studentblogs.nvcc.edu": [11787], "ncfit.club": [2053], "www.webtimeclock.com": [18460], "badges.instagram.com": [8331], "hertztrucks.com.au": [7475], "static.flixstercdn.com": [6049], "dug.cc": [2053], "cheezburger.com": [3114], "thefnf.org": [16539], "connect1.osu.edu": [11959], "devdocs.wesnoth.org": [18500], "film-21.co": [2053], "avlt.co": [2053], "error.incites.thomsonreuters.com": [16650], "www.svetlodarsk.com": [15929], "blog.dreamhost.com": [4844], "*.univie.ac.at": [17639], "s.chzbgr.com": [3114], "ii.lc": [2053], "connect.megapathwholesale.com": [10397], "traceroute-online.com": [21773], "johalputt.com": [2053], "atwp.fr.nf": [2053], "go.dc50tv.com": [2053], "vmne.ws": [2053], "www.domainbox.com": [4752], "system.casalemedia.com": [2929], "dgtl.ly": [2053], "giving.stanford.edu": [15635], "www.escholarship.org": [5070], "streamline.uprr.com": [21870], "www.eduid.cz": [5198], "revosec.ch": [14084], "*.snatchly.com": [15277], "crec.bz": [2053], "nxtblocks.info": [11176], "l4.51fanli.net": [198], "www.crowdcurity.com": [3895], "treatsm.ag": [2053], "c-js.uk": [2053], "usm.ag": [2053], "www.qatar.hsbc.com": [7233], "accounts.havant.gov.uk": [20318], "ifxm.ag": [2053], "rmndr.co": [2053], "poloniex.com": [13110], "leo.io": [2053], "athletics.cmu.edu": [2917], "www.startlab.sk": [15664], "eshop.eset.com": [5463], "on.thai.ga": [2053], "about.me": [463], "job.web.cern.ch": [2632], "crowdsupply.com": [3894], "seafileserver.de": [14677], "hservices.nra.org": [20942], "ssl5.ovh.net": [12378], "wc.vg": [2053], "secure.yes.co.il": [22101], "krystalstatus.co.uk": [18730], "www.canvasholidays.co.uk": [18790], "on.ksdk.com": [2053], "twylah.com": [17178], "fcitx-im.org": [5819], "hub.microsofttranslator.com": [10549], "dreki.tech": [2053], "no-cache.hubspot.com": [7739], "gyal.rocks": [2053], "www.dagbladet.no": [4183], "secure.gettyimages.ch": [6741], "secure-id.impressiondesk.com": [20446], "esus.megabus.com": [10401], "jcnup.es": [2053], "turbotax.com": [8452], "oms.auone.jp": [2053], "*.eex.com": [5534], "assessment.plymouth.ac.uk": [13055], "www.surveillancelaw.org": [15911], "erc.europa.eu": [5526], "office.bbva.es": [1766], "o2.co.uk": [16332], "www.iis.se": [7889], "planet.documentfoundation.org": [16487], "s.qbo.me": [2053], "www.finance.gov.sk": [15217], "wurk.in": [2053], "mnot.es": [2053], "gruus.net": [2053], "ozon.ru": [12405], "knappschaft.de": [9092], "link.sausse.com": [2053], "changeagain.me": [19684], "www.prosody.im": [13388], "common.restaurantfurnitureresource.com": [8304], "go.head.com": [2053], "reestr-svyaz.rkn.gov.ru": [14146], "frgl.us": [2053], "55ch.org": [199], "mobile.udn.com": [17224], "get.uberid.tech": [2053], "www.jobs.cam.ac.uk": [2821], "*.thesatanictemple.com": [16574], "www.wazapp.im": [18310], "s.lair.io": [2053], "hartl.in": [2053], "*.mediapost.com": [10328], "roble.unizar.es": [17643], "dg.specificclick.net": [15493], "www.congress.gov": [3640], "india.gov.in": [8210], "www.minecraftserverlijst.nl": [10605], "www.colocationamerica.com": [3498], "arvutiabi.ut.ee": [17347], "surfdo.me": [2053], "press.virtkick.io": [18035], "prvshw.co.uk": [2053], "zerties.org": [19163], "ukrm.ag": [2053], "gfd.co": [2053], "www.sceper.ws": [14584], "mapy.cz": [10141], "kb.radware.com": [13758], "url.teammay.com": [2053], "altquick.co": [913], "themainemag.co": [2053], "clickdimensions.com": [19728], "re.telitsin.ru": [2053], "brgr.it": [2053], "go.vinofeed.co": [2053], "garyw.in": [2053], "www.worldmarkbywyndham.com": [18790], "teendriversource.org": [16314], "bluecatnetworks.com": [2180], "www.starship.xyz": [15656], "www.grad.ua": [20275], "www.netlock.hu": [11388], "*.emailsrvr.com": [5295], "www.hkedcity.net": [7203], "*.sparxtrading.com": [15477], "mvto.ws": [2053], "benefits.redbridge.gov.uk": [13917], "pindrop.com": [21124], "otsuka-shokai.co.jp": [12338], "www.tiresnwheels.ca": [16768], "l.deze.net": [2053], "tvpop.news": [2053], "ssl-cert-shop.com": [14411], "domreg.flirble.org": [16456], "it24tjanster.idg.se": [7852], "searchsecurity.de": [16273], "mstrb.us": [2053], "skyboxed.in": [2053], "*.aer.gov.au": [1427], "www.thcservers.com": [21687], "xuzhou.jd.com": [8571], "cora.ucc.ie": [17210], "analytics.similargroup.com": [15055], "go.gohres.de": [2053], "cdn8.sure-assist.com": [15899], "igw.link": [2053], "www.metal-detector-town.com": [10483], "www.abuledu.org": [19258], "herdprotect.com": [7463], "numru.sh": [2053], "pistolsfir.in": [2053], "zfh.me": [2053], "youraccount.salford.gov.uk": [21362], "*.inductionsolutions.com": [8223], "innovwthrdev.uwm.edu": [17580], "www.getsharex.com": [6724], "blog.360totalsecurity.com": [133], "pivotaltracker.com": [12949], "project-slhc.web.cern.ch": [2632], "kback.us": [2053], "techin.asia": [2053], "infocenter.stanford.edu": [15635], "alxd.re": [2053], "www.natmonitor.com": [11231], "www.n-tv.de": [20871], "giftshop.cancerresearchuk.org": [19637], "it.jobindex.dk": [8746], "fp3a.browsersafetymark.io": [2430], "ansible.com": [1097], "hpiagd.com": [2053], "barikat.gr": [7042], "sa1.roadtrippers.com": [21317], "software-security.sans.org": [14310], "religions.unian.ua": [21851], "medici-manager.com": [10357], "stats.eon-uk.com": [4959], "www.meetinleeds.co.uk": [10377], "hmnact.in": [2053], "l.nchp.mn": [2053], "www.mp3skull.is": [9944], "assets-on.spiceworksstatic.com": [15518], "natl.as": [2053], "ju.taobao.com": [16206], "bvc.so": [2053], "ld.meituan.com": [10405], "alo.ph": [2053], "akrwd.com": [2053], "ldd.rs": [2053], "caa.co.uk": [3262], "wpycb.info": [2053], "fhs.io": [2053], "holly.im": [2053], "image.adjug.com": [565], "*.cashboardapp.com": [15814], "feeds.tv2.dk": [16136], "mypack.acs.ncsu.edu": [11690], "localmedia.org": [9700], "sertifikatai.lt": [14842], "www.gameinformer.com": [6540], "eigo.co": [2053], "bityes.com": [2001], "e.jd.com": [8571], "s.sk-inc.jp": [2053], "test.freesound.org": [6303], "static.cloudmagic.com": [3350], "volgistics.com": [18122], "ulassessment.gmu.edu": [6666], "coll.coach": [2053], "riglogix.com": [1970], "willrz.me": [2053], "kph.la": [2053], "developer.swisscom.ch": [15951], "www.harlandclarke.com": [7339], "adelphi.de": [622], "ogvidi.us": [2053], "roc-noc.com": [14161], "dkc1.digikey.com": [4552], "ramhost.us": [13630], "a-dnews.co": [2053], "fredandpickles.co.uk": [6232], "1pipfix.com": [55], "boleti.us": [2053], "joblist.ala.org": [337], "abacus.com": [439], "schijndel.nl": [11324], "e-estonia.com": [4936], "ala13.co": [2053], "www.clubnix.fr": [3380], "w.9ly.in": [2053], "beta.welt.de": [18492], "pitnb.com": [2053], "www.fcw.com": [5673], "tec.kaeitec.com": [2053], "link.wtkr.com": [2053], "sql4.endora.cz": [5349], "ianonym.com": [7819], "irishtimes.com": [16460], "www.esb.ie": [5051], "ssl.chroot-me.in": [3184], "www22.verizon.com": [17918], "community.ubuntu.com": [17382], "portal.videohub.tv": [17980], "panel.cloudatcost.com": [3341], "m.fark.com": [5776], "mailing.channel4.com": [3061, 3062], "lafab.tv": [2053], "www.dalemacartney.com": [4204], "www.1anh.com": [65], "design.sharethrough.com": [14925], "cdn-api.ooyala.com": [12099], "go.bengals.com": [2053], "lists.pfsense.org": [12819], "samri.dk": [2053], "fleaba.gs": [2053], "fnws.fr": [2053], "gdcg.co": [2053], "e7.xhamsterpremiumpass.com": [18817], "stanfordconnects.stanford.edu": [15635], "planete.abuledu.org": [19258], "bonus.vtb24.ru": [21961], "payments.ebay.co.uk": [4973], "*.le.ac.uk": [17605], "www.allianz.com": [19351], "www.snob.ru": [15285], "licitacion.unizar.es": [17643], "jkr.gl": [2053], "opm.gov": [11853], "discussions.nessus.org": [11357], "resources.basekit.com": [19493], "waeckerlin.org": [18238], "www.neptun.bme.hu": [1570], "woodgreen.org.uk": [18719], "www.minfin.nl": [11324], "proxy1.switchadhub.com": [15954], "tickets.kirklees.gov.uk": [9067], "sa.usembassy.gov": [21879], "camcors.cam.ac.uk": [17529], "drbk.ws": [2053], "fr.icecat.biz": [8059], "mare-system.de": [9878], "www.btwholesale.com": [1619], "www.foundingfathers.info": [6197], "ingressos.rio2016.com": [21310], "ad5.netshelter.net": [11400], "upend.me": [2053], "www.datared.dk": [4291], "bandito.me": [2053], "www.fasterbadger.com": [5800], "cr3.co": [2053], "piratebays.co.uk": [21711], "plentyofjobs.us": [2053], "ph-ilo.com": [2053], "cme.wustl.edu": [18290], "exgf.teenbff.com": [13267], "m-ic.in": [2053], "mla-bs.co": [2053], "static.fsf.org": [5713], "shop.overclockers.at": [12369], "go.mdscomp.net": [2053], "alaraby.co.uk": [19337], "spade.twitch.tv": [17164], "curiouscat.me": [4002], "c-sky.org": [2053], "chn.wf": [2053], "astro.uchicago.edu": [17531], "www.sk-nic.sk": [15140], "ekol.me": [2053], "www.bargains4business.com.au": [1717], "zutphen.nl": [11324], "*.patientslikeme.com": [12666], "a48.in": [2053], "go.pyarb.com": [2053], "*.theory.org": [16613], "reg.tmall.com": [21748], "newsact.net": [2053], "*.spectator.org": [15494], "forum.bits.media": [2066], "my.dealzod.com": [2053], "us.gizmodo.com": [6817], "piratepad.ca": [12922], "wikileaksparty.org.au": [18594], "imgfrg.co": [2053], "icons.wxug.com": [18329], "cheapandspeedytrafficschool.com": [19690], "zalando.pl": [19094], "vip.asus.com": [397], "www.mos.org": [10902], "kurgan.beeline.ru": [1801], "*.kobobooks.fr": [9101], "sacredcrystalsingingbowls.net": [14456], "s2.uicdn.net": [17236], "ahdhckr.co": [2053], "www.vmd.defra.gov.uk": [4391], "www.gsi.de": [6506], "m.highways.gov.uk": [20340], "nintendo.de": [11612], "h-mn.co": [2053], "techhub.osu.edu": [11959], "maps.cheshire.gov.uk": [3122], "rpos.link": [2053], "acuna.pe": [2053], "tpd.sk": [16896], "leap.se": [9221], "*.tuts4you.com": [17130], "web-registry.com": [18342], "nostarch.com": [11639], "www.ifightsurveillance.org": [8033], "bsan.co": [2053], "forums.fanboy.co.nz": [5764], "peachosi.com": [21100], "www.jlos.go.ug": [17397], "c.t4ft.de": [5985], "1.zasaratov.com": [2053], "a.mcindoe.info": [2053], "link.kinglau.co": [2053], "tel3.co": [2053], "www.moveon.org": [10819], "www.globalnetwork.pl": [6849], "laiyang.meituan.com": [10405], "trbx.me": [2053], "deste.pt": [2053], "nbskle.pl": [2053], "www.theeventdiva.com": [16454], "tripodo.de": [17023], "www.videa.hu": [17976], "www.internetbrands.com": [8428], "bangkok.usembassy.gov": [21879], "fox.tv": [2053], "www.concourse.ci": [19770], "*.foolcdn.com": [10801], "packet.net": [12520], "tvt.ag": [2053], "davide.photo": [2053], "users.dal.net": [4077], "file.glinso.net": [2053], "mdk.anadolu.edu.tr": [1025], "list.jd.com": [8570], "lccsecure.lancashire.gov.uk": [20633], "snkrs.dk": [2053], "kotex.com": [9144], "commerce.reuters.com": [14069], "autodiscover.audit.wales": [19453], "fs10.formsite.com": [20148], "wnm.al": [2053], "emis.sr": [2053], "i1.zst.com.br": [19233], "towerhamlets.greenparty.org.uk": [7052], "r.chevia.com": [2053], "a5.websitealive.com": [18445], "www.xparkmedia.com": [18885], "docracy.com": [4708], "*.c.yimg.jp": [18992], "www.orionhub.org": [12310], "www.vidarholen.net": [17972], "anskaffelser.no": [19394], "epay.uio.no": [17615], "*.a4uexpo.com": [262], "shop.flixbus.com": [6047], "reviews.eastbay.com": [5116], "www.billund.dk": [1938], "lizardtech.com": [2991], "renshou.jd.com": [8571], "jira.actis.ru": [19272], "installgentoo.net": [19006], "badma.ch": [2053], "octv.me": [2053], "*.cybertip.ca": [4051], "edfa3.ly": [2053], "*.linuxaudio.org": [9588], "hdfury.com": [7182], "mfi.re": [9905], "bancastato.ch": [20574], "www.actionautowreckers.com": [530], "www.portsmouth.gov.uk": [21175], "fadra.me": [2053], "dbh.li": [2053], "muscdn.us": [2053], "easylist-downloads.adblockplus.org": [601], "gulesider.no": [7145], "www.lille.indymedia.org": [8234], "m.wallstreetcn.com": [18258], "demo.virtkick.com": [18036], "*.coe.int": [3769], "snpy.tv": [2053], "www.wyenet.net": [18787], "platem.ag": [2053], "shirts.ec": [2053], "ivfba.by": [2053], "ccq.ec": [2053], "myweddings.ca": [2053], "info.anz.com": [355], "sudo.ubuntu-tr.net": [17381], "themuse.jezebel.com": [8713], "chatserver.comm100.com": [3535], "cipherli.st": [3211], "2cb.li": [2053], "vhq.me": [2053], "onamae-server.com": [12019], "kckk.co": [2053], "jeeptopsdirect.com": [8693], "cdn.reporo.net": [21292], "tedxa.ms": [2053], "upc.es": [13120], "www.freethoughtblogs.com": [6305], "z.jdeere12.com": [2053], "www.euobserver.com": [5081], "files.pp-international.net": [21184], "lourdas.name": [9787], "nathnac.org": [11276], "b.rad.msn.com": [9961], "homequote.insurance.hsbc.co.uk": [20375], "usmo.org": [2053], "truckt.re": [2053], "shop.why-opencomputing.com": [22021], "loopsy.co": [2053], "stock.walmart.com": [18260], "t.eml.office.co.uk": [11941], "fribid.se": [6327], "bdd.yt": [2053], "qinzhou.meituan.com": [10405], "gfts.co": [2053], "www.vedomosti.ru": [21900], "truecommerce.com": [21800], "aastatus.net": [437], "arxiv.org": [1188], "secure.techrepublic.com": [16271], "baja.osu.edu": [11959], "s5.boxcdn.net": [2306], "artnt.cm": [2053], "www.real-debrid.com": [13854], "yongkang.meituan.com": [10405], "trtsgtx.com": [2053], "acronis.com": [523], "forum.clara.io": [3269], "intuitpayments.com": [8451], "www.wanikani.com": [18270], "hootsuite.com": [7633], "magic.fr": [10021], "seniorl.st": [2053], "piter.tv": [21138], "redpump.me": [2053], "uhg.hr": [2053], "news.bbcimg.co.uk": [19502], "www.uden.nl": [11324], "www.asustor.com": [19445], "fpaly.com": [2053], "r.gamers411.net": [2053], "affiliate-program.amazon.co.uk": [19365], "rigzone.com": [14121], "freewheel.tv": [6253], "s.sociopal.com": [2053], "7ny.tv": [2053], "crftd.md": [2053], "by.rutracker.org": [21346], "go.husk.co": [2053], "shibly.me": [2053], "seliga.ai": [2053], "u.creodelic.com": [2053], "www.spaceindustrynews.com": [15459], "blogs.rsdn.org": [21334], "www.holtstrom.com": [7604], "home.wistia.com": [18678], "ameli.us": [2053], "loveeyes.us": [2053], "blackm.ac": [2053], "*.wyndhamvrap.com": [18790], "internationalpayments.co.uk": [8415], "s.joey.ninja": [2053], "topcodr.co": [2053], "mirag.us": [2053], "davidsontutoring.com": [4307, 4308], "ameliaandersdotter.eu": [964], "masterspaswi.com": [10220], "www.schijndel.nl": [11324], "bigbrotherawards.de": [1905], "www.cdkeys.com": [2976], "onlime.dengisend.ru": [4440], "singularityhub.com": [15096], "desinter.es": [2053], "*.avinc.com": [1488], "timeshighereducation.com": [16735], "community.riverbed.com": [14140], "fam.ag": [2053], "cox.ciqueto.com": [2053], "cottageselection.co.uk": [18790], "s.nowlan.me": [2053], "lfwy.co": [2053], "*.contextly.com": [3681], "populartv.96.lt": [2053], "owl.cm": [2053], "www.linuxcounter.net": [9552], "maplight.org": [10133], "pt.support.tomtom.com": [16812], "maemo.org": [10011], "msnbc.com": [9962], "www.trueachievements.com": [17047], "go.zmph.it": [2053], "*.thegazette.co.uk": [16546], "shc.is": [2053], "devstructure.com": [4498], "m0ve.co": [2053], "notalwaysrelated.com": [20931], "renew.norton.com": [11703], "rocketnet.jp": [14171], "imgcache.qq.com": [13514], "cdn2.onlinelaw.wustl.edu": [18290], "shop.wwf.ch": [22060], "wisoreisen.zdf.de": [22127], "teamotg.us": [2053], "ryan.to": [2053], "sandeej.us": [2053], "pic.fritz.im": [2053], "kesslercn.tk": [2053], "limango.de": [9515], "l.d.efinima.com": [2053], "nulled.cc": [20960], "i4.rgstatic.net": [13655], "svn.gd": [2053], "cdn01.boxcdn.net": [2306], "nstyl.es": [2053], "avia.yandex.by": [18953], "popcorntime.io": [13142], "www.accesslabs.org": [484], "ligm.in": [2053], "www.rallydev.com": [13772], "*.gnomefiles.org": [21007], "pptl.me": [2053], "sydneyaquarium.com.au": [15963], "assets.ssusa.org": [21556], "szybki.link": [2053], "littler.com": [9634], "unm.starfishsolutions.com": [21565], "ntnu.edu": [11152], "www.justice.sk": [15217], "tutorials.getclouder.com": [6691], "ctplt.us": [2053], "trent.im": [2053], "www.imwukong.com": [20447], "hct.me": [2053], "iyouport.com": [8030], "l.caspervox.com": [2053], "chat.koumbit.net": [9148], "safari.tampermonkey.net": [16193], "alum.mit.edu": [9916], "istar-chla.usc.edu": [17564], "eat.sr": [2053], "hydrogen.energy.gov": [5355], "astr0.co": [2053], "shibboleth2.uchicago.edu": [17532], "couragefound.org": [3782], "*.penninecare.nhs.uk": [11102], "dujia.jd.com": [8571], "jnssn.us": [2053], "lnrd.us": [2053], "jmug.gs": [2053], "dev.syncplicity.com": [15984], "paris-web.fr": [21072], "smiley.37signals.com": [143], "dev.pokd.it": [2053], "syndetics.com": [15987], "uv.uio.no": [17615], "consult.kent.gov.uk": [9005], "g04.s.alicdn.com": [846], "pote.gq": [2053], "gigaserver.cz": [6774], "portal.roadworks.org": [21318], "www.bostonglobemedia.com": [2288], "crimecommission.gov.au": [1423], "librarians.aps.org": [969], "www.tradeleaks.com": [16910], "*.kpn.com": [8897], "dagensgetaway.dk": [4186], "talemetrytoday.com": [16173], "2-url.mobi": [2053], "fukang.meituan.com": [10405], "*.e-prawnik.pl": [4957], "hnr.gd": [2053], "gettyimages.de": [6741], "careers.autotrader.co.uk": [19458], "armfp.com": [2053], "blogburst.com": [4421], "www.quadrant.org.au": [13552], "lv.boardgamearena.com": [2219], "650h.rs": [2053], "gettyimages.dk": [6741], "tango.me": [16200], "www.tpb.review": [21771], "nisym.pl": [2053], "sbc.empireblue.com": [20033], "shot.ht": [2053], "kor.pw": [2053], "ech.link": [2053], "communicatoremail.com": [3565], "joindiaspora.com": [4529], "www.rspamd.com": [14240], "ian.so": [2053], "www.braintreepaymentsolutions.com": [2327], "nacs.be": [2053], "drupal.soundonsound.com": [15408], "hpfy.co": [2053], "learningcentral.cardiff.ac.uk": [2895], "www.landalskilife.fr": [18789], "www.canon-europe.com": [2868], "partners.smartname.com": [11209], "geografia.uniovi.es": [17479], "*.vistech.net": [18074], "burg.cx": [2053], "webcitz.com": [18354], "bradamaxi.com": [2053], "db-ip.com": [4083], "tdc.tdconline.se": [16054], "piratebay.usbypass.top": [21771], "*.standup2cancer.ca": [15629], "*.roloil.com": [14194], "m.smocca.jp": [2053], "go.ing.im": [2053], "avia.sakh.com": [21360], "media.newjobs.com": [11510], "cogh.land": [2053], "secure.research.illinois.edu": [17544], "flwctrl.com": [2053], "s.ntv.io": [11756], "campaigner.com": [2837], "m.indablabla.nl": [2053], "www.flixster.com": [6049], "wksm.at": [2053], "social.agima.ru": [19324], "zszs.us": [2053], "lmada.me": [2053], "files.sans.org": [14310], "central.bitdefender.com": [2038], "swkr.co": [2053], "www.thehut.com": [16489], "m.udn.com.tw": [17224], "srvrsi.de": [2053], "stories.doublerobotics.com": [4806], "kyrgyz.bishkek.usembassy.gov": [21879], "mobile-services.williams.edu": [18616], "tornadoweb.org": [16845], "nrievents.org": [2053], "forums.d2jsp.org": [4071], "www.betclair.com": [7879], "kupschke.net": [20623], "behemoth.nlnetlabs.nl": [11129], "www.security-portal.cz": [14763], "www.ricoh.sg": [14112], "cyphdbyhiddenbhs.onion": [4058], "unseen.is": [17656], "conference2006.kde.org": [8871], "community.sharefilesupport.com": [14909], "*.kobobooks.com": [9101], "n.sbs.co.kr": [2053], "on.fehlkauf.net": [2053], "imaging.hdfcbank.com": [7389], "*.justapple.com": [8848], "dilgnt.gr": [2053], "bl.pcma.org": [2053], "www.cryptocoding.net": [19825], "www.duck.co": [4888], "www.valuehost.ru": [17836], "www.websecweekly.org": [18441], "help.tvsupport.net": [17139], "*.wizard.ca": [18686], "www.handtekening.nl": [7323], "kulp.me": [2053], "beetailer.com": [1804], "rafaelsoar.es": [2053], "nbcnews.com": [11063], "yakala.co": [18945], "kronix.xeneris.net": [18861], "velez.link": [2053], "sysdata.cl.cam.ac.uk": [17529], "forum.girlsoutwest.com": [6787, 20241], "*.hometheaterreview.com": [7619], "www.maillift.com": [10044], "www.policia.es": [13089], "exaccess.ru": [13005], "blog.demisto.com": [4430], "trackingtool.ncwit.org": [11078], "r4lly.me": [2053], "pay4bugs.com": [12677], "r.kryo.pro": [2053], "status.io": [21569], "dali.meituan.com": [10405], "m.habrahabr.ru": [7262], "ny.cx": [2053], "mediara.in": [2053], "moevideo.net": [10717], "choices-or.truste.com": [16111], "pearlsilk.link": [2053], "cloudsso.cisco.com": [3221], "lists.sf.net": [15423], "www.set.io": [14876], "licensing.scarborough.gov.uk": [21376], "dxtorrent.com": [4914], "community.mobify.com": [10681], "www.era.int": [5047], "gogobot.com": [6934], "gchem.us": [2053], "baremet.al": [2053], "go.mmt.digital": [2053], "sustainability.publish.uic.edu": [17517], "www.quantummansite.com": [13572], "blgr.us.to": [2053], "red.sr": [2053], "images.sf.net": [15423], "e56.taobao.com": [16206], "i.rryl.me": [2053], "jwge.org": [2053], "*.theeca.com": [5397], "nelincs-consult.objective.co.uk": [20979], "mototradeup.com": [10804], "fuerzapopular.pe": [6361], "americanexpress.com": [972], "infa.media": [2053], "theb.me": [2053], "vzd.co": [2053], "www.kraxel.org": [9158], "www.tilburguniversity.edu": [16716], "cnst.ws": [2053], "whistle.fish": [2053], "xingyang.meituan.com": [10405], "www.deciduouspress.com.au": [4360], "daily.co.uk": [4190], "cylance.rocks": [2053], "job.alipay.com": [857], "congstar.de": [3642], "devsmart.jd.com": [8571], "mail.sohu.net": [15353], "www.nvidia.eu": [11173], "static.symplicity.com": [15975], "reelvidz.com": [13944], "www.gmoserver.jp": [6464], "bitquick.me": [1991], "dongdong.jd.com": [8571], "geraldinas.com": [2053], "nl.godaddy.com": [6898], "nebah.at": [2053], "ondemand.cisco.com": [3221], "ek8whxe.cloudimg.io": [19738], "thinkpad.jd.com": [8571], "contrast.ly": [2053], "petrogen.com": [12812], "shona.li": [2053], "runscope.com": [14275], "h2.ft.com": [5941], "hi.philpy.com": [2053], "istrat.gy": [2053], "tprp.eu": [2053], "hydrus-prod.stanford.edu": [15635], "wyyx.hao123.com": [20312], "coz.ms": [2053], "bugzilla.netfilter.org": [11417], "active-srv02.de": [535], "static.katsomo.fi": [20579], "*.googlesyndication.com": [6972], "fegp.unizar.es": [17643], "cultureatkin.gs": [2053], "www.brreisen.de": [1581], "gloucestershire.gov.uk": [6872], "depaul.worldcat.org": [18748], "i.blip.tv": [2133], "marylhur.st": [2053], "jimc.me": [2053], "xumaa.com": [18908], "lists.osgeo.org": [11868], "livingforsport.skysports.com": [15177], "www.formsanity.com": [6160], "almnt.co": [2053], "a4.lscdn.net": [9256], "mc.vanderbilt.edu": [17850], "secure.wildlifesydney.com.au": [18608], "static.avast.com": [1484], "bitinstant.com": [1983], "www.botbot.me": [2292], "a.qlou.be": [2053], "ut08.xhcdn.com": [18815], "volunteermatters.com": [18131], "falconjet.com": [4244], "parksouth.co": [2053], "gt5-jres2015.univ-montp3.fr": [17509], "support.riverbed.com": [14140], "bitaddress.org": [2003], "s.dtsn.me": [2053], "webmail.dkit.ie": [4114], "i8.3conline.com": [157], "info.kn007.net": [9089], "zenmate.in": [19133], "cf8.100r.org": [12], "nramemberservices.org": [20949], "gbln.co": [2053], "piwik.companieshouse.gov.uk": [3571], "amoena.us": [1017], "computing-images.web.cern.ch": [2632], "www.thirddoormedia.com": [16634], "cdn.bunadformenn.info": [2479], "webftp.vas-hosting.cz": [21896], "4.mrwrk.nl": [2053], "epi.ph": [2053], "tvnutt.com": [16144], "files.goenergetix.com": [5352], "s.jonasn.nu": [2053], "saforms.stanford.edu": [15635], "s2c.aol.com": [361], "ibiy.net": [2053], "url.vorlif.org": [2053], "modlife.com": [10713], "smpth.co": [2053], "www.uchastings.edu": [17218], "www.paymentwall.com": [12690], "plctwittcr.com": [2053], "raychem.hk": [2053], "translations.cacert.org": [2578], "www.solidalert.com": [15367], "iamjenn.net": [2053], "x.wmay.org": [2053], "bugs.gnupg.org": [6887], "es.getsatisfaction.com": [6738], "sam.sso.bluewin.ch": [2210], "simcenter.osu.edu": [11959], "s81.cnzz.com": [3391], "flr.pt": [2053], "ug.usembassy.gov": [21879], "hopest.re": [2053], "omd.info": [2053], "*.noc.ac.uk": [17562], "www.showcase.ca": [14986], "m.uexternado.co": [2053], "www.norwegian.com": [11706], "www.staffordshireandstokeontrent.nhs.uk": [11102], "prec.is": [2053], "help.dreamhost.com": [4844], "www.speedppc.com": [15503], "tendo.cm": [2053], "kck.st": [2053], "osiris.statushub.io": [15692], "0click.cf": [2053], "cbe.engineering.osu.edu": [11959], "www.gogotraining.com": [6932], "gsu.edu": [6508, 6509], "a0.webproxy.nic.tel": [16360], "drawingbynumbers.org": [4841], "d.adrolays.de": [665], "staging.muttscomics.com": [10919], "click-west.acuityplatform.com": [544], "toptip.ch": [3712], "bolla.me": [2053], "small.gg": [2053], "hertz247.fr": [7484], "static.telus.com": [16364], "sec-i0.web.de": [18347], "owenservices.com": [12382], "titanshare.to": [16775], "dropboxforum.com": [4865], "www.homebuzz.co.uk": [7620], "i2.zst.com.br": [19233], "mshp.it": [2053], "npor1.nl": [2053], "znpt.co": [2053], "ct.tms.pl": [21750], "giving.cornell.edu": [3744], "edwardtufte.com": [5204], "press.internet.org": [8426], "sport.unian.net": [21851], "www.cjs.leeds.ac.uk": [17604], "*.itex.com": [8538], "bandisoft.com": [1685], "acpica.org": [302], "*.trulia-cdn.com": [17052], "2kgam.es": [2053], "metalab.at": [10484], "publicaccess.canterbury.gov.uk": [2870], "l.u4ic.co": [2053], "www.bloomberg.com": [2172], "pmhawk.com": [2053], "sha.ne": [2053], "tagilka.ru": [21651], "weteach.me": [2053], "pod.geraspora.de": [6674], "www.clickerheroes.com": [3318], "gofz.co": [2053], "www.powerlineman.com": [13228], "q.andersons.com": [2053], "icnaweb.com": [2053], "eventsjobsuk.g4s.com": [20194], "test.w3.org": [18184], "l.navin.com.np": [2053], "s.sieuthivp.com": [2053], "*.ehowcdn.com": [19983], "frs.monotypeimaging.com": [10750], "www.fuzeqna.com": [1447], "www.databricks.com": [4275], "www.travelrepublic.com": [16970], "careers.americanexpress.com": [972], "casey.mobi": [2053], "one2buy.com": [12028], "charlie.bz": [3072], "n-somerset.gov.uk": [11046], "protct.me": [2053], "har.lt": [2053], "qblx.co": [2053], "www.btcjam.com": [1601], "cgc.gov.au": [3558], "scrninv.com": [2053], "techfet.ch": [2053], "konachan.com": [9123], "rr.mu": [2053], "structure.ncbi.nlm.nih.gov": [11241], "go.xodc.us": [2053], "tcgroup.me": [2053], "mawhiba.sa": [2053], "www.sv.no": [14437], "democracy.spelthorne.gov.uk": [21533], "kwine.us": [2053], "www.zaehlwerk.net": [19089], "cwtr.org": [2053], "ftb.ca.gov": [2801], "*.pszaf.hu": [12505], "consult.wealden.gov.uk": [21987], "*.pocketcasts.com": [13059], "m3.hitravel.xyz": [2053], "dotbo.co": [2053], "api.continuousphp.com": [19780], "skycache.pureftpd.org": [13466], "partner-myefc.efinancialcareers.com": [5010], "blinddate.meetme.com": [10378], "banki.ru": [1692], "count5.pconline.com.cn": [12437], "blog.udemy.com": [17393], "nppc.us": [2053], "www.bilddb.gta.arch.ethz.ch": [5074], "on.wfaa.com": [2053], "go.sqish.it": [2053], "it.desy.de": [4479], "uxt.ucsd.edu": [17216], "easywallet.org": [5138], "www-robotics.jpl.nasa.gov": [11058], "recruiting.nra.org": [20942], "mikeash.com": [10569], "domainfest.com": [12374], "b.rolli.li": [2053], "www.hertz.com.jo": [7492], "locdeva.hertz.com": [7511], "widget.shopstyle.fr": [14964], "plantronics.com": [12999], "mth.link": [2053], "volume.itunes.apple.com": [1160], "mjkk.co": [2053], "www.levny-hosting.cz": [9433], "openload.co": [21017], "khiri.co": [2053], "www.studivz.net": [15794], "support.youmail.com": [19013], "smartrecruiters.com": [15239], "www.afcea.org": [319], "apps.law.georgetown.edu": [6668], "shop.sp.nl": [14389], "lokus.no": [9728], "sitizens.com": [15133], "assets.blog.start.me": [15658], "tyva.beeline.ru": [1801], "twitchinstalls.com": [17165], "gpi.bz": [2053], "www.nesl.edu": [11090], "bahnshop.de": [1660], "wtim.es": [2053], "freejeremy.net": [6259], "f.5.ua": [2053], "emaileri.net": [5294], "www.bisnow.com": [1972], "jmall.360buy.com": [135], "apps-cms.jp": [19405], "swertr.es": [2053], "fflix.co": [2053], "snarglr.net": [2053], "london-squat-project.squat.net": [21549], "www.shrinktheweb.com": [14991], "tracking-stage.websitealive.com": [18445], "www.guifi.net": [7138], "my.blood.co.uk": [2168], "*.johnsonking.com": [8761], "mydrive.tomtom.com": [16812], "www.just-eat.com": [20565], "irc.gitter.im": [6806], "sitegeist.sunlightfoundation.com": [15857], "labb.nl": [2053], "ccr.so": [2053], "swpr.co": [2053], "s.imgrap.com": [8146], "www.medstop.se": [10370], "sso-cas.rmit.edu.au": [13670], "www.onemancan.org": [12049], "daddys.link": [2053], "www.blamestella.com": [2110], "muj.cesky-hosting.cz": [19680], "mdrn.md": [2053], "assetstore.unity3d.com": [17506], "blog.cloudfoundry.org": [3358], "support.office.com": [11942], "*.corp.google.com": [6962], "support.dreambox.com": [19959], "amzin.pw": [2053], "www.envoymediagroup.com": [5414], "11spotfree.be": [2053], "enro.dict.cc": [4536], "infozona.co": [2053], "expomobilehomes.com": [5740], "offers4u.com": [2053], "go.aurora.co": [2053], "balinesas.net": [2053], "euge.in": [2053], "eas.elephorm.com": [20025], "my.mbnews.co.za": [2053], "*.ibsrv.net": [8428], "www.geant.net": [6430], "agav.co": [2053], "brkl.in": [2053], "crn.tw": [2053], "lns.gt": [2053], "www.mattermap.nl": [20760], "*.avisservices.com": [1492], "4rum.eu": [2053], "advq.yandex.com": [18956], "derochier.us": [2053], "www.klick2contact.com": [20608], "esad.ulaval.ca": [17515], "dfwsem.co": [2053], "mfilms.us": [2053], "hkuc.co": [2053], "www.fuelcdn.com": [6360], "www.privacynotprism.org.uk": [13315], "s3.freepress.net": [6265], "gdata.at": [6410], "clutchprep.co": [2053], "secure.gog.com": [6482], "lgct.nl": [2053], "arsca.linneanet.fi": [9546], "www.euronuclear.org": [5529], "ysz.ae": [2053], "*.akamai.steamstatic.com": [15706], "in.godaddy.com": [6898], "munchies.vice.com": [17959], "www.macular.org": [10000], "www.opendesktop.org": [21006], "scrambl3.com": [14645], "y-me.us": [2053], "ericw.us": [5446], "kp.meituan.com": [10405], "bzp.lt": [2053], "helgi.me": [2053], "www.blockitpocket.com": [2149], "blog.scienceathome.org": [14623], "pregamestraining.tokyo2020.jp": [21754], "acxiom-online.com": [547], "commercialappeal.com": [5088], "dfolk.es": [2053], "i.arora.pl": [2053], "voxi.st": [2053], "a.bitlz.co": [2053], "hideme.ru": [7532], "dt.developer.here.com": [7465], "kiss.tdc.no": [16052], "prg.computerandvideogames.com": [6397], "lps.leadpages.net": [9351], "www.orangechickenlove.com": [12560], "radar.osu.edu": [11959], "ambitiousaboutautism.org.uk": [19376], "www.lenr-forum.com": [20660], "in.ckbe.at": [2053], "suche.web.de": [18347], "holarse-linuxgaming.de": [7590], "image4.putlocker.is": [21227], "*.smartone.de": [21477], "www.r-project.org": [13621], "uni.web.id": [2053], "slpnt.co": [2053], "emory.edu": [5314], "phpartners.org": [12456], "www.engineering.wustl.edu": [18290], "shop.sky.com": [15170], "suwebmasters.stanford.edu": [15635], "day.org.ru": [19864], "mediapart.fr": [10348], "customersupport.symantec.com": [15969], "kjoo.io": [2053], "archives-ouvertes.fr": [1207], "jmp.imami.net": [2053], "www.uen.org": [17744], "wupd.wustl.edu": [18290], "baidu.com": [1661], "l.cswp.co": [2053], "tigger.uic.edu": [17517], "blckbx.co": [2053], "efilms.nyc": [2053], "liquid.pirateparty.gr": [21135], "medstop.se": [10370], "thsea.org": [2053], "dayz.com": [4314], "cdn.scribblelive.com": [14654], "link.o79.lv": [2053], "www.ualinux.com": [21833], "mattermark.com": [20761], "*.tfag.de": [6091], "resources.lloydsbank.com": [9686], "web-app.usc.edu": [17564], "geekz.444.hu": [172], "blackbx.in": [2053], "forum-en.msi.com": [9957], "a.asset.soup.io": [15415], "a.tipspring.com": [2053], "www.frieslandcampina.nl": [2841], "www.three.ne.jp": [16069], "ma.twimg.com": [17153], "av-comparatives.org": [410], "cur.im": [2053], "servage.*": [14843], "samples.ffmpeg.org": [5678], "www.elitekeyboards.com": [5269], "submit.pandora.com": [12564], "www.forsvarsforbundet.se": [6171], "lists.sabayon.org": [14450], "www.fb.com": [5814], "goapetri.be": [2053], "ilm4.us": [2053], "binaryapi.ap.org": [1326], "mpg.de": [9945], "hwoodpost.com": [2053], "dicai.re": [2053], "platform.bitly.com": [2051], "gocast.me": [2053], "polldaddy.com": [13106], "assets2.vice.com": [17959], "shop.southbankcentre.co.uk": [15441], "ind.pn": [2053], "sl.kvtm.vn": [2053], "monitor.ccccloud.com": [2597], "www.samsungknox.com": [14507], "oglethor.pe": [2053], "www.wholeearth.com": [18560], "www.asianfanfics.com": [1294], "p.atrac613.com": [2053], "tmtyq.meituan.com": [10405], "jasshar.es": [2053], "ithacajr.nl": [2053], "ntmx.de": [11753], "theferf.com": [2053], "chengdexian.meituan.com": [10405], "www.rootless.org": [21327], "www.straply.com": [15761], "s1.percona.com": [12769], "ximm.io": [2053], "biz.alibaba.com": [850], "museum.stanford.edu": [15635], "mreb.es": [2053], "www.duo.com": [4900], "repo1.maven.org": [10253], "mypea.ch": [2053], "expert.bger.ch": [19525], "err.ee": [5474], "localbitcoins.com": [9701], "*.cansecwest.com": [2848], "www.pipni.cz": [12460], "www.interference.cc": [8396], "www.jewelosco.com": [8711], "ba.yandex.kz": [18957], "content.dyson.co.uk": [4935], "cdn.exoticads.com": [5610], "zlien.us": [2053], "surveydaddy.com": [15915], "swe.osu.edu": [11959], "ningde.jd.com": [8571], "kenexa.jobs": [9001], "www.orangegeek.com": [12292], "bilddb.gta.arch.ethz.ch": [5074], "x.getivi.com": [2053], "limelight.assets.stitcher.com": [15732], "brsu.co": [2053], "www.tokyo-tosho.net": [16809], "www3.student.liu.se": [9238], "ad.mail.ru": [10040], "hrvth.com": [2053], "www.dakko.us": [4203], "inti.ms": [2053], "go.cf.ac.uk": [2053], "info.puppetlabs.com": [13460], "*.eetnordic.com": [5004], "muk.xyz": [2053], "sha2i3.com": [2053], "game.yandex.com.tr": [18954], "nkl.fi": [11203], "link.belblog.eu": [2053], "gi-japon.unizar.es": [17643], "u.dgabc.com.br": [2053], "www.get-digital.it": [6684], "getharvest.com": [6699], "tahoepo.st": [2053], "011.vuejs.org": [18165], "ventoso.org": [17901], "nathairrul.es": [2053], "www.123bay.space": [21709], "www1.fir.im": [20123], "nl.norton.com": [11703], "www.huzs.net": [7781], "lawbc.co": [2053], "xtrav.me": [2053], "content9.flixster.com": [6049], "p.hitravel.xyz": [2053], "justseed.it": [20567], "atgreen.co": [2053], "switchoff.nus.org.uk": [20965], "menf.it": [2053], "in.trac.to": [2053], "whelp.us": [2053], "jeffnabers.com": [8696], "mirg.engineering.osu.edu": [11959], "brando.nyc": [2053], "tremix.us": [2053], "www.gazeta.uz": [20212], "tv.bt.com": [1593], "axisbank.com": [1514], "security.debian.org": [4353], "pizzahut.co.uk": [12968], "gutenberg.org": [7158], "www.allmychanges.com": [873], "im2.smartadserver.com": [15228], "wwwmag.fr": [2053], "scmagazine.com": [21384], "mjw.ms": [2053], "accountcenter.mediatemple.net": [10331], "xato.net": [18845], "*.khoc.co": [8876], "ixquick.com": [8553], "ncric.org": [11074], "help.esellerate.net": [5462], "wet.pt": [2053], "socialcodedev.com": [15311], "nottinghamshirealert.co.uk": [20933], "yakzytees.com": [2053], "cas.thm.de": [16066], "ws.amazon.fr": [19371], "www.etherpad.fr": [20062], "asset-a.soupcdn.com": [15416], "tag.researchnow.com": [14032], "moneygr.am": [2053], "lrt.io": [2053], "b.falcon31.net": [2053], "svn.php.net": [12453], "iamkj.us": [2053], "my.wondershare.com": [22043], "amsk.in": [2053], "usurpa.squat.net": [21549], "sdl.town": [2053], "scordit.com": [2345], "gimpphoto.tuxfamily.org": [21820], "www.dragndropbuilder.com": [4831], "*.marionstar.com": [10165], "team-share.net": [16252], "inahat.co": [2053], "photomaniafx.me": [2053], "hllywd.co": [2053], "www.sixxs.net": [15137], "vtv.fi": [17830], "u.jonatan.cl": [2053], "*.wwte10.com": [18232], "www.osutravel.osu.edu": [11959], "p16.qhimg.com": [13531], "mjo60.com": [2053], "www.jackandjillraffle.org": [8628], "www.atech.io": [406], "foodsporn.com": [2053], "mail.sohu.com": [15352], "webnms.com": [18374], "pgm.buzz": [2053], "baichuan.taobao.com": [16206], "l.thehawkins.us": [2053], "npsus.xyz": [2053], "*.secunia.com": [14719], "filebox.tv": [5903], "homesear.ch": [2053], "c3.rgstatic.net": [13655], "s.shop-land.ir": [2053], "arhivach.org": [19414], "ihg.link": [2053], "mosta.sh": [2053], "www.tmobile.com": [16089], "zentralbahn.ch": [22131], "cimbbank.com.my": [2663], "*.mango.com": [10114], "events.nibusinessinfo.co.uk": [20908], "nxg.li": [2053], "popgoestheweek.com": [13140], "mwave.com.au": [10925], "s.sintax.me": [2053], "tru.vc": [2053], "izk.co": [2053], "forum.whmcs.com": [18201], "www.womensaid.ie": [18710], "spongecell.com": [21538], "amstud.io": [2053], "robb.news": [2053], "go.pehrlich.com": [2053], "jobs.lincolnshire.gov.uk": [9525], "empuss.com": [2053], "www.powerdns.net": [13217], "1.seth.org": [2053], "jacobsstudent.ucsd.edu": [17216], "ridecompare.com": [21308], "*.moneyadviceservice.org.uk": [10736], "mltz.ml": [2053], "cdn.dynamicyield.com": [4926], "securityweek.com": [14768], "www.alertonline.nl": [831], "www.berniesanders.com": [1848], "olioboard.com": [11980], "odd.dog": [2053], "draw.sx": [2053], "click.kin2.net": [2053], "www.startech.com": [15647], "ownthatsh.it": [2053], "nanjing.jhu.edu": [16562], "parra.club": [2053], "visg.co": [2053], "qian.qq.com": [13514], "slckr.co": [2053], "misco.co.uk": [10642], "j1visa.state.gov": [17345], "*.ada.edu.au": [1424], "www.zylon.net": [19248, 19249], "*.francescopalazzo.com": [20157], "nso.wustl.edu": [18290], "shortn.cf": [2053], "xingcheng.meituan.com": [10405], "bertrams.com": [1873], "tppinfo.org": [18730], "mentalhealth.asn.au": [10437], "*.swissreg.ch": [15949], "www.seedboxes.cc": [14793], "yooco.de": [18998], "andyr.co": [2053], "depositfiles.com": [4454], "elhomb.re": [2053], "octo.ly": [2053], "www.tumutanzi.com": [17103], "vtnews.vt.edu": [18031], "kororaproject.org": [9140], "mail.unionpay.com": [17478], "downloads.mysql.com": [10970], "au.effectivemeasure.net": [5208], "twibright.com": [17151], "dripthat.co": [2053], "nzmacc.as": [2053], "www.fhserve.com": [5882], "report.nih.gov": [11115], "www.fybse.se": [5726], "ehcb.westminster.gov.uk": [18516], "www.gyft.com": [7166], "jh.meituan.com": [10405], "secure2.mastermindpro.com": [10222], "dee.uidaho.edu": [18730], "roi.ru": [13678], "www.ccs.com": [2609], "philosophersguild.com": [12836], "pic.news.mail.ru": [10040], "isger.link": [2053], "tcpalm.com": [16048], "my.ixwebhosting.com": [8027], "www.milwaukeemakerspace.org": [10589], "rxh.cc": [2053], "business.kaspersky.com": [8958], "www.tolvutaekni.is": [16811], "www.tg.ethz.ch": [5074], "fantastik.cf": [2053], "lite.apan.org": [369], "beta.nativo.net": [11281], "clrkwlmt.co.uk": [2053], "fw.cdn.technolutions.net": [16298], "www.visaforchina.org": [18057], "noelia.fi": [11650], "www.all-about-security.de": [883], "fw2.org": [2053], "jira.counterpath.com": [19799], "www.instapanel.com": [8338], "postimg.org": [13204], "questionnaires.ecn.ulaval.ca": [17515], "mpa.io": [2053], "www.agente.vodafone.pt": [18109], "pclsr.com": [2053], "my.goldsborowebdevelopment.com": [6944], "*.mycanvas.com": [10939], "davini.co": [2053], "www.domainpunch.com": [19941], "wldmtn.co": [2053], "conser.ro": [2053], "kndred.co": [2053], "swiftype.com": [15942], "scoo.ps": [2053], "g.alicdn.com": [846], "servery.cz": [21416], "www.english.ox.ac.uk": [17557], "www.massdrop.com": [10214], "auto.tsn.ua": [21805], "indybay.org": [8231], "s1.reutersmedia.net": [16649], "www.evidence.nhs.uk": [11102], "www.partnernaurovni.sk": [12628], "www.lede-project.org": [20652], "chscp.co": [2053], "cdn.rooof.com": [14198], "zarkzork.com": [19113], "info.profitbricks.com": [13357], "*.videogateway.tv": [3570], "www.heidelberg.de": [7422], "sustainability.williams.edu": [18616], "secure.dvdfab.cn": [4164], "nnu.worldcat.org": [18748], "c3tag.com": [2561], "oatv.me": [2053], "www.ihc.ru": [7883], "*.bodyworkmovementtherapies.com": [8791], "search.ch": [14684], "paw.princeton.edu": [13291], "services.amazon.co.jp": [19364], "blog.echoplex.us": [5148], "acolyt.es": [2053], "www.ica.se": [7826], "l.sevez.net": [2053], "cihan.com.tr": [19713], "rohu.co": [2053], "folssc.org": [2053], "www.tuftsgiving.org": [17094], "*.storesecured.com": [15749], "www.fcpablog.com": [5672], "medieval.history.ox.ac.uk": [12392], "dashboard.stripe.com": [15781], "psng.me": [2053], "ringsid.ec": [2053], "storystudio.oculusvr.com": [11921], "support.gogetssl.com": [6905], "www.dragonsreach.it": [4837], "*.tsl.state.tx.us": [16414], "www.iki.fi": [8110], "www.aaenhunze.nl": [11324], "www.krebsdaten.de": [9162], "intel.co.uk": [8355], "planetb.lu": [2053], "blaster.blastingnews.com": [2112], "gcai.co": [2053], "kogod.biz": [2053], "www.lihs.cuhk.edu.hk": [2747], "g.tm.tl": [2053], "veille.it": [2053], "akers.co": [2053], "yllwpg.es": [2053], "www.insurance.wustl.edu": [18290], "www.tronixcomputers.com": [17033], "youtube.com.om": [19016], "www.dr.dk": [4154], "images.excaliburfilms.com": [5591], "rstorage.filemobile.com": [5915], "cnes.fr": [2691], "uclefs.uk": [2053], "go.maestro.io": [2053], "evermeet.cx": [5554], "sam.im": [2053], "vivaldi.net": [18090], "amsterdam.nl": [11324], "firsat.link": [2053], "www.googleartproject.com": [6961], "www.thetvdb.com": [16620], "deadspin.com": [4329], "photos.nsrc.org": [11147], "roundcube.mayfirst.org": [10266], "bpd.to": [2053], "s93.cnzz.com": [3391], "hr.carnegiescience.edu": [2916], "www.mangolanguages.com": [10115], "dryn.cc": [2053], "ramm.st": [2053], "drerin.co": [2053], "www.pay.va.gov": [17297], "nndad.co": [2053], "forum.kernelnewbies.org": [20586], "cs.lpi.org": [9249], "shr.gd": [2053], "www.chaturbate.com": [3093], "nbkr.in": [2053], "www.connecttosupport.org": [19776], "www.courthousenews.com": [3790], "brainpickings.org": [2321], "annagr.co": [2053], "listart.mit.edu": [9916], "thepiratebay.xn--fiqs8s": [21709], "tre.mr": [2053], "peerlibrary.org": [12728], "hailo.io": [2053], "www.sci-hub.cc": [14615], "monitor.wpm.neustar.biz": [11472], "gctru.st": [2053], "tomy.to": [2053], "go.mfeiz.com": [2053], "www.humanresources.illinois.edu": [17544], "mobile.de": [20811], "opsy.st": [2053], "airshipventures.com": [791], "ontology.co": [12090], "www.excelsior-usa.com": [5592], "*.tor2web.fi": [16837], "lbbc.co": [2053], "i6.tietuku.com": [16704], "timroes.de": [16723], "www.pebblepad.co.uk": [12721], "go.webdg.net": [2053], "on.vbdance.com": [2053], "www.galaxus.ch": [6525], "file.answcdn.com": [1099], "ecospip.org": [2053], "londonmet.worldcat.org": [18748], "rtlyd.co": [2053], "www.genbank.ru": [6643], "twan.gy": [2053], "www.3suisses.de": [164], "san1.st": [2053], "sqs.meituan.com": [10405], "tcs.sec.samsung.net": [14510], "*.ndi.org": [11082], "ubounce.wpengine.netdna-cdn.com": [17436], "phin.ws": [2053], "ftl.secure-decoration.com": [21398], "sso.datapipe.com": [4290], "www.heifer.org": [7423], "d.eazycheat.com": [2053], "soe.link": [2053], "*.nsm.stat.no": [11228], "event.wifiwx.com": [18584], "acms.ucsd.edu": [17216], "www.f5networks.co.uk": [5658], "css-cdn.7digital.com": [223], "trov.es": [2053], "fr.canon.be": [2868], "pavlovskiy-posad.beeline.ru": [1801], "url.haehnel.at": [2053], "adcaccess.adur.gov.uk": [19308], "northstaffs.greenparty.org.uk": [7052], "little.my": [9636], "guildmc.com": [7140], "syscan.org": [16002], "www.eater.com": [5139], "www.centbrowser.com": [19667], "blog.woobox.com": [18718], "emptywheel.net": [5323], "www.flattr.net": [6024], "source.tizen.org": [16778], "wiroos.com": [22038], "idp.hs-esslingen.de": [7585], "contactus.aol.com": [361], "jds.tv": [2053], "feeblemind.tuxfamily.org": [21820], "marketplaceondemand.cisco.com": [3221], "pspmedia.ign.com": [7877], "estore.perle.com": [12789], "96ty.co.uk": [2053], "pages.github.com": [6801], "cdn.moneycorp.com": [20823], "www.hhh.umn.edu": [17554], "vk.com.cm": [2053], "wkimo.bi": [2053], "intern.arch.ethz.ch": [5074], "zzu.uy.to": [2053], "www.nikhef.nl": [11596], "dsi.link": [2053], "ne1.wpc.edgecastcdn.net": [5180], "www.videoplaza.tv": [17991], "onlinewellnessassociation.com": [12078], "www.ubuntu-art.org": [21006], "support.agima.ru": [19324], "tricoa.ch": [2053], "photonconsulting.com": [12859], "*.stumbleupon.com": [15799], "true.cr": [2053], "sellercentral.amazon.es": [19370], "vps1.roffey.org": [14178], "arena.razerzone.com": [13820], "www.goke.me": [6937], "www.premiumize.me": [13254], "ev.kde.org": [8871], "estoestele.tv": [2053], "thepiratebay.am": [21710], "www.dcboee.org": [4087], "c1ay.me": [2053], "csiac.org": [2728], "www.sferra.com": [14892], "i.andydelso.com": [2053], "fldzn.com": [2053], "masterh1.adriver.ru": [573], "etrn.ws": [2053], "segedi.net": [2053], "emi.wpengine.com": [5644], "www.hosting.com": [20363], "edtr.ie": [2053], "rootsa.net": [2053], "work.threema.ch": [16668], "blog.perfectaudience.com": [12771], "www.hamppu.net": [7314], "tdg.bz": [2053], "lyg.meituan.com": [10405], "sks-keyservers.net": [14365], "finance.opendata.ch": [21011], "et.libreoffice.org": [9471], "jaylen.co": [2053], "www.eveger.de": [5538], "enterbrain.co.jp": [20045], "b-ho.me": [2053], "colotti.me": [2053], "jerseyvillelibrary.worldcat.org": [18748], "cbxp.rs": [2053], "cache.iwowcase.com": [8018], "glitchwitch.co": [2053], "hostingcon.com": [7673], "philadelphiabar.org": [12833], "agn.mx": [2053], "picture4.cyberport.de": [4048], "www.juicycanvas.com": [8820], "www.zandvoort.nl": [11324], "youtube.ch": [19016], "www.array.is": [1249], "go.mitef.org": [2053], "youtube.cl": [19016], "www.taskforceonshalegas.uk": [16223], "youtube.co": [19016], "wcom.in": [2053], "www.katescomment.com": [8968], "www.agima.ru": [19324], "komi.rt.ru": [13703], "02.files.namecheap.com": [11208], "www.ebas.ch": [4969], "qkin.tk": [2053], "omaze.com": [11988], "igg.ms": [2053], "jesus.cam.ac.uk": [17529], "pqb.link": [2053], "tdc.be": [2053], "*.domain.com": [4738], "www.sign-up.to": [15025], "new.bulkorder.ftc.gov": [5837], "optmlz.es": [2053], "monitoring-plugins.org": [10744], "api.cloudsponge.com": [3354], "www.epa.ie": [5038], "jus.to": [2053], "m.prace.cz": [13234], "analysis.ligatus.com": [9502], "proxy4.switchadhub.com": [15954], "www.fafsa.ed.gov": [4988], "jlog.in": [2053], "sport.idnes.cz": [20425], "on.okck.net": [2053], "s.jan-cermak.cz": [2053], "cdn.filefactory.com": [5904], "services.libis.be": [9461], "*.cas.org": [3117], "europa.neos.eu": [11088], "vrnt.co": [2053], "www.informatik.uni-hamburg.de": [17229], "www.pogoda.yandex.com": [18956], "ct-mkt.sakura.ne.jp": [14483], "fbcstum.in": [2053], "quid.fyi": [2053], "h.msn.com": [9961], "webmail.tiggerswelt.net": [16712], "lk.meituan.com": [10405], "in.eveoh.nl": [2053], "www.pushover.net": [13483], "go.lbpho.to": [2053], "www.purecambogia.com": [13470], "www.statuscake.com": [15689], "parking.hastings.gov.uk": [7366], "transmission.xmission.com": [18831], "www.sitejam.com": [21460], "discovermerchants.com": [4636], "cem.danskebank.dk": [4223], "wbx.ac": [2053], "shopthemint.net": [2053], "www.michaelwlucas.com": [10521], "hbca.co": [2053], "download.fosshub.com": [20150], "autodiscover.gettyimages.com": [6741], "vln.ro": [2053], "mx.norton.com": [11703], "inthefield.co": [2053], "richm.co": [2053], "som.georgetown.edu": [6668], "gettyimages.co.uk": [6741], "forum.plop.at": [21151], "*.m01.eu": [9860], "www.gamingonlinux.com": [6565], "w1z.us": [2053], "landing.vendini.com": [21904], "globalhivmeinfo.org": [6847], "uid0.me": [2053], "wiki.creativecommons.org": [3848], "uelfteswagen.de": [2053], "embed.tumblr.com": [17101], "mcrump.me": [2053], "i.corefilms.uk": [2053], "2016.appseccalifornia.org": [1173], "ess.stanford.edu": [15635], "cme-online.wustl.edu": [18290], "by.ciemades.org": [2053], "transcend.org": [16937], "ourfam.ly": [2053], "*.invodo.com": [8479], "www.clearos.com": [19726], "housingwire.com": [7710], "newsledge.com": [20903], "clink.news": [2053], "www.truelife.com": [17045], "static.adzerk.net": [714], "secureselfservice.northwarks.gov.uk": [11696], "useit.tk": [2053], "zelo.tv": [2053], "www.virtualnewscenter.com": [18044], "l.anterrabi.com": [2053], "jtmq.xyz": [2053], "eco4.me": [2053], "www.per.cuhk.edu.hk": [2747], "pidpic.stanford.edu": [15635], "go.wrry.me": [2053], "*.massrelevance.com": [10212], "stevekroeger.de": [2053], "myposteimpresa.poste.it": [13192], "jlou.is": [2053], "ikoula.com": [8112], "x6y.net": [2053], "lbrundb.cern.ch": [2632], "static.sascdn.com": [15228], "www16.georgetown.edu": [6668], "www.trusted-introducer.org": [17061], "www.bitnz.com": [1989], "nl.boardgamearena.com": [2219], "adelle.ch": [2053], "www.eddieizzard.com": [5175], "macgamestore.com": [9992], "liu.se": [9238], "adelle.co": [2053], "www.linksalpha.com": [9540], "u.org": [2053], "www.kateheddleston.com": [8967], "vjs.zencdn.net": [19130], "margal.us": [2053], "www.josipfranjkovic.com": [20551], "thd.co": [2053], "shopdev.mheducation.com": [20790], "z4.hitravel.xyz": [2053], "pro.activ.my": [2053], "licensingprograms.symantec.com": [15969], "epste.in": [2053], "sitefinitysts.psc.gov": [21220], "propublica.net": [13339], "rs.gwallet.com": [13756], "mibew.org": [10518], "n64.ru": [2053], "www.cryptomaths.com": [3946], "idiom.as": [2053], "ishrank.it": [2053], "huangshan.jd.com": [8571], "www.specialized.net": [15490], "eezy.ly": [2053], "newmatilda.com": [11481], "privatbanka.sk": [13323], "aard.at": [2053], "hetem.la": [2053], "kurz.bpb.de": [19582], "ru.thinksteroids.com": [9904], "mspartnerlp.mspartner.microsoft.com": [10543], "cash.ch": [19654], "www.lef.org": [9383], "ga.meituan.com": [10405], "img.alipay.com": [857], "www.pastebin.ca": [12653], "shuien.co": [2053], "webirc.skynet.ie": [16475], "wlksply.co": [2053], "portal.wku.edu": [22039], "www.suma-ev.de": [15845], "www.sofort.com": [15338], "troz.co": [2053], "harland.net": [7339], "*.foresters.com": [6148], "www.virginmobile.com.au": [18027], "m5videos.com": [2053], "sales-images3.therealreal.com": [21714], "www.delish.com": [4408], "static.shorte.st": [14980], "ew-online.de": [5089], "beacon.classrooms.walmart.com": [18260], "cdnapisec.kaltura.com": [8927], "static.iqiyi.com": [20413], "chooseprivacyweek.org": [19708], "yo.url2.la": [2053], "dynatrace.com": [4923], "turnonsocial.com": [17119], "*.eff.org": [5007], "yahoo.tw.weibo.com": [18482], "*.carestream.com": [2907], "pguy.in": [2053], "www.wegoted.com": [18316], "go.pjtnt11.com": [2053], "www.visitsealife.com": [21927], "help.yandex.ua": [18961], "webpayments.sepa.org.uk": [21412], "redmine.darktable.org": [4232], "static2.businessinsider.com": [2512], "3.url.cn": [21874], "msdv.sh": [2053], "www.e14n.com": [4960], "my.beeline.ru": [1801], "secureimage.securedataimages.com": [14744], "skitch.com": [15160], "checkmyrota.com": [19694], "*.anonym-surfen.de": [8772], "bfstd.io": [2053], "yuri-ism.com": [19059], "www.skyviewinghelp.com": [15173], "ign.com": [7876], "auth.corvisacloud.com": [3756], "media-cache-ec0.pinterest.com": [12914], "nwh.me": [2053], "parkingtickets.portsmouth.gov.uk": [21175], "gotclu.es": [2053], "alphabankbonusredemptionel.aegeanair.com": [7041], "support.inventivedesigners.com": [8462], "weblogawards.org": [18424], "challenge.gov": [3045], "l.fixrd.net": [2053], "www.512pixels.net": [197], "www.onlychange.com": [12080], "ads.chango.ca": [3056], "illiad.lib.cuhk.edu.hk": [2747], "s.dianping.com": [19913], "console.lingospot.com": [9533], "*.gamefactory.jp": [6549], "mpi.onlinesbi.com": [12072], "asmerk.in": [2053], "aran.li": [2053], "unux.cf": [2053], "on.maxspeedcdn.com": [10258], "www.adform.com": [625], "hugedomains.com": [7746], "wiki.umeahackerspace.se": [17426], "www.telerik-web-assets.com": [16351], "habt.at": [2053], "scs.publish.uic.edu": [17517], "dialogue.shareholder.com": [14922], "www.ibens.ens.fr": [5029], "moreinfohere.us": [2053], "x.pax.io": [2053], "dbs.com.cn": [4084], "p.tab.do": [2053], "framacolibri.org": [6214], "www.podcast.at": [13065], "givingwhatwecan.org": [20243], "ninjai.co": [2053], "www.namebright.com": [11205], "neos.typo3.org": [16149], "*.dmri-library.com": [4689], "indiegala.com": [8221], "pensions.cambridgeshire.gov.uk": [19632], "www.internet.org": [8426], "portfolio.debian.net": [4351], "*.haymarketmedia.com": [7382], "lh5.google.com.*": [6965], "shle.pw": [2053], "cobalt.pm": [2053], "asig.info": [2053], "cdn-d-ss.pornhub.com": [13153], "www.projectsecretidentity.org": [13368], "codersclan.net": [3438], "offerz.info": [2053], "q.classpass.com": [2053], "srs.synology.com": [15992], "www.hardforum.com": [20315], "tanki.mail.ru": [10040], "investorseu.com": [2053], "mail.ntu.edu.tw": [11160], "bitly.pro": [2053], "doxygen.openinfosecfoundation.org": [12214], "www.irrlab.com": [18730], "dms.wiiings.com": [18587], "vodafonecontactos.vodafone.pt": [18109], "fertecon.agra-net.com": [771], "wthnh.co": [2053], "webcast2012.utm.edu": [17628], "*.flyasite.com": [6076], "wprk.co": [2053], "spendbitcoins.com": [15513], "wck2.companieshouse.gov.uk": [3571], "px.rs": [2053], "www.ulpgc.es": [17411], "silverrushstyle.com": [15045], "yj.meituan.com": [10405], "lp.longtailvideo.com": [9752], "www.arne.schuldt.info": [1243], "hh.ru": [7190], "m.proxfree.com": [13402], "media.univcomm.cornell.edu": [3744], "images.thecarconnection.com": [7538], "pw-a.co": [2053], "www.counterpartychain.io": [3775], "celiac.org": [2992], "pizza.de": [12965], "collector.opensvc.com": [12170], "no.emarin.no": [2053], "ask.barclaycard.co.uk": [1712], "secure.acpa.ca": [784], "honcode.ch": [7224], "chew.se": [2053], "archive.anon-ib.la": [1077], "vaultproject.io": [17869], "secure.runbox.com": [14274], "jobs.fitbit.com": [6002], "ecn.t1.tiles.virtualearth.net": [18046], "ven.nz": [2053], "www.smartrecruiters.com": [15239], "lgbt.ly": [2053], "journal.paul.querna.org": [13580], "www.cointelgraph.com": [19753], "summertime.fazekas.hu": [5813], "bancopostaclick.poste.it": [13192], "teamgaslight.com": [16256], "intercom.io": [8392], "workaround.ch": [22048], "wosign.cn": [18692], "m.my.t-mobile.com": [16026], "www.spacetelescope.org": [7741], "anidb7.anidb.net": [1062], "www.tpg.com": [16105], "shw.mx": [2053], "legal.gawker.com": [6593], "yellowpages.superpages.com": [15888], "jus.im": [2053], "karens.tips": [2053], "msquad.co": [2053], "www.hornbach.nl": [7640], "s.sex-photo.eu": [2053], "voigt.land": [2053], "media.mnn.com": [9934], "researcha.cc": [2053], "www.sandofsky.com": [14519], "modelmayhem.com": [10704], "s.idarknight.ca": [2053], "nutrition.gov": [11782], "ybitcoin.com": [18915], "sendvid.com": [14829], "ijsnu.nl": [2053], "isis.jhu.edu": [16562], "watch.yandex.kz": [18957], "i.mrtr.jp": [2053], "stenerik.me": [2053], "dron.lat": [2053], "on.thehatch.es": [2053], "fctn.me": [2053], "turris.cz": [17121], "oculusvr.com": [11921], "www.okta.com": [11975], "link.junlem.com": [2053], "www.tailormadeanswers.com": [16168], "*.webmail.sk": [15931], "go.gamv.ca": [2053], "1x.com": [59], "mailerlite.com": [10048], "www.codebasehq.com": [3420], "huff.to": [2053], "www.libreofficebox.org": [9472], "s.kgbureau.nl": [2053], "www.cryptobin.org": [3925], "files.gizmag.com": [6816], "online-go.com": [12067], "niallk.com": [2053], "client.macfound.org": [9983], "cms.here.com": [7465], "mysql.ut.ee": [17347], "lmine.ws": [2053], "www.liquidmatrix.org": [9605], "jaynen.com": [2053], "www.website.webgo.de": [18361], "novodvinsk.beeline.ru": [1801], "www.propolevskoy.ru": [21211], "uconn.worldcat.org": [18748], "ehawaii.gov": [7378], "www.quup.com": [13614], "press.walthamforest.gov.uk": [18262], "aclj.us": [2053], "workfor.greenpeace.org": [7064], "djf.so": [2053], "www.htwk-leipzig.de": [7736], "pengpod.com": [12746], "dleer.com": [2053], "facultynotes.williams.edu": [18616], "fam-ad.com": [20096], "ltzco.com": [2053], "ricp.co": [2053], "consul.io": [3660], "www1.iitb.ac.in": [7891], "meizhou.jd.com": [8571], "cdn3.sbnation.com": [14317], "glf.io": [2053], "wiki.projectmeshnet.org": [13367], "2n9.xyz": [2053], "standardebooks.com": [15632], "genius-2.itunes.apple.com": [1160], "babelzilla.org": [1632], "evga.com": [5085], "cabforum.org": [2564], "g2kww.org": [2053], "www4.eere.energy.gov": [5355], "www.metabunk.org": [10481], "www.teendriversource.org": [16314], "lijit.com": [9510], "potedansla.com": [2053], "aegoya.es": [2053], "i2.msdn.microsoft.com": [10543], "a1.ec-images.myspacecdn.com": [11037], "frype.com": [4838], "www.trustifier.com": [17070], "www.slu.se": [14373], "politi.co": [2053], "puritan.com": [13476], "static3.wareable.com": [21973], "sl.advdat.com": [2053], "*.longaccess.com": [9753], "download.untangle.com": [17657], "ingenuity.net.au": [8290], "*.aerlingus.com": [721], "backed.io": [1640], "portal.azure.com": [1522], "blueb.us": [2053], "*.blogspot.com.au": [2166], "s.mtt.li": [2053], "*.blogspot.com.ar": [2166], "duurzaambv.nl": [2053], "i2.tietuku.com": [16704], "lahormigonera.squat.net": [21549], "jedec.com": [8577], "yent.be": [2053], "developer.marvel.com": [10202], "api.cloudcontrol.com": [3342], "dashboard.eindhoven.nl": [5227], "www.nordportal.ru": [20922], "www.chbtc.com": [3094], "scan.xamarin.com": [18840], "riksgalden.se": [14123], "a2bi.me": [2053], "byrory.me": [2053], "ndite.ch": [2053], "ir-de.amazon-adsystem.com": [950], "vxl.gr": [2053], "www.world-airport-codes.com": [22051], "static-mdev.gbot.me": [6934], "media.memrise.com": [10427], "www.dataxu.com": [4268], "lnk.minkabu.jp": [2053], "tchpd.co": [2053], "paste.debian.net": [4351], "pirateproxy.online": [21711], "www.mantisbt.org": [20750], "www.scripturaengage.com": [14667], "dribper.com": [19960], "images2.sanalmarket.com.tr": [14514], "www.regnum.ru": [13974], "givin.ga": [2053], "reserved.co.nz": [2053], "yroo.com": [19048], "ccrec.at": [2053], "www.european-privacy-seal.eu": [5513], "s360.in": [2053], "mjf.cc": [2053], "upotv.upo.es": [17683], "booo.ms": [2053], "hayesnjarv.is": [2053], "*.comingolstadt.de": [3532], "gallup.com": [6527], "fpay.us": [2053], "chelmsfordgov.firmstep.com": [20125], "b.kentbackman.com": [9006], "www.resonant.org": [14043], "tms.press": [2053], "jbp.io": [8688], "newsandinsight.thomsonreuters.com": [16650], "provost.illinois.edu": [17544], "on.walex.me": [2053], "plotlin.es": [2053], "unbound.net": [17437], "answers.nei.nih.gov": [11241], "anarm.ml": [2053], "bln.kr": [2053], "www.wetransfer.com": [18323], "derwesten.de": [4464], "glx-dock.org": [20256], "epayments.ipswich.gov.uk": [8499], "bfmo.us": [2053], "link.petmart.vn": [2053], "bm.ashokg.com": [2053], "estore.drweb.com": [4879], "wodwell.co": [2053], "noconow.co": [2053], "g2li.me": [2053], "*.linuxquestions.org": [9575], "iamkebi.com": [2053], "www.kids.org.uk": [20591], "img0.glassdoor.ca": [20246], "cm85.co": [2053], "go.plexure.net": [2053], "tryn.co": [2053], "blog.babbel.com": [1630], "vanderbilthealth.com": [17849], "voor.us": [2053], "bchns.com": [2053], "supportprofile.apple.com": [1160], "www.alumniweb.ox.ac.uk": [17557], "m.cygnus.cc.kuleuven.be": [8969], "*.st-andrews.ac.uk": [15603], "www.polleverywhere.com": [13105], "nanyangguan.jd.com": [8571], "www.broadbandbuyer.co.uk": [2405], "zakupyzali.pl": [2053], "snapdeal.com": [15276], "wms.assoc-amazon.co.uk": [1322], "vast.com": [17865], "*.brownpapertickets.com": [2420], "desertory.de": [4466], "ely.sm": [2053], "trk.tidaltv.com": [16702], "autocustom.co": [2053], "stunnish.com": [15801], "petmood.me": [2053], "small.linncdn.com": [9545], "forums.code.org": [3405], "partner.etracker.de": [5495], "customerhub.net": [8286], "grp.vn": [2053], "www.wyzerme.com": [18792], "listbox.com": [9610], "youtube.hr": [19016], "thevi.ps": [2053], "www.timeclockdeals.com": [16730], "www.libcom.org": [20675], "bugs.cacert.org": [2578], "apexea.oracle.com": [12284], "www.performer.england.nhs.uk": [11102], "glsswrks.co": [2053], "forum.cpmstar.com": [2704], "inkfrog.com": [8297], "memb.li": [2053], "wahoowa.net": [2053], "pro-linux.de": [13334], "ufa.rt.ru": [13703], "my.newark.ohio-state.edu": [11960], "www.moniker.com": [9018], "sealswithclubs.eu": [14681], "zeeland.nl": [11324], "report.nrls.nhs.uk": [11102], "itrusteauth.nih.gov": [11241], "bitnami.org": [1993], "aptu.it": [2053], "wacom.li": [2053], "snaps.php.net": [12453], "usfsco.uillinois.edu": [17238], "winesp.ec": [2053], "fanwagon.us": [2053], "qis.hs-karlsruhe.de": [7727], "blog.wired.com": [18664], "www.sgi.com": [14349], "www.dbs.com.cn": [4084], "brin.ca": [2053], "wildbeau.tv": [2053], "www.pureloto.com": [13473], "formassembly.com": [6158], "www.cronius.nl": [3880], "s5.mt-cdn.net": [9963], "is.lacie.com": [9271], "www.worldhealth.net": [18764], "v2.retargeter.com": [13834], "wwwstage.cityoflondon.gov.uk": [3249], "economics.mirea.ru": [20805], "coveredcacertifiedpartners.com": [3800], "www.beautybar.com": [1793], "www.bis.doc.gov": [17336], "dmjx.dk": [4687], "humblebundle.com": [7759], "e.lvme.me": [9653], "now.gdhnews.com": [2053], "cryptodesign.org": [3938], "roche.cr": [2053], "passsource.com": [12634], "www4.skatteverket.se": [15147], "*.verkkomaksut.fi": [17921], "www.vidaysalud.com": [17970], "act.plus": [2053], "jobscout24.de": [8740], "partyprogress.org": [12630], "digitalriver.com": [4566], "whr.tn": [2053], "www.pgl.co.uk": [7597], "www.sickdaysurfshop.com": [15003], "dlitz.net": [4116], "vdk.st": [2053], "buckid.osu.edu": [11959], "vietnamese.alibaba.com": [850], "artc.in": [2053], "votekelli.com": [2053], "www.airsoftgi.com": [793], "kink.com": [20596], "queer.dance": [2053], "joejulian.name": [20546], "i.brajo.co.uk": [2053], "events.birmingham.gov.uk": [19536], "butlerandthechef.com": [16445], "www.ozi-ru.org": [12403], "jobs.newscientist.com": [11490], "b4.aztravel.xyz": [2053], "vxlabs.com": [21963], "www.ono.es": [12081], "sft.its.cern.ch": [2631], "openwebmail.org": [12112], "tuwa.ga": [2053], "hra.cc": [2053], "www.coinwallet.eu": [3464], "xt-commerce.co.uk": [18897], "mby.link": [2053], "macromedia.com": [9999], "projects.vpsfree.cz": [21956], "tr.verbling.com": [17907], "common.i12.de": [7802], "cfpcblog.com": [2053], "www.jabber.org.uk": [8623], "gupnp.org": [6471], "thevaultbar.co.uk": [16477], "statushub.io": [15692], "s.cloppar.com": [2053], "nwschat.weather.gov": [18331], "webmail.wku.edu": [22039], "www.aviris.fi": [1490], "www.writtenchinese.com": [22056], "ncmp.hscic.gov.uk": [20388], "*.togevi.com": [8548], "music.jd.com": [8571], "l.carved.email": [2053], "www.lifehacker.com": [9492], "cdn.krxd.net": [9167], "webmail.informatik.uni-hamburg.de": [17229], "jb.ht": [2053], "go.sbhs.ph": [2053], "1in3campaign.org": [12052], "g1.nz": [2053], "itservices.stanford.edu": [15635], "cp.win-sv.jp": [18626], "nz.godaddy.com": [6898], "youlun.jd.com": [8571], "cty.li": [2053], "pbu.bezeqint.net": [1886], "manisec.com": [10098], "www.efinancialcareers.com": [5010], "sparkfun.com": [15471], "consult.rbwm.gov.uk": [21268], "web.archive.org": [1205], "snipcart.com": [15283], "whistleout.co.uk": [18547], "grad.uic.edu": [17231], "gamingonlinux.com": [6565], "litlab.stanford.edu": [15635], "harlandforms.com": [7339], "apptest.mobile.de": [20811], "mstrp.nl": [2053], "book.majordomo.ru": [10067], "gosuslugi.ru": [6979], "w.jibsam.com": [2053], "l.hughson.dk": [2053], "ju.insite.co.jp": [2053], "escrowlive.net": [5460], "content.s8bbs.com": [21352], "arbornetworks.com": [1193], "track.hempel.cx": [2053], "www.douban.fm": [19953], "www.internet.org.nz": [8425], "fbgo.uk": [2053], "runcrs.co": [2053], "www.intelfellowships.com": [8360], "c.char.gd": [2053], "wukong.laiwang.com": [20629], "piratebay.ukbypass.xyz": [21771], "pronosticuri-tenis.com": [7879], "intranet.creatis.insa-lyon.fr": [7918], "dose.ly": [2053], "nu.worldcat.org": [18748], "developer.onedrive.com": [12031], "xxi.mx": [2053], "apps2.bdimg.com": [1770], "www.kbc.com": [8863], "s3.reutersmedia.net": [16649], "caseking.de": [2935], "*.blogspot.qa": [2166], "blog.cir.ca": [3212], "www.manitu.net": [10120], "www.zend.com": [19136], "www.lisonfan.com": [9606], "vantage.rubiconproject.com": [14247], "bigseb.me": [2053], "monde-diplomatique.de": [9343], "clearchain.com": [3289], "yumm.my": [2053], "nt.meituan.com": [10405], "internal.pti.iu.edu": [8214], "apm.com": [372], "ozel.yandex.com.tr": [18954], "arbor.net": [1193], "pro.stubhub.com": [15789], "lifedai.ly": [2053], "hugendubel.info": [20394], "languageperfect.com": [9300], "fundusze-inwestycyjne.money.pl": [10734, 10735], "g.grax.com": [2053], "sics.se": [14357], "umanitoba.ca": [17546], "zbird.jd.com": [8571], "l.nist.kr": [2053], "www.shotgunclub.com": [14982], "unk.co": [2053], "pcworld.com": [12435], "hmv.co.jp": [7221], "talis.co": [2053], "account.longtailvideo.com": [9752], "efukt.com": [5013], "webmail.forthnet.gr": [6172], "wallstreetcn.com": [18258], "acg.taobao.com": [16206], "beelz.net": [2053], "api.jquery.com": [8598], "rrs.la": [2053], "it.avm.de": [1493], "www.tipp10.com": [16765], "nkdagility.net": [2053], "*.pinme.ru": [12910], "bphil.me": [2053], "www.notesappstore.com": [10268], "blog.digital.cabinetoffice.gov.uk": [2760], "vx.ag": [2053], "www.heroesofnewerth.com": [14300], "on.welt.de": [2053], "surftown.com": [15907], "o-w.me": [2053], "backstage.forgerock.com": [20145], "www.abanet.org": [975], "help.yandex.kz": [18957], "www.layerbnc.org": [9336], "cnsrvtv.cc": [2053], "infowar.com": [8254], "b.fan.si": [2053], "l.duydev.me": [2053], "m10.baidu.com": [1661], "sax.sina.com.cn": [15086], "eadaily.com": [19986], "leisureonline.chesterfield.gov.uk": [19701], "siia.ga": [2053], "lh6.google.co.*": [6965], "s2.shinystat.com": [21426], "www.dexmedia.com": [4515], "www.youtube.rs": [19016], "buy.symantec.com": [15969], "nih.gov": [11241], "justfordomino.com": [10267], "www.woodgreen.org.uk": [18719], "imgt2.bdstatic.com": [1662], "bssrush.co": [2053], "support.firmstep.com": [20125], "cdn.css-tricks.com": [2736], "*.api.bing.com": [1949], "www.aulo.in": [1405], "onlineadmission.ignou.ac.in": [8102], "media.umbel.com": [17425], "chpo.st": [2053], "www.jolexa.net": [8769], "www.tauceti.org.au": [16230], "www.codecentric.de": [3422], "thomsprn.nl": [2053], "ctus.it": [2053], "improper.com": [8168], "hyptxt.org": [2053], "webmail.umftgm.ro": [21848], "blog.jessfraz.com": [8704], "www.dynamics.com": [4927], "www.bistudio.com": [2232], "*.egnyte.com": [5214], "cestovani.idnes.cz": [20425], "www.hayloft-plants.co.uk": [20320], "personal.ie.cuhk.edu.hk": [2747], "search.disconnect.me": [4627], "bnolan.co": [2053], "assets.puma.com": [13455], "gld.la": [2053], "s4.cnzz.com": [3391], "userstyles.org": [21883], "tsapps.nist.gov": [11240], "r.kenhkelly.us": [2053], "frontcounter.sccgov.org": [14579], "surratt.me": [2053], "tngld.tk": [2053], "berta.it": [2053], "float.fyi": [2053], "seecrypt.com": [14791], "mtrskr.in": [2053], "donate.wikimedia.org.uk": [18595], "link.clvr.nu": [2053], "publicfeed.stubhub.com": [15789], "duckduckgo.com": [4888], "www.whodoyou.trust": [18558], "tpurpo.se": [2053], "adnuguk.me": [2053], "kinogo.net": [20600], "barkacs.444.hu": [172], "ctl.co": [2053], "williamhill.com": [18615], "t321.tianji.360.cn": [130], "*.landslide.com": [9297], "8r.com": [233], "seravo.fi": [14839], "www.fod.osu.edu": [11874], "s.gish.se": [2053], "r.ad6media.fr": [554], "intern.connecthr.nl": [2842], "froot.co": [2053], "it.mirea.ru": [20805], "on.yloils.me": [2053], "www.buildbetter.software": [2467], "www.hostvoice.com": [7663], "pep.foundation": [21106], "ifn.by": [2053], "tmit.bme.hu": [1570], "dialin.here.com": [7465], "www.dgex.com": [4107], "guildwars2.com": [7139], "zelo.space": [2053], "angies.tips": [2053], "bluetooth.org": [2208], "alliedmedia.org": [894], "j.suntravel.xyz": [2053], "services.community.lego.com": [9222], "mjclrk.ca": [2053], "d.adroll.com": [575], "3wb.tv": [2053], "hr.caltech.edu": [2815], "www.jackandjill.ie": [8628], "n.akbaar.ir": [2053], "jiwire.com": [8714], "orsk.ufanet.ru": [21836], "acnbuzz.me": [2053], "use.sourcedna.com": [15420], "coe.im": [2053], "sommer.migros.ch": [10566], "www.edihealth.com": [4993], "uni.yandex.com.tr": [18954], "tbp.im": [2053], "www.usc.edu": [17564], "xingning.meituan.com": [10405], "jmhr.co": [2053], "no.norton.com": [11703], "eatb.us": [2053], "tech.mozfr.org": [20836], "*.omnitec.com": [11999], "www.opticsinfobase.org": [12268], "cloudsigma.com": [3352], "gptd.co": [2053], "darbie.link": [2053], "www.transit.land": [16944], "wiki.aalto.fi": [428], "style.omniture.com": [12002], "k-n.io": [2053], "bbs.boingboing.net": [2234], "*.epson.jp": [5434], "purpledog.tips": [2053], "musc.mn": [2053], "pathofexile.com": [12664], "www.active24.sk": [19281], "thinkfun.co": [2053], "lillypad.lilly.ca": [5265], "otrs.datamotion.com": [19859], "2kgames.com": [104], "dylan.la": [2053], "www.djangoproject.com": [4677], "shidao.meituan.com": [10405], "shipto.com": [14952], "*.shurgardpayment.eu": [14996], "wiki.wireshark.org": [18670], "files.garrysmods.org": [20203], "v.icetravel.xyz": [2053], "ucuzu.com": [17390], "thwt.pw": [2053], "nsnd.me": [2053], "snowmagazineonline.com": [15289], "bullguard.com": [2476], "open-mesh.org": [12218], "www.peerj.com": [12727], "www.octoshape.com": [11917], "api.ccbill.com": [2592], "paulblok.nu": [2053], "forums.stablehost.com": [15609], "www.trustlogo.com": [3569], "support.leboncoin.fr": [20650], "g.yft.io": [2053], "www.harland.com": [7339], "wa.gs": [2053], "img.tnastatic.com": [16790], "masspirg.org": [9880], "fm.ipinyou.com": [7950], "xerxes.calpoly.edu": [2806], "doc.glx-dock.org": [20256], "www.pogoda.yandex.by": [18953], "mpoliti.co": [2053], "uicbookstore.org": [17232], "l.tigervpn.com": [2053], "*.loopiasecure.com": [9770], "www.consortiumlibrary.org": [3656], "images.ccs.com": [2609], "orderit-pmg.stanford.edu": [15635], "cont.fyi": [2053], "webservices.ignou.ac.in": [8102], "blog.mandriva.com": [10110], "www.vxlabs.com": [21963], "indefinitelywild.gizmodo.com": [6817], "fdc.freescale.com": [6302], "thrly.in": [2053], "disconnect.me": [4627], "aggregateknowledge.com": [764], "businessforums.verizon.net": [9629, 21906], "www.csa-cee-summit.eu": [2720], "meolocalizz.meo.pt": [10440], "www.watford.gov.uk": [21982], "diasp.eu": [4527], "guandongge.jd.com": [8571], "cryptopro.ru": [3932], "*.nwtime.org": [11463], "ikampioen.com": [2053], "mhzsocial.ca": [2053], "evotronix.evotronix.netdna-cdn.com": [5570], "www.screendaily.com": [14650], "alsoactebis.com": [340], "legolanddiscoverycentre.ca": [9391], "ngo-jvc.info": [2053], "rr-link.com": [2053], "kgs.steampowered.com": [15704], "forum.dlang.org": [19930], "httpbin.org": [7734], "rdrgsm.in": [2053], "taishan.meituan.com": [10405], "autoitscript.com": [1454], "smb.bz": [2053], "xterra.co": [2053], "glvnt.co": [2053], "sip.derby.gov.uk": [4460], "main.exoclick.com": [5608], "arkos.io": [1233], "teamtailor.com": [16258], "bayproxy.date": [21217], "www.systembolaget.se": [16017], "www.oebb.at": [20984], "mdon.co.uk": [2053], "ayebro.nz": [2053], "lolzparade.com": [4195], "www.notabug.org": [11712], "help.snapengage.com": [15272], "api.toster.ru": [16870], "thepiratebay.bypassed.org": [21217], "mix.djvenky.com": [2053], "l.akiffatmi.com": [2053], "s7e5a.scene7.com": [14580], "signin.epek.com": [5421], "labs.bad-dragon.com": [19475], "herep.in": [2053], "agrtp.co": [2053], "www.poistenie.financnahitparada.sk": [5943], "pma.ocf.berkeley.edu": [17526], "leizhou.meituan.com": [10405], "blackpoolfylde.greenparty.org.uk": [7052], "www.blacksuitit.com": [2092], "support.opencorporates.com": [12129], "brnz.co": [2053], "www.amnesty.se": [1010], "www.utinam.cnrs.fr": [6314], "palla.link": [2053], "gigafreak.net": [6768], "tcgcom.me": [2053], "auth.whiskeymedia.com": [18543], "wiki.leloop.org": [9347], "www.mi-pro.co.uk": [8376], "scans.gradle.com": [20276], "cccure.org": [2599], "dacapoalfine-dd.de": [4176], "quantcast.com": [13567], "efas.cen.uiuc.edu": [17234], "cdn.corporate.walmart.com": [18260], "*.yelp.ca": [18979], "accounts.hants.gov.uk": [7328], "cunet.co": [2053], "ums.adtech.de": [678], "chinese.mirea.ru": [20805], "www.contiki-os": [3683], "myhailprotector.com": [7295], "olhe.ga": [2053], "www.compteur.fr": [3593], "ycdb.us": [2053], "www.websupport.at": [18388], "convar.com": [3692], "staffsmoorlands.greenparty.org.uk": [7052], "www.zeushash.com": [19169], "webcruiter.no": [18411], "www.mims.com.my": [9910], "www.hr-skyen.dk": [7228], "si.gmu.edu": [6666], "status.bytemark.co.uk": [2547], "software.nasa.gov": [11058], "jlsa.co": [2053], "sot.bz": [2053], "s.nonk.in": [2053], "techtekk.uk": [2053], "einspru.ch": [2053], "djp.pw": [2053], "www.jfrog.com": [8580], "c.inal.info": [2053], "analys.in": [2053], "uploads.billiondigital.com": [1936], "www.gnomejournal.org": [6471], "agentoa.hu": [2053], "r00tshell.lighthouseapp.com": [13622], "cpthq.cc": [2053], "iatg.co": [2053], "nwf.sh": [2053], "consultantnews.anthem.com": [19395], "community.adobe.com": [655], "sabb.com": [21354], "urbrns.nl": [2053], "gemeentewesterveld.nl": [11324], "*.sheppyware.net": [14945], "wiki.bicomsystems.com": [19528], "myactive.cc": [2053], "payment.empflix.com": [5315], "wkbn.ch": [2053], "lug.mtu.edu": [9967], "hlt.bz": [2053], "img2.blogblog.com": [2160], "app.wistia.com": [18678], "www.bprbzk.nl": [11324], "mdf.ms": [2053], "ads.neudesicmediagroup.com": [11473], "asexuality.org": [19433], "lambeth.gov.uk": [20631], "ddktoday.niddk.nih.gov": [11241], "counterpoint.in": [2053], "getclicky.com": [6730], "www.uniblue.com": [17465], "theacc.co": [2053], "jailbreakingisnotacrime.org": [8640], "l.noobs.sexy": [2053], "statics.meetic-affinity.com": [10381], "manabalss.lv": [10101], "db.debconf.org": [4346], "alta.com": [914], "portal.etc.cmu.edu": [2917], "hrthrudf.com": [2053], "lib.mg": [2053], "vttts.readspeaker.com": [13843], "www.pyra-handheld.com": [21232], "clyp.it": [3385], "campusapps.itsc.cuhk.edu.hk": [2747], "requestb.in": [21293], "imja.red": [2053], "pivot.js.org": [20555], "www.linuxslut.net": [9596], "www.sektioneins.de": [14807], "rpgo.me": [2053], "thc.vc": [2053], "techworld.idg.se": [7852], "linus.link": [2053], "l.stebet.net": [2053], "bkmc.me": [2053], "ssl-tools.net": [21553], "www.purchasing.osu.edu": [11959], "knowledge.seagate.com": [14679], "cpip.me": [2053], "www.iwowcase.com": [8018], "go.sainta.org": [2053], "coolbr.am": [2053], "snte.tv": [2053], "movie2k.pe": [10823], "crm.leboncoin.fr": [20650], "indiemerchandising.com": [8219], "www.agar.io": [757], "naca.ws": [2053], "reed.io": [2053], "ipvanish.com": [7946], "*.inburke.com": [8189], "cc2.dealer.com": [4334], "shortoftheweek.com": [21435], "cpf.engineering.osu.edu": [11959], "buffalo-technology.com": [2455], "produk.ghazi.id": [2053], "go.wend.io": [2053], "tlshar.es": [2053], "langzhong.meituan.com": [10405], "go.tjek24.dk": [2053], "ouagadougou.usembassy.gov": [21879], "inuits.eu": [8457], "southtyneside.greenparty.org.uk": [7052], "l.dds.ec": [2053], "*.shopatron.com": [14969], "medicinenet.com": [10360], "affiliate.ashleymadison.com": [1290], "sp.nl": [14389], "conco.co": [2053], "s.cmns.nl": [2053], "postfinance.ch": [13176], "www.dar.fm": [4080], "oj4.us": [2053], "mmixr.com": [10665], "chrisjlopez.com": [2053], "www.thedaywefightback.org": [16533], "lgpc.me": [2053], "dglink.co": [2053], "alme.re": [2053], "www.daha.net": [15339], "apg.groceries.asda.com": [387], "mopo.ws": [2053], "rbth.com": [21267], "alme.ro": [2053], "yelp.com": [18979], "www.sendmail.com": [14826], "*.hjr-verlag.de": [7202], "mog.gy": [2053], "store.fileforum.com": [1869], "link.kiran.be": [2053], "stable.melpa.org": [10414], "gpt.nserver.ru": [11746], "on.scouts.ie": [2053], "devint.anidb.net": [1062], "dm9.io": [2053], "mytm.tm.com.my": [16341], "webwsp.aps.kuleuven.be": [8969], "ses.leeds.ac.uk": [17604], "piratebay.esbypass.xyz": [21771], "shoro.uk": [2053], "lvlre.co": [2053], "shk.life": [2053], "sueddeutsche-tickets.de": [15833], "catedraemprender.unizar.es": [17643], "superior.solar": [2053], "cbgb.link": [2053], "tumba.ch": [21809], "secure.classmates.com": [3277], "go.kim.al": [2053], "kc2.io": [2053], "cryengine.com": [3909], "store.devolverdigital.com": [4508], "combell.link": [2053], "maxcdn.com": [10256], "on.ducati.co": [2053], "api.mixcloud.com": [10655], "dnga.info": [2053], "*.agenda.athaliasoft.fr": [1348], "eek.in": [2053], "tifisr.org": [2053], "a.tado.com": [2053], "app.marketo.net": [10179], "*.jalopnik.com": [8644], "www.cdn-net.com": [2977], "sourceforge.net": [15423], "lacasika.ourproject.org": [21044], "www.crazzed.com": [3837], "x.calu.me": [2053], "cri.ucsd.edu": [17216], "blog.getcloudapp.com": [9531], "atxne.ws": [2053], "gsp2.baidu.com": [1661], "p2-u.itunes.apple.com": [1160], "promo.goldenline.pl": [6941], "umaryland.worldcat.org": [18748], "sso.amd.com": [962], "de-es.dict.cc": [4536], "employerview.ofsted.gov.uk": [20985], "nxtblog.co": [2053], "alfrd.co": [2053], "legal.yandex.com": [18956], "epidem.mysql.cesky-hosting.cz": [19680], "zenmate.fi": [19133], "ant1.in": [2053], "w.ocara.net": [2053], "ion.io": [2053], "account.xiaomi.com": [18873], "basemap.stanford.edu": [15635], "rating-widget.com": [13810], "lnomad.co": [2053], "readings.owlfolio.org": [12384], "meets.media": [2053], "wgo.mmstat.com": [10666], "zenmate.fr": [19133], "maxcdn.bootstrapcdn.com": [2271], "awin1.com": [4569], "feedback.ndla.no": [11309], "tunnelsup.com": [21813], "amstelveen.nl": [11324], "*.infoworld.com": [8280], "combo.b.qq.com": [13514], "s.digitalpix.nl": [2053], "chach.ee": [2053], "kariera.hofer.si": [338], "www.geekify.com.au": [6625], "moonpig.com": [10766], "frda.nl": [2053], "rugby.gov.uk": [14262], "at.luxor.me": [2053], "s.map.qq.com": [13514], "www.nic.cz": [11572], "forums.mozfr.org": [20836], "sfsecuremail.statefarm.com": [15671], "sundance.tv": [21605], "reg-en.jd.com": [8571], "minfil.org": [10590], "www.kantarainitiative.org": [8939], "hpcloud.com": [7226], "www.nic.ch": [11109], "planning.adur-worthing.gov.uk": [19307], "mzoic.com": [2053], "basc.energy.gov": [5355], "status.prestashop.com": [13265], "wwwrc.hertzentertainment.com": [7511], "a.petassure.com": [2053], "assetweb.psc.gov": [21220], "www.dyson.co.uk": [4935], "www.tpb.accountant": [21771], "orchid.hosts.jhmi.edu": [8583], "dvc.sccgov.org": [14579], "reut.rs": [2053], "hamptons.curbed.com": [3997], "bpat.tk": [2053], "ui.tescoassets.com": [16396], "www.lexity.com": [9439], "www.proxybay.press": [21771], "forums.catalysttg.com": [2957], "www.rtbpopd.com": [21335], "techblog.workiva.com": [18744], "blackboard.ncl.ac.uk": [11073], "potato.usa.cc": [2053], "npower.com": [11741], "mathiasbynens.be": [10233], "uproxy.org": [17290], "netnanny.com": [11406], "*.cdn.office.net": [11943], "*.eetimes.com": [5006], "*.calchamer.com": [2785], "dav.io": [2053], "adainfo.us": [2053], "starrez.its.sfu.ca": [14893], "*.e-junkie.com": [4951], "*.mmixr.com": [10665], "americanancestors.org": [974], "a1000words.com": [421], "guilford.worldcat.org": [18748], "thesoci.al": [2053], "gp2x.de": [6486], "uscnow.usc.edu": [17564], "ras.jpl.nasa.gov": [11058], "govwaste.co.uk": [6996], "prstatics.com": [12498], "gridcoin.us": [7076], "951shi.ne": [2053], "website.local.ch": [9697], "www.thebookpeople.co.uk": [16484], "www.beeldengeluid.nl": [1800], "mvn.tocco.ch": [16797], "banners.8ch.net": [234], "go.hoo.dk": [2053], "help-ja-jp.nike.com": [11595], "tm-b.org": [2053], "www.docs.sony.com": [15393], "lkbl.mx": [2053], "gb-d.openx.net": [12191], "vpp.itunes.apple.com": [1160], "dpmbapps.lowes.com": [9800], "www.dentistry.osu.edu": [11959], "lvb.link": [2053], "hardenedbsd.org": [7336], "www.geti2p.net": [6714], "gmr.link": [2053], "alanw.me": [2053], "staging.syncplicity.com": [15984], "tl.meituan.com": [10405], "v.vhq.cc": [2053], "www.verifiedvoting.org": [17912], "poker.williamhill.com": [18614], "www.delta.no": [4415], "web.roblox.com": [14156], "premiumleech.eu": [21192], "shmoocon.org": [14954], "d-ma.ca": [2053], "salon.com": [14491], "pccu.edu.tw": [12425], "maro.co": [2053], "www.netcompetition.org": [11367], "login.outspark.com": [12359], "cluster016.ovh.net": [12378], "*.oracleoutsourcing.com": [12285], "whamcat.com": [18523], "www.whoisology.com": [18559], "www.adr.org": [19298], "tecnoguru.info": [2053], "iq.adtechus.com": [679], "queenslib.org": [2053], "www.digi77.com": [4554], "files.cerfav.fr": [2053], "cdn.cybergolf.com": [4044], "mit150.mit.edu": [9916], "diaspora.subsignal.org": [15821], "i.antsdaq.com": [19397], "bestbass.gr": [2053], "go.nath.li": [2053], "afsc.me": [2053], "sevn.in": [2053], "article19.org": [1267], "40l.im": [2053], "stori.cc": [2053], "com.denoray.com": [2053], "corp.zaif.jp": [19091], "comca.st": [2053], "ad.crwdcntrl.net": [9776], "spratl.in": [2053], "wtr.gy": [2053], "animallaw.info": [1064], "*.moonfruit.com": [10767], "rndom.io": [2053], "mgass.com": [2053], "netti.mtvmedia.fi": [20850], "login.qt.io": [13545], "kow.rocks": [2053], "link.vlint.nu": [2053], "www.vagrantcloud.com": [17821], "bdtk.co": [2053], "mrc.lu": [2053], "lillypad.lilly.com": [5265], "pcc.coop": [2053], "highju.mp": [2053], "ellatino.eu": [2053], "www.freesoundeffects.com": [6249], "stat.bit-com.ru": [19538], "capita.bathnes.gov.uk": [1737], "iass.co": [2053], "mahadevi.me": [2053], "*.speakyweb.com": [15487], "iact.atdmt.com": [10540], "export.delicious.com": [4405], "esg.li": [2053], "stg.m.here.com": [7465], "files.edx.org": [5171], "volley.so": [2053], "booking.clickvoyage.ru": [3312], "synw.info": [2053], "bttrack.com": [2441], "csweb.me": [2053], "wdc-cmp01.mollom.com": [10724], "oustudents.com": [2053], "mecca.ca": [5219], "www.syslog-ng.org": [16008], "xab.lu": [2053], "floridatoday.com": [6059], "www.huk.de": [7250], "glas.to": [2053], "www.aimpulse.com": [782], "onebitbug.me": [12054], "i.imm.bz": [2053], "www.focuscamera.com": [6092], "chronicle.com": [3182], "onenetworkdirect.com": [12038], "spa.bz": [2053], "spoil.gift": [2053], "sfa.osu.edu": [11959], "www.genomicseducation.hee.nhs.uk": [11102], "lazaunl.info": [2053], "srvn.co": [2053], "dev.evernote.com": [5556], "annett.piware.de": [10198], "www.rapidleaf.com": [13791], "nccam.nih.gov": [11241], "hlp.io": [2053], "sliu.link": [2053], "mtthlvr.fr": [2053], "ghk.ktk.bme.hu": [1570], "www.iis.net": [7888], "photosp.uk": [2053], "a3-images.myspacecdn.com": [11037], "www.krystal.info": [20620], "*.hailguardian.com": [7296], "courrielweb.videotron.com": [17993], "awsinsider.net": [413], "mytdc.me": [2053], "lkyspp.sg": [2053], "confianzaonline.es": [3633], "www.youtube.co.ae": [19016], "brendaneich.com": [2355], "beyondsecurity.com": [1885], "www.s-hertogenbosch.nl": [11324], "www.primedice.com": [13287], "login.dotomi.com": [4797], "ushaz.com": [2053], "wwf.hk": [2053], "www.youtube.co.at": [19016], "chita.rt.ru": [13703], "l.gomaxlive.com": [2053], "gigamon.com": [6769], "kmp.li": [2053], "www.eprize.net": [5045], "pki.google.com": [6962], "www.krasnoturinsk.info": [20618], "www.ncmm.uio.no": [17615], "m.exmail.qq.com": [13514], "5vpn.net": [209], "idp.kuleuven.be": [8969], "www.getapp.com": [20230], "giblod.no": [6754], "partners.kaspersky.ua": [8960], "help.skrill.com": [15165], "winters.illuminateed.com": [20430], "s.asbestos.com": [2053], "www.igb.uiuc.edu": [17234], "hu.boardgamearena.com": [2219], "chrt.se": [2053], "www.tv.yandex.by": [18953], "www.aimatmelanoma.org": [19328], "lviskovic.tk": [2053], "secure.twitch.tv": [17164], "m.kurier.at": [9194], "hsd.to": [2053], "dvwx.in": [2053], "www.codebeamer.com": [3408], "swww22.glam.com": [6819], "ovg.link": [2053], "img.computerbild.de": [19767], "zylon.net": [19248, 19249], "www.symbolab.com": [15970], "data.roblox.com": [14156], "www.cobalt.io": [3400], "t4pm3.tk": [2053], "investor.verisign.com": [17915], "maps.halton.gov.uk": [20308], "s-eu.thebrighttag.com": [2379], "weisf.essex.gov.uk": [5470], "truenudists.com": [17050], "*.ipower.com": [7941], "tcsm.creatavist.com": [3840], "zalando.co.uk": [19094], "heynas.com": [2053], "timeline.akvorrat.at": [811], "hvr.co": [2053], "jobs.calderdale.gov.uk": [2794], "a.jobnavy.com": [2053], "openswan.org": [12246], "pervasive.aau.at": [272], "gwit.co": [2053], "shne.ch": [2053], "edub.me": [2053], "question-defense.com": [13585], "reportingvsn.visma.no": [21928], "*.fundageek.com": [6376], "ask.derby.ac.uk": [17595], "www.sadecehosting.com": [14458], "battlecreekenquirer.com": [1742], "psta.co": [2053], "xlmoto.net": [2053], "wcmaas.dhs.gov": [4109], "www.veggiekarte.de": [21902], "hurricaneelectric.net": [7774], "538.to": [2053], "vagab.it": [2053], "helpcenter.electric-cloud.com": [20023], "img02.sogoucdn.com": [15351], "*.crimethinc.com": [3867], "www.telekom-profis.de": [16343], "joshw.us": [2053], "b4ly.tk": [2053], "sumac.stanford.edu": [15635], "charity.acnc.gov.au": [301], "foreninger.canaldigital.dk": [2862], "ahrun.me": [2053], "chroniclebooks.com": [10286], "idp.micropolia.com": [10529], "on.psi.de": [2053], "give.stanford.edu": [15635], "s.thibeault.io": [2053], "xkcd.com": [22085], "n.jlau.mx": [2053], "ny.meituan.com": [10405], "mjd.me": [2053], "dada.cs.washington.edu": [17577], "embr.li": [2053], "buzzd.at": [2053], "srviv.in": [2053], "4.shawn2nd.com": [2053], "ipwd.co": [2053], "schd.ws": [14589], "adxpansion.com": [584], "uberads.com": [17365], "secure.informaction.com": [8270], "croc3.ml": [2053], "b.nya.net.br": [2053], "teachingexcellence.mit.edu": [9916], "citizensforscience.org": [3234], "compass.xboxlive.com": [18851], "www.delicious.com": [4405], "*.yelp.com.sg": [18979], "staticwhich.co.uk": [18539], "hey.li": [2053], "pic-photo.net": [2053], "login.bme.hu": [1570], "ttdib.com": [2053], "gnrdbrg.com": [2053], "*.miles-and-more-kreditkarte.com": [10581], "b.guu.vn": [2053], "portalen.dtu.dk": [16286], "psty.co": [2053], "www.thecustomizewindows.net": [21695], "wb.mysql.com": [10970], "ascendapp.com": [1280], "oss.aliyuncs.com": [19346], "api.maillift.com": [10044], "aeis.bassetlaw.gov.uk": [1736], "strt.mx": [2053], "www.wargamevault.com": [12029], "picksapp.co": [2053], "apply.onlinelaw.wustl.edu": [18290], "www.spyderco.com": [15577], "git.coderouge.co": [3437], "x-cart.com": [18794], "www.skatteverket.se": [15147], "bournetocode.com": [2303], "www.darkreading.com": [4228], "wlogin.icq.com": [7837], "wearechoosy.com": [1224], "rackham.eu": [2053], "owncloud.com": [12386], "awsmr.ch": [2053], "sngls.club": [2053], "publons.com": [13447], "blicko.com": [2126], "webmail07.register.com": [13965], "theleanstartup.com": [16463], "static.uclinics.com": [17222], "el-tramo.be": [5238], "foia.fbi.gov": [5825], "ho.ln.com.ar": [2053], "asset-e.soupcdn.com": [15416], "www.re-publica.de": [13830], "tmlwry.com": [2053], "log.otaserve.net": [21041], "mata.do": [2053], "www.vdownloader.com": [17771], "mkl.it": [2053], "link.admium.nl": [2053], "spiegel.de": [15523], "findababysitter.com.au": [5950], "*.realrobothigh.com": [13861], "hizliresim.com": [7575], "www.lovefood.com": [9794], "wktv.co": [2053], "sentry.services.disqus.com": [4656], "hndm.co": [2053], "afisa.espiv.net": [20058], "assets.porndig.com": [21173], "sellercentral.amazon.fr": [19371], "fbsbx2q4mvcl63pw.onion": [5734], "niceadminreview.web.cern.ch": [2632], "retrousb.com": [14061], "community.wbgames.com": [3567], "*.culi.org": [3011], "bulls.one": [2053], "sharedfacilities.stanford.edu": [15635], "image.apps.rakuten.co.jp": [13768], "tab.cm": [2053], "bluecu.be": [2053], "h.op3.eu": [2053], "ezinearticles.com": [5651], "dp.pe": [2053], "art.bathnes.gov.uk": [1737], "url.rbj.hu": [2053], "go.dinda.com.br": [2053], "ndandp.it": [2053], "prod6.magentohotel.dk": [10020], "fushi.1688.com": [44], "glaz.mx": [2053], "democrator.ru": [19892], "www.plumbr.eu": [13049], "coursesmart.edusupportcenter.com": [20012], "ads.contextweb.com": [3682], "lists.openbsd.org": [12118], "s.hreinfo.com": [2053], "www.ruc.dk": [14204], "www.mapillary.com": [10135], "*.campstaffusa.com": [2834], "str.tg": [2053], "osh.is": [2053], "www.growthhackers.com": [7110], "sibhub.co": [2053], "d.ligatus.com": [9502], "www.admob.com": [571], "plugins.serverdensity.com": [14858], "liberec.idnes.cz": [20425], "cdn.rbth.com": [21267], "bxl.indymedia.org": [8234], "deciduouspress.com.au": [4360], "images2.q8car.com": [13507], "abru.es": [2053], "kwtx.us": [2053], "11dg.tl": [2053], "inside.hfs.washington.edu": [17577], "on.mukhodim.com": [2053], "services.seagate.com": [14679], "wwwd.amd.com": [962], "www.invest.dha.gov.au": [4385], "corp.riyadonline.com": [14143], "www.buch.ch": [16433], "www.megabusgold.com": [10401], "*.cduniverse.com": [2625], "getmeadow.com": [6718], "defro.st": [2053], "hilfe.vodafone.de": [18107], "api.blockspring.com": [2151], "cardiff.moderngov.co.uk": [20816], "apexcie.co": [2053], "onslice.co": [2053], "www.sysaid.com": [16001], "agsaga.es": [2053], "s.quadpiece.net": [2053], "xfru.ga": [2053], "b.namaste.co.il": [2053], "support.privatelayer.com": [13325], "feedpress.me": [5850], "a.triggit.com": [17010], "symbeta.symantec.com": [15969], "talkable.com": [21657], "lfal.co": [2053], "www.werstreamt.es": [18499], "www.burningshed.co.uk": [2499], "www.forgefields.com": [6154], "cnnct.ch": [2053], "out.snat.co.uk": [2053], "slovenia.usembassy.gov": [21879], "danm.co": [2053], "uknow.co": [2053], "bugtracker.rsbac.org": [13689], "nfsec.pl": [11095], "contacts.live.com": [9644], "thai.vi": [2053], "l.adph.ws": [2053], "dbis.hk": [2053], "www4.va.gov": [17297], "blogs.akamai.com": [800], "demo-res.cloudinary.com": [3367], "www.whatbrowser.org": [18525], "forum.monster-wow.com": [10754], "www.metashop.at": [13252], "oilsk.im": [2053], "crill.co": [2053], "aquion.energy": [2053], "thewallacecenter.rit.edu": [13667], "s.bazoo.me": [2053], "cusis.cuhk.edu.hk": [2747], "librivox.org": [9479], "sqlik.link": [2053], "evermap.com": [5551], "cdon.no": [2620], "registerresnet.northeastern.edu": [11697], "farmaciforbundet.se": [5778], "learn.104.com.tw": [18], "alumni.brunel.ac.uk": [19599], "photos-e.ak.fbcdn.net": [5816], "notaisoldani.it": [2053], "sdk.jibo.com": [2053], "careeren.li": [2053], "www.lfov.net": [9230], "help.premiumize.me": [13254], "www.aat-net.de": [884], "www.piratemedia.net": [12931], "www.do-it.org": [4697], "iam.hhs.gov": [7192], "lomba.xyz": [2053], "a.sendertime.de": [2053], "www.freeporngif.com": [6263, 6264], "members.chicagotribune.com": [3130], "pccn.nu": [2053], "technologyreview.com": [16297], "*.carepackage.org": [2574], "biapreview.homeoffice.gov.uk": [20355], "www.archive.fo": [1203], "vintui.tv": [2053], "*.crowdfactory.com": [3889], "premier.dell.com": [4413], "www.ras.org.uk": [14225], "*.hochschule-trier.de": [7586], "stattl.io": [2053], "qr.luibao.com": [2053], "sid.ac": [2053], "kirkusreviews.com": [9068], "www.decathlon.es": [22063], "tinylx.ml": [2053], "www.electric-cloud.com": [20023], "3es.me": [2053], "seetv.ml": [2053], "cars.tigerair.com": [16710], "*.gandi.net": [6569], "secure.gettyimages.co.nz": [6741], "365tr.biz": [2053], "t.1230.me": [2053], "vision.gel.ulaval.ca": [17515], "api.clever.com": [3297], "adhesion.quebecsolidaire.net": [21242], "*.wire.com": [18661], "inphi.com": [8307], "hji.news": [2053], "www.migipedia.ch": [10566], "s3-ak.buzzfed.com": [2531], "www.ukconstitutionallaw.org": [21839], "aferg.co": [2053], "app.ontraport.com": [21003], "khelf.co": [2053], "widget.barnebys.com": [1724], "ddagst.tk": [2053], "apps.uat.splash.riverbed.com": [14140], "axcm.it": [2053], "goodbarber.co": [2053], "www.e-fense.com": [19977], "doublepimp.com": [4812], "eotours.co": [2053], "www.ubmaviationnews.com": [17204], "snrnews.us": [2053], "liuzhou.meituan.com": [10405], "bauermedia.co.uk": [19498], "go.ni9at.com": [2053], "www.liveperson.com": [9655], "secure.trialinteractive.com": [21787], "www.joycasino4.com": [20552], "registration.cesnet.cz": [2642], "ekkl.es": [2053], "drks.network": [2053], "stkh.us": [2053], "aerob.is": [2053], "*.cad-comic.com": [3974], "secure.tagged.com": [16164], "l.goodbuyz.com": [2053], "blog.codepen.io": [3410], "volafile.io": [21944], "*.computerandvideogames.com": [6398], "gpugrid.net": [6491], "l.inc.com": [2053], "agil.ly": [2053], "qinnova.uned.es": [17446], "result.cntraveler.com": [3620], "majuro.usembassy.gov": [21879], "visualsonline.cancer.gov": [2864], "avatar.xboxlive.com": [18851], "handylinux.org": [20309], "login.beckerproxy.wustl.edu": [18290], "picshareunit.com": [12880], "s18.cnzz.com": [3391], "vqs.is": [2053], "cupjo.co": [2053], "nichebeauty.de": [2053], "textpad.com": [16419], "kbn.im": [2053], "magro.nikhef.nl": [11596], "ozi-ru.org": [12403], "www.ck12.org": [19722], "arc.solutions": [2053], "st.s-herb.com": [2053], "studios.streamray.com": [15709], "www.fusion.net": [20190], "pgp.com": [12448], "www.plan.gs": [15721], "swt.com": [14445], "biomedicalresearch.georgetown.edu": [6668], "automatricula.upo.es": [17683], "insp.tl": [2053], "help.sixapart.com": [21463], "www.zazzle.com": [19119], "s.upr-info.org": [2053], "nz.patronbase.com": [21083], "hotelmangaby.com": [7696], "login.wildstar-online.com": [18602], "www.gratisoft.us": [7025], "morethantwo.com": [10774], "ba-ka.net": [2053], "mentalquote.com": [2053], "*.wolrdssl.net": [18703], "askf5.f5.com": [5659], "womens.uaa.alaska.edu": [17519], "crik.me": [2053], "rmx.so": [2053], "status.ontraport.com": [21003], "stavropol.rt.ru": [13703], "verigames.com": [17913], "racetohealth.co.uk": [13726], "jsantos.co": [2053], "rig.by": [2053], "monty.to": [2053], "logasnet.communities.gov.uk": [19761], "wp-plugins.in": [2053], "wishak.co": [2053], "omgkv.in": [2053], "yandexadexchange.net": [18963], "secure.extensis.com": [5634], "partner.aliyun.com": [861], "www.psy.ulaval.ca": [17515], "*.tyndall.ie": [17182], "go2.microsoft.com": [10543], "s.mutantbox.com": [2053], "cdn2.micasa.ch": [10520], "tools.google.com": [6962], "export.yandex.com.tr": [18954], "stream.cms.rakuten.co.jp": [13768], "picviewer.in": [2053], "www.secure-resumption.com": [14728], "abhisekp.tk": [2053], "www.pabo.nl": [12510], "quantifiedcode.com": [13568], "browser.yandex.kz": [18957], "direct.yabumi.cc": [18933], "ftp.ualinux.com": [21833], "psnly.co": [2053], "coe.int": [3769], "gingerand.co": [2053], "hipmunk.com": [7557], "www.btdig.com": [19600], "shangjia.tmall.com": [21748], "ld-3.itunes.apple.com": [1160], "revstr.com": [14085], "flz.me": [2053], "*.ehosting.ca": [5219], "go.rusen.eu": [2053], "makeapledgepayment.stanford.edu": [15635], "helpdesk.easyspace.com": [5136], "js.3conline.com": [157], "www.quackquackgo.nl": [13550], "bwnews.pr": [2053], "www.enhancedsteam.com": [5375], "collection.bnz.co.nz": [1576], "www.banym.de": [1707], "rik.bz": [2053], "acts.onl": [2053], "geekopedia.in": [2053], "www.hackertarget.com": [7276], "s.cloudjim.com": [2053], "fsmclick.co": [2053], "www.isalo.org": [8512], "ludismedia.com": [9818], "nmo.me": [2053], "bsong.me": [2053], "st7.gismeteo.ru": [6789], "www.ovh-hosting.fi": [12378], "testnet.bitmex.com": [1985], "academy.govloop.com": [20273], "ereceptionist.co.uk": [5050], "www.blognone.com": [2164], "w.javimata.com": [2053], "spark.bazaarvoice.com": [1759], "2cns.co": [2053], "*.sellaband.com": [14812], "imperativeideas.com": [8163], "www.email-lists.org": [5293], "img.oroboro.com": [21030], "*.recalls.gov.au": [13351], "tvmazecdn.com": [21825], "informationsecurity.wustl.edu": [18290], "ensijaturvakotienliitto.fi": [20043], "74li.me": [2053], "www.hostingcatalog.com": [7677, 7678], "durh.am": [2053], "www.measuredvoice.com": [2884], "www.schnellno.de": [14602], "api.whatsbroadcast.com": [18535], "emne.ws": [2053], "aldi.ie": [338], "applyroche.com": [2053], "oraweb.web.cern.ch": [2632], "tgwk.co": [2053], "sigdet.nu": [15021], "www.gnunet.org": [6477], "go.dawah-wh.org": [2053], "vimention.com": [18009], "www.jsna.portsmouth.gov.uk": [21175], "klo.pm": [2053], "www.cru.fr": [3900], "ucla.in": [2053], "linuxslut.net": [9596], "hypem.com": [7789], "dbb.la": [2053], "docs.ocaml.org": [11811], "royale.spongecell.com": [21538], "www.thepirateproxy.website": [21709], "banking.us.hsbc.com": [7233], "wifilogin.xfinity.com": [22082], "northclicks.com": [11692], "auth.mayday.us": [10270], "nrd.gr": [2053], "l.sricola.com": [2053], "www.nruns.com": [11048], "pad.jhalderm.com": [8617], "*.golf2go.net": [1545], "e-boks.dk": [4946], "earthsystems.stanford.edu": [15635], "wayback.archive.org": [1205], "dietrolldie.com": [18730], "*.janrain.com": [8656], "getin.bz": [2053], "ssum-sec.casalemedia.com": [2929], "kurskaya-obl.beeline.ru": [1801], "c.fsdn.com": [251], "www.completelyprivatefiles.com": [3587], "www.secular.org": [14716], "jappix.com": [8666], "groups.google.com.*": [6965], "next.co.uk": [11552], "in.gosen.top": [2053], "ticketcorner.ch": [16687], "dr.exactag.com": [5586], "youtube.com.gr": [19016], "a3.websitealive.com": [18445], "microsoftne.ws": [2053], "b.zmtcdn.com": [22135], "ver.fm": [2053], "bitty.to": [2053], "*.boots.com": [2267], "netbeat.de": [11409], "ir.convio.com": [3696], "trial.resrc.it": [13832], "*.btdigg.org": [1611], "atl.la": [2053], "hg.debian.org": [4353], "att-i.shoebuy.com": [14959], "*.repost.us": [14020], "www.collectifstoptafta.org": [3484], "gcc.gnu.org": [6474], "kentcc.firmstep.com": [20125], "mfi.apple.com": [1160], "newser.me": [2053], "v.virg0.org": [2053], "full-episode.ga": [2053], "asbestossafety.gov.au": [1278], "api.ashampoo.com": [1285], "*.tintup.com": [16749], "www.prace.cz": [13234], "s63.cnzz.com": [3391], "hjoe.eu": [2053], "*.vippy.co": [18021], "amay.me": [2053], "acs-webmail.ucsd.edu": [17216], "www.browser.yandex.kz": [18957], "nm.pe": [2053], "intuitivepassword.com": [8455], "lubswww.leeds.ac.uk": [17604], "m.legal.yandex.ua": [18961], "l.eldonchew.com": [2053], "*.dennogumi.org": [19893], "kelli.us": [2053], "foxycart.com": [6205], "to.leglise.ca": [2053], "www.os3.nl": [11862], "blog.sourcetreeapp.com": [15425], "onetaste.us": [12045], "*.nyaa.se": [11795], "to.jetpens.com": [2053], "www.hromadskeradio.org": [20371], "princeton.edu": [13291], "trust.jivesoftware.com": [8733], "kredyty-gotowkowe.money.pl": [10734, 10735], "node1.bbcimg.co.uk": [19502], "sky.get.no": [20229], "link.gge.co.jp": [2053], "www.barkbox.com": [1718], "dbl.to": [2053], "www.studentgrantreview.acs.org": [966], "zorrovpn.com": [19229], "bitsapphire.com": [2067], "*.copy.com": [3722], "os.uk": [11861], "xmlrpc2.mollom.com": [10724], "vogogo.com": [21941], "ssl2.cdngc.net": [2618], "l.posb.kr": [2053], "www.hypanova.com": [7788], "tims.tk": [2053], "x2u.us": [2053], "xinyi.meituan.com": [10405], "teleportal.telesign.com": [21672], "ghgrp.co": [2053], "s4.mt-cdn.net": [9963], "es.libreoffice.org": [9471], "secure.xhamster.com": [18816], "cl.oud.im": [2053], "trbt.co": [2053], "cmpl.se": [2053], "3wx.us": [2053], "youtube.com.gh": [19016], "giftcard.place": [2053], "forum.icefilms.info": [8056], "www.asecus.ch": [1284], "m.opencaching.pl": [21010], "sysadmincasts.com": [16004], "www.fontdeck.com": [6107], "apollo.krystal.co.uk": [9175], "weakdh.org": [18328], "z.0mfg.net": [2053], "pshp.co": [2053], "speakyweb.com": [15487], "ajl.media": [2053], "photo.kaywa.com": [8979], "m.pitch.pe": [2053], "my.turbobytes.com": [17112], "www.adweek.com": [711], "sales-images4.therealreal.com": [21714], "scripts.cocubes.com": [3395], "ae.chaucanh.net": [2053], "*.hailstormproducts.com": [7296], "firstllp.uk": [2053], "kashira.beeline.ru": [1801], "askwictor.com": [2053], "www.memberservices.hsbc.com": [7233], "cruzcat.ucsc.edu": [17591], "iwslink.us": [2053], "12.191.21.228": [3492], "dynadot.com": [4922], "pix01.revsci.net": [14073], "probation.homeoffice.gov.uk": [20355], "smartzip.me": [2053], "*.ytimg.com": [19016], "mnps.co": [2053], "gopsu.info": [2053], "d0in.gs": [2053], "cpsc.gov": [2706], "obo.li": [2053], "enlghtn.me": [2053], "aloft.ht": [2053], "x-1.science": [2053], "img1.youm7.com": [19021], "rosso.me": [2053], "www.appetize.io": [1154], "polylearn.calpoly.edu": [2806], "g0ga.ga": [2053], "f.fontdeck.com": [6107], "go.turnto10.com": [2053], "*.allyoucanarcade.com": [888], "www.n-somerset.gov.uk": [11046], "mtrtrvl.mx": [2053], "hacktivity.com": [20305], "scottish-country-cottages.co.uk": [18790], "rnapoli.info": [2053], "cz.zenmate.com": [19133], "gw.alicdn.com": [846], "cisneros.com.pe": [2053], "thinkpo.st": [2053], "online.cyberaces.org": [4028], "labs.sign-up.to": [15025], "merchant.xsolla.com": [18896], "svfcg.nl": [2053], "sanmen.meituan.com": [10405], "www.duiven.nl": [11324], "mechon-mamre.org": [10302], "ivacy.com": [8546], "idp.aalto.fi": [428], "www.fonticons.com": [6108], "timetable4.cuhk.edu.hk": [2747], "s.pothunter.net": [2053], "wetter.ml": [2053], "foxb.it": [2053], "fremont.webconsole.linode.com": [9547], "knightswarm.com": [9096], "support.tango.me": [16200], "mantas.loak.org": [2053], "www.aic.cuhk.edu.hk": [2747], "www.netdev01.org": [11412], "tabletm.ag": [2053], "engelschall.com": [5365], "www.hyperisland.com": [20404], "paste.ubuntu.org.cn": [17372], "portal.zg.ch": [21629], "info.tiki.org": [16715], "phaser.io": [12828], "myem.us": [2053], "i.tippvet.com": [2053], "i.motorsport.bz": [2053], "goodsearch.com": [6958], "8tv8.cf": [2053], "sicuz.unizar.es": [17643], "gr.godaddy.com": [6898], "the.shpa.org.au": [2053], "emarketee.rs": [2053], "smp.difi.no": [4547], "jrdb.xyz": [2053], "cp-m.org": [2053], "ingn.it": [2053], "i2icc.co.uk": [2053], "hostcenter.com": [2209], "www.sopastrike.com": [5898], "munzinger.de": [10894], "www.fukuchi.org": [6363], "gmwv.fr": [2053], "downstreamtoday.com": [4825], "jsi.ms": [2053], "inprof.us": [2053], "valleyfirstcu.org": [17826], "flipdw.com": [2053], "url.arnokrol.nl": [2053], "sptag.com": [15573], "ba-l.co": [2053], "loma.la": [2053], "kvm-vps.com": [8908], "s.up-crest.org": [2053], "fybsg.com": [5725], "mocf.ws": [2053], "configuration.apple.com": [1160], "id.3.boardgamearena.com": [2219], "www.sha2sslchecker.com": [14353], "www.qiyi.com": [20413], "www.bve.ulaval.ca": [17515], "remezc.la": [2053], "www.codeforamerica.org": [3419], "m.computerbase.de": [3602], "www.tfsprays.com": [16063], "www.aldi.com.au": [338], "erdt.plymouth.ac.uk": [13055], "kev.uno": [2053], "read.bi": [2053], "gsfn.us": [7117], "www.rca.org": [13636], "i9.buimg.com": [16704], "a.rad.msn.com": [9961], "kcvids.com": [8868], "lists.debian.org": [4353], "thrv.in": [2053], "static0.twilio.com": [17152], "content.newegg.com": [11508], "biglinux.com.br": [19531], "www.freeunlocks.com": [6251], "www.mbusa.com": [9890], "www.pubservice.com": [13448], "www.ao2.it": [1123], "www.revbens.manchester.gov.uk": [10107], "tnc.io": [2053], "jbev.co": [2053], "hdigest.me": [2053], "share.confex.com": [3632], "www.jekkt.com": [8691], "mano.tele2.lt": [16325], "analytics.performable.com": [12778], "cimbniaga.com": [2662], "*.launchpad.net": [9323], "edph.in": [2053], "bookings-streaming.sydney.edu.au": [21631], "www.westlandutrecht.nl": [18513], "int.debenhams.com": [19884], "iby2.duoshuo.com": [19969], "wiki.anidb.net": [1062], "theduffel.co": [2053], "www.alt.ac.uk": [1330], "sfacil.co": [2053], "bitbay.net": [1976], "7mnpep.com2.z0.glb.qiniucdn.com": [6615], "mauivaaircruise.com": [10249], "biomechanics.osu.edu": [11959], "barnesjewish.org": [1725], "www.woodtreeswing.com": [18721], "borgnet.link": [2053], "rev.al": [2053], "houma.meituan.com": [10405], "op.pf.nl": [2053], "nsem.us": [2053], "foodwatch.org": [6123], "www.howtoforge.de": [7720], "go.concat.us": [2053], "fitstre.am": [2053], "applications.contactatonce.com": [3673], "g.masslight.com": [2053], "fakedomains.accessnow.org": [485], "link.buyr.com": [2053], "gitlab.unizar.es": [17643], "frtd.eu": [2053], "forzad.in": [2053], "fund.monex.co.jp": [10733], "d2n.us": [2053], "www.ertos.nicta.com.au": [11111], "adbuyer.com": [606], "emc.force.com": [5028], "sfederation.intel.com": [8359], "gnda.energy.gov": [5355], "rna.to": [2053], "identity.stanford.edu": [15635], "yelp.com.br": [22097], "www.bof.nl": [1579], "www.domainmarket.com": [4744], "massrelevance.com": [10212], "dlry.co": [2053], "3.wrbl.com": [2053], "rnd.hbsi.ph": [2053], "appserv6.admin.uillinois.edu": [17238], "www.register.bg": [13964], "go.awezome.com": [2053], "ernaehrung-per-klick.de": [10364], "fly.tdc.dk": [16051], "clicktoverify.truste.com": [16111], "georgetown.usembassy.gov": [21879], "odb.acs.caltech.edu": [2815], "electrek.co": [5249], "www.mycommerce.com": [10942], "swissreg.ch": [15949], "lxld.us": [2053], "necuhb.org": [11322], "abrown.me": [2053], "www.soundslice.com": [15414], "foldingcoin.net": [6100], "amyskolaut.com": [2053], "felveteli.mesterek.bme.hu": [1570], "hboc.osu.edu": [11959], "lvst.at": [2053], "ntualumni.org.uk": [11161], "tampa.aclufl.org": [286], "reman.info": [2053], "jblk.us": [2053], "on.notjaya.com": [2053], "bepartne.rs": [2053], "xinmi.meituan.com": [10405], "testdrive.alfresco.com": [843], "tijs.co": [2053], "maxkitap.com": [10259], "ubuntu-fr.org": [17376], "www.sinaimg.cn": [15091], "learning.ausport.gov.au": [1437], "www.moodle.net": [10762], "icoco.us": [2053], "ttv.tv2.dk": [16135], "l.drupal.vc": [2053], "www.askthe.police.uk": [19439], "pti.world": [2053], "stackedit.io": [21559], "s01.esupport.sony.com": [15393], "r.pilic.eu": [2053], "posteo.de": [13195], "aks.im": [2053], "ihelper.mts.ru": [20846], "febuv.de": [2053], "blottr.com": [2178], "*.ryanair.com": [14292], "mail.dielinke-sachsen.de": [4540], "www.growingio.com": [20286], "vortexbox.org": [21949], "yjb.me": [2053], "cmascenter.org": [2682], "www.webtorrentsearch.com": [16494], "wtbl.link": [2053], "www.cloudpassage.com": [19739], "katm.me": [2053], "www.sebastianwick.net": [14699], "*.squarefree.com": [8705], "merchantadmin.sina.com": [21455], "www.aaronbrotherscircular.com": [431], "tccne.ws": [2053], "assets2.vzaar.com": [18179], "m.fotki.yandex.by": [18953], "bee.ma": [2053], "qj.meituan.com": [10405], "maklr.de": [2053], "s.cbmainz.de": [2053], "www.pviq.com": [13489], "wickford.co": [2053], "procurement.southend.gov.uk": [15442], "asteron.life": [2053], "www.campaign.cam.ac.uk": [17529], "aka-etl.decc.gov.uk": [19885], "pn.meituan.com": [10405], "p2p.chbtc.com": [3094], "*.hhmi.org": [7718], "lannan.georgetown.edu": [6668], "ssl.a.xnimg.cn": [18884], "w.sunybroome.edu": [2419], "renrencaopan.com": [14005], "pro.btcc.com": [2438], "bge.me": [2053], "www.appharbor.com": [1146], "dn.vapplive.com": [2053], "www.value-domain.com": [17832], "hs.fi": [7451], "www.leaderlandnews.com": [9356], "rtbf.be": [14244], "localmotors.com": [20708], "www2.polskieradio.pl": [13112], "new.edit.bulkorder.ftc.gov": [5837], "maga.lu": [2053], "ludia.gg": [2053], "ajax.googleapis.com": [6967], "*.brooklinecollege.edu": [2417], "*.startssl.eu": [15660], "www.filenuke.com": [5907], "strato-hosting.co.uk": [14428], "lpr.st": [2053], "faisaly.id": [2053], "www.ebanking.hsbc.com.hk": [20380], "go.rully.net": [2053], "griz.ly": [2053], "tshak.it": [2053], "svy.searchco.nl": [2053], "services.bostonglobe.com": [16517], "hometab.boldchat.com": [2240], "fiksu.com": [5902], "0x41.no": [6], "fotd.me": [2053], "railn.ws": [2053], "torrentr.eu": [16854], "www.zohocorp.com": [19203], "s.gavr.xyz": [2053], "strangeremains.com": [21584], "ingsoc.tk": [2053], "www.boxuk.com": [2308], "gomixte.co": [2053], "www.sanet.me": [14315], "hartbro.com": [2053], "epki.wosign.com": [18693], "pics.qxlstatic.no": [13526], "www.click4assistance.co.uk": [3301], "stats.ox.cx": [7787], "www.nae.edu": [11264], "services.social.microsoft.com": [10543], "planning.wakefield.gov.uk": [21966], "keksbude.net": [8995], "ongzh.com": [2053], "verified.capitalone.com": [2878], "emeajobs.oracle.com": [12284], "on.untp.it": [2053], "bcf.ch": [20574], "skt.la": [2053], "www.web4all.fr": [18349], "tiles.cdnst.net": [2615], "mnerd.co": [2053], "www.adsonar.com": [578], "linuxmonk.ch": [9593], "settrade.com": [14878], "29a.se": [2053], "pressflex.com": [13263], "www.assetstore.unity3d.com": [17506], "torea.co": [2053], "*.marktplaats.nl": [20755], "nabconnect1.nab.com.au": [11054], "webmail.quickline.ch": [21243], "scaleway.com": [14566], "doc.intercom.io": [8392], "bandv.us": [2053], "wesail.me": [2053], "help.basespace.illumina.com": [8117], "m.blogs.yandex.by": [18953], "wrapbootstrap.com": [18772], "s.utchy.jp": [2053], "go.tpo.us": [2053], "s0.pstatp.com": [16881], "www.pegasusdigital.de": [12029], "www.paulirish.com": [21084], "www.woahh.com": [18695], "nikn.ly": [2053], "docs.synapsepay.com": [21634], "*.kde-apps.org": [21007], "n-aana.org": [11282], "s4.media.ft.com": [5941], "broadland.gov.uk": [19594], "pvdd.me": [2053], "cask.scotch.io": [14637], "www.vodafone.co.uk": [18106], "go.sseverns.com": [2053], "sarov.beeline.ru": [1801], "blog.ibutsu.org": [20418], "*.wikispaces.com": [16373], "bwin.com": [7880], "mvpx.tv": [2053], "www.pirateparty.org.au": [12929], "barl.in": [2053], "shopping.e2enetworks.com": [4961], "djamentis.link": [2053], "mok.it": [2053], "analytics.freedom.press": [6286], "oksend.me": [2053], "support.goldenfrog.com": [6940], "target.mail.ru": [10040], "i.stda.vn": [2053], "tbm.li": [2053], "phs.to": [2053], "tug.org": [16246], "secretcon.com": [14712], "9.url.cn": [21874], "sleqty.co": [2053], "www.cal.net": [2783], "www1.va.gov": [17297], "*.woodgreenshop.org.uk": [18720], "www.t-engine.org": [16022], "univ-brest.fr": [17508], "compteperso.leboncoin.fr": [20650], "i.swcw.me": [2053], "shop.teac.com": [16059], "goke.me": [6937], "media.badische-zeitung.de": [1650], "mrei.ch": [2053], "hakasiya.rt.ru": [13703], "lgn.io": [2053], "www.tinkoff.ru": [16748], "buy.stubhub.de": [15789], "rufc.co": [2053], "shopjw.co": [2053], "changle.meituan.com": [10405], "qxl.dk": [13524], "status-page-blog.herokuapp.com": [15691], "epic.tips": [2053], "resource.xiaomi.net": [18874], "snkhy.pe": [2053], "equinix-direct.equinix.com": [5438], "www.mynortonaccount.com": [11703], "interhyp.de": [8399], "c5.rgstatic.net": [13655], "www.openfoo.org": [21014], "jump.godeep.cc": [2053], "wfti.co": [2053], "gaug.es": [7124], "git.informatik.fh-nuernberg.de": [16428], "cbs.to": [2053], "www.support.whitepages.com": [18555], "secure.nationaljournal.com": [1352], "bokeh.rocks": [2053], "adasa.info": [2053], "hightail.com": [7547], "ram-tool.info": [2053], "gofor.cd": [2053], "hasanix.co": [2053], "moviefloss.us": [2053], "pluscontrollers.com": [3691], "gp-url.com": [2053], "do.de": [4737], "ws.assoc-amazon.co.uk": [1322], "snelis.com": [15279], "chemefacsrch.mit.edu": [9916], "www.assured.se": [19443], "sol-pan.co": [2053], "notfx.co": [2053], "www.benthamsgaze.org": [1832], "social.webtrends.com": [18467], "gblt.co": [2053], "muddypuddl.es": [2053], "jingzhi.jd.com": [8571], "buch.ch": [16433], "*.helpshift.com": [7449], "www.ditii.com": [4067], "forums.getfoxyproxy.org": [6713], "secure.fnac.pt": [6085], "www.pcp.ch": [12708], "atav.is": [2053], "vf.fifedirect.org.uk": [5893], "danbooru.donmai.us": [19947], "acd.link": [2053], "mindma.de": [2053], "asjrny.net": [2053], "plnt.sv": [2053], "brookti.de": [2053], "www.synology.com.tw": [15991], "cfs1.gcaptain.com": [6428], "account.xbox.com": [18850], "sina.is": [15087], "www.gradschool.utah.edu": [17574], "internal.psychology.illinois.edu": [17544], "nightcode.info": [11590], "vdownloader.com": [17771], "www.blah.im": [2109], "cemreg.us": [2053], "lyncdiscover.here.com": [7465], "pudmf.tk": [2053], "porh.me": [2053], "naytev.com": [11306], "greatdomains.com": [7034], "pmf.gov": [21154], "drrnmllr.com": [2053], "arak.ovh": [2053], "ii.techdirt.com": [16281], "m.rasp.yandex.com": [18956], "www.adultshopping.com": [684], "cname.aseaw.me": [2053], "www.booklog.jp": [2256], "marketingsolutions.masslive.com": [10211], "obsdn.me": [2053], "pcskin.care": [2053], "nicks.im": [2053], "rdd.li": [2053], "mnnz.cc": [2053], "french.cotedivoire.usembassy.gov": [21879], "www.nrel.gov": [11246], "www.gimp.org": [20240], "forums.pcbsd.org": [12421], "parkandgo.uk": [2053], "url.siwah.com": [2053], "seanmckaybeck.com": [14683], "tamingte.ch": [2053], "*.yuku.com": [19053], "call.stopwatching.us": [15744], "used-it.at": [2053], "smwrld.us": [2053], "yejik.ru": [2053], "lnk.mradder.com": [2053], "yco.me": [2053], "www.kinox.me": [20597], "jwurl.net": [2053], "www.mythtv.org": [11038], "tkksft.com": [2053], "tmoore.co": [2053], "zakird.com": [19092], "prizecat.ch": [2053], "www.wilhelmtux.ch": [22028], "speedworldgrafix.com": [15505], "go.ishelly.com": [2053], "adverta.in": [2053], "madbs.in": [2053], "developers.filepicker.com": [5916], "www.drivethrurpg.com": [12029], "itservices.usc.edu": [17564], "www.domainskate.com": [4747], "fhub.in": [2053], "slimstyle.me": [2053], "epic.hpi.uni-potsdam.de": [17456], "www.lifesaving.com": [9495], "*.oculus.com": [11920], "resources.alibaba.com": [850], "bsfs.georgetown.edu": [6668], "www.govloop.com": [20273], "www.mathoverflow.net": [15611], "12joycasino.com": [20552], "zenodo.org": [22130], "company.here.com": [7465], "url.miko2.net": [2053], "marcm.me": [2053], "*.kintera.org": [9064], "www.pricegrabber.com": [13279], "www.dhs.gov": [4109], "www.slipfire.com": [15210], "littlecms.com": [9638], "forum.mediatemple.net": [10331], "www.splitreason.com": [15533], "r.justinek.me": [2053], "bsv.co": [2053], "potd.es": [2053], "tvicio.us": [2053], "www.dshield.org": [4160], "kchd.co": [2053], "www.ecosia.org": [5164], "www.femtoduino.com": [5861], "registration.ymcastlouis.org": [18922], "www.helmholtz-berlin.de": [7441], "checkout.coinjar.com": [3461], "til.shop.dk": [2053], "nextgen.link": [2053], "www.exhaleprovoice.org": [5600], "www.ukfsn.org": [17244], "www.g2a.com": [6413], "cba.im": [2053], "www.jino.ru": [8724], "bulgaria.usembassy.gov": [21879], "developer.getcloudapp.com": [9531], "www.wj32.org": [18690], "offer.live": [2053], "account.netflix.com": [11421], "creditcards.citi.com": [3227], "s.purlllaw.com": [2053], "ldpaa.com": [2053], "clickberry.tv": [3316], "beta.dzone.com": [4171], "imu.my": [2053], "www.thalia.at": [16433], "www.itmb.nl": [7993], "domaintools.com": [4750], "bnds.in": [2053], "cardiffnetwork.cf.ac.uk": [2895], "assets1.sendgrid.com": [14821], "www.genges.com": [6642], "ddel.co": [2053], "go.abh.my": [2053], "s.kei-n.com": [2053], "www.volgistics.com": [18122], "naughtydog.com": [11296], "www.7springs.com": [221], "jrnl.to": [2053], "uscyberchallenge.org": [17707], "t.iy.ag": [2053], "static-cdn.ubuntu-de.org": [17373], "cyph.com": [4056], "ab.co": [2053], "www.theappendix.net": [16509], "lk.eurenet.com": [2053], "btdigg.org": [1611], "otto.me": [2053], "danscal.co": [2053], "fandom.deals": [2053], "gigaom.com": [6764], "123p1.sogoucdn.com": [15351], "mupb.us": [2053], "www.exposefacts.org": [5624], "jobs.sqcp.com": [2053], "www.edonorcentral.com": [5002], "privacyenforcement.net": [13314], "barnesandnoble.com": [1726], "www.ttip-stoppen.at": [16122], "1and1.co.uk": [63], "ctunnel.com": [2745], "horsesho.ws": [2053], "open.wien.at": [22025], "tba.stanford.edu": [15635], "www.familie.niedersachsen.aok.de": [357], "iwight.com": [8022], "peteraba.com": [12803], "link.djdex.net": [2053], "cyberfret.com": [4042], "owk.li": [2053], "uet.li": [2053], "ednxt.co": [2053], "moechel.com": [10715], "itspm.ag": [2053], "umu.se": [17427], "www.disk42.com": [4647], "bluestatedigital.com": [2197], "*.comparis.ch": [3577], "c.asbr.in": [2053], "lwllp.co.uk": [2053], "umu.si": [2053], "media.scmagazine.com": [21384], "sagecell.sagemath.org": [14476], "www.silverum.cz": [15049], "stats.matraxis.net": [20758], "its.myq.club": [2053], "lps.meituan.com": [10405], "cypouz.com": [4061], "www.jcrosoft.com": [8569], "uez.in": [2053], "chn.ge": [2053], "www.robertsspaceindustries.com": [14154], "calm.li": [2053], "linan.1688.com": [44], "justice.gov.uk": [10616], "tongan.meituan.com": [10405], "caradvice.com.au": [2887], "outletdesign.cz": [2053], "af.forobeta.com": [2053], "whcgjobs.co": [2053], "mvt.mcafee.com": [10282], "idox.cambridge.gov.uk": [19630], "go.berniesanders.com": [1848], "www.fusionforge.org": [6392], "mixify.me": [2053], "wells.tips": [2053], "passport.alipay.com": [857], "crp.ovh": [2053], "www.reporter-ohne-grenzen.de": [14017], "wc2.ibx.com": [20419], "amitrad.it": [2053], "lifeshirts.co": [2053], "smrt.bz": [2053], "hcvb.us": [2053], "jlist.com": [8589], "grana.world": [2053], "silvamr.tk": [2053], "business.zenmate.com": [19133], "pages.emssoftware.com": [20035], "url.jimv.com": [2053], "www.site.biz.id": [7648], "ss2.bdstatic.com": [19507], "cn1.websitealive.com": [18445], "mpsa.co": [2053], "offlinemode.org": [11954], "regiobankadviseurs.nl": [13963], "docs.google.com": [6962], "pro.whitepages.com": [18555], "s.x-mr.com": [2053], "www.olcf.ornl.gov": [11892], "l.alvarosc.com": [2053], "www.securedrop.org": [14735], "portrait4.sinaimg.cn": [15091], "talam.co": [2053], "bit.jbjs.org": [2053], "freecallstousa.co.uk": [20709], "subscribe.swatmag.com": [21627], "www.icecat.biz": [8059], "bl.mts.ru": [20846], "www.zillowstatic.com": [19182], "accounts.wired.com": [18664], "lupintees.net": [2053], "mattwilcox.net": [10246], "evolvesocially.org": [5574, 5575], "wichmann.indymedia.org": [8234], "www.pace2race.com": [12514], "a.olm.tw": [2053], "elitedai.ly": [2053], "cfx.ws": [2053], "mapfan.to": [2053], "www.glimmerblocker.org": [6831], "portaltransparencia.unizar.es": [17643], "ca-fr.norton.com": [11703], "liquid.piratenpartei.at": [12937], "ssl17.ovh.net": [12378], "webmail.impulse.net": [8170], "concierge.apple.com": [1160], "malwarebytes.org": [10093], "www.nwswimshop.com": [11701], "www.novoed.com": [11729], "lnstgrarm.com": [2053], "accdn.tl": [2053], "jobs.chichester.gov.uk": [19703], "inmb.mx": [2053], "www.entroware.com": [5404], "btcmedia.org": [1609], "kostromskaya-obl.beeline.ru": [1801], "www.blocket.se": [2147], "porlaputa.com": [13151], "www.sysdig.com": [21638], "playfree.96.lt": [2053], "vang.mx": [2053], "img.mail.ru": [10040], "www.bva.bund.de": [5833], "www.itau.com.br": [8534], "playgroundne.ws": [2053], "www.ekiga.net": [5231], "www.1pipfix.com": [55], "thinkmobile.appcelerator.com": [1152], "casop.xyz": [2053], "zcrm.us": [2053], "groupon.com": [7100], "chvc.us": [2053], "dev.mobileread.com": [10685], "thepiratebay.immunicity.win": [21217], "wiki.agilialinux.net": [19322], "www.cryptonotestarter.org": [19828], "vdownloader.es": [17771], "syspectr.com": [16011], "powweb.com": [13213], "olx.pt": [11984], "u.cfdp.dk": [2053], "hillingdon.firmstep.com": [20125], "www.southend-on-the-move.org.uk": [21513], "www.sensic.net": [11779], "artcoordination.aalto.fi": [428], "www.tummy.com": [21810], "bobcares.com": [2226], "blanqi.me": [2053], "m5s.info": [2053], "via.dj": [2053], "*.datstathost.com": [4247], "codecentric.de": [3422], "cass.io": [2053], "heyeddie.me": [2053], "i.aaxs.org": [2053], "brdy.in": [2053], "umd2.mycdn.me": [11014], "torqu.es": [2053], "www.fsrwiwi.htwk-leipzig.de": [7736], "zane.ga": [2053], "static.oddschecker.com": [20982], "login.trustwave.com": [17074], "forum.adium.im": [635], "www.tv4play.se": [16137], "kabel.canaldigital.no": [2862], "seb4.net": [2053], "unrl.me": [2053], "l.einar.me": [2053], "i.warketing.cl": [2053], "brrt.co": [2053], "mysql.carezone.cz": [2908], "vm.ag": [18096], "www2.atomicorp.com": [1364], "bngeni.us": [2053], "designova.net": [4469], "url.nucafl.org": [2053], "supporterz.jp": [15894], "givingprograms.com": [6813], "forms.canonical.com": [2869], "ngvpn36.nvidia.com": [11174], "m.plangrade.com": [2053], "esetnod32.ru": [5055], "dudley.greenparty.org.uk": [7052], "dell.to": [2053], "northeastjobs.org.uk": [20926], "panel.kei.pl": [8994], "emunewz.net": [5326], "ulthar.pw": [2053], "www.phpclasses.net": [12864], "aldi.com.au": [338], "www.meraki.com": [10447], "*.rpmfusion.org": [13682], "assets.adobedtm.com": [660], "huodong.fanli.com": [5769], "allbas.es": [2053], "www.feralinteractive.com": [5868], "yanbian.meituan.com": [10405], "duran.io": [2053], "developer.mulesoft.com": [10880], "wykop.pl": [18788], "1gn.in": [2053], "p4p.alibaba.com": [850], "www.niveusluna.org": [9834], "nymity.ch": [11797], "hbnk.org": [2053], "hao.1688.com": [44], "wayf.switch.ch": [15952], "garr.in": [2053], "www.bluemountain.com": [2195], "sprmar.io": [2053], "brbs.co": [2053], "telushealth.com": [16364], "business2.comcast.com": [3525], "esf.link": [2053], "g.4thepf.com": [2053], "what.cd": [18526], "g4.hitravel.xyz": [2053], "lyle.ly": [2053], "action.mathtag.com": [10236], "csj.news": [2053], "noris.net": [11682], "kjll.cm": [2053], "kaazing.com": [8911], "mygsd.org": [2053], "www.bnymellon.com": [19566], "seeedstudio.com": [14796], "www.smackcoders.com": [15224], "www.apricorn.com": [1178], "www1.theladbible.com": [21702], "hamradioscience.com": [7311], "cleg.us": [2053], "www.codepoet.com": [19749], "madgr.co": [2053], "decor.eik.bme.hu": [1570], "e.pxlrmpg.com": [2053], "www.mathiasbynens.be": [10233], "go.vrelk.com": [2053], "donottrack-doc.com": [4699], "natty.us": [2053], "bg.rbth.com": [21267], "www.aeolusproject.org": [719], "cherepovets.beeline.ru": [1801], "gizey.at": [2053], "review.udacity.com": [17392], "secure10.pipni.cz": [12460], "universalenroll.dhs.gov": [4109], "www.bsidesslc.org": [1589], "vnydarts.us": [2053], "store.xfinity.com": [22082], "o.ouileo.com": [2053], "www.sensiolabs.com": [14831], "wind.st": [2053], "www.victorinox.com": [17966], "www.pony.fm": [13122], "my.screenname.aol.com": [361], "pictwiittcr.com": [2053], "gdnrs.cafe": [2053], "s.bewetravel.pl": [2053], "advancement.umd.edu": [17549], "riga.lv": [14113], "fs21.formsite.com": [20148], "lxm.cc": [2053], "autodiscover.cs.berkeley.edu": [17526], "ligman.me": [2053], "secure.rec1.com": [13876], "*.de-cix.net": [4096], "scf.alfabank.ru": [842], "warwickshire-consult.objective.co.uk": [20979], "name.com": [11204], "leef.to": [2053], "img2.eadaily.com": [19986], "ftbll.co": [2053], "br.de": [1581], "fresalina.co": [2053], "customers.percona.com": [12769], "go.alexvt.nl": [2053], "globalvoicesonline.org": [6857], "ci.usembassy.gov": [21879], "nt.md": [2053], "docs.zoho.com": [19202], "vinumeris.com": [18017], "petemargot.me": [2053], "morchkov.com": [2053], "www.cablesurf.de": [2764], "rnmkr.me": [2053], "www.mexbt.com": [10298], "www.linear.com": [9529], "plantsolution.de": [12995], "secondlookforensics.com": [14707], "*.our-hometown.com": [12346], "bekir.ga": [2053], "login.virginmedia.com": [18028], "images.icecat.biz": [8059], "www.pauldotcom.com": [12671], "www.alternativeto.net": [925], "jar.in.ua": [2053], "sellb2b.com": [2053], "notalwaysright.com": [20931], "ln-x.com": [2053], "pro.syncsearch.jp": [15985], "jimc.biz": [2053], "creativecow.net": [3849], "url.aziz.pw": [2053], "admin.hosts.co.uk": [7689], "appseccalifornia.org": [1173], "supporthtml.oracle.com": [12284], "mobiepaper.apps.welt.de": [18492], "administrace.hosting90.cz": [7671], "travelga.me": [2053], "fimc.net": [10329], "delivery.o.switchadhub.com": [15954], "tdy.sg": [2053], "think.usc.edu": [17563], "grcgrp.co": [2053], "100pu.re": [2053], "eat.ch": [4966], "bbs.freech.net": [20162], "tk.1688.com": [44], "stateoftheinternet.com": [15675], "pilgrimagesoftware.com": [12886], "www.hubic.com": [7742], "www.carrefoursa.com": [2921], "icecat.biz": [8059], "www.1431am.org": [39], "www.parrot.org": [12619], "support.digiguide.tv": [19918], "ssl.ncsu.edu": [11690], "writ.rs": [2053], "med.news.am": [20900], "d211.st": [2053], "t41.ru": [2053], "www.orchiddiva.com": [12297], "*.grinnell.edu": [7083], "vansso.harland.net": [7339], "www.greenpeace.de": [7063], "gmnfbk.de": [2053], "stat.onestat.com": [12044], "frontr.co": [2053], "eusecwest.com": [5080], "freemovement.org.uk": [6262], "slhr.hk": [2053], "t.web.tn": [2053], "data.miasto.payback.pl": [21088], "www.sintjansbrug.nl": [8661], "tante.cc": [16203], "thehubpeople.com": [21701], "www.lurkmore.ru": [9838], "wireedit.com": [18662], "mzl.meituan.com": [10405], "deciso.com": [19887], "app-de.resrc.it": [13832], "stedebroec.nl": [11324], "aea.se": [718], "serviziseo.eu": [2053], "maps.westlancs.gov.uk": [22007], "selfserve.havant.gov.uk": [20318], "dulin.me": [2053], "kielh.me": [2053], "tunnelbroker.net": [17109], "kwiz.li": [2053], "keepsthelightson.vpsboard.com": [18158], "www.lincstothepast.com": [9526], "cloudcoach.me": [2053], "revolvermaps.com": [21303], "ar.udacity.com": [17392], "www.newclimateforpeace.org": [11494], "piv.al": [2053], "za.firis.de": [2053], "www.gavick.com": [20206], "forgottenlands.eu": [6156], "infobox.ru": [8256], "consult.barnsley.gov.uk": [19488], "pro-far.it": [2053], "signalvnoise.com": [21446], "bzzq.co": [2053], "sci-hub.ac": [14615], "freemail.web.de": [18347], "bi.insydeit.com": [2053], "jp.redhat.com": [13909], "worksthatwork.com": [18747], "wa.ui-portal.de": [17230], "res-3.cloudinary.com": [3367], "der-preis-jaeger.de": [4458], "s.aioria.jp": [2053], "zm.usembassy.gov": [21879], "rvve.in": [2053], "lambeth.greenparty.org.uk": [7052], "smthfldfds.co": [2053], "tnsne.ws": [2053], "images3.bovpg.net": [2305], "www.omarandwill.com": [11987], "cpxl.golem.de": [6946], "cdn.trend.az": [21786], "sss.gov": [17302], "quote.ms": [2053], "tocco.ch": [16797], "vladikavkaz.beeline.ru": [1801], "cent.lu": [2053], "sandsmedia.com": [14448, 14449], "lagi.sale": [2053], "www.federalreserve.org": [5834], "www.bloomingtonfools.org": [6228], "wegohealth.com": [18480], "www.marmotte.net": [10191], "gerrit.beaker-project.org": [1781], "d.calameo.com": [2791], "www.gettyimages.pt": [6741], "teessi.de": [2053], "pictures.escapia.com": [20055], "libreofficebox.org": [9472], "kbord.me": [2053], "spokane.wustl.edu": [18290], "*.dating.superforum.org": [14883], "s125.cnzz.com": [3391], "strea.mr": [2053], "barclays.co.uk": [1710], "citaco.es": [2053], "crissp.poly.edu": [13113], "www.adreclaim.com": [19299], "nine.ch": [11606], "m.openbank.ru": [21008], "service.avm.de": [1493], "cvip.in": [2053], "monster-wow.com": [10754], "au2.uicdn.net": [17236], "on.fhei.org": [2053], "aspirationtech.org": [1308], "www.aolplatforms.com": [365], "app42.sh": [2053], "kundencenter.telekom.de": [4490], "enetbanking.hdfcbank.com": [7389], "go.bleam.co.uk": [2053], "sportifik.com": [15541], "mail.rsc.org.uk": [13691], "www.webarch.net": [18405], "dnav.cms.gov": [19742], "sdbr.co": [2053], "*.eucalyptus.com": [5503], "casanaranja.squat.net": [21549], "239r.tk": [2053], "*.halifax.co.uk": [7305], "link.aev.su": [2053], "tri.nity.me": [2053], "autodiscover.earth.leeds.ac.uk": [17604], "bannon.me": [2053], "vistumbler.net": [13779], "ecn.t5.tiles.virtualearth.net": [18046], "forensischinstituut.nl": [11324], "madeinafreeworld.com": [10004], "ma1.twimg.com": [17153], "www.recycleforsurrey.org.uk": [21279], "pjh.link": [2053], "docs.prediction.io": [13249], "my.oracle.com": [12284], "lam.norton.com": [11703], "kunk.org": [11139], "beta.works": [2053], "ratingsportal.food.gov.uk": [20142], "bsr.life": [2053], "toppro.tv": [2053], "sldvs.uic.edu": [17517], "ergoba.by": [2053], "delivery.com": [4411], "www.davidgold.co.uk": [4304], "postmaster.xmission.com": [18831], "news.uic.edu": [17517], "cdn-sec.optmd.com": [12265], "avosapi.delicious.com": [4405], "dailym.ai": [2053], "www.epoch.com": [5428], "chase.com": [3085], "lobik.es": [2053], "*.piraten-partei.ch": [12487], "sforce.co": [2053], "www.cryptoseal.com": [3934], "www.hotmail.msn.com": [9961], "southsudan.usembassy.gov": [21879], "harbour.jolla.com": [8771], "cereproc.com": [3024], "content.prnewswire.com": [12490], "westwilts.greenparty.org.uk": [7052], "*.gameological.com": [6552], "www.anibis.ch": [19390], "technor.ms": [2053], "drupal.org": [4876], "amyrose.org": [2053], "developer.axosoft.com": [1517], "ideal.jobs": [2053], "noleav.es": [2053], "epn.mx": [2053], "sacent.co": [2053], "wordville.me": [2053], "surp.co": [2053], "kingston.greenparty.org.uk": [7052], "b.blackpier.com": [2053], "translate.yandex.com.tr": [18954], "safariflow.com": [14460], "*.advertstream.com": [696], "*.mayoclinic.org": [10272], "hupstream.com": [7771], "www.jacoblangvad.com": [8635], "tuv.com": [3692], "t11.tv": [2053], "j.kashiken.net": [2053], "www.afeld.me": [19314], "platt.guru": [2053], "yumbl.es": [2053], "infobaselistexpress.com": [548], "bst7.gismeteo.ru": [6789], "cdn03.animenewsnetwork.com": [19391], "archive.wizards.com": [18687], "cdn.oreillystatic.com": [11860], "morphis.com": [10786], "baz.co": [2053], "cdn.mobify.com": [10681], "bits.debian.org": [4353], "appt.fr": [2053], "image.infoseek.rakuten.co.jp": [13768], "esac.osu.edu": [11959], "shaunlorrain.com.au": [14931], "web-coach.at": [2053], "www.pixiv.net": [12960], "www.httpsnow.org": [5007], "img.auctiva.com": [1383], "poc.fyi": [2053], "www.chocolatfrey.ch": [3156], "es.gamigo.com": [6563], "wodc.nl": [11324], "support.kaspersky.ru": [8959], "lynn.so": [2053], "si3.rgstatic.net": [13655], "cfinewine.com": [2053], "maclaur.in": [2053], "metrics.ikea.com": [8108], "customers.reuters.com": [14069], "ntchosting.com": [11149], "www.coinmarketcap.com": [19752], "www.shtuff.it": [14993], "www.crbug.com": [3838], "exposure.mobi": [2053], "www.bikeability.org.uk": [19532], "www.cip.ikea.com": [8108], "kbne.ws": [2053], "datalogix.com": [4280], "3dsupply.de": [160], "ai.taobao.com": [16206], "thegearhunter.co.uk": [16547], "stackcommerce.com": [15613], "yndl.co": [2053], "marketplace.constantcontact.com": [3657], "tshon.com": [2053], "mchl.ws": [2053], "plymouth-consult.objective.co.uk": [20979], "*.argos.co.uk": [1224], "browhaus.nyc": [2053], "stream1.ml": [2053], "docs.openpgpjs.org": [12162], "nquaye.me": [2053], "www.trinityfi.org": [17013], "canaan.nets.hk": [2053], "i.tvit.cz": [2053], "www.vozpopuli.com": [18156], "stratechery.com": [15764], "w.danielpaz.net": [2053], "www.digitalforensicsmagazine.com": [4570], "trev.pl": [2053], "dovetailservices.com": [4815], "nchinc.biz": [2053], "*.mark.reevoo.com": [13947], "*.www.cadsoft.de": [2770], "go.es.io": [2053], "dfc.to": [2053], "urls.colearn.be": [2053], "voys.nl": [18155], "scs-assets-cdn.vice.com": [17959], "gbh.ag": [2053], "www.hexplo.it": [7521], "media.sundance.tv": [21605], "*.media6degrees.com": [10315], "jolyn.us": [2053], "eugene.kaspersky.com": [8958], "optmzpr.me": [2053], "labs.parabola.nu": [12589], "publicapps.oxfordshire.gov.uk": [21056], "roadworks.org": [21318], "consumersupport.lenovo.com": [9409], "c.amazon-adsystem.com": [950], "deepsec.net": [4376], "gamehou.se": [2053], "pimsweb.tameside.gov.uk": [21659], "earlyyears.valeofglamorgan.gov.uk": [17825], "imap-02.ct.infn.it": [7913], "www-mpy.desy.de": [4479], "api.coderwall.com": [3439], "thumb.mais.uol.com.br": [17276], "www.coastdigital.co.uk": [3398], "nclr.tv": [2053], "encase.com": [7134], "myaccount.n-somerset.gov.uk": [11046], "go.iamlee.ch": [2053], "gocarolinas.us": [2053], "www.dental.uw.edu": [17355], "www.fazekas.hu": [5813], "babol.at": [2053], "advncd.st": [2053], "endv.co": [2053], "www.europe.redhat.com": [13909], "carenet.fnfismd.com": [6087], "wings.buffalo.edu": [17583], "netfox.ru": [11423], "shoptiques.com": [14976], "yts.to": [18927], "310ei.info": [2053], "groups.io": [7106], "holidays.cathaypacific.com": [2963], "squat.gr": [21548], "www.playonlinux.com": [13013], "cir.ca": [3212], "4nd.de": [2053], "www.btckan.com": [1602], "stage.mbusa.com": [9890], "myheritage.no": [11023], "myheritage.nl": [11023], "glassdoor.com": [6823], "doig.net.au": [2053], "url.scott.ws": [2053], "svn.re": [2053], "playmates.com": [13029], "bitly.srwz.us": [2053], "so.awe.sm": [1500], "alex.dojotoolkit.org": [4727], "gju.st": [2053], "blogdomello.co": [2053], "*.norid.no": [11681], "cdn.postovoy.org": [21181], "l.h4s.club": [2053], "dngdng.net": [2053], "myc.ph": [2053], "oae.stanford.edu": [15635], "m.vedomosti.ru": [21900], "dnt.twimg.com": [17153], "midog.net": [2053], "plld.co": [2053], "www.bit.nl": [1563], "go.bingoal.be": [2053], "dowjones.com": [11512], "adagio.com": [590], "fool.com.au": [10801], "images.cheezburger.com": [3114], "mediaed.org": [10316], "www.virwox.com": [18022], "www.bayden.com": [1753], "g02.t.alicdn.com": [846], "assets.crucial.de": [3902], "www.rd.io": [13828], "hpklr.be": [2053], "realmedia.channel4.com": [3062], "s.aimerci.in": [2053], "ssl-i.cdn.openx.com": [12193], "kyzyl.beeline.ru": [1801], "roski.usc.edu": [17315], "satoshidice.com": [14540], "etf.as": [2053], "blog.hubspot.com": [7739], "froy.co": [2053], "web2.login.cornell.edu": [3744], "chatbot.link": [2053], "deliv.leboncoin.fr": [20650], "msevents.microsoft.com": [10543], "sunglasswarehouse.com": [15856], "cpsc.co": [2053], "lbo-news.com": [20643], "graph.renren.com": [14004], "accounts.apigee.com": [1132], "dmp.theadex.com": [16597], "sustainability-ornl.org": [11892], "stork.eid.lt": [5222], "cospar-assembly.org": [2698], "darkstar.ist.utl.pt": [16287], "cme.stanford.edu": [15634], "gettyimages.se": [6741], "new-nations.net": [11487], "ilpo.st": [2053], "t3.io": [16032], "sejr.nl": [2053], "pki.irisgrid.es": [13896], "via.parithi.com": [2053], "forgeworld.co.uk": [20146], "ccuo.co": [2053], "litsupp.guru": [2053], "omron.com": [12003], "q.s2node.com": [2053], "vaers.hhs.gov": [7192], "cdn.bizible.com": [19545], "go.ociru.net": [2053], "www.swissdigicert.ch": [15951], "sharedvalue.org": [14918], "miasto.payback.pl": [21088], "be.contentful.com": [3680], "bdha.co": [2053], "www.zuse-crew.de": [19242], "learn.uvm.edu": [17353], "fisd.westminster.gov.uk": [18516], "purplecrush.net": [2053], "tag.yieldoptimizer.com": [18990], "my.rarus.ru": [21258], "tubep.ro": [2053], "condor.com": [3626], "d1g1tl.space": [2053], "websvn.kde.org": [8871], "www.lonesurvivor.co.uk": [9748], "gftrib.com": [2053], "www.ubuntu-fr.org": [17376], "ftrclss.ca": [2053], "www.expandedsupport.com": [5611], "t7.io": [2053], "thekitc.hn": [2053], "*.australia-unsc.gov.au": [1417], "bmp.social": [2053], "www.mediacru.sh": [10337], "kylebj.us": [2053], "nst.bz": [2053], "enrol.kirklees.gov.uk": [9067], "trac.enlightenment.org": [5382], "on.cr25.uk": [2053], "buywh.at": [2053], "pay.netverify.com": [11449], "patriotssuperbowl.us": [12669], "jay.tools": [2053], "on.lapakko.com": [2053], "www.is-its.org": [8509], "*.malwaretracker.com": [10092], "exoclick.com": [5608], "www.netzpolitik.org": [11470], "dewa.rs": [2053], "berkonl.in": [2053], "blogbr.ashleymadison.com": [1289], "data.highways.gov.uk": [20340], "passport.everydayhero.com": [5560], "dieecs.uniovi.es": [17479], "itv.com": [7998], "ctkarch.org": [19834], "sypadelai.de": [2053], "engineering.linode.com": [9547], "www.atmail.com": [1359], "jobcloud.ch": [20545], "rex.to": [2053], "accounts.surfeasy.com": [15904], "yrj.legal": [2053], "go.dmuth.org": [2053], "www.zenmate.hu": [19133], "atmos.illinois.edu": [17544], "l.kchoptalk.com": [2053], "pay.gov": [12676], "th4nk.ml": [2053], "www.zenmate.hk": [19133], "spogo.io": [2053], "payments.amazon.de": [19369], "junkyard.ly": [2053], "anse.rs": [2053], "mullet.se": [10881], "stats.nic.cz": [11572], "s.ixq.com.tw": [2053], "www.lotto.de": [9777], "statistiky.cesky-hosting.cz": [19680], "www2.georgetown.edu": [6668], "*.duke.edu": [4895], "secure1.tagonline.com": [16038], "to.semiotica.jp": [2053], "springboard.fastspring.com": [5793], "paie.state.gov": [17345], "eric.ly": [2053], "partner.just-eat.no": [20565], "bbhelp.cit.cornell.edu": [3744], "endchan.xyz": [5346], "gq-magazine.co.uk": [6495], "bogota.usembassy.gov": [21879], "dg54.mycdn.me": [11014], "dotmailer.com": [4789], "www.elearning.homeoffice.gov.uk": [20355], "onemonth.com": [12050], "macports.org": [9986], "www.arteradio.com": [19422], "wiht.link": [2053], "andym.im": [2053], "rosbank.ru": [21328], "descience06.carbonmade.com": [2891], "www.piwik.univention.de": [17511], "vpic.video.qq.com": [13514], "apps.ipswich.gov.uk": [8499], "filetrip.net": [5910], "inoreader.com": [8306], "flixbus.cz": [6047], "b1-link.de": [2053], "flixden.com": [6048], "www.mcwhirter.com.au": [10289], "www.wishmich.org": [10069], "*.bennetts.co.uk": [1831], "ui.aggregateknowledge.com": [764], "www.dialogic.com": [19912], "l.euri.ca": [2053], "*.sinica.edu.tw": [15097], "cao.stanford.edu": [15635], "static.thefullsignal.com": [6371], "gockel.me": [2053], "cwf.staticcache.org": [15684], "3.vgc.no": [17776], "w.lcrga.com": [2053], "allde.co": [2053], "kommaer.dk": [9116], "bitcoinfoundation.org": [2030], "ourbay.xyz": [21217], "www.pamconsult.com": [12556], "www.youtube.bg": [19016], "www.nordichardware.com": [11670], "includes.okccdn.com": [11969], "*.adsrvmedia.com": [673], "login.postini.com": [13205], "nextco.nf": [2053], "tailgatersparking.com": [16167], "pdftoword.com": [12440], "www.hdfury.com": [7182], "bitmissile.com": [1988], "*.backlift.com": [1641], "zzinsi.de": [2053], "www.magnetsearch.net": [21709], "webmail.names.co.uk": [11214], "pin.harvard.edu": [7351], "nicola.xyz": [2053], "xfce-help.org": [21006, 21007], "www1.umn.edu": [17554], "ooda.com": [11850], "gtrc.biz": [2053], "url.vorst.co": [2053], "gorno-altaysk.beeline.ru": [1801], "ideasm.co": [2053], "nextstudioapps.com": [9283], "fu.io": [2053], "www.maxcdn.com": [10256], "shrt.webdots.at": [2053], "announce.ft.com": [20183], "www.magazin.io": [10012], "ilogo.in": [7902], "www.quotemedia.com": [13609], "api.facebook.com": [5733], "img6.douban.com": [4802], "stc.tc": [2053], "warez-bb.org": [18273], "msmas.mx": [2053], "www.usecryptos.com": [17713], "developers.bitinvest.com.br": [2048], "spreadshirt.at": [15552], "sp4.us": [2053], "mspinsider.co": [2053], "dev.w3.org": [18184], "dnscurve.org": [4137], "dutch.belgium.usembassy.gov": [21879], "jilin.jd.com": [8571], "kkarim.co": [2053], "twtpoll.com": [17177], "*.photoprintit.com": [12860], "www.tns-counter.ru": [16792], "eastdevon.greenparty.org.uk": [7052], "www.munzinger.de": [10894], "hrg.ms": [2053], "firstlook.pnas.org": [12476], "domain-dns.com": [4736], "quintusmkg.ca": [2053], "openclassrooms.com": [12127], "secure.gettyimages.in": [6741], "interlan.se": [8401], "status.acuityscheduling.com": [543], "secure.gettyimages.ie": [6741], "labconnect.wustl.edu": [18290], "ekomi.co.*": [5020], "license.psoft.net": [13172], "secure.gettyimages.it": [6741], "bycraft.cz": [2541], "embed.spotify.com": [15548], "way.in": [2053], "r.ijustin.hk": [2053], "www.topuniversities.com": [16834], "gattutor.us": [2053], "www.diasporabrazil.org": [4531], "www.bnf.org": [2396], "thechangelog.com": [16522], "www.mipt.ru": [20802], "accountkiller.com": [497], "rtky.co": [2053], "play.podtrac.com": [21158], "www.socialcube.net": [15320], "bdsphoto.co.uk": [2053], "www.miapple.me": [10512], "www.numenta.com": [20961], "www.sundance.tv": [21605], "accountsupport.com": [498], "l.gocdkeys.com": [2053], "petrozavodsk.beeline.ru": [1801], "linkomanija.net": [9539], "20khz.gizmodo.com": [6817], "s.bsk.im": [2053], "www.bud.tid.gov.hk": [7212], "*.moddb.com": [10702], "steverei.ch": [2053], "theads.me": [16598], "zuno.eu": [19078], "blogs.netapp.com": [11374], "www.threatmetrix.com": [16661, 16662], "urac.org": [17292], "bev.click": [2053], "bcaws.aviationweather.gov": [19463], "www.es.gy": [5457], "autodiscover.oaklands.ac.uk": [20976], "jogos.zwame.pt": [19243], "shop.btcs.com": [1603], "hobsons.com": [20348], "www.datacell.is": [4255], "hed.vg": [2053], "www.paetec.com": [12410], "rpa.life": [2053], "www.tinkersoup.de": [16746], "dungnv173.visualstudio.com": [18078], "beta.mining.bitcoin.cz": [10614], "tnkg.tk": [2053], "www.traviscistatus.com": [16978], "www.dave.org.uk": [4300], "jordan.usembassy.gov": [21879], "training.drweb.com": [4879], "geef.nl": [6610], "packetstormsecurity.com": [12521], "www.librarycatalogue.northamptonshire.gov.uk": [20925], "money.us": [2053], "www.mitls.org": [10513], "pypy.org": [10462], "spiritsnj.co": [2053], "p4.xyx.hao123img.com": [20313], "fxp.co": [2053], "ssl0.ovh.net": [12378], "pay.mts.ru": [20846], "grail.cs.washington.edu": [17577], "fedtimes.ly": [2053], "germanwin.gs": [2053], "uno.vc": [2053], "www.bittorrenthub.me": [2077], "btl.today": [2053], "securepurchaseserver2.com": [14754], "groupme.com": [7096], "www.ensigniamail.com": [5389], "utexas.edu": [17572], "security.mirea.ru": [20805], "gearworkstire.com": [6608], "*.mystockoptions.com": [10977], "blogi.pspr.fi": [2053], "www.voyage-prive.it": [18153], "jiyuan.meituan.com": [10405], "*.oxfordjournals.org": [12395], "ikiwiki.iki.fi": [8110], "stations.fcc.gov": [5826], "www.atheists.org": [1349], "elf.sovcombank.ru": [21516], "en.unionpay.com": [17478], "edugui.de": [2053], "www.dcard.tw": [19869], "messenger.ngageics.com": [11565], "www.stavrovski.net": [15693], "hlh.scot": [2053], "mrow.co": [2053], "s.booknik.ru": [2053], "www.chain.com": [3040], "www.t2-project.org": [21644], "i3-groceries.asda.com": [387], "www2.houseoffraser.co.uk": [7709], "tandfonline.com": [8267], "venuemaps.virtualearth.net": [18046], "jets.js.org": [20555], "mndfx.co": [2053], "za1.effectivemeasure.net": [5208], "japantimes.co.jp": [16461], "odeg.nu": [2053], "hiplogin.stanford.edu": [15635], "shally.me": [2053], "skatens.co": [2053], "t.khongming.my": [2053], "*.redbullmobile.at": [13903], "arif.fm": [2053], "dev.gogetssl.com": [6905], "individual-villas.co.uk": [18790], "s.vevo.com": [17773], "code.jquery.com": [8598], "intrgn.co": [2053], "sourcetreeapp.com": [15425], "m.baifubao.com": [1664], "uwayuc.org": [2053], "capify.org": [2876], "posterstoreuk.com": [13196], "www.threatpost.com": [16663], "*.gaiahost.coop": [6419], "finavia.fi": [5949], "sikkerhetsbutikken.sparebank1.no": [21524], "swartz.link": [2053], "www.psychologytoday.com": [13417], "www.ovh.biz": [11884], "arte.tv": [19422], "x.plmb.co": [2053], "gnomejournal.org": [6471], "www3.bnl.gov": [19564], "help.gmx.com": [6467], "jons.me": [2053], "www.kde-apps.org": [21006], "www.cooperating-objects.eu": [3714], "go.tao.ru": [2053], "video.idnes.cz": [20425], "news.mstr.cd": [2053], "caprioli.se": [12802], "bw.vcd.org": [17766], "media.podcasts.it.ox.ac.uk": [17557], "www.telusinternational.com": [16364], "wilt.cl": [2053], "www.popcorntime.io": [13142], "blog.rstudio.org": [18730], "www.roccat.org": [14162], "s.kaovilai.pw": [2053], "octcom.co": [2053], "a8r.co": [2053], "dv8.io": [2053], "thefemin.co": [2053], "s.qlake.com": [2053], "rc4nomore.com": [21270], "www.commoncrawl.org": [3551], "www.arigus-tv.ru": [19415], "expr.tv": [2053], "consultationhub.edinburgh.gov.uk": [5185], "easylist.adblockplus.org": [601], "spreadshirt.net": [15552], "cwei.ch": [2053], "familypoint.co": [2053], "1nr.tv": [2053], "ln.alireza.es": [2053], "chx.meituan.com": [10405], "devolo.com": [4507], "blogs.iis.net": [7888], "mobl.io": [2053], "anderson.worldcat.org": [18748], "www.sci-hub.bz": [14615], "store.malwarebytes.org": [10093], "byo.com": [2362], "micropage.opera.com": [12252], "www.pureftpd.org": [13466], "dstlld.co": [2053], "e-iper.stanford.edu": [15635], "www.businesslink.gov.uk": [2518], "urolo.gy": [2053], "peermonitor.thomson.com": [16651], "g8.chaucanh.net": [2053], "bozhou.meituan.com": [10405], "zyan.scripts.mit.edu": [9916], "www.expo-virtuelle.fss.ulaval.ca": [17515], "www.adlantis.jp": [19292], "cms.elderscrolls.com": [19145], "testing.gimp.org": [20240], "www.dashlane.com": [4241], "fbdblog.co": [2053], "sds.to": [2053], "*.komro.net": [9122], "piratebayproxy.be": [21709], "f2.chaucanh.net": [2053], "udt.news": [2053], "*.cubics.com": [3981], "jgclarke.org": [2053], "wy.ndh.am": [2053], "dbr.mn": [2053], "www.darlinghq.com": [4233], "s.luosimao.com": [20726], "forums.hubspot.com": [7739], "gfasia.ca": [2053], "blog.bufferapp.com": [2459], "space.hgo.se": [7188], "celeb.bz": [2053], "hainan.jd.com": [8571], "on.rudylim.com": [2053], "*.globalamicistore.com": [6843], "tbgk.me": [2053], "omise.co": [20990], "fshnisyr.biz": [2053], "epa-sprg.ornl.gov": [11892], "www.trakk247.com": [16933], "quipne.ws": [2053], "www2.ulaval.ca": [17515], "wiki.libsdl.org": [9449], "media.vodafone.de": [18107], "clext.net": [2053], "a.adrolays.de": [665], "subscribe.condenastdigital.com": [3619], "rgou.in": [2053], "today.lbl.gov": [9219], "support.mashery.com": [10210], "*.codeplex.com": [3435], "go.bazinga.org": [2053], "go.phl17.com": [2053], "demo.piwik.org": [12950], "cdn-srv-public-c.xxxyours.com": [22090], "www.kbpravda.ru": [20582], "snkrhlcs.de": [2053], "1stwarning.com": [76], "*.ovi.com": [12379], "pivic.com": [2053], "fud.community.services.support.microsoft.com": [10543], "shop.flixbus.be": [6047], "yoak.in": [2053], "sheds.ws": [2053], "elements.photos": [2053], "fakena.me": [20095], "yourvideofile.org": [19047], "partiality.itunes.apple.com": [1160], "bytemark.co.uk": [2547], "wiw.cl": [2053], "myibj.com": [2053], "www.hotelmangaby.com": [7696], "grupotriton.com": [7113], "cstwy.co": [2053], "sfmagic.us": [2053], "is.ayokay.com": [2053], "thunder.cdn.overdrive.com": [12365], "bkb.ch": [20574], "lmly.co": [2053], "go.billtsai.com": [2053], "budsgunshop.com": [2452], "93.biz": [2053], "dads.to": [2053], "www.beanbaginc.com": [1783], "www.mnultimate.org": [20810], "webtrends.telegraph.co.uk": [16340], "oas.monster.com": [10752], "nicknym.demo.bitmask.net": [2056], "dmp.springserve.com": [15563], "www.ml314.com": [9923], "rdy.16mb.com": [2053], "smart-invests.biz": [15229], "cengagebrain.com": [2998], "hollywoodreporter.com": [7599], "pressbooks.ch": [21194], "calacade.my": [2053], "epayne.me": [2053], "suprt.us": [2053], "es.explore.t-mobile.com": [16026], "e14t.ca": [2053], "securecommunities.hse.gov.uk": [20389], "help.fitbit.com": [6002], "www.kaazing.com": [8911], "s.bfm.ru": [19524], "sellercentral.amazon.de": [19369], "*.mci.edu": [10291], "axelsimon.net": [1511], "go.rajanand.org": [2053], "outulsa.worldcat.org": [18748], "www.simplednscrypt.org": [15071], "on.msnbc.com": [2053], "wiki.vorratsdatenspeicherung.de": [334], "mrmnt.re": [2053], "yr.no": [22120], "www.humanevents.com": [7753], "wealden.objective.co.uk": [20979], "planet.xamarin.com": [18840], "vespermarine.com.au": [17943], "www.xww.ro": [18909], "mdia.st": [2053], "kan.do": [2053], "s.ip-edu.org": [2053], "df.ht": [2053], "v2c.me": [2053], "www.osdisc.com": [21035], "media5.com": [20766], "emskr.chefkoch.de": [3116], "braintreepayments.com": [2327], "www.ansa.it": [1096], "www.privatesearch.io": [13332], "csirt.vutbr.cz": [17814], "kruhtz.yt": [2053], "hsrls.com": [2053], "nikevideo.nike.com": [11595], "www.btsportbusiness.com": [1618], "midas.gtimg.cn": [7120], "tud.im": [2053], "pirateproxy.wf": [21711], "www.financialplanning.hsbc.co.uk": [20375], "www.careers.dpd.co.uk": [19956], "luancheng.meituan.com": [10405], "content.edgar-online.com": [4991], "rta.bz": [2053], "mcr.eaststaffsbc.gov.uk": [19993], "www.qxl.no": [13617], "v3lo.co": [2053], "auth.univ-paris-diderot.fr": [12607], "avi.gd": [2053], "go.qrafter.com": [2053], "cubify.com": [3982], "www.iweb.com": [8020], "fepp.state.gov": [17345], "ci.beap.ad.yieldmanager.net": [14114], "*.readcube.com": [13839], "cdn.keepstat.com": [8036], "uc4.me": [2053], "craftg.in": [2053], "sample.1688.com": [44], "qingyuan.meituan.com": [10405], "my.milton-keynes.gov.uk": [10588], "booklog.jp": [2256], "goacn.us": [2053], "coursematerials.amazon.com": [952], "dietmardreier.de": [19916], "www.geocaching.com": [6663, 6664], "webmaker.org": [10852], "zimbrablog.com": [19185], "dorg.io": [2053], "www.tourismepourtous.ch": [16887], "cult-labs.com": [3985], "bmrg.in": [2053], "www.chasepaymentech.com": [3086], "www.mett.tk": [3597], "mu.ln.com.ar": [2053], "*.superbreak.com": [7597], "netpl.us": [2053], "files.zenhub.io": [22129], "bioinformatics.knowledgeblog.org": [9100], "alasu.worldcat.org": [18748], "basul.to": [2053], "i.rystuff.net": [2053], "banking.spkrb.de": [21536], "ebib.co": [2053], "startrack.co": [2053], "ittra.in": [2053], "thedungeons.com": [16452], "www.privatecore.com": [13328], "static.123rf.com": [33], "tracker.bugcrowd.com": [2463], "atlas.thecthulhu.com": [16600], "affiliates.adultshopping.com": [684], "lh4.google.com.*": [6965], "s.tbcdn.cn": [16237], "kcoe.biz": [2053], "www.eduroam.es": [5201], "techpowerup.com": [16305], "club.360buy.com": [135], "*.unisys.com": [17489], "redbullmobile.com.au": [13904], "folio.jhu.edu": [16562], "winthe.net": [2053], "konto.money.pl": [10735], "www.jolla.com": [8771], "go.ethow.com": [2053], "msi.world.tmall.com": [21748], "autodiscover.education.leeds.ac.uk": [17604], "statuspage.io": [15691], "workforus.co": [2053], "peem.osu.edu": [11959], "origin-www.bloomberg.com": [2172], "rcoa.ch": [2053], "www.korpijaakko.com": [20616], "migra.in": [2053], "zhuxig.jd.com": [8571], "viestintavirasto.fi": [18001], "www.maymay.net": [10271], "favorites.live.com": [9644], "mcand.us": [2053], "slcn.pro": [2053], "maplesoft.com": [10136], "wordsapi.com": [18737], "www.conversejs.org": [3693], "*.performgroup.com": [12777], "pbgd.co": [2053], "kyberia.sk": [9204], "hounddogcentral.com": [7708], "secure.hbo.com": [7177], "www.ircity.ru": [20495], "www.joomlainfo.ch": [20550], "telf.az": [2053], "tosine.jd.com": [8571], "kore.io": [9135], "*.uploading.com": [17682], "amanda.zmanda.com": [19198], "widget.trustpilot.com": [17073], "tandridge.gov.uk": [16197], "bugs.exim.org": [5602], "whatbox.ca": [18530], "secure.pangaea.de": [12412], "w4.nz": [2053], "www.jeffnabers.com": [8696], "cygwin.com": [4053], "alex.je": [2053], "assets.kachingle.com": [8916], "trojantime.usc.edu": [17564], "link.mvaria.com": [2053], "mdshooters.com": [10207], "myaccount.stubhub.de": [15789], "christendom.worldcat.org": [18748], "www.netease.im": [11381], "*.blesk.sk": [2122], "*.voxel.net": [18148], "www.whitehatsec.com": [18549], "portal.thalysnet.com": [16434], "mbe.pm": [2053], "www.fe-ddis.dk": [5676], "go.cmualum.com": [2053], "obstud.io": [2053], "dassaultfalcon.com": [4244], "www.me.washington.edu": [17576], "programm.froscon.de": [6210], "pix.elfrau.com": [2053], "pinkong.bbs.taobao.com": [16206], "ticketonline.de": [16686], "bacaberita.org": [2053], "notif.bonadza.com": [2247], "ph.godaddy.com": [6898], "www.juso.ch": [20563], "catalog.plsinfo.org": [12749], "www.mythic-beasts.com": [11039], "towelroot.com": [21767], "jcstore.co": [2053], "sdry.co": [2053], "gullipics.com": [20295], "motion-store.adtile.me": [680], "www.cs.stanford.edu": [15635], "l.sascha.us": [2053], "it-sicherheit.de": [8343], "geak.tk": [3597], "berrange.com": [4220], "secure.progress.com": [13360], "sso.liveperson.net": [9654], "www.iberiabank.com": [8044], "r-n.co": [2053], "pibank.dengisend.ru": [4440], "licensing.wirral.gov.uk": [18672], "campina.com": [2841], "hrys.co": [2053], "ngcr.co": [2053], "*.mephi.ru": [10442], "c3i.nl": [2053], "www.matrix.org": [10242], "downloads9.mamp.info": [20744], "cnoinc.co": [2053], "mk.gl": [2053], "bendigobank.com.au": [1826], "shop.tdc.dk": [16051], "www.encrypteverything.ca": [5338], "jb.pearlsha.re": [2053], "ww3.lawschool.cornell.edu": [3744], "static0.gac.edu": [6418], "digicio.us": [2053], "buyiphone.apple.com": [1160], "go.kolbe.co": [2053], "www.mailerlite.com": [10048], "invasion-turnonsocial.netdna-ssl.com": [8458], "help.growingio.com": [20286], "www.tepamine.com": [4131], "assets.filestackapi.com": [5916], "d2.ligatus.com": [9502], "phil.mobi": [2053], "insft.co": [2053], "*.taxpayersalliance.com": [16235], "static.miniclipcdn.com": [10612], "sl.alglab.net": [2053], "youtube.sa": [19016], "jtdisc.link": [2053], "www.imagerights.com": [8128], "radioplayer.co.uk": [13755], "youtube.co.uk": [19016], "dxp.to": [2053], "jrpny.co": [2053], "ljp.es": [2053], "youtube.sk": [19016], "lumosity.com": [9832], "youtube.sn": [19016], "www.ai-radio.org": [327], "ecollector.responsetek.com": [21298], "hirehelp.co": [2053], "vsprt.com": [2053], "www.iniy.org": [20461], "www.youtube.com.eg": [19016], "ganglandnews.com": [6570], "signon.thomsonreuters.com": [16650], "i.root.cz": [14199], "i.iucnredlist.org": [8011], "www.directbox.net": [4613], "wscont.apps.microsoft.com": [10543], "ltrdmrk.xyz": [2053], "ideabank.mit.edu": [9916], "sll.org.uk": [15326], "donate.greenparty.org.uk": [7052], "www.offensive-security.com": [11935], "www.admin.ias.edu": [7815], "jobs.groupon.com": [7100], "dice.com": [4533, 4534], "www.openpgpjs.org": [12162], "media.familychristian.com": [5759], "untap.nyc": [2053], "www.fws.gov": [17338], "www.houndci.com": [7707], "fcc.gov": [5826], "techbriefings.stanford.edu": [15635], "moneybookers.com": [10738], "mtnplay.one": [2053], "esc.re": [2053], "r.spruse.com": [2053], "icnt.re": [2053], "www.captora.com": [19643], "static.entstix.com": [20046], "www.conoha.jp": [3652], "ideastations.org": [8075], "www.mywot.com": [10987], "cdn.nejm.org": [11495], "xyd.re": [2053], "downtownhost.com": [4826], "a.tumblr.com": [17101], "honestani.me": [2053], "ffdiaporama.tuxfamily.org": [21820], "desha.re": [2053], "www.library.nuigalway.ie": [11252], "peixian.meituan.com": [10405], "specc.ie": [2053], "nitn.gl": [2053], "promos.mcafee.com": [10282], "alnco.net": [2053], "www.stratford.gov.uk": [21586], "www.gamesrocket.de": [6557], "sh.fer.ac": [2053], "tesu.social": [2053], "is.to": [2053], "slct.al": [2053], "*.extatic.org": [5630], "liberalamerica.org": [9454, 9455], "www.octopoos.com": [11914], "erpm.umich.edu": [17552], "www.cryptography.com": [3964], "www.li.admin.ch": [21629], "o.inje.de": [2053], "static.velvetcache.org": [17894], "twoseasons.co.uk": [17172], "www.luciosgold.ca": [9812], "content.rolex.com": [14187], "www.eme.moe": [20031], "m.zalando.pl": [19094], "aboutairportparking.com": [12374], "bonitaetscheck.immobilienscout24.de": [8153], "project.tmt.org": [16638], "bk.chaucanh.net": [2053], "omlb.de": [2053], "archive.org": [8419], "0images-production.ideeli.com": [8079], "kfb.sparebank1.no": [21524], "mn.uio.no": [17615], "learn.websecurify.com": [18442], "www.contentful.com": [3680], "subscriptions-dsms.consilium.europa.eu": [5526], "www.youtube.com.tw": [19016], "www.petridish.org": [12810], "www.youtube.com.tr": [19016], "yourfone.de": [19042], "paprb.ac": [2053], "rushweb.us": [2053], "bizchannel.cimbbank.com.kh": [2661], "onename.io": [12037], "kabeldeutschland.com": [8912], "mdgx.com": [9897], "let.f9.do": [2053], "git.anomos.info": [1074], "www.youtube.com.tn": [19016], "tiup.in": [2053], "maxloans.nz": [2053], "*.gentooquebec.org": [6654], "www.ekomi-us.com": [5020], "*.cryptomonkeys.com": [3950], "www.natoonline.org": [11236], "mathsisfun.com": [10235], "bro.sh": [2053], "freespeech.org": [6269], "static.hsappstatic.net": [7236], "www.mibew.org": [10518], "scs.viceland.com": [21921], "bignerdranch.com": [1912], "beckerweb2.wustl.edu": [18290], "www.intechnology.co.uk": [8184], "www.gemeinderecht.wien.at": [22025], "edtrdept.me": [2053], "cmthd.com": [2053], "dhorner.us": [2053], "ecc-platform.org": [4978], "account.fir.im": [20123], "italian-country-cottages.co.uk": [18790], "cellio.co": [2053], "support.woothemes.com": [18717], "id.modx.pro": [20817], "bluespirit.es": [2053], "r-j.co": [2053], "l.santsys.com": [2053], "*.isle.jp": [8516], "ruha.ma": [2053], "gkyz.tk": [2053], "drty.fr": [2053], "l.fosi.org": [2053], "support.avito.ru": [19465], "wiki.wmtransfer.com": [18373], "stresslinux.org": [21592], "readcube.com": [13839], "syncplicity.com": [15984], "vip.bitcoin.co.id": [2015], "minetrack.me": [20799], "twtw.co": [2053], "u.hitravel.xyz": [2053], "cloud.citius.usc.es": [17711], "edupassport.bridgend.gov.uk": [19591], "bmmetrix.com": [2214], "kola.beeline.ru": [1801], "my.101domain.ru": [16], "link.jbrains.ca": [2053], "on.cdoug.net": [2053], "diplomaframe.com": [3189], "blogs.savethechildren.org.uk": [14553], "tribal.hants.gov.uk": [7328], "gbh.so": [2053], "podcast.zwame.pt": [19243], "hng.me": [2053], "i.lynx.works": [2053], "sslink.co": [2053], "legacy.kingston.com": [9054], "gvh.bz": [2053], "bugs.webkit.org": [18422], "myjeepgear.com": [2053], "printfriendly.com": [13293], "ongen.us": [2053], "cas.nottingham.ac.uk": [11726], "www.raspbian.org": [13804], "plancompare.medicare.gov": [20772], "n8br.us": [2053], "wpchick.me": [2053], "www.harperreed.com": [7341], "gamebillet.com": [6547], "plated.me": [2053], "www.Avanza.se": [1483], "rec-log.jp": [13875], "r7.mzstatic.com": [1159], "apidump.anidb.net": [1062], "uobiz.co": [2053], "imap.ct.infn.it": [7913], "youtube.com.tr": [19016], "gofi.gs": [2053], "rstbl.ch": [2053], "youtube.com.tw": [19016], "portal.triggit.com": [17010], "amazi.xyz": [2053], "ipo.boomstarter.ru": [19573], "www.kettering.gov.uk": [9015], "rskd.me": [2053], "zaoik.finam.ru": [20117], "koka.bz": [2053], "sealedabstract.com": [14680], "b8.hitravel.xyz": [2053], "s110.cnzz.com": [3391], "www2.seetickets.com": [14790], "bdkp.co": [2053], "a.tribalfusion.com": [17001], "www.trashy.com": [21785], "savewhal.es": [2053], "www.oskuro.net": [12325], "transpay.money": [2053], "trygghansa.se": [17083], "stats.ipinyou.com": [7950], "weichang.meituan.com": [10405], "www.sec-consult.com": [14335], "commonroom.engagedoncaster.co.uk": [5363], "beta.skypeassets.com": [15185], "ncds.netflix.com": [11421], "bitly.icf.io": [2053], "mytritonlink.ucsd.edu": [17216], "ru-golos.ru": [13711], "status.online.net": [12069], "account.kuleuven.be": [8969], "ainul-url.tk": [2053], "ftp.leboncoin.fr": [20650], "it.vuejs.org": [18165], "secure.mastermindpro.com": [10222], "i.envieapp.com": [2053], "cloudns.net": [3335], "snip2code.com": [15282], "commerce.1prime.ru": [73], "tiki.org": [16715], "drivethrufiction.com": [12029], "fccsyd.unizar.es": [17643], "ciw.edu": [2916], "www.guardtime.com": [20292], "dragoonarmy.msi.com": [9957], "3c.m.tmall.com": [21748], "*.iway.ch": [20518], "trust.ontraport.com": [21003], "*.freelancer.com": [6296], "edas.info": [5174], "merethis.com": [10458], "eletr.tk": [2053], "www2.speedwellsoftware.com": [21531], "art.com": [1255], "g.zisick.de": [2053], "secure.cryptocapital.co": [3937], "www.buckscc.gov.uk": [19604], "afew.to": [2053], "sunybroome.edu": [15864], "www.asmallorange.com": [249], "www.allegro.pl": [889], "campinaopschool.nl": [2842], "facepunch.com": [5737], "3joycasino.com": [20552], "iwmnetwork.com": [8017], "is.vutbr.cz": [17814], "dp2.specificclick.net": [15493], "chron.ly": [2053], "x2.chaucanh.net": [2053], "efn.tv": [2053], "winkdex.com": [18656], "go.jn222.com": [2053], "zwame.pt": [19243], "*.apwg.org": [1106], "i1.next.westlaw.com": [18514], "adorhm.co": [2053], "www.document.no": [4714], "www.ee.cuhk.edu.hk": [2747], "www.zugaina.org": [19237], "g0t0.co": [2053], "m.mobile.de": [20811], "lawschool.westlaw.com": [18514], "saltti.de": [2053], "springrts.com": [15558], "webmail.fastdomain.com": [5788], "sib.swedbank.nl": [15935], "cloud.cloudfoundry.org": [3358], "pond.imperialviolet.org": [8166], "www.cryptosanta.xyz": [3939], "prod-web.neu.edu": [11091], "carlsbad.org": [2914], "mlz.me": [2053], "auto.1688.com": [44], "acnfp.food.gov.uk": [20142], "kpt.ch": [8898], "on.fsp.org": [2053], "pof.com": [13035], "www.searx.me": [14692], "www.mammut.ch": [10097], "fb.anyweb.it": [2053], "egov.scambs.gov.uk": [21375], "on.voce.tv": [2053], "www.sklik.cz": [15161], "semr.nl": [2053], "www.machineslikeus.com": [9995], "autographicsportal.axosoft.com": [1517], "hrc.org": [7749], "portals.radware.com": [13758], "www.spidweb.com": [15521], "netfilter.org": [11417], "stl.co": [2053], "slovensko.sk": [15217], "content.developer.mashery.com": [10210], "blg.kreaweb.cl": [2053], "dryicons.com": [4881], "jifo.co": [8718], "mobile-ent.biz": [8376], "www.demo.com": [4101], "auth.ndla.no": [11309], "developer.nvidia.com": [11174], "linhai.meituan.com": [10405], "rugk.dedyn.io": [14264], "domain.de": [4739], "rsbac.org": [13690], "www.genome.gov": [17305], "www.baratikor.com": [4838], "go.crux.la": [2053], "dubai2013.honeynet.org": [20357], "tdg.im": [2053], "startl.co": [2053], "get.file43.com": [2053], "dlz.io": [2053], "wbwi.re": [2053], "tb.meituan.com": [10405], "tumorbiology.georgetown.edu": [6668], "wellc.me": [2053], "clickto.site": [2053], "library.cornell.edu": [3744], "huiyang.meituan.com": [10405], "intranet.humber.nhs.uk": [11102], "jcr.incites.thomsonreuters.com": [16650], "www.energiedesign.htwk-leipzig.de": [7736], "www.gfsfrance.com": [6443], "utsandiego.com": [17348], "aimatch.com": [781], "rasmussen.co": [2053], "raulbielsa.com": [2053], "starbucks.com": [15652], "www.trustedshops.co.uk": [17062], "card.wustl.edu": [18290], "wsuperslots.com": [2053], "ka.zuhi.co": [2053], "youtube.ng": [19016], "opswat.com": [11856], "domenovyprohlizec.cz": [4762], "youtube.no": [19016], "api.fbcdn.net": [5816], "ffs.ch": [15946], "jpcsp.org": [5326], "link.spedu.org": [2053], "ebppprod.alipay.com": [857], "www.financnahitparada.sk": [5943], "w.forumwizard.net": [6182], "mabatubetv.tk": [2053], "www.fashiondip.com": [5781], "x.caritas.ch": [2053], "a-ez.me": [2053], "u.osu.edu": [11959], "bit.jamm.ly": [2053], "1.azdhs.gov": [2053], "rightscale.com": [14117], "rorybe.ca": [2053], "blackboard.wku.edu": [22039], "reelseo.com": [13943], "www.exacom.sk": [5583], "econo.uniovi.es": [17479], "forsakringskassan.se": [6168], "provider.wirral.gov.uk": [18672], "www5.eere.energy.gov": [5355], "dcert.co": [2053], "shop.cryptalloy.de": [3916], "www.newstatesman.com": [11502], "blogs.yandex.by": [18953], "www.emubrightfutures.org": [18730], "cybrary.it": [19844], "ken.net.nz": [2053], "mry.cm": [2053], "emprbzr.co": [2053], "collectiveip.com": [3486], "crts.eu": [2053], "dnshistory.org": [4142], "buckinghamshire.spydus.co.uk": [21546], "corp.ibrands.es": [2053], "*.seafile-server.de": [14677], "nagios.debian.org": [4353], "w.ffab0.com": [2053], "dsny.io": [2053], "admin.solicitor-concierge.com": [15365], "static0.urbandictionary.com": [17697], "lifemapp.it": [2053], "rebrick.it": [2053], "*.spreadshirt.at": [15552], "osca.rs": [2053], "life.tenpay.com": [16375], "www.frid.ge": [6329], "supermedia.com": [15870], "*.stack.nl": [15612], "www.leapmotion.com": [9366], "*.articulate.com": [1269], "my.faa.gov": [5830], "thesatanictemple.com": [16574], "recruitment.highways.gov.uk": [20340], "storm.to": [2053], "static1.readyflowers.com": [13853], "*.myshopify.com": [14970], "phcc.co": [2053], "wiki.nci.nih.gov": [11241], "www.drchrono.com": [4843], "reconnecting.co": [2053], "tiscali.nl": [16356], "anping.meituan.com": [10405], "adultflirt.no": [2053], "sht.deazl.com": [2053], "university.aliexpress.com": [847], "zandvoort.nl": [11324], "zmanda.com": [19198], "www.section508.gov": [21397], "stations.itunes.apple.com": [1160], "saj.cc": [2053], "sweetslyrics.com": [15938], "*.r26.net": [16218], "o.nttur.ru": [2053], "img.vidup.me": [17997], "registry.hub.docker.com": [4704], "secure-static.tagged.com": [16164], "eso.qld.gov.au": [2053], "www.sipgate.co.uk": [15102], "preventreview.homeoffice.gov.uk": [20355], "deeo.dict.cc": [4536], "virtualinventions.com": [18043], "staging.maxmind.com": [10262], "*.jobcloud.ch": [20545], "dalee.ru": [19849], "sdbk.cc": [2053], "usti.idnes.cz": [20425], "www.easy-hebergement.fr": [5134], "orders.cspinet.org": [2733], "info-slhc-pp.web.cern.ch": [2632], "www.cumulusnetworks.com": [3990], "news.slashdot.org": [15192], "angl.in": [2053], "apps.telford.gov.uk": [21675], "library.stanford.edu": [15635], "praktikpladsen.dk": [21186], "derbyshirealert.co.uk": [19896], "acctx.co": [2053], "rosettacode.org": [14202, 14203], "crscrs.fr": [2053], "go.cogdog.it": [2053], "intsig.com": [20480], "rtbi.eu": [2053], "ptwi.se": [2053], "forums.adobe.com": [655], "wdws.com": [18195], "cn.forums-stage.oracle.com": [12284], "noshfol.io": [2053], "www.wavpin.com": [18306], "l.diehupe.com": [2053], "paydirtgold.com": [12682], "investor.shareholder.com": [14922], "lunametrics.co": [2053], "launch.stellar.org": [15720], "fieldguide.automattic.com": [1465], "undocumented.georgetown.edu": [6668], "bathecho.uk": [2053], "d.alipayobjects.com": [857], "182.fm": [2053], "www.jellynote.com": [8699], "b.gdski.pl": [2053], "www.is.vutbr.cz": [17814], "swke.co": [2053], "bookings.rottnestexpress.com.au": [14216], "www.upo.es": [17683], "www.hsbc.com.qa": [20384], "s.zumzi.com": [19241], "services.fit.edu": [6058], "d2gn.us": [2053], "okl2.scene7.com": [14580], "pcste.ps": [2053], "corporate.eastsussexlearning.org.uk": [19996], "www.hertz.com": [7511], "dailysign.al": [2053], "cnvrt.it": [2053], "www.csirt.cz": [2730], "bot.ngx.cc": [11569], "moelleken.org": [10716], "metrics.carphonewarehouse.com": [2920], "jupiterartland.org": [8838], "click237.com": [2053], "i.sgt.gr": [2053], "docs.modx.pro": [20817], "mainpage.pixfs.net": [12958], "it4msp.com": [2053], "okha.sakh.com": [21360], "hcinv.co": [2053], "img04.rl0.ru": [14147], "lvn.io": [2053], "cdn.zeltser.com": [19127], "minside.amnesty.no": [1012], "www.aspel.homeoffice.gov.uk": [20355], "s.onehundred.be": [2053], "asos.to": [2053], "charterourcommunity.com": [3082], "go.veron.sg": [2053], "idealse.at": [2053], "i.s-microsoft.com": [14295], "weather.bartbania.com": [1730], "weidebeef.migros.ch": [10566], "www.earthlink.biz": [5106], "gounes.co": [2053], "*.servercrate.com": [14850], "simonsfoundation.org": [15062], "cdn0.dailydot.com": [4191], "www.questionmarket.com": [13588], "such001.reichelt.de": [13978], "www.computerbase.de": [3602], "hitta.se": [20345], "test-dmtotem.web.cern.ch": [2632], "www.housing.uic.edu": [17517], "candi.ly": [2053], "hello.neustar.biz": [11472], "www.trafficprivacy.com": [16923], "t3dev.maxon.net": [10263], "discuss.zoho.com": [19202], "www.sverigesradio.se": [15928], "theiconic.com.au": [16558], "www.devon.gov.uk": [4509], "xangobuzz.com": [2053], "colomtn.me": [2053], "fdag.co": [2053], "techempower.com": [16264], "*.overcast.fm": [12366], "at.abv.mk": [2053], "rapidbuyr.com": [13790], "n1ck.in": [2053], "pete.pro": [2053], "df-feeds.live.net": [9643], "gocf.ml": [2053], "www.kosimak.com": [9142], "m-s.co": [2053], "slh.pw": [2053], "resources.risingstack.com": [21312], "odnote.com": [2053], "sagal.in": [2053], "nordkapp.net": [11674], "gnucitizen.org": [20258], "mps.click": [2053], "bon.lk": [2053], "www.quantixtickets8.com": [13569], "simplifydigital.co.uk": [21452], "b.tkcs.in": [2053], "app-de5.resrc.it": [13832], "b.rstmo.co": [2053], "photos1.blogger.com": [2160], "stmr.co": [2053], "wiredto.me": [2053], "ner.bz": [2053], "www.campusjob.com": [2843], "ln.meituan.com": [10405], "apostolics.in": [2053], "chevyta.lk": [2053], "eski.be": [2053], "i.microsoft.com": [10543], "*.rp-api.com": [14020], "hubzero.org": [7249], "oeticket.com": [11930], "www.rhein-neckar-loewen.de": [14093], "myip.ws": [2053], "nlx.org": [20917], "www.teamviewer.com": [16259], "uws.link": [2053], "twlk.ru": [2053], "url.raona.com": [2053], "fasm.co.uk": [2053], "jdit.me": [2053], "wikler.org": [2053], "winp.kr": [2053], "www.iaea.org": [7812], "wireclub.com": [18663], "www.healthcareers.nhs.uk": [11102], "counterwallet.io": [3776], "epnbc.objective.co.uk": [20979], "taylorandfrancis.com": [8267], "*.directory.live.com": [9644], "*.easyspace.com": [5137], "ovh.pt": [12378], "ovh.pl": [12378], "rns.ninja": [2053], "beta.nyx.cz": [11798], "drop.userscape.com": [17723], "youmiwang.tmall.com": [21748], "www.4kdownload.com": [179], "nzne.ws": [2053], "apps2.cardiff.gov.uk": [19644], "buy.fineproxy.org": [5961], "redbullbaja.com": [2053], "tickets.megaadventure.com.au": [20774], "stats.bedis.eu": [1797], "go.grgry.net": [2053], "ukba.homeoffice.gov.uk": [20355], "ne1.news": [2053], "pixelexit.com": [12954], "majors.stanford.edu": [15635], "petgl.ad": [2053], "on.dtj.org": [2053], "b.revlisoft.com": [2053], "r.web.de": [18347], "callum.li": [2053], "www.zrey.com": [22140], "www.webdesignmarketing.eu": [18397], "frntrnnr.com": [2053], "paypass.livingsocial.com": [9679], "ckd.li": [2053], "id3.idqqimg.com": [8073], "paste.fedoraproject.org": [5843], "login.novell.com": [11728], "okla.st": [2053], "no.citrix.com": [3237], "mador.ph": [2053], "signout.live.com": [9644], "www.catlinseaviewsurvey.com": [2964], "mod.gnutls.org": [6888], "patexia.com": [12660], "hntjmp.be": [2053], "ejournals.bc.edu": [1542], "democracy.tmbc.gov.uk": [16082], "tabletenn.is": [2053], "www.maker.tv": [10076], "developer.buscape.com.br": [2510], "s2net.it": [2053], "gii.st": [2053], "greenparty.org": [7053], "www.ernaehrung-per-klick.de": [10364], "go.osnetpr.com": [2053], "wiki.python.org": [13500], "action.amnesty.org": [994], "manage.passkey.com": [12640], "blog.openmandriva.org": [12153], "donate.fbk.info": [5818], "vq.io": [2053], "s.srinitai.net": [2053], "thex.academy": [2053], "nc.ht": [2053], "t.abs.ec": [2053], "assets.intego.com": [8351], "asumail.biz": [2053], "www.bdone.hu": [1771], "doktor.sovcombank.ru": [21516], "supertracker.usda.gov": [17495], "images.tchibo.de": [16240], "eon-uk.com": [4959], "w.saifsamir.com": [2053], "az31609.vo.msecnd.net": [9004], "cdn2.recombu.com": [13883], "www.world-lotteries.org": [22052], "www.cem.danskebank.dk": [4223], "www.thebigweddingmovie.com": [16514], "*.thefind.com": [16601], "m1x3d.co": [2053], "insa-lyon.fr": [7918], "tpc.googlesyndication.com": [6971], "status.mail.ru": [10040], "t.uppr.de": [21867], "api-cdn.embed.ly": [5299], "mrbrwn.co": [2053], "technologycareers.g4s.com": [20194], "www.ntpandp.com": [11164], "www.435bymjc.com": [171], "cloud1.arc.nasa.gov": [11058], "3sat.de": [162], "kasperskypartners.com": [8962], "ars.shoes": [2053], "publicaffairs.stanford.edu": [15635], "sal.hn": [2053], "grd.bz": [2053], "www.millenniumseating.com": [10584], "itnotices.iu.edu": [8214], "mrtz.us": [2053], "www.gdata.fr": [6410], "servicios.afip.gob.ar": [19318], "*.rnw.nl": [13672], "status.udacity.com": [17391], "edrn.jpl.nasa.gov": [11058], "eacuk.org": [2053], "gwel.ch": [2053], "my.gogetssl.com": [6905], "www.hdbits.org": [7388], "help.cir.ca": [3212], "aburchfield.com": [2053], "developers.zomato.com": [19208], "www.cryptocon.org": [3928], "symbolab.com": [15970], "www.theworkdept.com": [16593], "secure5.vend-o.com": [17897], "link.svrooij.nl": [2053], "store.richarddawkins.net": [14105], "i0.poll.fm": [13106], "admin.touclick.com": [16880], "theweek.io": [2053], "www.onlandscape.co.uk": [12016], "u.shafeeque.in": [2053], "itslearning.com": [8543], "zncommute.com": [2053], "imlarry.me": [2053], "eindhoven.cr.yp.to": [3817], "foundation.walmart.com": [18260], "plista.com": [13040], "rescue.org": [21295], "www.marvel.com": [10201, 10202], "booking.tigerair.com": [16710], "blog.apiary.io": [19401], "www.wageworks.com": [18241], "zunyi.jd.com": [8571], "*.freelancer.co.uk": [6296], "uflx.co": [2053], "wfts.tv": [2053], "pt-br.cloudflare.com": [3344], "www.velocitymicro.com": [17890], "classifieds.nncogannett.com": [6571], "thaws.me": [2053], "tcd.link": [2053], "www.sitefinity.com": [15126], "images.ukfast.co.uk": [17247], "lb.meituan.com": [10405], "i.jackgraal.com": [2053], "aazr.in": [2053], "wcs.fyi": [2053], "sso-prod3.cisco.com": [3221], "proxy.piratenpartij.nl": [12924], "tel.care": [2053], "*.visa.com": [18052], "copiny.com": [3721], "sslop.es": [2053], "web.satd.uma.es": [17423], "escrow.alibaba.com": [850], "release.thegreatcoursesplus.com": [16550], "insshow.tk": [2053], "lokalsystem.ub.uni-mainz.de": [17611], "branding.tiki.org": [16715], "i2c.no": [2053], "status.dyn.com": [4918], "libanswers.wustl.edu": [18289], "adserver.adtech.de": [678], "twky.in": [17171], "www.thetechnoskeptic.com": [16583], "www.bezeq.co.il": [19522], "www.gemius.pl": [6638], "shadowofmordor.com": [14897], "hemden-de.de": [2053], "static.trafficjunky.com": [21775], "appleseedcdn.apple.com": [1160], "patreon.com": [12667], "buffalo.worldcat.org": [18748], "idpdesa.ual.es": [17361], "gloucestershire.police.uk": [6873], "brrebellion.com": [2053], "consumeraffairs.com": [3664], "prices.psc.gov": [21220], "i.jmlagapa.com": [2053], "sra.illuminateed.com": [20430], "wf.meituan.com": [10405], "smart.ciifad.cornell.edu": [3744], "www.ekomi.*": [5020], "vap.life": [2053], "gakiris.com": [2053], "spriza.com": [15569], "www.mktemp.org": [7025], "scoutsx.tn": [2053], "sport.panorama.am": [21069], "support.allcrypt.com": [869], "cgul.co": [2053], "www.events.ya.ru": [18930], "europeancensorship.eu": [5532], "*.elearnsecurity.com": [5027], "login.truste.com": [16111], "claws-mail.org": [3280], "s.cmshikaku.com": [2053], "mpl.pm": [2053], "lsblaw.birmingham.gov.uk": [19536], "ajbre.ws": [2053], "revenuesbenefits.southoxon.gov.uk": [21514], "pariloto.net": [7879], "www.mysn.de": [11035], "www.subscene.com": [21600], "forum.openoffice.org": [1124], "community.atechmedia.com": [408], "trailer.zdf.de": [22127], "serialist.net": [14840], "builder-assets.unbounce.com": [17436], "ahas.info": [2053], "www.the42.ie": [21688], "i.aol.com": [361], "cccure.training": [2600, 2601], "fndri.com": [2053], "i.chasecho.co": [2053], "tbunkers.com": [2053], "newzbin.com": [11544], "1drnrd.me": [2053], "clubnix.fr": [3380], "extranet.wienerstadtwerke.at": [18582], "e-o.us": [2053], "pubdirecte.com": [13428], "cs.is": [2053], "myrusakov.ru": [20863], "esupport.sony.com": [15393], "*.blogspot.ae": [2166], "kaw.stb.s-msn.com": [14297], "mgv.mobi": [2053], "go.sfsh.com": [2053], "*.blogspot.am": [2166], "www.alts.trade": [341], "security-tracker.debian.org": [4353], "www.miun.se": [9918], "assets.tumblr.com": [17101], "go.dtrnr.in": [2053], "pic.swirl.us": [2053], "2.no19.com": [2053], "irclogs.linaro.org": [9522], "mnky.us": [2053], "korpijaakko.com": [20616], "ssyh.us": [2053], "nhw.se": [11670], "w.preston.ie": [2053], "events.ucsc.edu": [17591], "www.yoast.com": [22105], "au3.uicdn.net": [17236], "richrelevance.com": [14104], "beusergroup.co.uk": [16331], "iceo.mit.edu": [9914], "onlinestore.usatoday.com": [17310], "*.upr.edu": [17619], "rbgusd.illuminateed.com": [20430], "pda.blogs.yandex.kz": [18957], "free-sex.ga": [2053], "postecert.poste.it": [13192], "thro.ne": [2053], "bandz.co": [2053], "dg.ens.fr": [5029], "oracle.com": [12284], "pinewoodte.ch": [2053], "www.occupycorporatism.com": [11907], "www.keelog.com": [8988], "c2b.me": [2053], "zest.ee": [2053], "gss1.baidu.com": [1661], "www.pmf.gov": [21154], "pic0.qiyipic.com": [20413], "www.tickets.london2012.com": [9735], "piao.163.com": [42], "dineke.me": [2053], "et07.xhcdn.com": [18815], "*.duke-energycenter.com": [4893], "2.getscg.com.br": [2053], "icepay.me": [2053], "content.erooups.com": [5453], "link.aws-muc.de": [2053], "design.staging.yammer.com": [18952], "rrplus.ag": [2053], "btcjam.com": [1601], "illq.net": [2053], "wyp.me": [2053], "docs.bankinter.com": [1694], "4608.ga": [2053], "thebureauinvestigates.com": [16519], "www.youtube.bh": [19016], "links.emek.org": [2053], "cydnie.co": [2053], "zinp.ro": [2053], "soapboxcms.com": [15301], "ecs.re": [2053], "cybksr.info": [2053], "amarama.org": [2053], "www.youtube.be": [19016], "nppa.org": [11243], "h2ote.ch": [2053], "taboola.com": [16153], "www.cebit.de": [2984], "ub.uio.no": [17615], "asset-9.soup.io": [15415], "thepiratebay.bypassed.site": [21217], "etopia.shropshire.gov.uk": [21440], "darkmoney.cc": [4227], "tiny.hsys.net": [2053], "aedn.ws": [2053], "www.tonmo.com": [21756], "public.tableau.com": [16152], "herba.li": [2053], "d.elsto.us": [2053], "fsm.education.gov.uk": [20009], "go.infocux.com": [2053], "norid.no": [11681], "www.hover.com": [7712], "fl.lc": [2053], "app.overdrive.com": [12365], "supermileage.osu.edu": [11959], "sog-links.org": [2053], "exposure.co": [5626], "nbct02.baidupcs.com": [1663], "*.testcloud.io": [16406], "independent.co.uk": [8202], "trackandtrace.courierpost.co.nz": [3784], "www.nestlepurinacareers.com": [11361], "customercare.kansas.com": [8935], "ftlk.org": [2053], "heise-medien.de": [7428], "skuter.16mb.com": [2053], "jbv.ovh": [2053], "www.wattpad.com": [18303], "*.cartercenter.org": [2926], "trav.legal": [2053], "lvlt.co": [2053], "resizes.over-blog.com": [12361], "redditgifts.com": [13926], "lomiwae.press": [2053], "l.odysseum.de": [2053], "educate.intel.com": [8359], "www.ficora.fi": [5886], "rspt.us": [2053], "www.myaccount.socialsecurity.gov": [15308], "*.inc.com": [8191], "extyl-pro.ru": [20084], "wiser.be": [2053], "chafc.soccer": [2053], "my.ams-ix.net": [1021], "verul.am": [2053], "shop.acehotel.com": [508], "dsgb.online": [2053], "adindex.de": [314], "www.a2zinc.net": [258], "l.chillaid.org": [2053], "de.support.tomtom.com": [16812], "kontrolling.bme.hu": [1570], "bt.tmmh.us": [2053], "m.wosign.com": [18693], "t.avia.ml": [2053], "onjive.com": [12010], "lushstories.com": [20728], "gourl.eu": [2053], "*.transloadit.com": [4355], "fav.re": [2053], "univers-libre.net": [17512], "apt.gd": [2053], "www.aolo.tk": [3597], "static.globalweb.co.uk": [6858], "hush-hush.com": [7775], "*.accuvant.com": [506], "www.namepros.com": [11210], "empwrd.co": [2053], "jianyangjy.meituan.com": [10405], "on.sce.com": [2053], "www.paulschou.com": [21085], "s.linz2.at": [2053], "q.hitravel.xyz": [2053], "irissi.ms": [2053], "s.riyuk.de": [2053], "blog.asana.com": [1277], "www.comp.polyu.edu.hk": [13116], "rte.ie": [13704], "w3.org": [18184], "www.carbonfund.org": [2890], "mork.no": [10780], "nyel.la": [2053], "liqd.net": [9602], "responsive.io": [14047], "b.markbroe.net": [2053], "www.vpnglobe.com": [17793], "iamcb.me": [2053], "developer.washingtonpost.com": [18287], "fbpe.co": [2053], "*.bgpmon.com": [1554], "ticketsource.co.uk": [21737], "dero.dict.cc": [4536], "*.ticketonline.de": [16686], "s.dulces.com.pa": [2053], "dearbytes.com": [4341], "mysql.variomedia.de": [17860], "kuai.alipay.com": [857], "lgcy1.xyz": [2053], "jobs.stausa.com": [2053], "entsale.co": [2053], "img-hx.newjobs.com": [11510], "tv.pgtrk.ru": [21114], "siliconrepublic.com": [15035], "stinky.in": [2053], "clorg.co": [2053], "*.datacloudmail.ru": [4278], "bano.openstreetmap.fr": [12245], "9life.co": [2053], "nau.edusupportcenter.com": [20012], "empleo.uniovi.es": [17479], "kismetwireless.net": [9070], "tragachil.es": [2053], "cpaste.org": [19808], "cdn.mediaworks.co.nz": [10333], "shchekino.beeline.ru": [1801], "go.secte.ga": [2053], "photos4.meetupstatic.com": [10386], "lnk.hornoxe.com": [2053], "coderwall.com": [3439], "link.iggg.org": [2053], "i7.tj": [2053], "www.hashkiller.co.uk": [20317], "krasnogorsk.beeline.ru": [1801], "bitly.build": [2053], "boxing.meituan.com": [10405], "skygfx.live.com": [9644], "mttj.in": [2053], "croaks.us": [2053], "www3.basildon.gov.uk": [19494], "dom.tips": [2053], "wowinterface.com": [18694], "cncy.co": [2053], "www.prozeny.cz": [13343], "www.coop.ch": [3711], "www.discovercarlisle.co.uk": [19927], "t.dianping.com": [19913], "l.pi.mu": [2053], "thw.obkm.eu": [2053], "*.google.com": [6963, 6973, 6975], "courseevalum.umd.edu": [17549], "clientcenter.thomasnet.com": [16644], "wiki.qt.io": [13545], "www.litecoinlocal.net": [9626], "ssc.cvent.com": [4020], "www.mysql.it": [10970], "mercurynews.com": [10455], "www.roeck-us.net": [14176], "enet.name": [2053], "payments.guildford.gov.uk": [20294], "control.akamai.com": [800], "careers.tableau.com": [16152], "loveourlocalbusiness.com": [9792], "status.npmjs.org": [11738], "mypage.apple.com": [1160], "publisher.connexity.com": [3648], "shashinkan.rakuten.co.jp": [13767], "es.verbling.com": [17907], "census.edina.ac.uk": [20007], "vive.kg": [2053], "www.ringcentral.com": [14124], "bestlawyers.com": [1854], "www.itservices.bt.com": [1593], "usl.me": [2053], "go.icwnow.com": [2053], "www.boca.gov.tw": [2218], "go.metadata.mx": [2053], "block.deals": [2053], "mixer.cz": [10656], "www.niskanencenter.org": [11617], "www.lrz.de": [9396], "*.collegiatelink.net": [3493], "wholebra.in": [2053], "l.pjkel.ly": [2053], "www.openttdcoop.org": [12180], "udemy.com": [17393], "www.nesterov.pw": [11359], "subscribenww.com": [11459], "crazybump.com": [3836], "quora.com": [13607], "wngwp.es": [2053], "resources.inbenta.com": [8186], "travisf.net": [16977], "g6.hitravel.xyz": [2053], "co.norton.com": [11703], "media.linuxdistrocommunity.com": [9581], "on.wpin.me": [2053], "carrierbagcharge.wales.gov.uk": [18252], "join.exgf.com": [13266], "medapps.wusm.wustl.edu": [18290], "laaclu.org": [287], "static3.uk.businessinsider.com": [2512], "www.technocrat.net": [16296], "www.tapirex.com": [12555], "cap.csail.mit.edu": [9916], "static.buydomains.com": [19619], "www.kuleuven.be": [8969], "sjhacks.com": [2053], "extg.co": [2053], "secured.ols.empireblue.com": [20033], "www.vitalads.com": [18080], "forum.opnsense.org": [11855], "m.opera.com": [12252], "www.rcking.eu": [13638], "smartronix.com": [15246], "dsmag.us": [2053], "edu.skift.com": [21469], "smart-mail.de": [15230], "*.baifendian.com": [19477], "ss.acentar.es": [2053], "campanda.io": [2053], "spiider.xyz": [2053], "wiki.secondlife.com": [14706], "baker.love": [2053], "en.wiki.hidekisaito.com": [7533], "jas.xyz": [2053], "www.twistlock.com": [21827], "tmmy.me": [2053], "rstl.es": [2053], "www.posteshop.it": [13193], "www.pornworms.com": [13155], "media.3dsupply.de": [160], "plaud.it": [2053], "qu2.co": [2053], "oaklands.ac.uk": [20976], "store.counterpunch.org": [3774], "media.zipcar.com": [19190], "siry.se": [2053], "ufl.ink": [2053], "ccp.cloudaccess.net": [3337], "accounts.flipboard.com": [6041], "jlau.me": [2053], "www.ageuk.org.uk": [19320], "iframed.cqrcengage.com": [2711], "www.panopticlick.com": [12568], "www.fbcdn.net": [5816], "portal.opera.com": [12252], "romdashboard.com": [13680], "sgstyle.co": [2053], "www.wetlandpark.gov.hk": [20346], "fsret.it": [2053], "ir-na.amazon-adsystem.com": [950], "cyberaide.ca": [4051], "tracker.coreboot.org": [3737], "domainmarket.com": [4744], "thegrandtheatre.com": [16549], "*.italian-country-cottages.co.uk": [18790], "cowl.es": [2053], "www.cbpweb.nl": [4910], "dras.rocks": [2053], "siyang.meituan.com": [10405], "www.stud.uni-stuttgart.de": [17567], "dev.camscanner.com": [19636], "www.loyalforex.com": [9802], "*.powerhousemuseum.com": [13227], "wa.op-online.de": [2053], "www.uline.com": [17410], "thestoryex.ch": [2053], "provost.umd.edu": [17549], "jy.meituan.com": [10405], "luv.wtf": [2053], "web.weixin.qq.com": [13514], "avntn.com": [2053], "l.xal.li": [2053], "hcro.nl": [2053], "svgopen.org": [14438], "eregulations.ct.gov": [2738], "exne.ws": [2053], "transparencytoolkit.org": [16955], "widgets.yandex.by": [18953], "www.hi-eg.com": [7524], "wbsmba.uk": [2053], "www.xmpp.ru.net": [18828], "painelhost.uol.com.br": [17276], "ami.graphics": [2053], "frensh.am": [2053], "zoink.it": [5103], "www.onehealthtalk.org": [12048], "beacon.jumptime.com": [8825], "jke.me": [2053], "think-local.co": [2053], "putlocker.is": [21227], "gentoo-overlays.zugaina.org": [19237, 19238], "hexplo.it": [7521], "geo.zenmate.com": [19133], "mozy.co.uk": [10857], "gsrv.gs": [2053], "www.typepad.com": [17190], "lijintechan.jd.com": [8571], "origin-www.marketplace.org": [10181], "go.fredonia.edu": [2053], "wbsm.it": [2053], "www.nrarofcochairs.com": [20953], "support.nanorep.com": [11221], "user.geetest.com": [20218], "levels.io": [9427], "anchorveil.us": [2053], "t1beta.mediamath.com": [10323], "phpmyadmin.online.net": [12069], "gegyg.com": [2053], "tid.al": [16699], "console.run.pivotal.io": [12947], "seflorida.bbb.org": [1874], "techkr.info": [2053], "technomedia.com": [16299], "netbsd.org": [11375], "www.infowar.com": [8254], "cfun.cc": [2053], "bbaker.me": [2053], "queminova.catracalivre.com.br": [2967], "erikti.me": [2053], "spbuzz.it": [2053], "c.co2.web.id": [2053], "wamu.fm": [2053], "forums.satellitecyprus.com": [4062], "go.vienmy.vn": [2053], "templates.hostgator.com": [7655], "www.armscontrol.org": [19419], "urlparser.com": [17293], "mi.skparate.mx": [2053], "legal.yandex.by": [18953], "petersen.mysql.cesky-hosting.cz": [19680], "data.cnbc.com": [2688], "bmlt.co": [2053], "www.ftp.rnl.tecnico.ulisboa.pt": [20184], "diffchecker.com": [4543], "bogley.me": [2053], "tradepub.com": [16913, 16919], "thl.engineering.osu.edu": [11959], "www.womenonweb.org": [18708], "start.advent.com": [693], "ehood.us": [2053], "www.sozone.de": [15298], "*.kaimi.ru": [20571], "voices.com": [18117], "all4xs.net": [866], "www.hosted-oswa.org": [7665], "aug6.us": [2053], "video.flixster.com": [6049], "*.sigterm.no": [15028], "econsultation.decc.gov.uk": [19885], "pcbooking.staffordshire.gov.uk": [15622], "rtc.li": [2053], "crwd.mx": [2053], "gabriel.cf": [2053], "culturaemcasa.catracalivre.com.br": [2967], "uedata.amazon.com": [952], "ccofgb.uk": [2053], "avatar.fsl.cs.sunysb.edu": [15736], "ukecos.as": [2053], "taverna.us": [2053], "www.zuno.eu": [19078], "*.compari.ro": [3576], "bbs.pacbsd.org": [12511], "bike.sh": [2053], "ssl1.gmti.com": [6571], "link.mrcs.fr": [2053], "ictindel.es": [2053], "zbbeer.co": [2053], "lockbox.com": [9705], "myevolve.us": [2053], "ndiscpa.info": [2053], "glnry.us": [2053], "lmms.io": [20706], "twocents.lifehacker.com": [9492], "go-ml.com": [2053], "pkg4.me": [2053], "www.cineble.com": [3203], "gsdm.biz": [2053], "french-country-cottages.co.uk": [18790], "*.mediaite.com": [10338], "www.wz2100.net": [18284], "clients.microtronix-tech.com": [10552], "dmf.is": [2053], "d77.co": [2053], "images.securycast.com": [14780], "www.politicshome.com": [13100], "www.typecast.com": [17187], "spartak.openbank.ru": [21008], "go.unbounce.com": [17436], "ipa.la": [2053], "www.mir.wustl.edu": [18290], "zudo.xyz": [2053], "drbrad.link": [2053], "webcampus.wilmu.edu": [18620], "aboutus.godaddy.net": [6897], "imgacade.my": [2053], "blog.zencoder.com": [19135], "mystel.la": [2053], "glsm.co": [2053], "license.steeleye.com": [15715], "developer.go.cd": [20259], "www.linuxdaily.com": [21006], "itootr.me": [2053], "jamx.re": [2053], "link.gerzer.net": [2053], "static.somethingawful.com": [15379], "kpay.co": [2053], "irvine.ly": [2053], "deddla.in": [2053], "openbeta-comm.usaspending.gov": [17312], "fzbr.in": [2053], "wsjpro.com": [11512], "jiaxian.meituan.com": [10405], "livesales.snelis.com": [15279], "www.tmdn.org": [16083], "ar.tns-counter.ru": [16792], "halley.ens.fr": [5029], "protecciondelconsumidor.gov": [11267], "m.vietnamese.alibaba.com": [850], "ct.jd.com": [8571], "ipv4.da.gd": [4174], "searchlight.sourcedna.com": [15420], "kinsta.com": [9063], "st.wdjcdn.com": [18267], "pimleroy.com": [2053], "ed.gov": [4988], "bitly.elms.edu": [2053], "www.administrator.de": [19294], "www.2ndvote.com": [116], "virtualqube.com": [18041], "www.toxme.se": [16892], "careers.annsummers.com": [1070], "bataysk.beeline.ru": [1801], "www.instantssl.com": [8335], "careersfdr.ucc.ie": [17210], "onlineservices.carlisle.gov.uk": [19648], "kuvat2.huuto.net": [20398], "stargaz.tt": [2053], "inhumanity.com": [8292], "hotw.re": [2053], "ehtuhin.xyz": [2053], "mktg.me": [2053], "coll.ec": [2053], "hr.uillinois.edu": [17238], "q.tokyoshure.jp": [2053], "jaan.ut.ee": [17347], "www.emunewz.net": [5326], "epa-sdcc.ornl.gov": [11892], "nanguosp.1688.com": [44], "neuronline.sfn.org": [15327], "ngrid.com": [2053], "vanelli.tips": [2053], "www.gr.ch": [21629], "biovendor.cz": [1956], "courtneyluv.com": [2185], "b.shashi.co": [2053], "b.asset.soup.io": [15415], "www.airbnb.com.*": [788], "securecoding.cert.org": [2640], "www.jambit.com": [8647], "www.mimsonline.com": [9910], "www.alphabankcards.gr": [7038], "zenmate.vn": [19133], "secure.sydneyaquarium.com.au": [15963], "wdm.org.uk": [18755], "my.rmit.edu.au": [13670], "www.utsystem.edu": [17570], "list.jr.jd.com": [8571], "fantasyracing.telegraph.co.uk": [16340], "joshtheoak.com": [2053], "n.tkrp.net": [2053], "www.norwalkreflector.com": [11705], "www.pmddtc.state.gov": [17345], "libssh.org": [9481], "dutra.ga": [2053], "notacon.org": [11717], "kinogo.co": [20599], "l.maishsk.com": [2053], "www.yroo.com": [19048], "fastly.com": [5803], "go.dwnld.codes": [2053], "*.brukerprofil.difi.no": [4547], "pulse.asda.com": [387], "rxs1.answcdn.com": [1099], "thegreatcoursesplus.com": [16550], "guilin.jd.com": [8571], "kondratovo.beeline.ru": [1801], "autolinkmaker.itunes.apple.com": [1160], "vgi.vg": [2053], "pics.mobygames.com": [10692], "ad.overthin.gs": [2053], "pwie.in": [2053], "eforms.rbkc.gov.uk": [21266], "nodeserv.com": [11644], "go.maxjp.me": [2053], "1ajd.us": [2053], "www.linux.cn": [9562], "static.weborama.fr": [18434], "hea.lc": [2053], "some.fyi": [2053], "www.licensing.biz": [8376], "www.bugs.au.freebsd.org": [6237], "www.slanted.de": [15189], "torchbox.com": [16843], "forums.geforce.com": [6601], "dmp.adform.net": [625], "threatmatrix.com": [21730], "voyage-prive.com": [18152], "trends.skift.com": [21469], "www.shopmanhattanite.com": [10117], "www.givingwhatwecan.org": [20243], "peer2peer.giffgaff.com": [20237], "pic1.qiyipic.com": [20413], "selim.uniovi.es": [17479], "scl.mipoliza.es": [2053], "web.caltech.edu": [2815], "tlaunch.it": [2053], "support.2co.com": [112], "alisa.tm": [2053], "modules.fd.ulaval.ca": [17515], "autodiscover.its.leeds.ac.uk": [17604], "www.plausible.coop": [13011], "bugs.centos.org": [3003], "www.crz.gov.sk": [15217], "support.filefactory.com": [5904], "cbs2.us": [2053], "brkv.ch": [2053], "on.vangquan.com": [2053], "botfrei.de": [2295], "s.twnet.us": [2053], "sampa.cs.washington.edu": [17577], "*.uncg.edu": [17613], "wx2.qq.com": [13514], "les.tumba.ch": [21809], "at.125f8.co.uk": [2053], "mwellner.de": [10926], "klub.com.pl": [9086], "safeprofile.f-secure.com": [5654], "pantherexpress.net": [2618], "mileiq.com": [10579], "1.0pe.ru": [2053], "www.chango.com": [3056], "espionageapp.com": [5467], "monitoring.datamotion.com": [19859], "www.wearewizards.io": [18325], "www.aesnet.org": [967], "a15.ysicdo002.com": [19015], "www.suitabletech.com": [15841], "i1.lbp.me": [20644], "tekgoblinmedia.com": [16320], "healthiertogethergm.nhs.uk": [11102], "toyland.gizmodo.com": [6817], "www.kancloud.cn": [20573], "m.tokyo2020.jp": [21754], "tvgd.co": [2053], "berlinonline.de": [1845], "fbulo.us": [2053], "efa.org.au": [5254], "ivy1.nl": [2053], "www.broadband.bt.com": [1593], "clasconsultants.net": [19723], "ejobs.umd.edu": [17549], "hostoople.com": [7683, 7684], "lpon.us": [2053], "eut.cc": [2053], "strgygui.de": [2053], "www.freebsdfoundation.org": [6239], "linguistlist.org": [9235], "thumbzilla.com": [16671], "www.longdate.pl": [9751], "aliqin.tmall.com": [21748], "www.virtualearth.net": [18046], "kwiclnk.us": [2053], "overleaf.com": [12372], "cloudstorage.iu.edu": [8214], "image.unwire.com": [17663], "go.ke-v.in": [2053], "www.voa.va.gov": [17297], "docs.database.com": [4272], "pushchino.beeline.ru": [1801], "math.uchicago.edu": [17532], "www.giftedandtalented.com": [6762], "*.chinapaymentservices.com": [3140], "fml.osu.edu": [11959], "secure.meetup.com": [10386], "nl3d.co": [2053], "*.fetchback.com": [5878], "www.123bay.online": [21215], "hayward-pool.com": [7384], "knj.news": [2053], "the405.co": [2053], "gss2.bdstatic.com": [19507], "jabber.ru": [8624], "i.zemanta.com": [19128], "sitelabs.co.uk": [21461], "ents.net": [2053], "m.zuno.sk": [19079], "reg-alfabank.ru": [842], "www.selinc.com": [14336], "*.alaska.gov": [15672], "wfapm.com": [2053], "nckp.ru": [2053], "go.ecigs.city": [2053], "evrln.co": [2053], "www.tinybytes.me": [16751], "*.uu.nl": [17351], "j89.co": [2053], "brandj.es": [2053], "ax.phobos.apple.com.edgesuite.net": [1161], "techtoolsforactivism.org": [16279], "www.surplus.osu.edu": [11959], "cz.support.tomtom.com": [16812], "thesd.co": [2053], "daw.apple.com": [1160], "inbnd.bz": [2053], "mind.org.uk": [10594], "tt.1und1.de": [82], "earspl.it": [2053], "opennicproject.org": [21019], "ssy.ms": [2053], "www.roaringpenguin.com": [14152], "cryptoanarchy.freed0m4all.net": [6281], "*.canadapost.ca": [2852], "briandunning.com": [2366], "gigantic.com": [6771], "blog.ozbargain.com.au": [12400], "url.brugh.co": [2053], "www.dmachoice.org": [4118], "nrkbeta.no": [11146], "www.anonfiles.com": [1082], "www.lth.se": [9258], "unmarsys.ru": [2053], "mykip.co": [2053], "cdn.real-debrid.com": [13854], "tppro.oag.com": [11803], "easynews.com": [5128], "localoffer.cumbria.gov.uk": [19838], "blog.octopart.com": [11913], "forward.immobilienscout24.de": [8153], "www.meinvz.net": [10407], "*.finna.fi": [5966], "www.velleman.eu": [17888], "passport.taobao.com": [16206], "www.acronymfinder.com": [524], "vanillatest.geogebra.org": [6659], "irad.io": [2053], "go.thgllc.co": [2053], "static.95516.com": [240], "dschultz.us": [2053], "c4vi.me": [2053], "2shared.com": [119], "pkimber.net": [12509], "a.tellapart.com": [21676], "as220.us": [2053], "pr.co": [13233], "vnat.ca": [2053], "nvzhuang.taobao.com": [16206], "media.codeweavers.com": [3413], "fb-cdn.ghsrv.com": [13855], "litmus.com": [9632], "atxpo.stanford.edu": [15635], "corporate.fitbit.com": [6002], "www.connect.gov": [3644], "choon.net": [3159], "acdd.tk": [3597], "www-nds.iaea.org": [7812], "nav.files.bbci.co.uk": [19501], "squrl.it": [2053], "grve.me": [2053], "beatport.com": [1789], "ldf.io": [2053], "2012.asiabsdcon.org": [1293], "mrk.li": [2053], "www.cts-strasbourg.eu": [3975], "smacktls.com": [14374], "macewa.nu": [2053], "intro.cm": [2053], "southparkstudios-intl.mtvnimages.com": [9968], "cfvod.kaltura.com": [8927], "porteus-kiosk.org": [13163], "*.uni-tuebingen.de": [17632], "jintan.meituan.com": [10405], "dtu.dk": [16286], "echothrust.com": [5149], "m.baidu.com": [1661], "www.nebula.com": [11319], "*.mmahq.com": [9929], "www.hongkongpost.gov.hk": [20359], "garabatoaldea.ourproject.org": [21044], "bit.ibee.se": [2053], "tech.justgiving.com": [20566], "freesign.al": [2053], "entertainment.ie": [5398], "www.amsl.com": [350], "l.getticket.jp": [2053], "myaccount.lewisham.gov.uk": [20671], "ftp.openbsd.org": [12118], "www.zaption.com": [19107], "mail.uu.se": [17352], "www.techreport.com": [16306], "l.rtl.be": [2053], "www.lb.ca": [9340], "assets.motherboard.tv": [10795], "agency.governmentjobs.com": [20272], "eco.velt.be": [2053], "permit.by": [2053], "www.fi.ncsu.edu": [11690], "i.i.ua": [7800], "rbwm.spydus.co.uk": [21546], "go.eqd.co.il": [2053], "*.unrestrict.li": [17654], "ripe64.ripe.net": [14128], "gopards.co": [2053], "webmail.bananian.org": [1680], "f.asset.soup.io": [15415], "dog.tv.br": [2053], "www.quantixtickets.com": [13569], "drbbl.in": [2053], "voled.in": [2053], "clubcompy.com": [3379], "zopa.com": [19226], "www.productsandservices.bt.com": [1593], "gap.us": [2053], "eao.rt.ru": [13703], "www.soobest.com": [15401], "onlinelibrarystatic.wiley.com": [18609], "nifty.jp": [2053], "ukbusiness.hsbc.com": [7233], "elements.plymouth.ac.uk": [13055], "layer-ads.de": [14301], "mbusd.illuminateed.com": [20430], "bitly.events": [2053], "kb.cloudlinux.com": [3348], "grbi.co": [2053], "u.nbz.net.br": [2053], "uptonhomehardware.co.uk": [17691], "lists.tartarus.org": [16221], "*.gamestop.com": [6545], "oba.org.in": [2053], "tn.dm": [2053], "es-es.facebook.mx": [5736], "jambit.com": [8647], "www.vpsboard.com": [18158], "www.cogneurosociety.org": [19751], "static.xmarks.com": [18882], "bdhx.uk": [2053], "tucsonj.cc": [2053], "eflor.es": [2053], "www.ignum.cz": [7878], "rayyan.co": [2053], "gom.ba": [2053], "ckey.co": [2053], "webmail4.hosts.co.uk": [7689], "www.95516.com": [240], "str.do": [2053], "tcl.tk": [16241, 16242], "cute.li": [2053], "vers.al": [2053], "ilovemydog.tv": [2053], "tize.tw": [2053], "skroutz.it": [2053], "lgs.cm": [2053], "m.flyero.us": [2053], "rdey.se": [2053], "inl.gov": [20462], "gcs.school": [2053], "www.cheapassgamer.com": [3097], "fun.io": [2053], "thou.gt": [2053], "volzhsky.beeline.ru": [1801], "hopelove.us": [2053], "hubic.com": [7742], "link.chetbc.ca": [2053], "*.marketplace.org": [10182], "ju.mmstat.com": [10666], "intranet.tue.nl": [16129], "*.dvidshub.net": [4165], "gbpg.net": [2053], "rsh.cc": [2053], "fuwu.jd.com": [8571], "yuyao.meituan.com": [10405], "ghash.io": [6446], "api.5min.com": [208], "mari.mn": [2053], "bctr.cornell.edu": [3744], "gossi.pr": [2053], "g.idevator.com": [2053], "sqa.ir": [2053], "www.youcanbook.me": [19010], "jobshop.lloydsbankinggroup.com": [20704], "forums.alfresco.com": [843], "audience-discovery.com": [1389], "rascal999.co.uk": [21259], "aj.com": [2053], "zenmate.kr": [19133], "www.clear-code.com": [3286], "h.suntravel.xyz": [2053], "typg.co": [2053], "on.dnj.com": [2053], "tix.spybar.club": [2053], "job.rarus.ru": [21258], "nestlepurinacareers.com": [11361], "word.camera": [22047], "img03.en25.com": [5329], "southeast.greenparty.org.uk": [7052], "bridge.simplefin.org": [15066], "todds.me": [2053], "on.apecrime.de": [2053], "taiqian.meituan.com": [10405], "hpestorage.me": [2053], "careermov.es": [2053], "fetisov.fbk.info": [5818], "www.rabotilnica.com.mk": [13724], "www.fr.tchibo.ch": [16240], "ruwo.uk": [2053], "iais.fraunhofer.de": [6230], "domaining.com": [4753], "www.apsiol.uned.es": [17446], "syt.ec": [2053], "cms.www.switch.ch": [15952], "ide.c9.io": [3339], "islands.lloydsbank.com": [9686], "iphone-api.fitbit.com": [6002], "x.tedxutn.org": [2053], "melm.co": [2053], "specialcollections.blog.lib.cam.ac.uk": [17529], "lsda.jsc.nasa.gov": [11058], "auf.uwc.de": [2053], "*.ufies.org": [17228], "audit.vaultoro.com": [21897], "chortl.es": [2053], "bouncebidder.com": [2298], "safebilling.com": [14467], "thenation.com": [16465], "www-2.danskebank.dk": [4223], "forms.fbi.gov": [5825], "i6.piimg.com": [16704], "www.mxtoolbox.com": [9977], "w.hitravel.xyz": [2053], "www.ca-pca.fr": [2565], "tomsofmainestore.com": [16816], "my.open.alibaba.com": [850], "pypi.douban.com": [4802], "rmkey.co": [2053], "itson.tw": [2053], "akwww.polyvoreimg.com": [21168], "we-b.lv": [2053], "server.adformdsp.net": [625], "go.collect.it": [2053], "ericor.me": [2053], "appstatus.osu.edu": [11959], "cntme.co": [2053], "www.carphonewarehouse.com": [2920], "export.yandex.kz": [18957], "fjellner.eu": [3173], "*.stcllctrs.com": [9899], "areg.centrum.cz": [19674], "mobile.services.lovtidende.dk": [14063], "on.wjtv.com": [2053], "vidpro.me": [2053], "crls.ch": [2053], "od3g.co.uk": [2053], "account.dexmedia.com": [4515], "tvline.com": [16139], "huan.jd.com": [8571], "*.app.com": [1279], "tlgr.me": [2053], "www.leerstandsmelder.de": [20654], "windowsphone.com": [18646], "gymr.us": [2053], "squirrel-webmail.surftown.com": [15586], "mahachkala.rt.ru": [13703], "*.webkite.com": [18366], "ptrace.fefe.de": [5857], "www.the-body-shop.ch": [3712], "westberks.spydus.co.uk": [21546], "serval.lib.vutbr.cz": [17814], "lazada.co": [2053], "outdoored.georgetown.edu": [6668], "i.tapactive.com": [2053], "map.sepa.org.uk": [21411], "www.charities.org": [987], "www.solicitor-concierge.com": [15365], "www.youtube.co.za": [19016], "50ft.net": [2053], "xewa.cl": [2053], "najisto.centrum.cz": [19674], "oaklandish.com": [11893], "track.securedvisit.com": [14743], "btbsecure.business.bt.com": [1593], "bleecker.me": [2053], "niu.imodules.com": [7909], "jobs.flowingdata.com": [6062], "*.sears.com": [14688], "zhangzhou.meituan.com": [10405], "cdn.www.hbo.com": [20322], "arbinger.me": [2053], "wearebattle.co": [2053], "bwat.us": [2053], "master.yandex.by": [18953], "forums.halowaypoint.com": [7307], "dance.smugmug.com": [15260], "managedservices.otenet.gr": [12336], "www.bitnik.org": [2063], "secure.insightexpressai.com": [8322], "login.uic.edu": [17517], "libraries.highland.gov.uk": [20338], "mklv.me": [2053], "delivery.w00tads.com": [18182], "htcinsi.de": [2053], "monmouthshire.gov.uk": [10748], "go.utah.edu": [17574], "xsolla.com": [18896], "gimmickwear.com": [6782], "www.tv.yandex.com.ua": [18955], "ruffinos.co": [2053], "a.8bitfirst.com": [2053], "huzhou.meituan.com": [10405], "codebeamer.com": [3408], "app-us6.resrc.it": [13832], "blog.gitorious.org": [18730], "url.rocsl.com": [2053], "elearning.hslu.ch": [7728], "www.connectpros.com": [13244], "s.l-a.cc": [2053], "mail.carezone.cz": [2908], "brabysads.com": [2316], "habo.ly": [2053], "support.1btcxe.com": [52], "academy.frieslandcampina.com": [2842], "mcb.net": [10130], "nccrj.pt": [2053], "cvs.sedo.de": [14783], "mead.es": [2053], "www.wovn.io": [18212], "milanuncios.com": [10576], "voci.co": [2053], "couchbase.com": [3767], "stemsha.re": [2053], "backpackerslucerne.ch": [1643], "etel.io": [2053], "ohneverlag.de": [2053], "eweb.acs.org": [966], "2ndvote.com": [116], "www.aquent.us": [1184], "www.m-w.co.uk": [9855], "m.woolworthsonline.com.au": [18723], "www.css-tricks.com": [2736], "xmlsearch.yandex.by": [18953], "rebecka.me": [2053], "vox.com": [18146], "webapps.dol.gov": [19937], "media.techonline.com": [16268], "www.oneserver.cz": [11844], "sgfmo.co": [2053], "exci.to": [2053], "accounts.paradoxplaza.com": [12591], "pete.photos": [2053], "pics.filmaffinity.com": [20113], "accessprivacy.com": [489], "www.tuleap.net": [17097], "t-nation.com": [16027], "a.tcpapps.com": [2053], "uie.com": [17233], "www.desmume.org": [4321], "t.nicandro.org": [2053], "paypalgivingfund.org": [12696], "intell.co": [2053], "mail.tdc.dk": [16051], "hbr.org": [7178], "my.adap.tv": [593], "www.shootingillustrated.com": [21427], "svkeslov.se": [2053], "migrate.axosoft.com": [1517], "leadspend.com": [9352], "nl.squat.net": [21549], "www.oia.cuhk.edu.hk": [2747], "*.oreilly.com": [11860], "powershellgallery.com": [13219], "shre.it": [2053], "www.r-hpc.com": [13619], "www.mind.org.uk": [10594], "jobs.seagate.com": [14679], "static.micloud.xiaomi.net": [18874], "e.dealerdn.com": [2053], "www.ece.ucsd.edu": [17216], "support.cxense.com": [2753], "nagi.to": [2053], "datared.dk": [4291], "remixdepolitiek.nl": [12924], "siteheart.com": [15113], "static4.boligportal.dk": [2244], "t.got2b.info": [2053], "peterborough.greenparty.org.uk": [7052], "www.pwmt.org": [13491], "assets-origin.nytimes.com": [11189], "auxiliary.georgetown.edu": [6668], "julieannenoying.com": [8823], "bs.mail.ru": [10040], "sitedirector.symantec.com": [15969], "gpf.me": [2053], "esv.de": [5067], "spoor-api.ft.com": [5941], "www.landalcampings.nl": [18790], "comsecuris.com": [3610], "*.softlayer.com": [15343], "koolspan.com": [20615], "www.thereadingroom.com": [16498], "stix.mitre.org": [10649], "www.fralin.vt.edu": [18031], "www.assertible.com": [19441], "www.sfu.ca": [14893], "www.nsupdate.info": [11750], "d.jd.com": [8571], "z.zoe.com": [2053], "nyheter.sparebank1.no": [21524], "ncs.bz": [2053], "cm.commerce5.com": [3544], "opensecrets.org": [3007], "projects.unbit.it": [17431], "broco.link": [2053], "alumni.pragmaticstudio.com": [13240], "gmw.nhs.uk": [11102], "prvn.de": [2053], "www.smartlife.swisscom.com": [15951], "my.teslamotors.com": [16403], "grove.io": [7107], "www.pureinfo.com": [13468], "static.kurier.at": [9194], "www.bluecatnetworks.com": [2180], "www.metro.yandex.by": [18953], "shop.scooter-attack.com": [14632], "mevy.co": [2053], "www.kriminalvarden.se": [9163], "www.verticalacuity.com": [17929], "uniregistry.com": [17482], "*.facdn.net": [6387], "memes.link": [2053], "git.cyrus.foundation": [4063], "partner.dota2.com": [4792], "www.meebey.net": [10372], "static.petitions.moveon.org": [10819], "www.rapid7.com": [13788], "prks.io": [2053], "6to4.ru": [216], "beta.stacksocial.com": [15615], "developer.kaazing.com": [8910, 8911], "s.propro.us": [2053], "flixbus.com": [6047], "deezer.com": [4381], "overijssel.nl": [11324], "frdm.co": [2053], "*.t-online.de": [16028], "ceci.li": [2053], "cb.qq.com": [13513], "idm.east.cox.net": [3808], "rya.nc": [14291], "platform.tumblr.com": [17101], "m.sydneyaquarium.com.au": [15963], "tmbkpk.us": [2053], "braintree.gov.uk": [2326], "www.linuxmint.com": [20700], "apprenticeships.scot": [19404], "wtac.hinxton.wellcome.ac.uk": [22001], "www-edge.tnaflix.com": [16791], "rotlogix.com": [14213], "bolman.co": [2053], "*.lighthouseapp.com": [9506], "static.4kdownload.com": [179], "nicdevo.link": [2053], "www.macruby.org": [9987], "soundcloud.com": [15410], "m-vg.de": [9854], "oas.autotrader.ie": [19459], "site-cdn3.ghosteryenterprise.com": [6750], "www.googletagmanager.com": [6971], "one.org": [11839], "muckefuck.nadir.org": [11197], "hpm.io": [2053], "www.drive2.ru": [4858], "wam.rocks": [2053], "u.sldr.us": [2053], "bigdata.stanford.edu": [15634], "forum.rottentomatoes.com": [14214], "jdi-solutions.co.uk": [20530], "www.momentusmedia.com": [10725], "cryptedmemo.com": [3919], "glali.be": [2053], "scs.uic.edu": [17517], "mpowe.red": [2053], "www.myportableworld.com": [11003], "bnc4free.com": [2217], "kickflip.io": [9033], "asadotzler.com": [19428], "www.redkestrel.co.uk": [21288], "www.feefighters.com": [5846], "www.1and1.es": [64], "u.elitekast.com": [2053], "pic4.zhimg.com": [19173], "mrlyn.ch": [2053], "*.nextstudioapps.com": [9283], "www.mh21.de": [10509], "lawst.in": [2053], "t38.co": [2053], "welcomeweek.gmu.edu": [6666], "network.feral.io": [5866], "www.anthonycameron.com": [1104], "rik.re": [2053], "task.im": [2053], "www.journal-republican.com": [12869], "prds.io": [2053], "wurfljs.com": [18784], "www.commercialappeal.com": [5088], "on.soheil.us": [2053], "pylink.xyz": [2053], "www.searchdatacenter.de": [16273], "qwty.co": [2053], "ednz.co": [2053], "it.redhat.com": [13909], "dov.li": [2053], "static.lovefilm.*": [9788], "www.bitcointrezor.com": [19541], "whenbchapp.in": [2053], "*.clippings.com": [19732], "www.cheapandspeedytrafficschool.com": [19690], "*.myhailprotector.com": [7295], "sport.uni-mainz.de": [17611], "fisonline.bury.gov.uk": [19614], "extranet.fernwaermewien.at": [18582], "jobs.croydon.gov.uk": [19824], "*.autotrack.nl": [1455], "ilearningcontent.oracle.com": [12284], "www.abbott.com": [441], "jhb.me": [2053], "shop.education.lego.com": [9222], "www.morawa-buch.at": [20830], "linx.wizdom.ca": [2053], "www.techidiots.net": [16283], "bingl.ee": [2053], "www.rarediseases.org": [13801], "d2jsp.com": [4071], "gomsba.co": [2053], "nifty.com": [11114], "ihgagent.com": [8380], "auth.finance.58.com": [201], "www.getvoip.com": [6705], "help.life.ru": [20684], "www.mrp.illinois.edu": [17544], "apps.hackney.gov.uk": [7286], "cgy.xyz": [2053], "www.professionalsecuritytesters.org": [13354], "originstamp.org": [21029], "fnmag.co": [5695], "rob-clay.com": [2053], "*.beyondsecurity.com": [1885], "clothingattesco.com": [3334], "sonycsl.co.jp": [15397], "fris.pro": [2053], "urll.nl": [2053], "provi-247.mobi": [2053], "vdp.link": [2053], "sprl.in": [2053], "www.ukreg.com": [5801], "*.documentcloud.org": [4715], "platform.instagram.com": [8331], "imgsrv.toppreise.ch": [21757], "dtphxpod.com": [2053], "p.rvie.us": [2053], "s.hitap.jp": [2053], "goo.im": [6953], "pdxhwk.us": [2053], "starmoney.de": [15644], "mgvrl.it": [2053], "monsterdivx.com": [10753], "www.sinacloud.com": [15088], "ceomilly.com": [2053], "remaxslm.co": [2053], "downloads.realviewdigital.com": [13867], "reviews.thegreatcourses.com": [16457], "zerorobotics.org": [19153], "northol.me": [2053], "finkmanufacturing.com": [1955], "corporategames.lcsd.gov.hk": [7211], "hcice.co": [2053], "ncgem.com": [2053], "www.dn.com": [4127], "oh.ln.com.ar": [2053], "bb24.csob.sk": [3966], "deviantart.net": [4503], "cj2.nl": [2674], "crmondemand.oracle.com": [12284], "www.sdilej.cz": [14673], "go.danlefeb.com": [2053], "www.werkenbijdeoverheid.nl": [11324], "www.kkh.se": [8886], "1c-bitrix.ru": [66], "lsq.st": [2053], "tiny.mn": [2053], "*.blogspot.com.by": [2166], "ozvoucher.com.au": [12400], "hsbc.co.uk": [20375], "certmixtap.es": [2053], "rhn.redhat.com": [13909], "www.applications.sciverse.com": [14617], "spd.de": [15450], "pi.3.cn": [121], "busk.rs": [2053], "www.thisk.org": [21724], "www.archive.is": [1203], "zel.cr": [2053], "pype.ly": [2053], "c5app.com": [2053], "bit.iqbits.net": [2053], "sbl.fund": [2053], "icons-ak.wxug.com": [18329], "www.cavirtex.com": [2969], "s2.adform.net": [625], "www.harita.yandex.com.tr": [18954], "gmghq.link": [2053], "99b.it": [2053], "yo.yourhonor.org": [13435], "penzenskaya-obl.beeline.ru": [1801], "www.mirrorbingo.com": [10634, 10635], "u.icetravel.xyz": [2053], "zha.la": [2053], "dropboxatwork.com": [4864], "tresor.uv.es": [17750], "vinceq.com": [2053], "newsletter.centrum.cz": [19674], "panhandle.aclufl.org": [286], "www.glo.wustl.edu": [18290], "smtn.tv": [2053], "onlineservices.milton-keynes.gov.uk": [10588], "calbea.rs": [2053], "nb-no.facebook.com": [5733], "unitedtech.co": [2053], "zaozhuang.meituan.com": [10405], "go.flag.co.uk": [2053], "web.yakovets.ru": [2053], "avanza.adenu.ia.uned.es": [17446], "umb.info": [2053], "upp.itunes.apple.com": [1160], "render.lv3.hbo.com": [20322], "kursk.beeline.ru": [1801], "l.drz.ac": [2053], "gis.ncdc.noaa.gov": [11272], "stble.co": [2053], "www.wordentropy.org": [18734], "www.globalways.net": [6863], "jaymart.co.th": [8683], "partnerupload1.steampowered.com": [15704], "css.gov.au": [3560], "wallet.google.com": [6962], "mikel.olasagasti.info": [10572], "www.sublimetext.com": [15816], "daazo.444.hu": [172], "www.materiel.net": [10229], "shop.sloanreview.mit.edu": [9916], "spartafx.com": [15474], "welcomecottages.com": [18790], "snth.me": [2053], "cdn7.iconfinder.com": [8066], "go.cttapp.com": [2053], "j.r70.us": [2053], "studyabroad.washington.edu": [17577], "algiers.usembassy.gov": [21879], "soap.stanford.edu": [15635], "www.habrastorage.org": [7263], "yahoopolicy.tumblr.com": [17100], "michaelwlucas.com": [10521], "www.precedent.com": [21190], "postmaster.msn.com": [9961], "blog.bing.com": [1949], "www.e-gold.com": [4950], "apps.admob.com": [571], "kathy.io": [2053], "university.appcelerator.com": [1152], "www.ondarossa.info": [12024], "gifsauce.us": [6760], "www.kiwiirc.com": [9081], "bbuzz.bz": [2053], "www.checktls.com": [3111], "discovercard.com": [4635], "tjoos.com": [16779], "www.lezhin.com": [20672], "lxcn.co": [2053], "writer.zoho.com": [19202], "newcastleccas.firmstep.com": [20125], "admin2.providesupport.com": [13401], "p1-u.itunes.apple.com": [1160], "www.enpass.io": [5384], "glu.co.nz": [2053], "images.path.com": [12662], "distfiles.macports.org": [9986], "thefire.org": [16543], "mcxnow.com": [10294], "www.nypost.com": [20972], "chris.lu": [3163], "www.portlandonline.com": [3254], "sol-m.co": [2053], "thumbnail.waywire.com": [21985], "thebodyshop.ch": [3712], "de.colocation-datacenter.com": [20280], "wht.to": [2053], "shopware.de": [14977], "direct.seagate.com": [14679], "chipdiz.us": [2053], "tokbox.com": [16804], "renewablefreedom.org": [14001], "ads-by.yieldselect.com": [18986], "ongoing.pro": [2053], "makeagift.stanford.edu": [15635], "4u.sambila.net": [2053], "foek.li": [2053], "savannah.vc": [14548], "mediamarkt.ru": [10342], "algorithms.rdio.com": [13828], "video.ecc-platform.org": [4978], "*.microsoftstoreassets.com": [10547], "www.ico.org.uk": [7835], "reg.confuzzled.org.uk": [3639], "www.cdon.eu": [2620], "a.ltrbxd.com": [9424], "www.cmpxchg8b.com": [2685], "metastatuspage.com": [15691], "*.media.tumblr.com": [17101], "iclick.site": [2053], "static.picload.org": [12873], "ondemand.webtrends.com": [18467], "*.frcanalytics.com": [6231], "cibulka.squat.net": [21549], "www.returnpath.com": [14066], "fshn.st": [2053], "www.redhotoffers.hsbc.com.hk": [20380], "t2rknowledge.bt.co.uk": [1591], "renderoti.ca": [2053], "www.united.com": [17498], "businesscatalyst.com": [2515], "www.brandspankingnew.net": [2334], "enigmabox.net": [5376], "jslib.iweb.com": [8020], "afewsc.us": [2053], "thisk.org": [21724], "wao.gov.uk": [21972], "dtomc.at": [2053], "studie.me.uk": [2053], "umw.edu": [17548], "item.jd.com": [8570], "pi.pardot.com": [12605], "comcourts.gov.au": [3556], "thechasqui.com": [2053], "www.browser-update.org": [19597], "*.macfarlanepackaging.com": [9991], "static-hearth.cursecdn.com": [4006], "static1.bentasker.co.uk": [1824], "kr.piliapp.com": [12887], "www.nos-oignons.org": [11709], "store.shopsite.com": [14963], "sprung.to": [2053], "www.instasync.com": [20469], "wiki.ubuntuusers.de": [17383], "wccb.net": [2053], "www.torrentproject.com": [16859], "7elements.co.uk": [220], "surgut.beeline.ru": [1801], "code.google.com": [6962], "a.napwr.pl": [2053], "events.snacktv.de": [15268], "ask.puppetlabs.com": [13460], "pe.liternet.ro": [2053], "roc.gg": [2053], "www.journal.ualinux.com": [21833], "www.kinogo.net": [20600], "*.bloxcms.com": [1565], "youtube.ph": [19016], "*.gamesplanet.com": [6555], "link.bleep.com": [2053], "pelo.tl": [2053], "a4.twimg.com": [17153], "www.accountkiller.com": [497], "www2.bt.com": [1593], "akv8.in": [2053], "sh.sdp.ca": [2053], "dolomit.es": [2053], "www.anon-ib.com": [1076], "iki.fi": [8110], "myaccount.active24.com": [19275], "tesla-new.desy.de": [4479], "bzbz.ca": [2053], "images.shrinktheweb.com": [14991], "b5connect.com": [2053], "www.test.tibia.com": [22069], "luck.betcoin.tm": [1865], "travaux.web4all.fr": [18349], "api.hertz.com": [7511], "www.finma.ch": [15950], "blog.sitelock.com": [15114], "www.axelsimon.net": [1511], "www.theme-fusion.com": [16606], "seiu.cc": [2053], "pre.zohodiscussions.com": [19204], "resellers.guidancesoftware.com": [7134], "on.koco.com": [2053], "bluegenio.com": [2184], "shrew.net": [21438], "info.maths.ed.ac.uk": [5168], "rosfcts.com": [2053], "www.pbs-erhverv.dk": [12706], "www.unirel.vt.edu": [18031], "www.inschrijven.nl": [8311], "www.nandos.com": [11217], "hamstudy.org": [7310], "read.amazon.com.au": [19366], "www.southampton.ac.uk": [17562], "smolensk.rt.ru": [13703], "p.yieldlab.net": [18989], "www.ncsi.com": [11076], "ihh.cl": [2053], "3etoil.es": [2053], "*.illuminated-pots.com": [8118], "hi4em.derby.gov.uk": [4460], "textualapp.com": [16423], "smartbetty.me": [2053], "www.gradle.org": [7010], "www.getpersonas.com": [6701], "22.whlt.com": [2053], "afra-berlin.de": [324], "dtt.me": [2053], "foundation.berkeley.edu": [17526], "statichukd.com": [7693], "stablehost.com": [15609], "iwcp.usuhs.edu": [17330], "www.agcs.allianz.com": [19351], "inci.to": [2053], "smartaremobil.idg.se": [7852], "www.cuttlefish.com": [4017], "www.communities.idea.gov.uk": [20421], "tirabyt.es": [2053], "www.womenshealthspecialists.org": [18711], "*.patternsinthevoid.net": [12670], "bmic.ro": [2053], "activestatic.net": [541], "fakoshima.link": [2053], "scmjo.bz": [2053], "test.uat.groupon.com": [7100], "kia.nz": [2053], "www.thewesternworld.com": [16590], "immrs.in": [2053], "beta.yr.no": [22120], "linq.ws": [2053], "xdbs.in": [2053], "forum.ngs.ru": [20907], "login.truelife.com": [17044], "pixal.at": [2053], "m.metro.ya.ru": [18930], "www.fose1.plymouth.ac.uk": [13055], "consultant.ru": [19778], "hlfmn.co": [2053], "static01.nyt.com": [11186], "www.browserhacker.com": [2428], "printem.ps": [2053], "www.neos.io": [11348], "mbmoo.se": [2053], "www.over-yonder.net": [12362], "trade.vaultoro.com": [21897], "account.schwartzmedia.com.au": [14614], "rcm-uk.amazon.co.uk": [19365], "geografia.unizar.es": [17643], "7x7-journal.ru": [228], "ems-ph.org": [5324], "baike.1688.com": [44], "mggk.eu": [2053], "m-w.co.uk": [9855], "www.csoa15gatxs.org": [19833], "webmail.banan.cz": [1528], "staging.wordvine.sydney.edu.au": [21631], "ticket.rakuten.co.jp": [13767], "www.andrewbrookins.com": [1042], "br1.me": [2053], "www.thecisogroup.com": [16446], "na.doski.uz": [2053], "www.insidehighered.com": [8313], "jweir.co": [2053], "twtstrm.co": [2053], "go.mjmetts.com": [2053], "*.pay.gov": [12676], "*.artlebedev.ru": [1259], "nickeltips.co": [2053], "manage.smartadserver.com": [15228], "flippen.me": [2053], "adserver.msn.com": [9961], "www.crackedconsole.com": [3820], "blackarch.org": [2088], "samu.li": [2053], "s.f87.me": [2053], "www2.sites.uidaho.edu": [17543], "gvcmtg.co": [2053], "infrastructure.gov.au": [4451], "ycharts.com": [18917], "aiaphl.org": [2053], "u.onpc.kr": [2053], "www.investors.com": [8471], "whispergifts.com": [18544], "support.mcafee.com": [10282], "www.imgrush.com": [8147], "roqu.in": [2053], "aehom.es": [2053], "www.exiledonline.com": [5096], "www.buffalo-technology.com": [2455], "yabumi.cc": [18933], "go.ivotize.com": [2053], "bface.es": [2053], "zetetic.net": [19168], "*.jobthread.com": [8742], "jobs.thenextweb.com": [16568], "www.flonline.eu": [5691], "securityconference.de": [14769], "kaolian.link": [2053], "www.bitballoon.com": [1975], "www.blackmoreops.com": [19553], "s.friki.moe": [2053], "mx.01.org": [1], "www.ucu.org.uk": [21835], "stowesports.com": [333], "liuwg.web.cern.ch": [2632], "guigang.jd.com": [8571], "apk27.ml": [2053], "www.studentmoney.uillinois.edu": [17238], "cliente.meo.pt": [10440], "followmail.com": [20140], "se.sitestat.com": [15132], "zuno.cz": [19077], "assets1.github.com": [6801], "tribot.org": [16113], "static01.vg.no": [17776], "jaces.co": [2053], "newsroom.t-mobile.com": [16026], "member.societyforscience.org": [15328], "www.obi.hu": [20977], "im.ovi8.es": [2053], "c1.rgstatic.net": [13655], "affiliates.bhphotovideo.com": [19527], "www.qrpedia.org": [13541], "de-pl.dict.cc": [4536], "static.cdn.realviewdigital.com": [13867], "e.gettyimages.com": [6740], "mot.sh": [2053], "i2.itc.cn": [8536], "calendars.com": [2797], "son.plus": [2053], "clients.imodules.com": [7909], "3turl.eu": [2053], "pititch.at": [2053], "opac.library.usyd.edu.au": [21885], "gpoffers.co": [2053], "www.logisztika.bme.hu": [1570], "androids.ac": [2053], "go.xelio.eu.org": [2053], "zbblg.me": [2053], "*.rarbg.to": [21257], "encrypted.redteam.net": [13913], "givingtostanford.stanford.edu": [15635], "www.fuerzapopular.pe": [6361], "www.gsfc.org": [6504], "www.gls-group.eu": [6645], "fws.gov": [17338], "nl.4.boardgamearena.com": [2219], "finlex.fi": [20121], "mlkshk.co": [2053], "tags.news.com.au": [11530], "www.itc.u-tokyo.ac.jp": [17196], "disruptionclaim.britishairways.com": [1527], "cdn.pro186.com": [13337], "i.local.ch": [9697], "www.tonergiant.co.uk": [16817], "developers.linode.com": [9547], "www.cits.ruhr-uni-bochum.de": [14266, 14267], "www.stripe.com": [15781], "zywv.us": [2053], "underwaterworld.com.au": [17444], "kubrick.link": [2053], "ucb.cau.arq.br": [2053], "www.flughafen-zuerich.ch": [20136], "cedarcrestcollegecressmanlibrary.worldcat.org": [18748], "app-de6.resrc.it": [13832], "phoenix.edu": [12845], "bpnww.biz": [2053], "www.dionyziz.com": [7042], "apps.peterborough.gov.uk": [12806], "www.verisign.com.hk": [17915], "zath.me": [2053], "cce.engineering.osu.edu": [11959], "m.lezhin.com": [20672], "cchtml.com": [2973], "blog.talktalkbusiness.co.uk": [16185], "t4l.co": [2053], "ipre.educ.cam.ac.uk": [17529], "next.delicious.com": [4405], "ripmedicaldebt.org": [21311], "hu.rgovind.com": [2053], "genius.is": [2053], "www.matrox.com": [10244], "vets4212.dol.gov": [19938], "www.bitquick.co": [1992], "ca-securem.ikea.com": [8108], "mdv.vc": [2053], "olsnsanonymo.us": [2053], "sel.vg": [2053], "www.freetvonline.com": [6271], "*.linuxnewmedia.com": [9556], "es.godaddy.com": [6898], "mak.so": [2053], "www.ispbilling.com": [17091], "*.burstmedia.com": [2504], "filmarkivet.no": [20114], "reader.wustl.edu": [18290], "finance.socrata.com": [15332], "chen.mysql.cesky-hosting.cz": [19680], "faasand.gpehosting.com": [6493], "bndtools.ci.cloudbees.com": [19736], "lists.tog.ie": [16099], "jobs.kirklees.gov.uk": [9067], "bitcard.org": [1978], "cdntest-b.ndla.no": [11309], "acctair.com": [2053], "*.clickequations.net": [3304], "si4.twimg.com": [17153], "enes.dict.cc": [4536], "wms.assoc-amazon.ca": [1320], "i4n.in": [2053], "sendmoneytoschool.com": [14822], "maricopa.edu": [10154], "www.root.cz": [14199], "desy2.desy.de": [4479], "eastlund.buzz": [2053], "bittit.info": [2075], "kovidgoyal.net": [9150], "severnaya-osetiya.beeline.ru": [1801], "andrewmunsell.com": [1041], "firmas.lv": [5980], "haiyang.meituan.com": [10405], "lint.travis-ci.org": [16976], "assure.ly": [2053], "sindsau.de": [2053], "on.pdo5.org": [2053], "medgadget.com": [10307], "*.confirmit.com": [3635], "*.xenogamers.org": [18864], "pirateproxies.org": [21709], "www.astro.cf.ac.uk": [2895], "cdn1.sportxx.ch": [15543], "daryl.at": [2053], "zcpt.me": [2053], "lucidpress.com": [9810], "webapps.kent.gov.uk": [9005], "planet.nuug.no": [11168], "movi.ps": [2053], "atomicorp.com": [1364], "www.diasp.org": [4528], "www.ghosteryenterprise.com": [6750], "kotori.link": [2053], "strk.org.uk": [2053], "bty.tips": [2053], "subscribe.sel.sony.com": [15393], "speeddl.com": [10287], "vuxml.freebsd.org": [6237], "a-v2.sndcdn.com": [15278], "bxf.sh": [2053], "trustpass.alibaba.com": [850], "mill.yt": [2053], "desimg.zamimg.com": [19095], "www.bouncerstation.com": [2299], "wmp.shootingillustrated.com": [21427], "thelab.co": [2053], "jon.bz": [2053], "kn007.net": [9089], "community.vodafone.co.nz": [18105], "ws.meituan.com": [10405], "cdn.sparkfun.com": [15471], "zacatr.us": [2053], "www.techtoolsforactivism.org": [16279], "water-challenge.com": [18295], "www.genieessp.com": [20220], "23h.us": [2053], "junt.in": [2053], "www.hps.org": [20370], "exmail.qq.com": [13514], "edrs.sfa.bis.gov.uk": [17243], "netmusic.es": [2053], "pcper.com": [21094], "beant.in": [2053], "i.living.is": [2053], "graceho.pe": [2053], "www.nerdpol.ch": [11351], "www.b-link.bucknell.edu": [2444], "mdac.net": [2053], "ganzi.meituan.com": [10405], "v00.at": [2053], "lht.io": [2053], "trr.windstar.com": [22033], "huangnan.meituan.com": [10405], "dbs.com.tw": [4084], "sfnm.co": [2053], "*.pro-linux.de": [13334], "lucaspetter.com": [9805], "jhawk.co": [2053], "b.pi.mu": [2053], "www.ancud.de": [1034], "www.taylorandfrancis.com": [8267], "elect.fyi": [2053], "blog.slideshare.net": [15207], "mein.ktk.de": [8906], "unvr.se": [2053], "www.smileysnetwork.com": [15252], "www.ederdrom.de": [5177], "associates.amazon.ca": [19362], "www.deater.net": [4343], "www.braindecoder.com": [2320], "www.zerties.org": [19163], "api.antizapret.info": [1110], "*.c-col.com": [3583], "unvr.st": [2053], "alclr.co": [2053], "www.tagged.com": [16164], "awesomejar.com": [1502], "hod.im": [2053], "appelli.amnesty.it": [1003], "visistat.com": [18059], "marinvo.co.uk": [2053], "*.idc.com": [7850], "links.yshome.me": [2053], "mina.so": [2053], "olvmy.lv": [2053], "i.fj2.ru": [2053], "sso.alfa-openmedia.de": [840], "www.pravdatyt.com": [21188], "www.rebornbuddy.com": [2284], "ombudsman.achieveservice.com": [19265], "www.article19.org": [1267], "*.keymile.com": [9022], "k9.chaucanh.net": [2053], "beta.leboncoin.fr": [20650], "www.nrf.com": [11248], "helpdesk.umd.edu": [17549], "artoncampus.rit.edu": [13667], "feeds.aps.org": [969], "extranet.ic.nhs.uk": [11102], "www.interpol.int": [8441], "themghty.co": [2053], "www.just-eat.dk": [20565], "curious.li": [2053], "newshu.gs": [2053], "wbp.me": [2053], "paste.proxy.sh": [13408], "freech.net": [20162], "seer.cancer.gov": [2864], "secure.junodownload.com": [8836], "ci-staging.swift.org": [15941], "www.kickass-torrents.to": [9031], "ontar.gt": [2053], "jmp2.tk": [2053], "moda.sh": [2053], "dashboard.ngrok.com": [11568], "b.ronboris.com": [2053], "forum.warthunder.com": [21976], "www.pariloto.net": [7879], "*.cdn.kixeye.com": [8882], "www.gslug.org": [7118], "aguses.me": [2053], "url.ubds.mn": [2053], "portia.worldcat.org": [18748], "xinji.meituan.com": [10405], "stage-mas.wiiings.com": [18587], "www.monkeysaudio.com": [10747], "*.sprint.com": [15565], "imlk.me": [2053], "bigcityplan.birmingham.gov.uk": [19536], "ohsulibrary.worldcat.org": [18748], "secure.buypremiumtech.net": [2524], "cnmlyt.in": [2053], "www.cmascenter.org": [2682], "m13.me": [2053], "bitsquare.io": [2072], "thspielt.at": [2053], "file.service.qq.com": [13514], "www.payback.pl": [21088], "nj02all01.baidupcs.com": [1663], "www1.citibank.com": [3230], "www.hpi.uni-potsdam.de": [17618], "democracy.buckscc.gov.uk": [19605], "theorie.mondediplo.com": [10729], "cpri.me": [2053], "igalia.com": [8098], "jobs.bathnes.gov.uk": [1737], "rangenetworks.com": [13783], "l.jessen.pe": [2053], "barnard.edu": [1722], "www.jcbusa.com": [8566], "ipe.events": [2053], "baltimoresun.com": [17006], "freebsdfoundation.org": [6239], "ferx.co": [2053], "gamefly1.gameflycdn.com": [6538], "hxj.me": [2053], "www.syncaccess.net": [21635], "link.afgvg.com": [2053], "cafeett.com": [2053], "selenic.com": [10454], "www.bupa.com": [2496], "binhai.meituan.com": [10405], "ly.holy666.net": [2053], "www.lovtidende.dk": [9798], "www.usc.es": [17711], "jonathanmayer.org": [8773], "torreycommerce.com": [16865], "www.socialcampaign.com": [3889], "www.marketing.allianz.com": [19351], "nerdstat.us": [2053], "see.fbtab.co.uk": [2053], "on.nfl.com": [2053], "workshop.lifehacker.com": [9492], "media.phonehouse.com": [12848], "on.fox6now.com": [2053], "www.metro.yandex.kz": [18957], "mchor.us": [2053], "cdn.podseed.org": [13070], "afo.re": [2053], "mhhg.us": [2053], "store.lds.org": [16485], "tvsa.mx": [2053], "login.centreon.com": [3019], "hungarian.hungary.usembassy.gov": [21879], "gadvnt.rs": [2053], "www.etoro.com": [5077], "www.tmcnet.com": [16788], "bergenopzoom.nl": [11324], "yashrajs.tk": [2053], "cinestar.de": [3202], "s.gooc.us": [2053], "rm.yieldmanager.com": [14114], "joanne.media": [2053], "tabar.me": [2053], "becky.tk": [2053], "webmail.cp.pt": [3813], "www.thepiratebay.gl": [21710], "vk.wix.com": [2053], "tsbmag.com": [16114], "url.paperon.net": [2053], "blogs.ncl.ac.uk": [11073], "pbesignup.euw.leagueoflegends.com": [9362], "cybermill.com": [4046], "www.maxmind.com": [10262], "extremetracking.com": [5640], "knowledge.rapidssl.com": [13792], "cmb.is": [2053], "hr-skyen.dk": [7228], "maureen.link": [2053], "www.degica.com": [3396], "www.executiveinterviews.biz": [5596], "go.binz.ws": [2053], "www.airelf.com.tw": [19331], "sndcom.us": [2053], "jcqu.es": [2053], "meta.superuser.com": [15611], "resiste.squat.net": [21549], "mycrap.co": [2053], "edu.simplebooklet.com": [15070], "www.hlmod.ru": [7579], "prgo.me": [2053], "*.targetimg2.com": [16215], "qwapo.es": [2053], "www.mork.mo": [10781], "base.liveperson.com": [9655], "krone.hugb.de": [2053], "www.neovim.io": [20888], "www.sunbeltsoftware.com": [15852], "gdat.co": [2053], "shop.sysmocom.de": [16010], "www.sciencemag.org": [14624], "lyrishq.com": [9851], "inhk.us": [2053], "sociales.unizar.es": [17643], "ukconstitutionallaw.org": [21839], "wikivs.com": [18598], "www.goodzer.com": [6960], "flexyourrights.org": [6030], "*.pixnet.net": [12963], "netsite.pro": [2053], "mjm.ag": [2053], "prjkt.se": [2053], "forum.agilialinux.net": [19322], "buz.by": [2053], "seventorrents.org": [14881], "prnv.me": [2053], "klick.is": [2053], "www.freifunk-goettingen.de": [6309], "payments.pirateparty.org.au": [12929], "opendoors.org": [12207], "enfuse.co": [7134], "qnypy.doubanio.com": [19954], "*.library.wisc.edu": [17635], "www.bluetoad.com": [2190], "endenburg.be": [2053], "banking.postbank.de": [13186], "unhm.org": [2053], "foob.org": [2053], "cdn2.openculture.com": [12204], "stackoverflow.com": [15611], "www.wienit.at": [18582], "www.jura.uni-potsdam.de": [17618], "muying.1688.com": [44], "www.compete.com": [3583], "tck.st": [2053], "point.widgit.com": [22023], "s02.gt": [2053], "rocknytt.co": [2053], "my.choopa.com": [3160], "www.aqueousvapor.com": [1185], "tkds.co": [2053], "hokej.idnes.cz": [20425], "htltn.com": [2053], "clickandpledge.com": [3314], "www.yandex.com.tr": [18954], "wizbangpop.com": [18689], "homepage.files.bbci.co.uk": [19501], "features.cpanel.net": [2710], "ruu.dk": [2053], "tui.amazon.cn": [19363], "swi.je": [2053], "i.szocialis.net": [2053], "psha.xyz": [2053], "photos.friendfinder.com": [6331], "gibsonintl.co": [2053], "www.illuminateed.com": [20430], "www.trafficmaxx.de": [16929], "sgoti.ws": [2053], "teststackoverflow.com": [15611], "www.formstack.com": [6164], "cpfp.cancer.gov": [2864], "*.harakahdaily.net": [7334], "postalinspectors.uspis.gov": [17305], "go.aclu-nj.org": [2053], "choicecheapies.co.nz": [12400], "www.militaryfriendly.com": [20797], "sogou.com": [21500], "www.togevi.com": [8549], "smplbtcs.co": [2053], "cielchien.xyz": [2053], "brkfts.nl": [2053], "www.mojandroid.sk": [10722], "777s.co": [2053], "francescopalazzo.com": [20157], "5.dbstatic.no": [19866], "zlrath.co": [2053], "s38.cnzz.com": [3391], "*.intuitivepassword.com": [8455], "forum.federalsoup.com": [5836], "statswales.wales.gov.uk": [18252], "fri.center": [2053], "cees.uio.no": [17615], "w.kerala.viajes": [2053], "static.plymedia.com": [12473], "tucsoncos.me": [2053], "www.enygf.eu": [5530], "datacenterknowledge.com": [4256], "workingatbooking.com": [22049], "lpcvan.co": [2053], "l.hindmar.sh": [2053], "ru.aegeanair.com": [7041], "voiceteachertraining.com": [11492], "kicking.horse": [2053], "q3nz.net": [2053], "ads.nytimes.com": [11189], "metrika.yandex.by": [18953], "datasheets.maximintegrated.com": [10261], "msql.co": [2053], "support.balabit.hu": [19480], "desjardins.com": [4471], "cadence.com": [2772], "go.mmradio.dk": [2053], "*.onamae.com": [12020], "messages.meetme.com": [10378], "l.unga.dk": [2053], "www.overclockers.co.uk": [12363], "otakumode.com": [12333], "www.mozillians.org": [10853], "blog.vevo.com": [17773], "goldetfprod.alipay.com": [857], "natawhat.tumblr.com": [17100], "w10.hillingdon.gov.uk": [7550], "www.pogliad.ua": [21159], "sh.syarihu.net": [2053], "www.quickline.com": [21243], "*.warwick.ac.uk": [17634], "browsec.com": [19596], "policyalternatives.ca": [21164], "www1.netflix.com": [11421], "direct123.fi": [4607], "comingolstadt.de": [3532], "aqueousvapor.com": [1185], "videos.plannedparenthood.org": [12991], "i5.piimg.com": [16704], "go.cheatha.de": [2053], "rlg.mx": [2053], "ogt.bz": [2053], "www.prv.se": [12494], "rximage.nlm.nih.gov": [11241], "planet.moodle.org": [10763], "mdt.me": [2053], "imgix.8tracks.com": [236], "quitter.is": [13601], "allac.es": [2053], "vidcoa.ch": [2053], "j.md-5.net": [2053], "linuxcontainers.org": [9580], "s.gambe.jp": [2053], "www.eon-hungaria.com": [20048], "bosch-sensortec.com": [2280], "www.vip.vetbiz.gov": [17297], "xinbei.meituan.com": [10405], "g01.a.alicdn.com": [846], "masterxchange.com": [10219], "aaulan.dk": [438], "www.buywithconfidence.gov.uk": [19620], "qmail.jms1.net": [8736], "sbar.in": [2053], "open.plymouth.ac.uk": [13055], "agwa.name": [774], "ogni.me": [2053], "3rd1dr.co": [2053], "lz0772.jd.com": [8571], "collect.cn.miaozhen.com": [10516], "firstamendmentcoalition.org": [5989], "familie.niedersachsen.aok.de": [357], "www.rainierarms.com": [21250], "bowie.it": [2053], "www.kangurum.com.tr": [8933], "reverb.echo.nasa.gov": [11058], "r.heima.jp": [2053], "nwsgn.com": [2053], "www.jewishpress.com": [8712], "services.forthnet.gr": [6172], "webarch.net": [18405], "www.newsyslog.org": [7025], "www.mobile-ent.biz": [8376], "*.localedge.com": [9699], "fls-eu.amazon.fr": [19371], "uformia.com": [17396], "debian-art.org": [21006, 21007], "static-business.verizon.net": [21906], "metro.co.uk": [10498], "displaysolutions.samsung.com": [14501], "atmail.dreamhost.com": [4844], "www.nhm.uio.no": [17615], "werok.it": [2053], "register.shaw.ca": [14932], "dontbreakourphones.org": [19948], "flyersrights.com": [6078], "digitalis.leeds.ac.uk": [17604], "www.piratpartiet.no": [12941], "pick.pink": [2053], "sydneytowereye.com.au": [15964], "sysconfig.org.uk": [16006], "pluss.io": [2053], "milton-keynes.gov.uk": [10588], "www.townsvillebottomfishingcharters.com.au": [16890], "jcl.im": [2053], "leastauthority.com": [9373], "www.zyado.com": [19246], "a.882u.com": [2053], "set.io": [14876], "outof.co": [2053], "rles.tv": [2053], "gwla.co": [2053], "webmail.ncl.ac.uk": [11073], "vh2.ro.vutbr.cz": [17814], "blackboard.stonybrook.edu": [15736], "wandoujia.com": [18267], "*.domena.pl": [4761], "sbuys.me": [2053], "was-3.umd.edu": [17549], "bitly.bramp.net": [2053], "snip.udooz.net": [2053], "image.ias.rakuten.co.jp": [13768], "www.vouchers.bt.com": [1593], "deutschepost.de": [19901], "crm.engagemedia.org": [5362], "pics-photo.com": [2053], "*.nsm.uh.edu": [17601], "www.system76.com": [16012], "forum.hitbtc.com": [7561], "hi-tech.mail.ru": [10040], "kubieziel.de": [9179], "www.topatoco.com": [16835], "b.whit.la": [2053], "iop.org": [8345], "btcgreece.com": [1600], "dg.af": [2053], "ctzsi.de": [2053], "rasende.dk": [13802], "thecreatorsproject-images.vice.com": [17959], "events.msdn.microsoft.com": [10543], "coccoc.com": [3402], "www.spiil.org": [15525], "heute.de": [22127], "www.infopackets.com": [8262], "www.triodos.com": [17015], "cryptocoinsnews.com": [3927], "update.openmpt.org": [12148], "go.postmuch.com": [2053], "zesti.es": [2053], "cdn.oseems.com": [12323], "sanwork.com": [14533], "idac.me": [2053], "buy.entrust.net": [5406], "jira.mongodb.org": [10742], "townsq.co": [2053], "cdn.whmcs.com": [18201], "aqua.ly": [2053], "it.chaturbate.com": [3093], "cabrerafirm.co": [2053], "shnk.in": [2053], "blpg.gy": [2053], "rajesh.cc": [2053], "ne.solidarites.ch": [21504], "v.norvine.net": [2053], "adamp.co": [2053], "beta.rsaconference.com": [13688], "*.newzbin.com": [11544], "go.west.gs": [2053], "www.nhs.uk": [11102], "cam.ac.uk": [17529], "s.troop1998.com": [2053], "rchy.net": [2053], "plymouth.greenparty.org.uk": [7052], "lprs.se": [2053], "realtech-vr.com": [13863], "edia.to": [2053], "core.hostdime.com": [7654], "katalog.ub.uni-heidelberg.de": [17459], "dvelo.me": [2053], "1.zdraveinfo.sk": [2053], "apps3.bdimg.com": [1770], "orch.me": [2053], "www.colino.net": [3478], "johnl.us": [2053], "static.qiwi.com": [13533], "c125.co": [2053], "blog.mangolanguages.com": [10115], "rawgit.com": [13814], "myin.to": [2053], "qatar.sfs.georgetown.edu": [6668], "l.doh.ms": [2053], "ace.sh": [2053], "www.hairsmize.com": [7297], "your.myfonts.net": [10949], "chengan.meituan.com": [10405], "s23.cnzz.com": [3391], "www.eiskent.co.uk": [5018], "gropro.org": [2053], "www.groton.org": [7092], "j.oitc.ch": [2053], "www.websitealive6.com": [18445], "capublic.worcestershire.gov.uk": [22046], "www.calpolyarts.org": [2788], "jobboerse.web.de": [18347], "destrijd.squat.net": [21549], "www.umwelt.sachsen.de": [14454], "le-vpn.com": [9344], "dvpr.es": [2053], "www.cloudtrax.com": [3356], "www.1phads.com": [72], "piratebay.usbypass.online": [21771], "*.lightreading.com": [16276], "bolivia.usembassy.gov": [21879], "dannyurl.us": [2053], "dailyherald.com": [4188], "edu.unizar.es": [17643], "*.iamnoone-solutions.net": [8039], "filesender.upo.es": [17683], "go.dive.in": [2053], "crpk.ornl.gov": [11892], "lgnv.co": [2053], "vf.com": [3616], "www.bitcointoyou.com": [2036], "www.apk-dl.com": [19403], "*.mediatakeout.com": [10330], "eureka.berkeley.edu": [17526], "download.alicdn.com": [846], "wiwi.htwk-leipzig.de": [7736], "www.shareit.com": [14914], "www.thebodyshop.co.uk": [16516], "cathext.in": [2053], "mfru.it": [2053], "media.compete.com": [3583], "search.mywot.com": [10987], "kca.re": [2053], "e.lode.com.au": [2053], "www.ssl-cert-shop.com": [14411], "zicguzoo.com": [22134], "webmail.barvaux.org": [1733], "az698912.vo.msecnd.net": [10821], "golang.org": [6917], "www.alloscomp.com": [898], "www.rsaconference.com": [13688], "api.recurly.com": [13887], "*.easyjet.com": [5126], "justhost.com": [8843], "forums.suse.com": [14435], "gigigorgeo.us": [2053], "ccsdlib-preprod.ccsd.cnrs.fr": [6314], "cartercenter.org": [2926], "www.privacy-handbuch.de": [13308], "j.plasser.net": [2053], "filerio.in": [5909], "blog.discourse.org": [4631], "ehsa.osu.edu": [11959], "alien.net.au": [852], "murf.me": [2053], "www.dixy.ru": [4673], "webapps.brown.edu": [2421], "go.erickt.me": [2053], "banner.euroads.se": [5507], "hpge.co": [2053], "tgc.1688.com": [44], "thebodyshop.co.uk": [16516], "sl.trapplex.eu": [2053], "7oi.org": [2053], "dvtdmnn.com": [2053], "cfsi.pgcdn.com": [12449], "101.taobao.com": [16206], "business.sky.com": [15170], "scuf.co": [2053], "cp8.win-rd.jp": [18625], "usel.es": [2053], "qmc.quickline.com": [21243], "b0mb.co": [2053], "d.perubatan.org": [2053], "w-dm.us": [2053], "www.mcpmag.com": [9895], "*.store.pgp.com": [12448], "suma-ev.de": [15845], "lsbu.ac.uk": [9252], "wdgt.link": [2053], "s3.mediamatters.org": [10324], "www.havelockinvestments.com": [7376], "f2.blick.ch": [2125], "docs.indymedia.org": [8234], "doostan.mondediplo.com": [10729], "www.clevelandclinicmeded.com": [3295], "rubixlinux.org": [21337], "ap.gy": [2053], "support.lenovo.com": [9409], "www.intsig.com": [20480], "clmo.ms": [2053], "publisher.qbrick.com": [13529], "www.movie4k.org": [10824], "www.sirportly.com": [15105], "de.about.aegeanair.com": [7041], "blog.cnes.fr": [2691], "itossi.co": [2053], "pinknews.co.uk": [12907], "alv.cm": [2053], "microsites.lincolnshire.gov.uk": [9525], "pinkpaislee.com": [12908], "mynddot.co": [2053], "www.stk.uio.no": [17615], "sentby.jp": [2053], "hn1.co": [2053], "c-cargus.co": [2053], "orkut.com": [12313], "helpjuice.com": [7448], "mydatapipe.com": [10992], "www.ysubookstore.com": [19050], "www2.adm.ku.dk": [17534], "www.thepiratebay.la": [21710], "wg.meituan.com": [10405], "anynin.es": [2053], "actvt.io": [2053], "lists.linuxfoundation.org": [9572], "actvt.im": [2053], "cryptocapital.co": [3937], "fishy.at": [2053], "licensing.jamendo.com": [8649], "www.draugiem.lv": [4838], "*.hanselman.com": [14638], "irkutskaya-obl.beeline.ru": [1801], "iamam.thomsonreuters.com": [16650], "www.pulpcentral.com": [12508], "lab.neos.eu": [11088], "via.arne030.eu": [2053], "witchery.social": [2053], "*.airbnb.com.br": [788], "2.*.wdfiles.com": [18593], "it.pcpartpicker.com": [12709], "lwm.me": [2053], "cn.mondediplo.com": [10729], "gitlab.labs.nic.cz": [11572], "www.cinchouse.com": [3195], "sww.midwife.org": [2053], "liboil.freedesktop.org": [6243], "rci.rs": [2053], "url.muzinic.net": [2053], "memsg.com": [2053], "sdlf.stanford.edu": [15635], "eoft.eu": [5034], "cvrtg.io": [2053], "www.expatexplorer.hsbc.com": [7233], "*.stc.org": [15325], "ipe.report": [2053], "www.blastingnews.com": [2112], "x.vrmrck.be": [2053], "prod01-piwik.firstlook.org": [5993], "l.musleh.com": [2053], "101domain.ru": [16], "mobileenterprise360.com": [10687], "towsonuniversity.worldcat.org": [18748], "www.rangenetworks.com": [13783], "www.pinboard.in": [12891], "leaserig.net": [9371], "democracynow.org": [4433], "sdc.countquest.se": [3777], "www.aclu-wa.org": [293], "saintaardvarkthecarpeted.com": [14482], "www.spotware.com": [15550], "*.techwebonlineevents.com": [16276], "blogg.se": [2159], "nxeassets-ssl.xbox.com": [18850], "cmeadows.co": [2053], "devh.at": [2053], "login.migros.ch": [10566], "at.in.gov": [2053], "realestate.rakuten.co.jp": [13767], "shop.ualinux.com": [21833], "lso.com": [9255], "k7s.co": [2053], "arkve.in": [2053], "secure.backblaze.com": [1636], "investorfunds.us.hsbc.com": [7233], "quickleak.se": [13592], "www.ooyala.jp": [12098], "img6.leboncoin.fr": [20650], "pradeep.co": [2053], "cnfm.is": [2053], "privacyfoundation.de": [6679], "cdn.spiegel.de": [15523], "tweet.rapmag.tv": [2053], "cadlink.com": [19626], "r.vietkites.com": [2053], "www.mailpoet.com": [10046], "omarandwill.com": [11987], "*.getchute.com": [6689], "unedabierta.uned.es": [17446], "wobs.co": [2053], "scurt.in": [2053], "www.varusteleka.fi": [17864], "q.tani.mu": [2053], "media.disquscdn.com": [4656], "kr.hsbc.com": [7233], "psych.tips": [2053], "*.yplanapp.com": [22119], "feefighters.com": [5846], "r.cornguo.net": [2053], "chcsl.com": [2053], "samsungindiaestore.com": [14506], "defaultnamehere.tumblr.com": [17100], "hidekibin.hidekisaito.com": [7533], "sdc.fiscal.treasury.gov": [16980], "crashspace.org": [3832], "shop.interkassa.com": [8400], "qdn.meituan.com": [10405], "trekaroo.com": [16984], "tips.fbi.gov": [5825], "s.designplus.co": [2053], "s-static.ak.facebook.com": [5733], "maw.so": [2053], "www.letsencrypt.org": [9422], "sp.lenta.ru": [20661], "cloudconnect.norton.com": [11703], "www.twinprime.com": [17157], "sme-fr.com": [2053], "aclumaine.org": [288], "www.nomachine.com": [11631], "go.thraxx.co": [2053], "mtoza.vzaar.com": [18179], "www.mxguarddog.com": [9976], "kiks.yandex.com.tr": [18954], "www.comsecuris.com": [3610], "flixster.com": [6049], "ea.twimg.com": [17153], "s4.shinystat.com": [21426], "insight.duo.com": [4900], "www.oig.dol.gov": [19938], "thewrap.com": [16480], "zeitungsarchiv.nzz.ch": [20974], "cdn.colocationamerica.com": [3498], "www.torrentbutler.eu": [16849], "zerve.me": [2053], "cdkeys.com": [2976], "inverse.ca": [8463], "buy.norton.com": [11703], "baylor.edu": [1754], "*.samba.com": [14308], "elmntcf.it": [2053], "wsh.io": [2053], "www.cumbriapartnership.nhs.uk": [11102], "krie8.tv": [2053], "www.consumersniper.com": [3666], "try.diffoscope.org": [4545], "cert.pl": [2634], "rodericvs.net": [2053], "internetstaff.com": [8433], "webmarket.rwe.de": [21349], "youngminds.org.uk": [19024], "abcfam.ly": [2053], "*.ticketmaster.co.uk": [16690], "download.plop.at": [21151], "openbittorrent.com": [12122], "aitao.taobao.com": [16206], "tuki.kapsi.fi": [8943], "www.dvatril.cz": [4173], "wbdef.nl": [2053], "bl.hqmw.com": [2053], "www.marc.info": [9877], "heiress.ws": [2053], "elafnettv.com": [5240], "support.transifex.com": [16943], "hivemc.link": [2053], "yuzumizki.xyz": [2053], "gotroy.us": [2053], "www.mndigital.com": [10326], "s4.reutersmedia.net": [16649], "www.zyvoxassist.com": [19082], "www.dm-mailinglist.com": [4124], "jkb.yt": [2053], "logistics.zalando.com": [19094], "de.mouseflow.com": [10812], "lovingsupport.nal.usda.gov": [17495], "www.westoxon.gov.uk": [18517], "*.admitad.com": [650], "www.s-pankki.fi": [14298], "*.jodohost.com": [8756], "www.demonsaw.com": [4437], "www.efurnitureny.com": [5014], "red-blog.co.uk": [2053], "oce-docworks.rz.htw-berlin.de": [7246], "www.myfonts.com": [10948], "lists.fit.edu": [6058], "cryptonomicon.com": [3954], "rylwarfare.net": [13717], "livesupport.xmission.com": [18831], "x.veilands.com": [2053], "cheur.fr": [2053], "www.onehealthcommission.org": [20997], "*.campaigner.com": [2837], "www.blinktrade.com": [2132], "evkitch.com": [2053], "docs.pnp4nagios.org": [12478], "bgbr.in": [2053], "mabeo.pro": [2053], "bekijkjefoto.nu": [2053], "fwk.allshareplay.com": [878], "www.wwf.ch": [22060], "cdn.scriptfodder.com": [14662], "pub.dfo.no": [19907], "dekeuze.nl": [2053], "www.manchester.gov.uk": [10107], "mail.scs.uiuc.edu": [17234], "julieg.me": [2053], "static.fas.harvard.edu": [7351], "1m1w.co": [2053], "archives.somethingawful.com": [15379], "mbjake.uk": [2053], "blah.im": [2109], "pres.sso.bluewin.ch": [2210], "www.peersm.com": [12735], "your.burnley.gov.uk": [2502], "www.pinkpaislee.com": [12908], "store.xkcd.com": [22085], "users.sakh.com": [21360], "www.kungfunation.com": [9189], "bugs.vestacp.com": [17945], "vrtc.co": [2053], "chuangye.bbs.taobao.com": [16206], "www.webtrekk.com": [18466], "partner.steampowered.com": [15704], "ru.functions-online.com": [20187], "legitbs.net": [9390], "middlemanapp.com": [20793], "www.flinq.de": [6038], "slg.bridgend.gov.uk": [19591], "registrationcenter.intel.com": [8359], "neonmob.com": [11347], "www.personaldataecosystem.org": [12793], "thetoadfly.com": [16796], "kirovskaya-obl.beeline.ru": [1801], "cl.ly": [3265], "www.peterboroughandstamford.nhs.uk": [11102], "z.rabs.ro": [2053], "gettyimages.ca": [6741], "precollegiate.stanford.edu": [15635], "kita.ninja": [2053], "yanliang.meituan.com": [10405], "gettyimages.ch": [6741], "fwc24.ru": [2053], "louisx.co": [2053], "bernalbucks.org": [1846], "delecorp.delaware.gov": [15673], "gnr8ns.com": [2053], "sinnfein.ie": [15098], "ian.tv": [2053], "www.timesofmoney.com": [16737], "ab.monsalvat.no": [2053], "*.kirkusreviews.com": [9068], "omdl.me": [2053], "clvr.in": [2053], "*.osuosl.org": [12302], "www.postlapsaria.com": [13206], "www.jdi-solutions.co.uk": [20530], "joecab.link": [2053], "familie.bayern.aok.de": [357], "m.indonesian.alibaba.com": [850], "www.zombeewatch.org": [19209], "www.literotica.com": [9628], "tellmescotland.gov.uk": [21677], "rtmet.com": [2053], "milodigit.al": [2053], "photos-g.ak.fbcdn.net": [5816], "www.admin.ox.ac.uk": [17557], "proxybay.one": [21215], "secure1.allerdale.gov.uk": [19348], "www.educationusa.state.gov": [17345], "alienvault.com": [853], "www.gumroad.com": [7148], "cilkplus.org": [3194], "www.shkspr.mobi": [14354], "scansm.com": [2053], "www.perlentaucher.de": [12790], "*.divshot.com": [4670], "secure16.pipni.cz": [12460], "etnasoft.com": [5493], "svn.mozdev.org": [10836], "scheduleonce.com": [14590], "www.schuilenburg.org": [14609], "focuspull.in": [2053], "scon.do": [2053], "celmir.tuxfamily.org": [21820], "search.ssa.gov": [21552], "wtmjpa.tk": [2053], "elavon.co": [2053], "www.nowwhere.com.au": [20939], "nrb.email": [2053], "ontara.me": [2053], "s.webtrends.com": [18467], "rapidleaf.com": [13791], "www.unruly.co": [21860], "tokyote.ch": [2053], "tpssl.weibo.cn": [15090], "pin.aliyun.com": [861], "linak.us": [2053], "employment.uow.edu.au": [17636], "secure.fogcreek.com": [6097], "www.loc-aid.com": [9696], "petcu.re": [2053], "es5.javascript.ru": [20527], "theybf.me": [2053], "et.gy": [2053], "www.cleverbridge.org": [3299], "vipfree.96.lt": [2053], "mvn.click": [2053], "w.qiwi.ru": [13533], "newsroom.uber.com": [17368], "creativecdn.com": [3852], "a5.lscdn.net": [9256], "www.xserver.*.jp": [18895], "glype.com": [6877], "victoriassecret.com": [17964], "www.diplomaframe.com": [3189], "megapath.com": [10396], "directories.piers.com": [12459], "huji.in": [2053], "r.sy.am": [2053], "id1.idqqimg.com": [8073], "veber.co.uk": [17878], "pdog.ws": [2053], "mail.aliyun.com": [861], "www.auctionthing.net": [1382], "onr.io": [2053], "kt.kz": [20622], "tls.so": [16080], "mdc.is": [2053], "ask.electric-cloud.com": [20023], "www.goo.gl": [6972], "renho.tl": [2053], "standaard.be": [15631], "hounslow.greenparty.org.uk": [7052], "www.ebuyer.com": [5143], "secure.leaseweb.com": [9372], "www.theaj.co.uk": [1201], "secureimg2.allposters.com": [875], "s.creare.io": [2053], "suffolkcoastalandwaveney.firmstep.com": [20125], "myremax.co": [2053], "atlbulbs.com": [2053], "eduroam.vutbr.cz": [17814], "srds.com": [14404], "es.redhat.com": [13909], "pegasus.georgetown.edu": [6668], "qisserver.htwg-konstanz.de": [7247], "www.ozon.ru": [12405], "www.mirakar.com": [10629], "infrequently.org": [8284], "secure.skype.com": [15184], "dselive.co": [2053], "*.wikidot.com": [18593], "*.launchrock.com": [9321], "ww-l.co": [2053], "picimage.co": [2053], "www.imagemagick.org": [8126], "static.ssl7.net": [14740], "www.usweeklysubscriptions.com": [17709], "ericrafaloff.com": [20052], "my.115.com": [25], "adct.co": [2053], "www.specimens.cancer.gov": [2864], "webmail.ucsd.edu": [17216], "l.ravi.be": [2053], "shopinfo.net": [14971], "www.pornel.net": [13157], "silkspan.com": [15040], "www.tropo.com": [17036], "metroride.hk": [2053], "st.niceia.com": [2053], "*.jrrt.org.uk": [8781], "www.youtube.jo": [19016], "sysax.com": [21636], "files2.ostagram.ru": [12331], "ht.vc": [7731], "clk.so": [2053], "matematicas.uniovi.es": [17479], "pipejump.recurly.com": [13887], "blog.usa.gov": [17307], "git.marmotte.net": [10191], "realvnc.com": [13860], "lovettpublishinghouse.com": [9797], "ripe.net": [14128], "m.fitbit.com": [6002], "cbauters.com": [2053], "blankonlinux.or.id": [19555], "trp.io": [2053], "patil.la": [2053], "otalliance.org": [11879], "www.portal.scot.nhs.uk": [11102], "images.psxextreme.com": [12504], "rb-t.us": [2053], "webmetrics.com": [18429], "users.soe.ucsc.edu": [17591], "ss.fyi": [2053], "sur.om.net": [2053], "lumia.ms": [2053], "ronna.apan.org": [369], "cars.webjet.co.nz": [18421], "urlptt.com": [2053], "catalyst.amazon.com": [952], "www.2ton.com.au": [106], "www.cathaypacificcargo.com": [2963], "kaseya.com": [8954], "mcafee.com": [10282], "go.salespro.co": [2053], "ecuav.tv": [2053], "worlddab.org": [18750], "go.forgerock.com": [20145], "www.mcb.net": [10130], "boai.meituan.com": [10405], "linuxwall.info": [9597], "wbutcher.link": [2053], "www.csis.ysu.edu": [19049], "go.smashfly.com": [15249], "w0y.de": [2053], "theuntapped.co": [2053], "cesv.cz": [2053], "girdle-assets.net-a-porter.com": [11363], "hongyushipin.jd.com": [8571], "lingbao.meituan.com": [10405], "helpdesk.pcc.nhs.uk": [11102], "skillsmatter.com": [15156], "www.ezding.com.tw": [5649], "www.cloudfoundry.org": [3358], "snackbox.microsoft.com": [10543], "8ug.cc": [2053], "emsonline.cumbria.gov.uk": [19838], "x.boardgamearena.net": [2219], "www.intersango.com": [8442], "resilience.engineering.osu.edu": [11959], "cfimag.es": [2053], "xorg.freedesktop.org": [6243], "home.live.com": [9644], "rf.revolvermaps.com": [21303], "webforms.merton.gov.uk": [10464], "world.popadscdn.net": [13130], "votewatch.eu": [18141], "cdn.mars-one.com": [10193], "u.msdynamics.es": [2053], "maxshar.es": [2053], "rzz.li": [2053], "chcidoo2.cz": [16332], "jve.linuxwall.info": [9597], "focl.co": [2053], "learnmyway.com": [9368], "www.kgnb.am": [8874], "www.claimformsplus.com": [3267], "wal.is": [2053], "www.freeovi.com": [20169], "rudong.meituan.com": [10405], "crvs.io": [2053], "plos.org": [12474, 13434], "www.devon-cornwall.police.uk": [4510], "igl.net": [2936], "s.oktamam.com": [2053], "guangxi.jd.com": [8571], "uky.cc": [2053], "mail.exratione.com": [5580], "*.wp.com": [18731], "seedboxes.cc": [14793], "*.dane.verisignlabs.com": [17916], "maymay.net": [10271], "www.plati.ru": [13005], "cadastro.uol.com.br": [17276], "news.interfax.kz": [20476], "*.hackers.fi": [7278], "hpcltr.co": [2053], "*.kbb.com": [8997], "shop.anthem.com": [19395], "klmf.ly": [2053], "assiste.ai": [2053], "*.gostorego.com": [10019], "global-entry.beta.homeoffice.gov.uk": [20355], "yar.fruct.org": [5708], "123.sogou.com": [21500], "storminternet.co.uk": [15753], "www.m-vg.de": [9854], "s.w-x.co": [18180], "nset.pw": [2053], "tubemogul.com": [17089], "at.on.aol.com": [361], "0pen.me": [2053], "www.exist.de": [5093], "cob-sp.com": [2053], "t.tellapart.com": [21676], "pre-software-security.sans.org": [14310], "athena10.mit.edu": [9916], "skdl.it": [2053], "shftm.com": [2053], "www.giftcloud.com": [20238], "jobs.cpanel.com": [2708], "consult.highland.gov.uk": [20338], "ak-console.aliyun.com": [861], "status.run.pivotal.io": [12947], "qr.hrenatoh.net": [2053], "software.topcoder.com": [13297], "connectpros.com": [13244], "549.worldcat.org": [18748], "r.mway.co": [2053], "balatarin.com": [1669], "candy.do": [2053], "www.upplandsvasby.se": [17685], "offer.hertz.com": [7511], "amazon.it": [19373], "fqd.me": [2053], "lilurl.org": [2053], "*.morningstar.com": [10784], "go.unsitoweb.it": [2053], "ammec.de": [348], "h1.hitravel.xyz": [2053], "mobile.hitta.se": [20345], "travis-ci.org": [16976], "tktwb.tw": [2053], "www.sitesafe.org.nz": [15125], "eclipse.github.com": [6801], "amazon.in": [19372], "www.rutracker.org": [21346], "*.fc2.com": [5669], "www.online-go.com": [12067], "jsclasses.org": [8808], "www.allizom.org": [896], "the.alias.black": [2053], "www.myplaydirect.com": [10964], "kraxel.org": [9158], "www.coveredcacertifiedpartners.com": [3800], "informer.com": [8275], "baike.baidu.com": [19476], "y.icetravel.xyz": [2053], "s.digitec.ru": [2053], "www.robotshop.com": [14160], "sarg.li": [2053], "isa.to": [2053], "kbs.de": [9092], "go.imacandi.net": [2053], "velemenyvezer.444.hu": [172], "pt.pcisecuritystandards.org": [12428], "vault.fbi.gov": [5825], "www.elsteronline.de": [5290], "*.libav.org": [9450], "*.imimg.com": [8211], "*.meetrics.de": [10385], "www.fonts.com": [6109, 6110], "mkthlt.ga": [2053], "faaaccess.ed.gov": [4988], "thetechnoskeptic.com": [16583], "onlineforms.northyorks.gov.uk": [20930], "support.jlist.com": [8589], "mikeb.it": [2053], "jav.ma": [2053], "ejam.my": [2053], "login.mts.ru": [20846], "antiphishing.org": [1106], "www.dollarshaveclub.com": [4732], "appiehein.com": [1155], "*.waikato.ac.nz": [17633], "www.lennier.info": [9407], "tar-jx.bz": [16213], "ems.bolton.gov.uk": [19569], "russian.rt.ru": [13703], "newsvine.com": [11541], "img.marvelstore.com": [10204], "www.freedm.ncsu.edu": [11690], "seawolv.es": [2053], "*.simpli.fi": [15073], "mqp.nra.org": [20942], "www.next.co.uk": [11552], "www.abdussamad.com": [445], "www.railscloud.de": [13764], "www.canaldigital.dk": [2862], "images.victorinox.com": [17966], "mikews.co": [2053], "maarssen.nl": [11324], "i.dlayphoto.com": [2053], "alumni.thm.de": [16066], "tawa.us": [2053], "sc04.alicdn.com": [846], "brew4.us": [2053], "*.e.champssports.com": [3051], "pr.photozou.jp": [2053], "afternoontee.co": [2053], "cms.gameflycdn.com": [6538], "*.blogspot.ie": [2166], "*.soton.ac.uk": [17562], "kyleschaeffer.com": [2185], "www.buffered.io": [2461], "roxy.jayeshb.me": [2053], "u.bay.rocks": [2053], "www.firsttechfed.com": [5986], "userlike.com": [17728], "bundesnetzagentur.de": [2487], "gat.rs": [2053], "www.joy-kasino.com": [20552], "scan.botscanner.com": [2293], "images.1sfx.net": [12042], "www.hashnest.com": [7360], "ning.it": [2053], "pcriu.com": [2053], "unite.opera.com": [12252], "t.fanscup.com": [2053], "whatspeci.es": [2053], "thregr.org": [21731], "ont.li": [2053], "learn.seedrs.com": [14795], "bitcoinarmory.com": [2026], "ar.atwola.com": [358], "www.maine.gov": [10060], "view.vzaar.com": [18179], "bolehvpn.net": [2241], "omegaup.com": [11991], "www.nickelled.com": [20909], "wthink.me": [2053], "ntacdn1.net": [11751], "stay.am": [2053], "*.sfm-offshore.com": [14347], "cnrd.us": [2053], "m7a.co": [2053], "media2.bazaarvoice.com": [1758], "s.jalan.net": [2053], "www.turris.cz": [17121], "www.gfmtrader.com": [6442], "parents.wustl.edu": [18290], "trophyclass.us": [2053], "on.mktw.net": [2053], "connectmyphone.com": [3646], "www.marinsoftware.de": [10160], "owkb.ch": [20574], "payments.amazon.co.jp": [19364], "www.cli-apps.org": [21006], "altng.ucsd.edu": [17216], "msec.xp1.ru4.com": [14245], "ustyle.me": [2053], "getasgard.com": [6706], "www.limeservice.com": [9516], "cacheserve.williamhill.com": [18615], "www.eriga.lv": [14113], "crimereduction.homeoffice.gov.uk": [20355], "kochanski.mysql.cesky-hosting.cz": [19680], "trucchifb.com": [2053], "go.rebun.jp": [2053], "user.hao123.com": [7308], "www.launchkit.io": [9320], "samsungdirect.com": [14504], "r7.tv2.dk": [16136], "y11r.com": [2053], "cdn.thesn.net": [16619], "svcntr.in": [2053], "transition.fcc.gov": [5826], "mgstn.ly": [2053], "www.bctr.cornell.edu": [3744], "entertainment.rakuten.co.jp": [13767], "osa.org": [12268], "ness.ncl.ac.uk": [11073], "2.vgc.no": [17776], "www.douglas.firmstep.com": [20124], "www.ijreview.com": [7894], "www.bt.com": [1593], "ripe66.ripe.net": [14128], "jura.uni-potsdam.de": [17618], "de-cix.net": [4096], "www.waterfoxproject.org": [18298], "www.collabora.com": [3481], "tampabaysod.com": [16192], "piwik.bytemark.co.uk": [2547], "in.angop.ao": [2053], "lpnt.fr": [2053], "mslj.im": [2053], "u.mic.io": [2053], "nlin.jp": [2053], "www.lastlog.de": [9317], "guildford.firmstep.com": [20125], "www.hipmunk.com": [7557], "elearning.rhb.ch": [14091], "mypostbusiness.ch": [13176], "beautym.be": [2053], "*.mentor.com": [10438], "freenode.net": [20168], "s.xeni.me": [2053], "cvnyd.ch": [2053], "tsp.gov": [21806], "b.mfndl.com": [2053], "muscleandstrength.com": [10896], "www.lichtblick.de": [9486], "mcrae.in": [2053], "ideo.is": [2053], "secure.hslda.org": [7234], "arpnetworks.com": [381], "opendaylight.org": [12132], "customer.pdc.prd.xfinity.com": [22082], "www.dontbreakourphones.org": [19948], "www.ourbay.xyz": [21217], "www.donejs.com": [19946], "crowd.cms.gov": [19742], "secure.eu.playstation.com": [13015], "www.manything.com": [20751], "www.discord.me": [4628], "www.piliapp.com": [12887], "payment.bhphotovideo.com": [19527], "trigacy.me": [2053], "debekijkerie.nl": [4322], "tti-tam.us": [2053], "petrol.life": [2053], "www.kayak.com": [8976], "trnc.pw": [2053], "cdn.segment.com": [14803], "cancer.stanford.edu": [15635], "www.revosec.ch": [14084], "*.getchef.com": [6709], "ulogin.ru": [21841], "td.tdprro.com": [2053], "mai.amazon.cn": [19363], "acs.onlinesbi.com": [12072], "frtw.nl": [2053], "heartbleed.com": [7413], "cbs.centos.org": [3003], "outilsdevie.fr": [2053], "register.msi.com": [9957], "aps.org": [969], "www.socialscreamer.com": [15315], "www.glasscraftexpo.com": [6822], "static.truckingunlimited.com": [17041], "5kbhkort.kk.dk": [8883], "roundhouse.org.uk": [14220], "ak2.static.dailymotion.com": [4202], "l.stanpol.ru": [2053], "www.securecode.com": [10216], "www.euroland.com": [5523], "go.zdemo.net": [2053], "pacs.wustl.edu": [18290], "extras.glx-dock.org": [20256], "dtc.*.gplhost.com": [6489], "www.twrp.me": [16146], "pastebin.com": [12654], "boutique.liberal.ca": [9453], "lewisham.objective.co.uk": [20979], "snap.licdn.com": [9239], "coyote.srv1.oms.eu": [11836], "www.my-history.co.uk": [20857], "starrez.com": [15646], "*.rightscale.com": [14117], "her.is": [2053], "lil.self.is": [2053], "tobaccofree.osu.edu": [11874], "storage.evozi.com": [5576], "mrbl.info": [2053], "kernel-recipes.org": [9010], "*.getty.edu": [6739], "sinastorage.com": [15092], "b.tks.pw": [2053], "urlig.de": [2053], "smart.ly": [15231], "www.bfm.ru": [19524], "grillingishappiness.com": [7082], "i2-groceries.asda.com": [387], "www.iconfinder.com": [8066], "zoom.bz": [2053], "portal.cp.pt": [3813], "bhmc.tmall.com": [21748], "r.ynhn.com": [2053], "b.gkec.info": [2053], "t.bf-g.de": [2053], "blackbaud.com": [2101], "achenglab.stanford.edu": [15635], "*.fender.com": [5864], "bittrex.com": [2078], "nlm7.us": [2053], "merlinux.eu": [10462], "ep2015.europython.eu": [5514], "bl.vosjero.me": [2053], "s-media-cache-ec1.pinimg.com": [12906], "fntk.co": [2053], "*.geccdn.net": [6609], "on.wb.com": [2053], "cpsd.es": [2053], "pflag.org": [12446], "hhs87.co": [2053], "*.advertserve.com": [695], "www.vdc-sy.org": [3006], "mbing.de": [2053], "si.rgstatic.net": [13655], "netdoktor.se": [11415], "www.redfin.com": [13928], "fb.ge": [2053], "tanzania.usembassy.gov": [21879], "res.axeso5.com": [1513], "sxplr.do": [2053], "*.em.gov.au": [1426], "dn.mail.ru": [10040], "www.runabove.com": [14271], "www.invizbox.io": [8476], "ceneo.pl": [2997], "eoc.anthem.com": [19395], "foerderung.migros-kulturprozent.ch": [10565], "pantherfile.uwm.edu": [17580], "s.suzusyo.info": [2053], "envirotrend.com.au": [5412], "www.mail.nic.ru": [11573], "frys.com": [6354], "gdata.de": [6410], "go.bretep.me": [2053], "mailoo.org": [10054], "afiestas.org": [744], "www.alianza.tv": [848], "sutr.in": [2053], "downloads.egenix.com": [19980], "ohba.by": [2053], "aliyunecs.oss.aliyuncs.com": [19346], "b91.yahoo.co.jp": [18944], "githost.io": [20242], "css.redblue.de": [13914], "loa.org": [9689], "arqbackup.com": [1246], "101fr.org": [2053], "www.amejobs.g4s.com": [20194], "dl.taz.de": [16042], "t-mo.co": [2053], "public-dc2.govdelivery.com": [6990], "auto-verkaufen.mobile.de": [20811], "shop.ichkoche.at": [8063], "photos.state.gov": [17345], "bush.ly": [2053], "over.farm": [2053], "www.classes.osu.edu": [11959], "katf.in": [2053], "suomityo.fi": [2053], "img.tenpay.com": [16376], "helpdesk.xmarks.com": [18882], "cltglobal.com": [2681], "www.marine.scotland.gov.uk": [21387], "www.dailykos.com": [4194], "university.xamarin.com": [18840], "www.wikimedia.cz": [18595], "p.andrin.ga": [2053], "trac.osgeo.org": [11868], "hydro.quebec": [2053], "twlnk.co": [2053], "funio.com": [6382], "popular.com.tw": [13146], "www.cstatic-images.com": [3970], "regraonline.tk": [2053], "plctwitlerr.com": [2053], "www.linuxliteos.com": [20698], "mdpri.de": [2053], "www.f2.htw-berlin.de": [7246], "sploid.gizmodo.com": [6817], "static.hypestat.com": [20406], "hr-innovation.htwk-leipzig.de": [7736], "opendata.camden.gov.uk": [2830], "www.recode.net": [13882], "tickets.puppetlabs.com": [13460], "analytics.clickdimensions.com": [3303], "www.mydigipass.com": [11017], "derecho.uniovi.es": [17479], "purejingl.es": [2053], "studyrooms.lib.plymouth.ac.uk": [13055], "frbn.ch": [2053], "emcraft.com": [5303], "status.asmallorange.com": [249], "acrchi.com": [2053], "swu.mobi": [2053], "www.ucommand.com": [17389], "krkn.cf": [2053], "bettersk.in": [2053], "branchisd.illuminateed.com": [20430], "yunaq.com": [22122], "www.andover.edu": [12835], "pchrb.dengisend.ru": [4440], "trendit.me": [2053], "*.pbase.com": [12418], "*.talkingphonebook.com": [9699], "110.alipay.com": [857], "foe11.com": [2053], "sport.uni-ulm.de": [21850], "admissions.valeofglamorgan.gov.uk": [17825], "bdyw.se": [2053], "bet365affiliates.com": [19518], "c.sdbx.co": [2053], "yp.meituan.com": [10405], "red-dove.com": [13891], "www.jazzy.id.au": [8685], "uned.it": [2053], "rdvn.co": [2053], "pyb.li": [2053], "zchat.com": [22126], "s.sbuf.me": [2053], "*.groupon.gr": [7101], "zenmate.de": [19133], "www.consul.io": [3660], "open.map.qq.com": [13514], "marketplace.ricoh.com.sg": [14112], "fasttrack.va.gov": [17297], "lsj.meituan.com": [10405], "fprnt.com": [6208], "www.banking.us.hsbc.com": [7233], "www.xfinity.com": [22082], "www.iphones.ru": [20488], "*.rakdigital.co.uk": [13719], "keef.me": [2053], "s.scouter.at": [2053], "basicsof.biz": [2053], "www.doesnotwork.eu": [4720], "www.vpnreactor.com": [17794], "digicert.com": [4556], "explorecourses.stanford.edu": [15635], "www.secondlife.com": [14706], "proxyportal.org": [21217], "secure.iwantmytvmagazine.com": [11162], "flict.it": [2053], "www.torrentr.eu": [16854], "mindtouch.com": [10596], "softserve.8ch.net": [234], "facilities.med.wustl.edu": [18290], "mailarray.stalbans.gov.uk": [21563], "www.philosophersguild.com": [12836], "grwth.io": [2053], "nq.meituan.com": [10405], "usatoday.com": [17309], "app-uk2.resrc.it": [13832], "hbt.news": [2053], "app.loadimpact.com": [9691], "blog.eloqua.com": [5282], "service.velaro.com": [17887], "cleancoast.co": [2053], "www.pendle.gov.uk": [12744], "www.kasserver.com": [8860], "www.getgophish.com": [20231], "orangegeek.com": [12292], "myplatinumpak.com": [13007], "www.stage-mobioinsider.com": [10691], "s.jgog.in": [2053], "community.hide.me": [7531], "evcn.co": [2053], "jobs.uif.uillinois.edu": [17238], "redmine.enaza.ru": [5332], "www.nets-danid.dk": [11440], "baymirror.win": [21217], "themonthly.com.au": [16564], "simpleforms.scripts.wvu.edu": [18508], "www.oxfamirelandunwrapped.com": [12394], "bitservicex.com": [4982], "jabbr.net": [8619], "wiki.associatie.kuleuven.be": [8969], "infocentre.dsi.cnrs.fr": [6314], "on.nba.com": [2053], "kal.ki": [2053], "fusioncrm.oracle.com": [12284], "mobicents.ci.cloudbees.com": [19736], "cimbclicks.co.id": [2662], "wmfdesigns.nl": [2053], "www.ocronusa.net": [11912], "l.ell.io": [2053], "jqplay.org": [20553], "sexualassault.georgetown.edu": [6668], "myhearstnewspaper.com": [7409], "sportisimo.cz": [14396], "az4u.it": [2053], "sedirekt.se": [14782], "evakad.de": [2053], "www.mytime.com": [10982], "hrms.onlinesbi.com": [12072], "i1.itc.cn": [8536], "snib.be": [2053], "careerfoundry.com": [2904], "cageit.us": [2053], "amerigo.me": [2053], "l.cjb.im": [2053], "www.thetruthaboutguns.com": [21721], "static.xperiencedays.com": [18887], "t4p0ut.tk": [2053], "asip.me": [2053], "*.globalsign.com": [6840], "www.weboolu.com": [18433], "its-proposals-dev.ucsc.edu": [17591], "*.gamestarmechanic.com": [6559], "unm.edu": [17269, 17271], "www.kilometrikisa.fi": [9041], "portal.nitrosell.com": [11621], "nic.io": [11575], "tribecafilminstitute.org": [17004], "mwatt.ca": [2053], "kupfi.me": [2053], "www.github.com": [6801], "www.sertifikatai.lt": [14842], "www.htw-berlin.de": [7246], "edelivery.oracle.com": [12284], "ca.isohunt.com": [8520], "ehs.osu.edu": [11959], "server314.com": [14848], "rcktrip.co": [2053], "difi.no": [4547], "go.alirezah.net": [2053], "go.beckatl.com": [2053], "ilearn.cathaypacific.com": [2963], "www.feral.io": [5866], "oamp.od.nih.gov": [11241], "translate.gajim.org": [6523], "cdn2.iconfinder.com": [8066], "p71.nl": [2053], "rdinfo.uk": [2053], "dlyrob.net": [2053], "nottmwi.re": [2053], "a.kuhave.com": [2053], "l.siseci.net": [2053], "edgecastcdn.net": [5180], "www.liberiangeek.net": [9457], "www.segpaychat.com": [14800], "epay.bg": [5043], "7.*.wdfiles.com": [18593], "go.ringgle.com": [2053], "highf.ly": [2053], "lapl.link": [2053], "www.soros.org": [12109], "russia2all.com": [14282], "de.manjaro.org": [10121], "lkjs.zamimg.com": [19095], "geofas.me": [2053], "www.dfrdb.gov.au": [4384], "sindeo.co": [2053], "hypovereinsbank.de": [7795], "ajma.me": [2053], "www.partnernet.avira.com": [1489], "sf.bizible.com": [19545], "foriswine.com": [6157], "kronos-time.nytco.com": [11187], "store.terrapass.com": [16388], "support.infoblox.com": [8255], "sv.map.qq.com": [13514], "tdata.link": [2053], "www.altera.com": [917], "go.cihanek.com": [2053], "www.opencpu.org": [12124], "www.scientificlinux.org": [14628], "kmpaint.co": [2053], "tspr.ng": [17085], "materiel.net": [10229], "sc.spriggan.net": [2053], "reactjsnews.com": [13836], "clsync.it": [2053], "tacoma.uw.edu": [17355], "er.lrc.usuhs.edu": [17330], "www.organdonation.nhs.uk": [11102], "streamline.com": [21588], "we.taobao.com": [16206], "yolotrain.oebb.at": [20984], "piwik.openstreetmap.org": [12177], "undrs.td": [2053], "alfaportal.kz": [842], "sith.my": [2053], "scs.cals.cornell.edu": [3744], "bezeq.co.il": [19522], "www.robinbarnard.com": [14155], "cachebrowser.info": [2766], "thrv.co": [2053], "www.thompsonhotels.com": [16647], "sohosted.com": [15296], "midlothian-consult.objective.co.uk": [20979], "oprtnty.co": [2053], "phase.to": [2053], "cdn.embed.ly": [5299], "objective-see.com": [11902], "stamini.st": [2053], "www.erowid.org": [5455], "companieshouse.gov.uk": [3571], "apps.dealer.com": [4334], "tags.api.umbel.com": [17425], "idealconceal.com": [20422], "www.thehackernews.com": [16604], "journ.us": [2053], "b3n.im": [2053], "pittsburghmassageandwellness.com": [12946], "scim.ag": [2053], "te.lenot.es": [2053], "static.warthunder.ru": [21978], "www.bitrig.org": [2065], "bankd.co": [2053], "bghl.co": [2053], "www.vimention.com": [18009], "asctrust.com": [386], "d4.design": [2053], "data.information.dk": [8272], "api.tech.yandex.com": [18956], "*.umanitoba.ca": [17546], "*.mla.com.au": [10300], "li.wly.ch": [2053], "*.happyknowledge.com": [7331], "www.thepirateproxy.info": [21709], "tmn.gp": [2053], "dbq.me": [2053], "cdn-2.sundul.us": [2053], "baz.link": [2053], "downloads.checkpoint.com": [3106], "policyreview.info": [13091], "may.desi": [2053], "mega.com": [10388], "www.newsoffice.mit.edu": [9916], "grassroots.groupon.com": [7100], "addons.videolan.org": [21006, 21007], "vos.symantec.com": [15969], "www.joycasino11.com": [20552], "b.vapourbox.co": [2053], "www.opalang.org": [12102], "shkspr.mobi": [14354], "fl.cobweb.ch": [2053], "es.manage.my.t-mobile.com": [16026], "freecause.com": [6277], "dl.audiobob.net": [2053], "www.ieee-elearning.org": [7865], "secure.datei.li": [19860], "ict-helpdesk.lsbu.ac.uk": [9252], "jer.si": [2053], "www.atomicobject.com": [1363], "echoditto.com": [5147], "*.ticketweb.com": [16690], "apps.owncloud.com": [12386], "fetshop.co.uk": [5877], "clmtp.lc": [2053], "bit.jppharma.in": [2053], "admin.netnanny.com": [11406], "www.dezertdepot.com": [4517], "cntrct.co": [2053], "www.everything4bet.net": [5563], "www.mozillazine-fr.org": [20837], "l.oire.fi": [2053], "webapp.icarol.com": [20408], "www.interactiveonline.com": [8391], "eastriding.objective.co.uk": [20979], "game-static.msi.com": [9957], "schrotty.la.welt.de": [18492], "www.eere.energy.gov": [5355], "on.mtv.com": [2053], "byfiles.storage.msn.com": [9961], "atlassian.com": [1357], "digifox.me": [2053], "progd.me": [2053], "transportation.amazon.fr": [19371], "custom-css.basekit.com": [19493], "update.local.ch": [9697], "globusonline.org": [6869], "j1visawaiverstatus.state.gov": [17345], "frog.qrq.de": [13542], "paradox-interactive.teamtailor.com": [16258], "caco.me": [2053], "www1.citymapper.com": [3252], "update.dedyn.io": [19879], "link.ebdg.cu.cc": [2053], "www.lokus.no": [9728], "review.openstack.org": [12173], "shop.flixbus.it": [6047], "couragecampaign.org": [3781], "prosody.im": [13388], "devimperium.com": [4505], "www.static-cisco.com": [15678], "mesr.me": [2053], "emv3.com": [5296], "www.bell.ca": [1815], "lum.im": [2053], "ivorde.com": [8550], "panstwomiasto.pl": [12574], "www.askubuntu.com": [15611], "4.ltno.us": [2053], "vsprf.ca": [2053], "dealfish.co.th": [4338], "vetca.re": [2053], "cbwd.us": [2053], "ocaf.georgetown.edu": [6668], "igy.me": [2053], "www.adblade.com": [600], "pornp.co": [2053], "www.feedbackify.com": [5851], "allcrypt.com": [869], "forums.desmume.org": [4321], "indw.es": [2053], "callcenter.reservation-desk.com": [14036], "on.vhpost.tv": [2053], "registrars.registry.asia": [13969], "hannovermesse.de": [7327], "changli.meituan.com": [10405], "wkr.me": [2053], "west-norfolk.objective.co.uk": [20979], "connect.visualstudio.com": [18078], "blackbox.fbk.info": [5818], "*.alliedmedia.org": [894], "secure.paysol.se": [12699], "www.fsa.usda.gov": [17495], "i2m.link": [2053], "seati.ms": [2053], "*.on24.com": [11838], "www.aldi.be": [338], "get.yavi.co": [2053], "kundservice.svd.se": [15924], "www.hyb.pw": [20400], "tags.mathtag.com": [10236], "www.aberystwythartscentre.co.uk": [19255], "www.wilmerhale.com": [18619], "projectplace.com": [13372], "technische-aufklaerung.de": [16293], "c64.assets-yammer.com": [1318], "krb-sjobs.brassring.com": [19586], "gorb.it": [2053], "ja.hideki.hclippr.com": [7180], "www.alldebrid.fr": [871], "ru.piliapp.com": [12887], "*.pusher.com": [13481], "mspu.co": [2053], "privacy.truste.com": [16111], "web.consumerreports.org": [3665], "getaddr.bitnodes.io": [2064], "nrdle.us": [2053], "www.linuxgamepublishing.com": [9583], "www.itactic.com": [8006], "pics.cdn.librarything.com": [9464], "chooseblocks.com": [3161], "rep-li.ca": [2053], "m.voyage-prive.it": [18153], "www.pet-nanny.net": [12799], "ikin.ci": [2053], "jab.bz": [2053], "rflc.io": [2053], "dekori.us": [2053], "twr.ky": [2053], "go.shfx.xyz": [2053], "www.intux.de": [8456], "usertags.com": [17366], "u.djchuang.com": [2053], "tkgorod.ru": [21745], "l.svj2291.cz": [2053], "myi.tw": [2053], "www.hidekisaito.com": [7533], "sh.kang2oon.com": [2053], "crame.co": [2053], "www.kyleschaeffer.com": [2185], "agilewebsolutions.com": [765], "*.rollingstonesubscriptions.com": [14193], "wwninvite.com": [2053], "*.musicnotes.com": [10908], "forums.sabnzbd.org": [14451], "cdn.onscroll.com": [12012], "my.profitbricks.com": [13357], "s.hadje.nl": [2053], "url.pradjadj.id": [2053], "www.encipher.it": [5333], "drugs.gawker.com": [6593], "static-02-www.icij.org": [7831], "www.glasses.com": [6824], "tickets.openmrs.org": [12150], "cst.usc.edu": [17564], "legacy.law.georgetown.edu": [6668], "securemail.zg.ch": [21629], "servercraft.co": [14857], "blog.unseen.is": [17656], "hcsportal.studaff.calpoly.edu": [2806], "www.auth.usyd.edu.au": [21885], "panel.medianova.com": [10346], "puborder.ncjrs.gov": [11072], "webgen.vodafone.pt": [18109], "*.siemens.com": [15015], "danzhou.meituan.com": [10405], "mxguarddog.com": [9976], "datenspuren.de": [4297], "www.francescopalazzo.com": [20157], "www.fs02.androidpit.info": [1048], "moodle.caltech.edu": [2815], "home-bap.navigator.web.de": [18347], "ccclub.cmbchina.com": [2683], "www.brilig.com": [2386], "hr-info.web.cern.ch": [2632], "je.tl": [2053], "www.fkl.fi": [5946], "freshn.es": [2053], "dictionary.writtenchinese.com": [22056], "uni-saarland.de": [17457], "www.addthis.com": [611], "clickfuncasino.com": [3319], "intentmedia.co.uk": [8377], "action-intell.com": [532], "skate.sh": [2053], "watchmedier.dk": [18293], "www.committedgiving.uk.net": [19759], "frederick.cancer.gov": [2864], "fabricecarle.fr": [2053], "coastalmicrosupply.com": [3399], "www.audiencetargeting.com": [1393], "tracker.clearos.com": [19726], "cache.thumbs.sbstatic.com": [15042], "flatbeds.me": [2053], "northdorset.greenparty.org.uk": [7052], "j.gethustle.co": [2053], "myapps.developer.ubuntu.com": [17382], "www.footprintnetwork.org": [6835], "sf.mail.ru": [10040], "wok.social": [2053], "portal.cuhk.edu.hk": [2747], "networkadvertising.org": [11460], "hzmy.alibaba.com": [850], "wavpin.com": [18306], "*.hjcms.de": [7201], "gtt.net": [6512], "siw.stanford.edu": [15635], "www.packetflagon.uk": [21062], "www.blackburn.gov.uk": [19551], "www.theiconic.com.au": [16558], "www.kiva.org": [9077], "static.polskieradio.pl": [13112], "qiang.taobao.com": [16206], "infz.eu": [2053], "www.nanog.org": [11688], "blog.bk55.ru": [19548], "*.coochey.net": [3700], "kanyebay.com": [16493], "alssl.askleomedia.com": [1299], "maskmag.com": [2053], "slhc-rip1.web.cern.ch": [2632], "classy.org": [19724], "maven.co": [10252], "b4.yahoo.co.jp": [18944], "sbb.ch": [15946], "scontent.xx.fbcdn23dssr3jqnq.onion": [5734], "www.ftc.gov": [5837], "my.getclouder.com": [6691], "pda.bnkomi.ru": [19563], "packagist.org": [21060], "www.keyworddiscovery.com": [9023], "a8.net": [263], "empleos.g4s.com": [20194], "temp-pt.mondediplo.com": [10729], "rootsoffight.ca": [2053], "jason.cnes.fr": [2691], "di2d.info": [2053], "pnga.co": [2053], "navalny.com": [11300], "whispersystems.org": [18546], "www.zdv.uni-mainz.de": [17610, 17611], "deadline.com": [4328], "protectedtext.com": [13395], "safello.com": [14471], "t.aking.ca": [2053], "quantopian.com": [13570], "aqdkt.co": [2053], "www.binsearch.net": [1942], "popte.ch": [2053], "hog.onl": [2053], "pic8.qiyipic.com": [20413], "l.vigier.at": [2053], "sf.hu": [2053], "rutland.in": [2053], "www.scmp.com": [15436], "paquins.us": [2053], "raceresu.lt": [2053], "tfexplorevr.com": [2053], "jp.piliapp.com": [12887], "ktmdot.net": [2053], "booking.aalto.fi": [428], "www.etravelway.com": [5497], "*.inwx.com": [8381], "crimestoppers-uk.org": [19817], "www.shellspace.net": [14941], "www.visitthecapitol.gov": [18069], "1dbs.co": [2053], "*.liberty.me": [9458], "indberet.virk.dk": [18032], "typecast.com": [17187], "www.instacominc.com": [8328], "www.bolagsverket.se": [2239], "tzt.ovh": [2053], "fcac.org": [5748], "www.knab.nl": [9091], "dnscurve.net": [4137], "ivanovo.rt.ru": [13703], "anyterm.skynet.ie": [16475], "moot.it": [10769], "forum.hostican.com": [7668], "www.deadline.com": [4328], "publicaccessapplications.newcastle.gov.uk": [11507], "dino.sr": [2345], "w3techs.com": [21964], "alrm.gd": [2053], "dbnr.co": [2053], "cryptomaths.com": [3946], "iwnt.my": [2053], "audicon.net": [1387], "www.netlify.com": [11432], "www.scamfraudalert.com": [14568], "go.pohyby.co.uk": [2053], "kerbalspaceprogram.com": [9009], "blogs.drweb.com": [4879], "muush.co": [2053], "xvrs.ch": [2053], "im.typotheque.com": [17194], "contact.framasoft.org": [6214], "www.jyllands-posten.dk": [8857], "fi.norton.com": [11703], "s.awads.net": [2053], "identity.virginmedia.com": [18028], "inmotionhosting.com": [8182], "*.onion.city": [16837], "www.youtube.com.om": [19016], "assets.onestore.ms": [12057], "inur.se": [2053], "www.underskog.no": [17441], "apt.jabber.at": [8620], "yulin.meituan.com": [10405], "metrics.adzip.co": [716], "webchat.oftc.net": [11821], "librarything.com": [9464], "*.yourlocaledge.com": [19036], "drgdss.me": [2053], "www.youtube.ug": [19016], "dailymotion.com": [4202], "dealer.com": [4334], "vib.link": [2053], "sl.ohds.ch": [2053], "spillehallen.tv2.dk": [16136], "snocd.org": [2053], "keinesch.eu": [2053], "shopping.tetu.com": [16409], "www.urac.org": [17292], "www.0xacab.org": [9], "rwd.opencaching.de": [21009], "www.youtube.ua": [19016], "nagios2.ibn.ulpgc.es": [17411], "anarplex.net": [1030], "*.pidgin.im": [12884], "krebsonsecurity.com": [9161], "gotly.gq": [2053], "cycetc.co": [2053], "kontoeroeffnung.cash.ch": [19654], "www.ojrq.net": [11967], "edge.org": [5179], "mouserepository.cancer.gov": [2864], "binefreund.de": [6053], "support.econda.de": [5159], "cille.ro": [2053], "docs.cpanel.net": [2710], "hkm.to": [2053], "vozip.xyz": [2053], "10t.co": [2053], "www.netiq.com": [11386], "www.printchomp.com": [13296], "c6e.trade": [2053], "promote.ie": [4597], "sot.tips": [2053], "www.jacquelinegold.com": [8637], "bmbl.bz": [2053], "arm.koji.fedoraproject.org": [5845], "libraries.mit.edu": [9916], "*.gamehouse.com": [6539], "cricketwireless.com": [3865], "xyzd.us": [2053], "acehotel.com": [508], "hgse.me": [2053], "portal.imn.htwk-leipzig.de": [7736], "www.poderpda.com": [13067], "theplatform.com": [16496], "kiwi.freed0m4all.net": [6281], "www.btunnel.com": [1622], "bt.com": [1593], "jockey.jd.com": [8571], "www.musicweek.com": [10904], "www.jslinterrors.com": [8735], "wiki.alfresco.com": [843], "wearesl.am": [2053], "www.eu.elsevierhealth.com": [5289], "bitrhym.es": [2053], "alzr.us": [2053], "on.codehunt.io": [2053], "strath.co": [2053], "www.4tulemar.com": [182], "*.cdn1.cloudfiles.rackspacecloud.com": [13741], "ipfs.pics": [8492], "ci.uchicago.edu": [17532], "carnegiescience.edu": [2916], "www.openstat.ru": [12175], "mact.es": [2053], "m.oliahad.me": [2053], "cbu02.alicdn.com": [846], "discuss.nubits.com": [11759], "www.dftba.com": [4105], "index.thenextweb.com": [16568], "mint.ca": [10620], "indonesia.allianz.com": [19351], "bme.osu.edu": [11959], "mxnkey.com": [2053], "skyrad.io": [2053], "braveinfo.net": [2346], "doubleclick.com": [4810], "fd.ulaval.ca": [17515], "tickets.stanford.edu": [15635], "neuro.georgetown.edu": [6668], "r-mcp.uk": [2053], "tnesia.tk": [2053], "www.interstices.info": [8444], "ctrv.us": [2053], "5io.in": [2053], "api.kurier.at": [9194], "www.dynstatus.com": [4921], "saxp.zedo.com": [19122], "fafsademo.test.ed.gov": [4988], "3ds.com": [4245], "computing.stanford.edu": [15635], "www.sobollubov.ru": [15302], "lrj.me": [2053], "asa.pe": [2053], "scenemusic.net": [14581], "www.khashaev.ru": [20589], "redeem.flixster.com": [6049], "psearch.vuze.com": [18175], "sted.es": [2053], "chron.it": [2053], "ckpd.to": [2053], "godoc.org": [6900], "*.salecycle.com": [14484], "sicontact.at": [15005], "*.protonmail.com": [13396], "image.issuu.com": [8526], "bitcoinwisdom.com": [2024], "l.timw.co": [2053], "scrawl.in": [2053], "www.crew.co": [3864], "nmbbq.bz": [2053], "go.illuminateed.com": [20430], "www.tittygram.ru": [16777], "www.mijnsimpel.nl": [21450], "homecomputing.fr": [7622], "s34.cnzz.com": [3391], "apps.usa.gov": [17307], "redmine.digitaria.com": [4590], "frank.geekheim.de": [6624], "wihist.org": [2053], "shiyan.meituan.com": [10405], "s9.mt-cdn.net": [9963], "webpower.nl": [18338], "bcove.me": [1769], "www.swan.sk": [15931], "connects.catalyst.harvard.edu": [7351], "extranet.megapath.com": [10396], "info4derby.derby.gov.uk": [4460], "www.op-co.de": [12100], "www.doc.ic.ac.uk": [8165], "*.desertnews.com": [4465], "sellmy.mobi": [2053], "cue.me": [3983], "aperture.displaymarketplace.com": [13453], "cchh.fyi": [2053], "hpi.uni-potsdam.de": [17618], "docs.zone": [4709], "tb2.bdstatic.com": [19507], "qianjiang.meituan.com": [10405], "roblox.com": [14156], "instart2.flixster.com": [6049], "www.cms.fss.ulaval.ca": [17515], "hr.leeds.ac.uk": [9379], "brrk.co": [2053], "luccks.co": [2053], "go.sbstngrss.me": [2053], "speedcoin.org": [15506], "stats.framasoft.org": [6214], "btwifi.com": [1620], "sprd.no": [2053], "nib.bz": [2053], "tcluk.tk": [2053], "on.trailr.tv": [2053], "callum.in": [2053], "sopit.as": [2053], "i2-captcha.luosimao.com": [20726], "api.btckan.com": [1602], "charnwood.firmstep.com": [20124], "onlinethreatalerts.com": [12077], "img03.sogoucdn.com": [15351], "www.frenchtv.to": [6315], "dd4c.hscic.gov.uk": [20388], "liberal.ca": [9453], "www.scribit.com": [14656], "*.rec-registry.gov.au": [13645], "www.nextpowerup.com": [11563], "ssl.trustwave.com": [17074], "spath.us": [2053], "lk-pr.de": [2053], "dazd.co": [2053], "info.legalsolutions.thomsonreuters.com": [16650], "git.collabora.co.uk": [3481], "pabo.nl": [12510], "www.marksdailyapple.com": [20754], "chorki.co": [2053], "puttytray.goeswhere.com": [6931], "rbls.me": [2053], "cove.in": [2053], "dbyco.us": [2053], "www.ipfs.com": [7938], "b80.co": [2053], "www.register4less.com": [13966], "kent.ac.uk": [17603], "neflix.cf": [2053], "ooyala.com": [12099], "dl.aarddict.org": [2053], "tdrevolution.com": [16057], "*.swapspace.net": [15933], "filepicker.com": [5916], "mishimo.to": [2053], "*.ds-static.com": [4875], "weesp.in": [2053], "wo.wbat.us": [2053], "xp.corefact.com": [2053], "scout.sunlightfoundation.com": [15857], "wto.org": [18229], "secure1.plymouth.gov.uk": [21153], "omoda.nu": [2053], "federalreserve.gov": [5835], "tomskaya-obl.beeline.ru": [1801], "torin.fyi": [2053], "trac.gajim.org": [6523], "mail.desy.de": [4479], "publishing.kaloo.ga": [8925], "secure.coop.no": [3713], "www-stats-so.f-secure.com": [5654], "ui.phn.doublepimp.com": [4812], "media2.legacy.com": [9384], "*.shoptiques.com": [14976], "ad.adorika.com": [14114], "product.adingo.jp": [632], "m.melamorsi.com": [2053], "wuyi.meituan.com": [10405], "2010.asiabsdcon.org": [1293], "www.filippo.io": [5919], "elle.com": [5273], "api-gemini.jd.com": [8571], "m.wsj.net": [22059], "umdrightnow.umd.edu": [17549], "www.litetree.com": [9620], "*.thefnf.org": [16539], "donate.familysearch.org": [5760], "grph.me": [2053], "ca.dinahosting.com": [4603], "bentley.edu": [1833], "www.kanyebay.com": [16493], "www.iaata.info": [7808], "payments.coventry.gov.uk": [19807], "stc.pagseguro.uol.com.br": [17276], "deals.dell.com": [4413], "lx.meituan.com": [10405], "m.fi.it": [2053], "fastdomain.com": [5788], "dab.re": [2053], "procurement.crick.ac.uk": [19816], "conceptn.co": [2053], "tldr.444.hu": [172], "sc.cr": [2053], "portal.5ninesdata.com": [203], "*.sw-i.de": [15621], "www.soa.org": [14385], "kyc.hn": [2053], "www-colsonservices.extlb.bnymellon.com": [19566], "iosco.org": [7926], "slack.gitbook.com": [6794], "rollingstone.com": [14192], "masspirgedfund.org": [9881], "kud.us": [2053], "jrb2b.jd.com": [8571], "media-proweb.de": [10311], "i2.microsoft.com": [10543], "l.spintires.top": [2053], "ezpost.me": [2053], "www.hertzautovermietung.com.pl": [7497], "cinapalace.com": [3196], "s.asuka.jp": [2053], "*.targetimg1.com": [16215], "tix.tm": [2053], "www.privacytools.io": [13318], "www.falcon-uav.com": [5753], "www.molotro.ru": [20819], "www.lsi.com": [9254], "dorianquis.pe": [2053], "go.crn.com": [2053], "symfony.fi": [15972], "jotapeah.com": [2053], "alep.in": [2053], "herebg.com": [2053], "*.nejm.org": [11496], "sfpr.es": [2053], "so.ch": [21629], "www.ambitiousaboutautism.org.uk": [19376], "notendur.hi.is": [7196], "bbry.by": [2053], "so.cl": [15293], "digtl.net": [2053], "www.stopthinkconnect.org": [15743], "theva.in": [2053], "api-interest.unbounce.com": [17436], "community.snsbank.nl": [14382], "cjb.pt": [2053], "s.jakob.cc": [2053], "www.grandmargherita.com": [7018], "pokemon.truelife.com": [17045], "*.posterous.com": [13198], "www.pretty52.com": [21197], "cloudpiercer.org": [3351], "*.misadventureswithandi.com": [10640], "freewebsitetemplates.com": [20173], "*.sonymobile.com": [15394], "gruensparshop.l.de": [9211], "isorno.com": [8523], "www.archi-strasbourg.org": [1200], "deb.knot-dns.cz": [9099], "help.cloudtrax.com": [3356], "cwrld.us": [2053], "electrabrush.co": [2053], "www.business.kaspersky.com": [8958], "www.runbook.io": [14273], "www.everydayhero.com.au": [5560], "uofr.us": [2053], "adn.impactradius.com": [8160], "www.mercadobitcoin.net": [10449], "www4.gotomeeting.com": [6912], "flirt.icony.com": [8069], "eqtm.co": [2053], "petsathome.com": [12813], "etarget.hu": [5476], "notboring.yt": [2053], "gifts.stanford.edu": [15635], "chemistry.williams.edu": [18616], "interactive.act-on.com": [19268], "2007.asiabsdcon.org": [1293], "rhssci.com": [2053], "host1.aberdeenshire.gov.uk": [451], "omim.org": [20989], "www.gorails.com": [6907], "zyrk.us": [2053], "shftm.io": [2053], "lhncbc.nlm.nih.gov": [11241], "retailmenot.com": [14055], "levo.com": [9434], "bingads.microsoft.com": [10543], "www.pieperhome.de": [21122], "www.novostivoronezha.ru": [20937], "community.ussf2010.org": [17303], "serve.com": [14844], "ubmelectronics.techinsights-marketing.com": [17204], "www.motherless.com": [10797], "blco.at": [2053], "websa.us": [2053], "mxdig.co": [2053], "cart.jd.com": [8571], "crn.com": [2716], "karele.me": [2053], "*.yelp.com": [18979], "o.dagoubert.fr": [2053], "up4.click": [2053], "acoat.me": [2053], "*.gawkermediagroup.com": [20207], "*.rhcloud.com": [13657], "terrorismlegislationreviewer.independent.gov.uk": [8203], "www.domaining.com": [4753], "birchlane.ly": [2053], "www.opencaching.de": [21009], "abbott.com": [441], "atrw.co": [2053], "caitpo.sh": [2053], "meet.fm": [10375], "*.feedblitz.com": [5848], "staradvertiser.com": [7630], "www.livecomm.ru": [20703], "sciof.us": [2053], "dcsl.software": [2053], "rutracker.net": [21346], "admin.xnet.cz": [18832], "www.online-mahnantrag.de": [12064], "www.eyeo.com": [20085], "www.zlatkovic.com": [19195], "link.myfox8.com": [2053], "ntzl.de": [2053], "www.whyopencomputing.com": [22021], "bit.fish": [2053], "phpmyadmin.ds3.hfonetz.de": [7187], "syllabusshare.com": [15966], "ca.debian.net": [4351], "www.pastevault.com": [12652], "usesthis.com": [17734], "images.sneakersaddict.com": [21492], "over-blog.com": [12361], "www.srds.com": [14404], "serviceo.xfinity.com": [22082], "a.awg.co": [2053], "www.migrosmagazine.ch": [10567], "updates.oracle.com": [12284], "www.pr0gramm.com": [21185], "tdt.buzz": [2053], "www.revealnews.org": [14074], "netsale.aktiiviraha.fi": [7317], "www.piware.de": [10198], "k8.chaucanh.net": [2053], "www.igiveonline.com": [8034], "survey.clicktools.com": [3323], "*.ebay.com": [4973], "www.agendaless.com": [762], "my.alipay.com": [857], "thepiratebay.immunicity.top": [21217], "mtwidget03.affiliate.ashiato.rakuten.co.jp": [13768], "mko.es": [2053], "c2.thejournal.ie": [16490], "sleybk.com": [2053], "ovhtelecom.fr": [11886], "sustrans.me": [2053], "lksz.me": [2053], "djh.link": [2053], "wiganandleigh.greenparty.org.uk": [7052], "i.aug.co": [2053], "*.media.mobyhub.com": [10693], "dtelinux.us": [2053], "familie.hessen.aok.de": [357], "ulive.pccu.edu.tw": [12425], "opengarden.com": [12233], "www.reviewingcomics.com": [14078], "occmx.net": [2053], "m3m.us": [2053], "ovva.tv": [21049], "go-faar.org": [2053], "on.mo.gov": [2053], "www.theinspirationroom.com": [16459], "freethoughtblogs.com": [6305], "www.ee.washington.edu": [17577], "nttxstore.jp": [11755], "myaccount2.chicagotribune.com": [3131], "steph.bz": [2053], "www.schrodinger.com": [14992], "discovery.com": [4640], "beijing.douban.com": [4802], "www.2kom.ru": [114], "cal.md": [2053], "onlinebanking.bankcoop.ch": [3712], "www.jjc.edu": [8587], "authorize.net": [1447], "youngsoutheastasianleaders.state.gov": [17345], "www.iweb.co.uk": [20519], "jbalm.es": [2053], "beta.musicbrainz.org": [10905], "my.green.ch": [20280], "feeds.live.net": [9643], "here.com": [7465], "drvl.it": [2053], "ebill.t-mobile.com": [16026], "egk.mkk.com.tr": [9921], "microad.jp": [10526], "status.jiveon.com": [8734], "thejournalnews.com": [9726], "rd.click.ro": [2053], "bbzr.co": [2053], "central.provider.anthem.com": [19395], "bbpress.automattic.com": [1465], "gvlhou.se": [2053], "www.1105media.com": [22], "secure.dd-wrt.com": [4092], "sources.lede-project.org": [20652], "www.pando.com": [12562], "rxf1.answcdn.com": [1099], "www.hhcdn.ru": [7193], "www.clickon.com.ar": [3308], "amazon.com": [952], "img.delvenetworks.com": [4418], "track.eyeviewads.com": [5647], "*.ladesk.com": [9645], "rampl.in": [2053], "robokassa.ru": [14159], "static-00-www.icij.org": [7831], "nationbuilders.thenation.com": [16465], "m-budget.migros.ch": [10566], "go.pitp.it": [2053], "linuxdaily.com": [21006, 21007], "vijay.link": [2053], "lvn.bz": [2053], "fzcrp.eu": [2053], "webuzz.de": [2053], "blogsmithmedia.com": [359], "americanbar.org": [975], "jlbranham.co": [2053], "l.frikichan.com": [2053], "nykeurope.com": [11183, 11184], "www.cambs.police.uk": [2828], "beaker-project.org": [1781], "dog.ro.vutbr.cz": [17814], "email.sfu.ca": [14893], "acce.do": [2053], "dota2.com": [4792], "loisirs1.cff.ch": [15946], "iwagner.usa.cc": [2053], "rehabmedicine.georgetown.edu": [6668], "woosp.co": [2053], "*.usps.com": [17327], "c.58cdn.com.cn": [202], "howtogeek.com": [7716], "*.new.livejasmincdn.com": [9650], "correlatedvm.netspi.com": [11398], "www.choiceofgames.com": [3158], "enaza.ru": [5332], "ruidirect.info": [2053], "channel4.com": [3062], "www.bezosexpeditions.com": [1887], "g.hullen.me": [2053], "museodelprado.es": [10899], "www.jpberlin.de": [8593], "www.patronbase.co.uk": [21082], "vatten.lasav.nu": [2053], "a.ggr.gt": [2053], "on.cambrex.com": [2053], "ckf.io": [2053], "www.audioscrobbler.com": [1397], "www.bokelskere.no": [2237], "l.noshly.com": [2053], "cdn.psddev.com": [12776], "spsn.net": [15572], "santodomingo.usembassy.gov": [21879], "ocrete.ca": [11911], "el.boardgamearena.com": [2219], "www.vn5socks.com": [18100], "ws.coresecurity.com": [3736], "api.nextgen.guardianapps.co.uk": [20291], "kunde.comdirect.de": [19757], "www.quadpoint.org": [13551], "bridgeroadmarketing.com": [2368], "www.cambodiadaily.com": [2824], "gmcoff.ee": [2053], "www.mintguide.org": [10622], "linaro.co": [2053], "l2l.tech": [2053], "blog.blgrd.co": [2053], "wiki.inf.ed.ac.uk": [5168], "media.secondstreetapp.com": [14708], "exchange.dnv.com": [4148], "wiki.gnucash.org": [6885], "www.bio.org": [1562], "go.canalamd.com": [2053], "bkga.me": [2053], "eastriding.gov.uk": [5115], "sti.bo": [2053], "www.journalistforbundet.dk": [8797], "hfsresear.ch": [2053], "turb.co": [2053], "amwtp.inl.gov": [20462], "dogsbodytechnology.com": [4723], "sslwidget.criteo.com": [3872], "alexandrasangelgifts.co.uk": [838], "fundri.se": [2053], "machineslikeus.com": [9995], "forum.sourcefabric.org": [15429], "dovetal.es": [2053], "mygenerositywater.dntly.com": [4696], "worldnewz.us.to": [2053], "www.platina.ru": [13006], "attr.co": [2053], "imgix.com": [20438], "cdn2.content.compendiumblog.com": [3581], "ads.lucidmedia.com": [9807], "www.stacklet.com": [15616], "eduserv.org.uk": [20011], "www.theoddsbible.com": [21707], "metrics.pisces-penton.com": [12757], "westconsincu.org": [18511], "clax.to": [2053], "bcstilho.tk": [2053], "sonatype.com": [15381], "affiliates.nitetimetoys.com": [11619], "to.rdrct.net": [2053], "cdn.securelist.com": [14736], "atlas.ripe.net": [14128], "freelancersunion.org": [6297], "jake.mx": [2053], "myphone.coop": [11011], "photos.modelmayhem.com": [10703], "www.hush.technology": [7776], "www.surfconext.nl": [14434], "engineering.cloudscaling.com": [3374], "track.bankinter.com": [1694], "partner.yota.ru": [22107], "fhember.gr": [2053], "*.chrisanthemums.com": [3167], "resus.org.uk": [14053], "cdn.brandisty.com": [2338], "my.crypteron.com": [3921], "account.jetbrains.com": [8708], "wcf.co": [2053], "emea3.recruitmentplatform.com": [13886], "www.bitcoin.pl": [2017], "thing.douban.com": [4802], "eb.flik.at": [2053], "rodq.me": [2053], "bgo.tips": [2053], "www.it.liu.se": [9238], "givetocal.berkeley.edu": [17526], "docs.vagrantup.com": [17822], "tip.net.au": [16075], "jmcveyc.ht": [2053], "pushover.net": [13483], "go.foal14.com": [2053], "rvsn.in": [2053], "ra4-gifs.weather.gov": [18331], "e9.xhamsterpremiumpass.com": [18817], "www.granitephone.com": [15030], "www.braunschweig.de": [2344], "ashleymadison.com": [1290], "attlinks.com": [2053], "1984hosting.com": [51], "patriotpost.us": [16571], "www.sedmitza.ru": [21402], "www.bankofamerica.com": [1695], "app.mipay.com": [10626], "hmath.me": [2053], "derosete.ch": [2053], "s117.cnzz.com": [3391], "es.malwarebytes.org": [10093], "on.wimzey.com": [2053], "cco.pe": [2053], "domoticz.com": [4766], "orders.pandaexpress.com": [12560], "mcclurken.org": [17547], "shop.heifer.org": [7423], "zkbtz.tk": [2053], "*.myus.com": [10984], "goto.mattpro.hk": [2053], "ein.st": [2053], "i8.tietuku.com": [16704], "buytrezor.com": [2527], "cdn.login.vu.nl": [17813], "withknown.com": [18682], "dgrph.com": [2053], "tsec.io": [2053], "bitly.de-b.de": [2053], "developers.podio.com": [13068], "i.answers.microsoft.com": [10543], "lsvgs.us": [2053], "vendor.tv2.dk": [16136], "link.kidpub.com": [2053], "afl.ink": [2053], "2.url.cn": [21874], "icanlocalize.com": [7842], "catgirlsare.sexy": [2962], "top.mail.ru": [10040], "l.0303.club": [2053], "pluc.co": [2053], "in2code.de": [8177], "img01.suumo.com": [21621], "www.mrcote.info": [10864], "rfm.website": [2053], "webdev.pdu.edu": [13166], "ircreviews.org": [7958], "fuel4f.it": [2053], "pogo.com": [13073], "labs.microsofttranslator.com": [10549], "www.ecc-platform.org": [4978], "m.edu.tue.nl": [16129], "uc.gl": [2053], "*.rosettacode.org": [14202], "mkgf.co": [2053], "bkto.me": [2053], "static2.readyflowers.com": [13853], "purdue.edu": [13463], "amctv.com": [345], "omniture.com": [12002], "sciencedaily.com": [14619], "cdn.taxact.com": [16234], "gweb.io": [7162], "l.comm2ig.dk": [2053], "www.tmobile.nl": [16090], "glb.bz": [2053], "*.biomedcentral.com": [1954], "my.incapsula.com": [8192], "chcoc.gov": [19689], "k9.me.uk": [2053], "*.precharge.com": [13242], "bgc.am": [2053], "linuxluddites.com": [9584], "inf.mit.bme.hu": [1571], "*.cdn-hotels.com": [7699], "drivethrucomics.com": [12029], "foolz.us": [6125], "www.infosecindustry.com": [8251], "lum.is": [2053], "desy.de": [4479], "autopay.mts.ru": [20846], "7mc.us": [2053], "cdgcommerce.com": [2610], "connochaetos.org": [3651], "www.flyingcameras.ca": [6081], "genumedia.htwk-leipzig.de": [7736], "stanfordyou.stanford.edu": [15635], "sknvibes.com": [14364], "jokbo.oops.org": [12096], "sandwell.greenparty.org.uk": [7052], "www.thepiratebay.sx": [21710], "collabprojects.linuxfoundation.org": [9572], "solohour.co": [2053], "dinclinx.com": [10008], "*.heart.org": [7412], "bcv.ch": [20574], "www.tpucdn.com": [21772], "nirogam.org": [2053], "systemausfall.org": [16016], "*.atgsvcs.com": [1347], "ohhey.cl": [2053], "hbokids.com": [20323], "l.stinv.co": [2053], "btc-e.com": [1595], "ptra.in": [2053], "ca.meituan.com": [10405], "calum.org": [2816], "www.tpblist.xyz": [21771], "*.bkb.ch": [20574], "www.thepiratebay.se": [16493], "www.exchanges.state.gov": [17345], "*.defcongroups.org": [4100], "dgt-ml.in": [2053], "lrens.ch": [20719], "img06.taobaocdn.com": [16207], "8bat.ga": [2053], "www-print.rus.uni-stuttgart.de": [17567], "stura.htwk-leipzig.de": [7736], "ill.rit.edu": [13667], "www.kfwebs.net": [8873], "greenwire.greenpeace.org": [7064], "parliament.uk": [21075], "newsimg.bbc.co.uk": [19500], "www.epicgames.com": [5423], "auchan.ru": [1379], "hackerexperience.com": [7275], "community.fitbit.com": [6002], "ss0.bdstatic.com": [19507], "www.chesterfieldroyal.nhs.uk": [11102], "g.rexthedog.net": [2053], "www.covad.net": [3795], "piwik.web.cern.ch": [2632], "packages.linuxdeepin.com": [4380], "dulio.in": [2053], "orbit.cites.illinois.edu": [17544], "bgis.me": [2053], "smtt.eu": [2053], "services.netapp.com": [11374], "2tb.ch": [2053], "auth.uillinois.edu": [17238], "clientchat.minacs.com": [10591], "www.fbk.info": [5818], "*.onsugar.com": [12014], "reads.club": [2053], "www.ote.gr": [12336], "uncsa.worldcat.org": [18748], "nctry.pw": [2053], "greenparty.org.uk": [7052], "www.4freeproxy.com": [183], "zonomi.com": [19216], "www.aliloan.com": [19344], "www.hacdc.org": [7264], "religions.unian.net": [21851], "u.nil.gs": [2053], "www.gearman.org": [6606], "www.tpb.host": [21771], "unmultimedia.org": [17274], "bradh.us": [2053], "onehub.com": [12034], "deliciousgreencoffee.com": [4406], "frkpn.com": [2053], "pucek.co": [2053], "resurs.se": [14052], "metrics.aftonbladet.se": [754], "short.xenom.ro": [2053], "www.gogoair.com": [6933], "www.101domain.com": [15], "apture.com": [6961], "webmail02.register.com": [13965], "ttl.dj": [2053], "drew.mobi": [2053], "corl.co": [2053], "1914.zdf.de": [22127], "adminuat.pageuppeople.com": [21066], "ihm.nlm.nih.gov": [11241], "extralunchmoney.com": [5635], "l.nowforce.com": [2053], "socials.vice.com": [17958], "www.historytoday.com": [7560], "veuwer.com": [17948], "kip.gg": [2053], "customworks.ca": [9742], "*.tuxfamily.org": [17132], "on.gopride.com": [2053], "www.buddybuild.com": [19607], "nextbit.com": [11557], "new.eweiqi.com": [20075], "gruppen.greenpeace.de": [7063], "tweee.tk": [2053], "theintercept.com": [16560], "singapore.usembassy.gov": [21879], "crhe.org": [2053], "embed-ssl.wistia.com": [18678], "wearca.re": [2053], "www.securityconference.de": [14769], "playluc.ky": [2053], "www.slb.com": [14596], "app-coding.de": [1140], "wumatrix.wusm.wustl.edu": [18290], "classzone.com": [3276], "www.hounddogcentral.com": [7708], "url.webtrip.in": [2053], "login.comcast.net": [3524], "*.adf.ly": [562], "www.godownloadsongs.com": [15452], "imp.ovh.net": [12378], "www2.whipplehill.com": [18541], "www.jdeslippe.com": [8616], "it.boardgamearena.com": [2219], "www.ligatus.com.tr": [9502], "dazhu.meituan.com": [10405], "forum.ovh.lt": [12378], "www.searchsecurity.de": [16273], "thalysthecard.com": [16434], "privacychoice.org": [13313], "img3.glassdoor.ca": [20246], "wgea.gov.au": [18746], "password.uow.edu.au": [17636], "bit.loak.org": [2053], "acth.co": [2053], "support.sumologic.com": [15848], "brea.st": [2053], "wrdz.us": [2053], "www.video.yandex.com": [18956], "ss.six22.tech": [2053], "a.taobao.com": [16206], "www.facebook.nl": [5736], "ivanovo.beeline.ru": [1801], "go.versa.design": [2053], "www.facebook.no": [5736], "titan.pm": [2053], "internews.org": [8438], "bitrig.org": [2065], "ma-ins.dk": [2053], "popcash.net": [13132], "www.redcross.org": [13906], "aachur.ch": [2053], "kolab.org": [9110], "easeus.degica.com": [3396], "support.pinterest.com": [12914], "forums.libsdl.org": [9449], "punto.ar": [13459], "kredyty-samochodowe.money.pl": [10734, 10735], "guidefaq.com": [7136], "cld.yt": [2053], "plastc.com": [13000], "cybr.pt": [2053], "flightglobal.com": [6037], "www.tectonic.com": [16311], "www.everydayrewards.com.au": [18723], "gfl.la": [2053], "www.opening-times.co.uk": [21016], "ppixel.net": [2053], "wiki.ciphershed.org": [3210], "extranet.websitepipeline.com": [18447], "ut09.xhcdn.com": [18815], "*.cables.com": [2763], "forum.openstreetmap.fr": [12245], "zimbra.webstyle.ch": [18455], "bankofamerica.com": [1695], "cshor.es": [2053], "*.patriotpost.us": [16571], "yucheng.meituan.com": [10405], "*.austiners.com": [1415], "www.snowmagazineonline.com": [15289], "ll.de": [2053], "aeriagames.com": [725], "nkul.tk": [2053], "oem.microsoft.com": [10543], "wiki.young-pirates.eu": [19023], "zakb.me": [2053], "scdn.cxense.com": [2753], "m.fuhr.me": [2053], "content.presspage.com": [13259], "sup.ee": [2053], "mknell.co": [2053], "api.wipmania.com": [18207], "cdn.okccdn.com": [11969], "s78.cnzz.com": [3391], "*.turtlebeach.com": [17123], "static.kabelmail.de": [8912], "cs.ap.dell.com": [4413], "onlinelaw.wustl.edu": [18290], "www.yar.fruct.org": [5708], "avn.nu": [2053], "shop.whyopencomputing.com": [22021], "blog.runbox.com": [14274], "pt.chaturbate.com": [3093], "sony.eu": [15391], "b.edi.bz": [2053], "trip.163.com": [42], "devmonk.com": [4506], "www.auto.ro": [1451], "api.data.gov": [4253], "*.donotcall.gov.au": [4698], "wishpot.com": [18675], "go.dhpit.com": [2053], "darsak.com": [2053], "algr.in": [2053], "ggs.alibaba.com": [850], "*.alternate.nl": [921], "www.sethvargo.com": [14877], "www.goldenfrog.com": [6940], "i8.piimg.com": [16704], "lms.wiss.ch": [18676], "winners.flonline.eu": [5691], "www.artemis-ia.eu": [1264], "hi.kickassapp.com": [9027], "daws.in": [2053], "connect.microsoft.com": [10543], "s.girlylane.com": [2053], "socialtwist.com": [15310], "ttbat.es": [2053], "informahealthcarestore.com": [8269], "pagead2.googlesyndication.com": [6971], "textbooks.com": [16420], "*.koderoot.net": [9103], "ridefor.me": [2053], "da.4.boardgamearena.com": [2219], "tonton.yt": [2053], "yhhr.us": [2053], "bnet.io": [2053], "pointit.co": [2053], "lp0.eu": [9803], "somos.unizar.es": [17643], "medipreis.de": [10308], "zrey.com": [22140], "www.enlightenment.org": [5382], "go.cnbgfans.com": [2053], "vmcl.cl": [2053], "m.ngs.ru": [20907], "www.masty.nl": [10225], "go.xoynq.com": [2053], "doc.wallabag.org": [18255], "krybd.in": [2053], "password.it.umich.edu": [17552], "airwifi.rocks": [2053], "bconnected.berkeley.edu": [17526], "pixxy.it": [2053], "usil.logmein.com": [9711], "wz.meituan.com": [10405], "f.blick.ch": [2125], "www.rts.ch": [21550], "3min.de": [161], "www.ovh.com": [12378], "wiki.deimos.fr": [4395], "images.outbrain.com": [12355], "campaigns.wesnoth.org": [18500], "s.pulte.com": [2053], "s.hustle.ws": [2053], "douglas.firmstep.com": [20124], "*.webtraffiq.com": [18462], "bourgeois.me": [2302], "leviat.hn": [2053], "web4u.cz": [18348], "www.connect6.com": [19773], "www.getinvolved.wustl.edu": [18290], "h-rs.me": [2053], "pccasegear.com.au": [12426], "shropshire.gov.uk": [21440], "apps.opendatacity.de": [21012], "www.ctkarch.org": [19834], "www.avis.com": [1491], "www.jitsi.org": [8731], "forum.boardgamearena.com": [2219], "m.ndr.de": [11310], "avana.de": [2053], "thekatm.com": [2053], "love.haqs.es": [2053], "yourgho.st": [2053], "histne.ws": [2053], "reputation.com": [14024], "archive.sans.org": [14310], "m.feedback.yandex.com.tr": [18954], "aurora.central-lincs.org.uk": [19668], "aptdeco.com": [1181], "wilgis.us": [2053], "mtgrat.es": [2053], "womensaid.ie": [18710], "pridez.us": [2053], "cruises.webjet.co.nz": [18421], "ep.jhu.edu": [16562], "redhat.com": [13909], "jwoo.me": [2053], "ctf.eindbazen.net": [5226], "icz.link": [2053], "bromley-consult.objective.co.uk": [20979], "podc.club": [2053], "www.isc.vutbr.cz": [17814], "zekes.nl": [2053], "tab-beim-bundestag.de": [21645], "justsecurity.org": [8849], "rasp.yandex.by": [18953], "*.thesims3.com": [5253], "www.linuxmint-art.org": [21006], "forms.brent.gov.uk": [2358], "tvm.im": [2053], "planet.ubuntu-fr.org": [17376], "ehs.georgetown.edu": [6668], "launchclasses.com": [9322], "support2.microsoft.com": [10543], "blog.jbfavre.org": [8687], "dreadshare.com": [2053], "imdia.us": [2053], "explore.t-mobile.com": [16026], "*.demandprogress.org": [4423], "uni-due.de": [17450], "raun.co": [2053], "autodiscover.chem.leeds.ac.uk": [17604], "hpcf.upr.edu": [17284], "www.penfoldgolf.com": [12745], "api.rasp.yandex.com.tr": [18954], "www.ymcastlouis.org": [18922], "flossmanuals.net": [5690], "l.aureljared.tk": [2053], "www.proxyshard.uk": [21218], "jo-se.ph": [2053], "myg.sk": [2053], "p8.qhimg.com": [13531], "b-t-r.co": [2053], "reikimadr.it": [2053], "pollst.at": [2053], "toyaberr.yt": [2053], "mwl.telekom.de": [4490], "www.xemail.de": [18856], "www.tiltbrush.com": [16720], "s.getowned.us": [2053], "piwik.deimos.fr": [4395], "www.meetbsd.com": [10376], "backup.f-secure.com": [5654], "identicons.github.com": [6801], "content.xap.com": [18803], "itea3.org": [7991], "www.maximintegrated.com": [10261], "www.spacecraft.co.uk": [21519], "tasteb.gs": [2053], "www.gasngrills.com": [6582], "nuvio.us": [2053], "neard.es": [2053], "vocab.com": [21937], "www.empeopled.com": [5316], "www.projectcounter.org": [2700], "watford.gov.uk": [21982], "tippr.in": [2053], "www.travelblog.org": [16965], "iam.edp.pt": [4995], "bmst.co": [2053], "cdnjpg.dmjx.dk": [4687], "geenstijl.nl": [20217], "gaoping.meituan.com": [10405], "radioeins.de": [13752], "blog.startech.com": [15647], "www.debian.org": [4353], "internetretailer.com": [17932], "www.ccbill.com": [2592], "communities.sas.com": [14312], "dean-faculty.williams.edu": [18616], "www.okfn.org": [12215], "www.govspace.gov.au": [6994], "www.fsl.cs.sunysb.edu": [15736], "support.gradwell.com": [7011], "www.ngx.cc": [11569], "dhl.de": [4108], "china.jd.com": [8571], "sangregorio.uniovi.es": [17479], "policy.ssa.gov": [21552], "payments.northamptonshire.gov.uk": [20925], "cn.forums.oracle.com": [12284], "obfs.uillinois.edu": [17238], "your.styleba.be": [2053], "ccrls.worldcat.org": [18748], "go5.cz": [2053], "go.ore-n.com": [2053], "svtz.it": [2053], "rplr.co": [2053], "creditreportnation.com": [3861], "branz.tv": [2053], "a.meipian.me": [10404], "receptiontours.state.gov": [17345], "www.tech.plymouth.ac.uk": [13055], "jobs.bristol.gov.uk": [19592], "www.meeting-reg.com": [10176], "wiki.unbit.it": [17431], "gcole.us": [2053], "pss.gov.au": [13441], "www.vpn4all.com": [17791], "verjano.co": [2053], "iovation.com": [8490], "*.westpac.com.au": [18518], "inkblot.link": [2053], "gctv.to": [2053], "solariz.de": [21503], "krb-jobs.brassring.com": [19586], "nluk.co": [2053], "webmail.atlantis.sk": [1355], "www.evoluted.net": [5573], "cure53.de": [3998], "www.hgo.se": [7188], "direct.govdelivery.com": [6989], "www.avherald.com": [19461], "globusreisen.ch": [7698], "www.ionicframework.com": [8487, 8488], "www.wolverhampton.gov.uk": [18705], "ccrally.co": [2053], "faq.lookout.com": [9764], "rscweb.org": [14230], "kth.se": [8905], "dscvr.me": [2053], "static-azeroth.cursecdn.com": [4006], "pfr.ec": [2053], "reuters.tv": [21302], "*.likes-media.com": [9511], "ars.els-cdn.com": [5284], "www.torreycommerce.net": [16864], "www.gac.edu": [6418], "images.us.jobs": [21876], "r.xl.pt": [2053], "0to.com": [2053], "olimex.com": [11979], "*.kf5.com": [20588], "cscm.ag": [2053], "ryan.cat": [2053], "non-t.co": [2053], "manila.usembassy.gov": [21879], "cdnsecakmi.kaltura.com": [8927], "www.cryptonetwork.com": [3931], "www.kn007.net": [9089], "go.nminc.co": [2053], "*.pssap.gov.au": [13440], "www.giantbomb.com": [6756], "fmsgr.se": [2053], "kyl.ie": [2053], "www2.pbebank.com": [13431], "www.stealthnet.de": [15702], "finance.idnes.cz": [20425], "www.thechive.com": [16524], "www.fishshell.com": [5998], "dissh.me": [2053], "note.115.com": [25], "vein.co": [2053], "www.mycareinbirmingham.org.uk": [10991], "franz.tv": [2053], "wsw.afip.gob.ar": [19318], "ccn.la": [2053], "de-contrainfo.espiv.net": [20058], "mrm.freewheel.tv": [6254], "blog.evernote.com": [5556], "forum.openmw.org": [12151], "jpta.me": [2053], "myjobscotland.gov.uk": [11027], "zencache.com": [19131], "owncloud.dkit.ie": [4114], "www.odpadnes.sk": [19197], "artace.uk": [2053], "gust.ly": [2053], "miranda-im.org": [10631], "cockpit.mykolab.com": [10955], "www.vistumbler.net": [13779], "go.cylac.ca": [2053], "ivpr.es": [2053], "extranet.au.g4s.com": [20194], "www.victorops.com": [17963], "m.addthis.com": [611], "www.phpans.com": [21118], "www.forgeworld.co.uk": [20146], "xfel.desy.de": [4479], "www.inspirationgreen.com": [8326], "universe2.us": [17514], "simul.tips": [2053], "concierge.shopspring.com": [21432], "www.codesourcery.com": [10438], "s.aja.jp": [2053], "cdn.websharks-inc.com": [18381], "viaverio.com": [17952], "link.stjerne.nu": [2053], "mlife.lv": [2053], "coreboot.org": [3737], "www.piwik.ei.rub.de": [13712], "belezanaweb.net.br": [1812], "landing.newsinc.com": [11527], "www.everyoneisgay.com": [5562], "*.saltpack.org": [21364], "u.ggs.jp": [2053], "kids.greenpeace.de": [7063], "drinkaware.co.uk": [4857], "i1.adis.ws": [633], "quinta.in": [2053], "yushan.meituan.com": [10405], "auth0.com": [1444], "at.fmt.lt": [2053], "pom.me": [2053], "asset-2.java.net": [8673], "patentbaristas.com": [12659], "www.ppcw.osu.edu": [11874], "subply.com": [15810], "light-paint.com": [9503], "safeshepherd.com": [14473], "alumni.rmit.edu.au": [13670], "omics.gs": [2053], "*.bosch.com": [2281], "includes.ncl.ac.uk": [11073], "bitx.co": [2000], "www.canterbury.gov.uk": [2870], "api.mywot.com": [10987], "rabota.mail.ru": [10040], "is.i2.datinglab.net": [19861], "on.kcra.com": [2053], "sbot.co": [2053], "b.advoua.org": [2053], "clarionledger.com": [3272], "milwaukeemakerspace.org": [10589], "et.3.boardgamearena.com": [2219], "www5.hertz.com": [7511], "aip.org": [330], "hr.alibaba-inc.com": [19342], "eib.tw": [2053], "binera.de": [7349], "www.zimbrablog.com": [19185], "www.accountchooser.com": [499], "mypcbackup.com": [8843], "www.wartstick.com": [18281], "nazh.us": [2053], "guanyun.meituan.com": [10405], "koletech.info": [2053], "www.tastekid.com": [16227], "xianyang.meituan.com": [10405], "conference2010.kde.org": [8871], "calvin.cloud": [2053], "hrkgame.com": [7724], "blmd.me": [2053], "cmswm.it": [2053], "dinr.us": [2053], "ookla.com": [12094], "www.androidfilehost.com": [1047], "www.juneoven.com": [8830], "llk.co": [2053], "mrc.io": [2053], "idi.ntnu.no": [11153], "e21.io": [2053], "kester.co": [2053], "emsonline.blackpool.gov.uk": [2108], "cdn1.micasa.ch": [10520], "jayshapiro.is": [2053], "p2n.co": [2053], "tdk.jp": [2053], "www.astronomicaltours.net": [1340], "sescoops.com": [14342], "wiki.pirate-party.ru": [12919], "l5.io": [2053], "webstats.maths.ed.ac.uk": [5168], "a.hiveteams.com": [2053], "rgs.me": [2053], "imend.co": [2053], "img.tweetimag.es": [1866], "bluecava.com": [2182], "www.signal-spam.fr": [15026], "url.matheus.me": [2053], "se.no": [21393], "svn.gnumonks.org": [6891], "*.boozallen.com": [2274], "www.ohm2013.org": [11823], "hrio.in": [2053], "nrlynkd.com": [2053], "securityblog.stanford.edu": [15635], "lnka.de": [2053], "www.honeynet.org": [20357], "blicher.co": [2053], "www.coreix.net": [3739], "hdnux.com": [7408], "empireblue.com": [20033], "fenixgsm.net": [2053], "tvfiber.tk": [2053], "i1.mifile.cn": [10560], "www.peopleclick.com": [12763], "directadvert.ru": [4608], "commsys.isy.liu.se": [9237], "www3.gotomeeting.com": [6912], "anmd.tv": [2053], "blogs.nvcc.edu": [11787], "wasi.link": [2053], "paszport.money.pl": [10735], "*.list-manage2.com": [9608], "lmbrt.in": [2053], "getinvolved.guildford.gov.uk": [20294], "find.es.t-mobile.com": [16026], "www.mediaarts-db.jp": [10335], "agib.me": [2053], "www.postofficeshop.de": [19901], "search.cam.ac.uk": [17529], "newyorkneedsyou.org": [11504], "www.openfiler.com": [12232], "self.alipay.com": [857], "www.hosting.cz": [20364], "cree.me": [2053], "www.persona.org": [10851], "mepi.state.gov": [17345], "hoy.do": [2053], "cannex.com": [2573], "s.uploadhero.co": [17680], "*.turnonsocial.com": [17119], "rrg.me": [2053], "digit.re": [2053], "theol.mx": [2053], "mrex.us": [2053], "developers.asana.com": [1277], "clevelandconnected.co.uk": [19727], "dreamstime.com": [4851], "nokia.datalens.here.com": [7465], "www.internationalpayments.co.uk": [8415], "ravendb.net": [13812], "*.moverall.com": [10821], "rally.stopwatching.us": [15744], "theinspirationroom.com": [16459], "unndd.it": [2053], "www.nice.org.uk": [11110], "lsy-www.swiss.com": [15948], "cch.com": [2605], "quarry.wmflabs.org": [18595], "wat.vc": [2053], "thebookbang.com": [2053], "burthub.com": [2509], "www.hr-s.co.jp": [7230], "on.unesco.org": [2053], "wjburgin.info": [2053], "go.bodin.ac.th": [2053], "www.nb.admin.ch": [21629], "www.bugzilla.org": [2466], "www.advocate-europe.eu": [708], "cs.4.boardgamearena.com": [2219], "www.bristol.gov.uk": [19592], "scnttrnk.com": [2053], "www.kasimp3.co.za": [8956], "theblog.news": [2053], "3dlz.co": [2053], "xapo.com": [18841], "cll.conted.ox.ac.uk": [17557], "*.villas.com": [18008], "sitecdn.answcdn.com": [1099], "jwl.am": [2053], "lh2.google.com.*": [6965], "mslk.co": [2053], "r.rvhfoto.nl": [2053], "connect.colchester.gov.uk": [3477], "forums.virtualbox.org": [18039], "streamco.us": [2053], "torrentz-proxy.com": [16861], "tableschecking.education.gov.uk": [20009], "*.moxiesoft.com": [10834], "thumb-bdl.bj.bcebos.com": [19505], "www.simbad.cnrs.fr": [6314], "www.mypostbusiness.ch": [13176], "newssense.in": [2053], "tjc.cc": [2053], "fitandfun.ky": [2053], "ecredit.alibaba.com": [850], "galaxus.com": [6525], "www.iipvv.nl": [7887], "go.onclasrv.com": [20993], "localoffer.bradford.gov.uk": [2317], "webmail.nasa.gov": [11058], "zeushash.com": [19169], "m.slashdot.org": [21475], "www.vianetfuelsolutions.com": [17955], "go.catmoji.com": [2053], "trea.tw": [2053], "jigex.com": [2053], "*.euroforum.de": [5518], "*.schulte.org": [14610], "cdig.me": [2975], "go.hoki.la": [2053], "account.cern.ch": [2632], "makr.life": [2053], "papke.me": [2053], "radr.fr": [2053], "erti.us": [2053], "static5.startnext.com": [15665], "z.dial.nl": [2053], "bugs.siedler25.org": [14065], "democracy.kirklees.gov.uk": [9067], "community.jivesoftware.com": [8733], "answers.stripe.com": [15781], "bdtw.co.vu": [2053], "www.mycarfinance.lloydsbank.com": [9686], "universityofarizona.worldcat.org": [18748], "support.pipni.cz": [12460], "burp.renderfarming.net": [14000], "www.sunriseprintonline.com": [15860], "washex.am": [2053], "forum.bitcoin.co.id": [2015], "it24.idg.se": [7852], "north-winds.net": [2053], "assoc-amazon.de": [1324], "cfcblu.es": [2053], "ourproject.org": [21044], "ssl-i.xx.openx.com": [12193], "output1s.rssinclude.com": [13697], "wat.ky": [2053], "joycasino0.com": [20552], "o.rly.at": [2053], "www.givekidstheworldstore.org": [6808], "talgov.com": [16179], "www.cachethq.io": [2768], "jpdirector.com": [2053], "rally1.rallydev.com": [13772], "jaimegomez.ml": [2053], "myoc.co": [2053], "l.longtailvideo.com": [9752], "hi.kskv.co": [2053], "blog.kaywa.com": [8980], "jewishpress.com": [8712], "ugyfelkapu.digi.hu": [4553], "xstore.jp": [2053], "help.yandex.com.tr": [18954], "dkfan.de": [2053], "www.ibtimes.co.uk": [7823], "012.vuejs.org": [18165], "digibond.wpengine.netdna-cdn.com": [4563], "globx.co": [2053], "go.cmru.info": [2053], "productfor.ge": [2053], "church.ez-web-hosting.com": [5099], "int.sitestat.com": [15132], "hkn.de": [7214], "s.2ji-iro.com": [2053], "nlgcdn.com": [11626], "fr.opera.com": [12252], "konrath.co": [2053], "denrey.me": [2053], "wndrful.co": [2053], "adaway.org": [599], "dc801.org": [4086], "www.darkmatter.ae": [19851], "*.pjtv.com": [12465], "www.seower.com": [14835], "tsmlab.org": [2053], "url.senviet.org": [2053], "englearn.osu.edu": [11959], "www.hackinthebox.org": [7285], "s.kit.ac": [2053], "openbsdeurope.com": [12119], "sitecamp.us": [2053], "www.betnet.fr": [11377], "cdn.guildford.gov.uk": [20294], "ncld.co": [2053], "trendmicro.eu": [16992], "fn.meituan.com": [10405], "flx.mr": [2053], "on.rt.com": [13702], "*.circularhub.com": [3216], "amazingweb.co": [949], "revue.idnes.cz": [20425], "explorer.dot-bit.org": [4785], "on.tnr.com": [2053], "user-agents.org": [17721], "selinc.com": [14336], "tools.sparklabs.com": [15469], "mixer.gettyimages.com": [6741], "lcky.mg": [2053], "eksod.us": [2053], "wikitest.geogebra.org": [6659], "on.wyff4.com": [2053], "www.connecthr.nl": [2842], "www.imfreedom.org": [8333], "hps.org": [20370], "dazhou.meituan.com": [10405], "red-pill.eu": [13893], "amnesty.or.jp": [1004], "r.sjsu.edu": [2053], "miim.de": [2053], "cirs.georgetown.edu": [6668], "hongkongpost.gov.hk": [20359], "lists1.mail.ruhr-uni-bochum.de": [14267], "shangqiu.1688.com": [44], "*.ppjol.com": [13260], "nx8.tv": [2053], "www.hakin9.org": [7300], "www.aliyun.com": [861], "hungerhost.com": [7764], "people.php.net": [12453], "support.novell.com": [11728], "finsku.ga": [2053], "admin.theatlanticwire.com": [1352], "edd.me": [2053], "on.tenerant.com": [2053], "t5.qlogo.cn": [13534], "businessclass.comcast.net": [3524], "www.cups.org": [2749], "t3fm.com": [2053], "tmwsne.ws": [2053], "bluecastle.nottingham.ac.uk": [11726], "secn.ws": [2053], "www.search.ch": [14684], "tor.lugons.org": [9262], "innvt.it": [2053], "*.hostpoint.ch": [7685], "www.ludialudom.sk": [9816], "m.zalando.ch": [19094], "achievementstats.com": [513], "storybots.co": [2053], "wo-mobi.us": [2053], "pblogging.com": [2053], "secure.redflush.com": [13908], "ovrc.lk": [2053], "i1.services.social.s-msft.com": [14296], "correo.uned.es": [17446], "anxi.meituan.com": [10405], "support.udemy.com": [17393], "www.piratelinux.org": [12927], "yo.xcvb.co.uk": [2053], "solutionconnection.netapp.com": [11374], "se1.info": [2053], "msb.link": [2053], "pcauto.irs01.com": [20498], "jrs.im": [2053], "rkyw.me": [2053], "theeventdiva.com": [16454], "klibert.pl": [9083], "www.psykologteam.dk": [13776], "t.appbb.co": [2053], "es.videos.t-mobile.com": [16024], "ptu.me": [2053], "ghstrbt.com": [2053], "onetbl.co": [2053], "dong.nikhef.nl": [11596], "heusden.nl": [11324], "xt-commerce.com": [18898], "ehis.me": [2053], "standagainstspying.org": [15628], "girlbeauty.uk": [2053], "wap.baidu.com": [1661], "adminit.usc.edu": [17564], "ruv.me": [2053], "images.springer.com": [15561], "customercare.inyt.com": [7919], "www.precos.com.pt": [13247], "en-is.dict.cc": [4536], "s.cuezva.net": [2053], "rpsc.energy.gov": [5355], "dallas.webconsole.linode.com": [9547], "jungewelt.de": [20562], "ucu.org.uk": [21835], "planning.stoke.gov.uk": [21579], "i.wem.mx": [2053], "jobb.blocket.se": [2147], "mdrio.mx": [2053], "skolaonline.cz": [21471], "bitrise.io": [19543], "www.edpessoa.internet.edp.pt": [4995], "live-movie.ml": [2053], "www.unwantedwitness.or.ug": [17662], "www.postaffiliatepro.com": [13180], "lie.lv": [2053], "diploby.mondediplo.com": [10729], "go.bvaerial.com": [2053], "swdh.in": [2053], "www.1xbet.com": [83], "mrsh.cm": [2053], "impac.tw": [2053], "stvn.so": [2053], "www.gjopen.com": [6453], "nyx.com": [11185], "myeaccount.islington.gov.uk": [8518], "*.sdlcdn.com": [14674], "goaz.me": [2053], "g5.gov": [6417], "www.bankinter.com": [1694], "ant.mn": [2053], "jett.me": [2053], "adct.me": [2053], "ru.syllable.org": [21632], "jekkt.com": [8691], "www.btcc.com": [2438], "*.kde-look.org": [21007], "bell.ca": [1815], "bollettino.poste.it": [13192], "www.gamecraft.cz": [20199], "www.twylah.com": [17178], "go.nxu.hu": [2053], "www.abebooks.com": [447], "jhpv.co": [2053], "l.danielooi.com": [2053], "pece.o2.cz": [2053], "www.hit.bme.hu": [1570], "sede.uniovi.es": [17479], "www.totaltravel.co.uk": [18942], "sterl.in": [2053], "turnoff.us": [21817], "txtil.co": [2053], "1in5.io": [2053], "bosh.me": [2053], "xpiconly.com": [18834], "www.itea3.org": [7991], "brlyco.de": [2053], "static9.startnext.com": [15665], "readme.io": [13841], "lgc.click": [2053], "i.nhg-homer.org": [2053], "*.malina.hu": [4756], "www.identitytheft.gov": [8086], "u.bravodms.com": [2053], "www.einslive.de": [18312], "mail.re-publica.de": [13830], "www.numergy.com": [11777], "qwp.es": [2053], "www.7-eleven.com": [218], "info.nowsecure.com": [11731], "reservations.mgmmirage.com": [20788], "studi.f4.htw-berlin.de": [7246], "dealchicken.com": [12843], "ppmlk.com": [2053], "discuz.gtimg.cn": [7120], "admin.exmasters.com": [5606], "publicaccess.glasgow.gov.uk": [6821], "support.cex.io": [2644], "gethashing.com": [6700], "vtbrussia.ru": [17807], "*.sitesense-oo.com": [11209], "my.fireclick.com": [5971], "services.pornhub.com": [13153], "www.torrent.tm": [16848], "www.mykolab.com": [10955], "loka.ly": [2053], "images.yandex.ua": [18961], "*.fanhattan.com": [5768], "www.canvaslms.com": [2873], "waa-jla.xyz": [2053], "dgeorge.ml": [2053], "carbodyshop.org": [2053], "asset-d.soup.io": [15415], "www.cryptologie.net": [3945], "auth.church": [2053], "rackspace.hk": [13738], "strs.co": [2053], "sjs.bizographics.com": [2085], "aircargoworld.com": [17204], "rmn.pw": [2053], "informers.sinoptik.ua": [15099], "sthelen.co": [2053], "kirklees.gov.uk": [9067], "*.moneysavingexpert.com": [10737], "lists.kde.org": [8871], "community.lls.org": [9243], "boston.com": [2287], "glaube.me": [2053], "oveelife.com": [2053], "maps.stanford.edu": [15634], "jhalderm.com": [8617], "*.kldp.net": [8887], "3dhubs.me": [2053], "www.linotype.com": [9548], "yrbiz.uk": [2053], "weg.bz": [2053], "gotom.tg": [2053], "subscription.people.com": [12759], "wtr.ie": [2053], "numsys.eu": [11778], "fruitflylife.co": [2053], "security.georgetown.edu": [6668], "ecn.t4.tiles.virtualearth.net": [18046], "wlm5.tk": [2053], "*.stunnish.com": [15801], "www.wand.com": [18266], "www.drivee.ne.jp": [4860], "ord.mx": [2053], "www.dsi.cnrs.fr": [6314], "www.androidpit.de": [1048], "account.ubnt.com": [17363], "pepe.ag": [2053], "bouman.xyz": [2053], "www.apertureinsight.com": [13454], "datatracker.ietf.org": [7868], "thenwo.co": [2053], "go.conncoll.edu": [2053], "a1276.ztat.net": [19094], "www.nadaguidesstore.com": [11056], "jobs.daringfireball.net": [4225], "parking.bedford.gov.uk": [19509], "luxf.it": [2053], "i2.gmx.com": [6467], "www.namebrightstatic.com": [11206], "burningshed.com": [2499], "oceandiscoveryportal.xprize.org": [18795], "goparallel.sourceforge.net": [15423], "dl.msf.fr": [2053], "d.pcs.baidu.com": [1661], "chapnick.tk": [2053], "www.clkmon.com": [3331], "amys.co": [2053], "noembed.com": [11651], "*.kinghost.net": [9051], "www.gigenet.com": [6776], "s.acmt.net": [2053], "www.pressflex.com": [13263], "tout.ly": [2053], "ru.squat.net": [21549], "www.gq.com": [6496], "*.reelstatic.com": [13943], "mmedia.ozon.ru": [12405], "enrgy.co": [2053], "www.ll.georgetown.edu": [6668], "r.moiskidki.com": [2053], "www.reclaim-your-privacy.com": [13880], "www.korruption.dk": [9141], "imgs1-video.msn.com": [9961], "vult.re": [2053], "edge.fscdn.org": [5717], "nl-marketing.tradepub.com": [16919], "automotivelinux.org": [1467], "tvheadend.org": [17137], "scottbrand.com": [14639], "www.here.com": [7465], "scare.at": [2053], "ugla.hi.is": [7196], "www.ihgagent.com": [8380], "comunidade.edp.pt": [4995], "appserv7.admin.uillinois.edu": [17238], "weicaifu.com": [21999], "tb1.bdstatic.com": [19507], "id.trove.com": [17038], "pgspt.me": [2053], "bokno.ws": [2053], "www.tecnocode.co.uk": [16310], "www.erhvervsstyrelsen.dk": [5445], "workorder.aliyun.com": [861], "wenling.meituan.com": [10405], "peterodding.com": [12805], "brchan.org": [1582], "fulcrumbiometrics.com": [6364], "zareason.com": [19111], "my.pingdom.com": [12902], "fs19.formsite.com": [20148], "go.psman.gq": [2053], "login.libproxy.aalto.fi": [428], "registro.br": [13968], "htrnews.com": [7461], "www.eba.europa.eu": [5526], "vistastar.co.uk": [2053], "www.argoscareers.com": [1224], "d.mhcache.com": [10510], "netid.georgetown.edu": [6668], "files.qabel.de": [13527], "developers.hubspot.com": [7739], "www.domcomp.com": [4757], "s.joonh.com": [2053], "faq.torrentpier.me": [21761], "*.ciao.com": [3191], "nctr.life": [2053], "inkl.co": [2053], "en.verbling.com": [17907], "www.cvl.isy.liu.se": [9238], "360buy.com": [135], "tbr1.tk": [2053], "www2.healthunlocked.com": [7396], "paranoidsecurity.nl": [12600], "dml.kuleuven.be": [8969], "rhapsody.com": [14092], "s.eap.io": [2053], "agaris.net": [2053], "www.jd.hk": [8572], "buyback.rakuten.co.jp": [13767], "*.kixeye.com": [8882], "goget.at": [2053], "mmnews.mm.am": [2053], "terd.us": [2053], "ic.nu": [2053], "www.heartbleed.com": [7413], "www.retronaut.com": [14062], "labs.w3.org": [18184], "zno.yandex.ua": [18961], "l.seddon.me": [2053], "www.oecdilibrary.org": [11817], "*.talkactive.net": [16181], "cp.idg.de": [2053], "www.volatilesystems.com": [18119], "hsd.bz": [2053], "6al.al": [2053], "www.vibrantmedia.com": [17957], "gallery.hizliresim.com": [7575], "www.automatak.net": [1463], "sbaglobal.com": [14869], "glcl.co": [2053], "www.who.int": [18203], "para.maximintegrated.com": [10261], "www.terveysportti.net": [16394], "static.ylilauta.org": [22104], "status.zen.co.uk": [19129], "fiannafail.ie": [5883], "sfbrande.is": [2053], "jba.link": [2053], "www.javvin.com": [8680], "tufts.worldcat.org": [18748], "ws.cnetcontent.com": [2692], "www.businessadvice.anz.com": [355], "eng.fronter.com": [20179], "www.nsslabs.com": [11148], "phusionpassenger.com": [12866], "verisign.com.tw": [17915], "retailsails.com": [14056], "image12.bizrate-images.com": [2086], "awesome-it.de": [1501], "duk.ma": [2053], "help.conoha.jp": [3652], "stpdcn.cr": [2053], "aldi.nl": [338], "on.wsj.com": [2053], "smozaika.ru": [21486], "bugs.freedesktop.org": [6243], "www.civilservice.gov.uk": [19721], "trace.risingstack.com": [21312], "www.cert.pl": [2634], "api.met.no": [20784], "vdoth.com": [17876], "nanning.jd.com": [8571], "parcelforce.com": [12603], "ogu.la": [2053], "auth.illinois.edu": [17544], "press.11main.com": [28], "tiras.ru": [21744], "1mof.me": [2053], "ntwc.co": [2053], "forum.fineproxy.org": [5961], "thepbproxy.website": [21709], "eauk.co": [2053], "git.centos.org": [3003], "tecnica.ist.utl.pt": [16287], "kwib.us": [2053], "auto.ya.ru": [18930], "ct.hwcmc.com": [2053], "mylikes.com": [10958], "www.sqlconverter.com": [14400], "mbitly.co": [2053], "timekat.state.gov": [17345], "nekvapor.com": [11086], "amty.co": [2053], "01001110.co": [2053], "it.uu.se": [17352], "onemancan.org": [12049], "cache.legacy.com": [9384], "htfd.co": [2053], "mediademocracyfund.org": [10310], "atlassec.web.cern.ch": [2632], "blog.freenode.net": [20168], "www.mims.com.ph": [9910], "l.druffin.fr": [2053], "android5g.xyz": [2053], "www.shopping.ba.com": [1527], "moxcar.com": [2053], "equalit.ie": [5046], "a.hbt.li": [2053], "sir.cern.ch": [2632], "*.stardock.com": [15653], "tcd.ie": [17012], "www.oneplus.net": [12041], "www.inverse.ca": [8463], "www.dareboost.com": [4224], "shopho.us": [2053], "mijnwestlandutrecht.nl": [18513], "donate.thenation.com": [16465], "fiv.link": [2053], "dnswatch.info": [4141], "www.popcorn-time.se": [13141], "wgsp.georgetown.edu": [6668], "bayproxy.pw": [21709], "ahs.mn": [2053], "webpg.org": [18375], "buyboard.com": [2525], "dtmpg.co": [2053], "newsblur.com": [11518], "oberoesterreich.neos.eu": [11088], "*.www.loopia.se": [9769], "www.netvibes.com": [11450], "yuilibrary.com": [18929], "cday.us": [2053], "be.godaddy.com": [6898], "dojotoolkit.org": [4727], "ci.cms.gov": [19742], "11gam.es": [2053], "mywt.us": [2053], "my.lsbu.ac.uk": [9252], "spreadshirt.se": [15552], "www.prometric.com": [13380], "thehague.usembassy.gov": [21879], "peerreach.com": [12729], "tbssf.org": [2053], "*.questadmin.net": [6400], "intrahr.nih.gov": [11241], "support.ipvanish.com": [7946], "pb9.co": [2053], "*.networkdepot.com": [11453], "hd.etnasoft.com": [5493], "ngve.co": [2053], "m2fjob.com": [9861], "www.linuxwall.info": [9597], "www.photosynth.net": [12861], "memberprod.alipay.com": [857], "gpul.org": [6492], "*.servage.net": [14843], "har.rs": [2053], "kikifet.ch": [2053], "assets2.motherboard.tv": [10795], "brief.vet": [2053], "rdvs.be": [2053], "careers.fi": [2905], "shack.net": [2053], "airquality.portsmouth.gov.uk": [21175], "openmailbox.org": [12152], "www.synthetix.info": [15997], "lapa.xyz": [2053], "s98.cnzz.com": [3391], "*.maxroam.com": [9883], "www.madboa.com": [10003], "*.moderngiver.com": [10708], "go.linuxfoundation.org": [9572], "www36.verizon.com": [17918], "on.elle.de": [2053], "ghandi.wtf.im": [2053], "fbkoralky.cz": [2053], "fortresslinux.org": [6176], "cdn-1.sundul.us": [2053], "mrsteve.me": [2053], "itstools.ornl.gov": [11892], "www.smarthead.ru": [21480], "email.ixwebhosting.com": [8027], "cutpa.st": [2053], "edx.org": [5171], "rdst.mp": [2053], "secure.exonet.nl": [20078], "tbr.rocks": [2053], "community.amd.com": [962], "ibxa.net": [2053], "tcn.fff.co.nz": [2053], "www.vehicular.isy.liu.se": [9238], "shop.sneakerfreaker.com": [21491], "shuddle.us": [14995], "url.oasistv.com": [2053], "api.yr.no": [22120], "*.bundestag.de": [4494], "dicon.io": [2053], "repmedia.tv": [2053], "charter.com": [3079], "www.cybergolf.com": [4043], "s.epoint.es": [2053], "liqd.tv": [2053], "statinfo.ksh.hu": [8903], "www.philadelphiabar.org": [12833], "fffun.net": [2053], "s4.test.ft-static.com": [20182], "on.nyc.gov": [2053], "link.wine": [2053], "milliways.cryptomilk.org": [3949], "www.f35.com": [5655], "coorisd.illuminateed.com": [20430], "glljobs.org": [20252], "r1.zemanta.com": [19128], "www.educationnext.org": [5196], "www.aktivix.org": [810], "www.debenhams.com": [19884], "www.supermedia.com": [15870], "w1.sndcdn.com": [15278], "ibmmobile.info": [2053], "www.thomsonreuters.com.ar": [21729], "socialcube.net": [15320], "www.ziggo.nl": [19179], "hirlevel.aldi.hu": [338], "my.usda.gov": [17495], "afhi.us": [2053], "www.auphonic.com": [1407], "blog.gnupg.org": [6886], "url.albj.net": [2053], "www.washingtonpostmedia.com": [18286], "r.creema.jp": [2053], "overflow.bufferapp.com": [2459], "www.ssl.gostats.com": [6910], "www.imh.liu.se": [9238], "6box-channel.co": [2053], "education.getsatisfaction.com": [6738], "*.u-tokyo.ac.jp": [17197], "www.samltool.com": [21365], "hits.epochstats.com": [5429], "es.stock.walmart.com": [18260], "professionalprivacypolicy.com": [6838], "omarm.cu.cc": [2053], "docs.blesta.com": [2123], "getdigital.co.uk": [6693], "*.umass.edu": [17551], "okz.ro": [2053], "hpi.de": [7225], "dashboard.tawk.to": [16233], "namespace.us": [11211], "tomlee.wtf": [16813], "www.8joycasino.com": [20552], "gidforums.com": [6449], "community.secondlife.com": [14706], "rocketmail.com": [18942], "securema.ikea.com": [8108], "edsu.me": [2053], "my.m3xs.net": [9864], "dgit.in": [2053], "miniatur-wunderland.de": [10611], "a.dyndns.com": [4918], "fph.nz": [2053], "thepirateboat.eu": [21709], "www.exploit.in": [5618], "novosibirsk.rt.ru": [13703], "*.nationbuilder.com": [11232], "link.useed.org": [2053], "*.360yield.com": [134], "www.holoscripter.org": [7603], "voxmedia.com": [18147, 21953], "www.thp.io": [16657], "u2rl.com": [2053], "www.pas.org.my": [12557], "webauth1.slac.stanford.edu": [15635], "www.ofono.org": [20975], "www.taxactonline.com": [16234], "ga.kijk.nl": [2053], "www.tescophoto.com": [16401], "curetheitch.com": [4000], "sops.news.com.au": [11530], "viz.li": [2053], "go.crossline.io": [2053], "www1.handelsbanken.fi": [7317], "wiki.netbsd.org": [11375], "developers.elsevier.com": [5287], "aftonbladet.se": [754], "r.rcogm.dk": [2053], "b6.chaucanh.net": [2053], "stats.salford.gov.uk": [21362], "apperdeck.com": [7606], "calendar.mit.edu": [9914], "instapanel.com": [8338], "thefund.stanford.edu": [15635], "thescpn.org": [2053], "teardowniq.com": [16262], "nesoya.link": [2053], "opentechfund.org": [12181], "msg.telus.com": [16364], "elan.plexapp.com": [13037], "www.fightaging.org": [5900], "dmn.hm": [2053], "ecdn.liveclicker.net": [9666], "ru.cryptonator.com": [3952], "2checkout.com": [100], "mscgen.js.org": [20555], "luxomo.com": [9841], "mcitizen.com": [10032], "www.simmtester.com": [15059], "www.planet-lab.org": [12982], "sait.usc.edu": [17564], "outlet.lenovo.com": [9409], "ngvpn03.nvidia.com": [11174], "cdn.iqcontentplatform.de": [7955], "www.meanstinks.com": [10299], "static-cdn.jtvnw.net": [17164], "teachingcenter.wustl.edu": [18290], "www.avicoder.me": [19464], "kayak.com": [8976], "bloggeek.me": [2154], "civ.moveon.org": [10819], "roundup.kolab.org": [9110], "xianning.jd.com": [8571], "m.games.mail.ru": [10040], "www.swisspost.ch": [13176], "ausd.illuminateed.com": [20430], "warners.gr": [2053], "identityworkshop.eu": [8088], "treealert.forestry.gov.uk": [20144], "*.www.erowid.org": [5455], "innoc02.at": [2053], "webmail.sydney.edu.au": [21631], "coinkite.com": [3469], "wksp.guru": [2053], "his.com": [7432], "f.ooty.pl": [2053], "vnjc.co": [2053], "via.ihin.es": [2053], "*.ew.com": [5399], "jon.re": [2053], "researchnews.osu.edu": [11959], "tuleap.net": [17097], "s.jdg.net": [2053], "*.ussco.com": [17504], "nimenhuuto.com": [11603], "checkrepair.apple.com": [1160], "support.mariadb.com": [10151], "neiyi.taobao.com": [16206], "10.dbstatic.no": [19866], "rat.rakuten.co.jp": [13768], "blog.kaspersky.ru": [8959], "www.shopspring.com": [21432], "img.a4apphack.com": [261], "web-ast.dsi.cnrs.fr": [6314], "status.freed0m4all.net": [6281], "schoolapplications.kirklees.gov.uk": [9067], "c.jimophoto.com": [2053], "lhc.web.cern.ch": [2632], "nwblink.co": [2053], "www.adbusters.org": [605], "host1.jabbi.pl": [8627], "bizx.me": [2053], "t-t.site": [2053], "target.nci.nih.gov": [11241], "shop.heise.de": [7428], "forensics.sans.org": [14310], "feral.io": [5866], "fffinds.co": [2053], "git.spatialbuzz.com": [15479], "www.joycasino14.com": [20552], "void.nyc": [2053], "www.wdr5.de": [18312], "yx.3.cn": [121], "expeditedssl.com": [5614], "psiquiatra.tk": [2053], "to.nfood.mx": [2053], "jennife.red": [2053], "snel.com": [15280], "on.torelay.org": [2053], "*.argos.ie": [1224], "hamburg.de": [7312], "ocls.co": [2053], "ems.meituan.com": [10405], "blocklist.rkn.gov.ru": [14146], "penge.ms": [2053], "covisint.com": [3805], "interactive.stockport.gov.uk": [21578], "schooladmissions.cheshirewestandchester.gov.uk": [19700], "widget.criteo.com": [3872], "www.staempfliverlag.com": [21561], "www.dtcc.edu": [4400], "media-hearth.cursecdn.com": [4006], "a1.websitealive.com": [18445], "libreoffice.org": [9471], "aishelp.wustl.edu": [18290], "ymstat.com": [18925], "ubmaviationnews.com": [17204], "online.mirea.ru": [20805], "*.medscape.com": [10369], "*.gu.se": [6513], "fst.pw": [2053], "hyx.95516.com": [240], "mail.northumberland.gov.uk": [20929], "i.modrykonik.sk": [2053], "lists.ocamlcore.org": [11812], "luv.ba": [2053], "insurancetech.com": [17204], "broadland.objective.co.uk": [20979], "arb.im": [2053], "www.oeffentliche.de": [11929], "*.epi.org": [5160], "eprotocol.stanford.edu": [15635], "webmail.osu.edu": [11959], "prv.se": [12494], "x.edb.so": [2053], "www.shop.skanetrafiken.se": [15143], "extranet.dft.gov.uk": [19908], "www.centreforeffectivealtruism.org": [3017], "evrvlt.co": [2053], "sn.badaudio.de": [2053], "buddyver.se": [2053], "nz.pcpartpicker.com": [12709], "dok.ut.ee": [17347], "retirees.www.uprr.com": [21870], "rightscentral.copyright.com": [3725], "rwe.de": [21349], "hmrs.in": [2053], "*.wush.net": [18785], "calyxinstitute.org": [2818], "uwkb.ca": [2053], "kraft.us": [2053], "mediproviders.anthem.com": [19395], "widget.plugrush.com": [13046], "25live.collegenet.com": [3491], "cdn-d-img.pornhub.com": [13153], "ashford.com": [1287], "astronomy.fas.harvard.edu": [7351], "*.renttherunway.com": [14007], "boxun.com": [19581], "download.guardian.co.uk": [7128], "virtualnewscenter.com": [18044], "secure.boxwoodtech.com": [2314], "d-fw.co": [2053], "www.hellholecheesefactory.org": [7431], "hs.meituan.com": [10405], "www.city.com.ua": [3245], "www.searscommerceservices.com": [14689], "langton.blue": [2053], "go.nwab.de": [2053], "my.taobao.com": [16206], "andiaut.com": [2053], "shwyz.ca": [15001], "tsabd.com": [2053], "digboston.com": [4549], "m.posteo.de": [13195], "thejainman.com": [2053], "www.ethos-os.org": [5490], "abo.freitag.de": [6313], "sprwb.pro": [2053], "admin.groupcommerce.com": [7094], "sociomantic.com": [15329], "iamtim.co": [2053], "www.mybank.cn": [20861], "*.gannett.com": [6571], "livecoding.tv": [9667], "mwl.me": [2053], "blog.hartwork.org": [7349], "www.nohats.ca": [11637], "ocg.tech": [2053], "heaithtips.com": [2053], "lesa.in": [2053], "spacelaunchreport.com": [15460], "roitw.it": [2053], "broadcaster.email-tickets.com": [16694], "iwebthin.gs": [2053], "vectormediagroup.com": [17879], "ngov.us": [2053], "sitemasonmail.com": [15128], "www.whatimg.com": [18531], "bolton.libraryebooks.co.uk": [20677], "www.vereinigte-ikk.de": [17911], "hiring.cs.stonybrook.edu": [15736], "dotplex.de": [4798], "blogs.uned.es": [17446], "akamaicovers.oreilly.com": [11859], "open.taobao.com": [16206], "kamila.mysql.cesky-hosting.cz": [19680], "in.aue.ae": [2053], "vmware.com": [17786], "www5.informe.org": [8265], "nucci.co": [2053], "www.spcala.com": [14391], "cnstrc.tv": [2053], "en-tr.dict.cc": [4536], "earthcam.net": [19988], "chenpi.jd.com": [8571], "www.egopay.com": [5215], "www.bytenoc.nl": [2549], "clvry.us": [2053], "ui.bingads.microsoft.com": [10543], "hipaa.stanford.edu": [15635], "arrr.xyz": [21709], "bd.abuledu.org": [19258], "portal.leeds.ac.uk": [17604], "haiti.usembassy.gov": [21879], "www.proultratrim.com": [13345], "ryanin.nz": [2053], "t35.com": [16033], "go.cardback.in": [2053], "www.office.com": [11942], "makhachkala.beeline.ru": [1801], "ru.verbling.com": [17907], "phoronix.com": [12849], "dyg.nu": [2053], "abc7ne.ws": [2053], "*.zulius.com": [19240], "to.sfox.com": [2053], "*.console.mxlogic.com": [10279], "videoconfserver.ulpgc.es": [17411], "pasha.bz": [2053], "manage.zeringo.com": [19151], "a.wiiare.in": [2053], "mindythe.li": [2053], "btp.police.uk": [2440], "dccomics.com": [4089], "www.law.umich.edu": [17552], "rogr.org": [2053], "www.ubuntu.org.cn": [17372], "rsshog.com": [14241], "comni.co": [2053], "htbiz.co": [2053], "fastly.us": [2053], "meso.osu.edu": [11959], "aex.ae": [2053], "www.gmoregistry.com": [6463], "tnin.es": [2053], "jabber.org.uk": [8623], "www.cryptomator.org": [3947], "young-pirates.eu": [19023], "pcmall.websitealive.com": [18445], "w.egyutt2014.hu": [2053], "ferien.immobilienscout24.de": [8153], "umftgm.ro": [21848], "strypt.me": [2053], "demo.cachethq.io": [2768], "secure.codeforamerica.org": [3419], "www.copyleft.org": [3723], "arewecompressedyet.com": [1216], "omnigroup.com": [11992], "mechbunny.com": [10301], "gotoi.so": [2053], "blog.haschek.at": [7355], "www.ballotmeasuredomains.com": [1676], "suntimes.com": [15850], "www.ecatering.irctc.co.in": [7957], "b.osteen.co": [2053], "dmnsgnls.link": [2053], "bill.st": [2053], "www.proteansec.com": [13392], "gutmann.link": [2053], "my.sohoby.com": [2053], "gedr.im": [2053], "www.journalism.co.uk": [8796], "www.tesla.com": [21680], "giant.ms": [2053], "services.mobile.hsbc.com": [7233], "vimention.mobi": [18009], "www.mitre.org": [10649], "ez.xdaya.com": [2053], "securelb.imodules.com": [7909], "iptorrents.com": [7945], "s.ietty.me": [2053], "gnee.us": [2053], "hmp.ac": [2053], "cesiumjs.org": [3033], "terminatio.org": [16384], "h5.taobao.com": [16206], "*.advertise.com": [698], "get.sfumc.info": [2053], "si.cdn.dell.com": [4413], "virtualboximages.com": [18040], "revselfservegg.eastlothian.gov.uk": [5114], "itswbd.org": [2053], "img.metaboli.fr": [10480], "mindshap.es": [2053], "irsh.us": [2053], "doubleclickbygoogle.com": [4803], "ubuntuforums.org": [17384], "eap.cms.gov": [19742], "www.uv.uio.no": [17615], "bogi.uk": [2053], "notalwaysfriendly.com": [20931], "netroots.me": [2053], "status.uillinois.edu": [17238], "shop.vcd.org": [17766], "picker.mit.edu": [9916], "doers.build": [2053], "www.onebitbug.me": [12054], "pdf-online.com": [21097], "r-oo.me": [2053], "www.linux42.org": [21006], "www.heise.de": [7428], "itek.di.dk": [3631], "www.etracker.de": [5495], "smar.sh": [2053], "eagl.me": [2053], "aws.passkey.com": [12640], "www.gartner.com": [6580], "snkrjg.rs": [2053], "guatemala.engineering.osu.edu": [11959], "www.lavaboom.com": [9327], "library.uvm.edu": [17353], "*.garmin.com": [20202], "volgogradskaya-obl.beeline.ru": [1801], "docs.ansible.com": [1097], "img3.glassdoor.co.in": [20247], "www.hertzequipmentsales.com": [7511], "memberportal.communitycares.com": [19762], "online.billdesk.com": [1930], "lcsun.co": [2053], "www.matthewsmarking.com": [10248], "www.blankonlinux.or.id": [19555], "l.bchgrp.co": [2053], "neomailbox.*": [11346], "3ws.me": [2053], "liveperson.hosted.jivesoftware.com": [9655], "www.getclef.com": [6710], "api.stripe.com": [15781], "netlib.re": [11387], "s64.cnzz.com": [3391], "at.wftv.com": [2053], "inh.im": [2053], "butterflynetinc.com": [2522], "scasera.com": [2053], "www.myaccount.earthlink.net": [5106], "begun.ru": [1808], "valio.ly": [2053], "www.openstreetmap.org": [12177], "abc13.co": [2053], "www.chs.us": [3186], "yakutsk.beeline.ru": [1801], "foll.ws": [2053], "maitai.me": [2053], "triplebyte.com": [17022], "www.wildplanetphotomagazine.com": [18601], "a4r.info": [2053], "ff.hrw.org": [7756], "r.casalemedia.com": [2929], "ssl-product-images.www8-hp.com": [7517], "www.ouvaton.coop": [12360], "sa.zenmate.com": [19133], "www.etipos.sk": [5492], "mg1.co": [2053], "forums.playfire.com": [13025], "police.uic.edu": [17517], "secure.hrw.org": [7756], "sso.dell.com": [4413], "sourcecoast.com": [15419], "naza.be": [2053], "zenimaxonline.com": [19144], "www.plugrush.com": [13046], "git.jcrosoft.com": [8569], "campus.oracle.com": [12284], "wuft.it": [2053], "ut02.xhcdn.com": [18815], "people.inf.ethz.ch": [5074], "www.flyertalk.com": [6079], "t-w-h.be": [2053], "secure.phabricator.com": [12826], "hideh.co": [2053], "f.curbed.cc": [3996], "www.huobi.com": [7769], "dsar.me": [2053], "mellanox.com": [10413], "go.kirv.es": [2053], "fp.advertising.microsoft.com": [10543], "huangshan.meituan.com": [10405], "habracdn.net": [7261], "lvsm.pl": [2053], "gfmtrader.com": [6442], "wine.social": [2053], "fickdat.es": [2053], "designer.shoebuy.com": [14959], "corporateblog.progress.com": [13360], "tae.st": [2053], "www.litebit.eu": [9616], "my.swiss.com": [15948], "pilot.ix.equinix.com": [5438], "friaspin.se": [2053], "m.gamefly.com": [6537], "dotaznik.vutbr.cz": [17814], "www.unbubble.eu": [21849], "helpdesk.canadianwebhosting.com": [2854], "wmcurt.is": [2053], "support.websupport.sk": [18456], "delphiau.to": [2053], "bluemanticketing.com": [2194], "go.rvrs.in": [2053], "b3st-4u.ml": [2053], "www.dps.uiuc.edu": [17234], "imagepics.co": [2053], "www.gruene.de": [890], "www.addictionhelpchat.com": [615], "l.bozza.mobi": [2053], "www.cmdev.com": [2687], "meilenrechner.de": [10581], "go.snhusga.org": [2053], "ibank.privatbanka.sk": [13323], "fwd.tf": [2053], "kontaktinfo-ws-ver1.difi.no": [4547], "phantompeer.com": [12827], "qianbao.qukuai.com": [13549], "ifpa.ie": [7871], "dupr.ee": [2053], "cust.fr": [2053], "tfa.link": [2053], "cpath.it": [2053], "giac.org": [6447], "palmira.squat.net": [21549], "cmog.co": [2053], "www.iso.cuhk.edu.hk": [2747], "novel.udn.com": [17224], "breider.net": [2053], "orbit.shazamid.com": [14935], "to.arvindsa.com": [2053], "quiz.bz": [2053], "ar.ch": [21629], "c.eblastengine.com": [4976], "l.fcjr.co": [2053], "playingwithtime.sbb.ch": [15946], "qip.ru": [13512], "www.popcash.net": [13132], "in.support.tomtom.com": [16812], "www.poormanmotorsports.com": [13127], "www.fime.me": [5688], "ms.3.boardgamearena.com": [2219], "hanshan.meituan.com": [10405], "*.getpocketbook.com": [13060], "book.homeaway.com": [20352], "www.ncric.org": [11074], "www.mariadb.org": [10152], "thepirateproxy.website": [21709], "www.salixos.org": [21363], "stfrancisuniversity.worldcat.org": [18748], "mv.itmahal.com": [2053], "bgap.co": [2053], "www.garyjohnson2012.com": [6581], "pol.fronter.com": [20179], "b90.yahoo.co.jp": [18944], "support.intand.com": [16195], "ianthehenry.com": [8041], "api.sofort.com": [15338], "vatten.lamna.nu": [2053], "go.sirac.us": [2053], "on.wisports.com": [2053], "s.outw.me": [2053], "contact.familysearch.org": [5760], "docs.salixos.org": [21363], "aisle.to": [2053], "dvs.ninja": [2053], "sports-images.vice.com": [17959], "www.newmatilda.com": [11481], "www.aviris.nkl.fi": [1490], "spendmanagement.barclaycard.co.uk": [1712], "dl.laser2000.de": [2053], "iiaa.it": [2053], "www2.tutti.ch": [21818], "letm.be": [2053], "letsjump.uk": [2053], "www.bfriars.ox.ac.uk": [17557], "*.deusm.com": [4485], "www.vocaroo.com": [18103], "vestacp.com": [17945], "go.cgrs.tk": [2053], "manitu.de": [10120], "www.secure.pangaea.de": [12412], "pressroom.rolex.com": [14187], "voicestar.com": [10148], "www.just-eat.ie": [20565], "icnd.co": [2053], "habervision.com": [7257], "clippercard.com": [19731], "www.webonic.hu": [18432], "filecloud.io": [5913], "social.cerjo.ch": [2053], "www.edinburgh.gov.uk": [5185], "chaoan.meituan.com": [10405], "www.visual-paradigm.com": [18075], "inductionsolutions.com": [8223, 8224], "sites.krieger.jhu.edu": [16562], "*.wowanalytics.co.uk": [18213], "insta.savji.com": [2053], "stproxy.lsbu.ac.uk": [9252], "qzcom.es": [2053], "secure.istockphoto.com": [20505], "www.americanrifleman.org": [19382], "bahn.de": [1660], "*.pirateparty.ch": [12487], "tmcnet.com": [16788], "a.blujamz.com": [2053], "s106.cnzz.com": [3391], "comodogroup.com": [3569], "x40.us": [2053], "www.fco.gov.uk": [5671], "beta.umeng.com": [21847], "crashplan.com": [3833], "linan.meituan.com": [10405], "data.birmingham.gov.uk": [19536], "windowsitpro.com": [18645], "fnet.us": [2053], "l.jayagonoy.xyz": [2053], "spblog.co.uk": [2053], "dangshan.meituan.com": [10405], "forum.siedler25.org": [14065], "shrmp.it": [2053], "napa.la": [2053], "capitalcampaign.kcrw.com": [20583], "u.acehpo.com": [2053], "www.ligatus.fr": [9502], "holidaybreak.co.uk": [7597], "m.kamshe.com": [2053], "reports.boldchat.com": [2240], "shellmix.com": [14398], "world-airport-codes.com": [22051], "box.osu.edu": [11959], "www.mmoculture.com": [9931], "status.digitalocean.com": [4578], "libraries.lambeth.gov.uk": [20631], "cre8.li": [2053], "zopixa.info": [2053], "garfield.com": [6577], "blu.gl": [2053], "assyrian.church": [2053], "thepiratebay.unblockerproxy.xyz": [21217], "www.architektur.uni-kl.de": [17454], "dunhua.meituan.com": [10405], "www.unlocator.com": [21859], "music-cache.xbox.com": [18850], "www.rackspace.co.za": [13734], "theforeman.org": [21699], "tracking.m6r.eu": [9866], "adblockplus.org": [601], "tcrl.osu.edu": [11959], "www.jobsite.com": [8750], "tbr.mx": [2053], "messages.yale.edu": [18946], "amp.twimg.com": [17153], "scu.ba": [2053], "blog.local.ch": [9697], "blogs.nasa.gov": [11058], "s.animemusic.me": [2053], "i.saigonit.com": [2053], "peertransfer.com": [12730], "prpwz.com": [2053], "seoz.eu": [2053], "lists.posteo.de": [13195], "s2.lemde.fr": [9402], "www.organicconsumers.org": [12306], "effectivemeasure.net": [5208], "www.androidpolice.com": [1046], "piratebox.top": [21217], "image2.ceneo.pl": [2997], "www.imagelayers.io": [20433], "skytal.es": [21473], "dcpower.eu": [4090], "trbl.link": [2053], "epx.me.uk": [2053], "mymail.preston.gov.uk": [21196], "www.loctudy.fr": [9708], "addtoyourlife.wales.nhs.uk": [11102], "www.springerzahnmedizin.de": [15562], "pdflabs.com": [12439], "l.mitcholson.nz": [2053], "familie.nordwest.aok.de": [357], "typtest.tivi.de": [22127], "buzzfed.com": [2531], "www.proxybay.la": [16493], "gnl.me": [2053], "ar15.com": [377], "mail.whitelisbon.com": [18551], "sc.lcsd.gov.hk": [7211], "h.tagsoku.jp": [2053], "virtual-server.org": [18038], "www.b3.manchester.gov.uk": [10107], "caltech-imss-website-v3-storage.s3.amazonaws.com": [2815], "mdtm.pl": [2053], "secure.hostcentric.com": [7653], "octopoos.com": [11914], "on.kmbc.com": [2053], "lloydsbank.com": [9686], "www.entrust.com": [5405], "s1-news.yamedia.tw": [18948], "kmza.co": [2053], "cdn.v2ex.co": [17755], "j.kir.by": [2053], "*.zendesk.com": [19139], "store.2k.com": [103], "st.yell.com": [22096], "www.monkeybrains.net": [10746], "dnsquery.org": [4138], "alxh.ws": [2053], "ly2.me": [2053], "witb.io": [2053], "*.french-country-cottages.co.uk": [18790], "www.arkos.io": [1233], "buyiphone1.apple.com": [1160], "bfy.red": [2053], "www.mpfund.uk": [20840], "hd3.me": [2053], "sapsports.com": [2053], "orens.es": [2053], "wrc.link": [2053], "asset-e.soup.io": [15415], "*.guitarcenter.com": [7143], "*.secure-zone.net": [14731], "ericly.co.uk": [2053], "cdn.42floors.com": [170], "www.canon.ba": [2868], "blog.fir.im": [20123], "trv4.ml": [2053], "help.hover.com": [7712], "rungo.idnes.cz": [20425], "opensource.samsung.com": [14501], "stack.st": [2053], "cambridgeshire.gov.uk": [19632], "dearbyt.es": [2053], "www.fablabtacoma.com": [5727], "umbr3.cabinetoffice.gov.uk": [2760], "www.one-tab.com": [12026], "www.deutscher-radiopreis.de": [4493], "*.dt07.net": [9906], "fmnews.co": [2053], "alumniconnections.com": [937], "w.catster.com": [2053], "pkg.hardenedbsd.org": [7336], "www.inlinkz.com": [8181], "my.lsu.edu": [9785], "www.tunnelbroker.com": [17109], "megafon.bfm.ru": [19524], "whispercast.amazon.com": [952], "status.onfleet.com": [12058], "cixian.meituan.com": [10405], "www.clergyproject.org": [3294], "jeffs.info": [2053], "zmd.meituan.com": [10405], "dashboard.resin.io": [14040], "enf.mx": [2053], "thinkupthemes.com": [21723], "trustedmessenger.com": [17063], "holts.io": [2053], "manage.serverpilot.io": [14852], "lawrd.co": [2053], "famvin.net.pl": [2053], "gctrl.co": [2053], "www.notalwaysright.com": [20931], "camt.me": [2053], "merton.greenparty.org.uk": [7052], "mopub.co": [2053], "mail.azet.sk": [1520], "blogs.mail.ru": [10040], "nixon.news": [2053], "sqan.it": [2053], "www.coca-cola.ru": [19745], "klinika.zdravie.sk": [9085], "scontent-a.igcdn.com": [8099], "lewisham.gov.uk": [20671], "www.logmein.com": [9711], "go.klab.ca": [2053], "primility.us": [2053], "www.fir.im": [20123], "imagefilter.app.compendium.com": [3580], "www.esr.org": [5108], "cea.tips": [2053], "sport.news.am": [20900], "www.easports.com": [4967], "desktop-client.fitbit.com": [6002], "resources.guild-hosting.net": [5379], "xiangxiang.meituan.com": [10405], "pacbsd.org": [12511], "lithium.com": [9630], "mirr.im": [2053], "life.panorama.am": [21069], "n.pavkovic.com": [2053], "dl.sincx.x10.mx": [2053], "www.livecoding.tv": [9667], "e.asset.soup.io": [15415], "pxml.ly": [2053], "ww.dogster.com": [2053], "ismart.engineering.osu.edu": [11959], "kryo.se": [9168], "kar.ly": [2053], "mfcde.es": [2053], "forums.bakabt.me": [1665], "admin.ccbill.com": [2592], "www.davidwalsh.name": [19863], "static.iptorrents.com": [7945], "getbein.us": [2053], "interstices.info": [8444], "azt.allianz.com": [19351], "www.webdevstudios.com": [18357], "vladimir.beeline.ru": [1801], "www.active24.cat": [19273], "adguard.com": [19291], "blog.zenmate.com": [19133], "www.redding.com": [5088], "homesvc.co": [2053], "img09.rl0.ru": [14147], "j.mkg.nz": [2053], "eng.yammer.com": [18952], "www.shiftpayments.com": [14948], "abu.se.com": [2053], "go.a-gbr.de": [2053], "www.annonce.cz": [1072], "dellupdater.dell.com": [4413], "devnull.link": [2053], "*.gpshopper.com": [6490], "shop.t-mobile.nl": [16025], "rcd.link": [2053], "www2.citymapper.com": [3252], "cdn.vni.la": [17851], "www.dnssec-validator.cz": [4140], "direc.ga": [2053], "www.shortlist.com": [14979], "sslcert19.com": [15598], "oshkosh.com": [12324], "aiocypr.us": [2053], "m.plan9.uk": [2053], "thcuis.in": [2053], "mkhl.me": [2053], "cloudfront.omgubuntu.co.uk": [11832], "rarma.us": [2053], "ticket-it.courierpost.co.nz": [3784], "rjnews.is": [2053], "aadv.co": [2053], "www.questacon.edu.au": [13583], "jhnb.me": [2053], "retina.news.mail.ru": [10040], "williamsjm.us": [2053], "osm.one": [2053], "www.premiertaxfree.com": [13253], "nisd.co": [2053], "www.brsmblog.com": [1583], "wire.com": [18661], "techdirt.com": [16281], "remusexhauststore.com": [13998], "touf.co": [2053], "sebastian.mysql.cesky-hosting.cz": [19680], "at.renesakl.com": [2053], "esri.ie": [5064], "widgets.itunes.apple.com": [1160], "clairejd.me": [2053], "forums.netiq.com": [11386], "llor.ch": [2053], "pic.cnblogs.com": [19743], "mlhs.co": [2053], "rit.edu": [13667], "valuehost.ru": [17836], "cdn-dbapp.netdna-ssl.com": [4185], "siamogeek.com": [21441], "meter.cern.ch": [2632], "my.thinkmoney.co.uk": [21722], "ov.kurier.at": [9194], "oncampus.harvard.edu": [7351], "dms.ski": [2053], "www.sourcesoftdownload.com": [15432], "3cmls.co": [2053], "secure.heide-park.de": [7421], "k4gdw.us": [2053], "forum.nasaspaceflight.com": [11059], "aspt.co": [2053], "wacha.lol": [2053], "nodejitsu.com": [11647], "japan.norton.com": [11703], "mxtoolbox.com": [9977], "nish.co": [2053], "mailpile.is": [10056], "devchannel.modern.ie": [10706], "cfs.canon.com": [2868], "www.optify.net": [12269], "www.openpgpkey.info": [12238], "img2.linuxdeepin.com": [4380], "srt.cre8r.info": [2053], "tpb.unlockme.bid": [21771], "longform.org": [9755], "www.dcsec.uni-hannover.de": [17453], "feistyduck.com": [5859], "thedailyedge.thejournal.ie": [16490], "twtp.gs": [2053], "consumidor.ftc.gov": [5837], "cdn.dwolla.com": [4913], "l.ria.cc": [2053], "pettyrevenge.co": [2053], "sbbank.dengisend.ru": [4440], "ntia.doc.gov": [17336], "romin.co.uk": [2053], "*.wolfire.com": [18696], "lizearle.co": [2053], "www.tellapart.com": [21676], "varnish-software.com": [17862], "sl.dcssk12.org": [2053], "automatak.net": [1463], "mentor.ieee.org": [7860], "stmx.info": [2053], "rayssaeluis.tk": [2053], "boxtr.co": [2053], "bdvr.cz": [2053], "consultation.staffordshire.gov.uk": [15622], "www.dbackpolice.com": [4315], "shop.coed.com": [3449], "www.itradecimb.com.my": [2663], "*.abiliba.net": [457], "crm.caat.org.uk": [19625], "theaud.us": [2053], "goeric.ca": [2053], "statfa.me": [2053], "install.pi-hole.net": [21121], "www.rbt.asia": [13826], "vdp.mycdn.me": [11014], "static2.meetupstatic.com": [10386], "www.linksunten.indymedia.org": [8234], "elsteronline.de": [5290], "api.adsymptotic.com": [19304], "www.mechbunny.com": [10301], "bgat.es": [2053], "www.classzone.com": [3276], "liyang.meituan.com": [10405], "qbgam.in": [2053], "login-p2.constantcontact.com": [3657], "www.codethink.co.uk": [3443], "www.mvg-mobil.de": [9971], "virtualspirits.com": [18045], "blog.sigfig.com": [15019], "www.eroshare.com": [5454], "cloudtools.access.iu.edu": [8214], "aker.io": [2053], "fpx.lc": [2053], "yelp.no": [18979], "www.fbm.htwk-leipzig.de": [7736], "docs.cs.cf.ac.uk": [2894], "trustifier.com": [17070], "www.rugshd.com": [14265], "dusty.st": [2053], "jonnyi.co.uk": [2053], "cusp.com": [16106], "briteobjects.com": [2392], "mitpressjournals.org": [9917], "therealtalk.org": [16499], "kygop.co": [2053], "proxy.xelerance.com": [18855], "www.jsao.io": [8608], "blog.flirble.org": [16456], "www.citrix.com": [3237], "mysociety.co.uk": [10975], "forum.transmissionbt.com": [16951], "danthold.co": [2053], "rs.andrea.com": [2053], "blogmaverick.com": [18730], "hfho.me": [2053], "girlscouts.org": [6786], "cndg.tl": [2053], "vinothek.hofer.at": [338], "mattos.us": [2053], "afps1.info": [2053], "www.clickdelivery.gr": [3317], "qstack.com": [13519], "lexer.link": [2053], "jottit.com": [8788], "mp.weixin.qq.com": [13514], "magnop.us": [2053], "j3.hitravel.xyz": [2053], "www.kampyle.com": [8930], "*.binefreund.de": [6053], "m.total.fark.com": [5776], "portal.erp.ohio-state.edu": [11960], "osteen.co": [2053], "mail.o2active.cz": [16332], "walderwyss.com": [18251], "www.dealerrater.com": [4336], "0range.us": [2053], "rhul.ac.uk": [13656], "hs.ias.edu": [7815], "changemakers.com": [3055], "twoseventy.net": [17176], "jobsp.swisscom.com": [15951], "cdn.vedomosti.ru": [21900], "yidu.meituan.com": [10405], "oumedicine.staywellsolutionsonline.com": [12345], "sync.audtd.com": [1400], "p.fr33tux.org": [6209], "www.vulnscan.org": [18168], "sbarber.me": [2053], "sandiegostate.worldcat.org": [18748], "pau.by": [2053], "basespace.illumina.com": [8117], "crew.cm": [2053], "crew.co": [3864], "cdn.jariangibson.com": [8669], "jptips.co": [2053], "blog.pop.watch": [2053], "www.kubieziel.de": [9179], "*.ria.ua": [13659], "policies.ncsu.edu": [11690], "community.wareable.com": [21973], "oppo.com": [12262], "tndc.co": [2053], "consultation.richmond.gov.uk": [21307], "internet.org": [8426], "hart.ac": [2053], "www.tradelab.fr": [16916], "gopride.us": [2053], "mlog.dianping.com": [19913], "www.assetinsightinc.com": [1317], "www.gmocloud.com": [6460], "resolv.org": [13648], "jpta.co": [2053], "games.web.de": [18347], "spws.co": [2053], "itools.link": [2053], "developers.braintreepayments.com": [2327], "www.izquierda-unida.es": [8554], "airport-store.engineering.osu.edu": [11959], "znk.co": [2053], "complianceoffice.wustl.edu": [18290], "sengevenner.com": [2053], "expose.ly": [2053], "bskt.eu": [2053], "www.posterstoreuk.com": [13196], "narro.mozest.com": [10838], "*.piwik.prisma-it.com": [13302], "gigadesign.cz": [14834], "bradv.us": [2053], "mslpainsolu.com": [2053], "b2g.co": [2053], "enis.dict.cc": [4536], "allcoin.com": [868], "bitcoi.net": [2053], "www.onlineregister.com": [12065], "bdale.co": [2053], "*.newsandevents.buffalostate.edu": [2458], "aonc.co": [2053], "l.rgauss.com": [2053], "book.gohhh.com": [2053], "s.bdarfler.com": [2053], "alt-a.es": [2053], "devitre.co": [2053], "www.mojeid.cz": [10723], "acunetix.com": [546], "x.mat.cc": [2053], "cheerm.ag": [2053], "nwsl.us": [2053], "studios.amazon.com": [952], "vg247.com": [21916], "*.musiciansfriend.com": [10906], "luv.asn.au": [9264], "www.eforensicsmag.com": [5011], "cs.illinois.edu": [17544], "elstcp.at": [2053], "static.issuu.com": [8526], "*.r.worldssl.net": [2614], "cam.freetalklive.com": [20171], "khanty-mansiysk.beeline.ru": [1801], "vsbl.io": [2053], "www.bitx.co": [2000], "gimlet.media": [2053], "fxprime.com": [5723], "*.vaforvets.va.gov": [17297], "fitebac.co": [2053], "stage.nortoncdn.com": [11703], "developerbugs.linuxfoundation.org": [9572], "puur.li": [2053], "libgam.es": [2053], "fenj.eu": [2053], "cdn.zamimg.com": [19095], "s.arinco.org": [2053], "support.recurly.com": [13887], "bt.mdiemer.com": [2053], "frservicing.capitalone.com": [2878], "snkrne.ws": [2053], "merchant.livingsocial.com": [9679], "chat1.ap.dell.com": [4413], "effectivemeasure.com": [5207], "ethical.tips": [2053], "help.axosoft.com": [1517], "bookings.preston.gov.uk": [21196], "playbonds.link": [2053], "gnuheter.org": [6889], "avatars1.githubusercontent.com": [6801], "soubrette.decadent.org.uk": [4358], "www.accessnow.org": [485], "neo.to": [2053], "nimb.li": [2053], "yng.sh": [2053], "e3.boxcdn.net": [2306], "aruru.link": [2053], "s.zvin.is": [2053], "coupaw.us": [2053], "clif.fr": [2053], "blog.gov.uk": [6483], "openrce.org": [12164], "sslimgs.xkcd.com": [22085], "urbc.de": [2053], "prsh.ir": [2053], "www.hass.de": [7364], "tyt.my": [2053], "dev.irc.lc": [20494], "japan.usembassy.gov": [21879], "nieuwe.mobi": [2053], "render.groupon-content.net": [14806], "ns.meituan.com": [10405], "downloads.dell.com": [4413], "a.masbr.com": [2053], "driving.co.uk": [19962], "teetimes.buzz": [2053], "napoleonmakeupacademy.com.au": [11225], "i2.walmartimages.com": [18261], "www.pro-xy.com": [8973], "streamtip.com": [15775], "*.uksrv.co.uk": [17409], "wpymedia.nhm.ac.uk": [11097], "go.websitealive.com": [18445], "qune.kuluttajavirasto.fi": [13606], "rightscon.org": [14120], "anthonyland.com": [2053], "vod02.nvcc.edu": [11787], "s49.cnzz.com": [3391], "oppp.ca": [2053], "tlmag.co": [2053], "ldpreload.com": [9342], "foodallergy.org": [6120], "link.v15.de": [2053], "mysql10.vas-hosting.cz": [21896], "a.mitmilch.at": [2053], "worstpills.org": [18767], "www.upaymobile.co.uk": [17671], "theamericanscholar.org": [16508], "pmsfl.us": [2053], "recurse.com": [13888], "link.coziie.com": [2053], "zk.cm": [2053], "credit-card-asda-payments.creation.co.uk": [3845], "stmrk.com": [2053], "www.primalblueprint.com": [13285], "forex.finam.ru": [20117], "security.trustsign.com.br": [17058], "secby.me": [2053], "static.woopra.com": [18725], "anxiguan.jd.com": [8571], "utdallas.edu": [17573], "58play.tw": [2053], "*.forbes.com": [6134], "www.syllabusshare.com": [15966], "mysociety.org": [10976], "mnaonline.org": [10525], "3gb.cc": [2053], "ply.bz": [2053], "libreswan.org": [9477], "www.collateralmurder.com": [3482], "vl.io": [2053], "priberam.pt": [13275], "courses.edx.org": [5171], "aescrypt.com": [19312], "h.alhamri.org": [2053], "nwea.us": [2053], "rothe.me": [2053], "peijian.jd.com": [8571], "wximg.gtimg.com": [7121], "esi-group.com": [5058], "s.tag9.de": [2053], "onforb.es": [2053], "l.ryansicad.com": [2053], "radiology.georgetown.edu": [6668], "www.swissinfo.ch": [21550], "wrts.ws": [2053], "kuak.in": [2053], "mdrg.co": [2053], "www.rachelbythebay.com": [13727], "8trx.com": [2053], "methemissus.co": [2053], "apk-dl.com": [19403], "*.davis.com": [4311], "planet.ubuntuusers.de": [17383], "openmandriva.org": [12153], "s53.cnzz.com": [3391], "*.openxenterprise.com": [12195], "toph.at": [2053], "andrewmohawk.com": [19389], "hu.libreoffice.org": [9471], "nolp.dhl.de": [4108], "*.bogner.sh": [19568], "community.bt.com": [1593], "go.italki.com": [2053], "s.mrph.es": [2053], "usa.canon.com": [2868], "cloudworks.nu": [3357], "www.ssn.uillinois.edu": [17238], "www.checkmyrota.com": [19694], "fordoh.co": [2053], "appsupport.commonapp.org": [3548], "orhnk.ml": [2053], "planningpublicaccess.havant.gov.uk": [20318], "www-cs-students.stanford.edu": [15635], "*.hbanet.org": [7176], "www.comkort.com": [3533], "backpack.openbadges.org": [12199], "soroush.secproject.com": [14710], "luohe.1688.com": [44], "www.imerys.com": [8137], "people.zoho.com": [19202], "passmark.com": [12632, 12633], "nswk.ly": [2053], "psound.tk": [2053], "img.chefkoch-cdn.de": [3116], "contentreserve.com": [19779], "www.dyn.com": [4918], "www.girlsoutwestfreestuff.com": [6788], "savethechildren.org.uk": [14553, 14554], "mah.se": [9875], "www.migrolcard.ch": [10562], "*.mypcbackup.com": [8843], "field.ly": [2053], "gmgm.in": [2053], "*.europeanssl.eu": [5533], "21s.nl": [2053], "images.superherostuff.com": [15886], "www.blogger.com": [2160], "ynsa.diet": [2053], "*.bgpmon.net": [1554], "passwordbox-prod.mcafee.com": [10282], "bble.us": [2053], "www.astaro.com": [1333], "jcor.pw": [2053], "www.thefire.org": [16543], "l.qispi.fr": [2053], "per.gs": [2053], "www.greenhost.nl": [7057], "fashionfix.net-a-porter.com": [11363], "on.choisr.com": [2053], "logika.net": [9719], "bosuil.eu": [2053], "weborder.active24.com": [19275], "time.com": [16074], "naturalmessage.com": [11290], "www.hungryhowies.com": [20395], "www.afew-store.com": [19315], "hypdls.de": [2053], "javi.fr": [2053], "datacenter.illinois.edu": [17544], "08.imgmini.eastday.com": [5119], "ncar.cc": [20879], "www.cuteness.com": [19840], "seacloud.zaehlwerk.net": [19089], "now.pearlsha.re": [2053], "qr.hitravel.xyz": [2053], "transifex.zoom.us": [22139], "postoffice.insure-systems.co.uk": [13181], "jtwr.io": [2053], "master.yandex.com.tr": [18954], "cki.io": [2053], "public.honeynet.org": [20357], "streets.st": [2053], "bitfetch.com": [2044], "clientupdater.raptr.com": [13796], "data.sparkfun.com": [15471], "eddie.ds.uillinois.edu": [17237], "www.thinkupthemes.com": [21723], "www.jaast.net": [12555], "sfbeer.co": [2053], "getambassador.com": [6707], "youtube.co.ug": [19016], "cr.yp.to": [3817], "rise.osu.edu": [11959], "on.3egg.ch": [2053], "ox.ac.uk": [17557], "yuba.douyu.com": [4813], "wrdm.ag": [2053], "botic.ca": [2053], "mekz.me": [2053], "*.oneexchange.com": [12032], "static2.wonderwall.com": [18714], "osna.ps": [2053], "mobiusconsortium.org": [9935], "cdn2.hubspot.net": [7738], "djtech.tools": [2053], "pengzhou.meituan.com": [10405], "drserver.net": [4832], "phieagl.es": [2053], "cayler.me": [2053], "trax.tech": [2053], "portrait3.sinaimg.cn": [15091], "shanefin.nyc": [2053], "wow-u.tv": [2053], "www.1stwarning.com": [76], "www.tdcanadatrust.com": [16055], "dpm.gr": [2053], "westlandutrechtbank.nl": [18513], "go.textko.com": [2053], "pffoc.us": [2053], "heat.st": [2053], "str.tips": [2053], "*.fairwork.gov.au": [5746], "*.provantage.com": [13397], "www.trmm.net": [17031], "domaindiscount24.com": [19940], "static.sabayon.org": [14450], "www.localmedia.org": [9700], "www.onjive.com": [12010], "www.askleo.com": [1298], "libdig.co": [2053], "www.research.buffalo.edu": [17583], "jixi.meituan.com": [10405], "*.artemis.net": [1265], "gunosy.com": [7151], "rcru.it": [2053], "*.highbeam.com": [2998], "mompop.co": [2053], "gila.deathmask.net": [4344], "devblog.more-onion.com": [10773], "*.mooc-list.com": [9941], "www.citl.illinois.edu": [17544], "sslapi.tv4play.se": [16137], "b.rickmahn.com": [2053], "www.schuelervz.net": [14608], "www.usessh001.com": [17716], "uofi.uic.edu": [17517], "www.toynews-online.biz": [21769], "on.dutzu.net": [2053], "mutuals.cabinetoffice.gov.uk": [2760], "alexbank.dengisend.ru": [4440], "spxj.nl": [2053], "cptr.cancer.gov": [2864], "pollenwarndienst.at": [13109], "socchan.com": [2053], "zhuzhou.meituan.com": [10405], "vegasinc.com": [17772], "ba.yandex.com": [18956], "intra.kth.se": [8905], "p9.qhimg.com": [13531], "forum.vuejs.org": [18165], "www.foodallergy.org": [6120], "mslink.click": [2053], "openpetition.de": [12163], "*.cchtml.com": [2973], "jetico.com": [8710], "edcnts.com": [2053], "wayf.ukfederation.org.uk": [17242], "sony.com": [15393], "poppysports.com": [13144], "go.kronicle.co": [2053], "info.sourcefire.com": [15430], "*.nestle.com": [11360], "b.narino.gov.co": [2053], "www.dandb.com": [4214], "syndication.exoclick.com": [5608], "ryankno.ws": [2053], "yui-s.yahooapis.com": [18943], "gsn.com": [6534], "frca.megabus.com": [10401], "*.alta.com": [914], "campus.leeds.ac.uk": [17604], "meaw.co": [2053], "next.ft.com": [5941], "portal.iitb.ac.in": [7891], "redeem.nvidia.com": [11174], "forc.mx": [2053], "www.library.georgetown.edu": [6668], "xnet-x.net": [18883], "sky.me": [2053], "www.canon.pt": [2868], "mail2008.sina.com.cn": [15086], "vates.fr": [17867], "vie.olut.ninja": [2053], "josh.freech.net": [20162], "us.support.tomtom.com": [16812], "go.choicerewards.ca": [2053], "www.efsyn.gr": [20016], "www.gettyimages.fr": [6741], "studentclub.msra.cn": [20843], "alertlogic.com": [830], "elfa.se": [5263], "dailytv.96.lt": [2053], "via.owlin.com": [2053], "go.apprope.com": [2053], "oxfordshire.gov.uk": [21056], "geektutor.es": [2053], "hejobs.co": [2053], "pauldotcom.com": [12671], "app-us3.resrc.it": [13832], "encosia.com": [5335], "codeaurora.org": [3407], "on.afil.io": [2053], "ipv4.nebezi.cz": [11317], "morrisons-corporate.com": [10788], "hostingxtreme.com": [7676], "s.tki.jp": [2053], "eservices.solihull.gov.uk": [15371], "mssoc.uk": [2053], "cdn2.shoptiques.net": [14976], "123.com": [2053], "seca.anthem.com": [19395], "www.internationalman.com": [8411], "tkerb.me": [2053], "standishmanagement.com": [15633], "static.shopspring.com": [21432], "i.ideoworks.com": [2053], "www.hostcreo.com": [7645], "sbvimprover.com": [14322], "partner.just-eat.es": [20565], "system.netsuite.com": [11401], "ckte.co": [2053], "azm.ag": [2053], "stacksocial.com": [15615], "cas.sfu.ca": [14893], "www.internetconsultatie.nl": [11324], "sdblog.ca": [2053], "mkdo.in": [2053], "ptrvl.ca": [2053], "rfcexpress.com": [13652], "www.praktikpladsen.dk": [21186], "snyk.io": [21494], "cze.us": [2053], "core.cloudfoundry.com": [3359], "ak.astei.com.mx": [2053], "versions.nodejitsu.com": [11647], "order.gmocloud.com": [6460], "*.data.fm": [4252], "vdgo.es": [2053], "cl.gg": [2053], "mysciencework.com": [10971], "getintel.co": [2053], "ppmd.info": [2053], "mpf.re": [2053], "gettyimages.no": [6741], "faithinmotion.com.au": [5750], "gettyimages.nl": [6741], "tcap.tl": [2053], "*.dmca.com": [4119], "s.fungidb.org": [2053], "mmlf.co": [2053], "bberg.me": [2053], "ltch.fr": [2053], "it.jhu.edu": [16562], "chi-10g-1-mirror.fastsoft.net": [5791], "blogbeta.namecheap.com": [11208], "secure.autotrader.co.uk": [19458], "support.wordfence.com": [18735], "blnd.io": [2053], "www.resinfo.org": [14041], "discounts.nusextra.co.uk": [20966], "fxtm.co": [2053], "edocket.anpost.ie": [1024], "x.d-shen.xyz": [2053], "content.atomz.com": [1365], "vscrt.co": [2053], "secure.colorofchange.org": [3502], "portal.autotrader.co.uk": [19458], "auctions.godaddy.com": [6898], "adultdp.portsmouth.gov.uk": [21175], "davidpa.it": [2053], "d.3.cn": [121], "journalism.georgetown.edu": [6668], "staging-api.challenge.gov": [3045], "imation.com": [8134], "ssl.xui.ptlogin2.qq.com": [13514], "thenewsfunnel.com": [11528], "static.shanaproject.com": [14902], "www.imiclk.com": [8150], "prolik.adv.br": [2053], "web.uniovi.es": [17479], "fr.gamigo.com": [6563], "www.naacpimageawards.net": [11052], "pristina.usembassy.gov": [21879], "monta.ge": [2053], "go.netspire.nl": [2053], "genz.in": [2053], "ifro.ga": [2053], "ads.nicovideo.jp": [11584], "www.guardianescapes.com": [7130], "post.spl.org": [2053], "edc1.healthtap.com": [7395], "ic.tlig.org": [2053], "rajiv.ph": [2053], "onlinedoctor.superdrug.com": [15882], "www.homeoffice.gov.uk": [20355], "support.covad.com": [3794], "xtremo.tk": [2053], "www.screenshotmachine.com": [14652], "floridalobbyist.gov": [20134], "piclist.friendfinder.com": [6331], "uine.co": [2053], "stcndl.com": [2053], "r0bz.com": [2053], "secure.gettyimages.fr": [6741], "sfq.design": [2053], "bdot.me": [2053], "secure.gettyimages.fi": [6741], "www.icbit.se": [7829], "lists.riseup.net": [14133], "radsec.org": [13742], "dog.gawker.com": [6593], "qrobe.it": [13540], "www.swisssign.com": [13176], "www.nytimes.com": [11189], "r.theafh.net": [2053], "resizer.bk-partners1.co.uk": [19547], "tlc.worldcat.org": [18748], "pbne.ws": [2053], "www.fml.osu.edu": [11959], "transactionsexplorer.cabinetoffice.gov.uk": [2760], "mh.tl": [2053], "mava.co": [2053], "static.zdbb.net": [19067], "media.vocativ.com": [18104], "epson.jd.com": [8571], "wuhai.meituan.com": [10405], "infogr.am": [8258], "www.greyhound.com": [7073], "gogotraining.com": [6932], "flixbus.nl": [6047], "robm.in": [2053], "insight.mynewsdesk.com": [11030], "www.oss.nl": [11324], "cdnjs.gtimg.com": [7121], "www.andrewmohawk.com": [19389], "www.leedsbuildingsociety.co.uk": [9380], "cer.org.uk": [19677], "code.breakfastquay.com": [2352], "vbg.de": [17760], "warframe.partner.uol.com.br": [17276], "www.adsimilis.com": [671], "prod.akimg.video.rakuten.co.jp": [13768], "tsinet.ca": [2053], "gzip.static.woot.com": [18726], "checkout.courant.com": [19801], "*.cox.com": [3808], "liveplay.gq": [2053], "schoorsteen.geenstijl.nl": [20217], "keepa.ch": [2053], "www.shop.cryptalloy.de": [3916], "u2.hitravel.xyz": [2053], "aezoo.compute.dtu.dk": [16286], "tjo.me": [2053], "2palit.us": [2053], "www.volumio.org": [21946], "cor.cab": [2053], "a.nursegrid.com": [2053], "www.yieldselect.com": [18986], "www.linguee.de": [20690], "msgn.co": [2053], "itrust.org.cn": [8541], "go.kldp.in": [2053], "cultura.no": [3986], "ciclops.org": [2659], "partners.yandex.kz": [18957], "maddcalifornia.org": [9871], "feedback.rackspace.com": [13740], "wndsr.co": [2053], "*.shef.ac.uk": [17624], "wiki.gpehosting.com": [6493], "a.musicsense.me": [2053], "outreach.ors.nih.gov": [11241], "employee.hospital.uic.edu": [17517], "www.celiac.org": [2992], "dotnot.cnblogs.com": [19743], "www.ndr.de": [11310], "www.sonderdesign.com": [15382], "swimb.ee": [2053], "reyn.cc": [2053], "mobile.georgetown.edu": [6668], "interfax.kz": [20476], "www.theeroticreview.com": [16488], "juristech.co": [2053], "board.perfect-privacy.com": [12770], "fs.meituan.com": [10405], "www.spot.im": [15545], "www.baomoi.com": [1708], "img04.sogoucdn.com": [15351], "discuss.codecademy.com": [3421], "copublishers.live.cf.public.springer.com": [15561], "search.vodafone.co.nz": [18105], "vpn.unizar.es": [17643], "www.growery.org": [7109], "okturtles.org": [11973], "*.morrisons.com": [10789], "shopwiki.com": [14966], "nursing.osu.edu": [11959], "ws.pagseguro.uol.com.br": [17276], "a.heppellit.com": [2053], "www.inspectlet.com": [8325], "volu.sn": [2053], "*.odmp.org": [11950], "jrbp.stanford.edu": [15635], "i3.lbp.me": [20644], "compliancesigns.com": [3589], "estavisas.org": [5066], "dzle.me": [2053], "www.ewebscapes.com": [5090], "www.meltin.net": [10415], "www.shortoftheweek.com": [21435], "lenketil.no": [2053], "hotler.tech": [2053], "wtsrv.co": [2053], "pxl.st": [2053], "www.nextiva.com": [11562], "s.basg.nl": [2053], "on.vsedela.ru": [2053], "equid.la": [2053], "forester.farm": [2053], "without.rocks": [2053], "freebiz.tips": [2053], "forum.openhatch.org": [12139], "bayden.com": [1753], "manhattan.ikea.com": [8108], "www.infolan.by": [20456], "cajadenu.tk": [2053], "pshapi.ro": [2053], "www.josefsson.org": [8780], "*.easydns.net": [5125], "forums.openitc.co.uk": [12144], "lnch.co": [2053], "de-cs.dict.cc": [4536], "enfsr.es": [2053], "becker-wustl.libapps.com": [9446], "k.buildnet.nl": [2053], "publicobject.com": [13442], "yournice.xyz": [2053], "*.shodan.io": [14957], "dgex.com": [4107], "i2.mifile.cn": [10560], "*.adbooth.net": [602], "jukes.in": [2053], "three.libsyn.com": [9482], "thauv.in": [2053], "baby.jd.com": [8571], "prefs.connect.comcast.net": [3524], "ooyala.jp": [12098], "beta.1tv.ru": [79], "ebuz.bz": [2053], "images.unian.net": [21851], "www.jupiterartland.org": [8838], "123systems.net": [35], "a1.formsite.com": [20148], "spoti.fi": [2053], "api.sh": [1130], "bcktsbrnd.co": [2053], "ambitieu.se": [2053], "www2.visitsealife.com": [21927], "www.plop.at": [21151], "csmm.osu.edu": [11959], "alumni.wustl.edu": [18290], "cic.fr": [1701], "abo.welt.de": [18492], "help.tenmarks.com": [16368], "thethemefoundry.com": [16584], "dogg.be": [2053], "kfixer.com": [2053], "forces-money.uk": [2053], "cryptonetwork.com": [3931], "maven.stanford.edu": [15635], "scripbe.io": [2053], "*.www.vispashop.com": [18073], "www.liberalamerica.org": [9455], "gkb.ch": [20574], "edhq.co": [2053], "rchrismart.in": [2053], "goflam.es": [2053], "www.freemarketlite.cc": [6245], "s.iwsale.com": [2053], "evolmed.com": [5571], "sprk.ywb.com.au": [2053], "ruxconbreakpoint.com": [14288], "wecar.osu.edu": [11959], "lists.mayfirst.org": [10266], "www.cse.ucsd.edu": [17216], "greenbillion.org": [7049], "instasync.com": [20469], "bikt.de": [1561], "somd.me": [2053], "www.wi.htwk-leipzig.de": [7736], "www.sberbank.ru": [14560], "kidp.tk": [2053], "gnu.org": [6474], "business.yell.com": [22096], "acom.azurecomcdn.net": [1524], "www.amsallegations.homeoffice.gov.uk": [20355], "analyticssl.clickpathmedia.com": [3309], "www.wyndhamjobs.com": [18789], "foli.co.vu": [2053], "qnetp.net": [13535], "www.civicaepay.co.uk": [3261], "bwth.me": [2053], "city.yandex.kz": [18957], "click.domru.ru": [2053], "kriso.*": [9164], "www.howtowriteabookasap.com": [6838], "l.darocker.xyz": [2053], "business.udemy.com": [17393], "eset.la": [2053], "daman.id": [2053], "sumatrapdfreader.org": [21603], "css.riastatic.com": [13661], "ab9il.net": [273], "shop.teslamotors.com": [16403], "wiki.glx-dock.org": [20256], "rss.idnes.cz": [20425], "go.ncpan.org": [2053], "studior.co": [2053], "favicon.kn007.net": [9089], "www.popatomic.org": [13131], "adgoo.ru": [2053], "translation.rnd.feide.no": [5858], "buzzworthy.buzzbytes.net": [2534], "static.insided.nl": [8183], "*.lexpress.fr": [9225], "capdesign.idg.se": [7852], "dyuc.mx": [2053], "nltf.am": [2053], "*.indiemerch.com": [8218], "kuleuven.ezproxy.kuleuven.be": [8969], "www.regex101.com": [13960], "alch.in": [2053], "www.freehookupsearch.com": [20166], "trtlrm.com": [2053], "www.leggiero.uk": [20655], "www.freepress.net": [6265], "sjpl.org": [21465], "jobzonen.dk": [8753], "*.solidcactus.com": [15368], "www.aaronlindsay.com": [433], "dlrkn.ws": [2053], "tech.bz": [2053], "kraut.cc": [2053], "fondul.ac": [2053], "cdn.techdirt.com": [16281], "z3ro.in": [2053], "bl.vn-new.com": [2053], "ssonic.co": [2053], "tvtorrents.com": [17136], "instart3.flixster.com": [6049], "certigna.fr": [3031], "www.softaculous.com": [15345], "spjour.nl": [2053], "lrwc.co": [2053], "www.changingclimate.osu.edu": [11959], "workspace.nottingham.ac.uk": [11726], "www.electionmentions.com": [20022], "my.aliexpress.com": [847], "le.ac.uk": [17605], "etk.pw": [2053], "www.greenleft.org.au": [7051], "autodiscover-s.outlook.com": [12358], "www.hertz.com.pt": [7498], "creditdisputeprogram.com": [3859], "deaconess.com": [4326], "mhsa.aihw.gov.au": [10436], "billing.eoreality.net": [5035], "*.rfparts.com": [13653], "support.proxpn.com": [21204], "bfac.to": [2053], "groupersocialclub.com": [7098], "afpbit.org": [2053], "www.image-maps.com": [8124], "lamf.click": [2053], "teespring.com": [16316], "www.blogs.zoho.com": [19202], "pbh.cc": [2053], "m.openwireless.org": [12227], "www.hertz.com.pl": [7497], "blog.times.am": [21740], "www.weheartit.com": [18314], "fmaba.com": [5761], "google.co.*": [6966, 6968, 6973, 6975], "hollywoodoutlaws.com": [7601, 7602], "goodreads.com": [6957], "www.dshop.se": [4882], "secure.i.telegraph.co.uk": [16340], "howesee.it": [2053], "dkc3.digikey.com": [4552], "alibaba.aliloan.com": [19344], "personnels.u-bordeaux.fr": [17195], "www.vzp.cz": [17816], "partners.business.instagram.com": [8331], "pjga.me": [2053], "ident.familysearch.org": [5760], "dev.equityzen.com": [5441], "bigconcerts.co.za": [1911], "rv.cr": [2053], "bioenergylibrary.inl.gov": [20462], "inuv.it": [2053], "x.smejko.org": [2053], "loopiasecure.com": [9769], "blog.aldi.us": [338], "s.arink.de": [2053], "a.shibeflix.win": [2053], "www.telecom.sk": [16346], "blog.loomio.org": [9766], "sportradar.com": [21540], "securesso.ieee.org": [7862], "trik.ro": [2053], "metadata.ftp-master.debian.org": [4352], "gesetzessammlungen.ag.ch": [21629], "thepiratebay.tech": [21711], "j0n1.at": [2053], "hipson.com": [2053], "connect.hbo.com": [7177], "mrp.illinois.edu": [17544], "oktyabrskiy.beeline.ru": [1801], "business.quickline.ch": [21243], "at.mcnully.co": [2053], "app-agoda.com": [2053], "www.canon.it": [2868], "divpro.hdfcbank.com": [7389], "www.sparebank1.no": [21524], "whlove.taobao.com": [16206], "a4.ec-images.myspacecdn.com": [11037], "c.kinja-static.com": [9057], "magento.com": [10017], "managed.entrust.net": [5406], "nmrccktails.co": [2053], "aliceinfo.cern.ch": [2631], "www.hackerspaces.nl": [7281], "globat.com": [6864], "mindfactory.de": [10599], "i.gsat.cl": [2053], "ecampus.bsm.upf.edu": [17674], "www.ucpi.org.uk": [17214], "osrfoundation.org": [11873], "ewents.ya.ru": [18930], "cas.fsf.org": [5713], "printso.me": [2053], "hoasted.link": [2053], "pushkino.beeline.ru": [1801], "popdu.st": [2053], "www.tinypass.com": [16761], "gowalker.org": [6923], "okst.biz": [2053], "ichaits.com": [2053], "stash.sourcefabric.org": [15429], "eveger.de": [5538], "ryot.org": [13718], "globalwitness.org": [6839], "on.wellfra.me": [2053], "www.timetrade.com": [16726], "secure-niketown.nike.com": [11595], "mdadmissions.wustl.edu": [18290], "pilot-coupons.paypal.com": [12678], "passwd.ut.ee": [17347], "czlo.in": [2053], "www.eset.com": [5463], "maps.bloomsky.com": [19559], "www-static-blogs.operacdn.com": [21025], "bgo.zugaina.org": [19238], "ask.barnet.gov.uk": [19487], "www.sipgate.de": [15104], "alpha.linode.com": [9547], "*.tunespeak.com": [17105], "l.el-st.com": [2053], "www.seznam.cz": [14891], "img02.final4ever.com": [5934], "yoctoproject.org": [18995], "publish.dvlabs.com": [19973], "laproxgroup.com": [20638], "m.up.com": [21863], "snapnames.com": [9018], "cdn.psychologytoday.com": [13417], "fbxak.co": [2053], "s.kenrick95.org": [2053], "www.geog.leeds.ac.uk": [9379], "www.neustar.biz": [11472], "rigov.firmstep.com": [20125], "mmtx.nlm.nih.gov": [11241], "www.jubii.dk": [8810], "m.online.t-mobilebankowe.pl": [21643], "flag.ws": [2053], "www.diskcryptor.net": [4648], "www.wikimedia.org.il": [18595], "glittering.blue": [20251], "www.rbb-online.de": [13824], "et10.xhcdn.com": [18815], "burci.ag": [2053], "nyi.net": [11182], "www.croydon.gov.uk": [19824], "dgb.io": [2053], "r.remino.net": [2053], "*.vook.com": [18137], "url.derbit.de": [2053], "my.resrc.it": [13832], "gigaz.in": [2053], "i.newsuv.org": [2053], "k.ilius.net": [10383], "jogustine.uni-mainz.de": [17611], "www.halowaypoint.com": [7307], "dskvr.it": [2053], "hengdian.meituan.com": [10405], "s4.wsj.net": [22059], "www.gogoyoko.com": [6935], "websecurify.com": [18442], "distile.net": [2053], "schema.org": [21377], "clicky.com": [6730], "www.inet.se": [8236], "joshjenk.in": [2053], "www.hsbc.co.uk": [20375], "lilyskit.ch": [2053], "opnmsc.cc": [2053], "www.flexinvestments.net": [6028], "www.canadajobs.g4s.com": [20194], "license.macromates.com": [9998], "jjay.cc": [2053], "*.sustatic.com": [15799], "www.openclassrooms.com": [12127], "www.zonglovani.info": [19215], "russiain.space": [21343], "n2s.in": [2053], "us.adform.net": [625], "blake2.net": [19554], "moodsmith.com": [10758], "www.space.dtu.dk": [16286], "ruxcon.org.au": [14287], "news.sunybroome.edu": [2419], "widgit.com": [22023], "zkb.ch": [20574], "wender.co": [2053], "www.commscope.com": [3537], "my.sailthru.com": [14480], "iweb.com": [8020], "s51.cnzz.com": [3391], "go.hafi.at": [2053], "casmussoc.eu": [2053], "apac.redhat.com": [13909], "totalrecall.switchingon.com": [17468], "asset-0.java.net": [8673], "www.fotoforensics.com": [7272], "go.bivia.com": [2053], "www.veber.co.uk": [17878], "e.poko.lt": [2053], "slettmeg.no": [4294], "gobz.in": [2053], "remas.swisscom.com": [15951], "search.freefind.com": [6244], "*.okpay.com": [11828], "blog.cloudfoundry.com": [3359], "hdlab.stanford.edu": [15636], "liftshare.com": [9497], "dgt.im": [2053], "bit.nl": [1563], "aircolt1.com": [2053], "nfs9.me": [2053], "transportation.georgetown.edu": [6668], "nxc.be": [2053], "spreadshirt.no": [15552], "kzk.io": [2053], "www.phenix.bnl.gov": [19564], "ecocampus.ens.fr": [5029], "shoebuy.com": [14959], "djp3.me": [2053], "tunisia-sat.com": [17107], "mozillazine-fr.org": [20837], "*.squarespace.com": [15584], "pdfserv.maximintegrated.com": [10261], "rbtv.to": [2053], "earwolf.com": [5109], "psdev.transform.nottingham.ac.uk": [11726], "blog.tox.chat": [16891], "magek.co": [2053], "seomon.com": [21410], "rj.meituan.com": [10405], "artofdr.ink": [2053], "mnmdl.osu.edu": [11959], "secure.catchdigital.com": [19655], "sol.no": [21502], "www.notedcode.com": [11722], "couchsurfing.com": [19798], "wizrd.biz": [2053], "desire2learn.com": [4470], "content.mkt51.net": [20809], "tongliao.meituan.com": [10405], "ru.3.boardgamearena.com": [2219], "mx.usembassy.gov": [21879], "a2k.it": [2053], "images1.ivoox.com": [8016], "search.georgetown.edu": [6668], "help.slideshare.com": [15207], "www.hotmail.com": [7704], "jinjiang.meituan.com": [10405], "fb.youfeelm.com": [2053], "xescampus.usc.es": [17711], "shop.ticketpro.hu": [16693], "blog.archive.org": [8419], "*.metro.co.uk": [10499], "business.mirea.ru": [20805], "lewesdc.firmstep.com": [20125], "m1.nsimg.net": [11748], "de.linak.de": [2053], "indiemnl.info": [2053], "tixm.at": [2053], "url.ltdav.com": [2053], "comodo.ssllabs.com": [14416], "rackspace.co.za": [13734], "login.wx.qq.com": [13514], "tjns.in": [2053], "prioritysubmit.com": [13300], "rt.gsspat.jp": [20288], "forums.site24x7.com": [15108], "tol.bz": [2053], "wiki.t411.ch": [16036], "tnw.co": [2053], "www.u-blox.com": [17198], "stat.telenet.ru": [21671], "public-online.hmrc.gov.uk": [7219], "ica.se": [7826], "hi.metasyn.pw": [2053], "umbel.com": [17425], "www.zammad.org": [19098], "jamesvillas.co.uk": [18790], "to.cluff.me": [2053], "filippo.io": [5919], "blackfoot.co.uk": [2105], "robb.rocks": [2053], "adaptivecomputing.com": [597], "go.brighttalk.com": [2377], "cma.ms": [2053], "dogroup.co": [2053], "www.unanimis.co.uk": [17429], "u.ocsb.pw": [2053], "www.superstart.se": [15890], "www.sysprovide.de": [21639], "nx.gt": [2053], "www.talktalk.co.uk": [16184], "www.tigr.net": [16713], "download.libsodium.org": [9480], "mstf.ca": [2053], "leedsportal.leeds.ac.uk": [17604], "www.sportisimo.ro": [14396], "l.seebeetee.com": [2053], "manasource.org": [10106], "race2.me": [2053], "api.oubo.rakuten.co.jp": [13768], "stide.us": [2053], "newsdaily.com": [11520], "srfrsj.nl": [2053], "hddn.com": [11380], "virg.pw": [2053], "music.yandex.by": [18953], "mcssl.com": [10293], "btsportbusiness.com": [1618], "www.xmlgold.eu": [18822], "synthetix.info": [15997], "webcijfers.nl": [18353], "u.sarhov.com": [2053], "dz2cdn1.dzone.com": [4171], "debug.siedler25.org": [14065], "kffn.co": [2053], "thepiratebay.vg": [21710], "*.bitsontherun.com": [2071], "robd.ml": [2053], "www.rutracker.net": [21346], "*.lovemoney.com": [9794], "oficialscbr.com": [2053], "hosts-file.net": [20365], "uniforum.uio.no": [17615], "*.flowtab.com": [6065], "federation.amd.com": [962], "medicine.georgetown.edu": [6668], "www.telegram.wiki": [16338], "thegcloud.com": [16545], "payservice.alipay.com": [857], "cdn.duelinganalogs.com": [4892], "www.maybemaimed.com": [10269], "dgullett.us": [2053], "status.xsolla.com": [18896], "pic5.58cdn.com.cn": [202], "www.tunnelbroker.net": [17109], "switch.atdmt.com": [10540], "ieeexplore.ieee.org": [7861, 7862], "staminus.thecthulhu.com": [16600], "go.sqr.fr": [2053], "www.haveproof.com": [7375], "fullcoin.com": [6366], "ext.cursosvirtuales.uned.es": [17446], "services.comparethemarket.com": [3575], "secure.live.sipgate.de": [15104], "www.mayday.us": [10270], "www.plos.org": [12474, 13434], "osp.georgetown.edu": [6668], "glassdoor.co.uk": [20248], "www.rockzi.com": [13676], "*.service-now.com": [14864], "demo.phpdoc.org": [12865], "www.cees.uio.no": [17615], "pkok.lol": [2053], "zeronet.io": [19158], "write.bz": [2053], "mycanvas.com": [10938, 10939], "best.ssa.gov": [21552], "ty.powiedz.tk": [2053], "wpstartbox.com": [15659], "s.toksedo.com": [2053], "de.hosting.adjug.com": [565], "satirius.de": [2053], "amrcnprks.co": [2053], "www.jeremymorgan.com": [20537], "www.hertz.com.tw": [7507], "nightly.mozfr.org": [20836], "dropship.amazon.fr": [19371], "*.airbnb.jp": [788], "uk.isidewith.com": [20414], "ispam.nl": [7979], "franchising.hungryhowies.com": [20395], "www.sysresccd.org": [21640], "www.hrc.org": [7749], "www.getkeepsafe.com": [6715], "maelsoucaze.com": [10010], "auction.jd.com": [8571], "w.cranear.com": [2053], "picard.musicbrainz.org": [10905], "codecov.io": [3427], "www.ox.ac.uk": [17557], "uspara.us": [2053], "intranet.law.ox.ac.uk": [17557], "en-bs.dict.cc": [4536], "55b558c7-site.sitejam.com": [21460], "cosmicdis.co": [2053], "irontri.be": [2053], "hr.4.boardgamearena.com": [2219], "www.xmarks.com": [18882], "advertising.autotrader.co.uk": [19458], "smetrics.skype.com": [15184], "drlnfo.co": [2053], "blog.chromium.org": [3179], "dbfh.us": [2053], "www.gethashing.com": [6700], "wikimedia.f4.htw-berlin.de": [7246], "nemid.nu": [11334], "pulse-beta.conviva.com": [3698], "www.thaliproject.org": [16432], "*.coag.gov.au": [3771], "uat.communities.coverity.com": [3803], "defenceandsecurity.ca": [2570], "yiwu.1688.com": [44], "gitter.im": [6806], "childcare.milton-keynes.gov.uk": [10588], "wklandb.com": [2053], "fx.meituan.com": [10405], "*.faiumoni.de": [20094], "ne.wac.edgecastcdn.net": [5180], "www.t-shirtmojo.com": [16029], "donationcoder.com": [4769], "pbthdmw.bt.motive.com": [20831], "demo.hoverwatch.com": [20367], "vms.drweb.com": [4879], "stories.colorofchange.org": [3502], "zeromq.org": [19161], "chinesepod.oss.aliyuncs.com": [19346], "www.dc801.org": [4086], "zumzi.com": [19241], "innovation.mit.edu": [9916], "xumo.tv": [2053], "st.navalny.com": [11300], "retailnews.co": [2053], "neutrons.ornl.gov": [11892], "static.kent.ac.uk": [17603], "www.ecaforums.com": [5396], "blazingthyme.com": [2116], "weedtraqr.com": [18475], "download.neptuneos.com": [20889], "manage.storify.com": [15752], "cisomb.dhs.gov": [4109], "bangong.jd.com": [8571], "getsherish.com": [2053], "pik.my": [2053], "baycre.ws": [2053], "sl.laborsux.com": [2053], "food.list.co.uk": [16464], "www.libsdl.org": [9449], "repsvcs-prod2.wustl.edu": [18290], "*.cf-example.com": [3035], "pica8.ub.uni-mainz.de": [17611], "pgapps.nottingham.ac.uk": [11726], "tjne.ws": [2053], "theleagueof.co": [2053], "ecocar.osu.edu": [11959], "portal.nottingham.ac.uk": [11726], "www.smartertools.com": [15241], "onsite.ztat.net": [19094], "www.amazon.com.mx": [19368], "ladyfootlocker.com": [9282], "raur.co": [13633], "sgnds.io": [2053], "kdxs.co": [2053], "www.statistik.bayern.de": [15688], "goha.bs": [2053], "rts.mirea.ru": [20805], "jsro.co": [2053], "shopnm.co": [2053], "pstprod.peoplestrategy.com": [12761], "6xq.net": [217], "rz.meituan.com": [10405], "parkp.me": [2053], "gro.seagate.com": [14679], "hg.quakenet.org": [13556], "vf.fo": [2053], "wiki.winehq.org": [18652], "partner.solarflare.com": [15362], "*.blogs.uv.es": [17750], "assets.vg247.com": [21916], "framasphere.org": [6214], "acdn.lezhin.com": [20672], "totemapp.com": [16878], "m.zalando.co.uk": [19094], "tokyo-9ball.com": [2053], "communityengagement.georgetown.edu": [6668], "pinews.co": [2053], "*.dolphin-emu.org": [4734], "bit.bfish.us": [2053], "photovoltaic.pw": [2053], "m.uzairktk.me": [2053], "support.visiblebody.com": [18064], "www.meerssen.nl": [11324], "www.susyradio.com": [15922], "*.ut.edu": [17625], "renkum.nl": [11324], "*.turbosquid.com": [17111], "embanner.univcomm.cornell.edu": [3744], "www.ecommerce.com": [5157], "vtcsec.ru": [17808], "csc-test1.cisco.com": [3221], "gaap.georgetown.edu": [6668], "eservices.sccgov.org": [14579], "help.content.samsung.com": [14501], "www.cornify.com": [3745], "*.hotpics-amateur.com": [7694], "evoluted.net": [5573], "lindas.pw": [2053], "cdn5.sure-assist.com": [15899], "www.trustedshops.*": [17062], "pay.sina.com.cn": [15086], "s.gln.me": [2053], "store.buddyauth.com": [2284], "bit9.com": [1974], "www6.atomicorp.com": [1364], "ypy.douban.com": [4802], "www.twoseasons.co.uk": [17172], "en-fi.dict.cc": [4536], "portal.cedexis.com": [2986], "pt.itao.com": [20507], "rider.red": [2053], "lists.gnucash.org": [6885], "shop.gdeal.my": [2053], "kallithea-scm.org": [8924], "ctrlh.co": [2053], "direct.samsungfire.com": [14505], "www.nzz-libro.ch": [20974], "auth.firebase.com": [5970], "l.vaks.me": [2053], "www.eurobsdcon.org": [5509], "help.flavors.me": [5030], "*.planet-work.com": [12977], "consumidor.gov": [3663], "fido.ly": [2053], "php-fusion.co.uk": [12452], "www.dtc.umn.edu": [17554], "trafficstars.com": [21776], "www.cs.sunysb.edu": [15736], "fboxx.net": [2053], "submissions.epetitions.direct.gov.uk": [4615], "billing.prgmr.com": [13274], "*.phoenix.edu": [12845], "www.prometheusgroup.com": [13378], "pgp.mit.edu": [9916], "thecommunicationtrust.org.uk": [21694], "n2v.co": [2053], "apoya.re": [2053], "malina.hu": [4756], "on.nbc26.com": [2053], "sjday.co": [2053], "macmillandictionary.com": [9997], "pirateproxy.red": [21215], "muth.life": [2053], "www.wandisco.com": [18189], "b.meituan.com": [10405], "goto.thorsen.ca": [2053], "spacecraft.co.uk": [21519], "wl2s.co": [2053], "abbonati.tiscali.it": [16770], "www.whistleout.co.uk": [18547], "b10p.com": [2053], "www.marsocial.com": [9879], "i.reddituploads.com": [21285], "nt-ap.com": [2053], "inka.tips": [2053], "s3.hdslb.com": [20327], "xqt.mx": [2053], "www.david-dm.org": [19862], "x.joaa.se": [2053], "clk.ist": [2053], "www.orcid.org": [12108], "home.meetme.com": [10378], "gj.meituan.com": [10405], "redsoftkw.mobi": [2053], "webmail.myphone.coop": [11011], "www.instantchat.io": [8334], "lacasadelaslenguas.uniovi.es": [17479], "petstore.com": [12814], "intranet.plymouth.ac.uk": [13055], "sweetd.me": [2053], "awaps.yandex.by": [18953], "gruene.de": [890], "www.adigital.org": [630], "vci.im": [2053], "springfiles.nl": [15557], "news.net.finam.ru": [20117], "www.piratenpartei.de": [12938], "2car.ga": [2053], "checkout.paddle.com": [12528], "gm.mmstat.com": [10666], "tookapic.com": [16824], "www.transformationmadeeasy.com": [16939], "stumbleupon.com": [15799], "forums.groundspeak.com": [7093], "starkist.com": [15643], "oceansw.im": [2053], "jmldirect.com": [8590], "youtube.es": [19016], "foroaccionistas.bankinter.com": [1694], "2.bp.blogspot.com": [2160], "element.yandex.com.ua": [18955], "www.urlquery.net": [17702], "palbin.com": [12544], "www.ercnsm.osu.edu": [11959], "tools.digitale-diathek.net": [4587], "*.wordpress.tv": [18730], "www.incoin.io": [8195], "connectedu.net": [19774], "m.rasp.yandex.kz": [18957], "www.simplystamps.com": [15077], "hls.care": [2053], "m2.ttxm.co.uk": [16123], "eur.bitcurex.com": [2037], "*.mozilla-russia.org": [10840], "phab.enlightenment.org": [5382], "socialprogressimperative.org": [15313], "l.egculture.de": [2053], "atom.io": [1360], "usenetter.nl": [21880], "*.mini-dweeb.org": [4887], "easywhois.com": [5133], "www.sophievipescort.com": [15402], "bitpay.com": [1990], "rdmkt.mx": [2053], "beta.cironline.org": [2670], "sung.to": [2053], "3md.co": [2053], "portuguese.alibaba.com": [850], "epic.org": [5042], "on.gotham.love": [2053], "support.cloudflare.com": [3344], "www.vitalmend.com": [18081], "idee.li": [2053], "onepagerapp.com": [12056], "attracta.com": [1377], "dcos.io": [19871], "store.openfiler.com": [12232], "nws.4krc.com.ar": [2053], "10th.me": [2053], "www.noiselessvault.org": [11653], "ak1.abmr.net": [801], "sso.andover.edu": [12835], "dohane.ws": [2053], "essex.gov.uk": [5470], "www.pandasoph.de": [21067], "sizzlejs.com": [15139], "owp.li": [2053], "e2.chaucanh.net": [2053], "kikisso.com": [20594], "myste.ch": [2053], "fntr.thomsonreuters.com": [16650], "shdw.me": [2053], "www.noisebridge.net": [11652], "www.tdcserviceonline.com": [16053], "digwebinterface.com": [19922], "rfparts.com": [13653], "cfd-handel.biz": [2053], "mixi.co.jp": [10657], "www.webpg.org": [18375], "tl2.runicgam.es": [2053], "go.maumaus.nl": [2053], "my.megapath.com": [10396], "emr.gs": [2053], "i.obj.no": [2053], "www.coolutils.com": [3706], "ymb.nyc": [2053], "emr.gy": [2053], "dcvote.org": [4091], "tduk.co": [2053], "hswt.eu": [2053], "serving.portal.dmflex.com": [4126], "app.quotemedia.com": [13609], "wage.104.com.tw": [18], "kicknews.*": [9030], "*.e-boks.dk": [4946], "www.dropboxteam.com": [4864], "mxmy.in": [2053], "vcint.com": [17962], "business.ngs.ru": [20907], "www.idrsolutions.com": [7856], "brli.co": [2053], "*.discountclick.com": [690], "m.tubez.me": [2053], "l.tarry.cat": [2053], "www.krebsonsecurity.com": [9161], "snapengage-3.wpengine.netdna-cdn.com": [15273], "thsf.us": [2053], "s.lgfoot.be": [2053], "www.adindex.de": [314], "engd.es": [2053], "energinet.dk": [5354], "dealerrater.com": [4336], "ycusd.illuminateed.com": [20430], "my.itdashboard.gov": [8001], "www.tv-release.net": [17135], "frequentis.com": [6317], "blog.openlibrary.org": [12216], "voip.mephi.ru": [10441], "resourcestore.plymouth.ac.uk": [13055], "i.dgro.me": [2053], "www.welt.de": [18492], "udc.msn.com": [9961], "2ndoath.com": [2053], "www.store4geeks.com": [15748], "rooar.ca": [2053], "bioxfel.org": [1958], "3.boardgamearena.com": [2219], "th365.us": [2053], "particle.io": [12626], "www.bia.homeoffice.gov.uk": [20355], "scle.me": [2053], "www.hsbc.com.vn": [20385], "vulnhub.com": [18167], "custodianvaults.com.au": [4009], "making-cards.uk": [2053], "hrvuit.com": [2053], "forgerock.co": [2053], "axs.ph": [2053], "lbpo.st": [2053], "www.raynersw.com": [13819], "hwi.pw": [2053], "ads.chartbeat.com": [3077], "objects.dreamhost.com": [4844], "2edu.eu": [2053], "bbes.us": [2053], "on.askjess.com": [2053], "paymentssource.com": [12689], "*.plone.org": [13041], "on.mikian.com": [2053], "tdc.dk": [16051], "bad.as": [2053], "www.haskoin.com": [7363], "www.ovh.de": [12378], "www.ncsu.edu": [11690], "us1.rallydev.com": [13772], "www.realtech-vr.com": [13863], "www.president.osu.edu": [11959], "torcache.net": [16842], "forums.vandyke.com": [17842], "www.hathitrust.org": [7371], "publications.usa.gov": [17307], "trade.1688.com": [44], "official.duoshuo.com": [19969], "tracker.leadforensics.com": [9353], "evartha.tv": [2053], "woman.infoseek.co.jp": [8277], "reservations.eliomotors.com": [5268], "www.ayyildiz.de": [1518], "ahmns.io": [2053], "apps.bdimg.com": [1770], "into.gl": [2053], "gqsha.re": [2053], "blog.adafruit.com": [589], "beta.webapps.blackberry.com": [2102], "berkeleylug.com": [1837], "axa-winterthur.ch": [419], "cheshir.cf": [2053], "careers.dandb.com": [4214], "jsonresume.org": [8606], "l.lobu.co": [2053], "www.appseccalifornia.org": [1173], "solid-run.com": [15366], "submit.comixology.com": [3529], "secure.trustico.com": [17069], "jckno.ws": [2053], "tchr.ca": [2053], "creativegallery.axa.com": [418], "*.gutenberg.org": [7158], "blogs.securiteam.com": [14758], "thf.yt": [2053], "www.linuxmonk.ch": [9593], "dobrovolnici.ludialudom.sk": [9816], "pentestmag.com": [12756], "www.cerit-sc.cz": [2628], "unternehmen.bvg.de": [1623], "itstac.tc": [2053], "140gms.info": [2053], "suihua.meituan.com": [10405], "t-q.tv": [2053], "www.contributoria.com": [3687], "m.www.linksynergy.com": [9543], "trib.net": [2053], "student.plymouth.ac.uk": [13055], "idol.ly": [2053], "go.sgray.me": [2053], "origin-ars.els-cdn.com": [5284], "highbeam.com": [2998], "help.etoro.com": [20064], "mchlcr.tv": [2053], "f9.fi": [5661], "billing.qth.com": [13520], "globalecology.stanford.edu": [15635], "www.fortinet.com": [6174], "jobs.sheffield.gov.uk": [14939], "mail.opera.com": [12252], "traf.kr": [2053], "secure.dormproject.ch": [4780], "ipv6.nnmclub.to": [11132], "www.apel.asso.ulaval.ca": [17515], "dvrre.co": [2053], "app-de1.resrc.it": [13832], "byod.bz": [2053], "www.gamebillet.com": [6547], "*.blogspot.com.tr": [2166], "vc.tv": [2053], "uplinklabs.net": [17679], "www.ac.infn.it": [7913], "www.bebo.com": [1795], "www.fluxbb.org": [6073], "omniture.chip.eu": [2654], "www.somevid.com": [15380], "on.dayton.com": [2053], "b95.yahoo.co.jp": [18944], "dougthorpe.us": [2053], "stylig.ht": [2053], "www.nnetworks.co.jp": [11628], "*.cdn.gaiaonline.com": [6522], "milesto.ne": [2053], "jivesoftware.com": [8733], "ikea.com": [8108], "kiev.unian.net": [21851], "beta.io": [2053], "people.freebsd.org": [6237], "ukr.net": [17407], "podcasting.rtbf.be": [14244], "64px.com": [210], "shippingwatch.dk": [14951], "ljg.li": [2053], "ornl.gov": [11892], "rmc.press": [2053], "owncube.com": [12388], "casesic.rocks": [2053], "mousematrix.com": [10813], "wsws.org": [18227], "renovationexperts.com": [14003], "trepup.co": [2053], "au1.uicdn.net": [17236], "www.temando.com": [16365], "vipnews.org.uk": [2053], "r.dcs.redcdn.pl": [13919], "to.tui.nl": [2053], "rttire.com": [13710], "cdn-2.tribepad.com": [21789], "soslapsiky.la": [2053], "www.zotac.com": [19072], "utl.pt": [16288], "avasocial.xyz": [2053], "bnhealth.li": [2053], "www.connect.sensiolabs.com": [14831], "waterfoxproject.org": [18298], "rebelsw.in": [2053], "lists.ens.fr": [5029], "tshaonline.org": [16116], "www.appnexus.com": [1148], "dashboard.cloudtrax.com": [3356], "i.raus.co": [2053], "www.privatelayer.com": [13325], "mrning.co": [2053], "anmlst.co": [2053], "adams.to": [2053], "bvan.me": [2053], "download.cyanogenmod.org": [4026], "s420.co": [2053], "moonsys.co": [2053], "00.imgmini.eastday.com": [5119], "m.modul-int.com": [2053], "mail.riseup.net": [14133], "shwks.co": [2053], "www.filesharingshop.com": [20110], "monitor1.returnpath.net": [14067], "xl.vc": [2053], "ge.ch": [21629], "flare.ly": [2053], "www.all-inkl.*": [865], "account.xsolla.com": [18896], "www.gamespot.com": [6543], "s.flus.be": [2053], "morpho.hu": [10787], "www.site.ya.ru": [18930], "ion.postclickmarketing.com": [13174], "deals.iphones.ru": [20488], "eus.squat.net": [21549], "www.ppcoin.org": [12485], "consumers.unian.ua": [21851], "yngs.info": [2053], "server.4mlinux.com": [188], "sent.li": [2053], "kleiner.sc": [2053], "dvd.netflix.com": [11421], "b.wyzers.com": [2053], "mm.gs": [2053], "forum.owncloud.org": [12387], "mb.linuxlovers.at": [9592], "*.myheritage.de": [11023], "*.myheritage.dk": [11023], "app.rplus.biz": [2053], "aarnet.edu.au": [269], "txwine.us": [2053], "www.wikimedia.org.uk": [18595], "www.so.cl": [15293], "mdts.uk.com": [9900], "selfservice.wokingham.gov.uk": [22042], "u.pe.hu": [2053], "waindigo.org": [18244], "srs.myrusakov.ru": [20863], "getlantern.org": [6716], "digil.es": [2053], "wltr.me": [2053], "www.hq.nasa.gov": [11058], "ve.edit.usembassy.gov": [21879], "tehtri-security.com": [16062], "www.kentico.com": [9007], "bonadza.com": [2247], "squirrelmail.org": [15587], "secure.rating-widget.com": [13810], "x.tammifull.com": [2053], "konstfack.se": [9129], "engine.discojuice.org": [4626], "scalingbitcoin.org": [14567], "l.cpx.se": [2053], "cardsagainsthumanity.com": [2896], "yugatech.ph": [2053], "buest.de": [2053], "folder.media": [2053], "toq.qualcomm.com": [13558], "wellsfargo.com": [18491], "marum.de": [10200], "se.ndtex.eu": [2053], "coxbusiness.com": [3808], "securityresponse.symantec.com": [15969], "my.fnf.fm": [2053], "pldn.co": [2053], "stubconnect.stubhub.com": [15789], "vilistlane.ut.ee": [17347], "secure.smugmug.com": [15260], "vendrevite.ricardo.ch": [14100], "url.spjain.in": [2053], "www.ooshirts.com": [12097], "nintendo.com": [11611], "cn.redhat.com": [13909], "cumlou.de": [2053], "pix.isalo.org": [8512], "community.ubnt.com": [17363], "rqrd.me": [2053], "btc-trade.ru": [1596], "m.kinja-static.com": [9057], "www.m3server.com": [9863], "www.addictech.com": [614], "www.nodpi.org": [11629], "support.couchsurfing.com": [19798], "www.dyankov.eu": [4916], "advertserve.com": [695], "portix.bitbucket.org": [2004], "signin.verizon.com": [17918], "www.nhsdirect.wales.nhs.uk": [11102], "essaysreasy.com": [5469], "tinyl.aw": [2053], "help-flint-mi.zerowater.com": [19162], "kicktraq.com": [9035], "photos.meetic.fr": [10381], "*.thinkgeek.com": [16629], "wmdry.com": [2053], "bitmovin.com": [2061], "bepp.es": [2053], "trustly.com": [17071], "www.catalysttg.com": [2957], "www.4sevens.com": [190], "on.wgrz.com": [2053], "*.addisonlee.com": [617], "sutton.greenparty.org.uk": [7052], "alterapraxis.com": [918], "grv.io": [2053], "miar.tk": [2053], "broxtowe.gov.uk": [19598], "tu-ilmenau.de": [16128], "devnet.kentico.com": [9007], "lijst.wirelessleiden.nl": [18668], "forums2.openfiler.com": [12232], "memberful.com": [10420], "courant.chictrib.netdna-cdn.com": [19800], "www.unodc.org": [17272], "mypressplus.com": [13260], "security.webmoney.ru": [18373], "community.dynatrace.com": [4923], "dev.openwrt.org": [12190], "walk.sc": [2053], "www.fightforthefuture.org": [5899], "kundeforsikring.sparebank1.no": [21524], "a.lensmark.kz": [2053], "www.vdi-wissensforum.de": [17768], "ecohenshc.usc.edu": [17564], "deqing.meituan.com": [10405], "capstechops.usc.edu": [17564], "www.netmeister.org": [11436], "hizook.com": [7576], "slhost.com": [15339], "tturl.net": [2053], "www.adversary.org": [694], "www.goeswhere.com": [6931], "ad.directrev.com": [4618], "www.citibank.com.au": [3229], "furaffinity.net": [6387], "rdo.rocks": [2053], "india.isidewith.com": [20414], "radiotochka.kz": [21248], "www.coderbits.com": [3436], "podcast.leadpages.net": [9351], "8.vgc.no": [17776], "c-ch.co": [2053], "lpi.org": [9249], "leicestershire.gov.uk": [9397], "www.bokon.se": [2238], "portal.servercentral.net": [14849], "www.red-bean.com": [13899], "secure.quotestream.com": [13611], "br.inter.net": [8379], "*.thejournalnews.com": [9726], "globalpolicy.org": [6852], "2spn.us": [2053], "s.maxm.org": [2053], "go.nbpa.com": [2053], "elec.ie": [2053], "git.in.moodle.com": [10760], "s96.fr": [2053], "lksc.stanford.edu": [15634], "cwo.ng": [2053], "*.mibbit.com": [10517], "www.fastweb.com": [5805], "lime-technology.com": [20688], "courses.caltech.edu": [2815], "mindhealthconnect.org.au": [10600], "help.gmobb.jp": [6459], "login.hscic.gov.uk": [20388], "secure.cato.org": [2965], "url.dx.cu.cc": [2053], "img.gawkerassets.com": [6594], "ru.cloudflare.com": [3344], "side.cr": [15006], "theiabm.org": [7811], "czoy.in": [2053], "criticalthinking.org": [3875], "geldermalsen.nl": [11324], "www.mediabistro.com": [10336], "ot.obi.ch": [20977], "onlinebanking.tdbank.com": [16050], "wiki.backbox.org": [1638], "cdale.me": [2053], "on.ifthi.com": [2053], "s.keat.es": [2053], "s.twuertele.de": [2053], "watkins.media": [2053], "housingca.co": [2053], "fen.to": [2053], "60plus.vcd.org": [17766], "encrypt.to": [5337], "sv-se.facebook.com": [5733], "thsafshp.uk": [2053], "morrisons.com": [10789], "www.zataz.com": [19115], "forum.userstyles.org": [21883], "1day1shirt.com": [2053], "apan.net": [368], "alternativlos.org": [926], "motocenter.mx": [2053], "trt.photography": [2053], "smlb.in": [2053], "shul.ph": [2053], "osdv.org": [11865, 11866], "velleman.eu": [17888], "id.tokyo2020.jp": [21754], "support.tilera.com": [16718], "sm.ableammo.com": [2053], "devblog.warthunder.ru": [21978], "link.revi.xyz": [2053], "vvib.es": [2053], "lumimart.ch": [3712], "www.hornbach.de": [7640], "fast.wistia.com": [18678], "laa.io": [2053], "*.flashtalking.com": [6021], "btctrade.com": [2437], "b.labaq.com": [2053], "link.frame.is": [2053], "jinzhou.meituan.com": [10405], "nbcnews.to": [2053], "serverstack.com": [14853], "op-webtools.web.cern.ch": [2632], "s.iammike.co": [2053], "piratebay.ukbypass.top": [21771], "cdn2.ustream.tv": [17742], "chrisrhair.com": [2053], "upessencia.ml": [2053], "www.informatica.us.es": [17706], "dgmc.in": [2053], "community.ally.com": [904], "oastyouth.co.uk": [2053], "mts.co": [2053], "www.english-heritageshop.org.uk": [5371], "developer.valvesoftware.com": [17841], "www.siggraph.org": [15022], "knm.tl": [2053], "gx3.me": [2053], "mys1s.net": [2053], "www.subscriberconcierge.com": [10175], "m.3dcenter.org": [147], "metr.lc": [2053], "www.wauland.de": [18304], "thewirel.es": [2053], "feeds.laughingsquid.com": [20641], "designer.bayphoto.com": [1755], "exploithub.com": [5619], "assets.ixwebhosting.com": [8027], "bond.houseoffraser.co.uk": [7709], "webmail5.hyd.gov.hk": [7207], "knet.hks.harvard.edu": [7351], "annual-report.thomsonreuters.com": [16650], "papers.xtremepapers.com": [18904], "icm.cherwell.gov.uk": [3121], "purechat.com": [13471], "sv.rentalserver.jp": [14009], "service.meltwaternews.com": [10416], "mital.me": [2053], "slrme.us": [2053], "w.archiliste.fr": [2053], "knoll.google.com": [6962], "www.develop-online.net": [19904], "adfs.geant.org": [6431], "madewit.love": [2053], "www.perfectmoney.com": [12775], "lowestrat.es": [2053], "whodoyou.trust": [18558], "ie.worldcat.org": [18748], "onenews.cz": [11843], "www.mysociety.org": [10976], "www.mispy.me": [10644], "*.astrill.com": [1337], "fls-eu.amazon.com": [954], "www.blackboard.cornell.edu": [3744], "tracking.verisign.co.nz": [17915], "forums.lanik.us": [9302], "icolo.gy": [2053], "insecure.ws": [8312], "pay.bilibili.com": [1928], "bkp.es": [2053], "*.ssl.qihucdn.com": [13532], "swblo.gs": [2053], "7gee.se": [2053], "montereybayaquarium.tumblr.com": [17100], "spotcam.us": [2053], "www.stopfasttrack.com": [15740], "partners.guidestar.org": [7135], "blog.ipvanish.com": [7946], "*.dawandastatic.com": [4175], "www.firstfloor.org": [5994], "www.interfacelift.com": [8395], "qualidadetur.tk": [2053], "mtln.us": [2053], "ifortuna.sk": [8095], "alumni.cam.ac.uk": [17529], "go.ieit.edu.vn": [2053], "www.centennialbulb.org": [9672], "www.photographer.io": [12857], "cestiny.idnes.cz": [20425], "au.redhat.com": [13909], "www.jako-o.lu": [8643], "cozmedics.com.au": [2701], "regalii.com": [13959], "*.nudevista.com": [11767], "abc7.ws": [2053], "maxpr.in": [2053], "rhu.ms": [2053], "store.earthlink.net": [5106], "mailinglist.bis.doc.gov": [17336], "discuss.gogs.io": [20264], "blog.amazon.in": [19372], "www.winswitch.org": [18641], "mh21.piware.de": [10198], "www.semor.cz": [14339], "s69.cnzz.com": [3391], "internet.bs": [8424], "l.acuerdalo.com": [2053], "api.geokretymap.org": [20227], "*.gourmetgiftbaskets.com": [6986], "link.fauche.net": [2053], "yiyang.meituan.com": [10405], "heanet.ie": [7405], "static.campusjob.com": [2843], "t4ft.de": [5985], "b.jordanbest.co": [2053], "post-gazette.com": [13175], "heaith.info": [2053], "eu-u.openx.net": [12191], "cdn.mediaworks.nz": [10333], "n.p.ly": [2053], "shop.telegraph.co.uk": [16340], "akla.su": [2053], "vzaar.com": [18179], "e.issuu.com": [8526], "www.fotki.yandex.kz": [18957], "ae.utbm.fr": [21886], "ambr.link": [2053], "dashboard.ophan.co.uk": [12255], "phpserver5.anadolu.edu.tr": [1025], "i.screa.ch": [2053], "www.iconical.com": [8067], "simg.uol.com.br": [17276], "lovefilm.*": [9788], "dionysus.krystal.co.uk": [9175], "blog.formstack.com": [6164], "mvg-mobil.de": [9971], "gw1.alicdn.com": [846], "m4c.im": [2053], "udp.buckscc.gov.uk": [19605], "310ei.com": [2053], "tinylnx.us": [2053], "logql.yahoo.co.jp": [18944], "*.quotes.bennetts.co.uk": [1831], "news.alibaba.com": [850], "metroethernetforum.com": [10501], "theblends.xyz": [2053], "cabot.co": [2053], "www.banan.cz": [1528], "magna.unizar.es": [17643], "secure.smartplanet.com": [15237], "www.linksys.com": [9544], "passport.gigabyte.com": [6766], "rdsecure.org": [13746], "m.draugiem.lv": [4838], "www.berkman.harvard.edu": [7351], "www.picshareunit.com": [12880], "edn.re": [2053], "chloe.re": [3152], "learn.ag": [2053], "www.watchmedier.dk": [18293], "noc.livecomm.ru": [20703], "borna.host": [2053], "mychatagent.com": [8843], "tydmag.com": [2053], "www.ukwebsolutionsdirect.com": [17246], "trendin.com": [16994], "www.sofurry.com": [15295], "fogang.meituan.com": [10405], "coord.ca": [2053], "times.am": [21740], "salford.greenparty.org.uk": [7052], "cmp.onlinesbi.com": [12072], "www.ziedot.lv": [19175], "qzs.qq.com": [13514], "www.zaragoza.es": [22070], "gotoassist.com": [6911], "www.flixbus.cz": [6047], "thecy.cl": [2053], "okne.ws": [2053], "www.drwho.virtadpt.net": [4880], "papermart.com": [12585], "backupify.com": [1646], "www.cuhk.edu.hk": [2747], "www.go2arena.com": [6892], "global.acs.org": [966], "okshop.me": [2053], "vaes.vt.edu": [18031], "ppk.li": [2053], "ds5.static.rtbf.be": [14244], "fbrtl.co": [2053], "coloman.nl": [3501], "itemname.com": [20510], "account.3playmedia.com": [153], "content.adfox.ru": [563], "tili.sanoma.fi": [14527], "unscrip.td": [2053], "www.e621.net": [4964], "ctrn.io": [2053], "lists.srlabs.de": [14764], "iam.ziad.com": [2053], "trkclk.cf": [2053], "prethics.com": [2053], "wfol.ly": [2053], "www.pollenwarndienst.at": [13109], "*.meetrics.net": [10385], "henvis.tdc.no": [16052], "centralreg.ru": [3016], "ripe72.ripe.net": [14128], "admin.flixster.com": [6049], "www.timeweb.ru": [16728], "www.moviii.isy.liu.se": [9238], "linuxlovers.at": [9592], "cnscio.us": [2053], "demo.webassign.net": [18351], "xchan.pw": [18852], "codie.cc": [2053], "cryptobin.org": [3925], "sum.uio.no": [17615], "www.radiotochka.kz": [21248], "fdct.me": [2053], "kinox.ag": [20597], "rsob.me": [2053], "me.nursefit.co": [2053], "ats.tumri.net": [17102], "nwsym.ph": [2053], "myors.us": [2053], "www.rfxn.com": [14090], "shop.oo-software.com": [12092], "www.dealfish.co.th": [4338], "i.digiguide.tv": [19918], "www.fluttertoday.com": [6071], "www.ala.org": [337], "www.stayintheknow.co.uk": [21570], "personal.unizar.es": [17643], "www.f5networks.com.br": [5658], "r.dsouza.org.in": [2053], "t.rasp.yandex.kz": [18957], "*.falconjet.com": [4244], "www.chat-place.org": [3087], "vjl.me": [2053], "pediatrics.georgetown.edu": [6668], "edg3.it": [2053], "boldinter.net": [2053], "www.online.cyberaces.org": [4028], "job.cx": [2053], "w4g.pw": [2053], "inspirehep.net": [8327], "www.bbc.com": [1536], "bookit.rmit.edu.au": [13670], "wiki.tizen.org": [16778], "*.twibright.com": [17151], "www.fortum.com": [6177], "support.mcafeesecure.com": [10281], "www.trademarkia.com": [16918], "blog.qt.io": [13545], "boligejer.dk": [2242], "g7f.co": [2053], "ltsusa.us": [2053], "in-it.co": [2053], "audiotent.co.uk": [2053], "webmail.pipni.cz": [12460], "no.3.boardgamearena.com": [2219], "bknot.com": [2053], "www.owncloud.org": [12387], "hij.review": [2053], "baymirror.date": [21217], "tpac.in": [2053], "ssl.datamotion.com": [19859], "www.ispam.nl": [7979], "2url.me": [2053], "auth.local.ch": [9697], "melbourneaquarium.com.au": [10409], "chh411.com": [2053], "hyipvietnam.net": [2053], "cdn.agilebits.com": [765], "downloads.kachingle.com": [8916], "entertowin.at": [2053], "www.buergerbeteiligung.sachsen.de": [14454], "samsu.accu-weather.com": [503], "go.icumed.com": [2053], "appproxy.3sat.de": [162], "orphus.ru": [21031], "audience.umbel.com": [17425], "contacts.ats.aq": [401], "www.properpet.com": [13385], "movie.to": [10824], "dptcourses.wusm.wustl.edu": [18290], "ncdc.noaa.gov": [11272], "new.livejasmin.com": [9650], "menulog.com.au": [20781], "blog.asciinema.org": [1282], "sesi.sc": [2053], "dcdr.me": [2053], "tlscompare.org": [16081], "*.btwifi.com": [1620], "news.gnome.org": [6470], "marketing.1688.com": [44], "bitnami.com": [2062], "kbka.us": [2053], "www.wangyin.com": [18269], "lmidai.ly": [2053], "*.exportawards.gov.au": [1428], "url.pluym.com": [2053], "spenden.akvorrat.at": [811], "felype.com.br": [2053], "*.frugalware-art.org": [21007], "pernasoppa.net": [2053], "liukanshan.zhihu.com": [19173], "www.evil32.com": [5566], "jsclasses.net": [8808], "spop.fm": [2053], "argus.ch": [1225], "planet.com": [12979], "sharath.vc": [2053], "sshine.tips": [2053], "koti.kapsi.fi": [8943], "decisionbriefs.com": [4363], "spoonful.com": [15539], "www.hypovereinsbank.de": [7795], "coad.cc": [2053], "www.nursing.osu.edu": [11959], "dashboard.bloomsky.com": [19559], "reg.test.ft-static.com": [20182], "avonandsomerset.police.uk": [1494], "www.antsdaq.com": [19397], "www.barclayscorporate.com": [1711], "moms.ly": [2053], "*.bronto.com": [2415], "www.findgravy.com": [5958], "skwdr.at": [2053], "i3.pixiv.net": [12960], "uxlnt.link": [2053], "content.courierpost.co.nz": [3784], "climatechangescience.ornl.gov": [11892], "eleccomm.ieee.org": [7862], "omc.overdrive.com": [12365], "live.1688.com": [44], "go.bbb.org": [2053], "disk.yandex.ua": [18961], "pj.meituan.com": [10405], "online.bezeqint.net": [1886], "xiajinguan.jd.com": [8571], "uber.com": [17368], "chico.vc": [2053], "almc.me": [2053], "digitalwpc.com": [4585], "pipni.cz": [12460], "www.wilsoncenter.org": [18621], "redports.org": [13933], "www.osicodesinc.com": [11870], "www.animenewsnetwork.com": [19391], "feefo.com": [5856], "dtc.gplhost.com": [6489], "www.cryptothrift.com": [3935], "ww.jorrito.nl": [2053], "sinialo.espiv.net": [20058], "euobserver.com": [5081], "www.foodwatch.org": [6123], "taa.tools": [2053], "vms.boldchat.com": [2240], "mijnusenet.nl": [20796], "c.oupl.es": [2053], "www.railsbox.io": [13763], "l.meon.be": [2053], "dhgate.com": [4110], "wiki.musl-libc.org": [10912], "corbettreport.com": [3727], "www.quikpayasp.com": [13595], "sohu.wrating.com": [18774], "thecurvy.me": [2053], "rfidatl.as": [2053], "validator.yandex.com.tr": [18954], "cdn.cooldestinations.net": [3708], "f.tmzio.org": [2053], "monkeybrains.net": [10746], "tmed.it": [2053], "gateway.threema.ch": [16668], "www.pubmed.gov": [13423], "avt.ar.com": [2053], "www.maps.yandex.by": [18953], "kurier.at": [9194], "www.roundcube.net": [14219], "blogmhm.com.br": [2053], "*.pss.gov.au": [13441], "www.wku.edu": [22039], "estonia.usembassy.gov": [21879], "jackandjillraffle.com": [8628], "rigidtrack.co": [2053], "www.germantv.net": [6677], "fb.mini.at": [2053], "liftconference.com": [9496], "www.unitymedia.de": [17507], "ernieb.al": [2053], "tinyvs.in": [2053], "uat.rsaconference.com": [13688], "search.zoho.com": [19202], "partnersignup.srsplus.com": [14407], "info.dynatrace.com": [4923], "italy.usembassy.gov": [21879], "cdn.comcast.com": [3525], "api.smartrecruiters.com": [15239], "pnkpl.us": [2053], "vexor.io": [21915], "on-myajc.com": [2053], "zmrx.co": [2053], "financialcryptography.com": [5938], "*.signon.org": [10818], "www.sub.uni-goettingen.de": [17451], "ocamson.eu": [2053], "superstrands.com": [15873], "cisl.stanford.edu": [15634], "*.megaglest.org": [10395], "socpol.co": [2053], "irns.de": [2053], "www.jud2.ct.gov": [2738], "tchmrk.co": [2053], "*.tvbrowser.org": [16138], "nwnd.co": [2053], "mtclb.in": [2053], "rbdigital.com": [21264], "amana.us": [2053], "links.uv.es": [17750], "bugs.kubuntu.org": [9180], "*.avg.com": [411], "isc-events.com": [8410], "www.pheedcontent.com": [12829], "i.luke.in": [2053], "docs.particle.io": [12626], "webdev.co": [2053], "bcj.to": [2053], "assets-secure.guim.co.uk": [7142], "azzy.ch": [2053], "rwne.ws": [2053], "offerpop.com": [11938], "login.moniker.com": [9018], "cbpr.link": [2053], "go.iorz.cc": [2053], "login2.capitalone.com": [2878], "enth.to": [2053], "downloads.wired.com": [18664], "www.fromorbit.com": [6340], "manning.com": [20748], "serrad.as": [2053], "ig.gy": [2053], "infoeuri.criosweb.ro": [3870], "the42.ie": [21688], "pardus.org.tr": [12606], "plrx.gs": [2053], "rmj.me": [2053], "webprospector.de": [18377], "ru.chaturbate.com": [3093], "escan.com": [18051], "www.las.portsmouth.gov.uk": [21175], "tpb.unlockme.site": [21771], "postdirekt.de": [19901], "lg.ht": [2053], "www.cspinet.org": [2733], "tags.bkrtx.com": [19549], "zhucunren.jd.com": [8571], "bintray.com": [1951], "utva.link": [2053], "intranet.cardiff.ac.uk": [2895], "sticker.yadro.ru": [18935], "briggs-riley.com": [2371], "animenfo.com": [1066], "primal.ly": [2053], "txmnth.ly": [2053], "realzips.net": [2053], "consult.northyorks.gov.uk": [20930], "maykop.rt.ru": [13703], "apps.cheshirewestandchester.gov.uk": [19699], "lists.opensource.org": [12222], "wolfram.com": [18697], "eimem.uniovi.es": [17479], "www.normation.com": [11686], "haikou.meituan.com": [10405], "www.maelsoucaze.com": [10010], "osn.io": [2053], "*.brightkidsnyc.com": [2381], "open.unionpay.com": [17478], "guangyuan.jd.com": [8571], "mailman.nanog.org": [11688], "forestsangha.org": [6147], "extranet.auchan.ru": [1379], "*.totalchoicehosting.com": [16873], "www.knowledge.hsbc.co.uk": [20375], "syit.us": [2053], "gscsa.co": [2053], "chechnya.beeline.ru": [1801], "s115.cnzz.com": [3391], "doublefine.com": [4805], "store.winzip.com": [18633], "o9.hitravel.xyz": [2053], "ronis.ninja": [2053], "maeve.is": [2053], "num.ist": [2053], "laproxsites.com": [9307], "sols.uow.edu.au": [17636], "mspartner.microsoft.com": [10543], "fr.ree.me": [2053], "kraft.ca": [2053], "www.gihyo.jp": [6780], "s.frev.jp": [2053], "go.bioshack.org": [2053], "cnbcafri.ca": [2053], "zapunited.com": [19108], "*.sourcemaking.com": [15424], "tieba.baidu.com": [1661], "shackl.es": [2053], "filmpa.net": [2053], "i.gather.london": [2053], "r.khanhhoa79.vn": [2053], "go.neto.me": [2053], "hansard.parliament.uk": [21075], "jasonl.co": [2053], "berkeley.edu": [17526], "newspics.us.to": [2053], "blade24.ual.es": [17361], "jhweb.dev.jhu.edu": [16562], "s.lv73.net": [2053], "site-cdn4.ghosteryenterprise.com": [6750], "*.img-dpreview.com": [4580], "*.mobilenations.com": [10688], "secwiki.org": [14702], "www.ectc-online.org": [5120], "deacs.info": [2053], "plrm.in": [2053], "www.rogerfederershop.com": [14179], "easy-share.com": [3877], "pharmgkb.org": [21115], "ddos.arbornetworks.com": [1193], "*.dartmouth.edu": [4236], "telepigeon.com": [16350], "mycrains.crainsnewyork.com": [3828], "www.onlinecensorship.org": [12074], "www.qconsf.com": [13510], "www.angus.gov.uk": [1059], "livedemo.xsolla.com": [18896], "stec-t08.xhcdn.com": [18815], "www.appdynamics.com": [1143], "www.snelserver.com": [15279], "www.shmoocon.org": [14954], "ytchannelembed.com": [18928], "jngl.ph": [2053], "akb.ch": [20574], "*.hertz-carsales.com": [7511], "aphyr.com": [1129], "j-url.com": [2053], "homes.ngs.ru": [20907], "coah.co": [2053], "txstdz.it": [2053], "i.g0.eu": [2053], "initlab.org": [8294], "cgar.us": [2053], "multica.re": [2053], "helpdesk.uic.edu": [17517], "infomaniak.ch": [8261], "mail.com": [10039], "www.googletagservices.com": [6971], "www.international.uni-mainz.de": [17611], "londonmag.co": [2053], "hg.libsdl.org": [9449], "froggynet.com": [20177], "bugs.vhffs.org": [21920], "fugou.meituan.com": [10405], "bugs.eclipse.org": [5150], "bewell.stanford.edu": [15635], "*.afx.ms": [755], "berniewo.ng": [2053], "app.engagesciences.com": [5361], "bse.vt.edu": [18031], "dev.mozilla.jp": [10844], "*.energylivenews.com": [5358], "yaliapp.irex.org": [20497], "s.borcel.com": [2053], "estr.la": [2053], "br.creativecommons.org": [3848], "www.veil-framework.com": [17885], "www.ilovebluesea.com": [8038], "www.aegeanair.com": [7041], "wptips.at": [2053], "bizchannel.cimbthai.com": [2665], "picostocks.com": [12877], "emploi.cnrs.fr": [6314], "webap.is": [2053], "*.nationalrail.co.uk": [11245], "selfserve.n-kesteven.gov.uk": [11045], "bit.corq.co": [2053], "singapore.webconsole.linode.com": [9547], "outg.ro": [2053], "status.intercom.io": [8392], "suite.tiki.org": [16715], "gibraltar.at": [20236], "account.golem.de": [6946], "resources.convio.com": [3696], "laz.me": [2053], "kinko.me": [9061], "citywerkz.com": [3257], "akn.cl": [2053], "njr80.ml": [2053], "roadiculo.us": [2053], "objc.tv": [2053], "coinurl.com": [3463], "www.west-lindsey.gov.uk": [18501], "osec.pl": [12110], "mckry.co": [2053], "jira.icony.com": [8069], "static.58.com": [201], "scholar.google.com.*": [6965], "pensionsonline.ucc.ie": [17210], "researchblogging.org": [14027], "de-eo.dict.cc": [4536], "go.spsdc.org": [2053], "www.electronicintifada.net": [5256], "www.pekwm.org": [12741], "go.pxa.ca": [2053], "committedgiving.uk.net": [19759], "roseq.co": [2053], "on.nhsfife.org": [2053], "masterh4.adriver.ru": [573], "search.secondlife.com": [14706], "prks.org": [2053], "*.hypem.com": [7789], "tmdrn.com": [2053], "news.walmart.com": [18260], "7-wave.com": [2053], "stuartcoat.es": [2053], "www.shop.heise.de": [7428], "airo.ws": [2053], "www.kvack.org": [9200], "christie.events": [2053], "l.mfazio.me": [2053], "campustechnology.com": [19635], "rompe.la": [2053], "static.wipmania.com": [18207], "bishkek.usembassy.gov": [21879], "source.pixiv.net": [12960], "l-cs.me": [2053], "*.wsjsafehouse.com": [11513], "js.static.shropshire.gov.uk": [21440], "webdam.com": [18356], "webpayments.rutland.gov.uk": [21345], "tnsglobal.com": [16096], "www.brianchristner.io": [19590], "crlplnt.me": [2053], "az3.tv": [2053], "corner.squareup.com": [15580], "nuclearinnovationworkshop.inl.gov": [20462], "media.rbl.ms": [13825], "uml.worldcat.org": [18748], "juliel.me": [2053], "imensa.de": [8136], "webcheck.co": [2053], "mechse.illinois.edu": [17544], "firstgiving.com": [5984], "torservers.net": [16866], "nichs.us": [2053], "feeds.pinboard.in": [12891], "motorhomes.autotrader.co.uk": [19457], "autistica.org.uk": [19454], "wac.mn": [2053], "cirque.me": [2053], "9ar.de": [2053], "weekplan.net": [18476], "www.speedcoin.org": [15506], "archives.williams.edu": [18616], "8.*.wdfiles.com": [18593], "sbts.worldcat.org": [18748], "donate.oxfam.org.uk": [12393], "recordedfuture.com": [13885], "blog.zamzar.com": [18730], "moodle.bury.gov.uk": [19613], "ads.aiha.org": [19327], "dairasaboia.tk": [2053], "www.imodules.com": [7909], "kluk.pw": [2053], "robustirc.net": [21321], "dcb17.me": [2053], "www.mexicoleaks.mx": [10506], "www.nublue.co.uk": [11758], "www.pixcept.de": [12952], "dy.meituan.com": [10405], "lincolnshire.spydus.co.uk": [21546], "neo-interactive.hu": [11337], "www.documentfreedom.org": [4716], "www.myworldofwork.co.uk": [20870], "disabilityresources.uic.edu": [17517], "www.petrogen.com": [12812], "loopu.in": [2053], "u301.me": [2053], "clubic.cc": [2053], "cufp.org": [2746], "shr.feature.fm": [2053], "piphone.lqdn.fr": [9267], "www.inxpo.com": [8482], "cvirtual.ual.es": [17361], "deals.slashdot.org": [15192], "rotaryview.com": [14208], "assets.shootingillustrated.com": [21427], "thisgif.com": [2053], "www.openhost.net.nz": [12234], "myhome.1688.com": [44], "lehka.ovh": [2053], "mssql.active24.cz": [19276], "changemg.info": [2053], "education.gov.uk": [20009], "identity.linuxfoundation.org": [9572], "static1.gac.edu": [6418], "www.gdargaud.net": [7141], "whirlpool.net.au": [18542], "allizom.org": [896], "pobierak.jeja.pl": [8698], "6.url.cn": [21874], "myuofmhealth.org": [17665], "convio.berkeley.edu": [17526], "agbr.me": [2053], "jayso.nz": [2053], "emakeup.love": [2053], "blog.junglee.com": [8832], "bzone.link": [2053], "on.edmhub.com": [2053], "listas.ulpgc.es": [17411], "ibusiness.shacombank.com.hk": [14903], "static.scripting.com": [14663], "www.collegeclublife.com": [2695], "www.consumerswin.com": [3670], "pricerunner.com": [13280], "app.thestorefront.com": [16580], "rightnow.com": [14116], "svenskaspel.se": [15927], "choice.microsoft.com": [10543], "fujitsu-webmart.com": [6362], "nakh.li": [2053], "a2.lscdn.net": [9256], "www.piwik.rrzn.uni-hannover.de": [17453], "r-news.co": [2053], "tine.pw": [2053], "espanol.victoriassecret.com": [17964], "ecs.osu.edu": [11959], "bmsh.co": [2053], "url.ps3blog.net": [2053], "www.ssusa.org": [21556], "fmv.se": [5692], "www.elegantthemes.com": [5258], "blog.jquery.com": [8598], "pgbrandsampler.ca": [13349], "www.archlinux.fr": [1198], "www.tcfmailvault.info": [16046], "risiinfo.com": [13666], "mega.co.nz": [10390], "tortoyo.tk": [2053], "www.introversion.co.uk": [8449], "greenhouse.io": [7058], "partnerportal.sophos.com": [15403], "go.jobs.com.pk": [2053], "perm.rt.ru": [13703], "s.gtaind.com": [2053], "go.vmb.ae": [2053], "i.radiotemp.com": [2053], "uk.zopa.com": [19226], "site.yandex.by": [18953], "musicbox.netcologne.de": [11379], "bugs.pcbsd.org": [12421], "s.uniqlo.com": [2053], "lists.freebsoft.org": [6240], "akbar.co": [2053], "*.snagajob.com": [15270], "m.cff.ch": [15946], "www.neqos.nhs.uk": [11102], "www.northwest.greenparty.org.uk": [7052], "s.7fukujin.org": [2053], "optin.to": [2053], "ppmo.it": [2053], "pinpoint.microsoft.com": [10543], "argusleader.com": [1226], "ysa.li": [2053], "dpkn.me": [2053], "steaknshake.com": [15701], "content-baseball.gunosy.com": [7151], "gynecomastia.org": [7169], "wt.cherry.de": [3120], "*.applepartsstore.com": [1163], "franken.de": [6220], "opengl.org": [12137], "static.hungryhouse.co.uk": [7766], "forensicinstitute.nl": [6145], "www.userstory.ru": [21882], "mailhost.ut.ee": [17347], "www.malcovery.com": [10086], "m.kyle.gs": [2053], "www.cloudcontrol.com": [3342], "www.nypf.org.uk": [20971], "piwik.disconnect.me": [4627], "www.thebureauinvestigates.com": [16519], "indystar.com": [8217], "okom.it": [2053], "controller.osu.edu": [11959], "iteu.megabus.com": [10401], "p.sfx.ms": [14894], "*.showmecon.com": [14984], "emarketing.thestar.com": [16846], "cz.meituan.com": [10405], "images.womenshealth.de": [18712], "americanstudies.georgetown.edu": [6668], "nfcu.me": [2053], "clar.in": [2053], "die-linke.de": [4537], "h-ssl.ligatus.com": [9502], "mail-archive.com": [10036], "www.alumni.buffalo.edu": [17583], "varnish-cache.org": [17861], "www.webcijfers.nl": [18353], "www.medialinx-academy.de": [10340], "thestar.com": [16846], "opdaterdinpc.tdc.dk": [16051], "www.wokingham.gov.uk": [22042], "mail.yandex.com": [18956], "vintageurl.com": [2053], "hari.is": [2053], "zenmate.lt": [19133], "jama.md": [2053], "www.voyagegroup.com": [18154], "www.youtube.ee": [19016], "flatlinesecurity.com": [6023], "zenmate.li": [19133], "productsandservices.bt.com": [1593], "*.csmres.co.uk": [8454], "www.snl.com": [14381], "blog.safello.com": [14471], "diav.co": [2053], "subterraneangames.com": [15822], "www.southlanarkshire.gov.uk": [15439], "byrise.co": [2053], "literotica.com": [9628], "ondarossa.info": [12024], "vhalo.cc": [2053], "saucytime.com": [14543], "account.login.aol.com": [361], "engr.washington.edu": [17577], "mims.com": [9910], "sciencenews.org": [14621], "api.alpha.linode.com": [9547], "diasporafoundation.org": [4532], "lnk.cthue.com": [2053], "medias.myskreen.com": [10974], "evdrive.evdriveinfo.com": [5083], "www.habrahabr.ru": [7262], "www.bluemanticketing.com": [2194], "actn.it": [2053], "www.zapchain.com": [19104], "domedia.info": [2053], "member-registration.neighbourhoodalert.co.uk": [20884], "ontogenesis.knowledgeblog.org": [9100], "freedominc.nl": [6289], "flyertalk.com": [6079], "l.forex13.com": [2053], "rdppr.it": [2053], "vocms0153.cern.ch": [2631], "www.ligatus.com": [9502], "tcfmailvault.info": [16046], "ics.imensa.de": [8136], "www.brmlab.cz": [2399], "eu.vitalizei.me": [2053], "cdn.tofour.net": [16793], "blogs.sophos.com": [15403], "pixelh8.co.uk": [12956], "share.gerste.in": [2053], "www.logentries.com": [9715], "*.ning.com": [11609], "pass.1688.com": [44], "www.oyunhizmetleri.com": [12398], "*.secure.xtenit.com": [18902], "www.heise-gruppe.de": [7428], "sheet.zoho.com": [19202], "idearcmedia.com": [15869], "musicofnow.co": [2053], "righthaven.com": [14118], "www.taiga.io": [16166], "www.apm.com": [372], "l.66099.co.uk": [2053], "t.uwsc.org": [2053], "developers.over-blog.com": [12361], "userreport.com": [17729], "prld.it": [2053], "*.hartware.de": [7348], "mi21.co": [2053], "*.bravemedia.org": [2345], "forecast.io": [6141], "nrb.uy": [2053], "gcts.us": [2053], "community.linuxmint.com": [20700], "agr.hm": [2053], "go.amihub.com": [2053], "gom.io": [2053], "*.blogspot.ru": [2166], "qops.co": [2053], "maapatl.net": [2053], "comd.gs": [2053], "mt.cx": [2053], "btccpag.es": [2053], "complinet.com": [19766], "community.mega.com": [10389], "yagi-antennas.com": [18936], "mra.ski": [2053], "accounts.alipay.com": [857], "gentoo.wheel.sk": [18536], "bhipr.co": [2053], "haskoin.com": [7363], "download.avm.de": [1493], "qolo.gy": [2053], "aerote.ch": [2053], "freebsdnews.com": [6238], "go.freddy.mx": [2053], "mobilecore.com": [10683], "torguard.net": [16838], "go.elms.pro": [2053], "itj1.top": [2053], "icm.aexp-static.com": [717], "zlr.tw": [2053], "cdn.coverstand.com": [3796], "scans.io": [14576], "rabota.yandex.by": [18953], "aclj.org": [976], "twt.tv": [2053], "www.customtiburon.com": [4011], "tarsnap.com": [16220], "*.okpartypix.com": [6647], "links.nduf.org": [2053], "www.grandhaventribune.com": [7019], "wiki.zmanda.com": [19198], "netid.usc.edu": [17564], "www.silvawoodflooring.co.uk": [15043], "bartgrp.uk": [2053], "nodesecurity.io": [11646], "babsn.co": [2053], "www.accessedge.com": [19262], "netstat.cern.ch": [2632], "go.son4r.com": [2053], "ghowl.in": [2053], "go.jcf.gov.jm": [2053], "r.ournet.biz": [2053], "autodiscover.sedoholding.com": [14788], "*.memset.com": [10428], "mentoringcentral.net": [10439], "newgam.es": [2053], "pub.lmmp.nasa.gov": [11058], "colicobe.be": [2053], "elotouchexpress.com": [5279], "www.nimbledeals.com": [11601], "www.afp548.com": [322, 323], "reevoo.com": [13947], "manage.amoad.com": [352], "trndl.in": [2053], "noodleremover.news": [11665], "occ.upf.edu": [17674], "www.newrepublic.com": [11501], "declaredthoughtfulness.co": [19888], "*.cengagebrain.com": [2998], "help.campaignmonitor.com": [2839], "on.thec-l.com": [2053], "espoarchive.nasa.gov": [11058], "www.ylilauta.org": [22104], "scopeblog.stanford.edu": [15635], "videogateway.tv": [3570], "idms.financialpost.com": [5940], "s-mb.us": [2053], "ifightsurveillance.net": [8033], "honors.uw.edu": [17355], "blog.documentfoundation.org": [16487], "irantun.es": [2053], "webmaster.yandex.com": [18956], "www.t-analytics.com": [21642], "www.karma.mg": [8951], "muni.cz": [10892], "www.zendition.net": [19140], "apn.fyi": [2053], "details.com": [4481], "dotnettools-support.jetbrains.com": [8708], "wuphysicians.wustl.edu": [18290], "grooveshark.com": [7091], "rarbg.com": [21257], "pogliad.ua": [21159], "secure.paytoll.eu": [12701], "arts.stanford.edu": [15635], "in.1688.com": [44], "wp.outbrain.com": [12355], "docs.ftl.events": [2053], "images.cmbinsight.hsbc.com": [20376], "*.ashlands.net": [10747], "spanish.guatemala.usembassy.gov": [21879], "catgr.am": [2053], "www.primesecoenergie.com": [13288], "www.adultdp.portsmouth.gov.uk": [21175], "feedxl.co": [2053], "www.elkosmas.gr": [20026], "theglobeandmail.com": [6865], "nowi.cz": [2053], "haoma.baidu.com": [1661], "soundviz.com": [15407], "www.source.uillinois.edu": [17238], "mylootcr8.com": [2053], "babymed.com": [1634], "static.qiyi.com": [20413], "bbte.am": [2053], "taoeffect.com": [16204], "preach.li": [2053], "wb.kvbaden.ch": [2053], "lists.oasis-open.org": [11805], "interfacelift.com": [8395], "people.live.com": [9644], "lh6.google.com.*": [6965], "bit.icoff.ee": [2053], "www.hackover.de": [7288], "monash.edu": [10728], "app.snyk.io": [21494], "csul.iii.com": [9535], "dft.gov.uk": [19908], "direct.money.pl": [10735], "ctscentr.al": [2053], "slskin.co": [2053], "www.iospp.org": [7927], "suqianguan.jd.com": [8571], "www.scotch.io": [14637], "www.mangaupdates.com": [10113], "www.staffordshire.gov.uk": [15622], "canvsp.com": [2053], "open.exmail.qq.com": [13514], "kinfolk.com": [9049], "vgndu.de": [2053], "api2.whatsbroadcast.com": [18535], "bitballoon.com": [1975], "wthms.co": [2053], "dl.twrp.me": [16146], "www.hillingdon.gov.uk": [7550], "www.roofclimb.com.au": [21326], "*.mytextgraphics.com": [10981], "www.myapnic.net": [1292], "cojoin.co": [2053], "giv3.org": [2053], "creativevirtual.com": [3855], "admin.instantpage.me": [8337], "kmp.bz": [2053], "mouse.pt": [2053], "ssl15.ovh.net": [12378], "www2.mcafeesecure.com": [10281], "aces.wakefield.gov.uk": [21966], "comm.stanford.edu": [15635], "dotsec.com": [4790], "gladrags.com": [6818], "myprofile-mktas.oracle.com": [12284], "thumb.holidaypirates.com": [20349], "b3a.me": [2053], "cbscorporation.com": [19658], "dfir.to": [2053], "1link.mail.ru": [10040], "1sq.me": [2053], "edit.mux.de": [10924], "tanneries.squat.net": [21549], "freevps.us": [6252], "ubuntu-mate.boutique": [17377], "tmg.mc": [2053], "s-bn.co": [2053], "blast.ncbi.nlm.nih.gov": [11241], "support.taobao.com": [16205], "www.i.cx": [7798], "link.ngengs.com": [2053], "www.sonymusic.com": [15395], "osalt.com": [21033], "kickstarter.com": [9034], "s.site-home.ru": [2053], "nihpublications.od.nih.gov": [11241], "jub.xyz": [2053], "www.openmrs.org": [12149], "i0.cz": [7801], "sektioneins.de": [14807], "buy.vedomosti.ru": [21900], "inwx.ch": [8381], "www.luckymarmot.com": [9814], "cms.hdfcbank.com": [7389], "newoldcool.com": [2053], "www.doublepimp.com": [4812], "level3cdn.kiva.org": [9077], "tylerj.us": [2053], "dwin1.com": [4169], "facebook.freifunk.net": [6311], "videos.somethingawful.com": [15379], "readwrite.com": [13846], "get.active": [2053], "www.thecanadianpress.com": [2860], "secure.innocenceproject.org": [8300], "www.skylineregistrations.co.uk": [15182], "www.shaklee.com": [14899], "kutv.com": [8907], "yieldlab.de": [18988], "www.muscleandstrength.com": [10896], "liquidlight.co.uk": [9604], "gss1.bdstatic.com": [19507], "on.mcat.me": [2053], "musicnotes.com": [10908], "go.drankush.com": [2053], "www.walthamforest.gov.uk": [18262], "splitpdf.com": [21537], "imagery.pragprog.com": [13238], "jobs.usc.edu": [17564], "wingware.com": [18654], "shareth.ru": [2053], "ijes.se": [2053], "l.calzo.co.uk": [2053], "go.matt.pw": [2053], "online.mbank.sk": [9888], "ibiwa.net": [2053], "zhucheng.meituan.com": [10405], "welike.to": [2053], "fldemo.nsf.gov": [11249], "smmt.co": [2053], "nurf.it": [2053], "ff14.de": [2053], "www.turtl.it": [17122], "pentest.link": [2053], "300run.in": [2053], "www.keen.io": [8989], "l.mdxdave.de": [2053], "spctrm.stanford.edu": [15634], "www.tlasecure.com": [21746], "fishercenter.georgetown.edu": [6668], "www.myhealth.va.gov": [17297], "gestiona.unizar.es": [17643], "xplt.ch": [2053], "ven.ky": [2053], "account.fas.harvard.edu": [7351], "totally.awe.sm": [1500], "tpbmirror.us": [21711], "tuleap.org": [17098], "anapirana.com": [19387], "lafb.co": [2053], "www.solidarites.ch": [21504], "go.anat.pt": [2053], "www.abovealloffers.com": [864], "cdneu.wahanda.net": [18243], "ax-link.de": [2053], "responsys.com": [14048], "www.bookonline.saudiairlines.com": [14544], "hoseasons.co.uk": [18790], "mrws.decc.gov.uk": [19885], "resources.openmpt.org": [12148], "vibrantmedia.com": [17957], "widas.co": [2053], "transperfect.com": [21782], "czpaes.tk": [2053], "haicheng.meituan.com": [10405], "on.solujin.net": [2053], "www.eeqj.com": [5003], "sandbox.itunes.apple.com": [1160], "static.jsconf.us": [8605], "www.lessbuttons.com": [20666], "myesi.esi-group.com": [5058], "intranet.huit.harvard.edu": [7351], "u.tgu.ca": [2053], "spin.atomicobject.com": [1363], "*.infile.com": [8240], "bcy.ca": [7020], "ricardofra.ga": [2053], "brighteroption.com": [2383], "utrn.ws": [2053], "www.solidarity-us.org": [15370], "ivents.ya.ru": [18930], "hjaelp.virk.dk": [18032], "kha.bar": [2053], "url.gwardia.org": [2053], "nailso.me": [2053], "imcpr.xyz": [2053], "m.agar.io": [757], "chromeadblock.com": [556], "its.345am.com": [2053], "www.crp.gov.sk": [15217], "www.barkerjr.net": [1719], "static.dezeen.com": [4516], "auxa.no": [2053], "www.mobileapptracking.com": [20812], "es.medicare.gov": [20772], "www.platformadmin.com": [13004], "*.worldremit.com": [18754], "ministerialtidende.dk": [10615], "www.speedtest.net": [15509], "lhcb.cern.ch": [2632], "chasepaymentech.com": [3086], "www.gateshead.gov.uk": [6584], "ventrachicago.com": [17902], "id.nlm.nih.gov": [11241], "mirror2.openwrt.org": [12190], "secularstudents.org": [14715], "spa.lastminute.com": [9318], "lookmark.link": [2053], "fluiddigit.al": [2053], "sl.petrbelik.cz": [2053], "htbridge.com": [7248], "via.wickett.ca": [2053], "ct.buzzfeed.com": [2531], "kr.norton.com": [11703], "api.sndcdn.com": [15278], "portal.smartertools.com": [15241], "blog.zanox.com": [19101], "www.tinfoilsecurity.com": [16743], "b1g.news": [2053], "gayswap.com": [6596], "webshopapp.com": [18443], "xp.meituan.com": [10405], "www.ufcfit.com": [17227], "pco.lt": [2053], "git.nic.cz": [11572], "script.wpm.neustar.biz": [11472], "eb-magic.com": [2053], "safedr.ug": [2053], "mnza.us": [2053], "mail.usp.br": [17326], "stayfriends.de": [15698], "www.condor.de": [3626], "soulmates.guim.co.uk": [7142], "wrdc.mp": [2053], "experts-proves.upf.edu": [17674], "rtardy.com": [2053], "ld-7.itunes.apple.com": [1160], "zh-cn.3.boardgamearena.com": [2219], "watchdog.truste.com": [16111], "sp.ngs.ru": [20907], "bess.gs": [2053], "go.umw.edu": [2053], "hpm.li": [2053], "preferences.capitalone.com": [2878], "gigsoup.co": [2053], "tcr.tynt.com": [17183], "whitelabeldating.alcuda.com": [825], "dev.windowsphone.com": [18646], "krys.co": [2053], "login.raiffeisen.ch": [13761], "nl.com.vn": [2053], "geor.gr": [2053], "grasp.fm": [2053], "*.informabtl.com": [13953], "acmcu.georgetown.edu": [6668], "fly-acs.com": [2053], "firefox.enhancedsteam.com": [5375], "fengyang.meituan.com": [10405], "www.esa.int": [5535], "st8.gismeteo.ru": [6789], "maam.ru": [20734], "www.mailvelope.com": [10058], "forum.popcorn-time.se": [13141], "cnnct.io": [2053], "secure2.insideknc.com": [8914], "tools.oasis-open.org": [11805], "ticketf.ly": [2053], "admin.pageuppeople.com": [21066], "abbr.it": [2053], "cdn1.thr.com": [16068], "shebpr.es": [2053], "saras.link": [2053], "c.delsonmoo.com": [2053], "*.nintendo.com": [11611], "geier.md": [2053], "mail.hover.com": [7712], "khz.bz": [2053], "*.poppyuk.com": [13145], "a.thupukari.com": [2053], "wii.re": [2053], "theweekendedition.com.au": [18477], "teodoro.ml": [2053], "pmln.cf": [2053], "space.gizmodo.com": [6817], "www.gosi.gov.sa": [14545], "leshop.ch": [10566], "oes.umd.edu": [17549], "www.simplebooklet.com": [15070], "jdahl.me": [2053], "ruang.tk": [2053], "svn.siedler25.org": [14065], "lilongwe.usembassy.gov": [21879], "train.jd.com": [8571], "www.coreboot.org": [3737], "1.davidfri.de": [2053], "hackintosh.top": [2053], "theprivacyblog.com": [16497], "shopmag.biz": [2053], "*.instellaplatform.com": [8341], "citeulike.org": [3226], "ev-end.com": [2053], "eidq.org": [5017], "*.wolframalpha.com": [18698], "zenpayroll.me": [2053], "www.sacredcrystalsingingbowls.net": [14456], "studentaffairs.illinois.edu": [17544], "cb8.me": [2053], "www.gajim.org": [6523], "www.verisign.fr": [17915], "sl.syllable.org": [21632], "bhodisoft.com": [1890], "*.partypoker.com": [12629], "whitehothair.co.uk": [18550], "deb.theforeman.org": [21699], "skeptic.org.uk": [15149], "randombit.net": [13781], "*.mybalsamiq.com": [1678], "pdora.co": [2053], "support.name.com": [11204], "blog.couchsurfing.com": [19798], "assetmanagement.hsbc.com": [7233], "lfgss.com": [9228], "igboaka.com": [2053], "sungardhe.com": [15849], "go.ahazan.com": [2053], "image-cdn.zap2it.com": [19103], "beta.asana.com": [1277], "www.cnaf.infn.it": [7913], "juso.ch": [20563], "developer.foursquare.com": [6200], "fushun.meituan.com": [10405], "moodle.org": [10763], "kb.umd.edu": [17549], "britishg.as": [2053], "gocastl.es": [2053], "to.aetn.org": [2053], "event.rakuten.co.jp": [13767], "citizenfour.thecthulhu.com": [16600], "joinvr.io": [2053], "geoplatform.gov": [6660], "pedroventura.es": [2053], "www.operatingsystems.io": [12253], "swtor.com": [15960], "wanikani.com": [18270], "logger.scot.nhs.uk": [11102], "bund.de": [17939], "rabotilnica.com.mk": [13724], "digikam.org": [4557], "otmz.se": [2053], "www.yandex.kz": [18957], "npc.me": [2053], "i.bijdaphne.nl": [2053], "ea1.earcu.com": [4968], "telex.cc": [16355], "tnm.ext.here.com": [7465], "www.mod.gnutls.org": [6888], "tiles.mapbox.com": [10132], "assets1.jimstatic.com": [8720], "www.more-ip-event.net": [10772], "grp10.ias.rakuten.co.jp": [13768], "www.archive.li": [1203], "www.tagilka.ru": [21651], "www.scepsis.ru": [14585], "secure.admin.myvirtualpaper.com": [11009], "www.remotestorage.io": [13996], "bromley.greenparty.org.uk": [7052], "chat.echoplex.us": [5148], "icc4.it": [2053], "admin.iovation.com": [8490], "dploy.io": [19894], "isbgj.me": [2053], "joy.as": [2053], "faita.ru": [2053], "phlm.cc": [2053], "arteradio.com": [19422], "www.mysliderule.com": [11007], "jgp.mx": [2053], "www.commoncraft.com": [3554], "pfla.nz": [2053], "korbit.co.kr": [9134], "www.tvlicensing.co.uk": [17138], "consultations.southwark.gov.uk": [15445], "integr.al": [2053], "api.rasp.yandex.kz": [18957], "static.trustedshops.com": [17062], "fast10.fonts.com": [6110], "cdn.dynatrace.com": [4923], "uk-squatting-archive.squat.net": [21549], "psc.edu": [12502], "blog.nustarz.com": [11761], "www.efax.co.uk": [5206], "e-cpa.com": [2053], "lizdp.ca": [2053], "media.govdelivery.com": [6989], "use.typekit.net": [17188], "journal-news.net": [8790], "static.beeline.ru": [1801], "assets.software.eu.playstation.com": [13015], "open.login.yahooapis.com": [18943], "www.ekmsecure.co.uk": [5233], "oregrown.co": [2053], "w2.mtyrc.org": [2053], "*.overleaf.com": [12372], "ticketsage.com": [16073], "futd.us": [2053], "browsercan.rapid7.com": [13788], "client.museter.com": [10901], "www.biapreview.homeoffice.gov.uk": [20355], "incisivemedia.com": [8194], "forms.bracknell-forest.gov.uk": [19584], "dangyang.meituan.com": [10405], "www.enderunix.org": [5347], "ask-inc.com": [16939], "parkingonline.lincoln.gov.uk": [9523], "www.neo900.org": [11338], "investors.com": [8471], "baltreds.us": [2053], "www.melectronics.ch": [10411], "eindbazen.net": [5226], "bit.hdmovie.vn": [2053], "entportal.ieeeusa.org": [7863], "go.tanaja7.com": [2053], "app.prospecteye.com": [13390], "glp.lv": [2053], "bitlove.org": [2050], "crikey.com.au": [3866], "www.experian.com": [5615], "geeksi.de": [2053], "planet.mcafee.com": [10282], "stocial.ca": [2053], "l.1043.io": [2053], "hi.ichdaf.com": [2053], "m.revolutiontt.me": [14083], "msidocs.com": [2053], "booleweb.ucc.ie": [17210], "www.gorickshaw.com": [6920], "s.manhim.net": [2053], "cvrep.us": [2053], "common.staticskynet.be": [15686], "www.newcastle-staffs.gov.uk": [20896], "kepek.444.hu": [172], "smn.onl": [2053], "*.upc.edu": [13120], "www.publons.com": [13447], "meldrada.net": [2053], "www.wpstartbox.com": [15659], "verisign.com.au": [17915], "bleutrade.com": [2124], "samba.catracalivre.com.br": [2967], "faq.kaywa.com": [8980], "docs.godotengine.org": [20263], "zheleznogorsk-kurskaya-obl.beeline.ru": [1801], "www.livenation.*": [9642], "www.ionaudio.com": [7924], "*.gameswelt.de": [6560], "*.translink.co.uk": [16950], "inf.shoes": [2053], "russian.estonia.usembassy.gov": [21879], "rtek2000.com": [13705], "maps.yandex.com.tr": [18954], "staffwiki.library.georgetown.edu": [6668], "go.ckk.im": [2053], "secure.walmartimages.com": [18261], "images.akban.org": [803], "*.huffingtonpost.com": [7745], "www.drownedinsound.com": [4870], "docs.freeswitch.org": [6247], "mi-pro.co.uk": [8376], "calmth.online": [2053], "socialmil.li": [2053], "www.ngdc.noaa.gov": [11272], "i.cacao.io": [2053], "www.hifx.co.uk": [7527], "envy.zenspider.com": [19147], "el.about.aegeanair.com": [7041], "afn.io": [2053], "deportes.unizar.es": [17643], "ktt.ninja": [2053], "medienstiftung-hsh.de": [10363], "svbtle.com": [15925], "www.boomstarter.ru": [19573], "lrzxk.voluumtrk2.com": [21947], "secure2.comic-con.org": [3530], "hinckley-bosworth.gov.uk": [7552], "link.xms.nl": [2053], "trust.taobao.com": [16205], "m.zalando.fi": [19094], "twet.ga": [2053], "jobs.upc-cablecom.ch": [21865], "www.code.osu.edu": [11959], "cdn-media.joomlainfo.ch": [20550], "centrum.active24.sk": [19281], "pond.bz": [2053], "thflm.ch": [2053], "mail.kde.org": [8871], "fanpagegeneratorpro.rhinosupport.com": [14096], "www.womeninnovatemobile.com": [18706], "actva.me": [2053], "data.nasa.gov": [11058], "precr.af": [2053], "blog.migrosbank.ch": [10563], "tayt.im": [2053], "baswa.re": [2053], "www.thisismynext.com": [16639], "gtpa.co": [2053], "espaciosweb.ulpgc.es": [17411], "learning.unisys.co.jp": [17488], "apac.littlehotelier.com": [9635], "xar.ph": [2053], "edelivery-hqdc-test.oracle.com": [12284], "media.cdn.liquidweb.com": [9603], "1n.io": [2053], "mail.yandex.com.tr": [18954], "perfectmarket.com": [12772], "mangacast.in": [2053], "cathaypacifichost.com": [2963], "help.dyn.com": [4918], "tbricks.tv": [2053], "static.media.ccc.de": [2596], "ezgram.com": [5101], "min.unpaper.com": [2053], "stg-coupons.paypal.com": [12678], "spamicity.info": [15464], "r.4xs.org": [2053], "i9.c.dk": [2556], "instantpage.me": [8337], "bypriscilla.tk": [2053], "planeta.ru": [21143], "*.enterprisecioforum.com": [5394], "www.code.org": [3405], "temp-mail.ru": [16366], "fellowship.fsfe.org": [5714], "filt.re": [2053], "wiki.nginx.org": [11567], "asus.com": [397], "search.maven.org": [10253], "*.skrill.com": [15165], "debuggify.net": [4357], "www.sac.se": [14453], "services.hearstmags.com": [7410], "ie.lbp.me": [20644], "ksod.se": [2053], "lup.vc": [2053], "ega.la": [2053], "forum.torrent411.com": [16036], "dfngo.us": [2053], "gmdy.us": [2053], "link.rbpam.de": [2053], "c24.io": [2053], "account.infousa.com": [8259], "media.8chan.co": [235], "artcodec.link": [2053], "mpint.co": [2053], "zarte-it.qc.to": [2053], "bedford.gov.uk": [19509], "www.neverddos.com": [11477], "home.uv.es": [17750], "strck.mx": [2053], "www.pantheos.com": [12579], "s97.cnzz.com": [3391], "figue.com": [5687], "rubenerd.com": [14246], "www.webcitz.com": [18354], "i.modrykonik.cz": [2053], "lessig2016.us": [9418], "www.energimanager.dongenergy.dk": [4151], "www.erowid.com": [5455], "exjobb.meb.ki.se": [8878], "www.fye.osu.edu": [11959], "questcomp.com": [13582], "remotecoder.io": [13995], "myjobmag.co": [2053], "www.orioninc.com": [12312], "fr.zalando.be": [19094], "www.dispenser.tf": [4654], "veeba.se": [2053], "recgk.in": [2053], "d3w.io": [2053], "globalnetwork.pl": [6849], "lesmax.fr": [2053], "img1.leboncoin.fr": [20650], "lagos.pro": [2053], "nanog.org": [11688], "go.qpg.us": [2053], "a2.sndcdn.com": [15278], "j.koguma98.com": [2053], "d3w.it": [2053], "tdp-feedback.truste.com": [16111], "traq.exitec.com": [5604], "cpj.me": [2053], "nyc.gov": [11484], "biox.stanford.edu": [15635], "wh.istmein.de": [2053], "at.cnampls.org": [2053], "ezcrypt.it": [5100], "ucsdbkst.ucsd.edu": [17216], "cltspok.es": [2053], "tr.trend.az": [21786], "mld.st": [2053], "desivi.be": [2053], "citysmart.biz": [2053], "wt.rdg.ac": [2053], "rxys.ch": [2053], "feedback.yandex.by": [18953], "assets.drupal.ku.edu": [17545], "www.evaske.com": [5540], "blackpool.gov.uk": [2108], "ewc.deals": [2053], "alfappl.com": [2053], "rohe.im": [2053], "bprc.osu.edu": [11959], "*.herts.ac.uk": [17542], "www.versioneye.com": [17926], "smng.it": [2053], "www.rateyourlocalservice.co.uk": [21260], "symplicity.com": [15975], "bfnews.co": [2053], "torchlt.jp": [2053], "blog.hqcodeshop.fi": [7721], "login.zooniverse.org": [19224], "speakychat.com": [15487], "rprportal.wustl.edu": [18290], "www.icommunity.fr": [7848], "ssl7.ovh.net": [12378], "partners.unit4.com": [21856], "terminal.banki.ru": [1692], "www.sirrix.com": [15106], "cdn.flowtab.mobi": [6065], "dclibrary.ideascale.com": [20423], "blossoms.mit.edu": [9916], "popper.js.org": [20555], "rfi.my": [2053], "*.online-convert.com": [12066], "freelauri.com": [6261], "www.brabant.nl": [11324], "micfarris.us": [2053], "www.dosomething.org": [4781], "mail.action.at": [304], "click.aliyun.com": [861], "forum.hornbach.de": [7640], "www.hackerexperience.com": [7275], "link.nhw.se": [2053], "awes.me": [2053], "*.drugstore.com": [4875], "*.pagpop.com.br": [12532], "magicalbutter.com.au": [10024], "dwidi.id": [2053], "dialshield.com": [1503], "share.sandia.gov": [14517], "vrb.bz": [2053], "sesame.syncplicity.com": [15984], "myaccount.charter.com": [3079], "www.texaco.com": [16410], "abccommercial.com": [275], "app.cloudforge.com": [3347], "www.mah.se": [9875], "nasastg.gpehosting.com": [6493], "artchristina.com": [1257], "www.xgaming.com": [18814], "media.ign.com": [7877], "news.usc.edu": [17564], "torridge.greenparty.org.uk": [7052], "sallybeauty.com": [14490], "*.domaintank.hu": [4756], "on.barrons.com": [2053], "www.blog.nodejitsu.com": [11647], "es.pcpartpicker.com": [12709], "rvz.la": [2053], "industrybrains.com": [10148], "www.visualstudio.com": [18078], "wvrlthr.co": [2053], "14.ly": [2053], "nnmclub.to": [11132], "forum.nationstates.net": [11233], "a7.sphotos.ak.fbcdn.net": [5816], "anth.link": [2053], "oxforddictionaries.com": [12396], "www.safenet-inc.com": [14464], "boligportal.dk": [2243], "communitiestest.acs.org": [966], "cdn.captora.com": [19643], "open.cdash.org": [19661], "www.hertz.pl": [7497], "ia.do": [2053], "www.aics.riken.jp": [13663], "vit.so": [2053], "heinz.is": [2053], "yam.com": [18948], "register.sparklabs.com": [15469], "shop.haymarket.com": [7382], "wms.assoc-amazon.fr": [1325], "interference.cc": [8396], "rad.education": [2053], "www.hertz.pt": [7498], "sustrans.org.uk": [21617], "designernews.co": [4468], "k-p.li": [2053], "xm0.mx": [2053], "mail.lumiere.ens.fr": [5029], "xt0lz.com": [2053], "rhinosoft.com": [14095], "ngs.is": [2053], "*.naacp.org": [11050], "launchkit.io": [9320], "kwok.in": [2053], "edm.us.com": [2053], "*.whstatic.com": [18589], "www.ethicspoint.com": [5487], "sndr.co": [2053], "bst6.gismeteo.ru": [6789], "www.itunes.com": [8010], "medinf.efi.th-nuernberg.de": [16428], "brandho.me": [2053], "doncasterhrportal.rotherham.gov.uk": [14212], "www.wpi.edu": [18728], "ysmo.ga": [2053], "api-devint.dwolla.com": [4913], "warosu.org": [18279], "*.kriso.lv": [9164], "*.kriso.lt": [9164], "webfecs.vodafone.pt": [18109], "me2.la": [2053], "crtny.me": [2053], "pblx.us": [2053], "www.applytracking.com": [1168], "secure.powys.gov.uk": [21183], "lift.awp.nhs.uk": [11102], "filmon.com": [5927], "homechoice.southglos.gov.uk": [15438], "bio-ontologies.knowledgeblog.org": [9100], "scaleengine.com": [14565], "secvirtual.uv.es": [17750], "joapr.co": [2053], "www.pricezombie.com": [13281], "www.hunchlab.com": [7763], "s.sample.yahoo.co.jp": [18944], "video.udn.com": [17224], "www.gifbook.io": [6758], "floma.me": [2053], "www.diea.ulpgc.es": [17411], "a.liner.jp": [2053], "static-weichouji.sina.com": [21455], "jamar.io": [2053], "anubisnetworks.com": [1113], "www.thehackerblog.com": [16555], "www1.guidancesoftware.com": [7134], "mskjr.dk": [2053], "secure.somethingawful.com": [15379], "www.mewsite.com": [10505], "bit.ilya2606.ru": [2053], "rjpp.ca": [2053], "wiki.mtt.ru": [20848], "shop.inu-inu.co": [2053], "facebook.de": [5736], "clk.pixellu.com": [2053], "test7.gsb.bva.bund.de": [5833], "connect.sensiolabs.com": [14831], "tracker.anidb.net": [1062], "www.utorrent.com": [21831], "makerpot.info": [2053], "facebook.dk": [5736], "ntrnl.org": [2053], "ben.gd": [2053], "elderscrolls.com": [19144], "ynfy.de": [2053], "adultplay.dk": [2053], "regi.laptop.hu": [9308], "aventeur.ucsd.edu": [17216], "www.equalit.ie": [5046], "apps.staffordshire.gov.uk": [15622], "*.ganzestore.com": [6574], "i.techweb.com": [16276], "fanmil.es": [2053], "as.uv.es": [17750], "packages.deepin.com": [4380], "www.cpr.cuhk.edu.hk": [2747], "shpig.me": [2053], "wmck.co": [2053], "media.economist.com": [5161], "devilteam.pl": [4504], "*.rtfd.org": [13844], "ksocial.me": [2053], "www.hertz247.pt": [7498], "wisr.co": [2053], "issh.it": [2053], "b.lide.us": [2053], "l.rkr.io": [2053], "static.shaun.net": [14930], "*.pixiq.com": [12959], "shop.hbo.com": [7177], "brasil.fronter.com": [20179], "ellens.co": [2053], "krr.im": [2053], "go.gvsjobs.com": [2053], "www.chriscowley.me.uk": [3164], "www.clicktotweet.com": [3315], "www.greatnet.de": [7036], "crosswi.se": [2053], "lawnandlandscape.com": [9334], "act.network": [2053], "about.0xacab.org": [9], "www.jivesoftware.com": [8733], "store.office.com": [11942], "subscribe.newstatesman.com": [11503], "go.kotaib.com": [2053], "*.ufl.edu": [17539], "projects.particle.io": [12626], "chessbase-shop.com": [3126], "firstintegrity.com": [5992], "s3.mt-cdn.net": [9963], "s.mazemap.com": [2053], "www.diskusjon.no": [4649], "cbu03.alicdn.com": [846], "*.umii.umass.edu": [17551], "audioscrobbler.com": [1397], "gdata.com.mx": [6410], "smolensk.beeline.ru": [1801], "api.tumba.ch": [21809], "extras.altoonamirror.com": [935], "www.universe2.us": [17514], "beartalk.berkeley.edu": [17526], "sfconservancy.org": [15348], "wef.ch": [2053], "asset-f.soup.io": [15415], "help.utm.edu": [17628], "physics.aps.org": [969], "wd2go.com": [18194], "www.urltrends.com": [17703], "smuxi.org": [15262], "abdn.ac.uk": [444], "hvst.ws": [2053], "squarefree.com": [15582], "r.craveiro.me": [2053], "www.alexa.com": [835], "i.lja.mx": [2053], "permalink.ca": [2053], "www.nzbindex.com": [11191], "adobe.com": [655], "www.say.ac": [21374], "cshall.alipay.com": [857], "carlosprioglio.com": [2913], "contactual.ly": [2053], "b.past9.com": [2053], "elie.im": [5266], "hab.bo": [2053], "raceforlife.cancerresearchuk.org": [19637], "on.nfib.com": [2053], "rebelmuse.co": [2053], "www.ris.bka.gv.at": [13664], "*.emulex.com": [5328], "idprotect.vip.symantec.com": [15969], "www.cilkplus.org": [3194], "*.voicefive.com": [18114], "svn.cru.fr": [3900], "youtube.sg": [19016], "nabtrade.com.au": [11054], "*.ittoolbox.com": [8002], "dlt.link": [2053], "fushunxian.meituan.com": [10405], "sprites.pcpro.co.uk": [12431], "faxrobot.com": [5812], "youtube.si": [19016], "gy.meituan.com": [10405], "www.tkgorod.ru": [21745], "gwgreen.us": [2053], "ippr.io": [2053], "belize.usembassy.gov": [21879], "oss.maxcdn.com": [10256], "seal.verisign.com": [17915], "dedyn.io": [19879], "www.curry.uvt.nl": [16716], "monitoring.stanford.edu": [15635], "transformativeworks.org": [16941], "v.theempi.re": [2053], "it-contrainfo.espiv.net": [20058], "developers.getmondo.co.uk": [20232], "alsa.ovh": [2053], "live.ssl-cert-shop.com": [14411], "www.eastsussexlearning.org.uk": [19996], "img.grouponcdn.com": [7104], "usi.edu": [17518], "w.rvlx.net": [2053], "fxn.ws": [2053], "bgr.com": [1555], "t.track.youmix.co.uk": [19022], "webmercs.com": [4248], "invitation.chaisdoeuvre.fr": [3042], "special.megamozg.ru": [20775], "vlabx.co": [2053], "www.myuhc.com": [10983], "go.recep.me": [2053], "inted.oie.buffalo.edu": [17583], "shopping.rspb.org.uk": [13694], "rifle.co": [2053], "www.superherotrainingnetwork.com": [15885], "surveymonkey.com": [15914], "www.inuits.eu": [8457], "gardenplants.next.co.uk": [11552], "klondike.xiscosoft.es": [18879], "east-northamptonshire.gov.uk": [5112], "sthwv.com": [2053], "n-ce.pw": [2053], "bml.bilibili.com": [1928], "rutracker.cr": [21346], "ver.clubtek.pt": [2053], "beacon.nist.gov": [11240], "www.simple.com": [15065], "slsp.sk": [15219], "rnpdigital.com": [13674], "arbeitsagentur.de": [1192], "secure.critpath.org": [3874], "www.ventoso.org": [17901], "img01.bt.co.uk": [1591], "mikebloom.bg": [2053], "*.reactos.org": [13837], "fssso1.capitalone.com": [2878], "active.com": [536], "*.insightmgr.com": [4590], "www.lendingclub.com": [9404], "sporxtv-p.mncdn.com": [10667], "www.broadbandreports.com": [4157], "activemq.apache.org": [1125], "spankwire.com": [15466], "completion.amazon.co.uk": [19365], "*.fh-kiel.de": [17584], "krid.us": [2053], "nvi.ro": [2053], "nacdl.org": [11055], "pipping.org": [12917], "tuana.nu": [2053], "webmail.orkz.net": [12314], "techfreedom.org": [16266], "www.intelexit.org": [8362], "*.das-elena-verfahren.de": [5021], "anarchistnews.org": [1029], "tnnet.fi": [16093], "admin1.providesupport.com": [13401], "www.mullvad.net": [10882], "pq.kagi.com": [8918], "angular-gantt.com": [1058], "uitalerts.stanford.edu": [15635], "nadaguides.com": [11056], "www.epay.bg": [5043], "fort.pics": [2053], "svn.midnightbsd.org": [20795], "archlinux.fr": [1198], "www.vorratsdatenspeicherung.de": [334], "ipv5.info": [2053], "are.berkeley.edu": [17526], "dmo.social": [2053], "static.oculusvr.com": [11921], "boalt.com": [1577], "s.kyodo.co.jp": [2053], "brs.tl": [2053], "kastatic.org": [9025], "s3.mzstatic.com": [11041], "phis.ch": [2053], "sw.centrum.cz": [19674], "r.ypf.io": [2053], "canberra.usembassy.gov": [21879], "mail.professionalsecuritytesters.org": [13354], "familyte.ch": [2053], "piwik.okturtles.com": [11972], "dev.rsaconference.com": [13688], "ukrnames.com": [17408], "aktivix.org": [810], "www.siteorigin.com": [15115], "www.2600.com": [98], "teac.co.jp": [16059], "www.allianz-fuer-cybersicherheit.de": [892], "wiki.fsfe.org": [5714], "origin.static.ctctcdn.com": [3973], "consult.cheshirewestandchester.gov.uk": [19700], "motorolasolutions.com": [10803], "*.dotcloud.com": [4787], "www.firmas.lv": [5980], "assignment.ignou.ac.in": [8102], "static.leadpages.net": [9351], "go.bryans.in": [2053], "afsp.org": [968], "clinicalkey.com": [3326], "bax.nar.az": [2053], "datapipe.com": [4290], "store.lacrossetechnology.com": [9273], "licensee.garfield.com": [6577], "clic.bz": [2053], "documentation.onesignal.com": [12043], "beautybar.q-assets.com": [21235], "utaitc.org": [2053], "laesp1.lad.gov.hk": [7210], "www.voicedailydeals.com": [17788], "3down.mit.edu": [9916], "googl.ml": [2053], "backstreet-merch.com": [1645], "www.newscientistsubscriptions.com": [11491], "ntrda.me": [2053], "musat.io": [2053], "sofabuilder.dk": [2053], "*.lyrk.de": [9852], "newsmaxhealth.com": [11535], "go.offerta.se": [2053], "ripl.it": [2053], "www.heide-park.de": [7421], "www.bluemovie.eu": [2179], "mbeta.efinancialcareers.com": [5010], "ncifrederick.cancer.gov": [2864], "2015.asiabsdcon.org": [1293], "cp.beastnode.com": [1787], "forge.mysql.com": [10970], "vorarlberg.neos.eu": [11088], "kolonia.usembassy.gov": [21879], "work.sweden.se": [15936], "crha.li": [2053], "cmx.to": [2053], "backbonesecurity.com": [1637], "eaiblz.co": [2053], "terragalleria.com": [16386], "blog.leadpages.net": [9351], "2011.eurobsdcon.org": [5509], "ebill.neustar.biz": [11472], "collegeclublife.com": [2695], "jenkins.io": [20536], "disc-u.org": [2053], "bit.katana.ec": [2053], "trs.cm": [2053], "www.thepiratebay.lv": [21709], "paysafecard.com": [12698], "ff.mg": [2053], "email.osu.edu": [11959], "formsanity.com": [6160], "openwrt.org": [12190], "social.clinic": [2053], "as.au.edu": [17200], "curry.uvt.nl": [16716], "gopok.es": [2053], "subscriptions.marvel.com": [10202], "www.todo.ly": [16799], "westjet.com": [18502], "democratic.bracknell-forest.gov.uk": [19584], "medstudents3.wustl.edu": [18290], "www.portaldaempresa.pt": [7000], "www.zamos.ru": [22125], "banners.affiliatefuture.com": [19316], "bittylicious.com": [2079], "my.fac.io": [2053], "li.ru": [9648], "mrjw.me": [2053], "*.lilux.lu": [9443], "www.cyphdbyhiddenbhs.onion": [4058], "img.buch.de": [16433], "dsdot.co": [2053], "ar.libreoffice.org": [9471], "assets.picoville.com": [12878], "ntl.sh": [2053], "trang.es": [2053], "stats.web4all.fr": [18349], "mooc-list.com": [9942], "coci.al": [2053], "a1.jimstatic.com": [8720], "q.yeloha.com": [2053], "i-ssl.ligatus.com": [9502], "repository.upenn.edu": [17558], "members.bet365.com": [1863], "thrl.cl": [2053], "www.obi.ru": [20977], "srku.ir": [2053], "cdn.komentary.aol.com": [361], "genbeg.com": [2053], "onsig.ht": [2053], "vbstatic.co": [17762], "img.washingtonpost.com": [18287], "quiz-uscc.cyberquests.org": [4049], "lurkmore.net": [9837], "www.listener.co.nz": [9611], "ctix.pw": [2053], "www.silicon.com": [15034], "www.krita.org": [9165], "lptag.liveperson.net": [9654], "on.chauncey.io": [2053], "americasti.re": [2053], "dalateqi.meituan.com": [10405], "srv2.bakerlab.org": [1667], "webapps.lsa.umich.edu": [17552], "moh.nhs.uk": [11102], "changeip.com": [3054], "requester.mturk.com": [9970], "*.naver.com": [11301], "accounts.google.*": [6965], "pewdiepie.net": [12817], "redst.mp": [2053], "lifesaving.com": [9495], "prov.wifi.xfinity.com": [22082], "scur.me": [2053], "portal.upf.edu": [17674], "cag.vg": [2053], "*.newdream.net": [11480], "feedarea.de": [13065], "security.cpanel.com": [2708], "linkedin.thecthulhu.com": [16600], "jayisgames.com": [8682], "adapto.rs": [19286], "info.centrify.com": [19673], "campstaffusa.com": [2834], "thumb.pr0gramm.com": [21185], "*.azchampion.com": [5740], "www.nokia.*": [11655], "zonglovani.info": [19215], "www.revolutiontt.me": [14083], "univ.ms": [2053], "*.mobypicture.com": [10693], "*.yelp.pl": [18979], "hmt.lk": [2053], "corvisacloud.com": [3756], "petekeen.net": [12800], "rudi.net": [13713], "www.bluenote.io": [2206], "benefactor.stanford.edu": [15635], "caat.org.uk": [19625], "moikrug.ru": [10719], "login.eloqua.com": [5282], "go.aosvn.xyz": [2053], "www.interactivemediaawards.com": [8388], "vinoteka.hofer.si": [338], "3rdeye.me": [2053], "l.bagthis.ch": [2053], "celartem.com": [2990], "learn.sparkfun.com": [15471], "chuvashiya.beeline.ru": [1801], "brnbnd.be": [2053], "farm.autotrader.co.uk": [19457], "www.talktalktechnology.com": [16183], "gtls.io": [2053], "decider.tv": [2053], "*.reefbuilders.com": [13940], "wifi.xfinity.com": [22082], "zan.jd.com": [8571], "*.api.sh": [1130], "skdo.co": [2053], "l.fishyfing.xyz": [2053], "ws-ea.amazon-adsystem.com": [950], "ramsis.engineering.osu.edu": [11959], "gcgmsp.com": [2053], "ajs.gop": [2053], "angola.usembassy.gov": [21879], "link.fkfsv.dk": [2053], "iacq.co": [2053], "checkout.cias.rit.edu": [13667], "learningnetworkstore.cisco.com": [3221], "marvelheroes.com": [10203], "www.webhost4life.com": [18363], "iai.inf.tu-dresden.de": [16126], "www.jaqpot.net": [8667], "united.com": [17498], "www.jquery.org": [8597], "go.knom.org": [2053], "spdns.de": [14392], "coverart.worldcat.org": [18748], "j.kanz.it": [2053], "m.wustl.edu": [18290], "at.vodafone.pt": [18109], "anth.nu": [2053], "www.issuu.com": [8526], "twfood.jd.com": [8571], "*.vast.com": [17865], "www.waeplus.co.uk": [18188], "my.mechse.illinois.edu": [17544], "atipso.biz": [2053], "l.meljones.info": [2053], "superpetusa.com": [15877], "www.creditreportnation.com": [3861], "fndsr.fr": [2053], "www.overijssel.nl": [11324], "s.fetch.nl": [2053], "a.mapillary.com": [10135], "carsal.es": [2053], "ssusd.illuminateed.com": [20430], "itnews.iu.edu": [8214], "www.webfwd.org": [18359], "icgx.co": [2053], "trial.f-secure.com": [5654], "activate.eiffel.com": [5224], "about.justgiving.com": [8845], "ryf.me": [2053], "*.uni.lui": [17460], "appcerta.in": [2053], "*.logilab.fr": [9721], "mediaplex.com": [17834], "cdn.idealo.com": [8077], "www.flexnow.rub.de": [13712], "reporter-ohne-grenzen.de": [14017], "*.militarysuper.gov.au": [10582], "carrefour.es": [19649], "cs.chromium.org": [3179], "www.bukkit.org": [19610], "fronter.com": [20179], "www.bittiraha.fi": [2074], "b.sekhar.me": [2053], "downloads.mamp.info": [20744], "guoluo.meituan.com": [10405], "podpora.endora.cz": [5349], "blog.shopstyle.com.au": [14964], "rs.mail.ru": [10040], "beabloo.com": [19508], "bstanton.co": [2053], "staticassets.courierpostonline.com": [3783], "8bn.yt": [2053], "zenmate.com.pe": [19133], "mbtv.uk": [2053], "*.rollingstone.com": [14192], "*.consumerreports.org": [3668], "partners.nvidia.eu": [11173], "www.valueclick.com": [17834], "qualys.com": [13563], "ethernetportal.equinix.com": [5438], "blog.archive.li": [1203], "*.lockerz.com": [9707], "acetap.es": [2053], "cyberport.de": [4048], "adverising.bizrate.com": [2086], "o.egbule.com": [2053], "sydsixe.rs": [2053], "nzzbxx.com": [2053], "wifidb.net": [18571], "usbank.com": [17314], "forum.doom9.org": [4774], "www.hosting9000.com": [7672], "pluggedin.asia": [2053], "chimp.mx": [2053], "www.transfer.sh": [21779], "simulab.fsaa.ulaval.ca": [17515], "berho.io": [2053], "www.education.gov.uk": [20009], "www.adap.tv": [593], "vodafone.de": [18107], "static.beeg.com": [19511], "ctysr.cd": [2053], "brtn.me": [2053], "www.clickfunnels.com": [3305], "*.tudelft.nl": [4404], "beg.ly": [2053], "upvot.es": [2053], "cryptoseal.com": [3934], "metager.de": [10475], "www.wormly.com": [22053], "chongzhou.meituan.com": [10405], "rfc.xferic.com": [2053], "aromalweb.com": [2053], "o.dropsupply.co": [2053], "www.blackberry.com": [2102], "crscom.co": [2053], "sportskeeda.co": [2053], "whu.bi": [2053], "atmlb.com": [2053], "*.powerhosting.dk": [13226], "goglobal.stanford.edu": [15635], "mobile.spaces.live.com": [9644], "*.cbsstatic.com": [2584], "j-bl.info": [2053], "go.itson.mx": [2053], "zoho.jp": [19201], "www-sop.inria.fr": [8309], "ms.meituan.com": [10405], "levonline.com": [9436], "on.tellux.tv": [2053], "blog.sfs.georgetown.edu": [6668], "www.forms.portsmouth.gov.uk": [21175], "cbuy.wsj.com": [22058], "tchibo.hu": [16240], "ohm2013.org": [11823], "www.pengpod.com": [12746], "fws-l.de": [2053], "l.bremi.cc": [2053], "www.chtn.nci.nih.gov": [11241], "help.remind.com": [13994], "c0-blog.flirble.org": [16456], "skoll.wf": [2053], "www.f5.com.cn": [5658], "www.playboystore.com": [13020], "www.internetweek.jp": [8435], "lss.today": [2053], "transmode.com": [16953], "geo.kaloo.ga": [8925], "download.bethere.co.uk": [16331], "emon.ga": [2053], "pons.us": [2053], "s112.cnzz.com": [3391], "affiliate.mediatemple.net": [10331], "psmprogram.gov.au": [13439], "jp.rbth.com": [21267], "www.redditgifts.com": [13926], "mattb.org": [2053], "ligatus.be": [9502], "otba.us": [2053], "greystripe.com": [7074], "content.ad": [3676], "fsrio.nal.usda.gov": [17495], "community.us.playstation.com": [13015], "www.freescale.com": [6302], "qntm.org": [21241], "adaptavist.com": [594], "santanderbillpayment.co.uk": [14531], "auth.zalando.com": [19094], "link.p0.com": [8259], "go.imgk.us": [2053], "emergency.wustl.edu": [18290], "www.kaspersky-cyberstat.com": [8957], "api.chain.com": [3040], "scjobs.sciencemag.org": [14624], "bmtwn.us": [2053], "totalhockey.co": [2053], "dof.dk": [4721], "mysql.active24.com": [19275], "rcph.us": [2053], "0.nul.lt": [2053], "gettyimages.com.au": [6741], "oneexchange.com": [12032], "*.clusters.de": [3384], "india272.in": [2053], "support.zabbix.com": [19085], "edih.me": [2053], "s8.ms": [2053], "olomouc.idnes.cz": [20425], "cup.cm": [2053], "citizensadvice.org.uk": [19717], "cdn.cpnscdn.com": [3780], "www.webrtchacks.com": [18438], "picture1.cyberport.de": [4048], "sendcloud.sohu.com": [15352], "hsprod.investis.com": [8468], "ssl.linksynergy.com": [9543], "mbhd2013.stanford.edu": [15635], "arm1.xyz": [2053], "xinzheng.meituan.com": [10405], "checkip6.dedyn.io": [19879], "rpxnow.com": [13683], "csis.org": [2732], "lm.pe": [2053], "www.loopt.com": [9771], "webutils.warwickshire.gov.uk": [21980], "stca.se": [2053], "elbulin.com": [2053], "hea.lthy.me": [2053], "go.musafir.com": [2053], "viznu.co": [2053], "footprintnetwork.org": [6835], "www.frack.nl": [6211], "hits.dealer.com": [4334], "l.transvias.net": [2053], "www.xchan.pw": [18852], "degreeaudit.osu.edu": [11959], "www.adviceguide.org.uk": [704], "support.bistudio.com": [2232], "yunyang.meituan.com": [10405], "blog.popcorn-time.se": [13141], "0sh.it": [2053], "der.be": [2053], "www.ethereum.org": [5484], "bmayfld.us": [2053], "computec-academy.de": [3596], "advantagemedia.com": [689], "calm.by": [2053], "melectronics.ch": [10411], "jnapier.us": [2053], "secure.vexxhost.com": [17949], "hwl.dj": [2053], "webchat.cyberguerrilla.org": [4033], "www.threema-forum.de": [16667], "ncwit.org": [11078], "courtneyaura.us": [2053], "detectify.com": [4482], "links.gp": [2053], "www.stg.xfinity.com": [22081], "zayo.com": [19117], "*.columbia.edu": [3513], "sayheckyah.com": [2053], "www.kanotix.net": [8934], "on.wcnc.com": [2053], "bit1.encore.pw": [2053], "go.candombe.tv": [2053], "logbuch.c-base.org": [2550], "l.tareq.tk": [2053], "fettl.es": [2053], "meetic.com": [10383], "vrt.outbrain.com": [12355], "vesko.ch": [2053], "target.smi2.net": [15251], "zhstatic.zhihu.com": [19173], "static.ddmcdn.com": [4093], "libreboot.org": [9476], "*.rgj.com": [14002], "morrish.website": [2053], "virginmedia.com": [18028], "rk.me.uk": [2053], "www.pindropsecurity.com": [21125], "paloaltonetworks.com": [12553], "fra.aloe4all.dk": [2053], "anilist.co": [1060], "my.st.com": [14422], "karmankardon.nl": [7340], "qt-project.org": [13544], "planet-lab.org": [12982], "smtx.co": [2053], "fujianguan.jd.com": [8571], "cindercooks.com": [3199], "kboo.st": [2053], "www.greenwood.org": [7067], "secure.stage-gettyimages.in": [6741], "www.zalando.se": [19094], "services-sj.mediusviewer.com": [10366], "cbrac.co": [2053], "www.blocktogether.com": [2142], "bizz.by": [2053], "www.relate.org.uk": [13985], "ssbp.org": [2053], "www.awp.is": [1327], "websitealive2.com": [18445], "www.inkscape.org": [8299], "darkgifs.com": [2053], "s.kazendi.com": [2053], "tvt.kr": [2053], "sct.gov.au": [15879], "bigpicture.link": [2053], "www.dovetailservices.com": [4815], "www.hurleymc.com": [7773], "www.1337x.org": [37], "dbayl.es": [2053], "express.ikoula.com": [8112], "www.broadbandchoices.co.uk": [2406], "s0.plays.tv": [13030], "amahi.org": [947], "beartracks.berkeley.edu": [17526], "naturfotografen-forum.de": [6185], "commonimages.web.cern.ch": [2632], "nav.uninett.no": [17477], "www.saas.harvard.edu": [7351], "www.sustainability.wustl.edu": [18290], "www.flowbtc.com": [6060], "telia.se": [16357], "gitbook.com": [6794], "tiger.fyi": [2053], "stockport-consult.objective.co.uk": [20979], "go.jd.com": [8571], "href.li": [7723], "suchen.mobile.de": [20811], "unicef.to": [2053], "www.franceserv.fr": [6216], "ovdeals.ca": [2053], "b3.bigmrc.com": [2053], "jainsusa.news": [2053], "images.freescale.com": [6302], "wiki.15m.cc": [40], "on.ft.com": [2053], "www.zyngaplayersupport.com": [19252], "go.mudry.me": [2053], "support.citrixonline.com": [3238], "corina.io": [2053], "magadan.beeline.ru": [1801], "p4.hitravel.xyz": [2053], "cimbsecurities.co.th": [2665], "m.missmia.club": [2053], "www.niif.hu": [11118], "sogeek.us": [2053], "s.excid3.com": [2053], "ethree.xyz": [2053], "www8.atomicorp.com": [1364], "qcsn.co": [2053], "nedstat.com": [3517], "thread.com": [16658], "norwegianclass101.com": [11707], "shazo.in": [2053], "chzs.tk": [2053], "download-ssl.halowaypoint.com": [7307], "www.openinfosecfoundation.org": [12213], "gift.jd.com": [8571], "autoconfig.cs.berkeley.edu": [17526], "uifw.ekmsecure.com": [5234], "mndne.ws": [2053], "phishtank.com": [12841], "sitemason.com": [15128], "education.mongodb.com": [10741], "www.bitly.com": [2051], "signature.microsoft.com": [10543], "smp7.de": [2053], "dl.heroesofnewerth.com": [14299], "app.musicmetric.com": [10907], "april.org": [1179], "oncology.georgetown.edu": [6668], "jlylf.link": [2053], "tbcdn.talentbrew.com": [21656], "hmas.in": [2053], "www.stonewallscotland.org.uk": [21582], "nylaun.ch": [2053], "worldremit.com": [18754], "www.htbridge.com": [7248], "dutchbulbs.co.uk": [4909], "atml.io": [2053], "bookings.jucy.co.nz": [8610], "go.richoku.com": [2053], "metrics.defenseone.com": [4388], "spocc.walthamforest.gov.uk": [18262], "timetrade.com": [16726], "sbstech.info": [2053], "www.thesportbible.com": [21718], "lochem.nl": [11324], "stonewallscotland.org.uk": [21582], "clearv.us": [2053], "kovas.co": [2053], "admin.checkpoint.thomsonreuters.com": [16650], "sw.style": [2053], "www.mailgun.com": [10049], "thedailybeast.com": [16531], "1and1.ca": [62], "aokplus-online.de": [357], "myaccount.courierpostonline.com": [3783], "e-commerce.jm.com": [20540], "h7.hitravel.xyz": [2053], "d13.in": [2053], "developer.here.com": [7465], "cdn.alldebrid.com": [870], "www.soeren-hentzschel.at": [15335], "www.bitquick.tw": [1992], "whf.rocks": [2053], "wiki.xfce.org": [18813], "offeredby.net": [12593], "scs.la": [2053], "nessys.it": [2053], "to.giana.im": [2053], "bnppf.be": [2053], "mailgate.phys.ens.fr": [5029], "www.pcp.com": [12430], "app.waterfall.com": [21981], "www.ousa.org.uk": [12184], "gigaf.org": [2053], "uniteddomains.com": [17499], "help.hushmail.com": [7777], "media.secure-mobiles.com": [14726], "www.lunarpages.co.uk": [609], "www.vitalgamers.com": [18082], "e1.xhamsterpremiumpass.com": [18817], "wiki.automotivelinux.org": [1467], "stda.ilius.net": [10383], "vsemmirom.1tv.ru": [79], "homer.ornl.gov": [11892], "telfair.co": [2053], "intermediair.snsbank.nl": [14382], "courierpickup.courierpost.co.nz": [3784], "media2.education.gov.uk": [20009], "on-ti.me": [2053], "sure.sc": [2053], "ncpl.it": [2053], "static.eu.criteo.net": [3872], "virk.dk": [18032], "blog.zazzle.com": [19119], "slysoft.com": [15221], "www.daemon-systems.org": [4178], "vanillamastercard.com": [17852], "wiki.php.net": [12453], "5dec.ru": [207], "login.dynatrace.com": [4923], "twik.it": [2053], "chatter.com": [3092], "sociamonials.com": [15324], "msoftdl.360.cn": [130], "uz.taobao.com": [16205], "idenyt.dk": [8089], "es.witness.org": [18683], "tcli.ed.gov": [4988], "results.gentlelabs.com": [6650], "s2.cnzz.com": [3391], "sdev.co": [2053], "recrute.parrot.com": [12618], "j6e.uk": [2053], "www.rohc-lib.org": [13677], "www3.formassembly.com": [6158], "atlanticmetro.net": [1353], "serviweb.uned.es": [17446], "sndlp.com": [2053], "smb2.be": [2053], "www.bro.org": [2400], "mytennisambition.hsbc.com": [7233], "www.freedom-to-connect.net": [6284], "sdrbook.io": [2053], "wind.mn": [2053], "assets.tmz.com": [16087], "bitcointalk.org": [2010], "www.footlocker.com": [6126], "tomsent.me": [2053], "ashelter.mx": [2053], "js.adlink.net": [644], "cve.mitre.org": [10649], "y.suntravel.xyz": [2053], "api.bintray.com": [1951], "www.reasoncoresecurity.com": [13870], "cbshe.com": [2053], "purduealum.org": [13461], "stackauth.com": [15611], "tbp.osu.edu": [11959], "www.silkspan.com": [15040], "go.adamf.in": [2053], "northlancs.greenparty.org.uk": [7052], "yfrog.com": [22102], "www.realtimestats.com": [13859], "lmepv.com": [2053], "l2c.co.kr": [9216], "gamerz.news": [2053], "petfinder.com": [12808], "www.cinemovies.fr": [3200], "lugons.org": [9262], "voyvil.co": [2053], "home.immobilienscout24.de": [8153], "bugs.dojotoolkit.org": [4727], "www.spectator.co.uk": [21527], "s.treastrain.jp": [2053], "wiki.inka.f4.htw-berlin.de": [7246], "xinzhou.meituan.com": [10405], "list.qiyi.com": [20413], "u2.com.es": [2053], "pltx.us": [2053], "www21.anthem.com": [19395], "blendin.cc": [2053], "galeo.co": [2053], "myswitzerland.com": [20867], "secure4.pipni.cz": [12460], "apphub.io": [1147], "www.infopankki.fi": [8264], "pusher.com": [13481], "familie.nordost.aok.de": [357], "jaku.in": [2053], "*.filecloud.io": [5913], "mcwhirter.com.au": [10289], "rapfav.co": [2053], "*.getgo.de": [6733], "www.e17-stuff.org": [21006], "www.covacations.com": [3685], "globaloneteam.com": [6860], "id.trove-stg.com": [17038], "www.marineshop.net": [10163], "tckt.be": [2053], "flmsc.mg": [2053], "newyear.aktivix.org": [810], "syo.net.br": [2053], "2012.devcup.evernote.com": [5555], "ctrack.metrics34.com": [10496], "www.sickbits.net": [15004], "www.cpunks.org": [3816], "l.duchowney.org": [2053], "lawks.us": [2053], "shortrr.ga": [2053], "*.wallst.com": [10188], "go.gtitours.org": [2053], "www.landalparkshop.*": [18790], "privatelee.com": [13331], "ingushetiya.beeline.ru": [1801], "www.franchisegator.com": [6217], "thealth.tw": [2053], "jibbed.org": [20539], "wbw.co": [2053], "colwizlive.andover.edu": [12835], "jjtesq.com": [2053], "tripsu.it": [2053], "webmail.uni-potsdam.de": [17618], "pic3.58cdn.com.cn": [202], "mnki.es": [2053], "ktln.it": [2053], "dev-addons.wesnoth.org": [18500], "djuku.us": [2053], "ohfishal.pw": [2053], "occsn.co": [2053], "pul.re": [2053], "trekne.ws": [2053], "luosimao.com": [20726], "www.gradsch.osu.edu": [11959], "www.corelio.be": [3740], "forty.cc": [2053], "mtrs.co": [2053], "www.nginx.com": [20906], "finmozg.ru": [5963], "opencsw.org": [12125], "ilxgroup.com": [7900], "vun.gl": [2053], "1shoppingcart.com": [56], "bothsid.es": [2053], "sitewranglers.freedesktop.org": [6243], "gldushi.ru": [2053], "asset9.wwf.ch": [22060], "proco.re": [2053], "www.autoreview.ru": [19455], "ppai.us": [2053], "ideas.foreignpolicy.com": [6142], "lightthenight.org": [9505], "www.kammeratadam.dk": [8929], "m6r.fr": [9865], "thxd.at": [2053], "giotto.me": [2053], "eniro.tns-cs.net": [21752], "golinks.magento.com": [10017], "communities.opentext.com": [12182], "www.expeditedssl.com": [5614], "smart.1688.com": [44], "ombpr.co": [2053], "labourclick.uk": [2053], "socbiz.ch": [2053], "uv.rs": [2053], "ical.in": [2053], "wi.ht": [2053], "expresslane.apple.com": [1160], "savvysme.com.au": [14556], "www.teach-ats.ed.gov": [4988], "beichtha.us": [2053], "freedom.press": [6286], "account.app.net": [1141], "eidm.cms.gov": [19742], "m.maps.yandex.kz": [18957], "apps.openobjects.com": [12220], "speedtree.com": [15504], "track.tiara.daum.net": [4299], "templates.libreoffice.org": [9470], "jubii.dk": [8810], "securelp.longtailvideo.com": [9752], "cvs.linux-mips.org": [9573], "secure.wellcome.ac.uk": [22001], "xing.com": [18877], "blujazz.co": [2053], "hbn.link": [2053], "tricolumbia.org": [17008], "ic-fusioncrm.oracle.com": [12284], "delify.tk": [2053], "kciii.co": [2053], "education.barnsley.gov.uk": [19488], "partnershipforpatients.cms.gov": [19742], "tnker.in": [2053], "appmo.fr": [2053], "status.teachable.com": [21665], "pantarhei.sk": [12575], "www.pewdiepie.net": [12817], "www.menulog.com.au": [20781], "ophirum.spiegel.de": [15523], "b.grvcdn.com": [7115], "blackironbeast.com": [2098], "wangyin.com": [18269], "hrn.tw": [2053], "*.locaweb.com.br": [9704], "leader-manager.com": [9354], "www.316space.com": [2185], "natm.us": [2053], "www.gtrk.tv": [20290], "ogas.in": [2053], "minfin.nl": [11324], "42yogis.in": [2053], "dbcred.com": [2053], "th-nuernberg.de": [16428], "pianoyuki.co": [2053], "mvm.ug": [2053], "stonewall.org.uk": [21580], "refog.com": [13955], "paypanel.courant.com": [19801], "hics.cms.gov": [19742], "kirb.tk": [2053], "afed.me": [2053], "collectd.wesnoth.org": [22003], "promisejs.org": [21210], "www.womenonwaves.org": [18709], "northyorks.greenparty.org.uk": [7052], "h5.chaucanh.net": [2053], "vkf.mobi": [2053], "partnernet-internal.symantec.com": [15969], "eastcarolina.worldcat.org": [18748], "clouddisk.tdc.dk": [16051], "ted.vc": [2053], "allieand.co": [2053], "med.stanford.edu": [15635], "www.verifiedvotingfoundation.org": [17912], "www.domaincamp.de": [4741], "banki.wp.pl": [18217], "pcisecuritystandards.org": [12428], "ad.71i.de": [14880], "s-b.one": [2053], "websitealive6.com": [18445], "lists.junge-piraten.de": [8831], "speedys.ml": [2053], "*.eimg.com.tw": [5225], "blog.openstreetmap.org": [12177], "thepirate.zone": [21215], "translate.centreon.com": [3019], "*.formspring.me": [6163], "www.bizchannel.cimb.com.sg": [2664], "neteller-group.com": [12270], "l.dhyw.com": [2053], "linernot.es": [2053], "prola.aps.org": [969], "completelyprivatefiles.com": [3587], "prrll.com": [2053], "www.kodi.tv": [9104], "stumcd.uk": [2053], "bugzilla.suse.com": [14435], "groupwise.boell.de": [2229], "nwf.lt": [2053], "alojamiento01.unizar.es": [17643], "*.youversion.com": [19017], "www.cccure.com": [2598], "sibeli.us": [2053], "ba.sinacloud.com": [15088], "l.hitravel.xyz": [2053], "thepiratebay.immunicity.date": [21217], "fmlf.me": [2053], "www.rother.gov.uk": [14211], "www.bequiet.com": [1777], "lzurl.com": [2053], "pdig.me": [2053], "yahooanswers.tumblr.com": [17100], "mxghz.co": [2053], "www.compendium.com": [3580], "live.stanford.edu": [15635], "www.tableau.com": [16152], "j.asahipc.net": [2053], "www.globusreisen.ch": [7698], "fteorica.unizar.es": [17643], "f.newsletter.sky.com": [15170], "accounts.unity3d.com": [17506], "familymedicine.georgetown.edu": [6668], "static.infowars.com": [8279], "media.business.shaw.ca": [14932], "vvc.me": [2053], "olg.link": [2053], "gnls.in": [2053], "hvo.link": [2053], "webmdhealth.com": [18368], "api.filepicker.io": [5916], "jobs.lshtm.ac.uk": [9739], "aytr.co": [2053], "m.friendlyduck.com": [6332], "pltyp.us": [2053], "cloud.quickline.com": [21243], "i-koruna.com": [7898], "dsmrq.es": [2053], "bayc.us": [2053], "cse.osu.edu": [11959], "bandaancha.eu": [19483], "simage2.pubmatic.com": [13422], "sendgrid.com": [14821], "www.mobilepay.dk": [10684], "surfermag.com": [15905], "ringr.biz": [2053], "loanhub2.capitalone.com": [2878], "serbia.usembassy.gov": [21879], "brad.brunel.ac.uk": [19599], "arkhangelskaya-obl.beeline.ru": [1801], "taobao.fanli.com": [5769], "www.impo.ch": [3712], "lazylife.ca": [2053], "www.mobify.me": [10679], "kat-de-paris.fr": [8966], "pbra.in": [2053], "www.vanderbilthealth.com": [17849], "pp.bme.hu": [1570], "www.rule34.xxx": [14268], "*.onegreenplanet.org": [12047], "static.youmix.co.uk": [19022], "i.pavl.me": [2053], "cnp.am": [2053], "aflete.fitness": [2053], "land.xiaomi.net": [18874], "onegreenplanet.org": [12047], "p29.tips": [2053], "ausp.lu": [2053], "tz.rs": [2053], "s.u-1.net": [2053], "s3b.pstatp.com": [16881], "*.sap.com": [14311], "st1.openlistings.co": [12217], "smsi.me": [2053], "wkle.in": [2053], "shield.sitelock.com": [15114], "www.veterans-aid.net": [17947], "js-d.ml": [2053], "b.ngx.cc": [11569], "wis.tw": [2053], "www.ede-look.org": [21006], "m.hilfe-center.1und1.de": [82], "medrx.sensis.com.au": [16362], "www.skortekaas.nl": [14368], "nozl.it": [2053], "www.pentesterlab.com": [21105], "sure-assist.com": [15899], "porta.codes": [13160], "www.informer.com": [8275], "url.dror.io": [2053], "gwat.co": [2053], "www.heavy.com": [7418], "chifeng.jd.com": [8571], "www2.firsttechfed.com": [5986], "www.eticketing.co.uk": [16690], "dbrd.la": [2053], "evisaforms.state.gov": [17345], "on.fleck.co": [2053], "l.techhaven.org": [2053], "techplus.nvcc.edu": [11787], "madpa.ws": [2053], "www.efiliale.de": [19901], "webmail.stanford.edu": [15635], "goalworthy.com": [6925], "phide.lt": [2053], "dl.jav4u.net": [2053], "www.openssh.com": [12167], "webc.news": [2053], "*.netfirms.com": [11418], "dz2cdn3.dzone.com": [4171], "a.ruben.ws": [2053], "foldingforum.org": [6101], "nl.piliapp.com": [12887], "carboyc.am": [2053], "dev.tiki.org": [16715], "blog.chaturbate.com": [3093], "rgcc.me": [2053], "usca.logmein.com": [9711], "wustlconnections.com": [18291], "api.co": [2053], "media.collyers.ac.uk": [3496], "wiki-archive.emfcamp.org": [20032], "l.cpt.ph": [2053], "dly.st": [2053], "m12.baidu.com": [1661], "admin.1and1.ca": [62], "cicus.us.es": [17706], "kuwait.q8car.com": [13507], "stats.sandstorm-media.de": [14520], "looloo.com": [9765], "www.barnesjewish.org": [1725], "www.speedworldgrafix.com": [15505], "dougbond.cc": [2053], "www.pdf-online.com": [21097], "store.encase.com": [7134], "reci.to": [2053], "liveandwork.me": [2053], "www.kasandbox.org": [9025], "www.reggi.ru": [13961], "www.verisign.com.tw": [17915], "icp.uni-stuttgart.de": [17567], "www.account.norton.com": [11703], "serversaurus.com.au": [14863], "fabianfranke.de": [5729], "www.faancollegenetwork.org": [5662], "m0therfuck.in": [2053], "dandong.meituan.com": [10405], "go.gnu.su": [2053], "lscpt.ch": [20721], "macit.co": [2053], "tuva.rt.ru": [13703], "bransonzipline.com": [2341], "abo.heise.de": [7428], "www.bitquick.me": [1991], "shadowproof.com": [14898], "jtown.xyz": [2053], "go.kora.plus": [2053], "rdot.org": [13643], "c.velaro.com": [17887], "my.mayday.us": [10270], "git.linuxtv.org": [9576], "15mpedia.org": [41], "img.idealo.com": [8077], "kik.com": [20593], "u.infilmity.com": [2053], "academy.9to5mac.com": [247], "us.ht": [2053], "www.eforsa.pl": [5012], "www.dennikn.sk": [4445], "thrillist.com": [21732], "mail.qnetp.net": [13535], "ebys.anadolu.edu.tr": [1025], "changingclimate.osu.edu": [11959], "multiple.js.org": [20555], "www.legiscan.com": [9387], "webmail4.names.co.uk": [11214], "ivystrate.gy": [2053], "dds2dds.com": [4094], "s.awr.org": [2053], "images.hertz247.com": [7511], "www.ams.org": [349], "testcloud.de": [16406], "cloudfront.bitmovin.com": [2061], "www.rpmfind.net": [14237], "people.xiph.org": [18878], "www.provencredible.com": [13398], "lightning.bitflyer.jp": [1981], "core.lc": [2053], "www.biostatistics.wustl.edu": [18290], "planet.diasporafoundation.org": [4532], "mgllc.me": [2053], "wills.ly": [2053], "*.unique-vintage.com": [17481], "eiu.io": [2053], "m.taxi.yandex.com": [18956], "bmoor.ms": [2053], "*.lithive.com": [9615], "actionnetwork.org": [19271], "hld.meituan.com": [10405], "www.pubpeer.com": [13426], "www.nifc.gov": [11113], "www.umd.edu": [17549], "x.f0.nz": [2053], "www.canon.ee": [2868], "malaysia.norton.com": [11703], "heatingoil.fossil.energy.gov": [5355], "www.wilmu.edu": [18620], "www.hitleap.com": [7562], "www.bverfg.de": [2491], "autodiscover.lsbu.ac.uk": [9252], "www.canon.es": [2868], "hswat.gq": [2053], "robbie-s.biz": [2053], "media.monster.com": [10752], "docs.imgix.com": [20438], "hkn.eecs.berkeley.edu": [17526], "*.bepress.com": [1835], "openuserjs.org": [12185], "www.theplatform.com": [16496], "www.ece.osu.edu": [11959], "osmfoundation.org": [11871], "orbb.ec": [2053], "f.fastcompany.net": [5797], "cnt.al": [2053], "youtube.co.hu": [19016], "realtime.co": [13865], "www.thechinastory.org": [16523], "f.icetravel.xyz": [2053], "8tracks.com": [236], "trs.webprospector.de": [18377], "connectid.no": [19775], "dwp.link": [2053], "patchwork.freedesktop.org": [6243], "en.jd.com": [8571], "jmp.esser.ro": [2053], "rgne.ws": [2053], "dyna.md": [2053], "dyna.me": [2053], "cdn-d-static.pornhub.com": [13153], "advertising.washingtonpost.com": [18287], "*.box.com": [2306], "link.flimbu.com": [2053], "*.archbang.org": [1197], "framabag.org": [6214], "directory.live.com": [9644], "orientation.georgetown.edu": [6668], "fenland.gov.uk": [5865], "swan.sk": [15931], "asoy.me": [2053], "parking.bournemouth.gov.uk": [2304], "jdi.bz": [2053], "*.ezoshosting.com": [5102], "nud.gr": [2053], "woof.media": [2053], "hamarivani.in": [2053], "yourcareyourway.lambeth.gov.uk": [20631], "contact.georgetown.edu": [6668], "*.www.fujitsu-webmart.com": [6362], "www.shippingwatch.dk": [14951], "nud.gd": [2053], "iptc.org": [7995], "hostingmanager.secureserver.net": [14755], "url.inra.fr": [2053], "huify.co": [2053], "s.clrd.nl": [2053], "bch.news": [2053], "developer.cloud.unity3d.com": [17506], "horo.mail.ru": [10040], "www.status.io": [21569], "spacex.com": [15458], "my.veritas.com": [21905], "mathias-kettner.de": [10232], "leiadc.sc": [2053], "i3.social.s-msft.com": [14296], "www.truthmarket.com": [17076], "bivol.bg": [2081], "*.discover.com": [4633], "st0.userapi.com": [21881], "link.xaquin.es": [2053], "www1.gotomeeting.com": [6912], "*.powells.com": [13214], "clubsci.net": [2053], "wildlifeofyourbody.org": [1820], "www.sysmocom.de": [16010], "sa.www4.irs.gov": [7964], "pcnet.uno": [2053], "*.airbnb.de": [788], "sns.ias.edu": [7815], "expert.yandex.com.tr": [18954], "www7.pipni.cz": [12460], "www.rpggeek.com": [13681], "prolexic.com": [13374], "rivalseek.com": [14138], "discuss.dev.twitch.tv": [17164], "snwf.co": [2053], "kjaer.io": [20606], "lh4.google.co.*": [6965], "academy.hubspot.com": [7739], "www.cnv.com": [19744], "livemar.ly": [2053], "bhoot.biz": [2053], "socom.ms": [2053], "t.envsn.co": [2053], "irtf.org": [7965], "signup.bigv.io": [1908], "answers.openmrs.org": [12150], "christ-swiss.ch": [3712], "helloworld.letsencrypt.org": [9422], "www.aim.com": [329], "advq.yandex.com.tr": [18954], "consilium.europa.eu": [5526], "tgthr.crbuildsite.com": [16427], "*.onion.link": [16837], "atgtk.it": [2053], "cdn.torrentbit.net": [16856], "www.digikam.org": [4557], "parking.sevenoaks.gov.uk": [14882], "blog.proxpn.com": [21204], "fbx.bz": [2053], "go.gopride.com": [2053], "www.zenmate.ro": [19133], "zscore.mit.edu": [9914], "fiuza.me": [6006], "link.elo7.com": [2053], "*.expedia.co.uk": [5612], "z.onemission.ca": [2053], "quotes.nyi.net": [11182], "assets.vodafone.co.uk": [18106], "grtplc.net": [2053], "x.rm2e.net": [2053], "games.samsclass.info": [14500], "chroniclesofgeorge.com": [16525], "www.nabtrade.com.au": [11054], "seower.com": [14835], "www.artsedge.kennedy-center.org": [20585], "mpd.im": [2053], "w.ppixls.com": [2053], "huffpost.click": [2053], "artwa.re": [2053], "beta.fastly.com": [5803], "goabr.co": [2053], "gtl.osu.edu": [11959], "search.norton.com": [11703], "www.hostdeclaration.ru": [4365], "signin.wsj.com": [22058], "pcforalla.idg.se": [7852], "www.franklinveaux.com": [6221], "leakedsource.com": [9364], "m.rts.ch": [21550], "guest-services.desy.de": [4479], "tmldr.eu": [2053], "c.gcaptain.com": [6428], "url.ebisu.in": [2053], "mech.sc": [2053], "features.hrw.org": [7756], "hpbw.de": [2053], "globalsources.com": [6855], "fpf.org": [20153], "hits.truehits.in.th": [17049], "vaultoro.com": [21897], "nolae.at": [2053], "favrskov.dk": [5808], "krasnoyarsk.rt.ru": [13703], "poczta.agmk.net": [767], "s.etree.biz": [2053], "id.foreignpolicy.com": [6142], "ndstr.us": [2053], "www.milton-keynes.gov.uk": [10588], "*.zorpia.com": [19228], "worfo.lk": [2053], "www.tersesystems.com": [16393], "j35.us": [2053], "*.khn.nl": [8875], "www.mygnu.de": [10952], "vpnbook.com": [18157], "lincs.firmstep.com": [20125], "tdr.network": [2053], "ogdeli.co": [2053], "*.schallert.com": [14588], "forum.loverpi.com": [9795], "blog.feedly.com": [5853], "store.isc.org": [7966], "45r.co": [2053], "moviel0vers.cf": [2053], "bit.seo4.net": [2053], "www.engelschall.com": [5365], "dangpu.com": [4217], "f5rsrc.wustl.edu": [18290], "www.tandridge.gov.uk": [16197], "acesso.uol.com.br": [17276], "mystockoptions.com": [10977], "learnfren.ch": [2053], "www.privatewifi.com": [13330], "hospital.uillinois.edu": [17238], "a.rembish.org": [2053], "beaudo.me": [2053], "bugzilla.lysator.liu.se": [9238], "buyveteran.com": [2528], "inf.tu-dresden.de": [16126], "ua.godaddy.com": [6898], "app.farmlogs.com": [5777], "web.ondarossa.info": [12024], "chford.us": [2053], "carbyr.uk": [2053], "cimbbank.sg": [2053], "ensigniamail.com": [5389], "bboy.dj": [2053], "wallabag.org": [18255], "static4.readyflowers.com": [13853], "*.startupsort.com": [15666], "www.tucowsinc.com": [17091], "www-public.slac.stanford.edu": [15635], "meraki.com": [10447], "www.reading.ac.uk": [17620], "itactic.com": [8006], "login.oracle.com": [12284], "razine.do": [2053], "alist.ly": [2053], "shbbr.co": [2053], "www.cutedigi.com": [4016], "metro.yandex.by": [18953], "cdn.final4ever.com": [5934], "www.gametracker.com": [6561], "crux.nu": [3907], "dakchi.info": [2053], "m.rabota.yandex.by": [18953], "gmail.ncsu.edu": [11690], "bd.meituan.com": [10405], "sv.cloudflare.com": [3344], "sieciovo.pl": [15013], "b3.mookie1.com": [10764], "planete.insa-lyon.fr": [7918], "portlandoregon.gov": [3254], "staff.snel.com": [15280], "bend.pk": [2053], "*.pair.com": [12540], "cloudconnectors.eloqua.com": [5282], "www.radsec.org": [13742], "dps.uiuc.edu": [17234], "hostdeclaration.ru": [4365], "www.library.wustl.edu": [18290], "forum.ivorde.com": [8550], "panopticlick.com": [12568], "tate.ga": [2053], "sprngtd.co": [2053], "restaurants.just-eat.co.uk": [20565], "*.wsj.com": [11513], "inwx.es": [8381], "www.fokus.no": [6098], "gutefrage.net": [7157], "secure.gettyimages.se": [6741], "loadaverage.org": [9692], "www.homeaway.com": [20352], "sbcc.worldcat.org": [18748], "capi.tl": [2053], "static.hitta.se": [20345], "tiv.re": [2053], "usabags.taobao.com": [16206], "akismet.com": [805], "afct.is": [2053], "i.hra7.com": [2053], "askhelp.co": [2053], "nb.meituan.com": [10405], "*.dirxion.com": [4621], "primorye.rt.ru": [13703], "walicdn.wallstcn.com": [18258], "verifyaddress.courierpost.co.nz": [3784], "avpl.us": [2053], "www.lab-nation.com": [9275], "i.holder.com.ua": [7592], "biblioteca.unizar.es": [17643], "tns.so": [2053], "milepoint.com": [10580], "wordnik.com": [18736], "laughingsquid.us": [9319], "t.cemnet.com": [2053], "3d4med.com": [2053], "*.navteq.com": [11062], "*.cdn2.cloudfiles.rackspacecloud.com": [13741], "kuleuven.be": [8969], "erhvervsstyrelsen.dk": [5445], "bez.uz": [2053], "riscon.cz": [14131], "n0ve.la": [2053], "mygnu.de": [10952], "read.timesprintingdigital.com": [16733], "*.marvell.com": [10205], "chromeexperiments.com": [3177], "www.thesixthaxis.com": [16503], "www.bestmastersdegrees.com": [1855], "link.shadow.cat": [2053], "gavinnewsom.com": [6589], "imaj.co": [2053], "www.revresponse.com": [14072], "mcdfeedback.com": [2053], "sysaid.com": [16001], "home.sch.bme.hu": [1570], "deliver2.com": [4409], "www.interaction.bell.ca": [1815], "www.scmagazineus.com": [14563], "dailystar.com.lb": [19847], "lnk.adslweb.net": [2053], "cmaxi.me": [2053], "irwinlaw.com": [8508], "egopay.com": [5215], "kidp.as": [2053], "gndle.me": [2053], "seuelectronica.upf.edu": [17674], "creative.metalyzer.com": [10486], "artw.ru": [19423], "www.servedbyadbutler.com": [557], "linnrecords.com": [9545], "semiluki.beeline.ru": [1801], "1.thetech.today": [2053], "*.iii.com": [8305], "rl.mail.qq.com": [13514], "www.theguardian.com": [16554], "www.votervoice.net": [18142], "gutscheine.heise.de": [7428], "frndz.me": [2053], "www.4sysops.com": [192], "parkingpcns.northumberland.gov.uk": [20929], "wfil.uk": [2053], "www.ymlp.com": [19029], "jkef.me": [2053], "buryatiya.rt.ru": [13703], "app.picnichealth.com": [12874], "hnd.io": [2053], "www.cs.ox.ac.uk": [17557], "w.soundcloud.com": [15410], "www.pin.ed.gov": [4988], "jayni.ch": [2053], "discoversignage.com": [4639], "itradecimb.co.id": [2662], "gcbc.mn": [2053], "dl4free.com": [69], "tinker.cr": [2053], "piwik.raceforward.org": [13725], "agent.directadvert.ru": [4608], "discovery.org": [4641], "alteeve.ca": [915], "apps.ioninteractive.com": [20484], "www.marketingoops.com": [10178], "www.umdrightnow.umd.edu": [17549], "uplay.ubi.com": [17678], "apt-longview.linode.com": [9547], "mycm.fr": [2053], "retrofestive.ca": [14060], "stets.co": [2053], "theti.gr": [2053], "wxajb.me": [2053], "mcy.io": [2053], "www.coub.com": [3765], "uhoo.im": [2053], "s130.cnzz.com": [3391], "u2.uicdn.net": [17236], "www.merchdirect.com": [10451], "www.etnasoft.com": [5493], "strada.io": [2053], "admin.open.kent.gov.uk": [9005], "g.samiq.co": [2053], "img.x-cart.com": [18794], "www.coreos.com": [3733], "lkr.ms": [2053], "nrao.edu": [11144], "vimeopro.com": [18010], "*.dotster.com": [4800], "www.bezeqint.net": [1886], "www.hs.fi": [7451], "placeanad.chicagotribune.com": [3131], "javi.top": [2053], "site.yandex.com": [18956], "www.onegooddriver.com": [12025], "sptt.me": [2053], "index.umeng.com": [21847], "aclutx.org": [291], "family.beeline.ru": [1801], "www.cpfp.cancer.gov": [2864], "gumgum.com": [7147], "bizba.sh": [2053], "*.turbotax.com": [8452], "titanic-magazin.de": [16774], "123ehost.com": [34], "madinamila.no": [2053], "cambodiadaily.com": [2824], "www.contactus.com": [3672], "www.kraken.com": [9154], "mysports.tomtom.com": [16812], "static.shared.sx": [14917], "investments.georgetown.edu": [6668], "webhop.co.uk": [2053], "fcs.dell.com": [4413], "aotw.xyz": [2053], "premium.members.webs.com": [18440], "planet.mageia.org": [10014], "tracker.adaptavist.com": [594], "tkylndry.uk": [2053], "techwat.ch": [2053], "i.qlutch.me": [2053], "www.whispergifts.com": [18544], "www.schaffner.org": [14587], "whoishussa.in": [2053], "tmd.sa": [2053], "*.northwestern.edu": [11702], "members.trust-guard.com": [17055], "domeny.cz": [19943], "www.glassdoor.com.au": [20249], "idgmedia.idg.se": [7852], "pulllist.comixology.com": [3529], "www.freeboard.io": [20161], "credit.alibaba.com": [850], "youtube.ae": [19016], "zgam.es": [2053], "voiceact.rs": [2053], "bwry.co": [2053], "www.correctiv.org": [3753], "blmt.ht": [2053], "airelf.com.tw": [19331], "jobs2web.com": [8747], "support.wosign.com": [18693], "maryel.rt.ru": [13703], "bldrd.us": [2053], "vietnam.usembassy.gov": [21879], "images.domainwho.is": [4751], "search.maximintegrated.com": [10261], "company.wizards.com": [18687], "livesync.ly": [2053], "export.openstreetmap.fr": [12245], "www.zakird.com": [19092], "pages.ebay.com": [4972], "areaware.co": [2053], "www.piratetavern.org": [21709], "nibcdirect.nl": [11105], "elford.uk": [2053], "l.docjobs.at": [2053], "resources.mybb.com": [11013], "mylaw.wustl.edu": [18290], "www.moderncrypto.org": [10707], "thedilbertstore.com": [16534, 16535], "lg.com": [9231], "eprofile.osu.edu": [11959], "gewinnspiel.congstar.de": [3642], "cdn.plug.dj": [13044], "earlyyears.kirklees.gov.uk": [9067], "s.haqaq.com": [2053], "www.shibboleth.net": [14947], "enahost.com": [5330], "freshcode.club": [6321], "*.anonymizer.com": [1089], "www.finnchamber.com": [15238], "geeksquad.co.uk": [6619], "*.dolimg.com": [4731], "pace2race.com": [12514], "multiweb.junge-piraten.de": [8831], "wedgui.de": [2053], "dodiklink.tk": [2053], "www.canlialem.com": [2866], "www.epixmedia.co.uk": [5426], "the.cr": [2053], "webanmeldung.hslu.ch": [7728], "bo.st": [2053], "www.virtualglobaltaskforce.com": [21926], "my.freezone.co.uk": [6306], "go.zu.lc": [2053], "*.details.com": [4481], "www.max.se": [10255], "community.c9.io": [3339], "www.shareholder.ru": [14923], "www.deepdyve.com": [4374], "on.nypl.org": [2053], "go.pld.com.br": [2053], "lnk.tryl.es": [2053], "www.fri-gate.org": [20175], "blog.gemini.com": [6636], "yesnet.me": [2053], "iwoulddo.it": [8024], "l.derby.io": [2053], "m.zalando.es": [19094], "*.s2member.com": [14302], "www.familie.nordost.aok.de": [357], "nbet.dk": [2053], "invizbox.io": [8476], "wiki.sabayon.org": [14450], "www.cloudforge.com": [3347], "nureva.co": [2053], "shop.flixbus.de": [6047], "ztsl.co": [2053], "myportal.lacie.com": [9271], "www.tfaforms.com": [16424], "client.serverfruit.com": [14859], "www.ssdp.org": [15793], "myaccount.sky.com": [15170], "www.virtkick.io": [18035], "jsuol.com.br": [8807], "www.more-onion.com": [10773], "shop.flixbus.dk": [6047], "l.smartants.com": [2053], "epochstats.com": [5429], "kubie.link": [2053], "assets.crucial.com": [3902], "lizard-cloud.htwk-leipzig.de": [7736], "selfhelp.carphonewarehouse.com": [2920], "interviews.slashdot.org": [15192], "avept.it": [2053], "tech.appear.in": [1153], "tnfl.co": [2053], "www.microchip.com": [10533], "www.kuleuven.ezproxy.kuleuven.be": [8969], "wiki.c-base.org": [2550], "imgjam1.jamendo.com": [8649], "kidn.im": [2053], "cov.com": [3792], "docs.convox.com": [3699], "i4.3conline.com": [157], "www.greenserver.ch": [20280], "www.songlist.hclippr.com": [7180], "www.mypoints.com": [10965], "vcd.org": [17766], "www.kompany.com": [9120], "splone.com": [15535], "browsershots.org": [2426], "mdia.im": [2053], "pin-card.dengisend.ru": [4440], "prostovpn.org": [21212], "pk4.md": [2053], "sgnl.link": [2053], "kensmoore.co": [2053], "lpc.web.cern.ch": [2632], "yelpreservations.com": [22099], "cortera.com": [3763], "www.springrts.com": [15558], "files.kn007.net": [9089], "my.hastings.gov.uk": [7366], "www.treasury.gov": [16980], "txh.xhcdn.com": [18815], "ce-gbc.ca": [2053], "ledte.ch": [2053], "rxs2.answcdn.com": [1099], "pxg.to": [2053], "uolibraries.worldcat.org": [18748], "transversal.com": [16959], "goodsie.com": [6959], "www.delawaretoday.com": [4401], "www.tnsglobal.com": [16096], "art.netease.com": [11381], "www-thphys.physics.ox.ac.uk": [17557], "www.thegef.org": [8408], "deedl.ink": [2053], "www.feedthefuture.gov": [20103], "adracar.es": [2053], "fraedom-cdn.com": [20154], "www.raptureready.com": [13797], "sell.stubhub.de": [15789], "ripar.in": [2053], "img8.qiyipic.com": [20413], "www.freestyle.vc": [6304], "eset.de": [5054], "b.vlad.im": [2053], "happyhardcore.com": [7330], "applyfiu.com": [2053], "www.beryl-themes.org": [21006], "*.stratum0.org": [15768], "gorjaeo.us": [2053], "file.2412.org": [2053], "leagueoflegends.com": [9362], "www.wellbid.com": [18487], "insta.gf": [2053], "e-klase.lv": [4952], "cldy.co": [2053], "www.navercorp.com": [11303], "public.webfoundation.org": [18399], "www.fd.ulaval.ca": [17515], "developers.yubico.com": [19052], "s.psy-clone.com": [2053], "www.newfamilysocial.org.uk": [20897], "liuliang.jd.com": [8571], "fotoblur.com": [6193], "essen.social": [2053], "davidtravel.net": [2053], "listas.unizar.es": [17643], "meetrics.com": [10385], "sudan.usembassy.gov": [21879], "theono.my": [2053], "tutor.com": [17127], "www.hboshopeu.com": [20325], "studiengangstest.de": [16428], "cmu.is": [2053], "sprints.kde.org": [8871], "avatar.threema.ch": [16668], "trt.run": [2053], "resources.mynewsdesk.com": [11030], "shr.mn": [2053], "www.cxcloud.com": [4021], "www.gamesites.cz": [6556], "oman.usembassy.gov": [21879], "piratelinux.org": [12927], "www.mcdee.com.au": [10290], "qa.shirazlug.ir": [14953], "khronos.org": [9026], "ask.leagueoflegends.com": [9362], "b.yandex.com": [18956], "amnestyusa.org": [1013], "apps.ntid.rit.edu": [13667], "www.openhatch.org": [12140], "farq.ca": [2053], "*.storage-bin.com": [15747], "panoramio.com": [12571], "megabigpower.com": [10391], "img06.rl0.ru": [14147], "*.pumo.com.tw": [13456], "digital.community-journalism.net": [16416], "store1.adobe.com": [655], "codeascraft.com": [3418], "www.mysecureconnect.com": [10973], "reactor.osu.edu": [11959], "moderngov.redbridge.gov.uk": [13917], "dixie.deals": [2053], "vntx.cl": [2053], "ups.com": [17285], "www.aldi.ie": [338], "www.mydealz.de": [10944], "cpmstar.com": [2704], "s.spnnr.ru": [2053], "www.onehockey.com": [12033], "rutf.co": [2053], "golfdigestinsiders.com": [6950], "www.giftofspeed.com": [20239], "vijaypath.sbi.co.in": [14320], "gfx.dagbladet.no": [4183], "dist.nuget.org": [11760], "amiando.com": [992], "acmole.com": [2053], "rais.ornl.gov": [11892], "ztl.onl": [2053], "atbk.alicdn.com": [846], "eprize.com": [5045], "chiliproject.org": [3135], "j.meddah.fr": [2053], "symfony.com": [15971], "shadertoy.com": [14896], "psrecruiting.brookings.edu": [2416], "nrf.com": [11248], "www.landalskilife.*": [18790], "www.ledgerwallet.com": [9377], "brandify.link": [2053], "cloud.feedly.com": [5853], "access.caltech.edu": [2815], "de-la.dict.cc": [4536], "www.neaf.gov.au": [11257], "service.mcafee.com": [10282], "www.37signals.com": [143], "www04.fonts.com": [6110], "wiki.moniker.com": [9018], "web.com": [18346], "linghai.meituan.com": [10405], "srihash.org": [14405], "net-housting.de": [11369], "*.ckom.de": [3264], "nx.lt": [2053], "trustedshops.*": [17062], "go.lund.io": [2053], "dmktgd.com": [2053], "www.ple.com.au": [12472], "friendfinder.com": [6331], "cars.webjet.com.au": [18421], "sqr.wf": [2053], "www.datstat.com": [4247], "*.monoprice.com": [10749], "easternfusion-terenure.just-eat.ie": [20565], "envoyer.io": [5415], "hotelwifi.com": [7697], "career.ru": [2900], "kleppi.co": [2053], "r.tooveo.com": [2053], "i9.imb.br": [2053], "info.th3top.com": [2053], "woodgreenshop.org.uk": [18720], "carafun.id": [2053], "j.gugler.at": [2053], "zny.me": [2053], "studentliving.georgetown.edu": [6668], "docs.aliyun.com": [861], "shoprelay.co": [2053], "sesplan-consult.objective.co.uk": [20979], "mebsd.com": [20765], "fw.tmall.com": [21748], "0w0.pics": [2053], "piratebayaccess.co.uk": [21712], "amrit.am": [2053], "choistkd.net": [2053], "homeless.org.uk": [20354], "www.jwchat.org": [8613], "www.smzdm.com": [15263], "twattle.net": [17140], "zyc.us": [2053], "madness.dj": [2053], "kva.se": [20624], "slvrlnng.us": [2053], "stry.it": [2053], "framadate.org": [6214], "nay.onl": [2053], "www.albinoloverats.net": [820], "sipgate.io": [15103], "ubersen.se": [2053], "onlineregister.com": [12065], "bugs.r-project.org": [13621], "rt.rakuten.co.jp": [13768], "drwkp.me": [2053], "web018.anadolu.edu.tr": [1025], "lispac.lsbu.ac.uk": [9252], "*.wservices.ch": [18778], "on.baskin.cloud": [2053], "uche.us": [2053], "creative.wwwpromoter.com": [22071], "bsea.co": [2053], "finance.google.co.*": [6965], "slice.com": [15200], "on.us.playstation.com": [13015], "tpb.unblock.bid": [21771], "www.poo.solutions": [13124], "cora1.co.uk": [2053], "www.11joycasino.com": [20552], "www.bitcalm.com": [1977], "coremotives.com": [3732], "kosmas.cz": [8895], "www.daily.co.uk": [4190], "uzbekistan.usembassy.gov": [21879], "fourmilab.ch": [6199], "rsrc.psychologytoday.com": [13417], "s8.mt-cdn.net": [9963], "trcgo.es": [2053], "werbung.search.ch": [14684], "zeroblock.com": [19155], "inlinkz.com": [8181], "roughtradegear.com": [14218], "www3.itf.gov.hk": [7209], "man.root.cz": [14199], "nb-no.facebook.no": [5736], "www.communicatoremail.com": [3565], "counsel.georgetown.edu": [6668], "112.wf": [2053], "ftp.rrze.uni-erlangen.de": [17597], "mykolab.com": [10955], "vesselbags.com": [17944], "www.jms1.net": [8736], "mfa.ag": [2053], "giroloyal.web.de": [18347], "wearev1.co": [2053], "habpl.us": [7260], "assets9.wwf.ch": [22060], "kmrk.me": [2053], "www.getcomposer.org": [6711], "*.whistleout.com": [18547], "www.bioshockinfinite.com": [1955], "ie.yandex.com.tr": [18954], "magazine.joomla.org": [8776], "ca.mit.edu": [9916], "www.sourceafrica.net": [15418], "bonus.qiwi.com": [13533], "bbpress.org": [1762], "l.kdy.ch": [2053], "*.cbc.ca": [2856], "plugunplug.net": [13047], "m.hilliker.org": [2053], "mikeoscar.com": [2053], "s5.mzstatic.com": [11041], "www.loa.org": [9689], "credit-card.asda.com": [387], "tve.cm": [2053], "to.titlee.fr": [2053], "blog.ikeepincloud.com": [7897], "tverigrad.ru": [21823], "nccih.nih.gov": [11241], "apt.univention.de": [17511], "order.napster.com": [20874], "saugst.in": [2053], "sport.1688.com": [44], "www8.pipni.cz": [12460], "www.xxx24hr.com": [18910], "ngvpn05.nvidia.com": [11174], "accountcenter.pfizer.com": [12822], "conv3rt3r.com": [2053], "raceforward.org": [13725], "promonitor.strode-college.ac.uk": [15784], "www.signalvnoise.com": [21446], "sjb007.me": [2053], "www.mike.kaply.com": [8942], "widgets.guidestar.org": [7135], "support.serverbase.ch": [21415], "www.nkl.fi": [11203], "www.roughtradegear.com": [14218], "cf7.100r.org": [12], "t.jibe.com": [2053], "l.anand.io": [2053], "nashp.co": [2053], "lana.mobi": [2053], "xur.ca": [2053], "htrvl.tk": [2053], "staceymlr.me": [2053], "i.wish.org": [2053], "www.underground-gamer.com": [17439], "content.dealnews.com": [4339], "demo.zeronet.io": [19158], "ibank.alfabank.kz": [842], "image.sinajs.cn": [21456], "www.fs.isy.liu.se": [9238], "nationalcareersservice.direct.gov.uk": [4615], "www.stanfordmed.org": [15639], "ideafit.com": [8074], "korruption.dk": [9141], "www.knappschaft-bahn-see.de": [9092], "mkto.co": [2053], "singlefeed.com": [15095], "petridish.org": [12810], "www.surprisinglyfree.com": [15910], "123s.us": [2053], "wrte.me": [2053], "img.taobaocdn.com": [16207], "www.dailystar.co.uk": [4200], "resources2.spiceworks.com": [15517], "www.greatcareers.co.uk": [1224], "contacts.msn.com": [9961], "*.tmimgcdn.com": [16367], "tipmobiletest.sbb.ch": [15946], "gist.github.com": [6801], "like.yst.so": [2053], "link.optric.biz": [2053], "bug.freifunk.net": [6311], "it.foursquare.com": [6200], "ticket.yandex.by": [18953], "www.eecs.mit.edu": [9916], "ayala.tv": [2053], "nejc.co": [2053], "weather.yandex.com": [18956], "bjc.link": [2053], "2all.jobs": [2053], "4vm.co": [2053], "www.fluechtlinge.wien.at": [22025], "on.lmntrx.com": [2053], "distor.co": [2053], "verizon-beta.mcafee.com": [10282], "static-secure.guim.co.uk": [7142], "www.mindleaking.org": [20798], "scrpt.me": [2053], "zj.meituan.com": [10405], "www.adafruit.com": [589], "*.gkb.ch": [20574], "c4me.us": [2053], "vladcampos.net": [2053], "edah.cf": [2053], "live.com": [9644], "xuecheng.meituan.com": [10405], "energie.vellum.cz": [20039], "www.utopia-ad.org": [21887], "seeforyourself.oxfordcc.co.uk": [21054], "lis.illinois.edu": [17544], "www.youtube.com.ro": [19016], "cloudfront.assets.stitcher.com": [15732], "virginmobileusa.com": [18027], "www.cosmonova.net": [19796], "qihe.meituan.com": [10405], "products.secureserver.net": [14755], "cr0.org": [3818], "x.izham.com": [2053], "read.re": [2053], "s1.daumcdn.net": [4298], "click-finder.jp": [14985], "origin.varcentral.com.au": [17758], "opinionlab.com": [12256], "www.icukhosting.co.uk": [7841], "www.factorable.net": [5739], "thnk.gr": [2053], "*.modlife.com": [10713], "the-dma.org": [16449], "*.radioshackcorporation.com": [16648], "*.target.com": [16215], "n.thestar.com": [16846], "www.lantmateriet.se": [9305], "kibi.co": [2053], "to.qrshar.es": [2053], "newark.osu.edu": [11959], "www.trustedreviews.com": [17067], "www.tvnutt.com": [16144], "data.whicdn.com": [18200], "www.fashionara.com": [5782, 5783], "newsoffice.mit.edu": [9916], "*.californiaunitedbank.com": [2809], "www.shortnote.jp": [21434], "hs12.snstatic.fi": [14383], "muri.engineering.osu.edu": [11959], "www.trilogygolfclub.com": [8578], "go.junian.net": [2053], "www.osvehicle.com": [21039], "carezone.cz": [2908], "orel.beeline.ru": [1801], "libraries.shropshire.gov.uk": [21440], "static.jp.as.criteo.net": [3872], "netpla.net": [2053], "lyi.me": [2053], "shi.ms": [2053], "dfnbdy.com": [2053], "banners.itunes.apple.com": [1160], "ca.uninett.no": [17477], "welt.de": [18492], "bitsharestalk.org": [2068], "at.serien.ninja": [2053], "award.rolex.com": [2053], "uwinnipeg.worldcat.org": [18748], "in.amny.com": [2053], "masteringemacs.org": [10221], "www.northnorfolk.org": [11695], "encuestas.ulpgc.es": [17411], "wunbr.net": [2053], "packetflagon.uk": [21062], "orrdat.orr.gov.uk": [21032], "*.moneybookers.com": [10738], "www.musikerforbundet.se": [10909], "mjd.bz": [2053], "youtube.nl": [19016], "jdh.so": [2053], "images.tvnz.co.nz": [16141], "clic.rs": [2053], "www.misadventureswithandi.com": [10641], "i2.social.s-msft.com": [14296], "aj.meituan.com": [10405], "knowledgebase.musicmetric.com": [10907], "zenbook.asus.com": [397], "www.noteapp.com": [11719], "pumb.to": [2053], "wwaplay.com": [2053], "ofcom.in": [2053], "www.hostingreviews.com": [7669], "wac6.net": [2053], "brecktrip.co": [2053], "*.prf.hn": [12779], "master.php.net": [12453], "mail.cablesurf.de": [2764], "www.ukash.com": [17404], "e-nls.com": [11592], "www.rantoulpress.com": [13785], "boss429.deathmask.net": [4344], "www.firmware.netgate.com": [5981], "calrep.ly": [2053], "dnssec-tools.org": [4139], "static.ny.us.criteo.net": [3872], "go.fatfog.com": [2053], "greetings.icq.com": [7837], "admin.jobfinder.dk": [8745], "www.kameleoon.com": [8928], "static.ucuzu.com": [17390], "dkstyle.me": [2053], "helpscout.net": [7446], "producciocientifica.upf.edu": [17674], "www.sankatyadvisors.com": [14525], "joomlart.com": [8775], "cash.vnu.ru": [21935], "investor.twitterinc.com": [17170], "get.unbounce.com": [17436], "fontconfig.freedesktop.org": [6243], "efcomputing.ml": [2053], "*.dentalxchange.com": [4993], "*.switchnetworks.com.au": [15956], "loveraleigh.com": [2053], "idp.opera.com": [12252], "membercentral.com": [10417], "bnds.infos.st": [2053], "vale.pro": [2053], "darkroom.shortlist.com": [14979], "datse.ca": [2053], "contact.intelish.com": [8363], "www.itx.com": [8000], "wikis-stage.oracle.com": [12284], "mts.fyi": [2053], "www.pubsoft.org": [13427], "devalate.com": [19903], "biomechanics.engineering.osu.edu": [11959], "payin.co": [2053], "www.bridgeroadmarketing.com": [2368], "*.dodspeople.com": [4719], "printservic.es": [2053], "www.security.vt.edu": [18031], "ausmbmarketplace.cisco.com": [3221], "go.adrianb.net": [2053], "events.openmrs.org": [12149], "*.rebelmouse.com": [13873], "u.chamuel.us": [2053], "fstoppers.com": [6357], "sofw.org": [2053], "pdscott.co": [2053], "koqu.in": [2053], "info.mheducation.com": [20789, 20790], "naturalresources.wales": [11291], "corp.galois.com": [6528], "www.btcs.com": [1603], "www.pictomania.com": [12880], "chat-place.org": [3087], "www.mycharity.ie": [10940], "dentistry.uic.edu": [17517], "perfect-privacy.com": [12770], "admin.beamyourscreen.de": [1782], "royd.to": [2053], "bitly.is": [2053], "*.visabuxx.com": [18054], "cayaya.info": [2053], "sendle.in": [2053], "dpost.co": [2053], "spcala.com": [14391], "r.khimoc.com": [2053], "admincontrol.com": [19293], "go.lele.rocks": [2053], "dereko.ca": [2053], "indat.mx": [2053], "pulzo.co": [2053], "karyabi.xyz": [2053], "lordsoftheblog.net": [9772], "openttdcoop.org": [12180], "livewyer.com": [9659], "beacon.gutefrage.net": [7157], "www.ist.utl.pt": [16288], "evl.io": [2053], "wafangdian.meituan.com": [10405], "l.jlhsclubs.org": [2053], "images1.dailykos.com": [4193], "xperiastudio.com": [18886], "t.virgl.net": [2053], "discussions.agilebits.com": [765], "linuxconfig.org": [20696], "fellca.st": [2053], "media.scriptfodder.com": [14662], "novel.stanford.edu": [15635], "*.annualcreditreport.com": [1073], "goyt.eu": [2053], "fineartamerica.com": [5959], "www.pdflabs.com": [12439], "www.ekwb.com": [5019], "www.priceonomics.com": [13282], "www.morello.se": [10777], "*.fust.ch": [3712], "sdsurf.workforcehosting.com": [18743], "www.tapiture.com": [16212], "hbo.vice.com": [17959], "jobs.economist.com": [5161], "ge.solidarites.ch": [21504], "defaultsmblog.stanford.edu": [15635], "prvn.one": [2053], "passwordwolf.com": [21080], "websites.thm.de": [16066], "www.robolinux.org": [21320], "millwardbrown.com": [10585], "www.vacanteen.va.gov": [17297], "drupal.engineering.osu.edu": [11959], "go.mahmoud.work": [2053], "a.imagereed.com": [2053], "mhsttn.me": [2053], "r-rdz.com": [2053], "icez.net": [8062], "swh.rocks": [2053], "rd.heras.es": [2053], "n0where.org": [11049], "townsvillebottomfishingcharters.com.au": [16890], "landal.*": [18790], "gmr5.com": [2053], "kmyl.es": [2053], "reviews.freebsd.org": [6237], "magickly.afeld.me": [19314], "*.getpebble.com": [12720], "pestcontrolss.northumberland.gov.uk": [20929], "www.csync.org": [3972], "content-ssl.yieldmanager.com": [14114], "admin.closerware.net": [3333], "opensourcehacker.com": [12224], "shop.intsig.net": [20481], "shopaz.link": [2053], "api.zalando.com": [19094], "bt.no": [1592, 1836], "tpb.piratenpartij.nl": [12924], "o.icomos.org.br": [2053], "timpho.to": [2053], "3m.com": [152], "x.stefx.com": [2053], "sedmitza.ru": [21402], "www.requires.io": [14026], "corporate.aldi.ie": [338], "www.luosimao.com": [20726], "server.ffa.vutbr.cz": [17814], "www.providesupport.cn": [13400], "exeter.ac.uk": [17537], "cdn.globalcloudxchange.com": [6846], "meinkonto.telekom-dienste.de": [16344], "sptf.re": [2053], "spaces.live.com": [9644], "rooms.library.jhu.edu": [16562], "www.safeshepherd.com": [14473], "gzl.meituan.com": [10405], "regioad.immobilienscout24.de": [8153], "www.ovh.it": [12378], "url.bevera.st": [2053], "blog.provost.georgetown.edu": [6668], "bb.org.au": [2053], "avserver.ignou.ac.in": [8102], "*.catn.com": [2952], "admin3.providesupport.com": [13401], "desnogorsk.beeline.ru": [1801], "whitehathouston.com": [18552], "www.ovh.ie": [12378], "comstern.de": [3521], "blog.zalando.de": [19094], "*.ftccomplaintassistant.gov": [5720], "sms.it-ccs.com": [20506], "robvance.link": [2053], "register.maxon.net": [10263], "sscot.ch": [2053], "afdc.energy.gov": [5355], "pdr.li": [2053], "m.allshareplay.com": [878], "rocket.chat": [14170], "a.crsclub.org": [2053], "account.jesus.cam.ac.uk": [17529], "fr.rt.com": [13702], "leukemiafoundation.org": [11283], "www.quantopian.com": [13570], "www.febas.de": [5822], "www.laptoplap.hu": [9308], "alac.macosforge.org": [9985], "revda.beeline.ru": [1801], "zangki.ga": [2053], "jhns.tv": [2053], "uncsd2012.org": [17492], "www.leukemiafoundation.org": [11283], "stevesie.com": [15727], "zangki.gq": [2053], "www.internetessentials.com": [20477], "go.peela.com.br": [2053], "www.crimereduction.homeoffice.gov.uk": [20355], "beta.apple.com": [1160], "tiremetroonline.com": [16766], "famba.se": [2053], "lewatin.tk": [2053], "pubsoft.org": [13427], "minstk.com": [2053], "zebra.coffee": [2053], "valueclickmedia.com": [17834], "s.viva.bh": [2053], "copeland.moderngov.co.uk": [20816], "priorygroup.com": [13301], "itzl.jd.com": [8571], "symb.is": [2053], "s1.linkvp.com": [18075], "shop.vodafone.de": [18107], "aspone.cz": [19440], "cas.u-bordeaux.fr": [17195], "www.lpdedicated.com": [609], "feedjit.com": [5852], "surv.rover.vet": [2053], "oascentral.aviationweek.com": [90], "nemertes.com": [11336], "oo.opinionlab.com": [12256], "scotts.link": [2053], "service.byte.nl": [2544], "*.comsuper.gov.au": [3522], "file.bizrate.com": [2086], "www.visahq.com": [18053], "us.ae.aliexpress.com": [847], "jpii.life": [2053], "s102.cnzz.com": [3391], "iambishat.com": [2053], "mivolunteers.org": [18130], "www.rudloff.pro": [14258], "www.acpica.org": [302], "uis.kaspersky.com": [8958], "payback.pl": [21088], "www.clksite.com": [19734], "oddb.it": [2053], "dge.stanford.edu": [15635], "wush.net": [18785], "mett.tk": [3597], "alb.io": [2053], "slth.so": [2053], "bekoe.link": [2053], "insightsgtd.nl": [2053], "votew.in": [2053], "ares.wustl.edu": [18290], "paket.de": [12541], "www.mpbio.com": [9948], "brazzaville.usembassy.gov": [21879], "static.hgmsites.net": [7538], "ucpi.org.uk": [17214], "wiki.loadaverage.org": [9692], "dsuri.net": [2053], "www.christianheilmann.com": [3171], "involv.es": [2053], "www-prod-storage.cloud.caltech.edu.s3.amazonaws.com": [2815], "infoblox.com": [8255], "blogs.gnome.org": [6470], "m.bertindak.com": [2053], "certify.gpwa.org": [6532], "lqdt.at": [2053], "focus2fly.eu": [2053], "*.btrstatic.com": [1615], "pypi.doubanio.com": [19954], "www.kissinsights.com": [8879], "static.sf.net": [15423], "poip.es": [2053], "careplace.org.uk": [19647], "www.bullguard.com": [2476], "gomounti.es": [2053], "pingce.1688.com": [44], "adserverec.adtechus.com": [679], "rvsh.in": [2053], "poptalk.link": [2053], "thebark.us": [2053], "rcc.ca": [2053], "www.hertz-autovermietung.com.pl": [7497], "48.bio": [2053], "grim.li": [2053], "ovh.co.uk": [12378], "grafte.ch": [2053], "cms.paypal.com": [12678], "johnsonking.com": [8761], "ih.constantcontact.com": [3657], "di.fakta4.com": [2053], "s7.ms": [2053], "lists.uhulinux.hu": [21837], "officeredir.microsoft.com": [10543], "bu.edu": [2291], "presscoders.com": [13256], "forums.vtiger.com": [18161], "whlp.ly": [2053], "sweetm.ag": [2053], "www.xbee.net": [18848], "qss.me": [2053], "*.dbapp.netdna-cdn.com": [4185], "static.wonderwall.com": [18714], "bbls.us": [2053], "school.ufanet.ru": [21836], "hsto.org": [7729], "www.campaignmonitor.com": [2839], "hflive.us": [2053], "10xr.com": [2053], "gongqingcheng.meituan.com": [10405], "es-contrainfo.espiv.net": [20058], "go.vista.eu.com": [2053], "www.exootlab.com": [5609], "t.rasp.yandex.com": [18956], "mvanm.com": [2053], "*.eerdmans.com": [5205], "aameetings.in": [2053], "login.uned.es": [17446], "clifd.es": [2053], "cryptome.org": [3948], "nikecsolutions.com": [11571], "mdyp.ws": [2053], "pre.aps.org": [969], "bitfinex.com": [2045], "youtube.com.ro": [19016], "*.fail0verflow.com": [20093], "help.perle.com": [12789], "milbencheck.at": [10577], "jcr.us": [2053], "www.twittercommunity.com": [17169], "coinaxis.com": [3455], "redirect1903.tagcommander.com": [16159], "sharesix.com": [14912], "pvac-webhost.leeds.ac.uk": [17604], "servicing.capitalone.com": [2878], "might.ly": [2053], "rimg08.rl0.ru": [14147], "quartzol.it": [2053], "a.shortbyte.de": [2053], "www.beonespark.com": [1552], "*.bluehost.com": [2203], "orkut.com.br": [12313], "tomf.me": [2053], "jx.meituan.com": [10405], "www.apmebf.com": [3546], "b.majestic.name": [2053], "www.mattermark.com": [20761], "popphoto.com": [13149], "melb.co": [2053], "links.eskada.tk": [2053], "jobcorps.dol.gov": [19938], "reservations.palms.com": [12552], "go.faisal.ec": [2053], "netzfreiheit.org": [11467], "support.globusonline.org": [6869], "ningguo.meituan.com": [10405], "a1community.net": [252], "webmail.wildwestdomains.com": [18599], "yify-torrent.org": [18920], "radio2.nu": [2053], "parlament.neos.eu": [11088], "bitcoinaverage.com": [2018], "*.datahc.com": [4260], "scholcomm.columbia.edu": [3512], "www.richrelevance.com": [14104], "www.onsiteconcierge.com": [13625], "s.livekn.com": [2053], "www.eclevelandclinic.org": [3295], "cmswire.com": [2686], "my.gartner.com": [6580], "git.iridiumbrowser.de": [8504], "nwho.us": [2053], "www.pushbullet.com": [13480], "hediyeler.biz": [2053], "innovateuk.org": [8302], "pro.edgar-online.com": [4991], "www.mountaincode.eu": [10807], "grkt.miivo.net": [2053], "www.w.thm.de": [16066], "*.peopleschoice.com": [12765], "*.livestatserver.com": [9674], "1rabb.it": [2053], "investors.btcs.com": [1603], "sidn.nl": [14358], "indicators.ic.nhs.uk": [11101], "www.sovcombank.ru": [21516], "g.kiers.eu": [2053], "vfsh.uk": [2053], "webstats.genesis4gamer.de": [6649], "m.104.com.tw": [18], "dmu.ac.uk": [4122], "www.refeds.org": [13646], "static-1.ivoox.com": [8016], "hoodline.com": [7631], "expertbail.com": [328], "client.cdn77.com": [2614], "iar.com": [7814], "wwit.me": [2053], "linksnappy.com": [20695], "bjre.me": [2053], "www.ctc.usma.edu": [17322], "www.heimatshop-bayern.de": [7424], "googlesource.com": [6972], "deru.dict.cc": [4536], "gcapdevi.la": [2053], "solebicycl.es": [2053], "tcp.pics": [2053], "popofan.co": [2053], "www.steenwijkerland.nl": [11324], "www.carasutra.co.uk": [2889], "secure.ch.nicovideo.jp": [11584], "ptcho.ca": [2053], "mybcvs.ch": [1703], "gettingreal.37signals.com": [143], "undergradpreview.usc.edu": [17564], "livbst.in": [2053], "southampton.gov.uk": [15440], "assets.soundowl.net": [15412], "slp2.somerset.gov.uk": [15376], "rekonq.kde.org": [8871], "plantwi.se": [2053], "picviewer.co.uk": [2053], "georgian.worldcat.org": [18748], "api.itunes.apple.com": [1160], "campusverano.innova.uned.es": [17446], "cluster1.easy-hebergement.net": [5134], "gcs.civilservice.gov.uk": [19721], "lexeshow.co": [2053], "www.datenschutzzentrum.de": [8201], "sptrs.io": [2053], "leboncoin.fr": [20650], "spice-space.org": [15515], "home.kik.com": [20593], "petra3.desy.de": [4479], "styienow.com": [2053], "bclub.co": [2053], "yspe.nl": [2053], "partners.netapplications.com": [11364], "lawnpro.me": [2053], "orv.is": [2053], "bhpho.to": [2053], "g2.hitravel.xyz": [2053], "www.fanli.com": [5769], "lists.gnupg.org": [6887], "blpwl.it": [2053], "c02.my.uprr.com": [21870], "home.thesun.co.uk": [21719], "mun.do": [2053], "tradeassurance.alibaba.com": [850], "vt.edu": [18031], "educationguide.tue.nl": [16129], "gitlab.io": [6799], "photo-mark.com": [10166], "js.ui-portal.de": [17230], "research.csc.ncsu.edu": [11690], "permits.performance.gov": [12780], "bmbl.us": [2053], "jagschools.illuminateed.com": [20430], "www.f3.htw-berlin.de": [7246], "open.1688.com": [44], "www.littlecms.com": [9638], "www10.qth.com": [13520], "static.sakh.com": [21360], "brave.pigg.ameba.jp": [963], "renderfarming.net": [14000], "sh.marblee.jp": [2053], "aka.hmrc.gov.uk": [7219], "spanish.costarica.usembassy.gov": [21879], "secureuk.net": [14757], "www.nttxstore.jp": [11755], "wspt.io": [2053], "www.pfefferkoerner.de": [12820], "ukashcardsatis.com": [17405], "www.xsport.ua": [22088], "store.axosoft.com": [1517], "filescrunch.com": [5918], "www.wetter.de": [18521], "www.theparliamentmagazine.eu": [16570], "wiredout.osu.edu": [11959], "v034.ax2600ab.omhq.uprr.com": [21870], "sfrt.co": [2053], "*.epb.net": [5039], "365.rsaconference.com": [13688], "knbs.ru": [2053], "*.cityofchicago.org": [3243], "www.getawaygrey.com": [6688], "recordnotfound.com": [21277], "www.myed.ed.ac.uk": [5168], "inews.berkeley.edu": [17526], "lauren.tw": [2053], "cdn.theatlantic.com": [16512], "www.soc.ulaval.ca": [17515], "www.suntec.net": [15863], "iuscommunity.org": [20515], "red.ginge.rs": [2053], "bundanon.com.au": [2482], "imgb.nxjimg.com": [11790], "appcolony.me": [2053], "certificate-transparency.org": [3028], "go.zeemac.net": [2053], "eastdane.com": [19992], "blog.dol.gov": [19938], "l.iaero.me": [2053], "i4.social.s-msft.com": [14296], "nzz-libro.ch": [20974], "myh.bz": [2053], "zaption.com": [19107], "www.webspace4all.eu": [18450], "go.duo.com": [4900], "youngafricanleaders.state.gov": [17345], "ta.meituan.com": [10405], "apps.fbcdn.net": [5816], "foxydeal.de": [6206, 6207], "wenling.1688.com": [44], "*.pragmaticmarketing.com": [13239], "www.solola.ca": [15372], "playerattack.com": [13021], "gzt-sv.ru": [20302], "ieu.li": [2053], "ttnny.com": [2053], "images.mobilism.org": [20814], "ne.edgecastcdn.net": [5180], "archive.foolz.us": [6125], "secure.zamzar.com": [19099], "photos2.meetupstatic.com": [10386], "controlscan.com": [3688], "www.mandiant.com": [20747], "vmobil.ec": [2053], "s.ivi.ru": [2053], "go.which.co.uk": [2053], "www.providerfinder.empireblue.com": [20033], "pnterest.ga": [2053], "x.bidswitch.net": [1900], "maincampusresearch.georgetown.edu": [6668], "ottc.it": [2053], "web4all.fr": [18349], "logicboxsoftware.com": [9718], "gosrv.click": [2053], "medianetwork.oracle.com": [12284], "portal.alibaba.com": [850], "fis.westberks.gov.uk": [22005], "on.hope.city": [2053], "www.schweissgut.net": [12319], "williams.edu": [18617], "setcronjob.com": [21418], "wwwn.cdc.gov": [19663], "shield.nvidia.com": [11174], "ok.beztdealz.in": [2053], "jhnflry.com": [2053], "s.unco.cc": [2053], "1.asset.soup.io": [15415], "s-nt.org": [2053], "www.webenrol.com": [21991], "on.bianca.co": [2053], "www.lawblog.de": [9333], "zjg.meituan.com": [10405], "cloudtools.rackspace.com": [13740], "satern.nasa.gov": [11058], "adcap.biz": [558], "dataclass.stanford.edu": [15635], "jn.meituan.com": [10405], "dadblo.gs": [2053], "*.marhab.com": [10149], "ubuntu-mate.community": [17386], "heshan.meituan.com": [10405], "*.grenoble-inp.fr": [7069], "www.axisbank.co.in": [1514], "attach.s8bbs.com": [21352], "poppler.freedesktop.org": [6243], "tlrd.co": [2053], "*.ey.com": [5450], "aafa.me": [2053], "www.webfusion.co.uk": [18414], "lvliang.meituan.com": [10405], "polid.jppol.dk": [8592], "on.wgem.com": [2053], "my.dianomi.com": [4525], "kpopstage.co": [9152], "paste.lugons.org": [9262], "apps.nlm.nih.gov": [11241], "adrw.co": [2053], "mdosche.de": [10296], "gslug.org": [7118], "www.integrity.st": [8354], "www.firstlook.org": [5993], "sc101.us": [2053], "gviz.info": [2053], "unr.li": [17654], "maps.ilovefreegle.org": [8037], "w4e.cc": [2053], "unr.lt": [2053], "*.mongabay.com": [10740], "sitemgr.web.engineering.osu.edu": [11959], "oghalailab.stanford.edu": [15635], "unr.ly": [2053], "www.noaddedsugar.com": [11640], "justaguy.pw": [8850], "l.cidertv.com": [2053], "pp.sanitatem.mx": [2053], "superforum.org": [14883], "mpi-sws.org": [10254], "Avanza.se": [1483], "escapistexpo.com": [16453], "www.intelliserver.net": [8368], "rws.im": [2053], "*.blogspot.gr": [2166], "quantis.umftgm.ro": [21848], "dlbds.co": [2053], "atqr.us": [2053], "www.plexapp.com": [13037], "akademy2012.kde.org": [8871], "www.clearista.com": [3292], "www.patriotssuperbowl.us": [12669], "media.pbbans.com": [21090], "trainingcenter.nih.gov": [11241], "vangogh.teespring.com": [16316], "webmail.mbnet.fi": [9889], "pressroom.usc.edu": [17564], "jondos.org": [8772], "crypton.io": [3951], "*.markmonitor.com": [10167], "sc3.maps.live.com": [9644], "tiger.tt": [2053], "iran.usembassy.gov": [21879], "www.sure-assist.com": [15899], "yushou.jd.com": [8571], "portal.switch.ch": [15952], "cvrhnd.co": [2053], "api.snel.com": [15280], "www.pcapredict.com": [21091], "get.gp": [2053], "passport.115.com": [25], "www.sumatrapdfreader.org": [21603], "cybox.mitre.org": [10649], "pimages.xplosion.de": [18888], "wpchk.it": [2053], "www-cdn.dell.com": [4413], "ei.chaturbate.com": [3093], "an-zero.com": [2053], "livingsoci.al": [2053], "microcorruption.com": [10535], "symantec.com": [15969], "sent.pr": [2053], "r.st": [2053], "kau.se": [8862], "outlander.cf": [2053], "codecombat.com": [3424], "apps.vendini.com": [21904], "fnacspectacles.com": [6086], "*.forgifs.com": [6155], "sue.am": [2053], "monitor.research.rakuten.co.jp": [13768], "cio.wustl.edu": [18290], "www.youtube.hr": [19016], "tw.piliapp.com": [12887], "danig.org": [2053], "lk.mcgee.se": [2053], "go.progpf.com": [2053], "connect.apan.org": [369], "*.topoption.com": [16833], "go.gsolo.com": [2053], "bxboy.com": [2053], "cacm.life": [2053], "ovscruise.com": [18790], "semin.is": [2053], "ads.pubmatic.com": [13422], "www.metin2.co.nz": [10494], "bookings.lambeth.gov.uk": [20631], "www.micahflee.com": [10519], "www.trainingindustry.com": [16931], "webmail.se.cuhk.edu.hk": [2747], "*.hit.gemius.pl": [6638], "partedmagic.com": [21077], "pden.co": [2053], "static.glassdoor.com": [6823], "careers.bbc.co.uk": [1538], "m.marinacc.io": [2053], "libsdl.org": [9449], "thecutestsiteontheblock.com": [16448], "tulips.ntu.edu.tw": [11160], "get.how": [6698], "*.crsspxl.com": [3884], "elliptifit.me": [2053], "cinnf.org": [2053], "www.rf.osu.edu": [11959], "gdcl.co": [2053], "eplanning.birmingham.gov.uk": [19536], "www.cnrs.fr": [6314], "01i.jp": [2053], "samara.beeline.ru": [1801], "toutiao.com": [16881], "www.nottsbusinesswatch.co.uk": [20934], "telford.gov.uk": [21675], "*.ironwhale.com": [8506], "www.lenovo.com": [9409], "www.zongheng.com": [22137], "go.th78.me": [2053], "www.earthfirst.org.uk": [5107], "suits.to": [2053], "qfcdn.com": [21239], "match.adsrvr.org": [675], "zabbix.etnasoft.com": [5493], "amimoto.status.io": [21569], "www.hashcat.net": [7358], "missnu.me": [2053], "partiya.me": [2053], "soeren-hentzschel.at": [15335], "album.kn007.net": [9089], "www.cpeople.ru": [19809], "thirstyran.do": [2053], "tripj.net": [2053], "l.magikmaps.com": [2053], "www.notevenpast.org": [11715], "event.knowledgeblog.org": [9100], "j2ma.de": [2053], "secure.accountsupport.com": [498], "static9.twilio.com": [17152], "enjoei.de": [2053], "vozao.net": [2053], "sysmocom.de": [16010], "www.robeco.nl": [14153], "groupees.com": [7097], "plugins.movabletype.org": [10815], "dtb.im": [2053], "*.velmedia.net": [17889], "support.jdownloader.org": [20531], "owyd.co": [2053], "svn.jenkins-ci.org": [8700], "livewelln.co": [2053], "display.yandex.com.tr": [18954], "www.gamersfirst.com": [6553], "www.brent.gov.uk": [2358], "walgreens.com": [18253], "support.f5.com": [5659], "uconomix.in": [2053], "www.facebook.it": [5736], "cl.exct.net": [5590], "it.4.boardgamearena.com": [2219], "ios-conf.tv4play.se": [16137], "www.facebook.is": [5736], "mammth.com": [2053], "www.suas.ie": [15808], "api-v2.soundcloud.com": [15410], "fmit.co": [2053], "khmr.cn": [2053], "mhill.je": [2053], "pictures.meetic.com": [10381], "metabunk.org": [10481], "s.gerwert.io": [2053], "miles-and-more.com": [10581], "cambridgelivetrust.co.uk": [19631], "hye.bz": [2053], "myaccountholding.talktalk.co.uk": [16184], "wpcom-i18n.svn.automattic.com": [1465], "www.interkassa.com": [8400], "www.bunkus.org": [19611], "bdsc.webapps.blackberry.com": [2102], "www.cyseclabs.com": [4065], "more-ip-event.net": [10772], "monster.cat": [2053], "www.pandora.com": [12564], "k1ko.me": [2053], "fod-web-01.busfin.ohio-state.edu": [11960], "www.edvina.net": [5202], "bawsi.org": [1532], "xprt.re": [2053], "demo.ethernetportal.equinix.com": [5438], "www.vanlanschot.nl": [17845], "bitly.buzz": [2053], "news.google.*": [6965], "www.tpbproxy.cc": [21709], "vmpforms.easthants.gov.uk": [5113], "m.smhealth.net": [2053], "corporate.hdfcbank.com": [7389], "lxvc.co": [2053], "oka.bz": [2053], "icar.us": [2053], "www.squarepenguin.co.uk": [15581], "jphoward.org": [2053], "onecloudsecurity.com": [12030], "acl.alibaba-inc.com": [19342], "www6.cuhk.edu.hk": [2747], "judidomino.org": [2053], "www.fpf.org": [20153], "ss.mirachem.net": [2053], "*.networkedblogs.com": [11464], "*.commercialappeal.com": [5087], "www.synthetix.com": [15996], "nice.org.uk": [11110], "zpry.me": [2053], "*.orangewebsite.com": [12291], "www.raceforward.org": [13725], "personaldataecosystem.org": [12793], "tankafetast.com": [16201], "bhelp.co": [2053], "isc2cares.org": [7968], "iws.htwk-leipzig.de": [7736], "www.bmpharmacy.com": [1574], "connect.watford.gov.uk": [21982], "www.wienmobil-karte.at": [18582], "fsfe.org": [5714], "globalpay.westernunion.com": [18512], "cbnr.co": [2053], "*.pricerunner.co.uk": [13280], "cdn.toyfoundry.net": [16893], "www.biology.wustl.edu": [18290], "l.huuub.com": [2053], "password.georgetown.edu": [6668], "rkn.gov.ru": [14146], "*.fsu.edu": [5716], "a.disquscdn.com": [4656], "www.heg.org": [7646], "aby.pl": [2053], "www.vpnsecure.me": [17796], "linkd.in": [2053], "bnw.wtf": [2053], "ecpm.tanx.com": [21661], "coma.ma": [2053], "leiajung.org": [9395], "hi.doub.co": [2053], "thecityuk.com": [16486], "noiselessvault.org": [11653], "leikki.co": [2053], "pages.justgiving.com": [8845], "agendaless.com": [762], "mmm.jp": [2053], "sofawolf.com": [15337], "dot.money.pl": [10735], "parkmodelsdirect.com": [12609], "tme.osu.edu": [11959], "fisv.co": [2053], "link.is.good.af": [2053], "avgclick.me": [2053], "www.gigamon.com": [6769], "oneta.st": [2053], "buildingdata.energy.gov": [5355], "unirel.vt.edu": [18031], "music.douban.com": [4802], "origin-cdn.els-cdn.com": [5284], "zdrojak.root.cz": [14199], "nohair.cf": [2053], "tilastot.piraattipuolue.fi": [21128], "anqing.meituan.com": [10405], "skj.co": [2053], "slb.com": [14596], "shout.edufor.me": [2053], "static.lanyrd.net": [9306], "schulera.de": [2053], "api.suggest.search.rakuten.co.jp": [13768], "l.facebook.com": [5733], "nirave.uk": [2053], "cforce.info": [2053], "mysupport.netapp.com": [11374], "signpostsheffield.sheffield.gov.uk": [14939], "u.regiokick.com": [2053], "quicktranslate.com": [13593], "media.allyou.net": [882], "www.carecareersdevon.org.uk": [19645], "rohit.ws": [2053], "www.gaytimes.co.uk": [20209], "bugs.gnewsense.org": [5713], "full-on-line.cf": [2053], "ip.sandia.gov": [14517], "www.compaq.com": [3574], "alvn.me": [2053], "relnow.com": [2053], "zyado.com": [19246], "plumbr.eu": [13049], "l.emacsblog.org": [2053], "ubne.ws": [2053], "chz.me": [2053], "diygadget.com": [4674], "www.fraedom-cdn.com": [20154], "iterm2.org": [8009], "rej.li": [2053], "codeforamerica.org": [3419], "www.amctv.com": [345], "www.codecoon.com": [3425], "offers.usatoday.com": [17310], "www.metager.de": [10475], "docsend.com": [4701], "localphone.com": [20709], "store.atmel.com": [1022], "bananian.org": [1680], "go.boxer.se": [2053], "registrationbooking.oxfordshire.gov.uk": [21056], "givekidstheworldstore.org": [6808], "joemezz.us": [2053], "signin.netapp.com": [11374], "burak.ga": [2053], "blogs.ca.com": [2569], "url.tc.in.th": [2053], "go.itsitio.com": [2053], "*.jacksonville.com": [8634], "edenhost.com": [5176], "d20.io": [2053], "metashop.at": [13252], "trinidad.usembassy.gov": [21879], "etsy.com": [5500], "www.madewithcode.com": [10005], "nelhage.com": [11093], "lt2.us": [2053], "wxlink.jcloud.com": [8690], "gn.apc.org": [1329], "newon.blue": [2053], "i.p45.ca": [2053], "burtonc.co": [2053], "maplicada.unizar.es": [17643], "www.oagtravel.com": [17204], "q8.hitravel.xyz": [2053], "leadertech.com": [9355], "azcentral.com": [1519], "www.mastermindsdigital.com": [10223], "campaign.bezeqint.net": [1886], "mcgill.worldcat.org": [18748], "instra.com": [8346], "image.webservices.ft.com": [5941], "www.thepiratebay.pe": [21710], "shop.bite.lt": [2041], "petro.li": [2053], "survey.usa.gov": [17307], "scaryto.me": [2053], "prbuzz.net": [2053], "multiseek.net": [10884], "aeup.eu": [318], "ileansigma.osu.edu": [11959], "jcm.click": [2053], "www-cdn.jtvnw.net": [17164], "www.cybercrime.admin.ch": [21629], "kenclicks.us": [2053], "greenvilleonline.com": [7066], "riemann.unizar.es": [17643], "drrl.me": [2053], "ubcdn.co": [17362], "foodprotectiontaskforce.com": [6118], "docs.microsofttranslator.com": [10549], "nice.freedesktop.org": [6243], "static.volafile.io": [21944], "www.gogoinflight.com": [6933], "authorea.com": [1446], "*.tu-berlin.de": [16294], "stop-ttip.org": [15738], "secure.dilbertfiles.com": [4601], "www.aphyr.com": [1129], "support.opendns.com": [12130], "landh.org": [2053], "veterans-aid.net": [17947], "redb.co": [2053], "web.flux.utah.edu": [17574], "epaper.derstandard.at": [19899], "bibl.me": [2053], "www.thequestion.ru": [16615], "www.mutelight.org": [10916], "support.wildstar-online.com": [18602], "www.mrfile.me": [10863], "yuruk.biz": [2053], "www.mentalhealth.org.uk": [20779], "groznyy.beeline.ru": [1801], "www.gogobot.com": [6934], "psqr.us": [2053], "sibinfo.su": [21442], "namecoin.info": [11212], "pnch.it": [2053], "secure3.convio.net": [3697], "asics.tv": [2053], "sq.ouvaton.coop": [12360], "city-link.co.uk": [3241], "000webhost.thecthulhu.com": [16600], "exclusivex.com": [5595], "blogads.com": [13264], "walkjc.org": [2053], "www.tapatalk.com": [16209], "de-bs.dict.cc": [4536], "archive.is": [1203], "blogs.commons.georgetown.edu": [6668], "g.mozest.com": [10838], "img6.bdstatic.com": [19507], "planet.lysator.liu.se": [9238], "s.hstry.org": [2053], "accessibility.kde.org": [8871], "mdow.io": [2053], "spke.co": [2053], "www.ice.cam.ac.uk": [17529], "downpack.baidu.com": [1661], "datorhandbok.lysator.liu.se": [9238], "forum.pokemon-world-online.net": [13080], "vz46.brenet.de": [2349], "www.firstdedic.ru": [5983], "risk.io": [14134], "perc.link": [2053], "images.samsung.com": [14501], "*.systemcenteradvisor.com": [16014], "lxcenter.org": [9844], "vid.pr0gramm.com": [21185], "www.collingsfoundation.org": [3495], "webmail.hi.is": [7196], "integrity.pt": [8353], "cui.media": [2053], "*.edweek.org": [5170], "www.hipercontas.com.br": [20341], "2gis.ru": [102], "gazetaexpress.com": [6600], "mop.papua.us": [2053], "online.osu.edu": [11959], "informatick.net": [8271], "good.bz": [2053], "internet.yandex.com": [18956], "pr.sdg.me": [2053], "css.co.ve": [2053], "buffyvo.com": [2053], "online.moneycorp.com": [20823], "wilsoncenter.org": [18621], "datamonitor.com": [4283], "secure.mypass.de": [10963], "on.hackedu.xyz": [2053], "www.ivorde.com": [8550], "colegioamerica.uniovi.es": [17479], "enterprise.travis-ci.com": [16976], "www.idenyt.dk": [8089], "glossons.ml": [2053], "www.bitcoinplus.com": [2032], "secure3.dealinteractive.com": [19882], "sl.gjmolter.com": [2053], "w2t.it": [2053], "profitbricks.com": [13357], "www.careerfoundry.com": [2904], "www.nic.io": [11575], "scoreassured.com": [21386], "lr.usembassy.gov": [21879], "ep09.pld-linux.org": [12470], "ideas.joomla.org": [8776, 17732], "sie.ag": [2053], "*.discovercard.com": [4635], "esgwtdc.nts.jhu.edu": [16562], "viscon.me": [2053], "www.xcat.nl": [18804], "twst.it": [2053], "wmp.americanrifleman.org": [19382], "secure.goldmann.pl": [6943], "tube.geogebra.org": [6659], "bpopne.ws": [2053], "concert.arte.tv": [19422], "zza.fm": [2053], "www.ibphoenix.com": [7822], "devtalk.nvidia.com": [11174], "astro.gg": [2053], "kyl.ro": [2053], "mybitly.ml": [2053], "*.bitdeli.com": [2039], "forebank.dengisend.ru": [4440], "en.squat.net": [21549], "www.winsupersite.com": [18630], "tp3.sinaimg.cn": [15091], "rhino.camera": [2053], "offi.ga": [2053], "go.dvors.ky": [2053], "yp.ru": [22118], "snrsweetdeals.newsreview.com": [11531], "*.groceryserver.com": [7087], "aa.uw.edu": [17355], "highqsolutions.com": [7540], "go.sufio.com": [2053], "at.scout.com": [2053], "typo3.sedo.de": [14783], "e-activist.com": [4945], "internetevolution.com": [4484], "clients.evaske.com": [5540], "fabricatorz.com": [5731], "nidd.it": [2053], "mynomadesk.com": [11657], "appg.li": [2053], "www.xtremegunsandammo.com": [22089], "*.minijuegosgratis.com": [10607], "www.mail-archive.com": [10036], "gk3.me": [2053], "my.omniture.com": [12002], "i4.gallery.technet.s-msft.com": [14296], "warwickshire.police.uk": [18283], "www.deutsche-rentenversicherung.de": [4487], "shenghuo.alipay.com": [857], "angelikafilmcenter.com": [1054], "go.bgtvtalk.com": [2053], "banner5.utm.edu": [17628], "mazacoin.org": [10273], "schlossbergstore.com": [14595], "legolandholidays.co.uk": [20657], "*.vimg.net": [12475], "pony.fm": [13122], "www.cacert.com": [2578], "tags.w55c.net": [18187], "112cafe.com": [24], "illiad.wustl.edu": [18290], "www.bulletinoftheschoolofmedicine.wustl.edu": [18290], "iam.ec": [2053], "jet2.com": [8706], "ap6.us": [2053], "app.portadi.com": [13161], "dtcc.edu": [4400], "metric.yandex.by": [18953], "www.contentwatch.com": [3677], "developers.xapo.com": [18841], "xinfeng.meituan.com": [10405], "soccerwaveuk.com": [15303], "images.riverbed.com": [14140], "library.uchastings.edu": [17218], "www.nidcd.nih.gov": [11241], "s1.thejournal.ie": [16490], "ru.4.boardgamearena.com": [2219], "tchq.co": [2053], "securecerts.ie": [4596], "www.makrotex.hu": [10084], "cipherlawgroup.com": [3209], "www.iovisor.org": [20486], "magpl.us": [2053], "blogs.opera.com": [12252], "torcheck.xenobite.eu": [18865], "url.egoz.cl": [2053], "csbea.ch": [2053], "openbsdstore.com": [12120], "wayfair.ly": [2053], "go.gnet.gr": [2053], "sportisimo.com": [14396], "embed.cs.utah.edu": [17574], "on.si.com": [2053], "thenewschool.starfishsolutions.com": [21565], "www.fsadownload.ed.gov": [4988], "shorteneci.ml": [2053], "derpibooru.org": [4461], "vxy.me": [2053], "www.saas.hsbc.co.uk": [20375], "b.sjbodzo.com": [2053], "irpr.in": [2053], "bankieren.rabobank.nl": [13723], "3mil.nu": [2053], "*.suomi.fi": [21608], "*.2ch.net": [110], "aetolia.com": [19313], "www.emeasuretool.cms.gov": [19742], "www.7x7-journal.ru": [228], "brymge.net": [2053], "myportal.calpoly.edu": [2806], "2smb.link": [2053], "youthm.in": [2053], "avr.tech": [2053], "www.volunteermatters.com": [18131], "en-fr.dict.cc": [4536], "apps.itsc.cuhk.edu.hk": [2747], "frdy.co.uk": [2053], "tooltester.de": [2053], "batn.ws": [2053], "parking.meo.pt": [10440], "prsearch.juniper.net": [8834], "secure.polyvoreimg.com": [21168], "www.cs.utah.edu": [17574], "www.radioplayer.co.uk": [13755], "go.spanat.com": [2053], "www.linux.it": [8533], "assets-c.thrillist.com": [21732], "db.risk.io": [14134], "forums.e-hentai.org": [4938], "majs.link": [2053], "blogs.it.ox.ac.uk": [17557], "www.asnuul.asso.ulaval.ca": [17515], "v084.ax2600ab.omhq.uprr.com": [21870], "console.aliyun.com": [861], "eweb.research.sunysb.edu": [15736], "*.iuscommunity.org": [20515], "sz-media.sueddeutsche.de": [15831], "*.uwaterloo.ca": [17578], "hopkins-interactive.com": [7638], "img12.360buyimg.com": [136], "x.9-agency.com": [2053], "rbb-online.de": [13824], "vrsn.cc": [2053], "assembly.wales": [1315], "bell-cranel.net": [19515], "www.webhost.biz": [18417], "webooluinc.com": [18433], "radsg.link": [2053], "secure.webhost4life.com": [18363], "wetlandpark.gov.hk": [20346], "preview.springer.com": [15561], "licensing.ribblevalley.gov.uk": [14099], "cesu.sc": [2053], "cnfx.biz": [2053], "webgis.ornl.gov": [11892], "*.globalsign.co.uk": [6840], "q.shadahmed.com": [2053], "www.open.wien.gv.at": [22025], "hto.ink": [2053], "piratenpartij.nl": [12924], "info.proview.thomsonreuters.com": [16650], "crm.vc": [2053], "fdf.org.uk": [5675], "contact.camden.gov.uk": [2830], "atl.site": [2053], "fukuma.club": [2053], "appharbor.com": [1146], "weishan.meituan.com": [10405], "fuller.worldcat.org": [18748], "travelingnuker.com": [16971], "dlbt.co": [2053], "wanzhou.meituan.com": [10405], "brsmblog.com": [1583], "spo.io": [2053], "ertan.me": [2053], "www.trillian.im": [17011], "wucheng.meituan.com": [10405], "www.puckey.org": [13449], "*.awcloud.net": [415], "www.infusionsoft.com": [8286], "www.irishtimes.com": [16460], "about.constantcontact.com": [3657], "joshr.io": [2053], "emea.centrify.com": [19673], "gd3.alicdn.com": [846], "femtoduino.com": [5861], "mnu.sm": [2053], "trm.brassring.com": [19586], "www.teamboard.com": [16253], "cb.sailthru.com": [14480], "www.da.gd": [4174], "s0c0.co": [2053], "miwy.co": [2053], "berdy.me": [2053], "*.jugendschutzprogramm.de": [8816], "www.totse2.com": [16879], "www.drone.io": [4862], "pbagalleries.com": [12414], "shlt.me": [2053], "www.sisu.ut.ee": [17347], "2mo.in": [2053], "uawford.us": [2053], "partnernet-sit.symantec.com": [15969], "www.nulled.cc": [20960], "www.affair-guide.com": [735, 736], "chip.tl": [2053], "chip.tk": [2053], "schraubenluchs.de": [21381], "flux.dj": [2053], "unm.worldcat.org": [18748], "*.tbe.taleo.net": [16177], "mvsl.im": [2053], "www.savedeo.com": [14551], "haberteamny.com": [2053], "habets.se": [7258], "accessprivacy.ca": [487], "th.meituan.com": [10405], "shop.root.cz": [14199], "palmshop.hu": [9308], "finance.google.*": [6965], "googletagmanager.com": [6971], "*.limango.de": [9515], "www.libertyflailmowers.com": [9460], "portal.1link.mail.ru": [10040], "bookings.guildford.gov.uk": [20294], "eatdrnk.co": [2053], "cs.boardgamearena.com": [2219], "nijc.brain.riken.jp": [13663], "gugg.gp": [2053], "www.kabeldeutschland.de": [8912], "codefund.io": [3430], "review.coreboot.org": [3737], "stanford.io": [2053], "idw.pub": [2053], "s-sci.co": [2053], "jdivo.me": [2053], "4vel.vet": [2053], "progreso.pl": [13359], "yoox.ly": [2053], "u.bababa.co": [2053], "attendee.gotowebinar.com": [6914], "myfd.tc": [2053], "billing.axeso5.com": [1513], "marchforbabies.org": [10147], "darkohled.cz": [2053], "gsk.worldcat.org": [18748], "nakhabino.beeline.ru": [1801], "*.afrinic.net": [747], "www.hitbtc.com": [7561], "eo.mondediplo.com": [10729], "zgal.re": [2053], "123p4.sogoucdn.com": [15351], "link.cane.com": [2053], "savannah.nongnu.org": [5713], "www.webmercs.no": [4248], "www.raiffeisen.ch": [13761], "acsac.org": [303], "indico.dns-oarc.net": [4133], "ipv4.google.com": [6962], "panshi.meituan.com": [10405], "kargo.com": [8947], "www.ranzcp.org": [13632], "volvocars.us": [2053], "about.zoosk.com": [19225], "imgt8.bdstatic.com": [1662], "eslabon.axosoft.com": [1517], "www.piraten-basel.ch": [21132], "cmplt.st": [2053], "l0g.us": [9214], "diningservices.osu.edu": [11959], "nxt.fm": [2053], "jennifer365.us": [2053], "verio.com": [17914], "mrkt.ink": [2053], "aitken.ninja": [2053], "ducttape.me": [2053], "dnscrypt.eu": [4135], "suggests.seferler.yandex.com.tr": [18954], "con.omarrey.es": [2053], "gorod.yandex.com.tr": [18954], "b.worthmine.com": [2053], "s.iptorrents.com": [7945], "link.soosin.com": [2053], "fx.yandex.by": [18953], "peepd.com": [12723], "greenste.in": [2053], "club.jr.jd.com": [8571], "bots.kik.com": [20593], "apachecon.com": [1127], "www.simple-talk.com": [15064], "sidux-ev.org": [15012], "intranetfuo.uniovi.es": [17479], "dmzadfs.inl.gov": [20462], "ttlbr.ca": [2053], "tntiny.com": [2053], "loja.vodafone.pt": [18109], "deprexis.com": [4456], "tiuz.unizar.es": [17643], "mediabath.uk": [2053], "nls.pw": [2053], "esti.be": [2053], "www.policyreview.info": [13091], "www.icsi.berkeley.edu": [17526], "view.uk.adjug.com": [565], "www.vitamintalent.com": [18085], "oliver.kadak.eu": [2053], "mrk.bz": [2053], "support.bayphoto.com": [1755], "fred.im": [2053], "appetize.io": [1154], "torrents.me": [21763], "disc-soft.com": [4624], "*.bytelove.it": [2548], "static.hsstatic.net": [7237], "browserid.org": [2424], "help.fanli.com": [5769], "just-eat.com": [20565], "tft.link": [2053], "www.oisc.homeoffice.gov.uk": [20355], "www.bintray.com": [1951], "piwik.tiki.org": [16715], "iprop.my": [2053], "expatpartnersurvival.com": [20079], "www.cloudbees.com": [19736], "lovefir.st": [2053], "wedblog.co": [2053], "cdn.myfonts.net": [10949], "www.californiawalkintubcompany.com": [2810], "rotoqlapp.com": [2053], "addons.wesnoth.org": [18500], "instapaper.com": [8339], "packages.sabayon.org": [14450], "glaciergam.in": [2053], "s2media.be": [14301], "dermedics.at": [2053], "webyog.com": [18470], "www.ymstat.com": [18925], "atgfw.org": [19448], "to.alantsai.net": [2053], "pentestpartners.com": [12742], "johnca.de": [2053], "www.dreamnews.jp": [4846], "twosigma.com": [17174], "npl.stanford.edu": [15635], "unitymedia.de": [17507], "a.tycho.co": [2053], "www.prettylightsmusic.com": [13268], "cel.gs": [2053], "www.payrollapp.com": [12697], "ethiopia.usembassy.gov": [21879], "y6.chaucanh.net": [2053], "www.getjive.com": [8732], "prco.co": [2053], "comodo.net": [3569], "s.4zal.net": [2053], "y8stud.io": [2053], "etrtbs7.smartstream.tv": [15247], "lists.ntp.org": [11154], "www.minbzk.nl": [11324], "*.scribusstuff.org": [21007], "www.respectnetwork.com": [14045], "el.piliapp.com": [12887], "webmail.eol.hu": [8475], "www.cui.uni-hamburg.de": [17452], "www.riscos.com": [13665], "www.amazon.ca": [19362], "euroforum.de": [5517], "wiki.mageia.org": [10014], "www.syxin.com": [16020], "www.apsjobs.gov.au": [375], "www.stardrifter.org": [15654], "utoronto.ca": [17630], "eex.com": [5534], "legacydev.pfizerpro.com": [12824], "*.spd.de": [15450], "www.picomoney.com": [12876], "bugs.kde.org": [8871], "nkb.ch": [20574], "www.sns.gov.uk": [21493], "go.irtrip.com": [2053], "v-temernitsky.beeline.ru": [1801], "ensr.dict.cc": [4536], "l.itdevelop.ru": [2053], "advisor.wmtransfer.com": [18373], "natmonitor.com": [11231], "www.newsgator.com": [11521], "iq.intel.co.uk": [8357], "chrome.google.com": [6962], "portal.sovcombank.ru": [21516], "sstools.co": [2053], "supergate4.info": [2053], "ebas.ch": [4969], "neo900.org": [11338], "plgn.me": [2053], "karlfris.ch": [2053], "www.tlscompare.org": [16081], "*.exelator.com": [5095], "url.digicafe.jp": [2053], "fa.binho.org": [2053], "centosblog.com": [3004], "mcs2015.org": [2053], "it.metooo.io": [10495], "www.kkk.com": [9082], "durchmesser.ch": [19970], "go.jirwin.me.uk": [2053], "*.circleofmoms.com": [3215], "usa.anon-ib.la": [1077], "paman.tk": [2053], "los.hdfcbank.com": [7389], "broadly.vice.com": [17959], "www.elsevier.com": [5287], "cdn.blog-sap.com": [14311], "father.fitness": [2053], "homesupport.cisco.com": [3221], "blog.wmtransfer.com": [18373], "mynm.us": [2053], "overviewproject.org": [12376], "byne.meituan.com": [10405], "free.ysaid.com": [2053], "west-norfolk.gov.uk": [22004], "www.lith.liu.se": [9238], "*.motorolasolutions.com": [10803], "barnsley.objective.co.uk": [20979], "glrv.ws": [2053], "www.revstr.com": [14085], "bbs.arkos.io": [1233], "ipage.com": [7949], "nvim.us": [2053], "huairen.meituan.com": [10405], "hotshiitake.me": [2053], "i.groupme.com": [7096], "file.wx.qq.com": [13514], "videointerchange.com": [17986], "www.sade.com": [14457], "apidev.snip2code.com": [15282], "cstreet.us": [2053], "www.essex.police.uk": [5471], "weg.io": [2053], "shanggao.meituan.com": [10405], "pagpop.com.br": [12532], "linkmaker.co.uk": [20694], "netways.de": [11452], "www.fans.fm": [20098], "marina.uniovi.es": [17479], "gbar.cloud": [2053], "elt.me": [2053], "x.unco.pw": [2053], "docs.askives.com": [1302], "cdn.yb0t.com": [18987], "ipcri.me": [2053], "scorerestore.com": [14634], "go.prbx.co": [2053], "hh.se": [7191], "blog.101domain.com": [15], "zhuozhou.meituan.com": [10405], "rvw.pt": [2053], "intra.fa.vutbr.cz": [17814], "y-c.am": [2053], "qhtfpc.jd.com": [8571], "www.bhamcommunity.nhs.uk": [11102], "criosweb.ro": [3870], "md01.plex.tv": [13036], "khist.digitale-diathek.net": [4587], "paymentaccuracy.gov": [12687], "ria.thomsonreuters.com": [16650], "pp-international.net": [21184], "lists.mindrot.org": [10601], "sysward.com": [16003], "galette.eu": [20195], "mpage.co": [2053], "es.corporate.walmart.com": [18260], "www.guardianproject.info": [7129], "ccd.click": [2053], "vocalarticles.com": [11492], "www.kohls.com": [9107], "go.ekayi.com": [2053], "login.bloomberg.com": [2172], "wimpy.link": [2053], "www.cesg.gov.uk": [2641], "wuala.com": [18781], "*.shopstyle.fr": [14965], "iclubs.co": [2053], "*.postgresql.us": [13200], "studiopress.com": [15796], "chfs.me": [2053], "www.ivpn.net": [8014], "*.equip.org": [5439], "y.djmcloud.com": [2053], "www.asp.net": [393], "web.comviq.se": [2053], "psychologytoday.com": [13417], "tapetv-slowjam.de": [16210], "i7.walmartimages.com": [18261], "hertyr.org": [2053], "twnf.nl": [2053], "khoc.co": [8876], "pt.trafficjunky.net": [16922], "jajoz.me": [2053], "djh.cc": [2053], "m.lispac.lsbu.ac.uk": [9252], "m.snsbank.nl": [14382], "amp.collective.com": [3485], "planning.bury.gov.uk": [19614], "exchws.illinois.edu": [17544], "innovateu.osu.edu": [11959], "syncany.org": [15981], "profile.meetme.com": [10378], "www.ripmedicaldebt.org": [21311], "webmail.hs-esslingen.de": [7585], "www.barnebys.com": [1724], "www.jpackage.org": [8596], "zk.meituan.com": [10405], "jms1.net": [8736], "revu.bz": [2053], "www.hdvlink.com": [20328], "drsd.biz": [2053], "on.thestar.com": [2053], "mywickr.com": [18579], "stec-t01.xhcdn.com": [18815], "portal.sec.ibm.com": [7821], "preenme.co": [2053], "privat.tdc.dk": [16051], "www.domain-dns.com": [4736], "s.listfreak.com": [2053], "my.decats.org": [2053], "garo.me": [2053], "www.allyou.net": [882], "euv.immo": [2053], "www.illinoislawreview.org": [8115], "serverfault.com": [15611], "mtw.bz": [2053], "careers.nvidia.com": [11174], "www.verizon.net": [21906], "b.myplex.tv": [2053], "nhncorp.com": [11098], "getprepaidcard.hdfcbank.com": [7389], "usabil.la": [2053], "subscribe.hearstmags.com": [7410], "s.t4a.org": [2053], "avatars0.githubusercontent.com": [6801], "undergraduateresearch.osu.edu": [11959], "jgmc.xyz": [2053], "cpanel.com": [2708], "mulu.co": [2053], "www.humanism.org.uk": [7757], "vfl.me": [2053], "rhc.to": [2053], "www.pokemon.co.jp": [13079], "cdn4.hola.org": [7589], "e4b-2.richrelevance.com": [14104], "lars.to": [2053], "www.mkssoftware.com": [9922], "bf.ind.br": [2053], "www.clearlinux.org": [3291], "www.ledger.co": [9376], "by.meituan.com": [10405], "u.pli.cc": [2053], "www.atypon.com": [1378], "www.myesri.com": [5468], "www.notalwaysworking.com": [20931], "projectcounter.org": [2700], "sony.co.uk": [21508], "www.fhs.se": [5683], "tanea.info": [2053], "hostbillapp.com": [7652], "openapi.baidu.com": [1661], "shaoyang.meituan.com": [10405], "wpi.edu": [18728], "hbtvs.us": [2053], "www.ubjobs.buffalo.edu": [17583], "secure.adultshopping.com": [684], "go.gureev.me": [2053], "rec.al": [2053], "on.natalie.tips": [2053], "magtat.info": [2053], "estateshelpdesk.nottingham.ac.uk": [11726], "strikingly.com": [15779], "www.streak.com": [21587], "u.gopt.me": [2053], "mtmweb.com": [10356], "login.skype.com": [15184], "simplekb.com": [15072], "www.hackerrank.com": [7274], "*.rtp.vc": [13709], "payoneer.com": [12694], "numa.paris": [11773], "anonymousspeech.com": [1091], "www.in.th-nuernberg.de": [16428], "news.amco.on.ca": [2053], "postbydnx.com": [13188], "democracy.io": [4431], "joycasino11.com": [20552], "help.libreoffice.org": [9471], "cchgroup.com": [2605], "*.craigslist.org": [3827], "wpc.016b.edgecastcdn.net": [18346], "psichi.com": [2053], "planelopnik.com": [2053], "citpmo.wusm.wustl.edu": [18290], "bux.cz": [19617], "khms.google.com": [6969], "bbody.live": [2053], "oupublic.statushub.io": [15692], "bhf.me": [2053], "chartmogul.com": [3075], "neobits.com": [11344], "www.workiva.com": [18744], "w.hee.li": [2053], "goodmancenter.stanford.edu": [15634], "lmmp.nasa.gov": [11058], "*.eniro.se": [5378], "genjing.co": [2053], "freecultr.com": [5707], "fitgeld.raiffeisen.ch": [13761], "taskforce.is": [16224], "vlas.io": [2053], "mssp.photos": [2053], "sharethenetwork.com": [14915], "ftgv.com": [2053], "jipiao.jd.com": [8571], "c-and-a.ca": [2053], "zb.meituan.com": [10405], "blog.openhpi.de": [12138], "centrum.active24.cz": [19276], "login.postpay.de": [19901], "clime.at": [2053], "gratipay.com": [7026], "www.iraaa.org": [7956], "highland.gov.uk": [20338], "sl.ngpriest.com": [2053], "*.upic.me": [17676], "www.npmawesome.com": [11740], "www.uk2img.net": [17241], "ewa.earth": [2053], "uk.support.tomtom.com": [16812], "blackphone.ch": [2100], "sst.kirklees.gov.uk": [9067], "y.phz.me": [2053], "oli.link": [2053], "uptwn.ch": [2053], "thetim.es": [2053], "zmbg.co": [2053], "lnk.slyzah.be": [2053], "www.gitian.org": [6803], "dl.miscea.com": [2053], "*.madmimi.com": [10001], "ixol.it": [2053], "*.nexac.com": [11547], "surveys.fi.ncsu.edu": [11690], "*.80spurple.com": [229], "blog.details.com": [3616], "dfobr.xyz": [2053], "www.landalcampings.de": [18790], "idnet.net": [7853], "readthedocs.io": [13844], "evnt.ws": [2053], "kde-apps.org": [21006, 21007], "solveris.co": [2053], "pim.bof.nl": [1579], "devices.yammer.com": [18952], "etvita.com": [2053], "domainmanager.otenet.gr": [12336], "download.nos.nl": [11134], "via.macomber.de": [2053], "whaleoil.me": [2053], "didier.mayfirst.org": [10265], "l.thzinc.com": [2053], "norma.to": [2053], "bsqi.fr": [2053], "itdd.us": [2053], "kooz.ai": [2053], "download.formscentral.acrocomcontent.com": [522], "static1.businessinsider.com": [2512], "www.singularityhub.com": [15096], "*.rbi.com.au": [13939], "ui.ptlogin2.tenpay.com": [16376], "cmpsd.co": [2053], "www.path.com": [12662], "mediaserver.digitec.ch": [4591], "formkeep.com": [6159], "www.l2c.co.kr": [9216], "mendotausd.illuminateed.com": [20430], "www.libressl.org": [9474], "tracking.borderfree.com": [2275], "raildata.orr.gov.uk": [21032], "wod.city": [2053], "www.smartadserver.com": [15228], "forum.alpinelinux.org": [909], "chr.us": [2053], "csaf.cz": [2721], "myendnoteweb.com": [5343], "*.getadblock.com": [556], "asia.allianz.com": [19351], "m.69006.com": [2053], "short.yasiu.pl": [2053], "g.neoground.com": [2053], "www.tcli.ed.gov": [4988], "oig.nasa.gov": [11058], "*.feedback.minus.com": [10624], "landalskilife.com": [18789], "center.atomz.com": [1365], "events.nyu.edu": [11485], "hero.re": [2053], "www.caktusgroup.com": [2782], "www.rlt.ulaval.ca": [17515], "kantarainitiative.org": [8939], "track.campaigneq.com": [2836], "res-2.cloudinary.com": [3367], "www.foldingcoin.net": [6100], "sibhub.com": [2053], "wu.gg": [2053], "yourmoney.ch": [20574], "alumni.th-mittelhessen.de": [16064], "opie.im": [2053], "annstyle.co": [2053], "zdrec.co": [2053], "di.kotamini.com": [2053], "www.brainstorage.me": [2325], "premiertaxfree.com": [13253], "french.algeria.usembassy.gov": [21879], "ameba.jp": [19378], "www.xpiconly.com": [18834], "tinkerforge.com": [16747], "eshop.state.gov": [17345], "www.syscan.org": [16002], "mwop.net": [10927], "tsatx.org": [2053], "bluech.lk": [2053], "on.tvline.com": [2053], "sulibrary.worldcat.org": [18748], "www.clasohlson.se": [3274], "www.fontmarketplace.com": [6106], "*.re-pear.com": [1163], "www.coverfire.com": [3801], "go-tiny.me": [2053], "pool.telekom.hu": [10030], "6.darkroom.shortlist.com": [14979], "rioc.uarto.info": [2053], "atav.st": [2053], "www.gameladen.com": [6550], "*.shopmania.org": [14962], "helpdesk.rz.ruhr-uni-bochum.de": [14267], "gse-it.stanford.edu": [15635], "rsly.in": [2053], "fgr8.be": [2053], "*.wt-eu02.net": [18466], "*.bucyrustelegraphforum.com": [2446], "allia.so": [2053], "bitly.ploni.com": [2053], "d2.alternativeto.net": [925], "shmoop.com": [14955], "ws.ghash.io": [6446], "www.microfocus.com": [10528], "www.whocanivotefor.co.uk": [22019], "my.web.com": [2053], "magicaffiliateplugin.com": [10022], "forum.ubuntu-fr.org": [17376], "kamchatinfo.com": [20572], "services-prefecture.com": [14870], "url.40x.co": [2053], "helpdesk.samfox.wustl.edu": [18289], "community.wholeliving.com": [10195], "www.rhizome.org": [14097], "xaas.mx": [2053], "u.tumba.ch": [21809], "www.buycraft.net": [2530], "ctera.com": [2741], "one.zemanta.com": [19128], "danforthuniversitycenter.wustl.edu": [18290], "snd.vn": [2053], "www.piratebayproxy.be": [21709], "emailmarketing.mastermindsdigital.com": [10223], "hrrn.net": [2053], "*.research.net": [15914], "oyst.rs": [2053], "*.up0.net": [17666], "assemble.me": [1314], "fukuchi.org": [6363], "spin.bz": [2053], "aberg.in": [2053], "forf.it": [2053], "broadbandchoices.co.uk": [2406], "www.mixxx.org": [10661], "cchtw.myftp.org": [2053], "*.sagepay.com": [14475], "dashboard.fiksu.com": [5902], "dom.ngs.ru": [20907], "www.bbseyes.com": [1765], "strypr.es": [2053], "www.documentfreedom.net": [4716], "announcements.telegraph.co.uk": [16340], "api.joomla.org": [8776], "admj.us": [2053], "sub5ze.ro": [2053], "wrk.tg": [2053], "mauamolat.cf": [2053], "assets.sussan.com.au": [15919], "revw.co": [2053], "learningzone.eastsussex.gov.uk": [19994], "tsmit.me": [2053], "lnk.gchrl.org": [2053], "classpath.org": [6474], "www.hellowebapp.com": [7439], "santander.co.uk": [14530], "learn.news": [2053], "os.om": [2053], "awwurl.com": [2053], "finaid.med.wustl.edu": [18290], "www.static.androidpit.info": [1048], "analytics.hathitrust.org": [7371], "ger.al": [2053], "www2.gotomeeting.com": [6912], "blog.snipt.net": [15284], "www.piratenlogin.de": [12935], "*.airtricity.com": [796], "kch.nhs.uk": [11102], "www.rewag.de": [13649], "www.bufferbloat.net": [2460], "ren.kn": [2053], "webmail2.cesky-hosting.cz": [19680], "cachemobile.williamhill.com": [18615], "dande.li": [2053], "investigativedashboard.org": [8466], "readthedocs.com": [13844], "burlingtonfreepress.com": [2498], "www.zencache.com": [19131], "www.paradoxplaza.com": [12591], "www.simplysecure.org": [15079], "self.highland.gov.uk": [20338], "drivingsal.es": [2053], "ric.srchg.xyz": [2053], "downloader.disk.yandex.com.tr": [18954], "willdo.me": [2053], "adserver.71i.de": [14880], "www.win.tue.nl": [16129], "download.qt.io": [13545], "wifilib.com": [18583], "ingd.es": [2053], "hrld.us": [2053], "erlc.co": [2053], "h.ope.is": [2053], "fds.ht": [2053], "facebook.migros-kulturprozent.ch": [10565], "cms.permits.performance.gov": [12780], "m.sie.gs": [2053], "fanshop.kicker.de": [9032], "www.kapsi.fi": [8943], "www.woobox.com": [18718], "www.pixoto.com": [12964], "www.oes.umd.edu": [17549], "fandan.co": [2053], "www.honcode.ch": [7224], "www.exploithub.com": [5619], "p-t.pub": [2053], "i.jpd.ms": [2053], "store.bgr.com": [1555], "forms.ncl.ac.uk": [11073], "neu.directbox.com": [4613], "ddelay.com": [2053], "store.gentlelabs.com": [6650], "srpets.co": [2053], "parent.osu.edu": [11959], "us.delik.co.id": [2053], "posho.tv": [2053], "sadto.me": [2053], "australianclinicaltrials.gov.au": [1421], "*.monitis.com": [10743], "on.thedailyshow.com": [2053], "vande.jp": [2053], "vn.webike.xyz": [2053], "artward.co": [2053], "www.oagaviation.com": [17204], "www.gfi.nl": [6437], "www.openideo.com": [12142], "newa.nz": [2053], "m.georgetown.edu": [6668], "stanfordhealthlibrary.worldcat.org": [18748], "car-hire.lastminute.com": [9318], "www.mommyslittlesunshine.com": [10726], "urs.earthdata.nasa.gov": [11058], "jobs.web.de": [18347], "ukrad.io": [2053], "csis.dk": [2731], "bugs.debian.org": [4353], "j.gottli.com": [2053], "pabr.co": [2053], "thinkculturalhealth.hhs.gov": [7192], "coolb.lu": [2053], "www.cron-job.org": [19818], "laynepublications.com": [9337], "ut06.xhcdn.com": [18815], "pshr.us": [2053], "z.kenfrost.com": [2053], "market.jcloud.com": [8690], "eventim.co.*": [5548], "ppn.nottingham.ac.uk": [11726], "tcga.cancer.gov": [2864], "img4.bdstatic.com": [19507], "b.wats.me": [2053], "fy.meituan.com": [10405], "media.voog.com": [21948], "life.taobao.com": [16206], "selfservice.preston.gov.uk": [21196], "c3voc.de": [2559], "cdn1.timminchin.com": [16722], "a3.sphotos.ak.fbcdn.net": [5816], "my.comscore.com": [3517], "lttl.lc": [2053], "a.pprinc.io": [2053], "s01.mifile.cn": [10560], "froyo.fit": [2053], "go.afutuh.com": [2053], "*.techopedia.com": [16303], "xmlgold.eu": [18822], "foodler.com": [6122], "www.netbank.de": [11408], "burgerhou.tj": [2053], "*.cengagebrain.co.uk": [2998], "link.dapda.com": [2053], "tmpl.at": [2053], "*.utexas.edu": [17572], "apps.rhb.ch": [14091], "*.navy.gov.au": [14231], "holtwick.it": [7605], "autodiscover.adm.leeds.ac.uk": [17604], "www2.hs-esslingen.de": [7585], "liginc.co.jp": [20686], "usrportage.de": [21884], "cenxi.meituan.com": [10405], "blog.trailofbits.com": [16930], "saqa.co": [2053], "www.audit.wales": [19453], "www.irccloud.com": [8502], "www.cimacorp.net": [5740], "forums.bunsenlabs.org": [19612], "www.elearning.uni-mainz.de": [17611], "uum.worldcat.org": [18748], "typotheque.com": [17194], "ncwb.be": [2053], "austinfitmagazine.com": [1414], "socialsecurity.gov": [15308], "onedrive.live.com": [9644], "www.bullockinc.com": [2478], "1.tohost.co": [2053], "ak-c.ooyala.com": [12099], "w1.buysub.com": [2622], "intelligence.org": [8365], "support.ukrnames.com": [17408], "www.vik.bme.hu": [1570], "sqla.endora.cz": [5349], "bwrk.pm": [2053], "lrtm.nl": [2053], "*.genivi.org": [6434], "apiv2.vevo.com": [17773], "tc.rsdn.org": [21334], "arc.osu.edu": [11959], "stacks.stanford.edu": [15635], "fosfor.us": [2053], "www.doesburg.nl": [11324], "www.sci.uma.es": [17423], "akolaproject.org": [807], "myaccount.talktalk.co.uk": [16184], "www.uio.no": [17615], "gvv.io": [2053], "s.dsimg.com": [4625], "tlsel.it": [2053], "iseclab.org": [8513], "adafruit.com": [589], "www.lgscout.com": [9763], "fox-toolkit.org": [5702], "tmnt.cc": [2053], "weburg.me": [21997], "ore.do": [2053], "i.materialise.com": [7799], "dttd.in": [2053], "vixn.co": [2053], "163.com": [43], "weebly.com": [18473, 18474], "metric.yandex.com": [18956], "rsp.im": [2053], "seer.is": [2053], "accreditation.usc.edu": [17564], "www.thecipherbrief.com": [21693], "declas.se": [2053], "a2-images.myspacecdn.com": [11037], "intelrad.com": [8371], "groceries.asda.com": [387], "cdn.underwearexpert.com": [17445], "ikwilthepiratebay.org": [21215], "vsoeapp1.vsoe.usc.edu": [17564], "www.labelsig.com": [9279], "idea.nottingham.ac.uk": [11726], "mediaarts-db.jp": [10335], "www.i0.cz": [7801], "prt.to": [2053], "vuar.net": [2053], "sm.meituan.com": [10405], "cavium.com": [2970], "ly.43tc.com": [2053], "adbra.in": [2053], "www-conf.slac.stanford.edu": [15635], "masterh6.adriver.ru": [573], "iimani.com": [2053], "assets.flameeyes.eu": [6015], "sprt.ca": [2053], "wiki.answers.com": [1100], "bioinformatics.crick.ac.uk": [19816], "ia.lbp.me": [20644], "abo.faz.net": [5667], "portal.fastserv.com": [5798], "healthcareers.nhs.uk": [11102], "utrecht.nl": [11324], "www.sallybeauty.com": [14490], "autodiscover.posteo.de": [13195], "secure-u.de": [14730], "catedraaitiip.unizar.es": [17643], "smth.co": [2053], "5sp.in": [2053], "hospital.pe": [2053], "xnd.to": [2053], "www.therealtalk.org": [16499], "projectlava.xyratex.com": [18913], "build.kde.org": [8871], "athl.biz": [2053], "cl.thomsonreuters.com": [16650], "absys01.ulpgc.es": [17411], "pass.kinopoisk.ru": [20601], "yida.knet.cn": [8892], "origin.urbandictionary.com": [17697], "bremer.com": [2354], "clrkkv.in": [2053], "www.threattracksecurity.com": [16664], "www.bitcoin-central.net": [2008], "emsonline.cardiff.gov.uk": [19644], "wig.mx": [2053], "serverdensity.io": [14858], "www.silverpop.com": [15047], "subscribe.technologyreview.com": [16297], "*.icinga.org": [8064], "dev.groupme.com": [7096], "members.orcid.org": [12108], "via.brianco.rs": [2053], "go.sy.photos": [2053], "webe.unizar.es": [17643], "sitesearch.sli-systems.com": [14370], "*.washingtontimes.com": [18288], "media.kb.iu.edu": [8214], "www.nvcc.edu": [11787], "endrift.com": [5350], "picture3.cyberport.de": [4048], "senat.gov.pl": [14817], "allianz-fuer-cybersicherheit.org": [892], "support.jwplayer.com": [9752], "www.soyoustart.com": [15299], "icares.wustl.edu": [18290], "i.kyledavid.com": [2053], "sejour.officiel-des-vacances.com": [11953], "tinh.in": [2053], "seiu.mn": [2053], "r.zaharia.io": [2053], "*.crainsnewyork.com": [3829], "pig.me": [2053], "c.itunes.apple.com": [1160], "kmd.li": [2053], "www.sandstorm-media.de": [14520], "*.weissinc.com": [18483], "aits.uillinois.edu": [17238], "assets.curiouscat.me": [4002], "genome-cancer.ucsc.edu": [17591], "devblog.warthunder.com": [21976], "fotv.co": [2053], "community.ustream.tv": [17743], "co3sys.com": [3393], "cdn.motorola-2.com": [10803], "lbre.stanford.edu": [15635], "loughborough.greenparty.org.uk": [7052], "mb168.me": [2053], "www.vce.com": [17767], "web.search.ch": [14684], "gimp.org": [20240], "www.thinkusc.com": [17563], "www.burtcorp.com": [2506], "j.pivo.ca": [2053], "www.hollywoodoutlaws.com": [7602], "s.360.cn": [130], "bioti.ca": [2053], "l.p-slovo.ru": [2053], "www.mikeash.com": [10569], "h.ijoe.co": [2053], "www.nordu.net": [11677], "www.coinkite.com": [3469], "2.djm3.net": [2053], "humanbrainproject.eu": [7752], "kneon.com": [9093], "fff.me": [2053], "thepiratebay.bypassed.faith": [21217], "catalog.wustl.edu": [18290], "sproutvideo.com": [15571], "77sq.uk": [2053], "cdn2.outspark.com": [12359], "secure.acuityscheduling.com": [543], "curi.me": [2053], "www.stuvel.eu": [15804], "uvic.ca": [17354], "ioac.tv": [2053], "*.incisivemedia.com": [8194], "www.techmeme.com": [16284], "number4.herefordshire.gov.uk": [7466], "english.al-akhbar.com": [812], "hse.sg": [2053], "eais.rkn.gov.ru": [14146], "easyte.ch": [2053], "www.localphone.com": [20709], "www.jetbrains.com": [8708], "bugs.openmamba.org": [21018], "www.trashmail.com": [16963], "healthdream.ml": [2053], "kabelmail.de": [8912], "portal.velleman.eu": [17888], "*.pearson.com": [12718], "gobby.debian.org": [4353], "en.huxiu.com": [7779], "m.h2cloud.eu": [2053], "www.slickproductsusa.com": [15202], "*.fabricatorz.com": [5731], "www.dentistry.uic.edu": [17517], "*.scribdassets.com": [14655], "sublime.wbond.net": [21986], "secure.zeta.systems": [19166], "offs.ec": [2053], "clarius.to": [2053], "songzi.meituan.com": [10405], "www.cis-india.org": [2671], "www1.ethz.ch": [5074], "dafdirect.org": [4179], "s-pankki.fi": [14298], "zlatkovic.com": [19195], "www.thinksteroids.com": [9904], "news.mit.edu": [9916], "s.tachun.info": [2053], "www.simplefin.org": [15066], "static.uniregistry.net": [17483], "*.cmu.edu": [2918], "applebees.com": [1164], "qgazette.com": [13577], "vivo.tl": [2053], "filesharingshop.com": [20110], "ram1.org": [2053], "www.trafficstars.com": [21776], "*.sixapart.jp": [15136], "coolwebscripts.com": [3707], "examiner.com": [5588], "phe.no": [2053], "ads.ookla.com": [12093], "*.unicaondemand.com": [17466], "mulle-kybernetik.com": [20851], "*.gotvape.net": [6981], "conflictlink.nl": [2053], "www.openrussia.org": [12243], "wyr.be": [2053], "now.symassets.com": [15969], "slimerjs.org": [21476], "neosmart.net": [11343], "hof.careers": [2053], "bmat.in": [2053], "prometric.com": [13380], "optify.net": [12269], "xintai.meituan.com": [10405], "cdn.lib.newsvine.com": [11541], "noisey.vice.com": [17959], "s1d.us": [2053], "www.freesound.org": [6303], "www.math.ens.fr": [5029], "www.steamrep.com": [15710], "miikka.net": [2053], "www.cospar-assembly.org": [2698], "*.blogspot.com.cy": [2166], "gemius.pl": [6638], "*.superstats.com": [15872], "dodspeople.com": [4719], "www.ttu.ee": [16190], "ambx.com": [960], "*.smartplanet.com": [15236], "static.prediction.io": [13249], "crunchify.me": [2053], "thechive.com": [16524], "mailboxes.dreamhost.com": [4844], "ssl.panoramio.com": [12572], "sen.lu": [2053], "*.chapman.edu": [3067], "www1.ebanking.hsbc.com.hk": [20380], "wsjsafehouse.com": [11513], "2dope.bz": [2053], "glass.google.com": [6962], "jeta.us": [2053], "www.opensvc.com": [12170], "remotestorage.io": [13996], "dmvh.win": [2053], "myaccount.stubhub.com": [15789], "url.moshi.co": [2053], "www.developer.blender.org": [2120], "creativecommons.net": [3848], "cricketa.us": [2053], "www.imagecomics.com": [8125], "lexisnexis.com": [13936], "pbhs.com": [12415], "exte.ch": [2053], "www.videogold.de": [17979], "wtpne.ws": [2053], "account.jwplayer.com": [9752], "www.fidh.org": [5684], "api.bilibili.com": [1928], "www.apps4.lbhf.gov.uk": [9218], "semel.me": [2053], "megamallcy.com": [2053], "aet.na": [2053], "httpswatch.nz": [7243], "www.nerdsnook.com": [11352], "rdcrss.org": [2053], "go.civilers.com": [2053], "kb.optimisemedia.com": [12272], "mnyw.ch": [2053], "trend.omnitecinc.com": [12000], "www.podtrac.com": [21158], "steenwijkerland.nl": [11324], "gain.li": [2053], "cpntr.com": [2053], "www.portrait.gov.au": [11261], "gdt.im": [2053], "bug.tasktools.org": [16225], "tapsfam.org": [2053], "zen-cart.com": [19134], "www.musicbrainz.org": [10905], "cte.ace.beta.advertising.com": [700], "img.i4wifi.cz": [20407], "hairsmize.com": [7297], "wepr.in": [2053], "*.csulb.edu": [2803], "lovliv.co": [2053], "knappschaft-bahn-see.de": [9092], "npac.com": [11135], "*.safe-mail.net": [14462], "vpsadmin.vpsfree.cz": [21956], "orionmagazine.org": [12311], "www.wandoujia.com": [18267], "*.newzbin2.es": [11544], "www.zend2.com": [19137], "en.villeta.info": [2053], "is.seagate.com": [14679], "hechuan.meituan.com": [10405], "www.imena.ua": [20436], "www.smartcity.wien.at": [22025], "companieshouse-online.hmrc.gov.uk": [7219], "imageraider.com": [20434], "webmail.wilmerhale.com": [18619], "dsl.so": [2053], "podseed.org": [13070], "shopmania.com": [14962], "link.rkttu.com": [2053], "wwte1.com": [18232], "bria.im": [2053], "petreleaf.us": [2053], "www.shoppingcartelite.com": [14974], "f1.zenclerk.com": [19132], "asset-7.soupcdn.com": [15416], "www.beatsmedia.com": [1790], "go.jump.sg": [2053], "evmv.me": [2053], "tmny.uk": [2053], "www.cendio.com": [2995], "*.codecov.io": [3427], "www.telekom.com": [16345], "entcss.s-msn.com": [14297], "homesharing.itunes.apple.com": [1160], "italerts.usc.edu": [17564], "wellingborough.gov.uk": [18489], "contribs.org": [3686], "decisionneurosciencelab.org": [4362], "llhy.co": [2053], "auction1.taobao.com": [16206], "sammoult.com": [2053], "amazon.com.br": [19367], "www.inside-security.de": [20466], "images.obi.de": [20977], "fr.discussions.tomtom.com": [16812], "www.ninthdecimal.com": [11614], "quiterss.org": [13600], "gobkart.org": [2053], "www.goodcrypto.com": [6955], "i.benh.org": [2053], "s107.cnzz.com": [3391], "s-delivery.com": [2053], "hayloft-plants.co.uk": [20320], "lh5.google.co.*": [6965], "eriklundblad.com": [20053], "lists.freedesktop.org": [6243], "thesmh.co": [2053], "www.usa.canon.com": [2868], "checkout.lenovo.com": [9409], "jococruise.com": [8737], "oblic.com": [11807], "l.izax.de": [2053], "redding.com": [5088], "i.jefbelgium.eu": [2053], "polleninfo.org": [13108], "walthamforest.moderngov.co.uk": [20816], "on.kmir6.com": [2053], "53s.co": [2053], "sarahd.us": [2053], "s84.cnzz.com": [3391], "azl.ink": [2053], "www.bluecoat.com": [2183], "pricheski.org": [2053], "s.impactory.de": [2053], "www.staffordshire.police.uk": [15623], "snrhy.ms": [2053], "prt.io": [2053], "phmc.info": [2053], "support.connectedu.net": [19774], "odi.osu.edu": [11959], "www.mochahost.com": [10694], "portal.cs.sfu.ca": [14893], "carrier-lost.org": [2922], "crys.tl": [2053], "www.b.switchadhub.com": [15954], "www.meetey.com": [10380], "coache.net": [2053], "geca.upf.edu": [17674], "hn.meituan.com": [10405], "ci.jenkins-ci.org": [8700], "m.heise.de": [7428], "www.sagernotebook.com": [14477], "journals.uchastings.edu": [17218], "seb.tl": [2053], "download.f-secure.com": [5654], "www.whitehothair.co.uk": [18550], "blog.atechmedia.com": [408], "slenderkitchen.com": [15197], "culturalsurvival.org": [3987], "www.northpole.fi": [11700], "profiles.google.com": [6962], "inspirationgreen.com": [8326], "lists.openitp.org": [12145], "xtraz.icq.com": [7837], "asjo.org": [1295], "www.despora.de": [4474], "gwld.gs": [2053], "www.construx.com": [3658], "alumsso.mit.edu": [9916], "justgetflux.com": [6072], "www.sciencenode.org": [14622], "traveldoctor.com.au": [16966], "www.southeasternhampshireccg.nhs.uk": [11102], "matsuev.com": [4444], "www.syncthing.net": [15986], "www.pantheon.io": [12577], "treeoftea.de": [2053], "p8e.me": [2053], "img.delivery.rakuten.co.jp": [13768], "sourcesup.cru.fr": [3900], "traktr.news.com.au": [11530], "lbmfc.com": [2053], "fls-eu.amazon.es": [19370], "administrator.de": [19294], "fm.ozonico.net": [2053], "www.marketplace.org": [10181], "www.pnp.ru": [21155], "craft-staging.atomicobject.com": [1363], "avatars2.githubusercontent.com": [6801], "www.casetext.com": [2937], "www.campusvisit.osu.edu": [11959], "www.opentemplate.org": [21006], "api.t.sina.com.cn": [15085], "tenpixels.us": [2053], "oneeyedman.net": [12046], "stec-t02.xhcdn.com": [18815], "cckn.co": [2053], "tank.as": [2053], "www.badgekit.org": [1647], "wpveda.com": [18771], "communicatelive.co.uk": [3564], "blog.filestack.com": [5916], "l.ssviral.com": [2053], "justia.com": [8851], "s.robi-net.it": [2053], "tele2.lt": [16325], "tag.hr": [2053], "startpage.com": [8553], "vad.mn": [2053], "register.nzpug.org": [20973], "static.projects.iq.harvard.edu": [7351], "www.godvillegame.com": [6930], "chelyabinsk.rt.ru": [13703], "gemseek.com": [6641], "ieonline.microsoft.com": [10543], "wien.gv.at": [22025], "emporioalberghiero.com": [5321], "accor.pspr.fi": [2053], "csszengarden.com": [3968], "dqueiroz.eu": [2053], "heroku.link": [2053], "derpicdn.net": [4461], "nextag.*": [11556], "drchrono.com": [4843], "castel-bayart.com": [2949], "www.empireblue.com": [20033], "hevn.ly": [2053], "racemi.co": [2053], "*.soundstrue.com": [15413], "megastock.ru": [10399], "westmidlands.greenparty.org.uk": [7052], "*.ametsoc.org": [351], "www.inphi.com": [8307], "certificatedetails.com": [19679], "www.marvelstore.com": [10204], "a.gmokisokos.hu": [2053], "syndication.washingtonpost.com": [18287], "digia.com": [4558], "video-annotator.services.tv4play.se": [16137], "www.mumble.info": [10890], "76u.co": [2053], "www.admatic.com.br": [645], "www.vipserv.org": [17780], "www.ul.to": [4024], "www.datasaveslives.eu": [4263], "communi.gift": [2053], "hpbddy.co": [2053], "wiki.engr.illinois.edu": [17544], "www.companieshouse.gi": [19764], "owamail.stanford.edu": [15635], "m.madametussauds.com": [10002], "go.xtr.pp.ru": [2053], "www.cryptad.com": [3913], "berci.es": [2053], "l.dunne.io": [2053], "tada.com": [16157], "shreksadventure.com": [21437], "tryttp.com": [2053], "www.wienerstadtwerke.at": [18582], "onlyo.co": [2053], "www.tlhp.cf": [16078], "centrum.vas-hosting.cz": [21896], "gis.g4s.com": [20194], "support.splashthat.com": [15532], "m.beeq.co": [2053], "et11.xhcdn.com": [18815], "l.gpws.ovh": [2053], "kosimak.com": [9142], "dpoll.me": [2053], "www.ligatus.ch": [9502], "maxav.us": [2053], "*.marthastewart.com": [10196], "www.securityledger.com": [14774], "spum.us": [2053], "www.twtpoll.com": [17177], "pioneiro.co": [2053], "asktheexperts.plannedparenthood.org": [12991], "people.stanford.edu": [15635], "*.familie-redlich.de": [5758], "c3.ahosting.cz": [778], "l.plato.fm": [2053], "tdcws01.tandridge.gov.uk": [16198], "1023.fm": [2053], "url.xodaa.net": [2053], "ps.otenet.gr": [12336], "adaminfl.com": [2053], "cwv.me": [2053], "www.simquadrat.de": [15081], "l.pilot.ly": [2053], "srow.tips": [2053], "domcomp.com": [4757], "x1.hitravel.xyz": [2053], "myheritageimages.com": [11024], "web-stat.net": [18340], "www.justmoon.net": [8854], "url.gotouti.jp": [2053], "www.thunderranchinc.com": [16672], "nu.autoweek.nl": [2053], "self.run": [2053], "*.kyani.net": [9203], "ieup.fr": [2053], "gujiao.meituan.com": [10405], "hvpe.osu.edu": [11959], "database.com": [4272], "www.kernel-recipes.org": [9010], "sequencing.uio.no": [17615], "m.mindfactory.de": [10599], "s.kdama.net": [2053], "mainelegislature.org": [10061], "www.eaak.tk": [3597], "i2s.sinaimg.cn": [15091], "bbbonline.org": [1533], "newrelic.degica.com": [3396], "images.mcafee.com": [10282], "szs.meituan.com": [10405], "*.yahoofs.com": [18942], "www.themacro.com": [16605], "www.aeriagames.com": [725], "punchbowl.us": [2053], "trib.by": [2053], "*.everydayhealth.com": [5559], "static.card.jp.rakuten-static.com": [21251], "i2coalition.com": [7803], "kfdown.s.aliimg.com": [854], "www.venturebeat.com": [17903], "s.pitchbook.com": [2053], "future.mit.edu": [9916], "ads.aftonbladet.se": [754], "www.omniti.com": [11993], "kohlsson.link": [2053], "pocpro.me": [2053], "addons.prestashop.com": [13265], "webmail.netscape.com": [11441], "www.serviceuptime.com": [14868], "asseenontv.com": [1275], "peu.me": [2053], "ff.st": [2053], "on.netchows.com": [2053], "iedgmbh.de": [7859], "nn4.in": [2053], "profile.accounts.firefox.com": [5974], "phpboost.com": [21119], "trip.jd.com": [8571], "accounts.smartbear.com": [21479], "newsroom.intel.co.jp": [8356], "www.nasaimages.org": [4165], "services.google.com": [6962], "ech.cc": [2053], "webxmedia.co.uk": [18196], "youneedabudget.com": [19014], "www.advancedligo.mit.edu": [9914], "s.precena.com": [2053], "sea.news": [2053], "www.zalando.ch": [19094], "ezrss.it": [5103], "networksolutions.com": [11455], "2bl.co": [2053], "www.familie.rh.aok.de": [357], "portal.hud.gov": [17296], "live.wallstreetcn.com": [18258], "uab.worldcat.org": [18748], "al7.at": [2053], "www.webglobe.sk": [18416], "incloak.es": [8179], "www.peeringdb.com": [12731], "www.photo-mark.com": [10166], "h.holder.com.ua": [7592], "youtube.com.kw": [19016], "atraub.us": [2053], "www.freezone.co.uk": [6306], "catalog.usmint.gov": [17340], "www.uniteddomains.com": [17499], "in.pulsedm.com": [2053], "jabo.me": [2053], "on.tcs.com": [2053], "bestof.lv": [2053], "splashdata.com": [15531], "night.0wl.us": [2053], "www.gml.cz": [6881], "devel.gajim.org": [6523], "www.zen-cart.com": [19134], "saltz.it": [2053], "r.facl.org": [2053], "rrn.link": [2053], "packages.qa.debian.org": [4353], "pk.godaddy.com": [6898], "styles.ofcom.org.uk": [11931, 11932], "spidweb.com": [15521], "blog.3sat.de": [162], "image.bilio.com": [1929], "*.esupport.acenet-inc.net": [509], "comicstore.marvel.com": [10202], "www.campiba.be": [2841], "tucuatro.info": [2053], "chattfun.com": [2053], "consult.cityoflondon.gov.uk": [3249], "khimki.beeline.ru": [1801], "*.singlefeed.com": [15095], "*.publicwhip.org.uk": [13444], "taxi.ya.ru": [18930], "go.mirc.no": [2053], "nzwn.nl": [2053], "librato.com": [9467], "ttns.co": [2053], "www.dopplr.com": [4778], "www.fedoraproject.org": [5843], "sed.re": [2053], "*.yelp.es": [18979], "craftstats.com": [3822], "landalgreenparks.com": [18790], "spthk.us": [2053], "*.m-net.de": [9857], "bbs.wosign.com": [18693], "go.suego.co": [2053], "wipik.bit.nl": [1563], "loo.mn": [2053], "u.jfix.com": [2053], "*.docelu.pl": [4702], "hsteup.de": [2053], "library.warwickshire.gov.uk": [21980], "origin.www.upc-cablecom.ch": [21865], "chip-app.de": [2652], "seedprod.com": [14792], "laglxy.com": [2053], "brannerlibrary.stanford.edu": [15635], "ar.aliexpress.com": [847], "www.raynersoftware.com": [13819], "schetu.net": [14591], "evn.tc": [2053], "www.frauen.htwk-leipzig.de": [7736], "www.prezi.com": [13273], "s.yennick.be": [2053], "www.rade.tk": [3597], "*.listonic.com": [9613], "vunet.login.vu.nl": [17813], "a.liapis.info": [2053], "evn.tw": [2053], "plnx.in": [2053], "emtht.re": [2053], "cybercamp.es": [4030], "lhc-div-miwg.web.cern.ch": [2632], "ukid.cc": [2053], "dotcomhost.com": [4786], "wilmerhale.com": [18619], "mart.rakuten.co.jp": [13767], "on.far.al": [2053], "www.stylehatch.co": [15806], "kitematic.com": [9075], "media-dev.ycharts.com": [18917], "i0.rgstatic.net": [13655], "explti.me": [2053], "amcla.co": [2053], "ffwd.in": [2053], "ks.meituan.com": [10405], "plannedparenthood.org": [12991], "blogs.law.stanford.edu": [15635], "www.maplesoft.com": [10136], "www.travis-ci.org": [16976], "www.dsb.mpg.de": [9945], "www.shopperapproved.com": [14972], "www.weakdh.org": [18328], "voip-lk.mtt.ru": [20848], "kbctys.me": [2053], "bloom.bg": [2053], "assets.microsoft.com": [10543], "*.thewordpro.com": [18732], "www.union.uiuc.edu": [17234], "mpsnare.iesnare.com": [8094], "catchmentsensitivefarming.aeasolutions.co.uk": [19311], "www.dmv.ca.gov": [2800], "friz.us": [2053], "wordpress.org": [18731], "www.gresille.org": [7071], "appveyor.com": [19407], "leisurebookings.broxtowe.gov.uk": [19598], "embeddedanalytics.com": [5301], "efectv.com": [2053], "www.openlistings.co": [12217], "conference2008.kde.org": [8871], "wunderl.ink": [2053], "nyfed.org": [2053], "choc.lt": [2053], "www.fit.edu": [6058], "codeux.com": [3445], "admin.omgpm.com": [13176], "www.bitcoincharts.com": [2028], "blog.cartercenter.org": [2925], "brand.jd.com": [8571], "www.fantlab.ru": [5772], "go.jimbos.co.uk": [2053], "ecobase.ourproject.org": [21044], "transip.nl": [16934], "video2bra.in": [2053], "www.dinclinx.com": [10008], "statistieken.groenlinks.nl": [7088], "mysn.de": [11035], "www.l0cal.com": [9212], "l.drsoram.com": [2053], "edplivebands.edp.pt": [4995], "poste.it": [13192], "*.leadlander.com": [9350], "cht.pe": [2053], "ieee.osu.edu": [11959], "portal.mytum.de": [10979], "www.1cart.com": [53], "*.pjmedia.com": [12466], "398-fz.rkn.gov.ru": [14146], "*.imgflip.com": [8144], "dand.link": [2053], "www.sheffield.indymedia.org.uk": [8233], "s3.drafthouse.com": [813], "selinuxproject.org": [14337], "api.metooo.io": [10495], "indogeni.us": [2053], "howentrepreneur.com": [20369], "laixi.meituan.com": [10405], "whocanivotefor.co.uk": [22019], "www.adview.pl": [705], "kcitp.me": [2053], "lnk.malchys.net": [2053], "petgate4.info": [2053], "nlft.co": [2053], "*.lastpass.com": [9316], "www.internetlivestats.com": [8431], "*.blkb.ch": [20574], "onekingslane.com": [20998], "l.bass.com.mx": [2053], "*.imgsmail.ru": [8148], "iis.se": [7889], "www.c-ware.de": [2555], "hieu.lu": [2053], "go.hcouchd.com": [2053], "qlock.info": [2053], "img3.leboncoin.fr": [20650], "mrcote.info": [10864], "www.mymoustache.net": [10960], "freightcalculator.com.au": [6312], "einnsyn.difi.no": [4547], "c35mm.com": [2053], "4pr.se": [2053], "dp3.qq.com": [16371], "*.hosting2go.nl": [7670], "imp2.bizographics.com": [2085], "www.enfuse.co": [7134], "binaryturf.com": [1944], "www.technovelty.org": [16302], "frab.cccv.de": [2602], "www.ssl-trust.com": [14412], "transparencycamp.org": [15857], "euroland.com": [5523], "sql3.endora.cz": [5349], "fr.followmail.com": [20140], "dds.to": [2053], "*.top.list.ru": [9609], "pfl.im": [2053], "www.oaklands.ac.uk": [20976], "chatterta.in": [2053], "wrds.pw": [2053], "tso.media": [2053], "bonmusic.co": [2053], "www.elburg.nl": [11324], "client.towerdata.com": [16888], "fr.ch": [21629], "*.docstoc.com": [4710], "rogerfederershop.com": [14179], "www.flitto.com": [6045], "www.nasuni.com": [11229], "www.themler.com": [16610], "static.inaturalist.org": [7920], "l.ethim.nl": [2053], "bzzn.net": [2053], "ag8.eu": [2053], "engineering.instagram.com": [8331], "cilantro.tv": [2053], "blog.jetbrains.com": [8707], "myda.mn": [2053], "thumb.115.com": [25], "shop.bestpractical.com": [1859], "t.chadever.com": [2053], "www.rackspacecloud.com": [13741], "short.hpu.nl": [2053], "immunityinc.com": [8156], "news.istella.it": [8529], "tonyr.co": [2053], "darkmatter.ae": [19851], "www.greencubes.org": [20281], "2nb.nl": [2053], "guyuan.meituan.com": [10405], "assets3.sendgrid.com": [14821], "del.icio.us": [8065], "www.runscope.com": [14275], "order.hbonow.com": [20324], "cicdat.upo.es": [17683], "freelyshout.com": [20167], "investor.qiwi.com": [13533], "dftba.xyz": [2053], "d3.advertisers-openx.com": [699], "www.azt.allianz.com": [19351], "my-domain2.ml": [2053], "siit.tk": [3597], "metro.ya.ru": [18930], "tvo.li": [2053], "csirt.cesnet.cz": [2642], "a.36krcnd.com": [142], "mapl.us": [2053], "miun.se": [9918], "lavel.la": [2053], "www.gavelbuddylive.com": [6588], "www.epitesz.bme.hu": [1570], "www.seroundtable.com": [14343], "defendi.tk": [2053], "login.live.com": [9644], "www.base64encode.org": [19492], "*.adspeed.biz": [579], "east-africa.hivos.org": [7573], "tlinkx.com": [2053], "enroll.entrust.net": [5406], "dxw.com": [4915], "pubpeer.com": [13426], "three.ma": [16668], "rfish.us": [2053], "image.baidu.com": [1661], "memorialwebsites.legacy.com": [9384], "js2.us": [2053], "landscape.canonical.com": [2869], "www.rfcexpress.com": [13652], "texasjo.es": [2053], "bookdepository.co.uk": [16483], "www.aklamio.com": [806], "qquote.me": [2053], "asianfanfics.com": [1294], "www.maxserv.com": [10257], "shepherdsfriendly.co.uk": [14944], "ckom.de": [3264], "zeigemir.de": [2053], "fwinnvat.in": [2053], "dr.dk": [4154], "lesscss.org": [9223], "arno.ms": [2053], "home.alipay.com": [857], "sme.sc": [2053], "lrsecrets.net": [2053], "helloneighbour.com": [7434], "licensing.ofcom.org.uk": [11931, 11932], "giocarecoltempo.ffs.ch": [15946], "*.cru.org": [3901], "wkyry.me": [2053], "purchase.youneedabudget.com": [19014], "login.wwwpromoter.com": [22071], "ut.edu": [17625], "hxdx.tk": [2053], "www.aut.bme.hu": [1570], "customerrewards.sky.com": [15170], "orchiddiva.com": [12297], "signon.springer.com": [15561], "status.mheducation.com": [20790], "rushbucks.com": [14277], "s.comicnerd.com": [2053], "richmond.greenparty.org.uk": [7052], "media.image.infoseek.co.jp": [8277], "www.open-mesh.org": [12218], "buy.wosign.com": [18693], "www.jeeptopsdirect.com": [8693], "git.php.net": [12453], "sgbrid.es": [2053], "www.netid.cornell.edu": [3744], "*.nasdaqomx.com": [11060], "wgrd.tech": [2053], "j.r3n.cc": [2053], "coop.ch": [3711], "on.bitly.pro": [2053], "21vote.com": [2053], "www.entadsl.com": [5391], "www.scummvm.org": [14672], "guidebook.com": [7137], "eservices.dynatrace.com": [4923], "fundres.mipay.com": [10626], "s.nana111.net": [2053], "broker.bankinter.com": [1694], "insight.com": [8320], "www.omha.net": [12088], "grurl.ovh": [2053], "ko.chaturbate.com": [3093], "sitola.fi.muni.cz": [15134], "ensk.dict.cc": [4536], "u73.net": [2053], "amp.azure.net": [19470], "jquery.com": [8598], "*.blogs.technet.com": [16285], "culture.wnyc.org": [18211], "r.henrynah.com": [2053], "ttw.bz": [2053], "fxs.nl": [2053], "www.dndclassics.com": [12029], "spendabit.co": [15512], "sjh.bz": [2053], "info.shortnote.jp": [21434], "help.uber.com": [17368], "s47.cnzz.com": [3391], "forg.me": [2053], "tplcl.ca": [2053], "cl.ito-ya.co.jp": [2053], "www.pagerduty.com": [12536], "mbnet.fi": [9889], "cooler.bz": [2053], "eff.mn": [2053], "t1.la": [2053], "preview.c9users.io": [3339], "sugarcrm.com": [15837], "vuze.com": [18175], "www.mixtapeleak.com": [10659], "pornel.net": [13157], "www.qfxsoftware.com": [13511], "meld.li": [2053], "*.phpbb.com": [12862], "gendersec.tacticaltech.org": [16156], "drivers.dpd.co.uk": [19956], "tno.nl": [16094], "url.sotude.ir": [2053], "programpartner.vas-hosting.cz": [21896], "ct.stu.126.net": [43], "files.app.net": [1141], "cpd.to": [2053], "wiki.centos.org": [3003], "ftp.formilux.org": [6162], "www.xtube.com": [18905], "app.gigster.com": [6778], "distribution.zoom.com.br": [19220], "shopaba.org": [2053], "damitech.info": [2053], "mali.usembassy.gov": [21879], "dev.filestack.com": [5916], "mjr.mn": [2053], "www.sohosted.com": [15296], "apt.syncthing.net": [15986], "thepiratebay.bypassed.bid": [21217], "www.adda-sr.org": [306], "*.ipaddresslabs.com": [7935], "ir.mondediplo.com": [10729], "f101.co": [2053], "events.joomla.org": [8776], "hs-esslingen.de": [7585], "amejobs.g4s.com": [20194], "download.openoffice.org": [1124], "blog.docsend.com": [4701], "www.upc.cz": [17278], "azl.cm": [2053], "sqi.one": [2053], "payments.redbridge.gov.uk": [13917], "xmarks.com": [18882], "www.goob.tk": [3597], "www.profitbricks.de": [13356], "go.fully.io": [2053], "avlr.co": [2053], "solo.mn": [2053], "www.scotland.police.uk": [21388, 21389], "java.net": [8673], "tts.uol.com.br": [17276], "7tw.com": [2053], "frog.wix.com": [18684], "netlify.com": [11432], "acml.engineering.osu.edu": [11959], "asb.co": [2053], "*.cchgroup.com": [2605], "s.daialog.com": [2053], "blowup.co": [2053], "judge.me": [8812], "webmagazin.de": [18425], "maidstone.objective.co.uk": [20979], "developers.digitalocean.com": [4578], "dynu.com": [4934], "members.internetdefenseleague.org": [8430], "myplace.havering.gov.uk": [7377], "anbg.gov.au": [1436], "forums.ubuntulinux.jp": [17385], "www.curated.co": [3995], "cp.myvps.jp": [10985], "thinkgeek.com": [16629], "tracking-protection.truste.com": [16111], "sweeps.bz": [2053], "stacksity.com": [15617], "pros.life": [2053], "esdominios.com": [5461], "instagrms.tk": [2053], "hz.meituan.com": [10405], "optimalpayments.com": [12270], "anthe.mx": [2053], "pixlz.it": [2053], "s.imaonline.jp": [2053], "www.socialreader.com": [15314], "cengagebrain.co.uk": [2998], "c.cogdill.co": [2053], "afcu.co": [2053], "cdn.wcdc.comcast.com": [3525], "anthe.me": [2053], "guide.macports.org": [9986], "process.knowledgeblog.org": [9100], "www.fivethirtyeight.com": [6008], "deutschepost.com": [19901], "www.kryptosfera.pl": [9172], "docs.voicethread.com": [18115], "ytu.io": [2053], "www.glenoit.com": [6829], "www.renew.acs.org": [966], "status.gitbook.io": [6795], "zhkh24.ru": [2053], "kccmediahub.net": [8867], "ultradns.*": [17415], "fwtest.feide.no": [5858], "futurelearn.com": [6399], "www.blazingthyme.com": [2116], "mbox.uni-stuttgart.de": [17567], "banner4.utm.edu": [17628], "www.mycomputer.com": [10943], "openrussia.org": [12243], "northwarks.gov.uk": [11696], "*.education.gov.au": [4448], "www.plantappstore.com": [12997, 12998], "d0wn.biz": [4070], "app.dumptruck.goldenfrog.com": [6940], "active24.pl": [19280], "psk.li": [2053], "outreach.web.cern.ch": [2632], "s.smauto.net": [2053], "careers.7-eleven.com": [218], "www.orphus.ru": [21031], "jalopnik.com": [8644], "jinx.com": [8725], "yongchuan.meituan.com": [10405], "files.choicecheapies.co.nz": [12400], "www.primegrid.com": [13286], "omly.us": [2053], "casa.tiscali.it": [16770], "roffy.net": [2053], "*.lulu.com": [9823], "s.glasscat.info": [2053], "dsinternals.com": [4159], "customer.innometrics.com": [8301], "naturvent.io": [2053], "recruit.smashfly.com": [15249], "www.kosmetik-per-klick.de": [10364], "www.*.doe.gov": [17496], "bucyrustelegraphforum.com": [2446], "familie.san.aok.de": [357], "carleton.edu": [2912], "finka.pl": [5962], "www.careers.g4s.com": [20194], "emerdata.co": [2053], "htb.al": [2053], "shop.parliament.uk": [21075], "www.excelatlife.com": [20076], "cryptopia.co.nz": [3956], "sean.pm": [2053], "saln.ir": [2053], "tkme2.co": [2053], "secure.torbay.gov.uk": [16840], "changshu.meituan.com": [10405], "0gc.co": [2053], "whyopencomputing.ch": [22021], "screendaily.com": [14650], "ten2nd.com": [2053], "howtoforge.com": [7719], "nos-oignons.org": [11709], "www.torrentfreak.com": [16851], "rad.atdmt.com": [10540], "divyanshu.io": [2053], "betto.me": [2053], "backissues.people.com": [12759], "uvmob.com": [2053], "ws21.shacombank.com.hk": [14903], "schools.dl.ed.gov": [4988], "bbs.ncar.cc": [20879], "www.ssl.com": [14413], "my.studiopress.com": [15796], "accesspass.wifi.comcast.com": [3525], "fedid.ext.ti.com": [16413], "socialboxusa.com": [15305], "www.goldenpass.ch": [20267], "shopsite.com": [21431], "t.szeker.es": [2053], "cointelgraph.com": [19753], "www.vmwareblogs.com": [17787], "ichime.in": [2053], "min.sh": [2053], "lbui.net": [2053], "evpr.us": [2053], "es.nextep.es": [2053], "env.leeds.ac.uk": [17604], "www.hornstrafarms.com": [7641], "files.status.net": [8084], "m.pogoda.yandex.kz": [18957], "wiki.trustthevote.org": [17059], "www.replicant.us": [14014], "rdrt.daccaa.com": [2053], "saptraining.ncl.ac.uk": [11073], "pavlovsk.beeline.ru": [1801], "downloads7.mamp.info": [20744], "www.moelleken.org": [10716], "www.getrave.com": [6721], "v2.holidayextras.co.uk": [7595], "jdeslippe.com": [8616], "birmingham.greenparty.org.uk": [7052], "l.nomzit.com": [2053], "inthusia.st": [2053], "cdn.ustatik.com": [17741], "www.chakasmmm.com": [3043], "jb17.us": [2053], "webmail.desy.de": [4479], "status.runscope.com": [14275], "garciniacambogiavitalmend.com": [6576], "www.artskills.com": [1258], "documentcloud.org": [4715], "www.math.ias.edu": [7815], "help.calameo.com": [2790], "cisn.co": [2053], "online.westlancsdc.gov.uk": [22009], "pghzoo.me": [2053], "a.hoonk.im": [2053], "www.switchvpn.net": [15955], "www.freebsd.org": [6237], "sayit.cc": [2053], "static.opentok.com": [12183], "services.share.aarp.org": [270], "resortquestsecure.com": [18790], "skov.co": [2053], "vh3.ro.vutbr.cz": [17814], "www.cwi.nl": [3020], "claudio.fyi": [2053], "gestion.titulospropios.ulpgc.es": [17411], "s1.hdslb.com": [20327], "www.tonybianco.com.au": [16818], "cycas.tk": [2053], "dev.nsslabs.com": [11148], "www.evilsocket.net": [20073], "travelrepublic.co.uk": [16970], "prx.ms": [2053], "fi.ncsu.edu": [11690], "www.httpswatch.nz": [7243], "l.tikwenpam.net": [2053], "finland.usembassy.gov": [21879], "www.medicalert.org": [10353], "intech.camp": [2053], "cardiff.greenparty.org.uk": [7052], "accesspass.wifi.xfinity.com": [22082], "www.allistene.fr": [895], "we.tv": [2053], "ssi.my": [2053], "www.thecoastnews.com": [16526], "runs.ga": [2053], "cdn.egopay.com": [5215], "thecustomizewindows.net": [21695], "support.incapsula.com": [8192], "ipm.io": [2053], "milner.in": [2053], "overstock.com": [12375], "rushmypassport.com": [14278], "ini.es": [2053], "www.uocpres.uillinois.edu": [17238], "newcastle.gov.uk": [11507], "www.vliegtickets.nl": [18095], "www.pravydiplom.cz": [13241], "www.youtube.ba": [19016], "static2.chartbeat.com": [3077], "www.quantifiedcode.com": [13568], "20.fbk.info": [5818], "ci.philips.blue": [2053], "pacadmin.ucc.ie": [17210], "shop.amnesty.ch": [997], "contura.rhb.ch": [14091], "www.healthonnet.org": [7397], "ageofmine.com": [760], "s.ophan.co.uk": [12255], "simplysecure.org": [15079], "ese.osu.edu": [11959], "www.iwmnetwork.com": [8017], "arabic.rt.com": [13702], "service.ringcentral.com": [14124], "info.iet.unipi.it": [8248], "asmp.a1.net": [252], "on.waow.com": [2053], "reethibeach.com": [13945], "www.worldcat.org": [18748], "khmer.cambodia.usembassy.gov": [21879], "www.whatsuccesstakes.com": [6838], "uncommo.com": [2053], "url.topfree.de": [2053], "gettyimages.es": [6741], "on.abc10.com": [2053], "www.slovensko.sk": [15217], "herts.police.uk": [7472], "on.ducsu.com": [2053], "reproducible-builds.org": [14023], "trac.macports.org": [9986], "ng4a.me": [2053], "drugdiscovery.georgetown.edu": [6668], "iepolls.us": [2053], "wiki.ubuntulinux.jp": [17385], "memset.com": [10428], "luke.ph": [2053], "lifeinsurance.firstdirect.com": [20127], "crmag.co.uk": [2053], "njrfilm.tk": [2053], "irdh.info": [2053], "dl.btjunkie.org": [19602], "omniupdate.com": [11996], "undg.co": [2053], "www.sav.sk": [15217], "encipher.it": [5333], "pccc.me": [2053], "www.sexysitehosting.com": [14890], "mastermindsdigital.com": [10223], "manager.bigv.io": [1908], "loomio.org": [9766], "g.sal.pr": [2053], "a.irs01.com": [20498], "lsym.es": [2053], "i1.ooshirts.com": [12097], "op.alfa.nl": [2053], "mariadb.com": [10151], "www.smart-mail.de": [15230], "lenovoorders.com": [9410], "rappri.ch": [2053], "en.ad-stir.com": [552], "rboxx.me": [2053], "m.meetme.com": [10378], "visiam.eu": [2053], "myheritage.de": [11023], "cyber.sci-hub.bz": [14615], "myheritage.dk": [11023], "zkb.dengisend.ru": [4440], "*.blogspot.hr": [2166], "www.rbkc.gov.uk": [21266], "adc.expert": [2053], "library.unc.edu": [17262], "dgtl.to": [2053], "wwwrc.cinelease.com": [7511], "dunn.it": [2053], "scottlinux.com": [14643], "noscript.net": [11632], "w.qiwi.com": [13533], "hofer.si": [338], "seal.stellaservice.com": [14426], "qb.cx": [2053], "lstrs.com": [2053], "cherry.de": [3120], "vyborg-bank.dengisend.ru": [4440], "total.fark.com": [5776], "install.sandstorm.io": [14522], "login.yourkarma.com": [19035], "www.creocommunico.com": [7645], "epa.ie": [5038], "*.muscache.com": [788], "l2020.org": [9215], "nsslabs.com": [11148], "www-images.comixology.com": [3529], "*.tmcdn.org": [16088], "www.kwiksurveys.com": [9202], "www.serveriai.lt": [14860], "spicybite-dublin1.just-eat.ie": [20565], "support.ooyala.com": [12098], "bacn.li": [2053], "chongzuo.meituan.com": [10405], "www.zenmate.be": [19133], "larrysalibra.com": [9311], "www.congstar.de": [3642], "cypto.co": [2053], "static.couponfinder.com": [12374], "intake.credability.org": [3858], "on.cpsj.com": [2053], "s.joureikun.jp": [2053], "reliableisp.net": [13989], "tile3.bbcimg.co.uk": [19502], "getcake.pro": [2053], "blogs.tageswoche.ch": [16162], "www.sbaglobal.com": [14869], "yuanyang.meituan.com": [10405], "www.gettyimages.ch": [6741], "automation.thepensionsregulator.gov.uk": [21708], "www.gettyimages.ca": [6741], "paodelicia.com": [12582], "rode.sk": [2053], "yadg.cc": [22092], "hshcrs.com": [2053], "nortix.link": [2053], "sfinds.co": [2053], "www.ibanking.cimbthai.com": [2665], "*.r.cdn77.net": [2613], "can-v.as": [2053], "tixac.me": [2053], "www.wesnoth.org": [18500], "codespeak.net": [3442], "admin.noxa.de": [20940], "www.coveredca.org": [3800], "7zn.me": [2053], "gtex.me": [2053], "flixbus.it": [6047], "meetme.com": [10378], "www.gynecomastia.org": [7169], "ssos.mylifetime.com": [10957], "authorizenet.com": [1447], "ghost.org": [6748], "*.hsselite.com": [7705], "consent.truste.com": [16111], "www.realtimeregister.com": [13866], "dodgspza.us": [2053], "urospace.de": [17704], "www.smugmug.com": [15260], "go.mayorga.net": [2053], "aat-net.de": [884], "cdn.store.wsj.net": [22059], "lm.tl": [2053], "chrom.so": [2053], "p3.hitravel.xyz": [2053], "glmr.us": [2053], "www.genumedia.htwk-leipzig.de": [7736], "docs.djangoproject.com": [4677], "webink.com": [18365], "api.media.ccc.de": [2596], "www.argus.ch": [1225], "www.piratetimes.net": [12925], "linzhang.meituan.com": [10405], "jobs.hubspot.com": [7739], "mmoen.ch": [2053], "0vc.pink": [2053], "dlt.re": [2053], "amcf.co": [2053], "www.thesatanictemple.org": [16574], "store.seagate.com": [14679], "s.robiesite.com": [2053], "gotomeeting.com": [6912], "flickr.com": [6034], "uwishu.nu": [2053], "lulzbot.com": [9824], "majordomo.ru": [10068], "mediproviders.empireblue.com": [20033], "upworthy.com": [17693], "victoriaforms.com": [21922], "vmkfb.tdconline.se": [16054], "www.tco.osu.edu": [11959], "marinedepot.com": [10162], "thepiratebay.run": [21215], "checkout.netsuite.com": [11401], "www.luxsci.mobi": [9840], "voicefive.com": [18114], "wsf.so": [2053], "sfg.link": [2053], "www.brainshark.com": [2323], "ef7.fr": [2053], "kcrw.co": [2053], "groenlinks.nl": [7088], "kibank.dengisend.ru": [4440], "0t.ee": [2053], "blog.disconnect.me": [4627], "jamesro.se": [2053], "glr.mn": [2053], "www.lakome.com": [9288], "www.theleanstartup.com": [16463], "dmrco.in": [2053], "lansquared.com": [9217], "auth.ohiolink.edu": [11961], "packetwerk.com": [12522], "www.jauce.com": [20526], "ml.church": [2053], "altav.eu": [2053], "wi.st": [2053], "porterdrive.stanford.edu": [15635], "www.primarycare.nhs.uk": [11102], "dk.support.tomtom.com": [16812], "sbu.li": [2053], "secure.payonlinesystem.com": [12695], "mads.smartstream.tv": [15247], "d1.parature.com": [12602], "www.quidco.com": [13594], "nvc.de.vc": [2053], "mariestopes.org.au": [10156], "captcha.pconline.com.cn": [12437], "firstamendmentcenter.org": [5988], "secure.gettyimages.ca": [6741], "jstn.to": [2053], "zhigulevsk.beeline.ru": [1801], "arukas.io": [19424], "reb.tl": [2053], "webmail.nitro.dk": [11620], "www.bandaancha.eu": [19483], "odd4.me": [2053], "bigcommerce.com": [1906], "pedrodvargas.tk": [2053], "lifesim.pl": [2053], "www.srsplus.com": [14407], "t.let.yt": [2053], "nwf.gs": [2053], "gimmebar.com": [6781], "downforeveryone.com": [4819], "games.slashdot.org": [15192], "energycompare.citizensadvice.org.uk": [19717], "www.grml.org": [6499], "rpo.guru": [2053], "d.ghostery.com": [6751], "go.baraja.id": [2053], "images.chillingeffects.org": [3137], "slvd.me": [2053], "www.retailhosting.fi": [14057], "mobile.akbars.ru": [19335], "mbc.uniovi.es": [17479], "www.bayan.ir": [1752], "www.mentalhelp.net": [20780], "webjet.com.au": [18421], "teach.al": [2053], "go.yourkarma.com": [19035], "wcw.social": [2053], "cannockchasedc.gov.uk": [19639], "upgradedself.com": [17675], "jetbrains.com": [8708], "sqek.squat.net": [21549], "on.details.com": [2053], "hans.bz": [2053], "www.shields.io": [21425], "odeabank.biz": [2053], "*.blackducksoftware.com": [2097], "www.joomlacode.org": [8777], "mus.li": [2053], "cdn.ckeditor.com": [2678], "partito-pirata.ch": [12487], "chitika.com": [3151], "nyjewi.sh": [2053], "kb.mit.edu": [9916], "www.torrentz.me": [16863], "gis.camb.ma": [2053], "reefledlights.com": [13941], "s.sho.com": [2053], "www.0p.no": [4], "tweetadder.com": [17145], "registration123.com": [13967], "iyf.be": [2053], "go.ppls.io": [2053], "medcourseeval.georgetown.edu": [6668], "advc.life": [2053], "www.su.nottingham.ac.uk": [11726], "www.unbit.it": [17431], "lackste.in": [2053], "www.nccc.nl": [11323], "johnlyons.me": [2053], "rhrc.us": [2053], "nvidia.eu": [11173], "rbwmcarshare.co.uk": [21269], "rotc.georgetown.edu": [6668], "tech.jobindex.dk": [8746], "www.luukku.com": [20730], "bookings.aberdeenshire.gov.uk": [451], "lenta.ru": [20661], "www.bitcoin-otc.com": [2013], "stjohnsem.worldcat.org": [18748], "home.netscape.com": [11441], "datenretter.de": [3692], "files-eu.clickdimensions.com": [3303], "www.biotek.uio.no": [17615], "globalchokepoints.org": [5007], "www.browsealoud.com": [2422], "ecas-sso.wku.edu": [22039], "www.svgopen.org": [14438], "mbasic.facebook.com": [5733], "s.tsunagary.jp": [2053], "mail.yandex.kz": [18957], "trey.in": [2053], "l.shawn.sg": [2053], "blog.bandinelli.net": [1684], "steaw.com": [15713], "doomwiki.org": [4775], "blog.podio.com": [13068], "ncsam.info": [2053], "b.wardell.us": [2053], "*.so36.net": [21495], "idstronghold.com": [8085], "roketfiyat.com": [14184], "ckwrites.info": [2053], "www.kik.com": [20593], "www.cern.ch": [2632], "tbws.co": [2053], "static-s.bilibili.com": [1928], "adspeed.com": [581], "images.websitealive.com": [18445], "www.shellmix.com": [14398], "aclusocal.org": [295], "wiki.factorio.com": [20091], "qr4.us": [2053], "s.thelaw.tv": [2053], "l.pinone.com": [2053], "usenetjunction.com": [17718], "bsdcan.org": [1585], "cdn.ads.ookla.com": [12093], "afriq.top": [2053], "jpch.co": [2053], "azuara.unizar.es": [17643], "suhm.dk": [2053], "avon.cz": [412], "buddy.moe": [2053], "epa-prgs.ornl.gov": [11892], "www.awxcnx.de": [1505], "piprl.me": [2053], "scheduler.worldcommunitygrid.org": [18749], "pr.zwame.pt": [19243], "t-shirtmojo.com": [16029], "yalz.co": [2053], "chil.is": [2053], "ikk-suedwest.de": [7896], "josepf.co": [2053], "*.buzzurl.jp": [2539], "livebackup.tv": [2053], "pcct.me": [2053], "www.dcvote.org": [4091], "landofbitcoin.com": [9293], "mvd.jd.com": [8571], "akk.ro": [2053], "valdel.uz": [2053], "katylee.com": [8972], "blackbox.co.uk": [2096], "english.georgetown.edu": [6668], "my.kinsta.com": [9063], "www.drivee.jp": [4860], "*.mpnrs.com": [9947], "m0b.it": [2053], "tmt-link.de": [2053], "campaignercrm.com": [2838], "go.hooq.tv": [2053], "fb.kpr.nu": [2053], "midga.me": [2053], "manr.pl": [2053], "duolingo.com": [4902], "advertisment.unimatrix.si": [21853], "gosbt.co": [2053], "pasp.eu": [2053], "www.shop.infinet.com.au": [8242], "dslreports.com": [4157], "dixcart.com": [4672], "dmachoice.org": [4118], "svai.co": [2053], "upds.com": [21866], "nuigalway.ie": [11253], "contacts-df.live.com": [9644], "people.freedesktop.org": [6243], "www.crystaldelights.com": [3962], "www.campina.com": [2841], "primaryimmune.stanford.edu": [15635], "www.hertz.com.kw": [7493], "editor.torrentday.com": [16850], "editorial.outbrain.com": [12355], "www.fr.ricardo.ch": [14100], "sesame.dsi.cnrs.fr": [6314], "g03.t.alicdn.com": [846], "investors.redhat.com": [13909], "togevi.com": [8548, 8549], "www.1984.live": [50], "oauth.jd.com": [8571], "skyemln.com": [2053], "locator.symantec.com": [15969], "*.namecentral.com": [11207], "globetrotter.de": [6867], "portfoleo.jobs": [2053], "www.business.ftc.gov": [5837], "y6xjgkgwj47us5ca.onion": [18914], "nkcmr.link": [2053], "dbus.freedesktop.org": [6243], "on.reno.com": [2053], "rasoul.in": [2053], "instagrampartners.com": [8332], "cll.ln.com.ar": [2053], "b-gat.es": [2053], "tribecafilm.com": [17003], "www2.sparebank1.no": [21524], "ask.f5.com": [5659], "a.loudgif.com": [2053], "www.kasperskypartners.ru": [8963], "www.visitormotion.com": [5495], "info.warwickshire.gov.uk": [21980], "*.clicktracks.com": [9851], "links.bctv.hr": [2053], "www.liftdna.com": [9499], "puppet-dashboard.debian.org": [4352], "dos.cornell.edu": [3744], "leo.pw": [2053], "www.wpp.com": [18219], "postnord.se": [13177], "trademarkia.com": [16918], "tns-counter.ru": [16792], "his.se": [7199], "thetaniac.com": [2053], "tenta.co": [2053], "*.wpdigital.net": [18223], "console.ipinyou.com": [7950], "s.isujay.com": [2053], "aquis.fr": [2053], "www.minifree.org": [20800], "chengde.jd.com": [8571], "ing.cnblogs.com": [19743], "freshmeat.club": [20174], "aws-cache.vevo.com": [17773], "activate.esellerate.net": [5462], "www.posteo.de": [13195], "doc.gg": [2053], "sa-as.com": [18059], "unityads.unity3d.com": [17506], "nfv.io": [2053], "uni-karlsruhe.de": [8950], "blox.ly": [2053], "www.engr.washington.edu": [17577], "icme.stanford.edu": [15634], "www.eam-gmbh.com": [4965], "mochapar.me": [2053], "sugarh.it": [2053], "nws.mx": [2053], "dkg.fifthhorseman.net": [5896], "on.sc.com": [2053], "ccycx.tk": [2053], "quicksal.es": [2053], "t42.io": [2053], "twgst.ru": [2053], "www.sbarmen.no": [14559], "tpucdn.com": [21772], "open-stand.org": [21005], "dink.im": [2053], "c5in.co": [2053], "store.ssl2buy.com": [14414], "ktvb.net": [2053], "www.youtube.my": [19016], "www.slax.org": [15196], "images.dailystar.co.uk": [4189], "files.tv2.dk": [16136], "www-new.optum.com": [21026], "fsinfo.fme.vutbr.cz": [17814], "ampush.com": [1020], "ecw.hmrc.gov.uk": [7219], "c.bielous.eu": [2053], "secure.palmcoastd.com": [12550], "lil.fm": [2053], "s1.mt-cdn.net": [9963], "muusikoiden.net": [10922], "*.manta-r1.com": [10124], "login.alibaba-inc.com": [19342], "down.24hgame.vn": [2053], "www.uwb.edu": [17356], "portal.uk.clara.net": [3271], "s.krysp.in": [2053], "www.samsclass.info": [14500], "de-it.dict.cc": [4536], "lizs.me": [2053], "www.the-independent-news.com": [8205], "www.google.com.*": [6966, 6968, 6973, 6975], "sutn.sk": [15217], "gohealthservices.scot.nhs.uk": [11102], "youngcancer.scot.nhs.uk": [11102], "about.bizrate.com": [2086], "thenew10.treasury.gov": [16980], "natu.ren": [2053], "tltogether.org": [2053], "discogs.com": [4625], "*.blogspot.si": [2166], "scribusstuff.org": [21006, 21007], "foxs.pt": [2053], "brennannovak.com": [2357], "*.hafner-ips.com": [7293], "www.btctrade.com": [2437], "zx.jd.com": [8571], "beacon.stage.walmart.com": [18260], "forums.docker.com": [4704], "kelcomaine.com": [8996], "cdn.blog.hubspot.com": [7739], "www.youtube.mk": [19016], "afabri.ca": [2053], "www.dnscurve.org": [4137], "sfprep.symantec.com": [15969], "cmsresources.windowsphone.com": [18646], "www.tech-recipes.com": [16263], "to.tazuu.com": [2053], "rezeptwettbewerb.ichkoche.at": [8063], "orne.ws": [2053], "s7sps3.scene7.com": [14580], "edit.vas-hosting.cz": [21896], "publicorigin.wix.com": [18684], "ausgamers.com": [1410], "assets0.roadtrippers.com": [21317], "techtry.in": [2053], "webinars.intercom.io": [8392], "thainetizen.org": [16429], "amota.mx": [2053], "wholesale.tdc.dk": [16051], "www.bhw.de": [1557], "rd.i-aa.jp": [2053], "piwik.cable6.net": [2761], "w.lbcgroup.tv": [2053], "nzbindex.com": [11191], "www.rogueamoeba.com": [14180], "a.kiddsock.com": [2053], "sjq.ok.1688.com": [44], "download.univention.de": [17511], "gametreelinux.com": [6546], "www.alfresco.com": [843], "metmia.li": [2053], "www.mooddisorders.ca": [10759], "www.axantum.com": [1507], "gradcenter.wustl.edu": [18290], "teenshealth.org": [9036], "binrev.com": [1941], "support.gyazo.com": [7165], "www.rte.ie": [13704], "store.startrek.com": [15651], "go.renosaw.com": [2053], "www.bilddb.arch.ethz.ch": [5074], "*.eventbrite.com": [5547], "piwik.gwdg.de": [7160], "regjeringen.no": [13972], "askjo.co": [2053], "bitcoin.in": [2012], "zzz.ac": [2053], "igi.tips": [2053], "snacktools.com": [15266], "genvrtue.co": [2053], "link.cashat.pro": [2053], "mcjon.es": [2053], "purecambogia.com": [13470], "hig.se": [7197], "www.netzclub.net": [20895], "tinymt.com": [2053], "stwn.co": [2053], "sportng.in": [2053], "gaytimesmagazine.com": [20210], "www.fileformat.info": [5905], "creativedo.se": [2053], "www.ziggozakelijk.nl": [19180], "glimmerblocker.org": [6831], "fb.me": [5815], "livestock-transport.com": [9675], "forgestagingapi.puppetlabs.com": [13460], "www.yam.com": [18948], "multibit.org": [10883], "perfectaudience.com": [12771], "www.selinuxproject.org": [14337], "www.secretcon.com": [14712], "*.creativepartnershipsaustralia.org.au": [3850], "infotomb.com": [8253], "linker.bk-as.no": [2053], "a2.hertzrent2buy.com.br": [7479], "www.mobile01.com": [10682], "l.x1fr.com": [2053], "8.asset.soup.io": [15415], "bitcoin.org": [1980], "pfit.so": [2053], "kdglobal.info": [2053], "trpp.pl": [2053], "leahscape.com": [9363], "shr.tronite.com": [2053], "www.onepagerapp.com": [12056], "go.textech.co": [2053], "at.viwwr.com": [2053], "assurancesauto.search.ch": [14684], "*.protonmail.ch": [13396], "*.news-gazette.com": [11514], "*.2roads.com": [17173], "www.innovations.cms.gov": [19742], "www.flipagram.com": [6040], "t45.co": [2053], "garlandscience.com": [8267], "tns.fm": [2053], "sql8.endora.cz": [5349], "13.wbtw.com": [2053], "barna.org": [1721], "bpop.pr": [2053], "itme.jp": [2053], "www.segger.com": [14801], "ulyanovsk.rt.ru": [13703], "ches15challenge.com": [2650], "aka-publications.environment-agency.gov.uk": [20047], "to.brck.nl": [2053], "img-2.gizmag.com": [6816], "www.mouseflow.com": [10812], "www.commbank.com.au": [3542], "lada.kz": [20627], "*.mecca.ca": [5219], "bwhvac.reviews": [2053], "worlde-idcongress.com": [18760], "app.qualaris.com": [13557], "nwc.me": [2053], "jeremyk.us": [2053], "pecl.php.net": [12453], "s2p.la": [2053], "ngdc.noaa.gov": [11272], "hed.gy": [2053], "s.torcaio.com": [2053], "bcoop.co": [2053], "kouni.ninja": [2053], "legolanddiscoverycenter.com": [9391], "docs.nuget.org": [11760], "pty.club": [2053], "garoden.net": [2053], "img.warwickshire.gov.uk": [21980], "cdngw.ustream.tv": [17742], "netpivotal.*": [11396], "i.chzbgr.com": [3114], "store.3dr.com": [159], "connect6.com": [19773], "kumu.io": [9188], "mosher.co": [2053], "fi.support.tomtom.com": [16812], "adv.reklama.wp.pl": [18217], "accnt.co": [2053], "www.inhumanity.com": [8292], "president.mit.edu": [9915], "ck.ro": [2053], "vsi.la": [2053], "navigantresearch.com": [11304], "vsco.co": [17803], "noxamail.de": [20940], "joomlancers.com": [8778], "cdn.knightlab.com": [9097], "www.youtube.hk": [19016], "assets.start.me": [15658], "healthfuze.com": [7401], "cirw.in": [3219], "skepticink.com": [15151], "groupava1.mycdn.me": [11014], "statebuy.state.gov": [17345], "uno.im": [17648], "www.f3mimages.com": [5657], "go.asteroid.mx": [2053], "css2.open.ac.uk": [12184], "eagle.gmu.edu": [6666], "asfl.info": [2053], "www.lumo.me": [9831], "srn.kr": [2053], "guannan.meituan.com": [10405], "cen.acs.org": [966], "mastermindpro.com": [10222], "prm.pm": [2053], "everydayfeminism.com": [5561], "intellnews.net": [20473], "getkano.co": [2053], "pisc.me": [2053], "lh4.google.*": [6965], "sakura.ad.jp": [14306], "locass.as": [2053], "superbrightleds.com": [15874], "www.cpbonlinebanking.com": [3492], "s132.cnzz.com": [3391], "www.popgoestheweek.com": [13140], "old.metal-detector-town.com": [10483], "www.server.cpmstar.com": [2704], "slashdot.org": [15192], "yune.ec": [2053], "gigenet.com": [6776], "www.techinasia.com": [16280], "kuruc.info": [9198], "bret.ws": [2053], "uni-hannover.de": [17453], "www.hbonow.com": [20324], "www.nplusonemag.com": [11735], "eliz.is": [2053], "corrieandty.co": [2053], "www.legal.nodejitsu.com": [11647], "www.fencecenter.com": [5862], "blog.gigaserver.cz": [14834], "l.kf7usv.com": [2053], "mrx.cl": [2053], "www.intermundomedia.com": [8402], "www.emailpref.acs.org": [966], "*.liftconference.com": [9496], "www.emilstahl.dk": [5310], "proposi.to": [2053], "rata.la": [2053], "eztv.it": [5103], "forum.419eater.com": [169], "fantasygames.telegraph.co.uk": [16339], "juhll.agency": [2053], "ud.ag": [2053], "aj.vg": [2053], "c5.chaucanh.net": [2053], "antizapret.prostovpn.org": [21212], "vevo.com": [17773], "marine.ac": [2053], "benc.ws": [2053], "shared.sx": [14916], "otse.err.ee": [5474], "h.alipayobjects.com": [857], "www.informatick.com": [8271], "www.ministerialtidende.dk": [10615], "www.avuedigitalservices.com": [1499], "ad.apps.fm": [19406], "goponi.es": [2053], "sinacloud.com": [15088], "pptng.it": [2053], "file.wx2.qq.com": [13514], "myaccount.edinburgh.gov.uk": [5185], "www.pythonanywhere.com": [13501], "webmail05.register.com": [13965], "cau.upf.edu": [17674], "camb.ma": [2053], "www.spring.org.uk": [15556], "ats.otto.de": [12339], "kinox.io": [20597], "eur.pe": [2053], "www.woolyss.com": [18724], "carah.st": [2053], "tuftsmedicalcenter.org": [17095], "baldean.co": [2053], "www.cryptovpn.com": [3936], "genome.ucsc.edu": [17591], "workplacegiving.co.uk": [18745], "mint.com": [10621], "orgreenoptics.com": [12308], "sd.sharethis.com": [14913], "www.viaf.org": [17779], "flantasti.co": [2053], "www.thefiringline.com": [21698], "www.isohunt.to": [8519], "www.collectiveip.com": [3486], "img07.rl0.ru": [14147], "ui2web2.apps.uillinois.edu": [17517], "smref.com": [2053], "www.smacktls.com": [14374], "membership.wizards.com": [18687], "www.proisp.no": [12492], "tmn.me": [2053], "electronicinsanity.com": [5255], "ut11.xhcdn.com": [18815], "t5n.co": [2053], "k3.chaucanh.net": [2053], "cubt.co": [2053], "nuevasync.com": [11768], "*.tradeking.com": [16909], "riigiteataja.ee": [14122], "nic.cz": [11572], "on.vdvsport.it": [2053], "weblogin.umich.edu": [17552], "n-col.co": [2053], "ape.gs": [2053], "2013.asiabsdcon.org": [1293], "disruption.birmingham.gov.uk": [19536], "www.mit-dem-rad-zur-arbeit.de": [10646], "u.sentido42.org": [2053], "www.streetlife.com": [21590], "nic.ch": [11109], "*.oregonstate.edu": [12302], "www.froscon.de": [6210], "svmn.us": [2053], "www.sjd.net": [8780], "fastnotes.statushub.io": [15692], "ecn.t7.tiles.virtualearth.net": [18046], "userscape.com": [17723], "sonymusic.com": [15395], "www.hongkongfp.com": [20358], "www.urbandictionary.com": [17697], "www.colorlines.com": [3509], "wagner.edu": [18242], "g.theki-ng.info": [2053], "clip.proel.net": [2053], "indymedia.org.uk": [8233], "heart.org": [7412], "servis.idnes.cz": [20425], "www.refog.com": [13955], "www.rubyforge.org": [14253], "s.kbkw.com": [2053], "addison.com.hk": [616], "www.drugpolicy.org": [4871], "developer.r-project.org": [13621], "coleyurl.com": [2053], "styleguide.dagbladet.no": [4183], "canvaslms.com": [2873], "pollendiary.com": [13107], "link.janole.com": [2053], "generator.sharethrough.com": [14925], "math.sfu.ca": [14893], "kidsf.it": [2053], "www.virginmedia.ie": [18029], "www.fomori.org": [6105], "www.dnssec-tools.org": [4139], "www.nppa.org": [11243], "gk4u.it": [2053], "www.publicidees.com": [13432], "mozy.com": [10857], "www.tppnocertification.org": [16107], "*.shopco.com": [14960], "mx.baja-sur.com": [2053], "konkurs.yuga.ru": [22121], "www.wto.org": [18229], "80.93.17.6": [4596], "prolific.com.tw": [13375], "o.ariel.rocks": [2053], "spintheverb.co": [2053], "l.jpdl.us": [2053], "xuanwei.meituan.com": [10405], "torybur.ch": [2053], "sinorb.is": [2053], "www.bmdw.org": [1569], "getfoxyproxy.org": [6713], "lifept.cc": [2053], "www.impulsedriven.com": [8171], "status.chatlio.com": [19688], "saga.co.uk": [14474], "vorteile.gmx.net": [6467], "aktivenforum.vcd.org": [17766], "yatzy.org": [2053], "go.billde.sk": [2053], "yahooapis.com": [18943], "simply-u.tk": [2053], "redalert.io": [2053], "klik4extra.info": [2053], "corbycam.firmstep.com": [20124], "native.sharethrough.com": [14925], "beta.fark.com": [5776], "intm.ch": [2053], "luxembourg.usembassy.gov": [21879], "gondor.io": [6952], "tttm.co": [2053], "sheffield.indymedia.org.uk": [8233], "mention.cnblogs.com": [19743], "on.taphe.re": [2053], "k2c.me": [2053], "www.gearsourcecdn.com": [6603], "bhv.io": [2053], "songstar.rocks": [2053], "www.pdadb.net": [12711], "ptat.ch": [2053], "fishwrapper.com": [5999, 6000], "www.joycasino777.co": [20552], "kinklink.me": [9059], "*.simmarket.com": [15052], "magentocommerce.com": [10018], "*.slsp.sk": [15219], "pcgzhi.com": [2053], "tackthat.com": [2053], "reviewp.ro": [2053], "se.itunes.apple.com": [1160], "www.trailofbits.com": [16930], "worldforpets.com.au": [18761], "mycard.ukash.com": [17404], "centennialbulb.org": [9672], "esn.bme.hu": [1570], "givingday.cornell.edu": [3744], "www.protvino.net": [21213], "www.jeth.tk": [3597], "ebdest.in": [2053], "linkpl.us": [2053], "support.web-hosting.com": [18341], "dioguinho.net": [2053], "illum.ie": [2053], "ghowen.me": [6753], "dariusburstcs.degica.com": [3396], "service.nemid.nu": [11334], "mndrgn.com": [2053], "vid.ema-eda.com": [2053], "illum.in": [2053], "secure.nic.cz": [11572], "tz.de": [16150], "beta.lrens.ch": [20719], "www.flexyourrights.org": [6030], "loggn.de": [9717], "*.kmart.com": [9088], "cdn.riastatic.com": [13661], "www.prospecteye.com": [13390], "flex.htwk-leipzig.de": [7736], "centrallancs.greenparty.org.uk": [7052], "7springs.com": [221], "go-ecm.com": [2053], "fantoniogargallo.unizar.es": [17643], "bdp.im": [2053], "futr.biz": [2053], "cycf.it": [2053], "www.envoydirect.com": [5413], "onetouch.alibaba.com": [850], "zer.la": [2053], "store.economist.com": [5161], "csherm.com": [2053], "wepay.com": [18320], "u-f.ru": [21830], "demo.picnichealth.com": [12874], "www.newmoon.com": [11482], "ttl.link": [2053], "*.3ds.com": [4245], "fox.co": [2053], "git.anidb.net": [1062], "urlpro.us": [2053], "mylevel3.net": [11028], "markaz.io": [2053], "cvs.pld-linux.org": [12471], "www-structures.ucsd.edu": [17216], "scoutsi.de": [2053], "www.mechse.illinois.edu": [17544], "fc-pt.com": [2053], "b.alachie.com": [2053], "bnz.co": [2053], "graphics8.nytimes.com": [11189], "nh787.cc": [2053], "widgets.awe.sm": [1500], "developers.digitalriver.com": [4566], "crowdfactory.com": [3889], "www.alarabiya.net": [19336], "www.yahoo-help.jp": [18938], "jobs.leeds.ac.uk": [17604], "arzay.us": [2053], "era.int": [5047], "www.huntingbears.nl": [7768], "baeble.me": [2053], "account.xapo.com": [18841], "app.tinyletter.com": [16754], "lufthansa.com": [9819], "www.datacoup.com": [4257], "www.litecointalk.org": [9625], "*.jamfsoftware.com": [8560], "www.aldi.dk": [338], "daneszajutri.hofer.si": [338], "wi.htwk-leipzig.de": [7736], "feralinteractive.com": [5868], "git.linuxlovers.at": [9592], "lt.4.boardgamearena.com": [2219], "psychologicalscience.org": [1331], "l.travelyst.de": [2053], "link.sbamin.com": [2053], "www.trustedsec.com": [17064], "yean.co": [2053], "hsic.tk": [2053], "fixingtao.com": [6013], "shop.evernote.com": [5556], "jaa.io": [2053], "www.frootvpn.com": [6346], "21dec.org": [2053], "miniand.com": [10610], "gz4.ru": [2053], "www.telekom.de": [4490], "skygrid.me": [2053], "www.energylinx.co.uk": [20041], "muping.meituan.com": [10405], "megmo.me": [2053], "dayi.meituan.com": [10405], "secure.creocommunico.com": [7645], "www.tescoshareandearn.com": [16402], "online.unileoben.ac.at": [17463], "forum.roblox.com": [14156], "speakerrequest.state.gov": [17345], "touch.forum.deti.mail.ru": [10040], "conakry.usembassy.gov": [21879], "r-br.it": [2053], "gensca.pe": [2053], "commando.io": [3540], "adminnationalcareersservice.direct.gov.uk": [4615], "maxisbold.com": [2053], "balbit.es": [2053], "mssqlbackup.active24.cz": [19276], "www.gourl.io": [6915], "my.lib.ncsu.edu": [11690], "ma2jic.osu.edu": [11959], "pfsoci.al": [2053], "sarw.me": [2053], "webftp.wedos.net": [18197], "news.weimarnetz.de": [22000], "lawgic.al": [2053], "irancybercrime.org": [20493], "www.sportisimo.de": [14396], "heiseshop.de": [7428], "l.nixonm.com": [2053], "app.formassembly.com": [6158], "www.eatnow.com.au": [19998], "content.sharethrough.com": [14925], "www.cimb.com": [2663], "ebalance.blick.ch": [2125], "plz.im": [2053], "livetoeat.ca": [2053], "www.engin.cf.ac.uk": [2895], "cs.joensuu.fi": [17536], "shadysi.de": [2053], "i4.c.dk": [2556], "eis.uow.edu.au": [17636], "www.metaboli.co.uk": [10479], "www.krawlly.com": [9157], "ucsd.worldcat.org": [18748], "images.f.switchadhub.com": [15954], "phgd.es": [2053], "globalactionplan.org.uk": [20253], "leics.police.uk": [9398], "myphotos4.virginmedia.com": [18028], "kiks.yandex.com": [18956], "url.5eo.co": [2053], "trc.in": [2053], "l.aimpa.com.br": [2053], "www.berkeley.edu": [17526], "www.mod.life": [20815], "s.cmap.ws": [2053], "soobest.com": [15401], "*.mandiant.com": [10431], "*.visistat.com": [18059], "redletter.link": [13910], "thinline.style": [2053], "coby.io": [2053], "mci4me.at": [10292], "e10.xhamsterpremiumpass.com": [18817], "openwiki.feide.no": [5858], "canyouseeme.org": [18083], "libcat.walsall.gov.uk": [21971], "ads.adap.tv": [593], "explore.nra.org": [20943], "ostif.org": [21038], "chalmers.se": [3047], "miranda.hemscott.com": [8468], "www.canon.com.au": [19640], "browsermob.com": [2429], "www.optimalpayments.com": [12270], "www.meetic.com": [10383], "anonine.com": [1087], "moshi.us": [2053], "jpnks.me": [2053], "catn.com": [2952], "divasand.co": [2053], "pirateproxy.site": [21217], "www.notebookitalia.it": [11720], "lists.linuxcontainers.org": [9580], "www.veritas.com": [21905], "burgr.me": [2053], "www.fullstory.com": [6369], "www.q7.com": [13506], "jprod.co": [2053], "operationfabulous.com": [12254], "louisville.edu": [17606], "moodle.uaa.alaska.edu": [17519], "www.pixelexit.com": [12954], "www.kellytarltons.co.nz": [8998], "whatsapp.com": [18532], "www.labcorpsolutions.com": [9277], "*.rigzone.com": [14121], "sliceint.co": [2053], "loanliner.com": [9694], "myresumeagent.com": [10969], "newhumanist.org.uk": [20898], "help.fig.co": [5897], "fr.canon.ch": [2868], "sdca.mp": [2053], "jillee.co": [2053], "myitworks.com": [8003], "jdebru.in": [2053], "cbiit.nci.nih.gov": [11241], "c3pb.net": [2557], "bluecoat.com": [2183], "www.blackznc.net": [2095], "jobs.politico.com": [13098], "www.osha.gov": [11869], "dnw.li": [2053], "m.yandex.ua": [18961], "jsfiddle.net": [20556], "gifti.es": [2053], "www.ams.jhu.edu": [16562], "www.pdf-tools.com": [21098], "azeri.azerbaijan.usembassy.gov": [21879], "issues.mediagoblin.org": [10318], "news.uga.edu": [17598], "www.sama32.squat.net": [21549], "a.abcnews.go.com": [276, 277], "portal-credo.ru": [21174], "wt.taobao.com": [16206], "www3.cisco.com": [3221], "www.shropshire.gov.uk": [21440], "*.mrporter.com": [9952], "app.cactuscompletecommerce.com": [2769], "image2.bilio.com": [1929], "zillow.com": [19182], "people.maths.ox.ac.uk": [17557], "avlne.ws": [2053], "nottsbusinesswatch.co.uk": [20934], "store.ufanet.ru": [21836], "images.partner.windowsphone.com": [18646], "coverstand.com": [3796], "publicaffairs.georgetown.edu": [6668], "go.walsh.im": [2053], "on.icpam.ro": [2053], "links.4i0n.com": [2053], "www.hs-karlsruhe.de": [7727], "www.fastserv.com": [5798], "s.po.st": [13056], "images.rottentomatoes.com": [14214], "jsnt.dk": [2053], "ssltor.bvg.de": [1623], "docs.jivesoftware.com": [8733], "x.yoppyi.net": [2053], "hack-c.at": [2053], "manchester.spydus.co.uk": [21546], "brclo.com": [2053], "pairlite.com": [12540], "schooltoprison.org": [14606], "core.telegram.org": [16337], "pxlws.co": [2053], "int-te.ch": [2053], "bayfiles.com": [1746], "bonding.de": [2248], "nyrange.rs": [2053], "is.gd": [20499], "atsn.ml": [2053], "static3.flattr.net": [6024], "www.wikiwand.com": [22027], "vehiclevisuals.com": [17884], "chukotskiy-ao.beeline.ru": [1801], "plantappstore.com": [12997, 12998], "cab.garstelecom.ru": [20204], "store.playosmo.com": [12328], "*.ru.nl": [13744], "techmaster.mcafee.com": [10282], "ad4.netshelter.net": [11400], "go.exhq.co": [2053], "omnitruck.chef.io": [3115], "nest.com": [11358], "cd.meituan.com": [10405], "foreninger.uio.no": [17615], "g.microsoft.com": [10543], "uploaded.net": [17681], "cldup.co": [2053], "itsanhonour.gov.au": [8542], "crdant.co": [2053], "bbel.me": [2053], "selfservice.eastlothian.gov.uk": [5114], "li.ridorock.com": [2053], "akamai.me": [2053], "lpweb.co": [2053], "info.peertransfer.com": [12730], "comcav.com": [3515], "di.gg": [2053], "api2.beeg.com": [19511], "mydesert.co": [2053], "helpforum.sky.com": [15170], "www.youtube.com.es": [19016], "sailfishos.org": [14478], "www9.handelsbanken.fi": [7317], "www.little.my": [9636], "wusk.me": [2053], "www.billing-lan.net": [19534], "*.walk.sc": [18486], "mubi.tv": [2053], "dib.me": [2053], "help.fronter.com": [20179], "www.myprojects.ncl.ac.uk": [11073], "www.hiveage.com": [7570], "cs.utah.edu": [17574], "*.cortera.com": [3763], "leelov.es": [2053], "*.hadrons.org": [7292], "m8k.me": [2053], "www-cache3.extensis.com": [5634], "employment.jjc.edu": [8587], "www.livestream.com": [9676], "nvdeveloper.nvidia.com": [11174], "it.xhamster.com": [18816], "ecr6.engineering.osu.edu": [11959], "membershiprewards.com": [10421], "bdviaj.es": [2053], "z24.si": [2053], "*.innovateuk.org": [8302], "www.v6ak.com": [17757], "sea.hivos.org": [7573], "cache.freescale.com": [6302], "lists.apple.com": [1160], "s.itpsworld.net": [2053], "burstnet.eu": [2503], "ccs.wustl.edu": [18290], "jobs.adweek.com": [711], "365hbr.net": [2053], "stratos.unizar.es": [17643], "5tat.us": [2053], "www.teachable.com": [21665], "content1.myyearbook.com": [11010], "panic.life": [2053], "events.jquery.org": [8597], "anyue.meituan.com": [10405], "rnml.co": [2053], "donal.link": [2053], "aloud.at": [2053], "malta.usembassy.gov": [21879], "www.cdrs.columbia.edu": [3512], "www.squat.net": [21549], "www.megaphone.fm": [20776], "madb.mx": [2053], "pkblog.it": [2053], "www.qt.io": [13545], "secure.monash.edu": [10728], "mequoda.com": [10443], "mcap.me": [2053], "foodsharing.de": [20143], "uf.u-f.ru": [21830], "4gwc-kbhkort.kk.dk": [8883], "bid.openx.net": [12191], "sellercentral.amazon.it": [19373], "www.thesciencegeek.org": [21716], "pxlm.co": [2053], "www.podnapisi.net": [13069], "pharmacies.usc.edu": [17564], "yo.uwant.in": [2053], "intel.com": [8359], "api.sharedcount.com": [14919], "*.bigmir.net": [1918], "www.btp.police.uk": [2440], "bodyk.ca": [2053], "on.versity.tv": [2053], "l.left.ly": [2053], "localcoverage.cms.gov": [19742], "www.cryptostocks.com": [3958], "element.yandex.com": [18956], "yingtan.meituan.com": [10405], "*.opt.fimserve.com": [5932], "developer.musixmatch.com": [10911], "mycoresite.coresite.com": [3734], "hillsi.de": [2053], "www.sproutinc.com": [15570], "registration.hinxton.wellcome.ac.uk": [22001], "url.matejka.cc": [2053], "www.regiobankadviseurs.nl": [13963], "glasses.com": [6824], "vokal.kmd.dk": [20612], "pkg.tox.chat": [16891], "store.norton.com": [11703], "sqe.li": [2053], "cas.pdcnet.org": [12837], "lagen.nu": [9285], "zhaoxian.meituan.com": [10405], "hraunfoss.fcc.gov": [5826], "bwj.fyi": [2053], "unistra.fr": [17565], "downloads.ubnt.com": [17363], "fciencias.udistrital.edu.co": [17394], "s.glifeweb.com": [2053], "zenaui.gq": [2053], "rabota.sakh.com": [21360], "www.blackarrowsoftware.com": [19550], "zqi.me": [2053], "spangli.sh": [2053], "smg.axosoft.com": [1517], "mdshop.us": [2053], "www.sicurezzarete.com": [21444], "gwl-az.org": [2053], "hamr.it": [2053], "www.class-central.com": [3275], "winscp.net": [18629], "www.eso.org": [5531], "myip.ms": [10995], "jstr.uk": [2053], "www.stockport.nhs.uk": [11102], "fhserve.com": [5882], "dragonair.com": [4836], "upcs.co": [2053], "passwordbox.com": [12644], "oascentral.globalpost.com": [90], "swdp-consult.objective.co.uk": [20979], "eventbookingonline.com": [5545], "hnz.cm": [2053], "mc.bk55.ru": [19548], "hotmail.co.jp": [7702], "maist.jp": [20738], "www.horstaandemaas.nl": [11324], "medt.ec": [2053], "zenmate.com.ph": [19133], "jianshi.meituan.com": [10405], "shnw.co": [2053], "novaonline.nvcc.edu": [11787], "api.choicestream.com": [3157], "www.bitex.la": [2043], "2.911cad.com": [2053], "s.ka300.de": [2053], "*.online.nl": [12070], "podbean.com": [13064], "www.myyearbook.com": [11010], "images.modelviewculture.com": [10705], "awstrust.com": [414], "ahmer.tk": [2053], "mail.franziskawellner.de": [6223], "www.ind.homeoffice.gov.uk": [20355], "prosystemfx.com": [13391], "www.enovance.com": [19984], "lwdu.info": [2053], "www.magic.fr": [10021], "images.brightidea.com": [2384], "comm-t.ec": [2053], "www.realone.com": [13855], "m.tnaflix.com": [16791], "ws.engr.illinois.edu": [17544], "essentials.guardianoffers.co.uk": [7131], "www.ncdc.noaa.gov": [11272], "havelockinvestments.com": [7376], "hints.macworld.com": [9989], "lwrs.inl.gov": [20462], "www.kornerstoneadmin.com": [9139], "adastratst.its.sfu.ca": [14893], "www.nileshgr.com": [11600], "jfrp.co": [2053], "guide-images.makeprojects.org": [10070], "static.xrel.to": [18892], "www.usrjoy.com": [17740], "webauth.ox.ac.uk": [17557], "m.kellytarltons.co.nz": [8998], "www.gi.de": [6681], "newfamilysocial.org.uk": [20897], "luquan.meituan.com": [10405], "jobs.migros.ch": [10566], "ro.3.boardgamearena.com": [2219], "pr.books2-1.com": [2053], "bmb.htwk-leipzig.de": [7736], "chfstps.co": [2053], "jobfinder.dk": [8745], "hackage.haskell.org": [7361], "firemail.de": [5978], "jwc.news": [2053], "adstagram.net": [2053], "ebpp.unionpay.com": [17478], "shop.mts.ru": [20846], "wcms-prod-web-4.ucsc.edu": [17591], "sdfsbos.com": [2053], "automotive.dianomi.com": [4525], "on.hioscar.com": [2053], "img.gmo.jp": [6462], "www.encase.com": [7134], "serveriai.lt": [14860], "*.stocktwits.com": [15734], "spot.cx": [2053], "library.wustl.edu": [18290], "french.alibaba.com": [850], "www.fnacspectacles.com": [6086], "jnch.pl": [2053], "www.cve.mitre.org": [10649], "*.jugger.ru": [8817], "bank.vutbr.cz": [17814], "www.remotelyanywhere.com": [13997], "s.posteriors.us": [2053], "dspace.mit.edu": [9916], "epls.gov": [5427], "ontlib.ca": [2053], "tsmi.biz": [2053], "www.rlrose.co.uk": [13669], "wiki.filezilla-project.org": [5911], "moneyadviceservice.org.uk": [10736], "static.youcaring.com": [19011], "cliph.me": [2053], "link.bozek.it": [2053], "yaca.yandex.kz": [18957], "www.digitalfreedom.io": [4589], "elec.ru": [20021], "*.asnbank.nl": [392], "schoolpro.axosoft.com": [1517], "www.comsigntrust.com": [3519], "www12.qth.com": [13520], "homeweb.mcafee.com": [10282], "isecpartners.com": [7970], "chew.li": [2053], "mianzhu.meituan.com": [10405], "www.newint.org": [11489], "germantv.net": [6677], "mensw.com": [2053], "www.roffey.org": [14178], "www.worldforpets.com.au": [18761], "wow.js.org": [20555], "authorlaura.co": [2053], "www.dein.dk": [4396], "teag.ms": [2053], "consult.enfield.gov.uk": [5359], "hotlineplus.mutualofamerica.com": [10921], "www.samsungindiaestore.com": [14506], "support.allizom.org": [896], "help.issuu.com": [8526], "url.nova13.com": [2053], "avis.com": [1491], "www.detectify.com": [4482], "*.pbwiki.com": [12419], "mtthw.mn": [2053], "system.opendns.com": [12130], "wyn.me": [2053], "markeedragon.com": [10171], "session.snelis.com": [15279], "diffsnow.com": [2053], "www.journalxtra.com": [8793], "placehold.it": [12973], "miltonkeynes.objective.co.uk": [20979], "www.we-energies.com": [18313], "borrowsmart.afford.com": [743], "ovidsp.tx.ovid.com": [12380], "aolcdn.com": [362], "*.boots.no": [2269], "*.kicknews.net": [9030], "inboxapp.com": [8188], "mofpi.hdfcbank.com": [7389], "*.ciuvo.com": [3258], "on.agarcia.tv": [2053], "www.toolbarbrowser.com": [16825], "www.certificatemonitor.org": [3029], "www.handmadekultur.de": [7320], "hillingdon.gov.uk": [7550], "forum.root.cz": [14199], "gaytx.info": [2053], "sbgs.co": [2053], "www.myfitnesspal.com": [10947], "c9.chaucanh.net": [2053], "s.tapirex.com": [12555], "rc.vuejs.org": [18165], "ihg.com": [8380], "websupport.cz": [18389], "www.romab.se": [14195], "dax-files.comscore.com": [3517], "edl.mn": [2053], "readmore.at": [2053], "tugbo.at": [2053], "ozie.jp": [2053], "www.usi.vutbr.cz": [17814], "cint.com": [3208], "comdirect.de": [19757], "latticechallenge.org": [20640], "www.petekeen.net": [12800], "today4u.us.to": [2053], "unix.vc": [2053], "h-po.se": [2053], "www.autoadmanager.com": [1457], "phtshp.us": [2053], "kbwrit.es": [2053], "atomicobject.com": [1363], "pgm.golf": [2053], "yixianguan.jd.com": [8571], "photo.tinhte.vn": [16745], "secure.governmentjobs.com": [20272], "fs3.formsite.com": [20148], "secure.shared.live.com": [9644], "my.siteimprove.com": [15127], "*.propublica.org": [13339], "owa.west-norfolk.gov.uk": [22004], "guide.duo.com": [4900], "fsd84.bis.bnl.gov": [19564], "fi.getsatisfaction.com": [6738], "cacert.net": [2578], "songyuan.meituan.com": [10405], "drider.info": [2053], "uowdubai.ac.ae": [17636], "bi.adview.pl": [705], "cookiepedia.co.uk": [19785], "opinion.peytz.dk": [12818], "pirr.tk": [2053], "i.digby.us": [2053], "www.fruct.org": [5708], "quinti.no": [2053], "cslipublications.stanford.edu": [15635], "rsync.videolan.org": [17981], "recruitment.pyeongchang2018.com": [21229], "doc.see.leeds.ac.uk": [17604], "bw-ce.com": [2053], "funy.club": [2053], "assets.libsyn.com": [9482], "eresearch.umich.edu": [17552], "easyprint.idoxgroup.com": [20426], "go.ras.space": [2053], "ay.scz.li": [2053], "secure2.sextoyclub.com": [21419], "www.newschallenge.org": [11526], "clix.gq": [2053], "help.local.ch": [9697], "libs.a2zinc.net": [258], "btsco.de": [2053], "www.pinall.ru": [21123], "bbry.do": [2053], "jpcc.me": [2053], "ftrz.co": [2053], "mnow.co.uk": [2053], "go.ctl.net": [2053], "www.symplicity.com": [15975], "*.rhul.ac.uk": [13656], "agenda.infn.it": [7913], "www.theskoop.ca": [15163], "jmack.us": [2053], "services2.capitalone.com": [2878], "findmymobile.samsung.com": [14501], "wordpress2.trustthevote.org": [17059], "account.liginc.co.jp": [20686], "www.wimdu.co.uk": [18622], "blog.geocaching.com": [6663], "blog.jolexa.net": [8770], "dschungelca.mp": [2053], "www.travelmoneyonline.firstdirect.com": [20127], "docs.buttercoin.com": [2521], "ondeck.com": [20994], "www.adperium.com": [664], "gpc-csem.info": [2053], "go.mclion.eu": [2053], "bzq.io": [2053], "freegeoip.net": [6295], "staffdirectory.nigms.nih.gov": [11241], "petva.lu": [2053], "funstockdigital.co.uk": [6385], "literatureandlatte.com": [9627], "u.idol.io": [2053], "ftlb.co": [2053], "jasblo.gs": [2053], "panel.stopthehacker.com": [15746], "*.blogspot.com.br": [2166], "legolanddiscoverycenter.cn": [9391], "www.usrportage.de": [21884], "cinemacon.com": [3205], "gold.monex.co.jp": [10733], "*.chatme.im": [3088], "www.rotaryview.com": [14208], "portal.silverpop.com": [15047], "suncmty.news": [2053], "dmnt.im": [2053], "discussions.tenable.com": [16370], "www.demo.bitmask.net": [2056], "s.chool.ch": [2053], "p4.qhimg.com": [13531], "jp.norton.com": [11703], "www.readrobreid.com": [13842], "give.everydayhero.com": [5560], "grumpstr.info": [2053], "lists.crux.nu": [3907], "webassetsj.scea.com": [14327], "campusjob.com": [2843], "ewn.news": [2053], "piware.de": [10198], "glamorousuk.com": [6820], "muscle.am": [2053], "tog.ie": [16099], "dtct.it": [2053], "www.hornbach.at": [7640], "partnercomputing.illinois.edu": [17544], "venn.digital": [2053], "undersea.link": [2053], "trbt.me": [2053], "diaspora.pingupod.de": [12904], "www.netpivotal.eu": [11396], "coveredca.org": [3800], "www.extremerestraints.com": [20083], "11footballclub.com": [29], "secure.touchnet.com": [16883], "www.durchmesser.ch": [19970], "blogs.yandex.ua": [18961], "berserk.me": [2053], "www.dentistry.leeds.ac.uk": [17604], "caitlinr.me": [2053], "wpy.io": [2053], "styles.domainwho.is": [4751], "go.labs.coop": [2053], "flss.co": [2053], "crissy.cc": [2053], "www.katalog.yandex.by": [18953], "www.consumidor.ftc.gov": [5837], "fifengine.net": [5686], "usa.kaspersky.com": [8958], "*.powerspeaking.com": [13222], "lists.egenix.com": [19980], "a.ptm.ro": [2053], "www.sbb.ch": [15946], "static2.funtip.de": [20189], "asset-6.soupcdn.com": [15416], "www.geeklan.co.uk": [6614], "sinonptik-cdn1.un.net.ua": [15099], "opnotes.stanford.edu": [15635], "safecount.net": [14469], "sendfiles.educ.cam.ac.uk": [17529], "ntuc.co": [2053], "sc-css-1.omniture.com": [12002], "pma.im": [2053], "thepirateproxy.co": [21709], "toyou.co.uk": [21770], "www.podio.com": [13068], "t-online.de.intellitxt.com": [16028], "medya.cihan.com.tr": [19713], "directo.uniovi.es": [17479], "go.sentinelone.com": [14832], "tcpf.co": [2053], "licensebuttons.net": [9485], "c.compete.com": [3583], "www.buzzbytes.net": [2534], "rumi.loak.org": [2053], "support.sucuri.net": [15829], "4v4.me": [2053], "wsio-sandbox.buttercoin.com": [2521], "decal.ly": [2053], "mosa.me": [2053], "roku.com": [14185], "solutions.symantec.com": [15969], "www.kkh.de": [8885], "services.eoportal.org": [5416], "wprp.zemanta.com": [19128], "www.unsearcher.org": [17655], "lkdv.it": [2053], "help-nl-eu.nike.com": [11595], "umhb.worldcat.org": [18748], "docs.eiffel.com": [5224], "showcase.ca": [14986], "ivcard.co": [2053], "payroll-remote.ymcastlouis.org": [18922], "eindhoven.nl": [5227], "www.usuhs.edu": [17330], "pcrdist.com": [21096], "friedhoff.org": [6330], "consumers.unian.net": [21851], "openit.de": [12143], "go.betta.io": [2053], "www4.uwm.edu": [17580], "rlmo.me": [2053], "www.alumni.cam.ac.uk": [17529], "tto.link": [2053], "i.h-t.co": [7171], "img.milanuncios.com": [10576], "www.ysu.edu": [19049], "www.ageofmine.com": [760], "pixel.adblade.com": [600], "biohr.in": [2053], "vrd.cc": [2053], "emagazine.rakuten.co.jp": [13768], "www.controllermax.com": [3689, 3690], "www.publeaks.nl": [13430], "my.hivelocity.net": [7571], "www.bitmessage.org": [2059], "aamc.org": [268], "neterix.net": [2053], "log.pinterest.com": [12914], "shop.visiblebody.com": [18064], "kiks.yandex.by": [18953], "www.vonage.ca": [18133], "jaspan.com": [8672], "gquads.georgetown.edu": [6668], "www.popehat.com": [13143], "soma.co": [2053], "www.affiliate-b.com": [739], "www.midphase.com": [10558], "help.grooveshark.com": [14486], "click.alfabank.ru": [842], "www.inspirehep.net": [8327], "*.routledgeweb.com": [8267], "www.oxfordshire.gov.uk": [21056], "emergency.cites.illinois.edu": [17544], "krankenkassen.search.ch": [14684], "link.stefanm.me": [2053], "video.baidu.com": [19476], "www.login.schule.sachsen.de": [14454], "www.alau.kz": [19338], "tech.coursera.org": [3788], "x.andro.plus": [2053], "dealspwn.com": [7693], "go.liammoat.com": [2053], "linuxcounter.net": [9552], "go.sibe.pw": [2053], "*.onion.direct": [16837], "jmtc.co": [2053], "similarweb.com": [15056], "*.bundespolizei.de": [2488], "the.punkae.com": [2053], "www.hofer.si": [338], "hlzmn.tk": [2053], "ovh.biz": [11884], "mhev.org": [2053], "www.shiftboard.com": [14949], "www.vhffs.org": [21920], "ccrma.stanford.edu": [15635], "pbg.li": [2053], "go.korb.cz": [2053], "perfectmoney.is": [12774], "vlmsetv.tk": [2053], "www.v2c.lrz.de": [9396], "www.neustarlocaleze.biz": [11475], "captcha.aol.com": [361], "go.edig.co": [2053], "hub.docker.com": [4704], "epixmedia.co.uk": [5426], "d7.hitravel.xyz": [2053], "signin.dell.com": [4413], "legal.dwolla.com": [4913], "www.itella.fi": [20509], "s.xnuance.fr": [2053], "netbank.de": [11408], "usc.es": [17711], "narr.ly": [2053], "img1.sencha.com": [14820], "www.tpd.sk": [16896], "customers.darktrace.com": [19852], "jessfraz.com": [8704], "bing.com": [1949], "mycliplister.com": [11015], "copyrightcompliance.gettyimages.com": [6741], "*.photoshelter.com": [12854], "neweb.ucsd.edu": [17216], "nutritiondata.self.com": [11783], "orsvp.me": [2053], "ecaf.peterborough.gov.uk": [12806], "stakeholders.ofcom.org.uk": [11932], "runabove.com": [14271], "services.oxfordshire.gov.uk": [21056], "tins.it": [2053], "copy.me": [19790], "shopfeatu.red": [2053], "sourceright.us": [2053], "www.bruno.postle.net": [2433], "my-gps.info": [2053], "www.puma.com": [13455], "mexico.isidewith.com": [20414], "www.lastminute.com": [9318], "www.metooo.io": [10495], "www.shadertoy.com": [14896], "enfuseconf.com": [7134], "mjba.us": [2053], "maddy.news": [2053], "noordwijkerhout.nl": [11324], "clinkle.com": [3328], "xiaozu.fanli.com": [5769], "www.isyvmon.com": [8531], "sagata.biz": [2053], "secure.lenos.com": [9408], "anidex.moe": [1063], "ar.cloudflare.com": [3344], "s.devtty.de": [2053], "www.urbanartcloud.com": [17700], "buzzsprout.com": [19621], "framindmap.org": [6214], "wvph.co": [2053], "erj.life": [2053], "cdn.comparitech.com": [3578], "analytics.turn.com": [17115], "ecitizen.walthamforest.gov.uk": [18262], "midnight-commander.org": [10557], "nangong.meituan.com": [10405], "campbellk.it": [2053], "www.siemens.co.*": [15015], "cdn9.sure-assist.com": [15899], "brewtourism.com.ua": [2363], "autotrader.com": [1456], "amazn.ml": [2053], "www.cathaypacific-campaign.com": [2963], "op.searchteria.co.jp": [21395], "code.downthemall.net": [4818], "dharme.sh": [2053], "maps.salford.gov.uk": [21362], "url.onex.de": [2053], "ipse.in": [2053], "assistance.ouvaton.org": [12360], "with.dj": [2053], "fhrn.ws": [2053], "aln.tw": [2053], "i.glui.me": [2053], "www.mmedia.me": [10456], "brass.clothing": [2053], "www.linuxgraphic.org": [20697], "gorod.yandex.kz": [18957], "hardwarebug.org": [7337], "ndif.in": [2053], "ox-d.pubgears.com": [13421], "preview.is": [2053], "open.hpi.de": [7225], "cduniverse.com": [2625], "my.qrvoice.net": [2053], "www.guaranibitcoin.com": [7125], "rdme.com": [2053], "cjn.li": [2053], "ua.rutracker.org": [21346], "www.cbp.net.br": [2582], "blsmd.uk": [2053], "gitorious.org": [6804], "eecs.mit.edu": [9916], "pinkm.tv": [2053], "ivf.tw": [2053], "audiograb.be": [2053], "cewe.pw": [2053], "maps.fife.gov.uk": [20106], "docs.nubits.com": [11759], "s1m.xyz": [2053], "directory.ua.edu": [17201], "dcrk.me": [2053], "pgp.webtru.st": [18469], "img08.taobaocdn.com": [16207], "ox.htw-berlin.de": [7246], "dbhas.info": [2053], "woko.agency": [2053], "abmahnbeantworter.ccc.de": [2596], "webhostone.de": [18418], "*.infotech-team.com": [18395], "polarnopyret.se": [13086], "lanyrd.com": [9306], "ioscoa.ch": [2053], "ecsv2.roblox.com": [14156], "www.iovation.com": [8490], "palmbeach.aclufl.org": [286], "artwork-cdn.7static.com": [226], "www.sergiopizza.ru": [21413], "ot.ca-mpr.jp": [2568], "www.gemius.com": [6637], "dbkiltz.com": [2053], "www.idefix.com": [8081], "u.sipdah.com": [2053], "en.gf134.com.es": [2053], "sandvine.com": [14523], "go.d-mind.de": [2053], "mqlc.tk": [2053], "is.puma.com": [13455], "bsi-fuer-buerger.de": [5828], "talayd.in": [2053], "piwik.cbendt.de": [2589], "syn.5min.com": [208], "www.agilewebsolutions.com": [765], "www.dotmailer.co.uk": [4789], "clp.ly": [3994], "*.strategicmanagement.net": [15765], "van.gapph.nl": [2053], "portaltest.equinix.com": [5438], "ltz.co": [2053], "mochajs.org": [10695], "filterbypass.me": [5929], "issues.adblockplus.org": [601], "tkc.church": [2053], "blog.wormly.com": [22053], "dev.heg.com": [7646], "raje.my": [2053], "www.airtime.pro": [794], "s.mixerbox.com": [2053], "*.dpreview.com": [4580], "forums.juniper.net": [8834], "cinfu.com": [3207], "hosting.unseen.is": [17656], "c.prall.me": [2053], "lplo.co": [2053], "listboxservices.web.cern.ch": [2632], "jgs.aw": [2053], "temp-mail.org": [16366], "24ways.org": [93], "btcs.com": [1603], "monitor.laproxsites.com": [9307], "www.bitvps.com": [2011], "ww251.smartadserver.com": [15228], "securem.ar.ikea.com": [8108], "www.socialshows.com": [15309], "moodle.uv.es": [17750], "www.jd.com": [8570], "www.blackhat.com": [2089], "crcpress.com": [8267], "soiltech.co": [2053], "bitcoin.at": [2012], "www.military.ncpw.gov": [11267], "gowlm.com": [2053], "sandstorm.io": [14522], "payments.leeds.gov.uk": [20653], "sfn.li": [2053], "*.bounce.io": [2297], "login.thesun.co.uk": [21719], "www.u-bordeaux.fr": [17195], "names.co.uk": [11214], "istockphoto.com": [20505], "mailinator.com": [10053], "heft.ivw.eu": [8015], "telework.jpl.nasa.gov": [11058], "piratebit.tech": [21217], "pbs-erhverv.dk": [12706], "www.insightexpressai.com": [8322], "www.gritdigital.co.uk": [7085], "rs.ln.com.ar": [2053], "oneserver.cz": [11844], "cdn.boardgamearena.net": [2219], "uua.org": [17490], "tranquil.earth": [2053], "starts.topspb.tv": [21758], "static.smi2.net": [15251], "on.j3h14h.com": [2053], "bbs.jide.com": [8585], "gacs.food.gov.uk": [20142], "*.blogspot.pe": [2166], "*.libregamewiki.org": [20680], "resh.al": [2053], "upload.youcanbook.me": [19010], "ireed.me": [2053], "beautypedia.re": [2053], "otsny.co": [2053], "keloni.ml": [2053], "*.blogspot.pt": [2166], "yumm.ly": [2053], "wild.tips": [2053], "sciety.co": [2053], "lo.la.welt.de": [18492], "www.herefordshire.gov.uk": [7466], "codepen.io": [3410], "cwmend.es": [2053], "www.klubitus.org": [9087], "globaltradeday.org": [6856], "bugs.pwmt.org": [13491], "www.codyhouse.co": [19750], "www.birmingham.gov.uk": [19536], "nda.amd.com": [962], "www.blogs.com": [14557], "yelp.pl": [18979], "fashionshop.telegraph.co.uk": [16339], "tastselv.skat.dk": [15144], "addonlist.wesnoth.org": [18500], "nzdrug.org": [2053], "arabic.alibaba.com": [850], "www.newsela.com": [20901], "waytools.com": [18307], "cobalt.io": [3400], "e3d.online": [2053], "primalblueprint.com": [13285], "jish.ca": [2053], "randomhouse.com": [13778], "chat.zoho.com": [19202], "wd-edge.sharethis.com": [14913], "analytics.cooldestinations.net": [3708], "snort.org": [15288], "wsg4.link": [2053], "www.peacefire.org": [12716], "at.sksn.co": [2053], "alacarte.city": [2053], "slp1.somerset.gov.uk": [15376], "vespr.in": [2053], "eleave.osu.edu": [11959], "hive.hostanalytics.com": [7659], "payment.outspark.com": [12359], "go.cisvcr.org": [2053], "partner.dhl.de": [4108], "hyperisland.com": [20404], "jbled.so": [2053], "results.pm": [2053], "sk.or.at": [2053], "www.catalog.library.georgetown.edu": [6668], "o5.hitravel.xyz": [2053], "open-images.us": [2053], "cloudfoundry.org": [3358], "msfb.us": [2053], "signon.org": [10818], "argn.biz": [2053], "jc.4m3.org": [2053], "www.binarydefense.com": [1945], "student.andover.edu": [12835], "un4.me": [2053], "grnrm.org": [2053], "www.euroforum.de": [5517], "wtrs.tk": [2053], "emeraldinsight.com": [5307], "test.mcg.me": [2053], "android-port.de": [1044], "s.minami.me": [2053], "trip.m.taobao.com": [16206], "pine64.com": [12892], "livef.it": [2053], "explore.georgetown.edu": [6668], "js.welt.de": [18492], "pivotpt.co": [2053], "clkon.us": [2053], "cca.kaspersky.com": [8958], "www.artsy.net": [1270], "go.riabiz.com": [2053], "enterpriseportal.accuweather.com": [503], "linen.solutions": [2053], "apps.facebook.com": [5733], "labspace.open.ac.uk": [12184], "tv.nrk.no": [11744], "www.paranoidsecurity.nl": [12600], "wiki.nikhef.nl": [11596], "app4.admin.cam.ac.uk": [17529], "s.svtrd.com": [15930], "www.arenavc.com": [1218], "zhuanghe.meituan.com": [10405], "register.fca.org.uk": [5670], "mrstitch.es": [2053], "www.nab.com.au": [11054], "www.sccemsagency.org": [14579], "taverna.knowledgeblog.org": [9100], "www.lpac.co.uk": [9248], "www.eset.de": [5054], "h-t.co": [7171], "www.dns-oarc.net": [4133], "subs.recruiter.co.uk": [21278], "*.dfn.de": [4495], "diagnostics.sky.com": [15170], "www.prevention.cancer.gov": [2864], "*.heacademy.ac.uk": [7546], "tiresnwheels.ca": [16768], "yjhlq.meituan.com": [10405], "www.financial-net.com": [20118], "partner.wienernetze.at": [18582], "avast.com": [1484], "clk.atdmt.com": [10540], "dosomethingreal.govspace.gov.au": [6994], "b.cubic7.co.uk": [2053], "www.irs.gov": [7964], "ripmixmake.org": [5007], "www.syndetics.com": [15987], "www.jdpay.com": [8576], "translations.documentfoundation.org": [16487], "vct.im": [2053], "static.sl.lumosity.com": [9832], "icberl.in": [2053], "wiki.refeds.org": [13646], "social.msdn.microsoft.com": [10543], "www.whappodo.com": [18524], "portal.scs.georgetown.edu": [6668], "www.nccgroup.trust": [11069], "turkey.usembassy.gov": [21879], "moroccanbazaar.co.uk": [10785], "wuhk.me": [2053], "thefappening.sexy": [16540], "www.photographytalk.com": [12858], "radiokatalipsi.espiv.net": [20058], "sv2.biz": [15923], "nexgenfunds.ca": [2053], "admin.sans.org": [14310], "*.telemetryverification.net": [16348], "*.compliancesigns.com": [3589], "dybk.tv": [2053], "nsf.gov": [11249], "*.robohash.org": [14158], "global.nytimes.com": [11189], "iest2.ie.cuhk.edu.hk": [2747], "ay8.so": [2053], "www.praetorian.com": [13237], "apply.houseoffraser.co.uk": [7709], "hrep.nhmrc.gov.au": [7750], "brndg.co": [2053], "vng.me": [2053], "sbshare.me": [2053], "psa.io": [2053], "www.digitalcreations.no": [4573], "*.1c-bitrix.ru": [66], "woo.hockey": [2053], "weil.ws": [2053], "*.store.thesims3.com": [5253], "webthumbnail.org": [18459], "*.webroot.com": [18436], "alltop.com": [901], "davesrfs.co": [2053], "sickpilgr.im": [2053], "www.iubenda.com": [8544], "www.statebuy.state.gov": [17345], "prxbx.com": [13412], "zonats.co": [2053], "titup.co": [2053], "dashboard.demandbase.com": [4420], "cf.scdn.co": [14326], "www.belspo.be": [1823], "icm.intan.net": [8350], "www.facebook.dk": [5736], "www.reactjsnews.com": [13836], "cf4.100r.org": [12], "ajade.link": [2053], "a.oagi.com": [2053], "justintaylor.co": [2053], "*.byteark.com": [2545], "vs.symantec.com": [15969], "shib.ncsu.edu": [11690], "www.alertlogic.com": [830], "jagrs.com": [2053], "openpgpjs.org": [12162], "chi.taobao.com": [16206], "mrsjuneyap.com": [2053], "netdev01.org": [11412], "www.phpmagazin.de": [12455], "widgets.lotame.com": [9776], "x.lamo.org": [2053], "wiki.uhulinux.hu": [21837], "chtah.com": [3113], "sny.ms": [2053], "www.elft.nhs.uk": [11102], "chevereto.com": [3128], "chrsg.com": [2053], "bonapp.it": [2053], "armsglobe.chromeexperiments.com": [3177], "go.wsc.edu": [2053], "wwwstatic.spiceworks.com": [15517], "qual.m-connect.ch": [10566], "static-1.gumroad.com": [7148], "ycombinator.com": [7273], "l.merid.org": [2053], "www.ryot.org": [13718], "go.nyvaria.net": [2053], "gdc4.me": [2053], "democracy.chorley.gov.uk": [19709], "link.aveyard.eu": [2053], "nat.ms": [11230], "ritasker.me": [2053], "support.domaintools.com": [4749], "srbhub.be": [2053], "shared.5min.com": [208], "cdn.cakecentral.com": [2781], "sport.kazanfirst.ru": [20580], "crossroads.ias.edu": [7815], "worldri.de": [2053], "garyjohnson2012.com": [6581], "enterprise.com": [5393], "d3.ru": [4072], "www.uguu.se": [17400], "directory.tuakiri.ac.nz": [17087], "eliomotors.com": [5268], "www.btwifi.co.uk": [1620], "community.homeaway.com": [20352], "mail.internet2.edu": [8427], "www.forum.avira.com": [1489], "fhc.bz": [2053], "join.fuckyoucash.com": [6358], "s.hiraku.tw": [2053], "tlsfun.de": [16785], "whatbrowser.org": [18525], "boles.co": [2053], "hied.be": [2053], "izquierda-unida.es": [8554], "fbim.nl": [2053], "pkrn.ws": [2053], "apps8.cardiff.gov.uk": [19644], "getshine.com": [6725], "aerosollab.osu.edu": [11959], "cancer2.cse.ucsc.edu": [17591], "turb.la": [2053], "www.galerievirtuelle.bve.ulaval.ca": [17515], "www.freedom.press": [6286], "media-cdn.tripadvisor.com": [17017], "video.ted.com": [16060], "redaktorext.polskieradio.pl": [13111], "forgefields.com": [6154], "demo-anonymous.piwik.org": [12950], "plugrush.com": [13046], "www.smartbrief.com": [15232], "hx.meituan.com": [10405], "www.joykazino.com": [20552], "iceheberg.fr": [8057], "loosh.in": [2053], "therug.co": [2053], "li.kmchr.de": [2053], "a.pitria.com": [2053], "p.trck.name": [2053], "ifacility.news": [2053], "dika.io": [2053], "clinic.dj": [2053], "hex.getdigital.de": [6731], "www.itsdanbull.com": [4207], "sjweav.co": [2053], "webtranslateit.com": [18464], "register4less.com": [13966], "hg.meituan.com": [10405], "engine.lingospot.com": [9533], "blog.names.co.uk": [11214], "funster.tv": [2053], "gallery.hackerspace.pl": [7280], "www.fibank.bg": [5884], "mydrive.ch": [11018], "s1.nyt.com": [11186], "support.crazyegg.com": [3835], "healthlibrary.stanford.edu": [15634], "rlstl.com": [2053], "labd.in": [2053], "www.quicktranslate.com": [13593], "etrtbs5.smartstream.tv": [15247], "thumbs.sbstatic.com": [15042], "bsn.console.aliyun.com": [861], "ufies.org": [17228], "thumb.tk": [2053], "onename.com": [12036], "outnow.ch": [21047], "oplpro.com": [2053], "knowledgebase.ticketsource.co.uk": [21737], "*.viamichelin.com": [17951], "smusd.me": [2053], "uni.cf": [2053], "attn.link": [2053], "forums.netapp.com": [11374], "api.basespace.illumina.com": [8117], "me.huobi.com": [7769], "www.hellobond.com": [7438], "www.l.de": [9211], "hehstdy.org": [2053], "franklinveaux.com": [6221], "member.oregonlive.com": [12303], "zollie.co": [2053], "uni.cr": [2053], "avt.inl.gov": [20462], "ir.nico.mx": [2053], "hersh.co": [2053], "phel.me": [2053], "altai.rt.ru": [13703], "mullvad.net": [10882], "www.comquas.com": [19769], "www.registrar.osu.edu": [11959], "opensrs.com": [12166], "daixiao.1688.com": [44], "escueladoctorado.unizar.es": [17643], "apsaf.co": [2053], "white.ec": [2053], "piratebay.unlockproject.bid": [21771], "neca.ps": [2053], "nts.buzz": [2053], "azair.me": [2053], "www.picmet.org": [12458], "nm.ufm.edu": [2053], "link.buxx.nl": [2053], "swiss.ky": [2053], "sso.forgerock.com": [20145], "pci.trustwave.com": [17074], "psswrdbx.com": [12644], "answers.unrealengine.com": [17652], "www.wtop.com": [18779], "secure.merlinentertainmentsgroup.com": [10460], "www.rackspace.co.uk": [13733], "www.idfpr.com": [8114], "atbank.nl": [398], "*.cooliris.com": [3710], "radio6.nu": [2053], "hoover.org": [7634], "wj32.org": [18690], "jobs.oxfam.org.uk": [12393], "www.bolsaviviendas.imp.ulpgc.es": [17411], "my.tmobile.com": [16089], "unpreserve.me": [2053], "forums.freebsd.org": [6237], "warren.ms": [2053], "eseoe.se": [2053], "1.8op.biz": [2053], "www.gumtree.com": [20296], "loctudy.fr": [9708], "storage.filemobile.com": [5915], "haproxy.com": [7175], "www.myinterfase.com": [11025], "*.fwmapps.co.uk": [5787], "ttl.careers": [2053], "www.cirtexhosting.com": [3218], "vmag.fashion": [2053], "mobilflex.tdc.no": [16052], "wgtl.es": [2053], "teluguvids.me": [2053], "caissesmaladie.search.ch": [14684], "itswn.us": [2053], "info.visiblebody.com": [18064], "lt.3.boardgamearena.com": [2219], "*.utoronto.ca": [17630], "hatchd.li": [2053], "s.nak.co": [2053], "l.joeteach.us": [2053], "www.actis.ru": [19272], "sktj.ml": [2053], "link.rtbf.be": [2053], "tja.re": [2053], "bpsshop.org.uk": [1580], "www.globalactionplan.org.uk": [20253], "inbd.me": [2053], "social-engineer.com": [15304], "cway.to": [2053], "twi5.in": [2053], "hws.dj": [2053], "www.physicsforums.com": [12867], "authoring.lsbu.ac.uk": [9252], "o.jd.com": [8571], "mea.elsevierhealth.com": [5289], "rlyon.co": [2053], "www.omron.com": [12003], "www.gcdn.org": [6423], "sec-virtual.usc.es": [17711], "geccodejoakecod.444.hu": [172], "www.globalpromote.com": [6853], "attmd.eu": [2053], "rhyoga.uk": [2053], "upc-cit.com": [2053], "forums.pragprog.com": [13238], "go.jon.am": [2053], "www.stormpath.com": [15756], "croscill.com": [3882], "*.expomobilehomes.com": [5740], "findnsave.oregonlive.com": [12303], "assets2.github.com": [6801], "freixe.net": [2053], "*.nicta.com.au": [11112], "tilt.mk": [2053], "media.headphone.com": [7391], "pacw.org": [12409], "media.intellipoker.bg": [20472], "tonmo.com": [21756], "www.depkatalog.no": [4453], "s121.cnzz.com": [3391], "u8.qiyipic.com": [20413], "circulationportal.sacbee.com": [14455], "albr.co": [2053], "heg.org": [7646], "secure.cmax.americanexpress.com": [972], "dna1.mookie1.com": [10764], "es.amnesty.org": [994], "kurort.yuga.ru": [22121], "multicore-devcon.com": [10888], "npp.org.hk": [20941], "a.helen.jor.br": [2053], "lilliputti.com": [9514], "godscloud.zdf.de": [22127], "eu16.nl": [2053], "100r.be": [2053], "email.163.com": [42], "dvblg.com": [2053], "bdge.me": [2053], "genome-cancer.cse.ucsc.edu": [17591], "nsd.rdc.noaa.gov": [11272], "www.drivethrucomics.com": [12029], "www.noisey.com": [11654], "licenses.javacoolsoftware.com": [8677], "*.van.fedex.com": [5823], "*.atariage.com": [1345], "www.nestle.de": [11360], "*.furaffinity.net": [6387], "csend.be": [2053], "lund.zozs.se": [19230], "www.vpn.ac": [21954], "parametersecurity.com": [12598], "rows.io": [14223], "ssl.synovite-scripts.com": [15994], "aweber.com": [417], "it.stonybrook.edu": [15736], "cert-test.sandbox.google.com": [6962], "sante.ht": [2053], "tjournal.ru": [16780], "catchad.es": [2053], "jayhasga.me": [2053], "trkvrl.co": [2053], "www.midkemiaonline.com": [20794], "pro-managed.com": [13335], "moztw.org": [10856], "forward.agency": [2053], "get-digital.it": [6684], "www.barnskospecialisten.se": [1727], "www.davidsopas.com": [4306], "brobible.it": [2053], "www.kablepackaging.com": [8915], "bugs.kali.org": [8923], "*.mybetter.com": [10935], "totse2.com": [16879], "prowebsector.gr": [13342], "ultim.as": [2053], "mybrain.it": [2053], "cvw.gs": [2053], "iqmedia.us": [2053], "mining.cex.io": [2644], "fusion.net": [20190], "jot.is": [2053], "secure.yellowpages.ca": [18977], "gitlab.awesome-it.de": [1501], "ws.audioscrobbler.com": [1397], "www.landal.*": [18790], "piratebays.co": [21711], "www.forums.nexusmods.com": [6184], "www.podvertiseonline.com": [13062], "www.onswitchit.ca": [12015], "bkslfph.ml": [2053], "casbaa.hk": [2053], "js.stormiq.com": [15755], "archive.wix.com": [18684], "molly.am": [2053], "onarbor.com": [12021], "online-account-manager.asda.com": [387], "www.dataspace.pl": [4264], "kaggle.com": [8917], "lww.com": [9598], "www.0x41.no": [6], "ria.com": [13658], "g.1rf.tv": [2053], "billing.owncube.com": [12388], "snea.me": [2053], "swin.edu.au": [15943], "dtp.cancer.gov": [2864], "fshfol.us": [2053], "angus.ly": [2053], "images2.hertz.com": [7511], "thumbnail.image.rakuten.co.jp": [13768], "notex.ch": [11633], "xcb.freedesktop.org": [6243], "www.ida.liu.se": [9238], "hairand.me": [2053], "punchbowl.biz": [2053], "dialogica.tk": [2053], "www.geak.tk": [3597], "susan.bz": [2053], "torrents.linuxmint.com": [20700], "secure.foreignpolicy.com": [6142], "app.embed.ly": [5299], "www.t411.io": [16036], "events.emoryhealthcare.org": [5313], "hostvirtual.com": [7662], "gorails.com": [6907], "insurance.thecthulhu.com": [16600], "lezlovevideo.com": [9440], "www.fakturownia.pl": [5752], "community.crisis.org.uk": [3871], "wss.im": [2053], "*.ezinearticles.com": [5651], "detngr.com": [2053], "rsh.md": [2053], "www2.ulpgc.es": [17411], "aria.lv": [2053], "hmnt.me": [2053], "www.givekidstheworld.org": [6808], "bloo.vi": [2053], "tfox.us": [2053], "joomlacode.org": [8777], "nokiausa.com": [11655], "hellon.eu": [2053], "mnultimate.org": [20810], "web.enlightenment.org": [5382], "go.design360.gr": [2053], "sqbl.co": [2053], "efurnitureny.com": [5014], "cashplatoon.com": [2938], "www.gentoo-art.org": [21006], "zenmate.at": [19133], "subgenius.com": [3188], "jmink.me": [2053], "f5networks.com.br": [5658], "serviceuptime.com": [14868], "muss.me": [2053], "klubit.us": [2053], "www.job.g4s.com": [20194], "prieve.me": [2053], "www.photopay.net": [12853], "link.a2merch.ca": [2053], "citrixonlinecdn.com": [3239], "ant.anthem.com": [19395], "www.fusion-net.co.uk": [6394], "fpdownload.macromedia.com": [9999], "ftf.sh": [2053], "caruthers.illuminateed.com": [20430], "network.drweb.com": [4879], "files.adbrite.com": [604], "www.weert.nl": [11324], "city.oschina.net": [12321], "*.upc.es": [13120], "full.tvm2.info": [2053], "jfi.sh": [2053], "www.9to5google.com": [246], "cleanprint.net": [3285], "www.greasyfork.org": [7033], "courses.cs.ut.ee": [17347], "*.ku.edu": [17545], "ssl1.udn.com": [17224], "*.zenfs.com": [18942], "pbebank.com": [13431], "controlsocios.galpon.org": [20197], "argeweb.nl": [1219], "img1.gtimg.com": [7121], "www.daydeal.ch": [19865], "www.microster.pl": [10527], "forums.plausible.coop": [13011], "forms.upo.es": [17683], "www2.jm.com": [20540], "ii-public2.nlm.nih.gov": [11241], "www.auth0.com": [1444], "www.db-ip.com": [4083], "s.spc-intl.com": [2053], "sfbc.co": [2053], "*.humanrights.gov.au": [1432], "dashpay.io": [4242], "lmsa.me": [2053], "reviews.argos.co.uk": [1223], "www.royal.gov.uk": [14232], "www.apwustore.org": [970], "strategicmanagement.net": [15765], "fahrplan.search.ch": [14684], "s.scoreplus.jp": [2053], "jlne.ws": [2053], "integrity.st": [8354], "relcom.host": [13987], "telerik.com": [16352], "uanb.ai": [2053], "lunarpages.co.uk": [609], "repo.puphpet.com": [21226], "s.gaijinpot.com": [2053], "deputat.fbk.info": [5818], "mmos.websitealive.com": [18445], "lists.isc.org": [7966], "static.glassdoor.ca": [20246], "myatu.link": [2053], "le.nra.org": [20942], "on.rotary.org": [2053], "account.jamplay.com": [8645], "cdn3.openculture.com": [12204], "www.united-domains.de": [17499], "jjbb.co": [2053], "thesound.la": [2053], "ykl.co": [2053], "wt.tl": [2053], "adminer10.vas-hosting.cz": [21896], "*.petteriraty.eu": [12816], "55s.me": [2053], "movie.douban.com": [4802], "forums.ispbilling.com": [17091], "jasonsde.li": [2053], "appste.ch": [2053], "hybt.co": [2053], "o.ollili.me": [2053], "static.oc-static.com": [11809], "yongri.jd.com": [8571], "www.deaddrops.com": [4327], "m.aliyun.com": [861], "funni.ly": [2053], "pastevault.com": [12652], "pd-st.itunes.apple.com": [1160], "marketoversight.fca.org.uk": [5670], "wttd.me": [2053], "housebing.com": [2053], "pushplay.com": [13478], "cafun.do": [2053], "webfusion-support.co.uk": [18414], "www.skrilnetz.net": [15166], "kb.web-hosting.com": [18341], "rtpth.co": [2053], "niehs.nih.gov": [11241], "i.cia.bz": [2053], "www.stemformatics.org": [15722], "i-29repair.com": [2053], "fm.163.com": [43], "5px.us": [2053], "sl.highbrows.pk": [2053], "ws.mail.qq.com": [13514], "cctld.ru": [2974], "onefi.re": [2053], "best-pariuri-online.com": [7879], "goblu.co": [2053], "www.marcansoft.com": [10146], "trxp.io": [2053], "*.litespeedtech.com": [9618], "link.python.ph": [2053], "www.gusto.com": [7156], "securemail.amica.com": [993], "www.twimler.com": [17154], "www.stroud.greenparty.org.uk": [7052], "wobbstock.de": [2053], "www.cz-hosting.com": [2756], "virtualbox.org": [18039], "files.random.org": [13780], "www.trakehner-nord-west.de": [16932], "data.ct.gov": [2738], "filmfe.st": [2053], "adultshopping.com": [684], "mobility.telus.com": [16364], "inwx.de": [8381], "www.getpocket.com": [6702], "inddrivelse.skat.dk": [15144], "techblo.gr": [2053], "sell.stubhub.com": [15789], "login.barracudanetworks.com": [1728], "www.bitmex.com": [1985], "bh.ht": [2053], "s.wpstudio.ru": [2053], "www.kochava.com": [9102], "static.greenwire.greenpeace.org": [7064], "www.arma3.com": [1238], "quest.com": [13581], "www.djangoeurope.com": [4678], "www.zaltbommel.nl": [11324], "www.xenforo.com": [18862], "s.dragshare.co": [2053], "tbg.cm": [2053], "mid.live.com": [9644], "briehost.com": [2370], "www.eastriding.gov.uk": [5115], "moava.org": [10675], "picktheset.com": [2053], "hoyalink.georgetown.edu": [6668], "www.edubuntu.org": [5169], "dguk.xyz": [2053], "www.canon.sk": [2868], "*.yourfone.de": [19042], "www.ideastations.org": [8075], "scieneo.de": [14625], "eso.org": [5531], "www.pidg.in": [12883], "community.rackspace.com": [13740], "lfhk.nl": [2053], "gwebmail4f.alicdn.com": [846], "admin.cms.lg.com": [9231], "*.uni-saarland.de": [17457], "voci.io": [2053], "www.virusbtn.com": [18049], "derpyne.ws": [2053], "n24.welt.de": [18492], "vladimir.rt.ru": [13703], "www.solid-run.com": [15366], "carb.onl": [2053], "wrnk.co": [2053], "*.unica.com": [17466], "foxnews.ramp.com": [6203], "www.boligportal.dk": [2243], "bakabt.me": [1665], "onebit.cz": [11841], "cortellis.thomsonreuterslifesciences.com": [16652], "s.cvsweb.com.br": [2053], "t.tareqas.com": [2053], "rdfind.pauldreik.se": [12672], "facultyhandbook.stanford.edu": [15635], "assets.dandb.com": [4214], "oumedicine.com": [12344], "hot.mbw365.tips": [2053], "acquia.com": [518], "krtz.me": [2053], "hipped.me": [2053], "awsbj0-cdn.fds-ssl.api.xiaomi.com": [18873], "s.xbox.com": [18850], "flvr.pl": [2053], "shop.vice.com": [17958], "whoopth.is": [2053], "ekonomika.idnes.cz": [20425], "static.suite.io": [15842], "fbs.admin.utah.edu": [17574], "static.tumblr.com": [17101], "*.yelp.com.ph": [18979], "www.progressreport.cancer.gov": [2864], "www.nyaa.eu": [11794], "ncr.media": [2053], "dnm.cc": [2053], "www.mpv.io": [10861], "cloud.rockzi.com": [13676], "rpggeek.com": [13681], "cars.ru": [19650], "wohlfuehl.club": [2053], "lemn.es": [2053], "publishpartner.com.au": [21223], "ak1s.abmr.net": [801], "playvid.com": [13017], "amberswann.com": [958], "harvardpilgrim.org": [7352], "piping.unizar.es": [17643], "www.vrbo.com": [21957], "job.kurier.at": [9194], "www.storycubes.com": [15757], "sc1.rgstatic.net": [13655], "jp.calameo.com": [2790], "www.bigv.io": [1908], "d.mrspring.dk": [2053], "kb.wedos.com": [18197], "coredump.gr": [3738], "vueling.com": [18166], "chathamhouse.org": [3091], "www2.handelsbanken.fi": [7317], "jabber.at": [8620], "omnibus.hscic.gov.uk": [20388], "s.aida.cz": [2053], "joyv.co": [2053], "www.windows.net": [18643], "www.inkbunny.net": [8298], "go.oclaserver.com": [11910], "images.smartertools.com": [15241], "tmda.kr": [2053], "*.benaughty.com": [1773], "www.voipdistributor.net": [18101], "mcgrhill-warez.com": [10287], "login.bce.baidu.com": [1661], "mijn.ing.nl": [7916], "radar.re": [2053], "preview.buildsecurityin.us-cert.gov": [17705], "noeleyva.com": [2053], "www.schwabplan.com": [14613], "www.piratepad.ca": [12922], "swimemes.ml": [2053], "azys.co": [2053], "profile.live.com": [9644], "*.rootbsd.net": [14200], "southsomerset.greenparty.org.uk": [7052], "paf.news": [2053], "ttvs.org": [2053], "www.kanbox.com": [8931], "trafficprivacy.com": [16923], "bill.ilca.ru": [20429], "www.lumiblade-shop.com": [9828], "cosp.ly": [2053], "longquan.meituan.com": [10405], "www.zerobin.net": [19154], "bayareane.ws": [2053], "inldigitallibrary.inl.gov": [20462], "c4.rgstatic.net": [13655], "publishing.kalooga.com": [8925], "lubin82.pl": [9804], "www.wifidb.net": [18571], "www.g2play.net": [6414], "thesprawl.org": [15551], "*.zeiss.com": [2910], "piraten-partei.ch": [12487], "rt.grc.nasa.gov": [11058], "lifeche.at": [2053], "*.netpivotal.com": [11396], "orange.ch": [12290], "sin0.es": [2053], "ahosting.cz": [778], "partner.quickline.ch": [21243], "*.axisbank.com": [1514], "eram.umich.edu": [17552], "ping-fast.com": [12895], "image.guardian.co.uk": [7128], "www.fpjintel.com": [5703], "globalamicistore.com": [6843], "outernet.is": [12356], "nationalreview.com": [11262], "fipi.me": [2053], "deepfield.net": [4375], "*.handelsblatt.com": [7318], "www.comp.leeds.ac.uk": [17604], "wholesale.greensmoke.com": [7055], "sunriseprintonline.com": [15860], "*.allure.com": [3616], "*.nature.org": [16467], "l.moaicity.com": [2053], "kiamas.es": [2053], "tlx.de": [2053], "www.innerbody.com": [20463], "rashpixel.co": [2053], "stage-digitalmedia.hhs.gov": [7192], "scrt.es": [2053], "hurrah.gg": [2053], "victoriassecretcanada.ca": [17965], "norton.com": [11703], "richannel.org": [14226], "*.admtl.com": [729], "logisztika.bme.hu": [1570], "go.slangjis.org": [2053], "www.bn.com": [1726], "api.bizographics.com": [2085], "bugzilla.xamarin.com": [18840], "hits-secure.theguardian.com": [16554], "short.habou.cc": [2053], "syndication-o.twimg.com": [17153], "www.stockcharts.com": [15733], "wiki.openmandriva.org": [12153], "loadtest.ftc.gov": [5837], "paynr.co": [2053], "mail.scipy.org": [14616], "www.phcheats.com": [12457], "hdl.co": [2053], "www.yadg.cc": [22092], "brmtrcs.io": [2053], "bloombergsports.com": [2173], "app.chartmogul.com": [3075], "x.ilowkey.net": [2053], "kivikakk.ee": [20604], "kjldsn.dk": [2053], "jp.xhamster.com": [18816], "wherts.co": [2053], "go.redwolf.ws": [2053], "docs.onapp.com": [12007], "hlth.tips": [2053], "metrics.lowes.com": [9800], "sm.wsj.com": [2053], "napoleonmakeupacademy.com": [11225], "a.mysutro.com": [2053], "cln.cisco.mobi": [3220], "thersa.org": [16572], "rvrb.info": [2053], "www.rs-linkz.info": [13685], "gmx.fr": [6467], "www.epson.ca": [5434], "de.libreoffice.org": [9471], "forum-3dcenter.org": [20149], "support.paper.li": [12584], "www.alestic.com": [832], "*.xx.fbcdn.net": [5816], "physicaltherapy.wustl.edu": [18290], "www.everydayhero.com": [5560], "www.askapatient.com": [1300], "thegrid.to": [2053], "sver.in": [2053], "c.dwar.fr": [2053], "www.liikenneturva.fi": [9509], "s135.cnzz.com": [3391], "go.webmais.com": [2053], "thumbs.dreamstime.com": [4850], "sdx.io": [2053], "gq-mag.fr": [2053], "w4tch.tk": [2053], "mmoga.com": [9930], "api.alarabiya.net": [19336], "rootbsd.net": [14200], "imcloud.it": [2053], "govtrack.us": [6995], "safety.usc.edu": [17564], "pmpurweb.com": [2053], "nerd.bz": [2053], "jrclick.jd.com": [8571], "anonymissexpress.cyberguerrilla.org": [4033], "careerperfect.com": [2903], "newmanregionallibrary.worldcat.org": [18748], "dalileo.link": [2053], "www.widsl.de": [18570], "v.web.de": [18347], "apollo.unlimitedhost.asia": [17645], "www.thewebindex.org": [16588], "mosoblast.rt.ru": [13703], "indyreader.org": [8230], "*.bcn.ch": [20574], "boathousecrewshop.com": [2223], "publish.mynewsdesk.com": [11030], "sg.carousell.com": [2919], "findgravy.com": [5958], "clksite.com": [19734], "starttls.info": [14424], "pricerunner.co.uk": [13280], "adultplay18.com": [2053], "cdn.webrtc-experiment.com": [18378], "www.detini.gov.uk": [19900], "studentweb.con.ohio-state.edu": [11960], "www.pirateproxy.ca": [21709], "govzone.psc.gov": [21220], "t4m.co": [2053], "cdn.gbot.me": [6934], "bench.cr.yp.to": [3817], "sultryd.sh": [2053], "tehanna.pw": [2053], "tahoe-lafs.org": [16165], "cdn.ht.trafficforce.com": [16925], "dnf.uno": [2053], "openconnect.netflix.com": [11421], "members.gwh.nhs.uk": [11102], "kingso.me": [2053], "ms1.meituan.net": [10405], "kasiopea.matfyz.cz": [20578], "www.spendbitcoins.com": [15513], "yfs.news": [2053], "ecn.t0.tiles.virtualearth.net": [18046], "earhart.flameeyes.eu": [6015], "www.team-share.net": [16252], "go.lansdown.me": [2053], "providesupport.ru": [13400], "legacy.pfizerpro.com": [12824], "www.betabeat.com": [1868], "www.nrkbeta.no": [11146], "*.sis.maricopa.edu": [10154], "www.thehill.com": [16556], "contact.gmocloud.com": [6460], "i8.buimg.com": [16704], "lien.druffin.fr": [2053], "dpputah.com": [2053], "dnsdumpster.com": [4694], "zoho.to": [2053], "4pt.in": [2053], "birmingham.gov.uk": [19536], "wyndham.com": [18790], "go.fragicide.tv": [2053], "nightlove.me": [11589], "jordanwishli.st": [2053], "www.nickyhager.info": [11582], "ecm.nationalgrid.com": [11270], "lebon.la": [2053], "*.home.pl": [7610], "alumni-gsb.stanford.edu": [15635], "openmk.me": [2053], "www.nuwear.com": [11785], "i66.in": [2053], "cravatar.eu": [19814], "jersey.java.net": [8673], "fntsy.co": [2053], "ot.wustl.edu": [18290], "itrade.cimbsecurities.co.th": [2665], "i.wezo.co": [2053], "s.thislife.org": [2053], "filestack.com": [5916], "xinxiangxian.meituan.com": [10405], "*.creativecow.com": [3849], "www.novosoft.net": [11730], "www.mainelegislature.org": [10061], "*.stevenroddis.com": [15725], "*.uberspace.de": [17369], "reinsurance.tdc.dk": [16051], "on.cclol.com": [2053], "s3.moveon.org": [10819], "w.csb.net.br": [2053], "lkcss.zamimg.com": [19095], "opentemplate.org": [21006, 21007], "www.albennet.com": [819], "pyneo.org": [13498], "customers.drweb.com": [4879], "oyunhizmetleri.com": [12398], "cdsnp.com": [2053], "tapper.us": [2053], "www.portokalkulator.de": [19901], "tmg.st": [2053], "weixin.qq.com": [13514], "drugch.nl": [2053], "cz.icecat.biz": [8059], "cal.leloop.org": [9347], "maduke.stanford.edu": [15635], "ssn.today": [2053], "www2.argylesocial.com": [1227], "fuse.gamespot.com": [6544], "bupa.com": [2496], "alerts.mitu.la": [2053], "freemailer.ch": [6299], "in.koop.to": [2053], "d.gr-assets.com": [7004], "m.now.msn.com": [9959], "dashboard.stelter.com": [15721], "blog.hackerspace.pl": [7280], "libregraphicsworld.org": [9475], "kb.osu.edu": [11959], "chee.space": [2053], "gestionproyectos.ulpgc.es": [17411], "jobs.datacenterknowledge.com": [15074], "feedback2.yandex.by": [18953], "soton.ac.uk": [17562], "m.travelrepublic.co.uk": [16970], "www.istlsfastyet.com": [8511], "downloadmirror.intel.com": [8359], "efc.to": [2053], "yummynames.com": [17091], "myapnic.net": [1292], "www.kotte-zeller.de": [9145], "www.idofoundation.org": [7796], "www.aftontrailrun.com": [752], "www.ooda.com": [11850], "j.jk.lc": [2053], "offshoreleaks.icij.org": [7831], "tfw.gr": [2053], "www.flashrom.org": [6020], "alternate-b2b.nl": [921], "flppr.co": [2053], "test.admin.openccc.net": [12123], "*.shop.linuxnewmedia.de": [9556], "wp-eng-static.washingtonpost.com": [18287], "ftp.kevag-telekom.de": [9016], "olc1.ohiolink.edu": [11961], "mgz.me": [2053], "app.paymo.biz": [12692], "cybrd.uk": [2053], "support.levo.com": [9434], "go.kangrian.com": [2053], "trafficmaxx.de": [16929], "go.idlecode.com": [2053], "web.toutiao.com": [16881], "demand-driver.com": [4424], "geti.in": [2053], "s3.pimg.tw": [12890], "ietv.co": [2053], "www.leiajung.org": [9395], "cdn-net.com": [2977], "app-de2.resrc.it": [13832], "www.bux.cz": [19617], "support.mindtouch.com": [10596], "playerauctions.com": [13023], "jimrisp.in": [2053], "www.hannovermesse.de": [7327], "kancima.com": [2053], "bountysource.com": [2301], "scootergam.in": [2053], "nh.loggn.de": [9717], "media.shanaproject.com": [14902], "www.longtailvideo.com": [9752], "yand.co": [2053], "cipeg.leeds.ac.uk": [17604], "bitmessage.org": [2059], "www.privatevpn.com": [13322], "legi.lu": [2053], "csmm.engineering.osu.edu": [11959], "aimialoyalty.us": [2053], "afl.to": [2053], "www.statistics.gov.uk": [21568], "*.bcv.ch": [20574], "rpfl.us": [2053], "netbank.danskebank.dk": [4223], "auto.yandex.ua": [18961], "parkinggw.calderdale.gov.uk": [2794], "*.uc.edu": [17594], "pew.org": [2053], "a.cbcowasso.org": [2053], "www.togethertrust.org.uk": [21753], "br.usembassy.gov": [21879], "www.woopra.com": [18725], "sales-blog.eu": [2053], "lsfhs.com": [2053], "freedomonlinecoalition.com": [6290], "bluetoad.com": [2190], "juicecub.es": [2053], "www.publicsuffix.org": [13443], "rostov-na-donu.beeline.ru": [1801], "retail-link.gr": [14054], "aeolusproject.org": [719], "www.syncany.org": [15981], "chb.li": [2053], "www.vorpal.io": [18139], "on.wbaltv.com": [2053], "opmu.co": [2053], "*.fbhexpo.com": [5740], "www.friedhoff.org": [6330], "www.lessig2016.us": [9418], "resatra.in": [2053], "otb.nu": [2053], "next.ag": [2053], "*.archives-ouvertes.fr": [1207], "ampyr.us": [2053], "sql1.endora.cz": [5349], "cguild.net": [2053], "sv.libreoffice.org": [9471], "theme2.status.net": [15690], "data.com": [4251], "aldi.hu": [338], "blog.litespeedtech.com": [9619], "studentprograms.jpl.nasa.gov": [11058], "pp.laiwang.com": [20629], "www.mercurynews.com": [10455], "calendar.csail.mit.edu": [9916], "www.enfuseconf.com": [7134], "adrxmedia.com": [17833], "yescarts.co": [2053], "www.freedomboxfoundation.org": [6287, 6293], "l.aneis.ch": [2053], "mail.rotherham.gov.uk": [14212], "carehomes.derby.gov.uk": [4460], "devblog.mediamath.com": [10323], "amnesty.ch": [997], "www.piraten-schwaben.de": [12933], "www.tsoshop.co.uk": [16119], "i.atebits.com": [2053], "www.appinn.me": [1156], "cksdly.com": [2053], "yandex.ru": [18962], "communitydirectory.kirklees.gov.uk": [9067], "mad.tv2.dk": [16135], "www.aldi-suisse.ch": [338], "wiki.eigenlab.org": [20020], "blnn.kr": [2053], "www.soscisurvey.de": [15297], "www.oderland.se": [11922], "www.factorioforums.com": [20091], "rhy.mx": [2053], "www.screenit.com": [14648], "bccla.org": [1544], "qybuye.jd.com": [8571], "tecnocode.co.uk": [16310], "mathworks.com": [10230], "msg.by": [2053], "ver.gg": [2053], "welcome.houseoffraser.co.uk": [7709], "*.jobvite.com": [8751], "cmis.sandwell.gov.uk": [21367], "mytemp.email": [10980], "email.ucsc.edu": [17591], "wonderlandmovies.de": [18713], "econnect.stanfordmed.org": [15639], "*.phone-analytics.com": [12846], "robinmcm.me": [2053], "qlubber.co": [2053], "www.phdcourses-socsci.uio.no": [17615], "l.jaxlug.net": [2053], "x.dozainer.com": [2053], "www.zoomerang.com": [19222], "s.alessio.re": [2053], "*.digium.com": [4594], "nov.lc": [2053], "nov.la": [2053], "nanoengineering.ucsd.edu": [17216], "static.www.turnto.com": [17117], "moveon.org": [10819], "de.isaacj.com": [2053], "go.nesn.com": [2053], "www.banquemigros.ch": [10563], "appltn.us": [2053], "upsploit.com": [17668], "rdxf.cf": [2053], "link.cmu24.com": [2053], "jujucharms.com": [8821], "www.hashtalk.org": [7356], "pfauth.nu": [2053], "jeffsauer.me": [2053], "*.userfox.com": [17726], "www.zxidp.org": [19081], "store.nvidia.com": [11174], "www.redmine.org": [13929], "vckt.co": [2053], "dicas.us": [2053], "www.orkut.com.br": [12313], "lcook.co": [2053], "bh90210.ml": [2053], "yoins.me": [2053], "tjenester.nav.no": [20878], "webmail.kn.vutbr.cz": [17814], "help-es-eu.nike.com": [11595], "raux.us": [2053], "www.osmc.tv": [21036], "chp239.com": [2053], "out.outlayer.it": [2053], "static.chefkoch.de": [3116], "taxbenefits.coventry.gov.uk": [19806], "jtimb.re": [2053], "gb.isidewith.com": [20414], "www.hdnux.com": [7408], "drbb.ca": [2053], "bice.us": [2053], "www.sparklabs.com": [15469], "my.quickline.com": [21243], "images-4.gog.com": [6482], "wiki.bnc4free.com": [2216], "lng.mn": [2053], "onlineservices.glasgow.gov.uk": [6821], "security.dxw.com": [4915], "ccc.shareit.com": [14914], "igonline.info": [2053], "prx.org": [12496], "fohonline.me": [2053], "a4.ucsd.edu": [17216], "indymedia.ie": [20453], "projecteuler.net": [13362], "forum.parallels.com": [12597], "korndesign.com": [9138], "www.zipcar.com": [19190], "*.hmv.co.jp": [7221], "bberg.wtf": [2053], "*.redferret.net": [13907], "bugfiles.operasoft.com": [12252], "*.pcboc.com": [2809], "lftd.net": [2053], "www.oftc.net": [11821], "nrd.fm": [2053], "www.brandfolder.com": [2336], "invitemedia.com": [8474], "audm.ag": [2053], "www.cardiffnetwork.cf.ac.uk": [2895], "vefir.hi.is": [7195], "yabs.yandex.by": [18953], "streams.museter.com": [10900], "www.radware.com": [13758], "emsonline.buckscc.gov.uk": [19605], "www.doemeispp.org": [19935], "baselland.ch": [21629], "*.moot.it": [10769], "www.acxiom-online.com": [547], "media.shaw.ca": [14932], "wksf.co": [2053], "a-ssl.ligatus.com": [9502], "1l0v3y0u.ml": [2053], "api.prospecteye.com": [13390], "atmi.info": [2053], "sicherheit.immobilienscout24.de": [8153], "e-prawnik.pl": [4957], "b5psy.com": [2053], "mitstory.mit.edu": [9916], "okay.ninja": [2053], "ruudhe.in": [2053], "fixubuntu.com": [6011], "artemis.net": [1265], "rp9.it": [2053], "www.cypherpunk.at": [2755], "ask.wireshark.org": [18670], "every.tw": [2053], "ut05.xhcdn.com": [18815], "tb.raiffeisendirect.ch": [13761], "on.sport1.de": [2053], "rdly.co": [2053], "login.rz.htwg-konstanz.de": [7247], "blogs.state.gov": [17345], "kickz.cc": [2053], "et05.xhcdn.com": [18815], "game.gy": [2053], "wassil.us": [2053], "kuancheng.meituan.com": [10405], "timesrecordnews.com": [16736], "payment.empireblue.com": [20033], "resourcex3.dditscdn.com": [4317], "wongs.cc": [2053], "*.backcountry.com": [1639], "wrt.mobi": [2053], "unique-vintage.com": [17481], "fazekas.hu": [5813], "www.astreea.ens.fr": [5029], "mf.mipacko.com": [2053], "login.entrust.net": [5406], "cdn2.plenti.com": [13034], "files.itunes.apple.com": [1160], "ca-pca.fr": [2565], "www.aerofs.com": [727], "www.scriptobservatory.org": [14660], "krawlly.com": [9157], "images.marketing.eloqua.com": [5282], "nmugroup.com": [11131], "*.optimix.asia": [7844], "hi.johnarce.com": [2053], "1om.co": [2053], "lakebtc.com": [9287], "nae.edu": [11264], "bpwr.co": [2053], "*.data.com": [4251], "overflo.it": [2053], "*.hwbot.org": [7784], "gmtr.ch": [2053], "numergy.com": [11777], "on.opptys.nl": [2053], "radar.cedexis.com": [2986], "store.creativecommons.org": [3848], "www.bprc.osu.edu": [11959], "qa.meituan.com": [10405], "benthamsgaze.org": [1832], "www.netways.de": [11452], "www.imgrind.com": [7905], "stbd.co": [2053], "nxtbg.co": [2053], "s.shck.it": [2053], "filehosting.sanet.me": [14315], "go.gogn.in": [2053], "liteaddress.org": [9621], "bureau.koumbit.net": [9148], "centralcontent.fco.gov.uk": [5671], "espace.cern.ch": [2632], "tamar.me": [2053], "nsbd.me": [2053], "www.cmbchina.com": [2683], "holidayextras.com": [7595], "cybercompex.org": [4039], "verisign.se": [17915], "madstein.at": [10009], "l.sevenroot.org": [2053], "intra.thm.de": [16066], "api.huobi.com": [7769], "inda.ba": [2053], "www.cax.com": [2971], "internetvotes.org": [3008], "slashbits.com": [15191], "www.moi.gov.sa": [14545], "pearsoncomputing.net": [12719], "images.ddlvalley.cool": [19876], "altayskiy-kr.beeline.ru": [1801], "update.cabinetoffice.gov.uk": [2760], "extremetech.com": [19176], "utxt.in": [2053], "www.hostit.hu": [7680], "pic7.58cdn.com.cn": [202], "webmail2.hyd.gov.hk": [7207], "ocw.innova.uned.es": [17446], "tmbizonline.tm.com.my": [16341], "spbx.us": [2053], "emvie.ws": [2053], "zoneedit.com": [19212], "i.lucaswyte.com": [2053], "c0.3.cn": [121], "spatialpoint.com": [15481], "ledgerwallet.com": [9377], "parking.kirklees.gov.uk": [9067], "*.passwordbox.com": [12644], "lane.stanford.edu": [15635], "bwe.bi": [2053], "www3.rbwm.gov.uk": [21268], "rore.me": [2053], "ubuntu-mate.org": [17378], "sqpla.net": [2053], "status.clever.com": [3297], "eriga.lv": [14113], "ndtndt.cf": [2053], "geert.link": [2053], "app.ipswich.gov.uk": [8499], "www1c.medicare.gov": [20772], "tafewsi.com": [2053], "onpatient.com": [12082], "motorgutz.com": [2053], "schrt.io": [2053], "bank.barclays.co.uk": [1710], "reimanpub.com": [13980], "proisp.no": [12492], "i3.c.dk": [2556], "js.kattare.com": [8971], "usd.aw": [2053], "airbears.berkeley.edu": [17526], "mircap.biz": [2053], "www.tandemcal.com": [16195], "www.manchesterdigital.com": [20746], "nardikt.ru": [7464], "hgb.io": [2053], "support-stg.norton.com": [11703], "www.supplychain.nhs.uk": [11102], "on.iptorrents.com": [7945], "nnovgorod.rt.ru": [13703], "oct.li": [2053], "www.digitabportals.com": [4562], "0.klet.st": [2053], "www.ssls.com": [14417], "railscloud.de": [13764], "www.broadbandmap.gov": [2404], "adminlogon.liveperson.net": [9654], "mit-amps.mit.edu": [9916], "www.queervids.com": [13579], "*.rainn.org": [13629], "l.citt.me": [2053], "*.atos.net": [1366], "cp-hv.myvps.jp": [10985], "flyha.be": [2053], "*.theresumator.com": [16501], "hop.sc": [2053], "ncsu.edu": [11690], "bit.imprev.net": [2053], "ashdown.recurly.com": [13887], "livepass.conviva.com": [3698], "a.22g.in": [2053], "grid7.co": [2053], "www.seethisinaction.com": [14799], "guitarcenter.com": [7143], "uogictstatus.statushub.io": [15692], "kprs.me.uk": [2053], "rule34.xxx": [14268], "chkit.in": [2053], "lotto.web.de": [18347], "mco-pb.sensic.net": [11779], "sampur.se": [2053], "livingsocial.co.uk": [9678], "sk.libreoffice.org": [9471], "puthq.co": [2053], "sungen.re": [2053], "www.arqbackup.com": [1246], "www.movietickets.com": [10827], "training.itsc.cuhk.edu.hk": [2747], "dashboard.chango.com": [3056], "blog.cryptomilk.org": [3949], "fairssl.se": [5744], "netlandi.sh": [2053], "*.orange.jobs": [12288], "registrar.illinois.edu": [17544], "mtvhv.com": [2053], "img.dxcdn.com": [4331], "schrd.rs": [2053], "gallery.technet.microsoft.com": [10543], "www.hardenedbsd.org": [7336], "acswebcontent.acs.org": [966], "catalog.data.gov": [4253], "ask.barclays.co.uk": [1710], "o2tv.cz": [16332], "static.apricityos.com": [19408], "ds.vutbr.cz": [17814], "c.files.bbci.co.uk": [19501], "bragl.co": [2053], "www.pixid.ideeinc.com": [16739], "staging.ghosteryenterprise.com": [6750], "uitgewee.st": [2053], "xo.sansbug.com": [2053], "rapp.st": [2053], "go.ekushey.com": [2053], "cl.marselo90.it": [2053], "frenchtv.to": [6315], "*.ebayrtm.com": [4973], "kaisersysteme.com": [8921], "mcmx.in": [2053], "dia-grid.org": [4521], "www.gzt-sv.ru": [20302], "bugreport.apple.com": [1160], "insattva.co": [2053], "www.cfmueller.de": [2757], "dehop.re": [2053], "www.srdrvp.com": [15592], "*.exeter.ac.uk": [17537], "sdk.cn": [21391], "blog.flurry.com": [6069], "*.rajce.idnes.cz": [20425], "abrew.co": [2053], "dwh.gg": [2053], "northdevon.greenparty.org.uk": [7052], "jobvite.com": [8751], "nvidia.com": [11174], "cardealerstudy.com": [1573], "xtrazone.sso.bluewin.ch": [2210], "support.whitepages.com": [18555], "unm.at": [2053], "*.ultimatepoker.com": [17413], "kdr.ms": [2053], "www.jobs.nih.gov": [11241], "igiveonline.com": [8034], "www.zoklet.net": [19206], "www.airbnb.*": [788], "chat.12d.lt": [2053], "joppix.com": [8779], "nanren.taobao.com": [16206], "go.btc2u.biz": [2053], "vmwareblogs.com": [17787], "*.cambridge.org": [2826], "re-pear.com": [1163], "img.xcart.com": [18806], "sfbform.com": [2053], "hiretim.com": [2053], "report.aliexpress.com": [847], "java.visualstudio.com": [18078], "upv.cz": [17287], "www.guep.org": [20293], "static-curse.cursecdn.com": [4006], "www.srcclr.com": [15588], "boltbus.com": [2246], "ian.gy": [2053], "*.smartmoney.com": [11513], "muttr.org": [2053], "sandbox.evernote.com": [5556], "www.apps.ups.com": [17285], "cavir.in": [2053], "invmt.eu": [2053], "apps.obfs.uillinois.edu": [17238], "www.firstclassmagazine.se": [5991], "aps.wtf": [2053], "www.ebi.ac.uk": [5140], "consultation.rbkc.gov.uk": [21266], "my-zone.net": [20858], "suggestqueries.google.com": [6962], "spott.ly": [2053], "irgi.at": [2053], "amsho.ws": [2053], "ruderich.org": [14257], "www.sanitarium.se": [14524], "content.fandango.com": [5766], "cherwell.objective.co.uk": [20979], "royalmailgroup.com": [14234], "theeca.com": [5397], "www.ibl.liu.se": [9238], "recip.it": [2053], "knowledge.verisign-grs.com": [17915], "mail.piware.de": [10198], "ria.ua": [13659], "ceri.udistrital.edu.co": [17394], "mobile.ok.ru": [11968], "gr0.us": [2053], "doesburg.nl": [11324], "tr.chaturbate.com": [3093], "go.gearpipe.com": [2053], "kemerovo.rt.ru": [13703], "*.wordpress.com": [18731], "bible.scot": [2053], "link.qcraft.pw": [2053], "cdn.bnc4free.com": [2217], "www.segurosocial.gov": [21403], "colossal.com": [16641], "www.rz.ruhr-uni-bochum.de": [14267], "theconversation.edu.au": [16528], "download.srcclr.com": [15588], "www.movabletype.com": [10817], "www.umail.utah.edu": [17574], "monoprice.com": [10749], "*.longurl.it": [10958], "meyu.me": [2053], "mtac.org": [9964], "it.calameo.com": [2790], "conference.inc.com": [8190], "nus.biz": [2053], "blog.safaribooksonline.com": [14459], "*.systemcenteradviser.net": [16014], "www.minix.org": [10617], "veri.tv": [2053], "fbapp12.tchibo.de": [16240], "jobs.westminster.gov.uk": [18516], "isoc.org": [7974], "sls.re": [2053], "millecor.co": [2053], "riano.co": [2053], "static.sourceforge.jp": [15423], "bss.tips": [2053], "terneuzen.nl": [11324], "myju.st": [2053], "vanda.ag": [2053], "www.why-opencomputing.com": [22021], "www.chip-digital.de": [2651], "panel.research-int.se": [16098], "ssl3.ovh.net": [12378], "fatfra.me": [2053], "americanheart.org": [982], "franch.in": [2053], "cdn.images.reevoo.com": [13947], "gameinfo.euw.leagueoflegends.com": [9361], "www.iwork.com": [8023], "downloads4.mamp.info": [20744], "www.onlinelaw.wustl.edu": [18290], "profil.netzclub.net": [20895], "dlywrth.com": [2053], "www.csctrustedsecure.com": [2725], "nsec.osu.edu": [11959], "quote.comparethemarket.com": [3575], "4wrd.eu": [2053], "cplink.tv": [2053], "www.capitaller.ru": [2880], "www.hertz.co.kr": [7503], "county-star.com": [3778], "s.bekas.org": [2053], "uber.vu": [2053], "survey.o2active.cz": [16331], "css.rating-widget.com": [13810], "clz.do": [2053], "mysql.cesky-hosting.cz": [19680], "aan.amazon.co.uk": [19365], "unoeuro.com": [17649], "nieuws.kuleuven.be": [8969], "plasso.co": [21148], "*.nantes.indymedia.org": [8234], "www.htc.com": [7238], "www.ksh.hu": [8903], "encryptr.org": [5340], "www.redbull.*": [13900], "forms.sign-up.to": [15025], "sdmg.in": [2053], "strask.link": [2053], "domainrendelo.hu": [4756], "cetmag.org": [2053], "www.youcaring.com": [19011], "nexti.si": [2053], "www.translatoruser.net": [16949], "coopathome.ch": [3712], "www.espanol.smokefree.gov": [21484], "ask.hover.com": [7712], "a3-content.vouchercloud.com": [21951], "www.svb.com": [15036], "univie.ac.at": [17639], "ppst.co": [2053], "fi.somethingawful.com": [15379], "qr.abctonery.sk": [2053], "www.midasgreentech.com": [10553, 10554], "it-security.usc.edu": [17564], "www.freecycle.org": [6280], "ynzr.pics": [2053], "bizland.com": [2082], "www.iais.fraunhofer.de": [6230], "1l-go.mail.ru": [10040], "www.myshazam.com": [11006], "unop.uk": [17650], "fdv.im": [2053], "estora.ge": [2053], "onion.link": [16837], "www.moat.com": [10673], "members.trustedcomputinggroup.org": [17066], "summit.creativecommons.org": [3848], "pokey.ci.uchicago.edu": [17532], "forum.1and1.com": [61], "krstn.co": [2053], "www.avropa.se": [1496], "glasneost.neos.eu": [11088], "planet-energy.de": [12978], "10fit.ch": [2053], "forum.percona.com": [12769], "go.mnw.it": [2053], "csr.osu.edu": [11959], "business.idg.se": [7852], "c2.popads.net": [13129], "www.pirateparty.ca": [12928], "giving.mit.edu": [9916], "sb-innovation.de": [14316], "gficloud.com": [6438], "hstc.co": [2053], "rewrd.co": [2053], "adadvisor.net": [16040], "captcha.360.cn": [130], "n.trmn.us": [2053], "tkse.us": [2053], "mkrdi.ch": [2053], "frwp.org": [18595], "piratebay.unlockproject.top": [21771], "gis.worcestershire.gov.uk": [22045], "aartdevos.dk": [435], "interfacefp.uk": [2053], "see.qrd.io": [2053], "static03.vg.no": [17776], "account.nasuni.com": [11229], "eel.la": [2053], "gme.stanford.edu": [15634], "blocktogether.com": [2142], "www.coderouge.co": [3437], "imgrind.com": [7905], "vicesports.de": [2053], "downloads.f5.com": [5659], "xra.co": [2053], "kinyetbna.ga": [2053], "startnext.com": [15665], "swaziland.usembassy.gov": [21879], "l.photofolio.dk": [2053], "knut.so": [2053], "hnvr.co": [2053], "ori.gs": [2053], "www.domtele.com": [19945], "avna.co": [2053], "www.mtsystems.ch": [10870], "www.leadership.opm.gov": [11853], "spierings.ga": [2053], "*.standaard.be": [15631], "www.fogcreek.com": [6097], "encyclopediadramatica.se": [5342], "www.consumerreports.org": [3665], "drupal.bnl.gov": [19564], "*.viewablemedia.net": [18061], "elements.yandex.com": [18956], "sharenice.org": [21422], "photos-d.ak.fbcdn.net": [5816], "systemoverlord.com": [16015], "www.hertz247.nl": [7494], "aviationweather.gov": [19463], "myspace.thecthulhu.com": [16600], "www.askmonty.org": [1297], "n.nalula.co.il": [2053], "consumentenbond.nl": [3662], "piunti.co": [2053], "ffwd2.me": [2053], "virusec.com": [18051], "dsgnrbox.com": [2053], "secure.dict.cc": [4536], "www.confex.com": [3632], "www.interhyp.de": [8399], "pt.gamigo.com": [6563], "diaz.tech": [2053], "he.net": [7774], "*.influads.com": [8246], "www.pl.vc": [12971], "panxian.meituan.com": [10405], "legiscan.com": [9387], "prosp.it": [2053], "img.disc-soft.com": [4624], "it.verbling.com": [17907], "adview.pl": [705], "www.hertz.fi": [7483], "cdns.tblsft.com": [16239], "mrjinx.it": [2053], "hellobk.be": [2053], "on.wajda.in": [2053], "lolthis.me": [2053], "csob.sk": [3966], "www.verbling.com": [17907], "fr.tickengo.ca": [16680], "openbsc.osmocom.org": [12329], "*.accountonline.com": [500], "nl.syllable.org": [21632], "www.hertz.fr": [7484], "usrjoy.com": [17740], "recapthelaw.org": [13878], "ets.tanx.com": [21661], "m.ccpatl.com": [2053], "links.romeni.eu": [2053], "crm.givebac.org": [2053], "pulp.rocks": [2053], "www.vortexbox.org": [21949], "assets.newrepublic.com": [11501], "annuel.framapad.org": [6214], "newssmith.udngroup.com": [17224], "blog.x-cart.com": [18794], "www.apianalytics.com": [371], "thumbnails.domaintools.com": [4750], "svn.debian.org": [4353], "image.card.jp.rakuten-static.com": [21251], "www.york.cuny.edu": [19002], "www.geoclub.de": [6665], "nativetou.ch": [2053], "scripts.mit.edu": [9916], "evan.co.nz": [2053], "www.friendlyduck.com": [6332], "pages03.net": [15047], "ksgexecprogram.harvard.edu": [7351], "getintoteaching.education.gov.uk": [20009], "svn.dd-wrt.com": [19873], "divability.co": [2053], "www.renewablefreedom.org": [14001], "mail.math.ias.edu": [7815], "*.huggies.com.au": [7747], "lnk.klwn.de": [2053], "www.competitionsbywyndham.com.au": [18790], "hosseinnejad.me": [2053], "gdatasoftware.co.uk": [6410], "support2.seagate.com": [14679], "mre.one": [2053], "stu.dj": [2053], "gokgs.com": [20266], "gbcsumc.info": [2053], "cdn.cstatic.net": [3971], "tucsonne.ws": [2053], "northern-indymedia.org": [11698], "ib-g.me": [2053], "www.jucycruize.co.nz": [8610], "accounts.jenkins.io": [20536], "iam.re": [2053], "huffingtonpost.ca": [7744], "on.rhap.com": [2053], "support.zynga.com": [19251], "marijuanamajority.com": [10158], "go.goldbachpoland.bbelements.com": [1764], "www.jakearchibald.com": [8642], "erowid.org": [5455], "ortho-us.link": [2053], "branluc.co": [2053], "www.unibet.com.au": [17464], "ai.stanford.edu": [15635], "l.pulseradio.fm": [2053], "store3.esellerate.net": [5462], "www-am.bahn.de": [1660], "mit.tdc.dk": [16051], "piqsu.re": [2053], "get.proxpn.com": [21204], "ly.meituan.com": [10405], "jugger.mail.ru": [10040], "webmail.merton.gov.uk": [10464], "cloudinco.me": [2053], "topbiz.xyz": [2053], "link.2factor.cm": [2053], "ascenderfonts.com": [1281], "*.use-enco.com": [17712], "im.micha.gd": [2053], "lang.moodle.org": [10763], "authy.com": [1448], "forms.camden.gov.uk": [2830], "crgr.co": [2053], "mcuser.uv.es": [17750], "tubu.info": [2053], "origin.com": [12309], "www.publish.illinois.edu": [17544], "*.rebateaccess.com": [13872], "www.f5.com": [5659], "mondovino.ch": [3712], "hos.hostalite.com": [20361], "*.virginmobileusa.com": [18027], "www.geef.nl": [6610], "ndi.org": [11082], "ns.wrdy.us": [2053], "www.globalperspectivescanada.com": [6851], "codecademy.com": [3421], "mendeley.com": [10430], "rc.ai": [2053], "www.cosmopolitan.com": [3758], "www.youtube.co.hu": [19016], "m.alloresto.fr": [20565], "zen.nzherald.co.nz": [11506], "opera.yandex.com.tr": [18954], "app.gyft.com": [7166], "www.regonline.com": [13957], "nsupdate.info": [11750], "j2.58cdn.com.cn": [202], "oeis.org": [11818], "etmirror.com": [20063], "i.meechan.co": [2053], "d.nuomi.com": [20963], "karriere.hofer.at": [338], "shiftpayments.com": [14948], "kare11.tv": [2053], "diario.org.aalto.fi": [428], "shopi.la": [2053], "gic1.mycdn.me": [11014], "www.goaldet.com": [6926], "www.zenmate.com.ar": [19133], "hosthorde.com": [7657], "lifeintheuktest.ukba.homeoffice.gov.uk": [20355], "intranet.soe.ucsc.edu": [17591], "myftp.utechsoft.com": [11020], "support.maximintegrated.com": [10261], "ad3.netshelter.net": [11400], "sakhalin.rt.ru": [13703], "wilz.me": [2053], "cmdata.groupon.com": [7100], "correctiv-upload.org": [3752], "lolbg.in": [2053], "inxp.co": [2053], "about.search.ch": [14684], "a.uguu.se": [17400], "dee.fyi": [2053], "at.avm.de": [1493], "securelogin.poste.it": [13192], "www.irf.se": [7959], "www.ul.ie": [17256], "motherboard-cdn-assets.vice.com": [17959], "link.giorgio.io": [2053], "cdn.cpmstar.com": [2704], "www.familie.bremen.aok.de": [357], "lou.ac.uk": [2053], "intel.ly": [2053], "pgehr.es": [2053], "www.verivox.de": [17917], "nextgen-gallery.com": [11560], "a.tvangsnytt.no": [2053], "secure.reichelt.de": [13978], "delta.com": [4414], "tobuy.today": [2053], "www.allmyvideos.net": [897], "forums.mumble.info": [10890], "ftdn.co": [2053], "broadcomfoundation.org": [2410], "damascus.usembassy.gov": [21879], "cedia.org.ec": [2627], "techchir.ag": [2053], "technoportal.ua": [16295], "www-cdn2.pardot.com": [12605], "rfiles.co": [2053], "www.familie.rps.aok.de": [357], "commerce.mondediplo.com": [10729], "iti.illinois.edu": [17544], "silverstripe.org": [21449], "pda-passport.yandex.by": [18953], "wintiewin.com": [18631], "www.13joycasino.com": [20552], "civilcontingencies.dundeecity.gov.uk": [4897], "dndclassics.com": [12029], "www.securityinabox.org": [14776], "vstphl.ly": [2053], "investments.osu.edu": [11874], "ssl.sntech.de": [14384], "www.poivy.com": [13078], "www.c3pb.net": [2557], "*.webmdhealthservices.com": [18369], "rjav.info": [2053], "supermarket.chef.io": [3115], "avatar.guim.co.uk": [7142], "ecology.unian.ua": [21851], "zuno.sk": [19079], "zhidao.baidu.com": [1661], "denc.co": [2053], "et.tv": [2053], "iospp.org": [7927], "cdnetworks.co.jp": [2618], "forum.young-pirates.eu": [19023], "divdata.ucsc.edu": [17591], "assets.meetmecdna.com": [20773], "www.derbyshire.gov.uk": [19895], "business-registration.neighbourhoodalert.co.uk": [20884], "www.loggly.com": [9716], "sv-m.eu": [2053], "www.lugons.org": [9262], "gbx.buzz": [2053], "rhx.tl": [2053], "mdlk.us": [2053], "www.palfrader.org": [12546], "mkfx.co": [2053], "www.suite.io": [15842], "*.loopfuse.com": [9767], "utt.mtvnn.com": [17953], "radioshackwireless.com": [13749], "careerdean.com": [2902], "entertainment.guardianoffers.co.uk": [7131], "www.efast.dol.gov": [19938], "stmi.me": [2053], "www.aucklandairport.co.nz": [1380], "i2.buimg.com": [16704], "startssl.com": [15660], "tierney.me": [2053], "myapp.itunes.apple.com": [1160], "images.playmates.com": [13029], "www.gameoapp.com": [6551], "trib.it": [2053], "company.podio.com": [13068], "accounts.google.com.*": [6965], "www.riaa.com": [13660], "www.reporo.com": [14015], "idportal.polyu.edu.hk": [13116], "edrs.lsc.gov.uk": [20720], "iab.net": [8386], "real-debrid.com": [13854], "to.flaviar.com": [2053], "*.legolas-media.com": [9393], "blog.thijsalkema.de": [16621], "ney.me": [2053], "previous.delicious.com": [4405], "callr.ca": [2053], "webmail.prq.se": [12493], "*.withknown.com": [18682], "www.prezident.sk": [15217], "mattpollard.net": [2053], "www.trysuperbgreencoffee.com": [17081], "l.jkrrv.org": [2053], "gju4.alicdn.com": [846], "ligatus.it": [9502], "1roof.io": [2053], "img.zumzi.com": [19241], "z.mozest.com": [10838], "flourl.de": [2053], "register.guardian.co.uk": [7128], "tz.mail.ru": [10040], "a.delta2.co.uk": [2053], "www.yesss.at": [18983], "media.salon.com": [14491], "www.woking.gov.uk": [22041], "nejm.org": [11496], "spogo.co.uk": [15536], "www.edge.org": [5179], "www.duodecim.fi": [4901], "chengde.meituan.com": [10405], "teruel.stanford.edu": [15635], "rigidstore.co": [2053], "ico.stanford.edu": [15635], "mediciglobal.com": [10358, 10359], "col.ma": [2053], "zk.vc": [2053], "edu.artschools.com": [1260], "asdfasdf.id": [2053], "mediamir.medialand.ru": [10339], "www.mercyships.org": [10457], "hackerspaces.org": [7282], "cgdc.co": [2053], "iksa.me": [2053], "uam.engineering.osu.edu": [11959], "bfai.co": [2053], "vacanteen.va.gov": [17297], "www.mynomadesk.com": [11657], "esn.tl": [2053], "widgets.amazon.de": [19369], "www.boxpn.com": [2313], "atlatszo.hu": [1358], "cubesat.bme.hu": [1570], "policymic.com": [13090], "bum.li": [2053], "jethrocarr.com": [8709], "skl.sh": [2053], "bensm.it": [2053], "owa.nexus.ox.ac.uk": [17557], "cln.st": [2053], "whitelabel.domaintools.com": [4750], "nmg.95516.com": [240], "tuitam.pl": [16127], "giit.al": [2053], "nhsg.co": [2053], "theskoop.ca": [15163], "makery.space": [2053], "sexkompas.net": [14886], "i.pronto.live": [2053], "l.popout.de": [2053], "wasilczyk.pl": [18292], "corporatetravelmoney.com": [19794], "www.rollbar.com": [14190], "omnetpp.org": [11835], "focusonline.co": [2053], "cimjsea.osu.edu": [11959], "mbp.io": [2053], "investor.logmein.com": [9711], "www.webplatform.org": [18376], "www.nationalreview.com": [11262], "clock.yandex.com.ua": [18955], "szkb.ch": [20574], "civicrm.org": [3259], "g.nebenwelt.net": [2053], "www.viaverio.com": [17952], "www.internap.co.jp": [8403], "www.ultrafacil.com.br": [17417], "johnr.us": [2053], "1.agx.eu": [2053], "yeswescan.org": [13435], "www.russianamericancompany.com": [14283], "021.es": [2053], "gameofbay.org": [21711], "direct.yandex.com.tr": [18954], "zh.meituan.com": [10405], "mja.pw": [2053], "projectgus.com": [21209], "link.fmd-fdd.ch": [2053], "www.ashops.co.il": [19436], "tuningworld.com.au": [17106], "www.etreshop.com": [5498], "stec-t06.xhcdn.com": [18815], "cspinet.org": [2733], "wiki.urel.berkeley.edu": [17526], "iamc.co": [2053], "ds2.static.rtbf.be": [14244], "treyruffy.ga": [2053], "www.moodscope.com": [20829], "www.malwarebytes.org": [10093], "rxg.de": [2053], "*.intel.co.uk": [8355], "w-s-l.cc": [2053], "bedrockformssgnext.msn.com": [9961], "www.debian-handbook.info": [16450], "data.sankakucomplex.com": [21368], "www.open-pc.com": [21006], "secure.coinjar.com": [3461], "www.nykeurope.com": [11184], "www.homebase.co.uk": [7621], "runtimeverification.com": [21341], "tgcol.com": [2053], "certsimple.com": [3026], "www.sozialismus.info": [15451], "a.alipayobjects.com": [857], "t0.qlogo.cn": [13534], "degica.com": [3396], "accounts.songkick.com": [21507], "simtechdev.ru": [21454], "davidtfe.es": [2053], "www.ruxconbreakpoint.com": [14288], "travelrewardspn.capitalone.com": [2878], "brandweeruitgeest.nl": [2340], "roger.lt": [2053], "www.debuggex.com": [4356], "collaborateextstg.verizon.com": [17918], "pariuri.pariloto.net": [7879], "spacecraft.digital": [21520], "genymotion.com": [6656], "n.architect.bz": [2053], "verivox.de": [17917], "kbb.us": [2053], "sbi.me": [2053], "www.perfect-privacy.com": [12770], "pkev.in": [2053], "groups.eiffel.com": [5224], "w100.org": [2053], "css.letvcdn.com": [20667], "www.purecars.com": [13464], "telemetry.com": [16347], "axess.stanford.edu": [15635], "yk.lc": [2053], "tswift.co": [2053], "webmail.wedos.net": [18197], "utoron.to": [2053], "www.terneuzen.nl": [11324], "on.ewi.info": [2053], "*.pspudb.com": [5326], "magix-online.com": [9872], "safonovo.beeline.ru": [1801], "secure.gettyimages.ae": [6741], "sl.vfmz.info": [2053], "htln.es": [2053], "www.tinyletter.com": [16754], "giftcloud.com": [20238], "dataquest.io": [4262], "leemc.me": [2053], "iletis.im": [2053], "phpans.com": [21118], "salvetas.just-eat.ie": [20565], "www.sourcefabric.com": [15428], "dev.opera.com": [12252], "www.ohling.com": [11964], "www.coursedirectoryproviderportal.org.uk": [19802], "www.herox.com": [7469], "virginmedia.ie": [18029], "*.openf2.org": [12134], "sallyakins.uk": [2053], "weswap.com": [18322], "hoteltotravel.com": [7700], "cyprus.usembassy.gov": [21879], "www.techpowerup.com": [16305], "www.userecho.com": [17722], "www.eschools.co.uk": [20056], "ncpw.gov": [11267], "via.gp": [2053], "r.wlaowei.com": [2053], "longchang.meituan.com": [10405], "yieldselect.com": [18986], "quiz.isis.poly.edu": [13113], "www.multiply.com": [10889], "0.ssl.nl.eu.org": [2053], "zipy.co.il": [19193], "sohopelesslybroken.com": [14388], "www.escrow.com": [5459], "l.instagram.com": [8331], "pubkey.is": [13429], "desarrollobu.ulpgc.es": [17411], "*.final-score.com": [5933], "qlll.co": [2053], "s.w.org": [18181], "mysmartrend.com": [15227], "ubob.kr": [2053], "keinlink.tk": [2053], "www.publishpartner.com.au": [21223], "bildebase.uninett.no": [17477], "accertify.mzstatic.com": [11041], "hobbyking.com": [7582], "dpms.co": [2053], "tybp.us": [2053], "artsinitiative.osu.edu": [11959], "foamy.co.uk": [2053], "policia.es": [13089], "m.jh.edu": [8582], "tal.gs": [2053], "www.jasig.org": [8670], "by.seno.me": [2053], "people.icq.com": [7837], "frieslandcampina.nl": [2841], "www.commsy.uni-hamburg.de": [17229], "rb.cempal.com": [2053], "eniro.se": [5378], "sberbank.ru": [14560], "bulgr.co": [2053], "admin.pingone.com": [12898], "sf.net": [15423], "admissions.stoke.gov.uk": [21579], "jprew.us": [2053], "www.enaza.ru": [5332], "bva.bund.de": [5833], "cernvm-online.cern.ch": [2632], "www.richannel.org": [14226], "knol.google.com": [6962], "undf.td": [2053], "dbunt.in": [2053], "highered.mheducation.com": [20790], "pirateparty.ca": [12928], "05.imgmini.eastday.com": [5119], "www.zendylabs.com": [19141], "opensource.apple.com": [1160], "pirateparty.ch": [12487], "*.atipso.com": [1350], "www.fightcopyrighttrolls.com": [20107], "hola.org": [7589], "ubbai.me": [2053], "online-free.ml": [2053], "gctool.co": [2053], "su.meituan.com": [10405], "pictshare.net": [12882], "www.kantarworldpanel.com": [8938], "usefedora.com": [21878], "lolware.net": [9732], "www.teracomconsulting.com": [16381], "pt.cloudflare.com": [3344], "ssl.submissiontechnology.co.uk": [15817], "www.app.net": [1141], "imodules.com": [7909], "quandl.com": [13565], "secureimages.capwiz.com": [2885], "m.next.co.uk": [11552], "root.cern.ch": [2631], "securityledger.com": [14774], "dwheeler.com": [4168], "my.vidahost.com": [17971], "theses.lib.sfu.ca": [14893], "pkptest.projects.dm.id.lv": [4117], "x.hdn.ch": [2053], "shellspace.net": [14941], "u.j4n.ch": [2053], "m.rangga.web.id": [2053], "match.meetme.com": [10378], "*.dlnws.com": [4683], "varan.top": [2053], "debian.netcologne.de": [11379], "tsupply.co": [2053], "wknda.co": [2053], "wll.st": [2053], "tpsk.in": [2053], "*.gcmcomputers.com": [6427], "eng.staging.yammer.com": [18952], "iwantmytvmagazine.com": [11162], "gchq-careers.co.uk": [6424], "cultex.us": [2053], "thegrommet.com": [16552], "blog.buttercoin.com": [2521], "esdrs.co": [2053], "*.stumble-upon.com": [15799], "hospital.uic.edu": [17517], "startvaekst.virk.dk": [18032], "gephi.org": [6673], "www.hbbtv.org": [7385], "l.esnt.de": [2053], "www.ybitcoinmagazine.com": [18916], "*.amd.co.at": [961], "mru2.state.gov": [17345], "www.domena.cz": [4760], "cnv.as": [2053], "www.miniatur-wunderland.de": [10611], "hfo-telecom.de": [7187], "www.doncaster.greenparty.org.uk": [7052], "www.milonic.com": [10587], "static1.worldcat.org": [18748], "asset-3.java.net": [8673], "search.jd.com": [8571], "codeigniter.com": [19748], "t-lb.es": [2053], "blog.wearewizards.io": [18325], "e-cegjegyzek.hu": [4947], "www.upforit.com": [825], "sci-hub.bz": [14615], "webmail.crick.ac.uk": [19816], "www.getcashboard.com": [15814], "registrar.osu.edu": [11959], "www.powernotebooks.com": [13230], "www.qwebirc.org": [21246], "www.nichd.nih.gov": [11241], "secure.techxpress.net": [16277], "swiss.com": [15948], "www.beastnode.com": [1788], "3sl.ru": [2053], "casetext.com": [2937], "cdn.gstreamer.com": [6510], "tdic.click": [2053], "haxx.se": [20319], "blogs.com": [14557], "www.dixcart.com": [4672], "docs.apiary.io": [19401], "x.incridea.com": [2053], "releng.netbsd.org": [11375], "gdb.tv": [2053], "www.hideki.hclippr.com": [7180], "myheritage.com.br": [11023], "www.wemineltc.com": [18496], "www.sketchthemes.com": [15153], "ttw.io": [2053], "ml01.ispgateway.de": [8524], "ara.re": [2053], "fr.aldi.lu": [338], "ciscoconnectcloud.com": [3222], "coverageforall.org": [3798], "sve.nyc": [2053], "www.gigadesign.cz": [14834], "smrks.de": [2053], "service.tmall.com": [21748], "on.rdio.com": [2053], "stackapps.com": [15611], "nationalpriorities.org": [11274], "sso.openx.com": [12193], "www.gurulabs.com": [7153], "l.bemka.com": [2053], "on.lomeit.com": [2053], "abaqri.com": [2053], "manchester.ac.uk": [17612], "nickb.cc": [2053], "s2.adformdsp.net": [625], "s.mkt.org.tw": [2053], "seller-taojinbi.taobao.com": [16206], "datastream.thomsonreuters.com": [16650], "gtty.im": [2053], "jdc.jd.com": [8571], "on.ksbw.com": [2053], "secretaria.uniovi.es": [17479], "www.streetartutopia.com": [15776], "www.linuxconfig.org": [20696], "s45.cnzz.com": [3391], "sportdepot.co.il": [21539], "assets.americanrifleman.org": [19382], "blog.nodejitsu.com": [11647], "blog.pythonanywhere.com": [13501], "fssso2.capitalone.com": [2878], "*.ace.advertising.com": [701], "help.virginmedia.com": [18028], "git.io": [6792], "www.ncp-e.com": [20882], "*.wgea.gov.au": [18746], "www.gettyimages.se": [6741], "we-energies.com": [18313], "planning.hillingdon.gov.uk": [7550], "git.linaro.org": [9522], "img.itch.io": [8537], "scndy.me": [2053], "lliquid.us": [2053], "tags.unicefusa.org": [17467], "allunmanaged.com": [881], "odele.eu": [2053], "www.tahoe-lafs.org": [16165], "www.easycruit.com": [5124], "reality.la": [2053], "godv.in": [2053], "science.education.nih.gov": [11241], "novt.tk": [2053], "*.ria.com": [13658], "cdn.stg.comcast.com": [3525], "on.offchi.com": [2053], "vntro.us": [2053], "fses.us": [2053], "rcpl.co": [2053], "adda-sr.org": [306], "ch-open.ch": [19681], "aspi.org.au": [1438], "thebaap.xyz": [2053], "top.de": [16829], "on.ovcorp.com": [2053], "lequipe.avanis.fr": [1480], "ntu.ac.uk": [11161], "east-riding.firmstep.com": [20125], "khl.ru": [20590], "www.html5test.com": [7242], "udistrital.edu.co": [17394], "whdn.williamhill.com": [18615], "downloads.vagrantup.com": [17822], "cis01.immoscout24.ch": [8154], "wbat.es": [2053], "mark.reevoo.*": [13947], "tacar.org": [16037], "el.aegeanair.com": [7041], "store.sonyentertainmentnetwork.com": [15398], "lin.mn": [2053], "d.pr": [4069], "*.passionfruitads.com": [12639], "professionals.bikeability.org.uk": [19532], "www.encrypt.today": [5336], "irlmc.co": [2053], "lgr.bz": [2053], "iter.org": [7992], "cranes.vc": [2053], "c-bd.uk": [2053], "l.tath.am": [2053], "www.nrafamily.org": [20946], "secure-store.nike.com": [11595], "cy.libreoffice.org": [9471], "s122.cnzz.com": [3391], "nwuk.so": [2053], "lieferanten.migrosbank.ch": [10563], "www.abclinuxu.cz": [443], "www.no1366.org": [11635], "www.forum.voidtools.com": [21943], "uninc.agency": [2053], "www.denx.de": [4102], "collectd.org": [3483], "demo.torrentpier.me": [21761], "secure.metoffice.gov.uk": [14733], "takevoucher.com": [21655], "cwe.li": [2053], "inmktg.it": [2053], "www.leader-manager.com": [9354], "mming.jd.com": [8571], "blog.codesion.com": [3441], "*.viddler.com": [17975], "ecpic.gov": [4979], "a2j.ir": [2053], "durls.org": [2053], "static.addtoany.com": [613], "b.ogreslash.com": [2053], "sn.safia.ch": [2053], "hartvoorinternetvrijheid.nl": [7347], "l.sedoni.co": [2053], "rockstargames.com": [14173], "ucw.cz": [17501], "kisd.us": [2053], "www.evozi.com": [5576], "listenerapproved.com": [9612], "www.mensa.org.uk": [10433], "*.louisville.edu": [17606], "mybsw.link": [2053], "archonly.com": [2053], "cmeonline.wustl.edu": [18290], "923wil.com": [2053], "kybernetes.htwk-leipzig.de": [7736], "img.tsn.ua": [21805], "vestbredden.squat.net": [21549], "www.etapestry.com": [5475], "tsp.to": [2053], "tonglu.meituan.com": [10405], "jazz.co": [8684], "*.mencap.org.uk": [10429], "nationalarchives.gov.uk": [11254], "www.stream.cz": [15772], "rusi.org": [13714], "www.yuri.org.uk": [19060], "www.lkd.org.tr": [9240], "tusha.re": [2053], "*.argusleader.com": [1226], "benl.me": [2053], "zzzp.link": [2053], "www.usnwc.edu": [17325], "static.glassdoor.com.au": [20249], "gc.meituan.com": [10405], "bibl.es": [2053], "anonymous-proxy-servers.net": [8772], "widgit-online.com": [22022], "chdw.cc": [2053], "ow.nyon.nl": [2053], "thach.io": [2053], "justshift.it": [2053], "dundermifflin.ideascale.com": [20423], "smart-dsl.net": [21477], "selfhost.de": [14810], "dynamicweb.it": [4924], "rec-registry.gov.au": [13645], "p10.mx": [2053], "social.microsoft.com": [10543], "join.thesun.ie": [21720], "plant-world-seeds.com": [12993], "www.kuix.de": [9183], "images.deciduouspress.com.au": [4360], "images.gutefrage.net": [7157], "srltr.org": [2053], "snna.co": [2053], "sahilp.me": [2053], "media1.break.com": [2351], "gameinformer.com": [6540], "alcoholicdesaster.espiv.net": [20058], "severomorsk.beeline.ru": [1801], "*.bluefly.com": [2200], "opnsg.nl": [2053], "volatilesystems.com": [18119], "www.billettservice.no": [16690], "bugs.xdebug.org": [18853], "kxrz.me": [2053], "plk.tn": [2053], "archo.co": [2053], "to.pivotce.com": [2053], "eurodns.com": [5511], "www.carlsbad.org": [2914], "www.ogr.uillinois.edu": [17238], "js.hs-analytics.net": [7232], "*.bytelove.fr": [2548], "www.dannymekic.com": [4222], "epi.is": [2053], "api.xrel.to": [18892], "c-mid.live.com": [9644], "itsalm1.swisscom.com": [15951], "blog.vandyke.com": [17842], "op5.com": [12101], "netstat.green.ch": [20280], "migrol-heizoel.ch": [10562], "public01.milton-keynes.gov.uk": [10588], "medistack.com": [10309], "crypto.graphics": [3923], "weber.ly": [2053], "123rf.com": [33], "www.ltradio.com": [9259], "barnebys.co.uk": [1723], "bank.demdex.com": [4428], "img.bizrate-images.com": [2086], "koor.in": [2053], "im.dingtalk.com": [19923], "campaign.usc.edu": [17564], "lifars.com": [9489], "webfaction.com": [18360], "ci.openccc.net": [12123], "thehope.dm": [2053], "webmail.mayfirst.org": [10266], "www.focus.ua": [20139], "kn-mp.com": [2053], "dmbox.pro": [2053], "m.roblox.com": [14156], "image.richrelevance.com": [14104], "cart-products.ifixit.net": [7873], "*.madisonlogic.com": [10008], "aix.li": [2053], "12dj.tk": [2053], "eo-sso-idp.eo.esa.int": [5535], "www.epe.admin.cam.ac.uk": [2821], "www.overclockers.at": [12369], "ccw.li": [2053], "*.northerntool.com": [11699], "ics-cert.us-cert.gov": [17705], "pe.meituan.com": [10405], "*.matrixgroup.net": [10243], "fstvnt.me": [2053], "app.codesion.com": [3441], "go.stijn.vc": [2053], "3kbhkort.kk.dk": [8883], "sitin.co": [2053], "ekaterinburg.beeline.ru": [1801], "lgf.bz": [2053], "*.socallinuxexpo.org": [15294], "www.zooku.ro": [19218], "public.wolverhampton.gov.uk": [18705], "0.qrkx.net": [2053], "turl.jp-net.us": [2053], "www.tizen.org": [16778], "mono.at": [2053], "simplerea.ch": [2053], "incircle.com": [16106], "emailselfdefense.fsf.org": [5713], "lobby.cloudtrax.com": [3356], "arc.plymouth.ac.uk": [13055], "*.totalinvestor.co.uk": [16876], "js.live.net": [9643], "baoji.meituan.com": [10405], "mozillians.org": [10853], "www.intellipoker.bg": [20472], "www.pjm.com": [12463], "reader.yuri-ism.com": [19059], "info.1688.com": [44], "fh.meituan.com": [10405], "munchkin.marketo.net": [10179], "mybb.com": [11013], "smllp.co": [2053], "shopfira.co": [2053], "www.courseevalum.umd.edu": [17549], "www.demandstudios.com": [4422], "ral1stnaz.org": [2053], "archive.c3s.cc": [2558], "teksyndicate.com": [16321], "www.oodaloop.com": [11851], "media.ccc.de": [2596], "midlothian.objective.co.uk": [20979], "insd.io": [2053], "groceryserver.com": [7087], "hisa.ac": [2053], "*.kau.se": [8862], "kicstrt.it": [2053], "www.saba.com": [21353], "www.feedjit.com": [5852], "help.habbo.fi": [7255], "scal.me": [2053], "my.serverbase.ch": [21415], "*.ep.elitem.net": [5271], "www.youtube.com.au": [19016], "l.kusu.ma": [2053], "tally.upsideout.com": [17687], "decipherinc.com": [4361], "*.cleverbridge.com": [3299], "fpjintel.com": [5703], "www.plannedparenthood.org": [12991], "www.decryptedmatrix.com": [4368], "whz.li": [2053], "paystand.me": [2053], "socialsense.neighbourhoodalert.co.uk": [20884], "sociologia.uniovi.es": [17479], "link.jobhy.pe": [2053], "opehs.tanx.com": [21661], "letournee.com": [2053], "jobs.www.uprr.com": [21870], "g1cu.com": [2053], "win4u.ca": [2053], "sc8.me": [2053], "static.returnpath.net": [14067], "www.tandfonline.com": [8267], "got.cr": [2053], "www.oecd.org": [11816], "benmarshall.me": [1825], "jmrt.in": [2053], "oas.udistrital.edu.co": [17394], "status.mailgun.com": [10049], "kb.kixbox.ru": [2053], "www.projects.ed.ac.uk": [5168], "subscribe.dp.ru": [19955], "www.senat.gov.pl": [14817], "karaoke.spiel.tivi.de": [22127], "dw-1.net": [2053], "cdnpi.pe": [2983], "u.ivoilic.com": [2053], "l.sumtips.com": [2053], "cm.htw-berlin.de": [7246], "lh3.google.com.*": [6965], "www1.lowes.com": [9800], "connections.lsbu.ac.uk": [9252], "s.codepen.io": [3410], "goo2.ir": [2053], "registration.xenegrade.com": [18863], "rsmart.ly": [2053], "sso.origin.com": [12309], "percona.com": [12769], "*.chillicothegazette.com": [3136], "clicktracks.com": [9851], "www.glassesusa.com": [6825], "apps.sourceforge.net": [15423], "my.xmarks.com": [18882], "chrise.me": [2053], "bugzilla.mozdev.org": [10836], "j.pinfads.com": [2053], "de.zenmate.com": [19133], "*.domainsponsor.com": [4748], "theoasisfe.st": [2053], "rupen.me": [2053], "www.kaggle.com": [8917], "vme.ga": [2053], "list.tmall.com": [21748], "www.ian.com": [8040], "www.debianforum.de": [4354], "www.selfharm.co.uk": [21404], "namebrightstatic.com": [11206], "www.spontex.org": [15538], "commentarymagazine.com": [3543], "a.d00.it": [2053], "www.ultrasurf.us": [17421], "polrev.us": [2053], "b.technotic.ca": [2053], "link.wsm.eu": [2053], "www.zenmate.it": [19133], "www.ctovision.com": [2743], "asset-9.soupcdn.com": [15416], "www.zenmate.is": [19133], "mail.achelem.org": [512], "www.zenmate.in": [19133], "wiredforchange.com": [14492], "dkh.cr": [2053], "wggl.co": [2053], "ghd.tm": [2053], "drcyl.us": [2053], "mengler.nl": [2053], "anm.li": [2053], "liaoyuan.meituan.com": [10405], "stormpath.com": [15756], "impsbl.es": [2053], "viveris.fr": [18091], "www.ehrensenf.de": [5221], "okpartypix.com": [6647], "avatars.motherlessmedia.com": [10796], "api.digitalocean.com": [4578], "we.offroad.bz": [2053], "www.webhostlist.de": [18419], "css.cdn.static.malwarebytes.org": [10093], "www.opencorporates.com": [12129], "torrentz.in": [16863], "eric.mx": [2053], "www.lidlcommunity.co.uk": [20683], "easyvoicebiometrics.com": [5132], "craigsilst.xyz": [2053], "www.tue.nl": [16129], "ethack.org": [5482], "arsenalnews.net": [9030], "t7.qlogo.cn": [13534], "myaccount.wigan.gov.uk": [18585], "www.onguardonline.gov": [12009], "lab.email.seznam.cz": [14891], "www.weebly.com": [18473], "sme.hdfcbank.com": [7389], "nsbank.me": [2053], "devk.ms": [2053], "xingren.jd.com": [8571], "ptts.co": [2053], "secure.sparklabs.com": [15469], "flowdown.tk": [2053], "m.ohmyiklan.com": [2053], "www.trackandtrace.courierpost.co.nz": [3784], "p.tsao.in": [2053], "1na.eu": [2053], "wdglink.to": [2053], "www.suse.com": [14435], "image.mindfactory.de": [10599], "slp3.somerset.gov.uk": [15376], "secure.elcomsoft.com": [5246], "ffw.tropos.io": [2053], "www.siteground.com": [15112], "www.sptag1.com": [15574], "www.popcorntime.sh": [21170], "nuts.gitbook.com": [6794], "s-3.com": [14294], "gettyimages.pt": [6741], "storage.proboards.com": [13338], "osopor.to": [2053], "keeler.xyz": [2053], "smialy.cf": [2053], "svn.opendnssec.org": [11130], "ssl.xrel.to": [18892], "scribit.com": [14656], "centralops.net": [19670], "itsm.polyu.edu.hk": [13116], "pgs.fm": [2053], "help.vodafone.co.uk": [18106], "forum.bitmain.com": [2054], "cloudron.io": [3373], "s5.uicdn.net": [17236], "www.blockspring.com": [2151], "sutr.co": [2053], "ftp.heanet.ie": [7406], "content.longtailvideo.com": [9752], "password.1and1.co.uk": [63], "mdns.verisign.com": [17915], "firefox.com": [5974], "mageia.org": [10014], "www.scandinavianphoto.fi": [14572], "go-les.com": [2053], "archive.data.jhu.edu": [16562], "o.madridismo.de": [2053], "itis.notsola.me": [2053], "www.douyu.com": [4813], "sharedservices.dhs.gov": [4109], "mylily.co": [2053], "ringrevenue.com": [14125], "lk.gtnet.ru": [20289], "events.shirazlug.ir": [14953], "campact.de": [2835], "wheretobuy.seagate.com": [14679], "r.astrea.cat": [2053], "safeweb.norton.com": [11703], "status.github.com": [6801], "www.lds.sachsen.de": [14454], "direct.ilovefreegle.org": [8037], "flexport.com": [6029], "hosted-ci.com": [20362], "kevinjmorris.uk": [2053], "shanghai.madametussauds.com": [10002], "torrentpier.me": [21761], "*.dataminelab.com": [4261], "whonix.org": [18564], "www.oron.com": [12315], "itsmalachi.me": [2053], "www.gigantic.com": [6771], "dae.men": [2053], "myopenid.com": [10962], "l.caelus.org": [2053], "www.bandcamp.mu": [1683], "www.codemoji.org": [3434], "www.aaulan.dk": [438], "crowdrise.com": [3898], "sac.se": [14453], "on.kcci.com": [2053], "fmul.us": [2053], "www.afd.calpoly.edu": [2806], "enhanced.rsbac.org": [13689], "www.disruptionlab.org": [4657], "goals.ar.gy": [1228], "download.documentfoundation.org": [16487], "www.ovva.tv": [21049], "oudesite.uvt.nl": [16716], "3gwc-kbhkort.kk.dk": [8883], "stsfed.login.vu.nl": [17813], "go.celebrir.com": [2053], "power.freenet.de": [6300], "pl.piliapp.com": [12887], "www.nordstromrack.com": [11676], "ueg.ac": [2053], "wbur.fm": [2053], "www.rhinosoft.com": [14095], "*.sched.org": [14589], "fidoalliance.org": [5685], "sc0.rgstatic.net": [13655], "replicant.us": [14014], "formacionpermanente.cursosvirtuales.uned.es": [17446], "pc.115.com": [25], "jpoteet.us": [2053], "www.apigee.com": [1132], "grindr.me": [2053], "magadanskaya-obl.beeline.ru": [1801], "plagiarism.arts.cornell.edu": [3744], "shareconnect.com": [14907], "*.refinedads.com": [13949], "wm4.pacific.net.au": [12525], "onsecure.gov.au": [12013], "piratebay.usbypass.xyz": [21771], "dlr.cm": [2053], "osufoundation.org": [12302], "*.uni-passau.de": [17616], "infy.com": [2053], "nws.upc-cablecom.ch": [21865], "amnesty.org.pl": [1006], "d.ive.tw": [2053], "doc4.it": [2053], "gdata.nl": [6410], "ikihean.com.ve": [2053], "url.tinjaw.net": [2053], "et04.xhcdn.com": [18815], "sprtndgtl.ca": [2053], "rewrite.ca.com": [2569], "vidble.com": [17973], "gsagt.ch": [2053], "robm.cc": [2053], "lasv.us": [2053], "www.creatavist.com": [3840], "flixbus.de": [6047], "nars.osu.edu": [11959], "flixbus.dk": [6047], "okfn.org": [12215], "static2.twilio.com": [17152]}} \ 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
index 0fdc765..773b6ee 100644
--- 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
@@ -81,11 +81,8 @@ httpsEverywhere.toolbarButton = {
showHttpNowhere ? 'true' : 'false');
}
- // make sure UI is set depending on whether HTTPS-E is enabled
- toggleEnabledUI();
-
- // show ruleset counter when a tab is changed
- tb.updateRulesetsApplied();
+ // Make icon state match current status and tab.
+ tb.updateIconState();
// There is no gBrowser object on Android. Instead Android uses the
// window.BrowserApp object:
@@ -93,7 +90,7 @@ httpsEverywhere.toolbarButton = {
if (gBrowser) {
gBrowser.tabContainer.addEventListener(
'TabSelect',
- tb.updateRulesetsApplied,
+ tb.updateIconState,
false
);
@@ -108,7 +105,7 @@ httpsEverywhere.toolbarButton = {
(aFlags & CI.nsIWebProgressListener.STATE_STOP) &&
aWebProgress.isTopLevel) {
HTTPSEverywhere.log(DBUG, "Got on state change");
- tb.updateRulesetsApplied();
+ tb.updateIconState();
}
}
};
@@ -144,7 +141,7 @@ httpsEverywhere.toolbarButton = {
var hint = nBox.appendNotification(
msg,
'https-everywhere',
- 'chrome://https-everywhere/skin/https-everywhere-24.png',
+ 'chrome://https-everywhere/skin/icon-active-24.png',
nBox.PRIORITY_WARNING_MEDIUM,
[
{ accessKey: 'F',
@@ -171,18 +168,15 @@ httpsEverywhere.toolbarButton = {
/**
* Update the rulesets applied counter for the current tab.
*/
- updateRulesetsApplied: function() {
+ 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();
- if (!enabled || !showCounter) {
- toolbarbutton.setAttribute('rulesetsApplied', 0);
- return;
- }
var browser = httpsEverywhere.toolbarButton.selectedBrowser();
if (!browser) {
@@ -208,8 +202,26 @@ httpsEverywhere.toolbarButton = {
}
}
- toolbarbutton.setAttribute('rulesetsApplied', counter);
- HTTPSEverywhere.log(INFO, 'Setting icon counter to: ' + 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 + ']');
},
/**
@@ -223,9 +235,8 @@ httpsEverywhere.toolbarButton = {
var prefExists = sp.getPrefType(tb.COUNTER_PREF);
- // the default behavior is to show the rulesets applied counter.
- // if no preference exists (default) or its enabled, show the counter
- return !prefExists || sp.getBoolPref(tb.COUNTER_PREF);
+ // the default behavior is to hide the rulesets applied counter.
+ return prefExists && sp.getBoolPref(tb.COUNTER_PREF);
},
/**
@@ -250,7 +261,7 @@ httpsEverywhere.toolbarButton = {
var showCounter = tb.shouldShowCounter();
sp.setBoolPref(tb.COUNTER_PREF, !showCounter);
- tb.updateRulesetsApplied();
+ tb.updateIconState();
},
/**
@@ -258,13 +269,6 @@ httpsEverywhere.toolbarButton = {
*/
toggleHttpNowhere: function() {
HTTPSEverywhere.toggleHttpNowhere();
- var tb = httpsEverywhere.toolbarButton;
- var showHttpNowhere = tb.shouldShowHttpNowhere();
-
- // Change icon color to red if HTTP nowhere is enabled
- var toolbarbutton = document.getElementById('https-everywhere-button');
- toolbarbutton.setAttribute('http_nowhere',
- showHttpNowhere ? 'true' : 'false');
reload_window();
},
@@ -382,11 +386,7 @@ function toggleEnabledUI() {
items[i].hidden = !enabled;
}
- // Change icon depending on enabled state
- var toolbarbutton = document.getElementById('https-everywhere-button');
- if (toolbarbutton) {
- toolbarbutton.setAttribute('status', enabled ? 'enabled' : 'disabled');
- }
+ httpsEverywhere.toolbarButton.updateIconState();
}
function open_in_tab(url) {
@@ -428,7 +428,7 @@ function migratePreferences(gBrowser) {
nBox.appendNotification(
msg,
'https-everywhere-migration0',
- 'chrome://https-everywhere/skin/https-everywhere-24.png',
+ 'chrome://https-everywhere/skin/icon-active-24.png',
nBox.PRIORITY_WARNING_MEDIUM
);
}
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
index 2736b66..58eb69b 100644
--- 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
@@ -37,6 +37,7 @@
oncontextmenu="this.open = true;"
oncommand="this.open = true;"
buttonstyle="pictures"
+ state="inactive"
type="menu"
rulesetsApplied="0">
@@ -47,7 +48,7 @@
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.blockHttpRequests;"
+ <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;"