diff options
102 files changed, 4347 insertions, 2415 deletions
diff --git a/application/basilisk/base/content/tabbrowser.xml b/application/basilisk/base/content/tabbrowser.xml index 76ea5d167..043838020 100644 --- a/application/basilisk/base/content/tabbrowser.xml +++ b/application/basilisk/base/content/tabbrowser.xml @@ -2101,6 +2101,7 @@ var aRelatedBrowser; var aOriginPrincipal; var aOpener; + var aSkipBackgroundNotify; if (arguments.length == 2 && typeof arguments[1] == "object" && !(arguments[1] instanceof Ci.nsIURI)) { @@ -2123,6 +2124,7 @@ aRelatedBrowser = params.relatedBrowser; aOriginPrincipal = params.originPrincipal; aOpener = params.opener; + aSkipBackgroundNotify = params.skipBackgroundNotify; } // if we're adding tabs, we're past interrupt mode, ditch the owner @@ -2151,6 +2153,11 @@ t.setAttribute("crop", "end"); t.setAttribute("onerror", "this.removeAttribute('image');"); + + if (aSkipBackgroundNotify) { + t.setAttribute("skipbackgroundnotify", true); + } + t.className = "tabbrowser-tab"; this.tabContainer._unlockTabSizing(); @@ -5932,7 +5939,11 @@ this._fillTrailingGap(); this._handleTabSelect(); } else { - this._notifyBackgroundTab(tab); + if (tab.hasAttribute("skipbackgroundnotify")) { + tab.removeAttribute("skipbackgroundnotify"); + } else { + this._notifyBackgroundTab(tab); + } } // XXXmano: this is a temporary workaround for bug 345399 diff --git a/application/basilisk/components/sessionstore/SessionStore.jsm b/application/basilisk/components/sessionstore/SessionStore.jsm index e23b205fc..b599bc162 100644 --- a/application/basilisk/components/sessionstore/SessionStore.jsm +++ b/application/basilisk/components/sessionstore/SessionStore.jsm @@ -3113,7 +3113,8 @@ var SessionStoreInternal = { tabbrowser.addTab("about:blank", {skipAnimation: true, forceNotRemote, - userContextId}); + userContextId, + skipBackgroundNotify: true}); // If we inserted a new tab because the userContextId didn't match with the // open tab, even though `t < openTabCount`, we need to remove that open tab diff --git a/application/basilisk/components/sessionstore/TabAttributes.jsm b/application/basilisk/components/sessionstore/TabAttributes.jsm index 8a29680f4..c8e6d9744 100644 --- a/application/basilisk/components/sessionstore/TabAttributes.jsm +++ b/application/basilisk/components/sessionstore/TabAttributes.jsm @@ -14,7 +14,10 @@ this.EXPORTED_SYMBOLS = ["TabAttributes"]; // 'pending' is used internal by sessionstore and managed accordingly. // 'iconLoadingPrincipal' is same as 'image' that it should be handled by // using the gBrowser.getIcon()/setIcon() methods. -const ATTRIBUTES_TO_SKIP = new Set(["image", "muted", "pending", "iconLoadingPrincipal"]); +// 'skipbackgroundnotify' is used internal by tabbrowser.xml. +const ATTRIBUTES_TO_SKIP = new Set(["image", "muted", "pending", + "iconLoadingPrincipal", + "skipbackgroundnotify"]); // A set of tab attributes to persist. We will read a given list of tab // attributes when collecting tab data and will re-set those attributes when diff --git a/application/palemoon/base/content/browser.js b/application/palemoon/base/content/browser.js index c7a2633d4..4167f186c 100644 --- a/application/palemoon/base/content/browser.js +++ b/application/palemoon/base/content/browser.js @@ -53,13 +53,20 @@ var gEditUIVisible = true; // Smart getter for the findbar. If you don't wish to force the creation of // the findbar, check gFindBarInitialized first. - -this.__defineGetter__("gFindBar", function() { - return window.gBrowser.getFindBar(); -}); - -this.__defineGetter__("gFindBarInitialized", function() { - return window.gBrowser.isFindBarInitialized(); +var gFindBarInitialized = false; +XPCOMUtils.defineLazyGetter(window, "gFindBar", function() { + let XULNS = "http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"; + let findbar = document.createElementNS(XULNS, "findbar"); + findbar.id = "FindToolbar"; + + let browserBottomBox = document.getElementById("browser-bottombox"); + browserBottomBox.insertBefore(findbar, browserBottomBox.firstChild); + + // Force a style flush to ensure that our binding is attached. + findbar.clientTop; + findbar.browser = gBrowser.mCurrentBrowser; + window.gFindBarInitialized = true; + return findbar; }); XPCOMUtils.defineLazyModuleGetter(this, "BrowserUtils", @@ -2414,11 +2421,18 @@ function BrowserOnAboutPageLoad(doc) { /* === about:home === */ if (doc.documentURI.toLowerCase() == "about:home") { - let ss = Components.classes["@mozilla.org/browser/sessionstore;1"]. - getService(Components.interfaces.nsISessionStore); - if (ss.canRestoreLastSession && - !PrivateBrowsingUtils.isWindowPrivate(window)) - doc.getElementById("launcher").setAttribute("session", "true"); + if (!PrivateBrowsingUtils.isWindowPrivate(window)) { + let wrapper = {}; + Cu.import("resource:///modules/sessionstore/SessionStore.jsm", wrapper); + let ss = wrapper.SessionStore; + ss.promiseInitialized.then(function() { + if (ss.canRestoreLastSession) { + doc.getElementById("launcher").setAttribute("session", "true"); + } + }).then(null, function onError(x) { + Cu.reportError("Error in SessionStore init while processing 'about:home': " + x); + }); + } // Inject search engine and snippets URL. let docElt = doc.documentElement; diff --git a/application/palemoon/base/content/tabbrowser.xml b/application/palemoon/base/content/tabbrowser.xml index d5735149e..93818e290 100644 --- a/application/palemoon/base/content/tabbrowser.xml +++ b/application/palemoon/base/content/tabbrowser.xml @@ -128,10 +128,6 @@ false </field> - <field name="_lastFindValue"> - "" - </field> - <property name="_numPinnedTabs" readonly="true"> <getter><![CDATA[ for (var i = 0; i < this.tabs.length; i++) { @@ -158,43 +154,6 @@ ]]></getter> </property> - <method name="isFindBarInitialized"> - <parameter name="aTab"/> - <body><![CDATA[ - return (aTab || this.selectedTab)._findBar != undefined; - ]]></body> - </method> - - <method name="getFindBar"> - <parameter name="aTab"/> - <body><![CDATA[ - if (!aTab) - aTab = this.selectedTab; - - if (aTab._findBar) - return aTab._findBar; - - let findBar = document.createElementNS(this.namespaceURI, "findbar"); - let browser = this.getBrowserForTab(aTab); - let browserContainer = this.getBrowserContainer(browser); - browserContainer.appendChild(findBar); - - // Force a style flush to ensure that our binding is attached. - findBar.clientTop; - - findBar.browser = browser; - findBar._findField.value = this._lastFindValue; - - aTab._findBar = findBar; - - let event = document.createEvent("Events"); - event.initEvent("TabFindInitialized", true, false); - aTab.dispatchEvent(event); - - return findBar; - ]]></body> - </method> - <method name="updateWindowResizers"> <body><![CDATA[ if (!window.gShowPageResizers) @@ -1082,6 +1041,11 @@ // Bug 666809 - SecurityUI support for e10s var webProgress = this.mCurrentBrowser.webProgress; var securityUI = this.mCurrentBrowser.securityUI; + + // Update global findbar with new content browser + if (gFindBarInitialized) { + gFindBar.browser = newBrowser; + } this._callProgressListeners(null, "onLocationChange", [webProgress, null, loc, 0], true, @@ -1104,11 +1068,9 @@ this.mCurrentTab.removeAttribute("unread"); this.selectedTab.lastAccessed = Date.now(); - let oldFindBar = oldTab._findBar; - if (oldFindBar && - oldFindBar.findMode == oldFindBar.FIND_NORMAL && - !oldFindBar.hidden) - this._lastFindValue = oldFindBar._findField.value; + // Bug 666816 - TypeAheadFind support for e10s + if (!gMultiProcessBrowser) + this._fastFind.setDocShell(this.mCurrentBrowser.docShell); this.updateTitlebar(); @@ -1159,11 +1121,6 @@ // Adjust focus oldBrowser._urlbarFocused = (gURLBar && gURLBar.focused); - if (this.isFindBarInitialized(oldTab)) { - let findBar = this.getFindBar(oldTab); - oldTab._findBarFocused = (!findBar.hidden && - findBar._findField.getAttribute("focused") == "true"); - } do { // When focus is in the tab bar, retain it there. if (document.activeElement == oldTab) { @@ -1199,12 +1156,11 @@ } } - // Focus the find bar if it was previously focused for that tab. - if (gFindBarInitialized && !gFindBar.hidden && - this.selectedTab._findBarFocused) { - gFindBar._findField.focus(); + // If the find bar is focused, keep it focused. + if (gFindBarInitialized && + !gFindBar.hidden && + gFindBar.getElement("findbar-textbox").getAttribute("focused") == "true") break; - } // Otherwise, focus the content area. let fm = Cc["@mozilla.org/focus-manager;1"].getService(Ci.nsIFocusManager); @@ -1473,6 +1429,7 @@ var aRelatedToCurrent; var aSkipAnimation; var aOriginPrincipal; + var aSkipBackgroundNotify; if (arguments.length == 2 && typeof arguments[1] == "object" && !(arguments[1] instanceof Ci.nsIURI)) { @@ -1488,6 +1445,7 @@ aRelatedToCurrent = params.relatedToCurrent; aSkipAnimation = params.skipAnimation; aOriginPrincipal = params.originPrincipal; + aSkipBackgroundNotify = params.skipBackgroundNotify; } // if we're adding tabs, we're past interrupt mode, ditch the owner @@ -1511,6 +1469,11 @@ t.setAttribute("crop", "end"); t.setAttribute("validate", "never"); //PMed t.setAttribute("onerror", "this.removeAttribute('image');"); + + if (aSkipBackgroundNotify) { + t.setAttribute("skipbackgroundnotify", true); + } + t.className = "tabbrowser-tab"; this.tabContainer._unlockTabSizing(); @@ -1622,6 +1585,7 @@ this.mTabListeners[position] = tabListener; this.mTabFilters[position] = filter; + b._fastFind = this.fastFind; b.droppedLinkHandler = handleDroppedLink; // If we just created a new tab that loads the default @@ -2310,17 +2274,6 @@ this._swapBrowserDocShells(aOurTab, otherBrowser); } - // Handle findbar data (if any) - let otherFindBar = aOtherTab._findBar; - if (otherFindBar && - otherFindBar.findMode == otherFindBar.FIND_NORMAL) { - let ourFindBar = this.getFindBar(aOurTab); - ourFindBar._findField.value = otherFindBar._findField.value; - if (!otherFindBar.hidden) { - ourFindBar.onFindCommand(); - } - } - // Finish tearing down the tab that's going away. remoteBrowser._endRemoveTab(aOtherTab); @@ -2873,6 +2826,21 @@ onget="return this.mCurrentBrowser.currentURI;" readonly="true"/> + <field name="_fastFind">null</field> + <property name="fastFind" + readonly="true"> + <getter> + <![CDATA[ + if (!this._fastFind) { + this._fastFind = Components.classes["@mozilla.org/typeaheadfind;1"] + .createInstance(Components.interfaces.nsITypeAheadFind); + this._fastFind.init(this.docShell); + } + return this._fastFind; + ]]> + </getter> + </property> + <field name="_lastSearchString">null</field> <field name="_lastSearchHighlight">false</field> @@ -3176,28 +3144,6 @@ window.focus(); break; } - case "Findbar:Keypress": - let tab = this.getTabForBrowser(browser); - // If the find bar for this tab is not yet alive, only initialize - // it if there's a possibility FindAsYouType will be used. - // There's no point in doing it for most random keypresses. - if (!this.isFindBarInitialized(tab) && - aMessage.data.shouldFastFind) { - let shouldFastFind = this._findAsYouType; - if (!shouldFastFind) { - // Please keep in sync with toolkit/content/widgets/findbar.xml - const FAYT_LINKS_KEY = "'"; - const FAYT_TEXT_KEY = "/"; - let charCode = aMessage.data.fakeEvent.charCode; - let key = charCode ? String.fromCharCode(charCode) : null; - shouldFastFind = key == FAYT_LINKS_KEY || key == FAYT_TEXT_KEY; - } - if (shouldFastFind) { - // Make sure we return the result. - return this.getFindBar(tab).receiveMessage(aMessage); - } - } - break; } ]]></body> </method> @@ -3264,11 +3210,6 @@ this.mCurrentBrowser); } messageManager.addMessageListener("DOMWebNotificationClicked", this); - - // To correctly handle keypresses for potential FindAsYouType, while - // the tab's find bar is not yet initialized. - this._findAsYouType = Services.prefs.getBoolPref("accessibility.typeaheadfind"); - messageManager.addMessageListener("Findbar:Keypress", this); ]]> </constructor> @@ -3523,7 +3464,6 @@ tab.setAttribute("onerror", "this.removeAttribute('image');"); this.adjustTabstrip(); - Services.prefs.addObserver("accessibility.typeaheadfind", this._prefObserver, false); Services.prefs.addObserver("browser.tabs.", this._prefObserver, false); window.addEventListener("resize", this, false); window.addEventListener("load", this, false); @@ -3539,7 +3479,6 @@ <destructor> <![CDATA[ - Services.prefs.removeObserver("accessibility.typeaheadfind", this._prefObserver); Services.prefs.removeObserver("browser.tabs.", this._prefObserver); ]]> </destructor> @@ -3605,9 +3544,6 @@ observe: function (subject, topic, data) { switch (data) { - case "accessibility.typeaheadfind": - this._findAsYouType = Services.prefs.getBoolPref(data); - break; case "browser.tabs.closeButtons": this.tabContainer.mCloseButtons = Services.prefs.getIntPref(data); this.tabContainer.adjustTabstrip(); @@ -4214,7 +4150,11 @@ this._fillTrailingGap(); this._handleTabSelect(); } else { - this._notifyBackgroundTab(tab); + if (tab.hasAttribute("skipbackgroundnotify")) { + tab.removeAttribute("skipbackgroundnotify"); + } else { + this._notifyBackgroundTab(tab); + } } // XXXmano: this is a temporary workaround for bug 345399 diff --git a/application/palemoon/components/preferences/advanced.js b/application/palemoon/components/preferences/advanced.js index 0803496fe..aab58b386 100644 --- a/application/palemoon/components/preferences/advanced.js +++ b/application/palemoon/components/preferences/advanced.js @@ -455,7 +455,7 @@ var gAdvancedPane = { var list = document.getElementById("offlineAppsList"); var item = list.selectedItem; var origin = item.getAttribute("origin"); - var principal = BrowserUtils.principalFromOrigin(origin); + var principal = Services.scriptSecurityManager.createCodebasePrincipalFromOrigin(origin); var prompts = Components.classes["@mozilla.org/embedcomp/prompt-service;1"] .getService(Components.interfaces.nsIPromptService); @@ -474,7 +474,7 @@ var gAdvancedPane = { // get the permission var pm = Components.classes["@mozilla.org/permissionmanager;1"] .getService(Components.interfaces.nsIPermissionManager); - var perm = pm.getPermissionObject(principal, "offline-app"); + var perm = pm.getPermissionObject(principal, "offline-app", true); if (perm) { // clear offline cache entries try { diff --git a/application/palemoon/components/preferences/jar.mn b/application/palemoon/components/preferences/jar.mn index 2e2949306..47909ddc9 100644 --- a/application/palemoon/components/preferences/jar.mn +++ b/application/palemoon/components/preferences/jar.mn @@ -24,6 +24,7 @@ browser.jar: content/browser/preferences/languages.js * content/browser/preferences/main.xul content/browser/preferences/main.js + content/browser/preferences/newtaburl.js content/browser/preferences/permissions.xul * content/browser/preferences/permissions.js * content/browser/preferences/preferences.xul diff --git a/application/palemoon/components/preferences/main.xul b/application/palemoon/components/preferences/main.xul index 7634056eb..bb51947b0 100644 --- a/application/palemoon/components/preferences/main.xul +++ b/application/palemoon/components/preferences/main.xul @@ -96,6 +96,7 @@ type="autocomplete" autocompletesearch="history" onsyncfrompreference="return gMainPane.syncFromHomePref();" onsynctopreference="return gMainPane.syncToHomePref(this.value);" + oninput="gNewtabUrl.writeNewtabUrl(null, this.value);" placeholder="&abouthome.pageTitle;" preference="browser.startup.homepage"/> </hbox> @@ -103,15 +104,15 @@ <button label="" accesskey="&useCurrentPage.accesskey;" label1="&useCurrentPage.label;" label2="&useMultiple.label;" - oncommand="gMainPane.setHomePageToCurrent();" + oncommand="gMainPane.setHomePageToCurrent(); gNewtabUrl.writeNewtabUrl();" id="useCurrent" preference="pref.browser.homepage.disable_button.current_page"/> <button label="&chooseBookmark.label;" accesskey="&chooseBookmark.accesskey;" - oncommand="gMainPane.setHomePageToBookmark();" + oncommand="gMainPane.setHomePageToBookmark(); gNewtabUrl.writeNewtabUrl();" id="useBookmark" preference="pref.browser.homepage.disable_button.bookmark_page"/> <button label="&restoreDefault.label;" accesskey="&restoreDefault.accesskey;" - oncommand="gMainPane.restoreDefaultHomePage();" + oncommand="gMainPane.restoreDefaultHomePage(); gNewtabUrl.writeNewtabUrl();" id="restoreDefaultHomePage" preference="pref.browser.homepage.disable_button.restore_default"/> </hbox> diff --git a/application/palemoon/components/preferences/newtaburl.js b/application/palemoon/components/preferences/newtaburl.js new file mode 100644 index 000000000..ac0eec1c5 --- /dev/null +++ b/application/palemoon/components/preferences/newtaburl.js @@ -0,0 +1,68 @@ +/* This Source Code Form is subject to the terms of the Mozilla Public
+ * License, v. 2.0. If a copy of the MPL was not distributed with this
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
+
+var gNewtabUrl = {
+ /**
+ * Writes browser.newtab.url with the appropriate value.
+ * If the choice is "my home page", get and sanitize
+ * the browser home page URL to make it suitable for newtab use.
+ *
+ * Called from prefwindow ondialogaccept in preferences.xul,
+ * newtabPage oncommand in tabs.xul, browserHomePage oninput,
+ * useCurrent, useBookmark and restoreDefaultHomePage oncommand
+ * in main.xul to consider instantApply.
+ */
+ writeNewtabUrl: function(newtabUrlChoice, browserHomepageUrl) {
+ try {
+ if (newtabUrlChoice) {
+ if (Services.prefs.getBoolPref("browser.preferences.instantApply")) {
+ newtabUrlChoice = parseInt(newtabUrlChoice);
+ } else {
+ return;
+ }
+ } else {
+ newtabUrlChoice = Services.prefs.getIntPref("browser.newtab.choice");
+ }
+ if (browserHomepageUrl || browserHomepageUrl == "") {
+ if (Services.prefs.getBoolPref("browser.preferences.instantApply")) {
+ if (browserHomepageUrl == "") {
+ browserHomepageUrl = "about:home";
+ }
+ } else {
+ return;
+ }
+ } else {
+ browserHomepageUrl = Services.prefs.getComplexValue("browser.startup.homepage",
+ Components.interfaces.nsIPrefLocalizedString).data;
+ }
+ let newtabUrlPref = Services.prefs.getCharPref("browser.newtab.url");
+ switch (newtabUrlChoice) {
+ case 1:
+ newtabUrlPref = "about:logopage";
+ break;
+ case 2:
+ newtabUrlPref = Services.prefs.getDefaultBranch("browser.")
+ .getComplexValue("startup.homepage",
+ Components.interfaces.nsIPrefLocalizedString).data;
+ break;
+ case 3:
+ // If url is a pipe-delimited set of pages, just take the first one.
+ let newtabUrlSanitizedPref=browserHomepageUrl.split("|")[0];
+ // XXX: do we need extra sanitation here, e.g. for invalid URLs?
+ Services.prefs.setCharPref("browser.newtab.myhome", newtabUrlSanitizedPref);
+ newtabUrlPref = newtabUrlSanitizedPref;
+ break;
+ case 4:
+ newtabUrlPref = "about:newtab";
+ break;
+ default:
+ // In case of any other value it's a custom URL, consider instantApply.
+ if (this.newtabPageCustom) {
+ newtabUrlPref = this.newtabPageCustom;
+ }
+ }
+ Services.prefs.setCharPref("browser.newtab.url",newtabUrlPref);
+ } catch(e) { console.error(e); }
+ }
+};
diff --git a/application/palemoon/components/preferences/preferences.xul b/application/palemoon/components/preferences/preferences.xul index 2f00b960a..a1d9c8cf7 100644 --- a/application/palemoon/components/preferences/preferences.xul +++ b/application/palemoon/components/preferences/preferences.xul @@ -56,10 +56,10 @@ #endif #endif onunload="if (typeof gSecurityPane != 'undefined') gSecurityPane.syncAddonSecurityLevel();" - ondialogaccept="if (typeof gTabsPane != 'undefined') gTabsPane.writeNewtabUrl(); - return true;"> + ondialogaccept="gNewtabUrl.writeNewtabUrl();"> <script type="application/javascript" src="chrome://browser/content/utilityOverlay.js"/> + <script type="application/javascript" src="chrome://browser/content/preferences/newtaburl.js"/> <stringbundle id="bundleBrand" src="chrome://branding/locale/brand.properties"/> <stringbundle id="bundlePreferences" diff --git a/application/palemoon/components/preferences/tabs.js b/application/palemoon/components/preferences/tabs.js index f0ad8490c..17084a770 100644 --- a/application/palemoon/components/preferences/tabs.js +++ b/application/palemoon/components/preferences/tabs.js @@ -85,11 +85,14 @@ var gTabsPane = { let newtabUrlPref = document.getElementById("browser.newtab.url"); let newtabUrlSanitizedPref = document.getElementById("browser.newtab.myhome"); let newtabUrlChoice = document.getElementById("browser.newtab.choice"); + let defaultStartupHomepage = Services.prefs.getDefaultBranch("browser.") + .getComplexValue("startup.homepage", + Components.interfaces.nsIPrefLocalizedString).data; switch (newtabUrlPref.value) { case "about:logopage": newtabUrlChoice.value = 1; break; - case "http://start.palemoon.org/": + case defaultStartupHomepage: newtabUrlChoice.value = 2; break; case newtabUrlSanitizedPref.value: @@ -104,54 +107,5 @@ var gTabsPane = { // We need this to consider instantApply. this.newtabPageCustom = newtabUrlPref.value; } - }, - - /** - * Writes browser.newtab.url with the appropriate value. - * if the choice is "my home page", get and sanitize the browser home page - * URL to make it suitable for newtab use. - * - * Called from prefwindow's ondialogaccept handler and - * from browser.newtab.choice's oncommand to consider instantApply. - */ - writeNewtabUrl: function(newtabUrlChoice) { - try { - if (newtabUrlChoice) { - if (Services.prefs.getBoolPref("browser.preferences.instantApply")) { - newtabUrlChoice = parseInt(newtabUrlChoice); - } else { - return; - } - } else { - newtabUrlChoice = Services.prefs.getIntPref("browser.newtab.choice"); - } - let browserHomepageUrl = Services.prefs.getComplexValue("browser.startup.homepage", - Components.interfaces.nsIPrefLocalizedString).data; - let newtabUrlPref = Services.prefs.getCharPref("browser.newtab.url"); - switch (newtabUrlChoice) { - case 1: - newtabUrlPref = "about:logopage"; - break; - case 2: - newtabUrlPref = "http://start.palemoon.org/"; - break; - case 3: - // If url is a pipe-delimited set of pages, just take the first one. - let newtabUrlSanitizedPref=browserHomepageUrl.split("|")[0]; - // XXX: do we need extra sanitation here, e.g. for invalid URLs? - Services.prefs.setCharPref("browser.newtab.myhome", newtabUrlSanitizedPref); - newtabUrlPref = newtabUrlSanitizedPref; - break; - case 4: - newtabUrlPref = "about:newtab"; - break; - default: - // In case of any other value it's a custom URL, consider instantApply. - if (this.newtabPageCustom) { - newtabUrlPref = this.newtabPageCustom; - } - } - Services.prefs.setCharPref("browser.newtab.url",newtabUrlPref); - } catch(e) { console.error(e); } } }; diff --git a/application/palemoon/components/preferences/tabs.xul b/application/palemoon/components/preferences/tabs.xul index f5b44b776..64529d60d 100644 --- a/application/palemoon/components/preferences/tabs.xul +++ b/application/palemoon/components/preferences/tabs.xul @@ -85,7 +85,7 @@ <menulist id="newtabPage" preference="browser.newtab.choice" - oncommand="gTabsPane.writeNewtabUrl(event.target.value);"> + oncommand="gNewtabUrl.writeNewtabUrl(event.target.value);"> <menupopup> <menuitem label="&newtabPage.custom.label;" value="0" id="newtabPageCustom" hidden="true" /> <menuitem label="&newtabPage.blank.label;" value="1" /> diff --git a/application/palemoon/components/sessionstore/SessionStore.jsm b/application/palemoon/components/sessionstore/SessionStore.jsm index c5e55321c..e19a578f4 100644 --- a/application/palemoon/components/sessionstore/SessionStore.jsm +++ b/application/palemoon/components/sessionstore/SessionStore.jsm @@ -2739,7 +2739,9 @@ var SessionStoreInternal = { for (var t = 0; t < newTabCount; t++) { tabs.push(t < openTabCount ? tabbrowser.tabs[t] : - tabbrowser.addTab("about:blank", {skipAnimation: true})); + tabbrowser.addTab("about:blank", + {skipAnimation: true, + skipBackgroundNotify: true})); // when resuming at startup: add additionally requested pages to the end if (!aOverwriteTabs && root._firstTabs) { tabbrowser.moveTabTo(tabs[t], t); @@ -4684,7 +4686,8 @@ var TabAttributes = { // 'image' should not be accessed directly but handled by using the // gBrowser.getIcon()/setIcon() methods. // 'pending' is used internal by sessionstore and managed accordingly. - _skipAttrs: new Set(["image", "pending"]), + // 'skipbackgroundnotify' is used internal by tabbrowser.xml. + _skipAttrs: new Set(["image", "pending", "skipbackgroundnotify"]), persist: function (name) { if (this._attrs.has(name) || this._skipAttrs.has(name)) { diff --git a/application/palemoon/config/version.txt b/application/palemoon/config/version.txt index 466c71dc8..f35c734b3 100644 --- a/application/palemoon/config/version.txt +++ b/application/palemoon/config/version.txt @@ -1 +1 @@ -28.1.0a1
\ No newline at end of file +28.2.0a1
\ No newline at end of file diff --git a/application/palemoon/locales/en-US/chrome/browser/downloads/downloads.properties b/application/palemoon/locales/en-US/chrome/browser/downloads/downloads.properties index 2a5b77633..44d9ec90e 100644 --- a/application/palemoon/locales/en-US/chrome/browser/downloads/downloads.properties +++ b/application/palemoon/locales/en-US/chrome/browser/downloads/downloads.properties @@ -67,6 +67,9 @@ shortTimeLeftDays=%1$Sd statusSeparator=%1$S \u2014 %2$S statusSeparatorBeforeNumber=%1$S \u2014 %2$S +fileExecutableSecurityWarning="%S" is an executable file. Executable files may contain viruses or other malicious code that could harm your computer. Use caution when opening this file. Are you sure you want to launch "%S"? +fileExecutableSecurityWarningTitle=Open Executable File? + # LOCALIZATION NOTE (otherDownloads2): # This is displayed in an item at the bottom of the Downloads Panel when # there are more downloads than can fit in the list in the panel. Use a diff --git a/application/palemoon/themes/linux/browser.css b/application/palemoon/themes/linux/browser.css index 987406264..c6587babc 100644 --- a/application/palemoon/themes/linux/browser.css +++ b/application/palemoon/themes/linux/browser.css @@ -1570,12 +1570,6 @@ richlistitem[type~="action"][actiontype="switchtab"] > .ac-url-box > .ac-action- background-color: Window; } -.browserContainer > findbar { - background-color: -moz-dialog; - color: -moz-DialogText; - text-shadow: none; -} - /* Throbber */ #navigator-throbber { width: 16px; diff --git a/application/palemoon/themes/osx/browser.css b/application/palemoon/themes/osx/browser.css index 97073b161..a915af3a3 100644 --- a/application/palemoon/themes/osx/browser.css +++ b/application/palemoon/themes/osx/browser.css @@ -1601,12 +1601,6 @@ richlistitem[type~="action"][actiontype="switchtab"][selected="true"] > .ac-url- -moz-padding-start: 0px; } -.browserContainer > findbar { - background-color: -moz-dialog; - color: -moz-DialogText; - text-shadow: none; -} - /* ::::: throbber ::::: */ #navigator-throbber { diff --git a/application/palemoon/themes/windows/browser.css b/application/palemoon/themes/windows/browser.css index 1aefa428c..45f0e066c 100644 --- a/application/palemoon/themes/windows/browser.css +++ b/application/palemoon/themes/windows/browser.css @@ -1788,12 +1788,6 @@ richlistitem[type~="action"][actiontype="switchtab"] > .ac-url-box > .ac-action- -moz-padding-start: 0px; } -.browserContainer > findbar { - background-color: -moz-dialog; - color: -moz-DialogText; - text-shadow: none; -} - /* ::::: throbber ::::: */ #navigator-throbber { diff --git a/build/moz.configure/warnings.configure b/build/moz.configure/warnings.configure index 94ad3fa79..567814632 100644 --- a/build/moz.configure/warnings.configure +++ b/build/moz.configure/warnings.configure @@ -109,6 +109,14 @@ check_and_add_gcc_warning('-Wno-error=multistatement-macros') check_and_add_gcc_warning('-Wno-format', when=depends(target)(lambda t: t.kernel == 'WINNT')) +# Disable a warning with GCC 7+. +# We are far from using C++17 and the impact of the warning will be +# limited to a potential public ABI. +# Currently only affecting js/ +check_and_add_gcc_warning('-Wno-noexcept-type', cxx_compiler, + when=depends(build_project) + (lambda build_project: build_project == 'js')) + # Please keep these last in this file add_old_configure_assignment('_WARNINGS_CFLAGS', warnings_cflags) add_old_configure_assignment('_WARNINGS_CXXFLAGS', warnings_cxxflags) diff --git a/config/milestone.txt b/config/milestone.txt index 4f75be17f..1d06be496 100644 --- a/config/milestone.txt +++ b/config/milestone.txt @@ -10,4 +10,4 @@ # hardcoded milestones in the tree from these two files. #-------------------------------------------------------- -4.1.4 +4.1.5 diff --git a/docs/CODE_OF_CONDUCT.md b/docs/CODE_OF_CONDUCT.md index bcd8b8f77..68d1dcc60 100644 --- a/docs/CODE_OF_CONDUCT.md +++ b/docs/CODE_OF_CONDUCT.md @@ -1,48 +1,53 @@ # Contributor Code of Conduct -## Our Pledge +This code of conduct is intended to lay down the basis on which we, as a community of developers and maintainers, work with each other and with others outside of the community. As always when dealing with groups of people from many different backgrounds, there are no hard and fast rules here, and the intention is not to lay down any sort of restrictive frame to work in, but rather to clarify how we (prefer to) approach each other when working together as volunteers/professionals to improve our respective projects, products and life. -In the interest of fostering an open and welcoming environment, we as contributors and maintainers pledge to making participation in our project and our community a harassment-free experience for everyone, regardless of age, physical attributes, disability, ethnicity, level of experience, nationality, personal appearance, race, religion, or sexual orientation. +## Our Goal with this Code of Conduct -## Our Standards +We, as contributors and maintainers, aim to create a _focused but welcoming_ environment for others; collaboration, acceptance and respect are the cornerstones upon which we must build our community, otherwise there is no future for it. As such, we want to keep participation in our project and community free of harassment. We therefore ask of everyone, new contributors and long-standing members alike, to be accepting of others regardless of their age, ethnicity, level of experience, nationality, personal appearance, race, religion, or sexual orientation. None of these (and alike) attributes should influence how we work together in this project, and should not be grounds to judge or dismiss work done. -Examples of behavior that contributes to creating a positive environment include: +## Examples of acceptable and unacceptable behavior -* Using welcoming and inclusive language -* Being courteous (use "please" when you ask something of someone) -* Being respectful of differing viewpoints and experiences +Please note that these lists are examples and not exhaustive. If you have any doubts whether behavior is considered unacceptable, always err on the side of caution. + +Examples of behavior that helps create a positive working environment: + +* Using friendly, neutral and welcoming language. +* Being clear in your descriptions and not assuming the reader has any sort of prior knowledge of what you are talking about. +* Being courteous (use "please" when you ask something of someone). +* Being respectful of differing viewpoints and experiences. * Gracefully accepting constructive criticism, even if you disagree with such criticism. * Similarly, accepting that someone may not act on criticism given. -* Focusing on what is best for the community and its projects -* Showing understanding and a reasonable level of empathy towards other community members - -Examples of unacceptable behavior by participants include: +* Focusing on what is best for the community and its projects instead of individuals. +* Showing understanding and a reasonable level of empathy towards other community members. -* Unwelcome sexual attention or advances -* Trolling, insulting/derogatory comments, and personal or political attacks -* Public or private harassment -* Publishing others' private information, such as a physical or electronic address, without explicit permission -* Other conduct which could reasonably be considered inappropriate in a professional setting +Examples of unacceptable behavior: -## Our Responsibilities +* Unwelcome personal attention or advances (sexual or otherwise). If someone asks you to stop approaching them, please respect that. +* Displaying disproportionate levels of moral outrage and offense, especially when in response to someone's opinion. +* Bullying, trolling, insulting/derogatory comments, and personal or political attacks. +* Public or private harassment of other community members/contributors. +* Publishing others' personal/private information, such as a physical or electronic address, without explicit permission. +* Other conduct which could reasonably be considered inappropriate in a professional/workplace setting. -Project maintainers are responsible for clarifying the standards of acceptable behavior and are expected to take appropriate and fair corrective action in response to any instances of unacceptable behavior. +## Responsibilities of the project's staff/leadership -Project maintainers have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct or community's or projects' best interests, or to ban temporarily or permanently any contributor for other behaviors that they deem inappropriate, threatening, offensive, or harmful. +Project maintainers are responsible for clarifying the standards of acceptable behavior and are expected to take appropriate and above all fair corrective action in response to instances of unacceptable behavior. -## Scope +Corrective action: Project staff has the right and responsibility to evaluate, and if necessary to remove, edit, or reject any comments, repository commits, code changes, wiki edits, issues or issue comments, and other contributions that are not aligned with this Code of Conduct or the community's or projects' best interests, or to ban (temporarily or permanently) any contributor, community member or maintainer for other behaviors that they deem inappropriate, threatening, offensive, or harmful. In cases where there is no clear and definitive breach of rules or common sense, it is expected that staff members consult with project leadership before bans are issued to discuss the severity and intended action. -This Code of Conduct applies both within project spaces and in public spaces when an individual is representing the project or its community. Examples of representing a project or community include using an official project e-mail address, posting via an official social media account, acting on behalf of the project on IRC or other chat networks, or acting as an appointed representative at an online or offline event. Representation of a project may be further defined and clarified by project maintainers. +## Applicability -## Enforcement +This Code of Conduct applies within project spaces (forum, website, IRC, repositories and other project-controlled resources with user interaction) as well as in public spaces when an individual is representing the project or its community. Examples of representing a project or community include using an official project e-mail address, posting via an official social media account, acting on behalf of the project on IRC or other chat networks, or acting as an appointed or voluntary (spontaneous) representative at an online or offline event. Representation of a project in general should be courteous, respectful, and at all times keeping in mind that any representation reflects directly on the project's public image. Do not claim to officially represent the project if you have any doubts about your ability to maintain a professional composure that does not harm the project. -Instances of abusive, harassing, or otherwise unacceptable behavior may be reported by contacting the project owner at moonchild@palemoon.org. The project owner will review and investigate all complaints, and will respond in a way that they deem appropriate for the circumstances. The project team is generally obligated to maintain confidentiality with regard to the reporter of an incident, although in exceptional cases where intervention of authorities is required, the reporter may be individually identified to aid in the investigation or resolution of a conflict situation. Further details of specific enforcement policies may be posted separately. +## Enforcing this Code of Conduct -Project maintainers who do not follow or enforce the Code of Conduct in good faith may face temporary or permanent repercussions as determined by other members of the project's leadership. +We expect our community to apply a good measure of self-regulation when it comes to the conduct displayed by its members. We believe that any community of adults is capable of applying the concepts of common sense, common decency and common courtesy to interactions between its members. +That said, there are always exception situations possible where things need to be escalated, which is where this section comes into play. +Incidents involving abusive, harassing, or otherwise unacceptable behavior that need to be escalated for resolution may be reported by contacting the project owner at moonchild@palemoon.org. The project owner will then review and investigate all complaints and related communication of the case, and will respond in a way that they deem appropriate for the circumstances. -## Attribution +## Confidentiality -This Code of Conduct is adapted from the [Contributor Covenant][homepage], version [1.4][version]. +The project team is generally obligated to maintain confidentiality with regard to the reporter of an incident, although in exceptional cases where intervention of authorities is required, the reporter may be individually identified to aid in the investigation or resolution of a conflict situation. -[homepage]: http://contributor-covenant.org -[version]: http://contributor-covenant.org/version/1/4/ +Project staff members who do not follow or enforce the Code of Conduct in good faith may face temporary or permanent repercussions as determined by other members of the project's staff. Being a member of staff does not excuse you from adhering to acceptable behavior outlined in this Code of Conduct. diff --git a/dom/base/nsContentUtils.cpp b/dom/base/nsContentUtils.cpp index 34c7d23b8..3696195dd 100644 --- a/dom/base/nsContentUtils.cpp +++ b/dom/base/nsContentUtils.cpp @@ -7597,6 +7597,24 @@ nsContentUtils::IsFileImage(nsIFile* aFile, nsACString& aType) } nsresult +nsContentUtils::CalculateBufferSizeForImage(const uint32_t& aStride, + const IntSize& aImageSize, + const SurfaceFormat& aFormat, + size_t* aMaxBufferSize, + size_t* aUsedBufferSize) +{ + CheckedInt32 requiredBytes = + CheckedInt32(aStride) * CheckedInt32(aImageSize.height); + if (!requiredBytes.isValid()) { + return NS_ERROR_FAILURE; + } + *aMaxBufferSize = requiredBytes.value(); + *aUsedBufferSize = *aMaxBufferSize - aStride + + (aImageSize.width * BytesPerPixel(aFormat)); + return NS_OK; +} + +nsresult nsContentUtils::DataTransferItemToImage(const IPCDataTransferItem& aItem, imgIContainer** aContainer) { @@ -7611,6 +7629,22 @@ nsContentUtils::DataTransferItemToImage(const IPCDataTransferItem& aItem, Shmem data = aItem.data().get_Shmem(); + // Validate shared memory buffer size + size_t imageBufLen = 0; + size_t maxBufLen = 0; + nsresult rv = CalculateBufferSizeForImage(imageDetails.stride(), + size, + static_cast<SurfaceFormat>( + imageDetails.format()), + &maxBufLen, + &imageBufLen); + if (NS_FAILED(rv)) { + return rv; + } + if (imageBufLen > data.Size<uint8_t>()) { + return NS_ERROR_FAILURE; + } + RefPtr<DataSourceSurface> image = CreateDataSourceSurfaceFromData(size, static_cast<SurfaceFormat>(imageDetails.format()), @@ -7950,20 +7984,19 @@ GetSurfaceDataImpl(mozilla::gfx::DataSourceSurface* aSurface, return GetSurfaceDataContext::NullValue(); } - mozilla::gfx::IntSize size = aSurface->GetSize(); - mozilla::CheckedInt32 requiredBytes = - mozilla::CheckedInt32(map.mStride) * mozilla::CheckedInt32(size.height); - if (!requiredBytes.isValid()) { + size_t bufLen = 0; + size_t maxBufLen = 0; + nsresult rv = nsContentUtils::CalculateBufferSizeForImage(map.mStride, + aSurface->GetSize(), + aSurface->GetFormat(), + &maxBufLen, + &bufLen); + if (NS_FAILED(rv)) { + // Release mapped memory + aSurface->Unmap(); return GetSurfaceDataContext::NullValue(); } - size_t maxBufLen = requiredBytes.value(); - mozilla::gfx::SurfaceFormat format = aSurface->GetFormat(); - - // Surface data handling is totally nuts. This is the magic one needs to - // know to access the data. - size_t bufLen = maxBufLen - map.mStride + (size.width * BytesPerPixel(format)); - // nsDependentCString wants null-terminated string. typename GetSurfaceDataContext::ReturnType surfaceData = aContext.Allocate(maxBufLen + 1); if (GetSurfaceDataContext::GetBuffer(surfaceData)) { @@ -9787,3 +9820,19 @@ nsContentUtils::AttemptLargeAllocationLoad(nsIHttpChannel* aChannel) return reloadSucceeded; } + +/* static */ bool +nsContentUtils::IsLocalRefURL(const nsString& aString) +{ + // Find the first non-"C0 controls + space" character. + const char16_t* current = aString.get(); + for (; *current != '\0'; current++) { + if (*current > 0x20) { + // if the first non-"C0 controls + space" character is '#', this is a + // local-ref URL. + return *current == '#'; + } + } + + return false; +}
\ No newline at end of file diff --git a/dom/base/nsContentUtils.h b/dom/base/nsContentUtils.h index 9ae6d2155..98df92efb 100644 --- a/dom/base/nsContentUtils.h +++ b/dom/base/nsContentUtils.h @@ -975,11 +975,17 @@ public: static bool PrefetchEnabled(nsIDocShell* aDocShell); + static nsresult CalculateBufferSizeForImage(const uint32_t& aStride, + const mozilla::gfx::IntSize& aImageSize, + const mozilla::gfx::SurfaceFormat& aFormat, + size_t* aMaxBufferSize, + size_t* aUsedBufferSize); + +private: /** * Fill (with the parameters given) the localized string named |aKey| in * properties file |aFile|. */ -private: static nsresult FormatLocalizedString(PropertiesFile aFile, const char* aKey, const char16_t** aParams, @@ -2730,6 +2736,13 @@ public: static bool AttemptLargeAllocationLoad(nsIHttpChannel* aChannel); + /** + * Detect whether a string is a (CSS) local-url. + * https://drafts.csswg.org/css-values/#local-urls + */ + static bool + IsLocalRefURL(const nsString& aString); + private: static bool InitializeEventTable(); diff --git a/dom/base/nsIDocument.h b/dom/base/nsIDocument.h index 7a73fae71..e5d12ab8f 100644 --- a/dom/base/nsIDocument.h +++ b/dom/base/nsIDocument.h @@ -3439,13 +3439,29 @@ nsINode::OwnerDocAsNode() const return OwnerDoc(); } +// ShouldUseXBLScope is defined here as a template so that we can get the faster +// version of IsInAnonymousSubtree if we're statically known to be an +// nsIContent. we could try defining ShouldUseXBLScope separately on nsINode +// and nsIContent, but then we couldn't put its nsINode implementation here +// (because this header does not include nsIContent) and we can't put it in +// nsIContent.h, because the definition of nsIContent::IsInAnonymousSubtree is +// in nsIContentInlines.h. And then we get include hell from people trying to +// call nsINode::GetParentObject but not including nsIContentInlines.h and with +// no really good way to include it. +template<typename T> +inline bool ShouldUseXBLScope(const T* aNode) +{ + return aNode->IsInAnonymousSubtree() && + !aNode->IsAnonymousContentInSVGUseSubtree(); +} + inline mozilla::dom::ParentObject nsINode::GetParentObject() const { mozilla::dom::ParentObject p(OwnerDoc()); // Note that mUseXBLScope is a no-op for chrome, and other places where we // don't use XBL scopes. - p.mUseXBLScope = IsInAnonymousSubtree() && !IsAnonymousContentInSVGUseSubtree(); + p.mUseXBLScope = ShouldUseXBLScope(this); return p; } diff --git a/dom/base/nsINode.cpp b/dom/base/nsINode.cpp index 09e848710..ca507a5fc 100644 --- a/dom/base/nsINode.cpp +++ b/dom/base/nsINode.cpp @@ -27,6 +27,7 @@ #include "mozilla/dom/Element.h" #include "mozilla/dom/Event.h" #include "mozilla/dom/ShadowRoot.h" +#include "mozilla/dom/ScriptSettings.h" #include "nsAttrValueOrString.h" #include "nsBindingManager.h" #include "nsCCUncollectableMarker.h" @@ -1569,6 +1570,48 @@ CheckForOutdatedParent(nsINode* aParent, nsINode* aNode) return NS_OK; } +static nsresult +ReparentWrappersInSubtree(nsIContent* aRoot) +{ + MOZ_ASSERT(ShouldUseXBLScope(aRoot)); + // Start off with no global so we don't fire any error events on failure. + AutoJSAPI jsapi; + jsapi.Init(); + + JSContext* cx = jsapi.cx(); + + nsIGlobalObject* docGlobal = aRoot->OwnerDoc()->GetScopeObject(); + if (NS_WARN_IF(!docGlobal)) { + return NS_ERROR_UNEXPECTED; + } + + JS::Rooted<JSObject*> rootedGlobal(cx, docGlobal->GetGlobalJSObject()); + if (NS_WARN_IF(!rootedGlobal)) { + return NS_ERROR_UNEXPECTED; + } + + rootedGlobal = xpc::GetXBLScope(cx, rootedGlobal); + + nsresult rv; + JS::Rooted<JSObject*> reflector(cx); + for (nsIContent* cur = aRoot; cur; cur = cur->GetNextNode(aRoot)) { + if ((reflector = cur->GetWrapper())) { + JSAutoCompartment ac(cx, reflector); + rv = ReparentWrapper(cx, reflector); + if NS_FAILED(rv) { + // We _could_ consider BlastSubtreeToPieces here, but it's not really + // needed. Having some nodes in here accessible to content while others + // are not is probably OK. We just need to fail out of the actual + // insertion, so they're not in the DOM. Returning a failure here will + // do that. + return rv; + } + } + } + + return NS_OK; +} + nsresult nsINode::doInsertChildAt(nsIContent* aKid, uint32_t aIndex, bool aNotify, nsAttrAndChildArray& aChildArray) @@ -1606,9 +1649,15 @@ nsINode::doInsertChildAt(nsIContent* aKid, uint32_t aIndex, nsIContent* parent = IsNodeOfType(eDOCUMENT) ? nullptr : static_cast<nsIContent*>(this); + bool wasInXBLScope = ShouldUseXBLScope(aKid); rv = aKid->BindToTree(doc, parent, parent ? parent->GetBindingParent() : nullptr, true); + if (NS_SUCCEEDED(rv) && !wasInXBLScope && ShouldUseXBLScope(aKid)) { + MOZ_ASSERT(ShouldUseXBLScope(this), + "Why does the kid need to use an XBL scope?"); + rv = ReparentWrappersInSubtree(aKid); + } if (NS_FAILED(rv)) { if (GetFirstChild() == aKid) { mFirstChild = aKid->GetNextSibling(); diff --git a/dom/fetch/Fetch.cpp b/dom/fetch/Fetch.cpp index e2c139426..f944352e3 100644 --- a/dom/fetch/Fetch.cpp +++ b/dom/fetch/Fetch.cpp @@ -260,7 +260,7 @@ FetchRequest(nsIGlobalObject* aGlobal, const RequestOrUSVString& aInput, } RefPtr<MainThreadFetchRunnable> run = new MainThreadFetchRunnable(resolver, r); - worker->DispatchToMainThread(run.forget()); + MOZ_ALWAYS_SUCCEEDS(NS_DispatchToMainThread(run)); } return p.forget(); diff --git a/dom/fetch/FetchConsumer.cpp b/dom/fetch/FetchConsumer.cpp index 42dfcbaba..e82e5ec51 100644 --- a/dom/fetch/FetchConsumer.cpp +++ b/dom/fetch/FetchConsumer.cpp @@ -339,11 +339,7 @@ FetchBodyConsumer<Derived>::Create(nsIGlobalObject* aGlobal, nsCOMPtr<nsIRunnable> r = new BeginConsumeBodyRunnable<Derived>(consumer); - if (workerPrivate) { - aRv = workerPrivate->DispatchToMainThread(r.forget()); - } else { - aRv = NS_DispatchToMainThread(r.forget()); - } + aRv = NS_DispatchToMainThread(r.forget()); if (NS_WARN_IF(aRv.Failed())) { return nullptr; @@ -655,9 +651,7 @@ FetchBodyConsumer<Derived>::ShutDownMainThreadConsuming() nsCOMPtr<nsIRunnable> r = NS_NewRunnableFunction( [self] () { self->ShutDownMainThreadConsuming(); }); - WorkerPrivate* workerPrivate = GetCurrentThreadWorkerPrivate(); - MOZ_ASSERT(workerPrivate); - workerPrivate->DispatchToMainThread(r.forget()); + MOZ_ALWAYS_SUCCEEDS(NS_DispatchToMainThread(r.forget())); return; } diff --git a/dom/media/GraphDriver.cpp b/dom/media/GraphDriver.cpp index cae15eb8c..47762c56e 100644 --- a/dom/media/GraphDriver.cpp +++ b/dom/media/GraphDriver.cpp @@ -200,7 +200,7 @@ public: STREAM_LOG(LogLevel::Debug, ("Starting system thread")); profiler_register_thread("MediaStreamGraph", &aLocal); LIFECYCLE_LOG("Starting a new system driver for graph %p\n", - mDriver->mGraphImpl); + mDriver->mGraphImpl.get()); RefPtr<GraphDriver> previousDriver; { @@ -236,7 +236,7 @@ private: void ThreadedDriver::Start() { - LIFECYCLE_LOG("Starting thread for a SystemClockDriver %p\n", mGraphImpl); + LIFECYCLE_LOG("Starting thread for a SystemClockDriver %p\n", mGraphImpl.get()); Unused << NS_WARN_IF(mThread); if (!mThread) { // Ensure we haven't already started it nsCOMPtr<nsIRunnable> event = new MediaStreamGraphInitThreadRunnable(this); @@ -761,7 +761,7 @@ AudioCallbackDriver::Destroy() void AudioCallbackDriver::Resume() { - STREAM_LOG(LogLevel::Debug, ("Resuming audio threads for MediaStreamGraph %p", mGraphImpl)); + STREAM_LOG(LogLevel::Debug, ("Resuming audio threads for MediaStreamGraph %p", mGraphImpl.get())); if (cubeb_stream_start(mAudioStream) != CUBEB_OK) { NS_WARNING("Could not start cubeb stream for MSG."); } @@ -830,7 +830,9 @@ AudioCallbackDriver::Revive() mGraphImpl->SetCurrentDriver(NextDriver()); NextDriver()->Start(); } else { - STREAM_LOG(LogLevel::Debug, ("Starting audio threads for MediaStreamGraph %p from a new thread.", mGraphImpl)); + STREAM_LOG(LogLevel::Debug, + ("Starting audio threads for MediaStreamGraph %p from a new thread.", + mGraphImpl.get())); RefPtr<AsyncCubebTask> initEvent = new AsyncCubebTask(this, AsyncCubebOperation::INIT); initEvent->Dispatch(); diff --git a/dom/media/GraphDriver.h b/dom/media/GraphDriver.h index 411e175d3..bb4f2689b 100644 --- a/dom/media/GraphDriver.h +++ b/dom/media/GraphDriver.h @@ -210,10 +210,8 @@ protected: // Time of the end of this graph iteration. This must be accessed while having // the monitor. GraphTime mIterationEnd; - // The MediaStreamGraphImpl that owns this driver. This has a lifetime longer - // than the driver, and will never be null. Hence, it can be accesed without - // monitor. - MediaStreamGraphImpl* mGraphImpl; + // The MediaStreamGraphImpl associated with this driver. + const RefPtr<MediaStreamGraphImpl> mGraphImpl; // This enum specifies the wait state of the driver. enum WaitState { diff --git a/dom/media/MediaStreamGraph.cpp b/dom/media/MediaStreamGraph.cpp index e2934cbb2..1b9e4f674 100644 --- a/dom/media/MediaStreamGraph.cpp +++ b/dom/media/MediaStreamGraph.cpp @@ -3371,7 +3371,8 @@ MediaStreamGraphImpl::Destroy() // First unregister from memory reporting. UnregisterWeakMemoryReporter(this); - // Clear the self reference which will destroy this instance. + // Clear the self reference which will destroy this instance if all + // associated GraphDrivers are destroyed. mSelfRef = nullptr; } diff --git a/dom/media/webrtc/RTCCertificate.cpp b/dom/media/webrtc/RTCCertificate.cpp index 3f778bcbb..9f5e27c56 100644 --- a/dom/media/webrtc/RTCCertificate.cpp +++ b/dom/media/webrtc/RTCCertificate.cpp @@ -74,7 +74,7 @@ private: char buf[sizeof(randomName) * 2 + 4]; PL_strncpy(buf, "CN=", 3); for (size_t i = 0; i < sizeof(randomName); ++i) { - snprintf(&buf[i * 2 + 3], 2, "%.2x", randomName[i]); + snprintf(&buf[i * 2 + 3], 3, "%.2x", randomName[i]); } buf[sizeof(buf) - 1] = '\0'; diff --git a/dom/svg/SVGUseElement.cpp b/dom/svg/SVGUseElement.cpp index 4911e2cac..9212ab1aa 100644 --- a/dom/svg/SVGUseElement.cpp +++ b/dom/svg/SVGUseElement.cpp @@ -15,6 +15,7 @@ #include "mozilla/dom/Element.h" #include "nsContentUtils.h" #include "nsIURI.h" +#include "nsSVGEffects.h" NS_IMPL_NS_NEW_NAMESPACED_SVG_ELEMENT(Use) @@ -418,11 +419,15 @@ SVGUseElement::LookupHref() return; } + nsCOMPtr<nsIURI> originURI = + mOriginal ? mOriginal->GetBaseURI() : GetBaseURI(); + nsCOMPtr<nsIURI> baseURI = nsContentUtils::IsLocalRefURL(href) + ? nsSVGEffects::GetBaseURLForLocalRef(this, originURI) + : originURI; + nsCOMPtr<nsIURI> targetURI; - nsCOMPtr<nsIURI> baseURI = mOriginal ? mOriginal->GetBaseURI() : GetBaseURI(); nsContentUtils::NewURIWithDocumentCharset(getter_AddRefs(targetURI), href, GetComposedDoc(), baseURI); - mSource.Reset(this, targetURI); } diff --git a/dom/svg/test/reftest_viewport_noninteger.html b/dom/svg/test/reftest_viewport_noninteger.html new file mode 100644 index 000000000..3f4852b53 --- /dev/null +++ b/dom/svg/test/reftest_viewport_noninteger.html @@ -0,0 +1,175 @@ +<!DOCTYPE html> +<html> + <head> + <meta charset="utf-8"> + <title>SVG size test</title> + <style> + body { + margin: 30px; + font-family: sans-serif; + } + + #tests { + display: grid; + grid-template-columns: repeat(4, 1fr); + grid-gap: 30px; + } + + #tests div:hover { + opacity: 1 !important; + } + + #tests p { + text-decoration: underline dotted black; + } + + svg { + background: lightgrey; + } + </style> + </head> + <body> + <h1>SVG size test</h1> + + <p>The grey boxes below are <code><svg></code> elements.</p> + <p>All SVGs in each row should have the exact same size.</p> + <p>Each row has its own viewBox width and height: <code>viewBox="0 0 width height"</code>.</p> + <p>Each column has its own width/height styling. For example, <code>style="width: 200px; height: auto;"</code>.</p> + <p>The first column has both an explicit widht and an explicit height, so there's not much that can go wrong there. It acts as a reference.</p> + <p>The first row has integer viewBox width and height. Firefox then sizes all SVGs correctly.</p> + <p>The remaining rows have at least one non-integer viewBox width and height. Firefox then sizes the SVGs a bit wrong.</p> + <p>Chrome, Safari and Edge seem to pass all tests.</p> + + <p id="summary"></p> + + <div id="tests"></div> + + <script> + const testsElement = document.getElementById("tests"); + const summaryElement = document.getElementById("summary"); + + // Turn for instance `2.3` into `230` (px). Round to avoid floating point + // issues. + const scale = (number) => Math.round(100 * number); + + const widths = [2, 2.3, 2.5, 2.8]; + const heights = [3, 3.3, 3.5, 3.8]; + + let numPassed = 0; + let numFailed = 0; + + for (const width of widths) { + for (const height of heights) { + const variations = [ + {width, height}, + {width: "auto", height}, + {width, height: "auto"}, + {width: "auto", height: "auto"}, + ]; + + for (const variation of variations) { + const cellElement = document.createElement("div"); + + const titleElement = document.createElement("h2"); + titleElement.appendChild(makeTitle(width, height, variation)); + + const sizeElement = document.createElement("p"); + + const svgWrapperElement = document.createElement("div"); + svgWrapperElement.style.width = + variation.width === "auto" && variation.height === "auto" + ? `${scale(width)}px` + : "auto"; + + const svgElement = document.createElementNS("http://www.w3.org/2000/svg", "svg"); + svgElement.setAttribute("viewBox", `0 0 ${width} ${height}`); + svgElement.style.width = + typeof variation.width === "number" + ? `${scale(variation.width)}px` + : variation.width; + svgElement.style.height = + typeof variation.height === "number" + ? `${scale(variation.height)}px` + : variation.height; + + svgWrapperElement.appendChild(svgElement); + + cellElement.appendChild(titleElement); + cellElement.appendChild(sizeElement); + cellElement.appendChild(svgWrapperElement); + + testsElement.appendChild(cellElement); + + const rect = svgElement.getBoundingClientRect(); + const actual = { + width: Math.round(rect.width), + height: Math.round(rect.height), + }; + const expected = { + width: scale(width), + height: scale(height), + }; + const passed = + actual.width === expected.width && + actual.height === expected.height; + + const icon = passed ? "✔" : "✘"; + const iconText = passed ? "PASS" : "FAIL"; + const expectedText = passed ? "" : `\nExpected size: ${expected.width}x${expected.height}`; + sizeElement.textContent = `${icon} ${actual.width}x${actual.height}`; + sizeElement.title = `${iconText}. Actual size, as measured by element.getBoundingClientRect().${expectedText}`; + sizeElement.style.color = passed ? "lime" : "red"; + sizeElement.style.fontWeight = passed ? "normal" : "bold"; + + cellElement.style.opacity = passed ? 0.5 : 1; + + if (passed) { + numPassed++; + } else { + numFailed++; + } + } + } + } + + const numTotal = numPassed + numFailed; + const passed = numFailed === 0; + const icon = passed ? "✔" : "✘"; + summaryElement.textContent = `${icon} ${numPassed}/${numTotal} tests passed.`; + summaryElement.style.color = passed ? "lime" : "red"; + summaryElement.style.fontWeight = "bold"; + + function makeTitle(width, height, variation) { + const fragment = document.createDocumentFragment(); + + const first = document.createElement("abbr"); + first.textContent = `${width}/${height}`; + first.title = `SVG viewBox width/height: viewBox="0 0 ${width} ${height}"`; + + const separator = document.createTextNode(" | "); + + const second = document.createElement("abbr"); + + const widthString = typeof variation.width === "number" ? "px" : variation.width; + const heightString = typeof variation.height === "number" ? "px" : variation.height; + second.textContent = `${widthString}/${heightString}`; + + const widthExplanation = + typeof variation.width === "number" + ? "explicit width (px)" + : `${variation.width} width` + const heightExplanation = + typeof variation.height === "number" + ? "explicit height (px)" + : `${variation.height} height` + second.title = `${widthExplanation}, ${heightExplanation}`; + + fragment.appendChild(first); + fragment.appendChild(separator); + fragment.appendChild(second); + + return fragment; + } + </script> + </body> +</html> diff --git a/dom/workers/ServiceWorkerClient.cpp b/dom/workers/ServiceWorkerClient.cpp index 660512a5f..6ed3a6ea4 100644 --- a/dom/workers/ServiceWorkerClient.cpp +++ b/dom/workers/ServiceWorkerClient.cpp @@ -224,7 +224,7 @@ ServiceWorkerClient::PostMessage(JSContext* aCx, JS::Handle<JS::Value> aMessage, return; } - aRv = workerPrivate->DispatchToMainThread(runnable.forget()); + aRv = NS_DispatchToMainThread(runnable); if (NS_WARN_IF(aRv.Failed())) { return; } diff --git a/dom/workers/ServiceWorkerClients.cpp b/dom/workers/ServiceWorkerClients.cpp index 11f864443..38f49e355 100644 --- a/dom/workers/ServiceWorkerClients.cpp +++ b/dom/workers/ServiceWorkerClients.cpp @@ -753,7 +753,7 @@ ServiceWorkerClients::Get(const nsAString& aClientId, ErrorResult& aRv) RefPtr<GetRunnable> r = new GetRunnable(promiseProxy, aClientId); - MOZ_ALWAYS_SUCCEEDS(workerPrivate->DispatchToMainThread(r.forget())); + MOZ_ALWAYS_SUCCEEDS(NS_DispatchToMainThread(r)); return promise.forget(); } @@ -789,7 +789,7 @@ ServiceWorkerClients::MatchAll(const ClientQueryOptions& aOptions, new MatchAllRunnable(promiseProxy, NS_ConvertUTF16toUTF8(scope), aOptions.mIncludeUncontrolled); - MOZ_ALWAYS_SUCCEEDS(workerPrivate->DispatchToMainThread(r.forget())); + MOZ_ALWAYS_SUCCEEDS(NS_DispatchToMainThread(r)); return promise.forget(); } @@ -830,7 +830,7 @@ ServiceWorkerClients::OpenWindow(const nsAString& aUrl, RefPtr<OpenWindowRunnable> r = new OpenWindowRunnable(promiseProxy, aUrl, scope); - MOZ_ALWAYS_SUCCEEDS(workerPrivate->DispatchToMainThread(r.forget())); + MOZ_ALWAYS_SUCCEEDS(NS_DispatchToMainThread(r)); return promise.forget(); } @@ -859,6 +859,6 @@ ServiceWorkerClients::Claim(ErrorResult& aRv) RefPtr<ClaimRunnable> runnable = new ClaimRunnable(promiseProxy, NS_ConvertUTF16toUTF8(scope)); - MOZ_ALWAYS_SUCCEEDS(workerPrivate->DispatchToMainThread(runnable.forget())); + MOZ_ALWAYS_SUCCEEDS(NS_DispatchToMainThread(runnable)); return promise.forget(); } diff --git a/dom/workers/ServiceWorkerEvents.cpp b/dom/workers/ServiceWorkerEvents.cpp index 1f79e2c92..8b375c635 100644 --- a/dom/workers/ServiceWorkerEvents.cpp +++ b/dom/workers/ServiceWorkerEvents.cpp @@ -400,13 +400,7 @@ void RespondWithCopyComplete(void* aClosure, nsresult aStatus) data->mScriptSpec, data->mResponseURLSpec); } - // In theory this can happen after the worker thread is terminated. - WorkerPrivate* worker = GetCurrentThreadWorkerPrivate(); - if (worker) { - MOZ_ALWAYS_SUCCEEDS(worker->DispatchToMainThread(event.forget())); - } else { - MOZ_ALWAYS_SUCCEEDS(NS_DispatchToMainThread(event.forget())); - } + MOZ_ALWAYS_SUCCEEDS(NS_DispatchToMainThread(event)); } namespace { @@ -734,13 +728,7 @@ RespondWithHandler::CancelRequest(nsresult aStatus) { nsCOMPtr<nsIRunnable> runnable = new CancelChannelRunnable(mInterceptedChannel, mRegistration, aStatus); - // Note, this may run off the worker thread during worker termination. - WorkerPrivate* worker = GetCurrentThreadWorkerPrivate(); - if (worker) { - MOZ_ALWAYS_SUCCEEDS(worker->DispatchToMainThread(runnable.forget())); - } else { - MOZ_ALWAYS_SUCCEEDS(NS_DispatchToMainThread(runnable.forget())); - } + NS_DispatchToMainThread(runnable); mRequestWasHandled = true; } @@ -873,8 +861,8 @@ public: mColumn = column; } - MOZ_ALWAYS_SUCCEEDS(mWorkerPrivate->DispatchToMainThread( - NewRunnableMethod(this, &WaitUntilHandler::ReportOnMainThread))); + MOZ_ALWAYS_SUCCEEDS( + NS_DispatchToMainThread(NewRunnableMethod(this, &WaitUntilHandler::ReportOnMainThread))); } void diff --git a/dom/workers/ServiceWorkerPrivate.cpp b/dom/workers/ServiceWorkerPrivate.cpp index 24b2e11e6..23ae3b366 100644 --- a/dom/workers/ServiceWorkerPrivate.cpp +++ b/dom/workers/ServiceWorkerPrivate.cpp @@ -214,7 +214,7 @@ private: mDone = true; #endif mCallback->SetResult(aResult); - MOZ_ALWAYS_SUCCEEDS(mWorkerPrivate->DispatchToMainThread(mCallback)); + MOZ_ALWAYS_SUCCEEDS(NS_DispatchToMainThread(mCallback)); } }; @@ -500,7 +500,7 @@ public: if (mRegistration) { nsCOMPtr<nsIRunnable> runnable = new RegistrationUpdateRunnable(mRegistration, true /* time check */); - aWorkerPrivate->DispatchToMainThread(runnable.forget()); + NS_DispatchToMainThread(runnable.forget()); } ExtendableEventWorkerRunnable::PostRun(aCx, aWorkerPrivate, aRunResult); @@ -541,7 +541,7 @@ public: Cancel() override { mCallback->SetResult(false); - MOZ_ALWAYS_SUCCEEDS(mWorkerPrivate->DispatchToMainThread(mCallback)); + MOZ_ALWAYS_SUCCEEDS(NS_DispatchToMainThread(mCallback)); return WorkerRunnable::Cancel(); } @@ -637,7 +637,7 @@ public: mDone = true; mCallback->SetResult(aResult); - nsresult rv = mWorkerPrivate->DispatchToMainThread(mCallback); + nsresult rv = NS_DispatchToMainThread(mCallback); if (NS_WARN_IF(NS_FAILED(rv))) { NS_RUNTIMEABORT("Failed to dispatch life cycle event handler."); } @@ -768,7 +768,6 @@ public: void Report(uint16_t aReason = nsIPushErrorReporter::DELIVERY_INTERNAL_ERROR) { - WorkerPrivate* workerPrivate = mWorkerPrivate; mWorkerPrivate->AssertIsOnWorkerThread(); mWorkerPrivate = nullptr; @@ -780,7 +779,7 @@ public: NewRunnableMethod<uint16_t>(this, &PushErrorReporter::ReportOnMainThread, aReason); MOZ_ALWAYS_TRUE(NS_SUCCEEDED( - workerPrivate->DispatchToMainThread(runnable.forget()))); + NS_DispatchToMainThread(runnable.forget()))); } void ReportOnMainThread(uint16_t aReason) @@ -1434,7 +1433,7 @@ public: Cancel() override { nsCOMPtr<nsIRunnable> runnable = new ResumeRequest(mInterceptedChannel); - if (NS_FAILED(mWorkerPrivate->DispatchToMainThread(runnable))) { + if (NS_FAILED(NS_DispatchToMainThread(runnable))) { NS_WARNING("Failed to resume channel on FetchEventRunnable::Cancel()!\n"); } WorkerRunnable::Cancel(); @@ -1554,7 +1553,7 @@ private: NS_ERROR_INTERCEPTION_FAILED); } - MOZ_ALWAYS_SUCCEEDS(mWorkerPrivate->DispatchToMainThread(runnable.forget())); + MOZ_ALWAYS_SUCCEEDS(NS_DispatchToMainThread(runnable)); } RefPtr<Promise> waitUntilPromise = event->GetPromise(); diff --git a/dom/workers/ServiceWorkerRegistration.cpp b/dom/workers/ServiceWorkerRegistration.cpp index 451bd2be9..b3cda2c10 100644 --- a/dom/workers/ServiceWorkerRegistration.cpp +++ b/dom/workers/ServiceWorkerRegistration.cpp @@ -1107,7 +1107,7 @@ ServiceWorkerRegistrationWorkerThread::Update(ErrorResult& aRv) } RefPtr<UpdateRunnable> r = new UpdateRunnable(proxy, mScope); - MOZ_ALWAYS_SUCCEEDS(worker->DispatchToMainThread(r.forget())); + MOZ_ALWAYS_SUCCEEDS(NS_DispatchToMainThread(r)); return promise.forget(); } @@ -1139,7 +1139,7 @@ ServiceWorkerRegistrationWorkerThread::Unregister(ErrorResult& aRv) } RefPtr<StartUnregisterRunnable> r = new StartUnregisterRunnable(proxy, mScope); - MOZ_ALWAYS_SUCCEEDS(worker->DispatchToMainThread(r.forget())); + MOZ_ALWAYS_SUCCEEDS(NS_DispatchToMainThread(r)); return promise.forget(); } @@ -1161,7 +1161,7 @@ ServiceWorkerRegistrationWorkerThread::InitListener() nsCOMPtr<nsIRunnable> r = NewRunnableMethod(mListener, &WorkerListener::StartListeningForEvents); - MOZ_ALWAYS_SUCCEEDS(worker->DispatchToMainThread(r.forget())); + MOZ_ALWAYS_SUCCEEDS(NS_DispatchToMainThread(r)); } void @@ -1183,7 +1183,7 @@ ServiceWorkerRegistrationWorkerThread::ReleaseListener() nsCOMPtr<nsIRunnable> r = NewRunnableMethod(mListener, &WorkerListener::StopListeningForEvents); - MOZ_ALWAYS_SUCCEEDS(mWorkerPrivate->DispatchToMainThread(r.forget())); + MOZ_ALWAYS_SUCCEEDS(NS_DispatchToMainThread(r)); mListener = nullptr; mWorkerPrivate = nullptr; diff --git a/dom/workers/ServiceWorkerWindowClient.cpp b/dom/workers/ServiceWorkerWindowClient.cpp index 2ce0603cf..bae747214 100644 --- a/dom/workers/ServiceWorkerWindowClient.cpp +++ b/dom/workers/ServiceWorkerWindowClient.cpp @@ -183,7 +183,7 @@ ServiceWorkerWindowClient::Focus(ErrorResult& aRv) const if (promiseProxy) { RefPtr<ClientFocusRunnable> r = new ClientFocusRunnable(mWindowId, promiseProxy); - MOZ_ALWAYS_SUCCEEDS(workerPrivate->DispatchToMainThread(r.forget())); + MOZ_ALWAYS_SUCCEEDS(NS_DispatchToMainThread(r)); } else { promise->MaybeReject(NS_ERROR_DOM_ABORT_ERR); } @@ -549,7 +549,7 @@ ServiceWorkerWindowClient::Navigate(const nsAString& aUrl, ErrorResult& aRv) if (promiseProxy) { RefPtr<ClientNavigateRunnable> r = new ClientNavigateRunnable(mWindowId, aUrl, scope, promiseProxy); - MOZ_ALWAYS_SUCCEEDS(workerPrivate->DispatchToMainThread(r.forget())); + MOZ_ALWAYS_SUCCEEDS(NS_DispatchToMainThread(r)); } else { promise->MaybeReject(NS_ERROR_DOM_ABORT_ERR); } diff --git a/dom/workers/WorkerPrivate.cpp b/dom/workers/WorkerPrivate.cpp index 612090027..6bc5c4f96 100644 --- a/dom/workers/WorkerPrivate.cpp +++ b/dom/workers/WorkerPrivate.cpp @@ -404,7 +404,7 @@ private: RefPtr<MainThreadReleaseRunnable> runnable = new MainThreadReleaseRunnable(doomed, loadGroupToCancel); - if (NS_FAILED(mWorkerPrivate->DispatchToMainThread(runnable.forget()))) { + if (NS_FAILED(NS_DispatchToMainThread(runnable))) { NS_WARNING("Failed to dispatch, going to leak!"); } @@ -4078,7 +4078,7 @@ WorkerDebugger::PostMessageToDebugger(const nsAString& aMessage) RefPtr<PostDebuggerMessageRunnable> runnable = new PostDebuggerMessageRunnable(this, aMessage); - if (NS_FAILED(mWorkerPrivate->DispatchToMainThread(runnable.forget()))) { + if (NS_FAILED(NS_DispatchToMainThread(runnable, NS_DISPATCH_NORMAL))) { NS_WARNING("Failed to post message to debugger on main thread!"); } } @@ -4103,7 +4103,7 @@ WorkerDebugger::ReportErrorToDebugger(const nsAString& aFilename, RefPtr<ReportDebuggerErrorRunnable> runnable = new ReportDebuggerErrorRunnable(this, aFilename, aLineno, aMessage); - if (NS_FAILED(mWorkerPrivate->DispatchToMainThread(runnable.forget()))) { + if (NS_FAILED(NS_DispatchToMainThread(runnable, NS_DISPATCH_NORMAL))) { NS_WARNING("Failed to report error to debugger on main thread!"); } } @@ -4862,7 +4862,7 @@ WorkerPrivate::MaybeDispatchLoadFailedRunnable() return; } - MOZ_ALWAYS_SUCCEEDS(DispatchToMainThread(runnable.forget())); + MOZ_ALWAYS_SUCCEEDS(NS_DispatchToMainThread(runnable.forget())); } nsIEventTarget* @@ -5083,7 +5083,7 @@ WorkerPrivate::ScheduleDeletion(WorkerRanOrNot aRanOrNot) else { RefPtr<TopLevelWorkerFinishedRunnable> runnable = new TopLevelWorkerFinishedRunnable(this); - if (NS_FAILED(DispatchToMainThread(runnable.forget()))) { + if (NS_FAILED(NS_DispatchToMainThread(runnable))) { NS_WARNING("Failed to dispatch runnable!"); } } diff --git a/dom/workers/WorkerRunnable.cpp b/dom/workers/WorkerRunnable.cpp index 9e6d4cfb8..60d69d4e4 100644 --- a/dom/workers/WorkerRunnable.cpp +++ b/dom/workers/WorkerRunnable.cpp @@ -117,7 +117,10 @@ WorkerRunnable::DispatchInternal() return NS_SUCCEEDED(parent->Dispatch(runnable.forget())); } - return NS_SUCCEEDED(mWorkerPrivate->DispatchToMainThread(runnable.forget())); + nsCOMPtr<nsIThread> mainThread = do_GetMainThread(); + MOZ_ASSERT(mainThread); + + return NS_SUCCEEDED(mainThread->Dispatch(runnable.forget(), NS_DISPATCH_NORMAL)); } void @@ -553,7 +556,10 @@ WorkerControlRunnable::DispatchInternal() return NS_SUCCEEDED(parent->DispatchControlRunnable(runnable.forget())); } - return NS_SUCCEEDED(mWorkerPrivate->DispatchToMainThread(runnable.forget())); + nsCOMPtr<nsIThread> mainThread = do_GetMainThread(); + MOZ_ASSERT(mainThread); + + return NS_SUCCEEDED(mainThread->Dispatch(runnable.forget(), NS_DISPATCH_NORMAL)); } NS_IMPL_ISUPPORTS_INHERITED0(WorkerControlRunnable, WorkerRunnable) @@ -580,7 +586,10 @@ WorkerMainThreadRunnable::Dispatch(Status aFailStatus, ErrorResult& aRv) return; } - DebugOnly<nsresult> rv = mWorkerPrivate->DispatchToMainThread(this); + RefPtr<WorkerMainThreadRunnable> runnable(this); + + DebugOnly<nsresult> rv = + NS_DispatchToMainThread(runnable.forget(), NS_DISPATCH_NORMAL); MOZ_ASSERT(NS_SUCCEEDED(rv), "Should only fail after xpcom-shutdown-threads and we're gone by then"); @@ -670,7 +679,7 @@ WorkerProxyToMainThreadRunnable::Dispatch() return false; } - if (NS_WARN_IF(NS_FAILED(mWorkerPrivate->DispatchToMainThread(this)))) { + if (NS_WARN_IF(NS_FAILED(NS_DispatchToMainThread(this)))) { ReleaseWorker(); RunBackOnWorkerThread(); return false; diff --git a/dom/workers/WorkerScope.cpp b/dom/workers/WorkerScope.cpp index 54252e53b..ace1a09fc 100644 --- a/dom/workers/WorkerScope.cpp +++ b/dom/workers/WorkerScope.cpp @@ -717,7 +717,7 @@ ServiceWorkerGlobalScope::SkipWaiting(ErrorResult& aRv) new WorkerScopeSkipWaitingRunnable(promiseProxy, NS_ConvertUTF16toUTF8(mScope)); - MOZ_ALWAYS_SUCCEEDS(mWorkerPrivate->DispatchToMainThread(runnable.forget())); + MOZ_ALWAYS_SUCCEEDS(NS_DispatchToMainThread(runnable)); return promise.forget(); } diff --git a/extensions/cookie/nsPermissionManager.cpp b/extensions/cookie/nsPermissionManager.cpp index 1f3c257dd..13ae7fd35 100644 --- a/extensions/cookie/nsPermissionManager.cpp +++ b/extensions/cookie/nsPermissionManager.cpp @@ -107,7 +107,11 @@ nsresult GetOriginFromPrincipal(nsIPrincipal* aPrincipal, nsACString& aOrigin) { nsresult rv = aPrincipal->GetOriginNoSuffix(aOrigin); - NS_ENSURE_SUCCESS(rv, rv); + // The principal may belong to the about:blank content viewer, so this can be + // expected to fail. + if (NS_FAILED(rv)) { + return rv; + } nsAutoCString suffix; rv = aPrincipal->GetOriginSuffix(suffix); diff --git a/hal/Hal.cpp b/hal/Hal.cpp index 16201a2d8..f88efd6cc 100644 --- a/hal/Hal.cpp +++ b/hal/Hal.cpp @@ -21,10 +21,7 @@ #include "nsJSUtils.h" #include "mozilla/ClearOnShutdown.h" #include "mozilla/Observer.h" -#include "mozilla/Services.h" -#include "mozilla/StaticPtr.h" #include "mozilla/dom/ContentChild.h" -#include "mozilla/dom/ContentParent.h" #include "mozilla/dom/ScreenOrientation.h" #include "WindowIdentifier.h" @@ -590,6 +587,7 @@ UnregisterSensorObserver(SensorType aSensor, ISensorObserver *aObserver) { AssertMainThread(); if (!gSensorObservers) { + HAL_ERR("Un-registering a sensor when none have been registered"); return; } @@ -18,7 +18,6 @@ #include "mozilla/hal_sandbox/PHal.h" #include "mozilla/HalScreenConfiguration.h" #include "mozilla/HalTypes.h" -#include "mozilla/Observer.h" #include "mozilla/Types.h" /* diff --git a/hal/HalSensor.h b/hal/HalSensor.h index 551c4271d..5175629c9 100644 --- a/hal/HalSensor.h +++ b/hal/HalSensor.h @@ -18,7 +18,6 @@ namespace hal { * If you add or change any here, do the same in GeckoHalDefines.java. */ enum SensorType { - SENSOR_UNKNOWN = -1, SENSOR_ORIENTATION = 0, SENSOR_ACCELERATION = 1, SENSOR_PROXIMITY = 2, @@ -63,7 +62,7 @@ namespace IPC { struct ParamTraits<mozilla::hal::SensorType>: public ContiguousEnumSerializer< mozilla::hal::SensorType, - mozilla::hal::SENSOR_UNKNOWN, + mozilla::hal::SENSOR_ORIENTATION, mozilla::hal::NUM_SENSOR_TYPE> { }; diff --git a/hal/sandbox/SandboxHal.cpp b/hal/sandbox/SandboxHal.cpp index 9771b3ef6..5501d459b 100644 --- a/hal/sandbox/SandboxHal.cpp +++ b/hal/sandbox/SandboxHal.cpp @@ -16,6 +16,7 @@ #include "mozilla/dom/battery/Types.h" #include "mozilla/dom/network/Types.h" #include "mozilla/dom/ScreenOrientation.h" +#include "mozilla/EnumeratedRange.h" #include "mozilla/Observer.h" #include "mozilla/Unused.h" #include "nsAutoPtr.h" @@ -404,9 +405,8 @@ public: hal::UnregisterBatteryObserver(this); hal::UnregisterNetworkObserver(this); hal::UnregisterScreenConfigurationObserver(this); - for (int32_t sensor = SENSOR_UNKNOWN + 1; - sensor < NUM_SENSOR_TYPE; ++sensor) { - hal::UnregisterSensorObserver(SensorType(sensor), this); + for (auto sensor : MakeEnumeratedRange(NUM_SENSOR_TYPE)) { + hal::UnregisterSensorObserver(sensor, this); } hal::UnregisterWakeLockObserver(this); hal::UnregisterSystemClockChangeObserver(this); diff --git a/ipc/glue/BackgroundChildImpl.cpp b/ipc/glue/BackgroundChildImpl.cpp index b157048a4..a129069bc 100644 --- a/ipc/glue/BackgroundChildImpl.cpp +++ b/ipc/glue/BackgroundChildImpl.cpp @@ -312,6 +312,7 @@ BackgroundChildImpl::DeallocPCamerasChild(camera::PCamerasChild *aActor) RefPtr<camera::CamerasChild> child = dont_AddRef(static_cast<camera::CamerasChild*>(aActor)); MOZ_ASSERT(aActor); + camera::Shutdown(); #endif return true; } diff --git a/js/public/MemoryMetrics.h b/js/public/MemoryMetrics.h index b0b26631c..dcc886217 100644 --- a/js/public/MemoryMetrics.h +++ b/js/public/MemoryMetrics.h @@ -11,7 +11,6 @@ // at your own risk. #include "mozilla/MemoryReporting.h" -#include "mozilla/PodOperations.h" #include "mozilla/TypeTraits.h" #include <string.h> @@ -74,15 +73,7 @@ struct ServoSizes Ignore }; - ServoSizes() - : gcHeapUsed(0) - , gcHeapUnused(0) - , gcHeapAdmin(0) - , gcHeapDecommitted(0) - , mallocHeap(0) - , nonHeap(0) - { - } + ServoSizes() = default; void add(Kind kind, size_t n) { switch (kind) { @@ -97,12 +88,12 @@ struct ServoSizes } } - size_t gcHeapUsed; - size_t gcHeapUnused; - size_t gcHeapAdmin; - size_t gcHeapDecommitted; - size_t mallocHeap; - size_t nonHeap; + size_t gcHeapUsed = 0; + size_t gcHeapUnused = 0; + size_t gcHeapAdmin = 0; + size_t gcHeapDecommitted = 0; + size_t mallocHeap = 0; + size_t nonHeap = 0; }; } // namespace JS diff --git a/js/public/Utility.h b/js/public/Utility.h index 68de3004a..99712faa8 100644 --- a/js/public/Utility.h +++ b/js/public/Utility.h @@ -391,7 +391,7 @@ js_delete_poison(const T* p) { if (p) { p->~T(); - memset(const_cast<T*>(p), 0x3B, sizeof(T)); + memset(static_cast<void*>(const_cast<T*>(p)), 0x3B, sizeof(T)); js_free(const_cast<T*>(p)); } } diff --git a/js/src/ds/LifoAlloc.h b/js/src/ds/LifoAlloc.h index f349cd476..b4e9c3418 100644 --- a/js/src/ds/LifoAlloc.h +++ b/js/src/ds/LifoAlloc.h @@ -15,6 +15,8 @@ #include "mozilla/TemplateLib.h" #include "mozilla/TypeTraits.h" +#include <new> + // This data structure supports stacky LIFO allocation (mark/release and // LifoAllocScope). It does not maintain one contiguous segment; instead, it // maintains a bunch of linked memory segments. In order to prevent malloc/free @@ -285,6 +287,20 @@ class LifoAlloc return allocImpl(n); } + template<typename T, typename... Args> + MOZ_ALWAYS_INLINE T* + allocInSize(size_t n, Args&&... args) + { + MOZ_ASSERT(n >= sizeof(T), "must request enough space to store a T"); + static_assert(alignof(T) <= detail::LIFO_ALLOC_ALIGN, + "LifoAlloc must provide enough alignment to store T"); + void* ptr = alloc(n); + if (!ptr) + return nullptr; + + return new (ptr) T(mozilla::Forward<Args>(args)...); + } + MOZ_ALWAYS_INLINE void* allocInfallible(size_t n) { AutoEnterOOMUnsafeRegion oomUnsafe; diff --git a/js/src/frontend/BytecodeEmitter.cpp b/js/src/frontend/BytecodeEmitter.cpp index c7c615ccf..4eb7bf880 100644 --- a/js/src/frontend/BytecodeEmitter.cpp +++ b/js/src/frontend/BytecodeEmitter.cpp @@ -319,7 +319,7 @@ ScopeKindIsInBody(ScopeKind kind) static inline void MarkAllBindingsClosedOver(LexicalScope::Data& data) { - BindingName* names = data.names; + TrailingNamesArray& names = data.trailingNames; for (uint32_t i = 0; i < data.length; i++) names[i] = BindingName(names[i].name(), true); } @@ -8978,7 +8978,8 @@ BytecodeEmitter::isRestParameter(ParseNode* pn, bool* result) if (bindings->nonPositionalFormalStart > 0) { // |paramName| can be nullptr when the rest destructuring syntax is // used: `function f(...[]) {}`. - JSAtom* paramName = bindings->names[bindings->nonPositionalFormalStart - 1].name(); + JSAtom* paramName = + bindings->trailingNames[bindings->nonPositionalFormalStart - 1].name(); *result = paramName && name == paramName; return true; } diff --git a/js/src/frontend/ParseNode.cpp b/js/src/frontend/ParseNode.cpp index ece3a45df..91f17625c 100644 --- a/js/src/frontend/ParseNode.cpp +++ b/js/src/frontend/ParseNode.cpp @@ -838,7 +838,7 @@ LexicalScopeNode::dump(int indent) if (!isEmptyScope()) { LexicalScope::Data* bindings = scopeBindings(); for (uint32_t i = 0; i < bindings->length; i++) { - JSAtom* name = bindings->names[i].name(); + JSAtom* name = bindings->trailingNames[i].name(); JS::AutoCheckCannotGC nogc; if (name->hasLatin1Chars()) DumpName(name->latin1Chars(nogc), name->length()); diff --git a/js/src/frontend/Parser.cpp b/js/src/frontend/Parser.cpp index 623379f61..7bfab87a3 100644 --- a/js/src/frontend/Parser.cpp +++ b/js/src/frontend/Parser.cpp @@ -19,6 +19,8 @@ #include "frontend/Parser.h" +#include <new> + #include "jsapi.h" #include "jsatom.h" #include "jscntxt.h" @@ -1451,16 +1453,26 @@ template <typename Scope> static typename Scope::Data* NewEmptyBindingData(ExclusiveContext* cx, LifoAlloc& alloc, uint32_t numBindings) { + using Data = typename Scope::Data; size_t allocSize = Scope::sizeOfData(numBindings); - typename Scope::Data* bindings = static_cast<typename Scope::Data*>(alloc.alloc(allocSize)); - if (!bindings) { + auto* bindings = alloc.allocInSize<Data>(allocSize, numBindings); + if (!bindings) ReportOutOfMemory(cx); - return nullptr; - } - PodZero(bindings); return bindings; } +/** + * Copy-construct |BindingName|s from |bindings| into |cursor|, then return + * the location one past the newly-constructed |BindingName|s. + */ +static MOZ_MUST_USE BindingName* +FreshlyInitializeBindings(BindingName* cursor, const Vector<BindingName>& bindings) +{ + for (const BindingName& binding : bindings) + new (cursor++) BindingName(binding); + return cursor; +} + template <> Maybe<GlobalScope::Data*> Parser<FullParseHandler>::newGlobalScopeData(ParseContext::Scope& scope) @@ -1505,22 +1517,20 @@ Parser<FullParseHandler>::newGlobalScopeData(ParseContext::Scope& scope) return Nothing(); // The ordering here is important. See comments in GlobalScope. - BindingName* start = bindings->names; + BindingName* start = bindings->trailingNames.start(); BindingName* cursor = start; - PodCopy(cursor, funs.begin(), funs.length()); - cursor += funs.length(); + cursor = FreshlyInitializeBindings(cursor, funs); bindings->varStart = cursor - start; - PodCopy(cursor, vars.begin(), vars.length()); - cursor += vars.length(); + cursor = FreshlyInitializeBindings(cursor, vars); bindings->letStart = cursor - start; - PodCopy(cursor, lets.begin(), lets.length()); - cursor += lets.length(); + cursor = FreshlyInitializeBindings(cursor, lets); bindings->constStart = cursor - start; - PodCopy(cursor, consts.begin(), consts.length()); + cursor = FreshlyInitializeBindings(cursor, consts); + bindings->length = numBindings; } @@ -1572,22 +1582,20 @@ Parser<FullParseHandler>::newModuleScopeData(ParseContext::Scope& scope) return Nothing(); // The ordering here is important. See comments in ModuleScope. - BindingName* start = bindings->names; + BindingName* start = bindings->trailingNames.start(); BindingName* cursor = start; - PodCopy(cursor, imports.begin(), imports.length()); - cursor += imports.length(); + cursor = FreshlyInitializeBindings(cursor, imports); bindings->varStart = cursor - start; - PodCopy(cursor, vars.begin(), vars.length()); - cursor += vars.length(); + cursor = FreshlyInitializeBindings(cursor, vars); bindings->letStart = cursor - start; - PodCopy(cursor, lets.begin(), lets.length()); - cursor += lets.length(); + cursor = FreshlyInitializeBindings(cursor, lets); bindings->constStart = cursor - start; - PodCopy(cursor, consts.begin(), consts.length()); + cursor = FreshlyInitializeBindings(cursor, consts); + bindings->length = numBindings; } @@ -1623,16 +1631,16 @@ Parser<FullParseHandler>::newEvalScopeData(ParseContext::Scope& scope) if (!bindings) return Nothing(); - BindingName* start = bindings->names; + BindingName* start = bindings->trailingNames.start(); BindingName* cursor = start; // Keep track of what vars are functions. This is only used in BCE to omit // superfluous DEFVARs. - PodCopy(cursor, funs.begin(), funs.length()); - cursor += funs.length(); + cursor = FreshlyInitializeBindings(cursor, funs); bindings->varStart = cursor - start; - PodCopy(cursor, vars.begin(), vars.length()); + cursor = FreshlyInitializeBindings(cursor, vars); + bindings->length = numBindings; } @@ -1719,18 +1727,17 @@ Parser<FullParseHandler>::newFunctionScopeData(ParseContext::Scope& scope, bool return Nothing(); // The ordering here is important. See comments in FunctionScope. - BindingName* start = bindings->names; + BindingName* start = bindings->trailingNames.start(); BindingName* cursor = start; - PodCopy(cursor, positionalFormals.begin(), positionalFormals.length()); - cursor += positionalFormals.length(); + cursor = FreshlyInitializeBindings(cursor, positionalFormals); bindings->nonPositionalFormalStart = cursor - start; - PodCopy(cursor, formals.begin(), formals.length()); - cursor += formals.length(); + cursor = FreshlyInitializeBindings(cursor, formals); bindings->varStart = cursor - start; - PodCopy(cursor, vars.begin(), vars.length()); + cursor = FreshlyInitializeBindings(cursor, vars); + bindings->length = numBindings; } @@ -1760,10 +1767,11 @@ Parser<FullParseHandler>::newVarScopeData(ParseContext::Scope& scope) return Nothing(); // The ordering here is important. See comments in FunctionScope. - BindingName* start = bindings->names; + BindingName* start = bindings->trailingNames.start(); BindingName* cursor = start; - PodCopy(cursor, vars.begin(), vars.length()); + cursor = FreshlyInitializeBindings(cursor, vars); + bindings->length = numBindings; } @@ -1808,14 +1816,14 @@ Parser<FullParseHandler>::newLexicalScopeData(ParseContext::Scope& scope) return Nothing(); // The ordering here is important. See comments in LexicalScope. - BindingName* cursor = bindings->names; + BindingName* cursor = bindings->trailingNames.start(); BindingName* start = cursor; - PodCopy(cursor, lets.begin(), lets.length()); - cursor += lets.length(); + cursor = FreshlyInitializeBindings(cursor, lets); bindings->constStart = cursor - start; - PodCopy(cursor, consts.begin(), consts.length()); + cursor = FreshlyInitializeBindings(cursor, consts); + bindings->length = numBindings; } diff --git a/js/src/gc/GCInternals.h b/js/src/gc/GCInternals.h index 4919b87a5..e8df0bb70 100644 --- a/js/src/gc/GCInternals.h +++ b/js/src/gc/GCInternals.h @@ -9,7 +9,6 @@ #include "mozilla/ArrayUtils.h" #include "mozilla/Maybe.h" -#include "mozilla/PodOperations.h" #include "jscntxt.h" @@ -102,9 +101,9 @@ struct TenureCountCache static const size_t EntryShift = 4; static const size_t EntryCount = 1 << EntryShift; - TenureCount entries[EntryCount]; + TenureCount entries[EntryCount] = {}; // zeroes - TenureCountCache() { mozilla::PodZero(this); } + TenureCountCache() = default; HashNumber hash(ObjectGroup* group) { #if JS_BITS_PER_WORD == 32 diff --git a/js/src/gc/Marking.cpp b/js/src/gc/Marking.cpp index b2c105999..3ea4c9d29 100644 --- a/js/src/gc/Marking.cpp +++ b/js/src/gc/Marking.cpp @@ -1231,34 +1231,34 @@ BindingIter::trace(JSTracer* trc) void LexicalScope::Data::trace(JSTracer* trc) { - TraceBindingNames(trc, names, length); + TraceBindingNames(trc, trailingNames.start(), length); } void FunctionScope::Data::trace(JSTracer* trc) { TraceNullableEdge(trc, &canonicalFunction, "scope canonical function"); - TraceNullableBindingNames(trc, names, length); + TraceNullableBindingNames(trc, trailingNames.start(), length); } void VarScope::Data::trace(JSTracer* trc) { - TraceBindingNames(trc, names, length); + TraceBindingNames(trc, trailingNames.start(), length); } void GlobalScope::Data::trace(JSTracer* trc) { - TraceBindingNames(trc, names, length); + TraceBindingNames(trc, trailingNames.start(), length); } void EvalScope::Data::trace(JSTracer* trc) { - TraceBindingNames(trc, names, length); + TraceBindingNames(trc, trailingNames.start(), length); } void ModuleScope::Data::trace(JSTracer* trc) { TraceNullableEdge(trc, &module, "scope module"); - TraceBindingNames(trc, names, length); + TraceBindingNames(trc, trailingNames.start(), length); } void Scope::traceChildren(JSTracer* trc) @@ -1302,13 +1302,13 @@ js::GCMarker::eagerlyMarkChildren(Scope* scope) traverseEdge(scope, static_cast<Scope*>(scope->enclosing_)); if (scope->environmentShape_) traverseEdge(scope, static_cast<Shape*>(scope->environmentShape_)); - BindingName* names = nullptr; + TrailingNamesArray* names = nullptr; uint32_t length = 0; switch (scope->kind_) { case ScopeKind::Function: { FunctionScope::Data* data = reinterpret_cast<FunctionScope::Data*>(scope->data_); traverseEdge(scope, static_cast<JSObject*>(data->canonicalFunction)); - names = data->names; + names = &data->trailingNames; length = data->length; break; } @@ -1316,7 +1316,7 @@ js::GCMarker::eagerlyMarkChildren(Scope* scope) case ScopeKind::FunctionBodyVar: case ScopeKind::ParameterExpressionVar: { VarScope::Data* data = reinterpret_cast<VarScope::Data*>(scope->data_); - names = data->names; + names = &data->trailingNames; length = data->length; break; } @@ -1327,7 +1327,7 @@ js::GCMarker::eagerlyMarkChildren(Scope* scope) case ScopeKind::NamedLambda: case ScopeKind::StrictNamedLambda: { LexicalScope::Data* data = reinterpret_cast<LexicalScope::Data*>(scope->data_); - names = data->names; + names = &data->trailingNames; length = data->length; break; } @@ -1335,7 +1335,7 @@ js::GCMarker::eagerlyMarkChildren(Scope* scope) case ScopeKind::Global: case ScopeKind::NonSyntactic: { GlobalScope::Data* data = reinterpret_cast<GlobalScope::Data*>(scope->data_); - names = data->names; + names = &data->trailingNames; length = data->length; break; } @@ -1343,7 +1343,7 @@ js::GCMarker::eagerlyMarkChildren(Scope* scope) case ScopeKind::Eval: case ScopeKind::StrictEval: { EvalScope::Data* data = reinterpret_cast<EvalScope::Data*>(scope->data_); - names = data->names; + names = &data->trailingNames; length = data->length; break; } @@ -1351,7 +1351,7 @@ js::GCMarker::eagerlyMarkChildren(Scope* scope) case ScopeKind::Module: { ModuleScope::Data* data = reinterpret_cast<ModuleScope::Data*>(scope->data_); traverseEdge(scope, static_cast<JSObject*>(data->module)); - names = data->names; + names = &data->trailingNames; length = data->length; break; } @@ -1361,12 +1361,12 @@ js::GCMarker::eagerlyMarkChildren(Scope* scope) } if (scope->kind_ == ScopeKind::Function) { for (uint32_t i = 0; i < length; i++) { - if (JSAtom* name = names[i].name()) + if (JSAtom* name = names->operator[](i).name()) traverseEdge(scope, static_cast<JSString*>(name)); } } else { for (uint32_t i = 0; i < length; i++) - traverseEdge(scope, static_cast<JSString*>(names[i].name())); + traverseEdge(scope, static_cast<JSString*>(names->operator[](i).name())); } } diff --git a/js/src/gc/Statistics.h b/js/src/gc/Statistics.h index ca1969b2c..08a2810cf 100644 --- a/js/src/gc/Statistics.h +++ b/js/src/gc/Statistics.h @@ -10,7 +10,6 @@ #include "mozilla/EnumeratedArray.h" #include "mozilla/IntegerRange.h" #include "mozilla/Maybe.h" -#include "mozilla/PodOperations.h" #include "jsalloc.h" #include "jsgc.h" @@ -112,29 +111,26 @@ enum Stat { struct ZoneGCStats { /* Number of zones collected in this GC. */ - int collectedZoneCount; + int collectedZoneCount = 0; /* Total number of zones in the Runtime at the start of this GC. */ - int zoneCount; + int zoneCount = 0; /* Number of zones swept in this GC. */ - int sweptZoneCount; + int sweptZoneCount = 0; /* Total number of compartments in all zones collected. */ - int collectedCompartmentCount; + int collectedCompartmentCount = 0; /* Total number of compartments in the Runtime at the start of this GC. */ - int compartmentCount; + int compartmentCount = 0; /* Total number of compartments swept by this GC. */ - int sweptCompartmentCount; + int sweptCompartmentCount = 0; bool isCollectingAllZones() const { return collectedZoneCount == zoneCount; } - ZoneGCStats() - : collectedZoneCount(0), zoneCount(0), sweptZoneCount(0), - collectedCompartmentCount(0), compartmentCount(0), sweptCompartmentCount(0) - {} + ZoneGCStats() = default; }; #define FOR_EACH_GC_PROFILE_TIME(_) \ diff --git a/js/src/jit/BacktrackingAllocator.cpp b/js/src/jit/BacktrackingAllocator.cpp index 94ef25785..73aceeccb 100644 --- a/js/src/jit/BacktrackingAllocator.cpp +++ b/js/src/jit/BacktrackingAllocator.cpp @@ -378,7 +378,6 @@ BacktrackingAllocator::init() size_t numVregs = graph.numVirtualRegisters(); if (!vregs.init(mir->alloc(), numVregs)) return false; - memset(&vregs[0], 0, sizeof(VirtualRegister) * numVregs); for (uint32_t i = 0; i < numVregs; i++) new(&vregs[i]) VirtualRegister(); @@ -1101,9 +1100,9 @@ BacktrackingAllocator::mergeAndQueueRegisters() if (iter->isParameter()) { for (size_t i = 0; i < iter->numDefs(); i++) { DebugOnly<bool> found = false; - VirtualRegister ¶mVreg = vreg(iter->getDef(i)); + VirtualRegister& paramVreg = vreg(iter->getDef(i)); for (; original < paramVreg.vreg(); original++) { - VirtualRegister &originalVreg = vregs[original]; + VirtualRegister& originalVreg = vregs[original]; if (*originalVreg.def()->output() == *iter->getDef(i)->output()) { MOZ_ASSERT(originalVreg.ins()->isParameter()); if (!tryMergeBundles(originalVreg.firstBundle(), paramVreg.firstBundle())) @@ -1136,7 +1135,7 @@ BacktrackingAllocator::mergeAndQueueRegisters() LBlock* block = graph.getBlock(i); for (size_t j = 0; j < block->numPhis(); j++) { LPhi* phi = block->getPhi(j); - VirtualRegister &outputVreg = vreg(phi->getDef(0)); + VirtualRegister& outputVreg = vreg(phi->getDef(0)); for (size_t k = 0, kend = phi->numOperands(); k < kend; k++) { VirtualRegister& inputVreg = vreg(phi->getOperand(k)->toUse()); if (!tryMergeBundles(inputVreg.firstBundle(), outputVreg.firstBundle())) @@ -1334,7 +1333,7 @@ BacktrackingAllocator::computeRequirement(LiveBundle* bundle, for (LiveRange::BundleLinkIterator iter = bundle->rangesBegin(); iter; iter++) { LiveRange* range = LiveRange::get(*iter); - VirtualRegister ® = vregs[range->vreg()]; + VirtualRegister& reg = vregs[range->vreg()]; if (range->hasDefinition()) { // Deal with any definition constraints/hints. @@ -1396,7 +1395,7 @@ BacktrackingAllocator::tryAllocateRegister(PhysicalRegister& r, LiveBundle* bund for (LiveRange::BundleLinkIterator iter = bundle->rangesBegin(); iter; iter++) { LiveRange* range = LiveRange::get(*iter); - VirtualRegister ® = vregs[range->vreg()]; + VirtualRegister& reg = vregs[range->vreg()]; if (!reg.isCompatible(r.reg)) return true; diff --git a/js/src/jit/BacktrackingAllocator.h b/js/src/jit/BacktrackingAllocator.h index 6d14ffacd..9910498fb 100644 --- a/js/src/jit/BacktrackingAllocator.h +++ b/js/src/jit/BacktrackingAllocator.h @@ -478,34 +478,31 @@ class LiveBundle : public TempObject class VirtualRegister { // Instruction which defines this register. - LNode* ins_; + LNode* ins_ = nullptr; // Definition in the instruction for this register. - LDefinition* def_; + LDefinition* def_ = nullptr; // All live ranges for this register. These may overlap each other, and are // ordered by their start position. InlineForwardList<LiveRange::RegisterLink> ranges_; // Whether def_ is a temp or an output. - bool isTemp_; + bool isTemp_ = false; // Whether this vreg is an input for some phi. This use is not reflected in // any range on the vreg. - bool usedByPhi_; + bool usedByPhi_ = false; // If this register's definition is MUST_REUSE_INPUT, whether a copy must // be introduced before the definition that relaxes the policy. - bool mustCopyInput_; + bool mustCopyInput_ = false; void operator=(const VirtualRegister&) = delete; VirtualRegister(const VirtualRegister&) = delete; public: - explicit VirtualRegister() - { - // Note: This class is zeroed before it is constructed. - } + VirtualRegister() = default; void init(LNode* ins, LDefinition* def, bool isTemp) { MOZ_ASSERT(!ins_); diff --git a/js/src/jit/IonCode.h b/js/src/jit/IonCode.h index c581aa62e..55c3d4dad 100644 --- a/js/src/jit/IonCode.h +++ b/js/src/jit/IonCode.h @@ -9,7 +9,6 @@ #include "mozilla/Atomics.h" #include "mozilla/MemoryReporting.h" -#include "mozilla/PodOperations.h" #include "jstypes.h" @@ -692,17 +691,15 @@ struct IonScriptCounts { private: // Any previous invalidated compilation(s) for the script. - IonScriptCounts* previous_; + IonScriptCounts* previous_ = nullptr; // Information about basic blocks in this script. - size_t numBlocks_; - IonBlockCounts* blocks_; + size_t numBlocks_ = 0; + IonBlockCounts* blocks_ = nullptr; public: - IonScriptCounts() { - mozilla::PodZero(this); - } + IonScriptCounts() = default; ~IonScriptCounts() { for (size_t i = 0; i < numBlocks_; i++) diff --git a/js/src/jit/shared/Assembler-shared.h b/js/src/jit/shared/Assembler-shared.h index aac9687b8..8044e75cb 100644 --- a/js/src/jit/shared/Assembler-shared.h +++ b/js/src/jit/shared/Assembler-shared.h @@ -7,8 +7,6 @@ #ifndef jit_shared_Assembler_shared_h #define jit_shared_Assembler_shared_h -#include "mozilla/PodOperations.h" - #include <limits.h> #include "jit/AtomicOp.h" @@ -491,10 +489,10 @@ class CodeLabel class CodeOffsetJump { - size_t offset_; + size_t offset_ = 0; #ifdef JS_SMALL_BRANCH - size_t jumpTableIndex_; + size_t jumpTableIndex_ = 0; #endif public: @@ -510,9 +508,7 @@ class CodeOffsetJump explicit CodeOffsetJump(size_t offset) : offset_(offset) {} #endif - CodeOffsetJump() { - mozilla::PodZero(this); - } + CodeOffsetJump() = default; size_t offset() const { return offset_; diff --git a/js/src/vm/ArrayBufferObject.h b/js/src/vm/ArrayBufferObject.h index 6614f5220..e9c9bc0e0 100644 --- a/js/src/vm/ArrayBufferObject.h +++ b/js/src/vm/ArrayBufferObject.h @@ -457,8 +457,8 @@ ClampDoubleToUint8(const double x); struct uint8_clamped { uint8_t val; - uint8_clamped() { } - uint8_clamped(const uint8_clamped& other) : val(other.val) { } + uint8_clamped() = default; + uint8_clamped(const uint8_clamped& other) = default; // invoke our assignment helpers for constructor conversion explicit uint8_clamped(uint8_t x) { *this = x; } @@ -469,10 +469,7 @@ struct uint8_clamped { explicit uint8_clamped(int32_t x) { *this = x; } explicit uint8_clamped(double x) { *this = x; } - uint8_clamped& operator=(const uint8_clamped& x) { - val = x.val; - return *this; - } + uint8_clamped& operator=(const uint8_clamped& x) = default; uint8_clamped& operator=(uint8_t x) { val = x; diff --git a/js/src/vm/Caches.h b/js/src/vm/Caches.h index 91a78bdc8..b11dd9dcb 100644 --- a/js/src/vm/Caches.h +++ b/js/src/vm/Caches.h @@ -7,6 +7,8 @@ #ifndef vm_Caches_h #define vm_Caches_h +#include <new> + #include "jsatom.h" #include "jsbytecode.h" #include "jsobj.h" @@ -191,14 +193,20 @@ class NewObjectCache char templateObject[MAX_OBJ_SIZE]; }; - Entry entries[41]; // TODO: reconsider size + using EntryArray = Entry[41]; // TODO: reconsider size; + EntryArray entries; public: - typedef int EntryIndex; + using EntryIndex = int; + + NewObjectCache() + : entries{} // zeroes out the array + {} - NewObjectCache() { mozilla::PodZero(this); } - void purge() { mozilla::PodZero(this); } + void purge() { + new (&entries) EntryArray{}; // zeroes out the array + } /* Remove any cached items keyed on moved objects. */ void clearNurseryObjects(JSRuntime* rt); diff --git a/js/src/vm/Runtime.h b/js/src/vm/Runtime.h index 735adadf2..f354d2069 100644 --- a/js/src/vm/Runtime.h +++ b/js/src/vm/Runtime.h @@ -11,11 +11,11 @@ #include "mozilla/Attributes.h" #include "mozilla/LinkedList.h" #include "mozilla/MemoryReporting.h" -#include "mozilla/PodOperations.h" #include "mozilla/Scoped.h" #include "mozilla/ThreadLocal.h" #include "mozilla/Vector.h" +#include <algorithm> #include <setjmp.h> #include "jsatom.h" @@ -1504,20 +1504,21 @@ PerThreadData::exclusiveThreadsPresent() static MOZ_ALWAYS_INLINE void MakeRangeGCSafe(Value* vec, size_t len) { - mozilla::PodZero(vec, len); + // Don't PodZero here because JS::Value is non-trivial. + for (size_t i = 0; i < len; i++) + vec[i].setDouble(+0.0); } static MOZ_ALWAYS_INLINE void MakeRangeGCSafe(Value* beg, Value* end) { - mozilla::PodZero(beg, end - beg); + MakeRangeGCSafe(beg, end - beg); } static MOZ_ALWAYS_INLINE void MakeRangeGCSafe(jsid* beg, jsid* end) { - for (jsid* id = beg; id != end; ++id) - *id = INT_TO_JSID(0); + std::fill(beg, end, INT_TO_JSID(0)); } static MOZ_ALWAYS_INLINE void @@ -1529,13 +1530,13 @@ MakeRangeGCSafe(jsid* vec, size_t len) static MOZ_ALWAYS_INLINE void MakeRangeGCSafe(Shape** beg, Shape** end) { - mozilla::PodZero(beg, end - beg); + std::fill(beg, end, nullptr); } static MOZ_ALWAYS_INLINE void MakeRangeGCSafe(Shape** vec, size_t len) { - mozilla::PodZero(vec, len); + MakeRangeGCSafe(vec, vec + len); } static MOZ_ALWAYS_INLINE void diff --git a/js/src/vm/Scope.cpp b/js/src/vm/Scope.cpp index 112b34586..a71c03695 100644 --- a/js/src/vm/Scope.cpp +++ b/js/src/vm/Scope.cpp @@ -191,12 +191,12 @@ template <typename ConcreteScope> static UniquePtr<typename ConcreteScope::Data> NewEmptyScopeData(ExclusiveContext* cx, uint32_t length = 0) { - uint8_t* bytes = cx->zone()->pod_calloc<uint8_t>(ConcreteScope::sizeOfData(length)); + uint8_t* bytes = cx->zone()->pod_malloc<uint8_t>(ConcreteScope::sizeOfData(length)); if (!bytes) ReportOutOfMemory(cx); auto data = reinterpret_cast<typename ConcreteScope::Data*>(bytes); if (data) - new (data) typename ConcreteScope::Data(); + new (data) typename ConcreteScope::Data(length); return UniquePtr<typename ConcreteScope::Data>(data); } @@ -273,7 +273,7 @@ Scope::XDRSizedBindingNames(XDRState<mode>* xdr, Handle<ConcreteScope*> scope, } for (uint32_t i = 0; i < length; i++) { - if (!XDRBindingName(xdr, &data->names[i])) { + if (!XDRBindingName(xdr, &data->trailingNames[i])) { if (mode == XDR_DECODE) { DeleteScopeData(data.get()); data.set(nullptr); @@ -1250,7 +1250,7 @@ BindingIter::init(LexicalScope::Data& data, uint32_t firstFrameSlot, uint8_t fla init(0, 0, 0, 0, 0, 0, CanHaveEnvironmentSlots | flags, firstFrameSlot, JSSLOT_FREE(&LexicalEnvironmentObject::class_), - data.names, data.length); + data.trailingNames.start(), data.length); } else { // imports - [0, 0) // positional formals - [0, 0) @@ -1262,7 +1262,7 @@ BindingIter::init(LexicalScope::Data& data, uint32_t firstFrameSlot, uint8_t fla init(0, 0, 0, 0, 0, data.constStart, CanHaveFrameSlots | CanHaveEnvironmentSlots | flags, firstFrameSlot, JSSLOT_FREE(&LexicalEnvironmentObject::class_), - data.names, data.length); + data.trailingNames.start(), data.length); } } @@ -1283,7 +1283,7 @@ BindingIter::init(FunctionScope::Data& data, uint8_t flags) init(0, data.nonPositionalFormalStart, data.varStart, data.varStart, data.length, data.length, flags, 0, JSSLOT_FREE(&CallObject::class_), - data.names, data.length); + data.trailingNames.start(), data.length); } void @@ -1299,7 +1299,7 @@ BindingIter::init(VarScope::Data& data, uint32_t firstFrameSlot) init(0, 0, 0, 0, data.length, data.length, CanHaveFrameSlots | CanHaveEnvironmentSlots, firstFrameSlot, JSSLOT_FREE(&VarEnvironmentObject::class_), - data.names, data.length); + data.trailingNames.start(), data.length); } void @@ -1315,7 +1315,7 @@ BindingIter::init(GlobalScope::Data& data) init(0, 0, 0, data.varStart, data.letStart, data.constStart, CannotHaveSlots, UINT32_MAX, UINT32_MAX, - data.names, data.length); + data.trailingNames.start(), data.length); } void @@ -1343,7 +1343,7 @@ BindingIter::init(EvalScope::Data& data, bool strict) // consts - [data.length, data.length) init(0, 0, 0, data.varStart, data.length, data.length, flags, firstFrameSlot, firstEnvironmentSlot, - data.names, data.length); + data.trailingNames.start(), data.length); } void @@ -1359,7 +1359,7 @@ BindingIter::init(ModuleScope::Data& data) init(data.varStart, data.varStart, data.varStart, data.varStart, data.letStart, data.constStart, CanHaveFrameSlots | CanHaveEnvironmentSlots, 0, JSSLOT_FREE(&ModuleEnvironmentObject::class_), - data.names, data.length); + data.trailingNames.start(), data.length); } PositionalFormalParameterIter::PositionalFormalParameterIter(JSScript* script) diff --git a/js/src/vm/Scope.h b/js/src/vm/Scope.h index 5304d6713..1d04fd9f6 100644 --- a/js/src/vm/Scope.h +++ b/js/src/vm/Scope.h @@ -12,6 +12,7 @@ #include "jsobj.h" #include "jsopcode.h" +#include "jsutil.h" #include "gc/Heap.h" #include "gc/Policy.h" @@ -111,6 +112,47 @@ class BindingName void trace(JSTracer* trc); }; +/** + * The various {Global,Module,...}Scope::Data classes consist of always-present + * bits, then a trailing array of BindingNames. The various Data classes all + * end in a TrailingNamesArray that contains sized/aligned space for *one* + * BindingName. Data instances that contain N BindingNames, are then allocated + * in sizeof(Data) + (space for (N - 1) BindingNames). Because this class's + * |data_| field is properly sized/aligned, the N-BindingName array can start + * at |data_|. + * + * This is concededly a very low-level representation, but we want to only + * allocate once for data+bindings both, and this does so approximately as + * elegantly as C++ allows. + */ +class TrailingNamesArray +{ + private: + alignas(BindingName) unsigned char data_[sizeof(BindingName)]; + + private: + // Some versions of GCC treat it as a -Wstrict-aliasing violation (ergo a + // -Werror compile error) to reinterpret_cast<> |data_| to |T*|, even + // through |void*|. Placing the latter cast in these separate functions + // breaks the chain such that affected GCC versions no longer warn/error. + void* ptr() { + return data_; + } + + public: + // Explicitly ensure no one accidentally allocates scope data without + // poisoning its trailing names. + TrailingNamesArray() = delete; + + explicit TrailingNamesArray(size_t nameCount) { + if (nameCount) + JS_POISON(&data_, 0xCC, sizeof(BindingName) * nameCount); + } + BindingName* start() { return reinterpret_cast<BindingName*>(ptr()); } + + BindingName& operator[](size_t i) { return start()[i]; } +}; + class BindingLocation { public: @@ -337,16 +379,19 @@ class LexicalScope : public Scope // // lets - [0, constStart) // consts - [constStart, length) - uint32_t constStart; - uint32_t length; + uint32_t constStart = 0; + uint32_t length = 0; // Frame slots [0, nextFrameSlot) are live when this is the innermost // scope. - uint32_t nextFrameSlot; + uint32_t nextFrameSlot = 0; // The array of tagged JSAtom* names, allocated beyond the end of the // struct. - BindingName names[1]; + TrailingNamesArray trailingNames; + + explicit Data(size_t nameCount) : trailingNames(nameCount) {} + Data() = delete; void trace(JSTracer* trc); }; @@ -433,11 +478,11 @@ class FunctionScope : public Scope // The canonical function of the scope, as during a scope walk we // often query properties of the JSFunction (e.g., is the function an // arrow). - GCPtrFunction canonicalFunction; + GCPtrFunction canonicalFunction = {}; // If parameter expressions are present, parameters act like lexical // bindings. - bool hasParameterExprs; + bool hasParameterExprs = false; // Bindings are sorted by kind in both frames and environments. // @@ -452,17 +497,20 @@ class FunctionScope : public Scope // positional formals - [0, nonPositionalFormalStart) // other formals - [nonPositionalParamStart, varStart) // vars - [varStart, length) - uint16_t nonPositionalFormalStart; - uint16_t varStart; - uint32_t length; + uint16_t nonPositionalFormalStart = 0; + uint16_t varStart = 0; + uint32_t length = 0; // Frame slots [0, nextFrameSlot) are live when this is the innermost // scope. - uint32_t nextFrameSlot; + uint32_t nextFrameSlot = 0; // The array of tagged JSAtom* names, allocated beyond the end of the // struct. - BindingName names[1]; + TrailingNamesArray trailingNames; + + explicit Data(size_t nameCount) : trailingNames(nameCount) {} + Data() = delete; void trace(JSTracer* trc); }; @@ -548,15 +596,18 @@ class VarScope : public Scope struct Data { // All bindings are vars. - uint32_t length; + uint32_t length = 0; // Frame slots [firstFrameSlot(), nextFrameSlot) are live when this is // the innermost scope. - uint32_t nextFrameSlot; + uint32_t nextFrameSlot = 0; // The array of tagged JSAtom* names, allocated beyond the end of the // struct. - BindingName names[1]; + TrailingNamesArray trailingNames; + + explicit Data(size_t nameCount) : trailingNames(nameCount) {} + Data() = delete; void trace(JSTracer* trc); }; @@ -638,14 +689,17 @@ class GlobalScope : public Scope // vars - [varStart, letStart) // lets - [letStart, constStart) // consts - [constStart, length) - uint32_t varStart; - uint32_t letStart; - uint32_t constStart; - uint32_t length; + uint32_t varStart = 0; + uint32_t letStart = 0; + uint32_t constStart = 0; + uint32_t length = 0; // The array of tagged JSAtom* names, allocated beyond the end of the // struct. - BindingName names[1]; + TrailingNamesArray trailingNames; + + explicit Data(size_t nameCount) : trailingNames(nameCount) {} + Data() = delete; void trace(JSTracer* trc); }; @@ -736,16 +790,19 @@ class EvalScope : public Scope // // top-level funcs - [0, varStart) // vars - [varStart, length) - uint32_t varStart; - uint32_t length; + uint32_t varStart = 0; + uint32_t length = 0; // Frame slots [0, nextFrameSlot) are live when this is the innermost // scope. - uint32_t nextFrameSlot; + uint32_t nextFrameSlot = 0; // The array of tagged JSAtom* names, allocated beyond the end of the // struct. - BindingName names[1]; + TrailingNamesArray trailingNames; + + explicit Data(size_t nameCount) : trailingNames(nameCount) {} + Data() = delete; void trace(JSTracer* trc); }; @@ -827,7 +884,7 @@ class ModuleScope : public Scope struct Data { // The module of the scope. - GCPtr<ModuleObject*> module; + GCPtr<ModuleObject*> module = {}; // Bindings are sorted by kind. // @@ -835,18 +892,21 @@ class ModuleScope : public Scope // vars - [varStart, letStart) // lets - [letStart, constStart) // consts - [constStart, length) - uint32_t varStart; - uint32_t letStart; - uint32_t constStart; - uint32_t length; + uint32_t varStart = 0; + uint32_t letStart = 0; + uint32_t constStart = 0; + uint32_t length = 0; // Frame slots [0, nextFrameSlot) are live when this is the innermost // scope. - uint32_t nextFrameSlot; + uint32_t nextFrameSlot = 0; // The array of tagged JSAtom* names, allocated beyond the end of the // struct. - BindingName names[1]; + TrailingNamesArray trailingNames; + + explicit Data(size_t nameCount) : trailingNames(nameCount) {} + Data() = delete; void trace(JSTracer* trc); }; diff --git a/js/src/vm/String.h b/js/src/vm/String.h index 1a0c58575..514e2c205 100644 --- a/js/src/vm/String.h +++ b/js/src/vm/String.h @@ -8,7 +8,6 @@ #define vm_String_h #include "mozilla/MemoryReporting.h" -#include "mozilla/PodOperations.h" #include "mozilla/Range.h" #include "jsapi.h" @@ -1087,19 +1086,17 @@ class StaticStrings static const size_t SMALL_CHAR_LIMIT = 128U; static const size_t NUM_SMALL_CHARS = 64U; - JSAtom* length2StaticTable[NUM_SMALL_CHARS * NUM_SMALL_CHARS]; + JSAtom* length2StaticTable[NUM_SMALL_CHARS * NUM_SMALL_CHARS] = {}; // zeroes public: /* We keep these public for the JITs. */ static const size_t UNIT_STATIC_LIMIT = 256U; - JSAtom* unitStaticTable[UNIT_STATIC_LIMIT]; + JSAtom* unitStaticTable[UNIT_STATIC_LIMIT] = {}; // zeroes static const size_t INT_STATIC_LIMIT = 256U; - JSAtom* intStaticTable[INT_STATIC_LIMIT]; + JSAtom* intStaticTable[INT_STATIC_LIMIT] = {}; // zeroes - StaticStrings() { - mozilla::PodZero(this); - } + StaticStrings() = default; bool init(JSContext* cx); void trace(JSTracer* trc); diff --git a/js/src/vm/TypeInference.cpp b/js/src/vm/TypeInference.cpp index 3d09c7464..c86345d9c 100644 --- a/js/src/vm/TypeInference.cpp +++ b/js/src/vm/TypeInference.cpp @@ -12,6 +12,8 @@ #include "mozilla/SizePrintfMacros.h" #include "mozilla/Sprintf.h" +#include <new> + #include "jsapi.h" #include "jscntxt.h" #include "jsgc.h" @@ -859,10 +861,8 @@ TypeSet::IsTypeAboutToBeFinalized(TypeSet::Type* v) } bool -TypeSet::clone(LifoAlloc* alloc, TemporaryTypeSet* result) const +TypeSet::cloneIntoUninitialized(LifoAlloc* alloc, TemporaryTypeSet* result) const { - MOZ_ASSERT(result->empty()); - unsigned objectCount = baseObjectCount(); unsigned capacity = (objectCount >= 2) ? TypeHashSet::Capacity(objectCount) : 0; @@ -874,15 +874,15 @@ TypeSet::clone(LifoAlloc* alloc, TemporaryTypeSet* result) const PodCopy(newSet, objectSet, capacity); } - new(result) TemporaryTypeSet(flags, capacity ? newSet : objectSet); + new (result) TemporaryTypeSet(flags, capacity ? newSet : objectSet); return true; } TemporaryTypeSet* TypeSet::clone(LifoAlloc* alloc) const { - TemporaryTypeSet* res = alloc->new_<TemporaryTypeSet>(); - if (!res || !clone(alloc, res)) + TemporaryTypeSet* res = alloc->pod_malloc<TemporaryTypeSet>(); + if (!res || !cloneIntoUninitialized(alloc, res)) return nullptr; return res; } @@ -1150,10 +1150,9 @@ TypeScript::FreezeTypeSets(CompilerConstraintList* constraints, JSScript* script TemporaryTypeSet* types = alloc->newArrayUninitialized<TemporaryTypeSet>(count); if (!types) return false; - PodZero(types, count); for (size_t i = 0; i < count; i++) { - if (!existing[i].clone(alloc, &types[i])) + if (!existing[i].cloneIntoUninitialized(alloc, &types[i])) return false; } diff --git a/js/src/vm/TypeInference.h b/js/src/vm/TypeInference.h index 9ba1c3cc8..0f1cd4936 100644 --- a/js/src/vm/TypeInference.h +++ b/js/src/vm/TypeInference.h @@ -498,7 +498,10 @@ class TypeSet // Clone a type set into an arbitrary allocator. TemporaryTypeSet* clone(LifoAlloc* alloc) const; - bool clone(LifoAlloc* alloc, TemporaryTypeSet* result) const; + + // |*result| is not even partly initialized when this function is called: + // this function placement-new's its contents into existence. + bool cloneIntoUninitialized(LifoAlloc* alloc, TemporaryTypeSet* result) const; // Create a new TemporaryTypeSet where undefined and/or null has been filtered out. TemporaryTypeSet* filter(LifoAlloc* alloc, bool filterUndefined, bool filterNull) const; @@ -807,12 +810,10 @@ class PreliminaryObjectArray private: // All objects with the type which have been allocated. The pointers in // this array are weak. - JSObject* objects[COUNT]; + JSObject* objects[COUNT] = {}; // zeroes public: - PreliminaryObjectArray() { - mozilla::PodZero(this); - } + PreliminaryObjectArray() = default; void registerNewObject(JSObject* res); void unregisterObject(JSObject* obj); @@ -906,11 +907,11 @@ class TypeNewScript private: // Scripted function which this information was computed for. - HeapPtr<JSFunction*> function_; + HeapPtr<JSFunction*> function_ = {}; // Any preliminary objects with the type. The analyses are not performed // until this array is cleared. - PreliminaryObjectArray* preliminaryObjects; + PreliminaryObjectArray* preliminaryObjects = nullptr; // After the new script properties analyses have been performed, a template // object to use for newly constructed objects. The shape of this object @@ -918,7 +919,7 @@ class TypeNewScript // allocation kind to use. This is null if the new objects have an unboxed // layout, in which case the UnboxedLayout provides the initial structure // of the object. - HeapPtr<PlainObject*> templateObject_; + HeapPtr<PlainObject*> templateObject_ = {}; // Order in which definite properties become initialized. We need this in // case the definite properties are invalidated (such as by adding a setter @@ -928,21 +929,21 @@ class TypeNewScript // shape. Property assignments in inner frames are preceded by a series of // SETPROP_FRAME entries specifying the stack down to the frame containing // the write. - Initializer* initializerList; + Initializer* initializerList = nullptr; // If there are additional properties found by the acquired properties // analysis which were not found by the definite properties analysis, this // shape contains all such additional properties (plus the definite // properties). When an object of this group acquires this shape, it is // fully initialized and its group can be changed to initializedGroup. - HeapPtr<Shape*> initializedShape_; + HeapPtr<Shape*> initializedShape_ = {}; // Group with definite properties set for all properties found by // both the definite and acquired properties analyses. - HeapPtr<ObjectGroup*> initializedGroup_; + HeapPtr<ObjectGroup*> initializedGroup_ = {}; public: - TypeNewScript() { mozilla::PodZero(this); } + TypeNewScript() = default; ~TypeNewScript() { js_delete(preliminaryObjects); js_free(initializerList); diff --git a/js/src/vm/TypedArrayCommon.h b/js/src/vm/TypedArrayCommon.h index d29c93a65..f59419b28 100644 --- a/js/src/vm/TypedArrayCommon.h +++ b/js/src/vm/TypedArrayCommon.h @@ -11,7 +11,8 @@ #include "mozilla/Assertions.h" #include "mozilla/FloatingPoint.h" -#include "mozilla/PodOperations.h" + +#include <algorithm> #include "jsarray.h" #include "jscntxt.h" @@ -245,12 +246,24 @@ class UnsharedOps template<typename T> static void podCopy(SharedMem<T*> dest, SharedMem<T*> src, size_t nelem) { - mozilla::PodCopy(dest.unwrapUnshared(), src.unwrapUnshared(), nelem); + // std::copy_n better matches the argument values/types of this + // function, but as noted below it allows the input/output ranges to + // overlap. std::copy does not, so use it so the compiler has extra + // ability to optimize. + const auto* first = src.unwrapUnshared(); + const auto* last = first + nelem; + auto* result = dest.unwrapUnshared(); + std::copy(first, last, result); } template<typename T> - static void podMove(SharedMem<T*> dest, SharedMem<T*> src, size_t nelem) { - mozilla::PodMove(dest.unwrapUnshared(), src.unwrapUnshared(), nelem); + static void podMove(SharedMem<T*> dest, SharedMem<T*> src, size_t n) { + // std::copy_n copies from |src| to |dest| starting from |src|, so + // input/output ranges *may* permissibly overlap, as this function + // allows. + const auto* start = src.unwrapUnshared(); + auto* result = dest.unwrapUnshared(); + std::copy_n(start, n, result); } static SharedMem<void*> extract(TypedArrayObject* obj) { diff --git a/js/src/wasm/AsmJS.cpp b/js/src/wasm/AsmJS.cpp index 7fade24fb..2237d1d7f 100644 --- a/js/src/wasm/AsmJS.cpp +++ b/js/src/wasm/AsmJS.cpp @@ -249,14 +249,14 @@ typedef Vector<AsmJSImport, 0, SystemAllocPolicy> AsmJSImportVector; // case the function is toString()ed. class AsmJSExport { - uint32_t funcIndex_; + uint32_t funcIndex_ = 0; // All fields are treated as cacheable POD: - uint32_t startOffsetInModule_; // Store module-start-relative offsets - uint32_t endOffsetInModule_; // so preserved by serialization. + uint32_t startOffsetInModule_ = 0; // Store module-start-relative offsets + uint32_t endOffsetInModule_ = 0; // so preserved by serialization. public: - AsmJSExport() { PodZero(this); } + AsmJSExport() = default; AsmJSExport(uint32_t funcIndex, uint32_t startOffsetInModule, uint32_t endOffsetInModule) : funcIndex_(funcIndex), startOffsetInModule_(startOffsetInModule), @@ -288,12 +288,12 @@ enum class CacheResult struct AsmJSMetadataCacheablePod { - uint32_t numFFIs; - uint32_t srcLength; - uint32_t srcLengthWithRightBrace; - bool usesSimd; + uint32_t numFFIs = 0; + uint32_t srcLength = 0; + uint32_t srcLengthWithRightBrace = 0; + bool usesSimd = false; - AsmJSMetadataCacheablePod() { PodZero(this); } + AsmJSMetadataCacheablePod() = default; }; struct js::AsmJSMetadata : Metadata, AsmJSMetadataCacheablePod diff --git a/layout/base/nsRefreshDriver.cpp b/layout/base/nsRefreshDriver.cpp index bc1a27852..b975a69dd 100644 --- a/layout/base/nsRefreshDriver.cpp +++ b/layout/base/nsRefreshDriver.cpp @@ -143,11 +143,7 @@ public: { } - virtual ~RefreshDriverTimer() - { - MOZ_ASSERT(mContentRefreshDrivers.Length() == 0, "Should have removed all content refresh drivers from here by now!"); - MOZ_ASSERT(mRootRefreshDrivers.Length() == 0, "Should have removed all root refresh drivers from here by now!"); - } + NS_INLINE_DECL_REFCOUNTING(RefreshDriverTimer) virtual void AddRefreshDriver(nsRefreshDriver* aDriver) { @@ -253,6 +249,12 @@ public: } protected: + virtual ~RefreshDriverTimer() + { + MOZ_ASSERT(mContentRefreshDrivers.Length() == 0, "Should have removed all content refresh drivers from here by now!"); + MOZ_ASSERT(mRootRefreshDrivers.Length() == 0, "Should have removed all root refresh drivers from here by now!"); + } + virtual void StartTimer() = 0; virtual void StopTimer() = 0; virtual void ScheduleNextTick(TimeStamp aNowTime) = 0; @@ -335,10 +337,11 @@ protected: nsTArray<RefPtr<nsRefreshDriver> > mRootRefreshDrivers; // useful callback for nsITimer-based derived classes, here - // bacause of c++ protected shenanigans + // because of c++ protected shenanigans static void TimerTick(nsITimer* aTimer, void* aClosure) { - RefreshDriverTimer *timer = static_cast<RefreshDriverTimer*>(aClosure); + RefPtr<RefreshDriverTimer> timer = + static_cast<RefreshDriverTimer*>(aClosure); timer->Tick(); } }; @@ -459,9 +462,7 @@ public: private: // Since VsyncObservers are refCounted, but the RefreshDriverTimer are // explicitly shutdown. We create an inner class that has the VsyncObserver - // and is shutdown when the RefreshDriverTimer is deleted. The alternative is - // to (a) make all RefreshDriverTimer RefCounted or (b) use different - // VsyncObserver types. + // and is shutdown when the RefreshDriverTimer is deleted. class RefreshDriverVsyncObserver final : public VsyncObserver { public: @@ -478,6 +479,9 @@ private: bool NotifyVsync(TimeStamp aVsyncTimestamp) override { + // IMPORTANT: All paths through this method MUST hold a strong ref on + // |this| for the duration of the TickRefreshDriver callback. + if (!NS_IsMainThread()) { MOZ_ASSERT(XRE_IsParentProcess()); // Compress vsync notifications such that only 1 may run at a time @@ -498,6 +502,7 @@ private: aVsyncTimestamp); NS_DispatchToMainThread(vsyncEvent); } else { + RefPtr<RefreshDriverVsyncObserver> kungFuDeathGrip(this); TickRefreshDriver(aVsyncTimestamp); } @@ -572,7 +577,9 @@ private: // the scheduled TickRefreshDriver() runs. Check mVsyncRefreshDriverTimer // before use. if (mVsyncRefreshDriverTimer) { - mVsyncRefreshDriverTimer->RunRefreshDrivers(aVsyncTimestamp); + RefPtr<VsyncRefreshDriverTimer> timer = mVsyncRefreshDriverTimer; + timer->RunRefreshDrivers(aVsyncTimestamp); + // Note: mVsyncRefreshDriverTimer might be null now. } } @@ -825,7 +832,8 @@ protected: static void TimerTickOne(nsITimer* aTimer, void* aClosure) { - InactiveRefreshDriverTimer *timer = static_cast<InactiveRefreshDriverTimer*>(aClosure); + RefPtr<InactiveRefreshDriverTimer> timer = + static_cast<InactiveRefreshDriverTimer*>(aClosure); timer->TickOne(); } @@ -877,8 +885,8 @@ NS_IMPL_ISUPPORTS(VsyncChildCreateCallback, nsIIPCBackgroundChildCreateCallback) } // namespace mozilla -static RefreshDriverTimer* sRegularRateTimer; -static InactiveRefreshDriverTimer* sThrottledRateTimer; +static StaticRefPtr<RefreshDriverTimer> sRegularRateTimer; +static StaticRefPtr<InactiveRefreshDriverTimer> sThrottledRateTimer; #ifdef XP_WIN static int32_t sHighPrecisionTimerRequests = 0; @@ -960,8 +968,6 @@ GetFirstFrameDelay(imgIRequest* req) nsRefreshDriver::Shutdown() { // clean up our timers - delete sRegularRateTimer; - delete sThrottledRateTimer; sRegularRateTimer = nullptr; sThrottledRateTimer = nullptr; @@ -2225,16 +2231,15 @@ nsRefreshDriver::PVsyncActorCreated(VsyncChild* aVsyncChild) { MOZ_ASSERT(NS_IsMainThread()); MOZ_ASSERT(!XRE_IsParentProcess()); - auto* vsyncRefreshDriverTimer = - new VsyncRefreshDriverTimer(aVsyncChild); + RefPtr<RefreshDriverTimer> vsyncRefreshDriverTimer = + new VsyncRefreshDriverTimer(aVsyncChild); // If we are using software timer, swap current timer to // VsyncRefreshDriverTimer. if (sRegularRateTimer) { sRegularRateTimer->SwapRefreshDrivers(vsyncRefreshDriverTimer); - delete sRegularRateTimer; } - sRegularRateTimer = vsyncRefreshDriverTimer; + sRegularRateTimer = vsyncRefreshDriverTimer.forget(); } void diff --git a/layout/reftests/svg/reftest.list b/layout/reftests/svg/reftest.list index 520adc9e6..096628681 100644 --- a/layout/reftests/svg/reftest.list +++ b/layout/reftests/svg/reftest.list @@ -396,6 +396,7 @@ fuzzy-if(skiaContent,1,300) == tspan-xy-05.svg tspan-xy-ref.svg # bug 773482 fuzzy-if(skiaContent,1,300) == tspan-xy-06.svg tspan-xy-ref.svg # bug 773482 fuzzy-if(skiaContent,1,100) == tspan-xy-anchor-middle-01.svg tspan-xy-anchor-middle-ref.svg # bug 773482 fuzzy-if(skiaContent,1,100) == tspan-xy-anchor-end-01.svg tspan-xy-anchor-end-ref.svg # bug 773482 +== use-localRef-link.html pass.svg == userSpaceOnUse-and-pattern-01.svg userSpaceOnUse-and-pattern-01-ref.svg == viewBox-and-pattern-01.svg pass.svg == viewBox-and-pattern-02.svg pass.svg diff --git a/layout/reftests/svg/use-localRef-link.html b/layout/reftests/svg/use-localRef-link.html new file mode 100644 index 000000000..672e9ffaa --- /dev/null +++ b/layout/reftests/svg/use-localRef-link.html @@ -0,0 +1,16 @@ +<!DOCTYPE html> +<head> +<base href="/test"> +</head> +<body style="background-color: lime;"> + <svg width="100" height="100"> + <defs> + <rect id="a" x="0" y="0" width="50" height="50" fill="lime"/> + </defs> + <rect x="0" y="0" width="50" height="50" fill="red"/> + <use xlink:href="#a"/> + </svg> +</body> +</html> + + diff --git a/layout/svg/nsSVGEffects.cpp b/layout/svg/nsSVGEffects.cpp index eac094a91..e75c973c8 100644 --- a/layout/svg/nsSVGEffects.cpp +++ b/layout/svg/nsSVGEffects.cpp @@ -888,24 +888,13 @@ nsSVGEffects::InvalidateDirectRenderingObservers(nsIFrame* aFrame, uint32_t aFla } } -static already_AddRefed<nsIURI> -ResolveURLUsingLocalRef(nsIFrame* aFrame, const css::URLValueData* aURL) +already_AddRefed<nsIURI> +nsSVGEffects::GetBaseURLForLocalRef(nsIContent* content, nsIURI* aDocURI) { - MOZ_ASSERT(aFrame); - - if (!aURL) { - return nullptr; - } - - // Non-local-reference URL. - if (!aURL->IsLocalRef()) { - nsCOMPtr<nsIURI> result = aURL->GetURI(); - return result.forget(); - } + MOZ_ASSERT(content); // For a local-reference URL, resolve that fragment against the current // document that relative URLs are resolved against. - nsIContent* content = aFrame->GetContent(); nsCOMPtr<nsIURI> baseURI = content->OwnerDoc()->GetDocumentURI(); if (content->IsInAnonymousSubtree()) { @@ -933,12 +922,37 @@ ResolveURLUsingLocalRef(nsIFrame* aFrame, const css::URLValueData* aURL) } } - if (originalURI && aURL->EqualsExceptRef(originalURI)) { - baseURI = originalURI; + if (originalURI) { + bool isEqualsExceptRef = false; + aDocURI->EqualsExceptRef(originalURI, &isEqualsExceptRef); + if (isEqualsExceptRef) { + baseURI = originalURI; + } } } } + return baseURI.forget(); +} + +static already_AddRefed<nsIURI> +ResolveURLUsingLocalRef(nsIFrame* aFrame, const css::URLValueData* aURL) +{ + MOZ_ASSERT(aFrame); + + if (!aURL) { + return nullptr; + } + + // Non-local-reference URL. + if (!aURL->IsLocalRef()) { + nsCOMPtr<nsIURI> result = aURL->GetURI(); + return result.forget(); + } + + nsCOMPtr<nsIURI> baseURI = + nsSVGEffects::GetBaseURLForLocalRef(aFrame->GetContent(), aURL->GetURI()); + return aURL->ResolveLocalRef(baseURI); } diff --git a/layout/svg/nsSVGEffects.h b/layout/svg/nsSVGEffects.h index 9dd92fd31..0cf9b1500 100644 --- a/layout/svg/nsSVGEffects.h +++ b/layout/svg/nsSVGEffects.h @@ -626,11 +626,23 @@ public: static already_AddRefed<nsIURI> GetPaintURI(nsIFrame* aFrame, nsStyleSVGPaint nsStyleSVG::* aPaint); - /** + /** * A helper function to resolve SVG mask URL. */ static already_AddRefed<nsIURI> GetMaskURI(nsIFrame* aFrame, uint32_t aIndex); + + /** + * Return a baseURL for resolving a local-ref URL. + * + * @param aContent an element which uses a local-ref property. Here are some + * examples: + * <rect fill=url(#foo)> + * <circle clip-path=url(#foo)> + * <use xlink:href="#foo"> + */ + static already_AddRefed<nsIURI> + GetBaseURLForLocalRef(nsIContent* aContent, nsIURI* aDocURI); }; #endif /*NSSVGEFFECTS_H_*/ diff --git a/layout/svg/nsSVGOuterSVGFrame.cpp b/layout/svg/nsSVGOuterSVGFrame.cpp index aeadccbc5..e1b97bb40 100644 --- a/layout/svg/nsSVGOuterSVGFrame.cpp +++ b/layout/svg/nsSVGOuterSVGFrame.cpp @@ -241,8 +241,9 @@ nsSVGOuterSVGFrame::GetIntrinsicRatio() nsSVGLength2 &height = content->mLengthAttributes[SVGSVGElement::ATTR_HEIGHT]; if (!width.IsPercentage() && !height.IsPercentage()) { - nsSize ratio(NSToCoordRoundWithClamp(width.GetAnimValue(content)), - NSToCoordRoundWithClamp(height.GetAnimValue(content))); + nsSize ratio( + nsPresContext::CSSPixelsToAppUnits(width.GetAnimValue(content)), + nsPresContext::CSSPixelsToAppUnits(height.GetAnimValue(content))); if (ratio.width < 0) { ratio.width = 0; } @@ -272,8 +273,8 @@ nsSVGOuterSVGFrame::GetIntrinsicRatio() if (viewBoxHeight < 0.0f) { viewBoxHeight = 0.0f; } - return nsSize(NSToCoordRoundWithClamp(viewBoxWidth), - NSToCoordRoundWithClamp(viewBoxHeight)); + return nsSize(nsPresContext::CSSPixelsToAppUnits(viewBoxWidth), + nsPresContext::CSSPixelsToAppUnits(viewBoxHeight)); } return nsSVGDisplayContainerFrame::GetIntrinsicRatio(); diff --git a/media/libvpx/bug1480092.patch b/media/libvpx/bug1480092.patch new file mode 100644 index 000000000..ae774bb20 --- /dev/null +++ b/media/libvpx/bug1480092.patch @@ -0,0 +1,36 @@ +From f00fe25d7eb13ceafbea6a6987d45fdef64cffb3 Mon Sep 17 00:00:00 2001 +From: Pale Moon <git-repo@palemoon.org> +Date: Tue, 11 Sep 2018 08:58:16 +0200 +Subject: [PATCH] Cherry-pick libvpx upstream + 52add5896661d186dec284ed646a4b33b607d2c7. + +--- + media/libvpx/vp8/common/postproc.c | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/media/libvpx/vp8/common/postproc.c b/media/libvpx/vp8/common/postproc.c +index a4e6ae170..3b05bc63e 100644 +--- a/media/libvpx/vp8/common/postproc.c ++++ b/media/libvpx/vp8/common/postproc.c +@@ -325,17 +325,17 @@ void vp8_deblock(VP8_COMMON *cm, + YV12_BUFFER_CONFIG *post, + int q, + int low_var_thresh, + int flag) + { + double level = 6.0e-05 * q * q * q - .0067 * q * q + .306 * q + .0065; + int ppl = (int)(level + .5); + +- const MODE_INFO *mode_info_context = cm->show_frame_mi; ++ const MODE_INFO *mode_info_context = cm->mi; + int mbr, mbc; + + /* The pixel thresholds are adjusted according to if or not the macroblock + * is a skipped block. */ + unsigned char *ylimits = cm->pp_limits_buffer; + unsigned char *uvlimits = cm->pp_limits_buffer + 16 * cm->mb_cols; + (void) low_var_thresh; + (void) flag; +-- +2.16.1.windows.4 + diff --git a/media/libvpx/update.py b/media/libvpx/update.py index 85eed5872..1e9d9b478 100755 --- a/media/libvpx/update.py +++ b/media/libvpx/update.py @@ -608,6 +608,8 @@ def apply_patches(): os.system("patch -p3 < input_frame_validation.patch") # Bug 1315288 - Check input frame resolution for vp9 os.system("patch -p3 < input_frame_validation_vp9.patch") + # Cherrypick fix from upstream + os.system("patch -p3 < bug1480092.patch") def update_readme(commit): with open('README_MOZILLA') as f: diff --git a/media/libvpx/vp8/common/postproc.c b/media/libvpx/vp8/common/postproc.c index a4e6ae170..3b05bc63e 100644 --- a/media/libvpx/vp8/common/postproc.c +++ b/media/libvpx/vp8/common/postproc.c @@ -330,7 +330,7 @@ void vp8_deblock(VP8_COMMON *cm, double level = 6.0e-05 * q * q * q - .0067 * q * q + .306 * q + .0065; int ppl = (int)(level + .5); - const MODE_INFO *mode_info_context = cm->show_frame_mi; + const MODE_INFO *mode_info_context = cm->mi; int mbr, mbc; /* The pixel thresholds are adjusted according to if or not the macroblock diff --git a/memory/mozjemalloc/moz.build b/memory/mozjemalloc/moz.build index feeb4fb07..a7c1e5f2a 100644 --- a/memory/mozjemalloc/moz.build +++ b/memory/mozjemalloc/moz.build @@ -37,7 +37,10 @@ LOCAL_INCLUDES += [ ] if CONFIG['GNU_CC']: - CFLAGS += ['-Wno-unused'] # too many annoying warnings from mfbt/ headers + # too many annoying warnings from mfbt/ headers + # also too many false positives from functions generated through rb_wrab from rb.h. + CFLAGS += ['-Wno-unused', + '-Wno-uninitialized'] if CONFIG['_MSC_VER']: CFLAGS += ['-wd4273'] # inconsistent dll linkage (bug 558163) diff --git a/modules/libmar/src/mar.h b/modules/libmar/src/mar.h index 98b454d94..776daf648 100644 --- a/modules/libmar/src/mar.h +++ b/modules/libmar/src/mar.h @@ -48,6 +48,7 @@ typedef struct MarItem_ { struct MarFile_ { FILE *fp; MarItem *item_table[TABLESIZE]; + int item_table_is_valid; }; typedef struct MarFile_ MarFile; diff --git a/modules/libmar/src/mar_read.c b/modules/libmar/src/mar_read.c index 17744cdfc..378eaea88 100644 --- a/modules/libmar/src/mar_read.c +++ b/modules/libmar/src/mar_read.c @@ -114,6 +114,7 @@ static int mar_read_index(MarFile *mar) { uint32_t offset_to_index, size_of_index; /* verify MAR ID */ + fseek(mar->fp, 0, SEEK_SET); if (fread(id, MAR_ID_SIZE, 1, mar->fp) != 1) return -1; if (memcmp(id, MAR_ID, MAR_ID_SIZE) != 0) @@ -160,11 +161,8 @@ static MarFile *mar_fpopen(FILE *fp) } mar->fp = fp; + mar->item_table_is_valid = 0; memset(mar->item_table, 0, sizeof(mar->item_table)); - if (mar_read_index(mar)) { - mar_close(mar); - return NULL; - } return mar; } @@ -490,6 +488,14 @@ const MarItem *mar_find_item(MarFile *mar, const char *name) { uint32_t hash; const MarItem *item; + if (!mar->item_table_is_valid) { + if (mar_read_index(mar)) { + return NULL; + } else { + mar->item_table_is_valid = 1; + } + } + hash = mar_hash_name(name); item = mar->item_table[hash]; @@ -503,6 +509,14 @@ int mar_enum_items(MarFile *mar, MarItemCallback callback, void *closure) { MarItem *item; int i; + if (!mar->item_table_is_valid) { + if (mar_read_index(mar)) { + return -1; + } else { + mar->item_table_is_valid = 1; + } + } + for (i = 0; i < TABLESIZE; ++i) { item = mar->item_table[i]; while (item) { diff --git a/modules/libpref/init/all.js b/modules/libpref/init/all.js index 1eee30210..a4834e3ec 100644 --- a/modules/libpref/init/all.js +++ b/modules/libpref/init/all.js @@ -731,7 +731,7 @@ pref("gfx.perf-warnings.enabled", false); pref("gfx.color_management.mode", 2); pref("gfx.color_management.display_profile", ""); pref("gfx.color_management.rendering_intent", 0); -pref("gfx.color_management.enablev4", false); +pref("gfx.color_management.enablev4", true); pref("gfx.downloadable_fonts.enabled", true); pref("gfx.downloadable_fonts.fallback_delay", 3000); @@ -908,6 +908,7 @@ pref("findbar.highlightAll", false); pref("findbar.modalHighlight", false); pref("findbar.entireword", false); pref("findbar.iteratorTimeout", 100); +pref("findbar.termPerTab", false); // use Mac OS X Appearance panel text smoothing setting when rendering text, disabled by default pref("gfx.use_text_smoothing_setting", false); diff --git a/netwerk/protocol/http/nsHttpTransaction.cpp b/netwerk/protocol/http/nsHttpTransaction.cpp index 8d837d172..76e0a4ad9 100644 --- a/netwerk/protocol/http/nsHttpTransaction.cpp +++ b/netwerk/protocol/http/nsHttpTransaction.cpp @@ -1164,7 +1164,9 @@ nsHttpTransaction::Close(nsresult reason) } // closing this pipe triggers the channel's OnStopRequest method. - mPipeOut->CloseWithStatus(reason); + if (mPipeOut) { + mPipeOut->CloseWithStatus(reason); + } #ifdef WIN32 // bug 1153929 MOZ_DIAGNOSTIC_ASSERT(mPipeOut); diff --git a/old-configure.in b/old-configure.in index 96bb934e1..80597eb73 100644 --- a/old-configure.in +++ b/old-configure.in @@ -2240,7 +2240,6 @@ MOZ_INSTALL_TRACKING= ACCESSIBILITY=1 MOZ_TIME_MANAGER= MOZ_AUDIO_CHANNEL_MANAGER= -MOZ_BINARY_EXTENSIONS= MOZ_JETPACK=1 MOZ_DEVTOOLS_SERVER=1 MOZ_DEVTOOLS= @@ -5139,10 +5138,6 @@ AC_SUBST(MOZ_FIX_LINK_PATHS) AC_SUBST(MOZ_POST_PROGRAM_COMMAND) AC_SUBST(MOZ_LINKER_EXTRACT) -if test -n "$MOZ_BINARY_EXTENSIONS"; then - AC_DEFINE(MOZ_BINARY_EXTENSIONS) -fi - AC_SUBST(MOZ_ADDON_SIGNING) if test "$MOZ_ADDON_SIGNING" = 1; then AC_DEFINE(MOZ_ADDON_SIGNING) diff --git a/parser/htmlparser/nsScannerString.h b/parser/htmlparser/nsScannerString.h index 7b722238f..247c04c04 100644 --- a/parser/htmlparser/nsScannerString.h +++ b/parser/htmlparser/nsScannerString.h @@ -21,7 +21,7 @@ * to live in xpcom/string. Now that nsAString is limited to representing * only single fragment strings, nsSlidingString can no longer be used. * - * An advantage to this design is that it does not employ any virtual + * An advantage to this design is that it does not employ any virtual * functions. * * This file uses SCC-style indenting in deference to the nsSlidingString @@ -103,12 +103,12 @@ class nsScannerBufferList public: Position() {} - + Position( Buffer* buffer, char16_t* position ) : mBuffer(buffer) , mPosition(position) {} - + inline explicit Position( const nsScannerIterator& aIter ); @@ -133,7 +133,7 @@ class nsScannerBufferList void AddRef() { ++mRefCnt; } void Release() { if (--mRefCnt == 0) delete this; } - void Append( Buffer* buf ) { mBuffers.insertBack(buf); } + void Append( Buffer* buf ) { mBuffers.insertBack(buf); } void InsertAfter( Buffer* buf, Buffer* prev ) { prev->setNext(buf); } void SplitBuffer( const Position& ); void DiscardUnreferencedPrefix( Buffer* ); @@ -223,7 +223,7 @@ class nsScannerSubstring mBufferList->Release(); } } - + void init_range_from_buffer_list() { mStart.mBuffer = mBufferList->Head(); @@ -340,7 +340,7 @@ class nsScannerIterator friend class nsScannerSharedSubstring; public: - nsScannerIterator() {} + // nsScannerIterator(); // auto-generate default constructor is OK // nsScannerIterator( const nsScannerIterator& ); // auto-generated copy-constructor OK // nsScannerIterator& operator=( const nsScannerIterator& ); // auto-generated copy-assignment operator OK @@ -351,7 +351,7 @@ class nsScannerIterator { return mPosition; } - + char16_t operator*() const { return *get(); @@ -467,7 +467,7 @@ struct nsCharSourceTraits<nsScannerIterator> { return iter.get(); } - + static void advance( nsScannerIterator& s, difference_type n ) @@ -593,7 +593,7 @@ RFindInReadable( const nsAString& aPattern, inline bool -CaseInsensitiveFindInReadable( const nsAString& aPattern, +CaseInsensitiveFindInReadable( const nsAString& aPattern, nsScannerIterator& aStart, nsScannerIterator& aEnd ) { diff --git a/python/mozbuild/mozbuild/controller/clobber.py b/python/mozbuild/mozbuild/controller/clobber.py index 02f75c6ad..d3cdfd596 100644 --- a/python/mozbuild/mozbuild/controller/clobber.py +++ b/python/mozbuild/mozbuild/controller/clobber.py @@ -169,6 +169,7 @@ class Clobberer(object): if not self.clobber_needed(): print('Clobber not needed.', file=fh) + fh.flush() self.ensure_objdir_state() return False, False, None @@ -190,6 +191,7 @@ class Clobberer(object): 'Cannot clobber while the shell is inside the object directory.') print('Automatically clobbering %s' % self.topobjdir, file=fh) + fh.flush() try: self.remove_objdir(False) self.ensure_objdir_state() diff --git a/security/manager/ssl/nsSTSPreloadList.errors b/security/manager/ssl/nsSTSPreloadList.errors index 243fdce2c..48a20f39b 100644 --- a/security/manager/ssl/nsSTSPreloadList.errors +++ b/security/manager/ssl/nsSTSPreloadList.errors @@ -7,16 +7,25 @@ 0005pay.com: did not receive HSTS header 00220022.net: could not connect to host 007-preisvergleich.de: could not connect to host +00778899.com: did not receive HSTS header 007kf.com: could not connect to host 007sascha.de: did not receive HSTS header 00880088.net: could not connect to host 00wbf.com: could not connect to host 01100010011001010111001101110100.com: could not connect to host +013028.com: did not receive HSTS header +016028.com: did not receive HSTS header +016098.com: did not receive HSTS header 016298.com: did not receive HSTS header +016328.com: did not receive HSTS header +019328.com: did not receive HSTS header +019398.com: did not receive HSTS header 020wifi.nl: could not connect to host 0222.mg: did not receive HSTS header -0222aa.com: did not receive HSTS header +0222aa.com: could not connect to host 023838.com: did not receive HSTS header +028718.com: did not receive HSTS header +029978.com: did not receive HSTS header 029inno.com: could not connect to host 02dl.net: could not connect to host 03-09-2016.wedding: could not connect to host @@ -24,11 +33,21 @@ 040fitvitality.nl: did not receive HSTS header 048.ag: could not connect to host 050508.com: could not connect to host +0513c.com: did not receive HSTS header +055268.com: did not receive HSTS header 066318.com: could not connect to host +066538.com: did not receive HSTS header 066718.com: did not receive HSTS header 066928.com: could not connect to host 066938.com: could not connect to host 070709.net: could not connect to host +078805.com: did not receive HSTS header +078810.com: did not receive HSTS header +078820.com: did not receive HSTS header +078860.com: did not receive HSTS header +078890.com: did not receive HSTS header +081638.com: did not receive HSTS header +086628.com: did not receive HSTS header 0c.eu: did not receive HSTS header 0cdn.ga: could not connect to host 0day.su: could not connect to host @@ -47,7 +66,7 @@ 0x4b0c131e.pub: could not connect to host 0x52.org: could not connect to host 0x539.be: did not receive HSTS header -0x539.pw: did not receive HSTS header +0x539.pw: could not connect to host 0x5f3759df.cf: could not connect to host 0x65.net: did not receive HSTS header 0x90.fi: could not connect to host @@ -56,8 +75,8 @@ 0xaa55.me: could not connect to host 0xb612.org: could not connect to host 0xcafec0.de: did not receive HSTS header +0xf00.ch: could not connect to host 1.0.0.1: max-age too low: 0 -10000v.ru: could not connect to host 1000hats.com: did not receive HSTS header 1000serien.com: could not connect to host 1001.best: could not connect to host @@ -69,14 +88,13 @@ 1091.jp: could not connect to host 10gbit.ovh: could not connect to host 10tacle.io: could not connect to host +10v2.com: did not receive HSTS header 10x.ooo: could not connect to host 1116pay.com: did not receive HSTS header +11bt.cc: did not receive HSTS header 11recruitment.com.au: did not receive HSTS header -12.net: did not receive HSTS header 120dayweightloss.com: could not connect to host 123110.com: could not connect to host -123comparer.fr: did not receive HSTS header -123djdrop.com: did not receive HSTS header 123movies.fyi: did not receive HSTS header 123share.org: did not receive HSTS header 123termpapers.com: could not connect to host @@ -85,19 +103,20 @@ 123test.fr: did not receive HSTS header 126ium.moe: could not connect to host 127011-networks.ch: could not connect to host -1288fc.com: could not connect to host 12vpn.org: could not connect to host 12vpnchina.com: could not connect to host -1359826938.rsc.cdn77.org: did not receive HSTS header +130978.com: did not receive HSTS header +13318522.com: could not connect to host 135vv.com: could not connect to host 13826145000.com: could not connect to host +1391kj.com: did not receive HSTS header 1396.cc: could not connect to host 1396.net: did not receive HSTS header -15-10.com: did not receive HSTS header 1536.cf: could not connect to host 160887.com: did not receive HSTS header 16164f.com: could not connect to host 163pwd.com: could not connect to host +1689886.com: did not receive HSTS header 168bet9.com: could not connect to host 168esb.com: could not connect to host 16deza.com: did not receive HSTS header @@ -107,12 +126,14 @@ 173vpnv.com: could not connect to host 174.net.nz: did not receive HSTS header 174343.com: could not connect to host +17hats.com: did not receive HSTS header 188522.com: did not receive HSTS header 18888msc.com: could not connect to host 1888zr.com: could not connect to host 188betwarriors.co.uk: could not connect to host 188trafalgar.ca: did not receive HSTS header 1912x.com: could not connect to host +19216811.online: could not connect to host 1921958389.rsc.cdn77.org: could not connect to host 195gm.com: did not receive HSTS header 1a-jva.de: could not connect to host @@ -134,8 +155,9 @@ 1three1.net: did not receive HSTS header 1upinternet.com: could not connect to host 1xcess.com: did not receive HSTS header -1years.cc: did not receive HSTS header +1years.cc: could not connect to host 2-cpu.de: could not connect to host +2018.wales: could not connect to host 20188088.com: did not receive HSTS header 2048game.co.uk: could not connect to host 206rc.net: max-age too low: 2592000 @@ -144,8 +166,11 @@ 20zq.com: could not connect to host 21lg.co: could not connect to host 21stnc.com: could not connect to host +22bt.cc: did not receive HSTS header 2333.press: could not connect to host +2333666.xyz: did not receive HSTS header 233ss.net: did not receive HSTS header +245meadowvistaway.com: did not receive HSTS header 247a.co.uk: could not connect to host 247quickbooks.com: did not receive HSTS header 2488.ch: did not receive HSTS header @@ -155,9 +180,11 @@ 24kbet.com: could not connect to host 24pcr.com: could not connect to host 24sihu.com: could not connect to host +2566335.xyz: could not connect to host 256k.me: could not connect to host 25daysof.io: could not connect to host 260887.com: did not receive HSTS header +27728522.com: could not connect to host 2859cc.com: could not connect to host 29227.com: could not connect to host 2acbi-asso.fr: did not receive HSTS header @@ -169,6 +196,7 @@ 2fl.me: did not receive HSTS header 2gen.com: could not connect to host 2intermediate.co.uk: did not receive HSTS header +2mir.com: could not connect to host 2or3.tk: could not connect to host 2smart4food.com: could not connect to host 2ss.jp: could not connect to host @@ -177,6 +205,7 @@ 300mbmovies4u.cc: could not connect to host 301.website: could not connect to host 302.nyc: could not connect to host +30yearmortgagerates.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no] 3133780x.com: did not receive HSTS header 314166.com: could not connect to host 314chan.org: could not connect to host @@ -195,7 +224,8 @@ 365beautyworld.com: could not connect to host 365maya.com: did not receive HSTS header 368mibn.com: could not connect to host -3778xl.com: did not receive HSTS header +3778vip.com: did not receive HSTS header +3778xl.com: could not connect to host 3839.ca: could not connect to host 38888msc.com: could not connect to host 38blog.com: could not connect to host @@ -214,6 +244,7 @@ 3vlnaeet.cz: could not connect to host 3wecommerce.com.br: could not connect to host 3xx.link: could not connect to host +40-grad.de: did not receive HSTS header 4036aa.com: did not receive HSTS header 4036bb.com: did not receive HSTS header 4036cc.com: did not receive HSTS header @@ -225,6 +256,7 @@ 41844.de: could not connect to host 420dongstorm.com: could not connect to host 4237.com: max-age too low: 86400 +42day.info: could not connect to host 42entrepreneurs.fr: did not receive HSTS header 42ms.org: could not connect to host 42t.ru: could not connect to host @@ -281,27 +313,32 @@ 54bf.com: could not connect to host 555fl.com: max-age too low: 129600 555xl.com: could not connect to host +55bt.cc: did not receive HSTS header 56877.com: could not connect to host 56ct.com: could not connect to host 57aromas.com: did not receive HSTS header -57he.com: did not receive HSTS header 5chat.it: could not connect to host +5ece.de: could not connect to host 5piecesofadvice.com: could not connect to host 605508.cc: could not connect to host 605508.com: could not connect to host 60ych.net: did not receive HSTS header 6120.eu: did not receive HSTS header 62755.com: did not receive HSTS header +645ds.cn: did not receive HSTS header +645ds.com: did not receive HSTS header 64616e.xyz: could not connect to host 64bitgaming.de: could not connect to host +64bitservers.net: could not connect to host 660011.com: could not connect to host 6677.us: did not receive HSTS header -668da.com: did not receive HSTS header +67899876.com: did not receive HSTS header 68277.me: could not connect to host 688da.com: could not connect to host 692b8c32.de: could not connect to host 69mentor.com: could not connect to host 69square.com: could not connect to host +6ird.com: did not receive HSTS header 6z3.net: could not connect to host 7045h.com: could not connect to host 7183.org: could not connect to host @@ -313,6 +350,7 @@ 73223.com: did not receive HSTS header 73info.com: did not receive HSTS header 771122.tv: did not receive HSTS header +7717a.com: did not receive HSTS header 776573.net: did not receive HSTS header 7777av.co: could not connect to host 77890k.com: could not connect to host @@ -328,12 +366,14 @@ 808phone.net: could not connect to host 81818app.com: could not connect to host 81uc.com: could not connect to host +8206688.com: did not receive HSTS header 826468.com: could not connect to host 826498.com: could not connect to host 82ty.com: could not connect to host 83i.net: could not connect to host 8522.am: could not connect to host 8522cn.com: did not receive HSTS header +8522top.com: could not connect to host 8560.be: could not connect to host 8722.com: did not receive HSTS header 87577.com: could not connect to host @@ -362,8 +402,6 @@ 9118b.com: could not connect to host 911911.pw: could not connect to host 915ers.com: did not receive HSTS header -918gd.com: could not connect to host -918yy.com: did not receive HSTS header 919945.com: did not receive HSTS header 91dh.cc: could not connect to host 91lt.info: could not connect to host @@ -377,7 +415,9 @@ 9617818.net: could not connect to host 9651678.ru: could not connect to host 9822.com: did not receive HSTS header +9822.info: did not receive HSTS header 987987.com: did not receive HSTS header +9906753.net: did not receive HSTS header 99511.fi: did not receive HSTS header 99buffets.com: could not connect to host 9iwan.net: did not receive HSTS header @@ -385,7 +425,6 @@ 9point6.com: could not connect to host 9ss6.com: could not connect to host 9vies.ca: could not connect to host -9y.at: did not receive HSTS header a-intel.com: could not connect to host a-ix.net: could not connect to host a-plus.space: could not connect to host @@ -398,6 +437,7 @@ a200k.xyz: did not receive HSTS header a2c-co.net: could not connect to host a2it.gr: did not receive HSTS header a3workshop.swiss: could not connect to host +a8q.org: could not connect to host a9c.co: could not connect to host aa7733.com: could not connect to host aaeblog.com: did not receive HSTS header @@ -407,23 +447,23 @@ aaoo.net: could not connect to host aapp.space: could not connect to host aariefhaafiz.com: could not connect to host aaron-gustafson.com: did not receive HSTS header +aaronburt.co.uk: could not connect to host aaronhorler.com.au: could not connect to host aaronmcguire.me: did not receive HSTS header aarvinproperties.com: could not connect to host -abandonedmines.gov: could not connect to host abareplace.com: did not receive HSTS header abasky.net: could not connect to host abcdef.be: could not connect to host abcdentalcare.com: did not receive HSTS header abcdobebe.com: did not receive HSTS header abchelp.net: did not receive HSTS header -abdullah.pw: could not connect to host abearofsoap.com: could not connect to host abecodes.net: could not connect to host abeontech.com: could not connect to host abi-fvs.de: could not connect to host abigailstark.com: could not connect to host abilitylist.org: did not receive HSTS header +abilma.com: could not connect to host abioniere.de: could not connect to host ablogagency.net: could not connect to host abloop.com: could not connect to host @@ -437,6 +477,7 @@ aboutassistedliving.org: did not receive HSTS header aboutmyip.info: did not receive HSTS header aboutmyproperty.ca: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no] aboutyou-deals.de: could not connect to host +abracadabra.co.jp: max-age too low: 0 absinthium.ch: could not connect to host absolutewaterproofingsolutions.com: did not receive HSTS header abstractbarista.com: could not connect to host @@ -445,7 +486,7 @@ abt.de: did not receive HSTS header abtom.de: did not receive HSTS header abury.fr: did not receive HSTS header abury.me: did not receive HSTS header -abyssgaming.eu: could not connect to host +abyssgaming.eu: did not receive HSTS header ac.milan.it: did not receive HSTS header acabadosboston.com: could not connect to host academialowcost.com.br: did not receive HSTS header @@ -468,6 +509,7 @@ accountsuspended.club: could not connect to host accwing.com: could not connect to host aceadvisory.biz: did not receive HSTS header acelpb.com: could not connect to host +acemypaper.com: could not connect to host acg.mn: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no] acg.sb: could not connect to host acgaudio.com: could not connect to host @@ -475,8 +517,10 @@ acgmoon.org: did not receive HSTS header acgpiano.club: could not connect to host acheirj.com.br: could not connect to host acheritage.co.uk: did not receive HSTS header +achmadfamily.com: could not connect to host achow101.com: did not receive HSTS header achterhoekseveiligheidsbeurs.nl: could not connect to host +achterstieg.dedyn.io: could not connect to host acisonline.net: did not receive HSTS header acksoft.fr: did not receive HSTS header acksoftdemo.fr: did not receive HSTS header @@ -492,6 +536,7 @@ actilove.ch: could not connect to host actiontowingroundrock.com: could not connect to host activateplay.com: did not receive HSTS header active-escape.com: did not receive HSTS header +activeclearweb.com: could not connect to host activeweb.top: could not connect to host activistasconstructivos.org: did not receive HSTS header activiti.alfresco.com: did not receive HSTS header @@ -499,6 +544,7 @@ actu-film.com: max-age too low: 0 actu-medias.com: could not connect to host actualite-videos.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no] acuve.jp: could not connect to host +acy.com: could not connect to host ad-disruptio.fr: could not connect to host ada.is: max-age too low: 2592000 adajwells.me: could not connect to host @@ -507,12 +553,14 @@ adamcoffee.net: could not connect to host adamdixon.co.uk: could not connect to host adamricheimer.com: could not connect to host adamsfoundationrepair.com: did not receive HSTS header +adamwallington.co.uk: could not connect to host adamwk.com: did not receive HSTS header adastra.re: could not connect to host adblock.ovh: could not connect to host adboos.com: could not connect to host addaxpetroleum.com: could not connect to host addcrazy.com: did not receive HSTS header +addiko.net: could not connect to host addvocate.com: could not connect to host adec-emsa.ae: could not connect to host adelaides.com: did not receive HSTS header @@ -521,6 +569,7 @@ adelinlydia-coach.com: did not receive HSTS header adequatetechnology.com: could not connect to host aderal.io: could not connect to host adesa-asesoria.com: did not receive HSTS header +adevel.eu: could not connect to host adfa-1.com: could not connect to host adhigamindia.com: could not connect to host adhosting.nl: did not receive HSTS header @@ -551,6 +600,7 @@ adrenaline-gaming.ru: could not connect to host adrianajewelry.my: could not connect to host adriancohea.ninja: did not receive HSTS header adrianseo.ro: did not receive HSTS header +adrien.vin: max-age too low: 172800 adrinet.tk: could not connect to host adrl.ca: could not connect to host adsfund.org: could not connect to host @@ -573,6 +623,7 @@ advertisemant.com: could not connect to host adviespuntklokkenluiders.nl: could not connect to host adzie.xyz: could not connect to host adzuna.co.uk: did not receive HSTS header +aelurus.com: could not connect to host aemoria.com: could not connect to host aeon.wiki: could not connect to host aerialmediapro.net: could not connect to host @@ -580,6 +631,7 @@ aerolog.co: did not receive HSTS header aeroparking.es: did not receive HSTS header aerotheque.fr: did not receive HSTS header aes256.ru: could not connect to host +aesthetics-blog.com: did not receive HSTS header aesym.de: could not connect to host aether.pw: could not connect to host aevpn.net: could not connect to host @@ -603,9 +655,8 @@ afvallendoeje.nu: did not receive HSTS header afyou.co.kr: could not connect to host agalaxyfarfaraway.co.uk: could not connect to host agatheetraphael.fr: could not connect to host -agbremen.de: could not connect to host +agbremen.de: did not receive HSTS header agdalieso.com.ba: could not connect to host -ageg.ca: could not connect to host agelesscitizen.com: could not connect to host agelesscitizens.com: could not connect to host agenbettingasia.com: did not receive HSTS header @@ -627,6 +678,7 @@ agrimap.com: did not receive HSTS header agro-id.gov.ua: did not receive HSTS header agro.rip: did not receive HSTS header agroglass.com.br: did not receive HSTS header +agroyard.com.ua: could not connect to host agtv.com.br: did not receive HSTS header ahabingo.com: did not receive HSTS header ahelos.tk: could not connect to host @@ -649,8 +701,6 @@ aidikofflaw.com: did not receive HSTS header aiesecarad.ro: could not connect to host aifreeze.ru: could not connect to host aify.eu: could not connect to host -aignermunich.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no] -aignermunich.de: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no] aikenorganics.com: could not connect to host aim-consultants.com: could not connect to host aimerworld.com: did not receive HSTS header @@ -664,6 +714,7 @@ airconsalberton.co.za: did not receive HSTS header airconsboksburg.co.za: did not receive HSTS header airconsfourways.co.za: did not receive HSTS header airconsmidrand.co.za: did not receive HSTS header +airconssandton.co.za: did not receive HSTS header airedaleterrier.com.br: could not connect to host airfax.io: could not connect to host airlea.com: could not connect to host @@ -675,6 +726,7 @@ airtimefranchise.com: did not receive HSTS header aishnair.com: could not connect to host aisle3.space: could not connect to host aiticon.de: did not receive HSTS header +aivene.com: could not connect to host aiw-thkoeln.online: could not connect to host ajetaci.cz: could not connect to host ajibot.com: did not receive HSTS header @@ -692,22 +744,23 @@ akhras.at: did not receive HSTS header akiba-server.info: could not connect to host akihiro.xyz: could not connect to host akita-stream.com: could not connect to host +akj.io: did not receive HSTS header akkadia.cc: could not connect to host akoch.net: could not connect to host akombakom.net: could not connect to host akoww.de: could not connect to host -akronet.cz: did not receive HSTS header -akropol.cz: did not receive HSTS header +akracing.se: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no] akselimedia.fi: could not connect to host akstudentsfirst.org: could not connect to host aktan.com.br: could not connect to host -aktivist.in: could not connect to host +aktivist.in: did not receive HSTS header akul.co.in: could not connect to host al-f.net: could not connect to host al-shami.net: could not connect to host alanhuang.name: did not receive HSTS header alanlee.net: could not connect to host alanrickmanflipstable.com: did not receive HSTS header +alanya.law: did not receive HSTS header alariel.de: did not receive HSTS header alarme-gps.ch: could not connect to host alarmegps.ch: could not connect to host @@ -721,6 +774,7 @@ albertify.xyz: could not connect to host albertonplumber24-7.co.za: did not receive HSTS header albertopimienta.com: did not receive HSTS header alcantarafleuriste.com: did not receive HSTS header +alcatelonetouch.us: could not connect to host alcatraz.online: could not connect to host alcazaar.com: could not connect to host alchemia.co.il: did not receive HSTS header @@ -732,11 +786,11 @@ alenan.org: could not connect to host aleph.land: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no] alertaenlinea.gov: did not receive HSTS header alessandro.pw: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no] -alessandroz.ddns.net: could not connect to host alessandroz.pro: could not connect to host alethearose.com: did not receive HSTS header alexandernorth.ch: could not connect to host alexandre.sh: did not receive HSTS header +alexandros.io: could not connect to host alexdodge.ca: did not receive HSTS header alexei.su: could not connect to host alexfisherhealth.com.au: did not receive HSTS header @@ -752,7 +806,6 @@ alexmak.net: did not receive HSTS header alexmol.tk: could not connect to host alexperry.io: could not connect to host alfa24.pro: could not connect to host -alfaperfumes.com.br: could not connect to host alfaponny.se: could not connect to host alfirous.com: could not connect to host alfredxing.com: did not receive HSTS header @@ -762,26 +815,25 @@ alghaib.com: could not connect to host alibababee.com: did not receive HSTS header alicialab.org: could not connect to host alien.bz: did not receive HSTS header +alignrs.com: could not connect to host alikulov.me: did not receive HSTS header alilialili.ga: could not connect to host alinemaciel.adm.br: could not connect to host alistairpialek.com: max-age too low: 86400 alittlebitcheeky.com: did not receive HSTS header aliwebstore.com: could not connect to host -aljammaz.holdings: did not receive HSTS header +aljammaz.holdings: could not connect to host aljmz.com: did not receive HSTS header alkami.com: max-age too low: 0 alkamitech.com: max-age too low: 0 -alkel.info: could not connect to host +alkel.info: did not receive HSTS header all-subtitles.com: could not connect to host all.tf: could not connect to host all4os.com: did not receive HSTS header allaboutbelgaum.com: did not receive HSTS header -allangirvan.net: could not connect to host alldaymonitoring.com: could not connect to host alldm.ru: could not connect to host allegro-inc.com: did not receive HSTS header -allenosgood.com: could not connect to host allerbestefreunde.de: did not receive HSTS header allfreelancers.su: did not receive HSTS header allgrass.es: did not receive HSTS header @@ -793,7 +845,6 @@ allkindzabeats.com: did not receive HSTS header allladyboys.com: could not connect to host allmbw.com: could not connect to host allmystery.de: did not receive HSTS header -allo-symo.fr: did not receive HSTS header allods-zone.ru: did not receive HSTS header alloffice.com.ua: did not receive HSTS header alloinformatique.net: could not connect to host @@ -801,13 +852,13 @@ alloutatl.com: could not connect to host allpropertyservices.com: did not receive HSTS header allprorisk.com: did not receive HSTS header allrealty.co.za: could not connect to host -allroundpvp.net: did not receive HSTS header allscammers.exposed: could not connect to host allseasons-cleaning.co.uk: could not connect to host allsortscastles.co.uk: could not connect to host allstarswithus.com: could not connect to host allstorebrasil.com.br: could not connect to host alltheducks.com: max-age too low: 43200 +allthingsblogging.com: could not connect to host allthingsfpl.com: could not connect to host allvips.ru: could not connect to host almagalla.com: could not connect to host @@ -821,7 +872,6 @@ alphabuild.io: could not connect to host alphagamers.net: did not receive HSTS header alphahunks.com: could not connect to host alphalabs.xyz: could not connect to host -alqassam.net: did not receive HSTS header als-hardware.co.za: did not receive HSTS header alspolska.pl: max-age too low: 2592000 alt-tab-design.com: did not receive HSTS header @@ -829,7 +879,7 @@ alt33c3.org: could not connect to host altahrim.net: could not connect to host altaide.com: did not receive HSTS header altailife.ru: did not receive HSTS header -altamarea.se: did not receive HSTS header +altamarea.se: could not connect to host altbinaries.com: could not connect to host alteqnia.com: could not connect to host altercpa.ru: did not receive HSTS header @@ -839,15 +889,17 @@ altiacaselight.com: could not connect to host altitudemoversdenver.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no] altoneum.com: could not connect to host altporn.xyz: could not connect to host +altruistgroup.net: max-age too low: 300 aluminium-scaffolding.co.uk: could not connect to host -alunjam.es: did not receive HSTS header +alunjam.es: could not connect to host alunonaescola.com.br: could not connect to host aluoblog.pw: could not connect to host aluoblog.top: could not connect to host alusta.co: could not connect to host +alvn.ga: could not connect to host am8888.top: could not connect to host amaderelectronics.com: max-age too low: 2592000 -amadilo.de: did not receive HSTS header +amadilo.de: could not connect to host amadoraslindas.com: could not connect to host amaforums.org: did not receive HSTS header amagical.net: did not receive HSTS header @@ -855,6 +907,7 @@ amandaonishi.com: could not connect to host amaranthus.com.ph: could not connect to host amartinz.at: could not connect to host amateri.com: could not connect to host +amateurvoicetalent.com: could not connect to host amatzen.dk: did not receive HSTS header amavis.org: did not receive HSTS header amazing-gaming.fr: could not connect to host @@ -911,6 +964,8 @@ anacruz.es: did not receive HSTS header anadoluefessk.org: did not receive HSTS header anadoluefessporkulubu.org: could not connect to host anagra.ms: could not connect to host +anaiscoachpersonal.es: did not receive HSTS header +anaisypirueta.es: did not receive HSTS header anakros.me: could not connect to host analangelsteen.com: could not connect to host analpantyhose.org: could not connect to host @@ -924,11 +979,11 @@ ancarda.net: could not connect to host anchorgrounds.com: did not receive HSTS header anchorinmarinainc.com: did not receive HSTS header ancient-gates.de: could not connect to host -ancientcraft.eu: could not connect to host ancientkarma.com: could not connect to host andbraiz.com: did not receive HSTS header andere-gedanken.net: max-age too low: 10 anderslind.dk: could not connect to host +andoms.fi: did not receive HSTS header andreagobetti.com: did not receive HSTS header andreas-kluge.eu: could not connect to host andreasanti.net: did not receive HSTS header @@ -940,7 +995,7 @@ andreastoneman.com: could not connect to host andrei-coman.com: could not connect to host andreigec.net: did not receive HSTS header andrerose.ca: did not receive HSTS header -andrew.fi: did not receive HSTS header +andrew.fi: could not connect to host andrewbroekman.com: did not receive HSTS header andrewdavidwong.com: did not receive HSTS header andrewdaws.co: could not connect to host @@ -961,6 +1016,8 @@ androidsphone.com: did not receive HSTS header androled.fr: max-age too low: 5184000 andronika.net: could not connect to host androoz.se: could not connect to host +anduril.de: did not receive HSTS header +anduril.eu: did not receive HSTS header andyclark.io: could not connect to host andycraftz.eu: did not receive HSTS header andymartin.cc: could not connect to host @@ -973,7 +1030,6 @@ anfenglish.com: did not receive HSTS header anfsanchezo.co: could not connect to host anfsanchezo.me: could not connect to host angelic47.com: could not connect to host -angelicare.co.uk: did not receive HSTS header angeloroberto.ch: did not receive HSTS header angeloventuri.com: did not receive HSTS header angervillelorcher.fr: did not receive HSTS header @@ -982,15 +1038,14 @@ anglictinatabor.cz: could not connect to host angrut.com: did not receive HSTS header angry-monk.com: could not connect to host angrydragonproductions.com: could not connect to host -angrylab.com: did not receive HSTS header angryroute.com: could not connect to host +animal-nature-human.com: could not connect to host animalnet.de: max-age too low: 7776000 animalstropic.com: could not connect to host anime1.top: could not connect to host anime1video.tk: could not connect to host animeday.ml: could not connect to host animesfusion.com.br: could not connect to host -animorphsfanforum.com: did not receive HSTS header animurecs.com: could not connect to host aniplus.cf: could not connect to host aniplus.gq: could not connect to host @@ -1013,9 +1068,7 @@ annevankesteren.org: could not connect to host annsbouncycastles.com: could not connect to host anomaly.ws: did not receive HSTS header anonboards.com: could not connect to host -anoneko.com: could not connect to host anonrea.ch: could not connect to host -anonym-surfen.de: could not connect to host anonymo.co.uk: could not connect to host anonymo.uk: could not connect to host anonymousstatecollegelulzsec.com: could not connect to host @@ -1050,11 +1103,11 @@ antoniorequena.com.ve: could not connect to host antraxx.ee: could not connect to host antscript.com: did not receive HSTS header anttitenhunen.com: could not connect to host -anulowano.pl: could not connect to host anunayk.com: could not connect to host anycoin.me: could not connect to host anyfood.fi: could not connect to host anytonetech.com: did not receive HSTS header +anyways.at: could not connect to host aobogo.com: could not connect to host aocast.info: could not connect to host aojao.cn: could not connect to host @@ -1079,7 +1132,7 @@ apis.blue: could not connect to host apis.google.com: did not receive HSTS header (error ignored - included regardless) apis.world: could not connect to host apivia.fr: did not receive HSTS header -apkdv.com: could not connect to host +apkdv.com: did not receive HSTS header apkoyunlar.club: could not connect to host apkriver.com: did not receive HSTS header apl2bits.net: did not receive HSTS header @@ -1091,6 +1144,7 @@ apolloyl.com: could not connect to host aponkral.site: could not connect to host aponkralsunucu.com: could not connect to host aponow.de: did not receive HSTS header +apotheek-nl.org: max-age too low: 3600 app: could not connect to host app-arena.com: did not receive HSTS header app.manilla.com: could not connect to host @@ -1104,6 +1158,7 @@ appimlab.it: could not connect to host apple-watch-zubehoer.de: could not connect to host apple.ax: could not connect to host applejacks-bouncy-castles.co.uk: could not connect to host +applewatch.co.nz: did not receive HSTS header applez.xyz: could not connect to host appliancerepairlosangeles.com: did not receive HSTS header applic8.com: did not receive HSTS header @@ -1111,8 +1166,6 @@ apply55gx.com: could not connect to host appointed.at: did not receive HSTS header appraisal-comps.com: could not connect to host appreciationkards.com: did not receive HSTS header -apprenticeship.gov: did not receive HSTS header -apprenticeships.gov: did not receive HSTS header approlys.fr: did not receive HSTS header apps-for-fishing.com: could not connect to host apps4all.sytes.net: could not connect to host @@ -1125,7 +1178,6 @@ aprpullmanportermuseum.org: did not receive HSTS header aptitude9.com: could not connect to host aqqrate.com: could not connect to host aquariumaccessories.shop: could not connect to host -aquaundine.net: could not connect to host aquilaguild.com: could not connect to host aquilalab.com: could not connect to host aquireceitas.com: did not receive HSTS header @@ -1134,39 +1186,45 @@ arabdigitalexpression.org: did not receive HSTS header arabsexi.info: could not connect to host aradulconteaza.ro: could not connect to host aran.me.uk: could not connect to host +aranel.me: could not connect to host arboineuropa.nl: did not receive HSTS header arbu.eu: max-age too low: 2419200 arcadiaeng.com: did not receive HSTS header arcbit.io: could not connect to host archii.ca: did not receive HSTS header +architectdirect.nl: did not receive HSTS header architecte-interieur.be: did not receive HSTS header archmediamarketing.com: could not connect to host archsec.info: could not connect to host arckr.com: could not connect to host +arctica.io: did not receive HSTS header ardao.me: could not connect to host +ardor.noip.me: could not connect to host ardorlabs.se: could not connect to host area3.org: could not connect to host areallyneatwebsite.com: could not connect to host arent.kz: could not connect to host arenzanaphotography.com: could not connect to host +arethsu.se: could not connect to host arewedubstepyet.com: did not receive HSTS header areyouever.me: could not connect to host -argama-nature.com: did not receive HSTS header argennon.xyz: could not connect to host argh.io: could not connect to host arguggi.co.uk: could not connect to host ariacreations.net: did not receive HSTS header +ariege-pyrenees.net: did not receive HSTS header arifburhan.online: could not connect to host arifp.me: could not connect to host arinflatablefun.co.uk: could not connect to host arislight.com: could not connect to host +aristocrates.co: could not connect to host +aristocratps.com: did not receive HSTS header arithxu.com: did not receive HSTS header arka.gq: did not receive HSTS header arknodejs.com: could not connect to host arlen.io: could not connect to host arlen.se: could not connect to host arlingtonwine.net: could not connect to host -arm-host.com: did not receive HSTS header armazemdaminiatura.com.br: could not connect to host armenians.online: could not connect to host armingrodon.de: did not receive HSTS header @@ -1176,7 +1234,7 @@ armored.ninja: did not receive HSTS header armory.consulting: could not connect to host armory.supplies: could not connect to host armsday.com: could not connect to host -armyofbane.com: could not connect to host +armyofbane.com: did not receive HSTS header armytricka.cz: did not receive HSTS header arne-petersen.net: did not receive HSTS header arnesolutions.com: could not connect to host @@ -1193,19 +1251,28 @@ arrowgrove.com: could not connect to host ars-design.net: could not connect to host arsenal.ru: could not connect to host arsk1.com: could not connect to host +arswb.men: could not connect to host art2web.net: could not connect to host artaronquieres.com: did not receive HSTS header artartefatos.com.br: could not connect to host artbytik.ru: did not receive HSTS header +artea.ga: could not connect to host +arteaga.co.uk: could not connect to host +arteaga.eu: could not connect to host +arteaga.me: could not connect to host +arteaga.tech: could not connect to host +arteaga.uk: could not connect to host +arteaga.xyz: could not connect to host artegusto.ru: did not receive HSTS header artemicroway.com.br: could not connect to host arteseideias.com.pt: did not receive HSTS header artesupra.com: did not receive HSTS header arthan.me: could not connect to host +arthur.cn: could not connect to host +arti-group.ml: max-age too low: 2592000 articaexports.com: could not connect to host artifex21.com: did not receive HSTS header artifex21.fr: did not receive HSTS header -artificial.army: could not connect to host artiming.com: could not connect to host artisanhd.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no] artisavotins.com: could not connect to host @@ -1220,6 +1287,7 @@ artsinthevalley.net.au: did not receive HSTS header artstopinc.com: did not receive HSTS header artyland.ru: could not connect to host arvamus.eu: could not connect to host +arxell.com: did not receive HSTS header arzaroth.com: did not receive HSTS header as.se: could not connect to host as9178.net: could not connect to host @@ -1240,6 +1308,7 @@ ashleymedway.com: could not connect to host asian-archi.com.tw: did not receive HSTS header asianbet77.co: did not receive HSTS header asianbet77.net: did not receive HSTS header +asianodor.com: could not connect to host asiesvenezuela.com: did not receive HSTS header asisee.co.il: could not connect to host ask.pe: could not connect to host @@ -1251,17 +1320,17 @@ asmui.ga: could not connect to host asmui.ml: could not connect to host asoftwareco.com: did not receive HSTS header asphaltfruehling.de: could not connect to host -asphyxia.su: could not connect to host asral7.com: could not connect to host asryflorist.com: could not connect to host ass.org.au: could not connect to host -assadrivesloirecher.com: could not connect to host +assadrivesloirecher.com: did not receive HSTS header assdecoeur.org: could not connect to host assekuranzjobs.de: could not connect to host asset-alive.com: did not receive HSTS header asset-alive.net: could not connect to host assetsupervision.com: could not connect to host assindia.nl: could not connect to host +assistcart.com: could not connect to host assurancesmons.be: did not receive HSTS header astaninki.com: could not connect to host asthon.cn: could not connect to host @@ -1279,6 +1348,7 @@ asuhe.win: did not receive HSTS header asuhe.xyz: could not connect to host async.be: could not connect to host at1.co: could not connect to host +ataber.pw: could not connect to host atacadodesandalias.com.br: could not connect to host atacadooptico.com.br: could not connect to host atavio.at: could not connect to host @@ -1287,14 +1357,16 @@ atavio.de: could not connect to host atbeckett.com: did not receive HSTS header atcreform.gov: did not receive HSTS header atelier-rk.com: did not receive HSTS header -atelier-viennois-cannes.fr: did not receive HSTS header +atelier-viennois-cannes.fr: could not connect to host ateliernihongo.ch: did not receive HSTS header ateliersantgervasi.com: did not receive HSTS header +ath0.org: max-age too low: 600 athaliasoft.com: could not connect to host athenelive.com: could not connect to host athensbusinessresources.us: could not connect to host athi.pl: did not receive HSTS header athul.xyz: could not connect to host +atk.me: could not connect to host atkdesign.pt: did not receive HSTS header atlas-5.site: could not connect to host atlas-staging.ml: could not connect to host @@ -1303,6 +1375,7 @@ atlassian.net: did not receive HSTS header atlayo.com: did not receive HSTS header atlex.nl: did not receive HSTS header atlseccon.com: did not receive HSTS header +atmocdn.com: could not connect to host atomic.menu: could not connect to host atomik.pro: did not receive HSTS header atop.io: could not connect to host @@ -1331,14 +1404,15 @@ aurainfosec.com: did not receive HSTS header aurainfosec.com.au: did not receive HSTS header auraredeye.com: could not connect to host auraredshield.com: could not connect to host -aurora-terraria.org: did not receive HSTS header +aurora-terraria.org: could not connect to host aurorarecordings.com: could not connect to host auroratownshipfd.org: could not connect to host aurugs.com: did not receive HSTS header ausec.ch: could not connect to host auskunftsbegehren.at: did not receive HSTS header -auslandsjahr-usa.de: could not connect to host +auslandsjahr-usa.de: did not receive HSTS header ausnah.me: could not connect to host +ausschreibungen-suedtirol.it: did not receive HSTS header aussiecable.org: could not connect to host aussiehq.com.au: did not receive HSTS header aussiewebmarketing.com.au: did not receive HSTS header @@ -1347,7 +1421,6 @@ austinstore.com.br: could not connect to host austinsutphin.com: could not connect to host australiancattle.dog: could not connect to host australianfreebets.com.au: did not receive HSTS header -australianimmigrationadvisors.com.au: could not connect to host auth.mail.ru: did not receive HSTS header authenitech.com: did not receive HSTS header authentication.io: could not connect to host @@ -1393,7 +1466,6 @@ avdh.top: could not connect to host avec-ou-sans-ordonnance.fr: could not connect to host aveling-adventure.co.uk: did not receive HSTS header avg.club: did not receive HSTS header -avi9526.pp.ua: could not connect to host aviacao.pt: did not receive HSTS header avidcruiser.com: did not receive HSTS header aviodeals.com: could not connect to host @@ -1401,6 +1473,7 @@ avitres.com: could not connect to host avmemo.com: could not connect to host avmo.pw: could not connect to host avmoo.com: could not connect to host +avnet.ws: could not connect to host avonlearningcampus.com: could not connect to host avso.pw: could not connect to host avspot.net: could not connect to host @@ -1422,18 +1495,19 @@ axel-fischer.science: could not connect to host axelchv.fr: could not connect to host axem.co.jp: did not receive HSTS header axeny.com: did not receive HSTS header -axfr.it: did not receive HSTS header +axfr.it: could not connect to host axg.io: did not receive HSTS header axialsports.com: did not receive HSTS header axiumacademy.com: did not receive HSTS header axolotlfarm.org: could not connect to host axolsoft.com: max-age too low: 10540800 -axtudo.com: did not receive HSTS header axtux.tk: could not connect to host axxial.tk: could not connect to host ayahuascaadvisor.com: could not connect to host +ayamchikchik.com: could not connect to host ayatk.com: did not receive HSTS header aymericlagier.com: could not connect to host +ayon.group: could not connect to host ayor.jp: could not connect to host ayor.tech: could not connect to host ayuru.info: could not connect to host @@ -1455,6 +1529,7 @@ b2and.com: could not connect to host b2b-nestle.com.br: could not connect to host b2bpromoteit.com: did not receive HSTS header b3orion.com: could not connect to host +b422edu.com: could not connect to host b61688.com: could not connect to host b8a.me: could not connect to host b9520.com: could not connect to host @@ -1490,6 +1565,7 @@ backgroundchecks.online: did not receive HSTS header backgroundz.net: could not connect to host backintomotionphysiotherapy.com: did not receive HSTS header backlogapp.io: could not connect to host +backpacken.org: could not connect to host backscattering.de: did not receive HSTS header backupsinop.com.br: did not receive HSTS header backyardbbqbash.com: did not receive HSTS header @@ -1504,6 +1580,7 @@ badkamergigant.com: could not connect to host badlink.org: could not connect to host baff.lu: could not connect to host bagiobella.com: max-age too low: 0 +baglu.com: did not receive HSTS header baiduaccount.com: could not connect to host baildonhottubs.co.uk: could not connect to host bair.io: could not connect to host @@ -1512,17 +1589,20 @@ baito-j.jp: did not receive HSTS header baixoutudo.com: did not receive HSTS header bajic.ch: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no] bakabt.info: could not connect to host +bakanin.ru: could not connect to host bakaweb.fr: could not connect to host bakhansen.com: did not receive HSTS header bakkerdesignandbuild.com: did not receive HSTS header bakxnet.com: could not connect to host balatoni-nyar.hu: did not receive HSTS header balcan-underground.net: could not connect to host +baldur.cc: could not connect to host baldwinkoo.com: could not connect to host baleares.party: could not connect to host balenciaspa.com: did not receive HSTS header balihai.com: did not receive HSTS header -balilingo.ooo: did not receive HSTS header +balilingo.ooo: could not connect to host +ballarin.cc: could not connect to host ballbusting-cbt.com: could not connect to host balloonphp.com: could not connect to host balnearionaturaspa.com: did not receive HSTS header @@ -1536,10 +1616,11 @@ bananabandy.com: could not connect to host bananensap.nl: did not receive HSTS header bananium.fr: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no] banbanchs.com: could not connect to host +banburybid.com: could not connect to host banchethai.com: could not connect to host bandally.net: could not connect to host bandar303.cc: did not receive HSTS header -bandar303.id: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no] +bandar303.id: did not receive HSTS header bandar303.win: did not receive HSTS header bandarifamily.com: could not connect to host bandb.xyz: did not receive HSTS header @@ -1564,7 +1645,6 @@ baptiste-destombes.fr: did not receive HSTS header baraxolka.ru: could not connect to host barcouniforms.com: did not receive HSTS header bardiel.de: max-age too low: 0 -bardiharborow.com: did not receive HSTS header barely.sexy: could not connect to host bargainmovingcompany.com: could not connect to host bariller.fr: did not receive HSTS header @@ -1575,7 +1655,7 @@ barprive.com: could not connect to host barqo.co: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no] barracuda.blog: could not connect to host barrelhead.org: could not connect to host -barrett.ag: did not receive HSTS header +barrett.ag: could not connect to host barrut.me: did not receive HSTS header barshout.co.uk: could not connect to host barss.io: could not connect to host @@ -1587,18 +1667,21 @@ basculasconfiables.com: could not connect to host bashc.at: could not connect to host bashcode.ninja: could not connect to host basicsolutionsus.com: could not connect to host +basilicaknights.org: could not connect to host basilisk.io: could not connect to host basilm.co: could not connect to host +basketsbymaurice.com: did not receive HSTS header baskettemple.com: did not receive HSTS header basnieuwenhuizen.nl: did not receive HSTS header bassh.net: did not receive HSTS header batfoundry.com: could not connect to host +batonger.com: did not receive HSTS header batten.eu.org: could not connect to host +batteryservice.ru: did not receive HSTS header baud.ninja: could not connect to host baudairenergyservices.com: could not connect to host baum.ga: did not receive HSTS header baumstark.ca: could not connect to host -bayerstefan.eu: could not connect to host bayinstruments.com: could not connect to host bayrisch-fuer-anfaenger.de: did not receive HSTS header baysse.eu: did not receive HSTS header @@ -1618,18 +1701,22 @@ bbwfacesitting.us: could not connect to host bbwfacesitting.xyz: could not connect to host bbwfight.xyz: could not connect to host bbwteens.org: could not connect to host +bc416.com: did not receive HSTS header +bc418.com: did not receive HSTS header +bc419.com: did not receive HSTS header bcbsmagentprofile.com: could not connect to host bcchack.com: could not connect to host bccx.com: could not connect to host bcheng.cf: did not receive HSTS header bckp.de: could not connect to host bcm.com.au: did not receive HSTS header +bcmlu.org: could not connect to host bcnet.hk: could not connect to host bcodeur.com: did not receive HSTS header bcradio.org: could not connect to host bcsytv.com: could not connect to host bcweightlifting.ca: could not connect to host -bdata.cl: did not receive HSTS header +bdata.cl: could not connect to host bddemir.com: could not connect to host bde-epitech.fr: could not connect to host bdenzer.com: did not receive HSTS header @@ -1644,7 +1731,7 @@ beagreenbean.co.uk: could not connect to host beamitapp.com: could not connect to host beanbot.party: could not connect to host beanworks.ca: did not receive HSTS header -bearden.io: could not connect to host +bearden.io: did not receive HSTS header beardydave.com: did not receive HSTS header beasel.biz: could not connect to host beastlog.tk: could not connect to host @@ -1671,7 +1758,6 @@ beforesunrise.de: did not receive HSTS header befundup.com: could not connect to host begcykel.com: did not receive HSTS header behere.be: could not connect to host -beholdthehurricane.com: could not connect to host beier.io: could not connect to host beikeil.de: did not receive HSTS header beingmad.org: did not receive HSTS header @@ -1706,7 +1792,7 @@ benk.press: could not connect to host benny003.de: could not connect to host benohead.com: did not receive HSTS header bentphotos.se: could not connect to host -benwattie.com: could not connect to host +benwattie.com: did not receive HSTS header benzkosmetik.de: did not receive HSTS header benzou-space.com: could not connect to host beourvictim.com: max-age too low: 2678400 @@ -1715,7 +1801,8 @@ bep362.vn: could not connect to host beraru.tk: could not connect to host beraten-entwickeln-steuern.de: could not connect to host berdu.id: did not receive HSTS header -berduri.com: could not connect to host +berduri.com: did not receive HSTS header +beretech.fr: could not connect to host berger.work: could not connect to host bergfex.at: did not receive HSTS header bergland-seefeld.at: did not receive HSTS header @@ -1726,9 +1813,11 @@ berlin-kohlefrei.de: could not connect to host berlinleaks.com: could not connect to host bermytraq.bm: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no] bernexskiclub.ch: did not receive HSTS header +bernieware.de: could not connect to host berrymark.be: did not receive HSTS header berseb.se: could not connect to host berthelier.me: could not connect to host +berz.one: could not connect to host besb66.club: could not connect to host besb66.me: could not connect to host besb66.ninja: could not connect to host @@ -1742,6 +1831,7 @@ best-wedding-quotes.com: could not connect to host bestattorney.com: did not receive HSTS header bestbeards.ca: could not connect to host bestbestbitcoin.com: could not connect to host +bestbonuses.co.uk: did not receive HSTS header bestellipticalmachinereview.info: could not connect to host bestfitnesswatchreview.info: could not connect to host besthost.cz: did not receive HSTS header @@ -1766,7 +1856,6 @@ betnet.fr: could not connect to host betonmoney.com: could not connect to host betplanning.it: did not receive HSTS header bets.de: did not receive HSTS header -bets.gg: did not receive HSTS header betshoot.com: could not connect to host betsonlinefree.com.au: could not connect to host betterlifemakers.com: max-age too low: 200 @@ -1779,13 +1868,14 @@ bewertet.de: could not connect to host bexit-hosting.nl: could not connect to host bexit-security.eu: could not connect to host bexit-security.nl: could not connect to host +bexithosting.nl: could not connect to host bey.io: could not connect to host beylikduzum.com: did not receive HSTS header beyond-edge.com: could not connect to host -beyond-rational.com: did not receive HSTS header beyuna.co.uk: did not receive HSTS header beyuna.eu: did not receive HSTS header beyuna.nl: did not receive HSTS header +bez-energie.de: could not connect to host bezoomnyville.com: could not connect to host bezorg.ninja: could not connect to host bezprawnik.pl: did not receive HSTS header @@ -1797,12 +1887,14 @@ bfear.com: could not connect to host bfelob.gov: could not connect to host bffm.biz: could not connect to host bfrailwayclub.cf: could not connect to host +bg16.de: could not connect to host bgcparkstad.nl: did not receive HSTS header bgdaddy.com: did not receive HSTS header bgenlisted.com: could not connect to host bgfashion.net: could not connect to host bgneuesheim.de: did not receive HSTS header bhatia.at: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no] +biancolievito.it: did not receive HSTS header bianinapiccanovias.com: could not connect to host biaoqingfuhao.net: did not receive HSTS header biaoqingfuhao.org: did not receive HSTS header @@ -1829,8 +1921,8 @@ bigcorporateevents.com: could not connect to host bigerbio.com: could not connect to host bigfunbouncycastles.com: could not connect to host biglagoonrentals.com: did not receive HSTS header -biglou.com: max-age too low: 3153600 bigshinylock.minazo.net: could not connect to host +bigshort.org: could not connect to host biguixhe.net: could not connect to host bijoux.com.br: could not connect to host bijouxdegriffe.com.br: could not connect to host @@ -1839,12 +1931,10 @@ bikelifetvkidsquads.co.uk: could not connect to host bikermusic.net: could not connect to host bilanligne.com: did not receive HSTS header bildermachr.de: could not connect to host -biletru.net: could not connect to host biletua.de: could not connect to host biletyplus.com: could not connect to host biletyplus.ru: did not receive HSTS header bill-nye-the.science: did not receive HSTS header -billaud.eu.org: could not connect to host billdestler.com: did not receive HSTS header billigssl.dk: did not receive HSTS header billkiss.com: could not connect to host @@ -1868,11 +1958,13 @@ binsp.net: could not connect to host biocrafting.net: could not connect to host bioespuna.eu: did not receive HSTS header biofam.ru: did not receive HSTS header +bioknowme.com: did not receive HSTS header biologis.ch: could not connect to host biomax-mep.com.br: did not receive HSTS header bionicspirit.com: did not receive HSTS header biophysik-ssl.de: did not receive HSTS header biopreferred.gov: could not connect to host +biospeak.solutions: could not connect to host biou.me: could not connect to host biovalue.eu: could not connect to host bip.gov.sa: could not connect to host @@ -1887,7 +1979,7 @@ bisterfeldt.com: did not receive HSTS header biswas.me: could not connect to host bitace.com: did not receive HSTS header bitbit.org: did not receive HSTS header -bitbr.net: did not receive HSTS header +bitbr.net: could not connect to host bitcantor.com: did not receive HSTS header bitchan.it: could not connect to host bitcoin-casino-no-deposit-bonus.com: max-age too low: 0 @@ -1898,7 +1990,7 @@ bitcoinec.info: could not connect to host bitcoinfo.jp: did not receive HSTS header bitcoinhk.org: did not receive HSTS header bitcoinjpn.com: could not connect to host -bitcoinprivacy.net: could not connect to host +bitcoinprivacy.net: did not receive HSTS header bitcoinworld.me: could not connect to host bitconcepts.co.uk: could not connect to host bitedge.com: did not receive HSTS header @@ -1911,6 +2003,7 @@ bitfarm-archiv.com: did not receive HSTS header bitfarm-archiv.de: did not receive HSTS header bitheus.com: could not connect to host bithosting.io: did not receive HSTS header +bitk.uk: could not connect to host bitmain.com.ua: could not connect to host bitmaincare.com.ua: could not connect to host bitmaincare.ru: could not connect to host @@ -1918,7 +2011,6 @@ bitmainwarranty.com.ua: could not connect to host bitmainwarranty.ru: could not connect to host bitmex.com: did not receive HSTS header bitmexin.com: could not connect to host -bitmon.net: did not receive HSTS header bitnet.io: did not receive HSTS header bitplay.space: could not connect to host bitpod.de: could not connect to host @@ -1938,29 +2030,31 @@ bitwrought.net: could not connect to host bityes.org: could not connect to host bivsi.com: could not connect to host bizcms.com: could not connect to host +bizedge.co.nz: did not receive HSTS header bizon.sk: did not receive HSTS header bizpare.com: did not receive HSTS header bizzartech.com: did not receive HSTS header bizzybeebouncers.co.uk: could not connect to host bjgongyi.com: could not connect to host +bjrn.io: could not connect to host bjtxl.cn: could not connect to host +bk-wife.com: could not connect to host bkb-skandal.ch: could not connect to host black-armada.com: could not connect to host black-armada.com.pl: could not connect to host black-armada.pl: could not connect to host black-gay-porn.biz: could not connect to host black-octopus.ru: could not connect to host +blackapron.com.br: could not connect to host blackberrycentral.com: could not connect to host blackburn.link: could not connect to host +blackdesertsp.com: could not connect to host blackdiam.net: did not receive HSTS header -blackilli.de: could not connect to host -blackkeg.ca: could not connect to host blacklane.com: did not receive HSTS header blacklightparty.be: could not connect to host blackly.uk: max-age too low: 0 blackmagic.sk: could not connect to host blackmirror.com.au: did not receive HSTS header -blacknova.io: could not connect to host blackpayment.ru: did not receive HSTS header blackphantom.de: could not connect to host blackscreen.me: could not connect to host @@ -1968,7 +2062,7 @@ blackunicorn.wtf: could not connect to host bladesmith.io: did not receive HSTS header blakerandall.xyz: could not connect to host blantik.net: could not connect to host -blarg.co: did not receive HSTS header +blarg.co: could not connect to host blauwwit.be: did not receive HSTS header blazeit.io: could not connect to host bleep.zone: could not connect to host @@ -1976,12 +2070,12 @@ blendlecdn.com: could not connect to host blenheimchalcot.com: did not receive HSTS header blessnet.jp: did not receive HSTS header blha303.com.au: could not connect to host +blikund.swedbank.se: did not receive HSTS header blindaryproduction.tk: could not connect to host blindsexdate.nl: did not receive HSTS header blinkenlight.co.uk: could not connect to host blinkenlight.com.au: could not connect to host blmiller.com: did not receive HSTS header -blockchainced.com: could not connect to host blocksatz-medien.de: could not connect to host blockshopauto.com: could not connect to host blog-ritaline.com: could not connect to host @@ -1998,6 +2092,7 @@ bloglikepro.com: could not connect to host blognone.com: did not receive HSTS header blognr.com: could not connect to host blogonblogspot.com: did not receive HSTS header +blok56.nl: did not receive HSTS header blokino.org: did not receive HSTS header blokuhaka.fr: did not receive HSTS header bloodyexcellent.com: did not receive HSTS header @@ -2007,11 +2102,11 @@ blowjs.com: could not connect to host bls-fiduciaire.be: did not receive HSTS header bltc.co: could not connect to host blubbablasen.de: could not connect to host -blubberladen.de: did not receive HSTS header blucas.org: did not receive HSTS header blue17.co.uk: did not receive HSTS header bluebill.net: did not receive HSTS header bluecon.eu: did not receive HSTS header +bluedata.ltd: could not connect to host bluefinger.nl: did not receive HSTS header blueglobalmedia.com: could not connect to host bluehawk.cloud: did not receive HSTS header @@ -2024,6 +2119,7 @@ bluescloud.xyz: could not connect to host bluesecure.com.br: did not receive HSTS header bluetenmeer.com: did not receive HSTS header bluezonehealth.co.uk: did not receive HSTS header +blui.cf: max-age too low: 1209600 bluketing.com: did not receive HSTS header blumen-binder.ch: did not receive HSTS header blumen-garage.de: could not connect to host @@ -2032,6 +2128,7 @@ blunderify.se: did not receive HSTS header bluop.com: did not receive HSTS header bluserv.net: could not connect to host bluteklab.com: did not receive HSTS header +blutopia.xyz: did not receive HSTS header blutroyal.de: could not connect to host blvdmb.com: did not receive HSTS header bm-i.ch: could not connect to host @@ -2039,14 +2136,14 @@ bm-immo.ch: could not connect to host bm-trading.nl: did not receive HSTS header bmet.de: did not receive HSTS header bmoattachments.org: did not receive HSTS header -bn4t.me: could not connect to host +bnb-buddy.nl: could not connect to host +bnboy.cn: could not connect to host bngsecure.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no] bnhlibrary.com: did not receive HSTS header board-buy.ru: could not connect to host bobaobei.net: could not connect to host bobaobei.org: could not connect to host bobep.ru: could not connect to host -bobiji.com: did not receive HSTS header boboates.com: did not receive HSTS header bodo-wolff.de: could not connect to host bodrumfarm.com: could not connect to host @@ -2056,14 +2153,13 @@ bodybuilding.events: could not connect to host bodyweightsolution.com: could not connect to host boel073.nl: did not receive HSTS header boensou.com: did not receive HSTS header -bogosity.se: could not connect to host bohaishibei.com: did not receive HSTS header +bohan.co: could not connect to host bohan.life: could not connect to host bohyn.cz: could not connect to host boiadeirodeberna.com: could not connect to host boilesen.com: did not receive HSTS header bokeyy.com: could not connect to host -bokutake.com: could not connect to host bolainfoasia.com: did not receive HSTS header bolivarfm.com.ve: did not receive HSTS header boltdata.io: could not connect to host @@ -2105,6 +2201,7 @@ bopera.co.uk: could not connect to host borchers-media.de: could not connect to host borchers.ninja: did not receive HSTS header borderlinegroup.com: could not connect to host +borgmestervangen.xyz: could not connect to host boringsecurity.net: could not connect to host boris.one: could not connect to host borisavstankovic.rs: could not connect to host @@ -2113,8 +2210,10 @@ born-to-learn.com: did not receive HSTS header borrelioz.com: did not receive HSTS header borscheid-wenig.com: did not receive HSTS header boschee.net: could not connect to host +botlab.ch: could not connect to host botmanager.pl: could not connect to host botox.bz: did not receive HSTS header +bots.cat: could not connect to host boueki.jp: did not receive HSTS header boueki.org: did not receive HSTS header bouk.co: could not connect to host @@ -2127,6 +2226,7 @@ bouncemasters.co.uk: could not connect to host bouncing4joy.co.uk: could not connect to host bouncingbuzzybees.co.uk: could not connect to host bouncycastleandparty.co.uk: could not connect to host +bouncycastlehireauckland.co.nz: could not connect to host bouncycastlehiremedway.com: did not receive HSTS header bouwbedrijfpurmerend.nl: did not receive HSTS header bowlsheet.com: did not receive HSTS header @@ -2180,6 +2280,7 @@ brb.city: did not receive HSTS header breatheav.com: did not receive HSTS header breatheproduction.com: did not receive HSTS header breeswish.org: did not receive HSTS header +bremensaki.com: max-age too low: 2592000 brenden.net.au: could not connect to host bress.cloud: could not connect to host brettcornwall.com: did not receive HSTS header @@ -2191,12 +2292,15 @@ brickwerks.io: could not connect to host brickyardbuffalo.com: did not receive HSTS header bridgeout.com: could not connect to host bridholm.se: could not connect to host +briggsleroux.com: did not receive HSTS header brightfuturemadebyme.com: could not connect to host brightstarkids.co.uk: did not receive HSTS header brightstarkids.com.au: did not receive HSTS header brightstarkids.net: did not receive HSTS header brightstarkids.sg: did not receive HSTS header +brigittebutt.tk: could not connect to host brilliantbuilders.co.uk: did not receive HSTS header +brilliantdecisionmaking.com: did not receive HSTS header brimspark.com: could not connect to host brinkhu.is: could not connect to host brinkmann.one: could not connect to host @@ -2213,6 +2317,7 @@ broken-oak.com: could not connect to host brookechase.com: did not receive HSTS header brookframework.org: could not connect to host brossman.it: could not connect to host +brouwerijkoelit.nl: did not receive HSTS header brownlawoffice.us: did not receive HSTS header browserid.org: could not connect to host brplusdigital.com: could not connect to host @@ -2222,11 +2327,12 @@ brunix.net: could not connect to host brunoonline.co.uk: could not connect to host brunoramos.com: could not connect to host brunoramos.org: could not connect to host +brunosouza.org: could not connect to host bryancastillo.site: could not connect to host bryanshearer.accountant: did not receive HSTS header bryn.xyz: could not connect to host brynnan.nl: could not connect to host -brztec.com: could not connect to host +brztec.com: did not receive HSTS header bsagan.fr: did not receive HSTS header bsalyzer.com: could not connect to host bsc01.dyndns.org: could not connect to host @@ -2236,6 +2342,12 @@ bsklabels.com: did not receive HSTS header bsktweetup.info: could not connect to host bsohoekvanholland.nl: could not connect to host bsuess.de: could not connect to host +bt78.cn: did not receive HSTS header +bt85.cn: did not receive HSTS header +bt9.cc: did not receive HSTS header +bt96.cn: did not receive HSTS header +bt995.com: did not receive HSTS header +btaoke.com: could not connect to host btc-e.com: did not receive HSTS header btcdlc.com: could not connect to host btcgo.nl: did not receive HSTS header @@ -2254,7 +2366,7 @@ buckmulligans.com: did not receive HSTS header buddhistische-weisheiten.org: could not connect to host budgetenergievriendenvoordeel.nl: could not connect to host budgetthostels.nl: did not receive HSTS header -budskap.eu: did not receive HSTS header +budskap.eu: could not connect to host buenosairesestetica.com.ar: could not connect to host buenotour.ru: did not receive HSTS header buettgens.net: max-age too low: 2592000 @@ -2276,6 +2388,7 @@ buildsaver.co.za: did not receive HSTS header builmaker.com: did not receive HSTS header built.by: did not receive HSTS header buka.jp: could not connect to host +bukai.men: did not receive HSTS header bukatv.cz: could not connect to host buldogueingles.com.br: could not connect to host bulgarien.guide: could not connect to host @@ -2287,6 +2400,7 @@ bulletpoint.cz: could not connect to host bullterrier.me: could not connect to host bulmafox.com: could not connect to host bulmastife.com.br: could not connect to host +bumarkamoda.com: could not connect to host bumshow.ru: did not receive HSTS header bunadarbankinn.is: could not connect to host bunaken.asia: could not connect to host @@ -2310,6 +2424,7 @@ buryit.net: did not receive HSTS header bush41.org: did not receive HSTS header business.lookout.com: could not connect to host business.medbank.com.mt: did not receive HSTS header +businessadviceperth.com.au: did not receive HSTS header businessamongus.com: could not connect to host businessetmarketing.com: could not connect to host businessfurs.info: could not connect to host @@ -2324,6 +2439,7 @@ butian518.com: did not receive HSTS header butt.repair: could not connect to host buttercoin.com: could not connect to host butterfieldstraining.com: could not connect to host +buttermilk.cf: could not connect to host buturyu.org: did not receive HSTS header buvinghausen.com: max-age too low: 86400 buybaby.eu: could not connect to host @@ -2331,11 +2447,10 @@ buybike.shop: could not connect to host buydesired.com: did not receive HSTS header buyessay.org: could not connect to host buyessays.net: could not connect to host -buyfox.de: did not receive HSTS header +buyfox.de: could not connect to host buyharpoon.com: could not connect to host buyingsellingflorida.com: could not connect to host buynowdepot.com: did not receive HSTS header -buyplussize.shop: could not connect to host buyshoe.org: could not connect to host buywood.shop: could not connect to host buzzconcert.com: did not receive HSTS header @@ -2345,13 +2460,21 @@ bvexplained.co.uk: could not connect to host bvionline.eu: did not receive HSTS header bw81.xyz: could not connect to host bwear4all.de: could not connect to host +bwin86.com: did not receive HSTS header +bwin8601.com: did not receive HSTS header +bwin8602.com: did not receive HSTS header +bwin8603.com: did not receive HSTS header +bwin8604.com: did not receive HSTS header +bwin8605.com: did not receive HSTS header +bwin8606.com: did not receive HSTS header +bwwb.nu: could not connect to host bx-web.com: did not receive HSTS header bxdev.me: could not connect to host by1896.com: could not connect to host by1898.com: could not connect to host by1899.com: could not connect to host by4cqb.cn: could not connect to host -by77.com: could not connect to host +by77.com: did not receive HSTS header by777.com: did not receive HSTS header byji.com: could not connect to host byken.cn: did not receive HSTS header @@ -2376,18 +2499,17 @@ bypassed.today: could not connect to host bypassed.works: could not connect to host bypassed.world: could not connect to host bypro.xyz: could not connect to host -byronwade.com: could not connect to host +byronwade.com: max-age too low: 7889238 byte.chat: did not receive HSTS header byte.wtf: did not receive HSTS header bytelog.org: could not connect to host -bytema.re: could not connect to host -bytepen.com: could not connect to host bytesatwork.eu: could not connect to host byteshift.ca: could not connect to host bytesofcode.de: could not connect to host bytesund.biz: could not connect to host byteturtle.eu: did not receive HSTS header byurudraw.pics: could not connect to host +bzhub.bid: did not receive HSTS header c-rickroll-v.pw: could not connect to host c12discountonline.com: did not receive HSTS header c16t.uk: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no] @@ -2411,6 +2533,7 @@ caerostris.com: could not connect to host caesreon.com: could not connect to host cafe-murr.de: did not receive HSTS header cafe-scientifique.org.ec: could not connect to host +cafe-service.ru: could not connect to host cafechesscourt.com: could not connect to host cafefresco.pe: did not receive HSTS header caferagazzi.de: did not receive HSTS header @@ -2420,7 +2543,7 @@ caim.cz: did not receive HSTS header caipai.fm: could not connect to host cairnterrier.com.br: could not connect to host cais.de: did not receive HSTS header -cajapopcorn.com: did not receive HSTS header +cajapopcorn.com: could not connect to host cake-time.co.uk: could not connect to host cake.care: could not connect to host cal.goip.de: could not connect to host @@ -2450,6 +2573,7 @@ camda.online: could not connect to host camisadotorcedor.com.br: could not connect to host camjackson.net: did not receive HSTS header cammarkets.com: could not connect to host +camomile.desi: could not connect to host campaignelves.com: did not receive HSTS header campbellsoftware.co.uk: could not connect to host campfire.co.il: did not receive HSTS header @@ -2468,6 +2592,7 @@ candratech.com: could not connect to host candygirl.shop: could not connect to host candykidsentertainment.co.uk: did not receive HSTS header canifis.net: did not receive HSTS header +cannarobotics.com: could not connect to host canterbury.ws: could not connect to host canyonshoa.com: did not receive HSTS header caodecristachines.com.br: could not connect to host @@ -2494,6 +2619,7 @@ cardloan-manual.net: could not connect to host cardoni.net: did not receive HSTS header cardstream.com: did not receive HSTS header cardurl.com: did not receive HSTS header +cardwars.hu: could not connect to host careeraid.in: could not connect to host careerstuds.com: could not connect to host careplasticsurgery.com: did not receive HSTS header @@ -2504,10 +2630,12 @@ carlgo11.com: did not receive HSTS header carlo.mx: did not receive HSTS header carlolly.co.uk: could not connect to host carlosalves.info: could not connect to host +carloshmm.com: could not connect to host carloshmm.stream: could not connect to host carlovanwyk.com: could not connect to host carlsbouncycastlesandhottubs.co.uk: did not receive HSTS header carlscatering.com: did not receive HSTS header +carol-lambert.com: could not connect to host caroli.biz: could not connect to host carpliyz.com: did not receive HSTS header carrando.de: could not connect to host @@ -2520,6 +2648,7 @@ carterorland.com: could not connect to host cartesunicef.be: did not receive HSTS header carun.us: did not receive HSTS header carwashvapeur.be: could not connect to host +casadellecose.com: did not receive HSTS header casajardininsecticidas.com: did not receive HSTS header casamorelli.com.br: did not receive HSTS header casashopp.com.br: could not connect to host @@ -2535,9 +2664,8 @@ casinolistings.com: could not connect to host casinoluck.com: could not connect to host casinoreal.com: could not connect to host casinostest.com: could not connect to host +casionova.org: did not receive HSTS header casioshop.eu: did not receive HSTS header -casjay.us: could not connect to host -casjaygames.com: could not connect to host casovi.cf: could not connect to host caspicards.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no] castagnonavocats.com: did not receive HSTS header @@ -2545,11 +2673,11 @@ cata.ga: could not connect to host catalin.pw: did not receive HSTS header catarsisvr.com: could not connect to host catcontent.cloud: could not connect to host -catdecor.ru: could not connect to host caterkids.com: did not receive HSTS header catgirl.me: could not connect to host catgirl.pics: could not connect to host catharisme.org: could not connect to host +catherineidylle.com: max-age too low: 0 catherinesarasin.com: did not receive HSTS header catinmay.com: did not receive HSTS header catnapstudios.com: could not connect to host @@ -2565,10 +2693,12 @@ cavedroid.xyz: could not connect to host cavern.tv: did not receive HSTS header cayafashion.de: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no] cayounglab.co.jp: did not receive HSTS header +cazes.info: did not receive HSTS header cbamo.org: did not receive HSTS header cbengineeringinc.com: max-age too low: 86400 cbhq.net: could not connect to host cbi-epa.gov: could not connect to host +cc2729.com: did not receive HSTS header ccayearbook.com: could not connect to host ccblog.de: did not receive HSTS header ccl-sti.ch: could not connect to host @@ -2604,7 +2734,6 @@ cellsites.nz: could not connect to host cencalvia.org: could not connect to host centennialrewards.com: did not receive HSTS header centerforpolicy.org: could not connect to host -centerpereezd.ru: could not connect to host centos.pub: could not connect to host central4.me: could not connect to host centralcountiesservices.org: did not receive HSTS header @@ -2614,6 +2743,8 @@ centralvacsunlimited.net: did not receive HSTS header centralvoice.org: could not connect to host centralync.com: could not connect to host centrepoint-community.com: could not connect to host +centricbeats.com: did not receive HSTS header +centrodoinstalador.com.br: did not receive HSTS header centrolavoro.org: did not receive HSTS header centsforchange.net: could not connect to host ceoimon.com: did not receive HSTS header @@ -2635,7 +2766,7 @@ cervejista.com: could not connect to host cesal.net: could not connect to host cesidianroot.eu: could not connect to host cevrimici.com: could not connect to host -ceyizlikelisleri.com: could not connect to host +cf-tm.net: could not connect to host cf11.de: did not receive HSTS header cfcnexus.org: could not connect to host cfcproperties.com: did not receive HSTS header @@ -2647,9 +2778,12 @@ cganx.org: could not connect to host cgerstner.eu: did not receive HSTS header cgsshelper.tk: could not connect to host cgtx.us: could not connect to host +chabaojia.com: did not receive HSTS header chadklass.com: could not connect to host chahub.com: could not connect to host chainmonitor.com: could not connect to host +chaldeen.pro: did not receive HSTS header +chalker.io: could not connect to host challengeskins.com: could not connect to host chameleon-ents.co.uk: could not connect to host chameth.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no] @@ -2657,13 +2791,16 @@ chamilo.org: did not receive HSTS header champ.dog: did not receive HSTS header championnat-romand-cuisiniers-amateurs.ch: could not connect to host championsofregnum.com: did not receive HSTS header -chancat.blog: did not receive HSTS header +chancat.blog: could not connect to host chandlerredding.com: could not connect to host changelab.cc: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no] changetip.com: did not receive HSTS header channelcards.com: did not receive HSTS header -channellife.asia: could not connect to host +channellife.asia: did not receive HSTS header +channellife.co.nz: did not receive HSTS header +channellife.com.au: did not receive HSTS header channyc.com: did not receive HSTS header +chanoyu-gakkai.jp: could not connect to host chanshiyu.com: did not receive HSTS header chaos.fail: could not connect to host chaospott.de: did not receive HSTS header @@ -2678,7 +2815,6 @@ charlestonsecuritysystems.net: did not receive HSTS header charliemcneive.com: could not connect to host charlimarie.com: did not receive HSTS header charlipopkids.com.au: could not connect to host -charmyadesara.com: could not connect to host charnleyhouse.co.uk: did not receive HSTS header charonsecurity.com: could not connect to host charp.eu: could not connect to host @@ -2700,9 +2836,11 @@ chatxp.com: could not connect to host chaulootz.com: did not receive HSTS header chaverde.org: could not connect to host chcemvediet.sk: max-age too low: 1555200 +chdgaming.xyz: could not connect to host cheah.xyz: could not connect to host cheapdns.org: could not connect to host -cheapssl.com.tr: could not connect to host +cheapssl.com.tr: did not receive HSTS header +cheapwritinghelp.com: could not connect to host cheapwritingservice.com: could not connect to host cheazey.net: did not receive HSTS header chebedara.com: could not connect to host @@ -2713,10 +2851,12 @@ checkout.google.com: could not connect to host (error ignored - included regardl checkyourmeds.com: could not connect to host cheekylittlerascals.co.uk: did not receive HSTS header cheerflow.com: could not connect to host +cheesefusion.com: could not connect to host cheesetart.my: could not connect to host cheesypicsbooths.co.uk: could not connect to host cheetah85.de: could not connect to host chefgalles.com.br: could not connect to host +chehalemgroup.com: did not receive HSTS header chejianer.cn: could not connect to host chellame.com: could not connect to host chellame.fr: could not connect to host @@ -2732,15 +2872,18 @@ cherylsoleway.com: did not receive HSTS header chessreporter.nl: did not receive HSTS header chesterbrass.uk: did not receive HSTS header chiamata-aiuto.ch: could not connect to host +chiaramail.com: could not connect to host chib.chat: could not connect to host chicorycom.net: could not connect to host chihiro.xyz: could not connect to host chijiokeindustries.co.uk: could not connect to host +chikan-beacon.net: could not connect to host chikatomo-ryugaku.com: did not receive HSTS header chikory.com: could not connect to host childcaresolutionscny.org: did not receive HSTS header childrendeservebetter.org: did not receive HSTS header -chilli943.info: could not connect to host +childrens-room.com: did not receive HSTS header +chilli943.info: did not receive HSTS header chimparoo.ca: did not receive HSTS header china-dhl.org: could not connect to host china-line.org: could not connect to host @@ -2753,11 +2896,13 @@ chloeallison.co.uk: could not connect to host chloehorler.com: could not connect to host chlouis.net: could not connect to host chm.vn: did not receive HSTS header +chmielarz.it: could not connect to host chocolat-suisse.ch: could not connect to host chodobien.com: could not connect to host chodocu.com: did not receive HSTS header choe.fi: could not connect to host choiralberta.ca: did not receive HSTS header +chonghe.org: did not receive HSTS header chontalpa.pw: could not connect to host chopperforums.com: could not connect to host chordso.com: did not receive HSTS header @@ -2766,6 +2911,8 @@ choruscrowd.com: could not connect to host chotu.net: could not connect to host chris-web.info: could not connect to host chrisandsarahinasia.com: could not connect to host +chrisb.me: did not receive HSTS header +chrisb.xyz: did not receive HSTS header chrisbrakebill.com: did not receive HSTS header chrisbrown.id.au: could not connect to host chrisebert.net: could not connect to host @@ -2780,7 +2927,7 @@ christianbro.gq: could not connect to host christianhoffmann.info: could not connect to host christianhospitaltank.org: did not receive HSTS header christiansayswords.com: could not connect to host -christianscholz.eu: could not connect to host +christianscholz.eu: did not receive HSTS header christina-quast.de: did not receive HSTS header christophebarbezat.ch: could not connect to host christophercolumbusfoundation.gov: could not connect to host @@ -2789,6 +2936,7 @@ christophheich.me: did not receive HSTS header chrisupjohn.com: could not connect to host chrisupjohn.xyz: could not connect to host chrisvicmall.com: did not receive HSTS header +chriswbarry.com: did not receive HSTS header chromaryu.net: could not connect to host chromaxa.com: could not connect to host chrome: could not connect to host @@ -2800,7 +2948,7 @@ chrst.ph: could not connect to host chs.us: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no] chsh.moe: could not connect to host chua.cf: could not connect to host -chua.family: could not connect to host +chua.family: did not receive HSTS header chuckame.fr: did not receive HSTS header chulado.com: did not receive HSTS header chundelac.com: could not connect to host @@ -2809,11 +2957,11 @@ churchwebcanada.ca: did not receive HSTS header churchwebsupport.com: did not receive HSTS header churrasqueirafacil.com.br: could not connect to host ci-labo.com.tw: max-age too low: 7889238 +ci-suite.com: could not connect to host cianmawhinney.xyz: could not connect to host cidadedopoker.com.br: did not receive HSTS header ciderclub.com: could not connect to host cidr.ml: could not connect to host -cielly.com: could not connect to host cienbeaute-lidl.fr: could not connect to host cigarblogs.net: could not connect to host cigarterminal.com: could not connect to host @@ -2823,6 +2971,7 @@ cim2b.de: could not connect to host cimalando.eu: could not connect to host cinartelorgu.com: did not receive HSTS header cinefilia.tk: could not connect to host +cinelite.club: could not connect to host cinema5.ru: did not receive HSTS header cinemaclub.co: could not connect to host cinerama.com.br: did not receive HSTS header @@ -2830,20 +2979,23 @@ cintdirect.com: could not connect to host cioconference.co.nz: did not receive HSTS header cipher.co.th: did not receive HSTS header cipher.land: could not connect to host +cipherboy.com: could not connect to host cipherli.st: did not receive HSTS header ciplanutrition.com: could not connect to host cipriano.nl: did not receive HSTS header cira.email: could not connect to host circ-logic.com: did not receive HSTS header circlebox.rocks: could not connect to host -cirrohost.com: could not connect to host +cirrohost.com: did not receive HSTS header ciscohomeanalytics.com: could not connect to host ciscommerce.net: could not connect to host citiagent.cz: could not connect to host citra-emu.org: did not receive HSTS header citroner.blog: could not connect to host citybusexpress.com: did not receive HSTS header +cityofeastpointemi.gov: could not connect to host cityoflaurel.org: did not receive HSTS header +cityofwadley-ga.gov: could not connect to host citywalkr.com: could not connect to host ciuciucadou.ro: could not connect to host cium.ru: could not connect to host @@ -2881,7 +3033,7 @@ cleanstar.org: could not connect to host clear.ml: could not connect to host clearc.tk: could not connect to host clearchatsandbox.com: could not connect to host -clearsky.me: could not connect to host +clearsky.me: did not receive HSTS header clearviewwealthprojector.com.au: could not connect to host clemovementlaw.com: could not connect to host clerkendweller.uk: could not connect to host @@ -2894,6 +3046,7 @@ click2order.co.uk: did not receive HSTS header clickandgo.com: did not receive HSTS header clickandshoot.nl: could not connect to host clickclickphish.com: did not receive HSTS header +clickforclever.com: did not receive HSTS header clickgram.biz: could not connect to host clickomobile.com: did not receive HSTS header clicks.co.za: max-age too low: 1800 @@ -2905,6 +3058,7 @@ clinia.ca: did not receive HSTS header clinicaferrusbratos.com: did not receive HSTS header clinicasilos.com: did not receive HSTS header cliniko.com: did not receive HSTS header +cliniquecomplementaire.com: could not connect to host clintonbloodworth.com: could not connect to host clintonbloodworth.io: could not connect to host clintwilson.technology: max-age too low: 2592000 @@ -2923,12 +3077,12 @@ cloudbased.info: did not receive HSTS header cloudbasedsite.com: did not receive HSTS header cloudberlin.goip.de: could not connect to host cloudbleed.info: could not connect to host -cloudbolin.es: could not connect to host cloudcert.org: did not receive HSTS header cloudcy.net: could not connect to host clouddesktop.co.nz: could not connect to host cloudfren.com: did not receive HSTS header cloudimag.es: could not connect to host +cloudimproved.com: could not connect to host cloudimprovedtest.com: could not connect to host cloudlink.club: could not connect to host cloudmigrator365.com: did not receive HSTS header @@ -2971,7 +3125,7 @@ cmdtelecom.net.br: did not receive HSTS header cmitao.com: could not connect to host cmpr.es: could not connect to host cmrss.com: could not connect to host -cms-weble.jp: did not receive HSTS header +cms-weble.jp: could not connect to host cmsbattle.com: could not connect to host cmscafe.ru: did not receive HSTS header cmskh.co.uk: could not connect to host @@ -2989,12 +3143,13 @@ cnwage.com: could not connect to host cnwarn.com: could not connect to host co-driversphoto.se: did not receive HSTS header co-yutaka.com: could not connect to host -coach-sportif.paris: could not connect to host +coach-sportif.paris: did not receive HSTS header coachingconsultancy.com: did not receive HSTS header +coam.co: could not connect to host coathangerstrangla.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no] coathangerstrangler.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no] -coatl-industries.com: could not connect to host cobaltlp.com: could not connect to host +cobcode.com: could not connect to host cobrax.net: could not connect to host coccinellaskitchen.com: could not connect to host coccinellaskitchen.de: could not connect to host @@ -3008,7 +3163,7 @@ coco-cool.fr: could not connect to host cocodemy.com: did not receive HSTS header cocolovesdaddy.com: could not connect to host codabix.com: did not receive HSTS header -codabix.de: could not connect to host +codabix.de: did not receive HSTS header codabix.net: could not connect to host code-35.com: could not connect to host code-digsite.com: could not connect to host @@ -3019,7 +3174,7 @@ codeco.pw: could not connect to host codecontrollers.de: could not connect to host codedelarouteenligne.fr: did not receive HSTS header codeforce.io: could not connect to host -codeforhakodate.org: could not connect to host +codeforhakodate.org: did not receive HSTS header codelayer.ca: could not connect to host codelitmus.com: did not receive HSTS header codeloop.pw: could not connect to host @@ -3032,6 +3187,7 @@ codeplay.org: could not connect to host codepoet.de: did not receive HSTS header codeproxy.ddns.net: could not connect to host codepx.com: did not receive HSTS header +codercy.com: could not connect to host coderhangout.com: could not connect to host codewiththepros.org: could not connect to host codewiz.xyz: could not connect to host @@ -3043,10 +3199,11 @@ coffeestrategies.com: max-age too low: 5184000 cogniflex.com: did not receive HSTS header cogumelosmagicos.org: could not connect to host cohesive.io: did not receive HSTS header -coimmvest.com: could not connect to host coin-exchange.cz: could not connect to host coindam.com: could not connect to host +coinessa.com: could not connect to host colarelli.ch: could not connect to host +coldaddy.com: could not connect to host coldlostsick.net: could not connect to host coldwatericecream.com: did not receive HSTS header colearnr.com: could not connect to host @@ -3069,16 +3226,15 @@ coloradocomputernetworking.net: could not connect to host colorcentertoner.com.br: did not receive HSTS header coloringnotebook.com: could not connect to host colorlib.com: did not receive HSTS header -colorlifesupport.com: max-age too low: 0 colorunhas.com.br: did not receive HSTS header -coltonrb.com: could not connect to host com.cc: could not connect to host combatshield.cz: did not receive HSTS header comchezmeme.com: could not connect to host comdotgame.com: could not connect to host -comefollowme2016.com: did not receive HSTS header +comefollowme2016.com: could not connect to host comeoncolleen.com: did not receive HSTS header comercialtrading.eu: could not connect to host +cometonovascotia.ca: could not connect to host cometrueunlimited.com: could not connect to host comfortdom.ua: did not receive HSTS header comfortticket.de: did not receive HSTS header @@ -3100,6 +3256,7 @@ comocurarlagastritis24.online: did not receive HSTS header comocurarlashemorroides.org: could not connect to host comocurarlashemorroidesya.com: did not receive HSTS header comoimportar.net: did not receive HSTS header +comorecuperaratumujerpdf.com: could not connect to host comosecarabarriga.net: did not receive HSTS header comoseduzir.net: did not receive HSTS header comotalk.com: could not connect to host @@ -3113,7 +3270,6 @@ compiledworks.com: could not connect to host completesportperformance.com: did not receive HSTS header completionist.audio: could not connect to host complex-organization.com: could not connect to host -compliance-systeme.de: could not connect to host complt.xyz: could not connect to host complymd.com: did not receive HSTS header compredietlight.com.br: did not receive HSTS header @@ -3135,26 +3291,31 @@ concord-group.co.jp: did not receive HSTS header concretehermit.com: did not receive HSTS header conectalmeria.com: did not receive HSTS header confirm365.com: could not connect to host +conflux.tw: could not connect to host conformal.com: could not connect to host congz.me: could not connect to host conkret.ch: could not connect to host conkret.co.uk: could not connect to host conkret.eu: could not connect to host conkret.in: did not receive HSTS header +conkret.mobi: could not connect to host connaitre-les-astres.com: did not receive HSTS header connect.ua: could not connect to host connected-verhuurservice.nl: did not receive HSTS header connectfss.com: could not connect to host connectingconcepts.com: did not receive HSTS header +conniesacademy.com: could not connect to host +connorsmith.co: could not connect to host conrad.am: could not connect to host consciousandglamorous.com: could not connect to host consciousbrand.org.au: could not connect to host consciousbranding.org.au: could not connect to host consciousbrands.net.au: could not connect to host +conseil-gli.fr: did not receive HSTS header consejosdehogar.com: did not receive HSTS header console.python.org: did not receive HSTS header console.support: did not receive HSTS header -construct-trust.com: could not connect to host +construct-trust.com: did not receive HSTS header constructive.men: could not connect to host consultcelerity.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no] consultingroupitaly.com: did not receive HSTS header @@ -3166,6 +3327,7 @@ contaimo.com: did not receive HSTS header container-lion.com: did not receive HSTS header containerstatistics.com: could not connect to host contarkos.xyz: could not connect to host +contents.ga: did not receive HSTS header continuation.io: could not connect to host continuumgaming.com: could not connect to host contraout.com: could not connect to host @@ -3175,10 +3337,12 @@ convertimg.com: could not connect to host convoitises.com: did not receive HSTS header cooink.net: could not connect to host cookiestudies.cf: could not connect to host +cookingbazart.com: did not receive HSTS header coolaj86.com: did not receive HSTS header coolbutbroken.com: did not receive HSTS header coolchevy.org.ua: did not receive HSTS header coole-meister.de: could not connect to host +coolerssr.space: could not connect to host cooljs.me: could not connect to host coolkidsbouncycastles.co.uk: did not receive HSTS header coolvox.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no] @@ -3187,6 +3351,7 @@ cooxa.com: could not connect to host copshop.com.br: could not connect to host coptic-treasures.com: max-age too low: 2592000 copycaught.com: could not connect to host +copytrack.com: did not receive HSTS header cor-ser.es: could not connect to host coralproject.net: did not receive HSTS header coralrosado.com.br: did not receive HSTS header @@ -3232,8 +3397,10 @@ cougarsland.com: did not receive HSTS header coughlan.de: did not receive HSTS header counselling.network: could not connect to host count.sh: could not connect to host +countryoutlaws.ca: did not receive HSTS header coup-dun-soir.ch: could not connect to host couponcodeq.com: could not connect to host +cour4g3.me: could not connect to host couragewhispers.ca: could not connect to host coursdeprogrammation.com: could not connect to host course.pp.ua: did not receive HSTS header @@ -3251,6 +3418,7 @@ cozy.io: did not receive HSTS header cozycloud.cc: did not receive HSTS header cpaneltips.com: could not connect to host cpbanq.com: could not connect to host +cptoon.com: could not connect to host cpuvinf.eu.org: could not connect to host cqchome.com: did not receive HSTS header cracking.org: did not receive HSTS header @@ -3273,7 +3441,7 @@ crate.io: did not receive HSTS header cravelyrics.com: could not connect to host crazifyngers.com: could not connect to host crazy-crawler.de: did not receive HSTS header -crazycen.com: did not receive HSTS header +crazycen.com: could not connect to host crazycraftland.de: did not receive HSTS header crazycraftland.net: did not receive HSTS header crazyfamily11.de: did not receive HSTS header @@ -3284,10 +3452,10 @@ creaescola.com: did not receive HSTS header creamybuild.com: could not connect to host create-ls.jp: could not connect to host create-test-publish.co.uk: could not connect to host -creative-coder.de: did not receive HSTS header creativeapple.ltd: did not receive HSTS header creativeartifice.com: did not receive HSTS header creativecommonscatpictures.com: could not connect to host +creativefolks.co.uk: did not receive HSTS header creativephysics.ml: could not connect to host creativeplayuk.com: did not receive HSTS header creato.top: could not connect to host @@ -3304,6 +3472,7 @@ crge.eu: max-age too low: 0 crimewatch.net.za: could not connect to host crisissurvivalspecialists.com: could not connect to host cristianhares.com: could not connect to host +critcola.com: could not connect to host criticalaim.com: could not connect to host crizk.com: could not connect to host crl-autos.com: could not connect to host @@ -3312,16 +3481,17 @@ crockett.io: did not receive HSTS header croco.vision: did not receive HSTS header croeder.net: could not connect to host croisieres.discount: did not receive HSTS header +cromosomax.com: could not connect to host croods-mt2.fr: did not receive HSTS header croome.no-ip.org: could not connect to host crop-alert.com: could not connect to host crosbug.com: did not receive HSTS header (error ignored - included regardless) crosspeakoms.com: did not receive HSTS header crosssec.com: did not receive HSTS header -crow.tw: could not connect to host crowd.supply: did not receive HSTS header crowdcurity.com: did not receive HSTS header crowdjuris.com: could not connect to host +crowdwis.com: could not connect to host crownbouncycastlehire.co.uk: did not receive HSTS header crownruler.com: did not receive HSTS header crox.co: could not connect to host @@ -3337,17 +3507,15 @@ cruzr.xyz: could not connect to host crypalert.com: could not connect to host crypt.guru: did not receive HSTS header cryptify.eu: could not connect to host +crypto-armory.com: could not connect to host cryptobells.com: did not receive HSTS header cryptobin.org: could not connect to host cryptocaseproject.com: could not connect to host cryptodash.net: could not connect to host -cryptoegg.ca: could not connect to host -cryptofrog.co: could not connect to host cryptoisnotacrime.org: could not connect to host cryptojar.io: could not connect to host -cryptojourney.com: did not receive HSTS header cryptolab.pro: could not connect to host -cryptolab.tk: could not connect to host +cryptolab.tk: did not receive HSTS header cryptoparty.dk: could not connect to host cryptopartyatx.org: could not connect to host cryptopartynewcastle.org: could not connect to host @@ -3364,14 +3532,13 @@ cscau.com: did not receive HSTS header csehnyelv.hu: could not connect to host cselzer.com: did not receive HSTS header cser.me: could not connect to host -csfcloud.com: did not receive HSTS header csfs.org.uk: could not connect to host csgf.ru: did not receive HSTS header csgo.help: could not connect to host csgo77.com: could not connect to host csgodicegame.com: could not connect to host csgoelemental.com: could not connect to host -csgogamers.com: could not connect to host +csgogamers.com: did not receive HSTS header csgohandouts.com: did not receive HSTS header csgokings.eu: could not connect to host csgoshifter.com: could not connect to host @@ -3385,6 +3552,7 @@ csvape.com: did not receive HSTS header cswarzone.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no] ct-status.org: could not connect to host ct-watches.dk: did not receive HSTS header +ctliu.com: could not connect to host ctrl.blog: did not receive HSTS header ctyi.me: did not receive HSTS header cuanhua3s.com: did not receive HSTS header @@ -3401,11 +3569,13 @@ cujanovic.com: did not receive HSTS header cujba.com: could not connect to host culinae.nl: could not connect to host culture-school.top: did not receive HSTS header +cultureelbeleggen.nl: did not receive HSTS header cumparama.com: did not receive HSTS header cumshots-video.ru: could not connect to host cunha.be: could not connect to host cuni-cuni-club.com: did not receive HSTS header -cuni-rec.com: could not connect to host +cuni-rec.com: did not receive HSTS header +cuntflaps.me: could not connect to host cuongquach.com: did not receive HSTS header cuongthach.com: did not receive HSTS header cuonic.com: could not connect to host @@ -3437,9 +3607,8 @@ cvsoftub.com: did not receive HSTS header cvtparking.co.uk: did not receive HSTS header cw-bw.de: could not connect to host cwage.com: could not connect to host -cwbw.network: could not connect to host +cwbw.network: did not receive HSTS header cwilson.ga: could not connect to host -cwningen.cymru: could not connect to host cy.technology: did not receive HSTS header cyanogenmod.xxx: could not connect to host cybbh.space: could not connect to host @@ -3449,40 +3618,41 @@ cyber-perikarp.eu: did not receive HSTS header cybercecurity.com: did not receive HSTS header cybercloud.cc: did not receive HSTS header cyberdos.de: did not receive HSTS header +cyberdyne-industries.net: could not connect to host cyberlab.kiev.ua: did not receive HSTS header cyberlab.team: did not receive HSTS header cyberpeace.nl: could not connect to host cyberprey.com: did not receive HSTS header cyberpunk.ca: could not connect to host -cyberscan.io: did not receive HSTS header +cybersantri.com: could not connect to host cyberserver.org: could not connect to host cybershambles.com: could not connect to host cyberspace.today: could not connect to host -cybit.io: did not receive HSTS header cyclehackluxembourgcity.lu: could not connect to host cyclingjunkies.com: could not connect to host cydia-search.io: could not connect to host cyelint.com: could not connect to host -cygu.ch: did not receive HSTS header +cygu.ch: could not connect to host cymtech.net: could not connect to host cynoshair.com: could not connect to host cyoda.com: did not receive HSTS header -cype.dedyn.io: could not connect to host +cypherpunk.com: could not connect to host cypherpunk.ws: could not connect to host cyphertite.com: could not connect to host cypressinheritancesaga.com: could not connect to host cytadel.fr: did not receive HSTS header -cytegic-update-packages.com: could not connect to host czaw.org: did not receive HSTS header czirnich.org: did not receive HSTS header czlx.co: could not connect to host d-academia.com: did not receive HSTS header d-macindustries.com: did not receive HSTS header d-rickroll-e.pw: could not connect to host +d-toys.com.ua: could not connect to host d00r.de: did not receive HSTS header d0xq.net: could not connect to host d1ves.io: did not receive HSTS header d3x.pw: could not connect to host +d4rkdeagle.tk: could not connect to host d4wson.com: could not connect to host d8studio.net: could not connect to host da8.cc: could not connect to host @@ -3508,13 +3678,12 @@ dalfiume.it: did not receive HSTS header dalingk.co: could not connect to host daltonedwards.me: could not connect to host dam74.com.ar: could not connect to host -damedrogy.cz: could not connect to host damianuv-blog.cz: did not receive HSTS header damjanovic.work: could not connect to host +dan.org.nz: could not connect to host danbarrett.com.au: could not connect to host dancebuzz.co.uk: did not receive HSTS header dancerdates.net: did not receive HSTS header -dandenongroadapartments.com.au: did not receive HSTS header dandymrsb.com: could not connect to host dane-bre.net: max-age too low: 172800 dango.in: could not connect to host @@ -3525,9 +3694,12 @@ daniel-steuer.de: could not connect to host danielcowie.me: could not connect to host danieldk.eu: did not receive HSTS header danielgraziano.ca: could not connect to host +danielheal.net: could not connect to host danieliancu.com: could not connect to host danielkratz.com: max-age too low: 172800 -danielsteiner.net: could not connect to host +danielmarquard.com: could not connect to host +danielt.co.uk: could not connect to host +danielthompson.info: could not connect to host danielverlaan.nl: could not connect to host danielworthy.com: did not receive HSTS header danielzuzevich.com: could not connect to host @@ -3536,16 +3708,19 @@ danishenanigans.com: could not connect to host dankeblog.com: could not connect to host danmark.guide: did not receive HSTS header dannycrichton.com: did not receive HSTS header +danova.de: did not receive HSTS header danrl.de: could not connect to host -dansa.com.co: did not receive HSTS header +dansage.co: could not connect to host danskringsporta.be: did not receive HSTS header danwillenberg.com: did not receive HSTS header daolerp.xyz: could not connect to host dargasia.is: could not connect to host +darinjohnson.ca: did not receive HSTS header dario.im: did not receive HSTS header dariosirangelo.me: did not receive HSTS header dark-x.cf: could not connect to host -darkanzali.pl: could not connect to host +dark.ninja: could not connect to host +darkanzali.pl: max-age too low: 0 darkdestiny.ch: could not connect to host darkfriday.ddns.net: could not connect to host darkhole.cn: could not connect to host @@ -3557,6 +3732,7 @@ darkpony.ru: could not connect to host darksideof.it: could not connect to host darkstance.org: could not connect to host darktree.in: could not connect to host +darkwebkittens.xyz: could not connect to host darlastudio66.com: did not receive HSTS header darlo.co.uk: could not connect to host darrenellis.xyz: could not connect to host @@ -3571,7 +3747,11 @@ data-abundance.com: could not connect to host data-detox.com: could not connect to host data.haus: could not connect to host data.qld.gov.au: did not receive HSTS header +databeam.de: could not connect to host datacave.is: could not connect to host +datacenternews.asia: did not receive HSTS header +datacenternews.co.nz: did not receive HSTS header +datacentrenews.eu: did not receive HSTS header datacubed.com: did not receive HSTS header datafd.com: could not connect to host datafd.net: could not connect to host @@ -3586,7 +3766,7 @@ datasnitch.co.uk: could not connect to host datatekniikka.com: could not connect to host datedeposit.com: could not connect to host datengrab.ws: could not connect to host -datenlast.de: could not connect to host +datenlast.de: did not receive HSTS header datenreiter.cf: could not connect to host datenreiter.gq: could not connect to host datenreiter.ml: could not connect to host @@ -3595,7 +3775,7 @@ datenschutzhelden.org: could not connect to host datine.com.br: could not connect to host datorb.com: could not connect to host datortipsen.se: did not receive HSTS header -datsound.ru: could not connect to host +datsound.ru: did not receive HSTS header datsumou-q.com: did not receive HSTS header daverandom.com: could not connect to host davidandkailey.com: could not connect to host @@ -3608,6 +3788,7 @@ davidlillo.com: could not connect to host davidnoren.com: did not receive HSTS header davidreinhardt.de: could not connect to host davidscherzer.at: could not connect to host +davimun.org: could not connect to host davros.eu: could not connect to host davros.ru: could not connect to host daw.nz: could not connect to host @@ -3619,7 +3800,7 @@ daylightcompany.com: did not receive HSTS header days.one: could not connect to host daytonaseaside.com: did not receive HSTS header db.gy: could not connect to host -dbjc.duckdns.org: did not receive HSTS header +dbjc.duckdns.org: could not connect to host dblx.io: could not connect to host dbox.ga: could not connect to host dbpmedia.se: did not receive HSTS header @@ -3643,10 +3824,8 @@ ddocu.me: did not receive HSTS header ddos-mitigation.co.uk: could not connect to host ddos-mitigation.info: could not connect to host de-servers.de: could not connect to host -de-spil.be: could not connect to host deadmann.com: could not connect to host deadsoul.net: could not connect to host -deanjerkovich.com: could not connect to host debank.tv: did not receive HSTS header debatch.se: could not connect to host debian-vhost.de: could not connect to host @@ -3659,8 +3838,8 @@ debtprotectionreporting.com: did not receive HSTS header decafu.co: could not connect to host decentralizedweb.net: did not receive HSTS header decesus.com: could not connect to host -decibelios.li: max-age too low: 0 -decloverly.com: did not receive HSTS header +decibelios.li: could not connect to host +decloverly.com: could not connect to host deco.me: could not connect to host decoboutique.com: did not receive HSTS header decofire.pl: did not receive HSTS header @@ -3671,10 +3850,12 @@ decorincasa.com.br: could not connect to host decorland.com.ua: could not connect to host decormiernissanparts.com: could not connect to host decoyrouting.com: could not connect to host -dedeo.tk: did not receive HSTS header +dedeo.tk: could not connect to host dedicatutiempo.es: could not connect to host dedietrich-asia.com: could not connect to host deep.club: could not connect to host +deep.social: did not receive HSTS header +deeparamaraj.com: did not receive HSTS header deepcovelabs.net: could not connect to host deepcreampie.com: could not connect to host deepearth.uk: could not connect to host @@ -3685,9 +3866,9 @@ deeps.cat: could not connect to host deeps.me: did not receive HSTS header deepvalley.tech: could not connect to host deepvision.com.ua: did not receive HSTS header +deer.team: could not connect to host deetz.nl: did not receive HSTS header deetzen.de: did not receive HSTS header -def-pos.ru: could not connect to host defi-metier.com: did not receive HSTS header defi-metier.fr: did not receive HSTS header defi-metier.org: could not connect to host @@ -3713,12 +3894,15 @@ deltaconcepts.de: could not connect to host delvj.org: could not connect to host demandware.com: did not receive HSTS header demarche-expresse.com: did not receive HSTS header +demarle.ch: could not connect to host demdis.org: could not connect to host demilitarized.ninja: could not connect to host demo-server.us: could not connect to host demo.sb: could not connect to host +demo.swedbank.se: did not receive HSTS header +demo9.ovh: did not receive HSTS header democracy.io: did not receive HSTS header -democraticdifference.com: did not receive HSTS header +democraticdifference.com: could not connect to host demomanca.com: did not receive HSTS header demotops.com: could not connect to host denh.am: did not receive HSTS header @@ -3733,6 +3917,7 @@ denverphilharmonic.org: did not receive HSTS header denverprophit.us: did not receive HSTS header depaco.com: did not receive HSTS header deped.blog: could not connect to host +depedshs.com: could not connect to host depedtayo.ph: could not connect to host depijl-mz.nl: did not receive HSTS header depixion.agency: could not connect to host @@ -3744,7 +3929,7 @@ derbyshiredotnet.co.uk: did not receive HSTS header derchris.me: could not connect to host derekseaman.com: did not receive HSTS header derekseaman.studio: did not receive HSTS header -derevtsov.com: could not connect to host +derevtsov.com: did not receive HSTS header derivativeshub.pro: could not connect to host derive.cc: could not connect to host dermacarecomplex.com: could not connect to host @@ -3764,7 +3949,7 @@ despotika.de: could not connect to host desserteagleselvenar.tk: could not connect to host destinationbijoux.fr: could not connect to host destom.be: could not connect to host -desuperheroes.co: could not connect to host +desveja.com.br: could not connect to host detalhecomercio.com.br: could not connect to host detechnologiecooperatie.nl: did not receive HSTS header detecte-fuite.ch: could not connect to host @@ -3776,7 +3961,6 @@ dethikiemtra.com: did not receive HSTS header detroitrocs.org: did not receive HSTS header detteflies.com: max-age too low: 7889238 detutorial.com: max-age too low: 36000 -deuchnord.fr: could not connect to host deusu.de: could not connect to host deusu.org: could not connect to host deux.solutions: could not connect to host @@ -3792,19 +3976,19 @@ dev-talk.net: did not receive HSTS header devafterdark.com: could not connect to host devdesco.com: could not connect to host devdom.io: max-age too low: 172800 +develop.cool: did not receive HSTS header develop.fitness: could not connect to host developermail.io: did not receive HSTS header developersclub.website: could not connect to host developyourelement.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no] devh.de: could not connect to host -deviltraxxx.de: could not connect to host devin-balimuhac.de: did not receive HSTS header devincrow.me: could not connect to host devinpacker.com: could not connect to host devisonline.ch: could not connect to host devistravaux.org: did not receive HSTS header devlux.ch: did not receive HSTS header -devmsg.com: did not receive HSTS header +devmsg.com: could not connect to host devnsec.com: could not connect to host devnull.team: could not connect to host devopps.me: did not receive HSTS header @@ -3813,10 +3997,8 @@ devopsconnected.com: could not connect to host devtestfan1.gov: could not connect to host devtub.com: could not connect to host devuan.org: did not receive HSTS header -dewebwerf.nl: did not receive HSTS header dewin.io: could not connect to host dfixit.com: could not connect to host -dfl.mn: could not connect to host dfrance.com.br: did not receive HSTS header dfviana.com.br: max-age too low: 2592000 dgby.org: did not receive HSTS header @@ -3850,7 +4032,6 @@ dicio.com.br: did not receive HSTS header dicionariofinanceiro.com: did not receive HSTS header dicionariopopular.com: did not receive HSTS header dick.red: could not connect to host -dickpics.ru: could not connect to host didierlaumen.be: did not receive HSTS header die-besten-weisheiten.de: could not connect to host die-gruenen-teufel.de: could not connect to host @@ -3868,7 +4049,6 @@ diggable.co: max-age too low: 2592000 digihyp.ch: could not connect to host digikol.net: could not connect to host diginota.com: did not receive HSTS header -digioccumss.ddns.net: could not connect to host digired.xyz: could not connect to host digital1world.com: did not receive HSTS header digitalbank.kz: could not connect to host @@ -3878,7 +4058,7 @@ digitaldaddy.net: did not receive HSTS header digitalero.rip: did not receive HSTS header digitalewelten.de: could not connect to host digitalexhale.com: did not receive HSTS header -digitalhurricane.io: did not receive HSTS header +digitalhurricane.io: could not connect to host digitalimpostor.co.uk: could not connect to host digitaljungle.net: could not connect to host digitallocker.com: did not receive HSTS header @@ -3902,6 +4082,7 @@ dinamoelektrik.com: could not connect to host dingcc.com: could not connect to host dingcc.org: could not connect to host dingcc.xyz: could not connect to host +dinge.xyz: could not connect to host dingelbob-schuhcreme.gq: could not connect to host dingss.com: could not connect to host dinheirolucrar.com: did not receive HSTS header @@ -3937,7 +4118,6 @@ discovery.lookout.com: did not receive HSTS header discoveryballoon.org: could not connect to host disking.co.uk: did not receive HSTS header dislocated.de: did not receive HSTS header -dismail.de: did not receive HSTS header disorderboutique.com: did not receive HSTS header disruptivelabs.net: could not connect to host disruptivelabs.org: could not connect to host @@ -3945,7 +4125,7 @@ dissieux.com: did not receive HSTS header dissimulo.me: could not connect to host distinctivephotography.com.au: could not connect to host distinguishedwindows.co.uk: did not receive HSTS header -distractionco.de: could not connect to host +distractionco.de: did not receive HSTS header distrilogservices.com: could not connect to host ditch.ch: could not connect to host ditrutoancau.vn: could not connect to host @@ -3955,7 +4135,6 @@ divegearexpress.com.cn: did not receive HSTS header diversity-spielzeug.de: did not receive HSTS header divvi.co.nz: did not receive HSTS header divvyradio.com: did not receive HSTS header -diwei.vip: did not receive HSTS header dixiediner.com: did not receive HSTS header dixmag.com: could not connect to host diz.in.ua: did not receive HSTS header @@ -3970,9 +4149,9 @@ dl.google.com: did not receive HSTS header (error ignored - included regardless) dlbouncers.co.uk: could not connect to host dlc.viasinc.com: could not connect to host dlemper.de: did not receive HSTS header -dlouwrink.nl: could not connect to host dlyl888.com: could not connect to host dmarketer.com: did not receive HSTS header +dmcastles.com: did not receive HSTS header dmcglobaltravel.com.mx: did not receive HSTS header dmcibulldog.com: did not receive HSTS header dmdre.com: did not receive HSTS header @@ -3980,7 +4159,6 @@ dmenergy.ru: did not receive HSTS header dmfd.net: could not connect to host dmix.ca: could not connect to host dmlogic.com: could not connect to host -dmmkenya.co.ke: could not connect to host dmtry.me: did not receive HSTS header dmwall.cn: could not connect to host dmz.ninja: could not connect to host @@ -3988,18 +4166,18 @@ dnmaze.com: could not connect to host dns.google.com: did not receive HSTS header (error ignored - included regardless) dnsbird.net: could not connect to host dnsbird.org: could not connect to host -dnscrypt.nl: could not connect to host dnscrypt.org: max-age too low: 0 dnsknowledge.com: did not receive HSTS header dnsql.io: could not connect to host do-do.tk: could not connect to host +do-it.cz: could not connect to host doak.io: did not receive HSTS header dobet.in: could not connect to host -dobsnet.net: could not connect to host doc-justice.com: did not receive HSTS header docid.io: could not connect to host dockerturkiye.com: could not connect to host docket.news: could not connect to host +doclassworks.com: could not connect to host doclot.io: could not connect to host docplexus.in: did not receive HSTS header docset.io: could not connect to host @@ -4019,6 +4197,7 @@ dogprograms.net: could not connect to host dohosting.ru: could not connect to host dojifish.space: could not connect to host dojin.nagoya: could not connect to host +dokan-e.com: could not connect to host dokan.online: did not receive HSTS header doked.io: could not connect to host dolarcanadense.com.br: could not connect to host @@ -4046,13 +4225,12 @@ dong8.top: could not connect to host donhoward.org: did not receive HSTS header donmez.uk: could not connect to host donmez.ws: could not connect to host -donnoval.ru: could not connect to host +donner-reuschel.de: did not receive HSTS header donotcall.gov: did not receive HSTS header donotspampls.me: could not connect to host donotspellitgav.in: did not receive HSTS header donpaginasweb.com: did not receive HSTS header donthedragonwilson.com: could not connect to host -dontpayfull.com: did not receive HSTS header donttrustrobots.nl: could not connect to host donzelot.co.uk: did not receive HSTS header doobydude.us: could not connect to host @@ -4061,6 +4239,7 @@ doodlefinder.de: max-age too low: 600000 dooku.cz: could not connect to host doomleika.com: did not receive HSTS header doooonoooob.com: could not connect to host +door.cards: could not connect to host dopost.it: could not connect to host doriginal.es: did not receive HSTS header dorkfarm.com: did not receive HSTS header @@ -4068,12 +4247,12 @@ dormebebe.com.br: could not connect to host dosipe.com: could not connect to host doska.kz: could not connect to host dostavkakurierom.ru: could not connect to host -dotacni-parazit.cz: could not connect to host dotadata.me: could not connect to host dotb.dn.ua: did not receive HSTS header dotbrick.co.th: did not receive HSTS header dotkod.com: could not connect to host dotnetsandbox.ca: could not connect to host +dotrox.net: could not connect to host dotspaperie.com: could not connect to host doubleaste.com: did not receive HSTS header doublethink.online: could not connect to host @@ -4105,7 +4284,6 @@ dragons-of-highlands.cz: did not receive HSTS header dragonsmoke.cloud: could not connect to host dragonstower.net: could not connect to host dragonteam.ninja: could not connect to host -drahcro.uk: could not connect to host drainagebuizen.nl: did not receive HSTS header drakefortreasurer.sexy: could not connect to host drakensberg-tourism.com: did not receive HSTS header @@ -4122,6 +4300,7 @@ dreaming.solutions: could not connect to host dreamlighteyeserum.com: could not connect to host dreamof.net: could not connect to host dreamsforabetterworld.com.au: did not receive HSTS header +dreax.win: could not connect to host dredgepress.com: did not receive HSTS header dreischneidiger.de: could not connect to host dreizwosechs.de: could not connect to host @@ -4135,6 +4314,7 @@ drive.xyz: could not connect to host drivewithstatetransit.com.au: did not receive HSTS header driving-lessons.co.uk: could not connect to host drixn.cn: could not connect to host +drixn.com: could not connect to host drixn.info: could not connect to host drixn.net: could not connect to host drizz.com.br: could not connect to host @@ -4157,7 +4337,7 @@ droomhuis-in-zeeland-kopen.nl: could not connect to host droomhuis-in-zuid-holland-kopen.nl: could not connect to host droomhuisindestadverkopen.nl: could not connect to host droomhuisophetplattelandverkopen.nl: could not connect to host -dropcam.com: could not connect to host +dropcam.com: did not receive HSTS header drostschocolates.com: did not receive HSTS header drpure.pw: did not receive HSTS header drtroyhendrickson.com: could not connect to host @@ -4168,17 +4348,19 @@ drumbandesperanto.nl: could not connect to host drupal123.com: could not connect to host druznek.rocks: could not connect to host druznek.xyz: could not connect to host -dryan.com: did not receive HSTS header drybasement.com: did not receive HSTS header drybasementkansas.com: did not receive HSTS header drycreekapiary.com: could not connect to host ds-christiansen.de: could not connect to host dshiv.io: could not connect to host +dsne.com.mx: did not receive HSTS header dsouzamusic.com: could not connect to host +dstvinstallrandburg.co.za: did not receive HSTS header dsuinnovation.com: could not connect to host dsyunmall.com: could not connect to host dtp-mstdn.jp: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no] dtub.co: could not connect to host +dualascent.com: did not receive HSTS header duan.li: could not connect to host dubik.su: did not receive HSTS header duckyubuntu.tk: could not connect to host @@ -4194,19 +4376,20 @@ dukec.me: did not receive HSTS header dukefox.com: could not connect to host duks.com.br: did not receive HSTS header dullsir.com: did not receive HSTS header +dumbdemo.com: could not connect to host +dunamiscommunity.com: could not connect to host dunashoes.com: could not connect to host -dundalkdonnie.com: could not connect to host dune.io: did not receive HSTS header dunea.nl: did not receive HSTS header dung-massage.fr: did not receive HSTS header -dunklau.fr: could not connect to host duo.money: could not connect to host +duocircle.com: did not receive HSTS header duole30.com: could not connect to host duongpho.com: did not receive HSTS header durangoenergyllc.com: could not connect to host dushu.cat: could not connect to host duskopy.top: could not connect to host -dutchessuganda.com: did not receive HSTS header +dutchessuganda.com: could not connect to host dutchrank.com: did not receive HSTS header dutyfreeonboard.com: did not receive HSTS header duuu.ch: could not connect to host @@ -4216,12 +4399,10 @@ dwellstudio.com: did not receive HSTS header dwhd.org: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no] dwnld.me: could not connect to host dycem-ns.com: did not receive HSTS header -dycoa.com: did not receive HSTS header dycontrol.de: could not connect to host dylanscott.com.au: did not receive HSTS header dynamic-innovations.net: could not connect to host dynamic-networks.be: could not connect to host -dynamictostatic.com: could not connect to host dynamize.solutions: did not receive HSTS header dyncdn.me: could not connect to host dynts.pro: could not connect to host @@ -4232,6 +4413,7 @@ dzlibs.io: could not connect to host dzsibi.com: could not connect to host dzytdl.com: did not receive HSTS header e-aut.net: could not connect to host +e-baraxolka.ru: could not connect to host e-deca2.org: did not receive HSTS header e-isfa.eu: did not receive HSTS header e-mak.eu: could not connect to host @@ -4240,6 +4422,7 @@ e-newshub.com: could not connect to host e-pokupki.eu: did not receive HSTS header e-rickroll-r.pw: could not connect to host e-sa.com: did not receive HSTS header +e-speak24.pl: could not connect to host e-vau.de: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no] e-vo-linka.cz: did not receive HSTS header e-wishlist.net: could not connect to host @@ -4250,7 +4433,7 @@ e3amn2l.com: could not connect to host e3kids.com: did not receive HSTS header e3q.de: could not connect to host e505.net: did not receive HSTS header -e51888.com: could not connect to host +e51888.com: did not receive HSTS header eagle-aluminum.com: did not receive HSTS header eagle-yard.de: could not connect to host eagleridgecampground.com: could not connect to host @@ -4286,8 +4469,9 @@ ebiografias.com.br: could not connect to host ebolsa.com.br: did not receive HSTS header ebolsas.com.br: did not receive HSTS header ebooksgratuits.org: could not connect to host +ebop.ch: could not connect to host ebp2p.com: did not receive HSTS header -ebpglobal.com: did not receive HSTS header +ebpglobal.com: could not connect to host ebraph.com: could not connect to host ebrowz.com: could not connect to host ecake.in: could not connect to host @@ -4297,10 +4481,9 @@ ecfs.link: could not connect to host ecg.fr: could not connect to host echipstore.com: did not receive HSTS header echo.cc: could not connect to host +echoactive.com: could not connect to host echomanchester.net: could not connect to host -echoteen.com: did not receive HSTS header eckro.com: did not receive HSTS header -ecodedi.com: did not receive HSTS header ecole-en-danger.fr: could not connect to host ecole-iaf.fr: could not connect to host ecole-maternelle-saint-joseph.be: could not connect to host @@ -4309,7 +4492,7 @@ ecology-21.ru: did not receive HSTS header ecomlane.com: could not connect to host ecomparemo.com: did not receive HSTS header econativa.pt: could not connect to host -economy.st: did not receive HSTS header +economy.st: could not connect to host economycarrentalscyprus.com: could not connect to host ecorus.eu: did not receive HSTS header ecosoftconsult.com: could not connect to host @@ -4345,6 +4528,7 @@ eduardnikolenko.com: could not connect to host eduardnikolenko.ru: could not connect to host educaid.be: did not receive HSTS header educatio.tech: could not connect to host +educators.co.nz: did not receive HSTS header educatoys.com.br: could not connect to host educatweb.de: did not receive HSTS header educnum.fr: did not receive HSTS header @@ -4378,6 +4562,7 @@ efficienthealth.com: did not receive HSTS header effortlesshr.com: did not receive HSTS header efinity.io: did not receive HSTS header eftcorp.biz: max-age too low: 0 +egarden.it: did not receive HSTS header egfl.org.uk: did not receive HSTS header egge.com: max-age too low: 0 egit.co: could not connect to host @@ -4396,7 +4581,8 @@ eiga-movie.com: max-age too low: 0 eigenbubi.de: could not connect to host eightyfour.ca: could not connect to host eigo.work: could not connect to host -eimanavicius.lt: could not connect to host +eimanavicius.lt: did not receive HSTS header +einar.io: max-age too low: 86400 einfachmaldiefressehalten.de: could not connect to host einhorn.space: could not connect to host einmonolog.de: could not connect to host @@ -4405,6 +4591,7 @@ einsit.com: could not connect to host einsitapis.com: could not connect to host ejgconsultancy.co.uk: did not receive HSTS header ejusu.com: did not receive HSTS header +ek.network: could not connect to host ekbanden.nl: could not connect to host ekobudisantoso.net: could not connect to host ekong366.com: could not connect to host @@ -4415,7 +4602,9 @@ elan-organics.com: did not receive HSTS header elanguest.pl: could not connect to host elanguest.ro: could not connect to host elanguest.ru: could not connect to host +elastic7.uk: could not connect to host elaxy-online.de: could not connect to host +elbaal.gov: did not receive HSTS header elblein.de: did not receive HSTS header elderoost.com: could not connect to host elearningpilot.com: did not receive HSTS header @@ -4424,7 +4613,6 @@ electricalcontrolpanels.co.uk: could not connect to host electricant.com: did not receive HSTS header electricant.nl: did not receive HSTS header electriccitysf.com: could not connect to host -electricfencealberton.co.za: did not receive HSTS header electrician-umhlanga.co.za: did not receive HSTS header electricianforum.co.uk: did not receive HSTS header electricianumhlangarocks.co.za: did not receive HSTS header @@ -4445,31 +4633,36 @@ elenorsmadness.org: could not connect to host eleonorengland.com: did not receive HSTS header eletesstilus.hu: could not connect to host elevateandprosper.com: could not connect to host +elexel.ru: could not connect to host elgacien.de: could not connect to host elguillatun.cl: did not receive HSTS header elhall.pro: did not receive HSTS header elhall.ru: did not receive HSTS header -elia.cloud: could not connect to host elias-nicolas.com: could not connect to host eliasojala.me: did not receive HSTS header elimdengelen.com: did not receive HSTS header eliott.be: could not connect to host +elistor6100.xyz: did not receive HSTS header elite-box.com: did not receive HSTS header elite-box.org: did not receive HSTS header elite-porno.ru: could not connect to host elitecovering.fr: did not receive HSTS header elitefishtank.com: could not connect to host elitesensual.com.br: could not connect to host +elizeugomes.com.br: did not receive HSTS header ellen-skye.de: max-age too low: 604800 +elliff.net: did not receive HSTS header elliotgluck.com: did not receive HSTS header elliquiy.com: could not connect to host elmar-kraamzorg.nl: did not receive HSTS header elna-service.com.ua: did not receive HSTS header elnutricionista.es: could not connect to host +elo.fyi: could not connect to host elohna.ch: did not receive HSTS header elonbase.com: could not connect to host +elpado.de: could not connect to host elpay.kz: did not receive HSTS header -elpo.net: could not connect to host +elpo.net: did not receive HSTS header elpo.xyz: could not connect to host elsamakhin.com: could not connect to host elsemanario.com: did not receive HSTS header @@ -4479,25 +4672,26 @@ elsword.moe: could not connect to host eltransportquevolem.org: could not connect to host eltrox.me: could not connect to host elyisus.info: could not connect to host -elytronsecurity.com: could not connect to host +elytronsecurity.com: did not receive HSTS header email.lookout.com: could not connect to host email2rss.net: could not connect to host +emailcontrol.nl: did not receive HSTS header emanatepixels.com: could not connect to host emanga.su: did not receive HSTS header -emanuelduss.ch: did not receive HSTS header emavok.eu: could not connect to host embellir-aroma.com: could not connect to host embellir-kyujin.com: could not connect to host embracethedarkness.co.uk: could not connect to host embroidered-stuff.com: could not connect to host embudospro.net: did not receive HSTS header -emedworld.com: did not receive HSTS header emeldi-commerce.com: max-age too low: 0 +emergencyessay.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no] emergencymedicinefoundations.com: did not receive HSTS header emergentvisiontec.com: did not receive HSTS header emesolutions.net: did not receive HSTS header emiele.com.br: could not connect to host emilyhorsman.com: could not connect to host +emilyjohnson.ga: could not connect to host emilyshepherd.me: did not receive HSTS header eminhuseynov.com: could not connect to host eminovic.me: could not connect to host @@ -4522,6 +4716,7 @@ emporiovinareal.com.br: could not connect to host empty-r.com: could not connect to host emptypath.com: did not receive HSTS header emyself.info: could not connect to host +emyself.org: did not receive HSTS header en4u.org: could not connect to host enaia.fr: did not receive HSTS header encadrer-mon-enfant.com: did not receive HSTS header @@ -4550,7 +4745,6 @@ energethik-tulln.at: did not receive HSTS header enersaveapp.org: could not connect to host enersec.co.uk: could not connect to host enfoqueseguro.com: did not receive HSTS header -enginsight.com: did not receive HSTS header enginx.cn: could not connect to host englerts.de: did not receive HSTS header englishclub.com: did not receive HSTS header @@ -4566,6 +4760,8 @@ enlightened.si: could not connect to host enoou.com: could not connect to host enpalmademallorca.info: could not connect to host ensemble-vos-idees.fr: could not connect to host +enskat.de: could not connect to host +enskatson-sippe.de: could not connect to host entaurus.com: could not connect to host enteente.club: could not connect to host enteente.com: could not connect to host @@ -4573,8 +4769,10 @@ enteente.space: could not connect to host enteente.xyz: could not connect to host enterdev.co: did not receive HSTS header enterprisecarclub.co.uk: did not receive HSTS header +enterprisechannel.asia: did not receive HSTS header enterprivacy.com: did not receive HSTS header entersynapse.com: could not connect to host +entheorie.net: did not receive HSTS header entourneebeetle.com: could not connect to host entrepreneur.or.id: could not connect to host enum.eu.org: could not connect to host @@ -4584,6 +4782,7 @@ enviam.de: did not receive HSTS header enviapresentes.com.br: could not connect to host enviatufoto.com: max-age too low: 604800 environment.ai: could not connect to host +envoyglobal.com: did not receive HSTS header envoyworld.com: did not receive HSTS header envygeeks.com: could not connect to host eol34.com: could not connect to host @@ -4595,29 +4794,15 @@ ephe.be: could not connect to host ephry.com: could not connect to host epicmc.games: could not connect to host epitesz.co: did not receive HSTS header -epos-distributor.co.uk: could not connect to host -eposbirmingham.co.uk: could not connect to host -eposbrighton.co.uk: could not connect to host -eposbristol.co.uk: could not connect to host -eposcardiff.co.uk: could not connect to host eposcloud.net: could not connect to host -eposkent.co.uk: could not connect to host -eposleeds.co.uk: could not connect to host -eposleicester.co.uk: could not connect to host -eposliverpool.co.uk: could not connect to host -eposlondon.co.uk: could not connect to host eposmidlands.co.uk: could not connect to host eposnewport.co.uk: could not connect to host eposnottingham.co.uk: could not connect to host eposreading.co.uk: could not connect to host eposreview.co.uk: could not connect to host -epossheffield.co.uk: could not connect to host epossurrey.co.uk: could not connect to host epossussex.co.uk: could not connect to host -eposswansea.co.uk: could not connect to host -epossystems.co.uk: could not connect to host eposwales.co.uk: could not connect to host -eposyork.co.uk: could not connect to host epoxate.com: could not connect to host eprofitacademy.com: did not receive HSTS header eq8.net.au: could not connect to host @@ -4633,7 +4818,6 @@ equitee.co: did not receive HSTS header equityflows.com: did not receive HSTS header er-music.com: could not connect to host erad.fr: could not connect to host -erawanarifnugroho.com: did not receive HSTS header erclab.kr: could not connect to host erepublik-deutschland.de: did not receive HSTS header eressea.xyz: could not connect to host @@ -4645,13 +4829,11 @@ ericyl.com: did not receive HSTS header eriel.com.br: could not connect to host erikwagner.de: did not receive HSTS header erinlin.com: did not receive HSTS header -eriser.fr: could not connect to host -ernaehrungsberatung-rapperswil.ch: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no] +eriser.fr: did not receive HSTS header ernaehrungsberatung-zurich.ch: could not connect to host ernesto.at: could not connect to host eroimatome.com: could not connect to host eromixx.com: could not connect to host -eroskines.com: did not receive HSTS header erotalia.es: could not connect to host erotic4me.ch: did not receive HSTS header erotische-aanbiedingen.nl: could not connect to host @@ -4660,6 +4842,7 @@ errolz.com: did not receive HSTS header errors.zenpayroll.com: could not connect to host erspro.net: could not connect to host eru.me: did not receive HSTS header +erverydown.ml: could not connect to host erwinvanlonden.net: did not receive HSTS header es8888.net: could not connect to host es888999.com: could not connect to host @@ -4668,6 +4851,7 @@ esb111.com: could not connect to host esb111.net: could not connect to host esb112.com: could not connect to host esb112.net: could not connect to host +esb1314.net: could not connect to host esb1668.com: could not connect to host esb16888.com: could not connect to host esb17888.com: could not connect to host @@ -4714,6 +4898,7 @@ esn-ypci.com: did not receive HSTS header esocweb.com: could not connect to host esoterik.link: could not connect to host esp-berlin.de: could not connect to host +esp-desarrolladores.com: could not connect to host esp.community: did not receive HSTS header esp8285.store: could not connect to host espacemontmorency.com: did not receive HSTS header @@ -4725,6 +4910,7 @@ esprit-cloture.fr: did not receive HSTS header esquonic.com: could not connect to host esrs.gov: could not connect to host essayforum.com: could not connect to host +essayhave.com: could not connect to host essaylib.com: could not connect to host essayscam.org: could not connect to host essayshark.com: could not connect to host @@ -4738,6 +4924,7 @@ essexghosthunters.co.uk: did not receive HSTS header essplusmed.org: could not connect to host estaciona.guru: could not connect to host estaleiro.org: could not connect to host +estan.cn: could not connect to host estebanborges.com: did not receive HSTS header estespr.com: did not receive HSTS header estilosapeca.com: could not connect to host @@ -4754,6 +4941,7 @@ etenendrinken.nu: could not connect to host eternalsymbols.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no] eternitylove.us: could not connect to host eth9.net: could not connect to host +etha.nz: max-age too low: 0 ethanfaust.com: did not receive HSTS header ethanlew.is: could not connect to host ethantskinner.com: did not receive HSTS header @@ -4761,6 +4949,7 @@ ether.school: could not connect to host etheria-software.tk: did not receive HSTS header ethicalexploiting.com: did not receive HSTS header ethicall.org.uk: did not receive HSTS header +ethicaltek.com: could not connect to host ethil-faer.fr: could not connect to host ethiobaba.com: could not connect to host etidni.help: did not receive HSTS header @@ -4770,14 +4959,13 @@ etmirror.xyz: could not connect to host etoto.pl: did not receive HSTS header etproxy.tech: could not connect to host ets2mp.de: did not receive HSTS header -etskinner.com: did not receive HSTS header -etskinner.net: could not connect to host etsysecure.com: could not connect to host ettebiz.com: max-age too low: 0 etula.ga: could not connect to host etula.me: could not connect to host etys.no: did not receive HSTS header euanbaines.com: did not receive HSTS header +euanbarrett.com: could not connect to host euclideanpostulates.xyz: could not connect to host eucollegetours.com: could not connect to host euexia.fr: could not connect to host @@ -4797,9 +4985,9 @@ euroshop24.net: could not connect to host euroskano.nl: did not receive HSTS header eurospecautowerks.com: did not receive HSTS header eurostrategy.vn.ua: could not connect to host +euteamo.cn: did not receive HSTS header evanhandgraaf.nl: did not receive HSTS header evankurniawan.com: did not receive HSTS header -evapp.org: could not connect to host evasion-energie.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no] evasioncreole.com: could not connect to host evdenevenakliyatankara.pw: could not connect to host @@ -4814,7 +5002,6 @@ events12.com: did not receive HSTS header eventsafrica.net: could not connect to host everyarti.st: could not connect to host everybooks.com: could not connect to host -everyday.eu.org: could not connect to host everydaytherich.com: max-age too low: 7776000 everydaywot.com: could not connect to host everygayporn.xyz: could not connect to host @@ -4825,6 +5012,7 @@ everytruckjob.com: did not receive HSTS header eveseat.net: could not connect to host eveshaiwu.com: could not connect to host evi.be: did not receive HSTS header +evileden.com: could not connect to host evilnerd.de: did not receive HSTS header evilsay.com: could not connect to host evin.ml: could not connect to host @@ -4840,9 +5028,11 @@ ewex.org: could not connect to host eworksmedia.com: could not connect to host exampleessays.com: could not connect to host excelgum.ca: did not receive HSTS header -exceptionalbits.com: did not receive HSTS header +exceptionalbits.com: could not connect to host exceptionalservices.us: could not connect to host +excessamerica.com: could not connect to host exchangecoordinator.com: could not connect to host +exchangeworks.co: did not receive HSTS header exembit.com: did not receive HSTS header exfiles.cz: did not receive HSTS header exgaywatch.com: could not connect to host @@ -4857,21 +5047,20 @@ expatriate.pl: did not receive HSTS header expecting.com.br: could not connect to host experticon.com: did not receive HSTS header expertmile.com: did not receive HSTS header -explodie.org: could not connect to host explodingcamera.com: did not receive HSTS header exploit-db.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no] exploit.cz: did not receive HSTS header -expo-designers.com: could not connect to host +expo-designers.com: did not receive HSTS header expokohler.com: could not connect to host expoort.com.br: could not connect to host -expoundite.net: could not connect to host +expoundite.net: did not receive HSTS header expowerhps.com: did not receive HSTS header expressemotion.net: could not connect to host expressfinance.co.za: did not receive HSTS header exteriorservices.io: could not connect to host extramoney.cash: did not receive HSTS header extrathemeshowcase.net: could not connect to host -extratorrent.cool: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no] +extratorrent.cool: did not receive HSTS header extratorrent.fyi: could not connect to host extratorrent.red: could not connect to host extratorrent.world: could not connect to host @@ -4880,15 +5069,14 @@ extratorrents.tech: could not connect to host extreemhost.nl: did not receive HSTS header extremenetworking.net: could not connect to host exy.pw: could not connect to host -eyasc.nl: did not receive HSTS header eyedarts.com: did not receive HSTS header eyeglassuniverse.com: did not receive HSTS header eyenote.gov: did not receive HSTS header eyes-of-universe.eu: did not receive HSTS header eyesoccer-didikh.rhcloud.com: could not connect to host -eyps.net: did not receive HSTS header eytosh.net: could not connect to host ez.fi: could not connect to host +ezgamble.com: could not connect to host ezimoeko.net: could not connect to host ezmod.org: could not connect to host eznfe.com: could not connect to host @@ -4899,6 +5087,7 @@ f-rickroll-g.pw: could not connect to host f-s-u.co.uk: could not connect to host f00.ca: did not receive HSTS header f1bigpicture.com: could not connect to host +f2e.io: did not receive HSTS header f2f.cash: could not connect to host f42.net: could not connect to host f5movies.top: could not connect to host @@ -4907,28 +5096,30 @@ f9digital.com: did not receive HSTS header faber.io: could not connect to host faberusa.com: did not receive HSTS header fabhub.io: could not connect to host -fabian-fingerle.de: could not connect to host fabian-kluge.de: could not connect to host fabianfischer.de: did not receive HSTS header fabianmunoz.com: did not receive HSTS header fabienbaker.com: could not connect to host fabled.com: did not receive HSTS header fabriko.fr: did not receive HSTS header +fabrysociety.org: could not connect to host fabulouslyyouthfulskin.com: could not connect to host fabulouslyyouthfulskineyeserum.com: could not connect to host facebattle.com: could not connect to host facebook.ax: could not connect to host facebooktsukaikata.net: did not receive HSTS header +facepalmsecurity.com: could not connect to host facesnf.com: could not connect to host fachschaft-informatik.de: did not receive HSTS header facilitrak.com: could not connect to host +factor.cc: did not receive HSTS header factorable.net: did not receive HSTS header factorygw.com: did not receive HSTS header factorypartsdirect.com: could not connect to host -factureenlinea.com: could not connect to host fadednet.com: could not connect to host fadilus.com: did not receive HSTS header fads-center.online: could not connect to host +faeriecakes.be: could not connect to host faesser.com: did not receive HSTS header fafatiger.com: could not connect to host fag.wtf: could not connect to host @@ -4942,6 +5133,7 @@ faisalshuvo.com: did not receive HSTS header faizan.net: did not receive HSTS header faizan.xyz: did not receive HSTS header fakeletters.org: could not connect to host +fakerli.com: could not connect to host faktura.pl: did not receive HSTS header falcibiosystems.org: did not receive HSTS header falconwiz.com: did not receive HSTS header @@ -4951,8 +5143,9 @@ falldennismarketing.com: max-age too low: 2592000 fallenangeldrinks.eu: could not connect to host fallenangelspirits.uk: could not connect to host fallingapart.de: could not connect to host +fallofthecitadel.com: did not receive HSTS header +false.in.net: could not connect to host faluninfo.ba: did not receive HSTS header -fam-weyer.de: could not connect to host fame-agency.net: could not connect to host famep.gov: could not connect to host famer.me: could not connect to host @@ -4962,6 +5155,7 @@ familie-sprink.de: could not connect to host familie-zimmermann.at: could not connect to host famio.cn: did not receive HSTS header fan.gov: could not connect to host +fancy-bridge.com: could not connect to host fanflow.com: did not receive HSTS header fansmade.art: could not connect to host fant.dk: did not receive HSTS header @@ -4970,19 +5164,18 @@ fantasticpestcontrolmelbourne.com.au: did not receive HSTS header fantasyfootballpundit.com: did not receive HSTS header fanyl.cn: could not connect to host faq.lookout.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no] -faradome.ws: could not connect to host faraonplay5.com: could not connect to host faraonplay7.com: could not connect to host faraonplay8.com: could not connect to host faraslot8.net: could not connect to host farces.com: could not connect to host faretravel.co.uk: could not connect to host -farhood.org: could not connect to host farkas.bz: did not receive HSTS header farm24.co.uk: could not connect to host farmacia.pt: did not receive HSTS header farmaciaformula.com.br: could not connect to host farmaciamedicom.com.br: could not connect to host +fascia.fit: could not connect to host fashion.net: did not receive HSTS header fashioncare.cz: did not receive HSTS header fashiondays.bg: max-age too low: 0 @@ -5003,13 +5196,13 @@ fatdoge.cn: did not receive HSTS header fatgeekflix.net: could not connect to host fatherhood.gov: did not receive HSTS header fatlossguide.xyz: could not connect to host +fator25.com.br: could not connect to host fatox.de: could not connect to host fatwin.pw: could not connect to host fatzebra.com.au: max-age too low: 0 favorit.club: did not receive HSTS header fawkex.me: could not connect to host faxreader.net: could not connect to host -fayntic.com: did not receive HSTS header fayolle.info: did not receive HSTS header fbi.pw: did not receive HSTS header fbook.top: could not connect to host @@ -5017,7 +5210,6 @@ fbox.li: could not connect to host fcapartsdb.com: could not connect to host fcp.cn: could not connect to host fdj.im: could not connect to host -fdos.me: could not connect to host fdt.name: did not receive HSTS header feard.space: could not connect to host fed51.com: could not connect to host @@ -5028,7 +5220,8 @@ fedn.it: could not connect to host fedo.moe: could not connect to host feedstringer.com: could not connect to host feedthebot.com: did not receive HSTS header -fefelovalex.ru: could not connect to host +feegg.com.br: could not connect to host +feelgood-workouts.de: did not receive HSTS header fefore.com: did not receive HSTS header fegans.org.uk: did not receive HSTS header feirlane.org: could not connect to host @@ -5038,7 +5231,6 @@ feitobrasilcosmeticos.com.br: did not receive HSTS header felger-times.fr: could not connect to host feliwyn.fr: did not receive HSTS header felixhefner.de: did not receive HSTS header -felixqu.com: did not receive HSTS header felixrr.pro: could not connect to host femaledom.xyz: could not connect to host femdombbw.com: could not connect to host @@ -5049,7 +5241,6 @@ fenno.net: could not connect to host fensdorf.de: did not receive HSTS header fensterbau-mutscheller.de: could not connect to host fenteo.com: could not connect to host -feragon.net: did not receive HSTS header feras-alhajjaji.com: could not connect to host feriahuamantla.com: could not connect to host ferienwohnungen-lastminute.de: could not connect to host @@ -5060,6 +5251,7 @@ ferrolatino.com: could not connect to host feschiyan.com: could not connect to host festember.com: did not receive HSTS header festival.house: did not receive HSTS header +festivalxdentro.com: did not receive HSTS header festrip.com: could not connect to host fetch.co.uk: did not receive HSTS header fetclips.se: could not connect to host @@ -5069,7 +5261,6 @@ feudaltactics.com: could not connect to host feuerwehr-dachaufsetzer.de: could not connect to host fexmen.com: could not connect to host ff-bg.xyz: could not connect to host -ffb.gov: could not connect to host ffh.me: could not connect to host ffl123.com: did not receive HSTS header fgequipamentos.com.br: did not receive HSTS header @@ -5102,7 +5293,7 @@ filedir.com: did not receive HSTS header fileio.io: could not connect to host fileon.com: could not connect to host filesense.com: could not connect to host -filewall.de: could not connect to host +filewall.de: did not receive HSTS header filey.co.uk: did not receive HSTS header filhomes.ph: could not connect to host fillitupchallenge.eu: did not receive HSTS header @@ -5133,6 +5324,7 @@ finiteheap.com: did not receive HSTS header finn.io: did not receive HSTS header finstererlebnis.de: could not connect to host finsterlebnis.de: did not receive HSTS header +fintandunleavy.com: could not connect to host fiodental.com.br: did not receive HSTS header fiork.com: did not receive HSTS header fire-wolf.com: could not connect to host @@ -5149,13 +5341,14 @@ fireorbit.de: did not receive HSTS header firepeak.ru: could not connect to host fireworkcoaching.com: did not receive HSTS header firexarxa.de: could not connect to host +firmament.space: could not connect to host firmenverzeichnis.nu: did not receive HSTS header first-time-offender.com: could not connect to host firstchoicepool.com: did not receive HSTS header firstdogonthemoon.com.au: did not receive HSTS header firstforex.co.uk: did not receive HSTS header firstlook.org: did not receive HSTS header -fischers.it: could not connect to host +fischers.cc: could not connect to host fiscoeconti.it: did not receive HSTS header fishfinders.info: did not receive HSTS header fiskestang.com: did not receive HSTS header @@ -5205,7 +5398,6 @@ flam.io: could not connect to host flamewall.net: could not connect to host flamingcow.tv: could not connect to host flamingkeys.com.au: could not connect to host -flangaapis.com: did not receive HSTS header flareon.net: could not connect to host flaretechnologies.io: could not connect to host flashbaggie.com: could not connect to host @@ -5213,6 +5405,12 @@ flatbellyreview.com: max-age too low: 2592000 flawcheck.com: could not connect to host flc111.com: did not receive HSTS header flc999.com: max-age too low: 129600 +fleetcor.at: could not connect to host +fleetcor.de: could not connect to host +fleetcor.fr: could not connect to host +fleetcor.hu: could not connect to host +fleetcor.nl: could not connect to host +fleetcor.pl: could not connect to host flemingtonaudiparts.com: could not connect to host fleurette.me: could not connect to host fleursdesoleil.fr: did not receive HSTS header @@ -5222,12 +5420,12 @@ fliexer.com: could not connect to host flightschoolusa.com: did not receive HSTS header fling.dating: could not connect to host flipagram.com: did not receive HSTS header -flipbell.com: could not connect to host +flipbell.com: did not receive HSTS header flipkey.com: did not receive HSTS header flirchi.com: did not receive HSTS header flixtor.net: could not connect to host -flkrpxl.com: could not connect to host -floless.co.uk: did not receive HSTS header +flkrpxl.com: max-age too low: 86400 +floless.co.uk: could not connect to host floorball-haunwoehr.de: did not receive HSTS header flopy.club: could not connect to host florafiora.com.br: did not receive HSTS header @@ -5247,19 +5445,21 @@ flowerandplant.org: did not receive HSTS header flowersandclouds.com: could not connect to host floweslawncare.com: could not connect to host flowlo.me: could not connect to host +flox.io: could not connect to host floydm.com: did not receive HSTS header flugplatz-edvc.de: could not connect to host +flugsportvereinigungcelle.de: did not receive HSTS header flugstadplasticsurgery.com: did not receive HSTS header fluidojobs.com: could not connect to host fluitbeurt.nl: could not connect to host flukethoughts.com: did not receive HSTS header flurrybridge.com: could not connect to host flushstudios.com: did not receive HSTS header -fluxi.fi: could not connect to host flyaces.com: could not connect to host flybunnyfly.dk: did not receive HSTS header flygpost.com: did not receive HSTS header flyingdoggy.net: could not connect to host +flyingspaghettimonsterdonationsfund.nl: could not connect to host flyp.me: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no] flyspace.ga: did not receive HSTS header flyss.net: could not connect to host @@ -5309,7 +5509,7 @@ forestfinance.fr: did not receive HSTS header foreveralone.io: could not connect to host foreveryoung.pt: did not receive HSTS header forex-dan.com: did not receive HSTS header -forexsignals7.com: could not connect to host +forex-plus.com: did not receive HSTS header forgix.com: could not connect to host forlagetmarx.dk: did not receive HSTS header formadmin.com: did not receive HSTS header @@ -5336,6 +5536,7 @@ fossgruppen.se: could not connect to host fotiu.com: could not connect to host fotoallerlei.com: did not receive HSTS header fotocerita.net: could not connect to host +fotofaerie.net: could not connect to host fotogiraffe.ru: did not receive HSTS header fotografosexpertos.com: did not receive HSTS header fotonjan.com: could not connect to host @@ -5343,8 +5544,9 @@ fotopasja.info: could not connect to host fotostravestisbr.com: could not connect to host fourchin.net: could not connect to host fourwheelpartloanssimple.com: did not receive HSTS header -foxdev.io: did not receive HSTS header -foxelbox.com: did not receive HSTS header +foxdev.io: could not connect to host +foxelbox.com: could not connect to host +foxes.no: could not connect to host foxley-farm.co.uk: did not receive HSTS header foxley-seeds.co.uk: did not receive HSTS header foxleyseeds.co.uk: could not connect to host @@ -5357,16 +5559,16 @@ fptravelling.com: could not connect to host fr0zenbits.io: could not connect to host fr33d0m.link: could not connect to host fragilesolar.cf: could not connect to host -fragnic.com: did not receive HSTS header +fragnic.com: could not connect to host fralef.me: did not receive HSTS header francesca-and-lucas.com: did not receive HSTS header +francescoservida.ch: could not connect to host francevpn.xyz: could not connect to host francois-vidit.com: did not receive HSTS header frangor.info: did not receive HSTS header frankedier.com: did not receive HSTS header frankl.in: did not receive HSTS header franklinhua.com: could not connect to host -franksiler.com: could not connect to host franta.biz: did not receive HSTS header franta.email: did not receive HSTS header franzt.de: could not connect to host @@ -5442,11 +5644,13 @@ freakyawesometeam.com: could not connect to host freakyawesometheme.com: could not connect to host freakyawesomethemes.com: could not connect to host freakyawesomewp.com: could not connect to host -freddythechick.uk: did not receive HSTS header +freddythechick.uk: could not connect to host +fredericcote.com: could not connect to host fredliang.cn: could not connect to host fredtec.ru: could not connect to host free8.xyz: could not connect to host freeasinlliure.org: did not receive HSTS header +freeassangenow.org: did not receive HSTS header freeben666.fr: could not connect to host freeblog.me: could not connect to host freebookmakerbets.com.au: did not receive HSTS header @@ -5482,11 +5686,9 @@ frforms.com: did not receive HSTS header frickelboxx.de: could not connect to host frickenate.com: could not connect to host fridaperfumaria.com.br: could not connect to host -fridolinka.cz: did not receive HSTS header friedhelm-wolf.de: could not connect to host friendica.ch: could not connect to host friendlyfiregameshow.com: could not connect to host -frieslandrail.nl: did not receive HSTS header frimons.com: max-age too low: 7889238 fringeintravel.com: did not receive HSTS header frodriguez.xyz: could not connect to host @@ -5504,12 +5706,12 @@ frontlinemessenger.com: did not receive HSTS header frontmin.com: did not receive HSTS header frost-ci.xyz: could not connect to host frostbytes.net: could not connect to host -frosthall.com: max-age too low: 2592000 frosty-gaming.xyz: could not connect to host frp-roleplay.de: could not connect to host frprn.com: could not connect to host frprn.xxx: could not connect to host frsis2017.com: could not connect to host +fruitscale.com: could not connect to host fruitusers.com: could not connect to host frumious.fyi: could not connect to host frusky.net: could not connect to host @@ -5524,7 +5726,7 @@ fsrs.gov: could not connect to host fstatic.io: could not connect to host fstfy.de: could not connect to host fsvoboda.cz: could not connect to host -ftc.gov: did not receive HSTS header +ftang.de: could not connect to host ftctele.com: could not connect to host fteproxy.org: did not receive HSTS header ftgho.com: could not connect to host @@ -5550,6 +5752,7 @@ fullpackage.co.uk: did not receive HSTS header fulltxt.ml: could not connect to host fullytrained.co.uk: could not connect to host fumiware.com: could not connect to host +fun25.tk: could not connect to host fun9.cc: could not connect to host fun99.cc: could not connect to host funarena.com.ua: did not receive HSTS header @@ -5562,6 +5765,7 @@ funi4u.com: could not connect to host funideas.org: could not connect to host funkes-ferien.de: did not receive HSTS header funkyweddingideas.com.au: could not connect to host +funnelweb.xyz: could not connect to host funny-joke-pictures.com: did not receive HSTS header funnyang.com: could not connect to host funrun.com: did not receive HSTS header @@ -5571,8 +5775,10 @@ funtimebourne.co.uk: could not connect to host fuorifuocogenova.it: did not receive HSTS header furi.ga: could not connect to host furiffic.com: did not receive HSTS header +furikake.xyz: did not receive HSTS header furnation.com: could not connect to host furnishedproperty.com.au: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no] +furry.agency: could not connect to host furry.be: did not receive HSTS header furtivelook.com: did not receive HSTS header fusa-miyamoto.jp: could not connect to host @@ -5603,11 +5809,12 @@ fyodorpi.com: did not receive HSTS header fyol.pw: could not connect to host fysiohaenraets.nl: did not receive HSTS header fzn.io: did not receive HSTS header -fzslm.me: did not receive HSTS header +fzslm.me: could not connect to host g-i-s.vn: did not receive HSTS header g-rickroll-o.pw: could not connect to host g01.in.ua: could not connect to host g1jeu.com: could not connect to host +g1s.cc: could not connect to host g2-inc.com: max-age too low: 600 g2a.co: did not receive HSTS header g2g.com: did not receive HSTS header @@ -5625,12 +5832,13 @@ gablaxian.com: max-age too low: 2592000 gabriele-kluge.de: could not connect to host gaelleetarnaud.com: did not receive HSTS header gafachi.com: could not connect to host +gagor.pl: could not connect to host gaichanh.com: did not receive HSTS header +gailfellowsphotography.com: could not connect to host gainesvillegoneaustin.org: did not receive HSTS header gaiserik.com: did not receive HSTS header gaite.me: did not receive HSTS header gajas18.com: could not connect to host -gakkainavi-epsilon.jp: could not connect to host gakkainavi4.com: could not connect to host galardi.org: could not connect to host galena.io: could not connect to host @@ -5675,7 +5883,7 @@ gameswitchers.uk: could not connect to host gametium.com: could not connect to host gametium.es: could not connect to host gamhealth.net: could not connect to host -gamingmedia.eu: could not connect to host +gamingmedia.eu: did not receive HSTS header gamingreinvented.com: did not receive HSTS header gamoice.com: did not receive HSTS header gampenhof.de: could not connect to host @@ -5685,6 +5893,7 @@ ganhonet.com.br: did not receive HSTS header ganzgraph.de: did not receive HSTS header gaon.network: could not connect to host gaphag.ddns.net: could not connect to host +gar-nich.net: could not connect to host garage-abri-chalet.fr: did not receive HSTS header garage-door.pro: could not connect to host garageon.net: did not receive HSTS header @@ -5734,12 +5943,11 @@ geblitzt.de: did not receive HSTS header gedankenbude.info: could not connect to host geekbaba.com: could not connect to host geekcast.co.uk: did not receive HSTS header -geekchimp.com: could not connect to host +geekchimp.com: did not receive HSTS header geekdt.com: could not connect to host geekmind.org: max-age too low: 172800 geeks.berlin: could not connect to host geeks.lgbt: could not connect to host -geekseries.fr: did not receive HSTS header geektimes.com: did not receive HSTS header geeky.software: could not connect to host geemo.top: could not connect to host @@ -5757,12 +5965,11 @@ generationnext.pl: could not connect to host genesischangelog.com: could not connect to host geneve.guide: could not connect to host genia-life.de: could not connect to host -genie-seiner-generation.de: could not connect to host +genie-seiner-generation.de: did not receive HSTS header genneve.com: did not receive HSTS header genoog.com: could not connect to host genossen.ru: could not connect to host genshiken.org: could not connect to host -gentooblog.de: could not connect to host genuu.com: could not connect to host genuxation.com: could not connect to host genxbeats.com: did not receive HSTS header @@ -5790,7 +5997,6 @@ gesunde-smoothies.de: did not receive HSTS header gesundes-im-napf.de: did not receive HSTS header get-asterisk.ru: could not connect to host get-cctv.com: could not connect to host -get-it-live.de: could not connect to host get.zenpayroll.com: did not receive HSTS header getable.com: did not receive HSTS header getblys.com.au: did not receive HSTS header @@ -5815,7 +6021,6 @@ getgeek.nu: could not connect to host getgeek.pl: could not connect to host getgeek.se: did not receive HSTS header getinternet.de: did not receive HSTS header -getitlive.de: could not connect to host getkai.co.nz: did not receive HSTS header getlantern.org: did not receive HSTS header getlifti.com: could not connect to host @@ -5840,11 +6045,9 @@ getwashdaddy.com: could not connect to host getyourphix.tk: could not connect to host gevaulug.fr: could not connect to host gfbouncycastles.co.uk: did not receive HSTS header -gfe.li: did not receive HSTS header gfhgiro.nl: did not receive HSTS header gfm.tech: could not connect to host gfoss.gr: could not connect to host -gfournier.ca: could not connect to host gfw.moe: could not connect to host gfwsb.ml: could not connect to host gglks.com: could not connect to host @@ -5853,7 +6056,7 @@ ggrks-asano.com: could not connect to host ggss.cf: could not connect to host ggss.ml: could not connect to host gh16.com.ar: could not connect to host -ghcif.de: could not connect to host +ghcif.de: did not receive HSTS header gheorghe-sarcov.ga: could not connect to host gheorghesarcov.ga: could not connect to host gheorghesarcov.tk: could not connect to host @@ -5865,7 +6068,9 @@ giakki.eu: could not connect to host gianlucapartengo.photography: did not receive HSTS header giant-powerfit.co.uk: did not receive HSTS header gibraltar-firma.com: did not receive HSTS header +giddyaunt.net: could not connect to host gidea.nu: could not connect to host +giegler.software: did not receive HSTS header giftgofers.com: max-age too low: 2592000 giftservices.nl: did not receive HSTS header gifzilla.net: could not connect to host @@ -5890,15 +6095,13 @@ gip-carif-idf.net: could not connect to host gip-carif-idf.org: could not connect to host gipsamsfashion.com: could not connect to host gipsic.com: did not receive HSTS header -girlsnet.work: could not connect to host gis3m.org: did not receive HSTS header gisac.org: did not receive HSTS header gistfy.com: could not connect to host git-stuff.tk: could not connect to host git.co: could not connect to host gitar.io: could not connect to host -github.party: could not connect to host -gittr.ch: did not receive HSTS header +github.party: did not receive HSTS header givemyanswer.com: could not connect to host giverang.biz: could not connect to host giverang.com: could not connect to host @@ -5908,13 +6111,13 @@ gixtools.uk: could not connect to host gizzo.sk: could not connect to host glabiatoren-kst.de: could not connect to host gladystudio.com: did not receive HSTS header -glahcks.com: could not connect to host glass.google.com: did not receive HSTS header (error ignored - included regardless) glasslikes.com: did not receive HSTS header glbg.eu: did not receive HSTS header gle: could not connect to host glenavy.tk: could not connect to host glentakahashi.com: could not connect to host +glicerina.online: did not receive HSTS header glittersjabloon.nl: did not receive HSTS header glitzmirror.com: could not connect to host glnpo.gov: could not connect to host @@ -5945,14 +6148,14 @@ gm-assicurazioni.it: could not connect to host gmail.com: did not receive HSTS header (error ignored - included regardless) gmanukyan.com: could not connect to host gmat.ovh: could not connect to host -gmoes.at: could not connect to host -gmw-hannover.de: could not connect to host +gmoes.at: did not receive HSTS header +gmslparking.co.uk: did not receive HSTS header gnaptracker.tk: could not connect to host gnom.me: could not connect to host gnosticjade.net: did not receive HSTS header go.ax: did not receive HSTS header go2sh.de: did not receive HSTS header -go4it.solutions: could not connect to host +go4it.solutions: did not receive HSTS header goabonga.com: could not connect to host goalsetup.com: did not receive HSTS header goaltree.ch: did not receive HSTS header @@ -5988,6 +6191,8 @@ golearn.gov: could not connect to host golfburn.com: could not connect to host golocal-media.de: could not connect to host gong8.win: could not connect to host +gongjianwei.com: could not connect to host +gonkar.com: did not receive HSTS header gonzalosanchez.mx: did not receive HSTS header goodeats.nyc: did not receive HSTS header goodfurday.ca: could not connect to host @@ -6007,9 +6212,7 @@ gootax.pro: did not receive HSTS header goozz.nl: did not receive HSTS header gopay.cz: did not receive HSTS header gopokego.cz: could not connect to host -gorakukai.jp: max-age too low: 0 goranrango.ch: could not connect to host -gordonobrecht.com: did not receive HSTS header gorgiaxx.com: could not connect to host gorilla-gym.site: could not connect to host gorillow.com: could not connect to host @@ -6022,6 +6225,7 @@ gotgenes.com: could not connect to host goto.google.com: did not receive HSTS header (error ignored - included regardless) gotobrno.cz: did not receive HSTS header gotocloud.ru: could not connect to host +gotowned.org: could not connect to host gotspot.com: could not connect to host gottfridsberg.org: could not connect to host gottfriedfeyen.com: did not receive HSTS header @@ -6080,11 +6284,8 @@ greatfire.kr: could not connect to host greatideahub.com: did not receive HSTS header greatnet.de: did not receive HSTS header greatsong.net: did not receive HSTS header -green-light.cf: could not connect to host -green-light.ga: could not connect to host -green-light.gq: could not connect to host -green-light.ml: could not connect to host greencardtalent.com: could not connect to host +greenconn.ca: could not connect to host greenenergysolution.uk: did not receive HSTS header greenesting.ch: could not connect to host greenesting.com: could not connect to host @@ -6092,13 +6293,12 @@ greengov.gov: could not connect to host greenhillantiques.co.uk: did not receive HSTS header greenitpark.net: could not connect to host greensolid.biz: could not connect to host +greenville.ag: did not receive HSTS header greenvines.com.tw: did not receive HSTS header greenvpn.ltd: could not connect to host greenvpn.pro: did not receive HSTS header greggsfoundation.org.uk: could not connect to host gregmartyn.com: could not connect to host -gregmilton.com: could not connect to host -gregmilton.org: could not connect to host gregorytlee.me: could not connect to host grekland.guide: could not connect to host gremots.com: could not connect to host @@ -6127,12 +6327,10 @@ groentefruitzeep.com: could not connect to host groentefruitzeep.nl: could not connect to host groetzner.net: did not receive HSTS header groseb.net: did not receive HSTS header -grossberger-ge.org: could not connect to host grossell.ru: could not connect to host grossmann.gr: could not connect to host grossmisconduct.news: could not connect to host groupe-cassous.com: did not receive HSTS header -grouphomes.com.au: did not receive HSTS header groups.google.com: did not receive HSTS header (error ignored - included regardless) grow-shop.ee: could not connect to host grow-shop.lt: could not connect to host @@ -6140,7 +6338,9 @@ grow-shop.lv: could not connect to host growingmetrics.com: could not connect to host grozip.com: did not receive HSTS header grozter.se: did not receive HSTS header +gruelang.org: could not connect to host gruenderwoche-dresden.de: did not receive HSTS header +grumples.biz: did not receive HSTS header grunex.com: did not receive HSTS header grupopgn.com.br: could not connect to host grusig-geil.ch: could not connect to host @@ -6171,13 +6371,14 @@ gugaltika-ipb.org: could not connect to host guge.gq: could not connect to host gugga.dk: could not connect to host guguke.net: did not receive HSTS header -guhei.net: could not connect to host guidechecking.com: could not connect to host guides-et-admin.com: did not receive HSTS header +guidesetc.com: did not receive HSTS header guilde-vindicta.fr: could not connect to host guildgearscore.cf: could not connect to host guillaume-leduc.fr: did not receive HSTS header guillaumematheron.fr: did not receive HSTS header +guillaumeperrin.io: could not connect to host guiltypleasuresroleplaying.com: did not receive HSTS header guinea-pig.co: could not connect to host guineafruitcorp.com: could not connect to host @@ -6217,6 +6418,7 @@ gvt2.com: could not connect to host (error ignored - included regardless) gvt3.com: could not connect to host (error ignored - included regardless) gw2oracle.com: could not connect to host gw2reload.eu: could not connect to host +gwa-verwaltung.de: could not connect to host gwijaya.com: could not connect to host gwtest.us: could not connect to host gxgx.org: could not connect to host @@ -6224,19 +6426,20 @@ gxlrx.net: could not connect to host gyboche.com: could not connect to host gyboche.science: could not connect to host gylauto.fr: could not connect to host -gypsycatdreams.com: did not receive HSTS header +gymjp.com: did not receive HSTS header +gypsycatdreams.com: could not connect to host gypthecat.com: did not receive HSTS header gyz.io: did not receive HSTS header -gzitech.net: could not connect to host gzpblog.com: could not connect to host h-og.com: could not connect to host h-rickroll-n.pw: could not connect to host h2cdn.cloud: could not connect to host -h2check.org: did not receive HSTS header +h2check.org: could not connect to host h3x.jp: could not connect to host +ha6.ru: could not connect to host haarkliniek.com: did not receive HSTS header habbixed.tk: could not connect to host -habbo.life: did not receive HSTS header +habbo.life: could not connect to host habbotalk.nl: could not connect to host habeo.si: could not connect to host hablemosdetecnologia.com.ve: could not connect to host @@ -6249,6 +6452,7 @@ hacker.deals: could not connect to host hacker8.cn: could not connect to host hackercat.ninja: max-age too low: 2592000 hackerforever.com: could not connect to host +hackerlite.xyz: did not receive HSTS header hackerone-ext-adroll.com: could not connect to host hackerspace-ntnu.no: did not receive HSTS header hackest.org: did not receive HSTS header @@ -6257,7 +6461,9 @@ hackit.im: could not connect to host hackmeplz.com: could not connect to host hackroyale.xyz: could not connect to host hacksnack.io: could not connect to host +hackthissite.org: could not connect to host hackyourfaceoff.com: could not connect to host +hackzogtum-coburg.de: did not receive HSTS header hadaf.pro: could not connect to host hadzic.co: could not connect to host haeckdesign.com: did not receive HSTS header @@ -6275,7 +6481,6 @@ haitschi.com: could not connect to host haitschi.de: did not receive HSTS header haitschi.net: could not connect to host haitschi.org: could not connect to host -hajnzic.at: could not connect to host haktec.de: did not receive HSTS header haku.moe: could not connect to host hakugin.me: could not connect to host @@ -6294,6 +6499,7 @@ hamking.tk: could not connect to host hammamsayad.com: could not connect to host hamon.cc: did not receive HSTS header hamu.blue: could not connect to host +hanakaraku.com: could not connect to host hancatemc.com: did not receive HSTS header hancc.net: could not connect to host handenafvanhetmedischdossier.nl: could not connect to host @@ -6311,6 +6517,8 @@ hanimalis.fr: could not connect to host hanksservice.com: could not connect to host hannes-speelgoedencadeautjes.nl: did not receive HSTS header hans-natur.de: did not receive HSTS header +hansch.ventures: could not connect to host +hanys.xyz: could not connect to host hanzcollection.online: could not connect to host haobo111.com: could not connect to host haobo1111.com: could not connect to host @@ -6333,14 +6541,14 @@ hapsfordmill.co.uk: could not connect to host hapvm.com: could not connect to host haqaza.com.br: did not receive HSTS header harambe.site: could not connect to host -harbourweb.net: did not receive HSTS header +harbourweb.net: could not connect to host hardeman.nu: could not connect to host hardline.xyz: could not connect to host hardtime.ru: could not connect to host hardyboyplant.com: did not receive HSTS header +harekaze.info: could not connect to host haribosupermix.com: could not connect to host hariome.com: did not receive HSTS header -haritsa.co.id: did not receive HSTS header harlentimberproducts.co.uk: did not receive HSTS header harmonycosmetic.com: max-age too low: 300 harrisonsdirect.co.uk: did not receive HSTS header @@ -6352,6 +6560,7 @@ harschnitz.nl: did not receive HSTS header hartlep.eu: could not connect to host hartmancpa.com: did not receive HSTS header harvestrenewal.org: did not receive HSTS header +harveymilton.com: did not receive HSTS header harz.cloud: could not connect to host has.vision: could not connect to host hasabig.wang: could not connect to host @@ -6365,15 +6574,16 @@ hashplex.com: could not connect to host hasinase.de: could not connect to host haste.ch: could not connect to host hastherebeenamassshooting.today: could not connect to host +hatcherlawgroupnm.com: did not receive HSTS header hatethe.uk: could not connect to host hatoko.net: could not connect to host haufschild.de: could not connect to host haurumcraft.net: could not connect to host hausarzt-stader-str.de: did not receive HSTS header -hausarztpraxis-linn.de: could not connect to host hauswarteam.com: could not connect to host hav.com: could not connect to host haveeruexaminer.com: could not connect to host +haven-moon.com: could not connect to host haven-staging.cloud: could not connect to host haven.cloud: did not receive HSTS header havenmoon.com: could not connect to host @@ -6412,6 +6622,7 @@ hcs-company.com: did not receive HSTS header hcs-company.nl: did not receive HSTS header hcstr.com: did not receive HSTS header hd1tj.org: did not receive HSTS header +hda.me: could not connect to host hdm.io: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no] hdrboundless.com: could not connect to host hdritalyphotos.com: did not receive HSTS header @@ -6442,14 +6653,13 @@ heathmanners.com: could not connect to host heavenlyseals.com: could not connect to host heavenlysmokenc.com: could not connect to host heavystresser.com: could not connect to host +heayao.com: could not connect to host hebaus.com: could not connect to host hectorj.net: could not connect to host -hedgeschool.ie: could not connect to host hedweb.com: could not connect to host heidilein.info: did not receive HSTS header heimnetze.org: could not connect to host heisenberg.co: could not connect to host -hejahanif.se: could not connect to host hejsupport.se: could not connect to host hekeki.com: could not connect to host hele.cz: did not receive HSTS header @@ -6487,7 +6697,6 @@ hencagon.com: could not connect to host hendersonrealestatepros.com: did not receive HSTS header hendric.us: did not receive HSTS header henhenlu.com: could not connect to host -henkbrink.com: could not connect to host henningkerstan.org: did not receive HSTS header henriknoerr.com: could not connect to host hentai.design: did not receive HSTS header @@ -6506,11 +6715,12 @@ heroin.org.uk: could not connect to host herpaderp.net: did not receive HSTS header herramientasbazarot.com: did not receive HSTS header herrenfahrt.com: did not receive HSTS header -hesa.com: max-age too low: 0 hetmeisjeachterpauw.nl: could not connect to host hetmer.com: did not receive HSTS header +hetmer.cz: did not receive HSTS header hetmer.net: did not receive HSTS header heutger.net: did not receive HSTS header +heverhagen.rocks: could not connect to host hex2013.com: did not receive HSTS header hexacon.io: could not connect to host hexadecimal.tech: could not connect to host @@ -6518,6 +6728,7 @@ hexe.net: did not receive HSTS header hexhu.com: could not connect to host hexo.io: did not receive HSTS header hexobind.com: could not connect to host +hexstream.net: did not receive HSTS header heyguevara.com: did not receive HSTS header heywoodtown.co.uk: did not receive HSTS header hfbg.nl: did not receive HSTS header @@ -6529,12 +6740,10 @@ hg525.com: max-age too low: 86400 hg71839.com: could not connect to host hg881.com: could not connect to host hgfa.fi: could not connect to host -hh-wolke.dedyn.io: did not receive HSTS header hi808.net: did not receive HSTS header hialatv.com: could not connect to host hibilog.com: could not connect to host hicn.gq: could not connect to host -hiddendepth.ie: max-age too low: 0 hiddenmail.xyz: could not connect to host hiddenprocess.com: did not receive HSTS header hiddenrefuge.eu.org: could not connect to host @@ -6543,8 +6752,10 @@ hideftv.deals: could not connect to host hideout.agency: could not connect to host hidrofire.com: did not receive HSTS header hiexmerida-mailing.com: did not receive HSTS header +hig.gov: could not connect to host highgrove.org.uk: could not connect to host highlandparkcog.org: did not receive HSTS header +highperformancehvac.com: did not receive HSTS header highseer.com: did not receive HSTS header highsurf-miyazaki.com: could not connect to host hightechgadgets.net: could not connect to host @@ -6560,6 +6771,7 @@ hikagestudios.com: did not receive HSTS header hikariempire.com: could not connect to host hikinggearlab.com: did not receive HSTS header hilaolu.com: could not connect to host +hilariousbeer.com.mx: could not connect to host hilinemerchandising.com: did not receive HSTS header hill.selfip.net: could not connect to host hillcity.org.nz: did not receive HSTS header @@ -6580,6 +6792,7 @@ hipnoseinstitute.org: did not receive HSTS header hiraku.me: did not receive HSTS header hireprofs.com: could not connect to host hiresuccessstaffing.com: did not receive HSTS header +hiretech.com: did not receive HSTS header hirevets.gov: did not receive HSTS header hirokilog.com: could not connect to host hisingenrunt.se: did not receive HSTS header @@ -6588,6 +6801,8 @@ history.pe: could not connect to host hitchunion.org: could not connect to host hitoy.org: did not receive HSTS header hittipps.com: could not connect to host +hivatal-info.hu: could not connect to host +hiyuki2578.net: could not connect to host hjes.com.ve: could not connect to host hjf-immobilien.de: did not receive HSTS header hjkhs.cn: did not receive HSTS header @@ -6627,18 +6842,19 @@ hollerau.de: could not connect to host holowaty.me: could not connect to host holy-hi.com: did not receive HSTS header holymoly.lu: could not connect to host +holymolycasinos.com: did not receive HSTS header homa.website: could not connect to host homads.com: did not receive HSTS header home-cloud.online: could not connect to host home-coaching.be: did not receive HSTS header home-craft.de: could not connect to host +home-v.ind.in: could not connect to host home-work-jobs.com: did not receive HSTS header homeandyarddetailing.com: could not connect to host homeclouding.de: could not connect to host homecoming.city: could not connect to host homedna.com: did not receive HSTS header homeexx.com: did not receive HSTS header -homegreenmark.com: did not receive HSTS header homeownersassociationmanagementla.com: did not receive HSTS header homeremodelingcontractorsca.com: did not receive HSTS header homesandal.com: did not receive HSTS header @@ -6655,6 +6871,7 @@ hongzu.cc: could not connect to host hongzuwang.com: could not connect to host hongzuzhibo.com: could not connect to host honkhonk.net: could not connect to host +honkion.net: could not connect to host honoo.com: could not connect to host hoodiecrow.com: could not connect to host hoodoo.io: could not connect to host @@ -6668,12 +6885,14 @@ hopesb.org: did not receive HSTS header hopewellproperties.co.uk: did not receive HSTS header hopglass.eu: could not connect to host hopglass.net: could not connect to host +hoponmedia.de: could not connect to host hopzone.net: could not connect to host horace.li: did not receive HSTS header horisonttimedia.fi: did not receive HSTS header horizonmoto.fr: did not receive HSTS header horning.co: did not receive HSTS header horosho.in: could not connect to host +horrendous-servers.com: could not connect to host horror-forum.de: could not connect to host horrorserv.com: could not connect to host horseboners.xxx: could not connect to host @@ -6692,6 +6911,8 @@ hostinaus.com.au: did not receive HSTS header hostingfirst.nl: could not connect to host hostingfj.com: could not connect to host hostisan.com: could not connect to host +hostworkz.com: could not connect to host +hosyaku.gr.jp: did not receive HSTS header hot-spa.ch: did not receive HSTS header hotartup.com: could not connect to host hotchillibox.co.za: could not connect to host @@ -6721,14 +6942,12 @@ hozinga.de: could not connect to host hpctecnologias.com: did not receive HSTS header hpeditor.tk: could not connect to host hpepub.asia: did not receive HSTS header -hpepub.com: did not receive HSTS header hpepub.org: could not connect to host hppub.info: could not connect to host hppub.org: could not connect to host hppub.site: could not connect to host hqhost.net: did not receive HSTS header hqq.tv: could not connect to host -hquest.pro.br: could not connect to host hqy.moe: did not receive HSTS header hr-intranet.com: could not connect to host hr-tech.store: could not connect to host @@ -6743,26 +6962,26 @@ hsir.me: could not connect to host hsts-preload-test.xyz: could not connect to host hsts.com.br: could not connect to host hsts.date: could not connect to host -hsts.eu: could not connect to host hstspreload.me: could not connect to host hszhyy120.com: could not connect to host htlball.at: could not connect to host html-lab.tk: could not connect to host http418.xyz: could not connect to host httphacker.com: could not connect to host -https-rulesets.org: could not connect to host https.ps: could not connect to host https.ren: could not connect to host httpstatuscode418.xyz: could not connect to host httptest.net: could not connect to host -huang-haitao.com: could not connect to host +hu8hu8.com: could not connect to host +huang-haitao.com: did not receive HSTS header huang.nu: could not connect to host huangguancq.com: could not connect to host huangh.com: could not connect to host huangzenghao.com: could not connect to host huarongdao.com: did not receive HSTS header hubert.systems: did not receive HSTS header -hubertmoszka.pl: max-age too low: 0 +hubertmoszka.pl: could not connect to host +hubrick.com: could not connect to host hudhaifahgoga.co.za: could not connect to host hudingyuan.cn: could not connect to host hugocollignon.fr: could not connect to host @@ -6770,9 +6989,9 @@ huiser.nl: could not connect to host hukaloh.com: could not connect to host hukkatavara.com: could not connect to host humanexperiments.com: could not connect to host -humankode.com: did not receive HSTS header humblefinances.com: could not connect to host humeurs.net: could not connect to host +humorce.com: did not receive HSTS header humortuga.pt: did not receive HSTS header hump.dk: could not connect to host humpi.at: could not connect to host @@ -6781,8 +7000,9 @@ hunger.im: could not connect to host hunqz.com: could not connect to host huntshomeinspections.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no] huodongweb.com: could not connect to host +huoduan.com: did not receive HSTS header huongquynh.com: could not connect to host -hup.blue: did not receive HSTS header +hup.blue: could not connect to host huskybutt.dog: could not connect to host huskyduvercors.com: did not receive HSTS header hustle.com: did not receive HSTS header @@ -6836,10 +7056,10 @@ i496.eu: could not connect to host i4m1k0su.com: could not connect to host i95.me: could not connect to host i9multiequipamentos.com.br: did not receive HSTS header +ia1000.com: could not connect to host iacono.com.br: did not receive HSTS header iadttaveras.com: could not connect to host iain.tech: did not receive HSTS header -iamle.com: max-age too low: 0 iamokay.nl: did not receive HSTS header iamreubin.co.uk: did not receive HSTS header iamsoareyou.se: could not connect to host @@ -6853,16 +7073,15 @@ ibestreview.com: did not receive HSTS header ibizatopcharter.com: did not receive HSTS header ibna.online: could not connect to host ibnuwebhost.com: could not connect to host +ibnw.de: did not receive HSTS header ibox.ovh: did not receive HSTS header ibps.blog: did not receive HSTS header ibpsrecruitment.co.in: could not connect to host ibron.co: could not connect to host ibsafrica.co.za: could not connect to host ibsglobal.co.za: could not connect to host -icabanken.se: did not receive HSTS header icaforsakring.se: did not receive HSTS header icasnetwork.com: did not receive HSTS header -ice.xyz: did not receive HSTS header ice.yt: could not connect to host icebat.dyndns.org: could not connect to host icebound.cc: did not receive HSTS header @@ -6879,19 +7098,22 @@ ichoosebtec.com: did not receive HSTS header ichronos.net: did not receive HSTS header icity.ly: did not receive HSTS header icloud.net: could not connect to host +icmshoptrend.com: did not receive HSTS header icnsoft.ga: did not receive HSTS header icntorrent.download: could not connect to host ico500.com: did not receive HSTS header icondoom.nl: did not receive HSTS header -icpc.pp.ua: could not connect to host +icowhitepapers.co: did not receive HSTS header icpc2016.in.th: could not connect to host icreative.nl: did not receive HSTS header +ictinforensics.org: could not connect to host ictpro.info: did not receive HSTS header icusignature.com: could not connect to host icys2017.com: did not receive HSTS header id-co.in: could not connect to host id-conf.com: did not receive HSTS header -idblab.tk: could not connect to host +idafauziyah.com: could not connect to host +idc.yn.cn: could not connect to host idcrane.com: could not connect to host iddconnect.com: could not connect to host iddconnect.org: could not connect to host @@ -6910,22 +7132,22 @@ idemo.in: could not connect to host identity-hash.online: could not connect to host identitylabs.uk: could not connect to host identitysandbox.gov: could not connect to host +identitytheft.gov: did not receive HSTS header idgsupply.com: did not receive HSTS header idid.tk: could not connect to host idinby.dk: did not receive HSTS header idiopolis.org: could not connect to host -idiotentruppe.de: could not connect to host idisplay.es: could not connect to host idlekernel.com: could not connect to host idol-bikes.ru: could not connect to host -idontexist.me: did not receive HSTS header +idontexist.me: could not connect to host idsafe.co.za: could not connect to host idsoccer.com: did not receive HSTS header iec.pe: could not connect to host iemb.cf: could not connect to host -iemb.tk: could not connect to host ierna.com: did not receive HSTS header ies.id.lv: could not connect to host +ietsdoenofferte.nl: did not receive HSTS header ievgenialehner.com: did not receive HSTS header iexpert9.com: did not receive HSTS header if0.ru: could not connect to host @@ -6935,6 +7157,7 @@ ifastuniversity.com: did not receive HSTS header ifcfg.me: could not connect to host ifconfig.co: did not receive HSTS header ifleurs.com: could not connect to host +ifreetion.cn: did not receive HSTS header ifx.ee: could not connect to host ifxnet.com: could not connect to host ifxor.com: could not connect to host @@ -6944,11 +7167,9 @@ igd.chat: did not receive HSTS header igforums.com: could not connect to host igi.codes: did not receive HSTS header igiftcards.nl: did not receive HSTS header -ignace72.eu: could not connect to host ignatisd.gr: did not receive HSTS header -ignatovich.by: could not connect to host -igshpa.org: max-age too low: 0 igule.net: could not connect to host +iha6.com: could not connect to host ihongzu.com: could not connect to host ihotel.io: did not receive HSTS header ihrlotto.de: could not connect to host @@ -6958,6 +7179,7 @@ ihsbsd.tk: could not connect to host ihzys.com: could not connect to host iide.co: did not receive HSTS header iideaz.org: could not connect to host +iilin.com: did not receive HSTS header iispeed.com: did not receive HSTS header ijn-dd.nl: could not connect to host ijoda.com: could not connect to host @@ -6967,6 +7189,7 @@ ikenmeyer.com: could not connect to host ikenmeyer.eu: could not connect to host ikocik.sk: could not connect to host ikon.name: could not connect to host +ikraenglish.com: could not connect to host ikwilguidobellen.nl: could not connect to host ikzoekeengoedkopeauto.nl: could not connect to host ikzoekjeugdhulp.nl: did not receive HSTS header @@ -6982,6 +7205,7 @@ ilmconpm.de: could not connect to host iloilofit.org: did not receive HSTS header ilona.graphics: did not receive HSTS header iltec-prom.ru: could not connect to host +iltec.ru: could not connect to host iluvscotland.co.uk: did not receive HSTS header im-design.com.ua: did not receive HSTS header image.tf: could not connect to host @@ -7007,8 +7231,11 @@ imjiangtao.com: did not receive HSTS header imlinan.cn: could not connect to host imlinan.info: could not connect to host imlinan.net: could not connect to host +imlonghao.com: did not receive HSTS header immanuel60.hu: did not receive HSTS header +immaternity.com: could not connect to host immersionwealth.com: could not connect to host +immo-vk.de: did not receive HSTS header immobilien-wallat.de: could not connect to host immoprotect.ca: did not receive HSTS header immortals-co.com: did not receive HSTS header @@ -7037,7 +7264,7 @@ imoto.me: could not connect to host imperdintechnologies.com: could not connect to host imperialonlinestore.com: did not receive HSTS header imperialwebsolutions.com: did not receive HSTS header -implicitdenial.com: did not receive HSTS header +implicitdenial.com: could not connect to host imprenta-es.com: did not receive HSTS header improvingwp.com: could not connect to host impulse-clan.de: could not connect to host @@ -7045,14 +7272,12 @@ imrejonk.nl: could not connect to host imu.li: did not receive HSTS header imusic.dk: did not receive HSTS header imy.life: could not connect to host -imyrs.cn: could not connect to host inandeyes.com: did not receive HSTS header inb4.us: could not connect to host inbox.li: did not receive HSTS header inboxen.org: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no] incendiary-arts.com: could not connect to host inceptionradionetwork.com: could not connect to host -inche-ali.com: could not connect to host inchomatic.com: did not receive HSTS header increasetestosteronelevels.org: could not connect to host inderagamono.net: could not connect to host @@ -7084,16 +7309,14 @@ infinitusgaming.eu: could not connect to host infinity-freedom.com: could not connect to host infinity-freedom.de: could not connect to host infinity-lifestyle.de: could not connect to host -infinitybas.com: could not connect to host -infinityepos.co.uk: could not connect to host inflate-a-bubbles.co.uk: did not receive HSTS header inflation.ml: could not connect to host influxus.com: could not connect to host info-bay.com: could not connect to host info-sys.tk: could not connect to host -infoamin.com: could not connect to host +infoamin.com: did not receive HSTS header +infocoin.es: did not receive HSTS header infoduv.fr: did not receive HSTS header -infopagina.es: did not receive HSTS header inforichjapan.com: did not receive HSTS header inforisposte.com: did not receive HSTS header informaticapremium.com: did not receive HSTS header @@ -7104,7 +7327,7 @@ infosoph.org: could not connect to host infotics.es: did not receive HSTS header infovae-idf.com: did not receive HSTS header infoworm.org: could not connect to host -infranium.info: could not connect to host +infradio.am: could not connect to host infranix.eu: max-age too low: 7360000 infrarank.com: could not connect to host infruction.com: could not connect to host @@ -7115,7 +7338,6 @@ ingesol.fr: did not receive HSTS header ingresscode.cn: did not receive HSTS header inhelix.com: could not connect to host inhive.group: did not receive HSTS header -iniiter.com: could not connect to host injapan.nl: could not connect to host injertoshorticolas.com: did not receive HSTS header injigo.com: did not receive HSTS header @@ -7129,6 +7351,7 @@ injust.tk: could not connect to host inkbunny.net: could not connect to host inked-guy.de: could not connect to host inkedguy.de: could not connect to host +inkhor.se: could not connect to host inkstory.gr: did not receive HSTS header inksupply.com: did not receive HSTS header inku.ovh: did not receive HSTS header @@ -7136,12 +7359,13 @@ inkvisual.tk: could not connect to host inleaked.com: could not connect to host innerform.com: could not connect to host innit.be: could not connect to host +innobatics.com: did not receive HSTS header innophate-security.nl: could not connect to host innovamag.ca: did not receive HSTS header innovativebuildingsolutions.co.za: could not connect to host innovativeideaz.org: could not connect to host innoventure.de: did not receive HSTS header -innovum.cz: did not receive HSTS header +inobun.jp: could not connect to host inondation.ch: could not connect to host inorder.website: could not connect to host inox.io: did not receive HSTS header @@ -7153,8 +7377,8 @@ insane-bullets.com: could not connect to host insane.zone: could not connect to host inschrijfformulier.com: could not connect to host inscript.pl: did not receive HSTS header +insho.fashion: did not receive HSTS header insideofgaming.de: could not connect to host -insidethefirewall.tk: could not connect to host insite-feedback.com: could not connect to host insouciant.org: could not connect to host inspirationconcepts.nl: did not receive HSTS header @@ -7168,7 +7392,6 @@ instantdev.io: could not connect to host instantsubs.de: did not receive HSTS header instaquiz.ru: could not connect to host instasex.ch: could not connect to host -institutmaupertuis.hopto.org: could not connect to host institutoflordelavida.com: could not connect to host institutulcultural.ro: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no] instruktor.io: could not connect to host @@ -7182,7 +7405,7 @@ intel.li: could not connect to host intelbet.es: did not receive HSTS header intelbet.ro: did not receive HSTS header intelldynamics.com: could not connect to host -intelliance.eu: could not connect to host +intensifyrsvp.com.au: could not connect to host interboursegeneva.ch: did not receive HSTS header interference.io: did not receive HSTS header interfug.de: did not receive HSTS header @@ -7194,6 +7417,7 @@ interhosts.co.za: could not connect to host interim-cto.de: could not connect to host interiorcheapo.com: could not connect to host interiorprofesional.com.ar: max-age too low: 604800 +interiortradingco.com.au: could not connect to host interleucina.org: did not receive HSTS header interlocal.co.uk: could not connect to host interlun.com: could not connect to host @@ -7230,6 +7454,7 @@ investcountry.com: could not connect to host investingdiary.cn: could not connect to host investingtrader.net: could not connect to host investnext.com: max-age too low: 43200 +investorloanshub.com: could not connect to host invictusmc.uk: could not connect to host invinsec.cloud: did not receive HSTS header invinsec.com: max-age too low: 86400 @@ -7261,9 +7486,8 @@ iplog.info: could not connect to host ipmimagazine.com: did not receive HSTS header ipmotion.ca: could not connect to host ipnetworking.net: could not connect to host -ipo-times.com: did not receive HSTS header +ipo-times.com: could not connect to host ipop.gr: did not receive HSTS header -iposm.net: could not connect to host iprice.co.id: did not receive HSTS header iprice.hk: did not receive HSTS header iprice.my: did not receive HSTS header @@ -7271,12 +7495,13 @@ iprice.ph: did not receive HSTS header iprice.sg: did not receive HSTS header iprice.vn: did not receive HSTS header ipricethailand.com: did not receive HSTS header -iprody.com: could not connect to host +iprody.com: did not receive HSTS header ipsilon-project.org: did not receive HSTS header iptel.ro: could not connect to host ipuservicedesign.com: could not connect to host ipv6.watch: did not receive HSTS header ipv6cloud.club: could not connect to host +ipv6demo.de: could not connect to host ipv6only.network: could not connect to host ipvsec.nl: could not connect to host iqcn.co: could not connect to host @@ -7297,7 +7522,6 @@ irmag.ru: did not receive HSTS header irmtrudjurke.de: did not receive HSTS header irodorinet.com: max-age too low: 0 iron-guard.net: did not receive HSTS header -ironhide.de: did not receive HSTS header irstaxforumsonline.com: did not receive HSTS header irugs.ch: did not receive HSTS header irugs.co.uk: did not receive HSTS header @@ -7306,17 +7530,13 @@ irukandjilabs.com: could not connect to host irun-telecom.co.uk: could not connect to host irvinepa.org: max-age too low: 10540800 is-a-furry.org: did not receive HSTS header -isaackabel.cf: could not connect to host -isaackabel.ga: could not connect to host -isaackabel.gq: could not connect to host -isaackabel.ml: could not connect to host -isaackabel.tk: could not connect to host ischool.co.jp: did not receive HSTS header isdf.me: could not connect to host isdown.cz: could not connect to host isef-eg.com: did not receive HSTS header iserv.fr: did not receive HSTS header iseulde.com: did not receive HSTS header +isfriday.com: could not connect to host ishadowsocks.ltd: could not connect to host ishillaryclintoninprisonyet.com: could not connect to host ishome.org: could not connect to host @@ -7326,11 +7546,12 @@ isisfighters.info: could not connect to host isitamor.pm: could not connect to host isitnuclearwaryet.com: could not connect to host iskai.net: did not receive HSTS header +islam.si: could not connect to host islandinthenet.com: did not receive HSTS header islandoilsupply.com: max-age too low: 300 islandpumpandtank.com: did not receive HSTS header islandzero.net: did not receive HSTS header -islief.com: could not connect to host +islazia.fr: could not connect to host isntall.us: did not receive HSTS header isocom.eu: could not connect to host isoface33.fr: did not receive HSTS header @@ -7345,31 +7566,37 @@ istanbul.systems: could not connect to host istanbultravelguide.info: could not connect to host istaspirtslietas.lv: did not receive HSTS header istgame.com: did not receive HSTS header -istheapplestoredown.com: did not receive HSTS header isthefieldcontrolsystemdown.com: could not connect to host istherrienstillcoach.com: could not connect to host +isv.online: did not receive HSTS header it-cave.com: could not connect to host it-go.net: did not receive HSTS header -it-kron.de: did not receive HSTS header it-labor.info: did not receive HSTS header it-schwerin.de: could not connect to host +it-sysoft.com: could not connect to host itad.top: could not connect to host +itbrief.co.nz: did not receive HSTS header +itbrief.com.au: did not receive HSTS header itchimes.com: did not receive HSTS header -itchy.nl: could not connect to host +itchybrainscentral.com: could not connect to host itechgeek.com: max-age too low: 0 items.lv: did not receive HSTS header itemton.com: could not connect to host itfaq.nl: did not receive HSTS header itfensi.net: max-age too low: 6307200 itforcc.com: did not receive HSTS header +itilo.de: did not receive HSTS header itinsight.hu: did not receive HSTS header +itiomassagem.com.br: did not receive HSTS header itisjustnot.cricket: could not connect to host itmanie.cz: could not connect to host +itnews-bg.com: could not connect to host itos.asia: did not receive HSTS header itos.pl: did not receive HSTS header itpol.dk: did not receive HSTS header itpro-mg.de: could not connect to host itproject.guru: did not receive HSTS header +itrack.in.th: could not connect to host itriskltd.com: did not receive HSTS header its-schindler.de: could not connect to host its-v.de: could not connect to host @@ -7377,16 +7604,17 @@ itsadog.co.uk: did not receive HSTS header itsagadget.com: did not receive HSTS header itsamurai.ru: max-age too low: 2592000 itsatrap.nl: could not connect to host -itsblue.de: could not connect to host itsecurityassurance.pw: could not connect to host itsg-faq.de: could not connect to host itshka.rv.ua: max-age too low: 604800 itshost.ru: could not connect to host itsmejohn.org: could not connect to host itsupport-luzern.ch: could not connect to host +ittop-gabon.com: could not connect to host itu2015.de: could not connect to host ius.io: did not receive HSTS header iuscommunity.org: did not receive HSTS header +ivanboi.com: could not connect to host ivanilla.org: could not connect to host ivanpolchenko.com: could not connect to host ivi-co.com: max-age too low: 0 @@ -7415,6 +7643,7 @@ j-lsolutions.com: could not connect to host j-rickroll-a.pw: could not connect to host j0ng.xyz: could not connect to host j15t98j.co.uk: did not receive HSTS header +j8y.de: did not receive HSTS header ja-publications.com: did not receive HSTS header jaan.su: could not connect to host jaaxypro.com: could not connect to host @@ -7422,7 +7651,6 @@ jackalworks.com: could not connect to host jackdoan.com: did not receive HSTS header jackfahnestock.com: could not connect to host jackops.com: could not connect to host -jackyyf.com: could not connect to host jacobparry.ca: max-age too low: 0 jacobsenarquitetura.com: max-age too low: 5184000 jadopado.com: could not connect to host @@ -7433,7 +7661,7 @@ jaimechanaga.com: could not connect to host jaion.ml: could not connect to host jak-na-les.cz: could not connect to host jakenbake.com: could not connect to host -jakewalker.xyz: could not connect to host +jakewalker.xyz: did not receive HSTS header jakincode.army: could not connect to host jaksel.id: could not connect to host jaksi.io: did not receive HSTS header @@ -7471,13 +7699,13 @@ jan-cermak.cz: did not receive HSTS header jan-daniels.de: did not receive HSTS header jan27.org: did not receive HSTS header janario.me: could not connect to host +janebondsurety.com: did not receive HSTS header jangho.me: could not connect to host jangocloud.tk: could not connect to host janheidler.dynv6.net: could not connect to host janhermann.cz: did not receive HSTS header janking.de: could not connect to host janmachynka.cz: could not connect to host -janmg.com: could not connect to host janosh.com: did not receive HSTS header janssen.fm: could not connect to host janus-engineering.de: did not receive HSTS header @@ -7494,10 +7722,12 @@ japanphilosophy.com: did not receive HSTS header japansm.com: could not connect to host japanwide.net: could not connect to host japaripark.com: could not connect to host +jape.today: could not connect to host japlex.com: could not connect to host jaqen.ch: could not connect to host jardins-utopie.net: could not connect to host jaredbates.net: did not receive HSTS header +jarl.ninja: could not connect to host jarnail.ca: could not connect to host jaroslavtrsek.cz: did not receive HSTS header jarrodcastaing.com: did not receive HSTS header @@ -7551,6 +7781,7 @@ jcor.me: could not connect to host jcoscia.com: could not connect to host jcraft.us: could not connect to host jctf.io: could not connect to host +jcyz.cf: could not connect to host jdav-leipzig.de: could not connect to host jdcdirectsales.com.ph: could not connect to host jdfk.net: could not connect to host @@ -7560,6 +7791,8 @@ jdsf.tk: did not receive HSTS header jean-remy.ch: could not connect to host jebengotai.com: did not receive HSTS header jecho.cn: could not connect to host +jeepeg.com: did not receive HSTS header +jeff.forsale: could not connect to host jeff.is: did not receive HSTS header jeff393.com: could not connect to host jeffersonregan.org: could not connect to host @@ -7571,6 +7804,7 @@ jekkt.com: max-age too low: 604800 jellow.nl: did not receive HSTS header jemoticons.com: did not receive HSTS header jenjoit.de: could not connect to host +jenniferchan.id.au: could not connect to host jennifercherniack.com: did not receive HSTS header jennybeaned.com: did not receive HSTS header jens-prangenberg.de: did not receive HSTS header @@ -7580,8 +7814,10 @@ jenssen.org: did not receive HSTS header jeremyc.ca: could not connect to host jeremye77.com: did not receive HSTS header jeremymade.com: did not receive HSTS header +jeremyness.com: could not connect to host jeremywagner.me: did not receive HSTS header jermann.biz: did not receive HSTS header +jeroenvanderwal.nl: did not receive HSTS header jeroldirvin.com: did not receive HSTS header jerrypau.ca: could not connect to host jesorsenville.com: did not receive HSTS header @@ -7602,6 +7838,7 @@ jewellerydesignstore.com: could not connect to host jewellerymarvels.com: did not receive HSTS header jez.nl: could not connect to host jfmel.com: did not receive HSTS header +jfmhero.me: could not connect to host jfnllc.com: did not receive HSTS header jfx.space: did not receive HSTS header jh-media.eu: could not connect to host @@ -7610,7 +7847,6 @@ jhburton.uk: could not connect to host jhcommunitysports.co.uk: could not connect to host jhejderup.me: could not connect to host jhermsmeier.de: could not connect to host -jhollandtranslations.com: could not connect to host jia1hao.com: could not connect to host jiaidu.com: could not connect to host jiangzequn.com: could not connect to host @@ -7626,10 +7862,11 @@ jimas.eu: did not receive HSTS header jimenacocina.com: did not receive HSTS header jimgao.tk: did not receive HSTS header jimmehcai.com: could not connect to host +jimmycai.org: could not connect to host +jimmynelson.com: did not receive HSTS header jingyuesi.com: could not connect to host jinliming.ml: could not connect to host jinmaguoji.com: could not connect to host -jinshavip.com: did not receive HSTS header jiosongs.com: did not receive HSTS header jira.com: did not receive HSTS header jirav.io: could not connect to host @@ -7645,25 +7882,28 @@ jkb.pics: could not connect to host jkbuster.com: could not connect to host jkng.eu: could not connect to host jko.works: could not connect to host +jkuvw.xyz: could not connect to host jlhmedia.com: did not receive HSTS header jm06.com: did not receive HSTS header jm22.com: could not connect to host jmb.lc: could not connect to host jmdekker.it: could not connect to host +jmssg.jp: could not connect to host jmvbmx.ch: could not connect to host jn1.me: did not receive HSTS header -jncde.de: could not connect to host -jncie.de: could not connect to host -jncip.de: could not connect to host -joacimeldre.com: did not receive HSTS header +jncde.de: did not receive HSTS header +jncie.de: did not receive HSTS header +jncie.eu: did not receive HSTS header +jncip.de: did not receive HSTS header joakimalgroy.com: could not connect to host joaquimgoliveira.pt: could not connect to host +job-offer.de: could not connect to host jobers.ch: did not receive HSTS header jobers.pt: did not receive HSTS header jobflyapp.com: could not connect to host jobmedic.com: could not connect to host jobshq.com: did not receive HSTS header -jobss.co.uk: could not connect to host +jobss.co.uk: did not receive HSTS header jobtestprep.de: max-age too low: 0 jobtestprep.dk: max-age too low: 0 jobtestprep.fr: max-age too low: 0 @@ -7675,13 +7915,12 @@ joe-pagan.com: did not receive HSTS header joearodriguez.com: could not connect to host joecod.es: could not connect to host joelgonewild.com: did not receive HSTS header -joellombardo.com: could not connect to host +joepitt.co.uk: could not connect to host joerg-wellpott.de: did not receive HSTS header joetyson.io: could not connect to host johannaojanen.com: could not connect to host johannes-bugenhagen.de: did not receive HSTS header johannes-sprink.de: could not connect to host -johansf.tech: could not connect to host johnbrownphotography.ch: did not receive HSTS header johncardell.com: did not receive HSTS header johners.me: could not connect to host @@ -7689,9 +7928,9 @@ johngaltgroup.com: did not receive HSTS header johnhgaunt.com: did not receive HSTS header johnrom.com: could not connect to host johnsanchez.io: could not connect to host -johnsiu.com: could not connect to host johntomasowa.com: could not connect to host johnverkerk.com: could not connect to host +joinamericacorps.gov: could not connect to host jointoweb.com: could not connect to host jomp16.tk: could not connect to host jonas-keidel.de: did not receive HSTS header @@ -7701,10 +7940,12 @@ jonathandowning.uk: did not receive HSTS header jonathanmassacand.ch: could not connect to host jonathanreyes.com: did not receive HSTS header jonathansanchez.pro: could not connect to host +jonathanselea.se: did not receive HSTS header jonfor.net: could not connect to host jongha.me: could not connect to host jonn.me: could not connect to host jonnichols.info: could not connect to host +jons.org: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no] jonsno.ws: could not connect to host joostbovee.nl: did not receive HSTS header jooto.com: did not receive HSTS header @@ -7724,7 +7965,6 @@ josahrens.me: could not connect to host josc.com.au: could not connect to host joseaveleira.es: did not receive HSTS header josecage.com: could not connect to host -josefottosson.se: max-age too low: 2592000 josephre.es: did not receive HSTS header joshi.su: could not connect to host joshplant.co.uk: could not connect to host @@ -7753,7 +7993,6 @@ jsbentertainment.nl: could not connect to host jsbevents.nl: could not connect to host jsblights.nl: could not connect to host jsc7776.com: did not receive HSTS header -jschoi.org: did not receive HSTS header jsg-technologies.de: did not receive HSTS header jsjyhzy.cc: could not connect to host json-viewer.com: did not receive HSTS header @@ -7769,6 +8008,7 @@ judge2020.com: did not receive HSTS header juiced.gs: did not receive HSTS header juka.pp.ua: could not connect to host juku-info.top: did not receive HSTS header +juku-wing.jp: could not connect to host julegoerke.de: did not receive HSTS header julenlanda.com: could not connect to host juliamweber.de: could not connect to host @@ -7779,6 +8019,8 @@ julianwallmeroth.de: could not connect to host juliaoantiguidades.com.br: could not connect to host juliawebber.co.za: could not connect to host julido.de: did not receive HSTS header +julio.jamil.nom.br: could not connect to host +juliohernandezgt.com: could not connect to host jumba.com.au: did not receive HSTS header jumbopan.com: could not connect to host jumbox.xyz: could not connect to host @@ -7790,7 +8032,7 @@ junaos.com: did not receive HSTS header junaos.xyz: did not receive HSTS header jundimax.com.br: could not connect to host junge-selbsthilfe.info: could not connect to host -jungleculture.co.za: could not connect to host +jungleculture.co.za: did not receive HSTS header junglegoat.xyz: did not receive HSTS header juniwalk.cz: could not connect to host junjung.me: could not connect to host @@ -7800,6 +8042,7 @@ juridiqueo.com: did not receive HSTS header juristeo.com: did not receive HSTS header jurke.com: did not receive HSTS header jurko.cz: could not connect to host +just-english.online: did not receive HSTS header just-pools.co.za: could not connect to host just2trade.com: did not receive HSTS header justiceforfathers.com: did not receive HSTS header @@ -7820,23 +8063,27 @@ juventusclublugano.ch: could not connect to host juventusmania1897.com: could not connect to host juwairen.cn: could not connect to host jvn.com: did not receive HSTS header -jvoice.net: could not connect to host +jvoice.net: did not receive HSTS header jwilsson.me: could not connect to host jwolt-lx.com: could not connect to host jxir.de: could not connect to host jxm.in: could not connect to host -jysperm.me: could not connect to host +jysperm.me: did not receive HSTS header jznet.org: could not connect to host k-dev.de: could not connect to host k-rickroll-g.pw: could not connect to host -k-wallet.com: could not connect to host +k-wallet.com: did not receive HSTS header k1cp.com: could not connect to host +k33k00.com: could not connect to host k38.cc: max-age too low: 3600 ka-clan.com: could not connect to host kaanduman.com: could not connect to host kaasbijwijn.nl: did not receive HSTS header +kabarlinux.id: could not connect to host +kabat-fans.cz: did not receive HSTS header kabinapp.com: did not receive HSTS header kabuabc.com: could not connect to host +kabus.org: could not connect to host kackscharf.de: could not connect to host kadioglumakina.com.tr: did not receive HSTS header kadmec.com: did not receive HSTS header @@ -7853,6 +8100,7 @@ kaiyuewu.com: could not connect to host kajlovo.cz: could not connect to host kakaomilchkuh.de: did not receive HSTS header kaketalk.com: did not receive HSTS header +kakie-gobocha.jp: could not connect to host kalami.nl: could not connect to host kaleidomarketing.com: did not receive HSTS header kaleidoskop-freiburg.de: did not receive HSTS header @@ -7870,7 +8118,6 @@ kanada.guide: could not connect to host kanagawachuo-hospital.jp: did not receive HSTS header kanar.nl: could not connect to host kancolle.me: could not connect to host -kandalife.com: could not connect to host kandec.co.jp: did not receive HSTS header kaneo-gmbh.de: did not receive HSTS header kanganer.com: could not connect to host @@ -7894,15 +8141,15 @@ kapucini.si: max-age too low: 0 kaputt.com: could not connect to host kapverde.guide: could not connect to host karamna.com: could not connect to host +karamomo.net: did not receive HSTS header +karanastic.com: did not receive HSTS header karaoketonight.com: could not connect to host karatekit.co.uk: did not receive HSTS header karatorian.org: did not receive HSTS header karjala-ski.ru: could not connect to host karloskontana.tk: could not connect to host karlproctor.co.uk: could not connect to host -karlstabo.se: max-age too low: 86400 karmaflux.com: did not receive HSTS header -karmic.com: max-age too low: 0 karpanhellas.com: could not connect to host kars.ooo: could not connect to host karting34.com: did not receive HSTS header @@ -7911,6 +8158,7 @@ kashdash.ca: could not connect to host kashis.com.au: max-age too low: 0 kat.al: max-age too low: 0 katalogakci.cz: did not receive HSTS header +katata-kango.ac.jp: could not connect to host kati0.com: could not connect to host katiaetdavid.fr: could not connect to host katja-nikolic-design.de: could not connect to host @@ -7937,11 +8185,11 @@ kawaiiku.de: could not connect to host kaydan.io: could not connect to host kayipmurekkep.com: could not connect to host kayon.cf: could not connect to host +kazamasion.com: did not receive HSTS header kazanasolutions.de: could not connect to host kazenojiyu.fr: did not receive HSTS header kbfl.org: could not connect to host kcluster.io: could not connect to host -kcore.org: max-age too low: 0 kd-plus.pp.ua: could not connect to host kdata.it: did not receive HSTS header kdbx.online: could not connect to host @@ -7986,7 +8234,6 @@ kermadec.com: did not receive HSTS header kermadec.net: could not connect to host kernelmode.io: did not receive HSTS header kernl.us: did not receive HSTS header -kerus.net: could not connect to host keshausconsulting.com: could not connect to host keskeces.com: did not receive HSTS header kesteren.com: could not connect to host @@ -7994,7 +8241,6 @@ kevindekoninck.com: could not connect to host kevinfoley.cc: could not connect to host kevinfoley.org: could not connect to host kevinmoreland.com: could not connect to host -kevinmorssink.nl: could not connect to host kevinroebert.de: did not receive HSTS header kevlar.pw: did not receive HSTS header kewego.co.uk: could not connect to host @@ -8004,9 +8250,10 @@ keyserver.sexy: could not connect to host kfbrussels.be: could not connect to host kg-rating.com: could not connect to host kgb.us: could not connect to host +kgregorczyk.pl: could not connect to host kgxtech.com: max-age too low: 2592000 khaganat.net: did not receive HSTS header -khaledgarbaya.net: did not receive HSTS header +khmath.com: did not receive HSTS header khosla.uk: could not connect to host ki-on.net: did not receive HSTS header kiaka.co: could not connect to host @@ -8038,17 +8285,19 @@ kinderbuecher-kostenlos.de: did not receive HSTS header kinderjugendfreizeitverein.de: could not connect to host kinderly.co.uk: did not receive HSTS header kinderopvangengeltjes.nl: did not receive HSTS header +kinderopvangzevenbergen.nl: did not receive HSTS header kinderwagen-test24.de: could not connect to host kindlyfire.com: could not connect to host kindof.ninja: could not connect to host kinepolis-studio.ga: could not connect to host kineto.space: could not connect to host kingclass.cn: could not connect to host +kingdomcrc.org: did not receive HSTS header kingmanhall.org: could not connect to host kingpincages.com: could not connect to host kingqueen.org.uk: did not receive HSTS header kinkdr.com: could not connect to host -kinmunity.com: could not connect to host +kinmunity.com: did not receive HSTS header kinnon.enterprises: could not connect to host kinow.com: did not receive HSTS header kinsmenhomelottery.com: did not receive HSTS header @@ -8062,9 +8311,10 @@ kiraboshi.xyz: could not connect to host kirainmoe.com: did not receive HSTS header kirara.eu: could not connect to host kirill.ws: could not connect to host +kirito.kr: could not connect to host kirkforsenate.com: could not connect to host kirkpatrickdavis.com: could not connect to host -kirrie.pe.kr: did not receive HSTS header +kirstin-peters.de: could not connect to host kisa.io: could not connect to host kisalt.im: could not connect to host kiss-register.org: could not connect to host @@ -8084,10 +8334,15 @@ kitestar.co.uk: did not receive HSTS header kitk.at: could not connect to host kitsostech.com: could not connect to host kitsta.com: could not connect to host +kiwi.global: could not connect to host kiwiirc.com: max-age too low: 5256000 +kiwipayment.com: could not connect to host +kiwipayments.com: could not connect to host +kiwiplace.com: could not connect to host +kix.moe: did not receive HSTS header kiyo.space: could not connect to host kizil.net: could not connect to host -kj1396.net: did not receive HSTS header +kj1391.com: did not receive HSTS header kjaermaxi.me: did not receive HSTS header kjg-bachrain.de: could not connect to host kjoglum.me: could not connect to host @@ -8104,6 +8359,7 @@ kleertjesvoordelig.nl: could not connect to host kleidertauschpartys.de: could not connect to host kleinerarchitekturfuehrer.de: could not connect to host kleinholding.com: could not connect to host +kleinserienproduktion.com: could not connect to host klempnershop.eu: did not receive HSTS header kleppe.co: could not connect to host kletterkater.com: did not receive HSTS header @@ -8113,15 +8369,16 @@ klingsundet.no: did not receive HSTS header kliqsd.com: could not connect to host kloentrup.de: max-age too low: 604800 klunkergarten.org: could not connect to host +kmdev.me: did not receive HSTS header knapen.io: max-age too low: 604800 knccloud.com: could not connect to host -knetterbak.nl: did not receive HSTS header kngk-azs.ru: could not connect to host knigadel.com: did not receive HSTS header knightsbridgegroup.org: could not connect to host knightsweep.com: could not connect to host knnet.ch: could not connect to host knowdebt.org: did not receive HSTS header +knowledgehook.com: did not receive HSTS header knowledgesnap.com: could not connect to host knowledgesnapsites.com: could not connect to host knownsec.cf: could not connect to host @@ -8150,6 +8407,7 @@ kompetenzwerft.de: did not receive HSTS header konata.us: could not connect to host kongbaofang.com: could not connect to host konicaprinterdriver.com: could not connect to host +koningskwartiertje.nl: could not connect to host konkurs.ba: could not connect to host kontakthuman.hu: did not receive HSTS header kontaxis.network: could not connect to host @@ -8160,17 +8418,18 @@ koordinate.net: could not connect to host koppelvlak.net: could not connect to host kopular.com: could not connect to host kori.ml: did not receive HSTS header +korinar.com: could not connect to host koriyoukai.net: did not receive HSTS header kornersafe.com: did not receive HSTS header korni22.org: could not connect to host korsanparti.org: could not connect to host kostuumstore.nl: could not connect to host kostya.net: did not receive HSTS header +kotakoo.id: could not connect to host kotomei.moe: could not connect to host kotonehoko.net: could not connect to host kotorimusic.ga: could not connect to host kotovstyle.ru: could not connect to host -kottur.is: could not connect to host koukni.cz: did not receive HSTS header kourpe.online: could not connect to host kousaku.jp: could not connect to host @@ -8218,10 +8477,9 @@ ksk-agentur.de: did not receive HSTS header kstan.me: could not connect to host kswcosmetics.com: could not connect to host kswriter.com: could not connect to host -kteen.info: could not connect to host +kteen.info: did not receive HSTS header ktube.yt: could not connect to host ku.io: did not receive HSTS header -kub.hr: could not connect to host kuba.guide: could not connect to host kubiwa.net: could not connect to host kubusadvocaten.nl: could not connect to host @@ -8238,6 +8496,7 @@ kum.com: could not connect to host kummerlaender.eu: did not receive HSTS header kundenerreichen.com: did not receive HSTS header kundenerreichen.de: did not receive HSTS header +kunstschule-krabax.de: did not receive HSTS header kuops.com: did not receive HSTS header kupdokuchyne.cz: could not connect to host kupelne-ptacek.sk: did not receive HSTS header @@ -8252,7 +8511,7 @@ kurz.pw: could not connect to host kurzonline.com.br: could not connect to host kuwago.io: could not connect to host kvt.berlin: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no] -kweddingplanning.com: could not connect to host +kweddingplanning.com: max-age too low: 0 kwidz.fr: did not receive HSTS header kwikmed.eu: could not connect to host kwipi.com: did not receive HSTS header @@ -8261,9 +8520,8 @@ kwondratsch.com: could not connect to host kxind.cn: did not receive HSTS header kyanite.co: could not connect to host kyberna.xyz: could not connect to host -kydara.com: did not receive HSTS header kykoonn.net: did not receive HSTS header -kylapps.com: could not connect to host +kylapps.com: did not receive HSTS header kyle.place: could not connect to host kylebaldw.in: did not receive HSTS header kylerwood.com: could not connect to host @@ -8271,12 +8529,15 @@ kylling.io: could not connect to host kymo.org: did not receive HSTS header kyochon.fr: could not connect to host kyonagashima.com: did not receive HSTS header +kyoto-k9.com: could not connect to host +kyoto-tomoshibi.jp: could not connect to host kyouko.nl: could not connect to host kyujin-office.net: could not connect to host kzjnet.com: could not connect to host l-rickroll-i.pw: could not connect to host l.me.uk: could not connect to host l18.io: could not connect to host +l3j.net: could not connect to host la-flora-negra.de: could not connect to host la-grande-jaugue.fr: did not receive HSTS header la-retraite-info.com: did not receive HSTS header @@ -8287,6 +8548,7 @@ labelleza.com.br: could not connect to host labfox.de: did not receive HSTS header labiblioafronebrulepas.com: could not connect to host labina.com.tr: did not receive HSTS header +labms.com.au: could not connect to host laboiteanem.fr: could not connect to host laboiteapc.fr: did not receive HSTS header labordata.io: could not connect to host @@ -8320,20 +8582,20 @@ laharilais.fr: did not receive HSTS header lainchan.org: did not receive HSTS header laisashop.com.br: could not connect to host lajijonencadebarbera.com: could not connect to host +lakatrop.com: could not connect to host lakefrontlittleelm.com: did not receive HSTS header lakehavasuhouserentals.com: could not connect to host lakewoodcomputerservices.com: could not connect to host -lakhesis.net: could not connect to host lalajj.com: could not connect to host laltroweb.it: did not receive HSTS header lamaland.ru: did not receive HSTS header lambda-complex.org: could not connect to host lambdafive.co.uk: could not connect to host -lamclam.site: could not connect to host lamomebijou.paris: did not receive HSTS header lampl.info: could not connect to host lamtv.com.mx: could not connect to host lan2k.org: max-age too low: 86400 +lana.swedbank.se: did not receive HSTS header lanauzedesigns.com: did not receive HSTS header lanboll.com: could not connect to host lanbyte.se: did not receive HSTS header @@ -8346,6 +8608,7 @@ landgoedverkopen.nl: could not connect to host landhuisverkopen.nl: could not connect to host landscape.canonical.com: max-age too low: 2592000 landscapingmedic.com: did not receive HSTS header +langatang.com: could not connect to host langenbach.rocks: could not connect to host langendorf-ernaehrung-training.de: could not connect to host langendries.eu: did not receive HSTS header @@ -8357,6 +8620,7 @@ lanzainc.xyz: could not connect to host laobox.fr: could not connect to host laohei.org: could not connect to host laospage.com: did not receive HSTS header +lapetition.be: could not connect to host laplaceduvillage.net: could not connect to host laquack.com: could not connect to host lared.ovh: did not receive HSTS header @@ -8391,14 +8655,17 @@ laurelspaandlash.com: did not receive HSTS header laureltv.org: did not receive HSTS header laurent-e-levy.com: did not receive HSTS header lausitzer-widerstand.de: could not connect to host +lavabit.no: could not connect to host lavapot.com: did not receive HSTS header laventainnhotel-mailing.com: could not connect to host lavine.ch: did not receive HSTS header lavito.cz: could not connect to host lawly.org: could not connect to host +lawrence-institute.com: could not connect to host laxatus.com: could not connect to host laxiongames.es: did not receive HSTS header layer8.tk: could not connect to host +laymans911.info: could not connect to host lazapateriahandmade.pe: did not receive HSTS header lazerus.net: could not connect to host lazulu.com: could not connect to host @@ -8411,6 +8678,7 @@ lbrt.xyz: could not connect to host lclarkpdx.com: could not connect to host lcti.biz: could not connect to host ldarby.me.uk: could not connect to host +ldcraft.pw: could not connect to host leadbook.ru: max-age too low: 604800 leadership9.com: could not connect to host leadgenie.me: could not connect to host @@ -8426,6 +8694,7 @@ learnedovo.com: did not receive HSTS header learnfrenchfluently.com: could not connect to host learningorder.com: could not connect to host lebal.se: could not connect to host +lebosse.me: could not connect to host lebrun.org: could not connect to host lecourtier.fr: did not receive HSTS header led-tl-wereld.nl: did not receive HSTS header @@ -8442,6 +8711,7 @@ leen.io: could not connect to host leerkotte.eu: could not connect to host leetsaber.com: did not receive HSTS header legal.farm: could not connect to host +legalcontrol.info: could not connect to host legaleus.co.uk: could not connect to host legalisepeacebloom.com: could not connect to host legalrobot-uat.com: could not connect to host @@ -8453,7 +8723,6 @@ legitaxi.com: did not receive HSTS header legymnase.eu: did not receive HSTS header lehtinen.xyz: could not connect to host leighneithardt.com: could not connect to host -leilautourdumon.de: did not receive HSTS header leinir.dk: did not receive HSTS header leitner.com.au: did not receive HSTS header lelehei.com: could not connect to host @@ -8462,8 +8731,6 @@ lelongbank.com: did not receive HSTS header lelubre.info: did not receive HSTS header lemon.co: could not connect to host lemonrockbiketours.com: did not receive HSTS header -lemonthy.ca: could not connect to host -lemonthy.com: could not connect to host lemp.io: did not receive HSTS header lenders.direct: could not connect to host lengyelnyelvoktatas.hu: could not connect to host @@ -8480,7 +8747,6 @@ lenzw.de: did not receive HSTS header leob.in: could not connect to host leon-jaekel.com: could not connect to host leonardcamacho.me: could not connect to host -leonhooijer.nl: could not connect to host leonmahler.consulting: did not receive HSTS header leopold.email: could not connect to host leopoldina.net: did not receive HSTS header @@ -8500,16 +8766,17 @@ lesdouceursdeliyana.com: could not connect to host lesecuadors.com: did not receive HSTS header lesformations.net: did not receive HSTS header lesh.eu: could not connect to host +lesjardinsdubanchet.fr: could not connect to host lesliekearney.com: did not receive HSTS header lesperlesdunet.fr: could not connect to host lesquatredauphins.fr: did not receive HSTS header lesquerda.cat: did not receive HSTS header lessing.consulting: did not receive HSTS header +let-go.cc: could not connect to host letempsdunefleur.be: could not connect to host leter.io: did not receive HSTS header lethbridgecoffee.com: did not receive HSTS header letitfly.me: could not connect to host -letraba.com: could not connect to host letras.mus.br: did not receive HSTS header letreview.ph: could not connect to host letsgetintouch.com: could not connect to host @@ -8557,6 +8824,7 @@ lianyexiuchang.in: could not connect to host liaoshuma.com: could not connect to host liaozheqi.cn: could not connect to host liaronce.win: could not connect to host +liautard.fr: could not connect to host libanco.com: could not connect to host libdeer.so: could not connect to host libertas-tech.com: could not connect to host @@ -8579,7 +8847,7 @@ liduan.com: could not connect to host liebach.me: did not receive HSTS header liebestarot.at: did not receive HSTS header lied8.eu: could not connect to host -liehuojun.com: did not receive HSTS header +liehuojun.com: could not connect to host liemen.net: did not receive HSTS header lietaer.eu: did not receive HSTS header life-time.nl: did not receive HSTS header @@ -8602,7 +8870,7 @@ lightning-ashe.com: did not receive HSTS header lightnovelsekai.com: could not connect to host lightpaste.com: could not connect to host lighttherapydevice.com: did not receive HSTS header -lightworx.io: did not receive HSTS header +lightworx.io: could not connect to host lignemalin.com: could not connect to host lignemax.com: did not receive HSTS header lignenet.com: did not receive HSTS header @@ -8619,7 +8887,7 @@ lilygreen.co.za: did not receive HSTS header limalama.eu: max-age too low: 1 limeyeti.com: could not connect to host limiteddata.co.uk: could not connect to host -limitget.com: could not connect to host +limitget.com: did not receive HSTS header limodo-shop.de: did not receive HSTS header limpens.net: did not receive HSTS header limpido.it: could not connect to host @@ -8634,7 +8902,6 @@ lingolia.com: did not receive HSTS header lingros-test.tk: could not connect to host lingting.vip: could not connect to host linguaquote.com: did not receive HSTS header -linguatrip.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no] linhaoyi.com: could not connect to host link.ba: could not connect to host linkage.ph: did not receive HSTS header @@ -8650,6 +8917,7 @@ linostassi.net: could not connect to host linpx.com: could not connect to host linux-admin-california.com: could not connect to host linux-mint.cz: could not connect to host +linux.army: could not connect to host linux.sb: could not connect to host linuxandstuff.de: could not connect to host linuxcode.net: could not connect to host @@ -8661,8 +8929,10 @@ linuxmint.cz: could not connect to host linuxmonitoring.net: could not connect to host linvx.org: did not receive HSTS header linxmind.eu: could not connect to host +lipo.lol: could not connect to host liquid.solutions: did not receive HSTS header liquidcomm.net: could not connect to host +liquidwarp.net: could not connect to host liquimoly.market: did not receive HSTS header liquorsanthe.in: could not connect to host lisaco.de: could not connect to host @@ -8675,7 +8945,6 @@ listage.ovh: did not receive HSTS header lists.mayfirst.org: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no] litcc.com: could not connect to host litcomphonors.com: could not connect to host -literarymachin.es: could not connect to host litespeed.io: could not connect to host litevault.net: did not receive HSTS header little.pw: could not connect to host @@ -8683,10 +8952,10 @@ littledisney.ro: did not receive HSTS header littlefreelibrary.org: did not receive HSTS header littlelife.co.uk: did not receive HSTS header littleservice.cn: could not connect to host +littleskin.cn: did not receive HSTS header liud.im: could not connect to host liujunyang.com: did not receive HSTS header liukang.tech: could not connect to host -liushuyu.tk: could not connect to host liv3ly.com: did not receive HSTS header livechatlady.info: did not receive HSTS header livedemo.io: could not connect to host @@ -8694,7 +8963,6 @@ livej.am: could not connect to host livejasmin.dk: could not connect to host liverewrite.com: could not connect to host livesearch-fukuoka.com: did not receive HSTS header -livi.co: could not connect to host liviababynet.com.br: could not connect to host livinghealthywithchocolate.com: did not receive HSTS header livrariahugodesaovitor.com.br: could not connect to host @@ -8708,6 +8976,7 @@ llamasweet.tech: could not connect to host lll.st: could not connect to host llslb.com: could not connect to host llvm.us: could not connect to host +lmcm.io: could not connect to host lmrcouncil.gov: could not connect to host ln.io: could not connect to host lnbeauty.ru: max-age too low: 0 @@ -8716,6 +8985,7 @@ loacg.com: did not receive HSTS header loadingdeck.com: did not receive HSTS header loadso.me: could not connect to host loafbox.com: could not connect to host +loafhead.me: could not connect to host loanmatch.sg: could not connect to host loansonline.today: could not connect to host loanstreet.be: could not connect to host @@ -8730,8 +9000,9 @@ localdrive.me: could not connect to host localnetwork.nz: could not connect to host location-fichier-email.com: could not connect to host locationvoitureautriche.com: could not connect to host +locationvoiturecorse.net: could not connect to host locationvoiturefinlande.com: could not connect to host -locationvoitureirlande.com: could not connect to host +locationvoitureirlande.com: did not receive HSTS header locationvoitureislande.com: could not connect to host locationvoiturenorvege.com: could not connect to host locationvoiturepaysbas.com: could not connect to host @@ -8755,6 +9026,7 @@ logcat.info: could not connect to host logfile.ch: did not receive HSTS header logic8.ml: could not connect to host logicaladvertising.com: could not connect to host +logicoma.com: could not connect to host logicsale.com: did not receive HSTS header logicsale.de: did not receive HSTS header logicsale.fr: did not receive HSTS header @@ -8781,12 +9053,16 @@ lolicore.ch: could not connect to host lolidunno.com: could not connect to host lolis.stream: could not connect to host lollaconcept.com.br: could not connect to host +lonal.com: could not connect to host +lonasdigital.com: did not receive HSTS header lonbali.com: did not receive HSTS header londoncalling.co: did not receive HSTS header +londonkan.jp: could not connect to host londonlanguageexchange.com: could not connect to host londonseedcentre.co.uk: could not connect to host lonerwolf.com: did not receive HSTS header longboarding-ulm.de: could not connect to host +longtaitouwang.com: did not receive HSTS header look-at-my.site: could not connect to host lookout.com: did not receive HSTS header looktothestars.org: did not receive HSTS header @@ -8805,6 +9081,7 @@ lostarq.com: could not connect to host lostg.com: did not receive HSTS header lostinsecurity.com: could not connect to host lostinweb.eu: could not connect to host +lostwithdan.com: could not connect to host loteks.de: did not receive HSTS header lothai.re: did not receive HSTS header lothuytinhsi.com: could not connect to host @@ -8861,17 +9138,16 @@ ltu.social: could not connect to host luan.ma: did not receive HSTS header lubot.net: could not connect to host lucas-garte.com: did not receive HSTS header -lucasantarella.com: could not connect to host lucascantor.com: did not receive HSTS header lucascodes.com: could not connect to host -lucasgaland.com: could not connect to host lucassoler.com.ar: could not connect to host lucaterzini.com: could not connect to host -luchscheider.de: could not connect to host lucidlogs.com: could not connect to host luckydog.pw: could not connect to host luckystarfishing.com: did not receive HSTS header luclu7.pw: could not connect to host +lucysan.net: could not connect to host +ludum.pl: could not connect to host ludwig.click: did not receive HSTS header lufthansaexperts.com: max-age too low: 2592000 luis-checa.com: could not connect to host @@ -8888,8 +9164,9 @@ luludapomerania.com: could not connect to host luma.family: could not connect to host luma.pink: could not connect to host lumd.me: could not connect to host +lumer.tech: could not connect to host lumi.do: did not receive HSTS header -luminancy.com: could not connect to host +luminancy.com: did not receive HSTS header lunapatch.com: max-age too low: 7889238 lunarift.com: could not connect to host lunarrift.net: could not connect to host @@ -8913,10 +9190,13 @@ luxinmo.com: did not receive HSTS header luxonetwork.com: could not connect to host luxus-russen.de: could not connect to host luzeshomologadas.com.br: could not connect to host +luzfaltex.com: did not receive HSTS header +lwhate.com: could not connect to host lycly.top: could not connect to host lydia-und-simon.de: could not connect to host -lydiagorstein.com: could not connect to host +lydiagorstein.com: did not receive HSTS header lylares.com: did not receive HSTS header +lynkos.com: did not receive HSTS header lyonelkaufmann.ch: did not receive HSTS header lyonl.com: did not receive HSTS header lyscnd.com: could not connect to host @@ -8929,6 +9209,7 @@ lzqii.cn: could not connect to host lzzr.me: did not receive HSTS header m-ali.xyz: did not receive HSTS header m-generator.com: could not connect to host +m-idea.jp: could not connect to host m-rickroll-v.pw: could not connect to host m-warrior.tk: could not connect to host m.gparent.org: could not connect to host @@ -8943,7 +9224,6 @@ ma-musique.fr: could not connect to host maarten.nyc: could not connect to host maartenprovo.be: did not receive HSTS header maartenterpstra.xyz: could not connect to host -mabulledu.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no] mac-torrents.me: did not receive HSTS header mac-world.pl: did not receive HSTS header macandtonic.com: did not receive HSTS header @@ -8960,12 +9240,12 @@ macleodnc.com: did not receive HSTS header macsandcheesedreams.com: could not connect to host macstore.pe: did not receive HSTS header macustar.eu: did not receive HSTS header -madandpissedoff.com: could not connect to host +madandpissedoff.com: did not receive HSTS header madcatdesign.de: did not receive HSTS header maddin.ga: could not connect to host madebyfalcon.co.uk: did not receive HSTS header madebymagnitude.com: did not receive HSTS header -madeglobal.com: could not connect to host +madeglobal.com: did not receive HSTS header madeinorder.com: did not receive HSTS header madeintucson.org: could not connect to host mademoiselle-emma.be: could not connect to host @@ -8982,6 +9262,7 @@ mafiareturns.com: max-age too low: 2592000 magazinedabeleza.net: could not connect to host magebankin.com: did not receive HSTS header magenx.com: did not receive HSTS header +magi.systems: could not connect to host magia360.com: did not receive HSTS header magicball.co: could not connect to host magieblanche.fr: did not receive HSTS header @@ -9003,6 +9284,7 @@ mailhost.it: could not connect to host mailing-femprendedores.com: did not receive HSTS header mailing-jbgg.com: could not connect to host mailon.ga: could not connect to host +mailpenny.com: could not connect to host main-street-seo.com: did not receive HSTS header main-unit.com: could not connect to host maintainerheaven.ch: could not connect to host @@ -9021,6 +9303,7 @@ makerstuff.net: did not receive HSTS header makeshiftco.de: did not receive HSTS header makeuplove.nl: could not connect to host makeyourlaws.org: could not connect to host +makinen.ru: could not connect to host malamutedoalasca.com.br: could not connect to host maldiverna.guide: could not connect to host maleexcel.com: did not receive HSTS header @@ -9035,6 +9318,7 @@ malkaso.com.ua: could not connect to host mallner.me: could not connect to host malmstroms-co.se: could not connect to host malone.link: could not connect to host +malte-kiefer.de: did not receive HSTS header maltes.website: could not connect to host malvy.kiev.ua: could not connect to host malwre.io: could not connect to host @@ -9045,6 +9329,7 @@ mamadoma.com.ua: could not connect to host mamaison.io: could not connect to host mamastore.eu: could not connect to host mamaxi.org: did not receive HSTS header +mammeitalianeavienna.com: could not connect to host mammothmail.com: could not connect to host mammothmail.net: could not connect to host mammothmail.org: could not connect to host @@ -9081,17 +9366,21 @@ manova.cz: could not connect to host mansfieldplacevt.com: did not receive HSTS header manshop24.com: could not connect to host mansion-note.com: did not receive HSTS header +mansiontech.cn: did not receive HSTS header manududu.com.br: could not connect to host manuelrueger.de: could not connect to host -manufacturing.gov: could not connect to host manutrol.com.br: did not receive HSTS header +maomaobt.com: did not receive HSTS header maomaofuli.vip: could not connect to host maosi.xin: could not connect to host maple5.com: did not receive HSTS header maplenorth.co: did not receive HSTS header mapresidentielle.fr: did not receive HSTS header +maquillage-permanent-tatoo.com: did not receive HSTS header maranatha.pl: did not receive HSTS header marbinvest.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no] +marc-schlagenhauf.de: could not connect to host +marcaixala.me: could not connect to host marcberman.co: could not connect to host marcbuehlmann.com: did not receive HSTS header marcelmarnitz.com: could not connect to host @@ -9100,6 +9389,7 @@ marcelwiedemeier.com: [Exception... "Component returned failure code: 0x80004005 marchagen.nl: did not receive HSTS header marche-nordic-jorat.ch: could not connect to host marchhappy.tech: did not receive HSTS header +marcianoandtopazio.com: could not connect to host marco-kretz.de: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no] marco01809.net: could not connect to host marcoececilia.it: did not receive HSTS header @@ -9110,7 +9400,7 @@ marcosteixeira.tk: could not connect to host marcschlagenhauf.de: could not connect to host marcus-scheffler.com: did not receive HSTS header marcush.de: could not connect to host -marcusserver.synology.me: did not receive HSTS header +marcusserver.synology.me: could not connect to host mardelcupon.com: could not connect to host mare92.cz: could not connect to host mareklecian.cz: did not receive HSTS header @@ -9118,12 +9408,12 @@ margaretrosefashions.co.uk: could not connect to host mariacristinadoces.com.br: did not receive HSTS header mariannematthew.com: could not connect to host marianwehlus.de: did not receive HSTS header +mariaolesen.dk: could not connect to host marie-curie.fr: could not connect to host marie-elisabeth.dk: did not receive HSTS header marie-en-provence.com: did not receive HSTS header marie.club: could not connect to host marienschule-sundern.de: did not receive HSTS header -marin-dom.ru: could not connect to host mariusschulte.de: did not receive HSTS header mark-a-hydrant.com: did not receive HSTS header mark-armstrong-gaming.com: could not connect to host @@ -9134,7 +9424,7 @@ marketgot.com: did not receive HSTS header marketing-advertising.eu: could not connect to host marketingdesignu.cz: could not connect to host marketingromania.ro: did not receive HSTS header -marklauman.ca: could not connect to host +marketio.co: could not connect to host markllego.com: could not connect to host marko-fenster24.de: did not receive HSTS header markorszulak.com: did not receive HSTS header @@ -9152,10 +9442,10 @@ marleyresort.com: did not receive HSTS header marqperso.ch: could not connect to host marquepersonnelle.ch: could not connect to host marriottvetcareers.com: could not connect to host +marsatapp.com: could not connect to host marshut.net: could not connect to host martialc.be: could not connect to host martiert.com: could not connect to host -martijnvanderzande.nl: did not receive HSTS header martijnvhoof.nl: could not connect to host martin-arend.de: did not receive HSTS header martin-mattel.com: could not connect to host @@ -9170,10 +9460,11 @@ marumagic.com: did not receive HSTS header marvinkeller.de: could not connect to host marxist.party: could not connect to host marykshoup.com: could not connect to host +masa-hou.com: did not receive HSTS header masa-yoga.com: did not receive HSTS header masa.li: could not connect to host masaze-hanka.cz: could not connect to host -mashandco.it: could not connect to host +maservant.net: could not connect to host mashek.net: could not connect to host mashnew.com: could not connect to host masjidtawheed.net: did not receive HSTS header @@ -9185,6 +9476,7 @@ massot.eu: did not receive HSTS header mastd.fr: could not connect to host mastd.onl: could not connect to host masteragenasia.com: did not receive HSTS header +masteragenasia.net: did not receive HSTS header masterapi.ninja: did not receive HSTS header masterhaus.bg: did not receive HSTS header masteringtheterminal.com: did not receive HSTS header @@ -9214,7 +9506,9 @@ mateusmeyer.com.br: could not connect to host mateuszpilszek.pl: could not connect to host mathers.ovh: did not receive HSTS header mathias.re: did not receive HSTS header +mathieui.net: could not connect to host mathijskingma.nl: could not connect to host +mathis.com.tr: did not receive HSTS header matillat.ovh: did not receive HSTS header matlabjo.ir: could not connect to host matomeplus.co: could not connect to host @@ -9224,19 +9518,22 @@ matrip.de: could not connect to host matrix.ac: could not connect to host matrixcheats.net: could not connect to host matsuz.com: did not receive HSTS header +matt-brooks.com: could not connect to host matt.tf: did not receive HSTS header mattandreko.com: did not receive HSTS header mattberryman.com: did not receive HSTS header matterconcern.com: could not connect to host matthew-carson.info: could not connect to host matthewemes.com: did not receive HSTS header +matthewgrow.com: did not receive HSTS header matthewprenger.com: could not connect to host matthewtester.com: did not receive HSTS header matthiassteen.be: could not connect to host matthiasweiler.de: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no] +mattia98.org: could not connect to host mattisam.com: did not receive HSTS header mattressinsider.com: max-age too low: 3153600 -mattwb65.com: could not connect to host +mattwb65.com: did not receive HSTS header matty.digital: did not receive HSTS header matze.org: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no] maultrom.ml: could not connect to host @@ -9260,13 +9557,13 @@ maya.mg: could not connect to host maybeul.com: could not connect to host maynardnetworks.com: could not connect to host mayoristassexshop.com: did not receive HSTS header +maze.design: did not receive HSTS header mazurlabs.tk: could not connect to host mazyun.com: did not receive HSTS header mazz-tech.com: could not connect to host mbanq.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no] mbconsultancy.nu: did not receive HSTS header mbdrogenbos-usedcars.be: could not connect to host -mbsec.net: could not connect to host mbwemmel-usedcars.be: could not connect to host mc81.com: did not receive HSTS header mca2017.org: did not receive HSTS header @@ -9274,26 +9571,24 @@ mcadmin.net: could not connect to host mcard.vn: did not receive HSTS header mcb-bank.com: did not receive HSTS header mcc.re: could not connect to host -mccarty.io: did not receive HSTS header +mccarty.io: could not connect to host mccordworks.com: did not receive HSTS header mcdanieldevelopmentservices.com: could not connect to host mcdonalds.ru: did not receive HSTS header mcga.media: could not connect to host mcgavocknissanwichitaparts.com: could not connect to host mchan.us: did not receive HSTS header -mchopkins.net: could not connect to host mcideas.tk: could not connect to host mcjackk77.com: could not connect to host mckinley1.com: could not connect to host mckinleytk.com: could not connect to host mclab.su: max-age too low: 2592000 mclist.it: could not connect to host -mcmillansedationdentistry.com: did not receive HSTS header mcnoobs.pro: could not connect to host mcooperlaw.com: did not receive HSTS header -mcpart.land: could not connect to host mcqyy.com: could not connect to host mcsa-usa.org: could not connect to host +mcsniper.co: could not connect to host mcsnovatamabayan.com: could not connect to host mctherealm.net: could not connect to host mcuexchange.com: did not receive HSTS header @@ -9302,7 +9597,7 @@ md-student.com: did not receive HSTS header mdfnet.se: did not receive HSTS header mdscomp.net: did not receive HSTS header mdwftw.com: could not connect to host -me-dc.com: did not receive HSTS header +me-dc.com: could not connect to host meadowfenfarm.com: could not connect to host meadowviewfarms.org: could not connect to host mealz.com: did not receive HSTS header @@ -9334,13 +9629,14 @@ mediumraw.org: did not receive HSTS header mediweed.tk: could not connect to host medm-test.com: could not connect to host medpot.net: did not receive HSTS header +medsindex.com: max-age too low: 2592000 medstreaming.com: did not receive HSTS header medy-me.com: could not connect to host medzinenews.com: did not receive HSTS header meedoenzaanstad.nl: did not receive HSTS header meetfinch.com: could not connect to host meetmibaby.co.uk: could not connect to host -meetscompany.jp: did not receive HSTS header +meetscompany.jp: could not connect to host megadrol.com: could not connect to host megakiste.de: could not connect to host megam.host: could not connect to host @@ -9355,6 +9651,7 @@ meine-reise-gut-versichert.de: did not receive HSTS header meinebo.it: could not connect to host meisterritter.de: did not receive HSTS header meizufans.eu: could not connect to host +mekongeye.com: could not connect to host melakaltenegger.at: did not receive HSTS header melangebrasil.com: could not connect to host melaniebilodeau.com: did not receive HSTS header @@ -9376,20 +9673,20 @@ members.mayfirst.org: did not receive HSTS header memdoc.org: could not connect to host memeblast.ninja: could not connect to host memepasmal.org: could not connect to host +memes.nz: could not connect to host memetrash.co.uk: could not connect to host -memo-linux.com: could not connect to host memory-plus-180.com: could not connect to host memorygame.io: did not receive HSTS header memorytrace.space: could not connect to host menaraannonces.com: could not connect to host menchez.me: could not connect to host +mennace.com: did not receive HSTS header menotag.com: did not receive HSTS header mensachterdepatient.nl: max-age too low: 2592000 mensmaximus.de: did not receive HSTS header mentax.net: did not receive HSTS header menthix.net: could not connect to host menudrivetest.com: could not connect to host -menuel.me: could not connect to host menuiserie-berard.com: did not receive HSTS header menzaijia.com: could not connect to host meo.de: could not connect to host @@ -9402,26 +9699,33 @@ mercedes-benz-usedcars.be: could not connect to host mercury-studio.com: did not receive HSTS header mereckas.com: could not connect to host meredithkm.info: did not receive HSTS header +meremobil.dk: did not receive HSTS header mergozzo.com: did not receive HSTS header merimatka.fi: could not connect to host meritz.rocks: could not connect to host mersinunivercity.com: could not connect to host merson.me: could not connect to host +mertak.cz: did not receive HSTS header meshlab.co: could not connect to host -meshok.info: could not connect to host meshotes.com: max-age too low: 8640000 meskdeals.com: could not connect to host mesmoque.com: could not connect to host messagescelestes.ca: did not receive HSTS header +meta-word.com: could not connect to host metadistribution.com: did not receive HSTS header metaether.net: could not connect to host metagrader.com: could not connect to host metalsculpture.co.uk: max-age too low: 0 metasyntactic.xyz: could not connect to host +metaword.com: could not connect to host +metaword.net: could not connect to host +metaword.org: could not connect to host metebalci.com: did not receive HSTS header meteosky.net: could not connect to host meter.md: could not connect to host +metikam.pl: did not receive HSTS header metin2blog.de: did not receive HSTS header +metin2sepeti.com: could not connect to host metis.pw: could not connect to host metrans-spedition.de: could not connect to host metricaid.com: did not receive HSTS header @@ -9445,7 +9749,6 @@ mfiles.pl: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_ mfrsgb45.org: did not receive HSTS header mft.global: could not connect to host mfxer.com: could not connect to host -mgcraft.net: could not connect to host mgdigital.fr: did not receive HSTS header mgiay.com: did not receive HSTS header mgoessel.de: did not receive HSTS header @@ -9460,14 +9763,13 @@ mia.ac: could not connect to host mia.to: could not connect to host miamicityballet.org: did not receive HSTS header mianfei-vpn.com: could not connect to host +miboulot.com: could not connect to host michael-schilling.de: did not receive HSTS header -michaelcullen.name: could not connect to host michaeldemuth.com: could not connect to host michaelfitzpatrickruth.com: did not receive HSTS header michaelklos.nl: could not connect to host michaelmorpurgo.com: did not receive HSTS header -michaeln.net: did not receive HSTS header -michaels-homepage-service.de: could not connect to host +michaeln.net: could not connect to host michaelscrivo.com: did not receive HSTS header michaelsulzer.com: did not receive HSTS header michaelsulzer.eu: did not receive HSTS header @@ -9483,13 +9785,13 @@ michiganmetalartwork.com: max-age too low: 7889238 mico.world: could not connect to host miconware.de: could not connect to host micro-dv.ru: could not connect to host -micro-rain-systems.com: could not connect to host +micro-rain-systems.com: did not receive HSTS header +microbiote-insectes-vecteurs.group: did not receive HSTS header microblading.pe: could not connect to host microdesic.com: could not connect to host microme.ga: could not connect to host micropple.net: could not connect to host microtalk.org: could not connect to host -midgawash.com: could not connect to host midirs.org: did not receive HSTS header midonet.org: did not receive HSTS header midriversmotorsllc.com: did not receive HSTS header @@ -9505,11 +9807,11 @@ mightymillionslottery.com: did not receive HSTS header mightymillionsraffle.com: did not receive HSTS header migrantskillsregister.org.uk: could not connect to host migrator.co: could not connect to host +miguelgfierro.com: did not receive HSTS header miguksaram.com: could not connect to host mijn-email.org: could not connect to host mijndiad.nl: did not receive HSTS header mijnkredietpaspoort.nl: could not connect to host -mijntransacties.nl: could not connect to host mika.cat: could not connect to host mikadesign.se: did not receive HSTS header mikaela.info: did not receive HSTS header @@ -9521,13 +9823,14 @@ mikek.work: did not receive HSTS header mikeology.org: could not connect to host mikepair.net: could not connect to host mikes.tk: could not connect to host -mikeybailey.org: could not connect to host mikeybot.com: could not connect to host mikii.club: could not connect to host mikk.cz: could not connect to host +mikkelscheike.com: could not connect to host +mikkelvej.dk: could not connect to host mikro-inwestycje.co.uk: did not receive HSTS header miku.be: could not connect to host -miku.hatsune.my: did not receive HSTS header +miku.hatsune.my: could not connect to host mikusinec.com: could not connect to host milahendri.com: did not receive HSTS header milang.xyz: could not connect to host @@ -9541,13 +9844,18 @@ millibitcoin.jp: could not connect to host millionairessecrets.com: could not connect to host millstep.de: did not receive HSTS header milonga.tips: could not connect to host +mim.properties: could not connect to host mimbeim.com: did not receive HSTS header +mimm.gov: could not connect to host mimoderoupa.pt: could not connect to host min.kiwi: could not connect to host +minacssas.com: could not connect to host minantavla.se: could not connect to host mind.sh: did not receive HSTS header +mindbodycontinuum.com: could not connect to host mindcell.no: could not connect to host mindcraft.ga: could not connect to host +mindturbo.com: did not receive HSTS header mine.world: could not connect to host minecraft-forum.cf: could not connect to host minecraft-forum.ga: could not connect to host @@ -9584,6 +9892,7 @@ minor.news: could not connect to host minora.io: could not connect to host minoris.se: did not receive HSTS header mintea-noua.ro: could not connect to host +minu.link: could not connect to host mipiaci.co.nz: did not receive HSTS header mipiaci.com.au: did not receive HSTS header miragrow.com: could not connect to host @@ -9598,15 +9907,15 @@ miruc.co: did not receive HSTS header mirucon.com: did not receive HSTS header misconfigured.io: could not connect to host miscreant.me: could not connect to host -misericordiasegrate.org: did not receive HSTS header +misericordiasegrate.org: could not connect to host misgluteosperfectos.com: did not receive HSTS header misiondelosangeles-mailing.com: did not receive HSTS header misiru.jp: could not connect to host -misrv.com: did not receive HSTS header +missguidedus.com: did not receive HSTS header missrain.tw: could not connect to host missycosmeticos.com.br: could not connect to host mist.ink: could not connect to host -mister.hosting: did not receive HSTS header +mister.hosting: could not connect to host misterl.net: did not receive HSTS header misuzu.moe: could not connect to host mitarbeiter-pc.de: did not receive HSTS header @@ -9622,12 +9931,11 @@ miyako-kyoto.jp: could not connect to host miyoshi-kikaku.co.jp: could not connect to host mizd.at: could not connect to host mizi.name: could not connect to host -mjcaffarattilaw.com: did not receive HSTS header +mjcaffarattilaw.com: could not connect to host mjhsc.nl: did not receive HSTS header mk-dizajn.com: could not connect to host mkacg.com: could not connect to host mkakh.xyz: could not connect to host -mkasu.org: could not connect to host mkfs.be: could not connect to host mkfs.fr: could not connect to host mkg-palais-hanau.de: did not receive HSTS header @@ -9637,12 +9945,14 @@ mkplay.io: could not connect to host mkw.st: could not connect to host mlcambiental.com.br: did not receive HSTS header mlcdn.co: could not connect to host +mlm-worldwide.de: did not receive HSTS header mlpchan.net: could not connect to host mlpepilepsy.org: could not connect to host mlpvc-rr.ml: did not receive HSTS header mlrslateroofing.com.au: did not receive HSTS header mlsrv.de: could not connect to host -mmaps.ddns.net: could not connect to host +mm-wife.com: could not connect to host +mmarnitz.de: could not connect to host mmcc.pe: did not receive HSTS header mmgazhomeloans.com: did not receive HSTS header mmilog.hu: could not connect to host @@ -9655,7 +9965,7 @@ mnetworkingsolutions.co.uk: could not connect to host mnmt.no: did not receive HSTS header mnwt.nl: could not connect to host moar.so: did not receive HSTS header -moas.design: could not connect to host +moas.design: did not receive HSTS header moas.photos: did not receive HSTS header mobaircon.com: did not receive HSTS header mobile-gesundheit.org: could not connect to host @@ -9671,7 +9981,7 @@ mobilpass.no: could not connect to host mobimalin.com: did not receive HSTS header mobisium.com: did not receive HSTS header mobiwalk.com: could not connect to host -mobix5.com: did not receive HSTS header +mobix5.com: could not connect to host mobmp4.co: could not connect to host mobmp4.com: could not connect to host mobmp4.info: could not connect to host @@ -9684,10 +9994,12 @@ mocsuite.club: could not connect to host modalrakyat.com: could not connect to host modalrakyat.id: did not receive HSTS header modaperuimport.com: could not connect to host +modcentral.pw: max-age too low: 2592000 modded-minecraft-server-list.com: could not connect to host moddedark.com: could not connect to host mode-marine.com: could not connect to host modecaso.com: could not connect to host +modehaus-marionk.de: could not connect to host model9.io: did not receive HSTS header modelsclub.org.ua: could not connect to host modemagazines.co.uk: could not connect to host @@ -9710,7 +10022,9 @@ moellers.it: could not connect to host moeloli.pw: did not receive HSTS header moelord.org: could not connect to host moen.io: did not receive HSTS header +moeqing.net: could not connect to host moevenpick-cafe.com: did not receive HSTS header +moeyun.net: could not connect to host mogry.net: did not receive HSTS header mohio.co.nz: did not receive HSTS header moho.kr: could not connect to host @@ -9719,9 +10033,12 @@ moitur.com: did not receive HSTS header mojapraca.sk: did not receive HSTS header mojefilmy.xyz: could not connect to host mojizuri.jp: max-age too low: 86400 +mojnet.eu: could not connect to host +mojnet.net: could not connect to host +mojoco.co.za: could not connect to host mokadev.com: did not receive HSTS header molokai.org: could not connect to host -mols.me: did not receive HSTS header +mols.me: could not connect to host momento.co.id: did not receive HSTS header momfulfilled.com: could not connect to host mommel.com: could not connect to host @@ -9729,14 +10046,17 @@ mommelonline.de: could not connect to host momoka.moe: could not connect to host mon-a-lisa.com: did not receive HSTS header mon-mobile.com: did not receive HSTS header +mona-antenna.com: did not receive HSTS header mona.lu: could not connect to host monalisa.wtf: could not connect to host monarca.systems: could not connect to host monasterialis.eu: could not connect to host monautoneuve.fr: did not receive HSTS header mondar.io: could not connect to host +mondedie.fr: could not connect to host mondopoint.com: did not receive HSTS header mondwandler.de: could not connect to host +moneoci.com.br: could not connect to host moneromerchant.com: could not connect to host moneycrownmedia.com: could not connect to host moneyfactory.gov: did not receive HSTS header @@ -9745,28 +10065,29 @@ mongla88.net: could not connect to host monicabeckstrom.no: could not connect to host monika-sokol.de: did not receive HSTS header monitaure.io: could not connect to host +monitman.com: did not receive HSTS header monitman.solutions: could not connect to host +monitorchain.com: did not receive HSTS header monitori.ng: could not connect to host monkieteel.nl: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no] monochrometoys.com: could not connect to host monodukuri.cafe: did not receive HSTS header monodzukuri.cafe: did not receive HSTS header monokoo.com: could not connect to host -monoseis-monotica.gr: max-age too low: 300 monotsuku.com: could not connect to host monozukuri.cafe: did not receive HSTS header montanacures.org: could not connect to host montanana.com: did not receive HSTS header +montand.com: did not receive HSTS header monteurzimmerfrei.de: could not connect to host montonicms.com: could not connect to host -moo.pet: could not connect to host +moo.pet: did not receive HSTS header moobo.xyz: did not receive HSTS header moodifiers.com: could not connect to host moon.lc: could not connect to host moonchart.co.uk: did not receive HSTS header moonless.net: could not connect to host moonloupe.com: could not connect to host -moonrhythm.info: did not receive HSTS header moonrhythm.io: did not receive HSTS header moonysbouncycastles.co.uk: could not connect to host moosemanstudios.com: could not connect to host @@ -9788,8 +10109,8 @@ morganestes.com: max-age too low: 0 morganino.eu: could not connect to host morningcalculation.com: could not connect to host morninglory.com: did not receive HSTS header -mornings.com: did not receive HSTS header -morotech.com.br: could not connect to host +mornings.com: could not connect to host +morotech.com.br: did not receive HSTS header morpheusx.at: could not connect to host morpheusxaut.net: could not connect to host morpork.xyz: could not connect to host @@ -9803,6 +10124,7 @@ motherbase.io: could not connect to host motherboard.services: could not connect to host motionfreight.com: could not connect to host motionpicturesolutions.com: did not receive HSTS header +motocollection.pl: did not receive HSTS header motocyklovedily.cz: did not receive HSTS header motomorgen.com: could not connect to host motorbiketourhanoi.com: could not connect to host @@ -9817,10 +10139,10 @@ moube.fr: could not connect to host moudicat.com: max-age too low: 6307200 moula.com.au: did not receive HSTS header moumaobuchiyu.com: could not connect to host -mountain-rock.ru: could not connect to host mountainadventureseminars.com: did not receive HSTS header mountainmusicpromotions.com: did not receive HSTS header movabletype.net: max-age too low: 3600 +moveltix.net: could not connect to host movepin.com: could not connect to host movie4k.fyi: could not connect to host movie4k.life: could not connect to host @@ -9831,7 +10153,7 @@ moviesabout.net: could not connect to host moviespur.info: did not receive HSTS header moving-pixtures.de: could not connect to host movingoklahoma.org: could not connect to host -movio.ga: did not receive HSTS header +movio.ga: could not connect to host mowalls.net: could not connect to host moy-gorod.od.ua: did not receive HSTS header moyu.host: did not receive HSTS header @@ -9846,12 +10168,11 @@ mp3donusturucu.net: did not receive HSTS header mp3gratuiti.com: could not connect to host mp3juices.is: could not connect to host mpi-sa.fr: did not receive HSTS header -mpkossen.com: could not connect to host +mpkossen.com: did not receive HSTS header mpn.poker: did not receive HSTS header mpserver12.org: could not connect to host mr-coffee.net: could not connect to host mr-hosting.com: could not connect to host -mr-nachhilfe.de: did not receive HSTS header mrafrohead.com: could not connect to host mrawe.com: could not connect to host mrburtbox.com: could not connect to host @@ -9870,8 +10191,7 @@ mrnonz.com: max-age too low: 0 mrparker.pw: did not receive HSTS header mrpopat.in: did not receive HSTS header mrpropop.com: max-age too low: 0 -mrs-shop.com: could not connect to host -mrtunnel.club: did not receive HSTS header +mrs-shop.com: did not receive HSTS header mruganiepodspacja.pl: could not connect to host msc-seereisen.net: could not connect to host msgallery.tk: could not connect to host @@ -9879,7 +10199,7 @@ msp66.de: could not connect to host mstd.tokyo: did not receive HSTS header mstdn-tech.jp: could not connect to host mstdn.nl: could not connect to host -mstiles92.com: did not receive HSTS header +mstiles92.com: could not connect to host msz-fotografie.de: could not connect to host mszaki.com: did not receive HSTS header mt.me.uk: could not connect to host @@ -9890,12 +10210,9 @@ mtd.ovh: could not connect to host mtdn.jp: could not connect to host mtfgnettoyage.fr: could not connect to host mtg-esport.de: did not receive HSTS header -mtg-tutor.de: could not connect to host mtirc.co: could not connect to host mtn.cc: could not connect to host -mtrock.ru: could not connect to host mu3on.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no] -muahahahaha.co.uk: could not connect to host muchohentai.com: could not connect to host muffet.pw: could not connect to host muga.space: could not connect to host @@ -9916,6 +10233,7 @@ mundoalpha.com.br: did not receive HSTS header mundodapoesia.com: did not receive HSTS header munecoscabezones.com: did not receive HSTS header munich-rage.de: did not receive HSTS header +munirajiwa.com: could not connect to host munkiepus.com: did not receive HSTS header munpanel.com: could not connect to host munrabi.com: could not connect to host @@ -9932,6 +10250,7 @@ murraycolin.org: could not connect to host murrayrun.com: did not receive HSTS header mursu.directory: could not connect to host murz.tv: could not connect to host +murzik.space: could not connect to host muscleangels.com: could not connect to host museminder2.com: did not receive HSTS header museumstreak.com: did not receive HSTS header @@ -9967,6 +10286,7 @@ myandroidtools.cc: could not connect to host myandroidtools.pro: could not connect to host myappliancerepairhouston.com: did not receive HSTS header myartsway.com: did not receive HSTS header +mybboard.pl: could not connect to host mybudget.xyz: could not connect to host mybuilderinlondon.co.uk: did not receive HSTS header mybusiness.cm: did not receive HSTS header @@ -9974,6 +10294,7 @@ mycamda.com: could not connect to host mychocolateweightloss.com: could not connect to host myclientsplus.com: did not receive HSTS header mycollab.net: could not connect to host +mycolorado.gov: could not connect to host mycontrolmonitor.com: could not connect to host mycoted.com: did not receive HSTS header myday.eu.com: did not receive HSTS header @@ -9988,7 +10309,8 @@ myepass.de: could not connect to host myfappening.org: could not connect to host myfdic.gov: could not connect to host myfunworld.de: could not connect to host -mygate.at: could not connect to host +mygalgame.com: could not connect to host +mygate.at: did not receive HSTS header mygaysitges.com: could not connect to host mygivingcircle.org: did not receive HSTS header mygooder.com: did not receive HSTS header @@ -9996,16 +10318,19 @@ mygov.scot: did not receive HSTS header mygpsite.com: did not receive HSTS header mygreatjob.eu: could not connect to host myhair.asia: did not receive HSTS header +myhloli.com: did not receive HSTS header myhostname.net: did not receive HSTS header myicare.org: did not receive HSTS header myiocc.org: did not receive HSTS header myip.tech: max-age too low: 2592000 +myipaddr.de: did not receive HSTS header mykolab.com: did not receive HSTS header mykreuzfahrt.de: could not connect to host mylene-chandelier.me: did not receive HSTS header mylighthost.com: did not receive HSTS header mylocalsearch.co.uk: did not receive HSTS header mylotto.co.nz: could not connect to host +mymadina.com: could not connect to host mymp3singer.co: could not connect to host mymp3singer.net: could not connect to host mymp3singer.site: could not connect to host @@ -10027,12 +10352,16 @@ mypagella.com: could not connect to host mypagella.eu: could not connect to host mypagella.it: could not connect to host mypanier.com: max-age too low: 7889238 +mypaperwriter.com: could not connect to host +myparfumerie.at: did not receive HSTS header mypension.ca: could not connect to host myphonebox.de: could not connect to host myptsite.com: could not connect to host myqdu.cn: could not connect to host myqdu.com: could not connect to host +myrig.com.ua: did not receive HSTS header myrig.io: could not connect to host +myrig.ru: did not receive HSTS header myrsa.in: did not receive HSTS header myruststats.com: could not connect to host mysa.is: could not connect to host @@ -10043,15 +10372,16 @@ mysteryblog.de: did not receive HSTS header mystown.org: could not connect to host mystudy.me: could not connect to host mytc.fr: could not connect to host +mythemeshop.com: did not receive HSTS header mythlogic.com: did not receive HSTS header mythslegendscollection.com: did not receive HSTS header mytravelblog.de: could not connect to host +mywallets.io: could not connect to host myweb360.de: did not receive HSTS header myxbox.gr: max-age too low: 0 myzone.com: did not receive HSTS header mzlog.win: could not connect to host mzorn.photography: could not connect to host -n-kanazawa.jp: max-age too low: 0 n-rickroll-e.pw: could not connect to host n-x.info: did not receive HSTS header n0099.cf: did not receive HSTS header @@ -10061,7 +10391,7 @@ n2host.eu: could not connect to host n2x.in: could not connect to host n3twork.net: could not connect to host n4l.pw: could not connect to host -n64chan.me: could not connect to host +n64chan.me: did not receive HSTS header n8ch.net: could not connect to host na.hn: did not receive HSTS header naano.org: could not connect to host @@ -10069,11 +10399,8 @@ nabru.co.uk: did not receive HSTS header nabu-bad-nauheim.de: did not receive HSTS header nabytko.cz: could not connect to host nacktetatsachen.at: did not receive HSTS header -nadaquenosepas.com: could not connect to host nadia.pt: could not connect to host -nadyaolcer.fr: could not connect to host nagaragem.com.br: did not receive HSTS header -nagelfam.com: could not connect to host nagios.by: did not receive HSTS header nagoya-kyuyo.com: could not connect to host naiaspa.fr: did not receive HSTS header @@ -10083,10 +10410,10 @@ nais.me: did not receive HSTS header najedlo.sk: could not connect to host nakada4610.com: could not connect to host nakamastreamingcommunity.com: could not connect to host +nakanishi-paint.com: could not connect to host nakhonidc.com: could not connect to host nakitbonus2.com: could not connect to host nakliyatsirketi.biz: could not connect to host -nako.no: did not receive HSTS header nakuro.de: could not connect to host nalao-company.com: did not receive HSTS header nalifornia.com: could not connect to host @@ -10110,7 +10437,6 @@ nanfangstone.com: could not connect to host nani.io: did not receive HSTS header naniki.co.uk: could not connect to host nanogeneinc.com: could not connect to host -nanogi.ga: could not connect to host nanokamo.com: did not receive HSTS header nanosingularity.com: could not connect to host nanrenba.net: could not connect to host @@ -10125,7 +10451,7 @@ narodniki.com: did not receive HSTS header narviz.com: did not receive HSTS header nasarawanewsonline.com: could not connect to host nasmocopati.com: did not receive HSTS header -nasralmabrooka.com: did not receive HSTS header +nasralmabrooka.com: could not connect to host nastysclaw.com: could not connect to host natalia-fadeeva.ru: could not connect to host natalia.io: did not receive HSTS header @@ -10137,7 +10463,6 @@ nate.sh: could not connect to host natenom.com: max-age too low: 7200 natenom.de: max-age too low: 7200 natenom.name: max-age too low: 7200 -nathankonopinski.com: could not connect to host nathanmfarrugia.com: did not receive HSTS header nationalmall.gov: could not connect to host nationwidevehiclecontracts.co.uk: did not receive HSTS header @@ -10152,8 +10477,8 @@ nauck.org: did not receive HSTS header naudles.me: could not connect to host nav.jobs: could not connect to host naval.tf: could not connect to host -navdeep.ca: could not connect to host naviaddress.io: did not receive HSTS header +navigate-it-services.de: did not receive HSTS header naviteq.eu: could not connect to host navjobs.com: could not connect to host nawroth.info: could not connect to host @@ -10171,6 +10496,7 @@ nc99.co: could not connect to host ncc60205.info: could not connect to host ncdesigns-studio.com: could not connect to host nchristo.com: did not receive HSTS header +ncloud.freeddns.org: could not connect to host ncpc.gov: could not connect to host ncpw.gov: did not receive HSTS header ncrmnt.org: did not receive HSTS header @@ -10179,7 +10505,7 @@ nctx.co.uk: did not receive HSTS header ndmath.club: could not connect to host ndtblog.com: could not connect to host ndtmarket.place: could not connect to host -ne1home.dyndns.org: did not receive HSTS header +ne1home.dyndns.org: could not connect to host neap.io: could not connect to host near.st: did not receive HSTS header nearbiwa.com: did not receive HSTS header @@ -10209,6 +10535,7 @@ nellen.it: did not receive HSTS header nemanja.top: did not receive HSTS header nemno.de: could not connect to host nemovement.org: could not connect to host +nemplex.win: could not connect to host neoani.me: did not receive HSTS header neocyd.com: could not connect to host neofelhz.space: could not connect to host @@ -10216,7 +10543,7 @@ neojames.me: could not connect to host neonisi.com: could not connect to host neonnuke.tech: did not receive HSTS header neosolution.ca: did not receive HSTS header -neotist.com: did not receive HSTS header +nephy.jp: could not connect to host nercp.org.uk: did not receive HSTS header nerd42.de: could not connect to host nerdbox.cc: did not receive HSTS header @@ -10224,7 +10551,6 @@ nerdjokes.de: could not connect to host nerfroute.com: could not connect to host neris.io: could not connect to host neriumhcp.com: did not receive HSTS header -nerpa-club.ru: could not connect to host nesantuoka.lt: could not connect to host nestone.ru: could not connect to host net-navi.cc: did not receive HSTS header @@ -10239,23 +10565,25 @@ netbuzz.ru: could not connect to host netde.jp: could not connect to host netdego.jp: could not connect to host netfs.pl: did not receive HSTS header +netguide.co.nz: did not receive HSTS header netherwind.eu: did not receive HSTS header netlilo.com: could not connect to host netloanusa.com: could not connect to host netmagik.com: did not receive HSTS header netprofile.com.au: did not receive HSTS header netresourcedesign.com: could not connect to host -netronome.com: did not receive HSTS header netsafeid.biz: did not receive HSTS header netscaler.expert: could not connect to host netsight.org: could not connect to host netsparkercloud.com: did not receive HSTS header netsystems.pro: could not connect to host +nettacompany.com.tr: did not receive HSTS header nettefoundation.com: could not connect to host +networx-online.de: could not connect to host netzbit.de: could not connect to host netzpolitik.org: max-age too low: 2592000 netztest.at: did not receive HSTS header -netzvieh.de: did not receive HSTS header +netzvieh.de: could not connect to host netzzwerg4u.de: did not receive HSTS header neuch.info: did not receive HSTS header neueonlinecasino2016.com: could not connect to host @@ -10296,8 +10624,8 @@ next-taxi.ru: could not connect to host next176.sk: did not receive HSTS header next47.com: did not receive HSTS header nextcloud.li: could not connect to host -nextcloud.nerdpol.ovh: could not connect to host nextcloud.org: could not connect to host +nextend.org: could not connect to host nexth.de: could not connect to host nexth.net: did not receive HSTS header nexth.us: could not connect to host @@ -10309,7 +10637,7 @@ nextshutter.com: did not receive HSTS header nexusbyte.de: could not connect to host nexuscorporation.in: could not connect to host nfhome.be: did not receive HSTS header -nfls.io: did not receive HSTS header +nfluence.org: could not connect to host nfo.so: could not connect to host ng-firewall.com: did not receive HSTS header ng-security.com: could not connect to host @@ -10336,10 +10664,12 @@ nicolaelmer.ch: did not receive HSTS header nicolasbettag.me: did not receive HSTS header nicolasdutour.com: did not receive HSTS header nicolasklotz.de: did not receive HSTS header +nicoleoquendo.com: max-age too low: 2592000 niconiconi.xyz: could not connect to host nicorevin.ru: could not connect to host nidux.com: did not receive HSTS header niduxcomercial.com: could not connect to host +niedersetz.de: did not receive HSTS header nien.chat: could not connect to host nien.com.tw: could not connect to host nienfun.com: could not connect to host @@ -10381,15 +10711,13 @@ nishaswonderland.nl: did not receive HSTS header nishikino-maki.com: could not connect to host nishisbma.com: could not connect to host nitaonline.org: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no] -niva.synology.me: did not receive HSTS header niveldron.com: could not connect to host nixien.fr: could not connect to host nixmag.net: could not connect to host nixne.st: could not connect to host -nkadvertising.online: did not receive HSTS header +nkadvertising.online: could not connect to host nkautoservice.nl: did not receive HSTS header nkb.in.th: could not connect to host -nkp-media.de: could not connect to host nlegall.fr: did not receive HSTS header nll.fi: could not connect to host nmadda.com: did not receive HSTS header @@ -10401,24 +10729,28 @@ nmueller.at: could not connect to host nnote.net: could not connect to host nnya.cat: could not connect to host no17sifangjie.cc: could not connect to host +noc.wang: could not connect to host nocallaghan.com: could not connect to host noclegi-online.pl: did not receive HSTS header noctinus.tk: could not connect to host node-core-app.com: could not connect to host nodebrewery.com: could not connect to host nodechate.xyz: could not connect to host +nodecompat.com: could not connect to host nodefiles.com: could not connect to host +nodefoo.com: could not connect to host nodepanel.net: did not receive HSTS header +nodepositcasinouk.com: did not receive HSTS header nodeselect.com: could not connect to host nodespin.com: did not receive HSTS header nodetemple.com: could not connect to host nodi.at: did not receive HSTS header +nodum.io: did not receive HSTS header noegoph.com: did not receive HSTS header noelblog.ga: could not connect to host noelssanssoucipensacola.com: did not receive HSTS header noesberts-weidmoos.de: did not receive HSTS header noexpect.org: could not connect to host -noima.com: did not receive HSTS header noisebridge.social: could not connect to host nojok.es: could not connect to host nolag.host: could not connect to host @@ -10427,10 +10759,13 @@ nolberg.net: did not receive HSTS header nolimits.net.nz: could not connect to host nolimitsbook.de: did not receive HSTS header nolte.work: could not connect to host +nomagic.software: did not receive HSTS header nomorebytes.de: could not connect to host nonemu.ninja: could not connect to host +noodlecrave.com: did not receive HSTS header noodlesandwich.com: did not receive HSTS header noodleyum.com: did not receive HSTS header +nootropicpedia.com: could not connect to host nootropicsource.com: did not receive HSTS header nope.website: could not connect to host nopex.no: could not connect to host @@ -10442,13 +10777,15 @@ norden.eu.org: could not connect to host nordic-survival.de: did not receive HSTS header nordiccasinocommunity.com: did not receive HSTS header nordlicht.photography: did not receive HSTS header +nordseeblicke.de: did not receive HSTS header +noref.tk: could not connect to host norge.guide: could not connect to host normalady.com: could not connect to host normanschwaneberg.de: did not receive HSTS header north.supply: could not connect to host northcutt.com: did not receive HSTS header northernmuscle.ca: could not connect to host -northpennvwparts.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no] +northpennvwparts.com: max-age too low: 604800 northwoodsfish.com: could not connect to host nosbenevolesontdutalent.com: could not connect to host nosecretshop.com: could not connect to host @@ -10496,20 +10833,21 @@ novfishing.ru: [Exception... "Component returned failure code: 0x80004005 (NS_ER novinhabucetuda.com: could not connect to host novinivo.com: did not receive HSTS header novtest.ru: did not receive HSTS header +nowcost.com: could not connect to host noworrywp.com: could not connect to host nowprotein.com: did not receive HSTS header +nowremindme.com: could not connect to host nozoe.jp: could not connect to host npm.li: did not receive HSTS header -npmg.org: max-age too low: 0 npol.de: could not connect to host npool.org: could not connect to host nq7.pl: could not connect to host nrc-gateway.gov: could not connect to host nrechn.de: could not connect to host nrizzio.me: could not connect to host -nrnjn.xyz: did not receive HSTS header +nrnjn.xyz: could not connect to host +nrvn.cc: did not receive HSTS header nrvnastudios.com: could not connect to host -nsa.ovh: could not connect to host nsbfalconacademy.org: could not connect to host nsdev.cn: could not connect to host nsellier.fr: did not receive HSTS header @@ -10529,7 +10867,7 @@ nu3.de: did not receive HSTS header nu3.fr: did not receive HSTS header nube.ninja: did not receive HSTS header nubeslayer.com: could not connect to host -nuclear-crimes.com: could not connect to host +nuclear-crimes.com: did not receive HSTS header nuclearcrimes.com: did not receive HSTS header nuclearcrimes1.com: did not receive HSTS header nudel.ninja: could not connect to host @@ -10539,6 +10877,7 @@ nugetdependencies.com: did not receive HSTS header nuiguru.me: could not connect to host nukenet.se: could not connect to host nukute.com: did not receive HSTS header +nulap.com: could not connect to host null-pointer.eu: did not receive HSTS header null-sec.ru: could not connect to host null.cat: did not receive HSTS header @@ -10568,12 +10907,12 @@ nwa.xyz: could not connect to host nweb.co.nz: could not connect to host nwork.media: did not receive HSTS header nxt.sh: did not receive HSTS header -nyadora.com: could not connect to host nyanpasu.tv: could not connect to host nyatane.com: could not connect to host nyazeeland.guide: could not connect to host nycroth.com: could not connect to host nyesider.org: could not connect to host +nyffo.com: did not receive HSTS header nylonfeetporn.com: could not connect to host nyored.com: did not receive HSTS header nyphox.net: could not connect to host @@ -10615,16 +10954,17 @@ occupymedia.org: could not connect to host ochaken.cf: could not connect to host ocmeulebeke.be: did not receive HSTS header ocrami.us: did not receive HSTS header +octal.es: could not connect to host octanio.com: could not connect to host octo.im: could not connect to host octocat.ninja: could not connect to host octod.tk: could not connect to host octofox.de: did not receive HSTS header -octothorpe.ninja: could not connect to host oddmouse.com: could not connect to host odin.xxx: could not connect to host odinkapital.no: did not receive HSTS header odinoffice.no: did not receive HSTS header +odisealinux.com: did not receive HSTS header odosblog.de: could not connect to host odysseyandco.com: could not connect to host odysseyconservationtrust.com: did not receive HSTS header @@ -10635,7 +10975,7 @@ ofer.site: did not receive HSTS header off-the-clock.us: could not connect to host offenedialoge.de: max-age too low: 2592000 offersgame.com: could not connect to host -offerstone.cl: did not receive HSTS header +offerstone.cl: could not connect to host offgames.pro: could not connect to host office-ruru.com: could not connect to host officeclub.com.mx: did not receive HSTS header @@ -10644,13 +10984,13 @@ offshore-unternehmen.com: could not connect to host offshorefirma-gruenden.com: could not connect to host offshoremarineparts.com: did not receive HSTS header offtherails.ie: could not connect to host +ofggolf.com: could not connect to host oficinadocelular.com.br: could not connect to host ofo2.com: could not connect to host oganek.ie: could not connect to host oganime.com: did not receive HSTS header oggw.us: could not connect to host ogkw.de: could not connect to host -oglen.ca: could not connect to host ogogoshop.com: could not connect to host ogrodywstudniach.pl: did not receive HSTS header ohayosoro.me: could not connect to host @@ -10666,7 +11006,6 @@ oishioffice.com: did not receive HSTS header ojbk.eu: could not connect to host ojeremy.com: could not connect to host ojls.co: could not connect to host -ojp.gov: could not connect to host okad-center.de: could not connect to host okad.de: could not connect to host okad.eu: could not connect to host @@ -10683,13 +11022,15 @@ olcso-vps-szerver.hu: could not connect to host oldandyounglesbians.us: could not connect to host oldschool-criminal.com: did not receive HSTS header oldtimer-trifft-flugplatz.de: did not receive HSTS header -olgui.net: could not connect to host oliverdunk.com: did not receive HSTS header ollehbizev.co.kr: could not connect to host +ols.io: did not receive HSTS header olswangtrainees.com: could not connect to host olympe-transport.fr: did not receive HSTS header omacostudio.com: could not connect to host +omar.yt: could not connect to host omarh.net: could not connect to host +omeuanimal.com: did not receive HSTS header omgaanmetidealen.com: could not connect to host ominto.com: did not receive HSTS header omise.co: did not receive HSTS header @@ -10733,6 +11074,7 @@ onionsburg.com: could not connect to host online-casino.eu: did not receive HSTS header online-scene.com: did not receive HSTS header online-wetten.de: did not receive HSTS header +online.swedbank.se: did not receive HSTS header onlinebiller.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no] onlinebillingform.com: could not connect to host onlinecasinobluebook.com: could not connect to host @@ -10752,7 +11094,6 @@ onlyzero.net: could not connect to host onmuvo.com: could not connect to host onmyoji.biz: could not connect to host onnee.ch: could not connect to host -ono.es: did not receive HSTS header ononpay.com: did not receive HSTS header onovlena.dn.ua: could not connect to host onpatient.com: did not receive HSTS header @@ -10780,6 +11121,7 @@ oopsorup.com: could not connect to host oost.io: could not connect to host opatut.de: did not receive HSTS header opcaobolsas.com.br: could not connect to host +open-domotics.info: could not connect to host open-future.be: did not receive HSTS header open-mx.de: could not connect to host open-to-repair.fr: max-age too low: 86400 @@ -10813,12 +11155,13 @@ opinionipannolini.it: could not connect to host opioids.com: could not connect to host oppag.com.br: did not receive HSTS header opperwall.net: could not connect to host -opportunitycorps.org: max-age too low: 43200 opposer.me: could not connect to host opsafewinter.net: could not connect to host opsbears.com: did not receive HSTS header +opsnotepad.com: could not connect to host opstacks.com: could not connect to host optenhoefel.de: could not connect to host +optiekzien.nl: did not receive HSTS header optimal-e.com: did not receive HSTS header optimista.soy: could not connect to host optimize-jpg.com: could not connect to host @@ -10827,6 +11170,8 @@ optumrxhealthstore.com: could not connect to host opunch.org: did not receive HSTS header oracaodocredo.com.br: could not connect to host orangekey.tk: could not connect to host +orangenuts.in: could not connect to host +oranges.tokyo: could not connect to host orangetravel.eu: could not connect to host oranic.com: did not receive HSTS header orbiosales.com: could not connect to host @@ -10845,8 +11190,6 @@ orelavtomaster.ru: did not receive HSTS header orfeo-engineering.ch: could not connect to host organic-superfood.net: could not connect to host organicae.com: did not receive HSTS header -organisationsberatung-jacobi.de: did not receive HSTS header -orhideous.name: did not receive HSTS header oricejoc.com: could not connect to host originalmockups.com: did not receive HSTS header originalsport.com.br: could not connect to host @@ -10857,9 +11200,8 @@ orleika.ml: could not connect to host oroweatorganic.com: could not connect to host orthodoxy.lt: did not receive HSTS header orui.com.br: could not connect to host +orum.in: could not connect to host osaiyuwu.com: could not connect to host -osaka-fukushi.jp: max-age too low: 0 -osaka-jusan.jp: max-age too low: 0 oscarmashauri.com: did not receive HSTS header oscillation-services.fr: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no] oscloud.com.ua: could not connect to host @@ -10867,7 +11209,6 @@ oscreen.me: could not connect to host oscreen.org: could not connect to host oscsdp.cz: could not connect to host osdls.gov: did not receive HSTS header -osereso.tn: could not connect to host osha-kimi.com: did not receive HSTS header oshanko.de: could not connect to host oshinagaki.jp: could not connect to host @@ -10883,6 +11224,7 @@ oswaldmattgroup.com: did not receive HSTS header otakuworld.de: could not connect to host other98.com: did not receive HSTS header othercode.nl: could not connect to host +otherkinforum.com: could not connect to host othermedia.cc: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no] otherstuff.nl: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no] otichi.com: did not receive HSTS header @@ -10894,6 +11236,7 @@ ottospora.nl: could not connect to host ourbank.com: max-age too low: 2592000 ourchoice2016.com: could not connect to host ourls.win: could not connect to host +ourmaster.org: did not receive HSTS header outdooradventures.pro: could not connect to host outdoorproducts.com: max-age too low: 7889238 outreachbuddy.com: could not connect to host @@ -10903,7 +11246,7 @@ ouvirmusica.com.br: did not receive HSTS header ovenapp.io: did not receive HSTS header over25tips.com: did not receive HSTS header override.io: could not connect to host -overrustle.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no] +overrustle.com: could not connect to host oversight.io: could not connect to host ovuscloud.de: could not connect to host ovwane.com: could not connect to host @@ -10930,11 +11273,30 @@ p-rickroll-o.pw: could not connect to host p.linode.com: could not connect to host p1c.pw: could not connect to host p22.co: did not receive HSTS header +p2av.com: could not connect to host p3.marketing: did not receive HSTS header p3in.com: could not connect to host p3ter.fr: did not receive HSTS header p8r.de: did not receive HSTS header paavolastudio.com: did not receive HSTS header +pablo.im: could not connect to host +pablo.scot: could not connect to host +pablo.sh: could not connect to host +pabloarteaga.co.uk: could not connect to host +pabloarteaga.com: could not connect to host +pabloarteaga.com.es: could not connect to host +pabloarteaga.es: could not connect to host +pabloarteaga.eu: could not connect to host +pabloarteaga.info: could not connect to host +pabloarteaga.me: could not connect to host +pabloarteaga.name: could not connect to host +pabloarteaga.net: could not connect to host +pabloarteaga.nom.es: could not connect to host +pabloarteaga.org: could not connect to host +pabloarteaga.science: could not connect to host +pabloarteaga.tech: could not connect to host +pabloarteaga.uk: could not connect to host +pabloarteaga.xyz: could not connect to host pablocamino.tk: could not connect to host pablofain.com: did not receive HSTS header pablorey-art.com: did not receive HSTS header @@ -10949,6 +11311,7 @@ pactf-flag-4boxdpa21ogonzkcrs9p.com: could not connect to host pactocore.org: could not connect to host padeoe.com: did not receive HSTS header pader-deko.de: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no] +padovani.de: could not connect to host paestbin.com: could not connect to host page: could not connect to host pagerate.io: could not connect to host @@ -10974,7 +11337,6 @@ palariviera.com: could not connect to host palationtrade.com: could not connect to host palawan.jp: could not connect to host palazzotalamo.it: did not receive HSTS header -paleolowcarb.de: did not receive HSTS header paleosquawk.com: could not connect to host pallet.io: did not receive HSTS header palmer.im: could not connect to host @@ -11005,6 +11367,7 @@ papercrunch.io: could not connect to host paperhaven.com.au: max-age too low: 7889238 papermasters.com: could not connect to host papersmart.net: could not connect to host +paperwork.co.za: could not connect to host papierniak.net: could not connect to host papygeek.com: could not connect to host parabhairavayoga.com: did not receive HSTS header @@ -11031,8 +11394,9 @@ parksubaruoemparts.com: could not connect to host parkwithark.com: could not connect to host parodybit.net: did not receive HSTS header parpaing-paillette.net: could not connect to host +parteaga.com: could not connect to host +parteaga.net: could not connect to host particonpsplus.it: could not connect to host -partiono.com: did not receive HSTS header partirkyoto.jp: did not receive HSTS header partnercardservices.com: could not connect to host partnerwerk.de: did not receive HSTS header @@ -11065,7 +11429,6 @@ pasteros.io: could not connect to host pastie.se: could not connect to host pastorcanadense.com.br: could not connect to host pataua.kiwi: did not receive HSTS header -patentfamily.de: could not connect to host paternitydnatest.com: could not connect to host patfs.com: did not receive HSTS header pathwaytofaith.com: could not connect to host @@ -11075,6 +11438,7 @@ patrick.dark.name: could not connect to host patrickbusch.net: could not connect to host patrickneuro.de: could not connect to host patrickquinn.ca: did not receive HSTS header +patrickschneider.me: could not connect to host patt.us: did not receive HSTS header patterson.mp: could not connect to host paul-kerebel.pro: could not connect to host @@ -11085,7 +11449,6 @@ paulproell.at: did not receive HSTS header paulrudge.codes: could not connect to host paulshir.com: could not connect to host paulshir.is: could not connect to host -paultibbetts.uk: could not connect to host paulyang.cn: did not receive HSTS header paveljanda.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no] pavelkahouseforcisco.com: did not receive HSTS header @@ -11110,7 +11473,7 @@ pbapp.net: did not receive HSTS header pbbr.com: did not receive HSTS header pbcknd.ml: could not connect to host pbcomp.com.au: did not receive HSTS header -pbprint.ru: did not receive HSTS header +pbprint.ru: could not connect to host pbscreens.com: could not connect to host pbytes.com: could not connect to host pc-nf.de: did not receive HSTS header @@ -11143,7 +11506,6 @@ peliseries24.com: could not connect to host pemagrid.org: could not connect to host pemberton.at: did not receive HSTS header penablog.com: did not receive HSTS header -penfold.fr: could not connect to host pengisatelier.net: could not connect to host pengui.uk: could not connect to host penguinclientsystem.com: did not receive HSTS header @@ -11152,6 +11514,7 @@ pennyapp.io: did not receive HSTS header pennylane.me.uk: did not receive HSTS header pensanisso.com: did not receive HSTS header penser-electronique.com: did not receive HSTS header +pension-veldzigt.nl: did not receive HSTS header pension-waldesruh.de: did not receive HSTS header pensiunealido.ro: could not connect to host pentagram.me: max-age too low: 2592000 @@ -11165,6 +11528,7 @@ pepsicoemployeepreferencesurvey.com: could not connect to host per-pedes.at: did not receive HSTS header perdel.cn: could not connect to host pereuda.com: could not connect to host +perez-marrero.com: could not connect to host perfect-radiant-wrinkles.com: could not connect to host perfectionis.me: could not connect to host perfectionunite.com: could not connect to host @@ -11187,6 +11551,7 @@ personalcommunicationsecurity.com: could not connect to host personaldatabasen.no: could not connect to host personalinjurylist.com: could not connect to host personalizedtouch.co: could not connect to host +personcar.com.br: could not connect to host personnedisparue.fr: could not connect to host persson.im: could not connect to host perthdevicelab.com: did not receive HSTS header @@ -11195,12 +11560,11 @@ pesto.video: could not connect to host pet-life.top: did not receive HSTS header pet-nsk.ru: could not connect to host petangen.se: could not connect to host -petbooking.it: did not receive HSTS header petchart.net: could not connect to host peterfolta.net: could not connect to host -peterkshultz.com: did not receive HSTS header petermazur.com: did not receive HSTS header peternagy.ie: did not receive HSTS header +peters.consulting: could not connect to host petersmark.com: did not receive HSTS header pethelpers.org: did not receive HSTS header pethub.com: did not receive HSTS header @@ -11231,27 +11595,28 @@ pgpm.io: could not connect to host pgregg.com: did not receive HSTS header pgtb.be: could not connect to host phalconist.com: could not connect to host +pharmacie-fr.org: did not receive HSTS header pharmgkb.org: could not connect to host phcmembers.com: did not receive HSTS header phcnetworks.net: did not receive HSTS header phdsupply.com: could not connect to host phdwuda.com: could not connect to host +phelx.de: could not connect to host phenomeno-porto.com: could not connect to host phenomeno.nl: could not connect to host phenomenoporto.com: could not connect to host phenomenoporto.nl: could not connect to host -phil.tw: could not connect to host philadelphiacandies.com: did not receive HSTS header philadelphiadancefoundation.org: could not connect to host philipmordue.co.uk: could not connect to host philippa.cool: could not connect to host phillippi.me: could not connect to host -phillipsuk.com: max-age too low: 0 phillmoore.com: did not receive HSTS header -phillprice.com: did not receive HSTS header +phillprice.com: could not connect to host philonas.net: did not receive HSTS header philpropertygroup.com: could not connect to host phippsreporting.com: did not receive HSTS header +phishing.rs: did not receive HSTS header phoebe.co.nz: did not receive HSTS header phoenicis.com.ua: did not receive HSTS header phoenix.dj: did not receive HSTS header @@ -11268,7 +11633,10 @@ phototag.org: did not receive HSTS header php-bach.org: could not connect to host phperformances.fr: did not receive HSTS header phpfashion.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no] +phpinfo.in.th: could not connect to host +phr34kz.pw: did not receive HSTS header phrasing.me: could not connect to host +phumin.in.th: did not receive HSTS header phuong.faith: could not connect to host pi-eng.fr: did not receive HSTS header pianetaottica.eu: could not connect to host @@ -11293,16 +11661,20 @@ piekacz.co.uk: could not connect to host pierrejeansuau.fr: could not connect to host pieterjangeeroms.me: could not connect to host piggott.me.uk: did not receive HSTS header +pigritia.de: could not connect to host piils.fr: did not receive HSTS header pikmy.com: could not connect to host pilgermaske.org: did not receive HSTS header piligrimname.com: could not connect to host pillowandpepper.com: did not receive HSTS header +pilotandy.com: could not connect to host pilotcrowd.nl: did not receive HSTS header pimpmymac.ru: did not receive HSTS header +pimpmypaper.com: could not connect to host pims.global: did not receive HSTS header pimspage.nl: could not connect to host pin.net.au: did not receive HSTS header +pineapplesapp.com: did not receive HSTS header pinebaylibrary.org: could not connect to host pinesandneedles.com: max-age too low: 7889238 pinkfis.ch: did not receive HSTS header @@ -11312,7 +11684,6 @@ pinkyf.com: did not receive HSTS header pinoylinux.org: did not receive HSTS header pintoselectrician.co.za: did not receive HSTS header pioche.ovh: did not receive HSTS header -pipenny.net: could not connect to host pippen.io: could not connect to host pips.rocks: could not connect to host pir9.com: did not receive HSTS header @@ -11331,7 +11702,7 @@ pirateproxy.vip: could not connect to host pirati.cz: max-age too low: 604800 piratte.net: did not receive HSTS header pirganj24.com: did not receive HSTS header -pirlitu.com: could not connect to host +pirlitu.com: did not receive HSTS header pisexy.me: did not receive HSTS header pisidia.de: could not connect to host pitchup.com: did not receive HSTS header @@ -11341,23 +11712,34 @@ pittaya.com: did not receive HSTS header pittonpreschool.com: did not receive HSTS header pix-geeks.com: max-age too low: 2592000 pixdigital.net: did not receive HSTS header -pixeame.com: did not receive HSTS header +pixeame.com: could not connect to host pixel.google.com: did not receive HSTS header (error ignored - included regardless) pixelcode.com.au: could not connect to host pixelesque.uk: could not connect to host pixelgliders.de: could not connect to host pixelhero.co.uk: did not receive HSTS header +pixelpoint.io: did not receive HSTS header pixi.chat: could not connect to host pixi.me: did not receive HSTS header pixlfox.com: could not connect to host pizzadoc.ch: could not connect to host +pj00100.com: did not receive HSTS header +pj00200.com: did not receive HSTS header +pj00300.com: did not receive HSTS header +pj00400.com: did not receive HSTS header +pj00600.com: did not receive HSTS header +pj00700.com: did not receive HSTS header +pj00800.com: could not connect to host +pj00900.com: did not receive HSTS header +pj02.com: did not receive HSTS header pj83.duckdns.org: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no] pj881988.com: could not connect to host pjbet.mg: could not connect to host pjsec.tk: could not connect to host pkautodesign.com: did not receive HSTS header +pkbjateng.or.id: could not connect to host +pko.ch: could not connect to host pkschat.com: could not connect to host -pksps.com: could not connect to host plaasprodukte.com: could not connect to host placefade.com: could not connect to host placehold.co: did not receive HSTS header @@ -11366,6 +11748,7 @@ plaettliaktion.ch: did not receive HSTS header plagiarismcheck.org: max-age too low: 604800 plakbak.nl: could not connect to host planbox.info: could not connect to host +planeexplanation.com: could not connect to host planete-secu.com: could not connect to host planetromeo.com: could not connect to host planktonholland.com: did not receive HSTS header @@ -11381,6 +11764,7 @@ play.google.com: did not receive HSTS header (error ignored - included regardles playdreamcraft.com.br: did not receive HSTS header playerhunter.com: did not receive HSTS header playflick.com: did not receive HSTS header +playkh.com: did not receive HSTS header playmaker.io: did not receive HSTS header playmaza.live: did not receive HSTS header playmfe.com: could not connect to host @@ -11389,7 +11773,6 @@ playsource.co: could not connect to host playwhyyza.com: could not connect to host playyou.be: could not connect to host please-deny.me: did not receive HSTS header -pleaseuseansnisupportedbrowser.ml: could not connect to host pleasure-science.com: could not connect to host pleasure.forsale: could not connect to host plen.io: could not connect to host @@ -11399,7 +11782,7 @@ plfgr.eu.org: could not connect to host plhdb.org: did not receive HSTS header plinc.co: could not connect to host plirt.ru: could not connect to host -ploader.ru: could not connect to host +ploader.ru: max-age too low: 604800 plogable.co: could not connect to host plomberierenga.com: max-age too low: 2592000 plombirator.kz: did not receive HSTS header @@ -11408,13 +11791,16 @@ ploup.net: could not connect to host pluff.nl: did not receive HSTS header plugboard.xyz: could not connect to host pluggedhead.com: did not receive HSTS header +plumbingboksburg.co.za: could not connect to host plumbingman.com.au: did not receive HSTS header plus-digital.net: did not receive HSTS header plus-u.com.au: did not receive HSTS header plus.sandbox.google.com: did not receive HSTS header (error ignored - included regardless) plus1s.tk: could not connect to host +plushev.com: did not receive HSTS header plussizereviews.com: could not connect to host plut.org: did not receive HSTS header +pluth.org: did not receive HSTS header plymouthsoftplay.co.uk: could not connect to host pm13-media.cz: could not connect to host pmac.pt: could not connect to host @@ -11422,6 +11808,7 @@ pmbremer.de: could not connect to host pmctire.com: did not receive HSTS header pmemanager.fr: did not receive HSTS header pmessage.ch: could not connect to host +pmheart.site: could not connect to host pmnts.io: could not connect to host pneusgppremium.com.br: did not receive HSTS header pnukee.com: did not receive HSTS header @@ -11442,6 +11829,7 @@ poinsot.beer: could not connect to host pointeringles.com: could not connect to host pointiswunderland.de: did not receive HSTS header pointpro.de: did not receive HSTS header +points4unitedway.com: could not connect to host pointworksacademy.com: could not connect to host pokeduel.me: did not receive HSTS header pokomichi.com: did not receive HSTS header @@ -11464,10 +11852,10 @@ pollpodium.nl: could not connect to host polsport.live: did not receive HSTS header polycoise.com: could not connect to host polycrypt.us: could not connect to host -polymorph.rs: could not connect to host polypho.nyc: could not connect to host polysage.org: could not connect to host polytechecosystem.vc: could not connect to host +pomardaserra.com: could not connect to host pomfe.co: could not connect to host pompefunebrilariviera.it: could not connect to host pompompoes.com: did not receive HSTS header @@ -11510,15 +11898,14 @@ portalm.tk: could not connect to host portalmundo.xyz: could not connect to host portalplatform.net: could not connect to host portaluniversalista.org: did not receive HSTS header +portalveneza.com.br: did not receive HSTS header portefeuillesignalen.nl: did not receive HSTS header -posbank.co.uk: could not connect to host poshpak.com: max-age too low: 86400 positivesobrietyinstitute.com: did not receive HSTS header post4me.at: could not connect to host postback.io: did not receive HSTS header postcardpayment.com: could not connect to host postcodegarant.nl: could not connect to host -postcodewise.co.uk: could not connect to host posters.win: could not connect to host postscheduler.org: could not connect to host posylka.de: did not receive HSTS header @@ -11532,7 +11919,7 @@ potpourrifestival.de: did not receive HSTS header potsky.com: did not receive HSTS header pouet.it: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no] pouets.ovh: could not connect to host -poupatempo.org: could not connect to host +poupatempo.org: did not receive HSTS header pourmesloisirs.com: could not connect to host pourout.org: did not receive HSTS header poussinooz.fr: could not connect to host @@ -11550,7 +11937,7 @@ powersergunited.com: could not connect to host powersergunited.org: could not connect to host powershellmagic.com: could not connect to host powershift.ne.jp: did not receive HSTS header -powerxequality.com: could not connect to host +powerxequality.com: did not receive HSTS header poy-tech.com: could not connect to host pozniak.at: did not receive HSTS header pozyczka-bez-zaswiadczen.pl: did not receive HSTS header @@ -11559,9 +11946,11 @@ pozzo-balbi.com: did not receive HSTS header ppembed.com: did not receive HSTS header pppo.gov: could not connect to host ppr-truby.ru: could not connect to host +ppsvcs2.com: did not receive HSTS header ppuu.org: did not receive HSTS header ppy3.com: did not receive HSTS header practicallabs.com: could not connect to host +practicalprogrammer.tech: could not connect to host practodev.com: could not connect to host pratinav.xyz: could not connect to host prattpokemon.com: could not connect to host @@ -11574,6 +11963,7 @@ preezzie.com: could not connect to host prefis.com: did not receive HSTS header prefontaine.name: could not connect to host prego-shop.de: could not connect to host +preio.cn: could not connect to host preisser-it.de: did not receive HSTS header preisser.it: did not receive HSTS header preissler.co.uk: could not connect to host @@ -11584,8 +11974,7 @@ premioambiente.it: did not receive HSTS header premiumzweirad.de: max-age too low: 7776000 prepaidgirl.com: could not connect to host prepandgo-euro.com: could not connect to host -preposted.com: could not connect to host -preppertactics.com: could not connect to host +preppertactics.com: did not receive HSTS header preprodfan.gov: could not connect to host prescriptionrex.com: did not receive HSTS header presidentials2016.com: could not connect to host @@ -11602,7 +11991,6 @@ pretzlaff.info: did not receive HSTS header preworkout.me: could not connect to host prgslab.net: could not connect to host priceholic.com: could not connect to host -priceremoval.net: could not connect to host pridetechdesign.com: did not receive HSTS header pridoc.se: did not receive HSTS header prifo.se: could not connect to host @@ -11613,12 +12001,14 @@ primordialsnooze.com: could not connect to host primotiles.co.uk: did not receive HSTS header prinbanat.ngo: did not receive HSTS header princeofwhales.com: did not receive HSTS header +princesparktouch.com: did not receive HSTS header princessbackpack.de: could not connect to host princessmargaretlotto.com: did not receive HSTS header prinesdoma.at: did not receive HSTS header printerest.io: could not connect to host printersonline.be: did not receive HSTS header printery.be: could not connect to host +printexpress.cloud: could not connect to host printfn.com: did not receive HSTS header printler.com: did not receive HSTS header priolkar.com: could not connect to host @@ -11638,6 +12028,7 @@ prmte.com: max-age too low: 2592000 prnt.li: did not receive HSTS header pro-image.de: did not receive HSTS header pro-zone.com: could not connect to host +proact-it.co.uk: could not connect to host proactive.run: could not connect to host procode.gq: could not connect to host prodpad.com: did not receive HSTS header @@ -11663,7 +12054,7 @@ proitconsulting.com.au: could not connect to host proj.org.cn: could not connect to host project-rune.tech: could not connect to host project-sparks.eu: did not receive HSTS header -project-splash.com: could not connect to host +project-splash.com: max-age too low: 0 project-stats.com: could not connect to host projectascension.io: could not connect to host projectasterk.com: could not connect to host @@ -11686,6 +12077,7 @@ promesa.net: did not receive HSTS header promhadan.com: could not connect to host promocao.email: could not connect to host promohunt.ru: did not receive HSTS header +pronostic-king.fr: could not connect to host prontocleaners.co.uk: could not connect to host prontolight.com: did not receive HSTS header prontomovers.co.uk: could not connect to host @@ -11698,16 +12090,16 @@ proslimdiets.com: could not connect to host prosocialmachines.com: could not connect to host prosoft.sk: did not receive HSTS header prosperident.com: did not receive HSTS header +prostohobby.ru: could not connect to host prostoporno.net: could not connect to host proteapower.co.za: could not connect to host protecciondelconsumidor.gov: did not receive HSTS header -protech.ge: did not receive HSTS header proteinnuts.cz: could not connect to host proteinnuts.sk: could not connect to host protonmail.ch: did not receive HSTS header protoyou.de: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no] provisionaldriving.com: did not receive HSTS header -provisionircd.tk: could not connect to host +provisionircd.tk: did not receive HSTS header provitacare.com: did not receive HSTS header proweser.de: did not receive HSTS header prowhisky.de: did not receive HSTS header @@ -11725,6 +12117,7 @@ proxyportal.me: could not connect to host proxyportal.org: did not receive HSTS header proxyrox.com: could not connect to host proxyweb.us: did not receive HSTS header +proymaganadera.com: did not receive HSTS header prpsss.com: could not connect to host prstatic.com: could not connect to host pruikshop.nl: could not connect to host @@ -11746,7 +12139,8 @@ pstudio.me: max-age too low: 0 psw.academy: could not connect to host psw.consulting: could not connect to host psychiatrie-betreuung.ch: did not receive HSTS header -psychoco.net: could not connect to host +psylab.re: could not connect to host +psylab.vip: could not connect to host psynapse.net.au: could not connect to host ptn.moscow: could not connect to host ptonet.com: could not connect to host @@ -11778,6 +12172,7 @@ punkdns.top: could not connect to host puppydns.com: did not receive HSTS header purahealthyliving.com: could not connect to host purbd.com: did not receive HSTS header +pureessentialoil.biz: max-age too low: 300 pureholisticliving.me: could not connect to host purewebmasters.com: could not connect to host purplehippie.in: did not receive HSTS header @@ -11832,6 +12227,7 @@ qinxi1992.com: could not connect to host qionglu.pw: could not connect to host qipp.com: did not receive HSTS header qirinus.com: did not receive HSTS header +qiuxian.ddns.net: could not connect to host qixxit.de: did not receive HSTS header qldconservation.org: could not connect to host qnatek.org: could not connect to host @@ -11842,23 +12238,20 @@ qoqo.us: did not receive HSTS header qorm.co.uk: could not connect to host qqj.net: could not connect to host qqq.gg: could not connect to host -qqvips.com: could not connect to host qqvrsmart.cn: could not connect to host qrara.net: did not receive HSTS header qredo.com: did not receive HSTS header qrforex.com: did not receive HSTS header qrlending.com: could not connect to host qrlfinancial.com: could not connect to host -qswoo.org: did not receive HSTS header -qto.com: could not connect to host -qto.org: could not connect to host +qswoo.org: could not connect to host quail.solutions: could not connect to host quakerlens.com: did not receive HSTS header quality1.com.br: did not receive HSTS header qualityology.com: did not receive HSTS header quanglepro.com: could not connect to host -quangngaimedia.com: could not connect to host -quanjinlong.cn: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no] +quangngaimedia.com: did not receive HSTS header +quanjinlong.cn: did not receive HSTS header quantacloud.ch: could not connect to host quantenteranik.eu: could not connect to host quantor.dk: did not receive HSTS header @@ -11867,6 +12260,7 @@ quantum-ethics.com: could not connect to host quantum-lviv.pp.ua: could not connect to host quantumcore.cn: could not connect to host quantumcourse.org: did not receive HSTS header +quanwuji.com: could not connect to host quarryhillrentals.com: did not receive HSTS header quebecmailbox.com: could not connect to host queenbrownie.com.br: could not connect to host @@ -11886,11 +12280,13 @@ quimsertek.com: [Exception... "Component returned failure code: 0x80004005 (NS_E quizionic.com: could not connect to host quizl.io: did not receive HSTS header quizmemes.org: could not connect to host +quizstore.net: could not connect to host quotehex.com: could not connect to host quotemaster.co.za: could not connect to host quranserver.net: could not connect to host qwallet.ca: did not receive HSTS header qwaser.fr: could not connect to host +qwertyatom100.me: could not connect to host qwilink.me: did not receive HSTS header qybot.cc: could not connect to host r-ay.club: did not receive HSTS header @@ -11898,7 +12294,6 @@ r-core.org: could not connect to host r-core.ru: could not connect to host r-cut.fr: could not connect to host r-rickroll-u.pw: could not connect to host -r0t.co: could not connect to host r10n.com: did not receive HSTS header r15.me: did not receive HSTS header r18.moe: did not receive HSTS header @@ -11908,11 +12303,12 @@ rabota-x.ru: [Exception... "Component returned failure code: 0x80004005 (NS_ERRO racasdecachorro.org: could not connect to host rackblue.com: could not connect to host racktear.com: did not receive HSTS header +raconteur.net: did not receive HSTS header rad-route.de: could not connect to host raddavarden.nu: could not connect to host radicaleducation.net: could not connect to host radioheteroglossia.com: did not receive HSTS header -radiorsvp.com: did not receive HSTS header +radtke.bayern: did not receive HSTS header rafaelcz.de: could not connect to host ragingserenity.com: did not receive HSTS header ragnaroktop.com.br: could not connect to host @@ -11920,17 +12316,24 @@ rahadiana.com: could not connect to host rahamasin.eu: could not connect to host rai-co.net: did not receive HSTS header raiblockscommunity.net: could not connect to host +raidensnakesden.co.uk: could not connect to host +raidensnakesden.com: could not connect to host +raidensnakesden.net: could not connect to host raidstone.com: could not connect to host raidstone.rocks: could not connect to host +raiffeisen-kosovo.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no] railgun.com.cn: could not connect to host +railyardurgentcare.com: did not receive HSTS header rainbin.com: could not connect to host rainbowbarracuda.com: could not connect to host -rainel.at: did not receive HSTS header +rainel.at: could not connect to host raisecorp.com: could not connect to host raitza.de: could not connect to host rajkapoordas.com: could not connect to host +rakugaki.cn: could not connect to host ramarka.de: could not connect to host ramatola.uk: could not connect to host +rambii.de: could not connect to host ramblingrf.tech: could not connect to host ramezanloo.com: did not receive HSTS header ramon-c.nl: could not connect to host @@ -11938,12 +12341,14 @@ ramonj.nl: could not connect to host randomcage.com: did not receive HSTS header randomcloud.net: could not connect to host randomhero.cloud: could not connect to host +randomquotesapp.com: could not connect to host randomwinpicker.de: could not connect to host randy.pw: could not connect to host ranegroup.hosting: could not connect to host rankthespot.com: could not connect to host rannseier.org: did not receive HSTS header ranos.org: could not connect to host +rantanda.com: could not connect to host rany.duckdns.org: could not connect to host rany.io: could not connect to host rany.pw: could not connect to host @@ -11955,8 +12360,8 @@ rapidthunder.io: could not connect to host rasing.me: could not connect to host raspass.me: did not receive HSTS header raspberry.us: could not connect to host -raspberryultradrops.com: did not receive HSTS header rastreador.com.es: did not receive HSTS header +rastreie.net: did not receive HSTS header ratajczak.fr: could not connect to host rate-esport.de: could not connect to host rathorian.fr: could not connect to host @@ -11972,7 +12377,7 @@ raven.lipetsk.ru: could not connect to host ravengergaming.ga: could not connect to host ravengergaming.net: could not connect to host ravenx.me: could not connect to host -ravkr.duckdns.org: could not connect to host +ravkr.duckdns.org: did not receive HSTS header ravse.dk: could not connect to host raw-diets.com: did not receive HSTS header rawet.se: could not connect to host @@ -12010,7 +12415,7 @@ reactdatepicker.com: did not receive HSTS header reactor92.com: could not connect to host reader.ga: could not connect to host readism.io: could not connect to host -readityourself.net: did not receive HSTS header +readityourself.net: could not connect to host readmeeatmedrinkme.com: did not receive HSTS header readr.pw: could not connect to host readtldr.com: could not connect to host @@ -12023,11 +12428,13 @@ real-compare.com: did not receive HSTS header realcli.com: could not connect to host realfamilyincest.com: could not connect to host realhost.name: could not connect to host +realloc.me: could not connect to host really.io: could not connect to host reallyreally.io: did not receive HSTS header realmic.net: could not connect to host realmofespionage.com: could not connect to host realnewhomes.com: could not connect to host +realoteam.ddns.net: could not connect to host realraghavgupta.com: could not connect to host realwoo.com: did not receive HSTS header reapdrive.net: did not receive HSTS header @@ -12054,25 +12461,27 @@ reddiseals.com: [Exception... "Component returned failure code: 0x80004005 (NS_E reddit.com: did not receive HSTS header rede.ca: did not receive HSTS header redeemingbeautyminerals.com: max-age too low: 0 -redgatesoftware.co.uk: could not connect to host redhorsemountainranch.com: did not receive HSTS header redicabo.de: could not connect to host redirectman.com: could not connect to host redizoo.com: did not receive HSTS header -redlatam.org: could not connect to host +redlatam.org: did not receive HSTS header redmbk.com: did not receive HSTS header +redmind.se: could not connect to host redneck-gaming.de: did not receive HSTS header redner.cc: did not receive HSTS header rednertv.de: did not receive HSTS header -rednoseday.com: could not connect to host +rednoseday.com: did not receive HSTS header redoakmedia.net: did not receive HSTS header redperegrine.com: did not receive HSTS header redporno.cz: could not connect to host redports.org: could not connect to host redra.ws: did not receive HSTS header +redsquirrelcampsite.co.uk: could not connect to host redstarsurf.com: did not receive HSTS header reducerin.ro: did not receive HSTS header redy.host: did not receive HSTS header +reedyforkfarm.com: did not receive HSTS header reeson.at: could not connect to host reeson.de: could not connect to host reeson.info: could not connect to host @@ -12080,7 +12489,6 @@ reeson.org: could not connect to host ref1oct.nl: could not connect to host refactor.zone: did not receive HSTS header referenten.org: did not receive HSTS header -refficience.com: could not connect to host refitplanner.com: did not receive HSTS header reflecton.io: could not connect to host reforesttheplanet.com: could not connect to host @@ -12095,6 +12503,7 @@ regendevices.eu: could not connect to host reggae-cdmx.com: could not connect to host reginagroffy.com: could not connect to host regio-salland.nl: could not connect to host +regionalcoalition.org: did not receive HSTS header regionale.org: did not receive HSTS header register.gov.uk: did not receive HSTS header registertovoteflorida.gov: did not receive HSTS header @@ -12106,12 +12515,14 @@ reic.me: could not connect to host reidascuecas.com.br: could not connect to host reignsphere.net: could not connect to host reikiqueen.uk: could not connect to host +reinaertvandecruys.com: could not connect to host reinaertvandecruys.me: could not connect to host reineberthe.ch: could not connect to host reismil.ch: could not connect to host reisyukaku.org: did not receive HSTS header reithguard-it.de: did not receive HSTS header rejo.in: could not connect to host +rejushiiplotter.ru: could not connect to host rejuvemedspa.com: did not receive HSTS header relatic.net: could not connect to host relayawards.com: could not connect to host @@ -12131,6 +12542,7 @@ remodela.com.ve: could not connect to host remodelwithlegacy.com: did not receive HSTS header remonttitekniikka.fi: could not connect to host remotestance.com: did not receive HSTS header +remrol.ru: could not connect to host rencaijia.com: did not receive HSTS header rencontres-erotiques.com: did not receive HSTS header rengarenkblog.com: could not connect to host @@ -12139,7 +12551,8 @@ renkhosting.com: could not connect to host renlong.org: did not receive HSTS header rennfire.org: could not connect to host renrenss.com: could not connect to host -rentacarcluj.xyz: could not connect to host +rentacarcluj.xyz: did not receive HSTS header +rentalmed.com.br: did not receive HSTS header rentbrowser.com: could not connect to host rentbrowsertrain.me: could not connect to host rentcarassist.com: could not connect to host @@ -12165,9 +12578,9 @@ reporturl.io: did not receive HSTS header reposaarenkuva.fi: could not connect to host reprolife.co.uk: did not receive HSTS header reptilauksjonen.no: did not receive HSTS header +republicmo.gov: could not connect to host repustate.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no] reqognize.com: could not connect to host -request-trent.com: did not receive HSTS header res-rheingau.de: did not receive HSTS header res42.com: could not connect to host research.md: could not connect to host @@ -12178,6 +12591,7 @@ residentsinsurance.co.uk: did not receive HSTS header resl20.servehttp.com: could not connect to host resoundpro.ca: could not connect to host respice.xyz: could not connect to host +ressl.ch: could not connect to host ressos.com: did not receive HSTS header restaurace-klokocka.cz: did not receive HSTS header restaurant-mangal.ch: could not connect to host @@ -12189,15 +12603,15 @@ restioson.me: could not connect to host restopro.nyc: did not receive HSTS header restoreresearchstudy.com: did not receive HSTS header resultsdate.news: could not connect to host -retcor.net: could not connect to host reth.ch: could not connect to host +reto.io: could not connect to host retogroup.com: could not connect to host -retrojar.top: could not connect to host retropage.co: did not receive HSTS header retrowave.eu: could not connect to host rets.org.br: did not receive HSTS header retube.ga: did not receive HSTS header returnofwar.com: could not connect to host +reussir-ma-fete.fr: could not connect to host revapost.ch: could not connect to host revealdata.com: did not receive HSTS header revelaciones.tv: could not connect to host @@ -12215,11 +12629,13 @@ rexhockingkelpies.com.au: did not receive HSTS header reykjavik.guide: could not connect to host rezun.cloud: did not receive HSTS header rf.tn: could not connect to host +rfxanalyst.com: could not connect to host rgservers.com: did not receive HSTS header rhapsodhy.hu: could not connect to host rhdigital.pro: could not connect to host rhering.de: could not connect to host rhiskiapril.com: did not receive HSTS header +rhodes.ml: could not connect to host rhodesianridgeback.com.br: could not connect to host rhodosdreef.nl: could not connect to host riaucybersolution.net: did not receive HSTS header @@ -12227,7 +12643,9 @@ ribopierre.fr: could not connect to host riceglue.com: could not connect to host richamorindonesia.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no] richardb.me: could not connect to host +richardhicks.us: could not connect to host richeza.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no] +richie.link: did not receive HSTS header richiemail.net: could not connect to host richmondsunlight.com: did not receive HSTS header richmtdriver.com: could not connect to host @@ -12236,7 +12654,6 @@ richterphilipp.com: could not connect to host rickmartensen.nl: did not receive HSTS header ricknox.com: did not receive HSTS header rid-wan.com: could not connect to host -riddims.co: did not receive HSTS header rideaudiscount.com: did not receive HSTS header rideforwade.com: could not connect to host rideforwade.net: could not connect to host @@ -12254,6 +12671,7 @@ righttoknow.ie: did not receive HSTS header rijndael.xyz: could not connect to host rijnmondeg.nl: did not receive HSTS header rika.me: could not connect to host +rincon-nsn.gov: could not connect to host ring0.xyz: did not receive HSTS header ringh.am: could not connect to host rinj.se: could not connect to host @@ -12270,7 +12688,7 @@ rithm.ch: could not connect to host rittis.ru: did not receive HSTS header rivagecare.it: did not receive HSTS header rivercruiseadvisor.com: did not receive HSTS header -rivermendhealthcenters.com: could not connect to host +rivermendhealthcenters.com: did not receive HSTS header riversideauto.net: did not receive HSTS header riverstyxgame.com: could not connect to host rivlo.com: could not connect to host @@ -12283,24 +12701,25 @@ rkmedia.no: could not connect to host rmaqequipamentos.com.br: could not connect to host rmdlingerie.com.br: did not receive HSTS header rme.li: did not receive HSTS header +rmit.me: could not connect to host rmk.si: could not connect to host rmsides.com: did not receive HSTS header roadfeast.com: could not connect to host roan24.pl: did not receive HSTS header -robert-flynn.de: could not connect to host +rob.uk.com: could not connect to host robertabittle.com: could not connect to host roberto-webhosting.nl: did not receive HSTS header robertocasares.no-ip.biz: could not connect to host robi-net.it: could not connect to host robigalia.org: did not receive HSTS header robinvdmarkt.nl: could not connect to host +robjager-fotografie.nl: could not connect to host robomonkey.org: could not connect to host robteix.com: did not receive HSTS header robtex.com: did not receive HSTS header robtex.net: did not receive HSTS header robtex.org: did not receive HSTS header robust.ga: could not connect to host -roc.net.au: could not connect to host rochman.id: did not receive HSTS header rocketnet.ml: could not connect to host rockeyscrivo.com: did not receive HSTS header @@ -12310,7 +12729,9 @@ rodarion.pl: could not connect to host rodehutskors.net: could not connect to host rodney.id.au: did not receive HSTS header rodneybrooksjr.com: did not receive HSTS header +rodomonte.org: did not receive HSTS header rodosto.com: did not receive HSTS header +roelbazuin.com: did not receive HSTS header roelf.org: did not receive HSTS header roeper.party: could not connect to host roesemann.email: could not connect to host @@ -12321,7 +12742,6 @@ roguefortgame.com: could not connect to host rohanbassett.com: could not connect to host rohankrishnadev.in: could not connect to host roketix.co.uk: did not receive HSTS header -rolandinsh.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no] rolandkolodziej.com: max-age too low: 86400 rolandreed.cn: did not receive HSTS header rolandslate.com: did not receive HSTS header @@ -12331,7 +12751,9 @@ romaimperator.com: did not receive HSTS header romainmuller.xyz: did not receive HSTS header romans-place.me.uk: could not connect to host romanticschemermovie.com: could not connect to host +romar-bos.nl: did not receive HSTS header romeoferraris.com: did not receive HSTS header +romleg.cf: could not connect to host roms.fun: could not connect to host romulusapp.com: could not connect to host ron2k.za.net: could not connect to host @@ -12352,7 +12774,6 @@ rootservice.org: did not receive HSTS header rootwpn.com: could not connect to host rop.io: did not receive HSTS header roquecenter.org: did not receive HSTS header -roromendut.online: could not connect to host rorymcdaniel.com: did not receive HSTS header rosewoodranch.com: did not receive HSTS header rosi-royal.com: could not connect to host @@ -12373,6 +12794,7 @@ rous.se: could not connect to host rouvray.org: could not connect to host royal-forest.org: max-age too low: 0 royal-mangal.ch: could not connect to host +royal876.com: could not connect to host royalhop.co: could not connect to host royalpub.net: did not receive HSTS header royalsignaturecruise.com: could not connect to host @@ -12391,6 +12813,7 @@ rsampaio.info: did not receive HSTS header rsf.io: could not connect to host rsi.im: did not receive HSTS header rskuipers.com: did not receive HSTS header +rsldb.com: could not connect to host rsmaps.org: could not connect to host rsships.com: could not connect to host rstraining.co.uk: did not receive HSTS header @@ -12411,7 +12834,6 @@ rubysecurity.org: did not receive HSTS header rubyshop.nl: could not connect to host rudeotter.com: did not receive HSTS header rue-de-la-vieille.fr: max-age too low: 0 -ruedigervoigt.de: could not connect to host ruflay.ru: could not connect to host rugirlfriend.com: could not connect to host rugs.ca: did not receive HSTS header @@ -12442,10 +12864,10 @@ rustfanatic.com: did not receive HSTS header ruurdboomsma.nl: could not connect to host ruxit.com: did not receive HSTS header rvg.zone: could not connect to host -rvoigt.eu: could not connect to host rvolve.net: could not connect to host rw-solutions.tech: could not connect to host rwanderlust.com: did not receive HSTS header +rxgroup.io: could not connect to host rxprep.com: did not receive HSTS header rxt.social: could not connect to host rxv.cc: could not connect to host @@ -12466,16 +12888,18 @@ s1mplescripts.de: could not connect to host s1ris.org: did not receive HSTS header s3cases.com: did not receive HSTS header s3n.se: could not connect to host -saabwa.org: did not receive HSTS header +saabwa.org: could not connect to host +saba-piserver.info: could not connect to host sabatek.pl: did not receive HSTS header sac-shop.com: did not receive HSTS header +sachk.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no] saco-ceso.com: could not connect to host sadiejanehair.com: could not connect to host -sadsu.com: did not receive HSTS header safari-afrique.com: did not receive HSTS header safedevice.net: did not receive HSTS header safelist.eu: did not receive HSTS header safemovescheme.co.uk: could not connect to host +safemt.gov: could not connect to host safepay.io: could not connect to host saferedirect.link: could not connect to host saferedirectlink.com: could not connect to host @@ -12493,10 +12917,10 @@ saint-astier-triathlon.com: did not receive HSTS header saintjohnlutheran.church: did not receive HSTS header saintw.com: could not connect to host sairai.bid: could not connect to host +saiyasu-search.com: did not receive HSTS header sakaserver.com: did not receive HSTS header sakib.ninja: did not receive HSTS header sakurabuff.com: could not connect to host -sakuraplay.com: did not receive HSTS header salaervergleich.com: did not receive HSTS header sale.sh: could not connect to host salearnership.co.za: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no] @@ -12517,18 +12941,20 @@ salzamt.tk: could not connect to host samanthahumphreysstudio.com: did not receive HSTS header samaritan.tech: could not connect to host samaritansnet.org: did not receive HSTS header +samenwerkingsportaal.tk: did not receive HSTS header sametovymesic.cz: could not connect to host saml2.com: could not connect to host samlamac.com: could not connect to host +samm.com.au: did not receive HSTS header sammyjohnson.com: could not connect to host samp.im: could not connect to host sampcup.com: could not connect to host -sampoznay.ru: did not receive HSTS header +sampoznay.ru: could not connect to host samraskauskas.com: could not connect to host samsen.club: could not connect to host samsonova.de: could not connect to host samsungxoa.com: could not connect to host -samvanderkris.com: did not receive HSTS header +samvanderkris.com: could not connect to host samvanderkris.xyz: did not receive HSTS header sanael.net: could not connect to host sanandreasstories.com: did not receive HSTS header @@ -12537,12 +12963,10 @@ sanatfilan.com: did not receive HSTS header sanatrans.com: could not connect to host sand-islets.de: did not receive HSTS header sanderknape.com: did not receive HSTS header -sandhaufen.tk: could not connect to host -sandtonplumber24-7.co.za: did not receive HSTS header sandviks.com: did not receive HSTS header sanguoxiu.com: could not connect to host sanhei.ch: did not receive HSTS header -sanik.my: did not receive HSTS header +sanik.my: could not connect to host sanradon.by: did not receive HSTS header sansage.com.br: could not connect to host sansdev.com: could not connect to host @@ -12588,7 +13012,7 @@ satoshicrypt.com: did not receive HSTS header satragreen.com: did not receive HSTS header satrent.com: did not receive HSTS header satrent.se: did not receive HSTS header -satriyowibowo.my.id: could not connect to host +satriyowibowo.my.id: did not receive HSTS header satsang-uwe.de: did not receive HSTS header satsukii.moe: did not receive HSTS header sattamatkadpboss.mobi: could not connect to host @@ -12596,6 +13020,8 @@ saturne.tk: could not connect to host saturngames.co.uk: could not connect to host saucyfox.net: did not receive HSTS header saudeeconforto.com.br: did not receive HSTS header +sauenytt.no: could not connect to host +sauerbrey.eu: did not receive HSTS header saumon.io: did not receive HSTS header saumon.xyz: could not connect to host saunasandstuff.ca: did not receive HSTS header @@ -12622,10 +13048,6 @@ sbobetfun.com: did not receive HSTS header sbox-archives.com: could not connect to host sby.de: did not receive HSTS header sc4le.com: could not connect to host -scaffoldhireeastrand.co.za: did not receive HSTS header -scaffoldhirefourways.co.za: did not receive HSTS header -scaffoldhirerandburg.co.za: did not receive HSTS header -scaffoldhiresandton.co.za: did not receive HSTS header scala.click: did not receive HSTS header scannabi.com: could not connect to host sch44r0n.de: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no] @@ -12637,11 +13059,13 @@ schau-rein.co.at: did not receive HSTS header schauer.so: could not connect to host schd.io: did not receive HSTS header schermreparatierotterdam.nl: did not receive HSTS header -schil.li: could not connect to host schlabbi.com: did not receive HSTS header +schlagenhauf.info: could not connect to host +schlagma.de: could not connect to host schmidttulskie.de: could not connect to host schmitt.ovh: could not connect to host schmitt.ws: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no] +schnapke.name: could not connect to host schneider-electric.tg: could not connect to host schnell-abnehmen.tips: did not receive HSTS header schnell-gold.com: did not receive HSTS header @@ -12652,10 +13076,12 @@ schoolze.com: did not receive HSTS header schoop.me: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no] schorel.ovh: could not connect to host schraebanowicz.net: did not receive HSTS header +schreck-thomas.de: could not connect to host schreiber-netzwerk.eu: did not receive HSTS header schreibnacht.de: did not receive HSTS header schreinerei-wortmann.de: did not receive HSTS header schrikdraad.net: did not receive HSTS header +schritt4fit.de: did not receive HSTS header schrodinger.io: could not connect to host schroepfglas-versand.de: did not receive HSTS header schroettle.com: did not receive HSTS header @@ -12672,8 +13098,6 @@ scicasts.com: max-age too low: 7776000 science-anatomie.com: did not receive HSTS header scienceathome.org: did not receive HSTS header sciencemonster.co.uk: could not connect to host -scientific.boston: could not connect to host -scifi.fyi: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no] scintillating.stream: could not connect to host scionasset.com: did not receive HSTS header scivillage.com: did not receive HSTS header @@ -12683,7 +13107,6 @@ scooshonline.co.uk: did not receive HSTS header scopea.fr: max-age too low: 0 score-savers.com: max-age too low: 10540800 scores4schools.com: could not connect to host -scorobudem.ru: could not connect to host scotbirchfield.com: did not receive HSTS header scottainslie.me.uk: could not connect to host scottdial.com: did not receive HSTS header @@ -12712,15 +13135,14 @@ scriptjunkie.us: could not connect to host scrollstory.com: did not receive HSTS header scruffymen.com: could not connect to host scrumplex.net: did not receive HSTS header -sctm.at: could not connect to host sdhmanagementgroup.com: could not connect to host sdia.ru: could not connect to host sdl-corporatesite-staging.azurewebsites.net: did not receive HSTS header sdmoscow.ru: could not connect to host sdrobs.com: did not receive HSTS header sdsl-speedtest.de: could not connect to host -se-theories.org: could not connect to host se7ensins.com: did not receive HSTS header +sea-godzilla.com: could not connect to host seadus.ee: could not connect to host seanationals.org: did not receive HSTS header seanchaidh.org: could not connect to host @@ -12730,7 +13152,6 @@ seansyardservice.com: did not receive HSTS header searchgov.gov.il: did not receive HSTS header searchshops.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no] searx.pw: could not connect to host -seatshare.co.uk: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no] sebastian-bair.de: could not connect to host sebastian-schmidt.me: did not receive HSTS header sebastianhampl.de: could not connect to host @@ -12783,6 +13204,10 @@ security-thoughts.org: could not connect to host security.google.com: did not receive HSTS header (error ignored - included regardless) security.xn--q9jyb4c: could not connect to host securityarena.com: could not connect to host +securitybrief.asia: did not receive HSTS header +securitybrief.co.nz: did not receive HSTS header +securitybrief.com.au: did not receive HSTS header +securitybrief.eu: did not receive HSTS header securitybsides.pl: did not receive HSTS header securityglance.com: could not connect to host securityinet.biz: did not receive HSTS header @@ -12792,6 +13217,7 @@ securitymap.wiki: could not connect to host securitysoapbox.com: could not connect to host securitytalk.pl: could not connect to host securitytestfan.gov: could not connect to host +securitywatch.co.nz: did not receive HSTS header securiviera.ch: did not receive HSTS header securon.io: could not connect to host securoswiss.ch: could not connect to host @@ -12810,7 +13236,6 @@ seele.ca: could not connect to host seen.life: could not connect to host sehenderson.com: did not receive HSTS header seida.at: could not connect to host -seiko-dojo.com: did not receive HSTS header seiler-bad.de: did not receive HSTS header seizoushokoyuubangou.com: did not receive HSTS header sektor.team: could not connect to host @@ -12820,7 +13245,6 @@ selectary.com: could not connect to host selectcertifiedautos.com: did not receive HSTS header selectruckscalltrackingreports.com: could not connect to host seleondar.ru: did not receive HSTS header -self.nu: could not connect to host selfdefenserx.com: did not receive HSTS header selfhosters.com: could not connect to host selfie-france.fr: could not connect to host @@ -12834,6 +13258,7 @@ semantheme.fr: did not receive HSTS header semen3325.xyz: could not connect to host semenkovich.com: did not receive HSTS header sementes.gratis: could not connect to host +semjonov.de: could not connect to host semps-servers.de: could not connect to host sendash.com: did not receive HSTS header sendmeback.de: did not receive HSTS header @@ -12846,30 +13271,31 @@ sensiblemn.org: could not connect to host sensibus.com: did not receive HSTS header sensoft-int.com: could not connect to host sensualism.com: could not connect to host -sentic.info: did not receive HSTS header seo-lagniappe.com: did not receive HSTS header seoarchive.org: could not connect to host seobot.com.au: could not connect to host seohochschule.de: could not connect to host +seolaba.io: could not connect to host seomarketingdeals.com: did not receive HSTS header seomen.biz: could not connect to host seomobo.com: could not connect to host seosanantonioinc.com: did not receive HSTS header seoscribe.net: could not connect to host -seosec.xyz: could not connect to host +seosec.xyz: did not receive HSTS header seotronix.net: did not receive HSTS header seowarp.net: did not receive HSTS header sep23.ru: could not connect to host sepakbola.win: could not connect to host sephr.com: did not receive HSTS header sepie.gob.es: did not receive HSTS header -seproco.com: could not connect to host seq.tf: did not receive HSTS header +sequatchiecounty-tn.gov: could not connect to host serafin.tech: could not connect to host serathius.ovh: could not connect to host serbien.guide: could not connect to host serenitycreams.com: did not receive HSTS header serfdom.io: did not receive HSTS header +sergeyreznikov.com: could not connect to host serized.pw: could not connect to host serkaneles.com: did not receive HSTS header servecrypt.com: could not connect to host @@ -12882,11 +13308,12 @@ servercode.ca: did not receive HSTS header serverdensity.io: did not receive HSTS header servergno.me: did not receive HSTS header serverlauget.no: could not connect to host +serverlog.net: could not connect to host servermonkey.nl: could not connect to host servfefe.com: could not connect to host service.gov.uk: could not connect to host servicevie.com: did not receive HSTS header -servpanel.de: could not connect to host +servpanel.de: did not receive HSTS header servu.de: did not receive HSTS header servx.ru: did not receive HSTS header serwusik.pl: did not receive HSTS header @@ -12894,21 +13321,24 @@ seryo.moe: could not connect to host seryo.net: could not connect to host seryovpn.com: could not connect to host sesha.co.za: could not connect to host +sethoedjo.com: could not connect to host setkit.net: could not connect to host setuid.de: could not connect to host setuid.io: did not receive HSTS header sevenhearts.online: could not connect to host -sewoo.co.uk: could not connect to host sex-education.com: could not connect to host sexgarage.de: could not connect to host sexocomgravidas.com: could not connect to host sexoyrelax.com: could not connect to host sexpay.net: could not connect to host +sexplicit.co.uk: did not receive HSTS header sexshopfacil.com.br: could not connect to host sexshopsgay.com: did not receive HSTS header sexwork.net: could not connect to host +sexymassageoil.com: could not connect to host seyahatsagliksigortalari.com: could not connect to host seydaozcan.com: did not receive HSTS header +seyr.it: could not connect to host sfashion.si: did not receive HSTS header sfaturiit.ro: could not connect to host sfhobbies.com.br: could not connect to host @@ -12945,8 +13375,10 @@ shagi29.ru: did not receive HSTS header shahbeat.com: could not connect to host shaitan.eu: could not connect to host shakebox.de: could not connect to host +shaken-kyoto.jp: could not connect to host shamka.ru: could not connect to host shandonsg.co.uk: could not connect to host +shanekoster.net: did not receive HSTS header shanesage.com: could not connect to host shang-yu.cn: could not connect to host shanxiapark.com: could not connect to host @@ -13005,7 +13437,7 @@ shinobi-fansub.ro: could not connect to host shiona.xyz: could not connect to host shipinsight.com: did not receive HSTS header shipmile.com: did not receive HSTS header -shipping24h.com: did not receive HSTS header +shipping24h.com: could not connect to host shippingbo.com: did not receive HSTS header shiroki-k.net: could not connect to host shirosaki.org: could not connect to host @@ -13034,12 +13466,15 @@ shortr.li: could not connect to host shota.party: could not connect to host shotpixonline.com.br: did not receive HSTS header show-stream.tv: could not connect to host +showdepiscinas.com.br: did not receive HSTS header shower.im: did not receive HSTS header showkeeper.tv: did not receive HSTS header showroom.de: did not receive HSTS header +showroom113.ru: could not connect to host shoxmusic.net: did not receive HSTS header shred.ch: could not connect to host shredoptics.ch: could not connect to host +shrug.ml: could not connect to host shtorku.com: could not connect to host shu-kin.net: did not receive HSTS header shukatsu-note.com: could not connect to host @@ -13057,7 +13492,9 @@ sianimacion.com: could not connect to host siao-mei.com: did not receive HSTS header sichere-kartenakzeptanz.de: could not connect to host siciliadigitale.pro: could not connect to host +sicklepod.com: could not connect to host sictame-tigf.org: did not receive HSTS header +sidpod.ru: could not connect to host siebens.net: could not connect to host sieh.es: did not receive HSTS header sifls.com: could not connect to host @@ -13073,11 +13510,12 @@ sijimi.cn: could not connect to host sijmenschoon.nl: could not connect to host sikatehtaat.fi: could not connect to host siku.pro: could not connect to host +silent.live: could not connect to host silentcircle.com: did not receive HSTS header silentcircle.org: could not connect to host silentexplosion.de: could not connect to host silentlink.io: could not connect to host -silentmode.com: max-age too low: 7889238 +silentmode.com: max-age too low: 0 silicagelpackets.ca: did not receive HSTS header silke-hunde.de: did not receive HSTS header silqueskineyeserum.com: could not connect to host @@ -13085,13 +13523,12 @@ silver-drachenkrieger.de: did not receive HSTS header silverback.is: did not receive HSTS header silvergoldbull.ba: could not connect to host silvergoldbull.md: could not connect to host +silvergoldbull.ph: could not connect to host silverhome.ninja: could not connect to host silverpvp.com: could not connect to host silverstartup.sk: could not connect to host silviamacallister.com: did not receive HSTS header silvistefi.com: could not connect to host -sim-sim.appspot.com: did not receive HSTS header -sim4seed.org: could not connect to host simbast.com: could not connect to host simbihaiti.com: max-age too low: 7889238 simbol.id: could not connect to host @@ -13099,7 +13536,7 @@ simbolo.co.uk: could not connect to host simccorp.com: did not receive HSTS header simeon.us: max-age too low: 2592000 simfri.com: could not connect to host -simha.online: did not receive HSTS header +simha.online: could not connect to host simhaf.cf: could not connect to host simnovo.net: did not receive HSTS header simobilklub.si: could not connect to host @@ -13115,6 +13552,7 @@ simpan.id: could not connect to host simpeo.fr: did not receive HSTS header simpeo.org: did not receive HSTS header simpleai.net: max-age too low: 600 +simplecoding.click: did not receive HSTS header simplefraud.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no] simplelearner.com: could not connect to host simplepractice.com: did not receive HSTS header @@ -13131,7 +13569,6 @@ sin30.net: could not connect to host sincai666.com: could not connect to host sinclairmoving.com: did not receive HSTS header sincron.org: could not connect to host -sinefili.com: did not receive HSTS header sinful.pw: could not connect to host singee.site: could not connect to host singerwang.com: could not connect to host @@ -13146,6 +13583,7 @@ sinsojb.me: did not receive HSTS header sintesysglobal.com: did not receive HSTS header sinusbot.online: did not receive HSTS header sion.moe: did not receive HSTS header +sipc.org: did not receive HSTS header sipsik.net: did not receive HSTS header siqi.wang: could not connect to host sirburton.com: did not receive HSTS header @@ -13156,6 +13594,7 @@ siroop.ch: max-age too low: 86400 sisgopro.com: could not connect to host sistemasespecializados.com: did not receive HSTS header sistemlash.com: did not receive HSTS header +sistemos.net: could not connect to host sistersurprise.de: did not receive HSTS header sitecloudify.com: could not connect to host sitecuatui.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no] @@ -13166,7 +13605,6 @@ sitennisclub.com: did not receive HSTS header siterip.org: could not connect to host sites.google.com: did not receive HSTS header (error ignored - included regardless) sitesforward.com: did not receive HSTS header -sitesko.de: did not receive HSTS header sitesource101.com: could not connect to host sitesten.com: did not receive HSTS header sittinginoblivion.com: did not receive HSTS header @@ -13186,6 +13624,7 @@ skarox.net: could not connect to host skarox.ru: could not connect to host skates.guru: did not receive HSTS header skday.com: did not receive HSTS header +sketchywebsite.net: max-age too low: 0 ski-insurance.com.au: did not receive HSTS header skidstresser.com: could not connect to host skiinstructor.services: did not receive HSTS header @@ -13205,12 +13644,14 @@ skoda-service-team-cup.de: did not receive HSTS header skomski.org: did not receive HSTS header skotty.io: did not receive HSTS header skpdev.net: could not connect to host +skrimix.tk: could not connect to host skrivande.co: could not connect to host skullhouse.nyc: did not receive HSTS header sky-aroma.com: could not connect to host skyasker.cn: could not connect to host skyasker.com: did not receive HSTS header skybloom.com: could not connect to host +skybound.link: did not receive HSTS header skyflix.me: could not connect to host skyline.link: could not connect to host skyline.tw: did not receive HSTS header @@ -13225,7 +13666,8 @@ skyvault.io: could not connect to host skyveo.ml: did not receive HSTS header skyway.capital: did not receive HSTS header skyworldserver.ddns.net: could not connect to host -sl1pkn07.wtf: could not connect to host +sl1pkn07.wtf: max-age too low: 2592000 +slapen17.nl: could not connect to host slaps.be: could not connect to host slash-dev.de: did not receive HSTS header slash64.co.uk: could not connect to host @@ -13237,6 +13679,7 @@ slashdesign.it: did not receive HSTS header slashem.me: did not receive HSTS header slattery.co: did not receive HSTS header slauber.de: did not receive HSTS header +sld08.com: did not receive HSTS header sleeklounge.com: did not receive HSTS header sleep10.com: could not connect to host sleepstar.com.mt: did not receive HSTS header @@ -13245,10 +13688,13 @@ slicketl.com: did not receive HSTS header slightfuture.click: could not connect to host slightfuture.com: did not receive HSTS header slimmerbouwen.be: did not receive HSTS header +slingo.com: did not receive HSTS header slix.io: could not connect to host sln.cloud: could not connect to host +slo-net.net: could not connect to host slope.haus: could not connect to host slovakiana.sk: did not receive HSTS header +slovenskycestovatel.sk: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no] slovoice.org: could not connect to host slowfood.es: did not receive HSTS header slowsociety.org: could not connect to host @@ -13260,6 +13706,7 @@ slytech.ch: could not connect to host smallcdn.rocks: could not connect to host smallchat.nl: could not connect to host smalldata.tech: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no] +smallpath.me: could not connect to host smallplanet.ch: did not receive HSTS header smallshopit.com: did not receive HSTS header smart-mirror.de: did not receive HSTS header @@ -13278,21 +13725,21 @@ smartofficeusa.com: [Exception... "Component returned failure code: 0x80004005 ( smartphone.continental.com: could not connect to host smartrak.co.nz: did not receive HSTS header smartshoppers.es: did not receive HSTS header -smcbox.com: could not connect to host +smartwritingservice.com: could not connect to host +smcbox.com: did not receive HSTS header smdev.fr: could not connect to host smet.us: could not connect to host smexpt.com: did not receive HSTS header smi-a.me: could not connect to host smiatek.name: could not connect to host smileawei.com: could not connect to host -smimea.com: did not receive HSTS header +smimea.com: could not connect to host smirkingwhorefromhighgarden.pro: could not connect to host -smith.is: could not connect to host +smith.is: did not receive HSTS header smittix.co.uk: did not receive HSTS header -smkn1lengkong.sch.id: did not receive HSTS header +smkn1lengkong.sch.id: could not connect to host smksi2.com: could not connect to host smksultanismail2.com: could not connect to host -smkw.com: did not receive HSTS header sml.lc: could not connect to host smmcab.ru: could not connect to host smmcab.website: could not connect to host @@ -13309,17 +13756,20 @@ smuhelper.cn: could not connect to host smusg.com: could not connect to host snafarms.com: did not receive HSTS header snailing.org: could not connect to host +snake.dog: could not connect to host snakehosting.dk: did not receive HSTS header snapappts.com: could not connect to host +snaptools.io: could not connect to host snapworks.net: did not receive HSTS header snarf.in: could not connect to host -sneak.berlin: could not connect to host +sneak.berlin: did not receive HSTS header sneaker.date: could not connect to host sneed.company: could not connect to host snekchat.moe: could not connect to host snelwerk.be: could not connect to host sng.my: could not connect to host snic.website: could not connect to host +sniderman.pro: could not connect to host sniderman.xyz: could not connect to host snip.host: could not connect to host snippet.host: could not connect to host @@ -13327,11 +13777,12 @@ snod.land: did not receive HSTS header snoozedds.com: max-age too low: 600 snoqualmiefiber.org: could not connect to host snovey.com: could not connect to host -snow-online.de: could not connect to host snowdy.eu: could not connect to host snowdy.link: could not connect to host snowplane.net: did not receive HSTS header snowraven.de: did not receive HSTS header +snowyluma.com: could not connect to host +snrat.com: did not receive HSTS header so-healthy.co.uk: did not receive HSTS header sobabox.ru: could not connect to host sobinski.pl: did not receive HSTS header @@ -13339,7 +13790,6 @@ soboleva-pr.com.ua: could not connect to host sobreporcentagem.com: did not receive HSTS header socal-babes.com: could not connect to host soccergif.com: could not connect to host -soccersavings.com: could not connect to host soci.ml: could not connect to host social-journey.com: could not connect to host socialbillboard.com: could not connect to host @@ -13362,6 +13812,7 @@ sodacore.com: could not connect to host soe-server.com: could not connect to host softballsavings.com: did not receive HSTS header softclean.pt: did not receive HSTS header +softplaynation.co.uk: could not connect to host sogeek.me: could not connect to host sogravatas.net.br: could not connect to host sojingle.net: could not connect to host @@ -13372,7 +13823,6 @@ solarcom.com.br: could not connect to host solartrackerapp.com: could not connect to host soldbygold.net: did not receive HSTS header solentes.com.br: could not connect to host -soleria.eu: did not receive HSTS header solidfuelappliancespares.co.uk: did not receive HSTS header solidimage.com.br: could not connect to host solidtuesday.com: could not connect to host @@ -13385,7 +13835,6 @@ soll-i.ch: did not receive HSTS header solosmusic.xyz: could not connect to host solsystems.ru: did not receive HSTS header solutive.fi: did not receive HSTS header -solvingproblems.com.au: could not connect to host solymar.co: could not connect to host some.rip: max-age too low: 6307200 somebodycares.org: did not receive HSTS header @@ -13394,7 +13843,7 @@ something-else.cf: could not connect to host somethingnew.xyz: could not connect to host somethingsimilar.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no] somewherein.jp: did not receive HSTS header -sonafe.info: did not receive HSTS header +sonafe.info: could not connect to host sonerezh.bzh: did not receive HSTS header sonialive.com: did not receive HSTS header sonic.network: did not receive HSTS header @@ -13409,6 +13858,8 @@ soply.com: could not connect to host soporte.cc: could not connect to host sorenam.com: could not connect to host sorensen-online.com: could not connect to host +sorex.photo: max-age too low: 0 +sorincocorada.ro: could not connect to host sorinmuntean.ro: did not receive HSTS header sortaweird.net: could not connect to host sortingwizard.com: could not connect to host @@ -13418,7 +13869,7 @@ sosaka.ml: could not connect to host sosecu.red: could not connect to host sosiolog.com: could not connect to host sosko.in.rs: could not connect to host -sotiran.com: could not connect to host +sotiran.com: did not receive HSTS header sotor.de: did not receive HSTS header soucorneteiro.com.br: could not connect to host sougi-review.top: did not receive HSTS header @@ -13426,7 +13877,6 @@ soulcraft.bz: could not connect to host soulema.com: could not connect to host soulfulglamour.uk: could not connect to host soulsteer.com: could not connect to host -soumikghosh.com: did not receive HSTS header soundbytemedia.com: did not receive HSTS header soundforsound.co.uk: did not receive HSTS header soundgasm.net: could not connect to host @@ -13451,7 +13901,6 @@ sovereignshare.com: could not connect to host sown.dyndns.org: could not connect to host sowncloud.de: could not connect to host soz6.com: did not receive HSTS header -sp-sephiroth.jp: max-age too low: 0 sp.rw: could not connect to host spacecafe.org: did not receive HSTS header spacedust.xyz: could not connect to host @@ -13461,10 +13910,8 @@ spacelabs.io: could not connect to host spacemo.com: did not receive HSTS header spacountryexplorer.org.au: did not receive HSTS header spaggel.nl: did not receive HSTS header -spaldingwall.com: could not connect to host spam.lol: could not connect to host spamloco.net: did not receive HSTS header -spanda.io: could not connect to host spangehlassociates.com: did not receive HSTS header spanien.guide: could not connect to host sparelib.com: max-age too low: 3650 @@ -13478,12 +13925,13 @@ sparta-trade.com: could not connect to host spartantheatre.org: could not connect to host spauted.com: could not connect to host spawn.cz: could not connect to host -spcx.eu: could not connect to host +spcx.eu: did not receive HSTS header spdysync.com: could not connect to host specialedesigns.com: could not connect to host specialistnow.com.au: did not receive HSTS header spectreattack.com: did not receive HSTS header speculor.net: could not connect to host +spedition-transport-umzug.de: could not connect to host spedplus.com.br: did not receive HSTS header speed-mailer.com: could not connect to host speedcounter.net: could not connect to host @@ -13499,7 +13947,7 @@ sperohub.lt: did not receive HSTS header sphinx.network: could not connect to host spicydog.tk: could not connect to host spicywombat.com: could not connect to host -spiegels.nl: could not connect to host +spiegels.nl: did not receive HSTS header spielcasinos.com: did not receive HSTS header spikeykc.me: did not receive HSTS header spilsbury.io: could not connect to host @@ -13514,7 +13962,6 @@ spitefultowel.com: did not receive HSTS header spitfireuav.com: could not connect to host spititout.it: could not connect to host split.is: could not connect to host -splunk.zone: could not connect to host spokonline.com: could not connect to host spon.cz: did not receive HSTS header sponsorowani.pl: did not receive HSTS header @@ -13524,6 +13971,7 @@ spookyinternet.com: could not connect to host sporara.com: did not receive HSTS header sport247.bet: max-age too low: 2592000 sportchirp-internal.azurewebsites.net: did not receive HSTS header +sportflash.info: did not receive HSTS header sporthit.ru: could not connect to host sportifik.com: did not receive HSTS header sportingoods.com.br: could not connect to host @@ -13573,6 +14021,7 @@ ss-free.net: could not connect to host ss-x.ru: could not connect to host ss.wtf: could not connect to host ssco.xyz: did not receive HSTS header +ssconn.com: could not connect to host ssh.nu: could not connect to host sshool.at: could not connect to host ssl.panoramio.com: could not connect to host @@ -13597,20 +14046,24 @@ stadtgartenla.com: could not connect to host staffjoy.com: did not receive HSTS header staffjoystaging.com: could not connect to host stagingjobshq.com: did not receive HSTS header -stahl.xyz: did not receive HSTS header +stahl.xyz: could not connect to host +stalder.work: could not connect to host stalkerhispano.com: max-age too low: 0 stalkerteam.pl: did not receive HSTS header stalkthe.net: could not connect to host stall-zur-linde.de: did not receive HSTS header stalschermer.nl: could not connect to host +stamboommuller.nl: did not receive HSTS header +stamboomvanderwal.nl: did not receive HSTS header stanandjerre.org: could not connect to host standardssuck.org: did not receive HSTS header standingmist.com: did not receive HSTS header -standoutbooks.com: max-age too low: 0 +standoutbooks.com: did not receive HSTS header standuppaddlesports.com.au: did not receive HSTS header stannahtrapliften.nl: did not receive HSTS header +star-killer.net: could not connect to host star-stuff.de: did not receive HSTS header -star.do: could not connect to host +star.do: did not receive HSTS header starandshield.com: did not receive HSTS header starapple.nl: did not receive HSTS header starcafe.me: could not connect to host @@ -13622,7 +14075,6 @@ starklane.com: max-age too low: 300 starmusic.ga: could not connect to host starplatinum.jp: could not connect to host starquake.nl: could not connect to host -starsam80.net: could not connect to host starsbattle.net: could not connect to host starteesforsale.co.za: did not receive HSTS header startup.melbourne: could not connect to host @@ -13645,7 +14097,7 @@ staticisnoise.com: could not connect to host stationaryjourney.com: did not receive HSTS header stationcharlie.com: could not connect to host stationnementdenuit.ca: did not receive HSTS header -status-sprueche.de: did not receive HSTS header +status-sprueche.de: could not connect to host status.coffee: could not connect to host statusbot.io: could not connect to host statuschecks.net: could not connect to host @@ -13657,11 +14109,13 @@ stcomex.com: did not receive HSTS header stdev.org: could not connect to host steamhours.com: could not connect to host steampunkrobot.com: did not receive HSTS header +stedbg.net: could not connect to host steelbea.ms: could not connect to host steelrhino.co: could not connect to host steem.io: did not receive HSTS header steenackers.be: did not receive HSTS header stefanweiser.de: did not receive HSTS header +stefany.eu: could not connect to host steffi-in-australien.com: could not connect to host stem.is: did not receive HSTS header stepbystep3d.com: did not receive HSTS header @@ -13670,7 +14124,6 @@ steph3n.me: could not connect to host stephanierxo.com: did not receive HSTS header stephanos.me: could not connect to host stephenandburns.com: did not receive HSTS header -stephenjvoiceovers.com: did not receive HSTS header stephensolis.net: could not connect to host stephensolisrey.es: could not connect to host steplogictalent.com: could not connect to host @@ -13690,11 +14143,13 @@ stickswag.cf: could not connect to host stig.io: did not receive HSTS header stiger.me: could not connect to host stigroom.com: could not connect to host +stigviewer.com: did not receive HSTS header stijnbelmans.be: max-age too low: 604800 stilettomoda.com.br: could not connect to host stillblackhat.id: could not connect to host stillyarts.com: did not receive HSTS header stinkytrashhound.com: could not connect to host +stirling.co: could not connect to host stirlingpoon.net: could not connect to host stirlingpoon.xyz: could not connect to host stitthappens.com: did not receive HSTS header @@ -13712,10 +14167,12 @@ stoffe-monster.de: did not receive HSTS header stoffelen.nl: did not receive HSTS header stoianlawfirm.com: could not connect to host stoick.me: could not connect to host +stoinov.com: could not connect to host stole-my.bike: could not connect to host stole-my.tv: could not connect to host stomadental.com: did not receive HSTS header stonecutterscommunity.com: could not connect to host +stonemain.eu: could not connect to host stonemanbrasil.com.br: could not connect to host stopakwardhandshakes.org: could not connect to host stopwoodfin.org: could not connect to host @@ -13729,7 +14186,6 @@ storiesofhealth.org: did not receive HSTS header stormhub.org: could not connect to host stormwatcher.org: could not connect to host stormyyd.com: max-age too low: 0 -storytime.hu: could not connect to host stpatricksguild.com: did not receive HSTS header stqry.com: did not receive HSTS header str0.at: did not receive HSTS header @@ -13745,19 +14201,20 @@ streamer.tips: did not receive HSTS header streamingeverywhere.com: could not connect to host streamingmagazin.de: could not connect to host streampanel.net: did not receive HSTS header +streams.dyndns.org: could not connect to host streamthemeeting.com: did not receive HSTS header streamzilla.com: did not receive HSTS header -street-smart-home.de: could not connect to host strehl.tk: could not connect to host strelitzia02.com: could not connect to host stressfreehousehold.com: could not connect to host strictlysudo.com: could not connect to host strife.tk: could not connect to host strila.me: could not connect to host -striptizer.tk: did not receive HSTS header +striptizer.tk: could not connect to host +strobeto.de: did not receive HSTS header stroeercrm.de: could not connect to host -strommenhome.com: could not connect to host strongest-privacy.com: could not connect to host +struxureon.com: did not receive HSTS header stuartbaxter.co: could not connect to host stubbings.eu: could not connect to host student-scientist.org: did not receive HSTS header @@ -13769,15 +14226,16 @@ studenttravel.cz: did not receive HSTS header studer.su: could not connect to host studinf.xyz: could not connect to host studio-panic.com: did not receive HSTS header -studiocn.cn: did not receive HSTS header +studiocn.cn: could not connect to host studiodoprazer.com.br: could not connect to host studiozelden.com: did not receive HSTS header studport.rv.ua: max-age too low: 604800 studyabroadstation.com: could not connect to host -studybay.com: did not receive HSTS header +studybay.com: could not connect to host studydrive.net: did not receive HSTS header studyhub.cf: did not receive HSTS header studying-neet.com: could not connect to host +stuff-fibre.co.nz: did not receive HSTS header stugb.de: did not receive HSTS header stumeta2018.de: could not connect to host stupidstatetricks.com: could not connect to host @@ -13787,14 +14245,16 @@ sturge.co.uk: did not receive HSTS header stuudium.life: could not connect to host stylenda.com: could not connect to host stylle.me: could not connect to host +styloeart.com: could not connect to host stytt.com: did not receive HSTS header +suaraangin.com: could not connect to host suareforma.com: could not connect to host suave.io: did not receive HSTS header subbing.work: could not connect to host subdimension.org: could not connect to host subeesu.com: could not connect to host subhacker.net: could not connect to host -subrain.com: could not connect to host +subrain.com: did not receive HSTS header subrosa.io: could not connect to host subsys.no: did not receive HSTS header subtitle.rip: could not connect to host @@ -13810,7 +14270,7 @@ sudo.im: could not connect to host sudo.li: did not receive HSTS header sudosu.fr: could not connect to host suempresa.cloud: could not connect to host -suffts.de: did not receive HSTS header +suffts.de: could not connect to host sugarcitycon.com: could not connect to host sugarsweetorsour.com: did not receive HSTS header sugartownfarm.com: could not connect to host @@ -13853,10 +14313,12 @@ superklima.ro: did not receive HSTS header superlandnetwork.de: did not receive HSTS header superlentes.com.br: could not connect to host supernovabrasil.com.br: did not receive HSTS header +supernt.lt: could not connect to host superpase.com: could not connect to host supersahnetorten.de: could not connect to host supersalescontest.nl: did not receive HSTS header superschnappchen.de: could not connect to host +supersec.es: could not connect to host supersecurefancydomain.com: could not connect to host supertramp-dafonseca.com: did not receive HSTS header superuser.fi: could not connect to host @@ -13866,12 +14328,14 @@ supperclub.es: could not connect to host support4server.de: could not connect to host supportfan.gov: could not connect to host suprlink.net: could not connect to host -supweb.ovh: could not connect to host +supweb.ovh: did not receive HSTS header surasak.xyz: could not connect to host suraya.online: could not connect to host surfeasy.com: did not receive HSTS header surfone-leucate.com: did not receive HSTS header +surgiclinic.gr: did not receive HSTS header surkatty.org: did not receive HSTS header +survivebox.fr: did not receive HSTS header susastudentenjobs.de: could not connect to host susconam.org: could not connect to host suseasky.com: did not receive HSTS header @@ -13889,6 +14353,7 @@ suzukikenichi.com: did not receive HSTS header svadobkajuvi.sk: did not receive HSTS header svarovani.tk: could not connect to host svatba-frantovi.cz: could not connect to host +sve-hosting.nl: could not connect to host svenluijten.com: did not receive HSTS header svenskacasino.com: did not receive HSTS header svenskaservern.se: could not connect to host @@ -13928,7 +14393,9 @@ swordfighting.net: could not connect to host swu.party: could not connect to host sx3.no: could not connect to host sxbk.pw: could not connect to host +sy-anduril.de: did not receive HSTS header syam.cc: could not connect to host +sychov.pro: could not connect to host sydgrabber.tk: could not connect to host sykl.us: could not connect to host sylvaincombe.net: could not connect to host @@ -13942,9 +14409,10 @@ syncappate.com: could not connect to host syncclinicalstudy.com: could not connect to host syncer.jp: did not receive HSTS header synchrocube.com: could not connect to host +synchtu.be: could not connect to host syncmylife.net: could not connect to host syncserve.net: did not receive HSTS header -syneic.com: did not receive HSTS header +syneic.com: could not connect to host synergisticsoccer.com: could not connect to host syno.gq: could not connect to host syntaxoff.com: could not connect to host @@ -13963,7 +14431,6 @@ syss.de: did not receive HSTS header systea.net: could not connect to host system-online.cz: did not receive HSTS header systemd.me: could not connect to host -systemweb.no: could not connect to host syy.hk: did not receive HSTS header szaszm.tk: could not connect to host szerbnyelvkonyv.hu: could not connect to host @@ -14009,6 +14476,7 @@ takebackyourstate.net: could not connect to host takebackyourstate.org: could not connect to host takebonus.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no] takedownthissite.com: could not connect to host +takemoto-ped.com: could not connect to host takinet.kr: could not connect to host takusan.ru: could not connect to host talenthero.io: did not receive HSTS header @@ -14020,17 +14488,16 @@ talk.xyz: could not connect to host talkitup.mx: could not connect to host talkitup.online: could not connect to host talklifestyle.nl: could not connect to host +talktwincities.com: could not connect to host tallr.se: could not connect to host tallshoe.com: could not connect to host talsi.eu: could not connect to host tam7t.com: did not receive HSTS header tamaraboutique.com: could not connect to host -tamasszabo.net: did not receive HSTS header tamersunion.org: did not receive HSTS header tamex.xyz: could not connect to host tandarts-haarlem.nl: did not receive HSTS header tandblekningidag.com: could not connect to host -tangel.me: could not connect to host tangerine.ga: could not connect to host tangibilizing.com: could not connect to host tangiblesecurity.com: did not receive HSTS header @@ -14049,7 +14516,6 @@ tapestries.tk: could not connect to host tapfinder.ca: could not connect to host tapka.cz: did not receive HSTS header tappublisher.com: did not receive HSTS header -taqsim.jp: max-age too low: 0 taranis.re: could not connect to host taravancil.com: did not receive HSTS header tarek.link: could not connect to host @@ -14071,9 +14537,8 @@ tatt.io: could not connect to host tauchkater.de: could not connect to host tavoittaja.fi: did not receive HSTS header tavopica.lt: did not receive HSTS header -taxaudit.com: did not receive HSTS header taxbench.com: could not connect to host -taxiindenbosch.nl: could not connect to host +taxiindenbosch.nl: did not receive HSTS header taxmadras.com: could not connect to host taxsnaps.co.nz: did not receive HSTS header taxspeaker.com: did not receive HSTS header @@ -14081,6 +14546,7 @@ tazemama.biz: could not connect to host tazj.in: did not receive HSTS header tazz.in: could not connect to host tbarter.com: did not receive HSTS header +tbpixel.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no] tbrss.com: did not receive HSTS header tbtech.cz: did not receive HSTS header tbys.us: could not connect to host @@ -14089,6 +14555,7 @@ tcao.info: could not connect to host tcby45.xyz: could not connect to host tcl.ath.cx: did not receive HSTS header tcp.expert: did not receive HSTS header +tcspartner.net: did not receive HSTS header tcwebvn.com: could not connect to host tdelmas.eu: could not connect to host tdelmas.ovh: could not connect to host @@ -14105,7 +14572,6 @@ tdsbhack.tk: could not connect to host teacherph.net: could not connect to host teachforcanada.ca: did not receive HSTS header tealdrones.com: did not receive HSTS header -team-pancake.eu: did not receive HSTS header team-teasers.com: could not connect to host team2fou.cf: did not receive HSTS header teamassists.com: did not receive HSTS header @@ -14117,10 +14583,10 @@ teampoint.cz: could not connect to host teams.microsoft.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no] teamsocial.co: did not receive HSTS header teamup.rocks: did not receive HSTS header -teamx-gaming.de: did not receive HSTS header +teamx-gaming.de: could not connect to host teamzeus.cz: could not connect to host teaparty.id: could not connect to host -tearoy.faith: could not connect to host +tearoy.faith: did not receive HSTS header teasenetwork.com: could not connect to host tebieer.com: could not connect to host tech-blog.fr: did not receive HSTS header @@ -14130,6 +14596,10 @@ techandtux.de: could not connect to host techask.it: could not connect to host techassist.io: did not receive HSTS header techcavern.ml: did not receive HSTS header +techday.co.nz: did not receive HSTS header +techday.com: did not receive HSTS header +techday.com.au: did not receive HSTS header +techday.eu: did not receive HSTS header techelements.co: did not receive HSTS header techfactslive.com: did not receive HSTS header techhipster.net: could not connect to host @@ -14141,7 +14611,6 @@ techmasters.andover.edu: could not connect to host techmatehq.com: could not connect to host technicalforensic.com: could not connect to host technicalpenguins.com: did not receive HSTS header -techniclab.net: could not connect to host techniclab.org: could not connect to host techniclab.ru: could not connect to host technikrom.org: did not receive HSTS header @@ -14162,7 +14631,7 @@ tecnidev.com: could not connect to host tecnimotos.com: did not receive HSTS header tecnogaming.com: did not receive HSTS header tecture.de: did not receive HSTS header -tedovo.com: did not receive HSTS header +tedovo.com: could not connect to host tedxkmitl.com: could not connect to host tee-idf.net: could not connect to host teedb.de: could not connect to host @@ -14173,7 +14642,6 @@ tefl.io: did not receive HSTS header tegelsensanitaironline.nl: did not receive HSTS header tehotuotanto.net: did not receive HSTS header tehplace.club: could not connect to host -tehranperfume.com: did not receive HSTS header tekiro.com: did not receive HSTS header teknogeek.id: could not connect to host teknologi.or.id: max-age too low: 36000 @@ -14181,6 +14649,7 @@ teknotes.co.uk: could not connect to host tekshrek.com: did not receive HSTS header teksuperior.com: could not connect to host tektoria.de: could not connect to host +tekuteku.jp: could not connect to host tel-dithmarschen.de: did not receive HSTS header teleallarme.ch: could not connect to host telecharger-itunes.com: could not connect to host @@ -14188,6 +14657,7 @@ telecharger-open-office.com: could not connect to host telecharger-winrar.com: could not connect to host telefisk.org: did not receive HSTS header telefonnummer.online: could not connect to host +telefonogratuito.com: did not receive HSTS header telefoonnummerinfo.nl: could not connect to host telekollektiv.org: could not connect to host telescam.com: could not connect to host @@ -14196,6 +14666,7 @@ teletechnology.in: did not receive HSTS header teletra.ru: could not connect to host telfordwhitehouse.co.uk: did not receive HSTS header tellingua.com: did not receive HSTS header +teltonica.com: did not receive HSTS header telugu4u.net: could not connect to host temasa.net: did not receive HSTS header temehu.com: did not receive HSTS header @@ -14203,6 +14674,7 @@ tempcraft.net: could not connect to host tempflix.com: could not connect to host tempo.co: did not receive HSTS header tempodecolheita.com.br: could not connect to host +tempus-aquilae.de: could not connect to host ten-cafe.com: could not connect to host tenberg.com: could not connect to host tendertool.nl: could not connect to host @@ -14220,10 +14692,8 @@ teodio.cl: did not receive HSTS header teoleonie.com: did not receive HSTS header teos.online: could not connect to host teoskanta.fi: could not connect to host -tequilazor.com: could not connect to host teranga.ch: did not receive HSTS header tercerapuertoaysen.cl: could not connect to host -terminalvelocity.co.nz: could not connect to host termino.eu: did not receive HSTS header terra-x.net: could not connect to host terra.by: did not receive HSTS header @@ -14264,7 +14734,7 @@ tgbyte.com: did not receive HSTS header tgod.co: could not connect to host tgr.re: could not connect to host th-bl.de: did not receive HSTS header -th3nd.com: did not receive HSTS header +th3nd.com: could not connect to host thackert.myfirewall.org: could not connect to host thagki9.com: did not receive HSTS header thai.land: did not receive HSTS header @@ -14274,7 +14744,7 @@ thaihostcool.com: did not receive HSTS header thailandpropertylisting.com: did not receive HSTS header thailandpropertylistings.com: did not receive HSTS header thalmann.fr: did not receive HSTS header -thalskarth.com: could not connect to host +thalskarth.com: did not receive HSTS header thatgudstuff.com: could not connect to host thatpodcast.io: did not receive HSTS header thatvizsla.life: did not receive HSTS header @@ -14293,6 +14763,7 @@ theamp.com: did not receive HSTS header theater.cf: could not connect to host theavenuegallery.com: did not receive HSTS header thebakingclass.com: max-age too low: 60 +thebarneystyle.com: did not receive HSTS header thebasementguys.com: could not connect to host thebeautifulmusic.net: did not receive HSTS header thebeginningisnye.com: could not connect to host @@ -14305,6 +14776,7 @@ thebuffalotavern.com: could not connect to host thecandidforum.com: could not connect to host thecapitalbank.com: did not receive HSTS header thecharlestonwaldorf.com: did not receive HSTS header +theciderlink.com.au: did not receive HSTS header thecitizens.com: did not receive HSTS header theclementinebutchers.com: could not connect to host theclimbingunit.com: did not receive HSTS header @@ -14316,7 +14788,6 @@ thecoffeehouse.xyz: could not connect to host thecoffeepod.co.uk: did not receive HSTS header thecskr.in: did not receive HSTS header thecsw.com: did not receive HSTS header -thecustomizewindows.com: did not receive HSTS header thedailyupvote.com: could not connect to host thedarkartsandcrafts.com: could not connect to host thedevilwearswibra.nl: did not receive HSTS header @@ -14327,7 +14798,7 @@ thedrunkencabbage.com: could not connect to host thedystance.com: could not connect to host theel0ja.info: did not receive HSTS header theelitebuzz.com: could not connect to host -theendofzion.com: did not receive HSTS header +theendofzion.com: could not connect to host theepankar.com: could not connect to host theescapistswiki.com: could not connect to host theevergreen.me: could not connect to host @@ -14335,13 +14806,13 @@ theexpatriate.de: could not connect to host theeyeopener.com: did not receive HSTS header thefarbeyond.com: could not connect to host thefootballanalyst.com: did not receive HSTS header -thefox.co: could not connect to host +thefox.co: did not receive HSTS header thefox.com.fr: could not connect to host thefreebirds.in: could not connect to host thefrk.xyz: could not connect to host thefrozenfire.com: did not receive HSTS header thefutureharrills.com: could not connect to host -thegcccoin.com: max-age too low: 0 +thegcccoin.com: max-age too low: 2592000 thegemriverside.com.vn: could not connect to host thego2swatking.com: could not connect to host thegoldregister.co.uk: could not connect to host @@ -14349,11 +14820,9 @@ thegraciousgourmet.com: did not receive HSTS header thegreens.us: could not connect to host thegreenvpn.com: could not connect to host thehiddenbay.cc: could not connect to host -thehiddenbay.eu: could not connect to host -thehiddenbay.fi: could not connect to host +thehiddenbay.eu: max-age too low: 0 thehiddenbay.me: could not connect to host thehiddenbay.net: could not connect to host -thehiddenbay.ws: could not connect to host thehighersideclothing.com: did not receive HSTS header thehistory.me: could not connect to host thehonorguard.org: did not receive HSTS header @@ -14361,6 +14830,7 @@ thehoopsarchive.com: could not connect to host theimagesalon.com: max-age too low: 43200 theinvisibletrailer.com: could not connect to host theitsage.com: did not receive HSTS header +thej0lt.com: could not connect to host thejobauction.com: did not receive HSTS header thejserver.de: could not connect to host thekrewserver.com: did not receive HSTS header @@ -14377,6 +14847,7 @@ themeaudit.com: could not connect to host themerchandiser.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no] themesurgeons.net: could not connect to host themicrocapital.com: could not connect to host +themilanlife.com: could not connect to host themoderate.xyz: could not connect to host thenextstep.events: could not connect to host thenichecast.com: could not connect to host @@ -14408,7 +14879,6 @@ thesecurityteam.net: could not connect to host thesehighsandlows.com: could not connect to host theserver201.tk: could not connect to host theshadestore.com: max-age too low: 10368000 -theshopally.com: did not receive HSTS header thesled.net: could not connect to host thesplit.is: could not connect to host thestack.xyz: could not connect to host @@ -14416,13 +14886,15 @@ thestagchorleywood.co.uk: did not receive HSTS header thestonegroup.de: could not connect to host thestoritplace.com: max-age too low: 0 thetapirsmouth.com: could not connect to host -thethirdroad.com: could not connect to host +thethirdroad.com: did not receive HSTS header +thetradinghall.com: could not connect to host thetruthhurvitz.com: could not connect to host theurbanyoga.com: did not receive HSTS header theuucc.org: did not receive HSTS header thevintagenews.com: did not receive HSTS header thevoid.one: could not connect to host thewallset.com: could not connect to host +thewaxhouse.shop: did not receive HSTS header thewebfellas.com: did not receive HSTS header thewego.com: could not connect to host theweilai.com: could not connect to host @@ -14432,6 +14904,7 @@ thewp.pro: could not connect to host thezonders.com: did not receive HSTS header thgros.fr: could not connect to host thibautcharles.net: did not receive HSTS header +thienteakee.com: did not receive HSTS header thierfreund.de: did not receive HSTS header thinkcash.nl: could not connect to host thinkcoding.de: could not connect to host @@ -14460,11 +14933,15 @@ thomasnet.fr: could not connect to host thomasscholz.com: max-age too low: 2592000 thomasschweizer.net: could not connect to host thomasvt.xyz: max-age too low: 2592000 +thompsonfamily.cloud: could not connect to host thorbis.com: could not connect to host thorbiswebsitedesign.com: could not connect to host thorgames.nl: did not receive HSTS header thorncreek.net: did not receive HSTS header thot.space: could not connect to host +thoughtsynth.com: could not connect to host +thoughtsynth.net: could not connect to host +thoughtsynth.org: could not connect to host threatcentral.io: could not connect to host threebrothersbrewing.com: max-age too low: 2592000 threebulls.be: did not receive HSTS header @@ -14475,6 +14952,7 @@ throughthelookingglasslens.co.uk: could not connect to host thrx.net: did not receive HSTS header thumbtack.com: did not receive HSTS header thundercampaign.com: could not connect to host +thuviensoft.net: could not connect to host thuybich.com: did not receive HSTS header thyrex.fr: could not connect to host ti-js.com: could not connect to host @@ -14502,14 +14980,16 @@ tierrarp.com: could not connect to host tiffanytravels.com: did not receive HSTS header tightlineproductions.com: did not receive HSTS header tigit.co.nz: could not connect to host +tiki-god.co.uk: could not connect to host tikutiku.pl: could not connect to host tildebot.com: could not connect to host tilient.eu: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no] -tilkah.com.au: did not receive HSTS header +tilkah.com.au: could not connect to host tillcraft.com: could not connect to host timbeilby.com: could not connect to host timbuktutimber.com: did not receive HSTS header -timcamara.com: did not receive HSTS header +timcamara.com: could not connect to host +timdebruijn.nl: did not receive HSTS header time-river.xyz: could not connect to host timeatlas.com: did not receive HSTS header timer.fit: could not connect to host @@ -14525,18 +15005,18 @@ timestamp.uk: could not connect to host timhieubenh.net: could not connect to host timhjalpen.se: could not connect to host timklefisch.de: did not receive HSTS header -timmy.im: could not connect to host timmy.ws: could not connect to host -timotrans.de: did not receive HSTS header -timotrans.eu: did not receive HSTS header +timotrans.de: could not connect to host +timotrans.eu: could not connect to host timowi.de: could not connect to host timowi.net: could not connect to host timroes.de: did not receive HSTS header timschubert.net: max-age too low: 172800 +timtj.ca: could not connect to host timvandekamp.nl: did not receive HSTS header +timweb.ca: could not connect to host timwhite.io: did not receive HSTS header timwittenberg.com: could not connect to host -timysewyn.be: could not connect to host tinchbear.xyz: did not receive HSTS header tindewen.net: could not connect to host tink.network: could not connect to host @@ -14551,6 +15031,7 @@ tism.in: could not connect to host tiste.org: could not connect to host titanlab.de: could not connect to host titanleaf.com: could not connect to host +titanpointe.org: did not receive HSTS header tittarpuls.se: could not connect to host titties.ml: could not connect to host tjandpals.com: could not connect to host @@ -14560,11 +15041,12 @@ tjs.me: could not connect to host tju.me: could not connect to host tkappertjedemetamorfose.nl: could not connect to host tkarstens.de: did not receive HSTS header -tkhw.tk: did not receive HSTS header +tkhw.tk: could not connect to host tkonstantopoulos.tk: could not connect to host tkts.cl: could not connect to host tlach.cz: did not receive HSTS header tlcdn.net: could not connect to host +tlcnet.info: could not connect to host tlo.hosting: could not connect to host tlo.link: could not connect to host tlo.network: could not connect to host @@ -14574,8 +15056,6 @@ tlshost.net: could not connect to host tm-solutions.eu: could not connect to host tm.id.au: did not receive HSTS header tmaward.net: could not connect to host -tmconnects.com: did not receive HSTS header -tmdc.ddns.net: could not connect to host tmhlive.com: could not connect to host tmin.cf: could not connect to host tmitchell.io: could not connect to host @@ -14595,13 +15075,17 @@ tobiasmathes.name: could not connect to host tobiasofficial.at: could not connect to host tobiassachs.cf: could not connect to host tobiassachs.tk: could not connect to host +tobis-webservice.de: did not receive HSTS header +tobisworld.ch: could not connect to host tobyx.is: could not connect to host todesschaf.org: could not connect to host todo.is: could not connect to host todobazar.es: could not connect to host +todokete.ga: could not connect to host todoscomciro.com: did not receive HSTS header todosrv.com: could not connect to host tofa-koeln.de: could not connect to host +tofilmhub.com: could not connect to host tofu.im: could not connect to host togelonlinecommunity.com: did not receive HSTS header tohokufd.com: could not connect to host @@ -14625,18 +15109,18 @@ tollsjekk.no: could not connect to host tolud.com: could not connect to host tom.run: did not receive HSTS header tomandshirley.com: could not connect to host +tomaz.eu: could not connect to host +tomcort.com: could not connect to host tomeara.net: could not connect to host tomevans.io: did not receive HSTS header tomharling.co.uk: could not connect to host tomlankhorst.nl: did not receive HSTS header -tomli.blog: could not connect to host tomli.me: could not connect to host tommounsey.com: did not receive HSTS header tommsy.com: did not receive HSTS header tommy-bordas.fr: did not receive HSTS header tommyads.com: could not connect to host tommyweber.de: did not receive HSTS header -tomochun.net: max-age too low: 0 tomphill.co.uk: could not connect to host tomy.icu: could not connect to host tonburi.jp: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no] @@ -14644,8 +15128,10 @@ tongmu.me: could not connect to host toniharant.de: could not connect to host tono.us: could not connect to host toomanypillows.com: could not connect to host +top-solar-info.de: could not connect to host top-stage.net: could not connect to host top10mountainbikes.info: could not connect to host +top9.fr: did not receive HSTS header topanlage.de: could not connect to host topbargains.com.au: did not receive HSTS header topbestsellerproduct.com: did not receive HSTS header @@ -14663,7 +15149,6 @@ topshelfguild.com: could not connect to host topshoptools.com: could not connect to host toptenthebest.com: did not receive HSTS header toptranslation.com: did not receive HSTS header -topwin.la: could not connect to host topyx.com: did not receive HSTS header tor2web.org: could not connect to host torbay.ga: could not connect to host @@ -14680,10 +15165,10 @@ torrentz.website: could not connect to host torrentz2.eu: did not receive HSTS header tortugalife.de: could not connect to host torv.rocks: did not receive HSTS header -toscer.me: did not receive HSTS header tosecure.link: could not connect to host toshnix.com: could not connect to host toshub.com: could not connect to host +totaku.ru: could not connect to host totalle.com.br: could not connect to host totallynotaserver.com: could not connect to host totalsystemcare.com: could not connect to host @@ -14699,7 +15184,6 @@ touchbasemail.com: did not receive HSTS header touchinformatica.com: did not receive HSTS header touchpointidg.us: could not connect to host touchscreen-handy.de: did not receive HSTS header -touchscreentills.com: could not connect to host touchstonefms.co.uk: did not receive HSTS header touray-enterprise.ch: could not connect to host tournaire.fr: did not receive HSTS header @@ -14707,15 +15191,17 @@ tourpeer.com: did not receive HSTS header toursandtransfers.it: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no] tousproducteurs.fr: did not receive HSTS header towaway.ru: could not connect to host -town-farm.surrey.sch.uk: could not connect to host +town-farm.surrey.sch.uk: max-age too low: 0 +townofbridgewater.ca: could not connect to host tox.im: did not receive HSTS header toxicboot.com: could not connect to host toxicip.com: could not connect to host toxme.se: did not receive HSTS header toymania.de: could not connect to host toyotamotala.se: could not connect to host +tpansino.com: could not connect to host tpbcdn.com: could not connect to host -tpblist.xyz: max-age too low: 0 +tpblist.xyz: could not connect to host tpbunblocked.org: could not connect to host tpe-edu.com: could not connect to host tpms4u.at: did not receive HSTS header @@ -14737,7 +15223,6 @@ tradingcentre.com.au: did not receive HSTS header tradinghope.com: could not connect to host tradingrooms.com: did not receive HSTS header traditional-knowledge.tk: did not receive HSTS header -tradiz.org: could not connect to host traeningsprojekt.dk: did not receive HSTS header trafficquality.org: could not connect to host traffictigers.com: did not receive HSTS header @@ -14748,16 +15233,8 @@ trainhorns.us: did not receive HSTS header training4girls.ru: could not connect to host traininglist.org: could not connect to host trainingproviderresults.gov: could not connect to host -trainline.at: could not connect to host -trainline.cn: could not connect to host -trainline.com.br: could not connect to host -trainline.com.pt: could not connect to host -trainline.cz: could not connect to host trainline.dk: could not connect to host trainline.io: could not connect to host -trainline.nl: could not connect to host -trainline.no: could not connect to host -trainline.pl: could not connect to host trainline.se: could not connect to host trainut.com: could not connect to host trakfusion.com: could not connect to host @@ -14780,6 +15257,7 @@ traumhuetten.de: did not receive HSTS header travality.ru: could not connect to host travel-kuban.ru: did not receive HSTS header travel1x1.com: did not receive HSTS header +traveling-thailand.info: could not connect to host travelinsightswriter.com: could not connect to host travelling.expert: could not connect to host travotion.com: could not connect to host @@ -14797,8 +15275,6 @@ trendberry.ru: could not connect to host trendingpulse.com: could not connect to host trendisland.de: did not receive HSTS header trendydips.com: could not connect to host -trentmaydew.com: did not receive HSTS header -tretkowski.de: did not receive HSTS header trewe.eu: could not connect to host triadwars.com: did not receive HSTS header triageo.com.au: could not connect to host @@ -14815,12 +15291,12 @@ trinitytechdev.com: did not receive HSTS header tripcombi.com: did not receive HSTS header tripdelta.com: did not receive HSTS header tripinsider.club: did not receive HSTS header -tripp.xyz: did not receive HSTS header trisportas.lt: did not receive HSTS header tristanfarkas.one: could not connect to host trixati.org.ua: did not receive HSTS header trixies-wish.nz: could not connect to host trixy.com.br: could not connect to host +trizone.com.au: did not receive HSTS header troi.de: did not receive HSTS header trollme.me: could not connect to host trollscave.xyz: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no] @@ -14828,6 +15304,7 @@ tronflix.com: did not receive HSTS header troo.ly: could not connect to host trouter.io: could not connect to host trouver-son-chemin.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no] +trpg.wiki: could not connect to host truckgpsreviews.com: did not receive HSTS header true.ink: did not receive HSTS header truebred-labradors.com: did not receive HSTS header @@ -14838,6 +15315,7 @@ trush.in: could not connect to host trustedinnovators.com: could not connect to host trusteecar.com: did not receive HSTS header trustmeimfancy.com: could not connect to host +trustocean.com: did not receive HSTS header try2services.cm: did not receive HSTS header trybind.com: could not connect to host tryfabulousdiet.com: could not connect to host @@ -14888,6 +15366,7 @@ tulsameetingroom.com: could not connect to host tunca.it: did not receive HSTS header tunebitfm.de: could not connect to host tungstenroyce.com: did not receive HSTS header +tunity.be: did not receive HSTS header tupizm.com: could not connect to host turismo.cl: could not connect to host turkiet.guide: could not connect to host @@ -14933,6 +15412,7 @@ tweetify.io: could not connect to host twelve.rocks: could not connect to host twelve.today: could not connect to host twelverocks.com: could not connect to host +twem.ddns.net: could not connect to host twillionmas.com: could not connect to host twinkieman.com: could not connect to host twinkseason.ca: could not connect to host @@ -14946,11 +15426,11 @@ twist.party: could not connect to host twisted-brains.org: could not connect to host twitter.ax: could not connect to host twogo.com: did not receive HSTS header +twolanedesign.com: did not receive HSTS header twolinepassbrewing.com: could not connect to host twolivelife.com: could not connect to host twoo.com: could not connect to host twotube.ie: could not connect to host -twuni.org: could not connect to host tx041cap.org: could not connect to host txbi.de: could not connect to host txclimbers.com: could not connect to host @@ -14972,7 +15452,6 @@ type1joe.com: could not connect to host type1joe.net: could not connect to host type1joe.org: could not connect to host typeofweb.com: did not receive HSTS header -typeonejoe.com: could not connect to host typeonejoe.net: could not connect to host typeonejoe.org: could not connect to host typingrevolution.com: did not receive HSTS header @@ -14982,6 +15461,7 @@ tyroproducts.eu: did not receive HSTS header tyskland.guide: could not connect to host tysye.ca: could not connect to host tyuo-keibi.co.jp: did not receive HSTS header +tz56789.com: did not receive HSTS header tzappa.net: could not connect to host tzwe.com: could not connect to host u-master.net: did not receive HSTS header @@ -14998,7 +15478,7 @@ ublox.com: did not receive HSTS header ubtce.com: could not connect to host ubuntuhot.com: did not receive HSTS header uc.ac.id: did not receive HSTS header -uclanmasterplan.co.uk: could not connect to host +uclanmasterplan.co.uk: did not receive HSTS header udbhav.me: could not connect to host ueba1085.jp: could not connect to host uefeng.com: did not receive HSTS header @@ -15006,7 +15486,6 @@ uega.net: did not receive HSTS header uerdingen.info: did not receive HSTS header uesociedadlimitada.com: could not connect to host ueu.me: could not connect to host -uevan.com: could not connect to host ufgaming.com: did not receive HSTS header uflixit.com: did not receive HSTS header ufo.moe: did not receive HSTS header @@ -15020,7 +15499,7 @@ uhlhosting.ch: [Exception... "Component returned failure code: 0x80004005 (NS_ER uhm.io: did not receive HSTS header uhuru-market.com: could not connect to host uitslagensoftware.nl: did not receive HSTS header -ukas.com: did not receive HSTS header +ukas.com: could not connect to host ukdropshipment.co.uk: did not receive HSTS header ukdropshipment.com: did not receive HSTS header ukk.dk: did not receive HSTS header @@ -15028,7 +15507,7 @@ ukkeyholdingcompany.co.uk: could not connect to host ukrgadget.com: could not connect to host ulabox.cat: did not receive HSTS header ulabox.es: did not receive HSTS header -ulalau.com: did not receive HSTS header +ulalau.com: could not connect to host ullamodaintima.com.br: could not connect to host ulmo.dk: could not connect to host ulti.gq: did not receive HSTS header @@ -15036,13 +15515,16 @@ ultimate-garcinia-plus.com: could not connect to host ultimate-glow-skin.com: could not connect to host ultimate-memoryplus.com: could not connect to host ultimate-neuroplus.com: could not connect to host +ultrasteam.net: could not connect to host ultros.io: did not receive HSTS header umaimise.info: did not receive HSTS header umassfive.coop: did not receive HSTS header +umbriel.fr: did not receive HSTS header umgardi.ca: could not connect to host umidev.com: could not connect to host umie.cc: did not receive HSTS header ump45.moe: did not receive HSTS header +unapolegetic.co: did not receive HSTS header unart.info: could not connect to host unbanthe.net: could not connect to host unblockat.tk: did not receive HSTS header @@ -15071,7 +15553,7 @@ unblockthe.site: could not connect to host unblockthe.top: could not connect to host unccdesign.club: could not connect to host unclegen.xyz: could not connect to host -undeadbrains.de: did not receive HSTS header +undeadbrains.de: could not connect to host under30stravelinsurance.com.au: did not receive HSTS header undercovercondoms.com: could not connect to host underkin.com: could not connect to host @@ -15094,11 +15576,9 @@ uniformespousoalegre.com.br: did not receive HSTS header unikitty-on-tour.com: could not connect to host unikrn.com: could not connect to host unionstationapp.com: could not connect to host -unipig.de: could not connect to host unirenter.ru: did not receive HSTS header unison.com: did not receive HSTS header -unisyssecurity.com: could not connect to host -uniteasia.org: did not receive HSTS header +unisyssecurity.com: did not receive HSTS header unitedcyberdevelopment.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no] unitlabs.net: could not connect to host unitrade-425.co.za: did not receive HSTS header @@ -15107,9 +15587,11 @@ universogay.com: could not connect to host univstore.win: could not connect to host univz.com: could not connect to host unixtime.pro: could not connect to host +unknownbreakup.com: max-age too low: 2592000 unknownphenomena.net: could not connect to host unmanaged.space: could not connect to host unplugg3r.dk: could not connect to host +unpossible.xyz: could not connect to host unravel.ie: could not connect to host unschoolrules.com: did not receive HSTS header unstockd.org: could not connect to host @@ -15123,6 +15605,8 @@ unyq.me: did not receive HSTS header uonstaffhub.com: could not connect to host uow.ninja: could not connect to host up1.ca: could not connect to host +upaknship.com: did not receive HSTS header +upandclear.org: max-age too low: 0 upboard.jp: could not connect to host upldr.pw: could not connect to host uploadbro.com: could not connect to host @@ -15130,16 +15614,17 @@ upmchealthsecurity.us: could not connect to host uporoops.com: could not connect to host uprotect.it: could not connect to host upstats.eu: could not connect to host -uptic.net: could not connect to host +uptakedigital.com.au: max-age too low: 2592000 +uptic.net: did not receive HSTS header upupming.site: did not receive HSTS header ur-lauber.de: did not receive HSTS header urban-garden.lt: could not connect to host urban-garden.lv: could not connect to host urbanmic.com: could not connect to host -urbansparrow.in: could not connect to host urbanstylestaging.com: did not receive HSTS header urbpic.com: could not connect to host urcentral.org: could not connect to host +url.cab: could not connect to host urlachershop.com.br: did not receive HSTS header urlakite.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no] urlchomp.com: did not receive HSTS header @@ -15155,6 +15640,7 @@ uscitizenship.info: did not receive HSTS header uscntalk.com: could not connect to host uscp8.com: could not connect to host uscurrency.gov: did not receive HSTS header +use.ci: could not connect to host used-in.jp: could not connect to host usedesk.ru: did not receive HSTS header useevlo.com.br: could not connect to host @@ -15168,7 +15654,6 @@ usportsgo.com: could not connect to host usr.nz: did not receive HSTS header utdscanner.com: did not receive HSTS header utilitronium-shockwave.com: could not connect to host -utilityreport.eu: did not receive HSTS header utleieplassen.no: could not connect to host utopiagalaxy.space: could not connect to host utopialgb.org.uk: could not connect to host @@ -15183,7 +15668,7 @@ utvbloggen.se: [Exception... "Component returned failure code: 0x80004005 (NS_ER uvarov.pw: did not receive HSTS header uwesander.de: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no] uwfreelanceopticien.nl: could not connect to host -uwsoftware.be: did not receive HSTS header +uwimonacs.org.jm: did not receive HSTS header uwstartups.com: could not connect to host uxux.pl: could not connect to host uygindir.ml: could not connect to host @@ -15195,6 +15680,7 @@ v-desk.ga: could not connect to host v0rtex.xyz: could not connect to host v0tti.com: did not receive HSTS header v12.co.uk: did not receive HSTS header +v1sit0r.ru: could not connect to host v2.pw: did not receive HSTS header v2ex.us: could not connect to host v4s.ro: did not receive HSTS header @@ -15216,6 +15702,8 @@ vaddder.com: could not connect to host vadennissanofhinesvilleparts.com: could not connect to host vadik.me: could not connect to host vadodesign.nl: did not receive HSTS header +vagaerg.com: could not connect to host +vagaerg.net: could not connect to host vaibhavchatarkar.com: could not connect to host val-sec.com: could not connect to host valaeris.de: did not receive HSTS header @@ -15239,7 +15727,6 @@ vampirism.eu: could not connect to host vanacht.co.za: did not receive HSTS header vanajahosting.com: did not receive HSTS header vanderkley.it: could not connect to host -vanderkroon.nl: could not connect to host vanderstraeten.dynv6.net: could not connect to host vanessabalibridal.com: could not connect to host vanestack.com: could not connect to host @@ -15258,9 +15745,10 @@ varta.io: could not connect to host vasa-webstranka.sk: did not receive HSTS header vasanth.org: could not connect to host vase-eroticke-povidky.cz: could not connect to host +vastgoedcultuurfonds.nl: did not receive HSTS header vastkustenrunt.se: did not receive HSTS header -vati.pw: did not receive HSTS header vavai.net: did not receive HSTS header +vavouchers.com: could not connect to host vayaport.com: could not connect to host vbest.net: could not connect to host vbhelp.org: did not receive HSTS header @@ -15279,9 +15767,11 @@ vechkasov.ru: could not connect to host vectro.me: could not connect to host vedatkamer.com: did not receive HSTS header vega-motor.com.ua: did not receive HSTS header +vega-rumia.com.pl: max-age too low: 2592000 vega.dyndns.info: could not connect to host vegalayer.com: did not receive HSTS header vegalengd.com: did not receive HSTS header +vegangaymer.blog: could not connect to host veganosonline.com: could not connect to host vegasdocs.com: did not receive HSTS header veggiefasting.com: could not connect to host @@ -15312,10 +15802,13 @@ veraandsteve.date: could not connect to host verdeandco.co.uk: could not connect to host verifiedinvesting.com: could not connect to host verifikatorindonesia.com: could not connect to host +veriny.tf: could not connect to host +veriomed.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no] veristor.com: did not receive HSTS header verliefde-jongens.nl: could not connect to host vermontcareergateway.org: could not connect to host vernonfishandgame.ca: did not receive HSTS header +versbeton.nl: max-age too low: 864000 versfin.net: could not connect to host versia.ru: did not receive HSTS header versolslapeyre.fr: did not receive HSTS header @@ -15328,12 +15821,12 @@ veterinaire-cazeres-foucault.fr: could not connect to host vethouse.com.ua: did not receive HSTS header vetmgmt.com: could not connect to host veto.fish: could not connect to host +vforvendetta.science: could not connect to host vfree.org: could not connect to host vgatest.nl: could not connect to host vglimg.com: could not connect to host -vgorcum.com: could not connect to host vhost.co.id: could not connect to host -vi.photo: could not connect to host +via-shire-krug.ru: could not connect to host viabemestar.com.br: could not connect to host viadeux.com: did not receive HSTS header vialibido.com.br: could not connect to host @@ -15345,12 +15838,12 @@ vicianovi.cz: could not connect to host viciousviscosity.xyz: could not connect to host victorenxovais.com.br: could not connect to host victoriapemberton.com: did not receive HSTS header +victoriaville.ca: did not receive HSTS header vid.me: did not receive HSTS header vidb.me: could not connect to host vidbuchanan.co.uk: did not receive HSTS header viddiaz.com: did not receive HSTS header videnskabsklubben.dk: did not receive HSTS header -videoload.co: could not connect to host videomuz.com: could not connect to host videorullen.se: could not connect to host videosxgays.com: could not connect to host @@ -15363,6 +15856,7 @@ viditut.com: could not connect to host vidkovaomara.si: could not connect to host vidlyoficial.com: could not connect to host vidz.ga: could not connect to host +vieaw.com: could not connect to host viennan.net: could not connect to host vietnam-lifer.com: could not connect to host vietnamchevrolet.net: did not receive HSTS header @@ -15378,12 +15872,11 @@ viktorsvantesson.net: did not receive HSTS header viladochurrasco.com.br: could not connect to host vilaydin.com: did not receive HSTS header vilight.com.br: could not connect to host -villa-bellarte.de: could not connect to host +villa-bellarte.de: did not receive HSTS header villacarmela.com.br: did not receive HSTS header villainsclothing.com.au: could not connect to host villalaskowa.pl: did not receive HSTS header villasenor.online: could not connect to host -villekaaria.eu: could not connect to host vilog.me: could not connect to host vimeosucks.nyc: could not connect to host vinasec.se: could not connect to host @@ -15398,7 +15891,6 @@ vinbet666.com: could not connect to host vinbet888.com: could not connect to host vincentkooijman.at: did not receive HSTS header vincentkooijman.nl: did not receive HSTS header -vinciconps4.it: could not connect to host vinesauce.info: could not connect to host vinetalk.net: could not connect to host vinicius.sl: could not connect to host @@ -15407,8 +15899,9 @@ vinogradovka.com: did not receive HSTS header vio.no: did not receive HSTS header violenceinterrupted.org: did not receive HSTS header violet-letter.delivery: could not connect to host +violetraven.co.uk: could not connect to host viosey.com: could not connect to host -vioye.com: did not receive HSTS header +vioye.com: could not connect to host viperdns.com: could not connect to host vipesball.net: could not connect to host viphospitality.se: could not connect to host @@ -15417,10 +15910,10 @@ vipmusic.ga: could not connect to host vipnettikasinoklubi.com: did not receive HSTS header viral8.jp: could not connect to host virginiacrimeanalysisnetwork.org: did not receive HSTS header -virial.de: did not receive HSTS header viris.si: max-age too low: 536000 virtualhealth.com: did not receive HSTS header virtualstrongbox.ca: did not receive HSTS header +virtusaero.com: could not connect to host visa-shinsei.com: did not receive HSTS header visanhigia.com: could not connect to host viserproject.com: did not receive HSTS header @@ -15429,6 +15922,7 @@ visiongamestudios.com: could not connect to host visionthroughknowledge.com: could not connect to host visiontree-beta.eu: could not connect to host visiontree.eu: could not connect to host +visistruct.com: max-age too low: 2592000 visitbroadstairs.com: did not receive HSTS header vispaleistexel.nl: did not receive HSTS header vissanum.com: did not receive HSTS header @@ -15450,8 +15944,9 @@ vivanosports.com.br: did not receive HSTS header vivasports.com.br: could not connect to host vivocloud.com: could not connect to host vivoregularizafacil.com.br: did not receive HSTS header -vivoseg.com: did not receive HSTS header +vivoseg.com: could not connect to host vivremoinscher.fr: did not receive HSTS header +viza.io: could not connect to host vizeat.com: did not receive HSTS header vkino.com: could not connect to host vkulagin.ru: could not connect to host @@ -15460,19 +15955,15 @@ vldkn.net: could not connect to host vleij.family: could not connect to host vlogge.com: did not receive HSTS header vlzbazar.ru: could not connect to host -vmhydro.ru: could not connect to host vmrdev.com: could not connect to host vmstan.com: did not receive HSTS header -vmzone.de: could not connect to host vndb.org: could not connect to host vocab.guru: could not connect to host vocalsynth.space: could not connect to host voceinveste.com: did not receive HSTS header vogt.tech: could not connect to host -voice-of-design.com: could not connect to host voicesuk.co.uk: did not receive HSTS header -void-it.nl: did not receive HSTS header -voidark.com: did not receive HSTS header +void-it.nl: could not connect to host voidi.ca: could not connect to host voidserv.net: could not connect to host voidshift.com: could not connect to host @@ -15484,7 +15975,7 @@ voirodaisuki.club: could not connect to host volatimer.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no] volbyzive.cz: did not receive HSTS header volcain.io: could not connect to host -volcrado.com: did not receive HSTS header +volcrado.com: could not connect to host volkden.com: could not connect to host volkswurst.de: did not receive HSTS header voltimax.com: did not receive HSTS header @@ -15504,7 +15995,7 @@ vorm2.com: did not receive HSTS header vortexhobbies.com: did not receive HSTS header vosjesweb.nl: could not connect to host votercircle.com: did not receive HSTS header -voterstartingpoint.uk: could not connect to host +voterstartingpoint.uk: did not receive HSTS header votresiteweb.ch: could not connect to host vow.vn: could not connect to host vowsy.club: did not receive HSTS header @@ -15534,12 +16025,14 @@ vrijstaandhuis-in-zwartewaterland-kopen.nl: could not connect to host vrijstaandhuisverkopen.nl: could not connect to host vrlaid.com: could not connect to host vrobert.fr: could not connect to host +vrsgames.com.mx: did not receive HSTS header vrtak-cz.net: could not connect to host vrzl.pro: could not connect to host vsamsonov.com: could not connect to host vsc-don-stocksport.de: did not receive HSTS header vsestiralnie.com: did not receive HSTS header vucdn.com: could not connect to host +vulndetect.com: did not receive HSTS header vulnerabilities.io: could not connect to host vuosaarenmontessoritalo.fi: did not receive HSTS header vvl.me: did not receive HSTS header @@ -15547,6 +16040,7 @@ vwoforangeparts.com: could not connect to host vwt-event.nl: could not connect to host vxapps.com: could not connect to host vxml.club: could not connect to host +vykup-car.ru: could not connect to host vynedmusic.com: could not connect to host vyshivanochka.in.ua: could not connect to host vysvetluju.cz: could not connect to host @@ -15564,24 +16058,23 @@ w9rld.com: did not receive HSTS header wabifoggynuts.com: could not connect to host wachtwoordencheck.nl: could not connect to host waelti.xxx: could not connect to host +wafairhaven.com.au: did not receive HSTS header wafni.com: could not connect to host wai-in.com: could not connect to host wait.moe: could not connect to host -waixingrenfuli.vip: could not connect to host waixingrenfuli7.vip: could not connect to host wakapp.de: could not connect to host wakened.net: did not receive HSTS header +waldkinder-ilmenau.de: did not receive HSTS header walkeryoung.ca: could not connect to host walkingforhealth.org.uk: did not receive HSTS header wallabag.it: did not receive HSTS header wallabag.org: did not receive HSTS header wallacequinn.co.uk: did not receive HSTS header wallet.google.com: did not receive HSTS header (error ignored - included regardless) -wallpapers.pub: could not connect to host wallsblog.dk: could not connect to host walnutgaming.co.uk: could not connect to host walterlynnmosley.com: did not receive HSTS header -wan.pp.ua: could not connect to host wanashi.com: could not connect to host wanban.io: could not connect to host wanda76.com: could not connect to host @@ -15597,7 +16090,7 @@ wangql.cn: could not connect to host wanquanojbk.com: did not receive HSTS header wantshow.com.br: did not receive HSTS header wanybug.cn: could not connect to host -wanybug.com: could not connect to host +wapgu.cc: could not connect to host wapjt.cn: could not connect to host wapking.co: could not connect to host wapking.live: could not connect to host @@ -15611,6 +16104,7 @@ warekon.dk: could not connect to host warezaddict.com: could not connect to host warhistoryonline.com: did not receive HSTS header warlions.info: could not connect to host +warnings.xyz: could not connect to host warped.com: did not receive HSTS header warren.sh: could not connect to host warrencreative.com: did not receive HSTS header @@ -15619,6 +16113,7 @@ warumsuchen.at: did not receive HSTS header wasatchconstables.com: did not receive HSTS header wasatchcrest.com: did not receive HSTS header wasfuereintheater.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no] +wasserburg.dk: did not receive HSTS header wassim.is: did not receive HSTS header watashi.bid: could not connect to host watchium.com: did not receive HSTS header @@ -15642,11 +16137,10 @@ wdt.io: did not receive HSTS header we.serveftp.net: could not connect to host wealthformyhealth.com: did not receive HSTS header wear2work.nl: could not connect to host -wearedisneyland.com: did not receive HSTS header weareincognito.org: could not connect to host wearewithyou.org: could not connect to host weaverhairextensions.nl: could not connect to host -web-adminy.co.uk: did not receive HSTS header +web-advisor.co.uk: could not connect to host web-demarche.com: could not connect to host web-industry.fr: could not connect to host web-insider.net: did not receive HSTS header @@ -15660,12 +16154,14 @@ webapps.directory: could not connect to host webart-factory.de: could not connect to host webassadors.com: could not connect to host webbuzz.com.au: did not receive HSTS header +webbx.se: did not receive HSTS header webchat.domains: did not receive HSTS header webcreation.rocks: did not receive HSTS header webdesign-kronberg.de: did not receive HSTS header webdesignssussex.co.uk: could not connect to host webdev-quiz.de: did not receive HSTS header webdev.mobi: could not connect to host +webdevxp.com: could not connect to host webdosh.com: did not receive HSTS header webeconomia.it: did not receive HSTS header webelement.sk: did not receive HSTS header @@ -15683,6 +16179,7 @@ webm.to: could not connect to host webmail.mayfirst.org: did not receive HSTS header webmaniabr.com: did not receive HSTS header webmarketingfestival.it: did not receive HSTS header +webmel.com: did not receive HSTS header webmixseo.com: did not receive HSTS header webnetmail4u.com: could not connect to host webneuch.ch: could not connect to host @@ -15692,6 +16189,7 @@ webneuch.fr: did not receive HSTS header webneuch.info: did not receive HSTS header webneuch.swiss: did not receive HSTS header webninja.work: could not connect to host +webnoob.net: could not connect to host webnosql.com: could not connect to host webperformance.ru: could not connect to host webproshosting.tk: could not connect to host @@ -15701,6 +16199,7 @@ webreslist.com: could not connect to host websandbox.uk: could not connect to host websectools.com: could not connect to host webseo.de: did not receive HSTS header +websiteadvice.com.au: did not receive HSTS header websitedesign.bg: did not receive HSTS header websitesabq.com: did not receive HSTS header websmartmedia.co.uk: did not receive HSTS header @@ -15715,19 +16214,23 @@ webtechgadgetry.com: could not connect to host webtek.nu: could not connect to host webthings.com.br: did not receive HSTS header webtiles.co.uk: could not connect to host +webtobesocial.de: could not connect to host webukhost.com: could not connect to host webuni.hu: did not receive HSTS header webveloper.com: did not receive HSTS header webwork.pw: could not connect to host webypass.xyz: could not connect to host +webz.one: could not connect to host webzanem.com: could not connect to host wecanfindit.co.za: could not connect to host +wecanvisit.com: could not connect to host wedding-m.jp: did not receive HSTS header weddingenvelopes.co.uk: did not receive HSTS header weddingibiza.nl: could not connect to host wedotrains.club: did not receive HSTS header weebsr.us: could not connect to host weed.ren: could not connect to host +weedlandia.org: did not receive HSTS header weekly.fyi: could not connect to host weerstationgiethoorn.nl: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no] wegenaer.nl: could not connect to host @@ -15746,6 +16249,7 @@ welches-kinderfahrrad.de: could not connect to host welkers.org: could not connect to host wellastore.ru: could not connect to host wellcomp.com.br: did not receive HSTS header +welldrake.com: could not connect to host wellmarts.com: did not receive HSTS header wellness.so: could not connect to host wellopp.com: did not receive HSTS header @@ -15754,6 +16258,7 @@ wellsplasticsurgery.com: did not receive HSTS header wellspringcamps.com: did not receive HSTS header welovejobs.com: did not receive HSTS header welovemail.com: could not connect to host +welpo.me: could not connect to host welpy.com: could not connect to host weltentreff.com: could not connect to host weltmeisterschaft.net: could not connect to host @@ -15762,7 +16267,6 @@ wendalyncheng.com: did not receive HSTS header wendigo.pl: could not connect to host wengebowuguan.com: could not connect to host wenode.net: did not receive HSTS header -wensing-und-koenig.de: could not connect to host wentu.ml: could not connect to host wenz.io: did not receive HSTS header wer.sh: could not connect to host @@ -15775,6 +16279,7 @@ werkplaatsoost.nl: did not receive HSTS header werkruimtebottendaal.nl: could not connect to host werner-schaeffer.de: did not receive HSTS header wernerschaeffer.de: did not receive HSTS header +wes-dev.com: did not receive HSTS header wesayyesprogram.com: could not connect to host wesleyharris.ca: did not receive HSTS header wespeakgeek.co.za: could not connect to host @@ -15800,22 +16305,23 @@ wevolver.com: did not receive HSTS header wewillgo.com: could not connect to host wewillgo.org: did not receive HSTS header wewlad.me: could not connect to host +weyland.tech: did not receive HSTS header wezl.net: did not receive HSTS header wf-training-master.appspot.com: did not receive HSTS header (error ignored - included regardless) wftda.com: did not receive HSTS header wg-tools.de: could not connect to host -wgraphics.ru: could not connect to host +whanau.org: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no] whatisl.ovh: could not connect to host whats.io: could not connect to host whatsstalk.me: could not connect to host whatsyouroffer.co.uk: did not receive HSTS header +wheelwright.org: did not receive HSTS header when-release.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no] when-release.ru: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no] whereisjason.com: could not connect to host whereismyorigin.cf: could not connect to host wherephoto.com: did not receive HSTS header wheresben.today: could not connect to host -whexit.nl: could not connect to host whilsttraveling.com: could not connect to host whisker.network: could not connect to host whiskyglazen.nl: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no] @@ -15824,7 +16330,6 @@ whitehat.id: did not receive HSTS header whiterabbit.org: did not receive HSTS header whiterabbitcakery.com: could not connect to host whiteroom.agency: did not receive HSTS header -whiteshadowimperium.com: could not connect to host whitestagforge.com: did not receive HSTS header whoclicks.net: could not connect to host whoisamitsingh.com: did not receive HSTS header @@ -15832,7 +16337,6 @@ whoisapi.online: could not connect to host wholebites.com: max-age too low: 7889238 wholikes.us: could not connect to host whoneedstobeprimaried.today: could not connect to host -whonix.org: did not receive HSTS header whoownsmyavailability.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no] whoshotya.de: did not receive HSTS header whysuck.com: could not connect to host @@ -15849,7 +16353,6 @@ wifimapa.cz: could not connect to host wiiaam.com: could not connect to host wiiforum.no: did not receive HSTS header wiire.me: could not connect to host -wiki-play.ru: could not connect to host wikiclash.info: could not connect to host wikipeter.nl: did not receive HSTS header wikisports.eu: could not connect to host @@ -15864,11 +16367,11 @@ wilhelm-nathan.de: could not connect to host willcipriano.com: could not connect to host willeminfo.ch: did not receive HSTS header willemsjort.be: did not receive HSTS header -william.gg: could not connect to host william.si: did not receive HSTS header williamboundsltd.com: could not connect to host williamle.com: did not receive HSTS header williamsapiens.com: could not connect to host +williamsonshore.com: max-age too low: 0 williamtm.design: could not connect to host willkommen-fuerstenberg.de: could not connect to host willosagiede.com: did not receive HSTS header @@ -15882,7 +16385,7 @@ windowwellexperts.com: did not receive HSTS header winds.cf: could not connect to host windwoodmedia.com: could not connect to host windwoodweb.com: could not connect to host -wine-importer.ru: could not connect to host +wine-importer.ru: did not receive HSTS header winebid.com: could not connect to host winecodeavocado.com: could not connect to host wineworksonline.com: could not connect to host @@ -15904,6 +16407,7 @@ wirbatz.org: did not receive HSTS header wirc.gr: could not connect to host wiredcut.com: did not receive HSTS header wireless-emergency-stop.com: did not receive HSTS header +wirelesswatch.com.au: did not receive HSTS header wiretrip.io: did not receive HSTS header wirkaufendeinau.to: could not connect to host wisak.eu: could not connect to host @@ -15929,7 +16433,6 @@ wizznab.tk: could not connect to host wk-cpm.com: could not connect to host wk577.com: could not connect to host wlzhiyin.cn: could not connect to host -wm-talk.net: could not connect to host wmawri.com: did not receive HSTS header wmcuk.net: did not receive HSTS header wmfinanz.com: could not connect to host @@ -15968,26 +16471,29 @@ wootton95.com: could not connect to host wooviet.com: could not connect to host wopen.org: could not connect to host wordbits.net: did not receive HSTS header +wordlessecho.com: could not connect to host wordplay.one: could not connect to host +wordpress-test.site: could not connect to host wordpresspro.cl: did not receive HSTS header wordsofamaster.com: could not connect to host work-and-jockel.de: did not receive HSTS header workemy.com: could not connect to host workfone.io: could not connect to host +workissime.com: did not receive HSTS header workpermit.com.vn: could not connect to host worksofwyoming.org: did not receive HSTS header workwithgo.com: could not connect to host world-education-association.org: could not connect to host worldchess.london: could not connect to host -worldfree4.org: could not connect to host +worldfree4.org: did not receive HSTS header worldlist.org: could not connect to host worldpovertysolutions.org: did not receive HSTS header worldsbeststory.com: did not receive HSTS header worldwhisperer.net: could not connect to host wormholevpn.net: could not connect to host worshapp.com: did not receive HSTS header -wow-foederation.de: could not connect to host wow-travel.eu: could not connect to host +wow202y5.com: did not receive HSTS header wowapi.org: could not connect to host wowinvasion.com: did not receive HSTS header wp-fastsearch.de: could not connect to host @@ -15998,7 +16504,7 @@ wpblog.com.tw: could not connect to host wpcarer.pro: could not connect to host wpcheck.io: could not connect to host wpcontrol.se: could not connect to host -wpdesigner.ir: could not connect to host +wpfast.net: could not connect to host wpfortify.com: could not connect to host wpg-inc.com: did not receive HSTS header wphelpwithhomework.tk: could not connect to host @@ -16021,6 +16527,7 @@ wrfu.co.nz: did not receive HSTS header wriedts.de: did not receive HSTS header wrightdoumawedding.com: could not connect to host writeapp.me: did not receive HSTS header +writemytermpapers.com: could not connect to host writing-expert.com: could not connect to host wrldevelopment.com: did not receive HSTS header wroffle.com: did not receive HSTS header @@ -16033,7 +16540,7 @@ wss.com.ve: could not connect to host wsscompany.com.ve: could not connect to host wsup.social: could not connect to host wtwk.com: could not connect to host -wubify.com: could not connect to host +wubify.com: did not receive HSTS header wubocong.com: could not connect to host wubthecaptain.eu: could not connect to host wuchipc.com: could not connect to host @@ -16056,6 +16563,7 @@ www-38978.com: could not connect to host www-39988.com: did not receive HSTS header www-507.net: could not connect to host www-62755.com: did not receive HSTS header +www-66136.com: did not receive HSTS header www-68277.com: could not connect to host www-746.com: could not connect to host www-771122.com: did not receive HSTS header @@ -16101,31 +16609,35 @@ www.viasinc.com: did not receive HSTS header www.zenpayroll.com: did not receive HSTS header www3.info: could not connect to host wxrlab.com: could not connect to host -wxukang.cn: did not receive HSTS header +wxukang.cn: could not connect to host wxyz.buzz: could not connect to host wy6.org: did not receive HSTS header wybmabiity.com: could not connect to host wygluszanie.eu: could not connect to host +wylog.ph: could not connect to host wyu.cc: could not connect to host wyzphoto.nl: did not receive HSTS header wyzwaniemilosci.com: could not connect to host +wzrd.in: did not receive HSTS header x-iweb.ru: did not receive HSTS header x-pertservice.com: did not receive HSTS header x-power-detox.com: could not connect to host x-ripped-hd.com: could not connect to host -x1be.win: did not receive HSTS header +x1be.win: could not connect to host x23.eu: did not receive HSTS header x2c0.net: did not receive HSTS header x2w.io: could not connect to host x3led.com: could not connect to host x509.pub: could not connect to host x509.pw: could not connect to host +x64architecture.com: could not connect to host x69.biz: could not connect to host x69x.net: could not connect to host xanderweaver.com: did not receive HSTS header xandocs.com: could not connect to host xat.re: did not receive HSTS header xavierbarroso.com: did not receive HSTS header +xawen.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no] xbc.nz: could not connect to host xbind.io: could not connect to host xchangeinfo.com: could not connect to host @@ -16164,7 +16676,7 @@ xiliant.com: did not receive HSTS header ximage.me: could not connect to host ximens.me: could not connect to host xinbiji.cn: could not connect to host -xinex.cz: could not connect to host +xinex.cz: did not receive HSTS header xing.ml: could not connect to host xinghuokeji.xin: could not connect to host xingiahanvisa.net: did not receive HSTS header @@ -16176,14 +16688,15 @@ xivpn.com: could not connect to host xiyu.it: did not receive HSTS header xiyu.moe: did not receive HSTS header xjoi.net: could not connect to host -xjoin.de: could not connect to host xlaff.com: could not connect to host xlboo.com: did not receive HSTS header xlfblog.com: did not receive HSTS header xlinar.com: could not connect to host +xmerak.com: could not connect to host xmiui.com: could not connect to host xmonk.org: did not receive HSTS header xmr.my: could not connect to host +xn-----8kcgbo2bmdgkdacthvjf.xn--p1ai: could not connect to host xn----7sbmucgqdbgwwc5e9b.xn--p1ai: could not connect to host xn--3lqp21gwna.cn: could not connect to host xn--3lqp21gwna.xn--fiqs8s: could not connect to host @@ -16201,10 +16714,9 @@ xn--6cv66l79sp0n0ibo7s9ne.xyz: did not receive HSTS header xn--7rvz7ku3ppnr.jp: could not connect to host xn--7v8h.cf: could not connect to host xn--80aaagmgvmvmcuoq7r.xn--p1ai: did not receive HSTS header -xn--80aaihqncaejjobbu6v.xn--p1ai: did not receive HSTS header +xn--80aaihqncaejjobbu6v.xn--p1ai: max-age too low: 0 xn--80ablh1c.online: could not connect to host xn--80ac0aqlt.xn--p1ai: could not connect to host -xn--80anogxed.xn--p1ai: could not connect to host xn--80aocgsfei.xn--p1ai: could not connect to host xn--88j2fy28hbxmnnf9zlw5buzd.com: did not receive HSTS header xn--8mr166hf6s.xn--fiqs8s: could not connect to host @@ -16221,8 +16733,10 @@ xn--e--4h4axau6ld4lna0g.com: could not connect to host xn--e--ig4a4c3f6bvc5et632i.com: could not connect to host xn--e--k83a5h244w54gttk.xyz: could not connect to host xn--ekr87w7se89ay98ezcs.biz: did not receive HSTS header +xn--gfrr-7qa.li: could not connect to host xn--gmq92k.nagoya: could not connect to host xn--grnderlehrstuhl-0vb.de: could not connect to host +xn--hfk-allgu-schwaben-stb.de: could not connect to host xn--hwt895j.xn--kpry57d: could not connect to host xn--internetlnen-1cb.com: could not connect to host xn--jp-6l5cs1yf3ivjsglphyv.net: could not connect to host @@ -16239,6 +16753,7 @@ xn--ls8hi7a.tk: could not connect to host xn--maraa-rta.org: could not connect to host xn--mensenges-o1a8c.gq: could not connect to host xn--mhringen-65a.de: did not receive HSTS header +xn--mhsv04avtt1xi.com: could not connect to host xn--milchaufschumer-test-lzb.de: could not connect to host xn--n8jubz39q0g0afpa985c.com: could not connect to host xn--neb-tma3u8u.xyz: could not connect to host @@ -16249,11 +16764,12 @@ xn--pckqk6xk43lunk.net: could not connect to host xn--qckqc0nxbyc4cdb4527err7c.biz: did not receive HSTS header xn--qckyd1cu698a35zarib.xyz: could not connect to host xn--r77hya.ga: could not connect to host -xn--rlcus7b3d.xn--xkc2dl3a5ee0h: could not connect to host xn--rt-cja.eu: could not connect to host xn--sdkwa9azd389v01ya.com: did not receive HSTS header xn--srenpind-54a.dk: could not connect to host +xn--sz8h.ml: could not connect to host xn--t8j2a3042d.xyz: could not connect to host +xn--t8j4aa4nyhxa7duezbl49aqg5546e264d.net: could not connect to host xn--tda.ml: could not connect to host xn--thorme-6uaf.ca: could not connect to host xn--u9jy16ncfao19mo8i.nagoya: could not connect to host @@ -16266,6 +16782,7 @@ xn--vck8crcu789ajtaj92eura.xyz: could not connect to host xn--w22a.jp: could not connect to host xn--werner-schffer-fib.de: did not receive HSTS header xn--wmq.jp: could not connect to host +xn--wq9h.ml: could not connect to host xn--xdtx3pfzbiw3ar8e7yedqrhui.com: could not connect to host xn--xz1a.jp: could not connect to host xn--y8j2eb5631a4qf5n0h.com: could not connect to host @@ -16287,12 +16804,12 @@ xperiacodes.com: could not connect to host xpi.fr: could not connect to host xpj.bet: did not receive HSTS header xpj.sx: could not connect to host +xpjcunkuan.com: could not connect to host xpressprint.com.br: max-age too low: 90 xpwn.cz: could not connect to host -xq55.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no] +xq55.com: did not receive HSTS header xqin.net: could not connect to host xrp.pw: could not connect to host -xs74.com: did not receive HSTS header xscancun.com: could not connect to host xscapers.com: did not receive HSTS header xsstime.nl: could not connect to host @@ -16300,18 +16817,18 @@ xsyds.cn: did not receive HSTS header xt.om: did not receive HSTS header xtenz.xyz: could not connect to host xtom.email: could not connect to host -xtream-hosting.com: did not receive HSTS header +xtream-hosting.com: could not connect to host xtream-hosting.de: could not connect to host xtream-hosting.eu: could not connect to host xtreamhosting.eu: could not connect to host xtrim.ru: did not receive HSTS header xtzone.be: could not connect to host +xuanmeishe.top: could not connect to host xuexb.com: did not receive HSTS header xujan.com: could not connect to host xuntaosms.com: could not connect to host -xupeng.me: could not connect to host +xupeng.me: did not receive HSTS header xuyh0120.win: did not receive HSTS header -xwalck.se: could not connect to host xxbase.com: did not receive HSTS header xxx3dbdsm.com: could not connect to host xxxladyboysporn.com: could not connect to host @@ -16338,6 +16855,7 @@ yahoo.ax: could not connect to host yalla.jp: did not receive HSTS header yamamo10.com: could not connect to host yameveo.com: did not receive HSTS header +yangmaodang.org: did not receive HSTS header yanwh.xyz: did not receive HSTS header yaoidreams.com: could not connect to host yaporn.tv: could not connect to host @@ -16366,10 +16884,10 @@ yenniferallulli.de: could not connect to host yenniferallulli.es: did not receive HSTS header yenniferallulli.moda: could not connect to host yenniferallulli.nl: could not connect to host +yenpape.com: did not receive HSTS header yepbitcoin.com: could not connect to host yesdevnull.net: did not receive HSTS header yesfone.com.br: could not connect to host -yeshu.org: did not receive HSTS header yestees.com: did not receive HSTS header yetcore.io: could not connect to host yetishirt.com: could not connect to host @@ -16378,16 +16896,19 @@ ygcdyf.com: did not receive HSTS header yggdar.ga: could not connect to host yh35.net: max-age too low: 86400 yhori.xyz: could not connect to host +yhrd.org: did not receive HSTS header yibaoweilong.top: could not connect to host yibin0831.com: could not connect to host yikzu.cn: could not connect to host yin.roma.it: did not receive HSTS header +yin8888.tv: did not receive HSTS header ying299.com: could not connect to host ying299.net: could not connect to host yinga.ga: did not receive HSTS header yingsuo.ltd: could not connect to host yingyj.com: did not receive HSTS header yinhe12.net: did not receive HSTS header +yipingguo.com: did not receive HSTS header yippie.nl: could not connect to host yizhu.com: could not connect to host yjsoft.me: could not connect to host @@ -16415,23 +16936,24 @@ yomena.in: could not connect to host yomepre.com: could not connect to host yopers.com: did not receive HSTS header yorkshireterrier.com.br: could not connect to host -yorname.ml: could not connect to host +yorname.ml: did not receive HSTS header yoru.me: could not connect to host yotilabs.com: could not connect to host youcaitian.com: did not receive HSTS header youcancraft.de: could not connect to host youcanfuckoff.xyz: could not connect to host -youcanmakeit.at: could not connect to host youcontrol.ru: could not connect to host youdowell.com: could not connect to host youfencun.com: did not receive HSTS header youjizz.bz: could not connect to host youlend.com: did not receive HSTS header youlog.net: could not connect to host +youmiracle.com: could not connect to host +youmonit.me: could not connect to host youngandunited.nl: did not receive HSTS header -youngdogs.org: could not connect to host younl.net: could not connect to host youon.tokyo: did not receive HSTS header +youran.me: could not connect to host yourbapp.ch: could not connect to host yourgame.co.il: did not receive HSTS header youri.me: could not connect to host @@ -16449,8 +16971,8 @@ youth2009.org: did not receive HSTS header youtube: could not connect to host youtubeviews.ml: could not connect to host youwatchporn.com: could not connect to host +youyoulemon.com: could not connect to host ypcs.fi: did not receive HSTS header -yqjf68.com: could not connect to host yryz.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no] ysicing.net: could not connect to host yslbeauty.com: did not receive HSTS header @@ -16462,14 +16984,17 @@ yu7.jp: did not receive HSTS header yuanbenlian.com: did not receive HSTS header yudan.com.br: could not connect to host yude.ml: could not connect to host -yue2.net: did not receive HSTS header yuema.net.cn: could not connect to host yufan.me: did not receive HSTS header yugege.cf: could not connect to host yuhen.ru: did not receive HSTS header yui.cat: did not receive HSTS header +yuka.one: could not connect to host yukijinji.moe: did not receive HSTS header yukiminami.net: could not connect to host +yukimochi.com: could not connect to host +yukimochi.io: could not connect to host +yukimochi.jp: could not connect to host yuko.moe: could not connect to host yukonrefugees.com: could not connect to host yum.beer: could not connect to host @@ -16484,12 +17009,14 @@ yuntama.xyz: could not connect to host yunzhan.io: could not connect to host yunzhu.org: could not connect to host yuppi.tv: max-age too low: 43200 +yuqi.me: could not connect to host yurinet.org: could not connect to host yuriykuzmin.com: did not receive HSTS header yutabon.com: could not connect to host yuushou.com: could not connect to host yux.fr: could not connect to host yux.io: did not receive HSTS header +yuxingxin.com: did not receive HSTS header yuzu.tk: did not receive HSTS header ywei.org: could not connect to host ywyz.tech: could not connect to host @@ -16501,12 +17028,8 @@ z3liff.com: could not connect to host z3liff.net: could not connect to host zacharopoulos.me: could not connect to host zachbolinger.com: could not connect to host -zachgibbens.org: could not connect to host -zachpeters.org: could not connect to host zadieheimlich.com: did not receive HSTS header zaem.tv: could not connect to host -zahnarzt-hofer.de: could not connect to host -zahnarzt-muenich.de: could not connect to host zahnrechner-staging.azurewebsites.net: could not connect to host zahyantechnologies.com: did not receive HSTS header zaidan.de: could not connect to host @@ -16538,7 +17061,7 @@ zdravotnickasluzba.eu: could not connect to host zdrowiepaleo.pl: did not receive HSTS header zdx.ch: max-age too low: 0 zeb.fun: could not connect to host -zebibyte.cn: could not connect to host +zebibyte.cn: did not receive HSTS header zebrababy.cn: could not connect to host zebry.nl: did not receive HSTS header zecrypto.com: could not connect to host @@ -16552,7 +17075,6 @@ zelfmoord.ga: could not connect to host zelfstandigemakelaars.net: could not connect to host zellari.ru: could not connect to host zeloz.xyz: could not connect to host -zengdong.ren: did not receive HSTS header zenghx.tk: could not connect to host zenhaiku.com: could not connect to host zeno-system.com: did not receive HSTS header @@ -16566,9 +17088,10 @@ zentralwolke.de: did not receive HSTS header zenvite.com: could not connect to host zenwears.com: could not connect to host zenycosta.com: could not connect to host +zeparadox.com: did not receive HSTS header zepect.com: did not receive HSTS header zera.com.au: could not connect to host -zerekin.net: did not receive HSTS header +zerekin.net: max-age too low: 86400 zero-sum.xyz: could not connect to host zero-x-baadf00d.com: could not connect to host zerocool.io: could not connect to host @@ -16610,6 +17133,7 @@ zhuji.com.cn: could not connect to host zhuji5.com: could not connect to host zhujicaihong.com: could not connect to host zhuweiyou.com: did not receive HSTS header +zi.is: could not connect to host zi0r.com: did not receive HSTS header zian.online: could not connect to host zicklam.com: could not connect to host @@ -16645,6 +17169,7 @@ zocken.com: did not receive HSTS header zoe.vc: could not connect to host zohar.link: could not connect to host zohar.shop: could not connect to host +zoi.jp: could not connect to host zokster.net: could not connect to host zolotoy-standart.com.ua: did not receive HSTS header zombiesecured.com: could not connect to host @@ -16663,19 +17188,23 @@ zoomingin.net: max-age too low: 5184000 zoommailing.com: did not receive HSTS header zoorigin.com: did not receive HSTS header zooxdata.com: could not connect to host +zorki.nl: did not receive HSTS header zortium.report: could not connect to host zorz.info: could not connect to host +zouyaoji.top: did not receive HSTS header zoznamrealit.sk: did not receive HSTS header zpy.fun: could not connect to host zq789.com: could not connect to host zqhong.com: could not connect to host zqjs.tk: could not connect to host zqwqz.com: could not connect to host +zrkr.de: could not connect to host zrn.in: did not receive HSTS header ztan.tk: could not connect to host ztcaoll222.cn: could not connect to host ztytian.com: could not connect to host zuan-in.com: could not connect to host +zubro.net: could not connect to host zuckerfloh.de: did not receive HSTS header zudomc.me: could not connect to host zuehlcke.de: could not connect to host diff --git a/security/manager/ssl/nsSTSPreloadList.inc b/security/manager/ssl/nsSTSPreloadList.inc index 36a933f71..8dab9a1ee 100644 --- a/security/manager/ssl/nsSTSPreloadList.inc +++ b/security/manager/ssl/nsSTSPreloadList.inc @@ -8,7 +8,7 @@ /*****************************************************************************/ #include <stdint.h> -const PRTime gPreloadListExpirationTime = INT64_C(1546247908476000); +const PRTime gPreloadListExpirationTime = INT64_C(1547572131850000); class nsSTSPreload { @@ -32,19 +32,14 @@ static const nsSTSPreload kSTSPreloadList[] = { { "00550055.net", true }, { "00660066.net", true }, { "00770077.net", true }, - { "00778899.com", true }, { "0086286.com", true }, { "00990099.net", true }, { "00dani.me", true }, { "00f.net", true }, { "0100dev.com", false }, { "0100dev.nl", false }, - { "013028.com", true }, - { "016028.com", true }, - { "016098.com", true }, - { "016328.com", true }, - { "019328.com", true }, - { "019398.com", true }, + { "01011970.xyz", true }, + { "01110000011100110111001001100111.com", true }, { "01electronica.com.ar", true }, { "01seguridad.com.ar", true }, { "01smh.com", true }, @@ -65,9 +60,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "02607.com", true }, { "026122.com", true }, { "02638.net", true }, - { "028718.com", true }, - { "029978.com", true }, { "02smh.com", true }, + { "0311buy.cn", true }, { "03170317.com", true }, { "0391315.com", true }, { "046569.com", true }, @@ -75,21 +69,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "050.ca", true }, { "050media.nl", true }, { "0511315.net", true }, - { "0513c.com", true }, - { "055268.com", true }, { "0573wk.com", true }, - { "066538.com", true }, + { "06091994.xyz", true }, { "06se.com", true }, { "07733.win", true }, - { "078805.com", true }, - { "078810.com", true }, - { "078820.com", true }, - { "078860.com", true }, - { "078890.com", true }, { "0788yh.com", true }, { "0792112.com", true }, { "0809yh.com", true }, - { "081638.com", true }, { "081752.com", true }, { "081763.com", true }, { "081769.com", true }, @@ -118,7 +104,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "083962.com", true }, { "083965.com", true }, { "083967.com", true }, - { "086628.com", true }, { "09115.com", true }, { "0916app.com", true }, { "09892.net", true }, @@ -150,13 +135,15 @@ static const nsSTSPreload kSTSPreloadList[] = { { "0xdc.io", false }, { "0xdefaced.de", true }, { "0xee.eu", true }, - { "0xf00.ch", true }, { "0xfc.de", true }, { "0xn.de", true }, { "0yen.org", true }, { "1-2-3bounce.co.uk", true }, { "100-downloads.com", true }, + { "10000v.ru", true }, { "1000minds.com", true }, + { "1001carats.fr", true }, + { "1001kartini.com", true }, { "1001kerstpakketten.com", false }, { "1001mv.com", true }, { "10086.nl", true }, @@ -187,7 +174,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "10og.de", true }, { "10ppm.com", true }, { "10seos.com", true }, - { "10v2.com", true }, { "1100.so", true }, { "110110110.net", true }, { "112112112.net", true }, @@ -195,8 +181,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "112hz.com", true }, { "113113113.net", true }, { "114514ss.com", true }, + { "1177107.com", true }, { "118118118.net", true }, - { "11bt.cc", true }, { "11dzon.com", true }, { "11loc.de", true }, { "11scc.com", true }, @@ -212,6 +198,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "123bearing.co.uk", true }, { "123bearing.com", true }, { "123bearing.eu", true }, + { "123comparer.fr", true }, + { "123djdrop.com", true }, { "123midterm.com", true }, { "123opstalverzekeringen.nl", true }, { "123pay.ir", false }, @@ -224,14 +212,14 @@ static const nsSTSPreload kSTSPreloadList[] = { { "124133.com", true }, { "124633.com", true }, { "125m125.de", true }, + { "1288366.com", true }, + { "1288fc.com", true }, { "12photos.eu", true }, { "12thmanrising.com", true }, { "12vpn.net", true }, { "130.ua", true }, - { "130978.com", true }, { "132kv.ch", true }, - { "13318522.com", true }, - { "1391kj.com", true }, + { "1359826938.rsc.cdn77.org", true }, { "1395kj.com", true }, { "13th-dover.uk", true }, { "143533.com", true }, @@ -260,6 +248,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "149733.com", true }, { "14it.de", true }, { "14x3.de", true }, + { "15-10.com", true }, { "1511774230.rsc.cdn77.org", true }, { "152433.com", true }, { "154233.com", true }, @@ -271,12 +260,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "1644091933.rsc.cdn77.org", true }, { "1661237.com", true }, { "166166.com", true }, - { "1689886.com", true }, { "168bo9.com", true }, { "168bo9.net", true }, { "16book.org", true }, { "1750studios.com", false }, - { "17hats.com", true }, { "1811559.com", true }, { "1844329061.rsc.cdn77.org", true }, { "1876996.com", true }, @@ -288,7 +275,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "18celebration.org", true }, { "18f.gov", true }, { "18f.gsa.gov", false }, - { "19216811.online", true }, { "192168ll.repair", true }, { "192433.com", true }, { "1972969867.rsc.cdn77.org", true }, @@ -327,6 +313,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "1password.com", true }, { "1password.eu", true }, { "1px.tv", true }, + { "1q2w.nl", true }, { "1r.is", true }, { "1rs.nl", true }, { "1salland.nl", true }, @@ -345,7 +332,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "2.wtf", true }, { "200.network", true }, { "200fcw.com", true }, - { "2018.wales", true }, { "2048-spiel.de", true }, { "20at.com", true }, { "20denier.com", true }, @@ -354,18 +340,17 @@ static const nsSTSPreload kSTSPreloadList[] = { { "21sthammersmith.org.uk", true }, { "21x9.org", true }, { "2222yh.com", true }, - { "22bt.cc", true }, { "22digital.agency", true }, { "22scc.com", true }, { "230beats.com", true }, - { "2333666.xyz", true }, { "2333blog.com", true }, { "233abc.com", true }, { "233blog.com", true }, { "233boy.com", true }, + { "233bwg.com", true }, + { "233hugo.com", true }, { "233vps.com", true }, { "24-7.jp", true }, - { "245meadowvistaway.com", true }, { "246060.ru", true }, { "247exchange.com", true }, { "247healthshop.com", true }, @@ -374,6 +359,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "24hour-locksmithsanantonio.com", true }, { "24hourlocksmithbaltimore.com", true }, { "24hourlocksmithdallastx.com", true }, + { "24hourlocksmithdetroit.com", true }, { "24hoursanantoniolocksmiths.com", true }, { "24hourscienceprojects.com", true }, { "24ip.com", true }, @@ -381,14 +367,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "24ip.fr", true }, { "24timeravis.dk", true }, { "24zpravy.cz", true }, - { "2566335.xyz", true }, { "256pages.com", false }, { "258da.com", true }, { "25reinyan25.net", true }, { "2600edinburgh.org", true }, { "2600hq.com", true }, { "263.info", true }, - { "27728522.com", true }, { "28-industries.com", true }, { "281180.de", true }, { "2858958.com", true }, @@ -396,6 +380,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "288da.com", true }, { "28peaks.com", true }, { "28spots.net", true }, + { "291167.xyz", true }, { "2912.nl", true }, { "2948.ca", true }, { "297computers.com", true }, @@ -417,6 +402,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "2cv-fahrer.de", true }, { "2fm.ie", true }, { "2fraud.pro", true }, + { "2g1s.net", true }, + { "2h-nagoya.org", true }, { "2heartsbookings.co.uk", true }, { "2hypeenterprises.com", true }, { "2kgwf.fi", true }, @@ -424,9 +411,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "2li.ch", true }, { "2manydots.nl", true }, { "2mb.solutions", true }, - { "2mir.com", true }, { "2nains.ch", true }, { "2nerds1bit.com", true }, + { "2nics.net", true }, { "2pay.fr", true }, { "2programmers.net", true }, { "2rsc.com", true }, @@ -434,6 +421,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "2stv.net", true }, { "2ulcceria.nl", true }, { "2wheel.com", true }, + { "2y.fi", true }, { "3-dot-careapp1-146314.appspot.com", true }, { "300m.com", false }, { "302422.com", true }, @@ -445,7 +433,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "3056999.com", true }, { "309422.com", true }, { "30hzcollective.com", true }, - { "30yearmortgagerates.net", true }, { "310422.com", true }, { "313422.com", true }, { "314022.com", true }, @@ -545,7 +532,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "373422.com", true }, { "374933.com", true }, { "375422.com", true }, - { "3778vip.com", true }, { "379700.com", true }, { "380422.com", true }, { "388da.com", true }, @@ -616,7 +602,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "3weekdietworks.com", true }, { "4-1-where.com", true }, { "4-it.de", true }, - { "40-grad.de", true }, { "4000milestare.com", true }, { "403.ch", true }, { "404notfound.com.br", true }, @@ -631,7 +616,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "41studio.com", true }, { "41where.com", true }, { "420java.com", true }, - { "42day.info", true }, { "439050.com", true }, { "441jj.com", false }, { "4444yh.com", true }, @@ -718,6 +702,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "51877.net", true }, { "519422.com", true }, { "51acg.eu.org", true }, + { "51tiaojiu.com", true }, { "5214889.com", true }, { "5214889.net", true }, { "524022.com", true }, @@ -753,10 +738,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "5555yh.com", true }, { "55797.com", true }, { "558da.com", true }, - { "55bt.cc", true }, { "55scc.com", true }, { "576422.com", true }, { "579422.com", true }, + { "57he.com", true }, { "57wilkie.net", true }, { "583422.com", true }, { "585422.com", true }, @@ -776,7 +761,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "5c1fd0f31022cbc40af9f785847baaf9.space", true }, { "5crowd.com", true }, { "5dm.tv", true }, - { "5ece.de", true }, { "5francs.com", true }, { "5gb.space", true }, { "5kraceforals.com", true }, @@ -841,8 +825,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "645722.com", true }, { "645822.com", true }, { "645922.com", true }, - { "645ds.cn", true }, - { "645ds.com", true }, { "646022.com", true }, { "646322.com", true }, { "646722.com", true }, @@ -851,7 +833,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "64970.com", true }, { "649722.com", true }, { "649822.com", true }, - { "64bitservers.net", true }, { "651422.com", true }, { "652422.com", true }, { "6541166.com", true }, @@ -879,12 +860,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "666668722.com", true }, { "6666yh.com", true }, { "666omg.com", true }, + { "668da.com", true }, + { "66bwf.com", true }, { "670422.com", true }, { "671422.com", true }, { "672422.com", true }, { "673422.com", true }, { "676422.com", true }, - { "67899876.com", true }, { "679422.com", true }, { "680422.com", true }, { "686848.com", true }, @@ -900,7 +882,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "6997896.com", true }, { "69butterfly.com", true }, { "69fps.gg", true }, - { "6ird.com", true }, { "6lo.zgora.pl", true }, { "6pm.com", true }, { "6t-montjoye.org", true }, @@ -936,7 +917,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "755k3.com", true }, { "7570.com", true }, { "762.ch", true }, - { "7717a.com", true }, { "772244.net", true }, { "7733445.com", true }, { "7777yh.com", true }, @@ -962,17 +942,17 @@ static const nsSTSPreload kSTSPreloadList[] = { { "7x24servis.com", true }, { "80036.com", true }, { "804322.com", true }, + { "8086.cf", true }, { "809422.com", true }, { "80993.net", true }, { "814022.com", true }, { "8189196.com", true }, + { "818bwf.com", true }, { "818da.com", true }, - { "8206688.com", true }, { "8522.com", true }, { "8522club.com", true }, { "8522hk.com", true }, { "8522ph.com", true }, - { "8522top.com", true }, { "8522tw.com", true }, { "8522usa.com", true }, { "86286286.com", true }, @@ -982,6 +962,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "8649977.com", true }, { "8688fc.com", true }, { "86metro.ru", true }, + { "8722.am", true }, { "8722am.com", true }, { "8722cn.com", true }, { "8722hk.com", true }, @@ -995,7 +976,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "88889822.com", true }, { "8888esb.com", true }, { "8888yh.com", true }, + { "888bwf.com", true }, { "888msc.vip", true }, + { "88bwf.com", true }, { "8901178.com", true }, { "8901178.net", true }, { "8910899.com", true }, @@ -1040,6 +1023,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "913422.com", true }, { "914122.com", true }, { "918116.com", true }, + { "918gd.com", true }, + { "918yy.com", true }, { "919422.com", true }, { "91966.com", true }, { "91tianmi.com", false }, @@ -1068,7 +1053,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "972422.com", true }, { "9788876.com", true }, { "97bros.com", true }, - { "9822.info", true }, + { "9822.am", true }, + { "9822.bz", true }, { "9822am.com", true }, { "9822cn.com", true }, { "9822hk.com", true }, @@ -1077,7 +1063,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "9822usa.com", true }, { "98laba.com", true }, { "98laba.net", true }, - { "9906753.net", true }, { "9918883.com", true }, { "9933445.com", true }, { "99599.fi", true }, @@ -1098,6 +1083,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "9uelle.jp", true }, { "9vx.org", true }, { "9won.kr", true }, + { "9y.at", true }, { "9yw.me", true }, { "a-1basements.com", true }, { "a-1indianawaterproofing.com", true }, @@ -1107,6 +1093,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "a-msystems.com", true }, { "a-oben.org", true }, { "a-starbouncycastles.co.uk", true }, + { "a-wife.net", true }, { "a0print.nl", true }, { "a1bouncycastlehire.com", true }, { "a1jumpandbounce.co.uk", true }, @@ -1119,7 +1106,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "a4sound.com", true }, { "a632079.me", true }, { "a7m2.me", true }, - { "a8q.org", true }, { "aa-tour.ru", true }, { "aa1718.net", true }, { "aa43d.cn", true }, @@ -1143,9 +1129,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "aapas.org.ar", true }, { "aardvarksolutions.co.za", true }, { "aarkue.eu", true }, - { "aaron.cm", true }, + { "aaron.cm", false }, { "aaron.xin", true }, - { "aaronburt.co.uk", true }, { "aaronhorler.com", true }, { "aaronkimmig.de", true }, { "aaronroyle.com", true }, @@ -1162,6 +1147,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "abacustech.co.jp", true }, { "abacustech.net", true }, { "abacustech.org", true }, + { "abandonedmines.gov", true }, { "abbadabbabouncycastles.co.uk", true }, { "abbas.ch", true }, { "abborsjo.fi", true }, @@ -1177,7 +1163,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "abckam.com", true }, { "abcpartyhire.com", true }, { "abcstudio.com.au", true }, + { "abdel.me", true }, { "abdelsater.net", true }, + { "abdullah.pw", true }, { "abdulwahaab.ca", true }, { "abe-elektro.de", true }, { "abe-medical.jp", true }, @@ -1197,7 +1185,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "abilitycaresoftware.com", true }, { "abilitynet.org.uk", true }, { "abilityone.gov", true }, - { "abilma.com", true }, { "abilymp06.net", true }, { "abimelec.com", true }, { "abinyah.com", true }, @@ -1234,6 +1221,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "abolitionistsociety.com", true }, { "abolitionniste.com", true }, { "abolizionista.com", true }, + { "abonilla.com", true }, { "abos.eu", true }, { "abouncycastleman.co.uk", true }, { "abouthrm.nl", true }, @@ -1248,7 +1236,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "aboutyou.nl", true }, { "abox-kb.com", true }, { "abpis.hr", true }, - { "abracadabra.co.jp", false }, { "abrakidabra.com.br", true }, { "abraxan.pro", true }, { "abrilect.com", true }, @@ -1305,6 +1292,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "accessoirescheveuxchic.com", true }, { "accessoripersmartphone.it", true }, { "accme.co", true }, + { "accoladescreens.com.au", true }, { "accord-application.com", true }, { "accordiondoor.com", true }, { "accounts.firefox.com", true }, @@ -1320,11 +1308,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "aceanswering.com", true }, { "acecerts.co.uk", true }, { "acecolleges.edu.au", true }, + { "acedog.co", true }, { "aceinflatables.com", true }, { "aceinstituteonline.com", true }, { "acem.org.au", true }, { "acemobileforce.com", true }, - { "acemypaper.com", true }, { "acen.eu", true }, { "acendealuz.com.br", true }, { "acerentalandsales.com", true }, @@ -1332,6 +1320,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "acessoeducacao.com", true }, { "acevik.de", true }, { "acfo.org", true }, + { "acg.social", true }, { "acg18.us", false }, { "acgtalktw.com", true }, { "achalay.org", true }, @@ -1340,9 +1329,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "acheter-ethylotest.fr", true }, { "achromatisch.de", true }, { "achterblog.de", true }, - { "achterstieg.dedyn.io", true }, { "achtzehn.eu", true }, { "achtzehnterachter.de", true }, + { "achtzig20.de", true }, { "achwo.de", true }, { "acid.ninja", true }, { "acidbin.co", true }, @@ -1404,23 +1393,25 @@ static const nsSTSPreload kSTSPreloadList[] = { { "active-tluszcz.pl", true }, { "active.hu", false }, { "activecare-monitor.com", true }, - { "activeclearweb.com", true }, { "activehire.co.uk", true }, { "activeleisure.ie", true }, { "activeworld.net", false }, + { "activiteithardenberg.nl", true }, { "activitesaintnicaise.org", true }, { "activityeventhire.co.uk", true }, { "actom.cc", true }, + { "actonwoodworks.com", true }, { "actors-cafe.net", true }, { "actorsroom.com", true }, { "actserv.co.ke", true }, + { "actualidadiphone.com", true }, + { "actualidadmotor.com", true }, { "acuica.co.uk", false }, { "acul.me", true }, { "acupofsalt.tv", true }, { "acus.gov", true }, { "acwcerts.co.uk", true }, { "acwi.gov", true }, - { "acy.com", true }, { "acyfxasia.com", true }, { "acyume.com", true }, { "ad-notam.asia", true }, @@ -1432,6 +1423,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ad-notam.it", true }, { "ad-notam.pt", true }, { "ad-notam.us", true }, + { "ad13.in", true }, { "ada.gov", true }, { "adalis.org", true }, { "adam-ant.co.uk", true }, @@ -1451,7 +1443,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "adams.dk", true }, { "adamsbouncycastles.co.uk", true }, { "adamstas.com", true }, - { "adamwallington.co.uk", true }, { "adamwilcox.org", true }, { "adamyuan.xyz", true }, { "adapt-elektronik.com", true }, @@ -1468,7 +1459,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "adderall.space", true }, { "addicional.com", true }, { "addictively.com", true }, - { "addiko.net", true }, { "addisoncrump.info", true }, { "addnine.com", true }, { "addon.watch", true }, @@ -1481,7 +1471,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "adentalsolution.com", true }, { "adept.org.pl", true }, { "adesa.co.uk", true }, - { "adevel.eu", true }, + { "adex.network", true }, { "adf-safetytools.com", true }, { "adftrasporti.it", true }, { "adhd-inattentive.com", true }, @@ -1523,19 +1513,20 @@ static const nsSTSPreload kSTSPreloadList[] = { { "adorecricket.com", true }, { "adorewe.com", true }, { "adoriasoft.com", false }, + { "adorno-gymnasium.de", true }, { "adoucisseur.shop", true }, { "adquisitio.co.uk", true }, { "adquisitio.es", true }, { "adquisitio.fr", true }, { "adquisitio.it", true }, { "adr.gov", true }, + { "adra.com", true }, { "adrafinil.wiki", true }, { "adrianbechtold.de", true }, { "adriancitu.com", true }, { "adriancostin.ro", true }, { "adrianjensen.com", true }, { "adrianmejias.com", true }, - { "adrien.vin", true }, { "adrienkohlbecker.com", true }, { "adriennesmiles.com", true }, { "adrup.com", true }, @@ -1599,6 +1590,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "adzuna.pl", true }, { "adzuna.ru", true }, { "adzuna.sg", true }, + { "ae-construction.co.uk", true }, { "aebian.org", true }, { "aecexpert.fr", true }, { "aegee-utrecht.nl", true }, @@ -1609,11 +1601,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "aegrel.ee", true }, { "aehe.us", true }, { "aei.co.uk", true }, - { "aelurus.com", true }, + { "aelisya.ch", true }, { "aeon.co", true }, { "aep-digital.com", true }, { "aeradesign.com", true }, { "aerandir.fr", true }, + { "aerapass.io", true }, { "aereco.com", true }, { "aergia.eu", true }, { "aerisnetwork.com", true }, @@ -1624,7 +1617,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "aertel.ie", true }, { "aessencia.com.br", true }, { "aestheticdr.org", true }, - { "aesthetics-blog.com", true }, { "aesthetx.com", true }, { "aestore.by", true }, { "aeternus.tech", true }, @@ -1640,6 +1632,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "afb24.de", true }, { "afbeelding.im", true }, { "afbeeldinguploaden.nl", true }, + { "afcompany.it", true }, + { "afcurgentcarelyndhurst.com", true }, { "affichagepub3.com", true }, { "affiliatefeatures.com", true }, { "affiliateroyale.com", true }, @@ -1650,6 +1644,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "affittacamere.roma.it", true }, { "affordableazdivorce.com", true }, { "affordableblindsexpress.com", true }, + { "affordableenergyadvocates.com", true }, { "affordablehealthquotesforyou.com", true }, { "affordablekilimanjaro.com", true }, { "affordablemudjacking.com", true }, @@ -1690,10 +1685,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "agatajanik.de", true }, { "agate.pw", true }, { "agechecker.net", true }, + { "ageg.ca", true }, { "agenceklic.com", true }, { "agencewebstreet.com", true }, { "agenciadeempregosdourados.com.br", true }, { "agenciafiscal.pe", true }, + { "agencyinmotion.com", true }, { "agenda-loto.net", false }, { "agenda21senden.de", true }, { "agendatelefonica.com.br", true }, @@ -1742,6 +1739,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "agouraoutdoorlighting.com", true }, { "agr.asia", true }, { "agracan.com", true }, + { "agrajag.nl", true }, { "agrarking.de", true }, { "agrarshop4u.de", true }, { "agrekov.ru", true }, @@ -1754,7 +1752,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "agro-forestry.net", true }, { "agroline.by", true }, { "agroxxi.ru", true }, - { "agroyard.com.ua", true }, { "agsb.ch", true }, { "agscinemas.com", true }, { "agscinemasapp.com", true }, @@ -1795,6 +1792,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "aifriccampbell.com", true }, { "aigcev.org", true }, { "aigenpul.se", true }, + { "aignermunich.com", true }, + { "aignermunich.de", true }, { "aignermunich.jp", true }, { "aiicy.org", true }, { "aiida.se", true }, @@ -1810,6 +1809,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "aimeeandalec.com", true }, { "aimgroup.co.tz", true }, { "aimotive.com", true }, + { "aimstoreglobal.com", true }, { "aintevenmad.ch", true }, { "aiois.com", true }, { "aipbarcelona.com", true }, @@ -1817,12 +1817,73 @@ static const nsSTSPreload kSTSPreloadList[] = { { "air-shots.ch", true }, { "air-we-go.co.uk", true }, { "airbly.com", true }, + { "airbnb.ae", true }, + { "airbnb.at", true }, + { "airbnb.be", true }, + { "airbnb.ca", true }, + { "airbnb.cat", true }, + { "airbnb.ch", true }, + { "airbnb.cl", true }, + { "airbnb.co.cr", true }, + { "airbnb.co.id", true }, + { "airbnb.co.il", true }, + { "airbnb.co.in", true }, + { "airbnb.co.kr", true }, + { "airbnb.co.nz", true }, + { "airbnb.co.uk", true }, + { "airbnb.co.ve", true }, { "airbnb.com", true }, + { "airbnb.com.ar", true }, + { "airbnb.com.au", true }, + { "airbnb.com.bo", true }, + { "airbnb.com.br", true }, + { "airbnb.com.bz", true }, + { "airbnb.com.co", true }, + { "airbnb.com.ec", true }, + { "airbnb.com.gt", true }, + { "airbnb.com.hk", true }, + { "airbnb.com.hn", true }, + { "airbnb.com.hr", true }, + { "airbnb.com.kh", true }, + { "airbnb.com.mt", true }, + { "airbnb.com.my", true }, + { "airbnb.com.ni", true }, + { "airbnb.com.pa", true }, + { "airbnb.com.pe", true }, + { "airbnb.com.ph", true }, + { "airbnb.com.py", true }, + { "airbnb.com.sg", true }, + { "airbnb.com.sv", true }, + { "airbnb.com.tr", true }, + { "airbnb.com.tw", true }, + { "airbnb.com.ua", true }, + { "airbnb.com.vn", true }, + { "airbnb.cz", true }, + { "airbnb.de", true }, + { "airbnb.dk", true }, + { "airbnb.es", true }, + { "airbnb.fi", true }, + { "airbnb.fr", true }, + { "airbnb.gr", true }, + { "airbnb.gy", true }, + { "airbnb.hu", true }, + { "airbnb.ie", true }, + { "airbnb.is", true }, + { "airbnb.it", true }, + { "airbnb.jp", true }, + { "airbnb.la", true }, + { "airbnb.lu", true }, + { "airbnb.mx", true }, + { "airbnb.nl", true }, + { "airbnb.no", true }, + { "airbnb.pl", true }, + { "airbnb.pt", true }, + { "airbnb.ru", true }, + { "airbnb.se", true }, { "airbnbopen.com", true }, { "airborne-inflatables.co.uk", true }, { "airclass.com", true }, { "aircomms.com", true }, - { "airconssandton.co.za", true }, { "airductclean.com", false }, { "airductcleaning-fresno.com", true }, { "airductcleaninggrandprairie.com", true }, @@ -1863,7 +1924,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "aitosoftware.com", true }, { "aiutodomestico.ch", true }, { "aivd.lol", true }, - { "aivene.com", true }, { "aiwdirect.com", true }, { "aixvox.com", false }, { "aixxe.net", true }, @@ -1899,9 +1959,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "akhealthconnection.com", true }, { "akihito.com", true }, { "akijo.de", true }, + { "akilli-devre.com", true }, { "akita-boutique.com", true }, { "akiym.com", true }, - { "akj.io", true }, { "akkbouncycastles.co.uk", true }, { "akkeylab.com", true }, { "akostecki.de", true }, @@ -1911,8 +1971,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "akpwebdesign.com", true }, { "akr.io", true }, { "akr.services", true }, - { "akracing.se", true }, { "akritikos.info", true }, + { "akronet.cz", false }, + { "akropol.cz", false }, { "akropolis-ravensburg.de", true }, { "aksehir.bel.tr", true }, { "akselinurmio.fi", false }, @@ -1930,11 +1991,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "akvorrat.at", true }, { "al3xpro.com", true }, { "alab.space", true }, + { "alabamadebtrelief.org", true }, { "alaboard.com", true }, { "aladdin.ie", true }, { "aladdinschools.appspot.com", true }, { "alainbaechlerphotography.ch", true }, { "alainfrancois.eu", true }, + { "alainfrancois.nl", true }, { "alainmargot.ch", true }, { "alainodea.com", true }, { "alainwolf.ch", true }, @@ -1945,11 +2008,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "alanberger.me.uk", true }, { "alanhua.ng", true }, { "alaninkenya.org", true }, - { "alanya.law", true }, { "alaricfavier.eu", false }, { "alarmcomplete.co.uk", true }, { "alarna.de", true }, { "alasdelalma.com.co", true }, + { "alaskafishinglodges.net", true }, { "alaskajewelry.com", true }, { "alastairs-place.net", true }, { "alaxyjewellers.co.za", true }, @@ -1965,7 +2028,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "alboweb.nl", true }, { "albuic.tk", true }, { "alca31.com", true }, - { "alcatelonetouch.us", true }, { "alchimic.ch", true }, { "alcnutrition.com", true }, { "alco-united.com", true }, @@ -1973,6 +2035,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "aldiabcs.com", true }, { "aldien.com.br", true }, { "aldo-vandini.de", true }, + { "aldomedia.com", true }, { "aldorr.net", false }, { "aldous-huxley.com", true }, { "aldred.cloud", true }, @@ -1980,6 +2043,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "alecpapierniak.com", true }, { "alecrust.com", true }, { "aledg.cl", true }, + { "alek.in", true }, { "aleksejjocic.tk", true }, { "aleksib.fi", true }, { "alela.fr", true }, @@ -1990,6 +2054,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "alertwire.com", true }, { "alesia-formation.fr", true }, { "alessandroonline.com.br", true }, + { "alessandroz.ddns.net", true }, { "aletm.it", true }, { "alex-ross.co.uk", true }, { "alex97000.de", true }, @@ -2000,9 +2065,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "alexanderschimpf.de", true }, { "alexanderzinn.com", true }, { "alexandra-schulze.de", true }, + { "alexandrastorm.com", true }, { "alexandrastylist.com", true }, { "alexandre-blond.fr", true }, - { "alexandros.io", true }, { "alexbaker.org", true }, { "alexberts.ch", true }, { "alexbresnahan.com", true }, @@ -2012,6 +2077,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "alexey-shamara.ru", true }, { "alexeykopytko.com", true }, { "alexgaynor.net", true }, + { "alexgebhard.com", true }, { "alexhd.de", true }, { "alexio.ml", true }, { "alexisabarca.com", true }, @@ -2038,8 +2104,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "alexwardweb.com", true }, { "alexyang.me", true }, { "alfa-tech.su", true }, + { "alfaperfumes.com.br", true }, { "alftrain.com", true }, { "alghanimcatering.com", true }, + { "algoaware.eu", true }, { "algoentremanos.com", true }, { "algofactory.de", true }, { "algolia.com", true }, @@ -2059,11 +2127,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "alienflight.com", true }, { "alienslab.net", true }, { "alienstat.com", true }, - { "alignrs.com", true }, { "aliim.gdn", true }, { "alijammusic.com", true }, { "alinasmusicstudio.com", true }, { "alinode.com", true }, + { "aliorange.com", true }, { "alisonisrealestate.com", true }, { "alisonlitchfield.com", true }, { "alistairholland.me", true }, @@ -2084,7 +2152,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "allaboutthekink.org", true }, { "allactioneventhire.co.uk", true }, { "allamericanmuslim.com", true }, + { "allamericanprotection.net", true }, { "allamericatrans.com", true }, + { "allangirvan.net", true }, { "allarmi.roma.it", true }, { "allbenjoy.de", true }, { "allbounceandplay.co.uk", true }, @@ -2101,12 +2171,14 @@ static const nsSTSPreload kSTSPreloadList[] = { { "alldigitalsolutions.com", true }, { "alle.bg", true }, { "allemobieleproviders.nl", true }, + { "allenosgood.com", true }, { "allenscaravans.co.uk", true }, { "allensun.org", true }, { "allesisonline.nl", true }, { "alleskomtgoed.org", true }, { "allesrocknroll.de", true }, { "allforyou.at", true }, + { "allgaragefloors.com", true }, { "allgreenturf.com.au", true }, { "alliance-psychiatry.com", true }, { "alliances-faq.de", true }, @@ -2122,6 +2194,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "allmend-ru.de", true }, { "allns.fr", true }, { "allo-credit.ch", true }, + { "allo-symo.fr", true }, + { "allofthestops.com", true }, { "allontanamentovolatili.it", true }, { "allontanamentovolatili.milano.it", true }, { "alloverthehill.com", true }, @@ -2129,6 +2203,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "allplayer.tk", true }, { "allpointsblog.com", true }, { "allproptonline.com", true }, + { "allroundpvp.net", true }, { "allsaints.church", true }, { "allsearch.io", true }, { "allshousedesigns.com", true }, @@ -2142,7 +2217,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "allthecryptonews.com", true }, { "allthethings.co.nz", true }, { "allthings.me", true }, - { "allthingsblogging.com", true }, { "allthingssquared.com", true }, { "allthingswild.co.uk", true }, { "alltubedownload.net", true }, @@ -2154,6 +2228,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "alohapartyevents.co.uk", true }, { "alonetone.com", true }, { "alorenzi.eu", true }, + { "alp.net.cn", true }, { "alp.od.ua", true }, { "alpca.org", true }, { "alpe-d-or.dyn-o-saur.com", true }, @@ -2178,6 +2253,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "alphafitnesslibya.com", true }, { "alphagateanddoor.com", true }, { "alphainflatablehire.com", true }, + { "alphaman.ooo", true }, { "alphapengu.in", true }, { "alpharotary.com", true }, { "alphasall.com", true }, @@ -2194,6 +2270,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "alpinestarmassage.com", true }, { "alpinetrek.co.uk", true }, { "alpiniste.fr", true }, + { "alqassam.net", true }, { "alquiaga.com", true }, { "alrait.com", true }, { "alroniks.com", true }, @@ -2201,6 +2278,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "alstroemeria.org", true }, { "alt-three.com", true }, { "alt.org", true }, + { "altapina.com", true }, { "altaplana.be", true }, { "altedirect.com", true }, { "alter-news.fr", true }, @@ -2221,7 +2299,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "altopartners.com", true }, { "altopia.com", true }, { "altphotos.com", true }, - { "altruistgroup.net", true }, { "alts.li", true }, { "altstipendiaten.de", true }, { "alttrackr.com", true }, @@ -2233,7 +2310,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "alviano.com", true }, { "alvicom.hu", true }, { "alvis-audio.com", true }, - { "alvn.ga", true }, { "alvosec.com", true }, { "alwaysdry.com.au", true }, { "alwayslookingyourbest.com", true }, @@ -2265,7 +2341,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "amandasage.ca", true }, { "amani-kinderdorf.de", true }, { "amaresq.com", true }, - { "amateurvoicetalent.com", true }, + { "amateurchef.co.uk", true }, + { "amateurradionotes.com", true }, { "amati.solutions", true }, { "amato.tk", true }, { "amatsuka.com", true }, @@ -2311,6 +2388,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "amerika-forum.de", true }, { "amerimarkdirect.com", true }, { "amerimex.cc", true }, + { "ameschristian.net", true }, { "amesgen.de", true }, { "amesvacuumrepair.com", true }, { "amethystdevelopment.co.uk", true }, @@ -2327,6 +2405,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "aminafrance.com", true }, { "amineptine.com", true }, { "aminorth.com", true }, + { "amionvpn.com", true }, { "amirautos.com", true }, { "amirmahdy.com", true }, { "amisderodin.fr", true }, @@ -2338,6 +2417,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "amministratore.biz", true }, { "amministratore.roma.it", true }, { "amministratorecondominio.roma.it", true }, + { "amnesty-bf.org", true }, { "amnesty.org.au", true }, { "amnesy.fr", true }, { "amoozesh98.com", true }, @@ -2365,8 +2445,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "anacreon.de", true }, { "anadiyogacentre.com", true }, { "anaethelion.fr", true }, - { "anaiscoachpersonal.es", true }, - { "anaisypirueta.es", true }, { "anajianu.ro", true }, { "analbleachingguide.com", true }, { "analgesia.net", true }, @@ -2384,11 +2462,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "anantshri.info", true }, { "ananyoo.com", true }, { "anarchistischegroepnijmegen.nl", false }, + { "anarchyrp.life", true }, { "anassiriphotography.com", false }, { "anastasia-shamara.ru", true }, { "ancestramil.fr", true }, { "anchev.net", true }, { "anchovy.nz", false }, + { "ancientcraft.eu", true }, { "ancientnorth.com", true }, { "ancientnorth.nl", true }, { "ancolies-andre.com", true }, @@ -2406,7 +2486,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "andisadhdspot.com", true }, { "andiscyber.space", true }, { "anditi.com", true }, - { "andoms.fi", true }, { "andre-ballensiefen.de", true }, { "andre-lategan.com", true }, { "andre-otto.com", true }, @@ -2460,6 +2539,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "androidkatalog.cz", true }, { "androidnovinky.cz", true }, { "androidservicetool.com", true }, + { "androidsis.com", true }, { "androidtamer.com", true }, { "androidtelefony.cz", true }, { "androidzone.me", true }, @@ -2467,16 +2547,15 @@ static const nsSTSPreload kSTSPreloadList[] = { { "androticsdirect.com", true }, { "andruvision.cz", true }, { "andsat.org", true }, - { "andschwa.com", true }, + { "andschwa.com", false }, { "andso.cn", true }, - { "anduril.de", true }, - { "anduril.eu", true }, { "andybrett.com", true }, { "andyc.cc", true }, { "andycloud.dynu.net", true }, { "andycrockett.io", true }, { "andymoore.info", true }, { "andys-place.co.uk", true }, + { "andysroom.dynu.net", true }, { "andyt.eu", true }, { "andzia.art.pl", true }, { "anedot-sandbox.com", true }, @@ -2491,7 +2570,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "angehardy.com", true }, { "angel-body.com", true }, { "angelesydemonios.es", true }, + { "angelicare.co.uk", true }, { "angelinahair.com", true }, + { "angeloryndon.com", true }, { "angelremigene.com", true }, { "angelsgirl.eu.org", true }, { "anginf.de", true }, @@ -2506,6 +2587,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "angristan.fr", true }, { "angristan.xyz", true }, { "angry.im", true }, + { "angrylab.com", true }, { "angrysnarl.com", true }, { "angryteeth.net", false }, { "anguiao.com", true }, @@ -2519,7 +2601,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "animacurse.moe", true }, { "animaemundi.be", true }, { "animal-liberation.com", true }, - { "animal-nature-human.com", true }, { "animal-rights.com", true }, { "animalistic.io", true }, { "animaltesting.fr", true }, @@ -2539,7 +2620,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "animesharp.com", true }, { "animetriad.com", true }, { "animojis.es", true }, - { "anipassion.com", true }, + { "animorphsfanforum.com", true }, + { "anipassion.com", false }, { "anitaalbersen.nl", true }, { "anitube.ch", true }, { "aniwhen.com", true }, @@ -2550,6 +2632,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ankarayilmaznakliyat.com", true }, { "ankarayucelnakliyat.com", true }, { "ankenbrand.me", true }, + { "ankitpati.in", true }, { "ankiuser.net", true }, { "ankiweb.net", true }, { "ankwanoma.com", true }, @@ -2570,6 +2653,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "annawagner.pl", true }, { "annedaniels.co.uk", true }, { "annejan.com", true }, + { "anneliesonline.nl", true }, { "annemakeslovelycandles.co.uk", true }, { "annetta.com", true }, { "annettewindlin.ch", true }, @@ -2587,9 +2671,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "anojan.com", true }, { "anon-next.de", true }, { "anoncom.net", true }, + { "anoneko.com", false }, { "anongoth.pl", true }, { "anons.fr", true }, { "anonukradio.org", true }, + { "anonym-surfen.de", true }, { "anonyme-spieler.at", true }, { "anorak.tech", true }, { "another.ch", true }, @@ -2629,6 +2715,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "anthony.codes", true }, { "anthonyaires.com", true }, { "anthonycarbonaro.com", true }, + { "anthonyfontanez.com", true }, { "anthonygaidot.fr", true }, { "anthonyvadala.me", true }, { "anthropoid.ca", true }, @@ -2663,6 +2750,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "antragsgruen.de", true }, { "antroposofica.com.br", true }, { "antyblokada.pl", true }, + { "anulowano.pl", true }, { "anvartay.com", true }, { "anwaltsindex.com", true }, { "anxietyspace.com", true }, @@ -2676,16 +2764,17 @@ static const nsSTSPreload kSTSPreloadList[] = { { "anyprime.net", true }, { "anyquestions.govt.nz", true }, { "anystack.xyz", true }, - { "anyways.at", true }, { "anzeiger.ag", true }, { "ao-dev.com", true }, { "ao2.it", true }, + { "aoa.gov", true }, { "aoadatacommunity.us", true }, { "aoaprograms.net", true }, { "aofusa.net", true }, { "aoku3d.com", true }, { "aopedeure.nl", true }, { "aopsy.de", true }, + { "aos-llc.com", true }, { "aosc.io", false }, { "aosus.org", true }, { "aotearoa.maori.nz", true }, @@ -2759,7 +2848,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "aposke.net", true }, { "aposke.org", true }, { "apostilasaprovacao.com", true }, - { "apotheek-nl.org", true }, { "apotheke-ch.org", true }, { "apothes.is", true }, { "app-at.work", true }, @@ -2791,7 +2879,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "appleranch.com", true }, { "applesana.es", true }, { "applesencia.com", true }, - { "applewatch.co.nz", true }, { "applian.jp", true }, { "applicationmanager.gov", true }, { "apply.eu", true }, @@ -2801,6 +2888,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "apponic.com", true }, { "apponline.com", true }, { "apprank.in", true }, + { "apprenticeship.gov", true }, + { "apprenticeships.gov", true }, { "approbo.com", true }, { "approvedtreecare.com", true }, { "apps.co", true }, @@ -2830,8 +2919,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "aprz.de", true }, { "apsa.paris", true }, { "apstudynotes.org", true }, + { "aptitudetests.org", true }, { "apu-board.de", true }, { "apv-ollon.ch", true }, + { "aqdun.com", true }, { "aqilacademy.com.au", true }, { "aqsiq.net", true }, { "aqua-fitness-nacht.de", true }, @@ -2849,6 +2940,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "aquaron.com", true }, { "aquaselect.eu", true }, { "aquatechnologygroup.com", true }, + { "aquaundine.net", true }, { "aquavitaedayspa.com.au", true }, { "aquelarreweb.com", true }, { "aquila.co.uk", true }, @@ -2863,8 +2955,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "araleeniken.com", true }, { "aramado.com", true }, { "aramido.de", true }, - { "aranel.me", true }, { "aranycsillag.net", true }, + { "araraexpress.com.br", true }, { "araratour.com", true }, { "araro.ch", true }, { "araseifudousan.com", true }, @@ -2872,6 +2964,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "arawaza.com", false }, { "arawaza.info", true }, { "araxis.com", true }, + { "arbeitsch.eu", true }, { "arbeitskreis-asyl-eningen.de", true }, { "arbeitslosenverwaltung.de", true }, { "arbejdsdag.dk", true }, @@ -2884,7 +2977,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "arcenergy.co.uk", true }, { "archimedicx.com", true }, { "archined.nl", true }, - { "architectdirect.nl", false }, + { "architectryan.com", true }, { "archivero.es", true }, { "archivesdelavieordinaire.ch", true }, { "archlinux.de", true }, @@ -2893,11 +2986,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "arcobalabs.ca", true }, { "arcridge.ca", true }, { "arctic.gov", true }, - { "arctica.io", true }, { "arcueil-cachan.fr", false }, { "arcusnova.de", true }, { "arda-audio.pt", true }, - { "ardor.noip.me", true }, { "ardtrade.ru", true }, { "area4pro.com", true }, { "area536.com", true }, @@ -2914,9 +3005,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "arenns.com", true }, { "areqgaming.com", true }, { "ares-trading.de", true }, - { "arethsu.se", true }, { "arfad.ch", true }, { "arg.zone", true }, + { "argama-nature.com", true }, { "arganaderm.ch", true }, { "argb.de", true }, { "argekultur.at", true }, @@ -2927,7 +3018,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "arian.io", true }, { "arias.re", true }, { "ariba.info", true }, - { "ariege-pyrenees.net", true }, { "arieswdd.com", true }, { "arigato-java.download", true }, { "arijitdg.net", true }, @@ -2938,12 +3028,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "arise19.com", true }, { "arisevendor.net", true }, { "aristilabs.com", true }, - { "aristocrates.co", true }, - { "aristocratps.com", true }, { "aritec-la.com", true }, { "arivo.com.br", true }, { "arizer.com", true }, { "arizonaautomobileclub.com", true }, + { "arizonabondedtitle.com", true }, { "arjandejong.eu", true }, { "arjanvaartjes.net", true }, { "arjunasdaughter.pub", true }, @@ -2957,8 +3046,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "arlen.tv", true }, { "arlenarmageddon.com", true }, { "arlet.click", true }, + { "arletalibrary.com", true }, + { "arm-host.com", true }, { "armadaquadrat.com", true }, { "armandsdiscount.com", true }, + { "armanozak.com", true }, { "armansfinejewellery.com", true }, { "armansfinejewellery.com.au", true }, { "armarinhovirtual.com.br", true }, @@ -2976,6 +3068,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "arnaudb.net", true }, { "arnaudfeld.de", true }, { "arnaudminable.net", true }, + { "arne.codes", true }, { "arnevankauter.com", true }, { "arniescastles.co.uk", true }, { "arno-klein.de", true }, @@ -3013,19 +3106,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "arrowheadflats.com", true }, { "arrowwebprojects.nl", true }, { "arschkrebs.org", true }, - { "arswb.men", true }, { "art-auction.jp", true }, { "art-et-culture.ch", true }, { "artansoft.com", true }, { "artboja.com", true }, { "artdeco-photo.com", true }, - { "artea.ga", true }, - { "arteaga.co.uk", true }, - { "arteaga.eu", true }, - { "arteaga.me", true }, - { "arteaga.tech", true }, - { "arteaga.uk", true }, - { "arteaga.xyz", true }, { "artecat.ch", true }, { "artedellavetrina.it", true }, { "artedona.com", true }, @@ -3040,8 +3125,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "artforum.sk", true }, { "artfullyelegant.com", true }, { "arthermitage.org", true }, - { "arthur.cn", true }, { "arthurlaw.ca", true }, + { "artificial.army", true }, { "artik.cloud", true }, { "artimpact.ch", true }, { "artioml.net", true }, @@ -3078,11 +3163,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "arubasunsetbeach.com", true }, { "arveron.ch", true }, { "arvid.io", true }, + { "arviksa.co.uk", true }, { "arvindhariharan.com", true }, { "arvindhariharan.me", true }, { "arvutiladu.ee", true }, { "arw.me", true }, - { "arxell.com", true }, { "aryan-nation.com", true }, { "aryasenna.net", true }, { "arzid.com", true }, @@ -3096,6 +3181,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "asandu.eu", true }, { "asanger.biz", true }, { "asato-jewelry.com", true }, + { "asbestosthedarkarts.com", true }, { "asbito.de", true }, { "ascamso.com", true }, { "ascendprime.com", true }, @@ -3127,7 +3213,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "asiaheavens.com", true }, { "asialeonding.at", true }, { "asian-industry.eu", true }, - { "asianodor.com", true }, { "asianshops.net", true }, { "asianspa.co.uk", true }, { "asiba.com.au", true }, @@ -3154,10 +3239,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "aspcl.ch", true }, { "aspectcontext.com", true }, { "asperti.com", true }, + { "asphyxia.su", true }, { "aspiescentral.com", true }, { "aspirateur-anti-pollution.fr", true }, { "aspires.co.jp", true }, { "aspisdata.com", true }, + { "asproni.it", true }, { "asr.cloud", true }, { "asr.li", true }, { "asr.rocks", true }, @@ -3173,7 +3260,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "assguidesporrentruy.ch", true }, { "assign-it.co.uk", true }, { "assistance-personnes-agees.ch", true }, - { "assistcart.com", true }, + { "assistel.com", true }, { "assistenzaferrodastiro.org", true }, { "assistenzafrigorifero.org", true }, { "assistenzalavatrice.org", true }, @@ -3189,6 +3276,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "astengox.com", true }, { "astenotarili.online", true }, { "astenretail.com", true }, + { "astral-imperium.uk", true }, { "astral.org.pl", true }, { "astrology42.com", true }, { "astroscopy.ch", true }, @@ -3239,11 +3327,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "atgroup.gr", true }, { "atgseed.co.uk", true }, { "atgseed.uk", true }, - { "ath0.org", true }, { "atheist-refugees.com", true }, { "athena-bartholdi.com", true }, { "athena-garage.co.uk", true }, { "athenadynamics.com", true }, + { "athenaneuro.com", true }, { "atheoryofchange.com", true }, { "atherosense.ga", true }, { "athlin.de", true }, @@ -3257,7 +3345,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "atisoft.web.tr", true }, { "atitude.com", true }, { "ativapsicologia.com.br", true }, - { "atk.me", true }, { "atl-paas.net", true }, { "atlantahairsurgeon.com", true }, { "atlantareroof.com", true }, @@ -3274,7 +3361,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "atlassian.io", true }, { "atlassignsandplaques.com", true }, { "atletika.hu", true }, - { "atmocdn.com", true }, { "atmschambly.com", true }, { "atnis.com", true }, { "ato4sound.com", true }, @@ -3295,6 +3381,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "atsoftware.de", true }, { "attac.us", true }, { "atte.fi", true }, + { "attelage.net", true }, { "attendantdesign.com", true }, { "attendu.cz", true }, { "attention.horse", true }, @@ -3307,7 +3394,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "attwood.org", true }, { "atulhost.com", true }, { "atviras.lt", false }, + { "atvirtual.at", true }, { "atwonline.org", true }, + { "atxchirocoverage.com", true }, { "atyourprice.net", true }, { "atypicom.es", true }, { "atypicom.fr", true }, @@ -3377,10 +3466,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "auroz.video", true }, { "aus-ryugaku.info", true }, { "ausmwoid.de", true }, - { "ausschreibungen-suedtirol.it", true }, { "aussiefunadvisor.com", true }, + { "aussiegreenmarks.com.au", true }, { "aussieservicedown.com", true }, { "aussiestoresonline.com", true }, + { "austenplumbing.com", true }, { "austin-pearce.com", true }, { "austin-security-cameras.com", true }, { "austincardiac.com", true }, @@ -3391,6 +3481,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "austinuniversityhouse.com", true }, { "australian.dating", true }, { "australianarmedforces.org", true }, + { "australianimmigrationadvisors.com.au", true }, { "australien-tipps.info", true }, { "austromorph.space", true }, { "auszeit-lanzarote.com", true }, @@ -3436,12 +3527,14 @@ static const nsSTSPreload kSTSPreloadList[] = { { "automationpro.me", true }, { "automotivegroup-usedcars.be", true }, { "automotivemechanic.org", true }, + { "automoto-tom.net", true }, { "autoosijek.com", true }, { "autopapo.com.br", true }, { "autoparts.im", true }, { "autoparts.sh", true }, { "autoparts.wf", true }, { "autoprice.info", true }, + { "autoprogconsortium.ga", true }, { "autorando.com", true }, { "autoschadeschreuder.nl", true }, { "autoscuola.roma.it", true }, @@ -3496,6 +3589,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "averen.co.uk", true }, { "avernis.de", true }, { "avexon.com", true }, + { "avi9526.pp.ua", true }, { "avia-krasnoyarsk.ru", true }, { "avia-ufa.ru", true }, { "aviapoisk.kz", true }, @@ -3504,10 +3598,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "avidmode-dev.com", true }, { "avidmode-staging.com", true }, { "avidmode.com", true }, + { "avidthink.com", true }, { "avietech.com", true }, { "aviv.nyc", true }, { "avlhostel.com", true }, - { "avnet.ws", true }, { "avocadooo.stream", true }, { "avocatbeziau.com", true }, { "avocode.com", true }, @@ -3523,6 +3617,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "avtovokzaly.ru", true }, { "avv.li", true }, { "avvcorda.com", true }, + { "avvocato.bologna.it", true }, { "awaremi-tai.com", true }, { "awaresec.com", true }, { "awaresec.no", true }, @@ -3555,6 +3650,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "axka.com", false }, { "axonholdingse.eu", true }, { "axrec.de", true }, + { "axtudo.com", false }, { "ayanomimi.com", true }, { "aycomba.de", true }, { "ayesh.me", true }, @@ -3563,7 +3659,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "aylak.com", true }, { "aylesburycastlehire.co.uk", true }, { "aymerick.fr", true }, - { "ayon.group", true }, { "ayothemes.com", true }, { "ayrohq.com", true }, { "ayrshirebouncycastlehire.co.uk", true }, @@ -3575,8 +3670,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "azadliq.info", true }, { "azazy.net", false }, { "azgfd.com", true }, + { "aziende.com.ar", true }, { "azimut.fr", true }, { "azizfirat.com", true }, + { "azizvicdan.com", true }, { "azlk-team.ru", true }, { "azort.com", true }, { "azrazalea.net", true }, @@ -3605,6 +3702,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "b0618.net", true }, { "b0868.com", true }, { "b0868.net", true }, + { "b0k.org", true }, { "b0rk.com", true }, { "b1.work", true }, { "b1758.com", true }, @@ -3619,7 +3717,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "b2486.net", true }, { "b2bmuzikbank.com", true }, { "b303.me", true }, - { "b422edu.com", true }, { "b4bouncycastles.co.uk", true }, { "b4ckbone.de", true }, { "b4r7.de", true }, @@ -3734,7 +3831,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "baciu.ch", true }, { "backeby.eu", true }, { "backmountaingas.com", true }, - { "backpacken.org", true }, { "backpacker.dating", true }, { "backschues.com", true }, { "backschues.de", true }, @@ -3781,7 +3877,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "bageluncle.com", true }, { "baggy.me.uk", true }, { "bagheera.me.uk", true }, - { "baglu.com", true }, { "bagsofbounce.co.uk", true }, { "bagspecialist.nl", true }, { "bagstage.de", true }, @@ -3817,12 +3912,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "baladecommune.ch", true }, { "balancascia.com.br", true }, { "balance7.jp", true }, + { "balancedbrawl.net", true }, { "balancenaturalhealthclinic.ca", true }, { "balboa.io", true }, { "balcaonet.com.br", true }, { "balconnr.com", true }, { "balconsverdun.com", true }, - { "baldur.cc", true }, { "balia.de", true }, { "balicekzdravi.cz", true }, { "balidesignshop.com.br", true }, @@ -3833,7 +3928,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "balkonien.org", true }, { "ball.holdings", true }, { "ball3d.es", true }, - { "ballarin.cc", true }, { "ballejaune.com", true }, { "ballinarsl.com.au", true }, { "ballitolocksmith.com", true }, @@ -3851,11 +3945,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "bambumania.com.br", true }, { "bamily.rocks", true }, { "bananavapes.com", true }, - { "banburybid.com", true }, { "bancacrs.it", true }, { "bancaolhares.com.br", true }, { "bancobai.ao", true }, { "bancoctt.pt", true }, + { "bancor.network", true }, + { "bandagastrica.es", true }, { "bandeira1.com.br", true }, { "bandgap.io", true }, { "bandiga.it", true }, @@ -3914,6 +4009,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "barclays.net", true }, { "barcodeberlin.com", true }, { "barcoderealty.com", true }, + { "bardes.org", true }, + { "bardiharborow.com", true }, { "bardiharborow.tk", true }, { "baresquare.com", true }, { "barf-alarm.de", true }, @@ -3940,6 +4037,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "barta.me", true }, { "bartel.ws", true }, { "bartelt.name", true }, + { "barter4crypto.com", true }, { "barthonia-showroom.de", true }, { "bartlamboo.nl", true }, { "bartolomebellido.com", true }, @@ -3959,12 +4057,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "basementdoctornorthwest.com", true }, { "basementfinishingohio.com", true }, { "basercap.co.ke", true }, + { "bashing-battlecats.com", true }, { "bashstreetband.co.uk", true }, { "basicapparel.de", true }, { "basicattentiontoken.org", true }, - { "basilicaknights.org", true }, { "basketball-brannenburg.de", true }, - { "basketsbymaurice.com", false }, { "basnoslovno.com.ua", false }, { "basnoslovno.ru", true }, { "basonlinemarketing.nl", true }, @@ -3973,6 +4070,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "bassment.ph", true }, { "bassresource.com", true }, { "bassrider.eu", true }, + { "bassys.com.co", true }, + { "bastadigital.com", true }, { "bastelzauberwelt.de", true }, { "bastianstalder.ch", true }, { "bastiv.com", true }, @@ -3993,10 +4092,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "batistareisfloresonline.com.br", true }, { "batlab.ch", true }, { "batolis.com", true }, - { "batonger.com", true }, { "batook.org", true }, { "batschu.de", true }, - { "batteryservice.ru", false }, { "batterystaple.pw", true }, { "battle-game.com", true }, { "battleboxx.com", false }, @@ -4022,6 +4119,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "bayerhazard.de", true }, { "bayerstefan.com", true }, { "bayerstefan.de", true }, + { "bayerstefan.eu", true }, { "bayherbalist.com", true }, { "bayilelakiku.com", true }, { "bayly.eu", true }, @@ -4029,8 +4127,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "baytalebaa.com", true }, { "baywatch.io", true }, { "bayz.de", true }, + { "bazaarbhaav.com", true }, { "bazaarcompass.com", true }, - { "bazdell.com", false }, + { "bazdell.com", true }, { "bazos.at", true }, { "bazos.cz", true }, { "bazos.pl", true }, @@ -4059,9 +4158,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "bc-bd.org", false }, { "bc-diffusion.com", true }, { "bc-personal.ch", true }, - { "bc416.com", true }, - { "bc418.com", true }, - { "bc419.com", true }, { "bcansw.com.au", true }, { "bcbulle.ch", true }, { "bcdonadio.com", true }, @@ -4078,7 +4174,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "bcmainland.ca", true }, { "bcmguide.com", true }, { "bcmhire.co.uk", true }, - { "bcmlu.org", true }, { "bcnet.com.hk", true }, { "bcpc-ccgpfcheminots.com", true }, { "bcrook.com", true }, @@ -4087,6 +4182,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "bcvps.com", true }, { "bd2positivo.com", true }, { "bda-boulevarddesairs.com", true }, + { "bdbxml.net", true }, { "bdd.fi", true }, { "bdikaros-network.net", true }, { "bdpachicago.tech", true }, @@ -4117,6 +4213,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "beaglesecurity.com", true }, { "bealpha.pl", true }, { "beamer-discount.de", true }, + { "beamstat.com", true }, { "beanjuice.me", true }, { "beans-one.com", false }, { "bearcosports.com.br", true }, @@ -4143,7 +4240,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "bebout.domains", true }, { "bebout.pw", true }, { "beckenhamcastles.co.uk", true }, - { "beckerantiques.com", false }, + { "beckerantiques.com", true }, { "beckon.com", true }, { "becoast.fr", true }, { "becs.ch", true }, @@ -4156,6 +4253,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "bedfordnissanparts.com", true }, { "bedlingtonterrier.com.br", true }, { "bednar.co", true }, + { "bedrijfsportaal.nl", true }, { "bedrocklinux.org", true }, { "bedste10.dk", true }, { "bee-creative.nl", true }, @@ -4163,6 +4261,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "bee.clothing", true }, { "bee.supply", true }, { "bee.tools", true }, + { "beechwoodmetalworks.com", true }, { "beehive.govt.nz", true }, { "beehive42.com", true }, { "beehive42.eu", true }, @@ -4210,10 +4309,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "beginner.nl", true }, { "beginwp.top", true }, { "begoodny.co.il", true }, + { "behamepresrdce.sk", true }, { "behamzdarma.cz", true }, { "behindthethrills.com", true }, { "behna24hodin.cz", true }, { "behoerden-online-dienste.de", true }, + { "beholdthehurricane.com", true }, { "behoreal.cz", true }, { "bei18.com", true }, { "beichtgenerator.de", true }, @@ -4248,6 +4349,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "believersweb.org", true }, { "bell.id.au", true }, { "bella.network", true }, + { "bellamodeling.com", true }, { "belloy.ch", true }, { "belloy.net", true }, { "bellthrogh.com", true }, @@ -4336,7 +4438,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "beranovi.com", true }, { "berasavocate.com", true }, { "berdaguermontes.eu", false }, - { "beretech.fr", true }, { "bergenhave.nl", true }, { "bergevoet-fa.nl", true }, { "bergfreunde.de", true }, @@ -4370,6 +4471,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "bernarddickens.com", true }, { "bernardfischer.fr", true }, { "bernardgo.com", true }, + { "bernat.ch", true }, { "bernat.im", true }, { "bernd-leitner-fotodesign.com", true }, { "bernd-leitner-fotodesign.de", true }, @@ -4378,7 +4480,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "bernhardkau.de", true }, { "bernhardluginbuehl.ch", true }, { "bernhardluginbuehl.com", true }, - { "bernieware.de", true }, { "berodes.be", true }, { "berr.yt", true }, { "berra.se", true }, @@ -4397,7 +4498,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "bertrandkeller.info", true }, { "bertsmithvwparts.com", true }, { "beryl.net", true }, - { "berz.one", true }, { "besb.io", true }, { "besb66.com", true }, { "beschriftung-metz.de", true }, @@ -4418,7 +4518,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "bestattungshaus-kammerer.de", true }, { "bestautoinsurance.com", true }, { "bestbatteriesonline.com", true }, - { "bestbonuses.co.uk", true }, { "bestbrakes.com", true }, { "bestbridal.top", true }, { "bestbyte.com.br", true }, @@ -4434,6 +4533,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "bestgifts4you.com", true }, { "bestiahosting.com", true }, { "bestinductioncooktop.us", true }, + { "bestinver.es", true }, { "bestjumptrampolines.be", true }, { "bestlashesandbrows.com", true }, { "bestlashesandbrows.hu", true }, @@ -4464,10 +4564,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "betecnet.de", true }, { "betgo9.cc", true }, { "bethanyduke.com", true }, + { "bethpage.net", true }, { "betobaccofree.gov", true }, { "betonbit.com", true }, { "betpamm.com", true }, { "betrallyarabia.com", true }, + { "bets.gg", true }, { "betseybuckheit.com", true }, { "betsyshilling.com", true }, { "bett1.de", true }, @@ -4513,11 +4615,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "bewerbungsfoto-deinfoto.ch", true }, { "bewonderen.com", true }, { "bexit.nl", true }, - { "bexithosting.nl", true }, { "bexleycastles.co.uk", true }, { "beybiz.com", true }, { "beylikduzuvaillant.com", true }, { "beyond-infinity.org", false }, + { "beyond-rational.com", true }, { "beyondalderaan.net", true }, { "beyondbounce.co.uk", true }, { "beyondpricing.com", true }, @@ -4527,7 +4629,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "beyondweb.net", true }, { "beyonic.com", true }, { "beyours.be", true }, - { "bez-energie.de", true }, { "bezemkast.nl", true }, { "bezpecnostsiti.cf", true }, { "bezr.co.uk", true }, @@ -4542,7 +4643,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "bftbradio.com", true }, { "bfw-online.de", true }, { "bg-sexologia.com", true }, - { "bg16.de", true }, { "bgbhsf.top", true }, { "bgeo.io", true }, { "bgfoto.info", true }, @@ -4564,7 +4664,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "bhuntr.com", true }, { "bi.search.yahoo.com", false }, { "biaggeo.com", true }, - { "biancolievito.it", true }, { "biano-ai.com", true }, { "biasmath.es", true }, { "biathloncup.ru", true }, @@ -4584,8 +4683,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "bicranial.io", true }, { "bicycle-events.com", true }, { "biddl.com", true }, + { "biddle.co", true }, { "bidu.com.br", true }, { "bie.edu", false }, + { "biegal.ski", true }, { "biegner-technik.de", true }, { "biehlsoft.info", true }, { "bielefailed.de", true }, @@ -4615,10 +4716,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "biggreenexchange.com", true }, { "bigio.com.br", true }, { "bigjohn.ru", true }, + { "biglou.com", false }, { "bignumworks.com", true }, - { "bigshort.org", true }, { "bigsisterchannel.com", true }, { "bigskymontanalandforsale.com", true }, + { "bigwiseguide.com", true }, { "bihub.io", true }, { "biilo.com", true }, { "bijouxbrasil.com.br", true }, @@ -4643,12 +4745,14 @@ static const nsSTSPreload kSTSPreloadList[] = { { "bildiri.ci", true }, { "bildkomponist.de", true }, { "bildschirmflackern.de", true }, + { "biletru.net", true }, { "biletyplus.by", true }, { "biletyplus.ua", true }, { "bilgo.com", true }, { "bilibili.red", true }, { "bilimoe.com", true }, { "bilke.org", true }, + { "billaud.eu.org", true }, { "billgoldstein.name", true }, { "billhartzer.com", true }, { "billiger-mietwagen.de", true }, @@ -4724,7 +4828,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "biohappiness.com", true }, { "bioharmony.ca", true }, { "biointelligence-explosion.com", true }, - { "bioknowme.com", true }, { "bioligo.ch", true }, { "biomasscore.com", true }, { "biometrics.es", true }, @@ -4735,7 +4838,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "biosbits.org", true }, { "bioshine.com.sg", true }, { "biosignalanalytics.com", true }, - { "biospeak.solutions", true }, { "biosphere.cc", true }, { "biotechware.com", true }, { "bipyo.com", true }, @@ -4763,6 +4865,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "biscoint.io", true }, { "biser-borisov.eu", true }, { "bismarck-tb.de", true }, + { "biso.ga", true }, { "bison.co", true }, { "bissalama.org", true }, { "bisschopssteeg.nl", true }, @@ -4775,6 +4878,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "bit.biz.tr", true }, { "bit.voyage", true }, { "bit8.com", true }, + { "bitaccelerate.com", true }, { "bitbank.cc", true }, { "bitbeans.de", true }, { "bitbox.me", true }, @@ -4820,7 +4924,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "bitk.co", true }, { "bitk.co.uk", true }, { "bitk.eu", true }, - { "bitk.uk", true }, { "bitlish.com", true }, { "bitlo.com", true }, { "bitlo.com.tr", true }, @@ -4833,6 +4936,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "bitmidi.com", true }, { "bitminter.com", true }, { "bitmoe.com", true }, + { "bitmon.net", true }, { "bitok.com", true }, { "bitpumpe.net", true }, { "bitref.com", true }, @@ -4858,7 +4962,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "biyou-homme.com", true }, { "biz4x.com", true }, { "bizeau.ch", true }, - { "bizedge.co.nz", true }, { "bizniskatalog.mk", true }, { "biznpro.ru", true }, { "bizstarter.cz", true }, @@ -4871,7 +4974,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "bjl5689.net", true }, { "bjornhelmersson.se", true }, { "bjornjohansen.no", true }, - { "bjrn.io", true }, { "bjs.gov", true }, { "bjsbouncycastles.com", true }, { "bkentertainments.co.uk", true }, @@ -4879,6 +4981,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "bkhpilates.co.uk", true }, { "bklaindia.com", true }, { "bkositspartytime.co.uk", true }, + { "bl00.se", true }, { "bl4ckb0x.biz", true }, { "bl4ckb0x.com", true }, { "bl4ckb0x.de", true }, @@ -4912,7 +5015,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "black.dating", true }, { "black.host", true }, { "blackandpony.de", true }, - { "blackapron.com.br", true }, { "blackbag.nl", true }, { "blackbase.de", true }, { "blackberryforums.be", true }, @@ -4920,7 +5022,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "blackcatinformatics.ca", true }, { "blackcatinformatics.com", true }, { "blackcicada.com", true }, - { "blackdesertsp.com", true }, { "blackdotbrewery.com", true }, { "blackdown.de", true }, { "blackdragoninc.org", true }, @@ -4932,16 +5033,20 @@ static const nsSTSPreload kSTSPreloadList[] = { { "blackhat.dk", true }, { "blackhelicopters.net", true }, { "blackhillsinfosec.com", true }, + { "blackilli.de", true }, { "blackislegroup.com", true }, + { "blackkeg.ca", true }, { "blackl.net", true }, { "blackmonday.gr", true }, { "blacknetwork.eu", true }, + { "blacknova.io", true }, { "blackonion.com", true }, { "blackpapermoon.de", true }, { "blackphoenix.de", true }, { "blackroadphotography.de", true }, { "blackscytheconsulting.com", true }, { "blackseals.net", true }, + { "blackyau.cc", true }, { "blackys-chamber.de", true }, { "blaise.io", true }, { "blakecoin.org", true }, @@ -4982,8 +5087,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "blidz.com", true }, { "blieque.co.uk", true }, { "bliesekow.net", true }, + { "bliker.ga", true }, { "blikk.no", true }, - { "blikund.swedbank.se", true }, { "blindpigandtheacorn.com", true }, { "blinds-unlimited.com", true }, { "bling9.com", true }, @@ -5012,6 +5117,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "block65.com", true }, { "blockchain.com", true }, { "blockchain.info", true }, + { "blockchainced.com", true }, { "blockchaindaigakko.jp", true }, { "blockchainwhiz.com", true }, { "blockcheck.network", true }, @@ -5042,11 +5148,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "bloggytalky.com", true }, { "bloginbeeld.nl", true }, { "bloglines.co.za", true }, + { "bloglogistics.com", true }, { "blogom.at", true }, { "blogpentrusuflet.ro", true }, { "blogreen.org", true }, + { "blogthedayaway.com", true }, { "blogtroterzy.pl", true }, - { "blok56.nl", true }, + { "blood4pets.tk", true }, { "bloodsports.org", true }, { "bloom-avenue.com", true }, { "bltc.co.uk", true }, @@ -5055,6 +5163,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "bltc.org", true }, { "bltc.org.uk", true }, { "bltdirect.com", true }, + { "blubberladen.de", true }, { "bludnykoren.ml", true }, { "blue-gmbh-erfahrungen.de", true }, { "blue-gmbh.de", true }, @@ -5067,7 +5176,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "bluecon.ninja", true }, { "bluecrazii.nl", true }, { "blued.moe", true }, - { "bluedata.ltd", true }, { "bluedeck.org", true }, { "blueflare.org", true }, { "bluefrag.com", true }, @@ -5096,7 +5204,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "bluex.net", true }, { "bluex.org", true }, { "blueyed.eu", true }, - { "blui.cf", true }, + { "blui.ml", true }, { "bluiandaj.ml", true }, { "bluimedia.com", true }, { "blumenfeldart.com", true }, @@ -5107,7 +5215,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "bluproducts.com.es", true }, { "blurringexistence.net", true }, { "blusmurf.net", true }, - { "blutopia.xyz", true }, { "blyat.science", true }, { "blyth.me.uk", true }, { "blzrk.com", true }, @@ -5118,8 +5225,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "bmw-motorradclub-seefeld.de", true }, { "bmwcolors.com", true }, { "bn1digital.co.uk", true }, - { "bnb-buddy.nl", true }, - { "bnboy.cn", true }, + { "bn4t.me", true }, { "bnbsinflatablehire.co.uk", true }, { "bngs.pl", true }, { "bnin.org", true }, @@ -5146,6 +5252,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "bobancoamigo.com", true }, { "bobazar.com", true }, { "bobcopeland.com", true }, + { "bobiji.com", false }, { "bobkidbob.com", true }, { "bobkoetsier.nl", true }, { "bobnbouncedublin.ie", true }, @@ -5177,15 +5284,17 @@ static const nsSTSPreload kSTSPreloadList[] = { { "bogdanepureanu.ro", true }, { "bogner.sh", true }, { "bogobeats.com", true }, - { "bohan.co", true }, + { "bogosity.se", true }, { "bohramt.de", true }, { "boimmobilier.ch", true }, { "boincstats.com", true }, { "boiseonlinemall.com", true }, { "boisewaldorf.org", true }, + { "bokadoktorn-test.net", true }, { "boke112.com", true }, { "bokka.com", true }, { "bokkeriders.com", true }, + { "bokutake.com", true }, { "boldmediagroup.com", true }, { "boldt-metallbau.de", true }, { "bolektro.de", true }, @@ -5197,6 +5306,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "boltbeat.com", true }, { "bolte.org", true }, { "bomb.codes", true }, + { "bombe-lacrymogene.fr", true }, { "bonaccorso.eu", true }, { "bonami.cz", true }, { "bonami.hu", true }, @@ -5207,6 +5317,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "bondank.com", true }, { "bondarenko.dn.ua", true }, { "bondingwithbaby.ca", true }, + { "bondlink.com", true }, { "bondoer.fr", true }, { "bondskampeerder.nl", true }, { "bonebunny.de", true }, @@ -5227,11 +5338,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "bonnyprints.fr", true }, { "bonprix.co.uk", true }, { "bonqoeur.ca", true }, + { "bonrecipe.com", true }, { "bonsaimedia.nl", true }, { "boodaah.com", true }, { "boodmo.com", true }, { "boogiebouncecastles.co.uk", true }, { "book-in-hotel.com", true }, + { "booker.ly", true }, { "bookingapp.be", true }, { "bookingapp.nl", true }, { "bookingdeluxesp.com", true }, @@ -5274,7 +5387,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "bordes.me", true }, { "boredhackers.com", true }, { "borg.cloud", true }, - { "borgmestervangen.xyz", true }, { "boringsmith.com", true }, { "boris64.net", true }, { "borisenko.by", true }, @@ -5296,8 +5408,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "bosufitness.cz", true }, { "bosun.io", true }, { "bosworthdental.co.uk", true }, - { "botlab.ch", true }, - { "bots.cat", true }, + { "bot-manager.pl", true }, + { "botguard.net", true }, { "botserver.de", true }, { "botstack.host", true }, { "bottaerisposta.net", true }, @@ -5375,7 +5487,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "bouncycastle.net.au", true }, { "bouncycastlehire-norwich.com", true }, { "bouncycastlehire-sheffield.co.uk", true }, - { "bouncycastlehireauckland.co.nz", true }, + { "bouncycastlehire.co.uk", true }, { "bouncycastlehirebarnstaple.co.uk", true }, { "bouncycastlehirebexley.co.uk", true }, { "bouncycastlehirechelmsford.org.uk", true }, @@ -5450,8 +5562,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "boxpeg.com", true }, { "boxpirates.to", true }, { "boxvergelijker.nl", true }, + { "boyerassoc.com", true }, { "boyfriendcookbook.com", true }, { "boyhost.cn", true }, + { "boyinglanguage.com", true }, + { "boyntonobserver.org", true }, { "boz.nl", false }, { "bozdoz.com", true }, { "bozit.com.au", true }, @@ -5496,6 +5611,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "brainvoyagermusic.com", true }, { "brainwork.space", true }, { "brakemanpro.com", true }, + { "brakpanplumber24-7.co.za", true }, { "bralnik.com", true }, { "brambogaerts.nl", true }, { "bramburek.net", true }, @@ -5515,6 +5631,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "brando753.xyz", true }, { "brandongomez.me", true }, { "brandonhubbard.com", true }, + { "brandonlui.ml", true }, { "brandonwalker.me", true }, { "brandrocket.dk", true }, { "brandstead.com", true }, @@ -5578,7 +5695,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "breitbild-beamer.de", true }, { "brejoc.com", true }, { "bremen-restaurants.de", true }, - { "bremensaki.com", true }, { "bremerfriedensforum.de", true }, { "brendanbatliner.com", true }, { "brendanscherer.com", true }, @@ -5610,9 +5726,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "briarproject.org", true }, { "brickftp.com", true }, { "brickheroes.com", true }, + { "brickstreettrio.com", true }, { "brickvortex.com", true }, { "bricolajeux.ch", true }, { "brid.gy", false }, + { "bridalshoes.com", true }, { "brideandgroomdirect.ie", true }, { "bridgeglobalmarketing.com", true }, { "bridgement.com", true }, @@ -5622,18 +5740,16 @@ static const nsSTSPreload kSTSPreloadList[] = { { "briefassistant.com", true }, { "briefhansa.de", true }, { "briefvorlagen-papierformat.de", true }, - { "briggsleroux.com", true }, { "brighouse-leisure.co.uk", true }, { "brightday.bz", true }, + { "brightendofleasecleaning.com.au", true }, { "brightlifedirect.com", true }, { "brightonbank.com", true }, { "brightonbouncycastles.net", true }, { "brightonchilli.org.uk", true }, { "brightonzhang.com", true }, { "brigidaarie.com", true }, - { "brigittebutt.tk", true }, { "brilliantbouncyfun.co.uk", true }, - { "brilliantdecisionmaking.com", true }, { "brilliantproductions.co.nz", true }, { "brimspark.systems", true }, { "brio-shop.ch", true }, @@ -5679,7 +5795,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "brossmanit.com", true }, { "brother-printsmart.nl", true }, { "brouillard.ch", true }, - { "brouwerijkoelit.nl", true }, + { "brouwerijdeblauweijsbeer.nl", true }, { "brovelton.com", true }, { "brown-devost.com", true }, { "brownfieldstsc.org", true }, @@ -5687,6 +5803,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "browsemycity.com", true }, { "brring.com", true }, { "bru6.de", true }, + { "brucekovner.com", true }, { "brucemartin.net", true }, { "brucemobile.de", false }, { "bruck.me", true }, @@ -5694,15 +5811,15 @@ static const nsSTSPreload kSTSPreloadList[] = { { "bruna-cdn.nl", true }, { "brunick.de", false }, { "brunn.email", true }, - { "brunner.ninja", false }, + { "brunner.ninja", true }, { "brunohenc.from.hr", true }, - { "brunosouza.org", true }, { "brush.ninja", true }, { "bruun.co", true }, { "bryankaplan.com", true }, { "bryanquigley.com", true }, { "bryansmith.net", true }, { "bryansmith.tech", true }, + { "brzy-svoji.cz", true }, { "bs-network.net", true }, { "bs-security.com", true }, { "bs.sb", true }, @@ -5732,16 +5849,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "bsociabl.com", true }, { "bsp-southpool.com", true }, { "bsquared.org", true }, + { "bst.gg", true }, { "bstoked.net", true }, + { "bsuru.xyz", true }, { "bsw-solution.de", true }, { "bt123.xyz", true }, - { "bt78.cn", true }, - { "bt85.cn", true }, - { "bt9.cc", true }, - { "bt96.cn", true }, - { "bt995.com", true }, { "bta.lv", false }, - { "btaoke.com", true }, { "btc2secure.com", true }, { "btcarmory.com", true }, { "btcbolsa.com", true }, @@ -5823,7 +5936,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "buileo.com", true }, { "builtvisible.com", true }, { "builtwith.com", true }, - { "bukai.men", true }, { "bukkenfan.jp", true }, { "bul3seas.eu", true }, { "bulario.com", true }, @@ -5842,7 +5954,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "bullshitmail.nl", true }, { "bullterrier.nu", true }, { "bulwarkhost.com", true }, - { "bumarkamoda.com", true }, { "bunbun.be", false }, { "bund-von-theramore.de", true }, { "bundespolizei-forum.de", true }, @@ -5868,6 +5979,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "burnhamonseabouncycastles.co.uk", true }, { "burningbird.net", true }, { "burningflipside.com", false }, + { "burningmarket.de", true }, { "burntfish.com", true }, { "burnworks.com", true }, { "buronwater.com", true }, @@ -5888,7 +6000,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "busindre.com", true }, { "business-garden.com", true }, { "business.facebook.com", false }, - { "businessadviceperth.com.au", true }, { "businesscentermarin.ch", true }, { "businessesdirectory.eu", true }, { "businessfactors.de", true }, @@ -5896,6 +6007,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "businessimmigration-eu.ru", true }, { "businessplanexperts.ca", true }, { "businessradar.com.au", true }, + { "businesswebadmin.com", true }, { "busit.be", true }, { "busold.ws", true }, { "bustadice.com", true }, @@ -5906,7 +6018,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "buthowdoyoubuygroceries.com", true }, { "butikvip.ru", true }, { "buttercupstraining.co.uk", true }, - { "buttermilk.cf", true }, { "buttonline.ch", true }, { "buttonrun.com", true }, { "buturyu.net", true }, @@ -5926,6 +6037,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "buyjewel.shop", true }, { "buymindhack.com", true }, { "buypapercheap.net", true }, + { "buyplussize.shop", true }, { "buyprofessional.shop", true }, { "buyritefairview.com", true }, { "buyseo.store", true }, @@ -5942,19 +6054,17 @@ static const nsSTSPreload kSTSPreloadList[] = { { "bw.codes", true }, { "bwcscorecard.org", true }, { "bwe-seminare.de", true }, + { "bwf11.com", true }, + { "bwf55.com", true }, + { "bwf6.com", true }, + { "bwf66.com", true }, + { "bwf77.com", true }, + { "bwf99.com", true }, { "bwfc.nl", true }, { "bwh1.net", true }, { "bwilkinson.co.uk", true }, - { "bwin86.com", true }, - { "bwin8601.com", true }, - { "bwin8602.com", true }, - { "bwin8603.com", true }, - { "bwin8604.com", true }, - { "bwin8605.com", true }, - { "bwin8606.com", true }, { "bwl-earth.club", true }, { "bws16.de", true }, - { "bwwb.nu", true }, { "bx-n.de", true }, { "bxp40.at", true }, { "by.cx", true }, @@ -5984,9 +6094,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "bytejail.com", true }, { "bytema.cz", true }, { "bytema.eu", true }, + { "bytema.re", true }, { "bytema.sk", true }, + { "bytemix.cloud", true }, { "byteowls.com", false }, { "bytepark.de", true }, + { "bytepen.com", true }, { "bytes.co", true }, { "bytes.fyi", true }, { "bytesatwork.de", true }, @@ -5999,7 +6112,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "bythisverse.com", true }, { "byvshie.com", true }, { "bywin9.com", true }, - { "bzhub.bid", true }, { "bziaks.xyz", true }, { "bzsparks.com", true }, { "bztech.com.br", true }, @@ -6024,12 +6136,14 @@ static const nsSTSPreload kSTSPreloadList[] = { { "c3wien.at", true }, { "c4539.com", true }, { "c4k3.net", true }, + { "c5h8no4na.net", true }, { "c7dn.com", true }, { "ca-key.de", true }, { "ca-terminal-multiservices.fr", true }, { "ca.gparent.org", true }, { "ca.search.yahoo.com", false }, { "ca5.de", true }, + { "caaps.org.au", true }, { "caarecord.org", true }, { "caasd.org", true }, { "cabaladada.org", true }, @@ -6058,12 +6172,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "cadooz.com", true }, { "cadorama.fr", true }, { "cadoth.net", true }, - { "cadra.nl", true }, + { "cadra.nl", false }, { "cadre.com", true }, { "cadsys.net", true }, { "cadusilva.com", true }, { "caesarkabalan.com", true }, - { "cafe-service.ru", false }, { "cafedupont.be", true }, { "cafedupont.co.uk", true }, { "cafedupont.de", true }, @@ -6099,6 +6212,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "calc.pw", true }, { "calcedge.com", true }, { "calcinacci.com", true }, + { "calcoolator.pl", true }, { "calcularis.ch", true }, { "calculateaspectratio.com", true }, { "calculator-imt.com", true }, @@ -6119,7 +6233,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "calidoinvierno.com", true }, { "calixte-concept.fr", true }, { "call.me", true }, - { "callawayracing.se", true }, + { "callawayracing.se", false }, { "callear.org", true }, { "callhub.io", true }, { "calltoar.ms", true }, @@ -6147,7 +6261,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "cambodian.dating", true }, { "cambridge-security.com", true }, { "cambridgebouncers.co.uk", true }, + { "camcapital.com", true }, { "camconn.cc", true }, + { "camdesign.pl", true }, { "camelservers.com", true }, { "cameo-membership.uk", true }, { "cameraviva.com.br", true }, @@ -6155,7 +6271,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "camilomodzz.net", true }, { "camjobs.net", true }, { "camolist.com", true }, - { "camomile.desi", true }, { "camp-pleinsoleil.ch", true }, { "camp.co.uk", true }, { "campaign-ad.com", true }, @@ -6187,6 +6302,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "campuswire.com", true }, { "campvana.com", true }, { "campwabashi.org", true }, + { "camshowstorage.com", true }, { "camsky.de", false }, { "canada-tourisme.ch", true }, { "canadabread.com", false }, @@ -6223,7 +6339,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "cannabis-marijuana.com", true }, { "cannacards.ca", true }, { "cannahealth.com", true }, - { "cannarobotics.com", true }, { "cannoli.london", true }, { "cannyfoxx.me", true }, { "canoonic.se", true }, @@ -6311,7 +6426,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "cardranking.jp", true }, { "cardrecovery.fr", true }, { "cardse.net", true }, - { "cardwars.hu", true }, + { "cardsolutionsbh.com.br", true }, { "cardxl.be", true }, { "cardxl.de", true }, { "cardxl.fr", true }, @@ -6320,6 +6435,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "careeapp.com", true }, { "careeroptionscoach.com", true }, { "careerpower.co.in", true }, + { "careers.plus", true }, { "carefour.nl", true }, { "caremad.io", true }, { "carepassport.com", true }, @@ -6347,19 +6463,19 @@ static const nsSTSPreload kSTSPreloadList[] = { { "carlmjohnson.net", true }, { "carlobiagi.de", true }, { "carlocksmith--dallas.com", true }, + { "carlocksmithbaltimore.com", true }, { "carlocksmithellicottcity.com", true }, { "carlocksmithfallbrook.com", true }, { "carlocksmithlewisville.com", true }, { "carlocksmithmesquite.com", true }, + { "carlocksmithtucson.com", true }, { "carlosfelic.io", true }, - { "carloshmm.com", true }, { "carlosjeurissen.com", true }, { "carlot-j.com", true }, { "carnaticalifornia.com", true }, { "carnet-du-voyageur.com", true }, { "carnildo.com", true }, { "caroes.be", true }, - { "carol-lambert.com", true }, { "carolcappelletti.com", true }, { "carolcestas.com", true }, { "caroli.com", true }, @@ -6400,6 +6516,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "cartertonscouts.org.nz", true }, { "cartesentreprises-unicef.fr", true }, { "carthedral.com", true }, + { "cartierplan.ga", true }, { "carto.la", true }, { "cartongesso.roma.it", true }, { "cartooncastles.ie", true }, @@ -6416,8 +6533,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "casa-su.casa", true }, { "casabouquet.com", true }, { "casacameo.com", false }, + { "casacochecurro.com", true }, { "casadasportasejanelas.com", true }, - { "casadellecose.com", true }, { "casadoarbitro.com.br", true }, { "casadowifi.com.br", true }, { "casalindamex.com", true }, @@ -6448,17 +6565,21 @@ static const nsSTSPreload kSTSPreloadList[] = { { "casinobonuscodes.online", true }, { "casinocashflow.ru", true }, { "casinolegal.pt", true }, + { "casinomucho.com", true }, { "casinoonlinesicuri.com", true }, { "casio-caisses-enregistreuses.fr", true }, { "casjay.cloud", true }, { "casjay.com", true }, { "casjay.info", true }, + { "casjay.us", true }, + { "casjaygames.com", true }, { "caspar.ai", true }, { "casperpanel.com", true }, { "cassimo.com", true }, { "castbulletassoc.org", false }, { "casteloinformatica.com.br", true }, { "castible.de", true }, + { "castle-engine.io", true }, { "castlecapers.com.au", true }, { "castlecms.io", true }, { "castlejackpot.com", true }, @@ -6490,16 +6611,25 @@ static const nsSTSPreload kSTSPreloadList[] = { { "catchfotografie.nl", true }, { "catchhimandkeephim.com", true }, { "catchief.com", true }, + { "catdecor.ru", true }, { "catenacondos.com", true }, { "catfooddispensersreviews.com", true }, { "catgirl.science", true }, { "catharinesomerville.com", true }, { "catharisme.eu", true }, { "catharisme.net", true }, - { "catherineidylle.com", true }, + { "catherinejf.com", true }, { "catherinescastles.co.uk", true }, { "catholics.dating", true }, { "cathosa.nl", true }, + { "cathy.guru", true }, + { "cathy.website", true }, + { "cathyfitzpatrick.com", true }, + { "cathyjf.ca", true }, + { "cathyjf.com", true }, + { "cathyjf.net", true }, + { "cathyjf.org", true }, + { "cathyjfitzpatrick.com", true }, { "cativa.net", true }, { "catl.st", true }, { "catmoose.ca", true }, @@ -6517,9 +6647,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "cave-reynard.ch", true }, { "cavevinsdefrance.fr", true }, { "cavzodiaco.com.br", true }, + { "caxalt.com", true }, { "caylercapital.com", true }, { "cazaviajes.es", true }, - { "cazes.info", true }, { "cb-crochet.com", true }, { "cbbank.com", true }, { "cbc-hire.co.uk", true }, @@ -6531,11 +6661,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "cbecrft.net", true }, { "cbin168.com", true }, { "cbintermountainrealty.com", true }, + { "cbk-connect.com", true }, { "cbr-xml-daily.ru", true }, { "cbsdeheidevlinder.nl", true }, { "cbw.sh", true }, { "cc-brantomois.fr", true }, - { "cc2729.com", true }, { "ccac.gov", true }, { "ccavenue.com", true }, { "cccwien.at", true }, @@ -6553,6 +6683,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ccv-deutschland.de", true }, { "ccv.ch", true }, { "ccv.nl", true }, + { "cd-shopware.de", true }, { "cd-sport.com", true }, { "cd.search.yahoo.com", false }, { "cd5k.net", true }, @@ -6575,6 +6706,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "cdns.cloud", true }, { "cdom.de", true }, { "cdsdigital.de", true }, + { "cdshining.com", true }, { "cdu-wilgersdorf.de", true }, { "cduckett.net", true }, { "ce-pimkie.fr", true }, @@ -6582,6 +6714,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ceciliacolombara.com", true }, { "cecipu.gob.cl", true }, { "ced-services.nl", true }, + { "cedarslodge.com", true }, { "cedriccassimo.ch", true }, { "cedriccassimo.com", true }, { "cedricmartineau.com", true }, @@ -6611,6 +6744,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "censys.io", true }, { "centaur.de", true }, { "centennialradon.com", true }, + { "centerpereezd.ru", false }, { "centerpoint.ovh", true }, { "centillien.com", false }, { "centio.bg", true }, @@ -6626,10 +6760,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "centrationgame.com", true }, { "centredaccueil.fr", true }, { "centreoeil.ch", true }, - { "centricbeats.com", true }, { "centrobill.com", true }, - { "centrodoinstalador.com.br", true }, { "centrojovencuenca.es", true }, + { "centromasterin.com", true }, { "centrosocialferrel.pt", true }, { "centrumhodinek.cz", true }, { "centruvechisv.ro", true }, @@ -6679,6 +6812,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "certnazionale.it", true }, { "certspotter.com", true }, { "certspotter.org", true }, + { "cesantias.co", true }, { "cesboard.com", true }, { "cesdb.com", true }, { "cesipagano.com", true }, @@ -6688,16 +6822,18 @@ static const nsSTSPreload kSTSPreloadList[] = { { "cesobaly.cz", true }, { "cestasedelicias.com.br", true }, { "cestunmetier.ch", true }, + { "ceta.one", true }, { "cetamol.com", true }, { "ceu.edu", false }, { "cevo.com.hr", true }, + { "ceyizlikelisleri.com", true }, { "cf-ide.de", true }, - { "cf-tm.net", true }, { "cfa.gov", true }, { "cfan.space", true }, { "cfda.gov", true }, { "cfdcre5.org", true }, { "cfh.com", true }, + { "cflsystems.com", true }, { "cfno.org", true }, { "cfo.gov", true }, { "cfpa-formation.fr", true }, @@ -6707,6 +6843,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "cfurl.cf", true }, { "cfxdesign.com", true }, { "cg-systems.hu", true }, + { "cg.al", true }, { "cg.search.yahoo.com", false }, { "cgal.org", true }, { "cgan.de", true }, @@ -6717,13 +6854,14 @@ static const nsSTSPreload kSTSPreloadList[] = { { "cgnparts.com", true }, { "cgpe.com", true }, { "cgsmart.com", true }, + { "cgurtner.ch", true }, { "ch-laborit.fr", true }, { "ch-sc.de", true }, { "ch.search.yahoo.com", false }, { "ch47f.com", true }, - { "chabaojia.com", true }, { "chabaudparfum.com", true }, { "chabert-provence.fr", true }, + { "chabik.com", true }, { "chad.ch", true }, { "chadstoneapartments.com.au", true }, { "chadtaljaardt.com", true }, @@ -6732,12 +6870,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "chaip.org", true }, { "chairinstitute.com", true }, { "chaisystems.net", true }, - { "chaldeen.pro", true }, { "chaletdemontagne.org", true }, { "chaletmanager.com", true }, { "chaletpierrot.ch", true }, { "chaleur.com", true }, - { "chalker.io", true }, { "challengeblog.org", true }, { "challstrom.com", true }, { "chamathellawala.com", true }, @@ -6754,14 +6890,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "champserver.net", false }, { "chanddriving.co.uk", true }, { "chandr1000.ga", true }, + { "chang-feng.info", true }, { "changecopyright.ru", true }, { "changes.jp", true }, { "changesfor.life", true }, { "changethislater.com", true }, { "channeladam.com", true }, - { "channellife.co.nz", true }, - { "channellife.com.au", true }, - { "chanoyu-gakkai.jp", true }, { "chantalguggenbuhl.ch", true }, { "chanz.com", true }, { "chaos-games.org", true }, @@ -6810,6 +6944,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "charmander.me", true }, { "charmanterelefant.at", true }, { "charmingsaul.com", true }, + { "charmyadesara.com", true }, { "charr.xyz", true }, { "chars.ga", true }, { "charta-digitale-vernetzung.de", true }, @@ -6858,12 +6993,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "chazalet.fr", true }, { "chazay.net", false }, { "chazgie.se", true }, + { "chbk.co", true }, { "chbs.me", true }, { "chch.it", true }, { "chcoc.gov", true }, { "chcsct.com", true }, { "chd-expert.fr", true }, - { "chdgaming.xyz", true }, { "cheapalarmparts.com.au", true }, { "cheapcaribbean.com", true }, { "cheapessay.net", true }, @@ -6881,12 +7016,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "cheapgoa.com", true }, { "cheapiesystems.com", true }, { "cheapticket.in", true }, - { "cheapwritinghelp.com", true }, { "check.torproject.org", false }, { "checkecert.nl", true }, { "checkmateshoes.com", false }, { "checkmyessay.com", true }, { "checkmyessays.com", true }, + { "checkmyip.com", true }, { "checkmypsoriasis.com", true }, { "checkout.google.com", true }, { "checkpoint-tshirt.com", true }, @@ -6903,13 +7038,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "cheekymonkeysinflatables.co.uk", true }, { "cheela.org", true }, { "cheeseemergency.co.uk", true }, - { "cheesefusion.com", true }, { "cheesehosting.net", true }, { "cheetahwerx.com", true }, { "cheez.systems", true }, { "cheezflix.uk", true }, { "chefwear.com", true }, - { "chehalemgroup.com", true }, { "cheladmin.ru", true }, { "chelema.xyz", true }, { "cheltenhambounce.co.uk", true }, @@ -6920,6 +7053,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "chenapartment.com", true }, { "chenkun.pro", true }, { "chenky.com", true }, + { "chenna.me", true }, { "chennien.com", true }, { "chenqinghua.com", true }, { "chentianyi.cn", true }, @@ -6946,7 +7080,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "chhory.com", true }, { "chhy.at", true }, { "chiaraiuola.com", false }, - { "chiaramail.com", true }, { "chiaseeds24.com", true }, { "chiboard.co", true }, { "chibr.eu", true }, @@ -6957,7 +7090,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "chicolawfirm.com", true }, { "chiemgauflirt.de", true }, { "chif16.at", true }, - { "chikan-beacon.net", true }, { "chikazawa.info", true }, { "childcare.gov", true }, { "childcounseling.org", true }, @@ -6966,7 +7098,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "childrenandmedia.org.au", true }, { "childrenfirstalways.org", true }, { "childreninadversity.gov", true }, - { "childrens-room.com", true }, { "childrensentertainmentleicester.co.uk", true }, { "childrenspartiesrus.com", true }, { "childstats.gov", true }, @@ -6974,6 +7105,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "childwelfare.gov", true }, { "chilihosting.eu", true }, { "chilimath.com", true }, + { "chilimathwords.com", true }, { "chilio.net", true }, { "chillebever.nl", true }, { "chima.net", true }, @@ -7012,7 +7144,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "chl.la", true }, { "chloescastles.co.uk", true }, { "chlth.com", true }, - { "chmielarz.it", true }, { "chmsoft.com.ua", true }, { "chmsoft.ru", true }, { "chmurakotori.ml", true }, @@ -7027,7 +7158,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "chokladfantasi.net", true }, { "chollima.pro", true }, { "chon.io", true }, - { "chonghe.org", true }, { "chook.as", true }, { "choootto.club", true }, { "choosemypc.net", true }, @@ -7038,12 +7168,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "chorpinkpoemps.de", true }, { "chosenplaintext.org", true }, { "chourishi-shigoto.com", true }, + { "chovancova.sk", true }, { "chowii.com", true }, { "choyri.com", true }, + { "chr0me.sh", true }, { "chris-edwards.net", true }, { "chrisaitch.com", true }, - { "chrisb.me", true }, - { "chrisb.xyz", true }, { "chrisbryant.me.uk", true }, { "chrisburnell.com", true }, { "chriscarey.com", true }, @@ -7100,9 +7230,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "christophkreileder.com", true }, { "christophsackl.de", true }, { "christthekingparish.net", true }, + { "christtheredeemer.us", true }, { "chriswald.com", true }, { "chriswarrick.com", true }, - { "chriswbarry.com", true }, { "chriswells.io", true }, { "chromcraft-revington.com", true }, { "chrome-devtools-frontend.appspot.com", true }, @@ -7135,7 +7265,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "chytraauta.cz", true }, { "chziyue.com", true }, { "ci-fo.org", true }, - { "ci-suite.com", true }, { "ci5.me", true }, { "ciancode.com", true }, { "cianmawhinney.me", true }, @@ -7145,9 +7274,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "cidersus.com.ec", true }, { "cie-theatre-montfaucon.ch", true }, { "cielbleu.org", true }, + { "cielly.com", true }, { "cifop-numerique.fr", true }, { "cig-dem.com", true }, { "cigar-cartel.com", true }, + { "ciiex.co", true }, { "cilloc.be", true }, { "cima-idf.fr", true }, { "cimballa.com", true }, @@ -7159,7 +7290,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "cine-music.de", true }, { "cine.to", true }, { "cinefilzonen.se", true }, - { "cinelite.club", true }, { "cinemarxism.com", true }, { "cinemasetfree.com", true }, { "cinemysticism.com", true }, @@ -7180,7 +7310,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "cip.md", true }, { "cipartyhire.co.uk", true }, { "cipher.team", true }, - { "cipherboy.com", true }, { "ciphersuite.info", true }, { "ciphrex.com", true }, { "cipri.com", true }, @@ -7238,6 +7367,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ciurcasdan.eu", true }, { "civilg20.org", true }, { "civillines.nl", true }, + { "civiltoday.com", true }, { "cj-espace-vert.fr", true }, { "cj-jackson.com", true }, { "cjdby.net", true }, @@ -7305,15 +7435,19 @@ static const nsSTSPreload kSTSPreloadList[] = { { "cleanbeautymarket.com.au", true }, { "cleanbrowsing.org", true }, { "cleancode.club", true }, + { "cleandetroit.org", true }, + { "cleandogsnederland.nl", true }, { "cleanhouse2000.us", true }, { "cleaningservicejulai.com", true }, { "cleansewellness.com", true }, { "clearance365.co.uk", true }, { "clearblueday.co.uk", true }, + { "clearbookscdn.uk", true }, { "clearbreezesecuritydoors.com.au", true }, { "clearip.com", true }, { "clearkonjac.com", true }, { "clearsettle-admin.com", true }, + { "clearvoice.com", true }, { "clemenscompanies.com", true }, { "clement-beaufils.fr", true }, { "clementfevrier.fr", true }, @@ -7329,7 +7463,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "click-licht.de", true }, { "clickclock.cc", true }, { "clickenergy.com.au", true }, - { "clickforclever.com", true }, { "clickphish.com", true }, { "clicksaveandprint.com", true }, { "clien.net", true }, @@ -7347,8 +7480,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "clinicadelogopedia.net", true }, { "clinicalrehabilitation.info", true }, { "clinicaltrials.gov", true }, + { "clinicasmedicas.com.br", true }, { "clinicminds.com", true }, - { "cliniquecomplementaire.com", true }, { "cliniquevethuy.be", true }, { "clintonlibrary.gov", true }, { "clintonplasticsurgery.com", true }, @@ -7378,12 +7511,15 @@ static const nsSTSPreload kSTSPreloadList[] = { { "cloud.google.com", true }, { "cloud.gov", true }, { "cloud42.ch", false }, + { "cloud58.org", true }, { "cloud9bouncycastlehire.com", true }, { "cloudapps.digital", true }, + { "cloudbolin.es", true }, { "cloudbreaker.de", true }, { "cloudbrothers.info", true }, { "cloudcactuar.com", false }, { "cloudcaprice.net", true }, + { "cloudcite.net", true }, { "cloudcloudcloud.cloud", true }, { "cloudconsulting.net.za", true }, { "cloudconsulting.org.za", true }, @@ -7395,7 +7531,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "cloudflareonazure.com", true }, { "cloudia.org", true }, { "cloudily.com", true }, - { "cloudimproved.com", true }, { "cloudkeep.nl", true }, { "cloudkit.pro", false }, { "cloudlessdreams.com", true }, @@ -7406,6 +7541,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "cloudoptimus.com", true }, { "cloudpengu.in", true }, { "cloudpipes.com", true }, + { "cloudse.co.uk", true }, { "cloudsecurityalliance.org", true }, { "cloudservice.io", true }, { "cloudservices.nz", true }, @@ -7434,6 +7570,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "club-is.ru", true }, { "club-premiere.com", true }, { "club-reduc.com", true }, + { "club-slow.jp", true }, + { "club-yy.com", true }, { "club103.ch", true }, { "clubcorsavenezuela.com", true }, { "clubdelzapato.com", true }, @@ -7455,6 +7593,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "clustermaze.net", true }, { "clweb.ch", true }, { "cm.center", true }, + { "cm3.pw", true }, { "cmacacias.ch", true }, { "cmadeangelis.it", true }, { "cmahy.be", true }, @@ -7503,13 +7642,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "coaching-impulse.ch", true }, { "coalitionministries.org", true }, { "coalpointcottage.com", true }, - { "coam.co", true }, { "coastline.net.au", true }, { "coathangastrangla.com", true }, { "coathangastrangler.com", true }, + { "coatl-industries.com", true }, { "cobalt.io", true }, { "cobaltgp.com", true }, - { "cobcode.com", true }, { "cobracastles.co.uk", true }, { "cocaine-import.agency", true }, { "cocaine.ninja", true }, @@ -7560,7 +7698,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "codepult.com", true }, { "codera.co.uk", true }, { "codercross.com", true }, - { "codercy.com", true }, { "codereview.appspot.com", false }, { "codereview.chromium.org", false }, { "coderme.com", true }, @@ -7612,6 +7749,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "coi-verify.com", true }, { "coiffeurschnittstelle.ch", true }, { "coigach-assynt.org", true }, + { "coimmvest.com", true }, { "coin-quest.net", true }, { "coin.dance", true }, { "coinapult.com", true }, @@ -7623,7 +7761,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "coincoin.eu.org", true }, { "coincolors.co", true }, { "coindatabase.net", true }, - { "coinessa.com", true }, { "coinf.it", true }, { "coinflux.com", true }, { "coingate.com", true }, @@ -7642,7 +7779,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "colaborativa.tv", true }, { "colapsys.net", true }, { "colasjourdain.fr", true }, - { "coldaddy.com", true }, { "coldawn.com", false }, { "coldfff.com", false }, { "coldhak.ca", true }, @@ -7702,9 +7838,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "colourfulcastles.co.uk", true }, { "colpacpackaging.com", true }, { "colson-occasions.be", true }, + { "coltonrb.com", true }, { "columbuswines.com", true }, { "colyakootees.com", true }, { "com-in.de", true }, + { "com-news.io", true }, { "comalia.com", true }, { "comandofilmes.club", true }, { "comarkinstruments.net", true }, @@ -7723,7 +7861,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "comestoarra.com", true }, { "cometbot.cf", true }, { "cometcache.com", true }, - { "cometonovascotia.ca", true }, { "comevius.com", true }, { "comevius.org", true }, { "comevius.xyz", true }, @@ -7766,10 +7903,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "comopuededejardefumar.net", true }, { "comoquitarlacaspa24.com", true }, { "comoquitarlasestriasrapidamente.com", true }, - { "comorecuperaratumujerpdf.com", true }, { "comosatisfaceraunhombreenlacamaydejarloloco.com", true }, { "comosefazisto.com.br", true }, { "comp2go.com.au", true }, + { "compactchess.cc", true }, { "compagnia-buffo.de", true }, { "compagniemartin.com", true }, { "comparatif-moto.fr", true }, @@ -7794,6 +7931,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "complexart.ro", true }, { "complexsystems.fail", true }, { "compliance-management.ch", true }, + { "compliance-systeme.de", true }, { "compliancedictionary.com", true }, { "compliancerisksoftware.co.uk", true }, { "compostatebien.com.ar", true }, @@ -7803,6 +7941,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "compree.com", true }, { "compros.me", true }, { "compservice.in.ua", true }, + { "comptu.com", true }, { "compubench.com", true }, { "compucastell.ch", true }, { "compucorner.mx", true }, @@ -7814,6 +7953,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "computerassistance.co.uk", true }, { "computerbas.nl", true }, { "computerbase.de", true }, + { "computercraft.net", true }, { "computerhilfe-feucht.de", true }, { "computernetwerkwestland.nl", true }, { "computerslotopschool.nl", true }, @@ -7830,6 +7970,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "concertsenboite.fr", true }, { "concertsto.com", true }, { "conciliumnotaire.ca", true }, + { "concordsoftwareleasing.com", true }, { "concretelevelingsystems.com", true }, { "concreterepairatlanta.com", true }, { "concursopublico.com.br", true }, @@ -7857,7 +7998,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "confidential.network", true }, { "config.schokokeks.org", false }, { "confiwall.de", true }, - { "conflux.tw", true }, { "conformax.com.br", true }, { "conformist.jp", true }, { "confucio.cl", true }, @@ -7868,7 +8008,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "conju.cat", true }, { "conjugacao.com.br", true }, { "conkret.de", true }, - { "conkret.mobi", true }, { "conmedapps.com", true }, { "conn.cx", true }, { "connect-ed.network", true }, @@ -7886,9 +8025,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "connexas.eu", true }, { "connext.de", true }, { "connictro.de", true }, - { "conniesacademy.com", true }, { "connorhatch.com", true }, - { "connorsmith.co", true }, { "connyduck.at", true }, { "conociendosalama.com", true }, { "conocimientosdigitales.com", true }, @@ -7897,10 +8034,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "conrad-kostecki.de", true }, { "conradkostecki.de", true }, { "conrail.blue", true }, + { "consagracionamariasantisima.org", true }, { "consciousbrand.co", true }, { "consciouschoices.net", true }, { "consec-systems.de", true }, - { "conseil-gli.fr", true }, { "consejosdenutricion.com", true }, { "consensoprivacy.it", true }, { "conservados.com.br", true }, @@ -7925,6 +8062,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "consultation.biz.tr", true }, { "consultimator.com", true }, { "consultimedia.de", true }, + { "consultoriosodontologicos.com.br", true }, { "consultpetkov.com", true }, { "consulvation.com", true }, { "consumeractionlawgroup.com", true }, @@ -7933,6 +8071,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "consuwijzer.nl", true }, { "contactsingapore.sg", true }, { "contaquanto.com.br", true }, + { "contemplativeeducation.org", true }, { "content-api-dev.azurewebsites.net", false }, { "content-design.de", true }, { "contentcoms.co.uk", true }, @@ -7977,7 +8116,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "cookiecrook.com", true }, { "cookielab.io", true }, { "cookiesoft.de", true }, - { "cookingbazart.com", true }, { "cookingcrusade.com", true }, { "cookinglife.nl", false }, { "cookingreporter.com", true }, @@ -7993,7 +8131,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "coolbitx.com", true }, { "cooldan.com", true }, { "coole-fete.de", true }, - { "coolerssr.space", true }, { "coolgifs.de", true }, { "coolprylar.se", true }, { "coolrc.me", true }, @@ -8010,6 +8147,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "copperheados.com", true }, { "coppermein.co.za", true }, { "copplaw.com", true }, + { "copta-imagefilme-und-drohnenvideos.de", true }, { "coptkm.cz", true }, { "copycaught.co", true }, { "copycaught.net", true }, @@ -8018,7 +8156,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "copycrafter.net", true }, { "copypoison.com", true }, { "copyright-watch.org", true }, - { "copytrack.com", true }, { "coquibus.net", true }, { "corbi.net.au", true }, { "cordep.biz", true }, @@ -8129,12 +8266,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "countrybrewer.com.au", true }, { "countryfrog.uk", true }, { "countryhouseresort.com", true }, - { "countryoutlaws.ca", true }, { "countybankdel.com", true }, { "countyjailinmatesearch.com", true }, { "coupe-bordure.com", true }, { "couponcodesme.com", true }, - { "cour4g3.me", true }, { "couragefound.org", true }, { "coursables.com", true }, { "coursera.org", true }, @@ -8144,6 +8279,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "coussinsky.net", true }, { "couvreur-hinault.fr", true }, { "covbounce.co.uk", true }, + { "covenantmatrix.com", true }, { "covenantoftheriver.org", true }, { "covermytrip.com.au", true }, { "covershousing.nl", true }, @@ -8172,7 +8308,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "cpqcol.gov.co", true }, { "cprheartcenter.com", true }, { "cprnearme.com", true }, - { "cptoon.com", true }, { "cpu.biz.tr", true }, { "cpvmatch.eu", true }, { "cpy.pt", true }, @@ -8205,6 +8340,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "cranforddental.com", true }, { "crapouill.es", true }, { "crawcial.de", true }, + { "crawford.cloud", true }, { "crawfordcountytcc.org", true }, { "crawl.report", true }, { "crawler.ninja", true }, @@ -8244,7 +8380,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "creativecommons.org", true }, { "creativeconceptsvernon.com", true }, { "creativedigital.co.nz", true }, - { "creativefolks.co.uk", true }, { "creativefreedom.ca", true }, { "creativeglassgifts.com.au", true }, { "creativeink.de", true }, @@ -8287,6 +8422,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "cretica.no", true }, { "creusalp.ch", true }, { "crew505.org", true }, + { "crgalvin.com", true }, { "crgm.net", true }, { "criadorespet.com.br", true }, { "cribcore.com", true }, @@ -8298,6 +8434,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "criminal-attorney.ru", true }, { "criminal.enterprises", true }, { "crimson.no", true }, + { "crinesdanzantes.be", true }, { "crip-usk.ba", true }, { "crisisactual.com", true }, { "crisisnextdoor.gov", true }, @@ -8309,7 +8446,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "cristarta.com", true }, { "cristau.org", true }, { "cristiandeluxe.com", false }, - { "critcola.com", true }, { "critical.today", false }, { "criticalsurveys.co.uk", true }, { "crizin.io", true }, @@ -8342,12 +8478,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "crossorig.in", true }, { "crossoverit.com", true }, { "crosssellguide.com", true }, + { "crow.tw", true }, { "crowdbox.net", true }, { "crowdcloud.be", true }, { "crowdliminal.com", true }, { "crowdsim3d.com", true }, { "crowdsupply.com", true }, - { "crowdwis.com", true }, { "crowncastles.co.uk", true }, { "crownchessclub.com", true }, { "crownmarqueehire.co.uk", true }, @@ -8364,6 +8500,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "crunchy.rocks", true }, { "crustytoothpaste.net", true }, { "crute.me", true }, + { "cruzadobalcazarabogados.com", true }, { "crvv.me", true }, { "cry.nu", false }, { "cryoit.com", true }, @@ -8374,17 +8511,21 @@ static const nsSTSPreload kSTSPreloadList[] = { { "crypted.chat", true }, { "crypteianetworks.com", true }, { "crypticshell.co.uk", true }, - { "crypto-armory.com", true }, { "crypto-navi.org", true }, { "crypto.cat", false }, { "crypto.graphics", true }, { "crypto.is", false }, + { "crypto.tube", true }, { "cryptobin.co", true }, { "cryptocon.org", true }, + { "cryptodyno.ninja", true }, + { "cryptoegg.ca", true }, { "cryptofan.org", true }, + { "cryptofrog.co", true }, { "cryptography.ch", true }, { "cryptography.io", true }, { "cryptoguidemap.com", true }, + { "cryptojourney.com", true }, { "cryptolinc.com", true }, { "cryptology.ch", true }, { "cryptolosophy.io", true }, @@ -8417,6 +8558,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "csca.me", true }, { "cscdn.net", true }, { "csd-sevnica.si", true }, + { "csfcloud.com", true }, { "csfd.cz", true }, { "csfloors.co.uk", true }, { "csfm.com", true }, @@ -8427,6 +8569,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "cshopify.com", true }, { "csi.lk", true }, { "csinterstargeneve.ch", true }, + { "cskdoc.com", true }, { "cskentertainment.co.uk", true }, { "csmainframe.com", true }, { "csokolade.hu", true }, @@ -8452,12 +8595,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "cthulhuden.com", true }, { "ctj.im", true }, { "ctl.email", true }, - { "ctliu.com", true }, { "ctnguyen.de", true }, { "ctnguyen.net", true }, { "ctns.de", true }, { "ctoforhire.com.au", true }, { "ctomp.io", true }, + { "ctoresms.com", true }, { "ctpe.net", true }, { "ctrld.me", true }, { "cu247secure.ie", true }, @@ -8468,6 +8611,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "cubecart-hosting.co.uk", true }, { "cubecraft.net", true }, { "cubekrowd.net", true }, + { "cubetech.co.jp", true }, { "cubia.de", true }, { "cubia3.com", true }, { "cubia4.com", true }, @@ -8491,12 +8635,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "cultofd50.org", true }, { "cultofperf.org.uk", true }, { "culturedcode.com", true }, - { "cultureelbeleggen.nl", true }, { "culturerain.com", true }, { "cultureroll.com", true }, { "culturesouthwest.org.uk", true }, + { "cumberlandrivertales.com", true }, { "cumplegenial.com", true }, - { "cuntflaps.me", true }, { "cuoc.org.uk", true }, { "cup.al", true }, { "cupcakesandcrinoline.com", true }, @@ -8522,8 +8665,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "currentobserver.com", true }, { "currynissanmaparts.com", true }, { "cursos.com", true }, + { "cursosforex.com", true }, { "cursosgratuitos.com.br", true }, { "cursosingles.com", true }, + { "cursossena.co", true }, { "cursuri-de-actorie.ro", true }, { "curtacircuitos.com.br", false }, { "curtis-smith.me.uk", true }, @@ -8604,9 +8749,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "cybercocoon.com", true }, { "cybercrew.cc", true }, { "cybercrime-forschung.de", true }, + { "cybercrime.gov", true }, { "cybercymru.co.uk", true }, { "cyberduck.io", true }, - { "cyberdyne-industries.net", true }, { "cyberexplained.info", true }, { "cyberfrancais.ro", true }, { "cybergrx.com", true }, @@ -8623,7 +8768,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "cyberregister.nl", true }, { "cyberregister.org", true }, { "cybersafesolutions.com", true }, - { "cybersantri.com", true }, + { "cyberscan.io", true }, { "cybersecurity.nz", true }, { "cybersecurity.run", true }, { "cybersecuritychallenge.be", true }, @@ -8641,6 +8786,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "cyberwars.dk", true }, { "cyberwire.nl", true }, { "cyberxpert.nl", true }, + { "cybit.io", true }, { "cybozu.cn", true }, { "cybozu.com", true }, { "cybozulive-dev.com", true }, @@ -8660,6 +8806,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "cykelbanor.se", true }, { "cylindricity.com", true }, { "cyon.ch", true }, + { "cypad.cn", true }, + { "cype.dedyn.io", true }, { "cyph.audio", true }, { "cyph.com", true }, { "cyph.healthcare", true }, @@ -8669,13 +8817,14 @@ static const nsSTSPreload kSTSPreloadList[] = { { "cyph.video", true }, { "cyph.ws", true }, { "cypherpunk.at", true }, - { "cypherpunk.com", true }, + { "cypherpunk.observer", true }, { "cypresslegacy.com", true }, { "cyprus-company-service.com", true }, { "cyrating.com", true }, { "cysec.biz", true }, { "cyson.tech", true }, { "cytech.com.tr", true }, + { "cytegic-update-packages.com", true }, { "cyumus.com", true }, { "cyyzaid.cn", true }, { "czakey.net", true }, @@ -8692,9 +8841,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "d-eisenbahn.com", true }, { "d-loop.de", true }, { "d-msg.com", true }, + { "d-parts.de", true }, { "d-parts24.de", true }, { "d-quantum.com", true }, - { "d-toys.com.ua", true }, { "d-training.de", true }, { "d.nf", true }, { "d.nr", true }, @@ -8709,7 +8858,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "d3xt3r01.tk", true }, { "d3xx3r.de", true }, { "d42.no", true }, - { "d4rkdeagle.tk", true }, { "d4x.de", true }, { "d66.nl", true }, { "d8.io", true }, @@ -8717,6 +8865,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "da.hn", true }, { "da42foripad.com", true }, { "daallexx.eu", true }, + { "dabasstacija.lv", true }, { "dabneydriveanimalhospital.com", true }, { "dabuttonfactory.com", true }, { "dachb0den.net", true }, @@ -8779,6 +8928,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "dalmatiersheusden.be", true }, { "damaged.org", true }, { "damasexpress.com", true }, + { "damedrogy.cz", true }, { "damghaem.ir", true }, { "damicris.ro", true }, { "damienoreilly.org", true }, @@ -8792,7 +8942,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "dampedia.com", true }, { "dan-informacijske-varnosti.si", true }, { "dan.me.uk", true }, - { "dan.org.nz", true }, { "danaketh.com", true }, { "danamica.dk", true }, { "danandrum.com", true }, @@ -8801,8 +8950,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "danchen.org", true }, { "dancingcubs.co.uk", true }, { "dancingshiva.at", true }, + { "dandenongroadapartments.com.au", true }, { "daneandthepain.com", true }, { "danhalliday.com", true }, + { "danholloway.online", true }, { "daniel-baumann.ch", true }, { "daniel-cholewa.de", true }, { "daniel-du.com", true }, @@ -8815,28 +8966,26 @@ static const nsSTSPreload kSTSPreloadList[] = { { "danielehniss.de", true }, { "danielepestilli.com", true }, { "danielgorr.de", true }, - { "danielheal.net", true }, { "danielhinterlechner.eu", true }, { "danielhochleitner.de", true }, { "danieljamesscott.org", true }, { "danieljireh.com", true }, { "danielkoster.nl", true }, { "daniellockyer.com", true }, - { "danielmarquard.com", true }, { "danielmartin.de", true }, { "danielmoch.com", true }, { "danielmorell.com", true }, - { "danielmostertman.com", false }, - { "danielmostertman.nl", false }, + { "danielmostertman.com", true }, + { "danielmostertman.nl", true }, { "danielpeukert.cz", true }, { "danielran.com", true }, { "danielrozenberg.com", true }, { "danielsblog.org", true }, { "danielschreurs.com", true }, + { "danielsfirm.com", true }, { "danielstach.cz", true }, + { "danielsteiner.net", true }, { "danielstiner.me", true }, - { "danielt.co.uk", false }, - { "danielthompson.info", true }, { "danieltollot.de", true }, { "danielvoogsgerd.nl", true }, { "danielwildhaber.ch", true }, @@ -8860,10 +9009,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "dannystevens.co.uk", true }, { "danonsecurity.com", true }, { "danotage.tv", true }, - { "danova.de", true }, { "danoz.net", true }, { "danpiel.net", true }, - { "dansage.co", true }, + { "dansa.com.co", true }, { "danscomp.com", true }, { "dansdiscounttools.com", true }, { "danselibre.net", true }, @@ -8896,14 +9044,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "daren.com.br", true }, { "dareyou.be", true }, { "dariaburger.de", true }, - { "darinjohnson.ca", true }, { "darinkotter.com", true }, { "darioackermann.ch", true }, + { "darioclip.com", true }, { "darioturchetti.me", true }, { "darisni.me", true }, { "dark-infection.de", true }, { "dark-vision.cz", true }, - { "dark.ninja", true }, { "darkag.ovh", true }, { "darkcores.net", true }, { "darkengine.io", true }, @@ -8915,6 +9062,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "darknessflickers.com", true }, { "darknetlive.com", true }, { "darknight.blog", true }, + { "darkrisks.com", true }, { "darkroomsaredead.com", true }, { "darkserver.fedoraproject.org", true }, { "darkserver.stg.fedoraproject.org", true }, @@ -8923,7 +9071,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "darkspacelab.com", true }, { "darktime.ru", true }, { "darkwater.info", true }, - { "darkwebkittens.xyz", true }, { "darkx.me", true }, { "darom.jp", true }, { "darookee.net", false }, @@ -8947,6 +9094,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "dashlane.com", true }, { "dashnearby.com", true }, { "dashwebconsulting.com", true }, + { "dasignsource.com", true }, { "dasinternetluegt.at", true }, { "dasteichwerk.at", true }, { "dasug.de", true }, @@ -8954,15 +9102,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "data.gov", true }, { "data.govt.nz", true }, { "data.world", true }, - { "databeam.de", true }, { "databionix.com", true }, { "databutlr.com", true }, { "databutlr.net", true }, { "datacalle.com", true }, { "datacandy.com", true }, - { "datacenternews.asia", true }, - { "datacenternews.co.nz", true }, - { "datacentrenews.eu", true }, { "datacool.tk", true }, { "datadit.hu", true }, { "datadyne.technology", true }, @@ -9058,9 +9202,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "davidschlachter.com", true }, { "davidsimner.me.uk", true }, { "davidsopas.com", true }, + { "davidtiffany.com", true }, { "davidundetiwan.com", true }, { "davie3.com", true }, - { "davimun.org", true }, { "davisroi.com", true }, { "davo-usedcars.be", true }, { "davy-server.com", true }, @@ -9088,6 +9232,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "dbdc.us", true }, { "dbentertainment.co.uk", true }, { "dbgamestudio.com", true }, + { "dbjc.tk", true }, { "dblcastles.co.uk", true }, { "dbldub.net", true }, { "dbmiller.org", true }, @@ -9135,9 +9280,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "de-mail.info", true }, { "de-medici.nl", true }, { "de-rwa.de", true }, + { "de-spil.be", true }, { "de.search.yahoo.com", false }, { "deadbeef.ninja", true }, { "deadc0de.re", true }, + { "deadinsi.de", true }, { "deaf.dating", true }, { "deaf.eu.org", true }, { "deai-life.biz", true }, @@ -9159,6 +9306,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "deamuseum.org", true }, { "deanbank.com", true }, { "deanisa.ninja", true }, + { "deanjerkovich.com", true }, { "deanmorgan.org", true }, { "deano-s.co.uk", true }, { "deanosplace.net", true }, @@ -9179,6 +9327,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "debbyefurd.com", true }, { "debie-usedcars.be", true }, { "debigare.com", true }, + { "debkleinteam.com", true }, { "debron-ot.nl", true }, { "debrusoft.ch", true }, { "debt.com", true }, @@ -9192,6 +9341,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "decis.fr", true }, { "decisivetactics.com", true }, { "deckbuilderamerica.com", true }, + { "decoating.pl", true }, { "decock-usedcars.be", true }, { "decodeanddestroy.com", true }, { "decoder.link", true }, @@ -9218,9 +9368,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "deechtebakkers.nl", true }, { "deegeeinflatables.co.uk", true }, { "deelmijnreis.nl", true }, - { "deep.social", true }, { "deepaero.com", true }, - { "deeparamaraj.com", true }, { "deepbluecrafting.co.uk", true }, { "deepcode.io", true }, { "deeperxh.com", true }, @@ -9232,8 +9380,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "deepwealth.institute", true }, { "deepz.pt", true }, { "deepzz.com", true }, - { "deer.team", true }, { "deezeno.com", true }, + { "def-pos.ru", true }, { "defcon.org", true }, { "defcongroups.org", true }, { "defeestboek.nl", true }, @@ -9251,6 +9399,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "defrax.com", true }, { "defrax.de", true }, { "deftek.com", true }, + { "deftig-und-fein.de", true }, { "deftnerd.com", true }, { "defuse.ca", true }, { "defxing.net", true }, @@ -9314,15 +9463,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "deltasigmachi.org", true }, { "deltasmart.ch", true }, { "deltava.org", true }, - { "demarle.ch", true }, { "dementiapraecox.de", true }, { "demeyere-usedcars.be", true }, { "demfloro.ru", true }, { "demijn.nl", true }, { "demilletech.net", true }, { "demmer.one", true }, - { "demo.swedbank.se", true }, - { "demo9.ovh", true }, { "democracychronicles.com", true }, { "democracyineurope.eu", true }, { "democraziaineuropa.eu", true }, @@ -9364,11 +9510,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "dentistglasgow.com", true }, { "dentrassi.de", true }, { "dentystabirmingham.co.uk", true }, + { "denwauranailab.com", true }, { "deontology.com", true }, { "depaddestoeltjes.be", true }, { "deparis.me", true }, { "depechemode-live.com", true }, - { "depedshs.com", true }, { "depedtayo.com", true }, { "depicus.com", true }, { "depone.net", true }, @@ -9425,6 +9571,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "design-tooning.de", true }, { "designdevs.eu", true }, { "designed-cybersecurity.com", true }, + { "designedbygeniuses.com", true }, { "designedcybersecurity.com", true }, { "designer-drug.com", true }, { "designera.se", true }, @@ -9453,11 +9600,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "destinattorneyjohngreene.com", true }, { "destinopiriapolis.com", true }, { "desu.ne.jp", true }, - { "desveja.com.br", true }, + { "desuperheroes.co", true }, { "det-te.ch", true }, { "detalika.ru", true }, { "detalyedesigngroup.com", true }, { "detectify.com", false }, + { "detectivedesk.com.au", true }, { "detekenmuze.nl", true }, { "dethemium.com", true }, { "detodojuegos.com", true }, @@ -9471,6 +9619,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "detskysad.com", true }, { "detuinmuze.nl", true }, { "detype.nl", true }, + { "deuchnord.fr", true }, { "deude.de", true }, { "deukie.nl", true }, { "deurenfabriek.nl", true }, @@ -9496,8 +9645,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "devcu.net", true }, { "devdoodle.net", true }, { "devel.cz", true }, - { "develerik.com", true }, - { "develop.cool", true }, + { "develerik.com", false }, { "developer.android.com", true }, { "developer.mydigipass.com", false }, { "developerdan.com", true }, @@ -9506,6 +9654,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "developfx.com", true }, { "developmentaid.org", true }, { "developmentsites.melbourne", true }, + { "develops.co.il", true }, { "develux.com", true }, { "develux.net", true }, { "devenney.io", true }, @@ -9514,6 +9663,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "devillers-occasions.be", true }, { "devilshakerz.com", true }, { "deviltracks.net", true }, + { "deviltraxxx.de", true }, { "devinfo.net", false }, { "devirc.net", true }, { "devisnow.fr", true }, @@ -9524,12 +9674,14 @@ static const nsSTSPreload kSTSPreloadList[] = { { "devlamvzw.org", false }, { "devlatron.net", true }, { "devlogr.com", true }, + { "devnull.zone", true }, { "devolution.ws", true }, { "devonsawatzky.ca", true }, { "devopers.com.br", true }, { "devops-survey.com", true }, { "devpgsv.com", true }, { "devpsy.info", true }, + { "devragu.com", true }, { "devrandom.net", true }, { "devsjournal.com", true }, { "devsrvr.ru", true }, @@ -9539,6 +9691,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "dewaard.de", true }, { "dewalch.net", true }, { "dewapress.com", true }, + { "dewebwerf.nl", true }, { "dewinter.com", true }, { "dex.top", true }, { "dexalo.de", true }, @@ -9553,6 +9706,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "dfctaiwan.org", true }, { "dfekt.no", true }, { "dfektlan.no", true }, + { "dfl.mn", true }, { "dflcares.com", true }, { "dfmn.berlin", true }, { "dfranke.com", true }, @@ -9584,6 +9738,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "diadorafitness.it", true }, { "diagnocentro.cl", true }, { "diagnostix.org", true }, + { "diagrammingoutloud.co.uk", true }, { "dialapicnic.co.za", true }, { "dialectic-og.com", true }, { "diamante.ro", true }, @@ -9599,6 +9754,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "diario-egipto.com", true }, { "diasdasemana.com", true }, { "diasp.org", true }, + { "diatrofi-ygeia.gr", true }, { "dibiphp.com", true }, { "diccionarioabierto.com", true }, { "diccionariodedudas.com", true }, @@ -9611,6 +9767,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "dicionariodesimbolos.com.br", true }, { "dicionarioetimologico.com.br", true }, { "dickieslife.com", true }, + { "dickpics.ru", true }, { "dicoding.com", true }, { "dictionaryofnumbers.com", true }, { "dictzone.com", true }, @@ -9678,10 +9835,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "digilicious.com", true }, { "digimagical.com", true }, { "digimedia.cd", false }, + { "digioccumss.ddns.net", true }, + { "digipitch.com", true }, { "digired.ro", true }, { "digital-compounds.com", true }, { "digital-eastside.de", true }, { "digital-liberal.ch", true }, + { "digital-muscle.com.au", true }, { "digital.gov", false }, { "digital.govt.nz", true }, { "digital1st.co.uk", true }, @@ -9703,9 +9863,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "digitaldem.it", true }, { "digitalehandtekeningen.nl", true }, { "digitaleoverheid.nl", true }, + { "digitaletanker.com", true }, { "digitalezukunft-hagen.de", true }, { "digitalezukunft.nrw", true }, { "digitalfishfun.com", true }, + { "digitalfury.co.uk", true }, { "digitalfuturenow.com", true }, { "digitalgov.gov", false }, { "digitalhabit.at", true }, @@ -9755,7 +9917,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "dineachook.com.au", true }, { "dinepont.fr", true }, { "dingcc.me", true }, - { "dinge.xyz", true }, { "dingsbums.shop", true }, { "dinkommunikasjon.no", true }, { "dinmtb.dk", true }, @@ -9765,6 +9926,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "diodeled.com", true }, { "diodo.me", true }, { "dionysos-ios.gr", true }, + { "diozoid.com", true }, { "dipalma.me", true }, { "dipling.de", true }, { "diplona.de", true }, @@ -9785,6 +9947,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "dirips.com", true }, { "dirk-scheele.de", true }, { "dirkdoering.de", true }, + { "dirkjonker.nl", true }, { "dirko.net", true }, { "dirtcraft.ca", true }, { "dirtygeek.ovh", true }, @@ -9849,6 +10012,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "disinisharing.com", true }, { "diskbit.com", true }, { "diskbit.nl", true }, + { "dismail.de", true }, { "dispatchitsolutions.com", true }, { "dispatchitsolutions.io", true }, { "disposable.link", true }, @@ -9882,11 +10046,14 @@ static const nsSTSPreload kSTSPreloadList[] = { { "diversityflags.nz", true }, { "divertiagua.com.br", true }, { "divi-experte.de", true }, + { "divinasaiamodas.com.br", true }, { "divinegames.studio", true }, { "diving.photo", true }, { "divorciosmurcia.com", true }, { "divvymonkey.com", true }, + { "diwei.vip", true }, { "dixi.fi", true }, + { "dixibox.com", true }, { "diybook.at", true }, { "diycc.org", true }, { "diygod.me", true }, @@ -9933,9 +10100,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "dlitz.net", true }, { "dll4free.com", true }, { "dlld.com", true }, + { "dlouwrink.nl", true }, { "dlrsp.org", true }, { "dlscomputers.com.au", true }, + { "dlui.xyz", true }, { "dlunch.net", true }, + { "dlyanxs.com", true }, { "dlz149.me", true }, { "dlzz.net", true }, { "dm.lookout.com", false }, @@ -9945,12 +10115,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "dmailshop.ro", true }, { "dmarc.dk", true }, { "dmatrix.xyz", true }, - { "dmcastles.com", true }, { "dmd.lv", true }, { "dmdd.org.uk", true }, { "dmeevalumate.com", true }, { "dmi.es", true }, { "dmitry.sh", true }, + { "dmmkenya.co.ke", true }, { "dmmultionderhoud.nl", true }, { "dmschilderwerken.nl", true }, { "dmx.xyz", true }, @@ -9960,6 +10130,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "dn42.us", true }, { "dna.li", true }, { "dnacloud.pl", true }, + { "dnakids.co.uk", true }, { "dnc.org.nz", true }, { "dndtools.net", true }, { "dne.lu", true }, @@ -9974,6 +10145,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "dns8.online", true }, { "dnscrawler.com", true }, { "dnscrypt.info", true }, + { "dnscrypt.nl", true }, { "dnscurve.io", true }, { "dnshallinta.fi", true }, { "dnsinfo.ml", true }, @@ -9981,7 +10153,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "dnspod.ml", true }, { "dnstwister.report", true }, { "dnzz123.com", true }, - { "do-it.cz", true }, { "do-prod.com", true }, { "do.gd", true }, { "do.search.yahoo.com", false }, @@ -9991,6 +10162,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "dobraprace.cz", true }, { "dobrev.family", true }, { "dobrisan.ro", true }, + { "dobsnet.net", true }, { "doc.python.org", true }, { "doc.to", true }, { "doc8643.com", true }, @@ -10003,7 +10175,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "dockerbook.com", false }, { "dockerm.com", true }, { "dockerup.net", true }, - { "doclassworks.com", true }, { "docline.gov", true }, { "docloh.de", true }, { "docloudu.info", true }, @@ -10045,7 +10216,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "dogworld.com.br", true }, { "dohanews.co", true }, { "doihavetoputonpants.com", true }, - { "dokan-e.com", false }, { "dokelio-idf.fr", true }, { "dokipy.no", true }, { "dokspot.cf", true }, @@ -10097,6 +10267,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "dominomatrix.com", true }, { "domix.fun", true }, { "dommascate.com.br", true }, + { "domob.eu", true }, { "domodeco.fr", true }, { "domodedovo.travel", true }, { "domprojects.com", true }, @@ -10143,8 +10314,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "donna-bellini-hochzeitsfotograf-muenchen.de", true }, { "donnacha.blog", true }, { "donnachie.net", true }, - { "donner-reuschel.de", true }, { "donnons.org", false }, + { "donnoval.ru", true }, { "donotlink.it", true }, { "donovand.info", true }, { "donpomodoro.com.co", true }, @@ -10153,6 +10324,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "dont.watch", true }, { "dontbubble.me", true }, { "dontcageus.org", true }, + { "dontpayfull.com", true }, { "donttrust.me", true }, { "donutcompany.co.jp", true }, { "donzool.es", true }, @@ -10166,7 +10338,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "doooooops.com", true }, { "doop.im", true }, { "doopdidoop.com", true }, - { "door.cards", true }, { "doordecor.bg", true }, { "doorflow.com", true }, { "dopesoft.de", true }, @@ -10191,6 +10362,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "dormiu.com", true }, { "dormiu.com.br", true }, { "dornhecker.me", true }, + { "dorpshuiskesteren.nl", true }, { "dorquelle.com", true }, { "dorsetentertainments.co.uk", true }, { "dorth.nl", true }, @@ -10213,6 +10385,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "dosyauzantisi.com", true }, { "dot.ro", true }, { "dot42.no", true }, + { "dota2huds.com", true }, + { "dotacni-parazit.cz", true }, { "dotbigbang.com", true }, { "dotbox.org", true }, { "dotcircle.co", true }, @@ -10230,7 +10404,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "dotphoto.com", true }, { "dotplex.com", true }, { "dotplex.de", true }, - { "dotrox.net", true }, { "dotshule.ug", true }, { "dotsiam.co.th", true }, { "dotsiam.com", true }, @@ -10247,6 +10420,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "douzer.de", true }, { "dovenzorgmalawi.nl", true }, { "dovro.de", true }, + { "dowell.media", true }, { "dowellconsulting.com", true }, { "dowhatmakegood.de", true }, { "dowling.nz", true }, @@ -10327,6 +10501,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "dragonsunited.net", true }, { "dragonsunited.org", true }, { "dragonwork.me", true }, + { "drahcro.uk", true }, { "drakeluce.com", true }, { "drakenson.de", true }, { "dramaticpeople.com", true }, @@ -10349,6 +10524,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "drdipilla.com", true }, { "dreamcreator108.com", true }, { "dreamday-with-dreamcar.de", true }, + { "dreamersgiftshopec.com", true }, { "dreamhack.com", true }, { "dreamhostremixer.com", true }, { "dreamithost.com.au", true }, @@ -10359,22 +10535,25 @@ static const nsSTSPreload kSTSPreloadList[] = { { "dreamonkey.com", true }, { "dreamrae.net", true }, { "dreamtechie.com", true }, - { "dreax.win", true }, { "drei01.com", true }, { "drei01.de", true }, { "dreid.org", true }, { "dreiweiden.de", true }, { "dress-cons.com", true }, + { "dressify.co", true }, + { "dressify.in", true }, { "drevanbeale.com", true }, { "drevo-door.cz", true }, { "drew.beer", true }, { "drew.red", true }, + { "drewapianostudio.com", true }, { "dreweryinc.com", true }, { "drewsilcock.co.uk", true }, { "dreyfussplasticsurgery.com", true }, { "drezzy.it", true }, { "drfranciscofonseca.com.br", true }, { "drfrey.ch", true }, + { "drgdrp.com", true }, { "drgn.no", true }, { "drhathazi.hu", true }, { "drheibel.com", true }, @@ -10400,7 +10579,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "drivinghorror.com", true }, { "drivingtestpro.com", true }, { "drivya.com", true }, - { "drixn.com", true }, { "drjacquesmalan.com", true }, { "drjenafernandez.com", true }, { "drjoe.ca", true }, @@ -10414,6 +10592,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "drmcdaniel.com", true }, { "drms.us", true }, { "drmtransit.com", true }, + { "drnow.ru", true }, { "drogueriaelbarco.com", true }, { "droidapp.nl", true }, { "droidgyan.com", true }, @@ -10439,12 +10618,15 @@ static const nsSTSPreload kSTSPreloadList[] = { { "drown.photography", true }, { "drpetervoigt.de", true }, { "drpico.com.au", true }, + { "drrodina.com", true }, { "drrr.chat", true }, { "drrr.wiki", true }, { "drsajjadian.com", true }, { "drschruefer.de", true }, { "drsturgeonfreitas.com", true }, + { "drtimmarch.com", true }, { "drubn.de", false }, + { "druckerei-huesgen.de", true }, { "drugs.com", true }, { "drumbe.at", true }, { "drummondframing.com", true }, @@ -10459,6 +10641,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "drvr.xyz", true }, { "drweissbrot.net", true }, { "drwxr.org", true }, + { "dryan.com", false }, { "drybjed.net", true }, { "drycleancoalition.org", true }, { "drycreekphoto.com", true }, @@ -10473,6 +10656,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "dsdalismerkezi.com", true }, { "dsebastien.net", true }, { "dsektionen.se", false }, + { "dsgarms.com", true }, + { "dsgholsters.com", true }, { "dsgvo.name", true }, { "dshield.org", true }, { "dsm5.com", true }, @@ -10484,7 +10669,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "dssale.com", true }, { "dstamou.de", true }, { "dsteiner.at", true }, - { "dstvinstallrandburg.co.za", true }, { "dt27.org", true }, { "dtbouncycastles.co.uk", true }, { "dtdsh.com", true }, @@ -10499,7 +10683,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "dtnx.org", true }, { "dtuaarsfest.dk", true }, { "dtx.sk", true }, - { "dualascent.com", true }, { "dualias.xyz", false }, { "dub.cz", true }, { "dubai-company.ae", true }, @@ -10510,6 +10693,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "dubrovnik-dental.clinic", true }, { "dubrovskiy.net", true }, { "dubrovskiy.pro", true }, + { "dubtrack.fm", true }, { "ducalendars.com", true }, { "duch.cloud", true }, { "duchyoffeann.com", true }, @@ -10539,10 +10723,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "dukegat.de", false }, { "dukesatqueens.com", true }, { "dukun.de", true }, + { "dulcinela.es", true }, { "dulei.si", true }, { "dullapp.com", true }, { "dumax.xyz", true }, - { "dumbdemo.com", true }, { "dumbeartech.com", true }, { "dumberger-bau.de", true }, { "dumbfunded.co.uk", true }, @@ -10550,17 +10734,19 @@ static const nsSTSPreload kSTSPreloadList[] = { { "dumino.bg", true }, { "dumont.ovh", true }, { "dumpsters.com", true }, - { "dunamiscommunity.com", true }, { "duncancmt.com", true }, { "duncanfamilytrust.org", true }, + { "duncanmoffat.com", true }, { "duncanwinfrey.com", true }, + { "duncm.com", true }, + { "dundalkdonnie.com", true }, { "dunesadventure.net", true }, { "dungeon-bbs.de", true }, + { "dunklau.fr", true }, { "dunkle-seite.org", true }, { "dunloptrade.com", true }, { "dunmanelectric.com", true }, { "duobus.nl", true }, - { "duocircle.com", true }, { "duoluodeyu.com", true }, { "duonganhtuan.com", true }, { "duoquadragintien.fr", true }, @@ -10609,6 +10795,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "dwtm.ch", true }, { "dwworld.co.uk", true }, { "dxgl.info", true }, + { "dxgl.org", true }, { "dxm.no-ip.biz", true }, { "dybuster.at", true }, { "dybuster.ch", true }, @@ -10617,6 +10804,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "dybuster.es", true }, { "dybuster.it", true }, { "dybuster.se", true }, + { "dycoa.com", true }, { "dyeager.org", true }, { "dyktig.as", true }, { "dyktig.no", true }, @@ -10646,6 +10834,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "dynamics-365.no", true }, { "dynamics365.no", true }, { "dynamicsnetwork.net", true }, + { "dynamictostatic.com", true }, { "dynamicyou.co.uk", true }, { "dynamo.city", true }, { "dynapptic.com", true }, @@ -10673,7 +10862,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "dzyabchenko.com", true }, { "dzyszla.pl", true }, { "e-apack.com.br", true }, - { "e-baraxolka.ru", true }, { "e-bikesdirect.co.uk", true }, { "e-biografias.net", true }, { "e-borneoshop.com", true }, @@ -10689,9 +10877,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "e-lifetechnology.com", true }, { "e-planetelec.fr", false }, { "e-ptn.com", true }, - { "e-speak24.pl", true }, { "e-standardstore.org", true }, { "e-surveillant.nl", true }, + { "e-sw.co.jp", true }, { "e-teacher.pl", true }, { "e-tech-solution.com", true }, { "e-tech-solution.net", true }, @@ -10733,6 +10921,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "eaglesecurity.com", true }, { "eagletechz.com.br", true }, { "eaglewreck.info", true }, + { "eaglexiang.org", true }, { "eagleyecs.com", true }, { "eaimty.com", true }, { "ealev.de", true }, @@ -10757,13 +10946,14 @@ static const nsSTSPreload kSTSPreloadList[] = { { "eastmanbusinessinstitute.com", true }, { "eastsidecottages.co.uk", true }, { "easy-rpg.org", false }, + { "easy2bathe.co.uk", true }, { "easyadsnbanners.tk", false }, { "easycoding.org", true }, { "easyconstat.com", true }, { "easycontentplan.com", true }, { "easycosmetic.ch", true }, { "easycup.com", false }, - { "easydumpsterrental.com", true }, + { "easydumpsterrental.com", false }, { "easyfiles.ch", true }, { "easyhaul.com", true }, { "easykraamzorg.nl", false }, @@ -10781,6 +10971,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "easytechguides.com", true }, { "easytechsecurity.com", true }, { "easyweenies.com", true }, + { "eat-mine.ml", true }, { "eat-sleep-code.com", true }, { "eatery.co.il", true }, { "eatmebudapest.hu", true }, @@ -10812,7 +11003,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "eboek.info", true }, { "ebonyriddle.com", true }, { "ebooki.eu.org", true }, - { "ebop.ch", true }, + { "ebooklaunchers.com", true }, { "eboutic.ch", true }, { "eboyer.com", true }, { "ebrnd.de", true }, @@ -10835,7 +11026,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "echatta.org", true }, { "echidna-rocktools.eu", true }, { "echo-security.co", true }, - { "echoactive.com", true }, { "echoanalytics.com", true }, { "echodio.com", true }, { "echofoxtrot.co", true }, @@ -10843,7 +11033,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "echosim.io", true }, { "echosixmonkey.com", true }, { "echosystem.fr", true }, - { "echoteam.gq", false }, + { "echoteam.gq", true }, + { "echoteen.com", true }, { "echoworld.ch", true }, { "ecir.pro", true }, { "ecir.ru", true }, @@ -10862,6 +11053,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ecoccinelles.com", true }, { "ecococon.fr", true }, { "ecocreativity.org", true }, + { "ecodedi.com", true }, { "ecodesigns.nl", true }, { "ecodigital.social", true }, { "ecofabrica.com.br", true }, @@ -10956,7 +11148,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "educationfutures.com", true }, { "educationunlimited.com", true }, { "educator-one.com", true }, - { "educators.co.nz", true }, { "eductf.org", true }, { "eduid.se", false }, { "edumundo.nl", true }, @@ -10965,6 +11156,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "edusanjal.com", true }, { "edusantorini.com", true }, { "eduvpn.no", true }, + { "eduxpert.in", true }, { "edv-bv.de", true }, { "edv-kohls.de", true }, { "edv-lehrgang.de", true }, @@ -10980,6 +11172,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "edxn.de", true }, { "edyou.eu", true }, { "edzilla.info", true }, + { "eelcapone.nl", true }, { "eellak.gr", true }, { "eelsden.net", true }, { "eelzak.nl", true }, @@ -11016,7 +11209,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "egamespw.com", true }, { "egami.ch", true }, { "eganassociates.com.au", true }, - { "egarden.it", true }, { "egb.at", false }, { "egbert.net", true }, { "egeozcan.com", true }, @@ -11069,7 +11261,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "eihaikyo.com", true }, { "eilhan.com", true }, { "eimacs.com", true }, - { "einar.io", true }, { "einaros.is", true }, { "einfachbahn.de", true }, { "einheft.info", true }, @@ -11083,6 +11274,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "eintragsservice24.de", true }, { "eipione.com", true }, { "eirastudios.co.uk", false }, + { "eirb.fr", true }, { "eisaev.ru", true }, { "eiskratzer-bedrucken.de", true }, { "eit-web.de", false }, @@ -11096,7 +11288,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ejkwebdesign.nl", true }, { "ejuicelab.co.uk", true }, { "ek-networks.de", true }, - { "ek.network", true }, { "ekaigotenshoku.com", true }, { "ekati.ru", true }, { "ekb-avia.ru", true }, @@ -11124,7 +11315,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "elaon.de", true }, { "elars.de", true }, { "elarvee.xyz", true }, - { "elastic7.uk", true }, { "elb500ttl.nl", true }, { "elbetech.net", true }, { "elbohlyart.com", true }, @@ -11132,6 +11322,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "elcontadorsac.com", true }, { "eldapoint.co.uk", true }, { "eldertons.co.uk", true }, + { "eldevo.com", true }, { "eldietista.es", true }, { "eldinhadzic.com", true }, { "eldisagjapi.com", true }, @@ -11168,6 +11359,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "electriccamarillo.com", true }, { "electricconejovalley.com", true }, { "electricdosvientos.com", true }, + { "electricfencealberton.co.za", true }, { "electricfencebenoni.co.za", true }, { "electricfencingballito.co.za", true }, { "electricgatemotorgermiston.co.za", true }, @@ -11256,10 +11448,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "eleusis-zur-verschwiegenheit.de", true }, { "elevator.ee", true }, { "elevatoraptitudetest.com", true }, - { "elexel.ru", true }, { "elexprimidor.com", true }, { "elfe.de", true }, { "elfnon.com", true }, + { "elfring.eu", true }, { "elgalponazo.com.ar", true }, { "elglobo.com.mx", false }, { "elgosblanc.com", false }, @@ -11267,6 +11459,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "elhamadimi.com", true }, { "elhorizontal.com", true }, { "elhossari.com", true }, + { "elia.cloud", true }, { "elian-art.de", true }, { "elibom.com", true }, { "elie.net", true }, @@ -11286,7 +11479,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "elisabethkostecki.de", true }, { "elisabethrene.com", true }, { "elisechristie.com", true }, - { "elistor6100.xyz", true }, { "elite12.de", true }, { "elitebouncingfun.com", true }, { "elitegameservers.net", true }, @@ -11296,7 +11488,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "eliyah.co.il", true }, { "elizabethbuitrago.com", true }, { "elizabethgreenfield.com", true }, - { "elizeugomes.com.br", true }, + { "elizabethrominski.com", true }, { "eljef.me", true }, { "elkoy.org", true }, { "ell-net.tokyo", true }, @@ -11307,7 +11499,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ellencorddry.com", true }, { "ellevit.ch", true }, { "elliesbouncers.co.uk", true }, - { "elliff.net", true }, { "elliot.cat", true }, { "elliriehl.at", true }, { "ellisamusements.co.uk", true }, @@ -11316,7 +11507,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "elmermx.ch", true }, { "elnan.do", true }, { "elnoorandelmohanad.com", true }, - { "elo.fyi", true }, { "elodieclerc.ch", true }, { "elohellp.com", false }, { "elonaspitze.de", true }, @@ -11324,7 +11514,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "elosrah.com", true }, { "elosuite.com", true }, { "eloxt.com", true }, - { "elpado.de", true }, { "elpoderdelespiritu.org", true }, { "elrinconderovica.com", true }, { "elsagradocoran.org", true }, @@ -11339,6 +11528,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "elternforum-birmensdorf.ch", true }, { "elternverein-utzenstorf.ch", true }, { "elucron.com", true }, + { "eluft.de", true }, { "eluhome.de", true }, { "eluvio.com", true }, { "elvidence.com.au", true }, @@ -11356,7 +11546,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "emaging-productions.fr", true }, { "emailalaperformance.fr", true }, { "emailconfiguration.com", true }, - { "emailcontrol.nl", true }, { "emailfuermich.de", true }, { "emailhunter.co", true }, { "emailing.alsace", true }, @@ -11364,6 +11553,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "emailtools.io", true }, { "emaily.eu", true }, { "emanuel.photography", true }, + { "emanuelduss.ch", true }, { "emanueleanastasio.com", true }, { "emanuelemazzotta.com", true }, { "embassycargo.eu", true }, @@ -11373,13 +11563,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "embroideryexpress.co.uk", true }, { "emby.cloud", true }, { "emcspotlight.com", true }, + { "emecew.com", true }, { "emeliefalk.se", true }, { "ememsei.com", true }, { "emeraldcbdshop.com", true }, { "emeraldcityswagger.com", true }, { "emeraldcoastrideshare.com", true }, { "emeraldonion.org", true }, - { "emergencyessay.com", true }, { "emergenzalavoro.com", true }, { "emero.de", true }, { "emex.ro", true }, @@ -11392,7 +11582,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "emilong.com", true }, { "emilstahl.dk", true }, { "emilvarga.com", true }, - { "emilyjohnson.ga", true }, + { "emily.moe", true }, { "emirabiz.com", false }, { "emirichardson.com", true }, { "emivauthey.com", true }, @@ -11415,6 +11605,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "emperor-penguins.com", true }, { "empese.com", true }, { "empherino.net", true }, + { "emploi-collectivites.fr", true }, { "employeeexpress.gov", true }, { "employer.gov", true }, { "employer.guru", true }, @@ -11436,13 +11627,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "emvoiceapp.com", true }, { "emw3.com", true }, { "emyr.net", true }, - { "emyself.org", true }, { "en-booster.jp", true }, { "en-crypt.me", true }, { "en-maktoob.search.yahoo.com", false }, { "en4rab.co.uk", true }, { "enaah.de", true }, { "enaim.de", true }, + { "enalean.com", true }, { "enamae.net", true }, { "enbecom.net", true }, { "encfs.win", true }, @@ -11458,6 +11649,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "encryptallthethings.net", true }, { "encrypted.google.com", true }, { "encuentraprecios.es", true }, + { "encycarpedia.com", true }, { "ende-x.com", true }, { "endeal.nl", true }, { "ender.co.at", true }, @@ -11468,6 +11660,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "endlessvideo.com", true }, { "endoftenancycleaninglondon.co.uk", true }, { "endoftennancycleaning.co.uk", true }, + { "endpointsystems.com", true }, { "enduranceday.be", true }, { "endzeit-architekten.com", false }, { "enemiesoflight.de", true }, @@ -11499,6 +11692,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "engiedev.net", true }, { "engineowning.com", true }, { "enginepit.com", true }, + { "enginsight.com", true }, { "enginx.net", true }, { "englishbulgaria.net", true }, { "englishcast.com.br", true }, @@ -11517,6 +11711,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "enjoy-drive.com", true }, { "enjoyphoneblog.it", true }, { "enlazaresbueno.cl", true }, + { "enlighten10x.ga", true }, { "enlightenedhr.com", true }, { "enlightenment.org", true }, { "enlnf.link", true }, @@ -11537,8 +11732,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "enscosupply.com", true }, { "ensemble-rubato.de", true }, { "ensembling.com", true }, - { "enskat.de", true }, - { "enskatson-sippe.de", true }, { "ensley.tech", true }, { "ensons.de", true }, { "ensured.com", true }, @@ -11549,10 +11742,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "entactogen.com", true }, { "entactogens.com", true }, { "entercenter.ru", true }, - { "enterprisechannel.asia", true }, { "enterprisey.enterprises", true }, + { "entersoftsecurity.com", true }, { "entheogens.com", true }, - { "entheorie.net", true }, { "enthusiaformazione.com", true }, { "entradaweb.cl", true }, { "entrainr.com", true }, @@ -11573,7 +11765,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "envoie.moi", true }, { "envoutement-desenvoutement.com", true }, { "envoyez.moi", true }, - { "envoyglobal.com", true }, { "envygeeks.io", true }, { "eocservices.co.uk", true }, { "eoitek.com", true }, @@ -11607,6 +11798,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "epidauros.be", true }, { "epigrafes-led-farmakeia.gr", true }, { "epilis.gr", true }, + { "epiphanyofourlordchurch.com", true }, { "epiphyte.network", true }, { "episkevh-plaketas.gr", true }, { "epistas.com", true }, @@ -11618,9 +11810,23 @@ static const nsSTSPreload kSTSPreloadList[] = { { "epo32.ru", true }, { "epoch.com", true }, { "epolitiker.com", true }, + { "epos-distributor.co.uk", true }, { "epos.az", true }, + { "eposbirmingham.co.uk", true }, + { "eposbrighton.co.uk", true }, + { "eposbristol.co.uk", true }, + { "eposcardiff.co.uk", true }, { "eposig.net", true }, + { "eposkent.co.uk", true }, + { "eposleeds.co.uk", true }, + { "eposleicester.co.uk", true }, + { "eposliverpool.co.uk", true }, + { "eposlondon.co.uk", true }, + { "epossheffield.co.uk", true }, + { "eposswansea.co.uk", true }, + { "epossystems.co.uk", true }, { "epostplus.li", true }, + { "eposyork.co.uk", true }, { "eppelblei.lu", true }, { "eppelduerferjugend.lu", true }, { "eppelpress.lu", true }, @@ -11633,6 +11839,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "epyonsuniverse.net", true }, { "eq-serve.com", true }, { "equalcloud.com", true }, + { "equallyy.com", true }, { "equeim.ru", true }, { "equidam.com", true }, { "equinecoaching.ca", true }, @@ -11649,6 +11856,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "erasmusplusrooms.com", true }, { "erate.fi", true }, { "erath.fr", true }, + { "erawanarifnugroho.com", false }, { "erdethamburgeronsdag.no", true }, { "ereader.uno", true }, { "erecciontotalal100.com", true }, @@ -11665,6 +11873,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ericabrahamsen.net", true }, { "ericairwin.com", true }, { "ericdiao.com", true }, + { "erichogue.ca", true }, { "erichorstmanshof.nl", true }, { "ericisaweso.me", true }, { "ericjohnltd.com", true }, @@ -11673,6 +11882,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "erico.jp", true }, { "ericoc.com", true }, { "erics.site", true }, + { "ericvaughn-flam.com", true }, { "ericwie.se", true }, { "eridanus.uk", true }, { "erigrid.eu", true }, @@ -11689,9 +11899,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "erisrenee.com", true }, { "erixschueler.de", true }, { "erkaelderbarenaaben.dk", true }, + { "ernaehrungsberatung-rapperswil.ch", true }, { "ernest.ly", true }, { "eroma.com.au", true }, { "eron.info", true }, + { "eroskines.com", true }, { "eroticforce.com", true }, { "erp-band.ru", true }, { "erp.band", true }, @@ -11721,7 +11933,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "erudicia.uk", true }, { "erudikum.cz", true }, { "ervaarjapan.nl", true }, - { "erverydown.ml", true }, { "erwanlepape.com", true }, { "erwin.saarland", true }, { "erwinpaal.nl", true }, @@ -11743,7 +11954,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "esb-top.com", true }, { "esb-top.net", true }, { "esb116.com", true }, - { "esb1314.net", true }, { "esb168168.com", true }, { "esb168168.info", true }, { "esb168168.net", true }, @@ -11873,13 +12083,14 @@ static const nsSTSPreload kSTSPreloadList[] = { { "espritrait.com", true }, { "esquirou-trieves.fr", true }, { "esquisse.fr", true }, + { "esrhd.com", true }, + { "esrinfo.com", true }, { "ess-cert.ru", true }, { "essayads.com", true }, { "essaybrand.com", true }, { "essaychecker.com", true }, { "essaydirectory.com", true }, { "essayforsale.net", true }, - { "essayhave.com", true }, { "essaynews.com", true }, { "essaypro.net", true }, { "essaytalk.com", true }, @@ -11887,6 +12098,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "essaywriting.biz", true }, { "essenalablog.de", true }, { "essencesdeprana.org", true }, + { "essex.cc", true }, { "essite.net", true }, { "esslm.sk", true }, { "essoduke.org", true }, @@ -11894,7 +12106,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "establo.pro", true }, { "estafallando.es", true }, { "estafallando.mx", true }, - { "estan.cn", true }, { "estate360.co.tz", true }, { "estateczech-eu.ru", true }, { "estcequejailaflemme.fr", true }, @@ -11909,7 +12120,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "estoic.net", true }, { "estoniantrade.ee", true }, { "estonoentraenelexamen.com", true }, + { "estudiarparaser.com", true }, { "estudiserradal.com", true }, + { "esurety.net", true }, { "esw00.com", true }, { "esw06.com", true }, { "esw07.com", true }, @@ -11923,6 +12136,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "etaoinwu.win", true }, { "etasigmaphi.org", true }, { "etath.com", true }, + { "etax.com.au", true }, { "etaxi.tn", true }, { "etccooperative.org", true }, { "etch.co", true }, @@ -11939,19 +12153,18 @@ static const nsSTSPreload kSTSPreloadList[] = { { "etfacta.com", true }, { "eth-faucet.net", true }, { "eth0.nl", true }, - { "etha.nz", true }, { "ethack.org", true }, { "ethaligan.fr", true }, { "ethan.pm", true }, { "ethandelany.me", true }, { "ethercalc.com", true }, { "ethercalc.org", true }, + { "etherderbies.com", true }, { "ethergeist.de", true }, { "etherpad.fr", true }, { "etherpad.nl", true }, { "ethicaldata.co.uk", true }, { "ethicalpolitics.org", true }, - { "ethicaltek.com", true }, { "ethicsburg.gov", true }, { "ethika.com", true }, { "ethiopian.dating", true }, @@ -11967,6 +12180,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "etrecosmeticderm.com", true }, { "etresmant.es", true }, { "etrker.com", true }, + { "etskinner.com", true }, + { "etskinner.net", true }, { "etudesbibliques.fr", true }, { "etudesbibliques.net", true }, { "etudesbibliques.org", true }, @@ -11978,7 +12193,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "eu-gamers.com", true }, { "eu-stellenangebot.de", true }, { "euaggelion.blog.br", true }, - { "euanbarrett.com", true }, { "euchre.us", true }, { "eucl3d.com", true }, { "eugenechae.com", true }, @@ -12044,7 +12258,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "eurotravelstar.eu", true }, { "eurousa.us", true }, { "eurovision.ie", true }, - { "euteamo.cn", true }, { "eutotal.com", true }, { "eutram.com", true }, { "euvo.tk", false }, @@ -12068,6 +12281,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "evanreev.es", true }, { "evantage.org", true }, { "evantageglobal.com", true }, + { "evanwang0.com", true }, + { "evapp.org", true }, { "evasovova.cz", true }, { "evavolfova.cz", true }, { "eve.ac", true }, @@ -12077,6 +12292,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "evemarketer.com", true }, { "evemodx.com", true }, { "evenementenhoekvanholland.nl", true }, + { "evenstargames.com", true }, { "event4fun.no", true }, { "eventaro.com", true }, { "eventive.org", true }, @@ -12089,18 +12305,23 @@ static const nsSTSPreload kSTSPreloadList[] = { { "everfine.com.tw", true }, { "evergladesrestoration.gov", true }, { "everhome.de", true }, + { "everitoken.io", true }, { "everling.lu", true }, { "everlong.org", true }, + { "evermarkstudios.com", true }, { "everpcpc.com", true }, { "evertonarentwe.com", true }, { "everwaking.com", false }, { "everybodyhertz.co.uk", true }, + { "everyday.eu.org", true }, { "everydaygary.com", true }, { "everydaywp.com", true }, { "everyex.com", true }, { "everyfad.com", true }, { "everygayporn.com", false }, + { "everything-everywhere.com", true }, { "everythingaccess.com", true }, + { "everythingstech.com", true }, { "everytrycounts.gov", false }, { "everywhere.cloud", true }, { "eveshamglass.co.uk", true }, @@ -12109,10 +12330,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "evidence-based.review", true }, { "evidencebased.net", true }, { "evidenceusa.com.br", true }, + { "evidencija.ba", true }, { "evidentiasoftware.com", true }, { "evilarmy.com", true }, + { "evilbeasts.ru", true }, + { "evilbunnyfufu.com", true }, { "evilcult.me", true }, - { "evileden.com", true }, { "evilized.de", true }, { "evilmartians.com", true }, { "evilness.nl", true }, @@ -12173,9 +12396,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "exceltobarcode.com", true }, { "excentos.com", true }, { "exceptionalservers.com", true }, - { "excessamerica.com", true }, { "excesssecurity.com", true }, - { "exchangeworks.co", true }, { "exchaser.com", true }, { "exclusivebouncycastles.co.uk", true }, { "exclusivedesignz.com", true }, @@ -12197,6 +12418,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "exhibityour.com", true }, { "exiahost.com", true }, { "exit9wineandliquor.com", true }, + { "exitooutdoor.com", true }, { "exmoe.com", true }, { "exocen.com", true }, { "exon.io", true }, @@ -12217,7 +12439,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "expertohomestaging.com", true }, { "experts-en-gestion.fr", true }, { "expertsverts.com", true }, + { "expertviolinteacher.com", true }, { "expiscor.solutions", true }, + { "explodie.org", true }, { "exploflex.com.br", true }, { "exploit.party", true }, { "exploit.ph", true }, @@ -12287,6 +12511,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "extremeservicesandrestoration.com", true }, { "exultcosmetics.co.uk", true }, { "exyplis.com", true }, + { "eyasc.nl", true }, { "eydesignguidelines.com", true }, { "eyeandfire.com", true }, { "eyecandy.gr", true }, @@ -12300,13 +12525,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "eyesonly.cc", true }, { "eynio.com", true }, { "eyona.com", true }, + { "eyps.net", true }, { "eyyit.com", false }, { "eyyubyilmaz.com", true }, { "ez3d.eu", true }, { "ezakazivanje.rs", true }, { "ezdog.press", true }, { "ezequiel-garzon.net", true }, - { "ezgamble.com", true }, { "ezgif.com", true }, { "ezhik-din.ru", true }, { "eztvtorrent.com", true }, @@ -12324,7 +12549,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "f1fever.co.uk", true }, { "f1fever.net", true }, { "f1minute.com", true }, - { "f2e.io", true }, { "f2h.io", true }, { "f3nws.com", true }, { "f43.me", true }, @@ -12332,6 +12556,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "f5w.de", true }, { "fa-works.com", true }, { "faber.org.ru", true }, + { "fabian-fingerle.de", true }, { "fabian-koeppen.de", true }, { "fabianackle.ch", true }, { "fabianasantiago.com", true }, @@ -12349,7 +12574,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "fabriziocavaliere.it", true }, { "fabriziorocca.com", true }, { "fabriziorocca.it", true }, - { "fabrysociety.org", true }, { "fabse.net", true }, { "facanabota.com", true }, { "facanabota.com.br", true }, @@ -12358,11 +12582,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "face-mania.com", true }, { "facealacrise.fr", true }, { "facebook-atom.appspot.com", true }, - { "facebook.com", true }, + { "facebook.com", false }, { "facebydrh.com", true }, { "facebylouise.co.uk", true }, { "facekungfu.com", true }, - { "facepalmsecurity.com", true }, + { "facepainting.gr", true }, { "facepunch.org", true }, { "facerepo.com", true }, { "fach-journalist.de", true }, @@ -12382,7 +12606,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "fackovec.sk", true }, { "factbytefactbox.com", true }, { "factcool.com", true }, - { "factor.cc", false }, + { "factureenlinea.com", true }, { "factuur.pro", true }, { "factuursturen.be", true }, { "factuursturen.nl", true }, @@ -12392,9 +12616,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "facucosta.com.ar", true }, { "faderweb.de", true }, { "faehler.de", true }, + { "faelix.net", true }, { "faerb.it", true }, { "faerie-art.com", true }, - { "faeriecakes.be", true }, + { "fahnen-fanwelt.de", true }, { "fahrenwal.de", true }, { "fahrenwalde.de", true }, { "fahrschule-laux.de", true }, @@ -12408,6 +12633,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "fairbill.com", true }, { "fairedeseconomies.info", true }, { "fairgolfteams.com", true }, + { "fairmarketing.com", true }, { "fairplay.im", true }, { "fairssl.dk", true }, { "fairssl.se", true }, @@ -12420,7 +12646,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "faithwatch.org", true }, { "faixaazul.com", true }, { "fakeapple.nl", true }, - { "fakerli.com", true }, { "fakti.bg", true }, { "fakturi.com", true }, { "fakturoid.cz", true }, @@ -12440,14 +12665,14 @@ static const nsSTSPreload kSTSPreloadList[] = { { "fallenmystic.com", true }, { "fallenspirits.co.uk", true }, { "falling.se", true }, - { "fallofthecitadel.com", true }, - { "false.in.net", true }, { "falsum.net", true }, { "fam-kreibich.de", true }, { "fam-stemmer.de", false }, + { "fam-weyer.de", true }, { "famcloud.de", true }, { "famdouma.nl", true }, { "fameng.nl", true }, + { "fameus.fr", true }, { "famfi.co", true }, { "familiaperez.net", true }, { "familie-kruithof.nl", true }, @@ -12474,7 +12699,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "fanactu.com", true }, { "fanatical.com", true }, { "fanboi.ch", true }, - { "fancy-bridge.com", true }, { "fancy.org.uk", true }, { "fander.it", true }, { "fandler.cz", true }, @@ -12488,12 +12712,15 @@ static const nsSTSPreload kSTSPreloadList[] = { { "fantasticcleaners.com.au", true }, { "fantastichandymanmelbourne.com.au", true }, { "fantastici.de", true }, + { "fantasticservices.com", true }, { "fantasycastles.co.uk", true }, { "fantasyescortsbirmingham.co.uk", true }, { "fantasypartyhire.com.au", true }, + { "fantasyprojections.com", true }, { "fantasyspectrum.com", true }, { "fantopia.club", true }, { "fanvoice.com", true }, + { "fanyina.cn", true }, { "fanyina.com", true }, { "fanyue123.tk", true }, { "fanz.pro", true }, @@ -12502,12 +12729,14 @@ static const nsSTSPreload kSTSPreloadList[] = { { "faq.ie", true }, { "fara.gov", true }, { "faradji.nu", true }, + { "faradome.ws", true }, { "faraslot8.com", true }, { "farcecrew.de", true }, { "farfallapets.com.br", true }, { "farfetchos.com", true }, { "fargtorget.se", true }, { "farhadexchange.com", true }, + { "farhood.org", true }, { "farid.is", true }, { "farmacia-discreto.com", true }, { "farmacialaboratorio.it", true }, @@ -12525,7 +12754,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "fart.wtf", true }, { "farwat.ru", true }, { "faschingmd.com", true }, - { "fascia.fit", true }, { "fashion-stoff.de", true }, { "fashion24.de", true }, { "fashion4ever.pl", true }, @@ -12546,6 +12774,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "fashionunited.pl", true }, { "fashionunited.se", true }, { "fashionweekweb.com", true }, + { "fashtic.nl", true }, { "faspirits.co.uk", true }, { "faspirits.com", true }, { "fassaden-selleng.de", true }, @@ -12555,6 +12784,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "fastcash.com.br", true }, { "fastcommerce.org", true }, { "fastconfirm.com", true }, + { "fastcp.top", true }, + { "fastest-hosting.co.uk", true }, { "fastforwardsociety.nl", true }, { "fastforwardthemes.com", true }, { "fastlike.co", true }, @@ -12571,8 +12802,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "fathers4equalrights.org", true }, { "fatidique.com", true }, { "fatimamoldes.com.br", true }, - { "fator25.com.br", true }, + { "fatmixx.com", true }, { "fatowltees.com", true }, + { "fattorino.it", true }, { "faucetbox.com", false }, { "faui2k17.de", true }, { "faulty.equipment", true }, @@ -12581,6 +12813,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "fawong.com", true }, { "faxite.com", true }, { "faxvorlagen-druckvorlagen.de", true }, + { "fayntic.com", true }, { "fb.me", true }, { "fbcdn.net", true }, { "fbcopy.com", true }, @@ -12595,6 +12828,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "fca-tools.com", true }, { "fcburk.de", true }, { "fcforum.net", true }, + { "fcingolstadt.de", true }, { "fcitasc.com", true }, { "fckd.net", true }, { "fcosinus.com", true }, @@ -12607,6 +12841,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "fdm.ro", true }, { "fdms.gov", true }, { "fdn.one", true }, + { "fdos.me", true }, { "fdp-brig-glis.ch", true }, { "fdsys.gov", false }, { "feac.us", true }, @@ -12645,10 +12880,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "feedkovacs.hu", true }, { "feedough.com", true }, { "feedthefuture.gov", true }, - { "feegg.com.br", true }, { "feel-events.com", true }, { "feel.aero", true }, - { "feelgood-workouts.de", true }, { "feelmom.com", true }, { "feeltennis.net", true }, { "feen.us", true }, @@ -12656,6 +12889,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "feeriedesign-event.com", true }, { "feetpa.ws", true }, { "feezmodo.com", false }, + { "fefelovalex.ru", true }, { "fegame.eu", true }, { "fegame.mobi", true }, { "fegame.net", true }, @@ -12684,12 +12918,14 @@ static const nsSTSPreload kSTSPreloadList[] = { { "felixcrux.com", true }, { "felixgenicio.com", true }, { "felixkauer.de", true }, + { "felixqu.com", true }, { "felixsanz.com", true }, { "felixseele.de", true }, { "felsing.net", true }, { "felsmalerei.net", true }, { "femanca.com", true }, { "femastudios.com", true }, + { "femiluna.com", true }, { "feminina.pt", true }, { "femradio.es", true }, { "femtomind.com", true }, @@ -12700,6 +12936,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "fengyi.tel", true }, { "fenster-bank.at", true }, { "fenster-bank.de", true }, + { "feragon.net", true }, { "ferdies.co.za", true }, { "fergtm.com", true }, { "fergusoncastle.com", true }, @@ -12716,6 +12953,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "fernandobarata.pt", true }, { "fernandobarillas.com", true }, { "fernandomiguel.net", true }, + { "feross.org", true }, { "ferrariadvisor.it", true }, { "ferret.zone", true }, { "ferreteriaxerez.com", true }, @@ -12727,7 +12965,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "festaprylar.se", true }, { "festival-tipps.com", true }, { "festivaljapon.com", true }, - { "festivalxdentro.com", true }, { "fettlaus.de", true }, { "feudalisten.de", true }, { "feuerhuhn.de", true }, @@ -12743,11 +12980,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "feuetgloire.com", true }, { "fewo-thueringer-wald.de", true }, { "fexco.com", true }, + { "feybiblia.com", true }, { "feyermedia.de", true }, { "ff-bad-hoehenstadt.de", true }, { "ff-getzersdorf.at", true }, { "ff-obersunzing-niedersunzing.de", true }, { "ff14-mstdn.xyz", true }, + { "ffb.gov", false }, { "ffbans.org", true }, { "ffiec.gov", true }, { "ffis.me", true }, @@ -12804,6 +13043,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "figinstitute.org", true }, { "figshare.com", true }, { "figurasdelinguagem.com.br", true }, + { "figure.nz", true }, { "fiilr.com", true }, { "fiissh.tech", true }, { "fiix.io", true }, @@ -12818,6 +13058,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "filecopa.com", true }, { "files.from-me.org", true }, { "filestar.io", true }, + { "filestartest.io", true }, { "filetransfer.one", true }, { "filezilla-project.org", true }, { "filezilla.cn", true }, @@ -12833,6 +13074,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "filipsebesta.com", true }, { "filleritemsindia.com", true }, { "fillo.sk", true }, + { "film-storyboards.com", true }, + { "film-storyboards.fr", true }, { "film-tutorial.com", true }, { "filme-onlines.com", true }, { "filmers.net", true }, @@ -12841,6 +13084,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "filmreviewonline.com", true }, { "filmserver.de", true }, { "filmsite-studio.com", true }, + { "filmsphoto.com", true }, { "filoo.de", true }, { "filstop.com", true }, { "filterflasche-kaufen.de", true }, @@ -12849,11 +13093,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "fimsquad.com", true }, { "final-expense-quotes.com", true }, { "finalrewind.org", true }, - { "finalx.nl", false }, + { "finalx.nl", true }, { "financejobs.ch", true }, { "financepark.ch", true }, { "financniexperti.sk", true }, { "finansa.no", true }, + { "finanstilsynet.dk", true }, { "finch.am", true }, { "finchi.de", true }, { "finchnest.co.uk", true }, @@ -12861,6 +13106,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "find-mba.com", true }, { "find-your-happy-place.de", true }, { "findapinball.com", true }, + { "findcarspecs.com", true }, { "findhoustonseniorcare.com", true }, { "findingkorea.com", true }, { "finditez.com", true }, @@ -12888,7 +13134,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "finnwea.com", true }, { "finpt.com", false }, { "finsprings.org", true }, - { "fintandunleavy.com", true }, { "fintechnics.com", false }, { "fintry.ca", true }, { "finvantage.com", true }, @@ -12915,6 +13160,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "fireportal.sk", true }, { "fireshellsecurity.team", true }, { "firesofheaven.org", true }, + { "firesuite.net", true }, { "firetotheprisons.org", true }, { "firevap.org", true }, { "firewallconsultants.com", true }, @@ -12922,7 +13168,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "firma-cerny.cz", true }, { "firma-offshore.com", true }, { "firmale.com", true }, - { "firmament.space", true }, { "firmapi.com", true }, { "firmen-assekuranz.de", true }, { "firmenwerbung-vermarktung.de", true }, @@ -12943,7 +13188,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "firstq.xyz", true }, { "fischer-its.com", false }, { "fischer-kundendienst.de", true }, - { "fischers.cc", true }, + { "fischers.it", true }, { "fischers.srv.br", true }, { "fise.cz", true }, { "fish-hook.ru", true }, @@ -12994,6 +13239,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "fkcdn.de", true }, { "fkfev.de", true }, { "fktpm.ru", true }, + { "flacandmp3.ml", true }, { "flaemig42.de", false }, { "flagburningworld.com", true }, { "flagfox.net", true }, @@ -13006,6 +13252,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "flamme-von-anor.de", true }, { "flana.com", true }, { "flanga.io", true }, + { "flanga.org", true }, + { "flangaapis.com", true }, { "flapoverspeed.com", true }, { "flashback.org", true }, { "flashbeing.com", true }, @@ -13023,15 +13271,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "flawlesscowboy.xyz", true }, { "fleamarketgoods.com", true }, { "fleep.io", true }, - { "fleetcor.at", true }, { "fleetcor.ch", true }, { "fleetcor.cz", true }, - { "fleetcor.de", true }, - { "fleetcor.fr", true }, - { "fleetcor.hu", true }, { "fleetcor.lu", true }, - { "fleetcor.nl", true }, - { "fleetcor.pl", true }, { "fleetcor.sk", true }, { "fleetcorcards.be", true }, { "fleetsmith.com", true }, @@ -13041,10 +13283,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "flers-agglo.fr", true }, { "flerstourisme.fr", true }, { "fletchto99.com", true }, + { "fletemaritimo.online", true }, { "flets-ms.com", true }, { "fleurenplume.fr", true }, { "fleuryfleury.com", true }, { "flexapplications.se", true }, + { "flexfunding.com", true }, { "fleximaal.com", true }, { "fleximal.com", true }, { "fleximus.org", false }, @@ -13068,6 +13312,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "fliio.com", true }, { "flikmsg.co", true }, { "flinch.io", true }, + { "flip.kim", true }, { "flipneus.net", true }, { "fliptable.org", true }, { "flirt-norden.de", true }, @@ -13091,6 +13336,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "floorballpoint.cz", true }, { "flooringnightmares.com", true }, { "flooringsourcetx.com", true }, + { "floors4lessbay.com", true }, { "floort.net", false }, { "florence.uk.net", true }, { "florenceapp.co.uk", true }, @@ -13122,13 +13368,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "flowersbylegacy.com", true }, { "flowinvoice.com", true }, { "flowreader.com", true }, - { "flox.io", true }, { "flra.gov", true }, - { "flucky.xyz", false }, + { "flucky.xyz", true }, { "flucto.com", true }, { "flue-ducting.co.uk", true }, { "fluffycloud.de", true }, - { "flugsportvereinigungcelle.de", true }, { "fluhrers.de", true }, { "fluidmeterusa.com", true }, { "fluids.ac.uk", true }, @@ -13142,6 +13386,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "fluxent.de", false }, { "fluxfingers.net", true }, { "fluxforge.com", true }, + { "fluxi.fi", true }, { "fluxoid.com", true }, { "flw365365.com", true }, { "fly-en-drive.nl", true }, @@ -13154,7 +13399,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "flyinglocksmiths.com", true }, { "flyingpackets.net", true }, { "flyingrub.me", true }, - { "flyingspaghettimonsterdonationsfund.nl", true }, { "flymns.fr", true }, { "flynn.io", true }, { "flyserver.co.il", true }, @@ -13272,10 +13516,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "foreverssl.com", true }, { "foreversummertime.com", true }, { "forewordreviews.com", true }, - { "forex-plus.com", true }, { "forex.ee", true }, { "forexchef.de", true }, { "forexee.com", true }, + { "forexsignals7.com", true }, { "forextickler.com", true }, { "forextimes.ru", false }, { "forfunssake.co.uk", true }, @@ -13348,8 +13592,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "foto-robitsch.at", true }, { "foto-roma.ru", true }, { "foto.by", true }, - { "fotofaerie.net", true }, { "fotoflits.net", true }, + { "fotografechristha.nl", true }, { "fotografiadellalucerossa.com", true }, { "fotohome.dk", true }, { "fotokomorkomania.pl", true }, @@ -13376,7 +13620,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "fox.my", true }, { "foxbnc.co.uk", true }, { "foxdev.co", true }, - { "foxes.no", true }, + { "foxesare.sexy", true }, { "foxhound.com.br", true }, { "foxing.club", true }, { "foxo.blue", true }, @@ -13386,6 +13630,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "foxterrier.com.br", true }, { "fpc.gov", true }, { "fpersona.com", true }, + { "fpgradosuperior.com", true }, { "fpvr.org", true }, { "fpy.cz", true }, { "fr.search.yahoo.com", false }, @@ -13402,10 +13647,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "framezdakkapellen.nl", true }, { "fran.cr", true }, { "francescopalazzo.com", true }, - { "francescoservida.ch", true }, { "francetraceur.fr", true }, { "franchini.email", true }, { "franchini.engineer", true }, + { "francis.tokyo", true }, { "francisli.net", false }, { "franckgirard.net", true }, { "franckyz.com", true }, @@ -13428,6 +13673,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "frankierstar.de", true }, { "frankinteriordesign.co.uk", true }, { "frankmorrow.com", true }, + { "frankopol-sklep.pl", true }, + { "franksiler.com", true }, { "frankslaughterinsurance.com", true }, { "frankwei.xyz", true }, { "frankyan.com", true }, @@ -13438,7 +13685,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "franz.beer", true }, { "franziska-pascal.de", true }, { "franzknoll.de", true }, - { "frappant.cc", false }, + { "frappant.cc", true }, { "fraselab.ru", true }, { "frasesdodia.com", true }, { "frasesparaface.com.br", true }, @@ -13466,7 +13713,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "freddieonfire.tk", false }, { "freddyfazbearspizzeria.com", true }, { "freddysfuncastles.co.uk", true }, - { "fredericcote.com", true }, { "frederickalcantara.com", true }, { "frederik-braun.com", false }, { "frederikvig.com", true }, @@ -13476,7 +13722,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "free-your-pc.com", true }, { "free.ac.cn", true }, { "free.com.tw", true }, - { "freeassangenow.org", true }, { "freeasyshop.com", true }, { "freebarrettbrown.org", true }, { "freebcard.com", true }, @@ -13538,6 +13783,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "freeyourmusic.com", true }, { "freezion.com", true }, { "frei.social", true }, + { "freie-software.net", true }, { "freifahrt.de", true }, { "freifamily.ch", true }, { "freifunk-burgaltendorf.de", true }, @@ -13555,6 +13801,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "freizeitplaza.de", true }, { "frejasdal.dk", true }, { "frenchcreekcog.org", true }, + { "frenchmusic.fr", true }, { "frequencebanane.ch", true }, { "frequentflyerapp.com", true }, { "fresh-hotel.org", true }, @@ -13576,6 +13823,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "fribourgviking.net", true }, { "frickelmeister.de", true }, { "fridayfoucoud.ma", true }, + { "fridolinka.cz", true }, { "friederes.lu", true }, { "friederloch.de", true }, { "friedrich-foto-art.de", true }, @@ -13586,6 +13834,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "friends24.cz", true }, { "friendship-quotes.co.uk", true }, { "friendshipismagicsquad.com", true }, + { "frieslandrail.nl", true }, { "friet.org", true }, { "frietbesteld.nl", true }, { "friezy.ru", true }, @@ -13612,7 +13861,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "fromscratch.rocks", true }, { "fromthesoutherncross.com", true }, { "fronteers.nl", false }, + { "frontier-ad.co.jp", true }, { "frontierdiscount.com", true }, + { "frontiers.nl", true }, { "fropky.com", true }, { "frostprotection.co.uk", true }, { "frostwarning.com", true }, @@ -13633,7 +13884,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "frugalmechanic.com", true }, { "frugro.be", true }, { "fruition.co.jp", true }, - { "fruitscale.com", true }, { "frusky.de", true }, { "fruttini.de", true }, { "frydrychit.cz", true }, @@ -13659,7 +13909,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "fsstyle.com", true }, { "fsvt.ch", true }, { "ft.com", false }, - { "ftang.de", true }, + { "ftc.gov", false }, { "ftccomplaintassistant.gov", true }, { "ftcefile.gov", true }, { "ftf.agency", true }, @@ -13713,7 +13963,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "fumo.se", false }, { "fun-bounce.co.uk", true }, { "fun-tasia.co.uk", true }, - { "fun25.tk", true }, { "fun4kidzbouncycastles.co.uk", true }, { "fun4ubouncycastles.co.uk", true }, { "funadvisor.ca", true }, @@ -13743,7 +13992,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "funktionel.co", true }, { "funktionsverket.se", true }, { "funkygamer1.de", true }, - { "funnelweb.xyz", true }, { "funniestclip.com", true }, { "funnybikini.com", true }, { "funoverip.net", true }, @@ -13755,9 +14003,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "funtimeentertainment.co.uk", true }, { "funtimesbouncycastles.co.uk", true }, { "fur.red", true }, + { "furcity.me", true }, { "furgo.love", true }, { "furigana.info", true }, - { "furikake.xyz", true }, { "furkancaliskan.com", true }, { "furkot.com", true }, { "furkot.de", true }, @@ -13769,12 +14017,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "furlog.it", true }, { "furnfurs.com", true }, { "furnitureconcept.co.uk", true }, - { "furry.agency", true }, { "furry.cat", true }, { "furry.dk", true }, { "furry.zone", false }, { "furrybot.me", true }, { "furrytech.network", true }, + { "furrytf.club", true }, { "furryyiff.site", true }, { "fursuitbutts.com", true }, { "furtherfood.com", true }, @@ -13783,12 +14031,15 @@ static const nsSTSPreload kSTSPreloadList[] = { { "fushee.com", true }, { "fusiongaming.de", true }, { "fussball-xxl.de", true }, + { "futa.agency", true }, { "futagro.com", true }, + { "futbomb.com", true }, { "futcre.com", true }, { "futrou.com", true }, { "future-moves.com", true }, { "futurefund.com", true }, { "futurefundapp.com", true }, + { "futuregrowthva.com", true }, { "futurehack.io", true }, { "futurenda.com", true }, { "futureoceans.org", true }, @@ -13839,6 +14090,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "fysiovdberg.nl", true }, { "fysuite.com", true }, { "fzbrweb.cz", true }, + { "fzhyzamt.com", true }, { "fzx750.ru", true }, { "g-m-w.eu", true }, { "g-marketing.ro", true }, @@ -13846,11 +14098,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "g-p-design.com", true }, { "g-rom.net", true }, { "g0881.com", true }, + { "g0man.com", true }, { "g1.ie", true }, { "g10e.ch", true }, - { "g1s.cc", true }, { "g2links.com", true }, { "g2pla.net", true }, + { "g2ship.com", true }, { "g2soft.net", true }, { "g3d.ro", true }, { "g3dev.ch", true }, @@ -13879,21 +14132,21 @@ static const nsSTSPreload kSTSPreloadList[] = { { "gaff-rig.co.uk", true }, { "gaflooring.com", true }, { "gafunds.com", true }, + { "gagliarducci.it", true }, { "gagne-enterprises.com", true }, { "gagne.tk", true }, { "gagnerplusdargent.info", true }, { "gagniard.org", true }, - { "gagor.pl", true }, { "gagygnole.ch", true }, { "gaiavanderzeyp.com", true }, { "gaichon.com", true }, - { "gailfellowsphotography.com", true }, { "gaines-sodiamex.fr", true }, { "gaio-automobiles.fr", true }, { "gaireg.de", true }, { "gaitandmobility.com", true }, { "gaitrehabilitation.com", true }, { "gaitresearch.com", true }, + { "gakkainavi-epsilon.jp", true }, { "gakkainavi-epsilon.net", true }, { "gakkainavi.jp", true }, { "gakkainavi.net", true }, @@ -13901,9 +14154,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "gakkainavi4.net", true }, { "gaku-architect.com", true }, { "gala.kiev.ua", false }, + { "galabau-maurmann.de", true }, + { "galacg.me", true }, { "galactic-crew.org", true }, { "galak.ch", true }, { "galanight.cz", true }, + { "galecia.com", true }, { "galeria42.com", true }, { "galerieautodirect.com", true }, { "galeries.photo", true }, @@ -13948,6 +14204,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "gameofpwnz.com", true }, { "gamepad.com.br", true }, { "gameplaysforkids.com", true }, + { "gamepreorders.com", true }, { "gamequest.info", true }, { "gamercredo.com", true }, { "gamereader.de", true }, @@ -13991,7 +14248,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "gapdirect.com", true }, { "gapfa.org", true }, { "gaptek.id", false }, - { "gar-nich.net", false }, { "garage-leone.com", true }, { "garage-meynard.com", true }, { "garageenginuity.com", true }, @@ -14041,7 +14297,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "gaudere.co.jp", true }, { "gaurl.ga", true }, { "gaussianwaves.com", true }, - { "gautham.it", false }, + { "gautham.it", true }, { "gauthier.dk", true }, { "gautvedt.no", true }, { "gavins.stream", true }, @@ -14051,6 +14307,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "gaya-sa.org", true }, { "gayforgenji.com", true }, { "gayjays.com", true }, + { "gaymerconnect.net", true }, + { "gaymerx.com", true }, + { "gaymerx.net", true }, + { "gaymerx.org", true }, { "gaysexpositions.guide", true }, { "gayukai.net", true }, { "gazachallenge.org", true }, @@ -14064,6 +14324,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "gboys.net", true }, { "gc-mc.de", true }, { "gc.gy", true }, + { "gc.ru.net", true }, { "gcbit.dk", true }, { "gccm-events.com", true }, { "gcfadvisors.com", true }, @@ -14133,6 +14394,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "gegeco.ch", true }, { "geh.li", true }, { "gehaowu.com", true }, + { "gehas-wein-shop.de", true }, { "gehirn.co.jp", true }, { "gehirn.jp", true }, { "gehopft.de", true }, @@ -14157,6 +14419,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "gem-info.fr", true }, { "gemeentemolenwaard.nl", true }, { "gemeinsam-ideen-verwirklichen.de", true }, + { "gemgroups.in", true }, { "gemini.com", true }, { "gemquery.com", true }, { "genchev.io", true }, @@ -14175,6 +14438,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "general-anaesthesia.com", true }, { "general-anaesthetics.com", true }, { "general-anesthesia.com", true }, + { "general-insurance.tk", true }, { "generali-worldwide.com", true }, { "generalinsuranceservices.com", true }, { "generationgoat.com", true }, @@ -14191,6 +14455,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "genevoise-entretien.ch", true }, { "genfaerd.dk", true }, { "geniush.ovh", true }, + { "geniushost.in", true }, { "geniusteacher.in", true }, { "geniuszone.biz", true }, { "genocidediary.org", true }, @@ -14206,9 +14471,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "genslerapps.com", true }, { "genslerwisp.com", true }, { "gensokyo.chat", true }, + { "gensokyo.re", true }, { "gensonline.eu", true }, { "gentianes.ch", true }, { "gentoo-blog.de", true }, + { "gentooblog.de", true }, { "genusshotel-riegersburg.at", true }, { "genuxtsg.com", true }, { "genxnotes.com", true }, @@ -14254,6 +14521,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "gerbyte.co.uk", true }, { "gerbyte.com", true }, { "gerbyte.uk", true }, + { "germancraft.net", true }, { "germandarknes.net", true }, { "germansoldiers.net", true }, { "germanssky.de", true }, @@ -14272,6 +14540,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "gesundheitswelt24.de", true }, { "get-erp.ru", true }, { "get-it-live.com", true }, + { "get-it-live.de", true }, { "get-link.info", true }, { "get-on.bid", true }, { "get-refer.com", true }, @@ -14286,6 +14555,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "getbutterfly.com", true }, { "getcloak.com", false }, { "getcolq.com", true }, + { "getcommande.com", true }, { "getdash.io", true }, { "getdeveloper.de", true }, { "geteckeld.nl", true }, @@ -14294,6 +14564,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "getfirstalert.com", true }, { "getfittedstore.com", true }, { "getflorence.co.uk", true }, + { "getfoundquick.com", true }, { "getgeek.es", true }, { "gethow.org", true }, { "gethttpsforfree.com", true }, @@ -14301,6 +14572,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "getidmcc.com", true }, { "getimgs.com", true }, { "getinphase.com", true }, + { "getitlive.de", true }, { "getitpeople.com", true }, { "getmango.com", true }, { "getmdl.io", true }, @@ -14343,6 +14615,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "gfahnen.de", true }, { "gfast.ru", true }, { "gfcleisure.co.uk", true }, + { "gfe.li", true }, { "gfe.link", true }, { "gfelite.de", true }, { "gfestival.fo", true }, @@ -14353,6 +14626,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "gfnetfun.cf", true }, { "gforce.ninja", true }, { "gfoss.eu", true }, + { "gfournier.ca", true }, + { "gfwno.win", true }, { "gfxbench.com", true }, { "ggdcpt.com", true }, { "gginin.today", true }, @@ -14371,6 +14646,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ghislainphu.fr", true }, { "ghostblog.info", false }, { "ghostcir.com", true }, + { "ghou.me", true }, { "ghowell.io", true }, { "ghrelinblocker.info", true }, { "ghrelinblocker.org", true }, @@ -14390,10 +14666,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "gibraltar.at", true }, { "gichigamigames.com", true }, { "gicl.dk", true }, - { "giddyaunt.net", true }, { "giduv.com", true }, { "giebel.it", true }, - { "giegler.software", true }, { "gierds.de", true }, { "giethoorn.com", true }, { "gietvloergarant.nl", false }, @@ -14431,6 +14705,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "gillyscastles.co.uk", true }, { "gilmoreid.com.au", true }, { "gilnet.be", true }, + { "gimme.money", true }, { "gina-architektur.design", true }, { "gingersutton.com", true }, { "ginionusedcars.be", true }, @@ -14454,9 +14729,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "girlsforum.com", true }, { "girlsgenerationgoods.com", true }, { "girlsgonesporty.com", true }, + { "girlsnet.work", true }, { "girlz.jp", true }, { "girsa.org", true }, { "girvas.ru", true }, + { "gisch.tk", true }, { "gisgov.be", true }, { "gisher.news", true }, { "gisher.org", true }, @@ -14470,10 +14747,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "gites-alizea.com", true }, { "gitesdeshautescourennes.com", true }, { "github.com", true }, + { "githubber.com", true }, + { "githubber.tv", true }, { "gitla.in", true }, { "gitstuff.tk", true }, { "gittigidiyor.com", true }, - { "giuem.com", false }, + { "gittr.ch", true }, + { "giuem.com", true }, { "giunchi.net", true }, { "giuseppemacario.men", true }, { "givastar.com", true }, @@ -14499,6 +14779,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "gl.search.yahoo.com", false }, { "glaciernursery.com", true }, { "gladwellentertainments.co.uk", true }, + { "glahcks.com", true }, { "glamguru.co.il", true }, { "glamguru.world", true }, { "glamour4you.de", true }, @@ -14510,6 +14791,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "glasner.photo", true }, { "glass.google.com", true }, { "glasschmuck-millefiori.de", true }, + { "glasweld.com", true }, { "glavsudexpertiza.ru", true }, { "glazedmag.fr", true }, { "glcastlekings.co.uk", true }, @@ -14522,7 +14804,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "glenhuntlyapartments.com.au", true }, { "glenshere.com", true }, { "glevolution.com", true }, - { "glicerina.online", true }, { "glidingshop.cz", true }, { "glidingshop.de", true }, { "glidingshop.eu", true }, @@ -14584,9 +14865,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "gmod.de", true }, { "gmpark.dk", true }, { "gmpartsdb.com", true }, - { "gmslparking.co.uk", true }, + { "gmplab.com", true }, { "gmta.nl", true }, { "gmtplus.co.za", true }, + { "gmw-hannover.de", true }, { "gmw-ingenieurbuero.de", true }, { "gmx.at", true }, { "gmx.ch", true }, @@ -14658,6 +14940,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "goettinger-biergarten.de", true }, { "goffrie.com", true }, { "gofigure.fr", false }, + { "goflipr.com", true }, { "goflo.net", true }, { "gofoiayourself.org", true }, { "gogle-analytics.com", true }, @@ -14701,12 +14984,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "golser.info", true }, { "gomasy.jp", true }, { "gomelchat.com", true }, + { "gomena.io", true }, { "gomiblog.com", true }, { "gommista.roma.it", true }, { "gondawa.com", true }, - { "gongjianwei.com", true }, { "gongjuhao.com", true }, - { "gonkar.com", true }, { "gonx.dk", true }, { "goo.gl", true }, { "gooby.co", false }, @@ -14715,6 +14997,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "gooddomainna.me", true }, { "goodenough.nz", false }, { "goodfeels.net", true }, + { "goodhealthtv.com", true }, + { "goodshepherdmv.com", true }, { "google", true }, { "google-analytics.com", true }, { "googleandroid.cz", true }, @@ -14729,6 +15013,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "gopher.tk", true }, { "goproallaccess.com", true }, { "goquiq.com", true }, + { "gordonobrecht.com", true }, { "gordonscouts.com.au", true }, { "gorf.chat", true }, { "gorf.club", true }, @@ -14745,7 +15030,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "gospelofmark.ch", true }, { "gospelvestcination.de", true }, { "gostaffer.com", true }, - { "gostest.org", true }, + { "gostest.org", false }, { "gosu.pro", true }, { "gosuland.org", true }, { "got-tty.de", true }, @@ -14760,7 +15045,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "goto.world", true }, { "goto10.se", true }, { "gotomi.info", true }, - { "gotowned.org", false }, { "gotoxy.at", true }, { "gotrail.fr", true }, { "gottcode.org", false }, @@ -14843,6 +15127,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "grandcafetwist.nl", true }, { "grandcapital.cn", true }, { "grandcapital.id", true }, + { "grandcapital.net", true }, { "grandcapital.ru", true }, { "grandcastles.co.uk", true }, { "grandchene.ch", true }, @@ -14873,6 +15158,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "grasmark.com", true }, { "grassenberg.de", true }, { "grasshoppervape.com", true }, + { "grasso.io", true }, { "grassreinforcement.com.au", true }, { "gratis-lovecheck.de", true }, { "gratisgamecards.nl", true }, @@ -14910,13 +15196,16 @@ static const nsSTSPreload kSTSPreloadList[] = { { "greek.dating", true }, { "green-attitude.be", true }, { "green-care.nl", true }, + { "green-light.cf", true }, { "green-light.co.nz", true }, + { "green-light.ga", true }, + { "green-light.gq", true }, + { "green-light.ml", true }, { "greenaddress.it", true }, { "greenapproach.ca", true }, { "greenbaysecuritysolutions.com", true }, { "greencircleplantnursery.com.au", true }, { "greencircleplantnursery.net.au", true }, - { "greenconn.ca", true }, { "greener.pl", true }, { "greenglam.biz", true }, { "greengoblindev.com", true }, @@ -14924,6 +15213,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "greenliquidsystem.com", true }, { "greenliv.pl", true }, { "greenlungs.net", true }, + { "greenmachines.com", true }, { "greenoutdoor.dk", false }, { "greenpanda.de", true }, { "greenpartyofnewmilford.org", true }, @@ -14935,12 +15225,17 @@ static const nsSTSPreload kSTSPreloadList[] = { { "greensdictofslang.com", true }, { "greensquare.tk", true }, { "greenteamtwente.nl", true }, - { "greenville.ag", true }, { "greenwithdecor.com", true }, { "greer.ru", true }, { "greg.red", true }, + { "gregbrimble.com", true }, { "greger.me", true }, + { "gregmarziomedia.co.za", true }, + { "gregmarziomedia.com", true }, + { "gregmilton.com", true }, + { "gregmilton.org", true }, { "gregmote.com", true }, + { "grego.pt", true }, { "gregoirow.be", true }, { "gregorians.org", true }, { "gregorkofler.com", true }, @@ -14990,6 +15285,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "grimstveit.no", true }, { "grinnellplans.com", true }, { "gripnijmegen.rip", true }, + { "grippe-impftermin.de", true }, { "gritte.ch", true }, { "grizzlys.com", true }, { "grmp.fr", true }, @@ -15011,6 +15307,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "groovygoldfish.org", true }, { "gropp.org", true }, { "gross.business", true }, + { "grossberger-ge.org", true }, { "groszek.pl", true }, { "groth.im", true }, { "groth.xyz", true }, @@ -15021,6 +15318,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "groupe-neurologique-nord.lu", true }, { "groupebaillargeon.com", true }, { "groupghistelinck-cars.be", true }, + { "grouphomes.com.au", false }, { "groupme.com", true }, { "groups.google.com", true }, { "growingallthings.co.uk", true }, @@ -15030,14 +15328,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "grsecurity.net", true }, { "gruble.de", true }, { "gruebebraeu.ch", true }, - { "gruelang.org", true }, { "gruenderlehrstuhl.de", true }, { "gruene-im-rvr.de", true }, { "gruene-wattenscheid.de", true }, { "gruenes-wp.de", true }, { "gruenprint.de", true }, { "gruenstreifen-ev.de", true }, - { "grumples.biz", true }, { "grumpy.fr", true }, { "grumpygamers.com", true }, { "grunwaldzki.center", true }, @@ -15057,6 +15353,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "gsi-network.com", true }, { "gsimagebank.co.uk", true }, { "gslink.me", true }, + { "gsmbrick.com", true }, { "gsmsecurity.net", true }, { "gsrc.io", true }, { "gst.name", true }, @@ -15079,6 +15376,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "gtravers-basketmaker.co.uk", true }, { "gts-dp.de", true }, { "gtts.space", true }, + { "guajars.cl", true }, { "guanyembadalona.org", true }, { "guanzhong.ca", true }, { "guardian360.nl", true }, @@ -15100,6 +15398,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "guffr.it", true }, { "guge.ch", true }, { "gugert.net", true }, + { "guhei.net", true }, { "guhenry3.tk", true }, { "guiacidade.com.br", true }, { "guichet-entreprises.fr", true }, @@ -15114,13 +15413,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "guideo.ch", true }, { "guidepointsecurity.com", true }, { "guides-peche64.com", true }, - { "guidesetc.com", true }, { "guidetoiceland.is", false }, { "guildbase.de", true }, { "guildofmusicsupervisors.co.uk", true }, { "guillaume-briand.fr", true }, { "guillaumecote.me", true }, - { "guillaumeperrin.io", true }, { "guillemaud.me", true }, { "guim.co.uk", true }, { "guineapigmustach.es", true }, @@ -15132,6 +15429,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "gumballs.com", true }, { "gume4you.com", true }, { "gumi.ca", true }, + { "gunauc.net", true }, { "gunceloyunhileleri.com", true }, { "gunwatch.co.uk", true }, { "gunworld.com.au", true }, @@ -15160,6 +15458,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "guvernalternativa.ro", true }, { "guyeskens.be", true }, { "gv-neumann.de", true }, + { "gv-salto.nl", true }, { "gvatas.in", true }, { "gveh.de", true }, { "gvi-timing.ch", true }, @@ -15172,7 +15471,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "gw2efficiency.com", true }, { "gw2treasures.com", true }, { "gw2zone.net", true }, - { "gwa-verwaltung.de", true }, { "gwerder.net", true }, { "gwhois.org", true }, { "gwrtech.com", true }, @@ -15200,12 +15498,15 @@ static const nsSTSPreload kSTSPreloadList[] = { { "gz-bmw.com", true }, { "gza.jp", true }, { "gzitech.com", true }, + { "gzitech.net", true }, + { "gzitech.org", true }, { "gzom.ru", true }, { "h-jo.net", true }, { "h-suppo.com", true }, { "h001.ru", true }, { "h09.eu", true }, { "h0r.st", true }, + { "h10l.com", true }, { "h11.io", true }, { "h11.moe", true }, { "h1ctf.com", true }, @@ -15214,11 +15515,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "h2s-design.de", true }, { "h2u.tv", true }, { "h3artbl33d.nl", true }, + { "h3b.nl", true }, { "h3z.jp", true }, { "h404bi.com", true }, { "ha-kunamatata.de", true }, { "ha3.eu", true }, - { "ha6.ru", true }, { "haarlemsesaxofoonschool.nl", true }, { "haavard.me", true }, { "haazen.xyz", true }, @@ -15257,13 +15558,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "hackerco.com", true }, { "hackereyes.com", true }, { "hackergateway.com", true }, - { "hackerlite.xyz", true }, { "hackernet.se", true }, { "hackerone-ext-content.com", true }, { "hackerone-user-content.com", true }, { "hackerone.at", true }, { "hackerone.com", true }, { "hackerone.net", true }, + { "hackerone.org", true }, { "hackerpoints.com", true }, { "hackerschat.net", true }, { "hackerstxt.org", true }, @@ -15276,14 +15577,14 @@ static const nsSTSPreload kSTSPreloadList[] = { { "hackreone.com", true }, { "hacksecu.re", true }, { "hacksoc.co.uk", true }, - { "hackthissite.org", true }, { "hacktic.info", true }, { "hacktivis.me", true }, { "hackworx.com", false }, - { "hackzogtum-coburg.de", true }, { "hadaly.fr", true }, { "hadleighswimmingclub.co.uk", true }, { "hadouk.in", true }, + { "hadret.com", true }, + { "hadret.sh", true }, { "hadrons.org", true }, { "haefligermedia.ch", true }, { "haens.li", true }, @@ -15291,6 +15592,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "haferman.net", true }, { "haferman.org", true }, { "hafniatimes.com", true }, + { "hagiati.gr", true }, { "hagueaustralia.com.au", true }, { "haha-raku.com", true }, { "hahay.es", true }, @@ -15308,6 +15610,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "haizum.pro", true }, { "hajekdavid.cz", true }, { "hajekj.net", true }, + { "hajnzic.at", true }, { "hak5.org", true }, { "hakaru.org", true }, { "hakase.io", true }, @@ -15352,15 +15655,17 @@ static const nsSTSPreload kSTSPreloadList[] = { { "hampshiretechservices.co.uk", true }, { "hamsters-uk.org", true }, { "hana.ondemand.com", true }, - { "hanakaraku.com", true }, { "hanashi.eu", true }, { "hanbing.it", true }, { "handbrake.fr", true }, { "handcraft.eu.org", true }, { "handgelenkbandage-test.de", true }, + { "handknit.com.np", true }, { "handlecoin.com", true }, { "handleidingkwijt.com", true }, { "handmade-workshop.de", true }, + { "handmadehechoamano.com", true }, + { "handy-center.net", true }, { "handyglas.com", true }, { "handymanlondonplease.co.uk", true }, { "handynummer.online", true }, @@ -15373,12 +15678,16 @@ static const nsSTSPreload kSTSPreloadList[] = { { "hangcapnach.com", true }, { "hangouts.google.com", true }, { "hangtenseo.com", true }, + { "hankr.com", true }, + { "hanksacservice.com", true }, { "hannah.link", true }, + { "hannahi.com", true }, { "hannoluteijn.nl", true }, + { "hannover.de", true }, { "hanoibuffet.com", true }, { "hanpenblog.com", true }, + { "hansahome.ddns.net", true }, { "hansbijster.nl", true }, - { "hansch.ventures", true }, { "hanschventures.com", true }, { "hansen-kronshagen.de", true }, { "hansen.hn", true }, @@ -15391,7 +15700,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "hanu.la", true }, { "hanxv.pw", true }, { "hanyibo.com", true }, - { "hanys.xyz", true }, { "hanzubon.jp", true }, { "hao-zhang.com", true }, { "haogoodair.ca", true }, @@ -15438,11 +15746,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "hardrain980.com", true }, { "hardtfrieden.de", true }, { "hardwareschotte.de", true }, - { "harekaze.info", true }, { "haribilalic.com", true }, { "harilova.fr", true }, { "harion.fr", true }, { "harisht.me", false }, + { "haritsa.co.id", true }, { "harjitbhogal.com", true }, { "harlor.de", true }, { "harmfarm.nl", true }, @@ -15468,10 +15776,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "hartzer.com", true }, { "harukakikuchi.com", true }, { "haruue.moe", true }, + { "harvarddharma.org", true }, { "harvestapp.com", true }, { "harvester.fr", true }, { "harveyauzorst.com", true }, - { "harveymilton.com", true }, { "has-no-email-set.de", false }, { "has.work", true }, { "hasdf.de", true }, @@ -15496,7 +15804,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "haskovec.com", true }, { "hasselbach-dellwig.de", true }, { "hatarisecurity.co.ke", true }, - { "hatcherlawgroupnm.com", true }, + { "hatpakha.com", true }, { "hatul.info", true }, { "haucke.xyz", true }, { "hauntedfishtank.com", false }, @@ -15504,6 +15812,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "haus-garten-test.de", true }, { "haus-henne.de", true }, { "haus-zeitlos.de", true }, + { "hausarztpraxis-linn.de", true }, { "haushenne.de", true }, { "hausjugo.de", true }, { "haustechnik-breu.de", true }, @@ -15521,7 +15830,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "haveibeenpwned.com", true }, { "havellab.de", true }, { "havelland-obstler.de", true }, - { "haven-moon.com", true }, { "havenstrategies.com", true }, { "haverstack.com", true }, { "havetherelationshipyouwant.com", true }, @@ -15556,7 +15864,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "hd-offensive.at", false }, { "hd-only.org", true }, { "hd-outillage.com", true }, - { "hda.me", true }, { "hdc.cz", true }, { "hdcamvids.com", true }, { "hdcenter.cc", true }, @@ -15583,6 +15890,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "health.gov", true }, { "health.graphics", true }, { "healthcare.gov", false }, + { "healthcultureexpo.com", true }, { "healtheals.com", true }, { "healtheffectsofasbestos.com", true }, { "healthery.com", true }, @@ -15604,6 +15912,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "healthypeople.gov", true }, { "healthyteame.com", true }, { "heap.zone", true }, + { "heapkeeper.org", true }, { "hearmeraw.uk", true }, { "heart.taxi", true }, { "heartbeat24.de", true }, @@ -15630,7 +15939,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "heavensattic.co.uk", true }, { "heavensinferno.net", true }, { "heavyequipments.org", true }, - { "heayao.com", true }, { "hebergeurssd.com", true }, { "hebikhiv.nl", true }, { "hebingying.cn", true }, @@ -15642,6 +15950,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "heckelektro.de", true }, { "heckerundknopp.de", true }, { "heckticmedia.com", true }, + { "hedgeschool.ie", true }, { "hedonism.org", true }, { "hedonistic-imperative.com", true }, { "hedonistic.org", true }, @@ -15683,6 +15992,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "heistheguy.com", true }, { "heitland-it.de", true }, { "heiwa-valve.co.jp", true }, + { "hejahanif.se", true }, { "hejianpeng.cn", true }, { "heka.ai", true }, { "helber-it-services.de", true }, @@ -15730,6 +16040,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "hengelsportdeal.com", true }, { "hengstumone.com", true }, { "henkboelman.com", true }, + { "henkbrink.com", true }, { "henker.net", true }, { "henkverlinde.com", false }, { "henley-computer-repairs.co.uk", true }, @@ -15765,6 +16076,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "herdserv.de", true }, { "herebedragons.io", true }, { "herecsrymy.cz", true }, + { "heren.fashion", true }, { "heritagebaptistchurch.com.ph", true }, { "herkam.pl", true }, { "hermanbrouwer.nl", true }, @@ -15805,10 +16117,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "hesyifei.com", true }, { "hetene.nl", true }, { "hethely.ch", true }, - { "hetmer.cz", true }, { "heute-kaufen.de", true }, { "heute.training", true }, - { "heverhagen.rocks", true }, { "hevertonfreitas.com.br", true }, { "hex.bz", true }, { "hex.nl", true }, @@ -15817,12 +16127,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "hexclock.io", true }, { "hexcode.in", true }, { "hexed.it", true }, + { "hexiaohu.cn", true }, { "hexicurity.com", true }, { "hexid.me", true }, { "hexieshe.com", true }, { "hexony.com", true }, { "hexr.org", true }, - { "hexstream.net", true }, { "hexstream.xyz", true }, { "hexstreamsoft.com", true }, { "hexxagon.com", true }, @@ -15838,6 +16148,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "hgvnet.de", true }, { "hgw168.com", true }, { "hh-medic.com", true }, + { "hh-wolke.dedyn.io", true }, { "hhgdo.de", true }, { "hhhdb.com", true }, { "hhidr.org", true }, @@ -15849,6 +16160,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "hicl.org", true }, { "hicoria.com", true }, { "hidbo.de", true }, + { "hiddendepth.ie", false }, { "hiddenhillselectric.com", true }, { "hiddenhillselectrical.com", true }, { "hiddenhillselectrician.com", true }, @@ -15870,7 +16182,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "highlevelwoodlands.com", true }, { "highlightsfootball.com", true }, { "highlnk.com", true }, - { "highperformancehvac.com", true }, { "highspeed-arnsberg.de", true }, { "highspeedinternet.my", true }, { "highspeedinternetservices.ca", true }, @@ -15882,7 +16193,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "hikingguy.com", true }, { "hilahdih.cz", true }, { "hilaolu.studio", true }, - { "hilariousbeer.com.mx", true }, { "hilaryhutler.com", true }, { "hilchenba.ch", true }, { "hilde.link", true }, @@ -15916,13 +16226,14 @@ static const nsSTSPreload kSTSPreloadList[] = { { "hiqfranchise.co.uk", true }, { "hiqhub.co.uk", false }, { "hiqonline.co.uk", true }, + { "hirakatakoyou.org", true }, { "hirake55.com", true }, { "hiratake.xyz", true }, { "hire-a-coder.de", true }, { "hireabouncycastle.net", true }, { "hirefitness.co.uk", true }, { "hiresteve.ca", true }, - { "hiretech.com", true }, + { "hirevo.eu", true }, { "hirezzportal.com", true }, { "hiring-process.com", true }, { "hiromuogawa.com", true }, @@ -15930,6 +16241,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "hirte-digital.de", true }, { "hirzaconsult.ro", true }, { "hisbrucker.net", true }, + { "hisgifts.com.au", true }, { "hisingensck.se", true }, { "hisnet.de", true }, { "hispanic.dating", true }, @@ -15954,13 +16266,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "hiv-symptome.de", true }, { "hiv.com.tw", true }, { "hiv.gov", true }, - { "hivatal-info.hu", true }, { "hivatalinfo.hu", true }, { "hiverlune.net", true }, { "hiwiki.tk", true }, { "hiyacar.co.uk", true }, { "hiyobi.me", true }, - { "hiyuki2578.net", true }, { "hizzacked.xxx", true }, { "hj-mosaiques.be", true }, { "hj.rs", true }, @@ -15976,6 +16286,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "hk.search.yahoo.com", false }, { "hkbsurgery.com", true }, { "hkdobrev.com", true }, + { "hkr.at", true }, { "hks.pw", true }, { "hktkl.com", true }, { "hkustmbajp.com", true }, @@ -15987,6 +16298,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "hledejpravnika.cz", true }, { "hlfh.space", true }, { "hlidacnajemneho.cz", true }, + { "hlin.cloud", true }, { "hlinformatics.nl", true }, { "hloe0xff.ru", true }, { "hlsmandarincentre.com", true }, @@ -16022,6 +16334,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "hoe.re", true }, { "hoeft-autolackierung.de", true }, { "hoekvanholland.eu", true }, + { "hoepli.it", true }, { "hoeren.club", true }, { "hoesnelwasik.nl", true }, { "hoevenstein.nl", true }, @@ -16068,7 +16381,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "holydragoon.jp", true }, { "holygrail.games", true }, { "holyhiphopdatabase.com", true }, - { "holymolycasinos.com", true }, { "holytransaction.com", true }, { "holywhite.com", true }, { "holz.nu", true }, @@ -16080,7 +16392,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "holzundgarten.de", true }, { "holzvergaser-forum.de", true }, { "homatism.com", true }, - { "home-v.ind.in", true }, + { "home-insurance-quotes.tk", true }, { "homeautomated.com", true }, { "homebasedsalons.com.au", true }, { "homebodyalberta.com", true }, @@ -16090,6 +16402,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "homefacialpro.com", false }, { "homegardeningforum.com", true }, { "homegardenresort.nl", true }, + { "homegreenmark.com", true }, { "homehuntertoronto.com", true }, { "homehunting.pt", true }, { "homeimagician.com.au", true }, @@ -16124,7 +16437,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "honeypot.net", true }, { "hong.io", true }, { "hongoi.com", true }, - { "honkion.net", true }, { "honovere.de", true }, { "hontoir.eu", true }, { "hoodtrader.com", true }, @@ -16143,7 +16455,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "hopesanddreams.org.uk", true }, { "hopla.sg", true }, { "hoplongtech.com", true }, - { "hoponmedia.de", true }, { "hopps.me", true }, { "hoppyx.com", true }, { "hor.website", true }, @@ -16162,7 +16473,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "hornyforhanzo.com", true }, { "horodance.dk", true }, { "horrell.ca", true }, - { "horrendous-servers.com", true }, { "horrormovies.gr", true }, { "horsehunter.co.uk", true }, { "horstmanshof.eu", true }, @@ -16199,8 +16509,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "hostmodern.com.au", true }, { "hosts.cf", true }, { "hostserv.org", true }, - { "hostworkz.com", true }, - { "hosyaku.gr.jp", true }, { "hotcandlestick.com", true }, { "hotchillibox.com", true }, { "hotcoin.io", true }, @@ -16216,6 +16524,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "hotelident.de", true }, { "hotello.io", true }, { "hotelmap.com", true }, + { "hotelpostaorvieto.it", true }, { "hotels-insolites.com", true }, { "hotels3d.com", true }, { "hotels4teams.com", true }, @@ -16274,16 +16583,19 @@ static const nsSTSPreload kSTSPreloadList[] = { { "howtogosolar.org", true }, { "howtoinstall.co", true }, { "howtolaser.com", true }, + { "howtoteachviolin.com", true }, { "howtotech.de", true }, { "hozana.si", false }, { "hp-work.net", true }, { "hp42.de", true }, { "hpac-portal.com", true }, { "hpbn.co", true }, + { "hpepub.com", true }, { "hpisavageforum.com", true }, { "hpkp-faq.de", true }, { "hpnow.com.br", true }, { "hps.hu", true }, + { "hquest.pro.br", true }, { "hqwebhosting.tk", false }, { "hr-tech.shop", true }, { "hr98.xyz", true }, @@ -16318,6 +16630,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "hsmr.cc", true }, { "hsn.com", true }, { "hsr.gov", false }, + { "hsts.eu", true }, { "hsts.me", true }, { "hstsfail.appspot.com", true }, { "hstspreload.appspot.com", true }, @@ -16341,6 +16654,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "htsure.ma", true }, { "http2.eu", true }, { "http2.pro", true }, + { "https-rulesets.org", true }, { "https.dk", true }, { "https.jetzt", true }, { "https4all.org", true }, @@ -16359,17 +16673,18 @@ static const nsSTSPreload kSTSPreloadList[] = { { "hu8588.com", true }, { "hu8777.com", true }, { "hu8bet.com", true }, - { "hu8hu8.com", true }, { "hua-in.com", true }, { "hua-in.net", true }, { "hua-li88.com", true }, { "hua-li88.net", true }, { "huagati.com", true }, { "huahinpropertylisting.com", true }, + { "huangjiaint.com", true }, { "huangjingjing.com", true }, { "huangliangbo.com", true }, { "huangting.me", true }, { "huangzenghao.cn", false }, + { "huaqian.art", true }, { "huashan.co.uk", true }, { "huaxueba.com", true }, { "hub.org.ua", true }, @@ -16378,7 +16693,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "huber-informatik.de", true }, { "hubok.net", true }, { "hubrecht.at", true }, - { "hubrick.com", true }, { "hubspot.com", true }, { "huchet.me", true }, { "hudebnibazarmixer.cz", true }, @@ -16387,12 +16701,14 @@ static const nsSTSPreload kSTSPreloadList[] = { { "huduser.gov", true }, { "huendeleskopfhuette.de", true }, { "huersch.com", true }, + { "hues-in-lee.de", true }, { "huffduffer.com", true }, { "huffsinsurance.com", true }, { "hughtodd.ink", true }, { "hugi.is", true }, { "hugizrecords.com", true }, { "huglen.info", true }, + { "hugo6.com", true }, { "hugofs.com", true }, { "hugolynx.fr", true }, { "huguesblanchard.paris", true }, @@ -16421,6 +16737,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "humanenrich.com", true }, { "humanesources.com", true }, { "humanity.com", true }, + { "humankode.com", true }, { "humans.io", true }, { "humanzee.com", true }, { "humblebee.at", true }, @@ -16453,7 +16770,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "humeur.de", true }, { "hummy.tv", true }, { "humorcaliente.com", true }, - { "humorce.com", false }, { "humpchies.com", true }, { "humpen.se", true }, { "humppakone.com", true }, @@ -16463,13 +16779,14 @@ static const nsSTSPreload kSTSPreloadList[] = { { "hundeverwaltung.de", true }, { "hundter.com", true }, { "hunstoncanoeclub.co.uk", true }, + { "hunter-read.com", true }, { "hunter.io", true }, { "hunterkehoe.com", true }, { "huntexpired.com", true }, { "huntingdonbouncers.co.uk", true }, { "huntingdonlifesciences.com", true }, { "huntsmansecurity.com", true }, - { "huoduan.com", true }, + { "huntsvillecottage.ca", true }, { "huonit.com.au", true }, { "hup.hu", true }, { "hupp.se", true }, @@ -16492,7 +16809,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "huutonauru.net", true }, { "huwcbjones.co.uk", true }, { "huwcbjones.uk", true }, + { "huxcoconstruction.com", true }, { "huxley.net", true }, + { "huynhviet.com", true }, { "huyvu.nl", true }, { "hvdbox.de", true }, { "hveradistributions.com", true }, @@ -16508,6 +16827,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "hxp.io", true }, { "hxsf.me", true }, { "hxying.com", true }, + { "hybridragon.net", true }, { "hybridworx.com", true }, { "hybridworx.de", true }, { "hybridworx.eu", true }, @@ -16567,7 +16887,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "i-telligence.de", true }, { "i-verbi.it", true }, { "i00.eu", true }, - { "i1314.gdn", true }, + { "i1314.gdn", false }, { "i1place.com", true }, { "i2b.ro", true }, { "i5y.co.uk", true }, @@ -16575,13 +16895,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "i66.me", true }, { "i879.com", true }, { "ia.net", true }, - { "ia1000.com", true }, { "iaco.li", true }, { "iactu.info", true }, { "iaeste.no", true }, { "iaeste.or.jp", true }, { "iaf.gov", true }, - { "iahemobile.net", true }, + { "iahemobile.net", false }, { "iainsimms.co.uk", true }, { "iainsimms.com", true }, { "iainsimms.me", true }, @@ -16593,6 +16912,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "iamhansen.xyz", true }, { "iamjoshellis.com", true }, { "iamlbk.com", true }, + { "iamlzh.com", true }, { "iamtheib.me", true }, { "iamtonyarthur.com", true }, { "iamusingtheinter.net", true }, @@ -16606,9 +16926,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "iankmusic.com", true }, { "ianmooreis.me", true }, { "ianmoriarty.com.au", true }, - { "ianwalsh.org", true }, + { "ianwalsh.org", false }, { "iap.network", true }, { "ias-gruppe.net", true }, + { "iassess.eu", true }, { "iatfei.com", true }, { "iavian.com", true }, { "iba.community", true }, @@ -16622,15 +16943,17 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ibigawamizueco.com", true }, { "ibin.co", true }, { "ibiz.mk", true }, - { "ibnw.de", true }, { "ibodyiq.com", true }, { "ibpegasus.tk", true }, { "ibrainmedicine.org", true }, { "ibrom.eu", true }, { "ibstyle.tk", true }, + { "ibuki.run", true }, { "ibwc.gov", true }, { "ic-lighting.com.au", true }, + { "ic-spares.com", true }, { "ic3.gov", true }, + { "icabanken.se", true }, { "icafecash.com", true }, { "icake.life", true }, { "icanhasht.ml", true }, @@ -16638,6 +16961,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "icasture.top", true }, { "icbemp.gov", true }, { "iccpublisher.com", true }, + { "ice.xyz", true }, { "iceberg.academy", true }, { "icebook.co.uk", true }, { "icecars.net", true }, @@ -16654,13 +16978,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "icloudlogin.com", true }, { "icmhd.ch", true }, { "icmp2018.org", true }, - { "icmshoptrend.com", true }, { "icnsoft.me", true }, { "icnsoft.org", true }, + { "icobench.com", true }, { "icodeconnect.com", true }, { "icoh.it", true }, { "iconomi.net", true }, - { "icowhitepapers.co", true }, + { "icpc.pp.ua", true }, { "icq-project.net", true }, { "icsadviseurs.nl", true }, { "icsfinomornasco.gov.it", true }, @@ -16670,7 +16994,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ict-radar.com", true }, { "ict-radar.nl", true }, { "ictcareer.ch", true }, - { "ictinforensics.org", true }, { "ictl.eu", true }, { "ictradar.com", true }, { "icyapril.com", true }, @@ -16684,29 +17007,31 @@ static const nsSTSPreload kSTSPreloadList[] = { { "id0-rsa.pub", true }, { "id7.fr", true }, { "idaeus.eu", true }, - { "idafauziyah.com", true }, { "idahoansforliberty.net", true }, { "idarv.com", true }, { "idaspis.com", true }, { "idatha.de", true }, + { "idblab.tk", true }, { "idc-business.be", true }, - { "idc.yn.cn", true }, { "idconsult.nl", true }, { "idealimplant.com", true }, { "idealinflatablehire.co.uk", true }, { "idealninajemce.cz", false }, + { "idealsegurancaeletronica.com.br", true }, { "idealtruss.com", true }, { "idealtruss.com.tw", true }, { "idealwhite.space", true }, { "ideaman924.com", true }, { "ideashop.com", true }, { "ideaweb.de", true }, + { "ideiasefinancas.com.br", true }, { "idenamaislami.com", true }, { "idensys.nl", false }, { "ident-clinic.be", true }, + { "identassist.com", true }, { "identifyme.net", true }, + { "identigraf.center", true }, { "identity.plus", true }, - { "identitytheft.gov", true }, { "idered.net", true }, { "idesignstudio.de", true }, { "idexxpublicationportal.com", true }, @@ -16714,12 +17039,14 @@ static const nsSTSPreload kSTSPreloadList[] = { { "idgard.de", false }, { "idgateway.co.uk", true }, { "idhosts.co.id", true }, + { "idiotentruppe.de", true }, { "idisposable.co.uk", true }, { "idlethoughtsandramblings.com", true }, { "idmanagement.gov", true }, { "idmobile.co.uk", true }, { "idndx.com", true }, { "idoc24.com", true }, + { "idodiandina.com", true }, { "idolf.dk", true }, { "idolish7.fun", true }, { "idolknow.com", true }, @@ -16747,14 +17074,15 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ieeespmb.org", true }, { "ieji.de", false }, { "iemas.azurewebsites.net", true }, + { "iemb.tk", true }, { "ienakanote.com", false }, { "ies-italia.it", true }, - { "ietsdoenofferte.nl", true }, { "ieval.ro", true }, { "iewar.com", true }, { "ifamily.top", false }, { "ifangpei.cn", true }, { "ifangpei.com.cn", true }, + { "ifcfg.jp", true }, { "ifelse.io", true }, { "ifengge.cn", true }, { "ifengge.me", true }, @@ -16767,7 +17095,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ifort.fr", true }, { "ifosep.fr", true }, { "ifoss.me", true }, - { "ifreetion.cn", true }, { "ifsac.org", true }, { "ifsclist.com", true }, { "ifsr.de", true }, @@ -16789,9 +17116,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "igk.nz", true }, { "igm-be.ch", true }, { "igmus.org", true }, + { "ignace72.eu", true }, { "ignacjanskiednimlodziezy.pl", true }, { "ignat-mag.com", true }, { "ignat.by", true }, + { "ignatovich.by", true }, { "ignatovich.me", true }, { "ignet.gov", true }, { "ignitedlocal.com", true }, @@ -16802,8 +17131,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "igsmgmt.com", true }, { "iguana.com.ec", false }, { "ih8sn0w.com", true }, - { "iha6.com", true }, { "ihacklabs.com", true }, + { "ihakkitekin.com", true }, { "ihatethissh.it", true }, { "ihc.im", true }, { "ihkk.net", true }, @@ -16818,7 +17147,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ihtdenisjaccard.com", true }, { "ii74.com", true }, { "iiit.pl", true }, - { "iilin.com", false }, { "iiong.com", false }, { "iirii.com", true }, { "iix.se", true }, @@ -16831,6 +17159,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ikarate.ru", true }, { "ikarr.com", true }, { "ikeacareers.co.uk", true }, + { "ikebukuro-shame.com", true }, { "ikedaquotes.org", true }, { "ikespta.com", true }, { "ikeyless.com", true }, @@ -16843,7 +17172,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ikkev.de", true }, { "ikkoku.de", true }, { "iklive.org", false }, - { "ikraenglish.com", true }, { "ikulist.me", true }, { "ikvts.de", true }, { "ikwilthepiratebay.org", true }, @@ -16887,9 +17215,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ilmiobusinessonline.it", true }, { "ilmiogiardiniere.it", true }, { "ilmuk.org", false }, + { "ilookz.nl", true }, { "ilove.fish", true }, { "ilrg.com", true }, - { "iltec.ru", true }, { "iltisim.ch", true }, { "ilweb.es", true }, { "ilya.pp.ua", true }, @@ -16948,16 +17276,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "imkerei-freilinger.de", false }, { "imkerverein-moenchswald.de", true }, { "imlinan.com", true }, - { "imlonghao.com", true }, { "immaterium.de", true }, - { "immaternity.com", true }, { "immatix.xyz", true }, { "immersion-pictures.com", true }, { "immersivewebportal.com", true }, { "immigrationdirect.com.au", true }, { "immo-agentur.com", true }, { "immo-passion.net", true }, - { "immo-vk.de", true }, { "immobiliarecapitani.com", true }, { "immobilien-badlippspringe.de", true }, { "immobilien-in-istanbul.de", true }, @@ -17013,6 +17338,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "imwnk.cn", true }, { "imydl.com", true }, { "imydl.tech", true }, + { "imyjy.cn", true }, + { "imyrs.cn", true }, { "imyunya.com", true }, { "imyvm.com", true }, { "imyz.tw", true }, @@ -17031,9 +17358,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "inbox.google.com", true }, { "inbulgaria.info", true }, { "incarna.co", true }, + { "incert.cn", true }, { "incertint.com", true }, { "inchcape-fleet-autobid.co.uk", true }, + { "inche-ali.com", true }, { "inchenaim.com", true }, + { "inchidi.id", true }, { "incigma.com", true }, { "includesubdomains.preloaded.test", true }, { "includesubdomains2.preloaded.test", true }, @@ -17081,6 +17411,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "indusfastremit-us.com", true }, { "indusfastremit.com", true }, { "indust.me", true }, + { "industriafranchini.com", true }, { "industrialstarter.com", true }, { "indybay.org", true }, { "ineardisplay.com", true }, @@ -17097,15 +17428,19 @@ static const nsSTSPreload kSTSPreloadList[] = { { "inf-fusion.ca", true }, { "inference.biz.tr", true }, { "infermiere.roma.it", true }, + { "inff.info", true }, { "inficom.org", true }, { "infinite.hosting", true }, { "infinitegroup.info", true }, { "infinitiofallentownparts.com", true }, { "infinitiofaugustaparts.com", true }, { "infinitioflynnwoodparts.com", true }, + { "infinitomaisum.com", true }, { "infinity.to", true }, + { "infinitybas.com", true }, { "infinitybc.se", true }, { "infinityengine.org", true }, + { "infinityepos.co.uk", true }, { "infirmiere-canadienne.com", true }, { "infirmieredevie.ch", true }, { "inflatablehire-scotland.co.uk", true }, @@ -17123,15 +17458,17 @@ static const nsSTSPreload kSTSPreloadList[] = { { "info-screw.com", true }, { "infobae.com", true }, { "infocity-tech.fr", true }, - { "infocoin.es", true }, { "infocommsociety.com", true }, { "infocon.org", true }, { "infocusvr.net", true }, { "infogrfx.com", true }, { "infomegastore.com", true }, + { "infomir.eu", true }, { "infomisto.com", true }, + { "infopagina.es", true }, { "infopier.sg", true }, { "infopulsa.com", true }, + { "infopuntzorg.nl", true }, { "infor-allaitement.be", true }, { "informaciondeciclismo.com", true }, { "informatiebeveiliging.nl", true }, @@ -17140,7 +17477,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "informhealth.com", true }, { "informnapalm.org", true }, { "infosec-handbook.eu", true }, - { "infosec.exchange", true }, + { "infosec.exchange", false }, { "infosec.pizza", true }, { "infosec.wiki", true }, { "infosenior.ch", true }, @@ -17153,13 +17490,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "infr.red", true }, { "infra.land", true }, { "infra.press", true }, - { "infradio.am", true }, { "infrafire.com", true }, { "infraflip.com", true }, { "infraflux.com", true }, { "infrafusion.com", true }, { "infranium.com", true }, { "infranium.eu", true }, + { "infranium.info", true }, { "infranium.net", true }, { "infranium.org", true }, { "infranotes.com", true }, @@ -17167,6 +17504,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "infrapirtis.lt", true }, { "infrarank.net", true }, { "infrathink.com", true }, + { "infuzeit.com.au", true }, { "ing-buero-junk.de", true }, { "ing89.cc", true }, { "ing89.com", true }, @@ -17180,6 +17518,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ingerhy.com", true }, { "ingi.ga", true }, { "ingjobs.ch", true }, + { "inglebycakes.co.uk", true }, { "inglesnarede.com.br", true }, { "ingo-schlueter.de", true }, { "ingoschlueter.de", true }, @@ -17187,6 +17526,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "inhaltsangabe.de", true }, { "inheritestate.com", true }, { "inhouseents.co.uk", true }, + { "iniiter.com", true }, { "inima.org", true }, { "inios.fr", true }, { "inishbofin.ie", true }, @@ -17197,7 +17537,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ink.horse", true }, { "inkable.com.au", true }, { "inkeliz.com", true }, - { "inkhor.se", true }, { "inkontriamoci.com", true }, { "inksay.com", true }, { "inkspire.co.uk", true }, @@ -17228,10 +17567,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "innovate-indonesia.com", true }, { "innovation-workshop.ro", true }, { "innovation.gov", false }, + { "innovum.cz", false }, { "innsalzachsingles.de", true }, { "innwan.com", true }, { "inoa8.com", true }, - { "inobun.jp", true }, { "inovat.ma", true }, { "inovatec.com", true }, { "inovatecsystems.com", true }, @@ -17242,13 +17581,14 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ins1gn1a.com", true }, { "insblauehinein.nl", true }, { "inscomers.net", true }, + { "inscripcionessena.com", true }, { "insecure.org.je", true }, { "insertcoins.net", true }, { "insgesamt.net", true }, { "inshapenutrition.com.br", true }, - { "insho.fashion", true }, { "inside19.com", true }, { "insideaudit.com", true }, + { "insidethefirewall.tk", true }, { "insightera.co.th", true }, { "insighti.com", true }, { "insighti.eu", true }, @@ -17276,12 +17616,14 @@ static const nsSTSPreload kSTSPreloadList[] = { { "instantkhabar.com", true }, { "instava.cz", true }, { "instawi.com", true }, + { "instead.com.au", true }, { "instela.com", true }, { "instelikes.com.br", true }, { "instics.com", true }, { "instinctive.io", true }, { "instinctiveads.com", true }, { "institut-confucius-montpellier.org", true }, + { "institutmaupertuis.hopto.org", true }, { "institutolancaster.com", false }, { "instrumart.ru", false }, { "insult.es", true }, @@ -17300,8 +17642,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "integralkk.com", true }, { "integratedintegrations.xyz", true }, { "integratedmedicalonline.com", true }, + { "integrateur-web-paris.com", true }, { "integraxor.com.tw", true }, { "integrity.gov", true }, + { "integrityokc.com", true }, { "integrityoklahoma.com", true }, { "integrogroup.com", true }, { "integromat.com", true }, @@ -17314,12 +17658,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "intelhost.net", true }, { "intellar.com", true }, { "intellectdynamics.com", true }, + { "intelliance.eu", true }, { "intelligence-explosion.com", true }, { "intellinetixvibration.com", true }, { "intelly.nl", true }, { "intelly365.nl", true }, { "intencje.pl", true }, - { "intensifyrsvp.com.au", true }, { "inter-corporate.com", true }, { "inter-culinarium.com", true }, { "interaffairs.com", true }, @@ -17337,7 +17681,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "interiery-waters.cz", true }, { "interimages.fr", true }, { "interiordesignsconcept.com", true }, - { "interiortradingco.com.au", true }, { "interisaudit.com", true }, { "interlingvo.biz", true }, { "intermax.nl", true }, @@ -17345,8 +17688,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "internalkmc.com", true }, { "internaluse.net", true }, { "international-arbitration-attorney.com", true }, + { "international-books.org", true }, { "international-nash-day.com", true }, { "internationalfashionjobs.com", true }, + { "internationalschoolnewyork.com", true }, { "internationaltalento.it", true }, { "internect.co.za", true }, { "internet-aukcion.info", true }, @@ -17354,6 +17699,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "internetaanbieders.eu", true }, { "internetbank.swedbank.se", true }, { "internetbugbounty.com", true }, + { "internetbusiness-howto.com", true }, { "internetcom.jp", true }, { "internetfonden.se", true }, { "internethealthreport.org", true }, @@ -17396,6 +17742,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "intune.life", true }, { "intvonline.com", true }, { "intxt.net", true }, + { "inumcoeli.com.br", true }, { "inup.jp", true }, { "inusasha.de", true }, { "inuyasha-petition.tk", true }, @@ -17420,7 +17767,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "investor.gov", true }, { "investoren-beteiligung.de", true }, { "investorforms.com", true }, - { "investorloanshub.com", true }, { "investosure.com", true }, { "investpay.ru", true }, { "invioinc.com", true }, @@ -17430,6 +17776,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "invisionita.com", true }, { "invisiverse.com", true }, { "invitacionesytarjetas.gratis", true }, + { "invitation-factory.tk", true }, { "invitescene.com", true }, { "invitethemhome.com", true }, { "invkao.com", true }, @@ -17500,6 +17847,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ipo-times.jp", true }, { "ipokabu.net", true }, { "ipomue.com", false }, + { "iposm.net", true }, { "ipresent.com", true }, { "iprim.ru", true }, { "iproducemusic.com", true }, @@ -17517,7 +17865,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ipv6-handbuch.de", true }, { "ipv6.gr", true }, { "ipv6.jetzt", true }, - { "ipv6demo.de", true }, { "ipv6vpn.net", true }, { "ipv6wallofshame.com", true }, { "ipv8.net", true }, @@ -17534,6 +17881,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "irayo.net", true }, { "irc-results.com", true }, { "ircmett.de", true }, + { "irdvb.com", true }, { "iready.ro", true }, { "ireef.tv", true }, { "iren.ch", true }, @@ -17558,6 +17906,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ironcarnival.com", true }, { "irondaleirregulars.com", true }, { "ironfistdesign.com", true }, + { "ironhide.de", true }, { "ironpeak.be", true }, { "irrewilse.se", true }, { "irritant.net", true }, @@ -17566,6 +17915,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "is-going-to-rickroll.me", true }, { "is-sw.net", true }, { "isaacdgoodman.com", true }, + { "isaackabel.cf", true }, + { "isaackabel.ga", true }, + { "isaackabel.gq", true }, + { "isaackabel.ml", true }, + { "isaackabel.tk", true }, { "isaackhor.com", true }, { "isaacman.tech", true }, { "isaacmorneau.com", true }, @@ -17590,7 +17944,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "isecrets.se", true }, { "iservicio.mx", true }, { "isfff.com", true }, - { "isfriday.com", true }, { "isgp-studies.com", true }, { "ishamf.com", true }, { "ishangirdhar.com", true }, @@ -17606,18 +17959,18 @@ static const nsSTSPreload kSTSPreloadList[] = { { "isitcoffeetime.com", true }, { "isitdoneyet.gov", true }, { "isitpatchtuesday.com", true }, + { "isitrest.info", true }, { "isitup.org", true }, { "iskaron.de", true }, { "iskaz.rs", true }, { "iskkk.com", true }, { "iskkk.net", true }, { "iskogen.nu", true }, - { "islam.si", true }, { "islamonline.net", true }, { "islandhosting.com", true }, - { "islazia.fr", true }, { "isletech.net", true }, { "isliada.org", true }, + { "islief.com", true }, { "islykaithecutest.cf", true }, { "islykaithecutest.ml", true }, { "ismailkarsli.com", true }, @@ -17626,6 +17979,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ismetroonfiretoday.com", true }, { "ismywebsitepenalized.com", true }, { "isn.cz", true }, + { "iso27032.com", true }, { "isognattori.com", true }, { "isolta.com", true }, { "isolta.de", true }, @@ -17660,6 +18014,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ist-intim.de", true }, { "istdieweltschonuntergegangen.de", true }, { "isteinbaby.de", true }, + { "istheapplestoredown.com", true }, { "istheapplestoredown.de", true }, { "isthedoorlocked.com", true }, { "istheinternetdown.com", true }, @@ -17675,7 +18030,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "istschonsolangeinrente.de", true }, { "istsi.org", true }, { "isuzupartscenter.com", true }, - { "isv.online", true }, { "isvbscriptdead.com", true }, { "isvsecwatch.org", true }, { "isyu.xyz", true }, @@ -17686,6 +18040,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "it-faul.de", true }, { "it-fernau.com", true }, { "it-jobbank.dk", true }, + { "it-kron.de", true }, { "it-maker.eu", true }, { "it-rotter.de", true }, { "it-schamans.de", true }, @@ -17695,7 +18050,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "it-service24.com", true }, { "it-shamans.de", true }, { "it-shamans.eu", true }, - { "it-sysoft.com", true }, { "it-ti.me", true }, { "it-world.eu", true }, { "it.search.yahoo.com", false }, @@ -17715,9 +18069,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "itamservices.nl", true }, { "itb-online.co.uk", true }, { "itblog.pp.ua", true }, - { "itbrief.co.nz", true }, - { "itbrief.com.au", true }, - { "itchybrainscentral.com", true }, + { "itchy.nl", true }, { "itcko.sk", true }, { "itdashboard.gov", true }, { "itds-consulting.com", true }, @@ -17741,8 +18093,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ithakama.cz", true }, { "ithenrik.com", true }, { "ithinc.net", true }, - { "itilo.de", true }, - { "itiomassagem.com.br", true }, + { "itikon.com", true }, { "itis.gov", true }, { "itis4u.ch", true }, { "itkaufmann.at", true }, @@ -17751,14 +18102,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "itmindscape.com", true }, { "itn.co.uk", true }, { "itneeds.tech", true }, - { "itnews-bg.com", true }, { "itnota.com", true }, { "itochan.jp", true }, { "itogoyomi.com", true }, { "itooky.com", true }, { "itpro.ua", true }, - { "itrack.in.th", true }, { "itraveille.fr", true }, + { "itreallyaddsup.com", true }, { "itring.pl", false }, { "itruss.com.tw", true }, { "itruth.tk", true }, @@ -17769,6 +18119,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "itsanicedoor.co.uk", true }, { "itsasaja.com", true }, { "itsaw.de", true }, + { "itsblue.de", true }, { "itsdcdn.com", true }, { "itsecblog.de", true }, { "itsecguy.com", true }, @@ -17786,12 +18137,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "itsstefan.eu", true }, { "itstatic.tech", true }, { "itswincer.com", true }, - { "ittop-gabon.com", true }, { "itzap.com.au", true }, { "iusedtosmoke.com", true }, { "iuyos.com", true }, + { "ivact.co.jp", true }, { "ivanbenito.com", true }, - { "ivanboi.com", true }, { "ivancacic.com", false }, { "ivanmeade.com", true }, { "ivaoru.org", true }, @@ -17860,10 +18210,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "j2ee.cz", true }, { "j2h.de", true }, { "j3e.de", true }, - { "j8y.de", true }, { "ja-dyck.de", true }, { "ja-gps.com.au", true }, - { "ja-publications.agency", true }, + { "ja-publications.agency", false }, { "ja.md", true }, { "jaakkohannikainen.fi", true }, { "jaalits.com", true }, @@ -17886,6 +18235,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "jackdawphoto.co.uk", true }, { "jackdelik.de", true }, { "jackf.me", true }, + { "jackhoodtransportation.com", true }, { "jackingramnissanparts.com", true }, { "jackpothappy.com", true }, { "jackrusselterrier.com.br", true }, @@ -17894,6 +18244,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "jacksonvillestation.com", true }, { "jacksutton.info", true }, { "jackyliao123.tk", true }, + { "jackyyf.com", false }, { "jaco.by", true }, { "jacobamunch.com", true }, { "jacobdevans.com", true }, @@ -17906,6 +18257,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "jadara.info", true }, { "jadchaar.me", true }, { "jaegerlacke.de", true }, + { "jaetech.org", true }, { "jagbouncycastles.co.uk", true }, { "jagerman.com", true }, { "jaguarlandrover-asse.be", true }, @@ -17963,6 +18315,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "jameshost.net", true }, { "jameshunt.us", false }, { "jamesj.me", false }, + { "jamesjboyer.com", true }, { "jamesmarsh.net", true }, { "jamesmilazzo.com", true }, { "jamesmorrison.me", true }, @@ -17972,7 +18325,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "jamesross.name", true }, { "jamesrussellward.co.uk", true }, { "jamessmith.me.uk", true }, + { "jamesturnerstickley.com", true }, { "jamhost.org", true }, + { "jamie-read-photography.com", true }, { "jamie.ie", true }, { "jamielarter.ca", true }, { "jamielinux.com", true }, @@ -17986,7 +18341,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "jammysplodgers.co.uk", true }, { "jamon.ca", true }, { "jamonsilva.com", true }, - { "jamstatic.fr", false }, + { "jamstatic.fr", true }, { "jan-and-maaret.de", true }, { "jan-bucher.ch", true }, { "jan-hill.com", true }, @@ -18006,7 +18361,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "janikrabe.com", true }, { "janjoris.nl", true }, { "jankoepsel.com", true }, + { "janmg.com", true }, { "jann.is", true }, + { "jannekekaasjager.nl", true }, { "jannisfink.de", true }, { "jannyrijneveld.nl", true }, { "janoberst.com", true }, @@ -18018,7 +18375,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "jaot.info", true }, { "japaniac.de", false }, { "japanwatches.xyz", true }, - { "jape.today", true }, + { "japon-japan.com", true }, { "jardin-exotique-rennes.fr", true }, { "jardinderline.ch", true }, { "jardiniersduminotaure.fr", true }, @@ -18026,7 +18383,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "jaredfernandez.com", true }, { "jaredfraser.com", true }, { "jarivisual.com", true }, - { "jarl.ninja", true }, { "jarniashop.se", true }, { "jaroku.com", true }, { "jarondl.net", true }, @@ -18040,7 +18396,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "jason.re", true }, { "jasonamorrow.com", true }, { "jasongerber.ch", true }, - { "jasonian-photo.com", true }, + { "jasonian-photo.com", false }, { "jasonmili.online", true }, { "jasonsansone.com", true }, { "jasper.link", true }, @@ -18052,6 +18408,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "javalestari.com", true }, { "javamilk.com", true }, { "javierburgos.net", true }, + { "jaxxnet.co.uk", true }, + { "jaxxnet.org", true }, { "jaycouture.com", true }, { "jayfreestone.com", true }, { "jaymecd.rocks", true }, @@ -18076,12 +18434,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "jcadg.com", true }, { "jcai.dk", true }, { "jcaicedo.com", true }, + { "jcb.com", true }, { "jcbgolfandcountryclub.com", true }, { "jci.cc", true }, { "jcra.net", true }, { "jctf.team", true }, { "jcwodan.nl", true }, - { "jcyz.cf", true }, { "jd-group.co.uk", true }, { "jd1.de", true }, { "jdassets.com", true }, @@ -18119,9 +18477,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "jediweb.com.au", true }, { "jedwarddurrett.com", true }, { "jeec.ist", true }, - { "jeepeg.com", true }, { "jeepmafia.com", true }, - { "jeff.forsale", true }, { "jeffanderson.me", true }, { "jeffcasavant.com", false }, { "jeffcloninger.net", true }, @@ -18150,6 +18506,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "jelleluteijn.nl", true }, { "jelleluteijn.pro", true }, { "jelleraaijmakers.nl", true }, + { "jelleschneiders.com", true }, { "jelly.cz", true }, { "jellybeanbooks.com.au", true }, { "jelmer.co.uk", true }, @@ -18158,9 +18515,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "jem.gov", true }, { "jemangeducheval.com", true }, { "jembatankarir.com", true }, + { "jemefaisdesamis.com", true }, { "jena.space", true }, { "jennedebleser.com", false }, - { "jenniferchan.id.au", true }, { "jenniferengerwingaantrouwen.nl", true }, { "jennifermason.eu", true }, { "jennifersauer.nl", true }, @@ -18168,6 +18525,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "jenolson.net", true }, { "jenprace.cz", true }, { "jensrex.dk", true }, + { "jeparamedia.com", true }, { "jepertinger-itconsulting.de", true }, { "jeproteste.info", true }, { "jeremiahbenes.com", true }, @@ -18177,14 +18535,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "jeremycantu.com", true }, { "jeremycrews.com", true }, { "jeremynally.com", true }, - { "jeremyness.com", true }, { "jeremypaul.me", true }, { "jeremytcd.com", true }, { "jericamacmillan.com", true }, { "jeroendeneef.com", true }, { "jeroenensanne.wedding", true }, { "jeroensangers.com", true }, - { "jeroenvanderwal.nl", true }, { "jerret.de", true }, { "jerryweb.org", true }, { "jerryyu.ca", true }, @@ -18197,7 +18553,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "jesseerbach.com", true }, { "jessekaufman.com", true }, { "jessesjumpingcastles.co.uk", true }, - { "jessgranger.com", true }, + { "jessgranger.com", false }, { "jessicabenedictus.nl", false }, { "jessicahrehor.com", true }, { "jesters-court.net", true }, @@ -18219,7 +18575,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "jexler.net", true }, { "jf-fotos.de", true }, { "jfbst.net", true }, - { "jfmhero.me", true }, { "jfr.im", true }, { "jfreitag.de", true }, { "jfsa.jp", true }, @@ -18232,6 +18587,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "jhe.li", true }, { "jhf.io", true }, { "jhill.de", true }, + { "jhollandtranslations.com", true }, { "jhuang.me", true }, { "jhw-profiles.de", true }, { "jhwestover.com", true }, @@ -18252,9 +18608,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "jimfranke.com", true }, { "jimfranke.nl", true }, { "jimmycai.com", false }, - { "jimmycai.org", true }, { "jimmycn.com", false }, - { "jimmynelson.com", true }, { "jimmyroura.ch", true }, { "jimshaver.net", true }, { "jimslop.nl", true }, @@ -18294,7 +18648,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "jkinteriorspa.com", true }, { "jkirsche.com", true }, { "jkrippen.com", true }, - { "jkuvw.xyz", true }, { "jkyuan.tk", true }, { "jl-dns.eu", true }, { "jl-dns.nl", true }, @@ -18326,16 +18679,19 @@ static const nsSTSPreload kSTSPreloadList[] = { { "jmpb.hu", true }, { "jmpmotorsport.co.uk", true }, { "jmsolodesigns.com", true }, - { "jmssg.jp", true }, { "jmvdigital.com", true }, - { "jncie.eu", true }, { "jnjdj.com", true }, { "jnm-art.com", true }, { "joa-ebert.com", true }, + { "joacimeldre.com", true }, { "joaoaugusto.net", true }, { "joaosampaio.com.br", true }, - { "job-offer.de", true }, { "job.biz.tr", true }, + { "jobatus.com.br", true }, + { "jobatus.es", true }, + { "jobatus.it", true }, + { "jobatus.mx", true }, + { "jobatus.pt", true }, { "jobbkk.com", true }, { "jobbsafari.no", true }, { "jobbsafari.se", true }, @@ -18379,11 +18735,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "joelle.me", true }, { "joelleandpeter.co.uk", true }, { "joellimberg.com", true }, + { "joellombardo.com", false }, { "joelmarkhamphotography.com.au", true }, { "joelmunch.com", true }, { "joelnichols.uk", true }, { "joemotherfuckingjohnson.com", true }, - { "joepitt.co.uk", false }, { "joerosca.com", true }, { "joerss.at", true }, { "joeskup.com", true }, @@ -18409,6 +18765,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "johannesen.tv", true }, { "johanneskonrad.de", true }, { "johannespichler.com", false }, + { "johansf.tech", true }, { "johego.org", true }, { "johnbeil.com", true }, { "johnblackbourn.com", true }, @@ -18432,10 +18789,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "johnroberts.me", true }, { "johnrockefeller.net", true }, { "johnsegovia.com", true }, + { "johnsiu.com", true }, { "johnsonho.net", true }, { "johnvanhese.nl", true }, { "johnyytb.be", true }, { "joi-dhl.ch", true }, + { "jointotem.com", true }, { "jojosplaycentreandcafeteria.co.uk", true }, { "jokedalderup.nl", true }, { "joker.menu", true }, @@ -18463,7 +18822,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "jonathanha.as", true }, { "jonathanj.nl", true }, { "jonathanschle.de", true }, - { "jonathanselea.se", false }, { "jonblankenship.com", true }, { "jondarby.com", true }, { "jondevin.com", true }, @@ -18485,7 +18843,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "jonoalderson.com", true }, { "jonpads.com", true }, { "jonpavelich.com", true }, - { "jons.org", true }, { "jonscaife.com", true }, { "jooksms.com", true }, { "jooksuratas.ee", true }, @@ -18502,6 +18859,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "jordans.co.uk", true }, { "jordanstrustcompany.com", true }, { "jordhy.com", true }, + { "jorgerosales.org", true }, { "jorisdalderup.nl", true }, { "jornalalerta.com.br", true }, { "joscares.com", true }, @@ -18511,6 +18869,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "joseetesser.nl", true }, { "josef-lotz.de", true }, { "josefjanosec.com", true }, + { "josefottosson.se", true }, { "josegerber.ch", true }, { "joseitoda.org", true }, { "josemikkola.fi", true }, @@ -18521,6 +18880,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "josephsniderman.org", true }, { "josephv.website", true }, { "josericaurte.com", true }, + { "joshgilson.com", true }, { "joshgrancell.com", true }, { "joshharkema.com", true }, { "joshharmon.me", true }, @@ -18566,10 +18926,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "jrc9.ca", true }, { "jreb.nl", true }, { "jreinert.com", true }, + { "jrflorian.com", true }, { "jross.me", true }, { "jrtapsell.co.uk", true }, { "jrxpress.com", true }, { "js93029.com", true }, + { "jschoi.org", true }, { "jschumacher.info", true }, { "jsd-cog.org", true }, { "jsdelivr.com", true }, @@ -18580,6 +18942,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "jskoelliken.ch", true }, { "jslidong.top", true }, { "jsmetallerie.fr", true }, + { "jsnfwlr.com", true }, { "jsnfwlr.io", true }, { "jsteward.moe", true }, { "jstore.ch", true }, @@ -18622,13 +18985,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "juhakoho.com", true }, { "juice.codes", true }, { "juk.life", true }, - { "juku-wing.jp", true }, { "jule-spil.dk", true }, { "julian-uphoff.de", true }, { "julian-weigle.de", true }, { "juliangonggrijp.com", true }, { "julianickel.de", true }, { "julianmeyer.de", true }, + { "julianmp.info", true }, { "juliansimioni.com", true }, { "julianskitchen.ch", true }, { "julianvmodesto.com", true }, @@ -18646,8 +19009,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "julienc.io", true }, { "julienpaterne.com", true }, { "julientartarin.com", true }, - { "julio.jamil.nom.br", true }, - { "juliohernandezgt.com", true }, { "julius-zoellner.de", true }, { "jullensgroningen.com", true }, { "juls.cloud", true }, @@ -18676,6 +19037,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "junethack.net", true }, { "jungaa.fr", true }, { "jungesforumkonstanz.de", true }, + { "junggesellmuc.de", true }, { "jungleducks.ca", true }, { "junglejackscastles.co.uk", true }, { "junglememories.co.uk", true }, @@ -18698,7 +19060,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "juristas.com.br", true }, { "jurriaan.ninja", true }, { "just-a-clanpage.de", true }, - { "just-english.online", true }, { "just-vet-and-drive.fr", true }, { "justanothercompany.name", true }, { "justbelieverecovery.com", true }, @@ -18713,11 +19074,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "justgalak.org", true }, { "justice.gov", true }, { "justice4assange.com", true }, - { "justin-tech.com", true }, + { "justin-tech.com", false }, { "justinellingwood.com", true }, { "justinharrison.ca", true }, { "justinho.com", true }, { "justinstandring.com", true }, + { "justmensgloves.com", true }, { "justpaste.it", true }, { "justthinktwice.gov", true }, { "justupdate.me", true }, @@ -18763,13 +19125,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "k-tube.com", true }, { "k258059.net", true }, { "k2mts.org", true }, - { "k33k00.com", false }, { "k3508.com", true }, { "k3nny.fr", true }, { "k4law.com", true }, { "k4r.ru", true }, { "k7azx.com", true }, { "k82.org", true }, + { "k8n.de", true }, { "k8r.eu", true }, { "k9swx.com", true }, { "kaamoscreations.com", true }, @@ -18780,14 +19142,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "kaatha-kamrater.se", true }, { "kab-s.de", true }, { "kabaca.design", true }, - { "kabarlinux.id", true }, { "kabashop.com.br", true }, - { "kabat-fans.cz", false }, { "kabeltv.co.nz", true }, { "kabeuchi.com", true }, { "kaboom.pw", true }, { "kabu-abc.com", true }, - { "kabus.org", true }, { "kachelfm.nl", true }, { "kachlikova2.cz", true }, { "kack.website", true }, @@ -18808,19 +19167,20 @@ static const nsSTSPreload kSTSPreloadList[] = { { "kaisev.net", true }, { "kaitol.click", true }, { "kaiusaltd.com", true }, + { "kaivac-emea.com", true }, { "kaizenreporting.com", true }, { "kaizeronion.com", true }, { "kajak.land", true }, { "kaka.farm", true }, { "kakao-karten.de", true }, { "kakaravaara.fi", true }, - { "kakie-gobocha.jp", true }, { "kakie-kolesa.ru", true }, { "kakolightingmuseum.or.jp", true }, { "kakoo-media.nl", true }, { "kakoo.nl", true }, { "kakoomedia.nl", true }, { "kakuto.me", true }, + { "kalakarclub.com", true }, { "kalamos-psychiatrie.be", true }, { "kalastus.com", true }, { "kaleidoscope.co.uk", true }, @@ -18833,6 +19193,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "kallies-net.de", true }, { "kalmar.com", true }, { "kalolina.com", true }, + { "kalombo.ru", true }, { "kalsbouncies.com", true }, { "kaltenbrunner.it", true }, { "kalterersee.ch", true }, @@ -18844,12 +19205,14 @@ static const nsSTSPreload kSTSPreloadList[] = { { "kamixa.se", true }, { "kamppailusali.fi", true }, { "kamui.co.uk", true }, + { "kan3.de", true }, { "kana-mono.biz", true }, { "kana.me", true }, { "kanaete-uranai.com", true }, { "kanag.pl", true }, { "kanal-schaefer.de", true }, { "kanal-tv-haensch.de", true }, + { "kandalife.com", true }, { "kandianshang.com", true }, { "kanecastles.com", true }, { "kanehusky.com", true }, @@ -18886,6 +19249,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "kap-genial.de", true }, { "kapgy-moto.com", true }, { "kapiorr.duckdns.org", true }, + { "kappenstein.org", true }, { "kapseli.net", true }, { "kaptadata.com", true }, { "kaptamedia.com", true }, @@ -18895,8 +19259,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "karachi.dating", true }, { "karaface.com", true }, { "karalane.com", true }, - { "karamomo.net", true }, - { "karanastic.com", true }, { "karanjthakkar.com", true }, { "karanlyons.com", true }, { "karasik.by", true }, @@ -18945,14 +19307,16 @@ static const nsSTSPreload kSTSPreloadList[] = { { "kastelruth.biz", true }, { "kastemperaturen.ga", true }, { "kastorsky.ru", true }, + { "kat.marketing", true }, { "katagena.com", true }, { "katalogbutikker.dk", true }, - { "katata-kango.ac.jp", true }, + { "katcleaning.com.au", true }, { "katedra.de", true }, { "kateduggan.net", true }, { "katekligys.com", true }, { "katemihalikova.cz", true }, { "katericke.com", true }, + { "katex.org", true }, { "kathardt.de", true }, { "kathegiraldo.com", true }, { "kathrinbaumannphotography.com", true }, @@ -18985,7 +19349,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "kayscs.com", true }, { "kaysis.gov.tr", true }, { "kazakov.lt", true }, - { "kazamasion.com", true }, { "kazand.lt", true }, { "kazandaemon.ru", true }, { "kazek.com.pl", true }, @@ -19021,6 +19384,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "kdyby.org", true }, { "ke7tlf.us", true }, { "keakon.net", true }, + { "keane.space", true }, { "keaneokelley.com", true }, { "keaysmillwork.com", true }, { "keb.com.au", true }, @@ -19066,6 +19430,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "kelheor.space", true }, { "kellerlan.org", true }, { "kelleymcchesney.us", true }, + { "kellimacconnell.com", true }, { "kellygrenard.com", true }, { "kellyskastles.co.uk", true }, { "kellyssportsbarandgrill.com", true }, @@ -19099,7 +19464,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "kensbouncycastles.co.uk", true }, { "kentec.net", true }, { "kenterlis.gr", true }, - { "kenvix.com", false }, + { "kenvix.com", true }, { "kenx5.eu.org", true }, { "kenyons.info", true }, { "keops-spine.fr", true }, @@ -19117,6 +19482,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "kersmexico.com", true }, { "kerstkaart.nl", true }, { "kersvers.agency", true }, + { "kerus.net", true }, { "kerzyte.net", true }, { "kescher.site", true }, { "kessawear.com", true }, @@ -19125,6 +19491,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "kesteren.org", true }, { "ketamine.co.uk", true }, { "ketosecology.co.uk", true }, + { "ketotadka.com", true }, + { "kettlebellkrusher.com", true }, { "kettner.com", true }, { "ketty-voyance.com", true }, { "keutel.net", true }, @@ -19137,6 +19505,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "kevinkla.es", true }, { "kevinlocke.name", true }, { "kevinmeijer.nl", true }, + { "kevinmorssink.nl", true }, { "kevinpirnie.com", true }, { "kevinrandles.com", true }, { "kevinratcliff.com", true }, @@ -19148,6 +19517,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "keycenter.com.br", true }, { "keycontainers.co.za", true }, { "keyerror.com", true }, + { "keygen.sh", true }, { "keyholdingservices.co.uk", true }, { "keyhomechecker.com", true }, { "keyihao.cn", true }, @@ -19160,6 +19530,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "keysupport.org", true }, { "keywebdesign.nl", true }, { "kf7joz.com", true }, + { "kfassessment.com", true }, { "kffs.ru", true }, { "kfirba.me", true }, { "kfm.ink", true }, @@ -19168,7 +19539,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "kfz-hantschel.de", true }, { "kgm-irm.be", true }, { "kgnk.ru", true }, - { "kgregorczyk.pl", true }, + { "khaledgarbaya.net", false }, { "khanovaskola.cz", true }, { "khas.co.uk", true }, { "khasiatmanfaat.com", true }, @@ -19176,8 +19547,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "khetzal.info", true }, { "khipu.com", true }, { "khlee.net", true }, - { "khmath.com", true }, - { "khmb.ru", false }, + { "khmb.ru", true }, { "khoury-dulla.ch", true }, { "khs1994.com", true }, { "khudothiswanpark.vn", true }, @@ -19232,6 +19602,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "kilerd.me", true }, { "kilianvalkhof.com", true }, { "killaraapartments.com.au", true }, + { "killdeer.com", true }, { "killerit.in", true }, { "killerrobots.com", true }, { "killymoonbouncycastles.com", true }, @@ -19254,7 +19625,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "kinautas.com", true }, { "kinderbasar-luhe.de", true }, { "kinderchor-bayreuth.de", true }, - { "kinderopvangzevenbergen.nl", true }, + { "kinderkleding.news", true }, { "kindertagespflege-rasselbande-halle.de", true }, { "kinderzahn-bogenhausen.de", true }, { "kindleworth.com", true }, @@ -19267,7 +19638,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "kingant.net", true }, { "kinganywhere.eu", true }, { "kingbird.me", true }, - { "kingdomcrc.org", true }, { "kingdoms.gg", true }, { "kingiescastles.co.uk", true }, { "kingofshooting.com", true }, @@ -19295,6 +19665,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "kiocloud.com", true }, { "kionetworks.es", true }, { "kipa.at", true }, + { "kipiradio.com", true }, { "kippenbart.gq", true }, { "kipriakipita.gr", true }, { "kiragameforum.net", true }, @@ -19310,16 +19681,16 @@ static const nsSTSPreload kSTSPreloadList[] = { { "kirillaristov.com", true }, { "kirillpokrovsky.de", true }, { "kirinas.com", true }, - { "kirito.kr", true }, + { "kirinuki.jp", true }, { "kirkforcongress.com", true }, { "kirkforillinois.com", true }, { "kirkify.com", true }, { "kirkovsky.com", true }, + { "kirrie.pe.kr", true }, { "kirsch-gestaltung.de", true }, { "kirschbaum.me", true }, { "kirslis.com", true }, { "kirstenbos.ca", true }, - { "kirstin-peters.de", true }, { "kirwandigital.com", true }, { "kis-toitoidixi.de", true }, { "kisallatorvos.hu", true }, @@ -19355,15 +19726,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "kivitelezesbiztositas.hu", true }, { "kiwi.com", true }, { "kiwi.digital", true }, - { "kiwi.global", true }, { "kiwi.wiki", true }, { "kiwico.com", true }, - { "kiwipayment.com", true }, - { "kiwipayments.com", true }, - { "kiwiplace.com", true }, { "kiyotatsu.com", true }, { "kj-prince.com", true }, - { "kj1391.com", true }, + { "kj1396.net", true }, { "kj1397.com", true }, { "kjaer.io", true }, { "kjarni.cc", true }, @@ -19379,6 +19746,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "kkr-bridal.net", true }, { "kks-karlstadt.de", true }, { "kksg.com", true }, + { "kkws.co", true }, { "kkyy.me", true }, { "kkzxak47.com", true }, { "kl-diaetist.dk", true }, @@ -19407,7 +19775,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "kleineanfragen.de", true }, { "kleinfein.co", true }, { "kleinreich.de", true }, - { "kleinserienproduktion.com", true }, { "kleinsys.com", true }, { "kleteckova.cz", true }, { "klicke-gemeinsames.de", true }, @@ -19441,7 +19808,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "klzwzhi.com", true }, { "km-net.pl", true }, { "kmashworth.co.uk", true }, - { "kmdev.me", true }, { "kmkz.jp", true }, { "kmsci.com.ph", true }, { "kn007.net", true }, @@ -19453,8 +19819,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "kncg.pw", true }, { "kndkv.com", true }, { "kneblinghausen.de", true }, + { "knechtology.com", true }, { "knegten-agilis.com", true }, { "knep.me", true }, + { "knetterbak.nl", true }, { "kngk-group.ru", true }, { "kngk-transavto.ru", true }, { "kngk.org", true }, @@ -19473,7 +19841,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "knot-store.com", true }, { "knowarth.com", true }, { "knowledgeforce.com", true }, - { "knowledgehook.com", true }, { "knowlevillagecc.co.uk", true }, { "knthost.com", true }, { "knuckles.tk", true }, @@ -19532,6 +19899,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "kokensupport.com", true }, { "koketteriet.se", true }, { "kokoiroworks.com", true }, + { "kokona.ch", true }, { "kokumoto.com", true }, { "kolania.com", true }, { "kolania.de", true }, @@ -19553,6 +19921,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "koluke.co", true }, { "koluke.com", true }, { "komandakovalchuk.com", false }, + { "kombidorango.com.br", true }, { "komelin.com", true }, { "komenamanda.de", true }, { "komicloud.com", true }, @@ -19575,7 +19944,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "koniecfica.sk", true }, { "konijntjes.nl", true }, { "konings.it", true }, - { "koningskwartiertje.nl", true }, { "koninkrijk.net", true }, { "konklone.com", true }, { "konoe.studio", true }, @@ -19609,7 +19977,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "korea.dating", true }, { "koreaboo.com", true }, { "koretech.nl", true }, - { "korinar.com", true }, { "korobi.io", true }, { "korobkovsky.ru", true }, { "korono.de", true }, @@ -19639,6 +20006,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "kotois.com", true }, { "kotonoha.cafe", true }, { "kotori.love", true }, + { "kottur.is", true }, { "kouki-food.com", true }, { "koumuwin.com", true }, { "koushinjo.org", true }, @@ -19704,6 +20072,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "kreativstrecke.de", true }, { "kredigram.com", true }, { "kredit-abzocke.com", true }, + { "kredita.dk", true }, { "kreditkacs.cz", true }, { "kreen.org", true }, { "krehl.io", true }, @@ -19722,9 +20091,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "krislamoureux.com", true }, { "krismurray.co.uk", true }, { "krisstarkey.co.uk", true }, + { "kristenpaigejohnson.com", true }, { "kristiehill.com", true }, { "kristikala.nl", true }, - { "kristinbailey.com", true }, + { "kristinbailey.com", false }, + { "kristofba.ch", true }, { "kristofdv.be", true }, { "krizevci.info", true }, { "krmeni.cz", false }, @@ -19734,6 +20105,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "kromonos.net", true }, { "kronaw.it", true }, { "krony.de", true }, + { "kronych.cz", true }, { "kroon.email", true }, { "kropkait.pl", true }, { "kroy.io", true }, @@ -19755,6 +20127,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "krypt.com", true }, { "kryptera.se", true }, { "kryptomodkingz.com", true }, + { "krytykawszystkiego.com", true }, + { "krytykawszystkiego.pl", true }, { "kryx.de", true }, { "ks-watch.de", true }, { "kschv-rdeck.de", true }, @@ -19763,6 +20137,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ksero.wroclaw.pl", true }, { "kshlm.in", true }, { "kspg.tv", true }, + { "kssk.de", true }, { "ksukelife.com", true }, { "kt-zoe.com", true }, { "ktbnetbank.com", true }, @@ -19776,6 +20151,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "kualo.com", true }, { "kualo.in", true }, { "kuaza.com", true }, + { "kub.hr", true }, { "kubica.ch", true }, { "kubierecki.pl", true }, { "kubik-rubik.de", false }, @@ -19810,7 +20186,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "kungerkueken.de", true }, { "kunstdrucke-textildruck.de", true }, { "kunstfehler.at", true }, - { "kunstschule-krabax.de", true }, { "kunstundunrat.de", true }, { "kuoruan.com", true }, { "kupferstichshop.com", true }, @@ -19824,6 +20199,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "kurashino-mall.com", true }, { "kuro.link", true }, { "kurofuku.me", true }, + { "kuroha.co.uk", true }, { "kuroinu.jp", true }, { "kurona.ga", true }, { "kuronekogaro.com", true }, @@ -19845,6 +20221,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "kutukupret.com", true }, { "kutus.ee", true }, { "kuzbass-pwl.ru", true }, + { "kuzdrowiu24.pl", true }, { "kvadratnimeter.si", true }, { "kvalita-1a.cz", true }, { "kvalitnitesneni.cz", true }, @@ -19869,6 +20246,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "kxah35.com", true }, { "kxnrl.com", false }, { "kybi.sk", true }, + { "kydara.com", true }, { "kyledrake.net", true }, { "kylegutschow.com", true }, { "kylejohnson.io", true }, @@ -19881,11 +20259,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "kyobostory-events.com", true }, { "kyoko.org", true }, { "kyosaku.org", true }, - { "kyoto-k9.com", true }, { "kyoto-mic.com", true }, { "kyoto-sake.net", true }, { "kyoto-tomikawa.jp", true }, - { "kyoto-tomoshibi.jp", true }, { "kyprexxo.com", true }, { "kyras-castles.co.uk", true }, { "kyunyuki.com", true }, @@ -19917,7 +20293,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "laballoons.com", true }, { "labande-annonce.fr", true }, { "labcoat.jp", true }, - { "labms.com.au", true }, { "labobooks.com", true }, { "laboitebio-logique.ca", true }, { "labortogether.com", true }, @@ -19958,6 +20333,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "lady-2.jp", true }, { "ladyanna.de", true }, { "ladybugjam.com", true }, + { "laeso.es", true }, { "laextra.mx", true }, { "lafayette-rushford.com", true }, { "lafcheta.info", true }, @@ -19988,7 +20364,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "laindonleisure.co.uk", true }, { "lak-berlin.de", true }, { "lakarwebb.se", true }, - { "lakatrop.com", true }, { "lakedavid.com.au", true }, { "lakehavasucityhomebuyerscredit.com", true }, { "lakehavasucitynews.com", true }, @@ -20006,6 +20381,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "lakesherwoodlighting.com", true }, { "lakesherwoodoutdoorlighting.com", true }, { "lakeshowlife.com", true }, + { "lakhesis.net", true }, { "lakonia.com.br", true }, { "lalalab.com", true }, { "lalaya.fr", true }, @@ -20015,24 +20391,31 @@ static const nsSTSPreload kSTSPreloadList[] = { { "lalyre-corcelles.ch", true }, { "lamaisondelatransformationculturelle.com", true }, { "lamakat.de", true }, + { "lamanwebinfo.com", true }, { "lamapoll.de", true }, { "lamarieealhonneur.com", false }, { "lambauer.com", true }, { "lambertshealthcare.co.uk", true }, { "lamboo.be", true }, + { "lamclam.site", true }, { "lame1337.xyz", true }, { "lamiaposta.email", false }, { "lamikvah.org", true }, { "laminine.info", true }, { "lamp.re", false }, + { "lamp24.se", true }, + { "lampade.it", true }, + { "lampara.es", true }, { "lampegiganten.dk", true }, { "lampegiganten.no", true }, { "lampen24.be", true }, + { "lampen24.nl", true }, { "lampenwelt.at", true }, { "lampenwelt.ch", true }, + { "lampenwelt.de", true }, { "lampposthomeschool.com", true }, + { "lampy.pl", true }, { "lan.biz.tr", true }, - { "lana.swedbank.se", true }, { "lanahallen.com", true }, { "lanbroa.eu", true }, { "lancashirecca.org.uk", true }, @@ -20071,13 +20454,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "lanetix.com", true }, { "lanforalla.se", true }, { "lang-php.com", true }, - { "langatang.com", true }, { "langbein.org", true }, { "langguth.io", true }, { "langkahteduh.com", true }, { "langkawitrip.com", true }, { "langotie.com.br", true }, { "langstreckensaufen.de", true }, + { "languagecourse.net", true }, { "languageterminal.com", true }, { "langworth.com", true }, { "langzijn.nl", true }, @@ -20102,7 +20485,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "laparoscopia.com.mx", true }, { "lapassiondutrading.com", true }, { "laperfumista.es", true }, - { "lapetition.be", true }, { "lapidge.net", true }, { "lapix.com.co", true }, { "laplacesicherheit.de", true }, @@ -20118,6 +20500,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "laranara.se", true }, { "laranjada.org", true }, { "laraveldirectory.com", true }, + { "laravelsaas.com", true }, { "larbertbaptist.org", true }, { "lareclame.fr", true }, { "larepublicacultural.es", true }, @@ -20169,10 +20552,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "latabledemontebello.com", true }, { "late.am", true }, { "latecnosfera.com", true }, + { "latedeals.co.uk", true }, { "latemodern.com", true }, { "latenitefilms.com", false }, { "lateral.dog", true }, { "lateralsecurity.com", true }, + { "latestbuy.com.au", true }, { "latestdeals.co.uk", true }, { "latiendadelbebefeliz.com", true }, { "latiendauno.com", true }, @@ -20204,6 +20589,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "lauraofrank.com", true }, { "laurasplacefamilysupport.org.au", true }, { "laurelblack.com", true }, + { "laurenceplouffe.com", true }, { "laurenlobue.com", true }, { "lauriemilne.com", true }, { "lauriuc.sk", true }, @@ -20213,7 +20599,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "laut.digital", true }, { "lauxzahnheilkunde.de", true }, { "lauzon-hitter.com", true }, - { "lavabit.no", true }, { "lavalite.de", true }, { "lavamob.com", true }, { "lavanderia.roma.it", true }, @@ -20222,6 +20607,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "lavenderx.org", true }, { "laviedalex.ovh", true }, { "lavinya.net", true }, + { "lavishlooksstudio.com.au", true }, { "lavita.de", true }, { "lavitrine-une-collection.be", true }, { "lavoieducoeur.be", true }, @@ -20233,14 +20619,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "lawformt.com", true }, { "lawn-seeds.com", true }, { "lawnuk.com", true }, - { "lawrence-institute.com", true }, { "lawrenceberg.nl", true }, { "lawrencemurgatroyd.com", true }, { "lawyerkf.com", true }, { "layfully.me", true }, { "laylo.io", true }, { "laylo.nl", true }, - { "laymans911.info", true }, { "layoutsatzunddruck.de", true }, { "lazowik.pl", true }, { "lazurit.com", true }, @@ -20274,8 +20658,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "lcybox.com", true }, { "ld-begunjscica.si", true }, { "ldc.com.br", false }, - { "ldcraft.pw", true }, { "ldjb.jp", true }, + { "ldsun.com", true }, { "le-bar.org", true }, { "le-blog.ch", true }, { "le-controle-parental.fr", true }, @@ -20297,10 +20681,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "leadinfo.com", true }, { "leadingsalons.com", true }, { "leadquest.nl", true }, + { "leadstart.org", true }, { "leafandseed.co.uk", true }, { "leafans.tk", true }, { "leafinote.com", true }, { "leakforums.net", true }, + { "leamsigc.com", true }, { "leandre.cn", true }, { "leanplando.com", true }, { "leap-it.be", true }, @@ -20320,6 +20706,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "leasit.at", true }, { "leasit.de", true }, { "leastsignificantbit.de", true }, + { "leatam.fr", true }, { "leatherfurnitureexpo.com", true }, { "leatherwood.nl", true }, { "leavesofchangeweekly.org", true }, @@ -20332,7 +20719,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "lebensraum-im-garten.de", true }, { "lebihan.pl", true }, { "leblanc.io", true }, - { "lebosse.me", true }, { "lebourgeo.is", true }, { "lechaudrondupertuis.ch", true }, { "leclaire.com.br", true }, @@ -20342,6 +20728,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ledecologie.com.br", true }, { "ledeguisement.com", true }, { "lederer-it.com", true }, + { "ledlight.com", true }, { "ledscontato.com.br", true }, { "ledzom.ru", false }, { "lee-fuller.co.uk", true }, @@ -20362,6 +20749,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "leetcode.net", true }, { "leetgamers.asia", true }, { "leevealdc.com", true }, + { "lefcoaching.nl", true }, { "lefebvristes.com", true }, { "lefebvristes.fr", true }, { "leflibustier.ru", true }, @@ -20372,7 +20760,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "legacy.bank", true }, { "legadental.com", true }, { "legaillart.fr", true }, - { "legalcontrol.info", true }, { "legalinmotion.es", true }, { "legalrobot.com", true }, { "legatofmrc.fr", true }, @@ -20396,6 +20783,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "leibniz-remscheid.de", false }, { "leideninternationalreview.com", true }, { "leigh.life", true }, + { "leilautourdumon.de", true }, { "leilonorte.com", true }, { "leiming.co", true }, { "leinfelder.in", true }, @@ -20416,6 +20804,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "lemondrops.xyz", true }, { "lemonop.com", true }, { "lemonparty.co", true }, + { "lemonthy.ca", true }, + { "lemonthy.com", true }, { "lemouillour.fr", true }, { "lemuslimpost.com", true }, { "lenagroben.de", true }, @@ -20450,10 +20840,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "leonax.net", true }, { "leonbuitendam.nl", true }, { "leondenard.com", true }, + { "leonhooijer.nl", false }, { "leonklingele.de", true }, { "leowkahman.com", true }, { "lep.gov", true }, { "lepenetapeti.com", true }, + { "lepidum.jp", true }, { "leponton-lorient.fr", true }, { "leppis-it.de", true }, { "leprado.com", true }, @@ -20482,7 +20874,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "lesharris.com", true }, { "leshervelines.com", true }, { "lesjardinsdemathieu.net", true }, - { "lesjardinsdubanchet.fr", true }, { "lesmamy.ch", true }, { "lesmontagne.net", true }, { "lesnet.co.uk", true }, @@ -20496,8 +20887,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "lesterchan.net", true }, { "lesterrassesdusoleil.ch", true }, { "lesyndicat.info", true }, - { "let-go.cc", true }, { "letemps.ch", true }, + { "letraba.com", true }, { "lets-bounce.com", true }, { "lets-go-acoustic.de", true }, { "lets-ktai.jp", true }, @@ -20550,6 +20941,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "lezard-com.fr", true }, { "lfashion.eu", true }, { "lfgss.com", true }, + { "lfklzw.com", true }, { "lfrconseil.com", true }, { "lgbt.io", true }, { "lgbt.ventures", true }, @@ -20564,6 +20956,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "li-ke.co.jp", true }, { "li.search.yahoo.com", false }, { "liam-w.io", true }, + { "liamelliott.me", true }, + { "liamlin.me", true }, { "lian-in.com", true }, { "lian-in.net", true }, { "liang-li88.com", true }, @@ -20574,7 +20968,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "lianye4.cc", true }, { "lianye5.cc", true }, { "lianye6.cc", true }, - { "liautard.fr", true }, { "lib64.net", true }, { "libbitcoin.org", true }, { "libble.eu", true }, @@ -20631,6 +21024,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "lieuu.com", true }, { "lifanov.com", true }, { "life-emotions.pt", true }, + { "lifeartstudios.net", true }, { "lifebetweenlives.com.au", true }, { "lifecism.com", true }, { "lifegrip.com.au", true }, @@ -20650,6 +21044,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "light-up.xyz", true }, { "light.mail.ru", true }, { "lightbox.co", true }, + { "lightdark.xyz", true }, { "lightdream.tech", true }, { "lighthouseinstruments.com", true }, { "lighting-centres.co.uk", true }, @@ -20673,10 +21068,14 @@ static const nsSTSPreload kSTSPreloadList[] = { { "lightning.engineering", true }, { "lightpics.net", true }, { "lights.co.uk", true }, + { "lights.ie", true }, + { "lightscale.com", true }, + { "lightsheep.no", true }, { "lightspeed.com", false }, { "lightspeedta.co", true }, { "lighttp.com", true }, { "lightupcollective.co.uk", true }, + { "lignite.com", true }, { "lignoma.com", true }, { "ligonier.com", true }, { "lihaul.dnsalias.net", true }, @@ -20691,6 +21090,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "likemovies.de", true }, { "likenewhearing.com.au", true }, { "likere.com", true }, + { "likesforinsta.com", true }, + { "likui.me", true }, { "lilaccakeboutique.com", true }, { "lillepuu.com", true }, { "lily-bearing.com", true }, @@ -20747,6 +21148,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "lingeriesilhouette.com", true }, { "lingotaxi.com", true }, { "linguamilla.com", true }, + { "linguatrip.com", false }, { "lingvo-svoboda.ru", true }, { "linherest.tk", true }, { "link-sanitizer.com", true }, @@ -20776,11 +21178,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "linux-florida.com", true }, { "linux-mint-czech.cz", true }, { "linux-vme.org", true }, - { "linux.army", true }, { "linux.cn", true }, { "linux.conf.au", true }, { "linux.fi", true }, { "linux.im", true }, + { "linux.pizza", true }, { "linux3.org", true }, { "linuxbabe.com", true }, { "linuxbierwanderung.com", true }, @@ -20804,14 +21206,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "lionsdeal.com", true }, { "lipartydepot.com", true }, { "lipex.com", true }, - { "lipo.lol", true }, { "lipoabaltimore.org", true }, { "liqd.net", true }, { "liquid.cz", true }, { "liquidhost.co", true }, { "liquidinternet.co", true }, { "liquidradio.pro", true }, - { "liquidwarp.net", true }, + { "liquipedia.net", true }, { "lirion.de", true }, { "liris-beautywelt.de", true }, { "lirlandais.ch", true }, @@ -20823,7 +21224,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "liskgdt.net", true }, { "lisky.ru", true }, { "lislan.org.uk", true }, - { "lisowski-development.com", true }, + { "lisowski-development.com", false }, { "listahu.org", true }, { "listekdo.fr", true }, { "listen.dk", true }, @@ -20835,6 +21236,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "litebit.eu", true }, { "litebits.com", true }, { "litemind.com", true }, + { "literarymachin.es", true }, { "litfin.name", true }, { "lithan.com", true }, { "lithesalar.se", true }, @@ -20842,6 +21244,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "litsovet.com", true }, { "little-cake.com", true }, { "littlebestfriend.de", true }, + { "littleboutiqueshop.co.uk", true }, + { "littleboutiqueshop.com", true }, + { "littleboutiqueshop.uk", true }, { "littlefairy.no", true }, { "littlefamilyadventure.com", true }, { "littlegreece.ae", true }, @@ -20854,7 +21259,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "littleredsbakeshop.com", true }, { "littlericket.me", false }, { "littlescallywagsplay.co.uk", true }, - { "littleskin.cn", true }, { "littleswitch.co.jp", true }, { "littlewatcher.com", true }, { "litvideoserver.de", true }, @@ -20865,6 +21269,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "liufengyu.cn", true }, { "liul.in", true }, { "liupeicheng.top", true }, + { "liushuyu.tk", true }, { "liv3d.stream", true }, { "live4k.media", false }, { "livebandphotos.com", true }, @@ -20900,6 +21305,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "livesure.com", true }, { "livetoride.co.za", true }, { "livetube.tv", true }, + { "livi.co", true }, { "living-space.co.nz", true }, { "living24.de", true }, { "livingforreal.com", true }, @@ -20924,10 +21330,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "lknw.de", true }, { "lkp111138.me", true }, { "llamacuba.com", true }, + { "ller.xyz", true }, { "llm-guide.com", true }, { "lloyd-day.me", true }, { "lm-pumpen.de", false }, - { "lmcm.io", true }, { "lmddgtfy.net", true }, { "lmerza.com", true }, { "lmintlcx.com", true }, @@ -20938,10 +21344,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "lnhequipmentltd.com", true }, { "lntu.org", true }, { "lnx.li", true }, + { "lnyltx.cn", true }, { "load-ev.de", true }, { "loadlow.me", true }, + { "loadtraining.com", true }, { "loadwallet.com", true }, - { "loafhead.me", true }, { "loanaway.ca", true }, { "loancompare.co.za", true }, { "loandolphin.com.au", true }, @@ -20961,15 +21368,15 @@ static const nsSTSPreload kSTSPreloadList[] = { { "localdecor.com.br", true }, { "localethereum.com", true }, { "localhorst.duckdns.org", true }, - { "localhorst.xyz", false }, + { "localhorst.xyz", true }, { "localhost.ee", true }, + { "localprideart.com", true }, { "localspot.pl", true }, { "locapos.com", true }, { "locationvoitureallemagne.com", true }, { "locationvoitureangleterre.com", true }, { "locationvoitureaustralie.com", true }, { "locationvoiturebelgique.com", true }, - { "locationvoiturecorse.net", true }, { "locationvoitureespagne.com", true }, { "locationvoitureitalie.com", true }, { "locationvoitureportugal.com", true }, @@ -20986,16 +21393,21 @@ static const nsSTSPreload kSTSPreloadList[] = { { "locksmithbalchsprings.com", true }, { "locksmithballito.com", true }, { "locksmithbluff.co.za", true }, + { "locksmithdearborn.com", true }, { "locksmithedmonds.com", true }, { "locksmithgarland-tx.com", true }, { "locksmithgrapevinetx.com", true }, { "locksmithhillcrest.co.za", true }, { "locksmithindurban.co.za", true }, + { "locksmithlivoniami.com", true }, + { "locksmithmadisonheights.com", true }, { "locksmithmesquitetx.com", true }, { "locksmithmissouricity.com", true }, { "locksmithopen.com", true }, + { "locksmithsammamishwa.com", true }, { "locksmithsanantoniotexas.com", true }, { "locksmithsbluff.com", true }, + { "locksmithscottsdaleaz.com", true }, { "locksmithseattleco.com", true }, { "locksmithservice-houston.com", true }, { "locksmithspring.com", true }, @@ -21004,6 +21416,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "locksmiththewoodlands.com", true }, { "locomore.com", true }, { "locomotionds.com", true }, + { "locurimunca.co", true }, { "lodash.com", false }, { "loddeke.eu", true }, { "lodewijkict.nl", true }, @@ -21028,7 +21441,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "logicio.de", false }, { "logicio.net", false }, { "logicne-hise.si", true }, - { "logicoma.com", true }, + { "logicz.top", true }, { "login.corp.google.com", true }, { "login.gov", false }, { "login.launchpad.net", true }, @@ -21100,13 +21513,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "lommyfleet.com", true }, { "lon-so.com", true }, { "lona.io", true }, - { "lonal.com", true }, - { "lonasdigital.com", true }, { "london-transfers.com", true }, { "london.dating", true }, { "londongallery.net", true }, { "londongynaecologist.co", true }, - { "londonkan.jp", true }, { "londonkeyholdingcompany.co.uk", true }, { "lonelytweets.com", true }, { "lonesomecosmonaut.com", true }, @@ -21116,7 +21526,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "longhorn.id.au", true }, { "longma.pw", true }, { "longstride.net", true }, - { "longtaitouwang.com", true }, { "lonniec.com", true }, { "lonniemason.net", true }, { "look.co.il", true }, @@ -21149,15 +21558,17 @@ static const nsSTSPreload kSTSPreloadList[] = { { "lorenadumitrascu.ro", true }, { "loreofthenorth.com", true }, { "loreofthenorth.nl", true }, + { "lorientlejour.com", true }, { "loritaboegl.de", true }, + { "lormansas.com", true }, { "losangelestown.com", true }, { "losless.fr", true }, + { "losrascadoresparagatos.com", true }, { "losreyesdeldescanso.com.ar", true }, { "lost.host", true }, { "lost.report", true }, { "lostkeys.co.uk", true }, { "lostserver.com", true }, - { "lostwithdan.com", true }, { "lothlorien.ca", false }, { "lotl.ru", true }, { "lotn.mobi", true }, @@ -21175,10 +21586,14 @@ static const nsSTSPreload kSTSPreloadList[] = { { "louisvillecarguys.com", true }, { "louisvillevmug.info", true }, { "loune.net", true }, + { "loungecafe.net", true }, + { "loungecafe.org", true }, { "love4taylor.me", true }, { "loveandadoreboutique.com", true }, + { "lovebigisland.com", true }, { "lovebo9.com", true }, { "lovebo9.net", true }, + { "lovecrystal.co.uk", true }, { "loveislandgames.com", true }, { "loveisourweapon.com", true }, { "lovelens.ch", false }, @@ -21238,13 +21653,18 @@ static const nsSTSPreload kSTSPreloadList[] = { { "luc-oberson.ch", true }, { "luca.swiss", true }, { "lucacastelnuovo.nl", false }, + { "lucafontana.net", true }, { "lucafrancesca.me", true }, { "lucakrebs.de", true }, + { "lucasantarella.com", true }, { "lucasbergen.ca", true }, + { "lucascobb.com", true }, { "lucasem.com", true }, + { "lucasgaland.com", true }, { "lucasgymnastics.com", true }, { "lucaslarson.net", true }, { "luce.life", true }, + { "luchscheider.de", false }, { "lucid-light.de", true }, { "lucidframeworks.com", true }, { "lucidlight.de", true }, @@ -21255,13 +21675,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "luckyxf.com", true }, { "lucy.science", true }, { "lucyparsonslabs.com", true }, - { "lucysan.net", true }, { "lucz.co", true }, { "ludek.biz", true }, { "ludikovsky.name", true }, { "ludogue.net", true }, { "ludovic-muller.fr", true }, - { "ludum.pl", true }, { "ludwig.im", true }, { "ludwiggrill.de", true }, { "ludwigjohnson.se", true }, @@ -21288,6 +21706,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "luizkowalski.net", true }, { "luk.earth", true }, { "lukas-gorr.de", true }, + { "lukas-meixner.com", true }, { "lukas-oppermann.de", true }, { "lukas-schauer.de", true }, { "lukas.im", true }, @@ -21313,11 +21732,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "lukmanulhakim.id", true }, { "lukull-pizza.de", true }, { "lumen.sh", true }, - { "lumer.tech", true }, { "lumi.pw", true }, { "lumiere.com", true }, + { "luminaire.fr", true }, { "luminaires-online.fr", true }, { "lumitop.com", true }, + { "lumminary.com", true }, { "lunafag.ru", true }, { "lunakit.org", true }, { "lunanova.moe", true }, @@ -21327,6 +21747,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "lunarshark.com", true }, { "lunartail.nl", true }, { "lunasqu.ee", true }, + { "lunastrail.com", true }, { "lunchbunch.me", true }, { "lune-indigo.ch", true }, { "lungta.pro", true }, @@ -21334,14 +21755,16 @@ static const nsSTSPreload kSTSPreloadList[] = { { "lunidea.com", true }, { "lunis.net", true }, { "lunix.io", true }, - { "lunorian.is", false }, + { "lunorian.is", true }, { "luoe.me", true }, { "luoh.cc", true }, { "luoh.me", true }, { "luohua.im", true }, { "luongvu.com", true }, + { "lupecode.com", true }, { "lupinencyclopedia.com", true }, { "lupinenorthamerica.com", true }, + { "luqsus.pl", true }, { "luso-livros.net", true }, { "lusteniny.cz", false }, { "lustige-zitate.com", true }, @@ -21372,14 +21795,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "luxwatch.com", true }, { "luyckx.net", true }, { "luzat.com", true }, - { "luzfaltex.com", true }, { "lv.search.yahoo.com", false }, { "lv0.it", true }, { "lv5.top", true }, { "lvmoo.com", true }, { "lvrsystems.com", true }, { "lw-addons.net", true }, - { "lwhate.com", true }, { "lwl.moe", true }, { "lwl12.com", true }, { "lxd.cc", true }, @@ -21394,7 +21815,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "lynero.dk", true }, { "lyness.io", true }, { "lyngvaer.no", true }, - { "lynkos.com", true }, { "lynnlaytonnissanparts.com", true }, { "lynnmosher.com", true }, { "lynthium.com", true }, @@ -21416,7 +21836,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "m-22.com", true }, { "m-chemical.com.hk", true }, { "m-edmondson.co.uk", true }, - { "m-idea.jp", true }, + { "m-gh.info", true }, { "m-kleinert.de", true }, { "m-mail.fr", true }, { "m-orthodontic.com", true }, @@ -21426,6 +21846,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "m.me", true }, { "m0t0k1ch1.com", true }, { "m132.eu", true }, + { "m134.eu", true }, { "m2epro.com", true }, { "m2os.com", true }, { "m4rcus.de", true }, @@ -21439,6 +21860,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "maaya.jp", true }, { "maayogashram.com", true }, { "mabankonline.com", true }, + { "mabulledu.net", true }, { "mac-i-tea.ch", true }, { "mac.biz.tr", true }, { "mac1.net", true }, @@ -21528,6 +21950,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "magazin3513.com", true }, { "magazinedotreino.com.br", true }, { "magdic.eu", true }, + { "magebit.com", true }, { "magenda.sk", true }, { "magentaize.net", true }, { "magentapinkinteriors.co.uk", true }, @@ -21535,11 +21958,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "magewell.nl", true }, { "maggie.com", true }, { "magi-cake.com", true }, - { "magi.systems", true }, + { "magic-cards.info", true }, { "magical-secrets.com", true }, { "magical.rocks", true }, { "magicalcircuslv.com", true }, { "magicbroccoli.de", true }, + { "magiccards.info", true }, { "magicdaysomagh.co.uk", true }, { "magickmoments.co.uk", true }, { "magiclen.org", true }, @@ -21557,7 +21981,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "magnificentdata.com", true }, { "magnoliadoulas.com", true }, { "magnoliastrong.com", true }, + { "magnunbaterias.com.br", true }, { "magonote-nk.com", true }, + { "magosmedellin.com", true }, { "magu.kz", true }, { "maguire.email", true }, { "magwin.co.uk", true }, @@ -21566,6 +21992,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "mahefa.co.uk", true }, { "mahjong-navi.com", true }, { "mahjong.org", true }, + { "mahjongrush.com", true }, { "mahrer.net", true }, { "maiaimobiliare.ro", true }, { "maidoty.net", true }, @@ -21590,7 +22017,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "mailjet.tech", true }, { "maillady-susume.com", true }, { "mailmag.net", false }, - { "mailpenny.com", true }, { "mailto.space", true }, { "mailum.org", false }, { "mainechiro.com", true }, @@ -21632,7 +22058,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "maketheneighborsjealous.com", true }, { "makeurbiz.com", true }, { "maki-chan.de", true }, - { "makinen.ru", true }, { "makino.games", true }, { "makkusu.photo", true }, { "makowitz.cz", true }, @@ -21645,6 +22070,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "malaysian.dating", true }, { "maldives.cx", true }, { "malenyflorist.com.au", true }, + { "maler-marschalleck.de", true }, { "malermeister-haussmann.de", true }, { "malesoowki.blog", true }, { "malezan.com", true }, @@ -21672,7 +22098,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "malscan.com", true }, { "malscan.org", true }, { "malta-firma.com", true }, - { "malte-kiefer.de", true }, { "malufs.com.br", true }, { "malware.watch", true }, { "malwareinvestigator.gov", true }, @@ -21690,12 +22115,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "mamiecouscous.com", true }, { "mammals.net", true }, { "mammaw.com", true }, - { "mammeitalianeavienna.com", true }, { "mammooc.org", true }, { "mamospienas.lt", true }, { "mamot.fr", false }, { "mamuko.nl", true }, { "man3s.jp", false }, + { "mana.ee", true }, { "manach.net", true }, { "manage.cm", true }, { "manage4all.de", true }, @@ -21703,6 +22128,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "management-companie.ro", true }, { "managementboek.nl", true }, { "managementfeedback.com", true }, + { "managementforstartups.com", true }, { "manageprojects.com", false }, { "manager-efficacement.com", true }, { "manager.linode.com", false }, @@ -21718,6 +22144,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "manfredi.io", true }, { "manfredimatteo.com", true }, { "manfredschafer.ch", true }, + { "mangahigh.com", true }, { "mangapoi.com", true }, { "mangaristica.com", true }, { "manhattanchoralensemble.org", true }, @@ -21732,6 +22159,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "manja-und-martin.de", true }, { "manjaro.ru", true }, { "mankans.com", true }, + { "manmeetgill.com", true }, { "manneguiden.no", true }, { "mannheimbloggt.tk", true }, { "manns-solutions.co.uk", true }, @@ -21742,7 +22170,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "manowarus.com", true }, { "mansdell.net", true }, { "mansfeld.pl", true }, - { "mansiontech.cn", true }, { "manski.net", true }, { "mantabiofuel.com", true }, { "mantor.org", false }, @@ -21762,6 +22189,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "manueldopheide.com", true }, { "manueli.de", true }, { "manuelpinto.in", false }, + { "manufacturing.gov", true }, { "manufacturingusa.com", true }, { "manuscript.com", true }, { "manuscriptlink.com", true }, @@ -21773,7 +22201,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "manylots.ru", true }, { "manyue.org", true }, { "maoi.re", true }, - { "maomaobt.com", true }, { "maomihz.com", true }, { "maone.net", true }, { "maorseo.com", true }, @@ -21791,7 +22218,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "mapservices.nl", true }, { "mapstack.org", true }, { "maquettage.com", true }, - { "maquillage-permanent-tatoo.com", true }, { "maquinariaspesadas.org", true }, { "mar-eco.no", true }, { "marabumadrid.com", false }, @@ -21799,8 +22225,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "marble.com", true }, { "marbogardenlidkoping.se", true }, { "marc-hammer.de", true }, - { "marc-schlagenhauf.de", true }, - { "marcaixala.me", true }, { "marcaudefroy.com", true }, { "marcbeije.com", true }, { "marcberndtgen.de", true }, @@ -21824,7 +22248,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "marchukov.com", true }, { "marchwj.pl", true }, { "marciaimportados.com.br", true }, - { "marcianoandtopazio.com", true }, { "marclay.co.uk", true }, { "marco-goltz.de", true }, { "marco-hegenberg.net", true }, @@ -21844,22 +22267,24 @@ static const nsSTSPreload kSTSPreloadList[] = { { "margo.ml", true }, { "margotlondon.co.uk", true }, { "marguerite-maison.fr", true }, + { "mariacorzo.com", true }, { "mariage-photo.ch", true }, { "marianatherapy.com", true }, { "marianelaisashi.com", true }, { "marianhoenscheid.de", true }, { "mariannenan.nl", true }, { "mariannethijssen.nl", true }, - { "mariaolesen.dk", true }, { "mariapietropola.com", true }, { "mariehane.com", true }, { "mariemiramont.fr", true }, { "mariereichl.cz", true }, + { "marijnfidder.nl", true }, { "marikafranke.de", true }, { "marilsnijders.nl", true }, { "marilynmartin.com.au", true }, { "marilynstreats.com", true }, { "marin-business-center.ch", true }, + { "marin-dom.ru", true }, { "marin-tullet.com", true }, { "marinazarza.es", true }, { "marinbusinesscenter.ch", true }, @@ -21877,11 +22302,14 @@ static const nsSTSPreload kSTSPreloadList[] = { { "mariushubatschek.de", true }, { "mariviolin.com", true }, { "marix.ro", true }, + { "marjeta-gurtner.ch", true }, { "marjoleindens.be", true }, { "marjoriecarvalho.com.br", true }, + { "mark-dietzer.de", true }, { "mark-semmler.de", true }, { "mark1998.com", true }, { "markaconnor.com", true }, + { "markandrosalind.co.uk", true }, { "markantoffice.com", true }, { "markbiesheuvel.nl", true }, { "markdain.net", true }, @@ -21896,9 +22324,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "marketing91.com", true }, { "marketingco.nl", true }, { "marketingconverts.com", true }, + { "marketingforfood.com", true }, { "marketinggenerators.nl", true }, { "marketingvirtuales.com", true }, - { "marketio.co", true }, { "marketizare.ro", true }, { "marketlinks.org", true }, { "marketnsight.com", true }, @@ -21910,6 +22338,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "markitzeroday.com", true }, { "markkirkforillinois.com", true }, { "markkirkforsenate.com", true }, + { "marklauman.ca", true }, { "markoh.co.uk", true }, { "markom.rs", true }, { "markprof.ru", true }, @@ -21953,7 +22382,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "marriage-shrine.jp", true }, { "marrickvilleapartments.com.au", true }, { "marsanvet.com", true }, - { "marsatapp.com", true }, { "marsble.com", true }, { "marseillekiteclub.com", true }, { "marshallscastles.com", true }, @@ -21971,6 +22399,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "martiestrimsalon.nl", true }, { "martijn.site", true }, { "martijnhielema.nl", true }, + { "martijnvanderzande.nl", true }, + { "martin-loewer.de", true }, { "martin-smith.info", true }, { "martin.vet", true }, { "martindimitrov.cz", true }, @@ -21998,13 +22428,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "maryeileen90.party", true }, { "maryjruggles.com", true }, { "marykatrinaphotography.com", true }, - { "masa-hou.com", true }, + { "marylandbasementandcrawlspacewaterproofing.com", true }, { "masarik.sh", true }, { "masatotaniguchi.jp", true }, { "masayahost.com", true }, { "mascosolutions.com", true }, { "masdillah.com", true }, - { "maservant.net", true }, + { "mashandco.it", true }, { "mashandco.tv", true }, { "masiniunelte.store.ro", true }, { "masiul.is", true }, @@ -22032,7 +22462,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "mastellone.us", true }, { "mastepinnelaand.nl", true }, { "master-net.org", true }, - { "masteragenasia.net", true }, { "mastercardpac.com", true }, { "masterdemolitioninc.com", true }, { "masterdigitale.com", true }, @@ -22056,6 +22485,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "matchatea24.com", true }, { "matchboxdesigngroup.com", true }, { "matchneedle.com", true }, + { "matdogs.com", true }, { "matejgroma.com", true }, { "matel.org", true }, { "materiaischiquinho.com.br", true }, @@ -22068,16 +22498,16 @@ static const nsSTSPreload kSTSPreloadList[] = { { "math.hamburg", true }, { "mathalexservice.info", true }, { "mathematik.rocks", true }, + { "mathematris.com", true }, { "mathembedded.com", true }, { "matheo-schefczyk.de", true }, + { "mathfinder.org", true }, { "mathhire.org", true }, { "mathias.is", true }, { "mathiasbynens.be", true }, { "mathiasgarbe.de", true }, { "mathiaswagner.org", true }, { "mathieuguimond.com", true }, - { "mathieui.net", true }, - { "mathis.com.tr", true }, { "maths.network", true }, { "mathsource.ga", true }, { "mathspace.co", true }, @@ -22090,6 +22520,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "matlss.com", true }, { "matmessages.com", true }, { "matok.me.uk", true }, + { "matome-surume.com", true }, { "matomeathena.com", true }, { "matoutepetiteboutique.com", true }, { "matridiana.com", true }, @@ -22100,7 +22531,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "matrixreq.com", true }, { "matsu-semi.com", true }, { "matsu-walk.com", true }, - { "matt-brooks.com", true }, { "matt-royal.gr", true }, { "matt.re", true }, { "mattandyana.com", true }, @@ -22120,7 +22550,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "matthewchapman.co.uk", true }, { "matthewfells.com", true }, { "matthewgallagher.co.uk", true }, - { "matthewgrow.com", true }, { "matthewj.ca", true }, { "matthewkenny.co.uk", true }, { "matthewohare.com", true }, @@ -22135,7 +22564,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "matthiasschwab.de", true }, { "matthieuschlosser.fr", true }, { "matthijssen.info", true }, - { "mattia98.org", true }, { "mattiascibien.net", true }, { "mattlaks.com", true }, { "mattli.us", true }, @@ -22150,7 +22578,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "mauerwerkstag.info", true }, { "mauldincookfence.com", true }, { "mauran.me", true }, - { "maurice-walker.com", true }, + { "maurice-walker.com", false }, { "mauricedb.nl", true }, { "maurovacca.com", true }, { "maury-moteurs.com", true }, @@ -22214,7 +22642,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "mazda-mps.de", true }, { "mazda-thermote.com", true }, { "mazda626.net", true }, - { "maze.design", true }, { "maze.fr", true }, { "mazternet.ru", true }, { "mazzotta.me", true }, @@ -22238,8 +22665,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "mbr-net.de", true }, { "mbrooks.info", true }, { "mbs-journey.com", true }, + { "mbsec.net", true }, { "mburns.duckdns.org", true }, { "mbweir.com", true }, + { "mbwis.net", true }, { "mc-jobs.net", true }, { "mc-venture.net", false }, { "mc4free.cc", true }, @@ -22258,11 +22687,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "mcea-hld.jp", true }, { "mceconferencecentre.eu", true }, { "mcfedries.com", true }, + { "mcfipvt.com", true }, { "mcfx.us", true }, { "mcgaccountancy.co.uk", true }, { "mcgarderen.nl", true }, { "mcgovernance.com", true }, { "mchel.net", true }, + { "mchopkins.net", true }, { "mchristopher.com", true }, { "mcinterface.de", true }, { "mcivor.me", true }, @@ -22274,17 +22705,18 @@ static const nsSTSPreload kSTSPreloadList[] = { { "mclinflatables.co.uk", true }, { "mclmotors.co.uk", true }, { "mclyr.com", true }, + { "mcmillansedationdentistry.com", false }, { "mcmillanskiclub.com.au", true }, { "mcneill.io", true }, { "mcnext.net", true }, { "mcon.se", true }, { "mcpaoffice.com", true }, + { "mcpart.land", true }, { "mcplayman.de", true }, { "mcpro.games", true }, { "mcprocdn.com", true }, { "mcrn.jp", true }, { "mcsinflatables.co.uk", true }, - { "mcsniper.co", true }, { "mcsrvstat.us", true }, { "mctools.org", true }, { "mcuuid.net", true }, @@ -22351,6 +22783,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "media-pi.com", true }, { "media-serwis.com", true }, { "mediaarea.net", true }, + { "mediabackoffice.co.jp", true }, { "mediablaster.com", true }, { "mediabm.jp", true }, { "mediaburst.co.uk", true }, @@ -22365,11 +22798,15 @@ static const nsSTSPreload kSTSPreloadList[] = { { "medialab.nrw", true }, { "mediamarkt.pl", true }, { "mediapart.fr", true }, + { "mediarithmics.com", true }, { "mediarocks.de", true }, { "mediaselection.eu", true }, { "mediationculturelleclp.ch", true }, { "mediatorzy.waw.pl", true }, + { "mediaukkies.nl", true }, { "mediavault.tech", true }, + { "mediawijsheid.nl", true }, + { "mediawijzer.net", true }, { "mediawiki.org", true }, { "mediawin.pl", true }, { "medic-world.com", true }, @@ -22386,6 +22823,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "medifi.com", true }, { "medigap-quote.net", true }, { "medikuma.com", true }, + { "medino.com", true }, { "medinside.ch", true }, { "medinside.li", true }, { "medinsider.ch", true }, @@ -22445,7 +22883,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "megamarkey.de", true }, { "megamisja.pl", true }, { "meganandmarc.us", true }, - { "meganreel.com", true }, + { "meganreel.com", false }, { "megapixel.cz", true }, { "megaplan.cz", true }, { "megaplan.ru", true }, @@ -22493,7 +22931,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "mekesh.net", true }, { "mekesh.ru", true }, { "meklon.net", true }, - { "mekongeye.com", true }, { "melaniebernhardt.com", true }, { "melaniegruber.de", true }, { "melbourne.dating", true }, @@ -22531,10 +22968,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "meme.institute", true }, { "memememememememe.me", true }, { "memepasmal.net", true }, - { "memes.nz", true }, + { "memesbee.com", true }, { "memfrob.org", true }, { "memind.net", true }, { "memiux.com", true }, + { "memo-linux.com", true }, { "memo.ee", true }, { "memoire-resistance-ariege.fr", true }, { "memorycards.ie", true }, @@ -22548,7 +22986,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "menhera.org", true }, { "menielias.com", true }, { "menkyo-blog.com", true }, - { "mennace.com", true }, { "menntagatt.is", true }, { "menole.com", true }, { "menole.de", true }, @@ -22568,6 +23005,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "mentz.info", true }, { "menu.fyi", true }, { "menudieta.com", true }, + { "menuel.me", true }, { "menuonlineordering.com", true }, { "menzel-motors.com", true }, { "menzietti.it", true }, @@ -22589,22 +23027,23 @@ static const nsSTSPreload kSTSPreloadList[] = { { "mercury.photo", true }, { "mercuryamericas.com", false }, { "meremeti-online.gr", true }, - { "meremobil.dk", true }, + { "merenbach.com", true }, { "merenita.com", true }, { "merenita.eu", true }, { "merenita.net", true }, { "merenita.nl", true }, + { "meric-graphisme.info", true }, { "meridianmetals.com", true }, { "meridianstore.com.br", true }, { "merkel.me", true }, { "merlet.eu", true }, { "merlinsoap.com", true }, - { "merloat.club", false }, + { "merloat.club", true }, + { "merloat.com", true }, { "merojob.com", true }, { "meronberry.jp", true }, { "merson.org", true }, { "merson.tv", true }, - { "mertak.cz", true }, { "mertarauh.com", true }, { "mertcangokgoz.com", true }, { "meruri.com", true }, @@ -22615,13 +23054,14 @@ static const nsSTSPreload kSTSPreloadList[] = { { "mescaline.com", true }, { "mescaline.org", true }, { "mesh.gov", true }, + { "meshok.info", true }, { "mesicka.com", true }, { "messagescelestes-archives.ca", true }, { "messagevortex.com", true }, { "messagevortex.net", true }, { "messdorferfeld.de", true }, { "messenger.co.tz", true }, - { "messenger.com", true }, + { "messenger.com", false }, { "messengerwebbrands.com", true }, { "messer24.ch", true }, { "messymom.com", true }, @@ -22629,7 +23069,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "mestr.es", true }, { "mesvt.com", true }, { "meta-db.com", true }, - { "meta-word.com", true }, { "meta.sc", true }, { "metachris.com", true }, { "metacoda.com", true }, @@ -22644,9 +23083,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "metaregistrar.com", true }, { "metasquare.com.au", true }, { "metasquare.nyc", true }, - { "metaword.com", true }, - { "metaword.net", true }, - { "metaword.org", true }, { "meteenonline.nl", true }, { "meteo-parc.com", true }, { "meteo-r.ovh", true }, @@ -22664,8 +23100,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "meterhost.com", true }, { "methamphetamine.co.uk", true }, { "methylone.com", true }, - { "metikam.pl", true }, - { "metin2sepeti.com", true }, { "metro-lawn-care.com", true }, { "metro-web.net", true }, { "metroairvirtual.com", true }, @@ -22676,7 +23110,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "metsasta.com", true }, { "mettekopp.dk", true }, { "meu-solutions.com", true }, - { "meujeitodigital.com.br", true }, + { "meujeitodigital.com.br", false }, + { "meupainel.me", true }, { "meurisse.org", true }, { "mevo.xyz", true }, { "mevs.cz", true }, @@ -22691,13 +23126,18 @@ static const nsSTSPreload kSTSPreloadList[] = { { "mfits.co.uk", true }, { "mflodin.se", true }, { "mfxbe.de", true }, + { "mfz.mk", true }, + { "mgcraft.net", true }, { "mgi.gov", true }, { "mgknet.com", true }, { "mgrossklaus.de", true }, { "mgrt.net", true }, { "mgsisk.com", true }, { "mgtbaas.eu", true }, + { "mhadot.com", true }, { "mhalfter.de", true }, + { "mhand.org", true }, + { "mhatero.com", true }, { "mhatlaw.com", true }, { "mheistermann.de", true }, { "mhermans.nl", true }, @@ -22712,19 +23152,20 @@ static const nsSTSPreload kSTSPreloadList[] = { { "miaoubox.com", true }, { "miaowo.org", true }, { "miasarafina.de", true }, - { "miboulot.com", true }, { "mibuiin.com", true }, { "micado-software.com", true }, { "micaiahparker.com", true }, { "micalodeal.ch", true }, { "micasamgmt.com", false }, { "micbase.com", true }, + { "michadenheijer.com", true }, { "michael-schefczyk.de", true }, { "michael-steinhauer.eu", true }, { "michael.band", true }, { "michaelasawyer.com", true }, { "michaelband.co", true }, { "michaelband.com", true }, + { "michaelcullen.name", true }, { "michaeleichorn.com", true }, { "michaelhrehor.com", true }, { "michaeliscorp.com", true }, @@ -22736,6 +23177,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "michaelpelletterie.it", true }, { "michaelpfrommer.de", true }, { "michaelpfrommer.pub", true }, + { "michaels-homepage-service.de", true }, { "michaelschmidt.ch", true }, { "michaelschubert.com", true }, { "michaelsnoeren.nl", true }, @@ -22763,7 +23205,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "miconcinemas.com", true }, { "micr.io", true }, { "micr0lab.org", true }, - { "microbiote-insectes-vecteurs.group", true }, { "microco.sm", true }, { "microcomploja.com.br", true }, { "microdots.de", true }, @@ -22774,6 +23215,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "microvb.com", true }, { "midair.io", true }, { "midasjewellery.com.au", true }, + { "midgawash.com", true }, { "midkam.ca", true }, { "midlandgate.de", true }, { "midlandleisuresales.co.uk", true }, @@ -22800,7 +23242,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "miguel.pw", true }, { "migueldemoura.com", true }, { "migueldominguez.ch", true }, - { "miguelgfierro.com", true }, { "miguelmartinez.ch", true }, { "miguelmenendez.pro", true }, { "miguelmoura.com", true }, @@ -22813,9 +23254,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "mijnetickets.nl", false }, { "mijnetz.nl", true }, { "mijnkerstkaarten.be", true }, + { "mijnkinderkleding.com", true }, + { "mijnpartijhandel.nl", true }, { "mijnreisoverzicht.nl", true }, { "mijnsite.ovh", true }, { "mijnstembureau.nl", true }, + { "mijntransacties.nl", true }, { "mika.moe", true }, { "mikadoe.nl", true }, { "mikakalathil.ca", true }, @@ -22839,12 +23283,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "mikewest.org", true }, { "mikewillia.ms", true }, { "mikewritesstuff.com", true }, + { "mikeybailey.org", true }, { "mikhirev.ru", true }, { "mikhlevich.ru", true }, { "miki-boras.de", true }, { "miki.it", true }, - { "mikkelscheike.com", true }, - { "mikkelvej.dk", true }, { "mikkonen.bio", true }, { "miklcct.com", true }, { "miknight.com", true }, @@ -22877,25 +23320,79 @@ static const nsSTSPreload kSTSPreloadList[] = { { "millefleurs.eu", true }, { "millennium-thisiswhoweare.net", true }, { "millenniumweb.com", false }, + { "millersminibarns.com", true }, + { "millettable.com", true }, { "millhousenchurch.com", true }, + { "million5.com", true }, + { "million6.com", true }, + { "million8.com", true }, { "millionairegames.com", true }, + { "millions1.com", true }, + { "millions11.com", true }, + { "millions13.com", true }, + { "millions14.com", true }, + { "millions15.com", true }, + { "millions16.com", true }, + { "millions17.com", true }, + { "millions19.com", true }, + { "millions20.com", true }, + { "millions22.com", true }, + { "millions25.com", true }, + { "millions26.com", true }, + { "millions27.com", true }, + { "millions28.com", true }, + { "millions29.com", true }, + { "millions31.com", true }, + { "millions32.com", true }, + { "millions33.com", true }, + { "millions35.com", true }, + { "millions36.com", true }, + { "millions37.com", true }, + { "millions38.com", true }, + { "millions39.com", true }, + { "millions40.com", true }, + { "millions41.com", true }, + { "millions42.com", true }, + { "millions43.com", true }, + { "millions5.com", true }, + { "millions50.com", true }, + { "millions51.com", true }, + { "millions52.com", true }, + { "millions53.com", true }, + { "millions55.com", true }, + { "millions56.com", true }, { "millions57.com", true }, { "millions58.com", true }, + { "millions59.com", true }, + { "millions6.com", true }, { "millions60.com", true }, { "millions61.com", true }, { "millions62.com", true }, { "millions63.com", true }, + { "millions66.com", true }, + { "millions7.com", true }, + { "millions70.com", true }, + { "millions71.com", true }, + { "millions72.com", true }, + { "millions77.com", true }, + { "millions8.com", true }, + { "millions80.com", true }, + { "millions81.com", true }, + { "millions82.com", true }, + { "millions88.com", true }, + { "millions9.com", true }, + { "millions99.com", true }, { "millistream.com", true }, { "milsonhypnotherapyservices.com", true }, - { "mim.properties", true }, + { "mim.am", true }, { "mimemo.io", true }, + { "mimemoriadepez.com", true }, { "mimeo.digital", true }, { "mimithedog.com", true }, { "mimobile.website", true }, { "mimocad.io", true }, { "mimovrste.com", true }, { "min-sky.no", true }, - { "minacssas.com", true }, { "minakov.pro", true }, { "minakova.pro", true }, { "minami.xyz", true }, @@ -22904,7 +23401,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "mind-box.ch", true }, { "mind-hochschul-netzwerk.de", true }, { "mind-moves.es", true }, - { "mindbodycontinuum.com", true }, { "mindbodytherapymn.com", true }, { "mindcoding.ro", true }, { "mindercasso.nl", true }, @@ -22913,7 +23409,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "mindoktor.se", false }, { "mindorbs.com", true }, { "mindstretchers.co.uk", true }, - { "mindturbo.com", true }, { "mindwork.space", true }, { "mine-craftlife.com", true }, { "mine260309.me", true }, @@ -22968,17 +23463,19 @@ static const nsSTSPreload kSTSPreloadList[] = { { "mintclass.com", true }, { "mintosherbs.com", true }, { "mintrak2.com", true }, - { "minu.link", true }, + { "mintse.com", true }, { "minube.co.cr", true }, { "minux.info", true }, { "mipapo.de", true }, { "mipla.ch", true }, { "miproximopaso.org", true }, + { "mipueblohoy.com", true }, { "mipymesenlinea.com", true }, { "mir.pe", true }, { "mirabalphoto.es", true }, { "miraheze.org", true }, { "miraidenshi.com", true }, + { "miraiex.com", true }, { "mirch.com", true }, { "mirco-grams.de", true }, { "mireiaseuba.com", true }, @@ -23001,18 +23498,19 @@ static const nsSTSPreload kSTSPreloadList[] = { { "miskatonic.org", true }, { "misoji-resist.com", true }, { "misol.kr", true }, + { "misrv.com", true }, { "miss-inventory.co.uk", true }, { "miss-platinum.net", true }, { "miss.com.tw", true }, { "missdream.org", true }, { "misseguf.dk", true }, { "missevent.pl", true }, - { "missguidedus.com", true }, { "mission-orange.de", true }, { "missionsgemeinde.de", true }, { "missip.nl", true }, { "missjoias.com.br", true }, { "misskey.jp", true }, + { "misskey.site", true }, { "misskey.xyz", true }, { "missoy.me", true }, { "misssex.de", true }, @@ -23024,6 +23522,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "mistybox.com", true }, { "misupport.dk", true }, { "misura.re", true }, + { "mit-dem-rad-zur-arbeit.de", true }, + { "mit-dem-rad-zur-uni.de", true }, { "mit-uns.org", true }, { "mita.me", true }, { "mitabu.net", true }, @@ -23047,6 +23547,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "mittagonghomestead.com.au", true }, { "mittelunsachlich.de", true }, { "mittenofficesystems.com", true }, + { "mityinc.com", true }, + { "mitylite.com", true }, { "mitzpettel.com", true }, { "miui-germany.de", true }, { "mivestuariolaboral.com", true }, @@ -23062,8 +23564,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "mixinglight.com", true }, { "mixnshake.com", true }, { "mixposure.com", true }, + { "mixrepairs.co.uk", true }, { "mixtafrica.com", true }, { "mixtape.moe", true }, + { "mixx.com.hk", true }, { "miyatore.com", true }, { "miyoshi-kikaku.com", true }, { "miyugirls.com", true }, @@ -23085,6 +23589,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "mk89.de", true }, { "mkaciuba.com", true }, { "mkakh.com", true }, + { "mkasu.org", false }, { "mkbouncycastles.co.uk", true }, { "mkbouncyhire.co.uk", true }, { "mkcert.org", true }, @@ -23110,7 +23615,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "mlarte.com", true }, { "mlcnfriends.com", true }, { "mlemay.com", true }, - { "mlm-worldwide.de", true }, + { "mlfaw.com", true }, { "mlmjam.com", true }, { "mlp.ee", true }, { "mlpvector.club", true }, @@ -23121,7 +23626,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "mm404.com", true }, { "mma-acareporting.com", true }, { "mmalisz.com", true }, - { "mmarnitz.de", true }, + { "mmaps.ddns.net", true }, { "mmbb.org", true }, { "mmin.us", false }, { "mmmarco.com", true }, @@ -23130,6 +23635,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "mms.is", true }, { "mmt.my", true }, { "mmucha.de", true }, + { "mna7e.com", true }, { "mncloud.de", true }, { "mncr.nl", true }, { "mnd.sc", true }, @@ -23152,6 +23658,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "moa.moe", true }, { "mobag.ru", true }, { "mobal.com", true }, + { "mobi4.tk", true }, { "mobidea.com", true }, { "mobifinans.ru", true }, { "mobil-bei-uns.de", true }, @@ -23164,6 +23671,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "mobile360.ph", true }, { "mobilebingoclub.co.uk", true }, { "mobilecasinoclub.co.uk", true }, + { "mobilecontractcomparison.com", true }, { "mobilelooper.com", true }, { "mobilemedics.com", true }, { "mobileread.com", true }, @@ -23194,12 +23702,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "modafo.com", true }, { "modalogi.com", true }, { "modcasts.video", true }, - { "modcentral.pw", true }, { "modding-forum.com", true }, { "modding-welt.com", true }, { "mode-hautnah.de", true }, { "mode-individuell.de", true }, - { "modehaus-marionk.de", true }, { "modelcase.co.jp", false }, { "modelclub-draveil.eu", true }, { "modelcube.com", true }, @@ -23218,6 +23724,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "modistryusercontent.com", true }, { "modmountain.com", true }, { "modosaude.com.br", true }, + { "modul21.com", true }, + { "modul21.eu", true }, { "module.market", true }, { "modulex-gmbh.de", true }, { "moechel.com", true }, @@ -23226,7 +23734,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "moellers.systems", true }, { "moetrack.com", true }, { "moeyoo.net", true }, - { "moeyun.net", true }, { "mofohome.dyndns.org", true }, { "moha-swiss.com", true }, { "mohanmekap.com", true }, @@ -23243,9 +23750,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "mojefedora.cz", true }, { "mojilitygroup.com", true }, { "mojizuri.com", true }, - { "mojnet.eu", true }, - { "mojnet.net", true }, - { "mojoco.co.za", true }, { "mojzis.com", true }, { "mojzis.cz", true }, { "mojzisova.com", true }, @@ -23261,9 +23765,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "molun.net", false }, { "molunerfinn.com", true }, { "molwick.com", true }, + { "momentum.photos", true }, { "momentumdash.com", true }, { "momirfarooq.com", true }, { "momjoyas.com", true }, + { "momo0v0.club", true }, { "momozeit.de", true }, { "momstableonline.com", true }, { "momut.org", true }, @@ -23271,7 +23777,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "mon-partage.fr", true }, { "mon-trafic.com", true }, { "mon22.ch", true }, - { "mona-antenna.com", true }, { "mona-dress.com", true }, { "monachatdeco.com", true }, { "monaco-automaten.de", true }, @@ -23282,11 +23787,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "monbudget.org", true }, { "moncoach.ch", true }, { "mondedesnovels.com", true }, - { "mondedie.fr", true }, { "mondial-movers.nl", true }, { "mondo-it.ch", true }, { "moneni.com", true }, - { "moneoci.com.br", true }, { "moneybird.com", true }, { "moneybird.nl", true }, { "moneychangersoftware.com", true }, @@ -23299,8 +23802,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "monique.io", true }, { "moniquedekermadec.com", true }, { "moniquemunhoz.com.br", true }, - { "monitman.com", true }, - { "monitorchain.com", true }, { "monitoring.kalisz.pl", true }, { "monitzer.com", true }, { "monix.io", true }, @@ -23333,7 +23834,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "montage-kaika.de", true }, { "montagne-tendance.ch", true }, { "montanasky.tv", true }, - { "montand.com", true }, { "montanwerk.de", true }, { "montarfotoaki.com", true }, { "montas.io", true }, @@ -23358,6 +23858,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "moon.fish", true }, { "moonagic.com", true }, { "moonagic.io", true }, + { "moonbench.xyz", true }, { "moonbot.io", true }, { "moondrop.org", true }, { "moonkin.eu", true }, @@ -23365,6 +23866,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "moonmelo.com", true }, { "moonraptor.co.uk", true }, { "moonraptor.com", true }, + { "moonrhythm.info", false }, { "moonshyne.org", true }, { "moontaj.com", true }, { "moonvpn.org", true }, @@ -23455,7 +23957,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "motifstudio.com.ua", true }, { "motionless.nl", true }, { "motiweb.fr", true }, - { "motocollection.pl", true }, { "motohell.com", true }, { "motojato.com.br", true }, { "motonauticaibiza.com", true }, @@ -23472,15 +23973,17 @@ static const nsSTSPreload kSTSPreloadList[] = { { "mottomortgage.com", true }, { "moucloud.cn", true }, { "moulinaparoles.ca", true }, + { "mountain-rock.ru", true }, { "mountainactivitysection.org.uk", true }, + { "mountainchalet.blue", true }, { "mountainroseherbs.com", true }, + { "mountainspringsrentals.ca", true }, { "mountfarmer.de", true }, { "mousemessages.com", true }, { "moutiezhaller.com", true }, { "move.mil", true }, { "moveek.com", true }, { "moveisfit.com.br", true }, - { "moveltix.net", true }, { "movember.com", false }, { "movewellnesslab.com", true }, { "movie-cross.net", true }, @@ -23496,6 +23999,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "moviesetc.net", true }, { "moviko.nz", true }, { "movil.uno", true }, + { "moviltronix.com", true }, { "movimento-terra.it", true }, { "movinglogistics.nl", false }, { "movingtohttps.com", true }, @@ -23528,7 +24032,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "mplusm.eu", true }, { "mpnpokertour.com", true }, { "mpodraza.pl", true }, - { "mpreserver.com", true }, + { "mpreserver.com", false }, { "mprsco.eu", true }, { "mpsgarage.com.au", true }, { "mpsoundcraft.com", true }, @@ -23539,6 +24043,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "mr-anderson.org", true }, { "mr-designer-oman.com", true }, { "mr-labo.jp", true }, + { "mr-nachhilfe.de", true }, { "mr-wolf.nl", false }, { "mr3.io", true }, { "mrazek.biz", true }, @@ -23553,6 +24058,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "mrdayman.com", true }, { "mremallin.ca", true }, { "mrevolution.eu", true }, + { "mrgasfires.co.uk", true }, { "mrgiveaways.com", true }, { "mrinalpurohit.in", true }, { "mrjhnsn.com", true }, @@ -23570,6 +24076,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "mrserge.lv", true }, { "mrsk.me", true }, { "mrstat.co.uk", true }, + { "mrtunnel.club", true }, { "mrv.li", true }, { "mrx.one", true }, { "mrxn.net", true }, @@ -23588,6 +24095,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "msi-zlin.cz", true }, { "msiegmund.com", true }, { "msmails.de", true }, + { "msno.no", true }, { "msnr.net", true }, { "msopopop.cn", true }, { "mspsocial.net", true }, @@ -23610,6 +24118,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "mtasa.hu", true }, { "mtb.wtf", true }, { "mtcq.jp", true }, + { "mtd.org", true }, + { "mtg-tutor.de", true }, { "mtgeni.us", true }, { "mtgenius.com", true }, { "mtgsuomi.fi", true }, @@ -23625,17 +24135,20 @@ static const nsSTSPreload kSTSPreloadList[] = { { "mtouch.facebook.com", false }, { "mtr.md", true }, { "mtrip.com", true }, + { "mtrock.ru", true }, { "mts-energia.eu", true }, { "mts-server.com", true }, { "mtsolar.es", true }, { "mu.search.yahoo.com", false }, { "muabannhanh.com", false }, + { "muahahahaha.co.uk", true }, { "mubiflex.nl", true }, { "muckingabout.eu", true }, { "muckrack.com", true }, { "mucmail.de", true }, { "muctool.de", true }, { "mud-status.de", true }, + { "mudbenesov.cz", true }, { "mudcrab.us", false }, { "mudgezero.one", true }, { "muehlemann.net", true }, @@ -23647,6 +24160,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "mufibot.net", true }, { "muguayuan.com", true }, { "muh.io", true }, + { "mui.jp", true }, { "muitadica.com", true }, { "muk-kobetsu.com", true }, { "mulaccosmetics.com", true }, @@ -23677,6 +24191,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "multitheftauto.com", true }, { "multizone.games", true }, { "multrier.fr", true }, + { "mum.ceo", true }, + { "muma.ml", true }, { "mumakil.fi", true }, { "mumbaionlinegifts.com", true }, { "muminkoykiran.com", true }, @@ -23692,10 +24208,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "mundtec.com.br", true }, { "munduch.cz", true }, { "munduch.eu", true }, - { "munirajiwa.com", true }, { "munki.org", true }, { "munkibuilds.org", true }, - { "munwr.com", true }, + { "munwr.com", false }, { "muqu.co", true }, { "mur-vegetal-interieur.fr", true }, { "murakami-sah.com", true }, @@ -23706,7 +24221,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "murmel.it", false }, { "murof.com.br", true }, { "murray.xyz", true }, - { "murzik.space", true }, + { "murraya.cn", true }, { "musaccostore.com", true }, { "muscle-tg.com", true }, { "musclecarresearch.com", true }, @@ -23720,6 +24235,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "mushikabu.net", true }, { "music-is-my-life.de", true }, { "music-project.eu", true }, + { "music-world.pl", true }, { "music.amazon.com", true }, { "musicaconleali.it", true }, { "musicalive.nl", true }, @@ -23783,6 +24299,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "mwohlfarth.de", true }, { "mwtdev.se", true }, { "mww.moe", true }, + { "mx-quad.fr", true }, { "mx.org.ua", true }, { "mx.search.yahoo.com", false }, { "mx5international.com", true }, @@ -23826,10 +24343,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "myammo.ru", true }, { "myanimelist.net", true }, { "myapexcard.com", true }, + { "myaspenheights.com", true }, { "mybagofcoffee.com", true }, + { "mybasementdoctor.com", true }, { "mybb.com", true }, { "mybb.de", true }, - { "mybboard.pl", true }, { "mybeautyjobs.de", true }, { "mybicc.org", true }, { "myblockchain.cloud", true }, @@ -23837,6 +24355,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "mybodylife.com", true }, { "mybon.at", false }, { "mybonfire.com", true }, + { "mybusiness.wien", true }, { "mycard.moe", true }, { "mycareersfuture.sg", true }, { "mycieokien.info", false }, @@ -23892,7 +24411,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "myfrenchtattoo.fr", true }, { "myg21.com", true }, { "mygadgetguardian.lookout.com", false }, - { "mygalgame.com", true }, { "mygallery.homelinux.net", true }, { "mygeneral.org", true }, { "mygeotrip.com", true }, @@ -23913,7 +24431,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "myimds.com", true }, { "myimmitracker.com", true }, { "myinvite.nl", true }, - { "myipaddr.de", true }, { "myipv4.de", true }, { "myjudo.net", true }, { "myjumparoo.co.uk", true }, @@ -23928,7 +24445,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "myliveupdates.com", true }, { "mylookout.com", false }, { "mylstrom.com", true }, - { "mymadina.com", true }, { "mymall.co.jp", true }, { "mymarketingcourses.com", true }, { "mymb.pm", true }, @@ -23956,6 +24472,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "myotopie.de", true }, { "myoueb.fr", true }, { "myoukochou.com", true }, + { "myownconference.cloud", true }, { "myownconference.com", true }, { "myownconference.com.ua", true }, { "myownconference.es", true }, @@ -23966,7 +24483,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "myowndisk.net", true }, { "myownwebinar.com", true }, { "mypaperdone.com", true }, - { "mypaperwriter.com", true }, { "mypayoffloan.com", true }, { "mypcqq.cc", true }, { "myperfecthome.ca", true }, @@ -24036,13 +24552,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "myrepublictelecom.com", true }, { "myrepubllc.net", true }, { "myresearchapp.com", true }, + { "myrevery.com", true }, { "myrewardspoints.com", true }, { "myriadof.com", true }, { "myrig.com", true }, - { "myrig.com.ua", true }, { "myrig.net", true }, - { "myrig.ru", true }, { "myrotvorets.center", true }, + { "myrotvorets.news", true }, { "myrp.co", true }, { "mysber.ru", true }, { "myschoolphoto.org", true }, @@ -24051,6 +24567,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "mysectools.org", true }, { "myself5.de", true }, { "myseo.ga", true }, + { "myserv.one", true }, { "myseu.cn", true }, { "mysexydate24.com", true }, { "myshirtsize.com", true }, @@ -24079,7 +24596,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "mysupboard.de", true }, { "myswissmailaddress.com", true }, { "mytfg.de", true }, - { "mythemeshop.com", true }, { "mythengay.ch", true }, { "mythicdelirium.com", true }, { "myting.net", true }, @@ -24091,7 +24607,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "mytripcar.fr", true }, { "mytruecare.org", true }, { "mytty.net", true }, - { "mytuleap.com", true }, + { "mytuleap.com", false }, { "mytun.com", true }, { "mytweeps.com", true }, { "myulog.net", true }, @@ -24106,9 +24622,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "myvitalhealthsolutions.com.au", true }, { "myvoipnews.com", true }, { "myvpl.com", true }, - { "mywallets.io", true }, { "mywari.com", true }, { "mywebinar.io", true }, + { "mywebmanager.co.uk", true }, { "mywebpanel.eu", true }, { "mywebpanel.nl", true }, { "myweddingreceptionideas.com", true }, @@ -24119,6 +24635,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "myyubikey.org", true }, { "myzina.cz", false }, { "mz-mz.net", true }, + { "mza.com", true }, { "mzh.io", true }, { "mziulu.me", false }, { "mznet.de", true }, @@ -24154,10 +24671,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "nacin.com", true }, { "nacktwanderfreunde.de", true }, { "nacyklo.cz", true }, + { "nadaquenosepas.com", true }, { "nadejeproninu.cz", true }, { "nadelholzkulturen.de", true }, { "nadine-chaudier.net", true }, { "nadsandgams.com", true }, + { "nadyaolcer.fr", true }, { "nafod.net", true }, { "naga-semi.com", true }, { "nagashi.ma", false }, @@ -24165,6 +24684,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "nagb.gov", true }, { "nagb.org", true }, { "nagel-dentaltechnik.de", true }, + { "nagelfam.com", true }, { "naggie.net", true }, { "nah.nz", true }, { "nah.re", true }, @@ -24173,6 +24693,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "nailchiodo.com", true }, { "nailsalon-aztplus.com", true }, { "nairobibusinessreview.com", true }, + { "naive.network", true }, { "najany.de", true }, { "najany.dk", true }, { "najany.fr", true }, @@ -24181,12 +24702,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "nakalabo.jp", true }, { "nakama.tv", true }, { "nakandya.com", true }, - { "nakanishi-paint.com", true }, { "nakayama.systems", true }, { "nakedalarmclock.me", true }, { "nakedtruthbeauty.com", true }, { "nakene.com", true }, { "nakliyatsirketi.biz.tr", true }, + { "nako.no", true }, { "nalepky-na-zed.cz", true }, { "nalepte.cz", true }, { "nalexandru.xyz", true }, @@ -24215,7 +24736,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "nandex.org", true }, { "nange.co", true }, { "nankiseamansclub.com", true }, + { "nannytax.ca", true }, { "nanofy.org", true }, + { "nanogi.ga", true }, { "nanotechnologist.com", true }, { "nanotechtorsion.com", true }, { "nanovolt.nl", true }, @@ -24255,6 +24778,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "nasbnation.com", false }, { "nascio.org", true }, { "naseco.se", true }, + { "nashdistribution.com", true }, + { "nashikmatka.com", true }, { "nashira.cz", true }, { "nashvillelidsurgery.com", true }, { "nashzhou.me", true }, @@ -24269,6 +24794,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "natatorium.org", true }, { "natchmatch.com", true }, { "natecraun.net", true }, + { "natgeofreshwater.com", true }, { "nathaliebaron.ch", true }, { "nathaliebaroncoaching.ch", true }, { "nathaliedijkxhoorn.com", true }, @@ -24276,6 +24802,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "nathan.io", true }, { "nathanaeldawe.com", true }, { "nathancheek.com", false }, + { "nathankonopinski.com", true }, { "nathansmetana.com", true }, { "nathumarket.com.br", true }, { "nationalbank.gov", true }, @@ -24290,12 +24817,14 @@ static const nsSTSPreload kSTSPreloadList[] = { { "nationaltrails.ru", true }, { "nationwiderealtyinvestors.com", true }, { "natives-team.ch", true }, + { "nativitynj.org", true }, { "nativs.ch", true }, { "natlec.com", true }, { "natropie.pl", true }, { "natsumihoshino.com", true }, { "natur.com", true }, { "natura-sense.com", true }, + { "naturalfit.co.uk", true }, { "naturalhealthcures.net", true }, { "naturalkitchen.co.uk", true }, { "naturalspacesdomes.com", true }, @@ -24317,10 +24846,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "nautiljon.com", true }, { "nautsch.de", true }, { "navarralanparty.org", true }, + { "navdeep.ca", true }, { "navenlle.com", true }, { "navienna.com", true }, { "navient.com", true }, - { "navigate-it-services.de", false }, { "navitime.me", true }, { "navstevnik.sk", true }, { "navycs.com", true }, @@ -24333,6 +24862,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "nazukebanashi.com", true }, { "nazuna.blue", true }, { "nb.zone", true }, + { "nb01.com", true }, { "nb6.de", true }, { "nba-2k.com", true }, { "nba.christmas", true }, @@ -24411,7 +24941,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "nchangfong.com", true }, { "nchponline.org", true }, { "ncic.gg", true }, - { "ncloud.freeddns.org", true }, { "nclvle.co.uk", true }, { "ncm-malerbetrieb.de", true }, { "ncsc.gov.uk", true }, @@ -24422,6 +24951,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ndcpolipak.com", true }, { "ndeoffshore.com", true }, { "nder.be", true }, + { "ndfa.net", true }, { "ndhlink.com", true }, { "ndpbrn-research.org", true }, { "nds-helicopter.de", true }, @@ -24502,7 +25032,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "nemez.net", true }, { "nemo.run", true }, { "nemopan.com", true }, - { "nemplex.win", true }, + { "nemopret.dk", true }, { "nems.no", true }, { "nemumu.com", true }, { "nemunai.re", true }, @@ -24526,6 +25056,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "neos.co.jp", true }, { "neosdesignstudio.co.uk", true }, { "neostralis.com", true }, + { "neotist.com", true }, { "neowa.tk", true }, { "neowlan.net", true }, { "neoxcrf.com", true }, @@ -24534,7 +25065,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "nepal-evolution.org", true }, { "nephelion.org", true }, { "nephos.xyz", true }, - { "nephy.jp", true }, { "nepovolenainternetovahazardnihra.cz", true }, { "nepremicninar.com", true }, { "nepremicnine.click", true }, @@ -24549,6 +25079,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "nerdwallet.com", true }, { "nerdydev.net", true }, { "nerot.eu", true }, + { "nerpa-club.ru", true }, { "nerull7.info", true }, { "nerven.se", false }, { "nesbase.com", true }, @@ -24580,14 +25111,16 @@ static const nsSTSPreload kSTSPreloadList[] = { { "netducks.com", true }, { "netducks.space", true }, { "netera.se", true }, + { "neteraser.de", true }, + { "netexem.com", true }, { "netfabb.com", true }, { "netflixlife.com", true }, { "netfog.de", true }, { "netfuture.ch", true }, { "netfxharmonics.com", true }, - { "netguide.co.nz", true }, { "nethackwiki.com", true }, { "nethask.ru", true }, + { "nethostingtalk.com", true }, { "nethruster.com", true }, { "nethunter.top", true }, { "netki.com", true }, @@ -24611,11 +25144,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "netsparker.com.tr", true }, { "netspeedia.net", true }, { "netsphere.cz", true }, - { "nettacompany.com.tr", true }, { "nettamente.com", true }, { "nette.org", true }, { "nettegeschenke.de", true }, { "nettia.fi", true }, + { "nettilamppu.fi", true }, { "netto-service.ch", true }, { "nettools.link", true }, { "nettopower.dk", true }, @@ -24642,7 +25175,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "networkmon.net", true }, { "networkposting.com", true }, { "networth.at", true }, - { "networx-online.de", true }, { "netz-yokohama.co.jp", true }, { "netzfabrik.com", true }, { "netzfrauen.org", true }, @@ -24710,6 +25242,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "newmed.com.br", true }, { "newmediaone.net", true }, { "newmovements.net", true }, + { "newmusicjackson.org", true }, { "newodesign.com", true }, { "newpathintegratedtherapy.com", true }, { "newposts.ru", true }, @@ -24725,6 +25258,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "newtonproject.org", true }, { "newtrackon.com", true }, { "newvehicle.com", true }, + { "nex.li", true }, { "nex.sx", true }, { "nexicafiles.com", true }, { "nexril.net", true }, @@ -24736,8 +25270,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "nextcasino.com", true }, { "nextcloud.co.za", true }, { "nextcloud.com", true }, + { "nextcloud.nerdpol.ovh", true }, { "nextend.net", true }, - { "nextend.org", true }, { "nextevolution.co.uk", true }, { "nextgen.sk", true }, { "nextgencel.com", true }, @@ -24745,6 +25279,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "nextgreatmess.com", true }, { "nexthop.jp", true }, { "nextiot.de", true }, + { "nextlevel-it.co.uk", true }, { "nextmbta.com", true }, { "nextme.se", true }, { "nextnely.com", true }, @@ -24767,8 +25302,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "nfl.dedyn.io", true }, { "nfl.duckdns.org", true }, { "nflmocks.com", true }, + { "nfls.io", true }, { "nflsic.org", true }, - { "nfluence.org", true }, { "nframe.io", true }, { "nfrost.me", true }, { "nfsec.pl", true }, @@ -24822,6 +25357,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "nickhitch.co.uk", true }, { "nickloose.de", true }, { "nicklord.com", true }, + { "nickmertin.ca", true }, { "nickmorri.com", true }, { "nickplotnek.co.uk", true }, { "nickrickard.co.uk", true }, @@ -24845,7 +25381,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "nicolaszambetti.ch", true }, { "nicolaw.uk", true }, { "nicolemathew.com", true }, - { "nicoleoquendo.com", true }, { "niconico.ooo", true }, { "niconode.com", false }, { "nicoobook.com", true }, @@ -24854,7 +25389,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "nidro.de", true }, { "nidsuber.ch", true }, { "niederohmig.de", true }, - { "niedersetz.de", true }, { "niehage.name", true }, { "nielshoogenhout.be", true }, { "nielshoogenhout.eu", true }, @@ -24963,11 +25497,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "nitrous-networks.com", true }, { "nitschinger.at", true }, { "niu.moe", true }, + { "niva.synology.me", true }, { "nivi.ca", true }, { "nix.black", true }, { "nixonlibrary.gov", true }, { "nixx-gel.cz", true }, { "niyawe.de", true }, + { "niyazpoyilan.com", false }, { "nja.id.au", true }, { "njast.net", true }, { "njguardtraining.com", true }, @@ -24975,8 +25511,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "njpjanssen.nl", true }, { "nkapliev.org", true }, { "nkinka.de", true }, + { "nkp-media.de", true }, { "nl-ix.net", true }, { "nl.search.yahoo.com", false }, + { "nl3ehv.nl", true }, { "nlap.ca", false }, { "nlbewustgezond.nl", true }, { "nlfant.eu", true }, @@ -24989,6 +25527,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "nmnd.de", true }, { "nmontag.com", true }, { "nn.cz", true }, + { "nn78.com", true }, { "nna774.net", true }, { "nnqc.nl", true }, { "no-ip.cz", true }, @@ -25003,7 +25542,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "nobleparkapartments.com.au", true }, { "nobly.de", true }, { "noc.org", true }, - { "noc.wang", true }, { "nocit.dk", true }, { "nocks.com", true }, { "nocmd.com", true }, @@ -25011,16 +25549,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "nodalr.com", true }, { "nodari.com.ar", true }, { "nodariweb.com.ar", true }, - { "nodecompat.com", true }, { "nodecraft.com", true }, - { "nodefoo.com", true }, { "nodejs.de", true }, { "nodelab-it.de", true }, { "nodelia.com", true }, - { "nodepositcasinouk.com", true }, { "nodesec.cc", true }, { "nodesturut.cl", true }, - { "nodum.io", true }, + { "nodevops.com", true }, { "noeatnosleep.me", true }, { "noedidacticos.com", true }, { "noelclaremont.com", true }, @@ -25038,6 +25573,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "nohttps.org", true }, { "nohup.se", true }, { "nohup.xyz", true }, + { "noima.com", true }, { "noincludesubdomains.preloaded.test", false }, { "noise.agency", true }, { "noisetor.net", true }, @@ -25051,7 +25587,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "noleggio-bagni-chimici.it", true }, { "noma-film.com", true }, { "nomadproject.io", true }, - { "nomagic.software", true }, { "nomenclator.org", true }, { "nomesbiblicos.com", true }, { "nomial.co.uk", true }, @@ -25065,7 +25600,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "noob-box.net", true }, { "noobswhatelse.net", true }, { "noobunbox.net", true }, - { "noodlecrave.com", true }, { "noodles.net.nz", true }, { "noodplan.co.za", true }, { "noodweer.be", true }, @@ -25077,7 +25611,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "noortronic.com", true }, { "nootronerd.com", true }, { "nootropic.com", true }, - { "nootropicpedia.com", true }, { "noovell.com", true }, { "nopaste.xyz", true }, { "nopaynocure.com", true }, @@ -25089,11 +25622,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "nordlichter-brv.de", true }, { "nordmoregatebilklubb.com", true }, { "nordnetz-hamburg.de", true }, - { "nordseeblicke.de", true }, { "nordwal.de", true }, { "nordwaldzendo.de", true }, - { "noref.tk", true }, { "noreply.mx", true }, + { "norestfortheweekend.com", true }, { "noret.com", true }, { "norichanmama.com", true }, { "noriel.ro", true }, @@ -25141,6 +25673,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "nosyu.pe.kr", true }, { "nota.moe", true }, { "notabug.org", true }, + { "notacooldomain.com", true }, { "notadd.com", true }, { "notallmine.net", true }, { "notalone.gov", true }, @@ -25148,6 +25681,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "notar-glagowski.de", true }, { "notar-peikert.com", true }, { "notare-marktplatz24.info", true }, + { "notarkrauss.de", true }, { "notarvysocina.cz", true }, { "notcompletelycorrect.com", true }, { "notepad.nz", true }, @@ -25195,20 +25729,20 @@ static const nsSTSPreload kSTSPreloadList[] = { { "novoresume.com", false }, { "novosibavia.ru", true }, { "novurania.com", true }, - { "nowcost.com", true }, { "nowhere.dk", true }, { "nowitzki.me", true }, { "nowlas.org", true }, { "nowloading.co", true }, - { "nowremindme.com", true }, { "noxi.ga", true }, { "noxlogic.nl", true }, + { "noydeen.com", true }, { "noyocenter.org", true }, { "np-edv.at", true }, { "np.search.yahoo.com", false }, { "npath.de", true }, { "npcrcss.org", true }, { "npmcdn.com", true }, + { "npsas.org", true }, { "npw.net", true }, { "nqesh.com", true }, { "nqeshreviewer.com", true }, @@ -25217,10 +25751,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "nrev.ch", true }, { "nrkn.fr", true }, { "nrsweb.org", true }, - { "nrvn.cc", false }, { "ns-frontier.com", true }, { "ns2servers.pw", true }, { "nsa.lol", true }, + { "nsa.ovh", true }, { "nsa.wtf", true }, { "nsapwn.com", true }, { "nsboston.org", true }, @@ -25260,8 +25794,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "nuamooreaindonesia.com", true }, { "nubella.com.au", true }, { "nubu.at", true }, + { "nuclea.site", true }, { "nuclearcat.com", true }, { "nucleuscore.org", true }, + { "nudevotion.com", true }, { "nuel.cl", true }, { "nuevaimagenpublicidad.es", true }, { "nuffield.nl", true }, @@ -25285,7 +25821,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "numero1.ch", true }, { "numerologist.com", true }, { "numerossanos.com.ar", true }, - { "numis.tech", false }, + { "numis.tech", true }, { "numismed-seniorcare.de", true }, { "numm.fr", true }, { "numwave.nl", true }, @@ -25332,7 +25868,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "nwwc.dk", true }, { "nwwnetwork.net", true }, { "nxinfo.ch", true }, + { "nxit.ca", true }, + { "nxth.io", true }, { "nya.as", true }, + { "nyadora.com", true }, { "nyadora.moe", true }, { "nyan.it", true }, { "nyan.stream", true }, @@ -25343,7 +25882,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "nycoyote.org", true }, { "nydig.com", true }, { "nydnxs.com", true }, - { "nyffo.com", true }, { "nyhaoyuan.net", true }, { "nyiad.edu", true }, { "nyip.co.uk", true }, @@ -25364,6 +25902,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "nzstudy.ac.nz", true }, { "nzws.me", true }, { "o-loska.cz", true }, + { "o-results.ch", true }, { "o-sp.com", true }, { "o2careers.co.uk", true }, { "o3.wf", true }, @@ -25371,6 +25910,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "o6asan.com", true }, { "o8b.club", true }, { "oaic.gov.au", true }, + { "oakandresin.co", true }, { "oakesfam.net", true }, { "oakington.info", true }, { "oaklands.co.za", true }, @@ -25388,6 +25928,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "obamawhitehouse.gov", true }, { "oberhofdrinks.com", true }, { "obermeiers.eu", true }, + { "obesidadlavega.com", true }, { "obfuscate.xyz", true }, { "obg-global.com", true }, { "obitech.de", true }, @@ -25435,7 +25976,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ocrn.nl", true }, { "ocsigroup.fr", true }, { "ocsr.nl", true }, - { "octal.es", true }, { "octarineparrot.com", true }, { "octav.name", false }, { "octohedralpvp.tk", true }, @@ -25447,6 +25987,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "octosys.org", true }, { "octosys.ru", true }, { "octothorpe.club", true }, + { "octothorpe.ninja", true }, { "oculus.com", true }, { "oddmuse.org", true }, { "oddnumber.ca", true }, @@ -25455,6 +25996,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "oddtime.net", true }, { "odensc.me", true }, { "odifi.com", true }, + { "odinseye.net", true }, { "odoo.co.th", true }, { "odpikedoslike.com", true }, { "odtu.lu", true }, @@ -25482,6 +26024,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "offertegiuste.com", true }, { "offfbynight.be", true }, { "offgames.io", true }, + { "offgridhub.com", true }, { "office-discount.at", true }, { "office-discount.de", true }, { "office-furniture-direct.co.uk", true }, @@ -25495,12 +26038,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "offroadeq.com", true }, { "offshoot.rentals", true }, { "offshore.digital", true }, - { "ofggolf.com", true }, { "oflow.me", true }, { "oftamedic.com", true }, { "oftn.org", true }, { "oge.ch", true }, { "ogis.gov", true }, + { "oglen.ca", true }, { "ogocare.com", true }, { "oguya.ch", true }, { "ogyaa.jp", true }, @@ -25514,10 +26057,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ohhere.xyz", true }, { "ohiohealthfortune100.com", true }, { "ohling.org", true }, + { "ohmayonnaise.com", true }, { "ohne-name.de", true }, { "ohnonotme.com", true }, + { "ohol.se", true }, { "ohsohairy.co.uk", true }, { "ohyooo.com", true }, + { "oi-wiki.org", true }, { "oiaio.cn", true }, { "oilfieldinjury.attorney", true }, { "oilpaintingsonly.com", true }, @@ -25528,6 +26074,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ojanaho.com", true }, { "ojdip.net", true }, { "ojomovies.com", true }, + { "ojp.gov", true }, { "okakuro.org", true }, { "okanaganrailtrail.ca", true }, { "okay.cf", true }, @@ -25563,6 +26110,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "oldita.ru", true }, { "oldking.net", true }, { "oldnews.news", true }, + { "oldno07.com", true }, { "oldoakflorist.com", true }, { "oldprop.com", true }, { "oldroutetwo.com", true }, @@ -25572,7 +26120,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "oleksii.name", true }, { "oleodecopayba.com.br", true }, { "oles-hundehaus.de", true }, + { "olfnewcastle.com", true }, { "olgiati.org", true }, + { "olgui.net", true }, { "olgun.eu", true }, { "olifant.fr", true }, { "olightstore.com", true }, @@ -25605,21 +26155,19 @@ static const nsSTSPreload kSTSPreloadList[] = { { "olltechjob.com", true }, { "olmari.fi", true }, { "olmsted.io", true }, - { "ols.io", true }, { "olygazoo.com", true }, { "olymp-arts.world", true }, { "olympiads.ca", true }, { "olympic-research.com", true }, { "om1.com", true }, { "omanko.porn", true }, - { "omar.yt", true }, + { "omarsuniagamusic.ga", true }, { "omdesign.cz", true }, { "omegahosting.net", true }, { "omegathermoproducts.nl", true }, { "omertabeyond.com", true }, { "omertabeyond.net", true }, { "ometepeislandinfo.com", true }, - { "omeuanimal.com", true }, { "omf.link", true }, { "omfg.exposed", true }, { "omgbouncycastlehire.co.uk", true }, @@ -25654,6 +26202,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "oncf.asso.fr", true }, { "oncodedesign.com", true }, { "ond-inc.com", true }, + { "ond-inc.jp", true }, { "ondcp.gov", true }, { "onderwijstransparant.nl", true }, { "ondrej.org", true }, @@ -25687,7 +26236,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "onepointsafeband.com", true }, { "onepointzero.com", true }, { "oneprediction.com", true }, - { "onesnzeroes.com", true }, + { "onesnzeroes.com", false }, { "onesports.cz", true }, { "onestepfootcare.com", true }, { "onestopcastles.co.uk", true }, @@ -25704,6 +26253,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "onhub1.com", true }, { "oni.nl", true }, { "onice.ch", true }, + { "onionbot.me", true }, { "onionplay.live", true }, { "onionplay.org", true }, { "onionscan.org", true }, @@ -25724,7 +26274,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "online-stopwatch.com", true }, { "online.marketing", true }, { "online.net.gr", true }, - { "online.swedbank.se", true }, { "online24.pt", true }, { "onlinebizdirect.com", false }, { "onlinecasino.vlaanderen", true }, @@ -25764,6 +26313,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ontdekhetzelf.nu", true }, { "onthebriteside.com", true }, { "ontras.com", false }, + { "ontsnappingskamer.nl", true }, { "onurer.net", true }, { "onvey.io", true }, { "onvirt.de", true }, @@ -25792,7 +26342,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "open-bs.com", true }, { "open-bs.ru", true }, { "open-desk.org", true }, - { "open-domotics.info", true }, { "open-freax.fr", true }, { "open-gaming.net", true }, { "open-infrastructure.net", true }, @@ -25868,6 +26417,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "oplop.appspot.com", true }, { "opoleo.com", false }, { "oportho.com.br", true }, + { "oportunidadesemfoco.com.br", true }, { "opp.ag", true }, { "oppaiti.me", true }, { "oppejoud.ee", true }, @@ -25881,10 +26431,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "opryshok.com", true }, { "ops-com.com", true }, { "opsmate.com", false }, - { "opsnotepad.com", true }, { "opti-net.at", true }, { "opticaltest.com", true }, - { "optiekzien.nl", true }, { "optik-trosdorff.de", true }, { "optimalsetup.com", true }, { "optimised.cloud", true }, @@ -25916,8 +26464,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "orangefinanse.com.pl", true }, { "orangejetpack.com", true }, { "orangenbaum.at", true }, - { "orangenuts.in", true }, - { "oranges.tokyo", true }, { "orangutan-appeal.org.uk", true }, { "orbu.net", true }, { "orca.pet", true }, @@ -25939,10 +26485,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "orf-kartentausch.at", false }, { "organica.co.za", true }, { "organisatieteam.nl", true }, + { "organisationsberatung-jacobi.de", true }, { "organix.ma", true }, { "orgasmium.com", true }, { "orgatech-gmbh.de", true }, { "orgsyn.in", true }, + { "orhideous.name", true }, { "orians.eu", true }, { "oribia.net", true }, { "orientalart.nl", true }, @@ -25975,7 +26523,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "orthotictransfers.com", true }, { "ortlepp.eu", true }, { "ortodonciaian.com", true }, - { "orum.in", true }, { "orwell1984.today", true }, { "oryva.com", true }, { "orz.uno", true }, @@ -25995,6 +26542,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "oscarvk.ch", true }, { "oscloud.com", true }, { "osepideasthatwork.org", true }, + { "osereso.tn", true }, { "oses.mobi", true }, { "oshayr.com", true }, { "oshell.me", true }, @@ -26011,6 +26559,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "osmre.gov", true }, { "osnova.cz", true }, { "osobliwydom.pl", true }, + { "osomjournal.org", true }, { "ospf.sk", true }, { "ospree.me", true }, { "osquery.io", true }, @@ -26035,7 +26584,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "otellio.com", true }, { "otellio.de", true }, { "otellio.it", true }, - { "otherkinforum.com", true }, { "oticasaopaulo.com.br", true }, { "oticasvisao.net.br", true }, { "otorrino.pt", true }, @@ -26064,7 +26612,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ourcloud.at", true }, { "ourdocuments.gov", true }, { "ourevents.net", true }, - { "ourmaster.org", true }, { "ouruglyfood.com", true }, { "ourwedding.xyz", true }, { "ourworldindata.org", true }, @@ -26156,6 +26703,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "p1cn.com", true }, { "p1ratrulezzz.me", true }, { "p4chivtac.com", true }, + { "p5118.com", true }, { "p5r.uk", true }, { "pa-w.de", true }, { "pa.search.yahoo.com", false }, @@ -26164,30 +26712,14 @@ static const nsSTSPreload kSTSPreloadList[] = { { "paas-inf.net", true }, { "paass.net", true }, { "paazmaya.fi", true }, - { "pablo.im", true }, - { "pablo.scot", true }, - { "pablo.sh", true }, - { "pabloarteaga.co.uk", true }, - { "pabloarteaga.com", true }, - { "pabloarteaga.com.es", true }, - { "pabloarteaga.es", true }, - { "pabloarteaga.eu", true }, - { "pabloarteaga.info", true }, - { "pabloarteaga.me", true }, - { "pabloarteaga.name", true }, - { "pabloarteaga.net", true }, - { "pabloarteaga.nom.es", true }, - { "pabloarteaga.org", true }, - { "pabloarteaga.science", true }, - { "pabloarteaga.tech", true }, - { "pabloarteaga.uk", true }, - { "pabloarteaga.xyz", true }, { "pabuzo.vn", true }, { "pacatlantic.com", true }, { "pacco.com.br", true }, { "pace.car", true }, { "paceda.nl", true }, { "pacelink.de", true }, + { "pacifco.com", true }, + { "pacificcashforcars.com.au", true }, { "pacificpalisadeselectric.com", true }, { "pacificpalisadeselectrical.com", true }, { "pacificpalisadeselectrician.com", true }, @@ -26210,7 +26742,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "padberx-marketing-consultants.de", true }, { "paddy.rocks", true }, { "padianda.com", true }, - { "padovani.de", true }, { "padpilot.co", true }, { "padrepio.in", true }, { "padron.com.es", true }, @@ -26231,6 +26762,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "pagedesignshop.com", true }, { "pagedesignweb.com", true }, { "pagefulloflies.io", true }, + { "pageperform.com", true }, { "pagewizz.com", true }, { "pagiamtzis.com", true }, { "pagina.com.mx", true }, @@ -26265,6 +26797,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "palavatv.com", true }, { "palazzo.link", true }, { "palazzo.work", true }, + { "paleolowcarb.de", true }, { "paleotraining.com", true }, { "palladium46.com", true }, { "pallas.in", true }, @@ -26299,8 +26832,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "pandymic.com", true }, { "paneldewelopera.pl", true }, { "paneu.de", true }, + { "panic.tk", true }, { "panier-legumes.bio", true }, { "panj.ws", true }, + { "panjee.fr", true }, { "panlex.org", true }, { "panmetro.com", true }, { "panoma.de", true }, @@ -26334,10 +26869,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "paper-republic.org", true }, { "paper.sc", true }, { "paperhoney.by", true }, + { "paperlesssolutionsltd.com.ng", true }, { "papertracker.net", true }, { "paperturn.com", true }, { "paperwallets.io", true }, - { "paperwork.co.za", true }, { "paperwritinghelp.net", true }, { "papiermakerijdehoop.nl", true }, { "papiermeteenverhaal.nl", true }, @@ -26405,16 +26940,17 @@ static const nsSTSPreload kSTSPreloadList[] = { { "parser.nu", true }, { "parsonsfamilyhomes.com", true }, { "partage.ovh", true }, - { "parteaga.com", true }, - { "parteaga.net", true }, { "partecipa.tn.it", true }, { "parthkolekar.me", true }, { "participatorybudgeting.de", true }, { "participatorybudgeting.info", true }, + { "partijhandel.website", true }, { "partijtjevoordevrijheid.nl", false }, + { "partiono.com", true }, { "partiwatch.com", true }, { "partner.sh", true }, { "partnerbeam.com", true }, + { "partnermobil.de", true }, { "partnersfcu.org", true }, { "partou.de", true }, { "partridge.tech", true }, @@ -26443,6 +26979,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "parvaneh.fr", true }, { "pasadenapooch.org", true }, { "pasadenasandwich.co", true }, + { "pasadenasandwich.com", true }, { "pasadenasandwichcompany.com", true }, { "pasalt.com", true }, { "pasarella.eu", true }, @@ -26519,6 +27056,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "patdorf.com", true }, { "patechmasters.com", true }, { "patentados.com", true }, + { "patentfamily.de", true }, { "paterno-gaming.com", true }, { "pathagoras.com", true }, { "pathwaystoresilience.org", true }, @@ -26533,12 +27071,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "patrickbrosi.de", true }, { "patricklynch.xyz", true }, { "patrickmcnamara.xyz", true }, - { "patrickschneider.me", true }, { "patrikgarten.de", true }, { "patriksima.cz", true }, { "patriksimek.cz", true }, { "patriotstationatchalfont.com", true }, { "patrz.eu", true }, + { "patsch-photography.de", true }, { "patsyforyou.ch", true }, { "patsytoforyou.ch", true }, { "pattonfanatic.com", true }, @@ -26553,6 +27091,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "paulbakaus.com", true }, { "paulbdelaat.nl", true }, { "paulbramhall.uk", true }, + { "paulcooper.me.uk", true }, { "pauldev.co", true }, { "paulerhof.com", true }, { "paulewen.ca", true }, @@ -26585,6 +27124,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "pawel-international.com", true }, { "pawelnazaruk.com", true }, { "pawelurbanek.com", true }, + { "pawfriends.org.za", true }, { "pawsomebox.co.uk", true }, { "pawsr.us", true }, { "paxerahealth.com", true }, @@ -26604,6 +27144,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "paymerang.com", true }, { "paymill.com", true }, { "paymill.de", true }, + { "paynet.com.co", true }, { "payoff.com", true }, { "paypal.com", false }, { "paypaq.com", true }, @@ -26663,12 +27204,14 @@ static const nsSTSPreload kSTSPreloadList[] = { { "pdfpassword.org", true }, { "pdfpasswort.de", true }, { "pdfresizer.com", true }, + { "pdfsearch.org", true }, { "pdfsearches.com", true }, { "pdox.net", true }, { "pdragt.com", true }, { "pdthings.net", true }, { "pdxtowncar.net", true }, { "pe.search.yahoo.com", false }, + { "peacedivorce.com", true }, { "peaceispossible.cc", true }, { "peaceloveandlabor.com", true }, { "peak-careers.com", true }, @@ -26731,6 +27274,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "pehapkari.cz", true }, { "peifi.de", false }, { "peippo.at", true }, + { "peka.pw", true }, { "pekkapleppanen.fi", true }, { "pekoe.se", true }, { "pelanucto.cz", true }, @@ -26740,11 +27284,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "pelopogrund.com", true }, { "pelopoplot.com", true }, { "pelotonimports.com", true }, + { "pems.gov.au", true }, { "penaugustin.com", true }, { "pencepay.com", true }, { "pencillab.cn", true }, { "pendriveapps.com", true }, { "penetrationstest.se", true }, + { "penfold.fr", true }, { "pengi.me", true }, { "penguindrum.moe", true }, { "penguinprotocols.com", true }, @@ -26758,7 +27304,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "pensador.com", true }, { "pensador.info", true }, { "pensioenfonds-ey.nl", true }, - { "pension-veldzigt.nl", true }, { "pensionpilot.ca", true }, { "penslabyrinth.com", true }, { "pentandra.com", true }, @@ -26777,6 +27322,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "peplog.nl", true }, { "pepwaterproofing.com", true }, { "pequenosfavoritos.com.br", true }, + { "per-olsson.se", true }, { "pera.gs", true }, { "perala.me", true }, { "peraparker.cz", true }, @@ -26785,7 +27331,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "percy.io", true }, { "perd.re", true }, { "perecraft.com", true }, - { "perez-marrero.com", true }, { "perezdecastro.org", true }, { "perfect.in.th", true }, { "perfectbalance.tech", true }, @@ -26821,7 +27366,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "personal-genome.com", true }, { "personal-injury-attorney.co", true }, { "personaltrainer-senti.de", true }, - { "personcar.com.br", true }, { "perspectivum.com", true }, { "perspektivwechsel-coaching.de", true }, { "persson.me", true }, @@ -26839,6 +27383,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "pet-hotel-mura.net", true }, { "petabits.de", true }, { "petalkr.com", true }, + { "petbooking.it", true }, { "petcarvers.com", true }, { "petdesign.pet", true }, { "peteboc.com", true }, @@ -26853,9 +27398,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "peterfiorella.com", true }, { "peterhuetz.at", true }, { "peterhuetz.com", true }, + { "peterjin.org", true }, { "peterjohnson.io", true }, + { "peterkshultz.com", false }, { "peterlew.is", true }, - { "peters.consulting", true }, { "petersontoscano.com", true }, { "petervanleeuwentweewielers.nl", true }, { "petfa.ga", true }, @@ -26866,10 +27412,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "petko.me", true }, { "petlife.vet", true }, { "petmall.bg", true }, + { "peto.nl", true }, { "petofiprogram.hu", true }, { "petplus.com", true }, { "petpost.co.nz", false }, { "petpower.eu", true }, + { "petr.as", true }, { "petrasestakova.cz", true }, { "petresort.pt", true }, { "petroscand.eu", true }, @@ -26881,6 +27429,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "pettitcoat.com", true }, { "petwall.info", true }, { "pew.ninja", true }, + { "pewnews.org", true }, { "pex.digital", true }, { "peyote.com", true }, { "pf.dk", true }, @@ -26902,9 +27451,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "pfmeasure.com", true }, { "pfo.io", true }, { "pfotentour-berlin.de", true }, + { "pfrost.me", true }, { "pfudor.tk", true }, { "pg-forum.de", true }, { "pg-mana.net", true }, + { "pgh-art.com", true }, { "pglandscapingpaving.com", true }, { "pgmann.cf", true }, { "pgnetwork.net", true }, @@ -26920,7 +27471,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "pharmaabsoluta.com.br", true }, { "pharmaboard.de", true }, { "pharmaboard.org", true }, - { "pharmacie-fr.org", true }, { "pharmacieplusfm.ch", true }, { "pharmafoto.ch", true }, { "pharmaphoto.ch", true }, @@ -26929,20 +27479,23 @@ static const nsSTSPreload kSTSPreloadList[] = { { "pharmasana.de", true }, { "pharmica.co.uk", true }, { "pharmica.uk", true }, + { "pharside.dyndns.org", true }, { "pharynks.com", true }, { "pharynx.nl", true }, { "phasersec.com", false }, { "phasme-2016.com", true }, + { "phattea.tk", true }, { "phaux.uno", true }, { "phcimages.com", true }, { "phcorner.net", true }, { "phdhub.it", true }, - { "phelx.de", true }, { "phenixairsoft.com", true }, { "phget.com", true }, { "phi-works.com", true }, { "phialo.de", true }, + { "phil-dirt.com", true }, { "phil-phillies.com", true }, + { "phil.tw", true }, { "philadelphia.com.mx", true }, { "phileas-psychiatrie.be", true }, { "philia-sa.com", true }, @@ -26971,7 +27524,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "philsturgeon.uk", true }, { "philux.ch", true }, { "phishing-studie.org", true }, - { "phishing.rs", true }, { "phishingusertraining.com", true }, { "phligence.com", true }, { "phocean.net", true }, @@ -27007,21 +27559,18 @@ static const nsSTSPreload kSTSPreloadList[] = { { "phpbbchinese.com", true }, { "phpdistribution.com", true }, { "phpdorset.co.uk", true }, - { "phpinfo.in.th", true }, { "phpkari.cz", true }, { "phpliteadmin.org", true }, { "phpmyadmin.net", true }, { "phpprime.com", true }, { "phpsecure.info", true }, { "phpunit.de", true }, - { "phr34kz.pw", true }, { "phra.gs", true }, { "phrive.space", true }, { "phryanjr.com", false }, { "phryneas.de", true }, { "phuket-idc.com", true }, { "phuket-idc.de", true }, - { "phumin.in.th", true }, { "phunehehe.net", true }, { "phurl.de", true }, { "phurl.io", true }, @@ -27096,7 +27645,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "pieterhordijk.com", true }, { "pietermaene.be", false }, { "pietz.uk", true }, - { "pigritia.de", true }, { "pigs.pictures", true }, { "pijuice.com", true }, { "pik.bzh", true }, @@ -27110,19 +27658,16 @@ static const nsSTSPreload kSTSPreloadList[] = { { "piliszek.net", true }, { "pill.id", true }, { "pilot.co", true }, - { "pilotandy.com", true }, { "pilotgrowth.com", true }, { "pilsoncontracting.com", true }, { "pilvin.pl", true }, { "pimhaarsma.nl", true }, { "pimhaarsmamedia.nl", true }, - { "pimpmypaper.com", true }, { "pimpmyperf.fr", true }, { "pinceaux.org", true }, { "pincha.com.tw", false }, { "pincodeit.com", true }, { "pindanutjes.be", false }, - { "pineapplesapp.com", true }, { "pinemountainnursery.com.au", true }, { "pinemountbaptistchurch.org", true }, { "pingworks.com", true }, @@ -27141,6 +27686,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "pinklecfest.org", true }, { "pinklittlenotebook.com", true }, { "pinkwalk.co.nz", true }, + { "pinkylam.me", true }, + { "pinnacleallergy.net", true }, { "pinnaclelife.co.nz", true }, { "pinnaclelife.nz", true }, { "pinnacles.com", true }, @@ -27163,6 +27710,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "pintosplumbing.co.za", true }, { "pioneer-car.eu", true }, { "pioneer-rus.ru", true }, + { "pipenny.net", true }, { "pipocao.com", true }, { "piranil.com", true }, { "pirate.trade", true }, @@ -27187,6 +27735,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "pircher.co.uk", true }, { "pires.ovh", true }, { "pirman.es", true }, + { "piroleikki.co.jp", true }, { "piruchita.com", true }, { "pirxpilot.me", true }, { "piscine.roma.it", true }, @@ -27213,11 +27762,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "pixelfou.com", true }, { "pixelminers.net", true }, { "pixelpirat.ch", true }, - { "pixelpoint.io", true }, { "pixelrain.info", true }, { "pixelsquared.us", true }, { "pixelurbia.com", true }, { "pixelution.at", true }, + { "pixelz.cc", true }, { "pixiv.cat", true }, { "pixiv.moe", true }, { "pixivimg.me", true }, @@ -27236,16 +27785,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "pizzeria-mehrhoog.de", true }, { "pizzeriaamadeus.hr", true }, { "pizzeriacolore.com", true }, - { "pj00100.com", true }, - { "pj00200.com", true }, - { "pj00300.com", true }, - { "pj00400.com", true }, - { "pj00600.com", true }, - { "pj00700.com", true }, - { "pj00800.com", true }, { "pj009.com", true }, - { "pj00900.com", true }, - { "pj02.com", true }, { "pj539999.com", true }, { "pjentertainments.co.uk", true }, { "pjili.com", true }, @@ -27254,13 +27794,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "pjuu.com", false }, { "pk.search.yahoo.com", false }, { "pkbjateng.com", true }, - { "pkbjateng.or.id", true }, { "pkgt.de", false }, { "pkirwan.com", true }, { "pkisolutions.com", true }, - { "pko.ch", true }, { "pkov.cz", true }, { "pkphotobooths.co.uk", true }, + { "pksps.com", true }, { "pl-cours.ch", true }, { "pl.search.yahoo.com", false }, { "placasonline.com.br", true }, @@ -27282,7 +27821,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "plan-immobilier.fr", true }, { "planboardapp.com", true }, { "planecon.nz", true }, - { "planeexplanation.com", true }, { "planer.me", true }, { "planespotterblog.de", true }, { "planet-laas.de", true }, @@ -27310,6 +27848,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "planmemberpartners.com", true }, { "plannedlink.com", true }, { "planningexcellence.com.au", true }, + { "planolowcarb.com", true }, { "plant-gift.jp", true }, { "plantarum.com.br", true }, { "plantastique.ch", true }, @@ -27346,7 +27885,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "playerscout.net", true }, { "playform.cloud", true }, { "playhappywheelsunblocked.com", true }, - { "playkh.com", true }, { "playkinder.com", true }, { "playnation.io", true }, { "playocean.net", true }, @@ -27357,10 +27895,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "playtictactoe.org", true }, { "playtimebouncycastles.co.uk", true }, { "playupnow.com", true }, + { "playviolinmusic.com", true }, { "playzonecastles.co.uk", true }, { "plazasummerlin.com", true }, { "pld-entertainment.co.uk", true }, { "pldx.org", true }, + { "pleaseuseansnisupportedbrowser.ml", true }, { "plegro.com", true }, { "pleiades.com.tr", true }, { "pleier-it.de", false }, @@ -27371,6 +27911,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "plexa.de", true }, { "plexhome13.ddns.net", true }, { "plexi.dyndns.tv", true }, + { "plexmark.tk", true }, { "plextv.de", true }, { "pliosoft.com", true }, { "plissee-experte.de", true }, @@ -27409,8 +27950,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "plus-5.com", true }, { "plus.google.com", false }, { "plus.sandbox.google.com", true }, + { "plus1s.site", true }, { "pluscbdoil.com", true }, - { "plushev.com", true }, { "pluslink.co.jp", true }, { "plusstreamfeed.appspot.com", true }, { "plustech.id", true }, @@ -27437,13 +27978,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "pmarques.info", true }, { "pmartin.tech", true }, { "pmbc.org", true }, + { "pmbtf.com", true }, { "pmconference.ch", true }, { "pmf.gov", true }, { "pmg-offshore-company.com", true }, { "pmg-purchase.com", true }, { "pmg-purchase.net", true }, { "pmgnet.de", true }, - { "pmheart.site", true }, { "pmklaassen.com", true }, { "pmnaish.co.uk", true }, { "pmoreau.org", true }, @@ -27488,11 +28029,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "poffenhouse.ddns.net", true }, { "pogera.com", true }, { "pogrebisky.net", true }, + { "pohlednice-tap.cz", true }, { "pohlmann.io", true }, { "poinsot.info", true }, { "pointaction.com", true }, { "pointhost.de", true }, - { "points4unitedway.com", true }, { "pointsgame.net", true }, { "pointsixtyfive.com", true }, { "pointum.com", true }, @@ -27504,12 +28045,15 @@ static const nsSTSPreload kSTSPreloadList[] = { { "pokefarm.com", true }, { "pokeinthe.io", true }, { "pokemondb.net", true }, + { "pokemonlab.com", true }, + { "pokemonsimulator.com", true }, { "pokemontabletopadventures.com", true }, { "pokemori.jp", true }, { "pokepon.center", true }, { "pokl.cz", true }, { "polaire.org", true }, { "polanda.com", true }, + { "polar-baer.com", true }, { "polar.uk.com", true }, { "pole-emotion.ch", true }, { "poleacademie.com", true }, @@ -27519,8 +28063,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "policesromandesrecrutement.ch", true }, { "policyreporter.com", true }, { "policyreporter.us", true }, + { "polinet.de", true }, { "polis.or.at", true }, { "polis.to", false }, + { "polis812.ru", true }, { "polish-dictionary.com", true }, { "polish-flag.com", true }, { "polish-translations.com", true }, @@ -27556,6 +28102,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "polygamer.net", true }, { "polymake.org", true }, { "polymathematician.com", true }, + { "polymorph.rs", true }, { "polynomapp.com", true }, { "polypane.rocks", true }, { "polypet.com.sg", true }, @@ -27563,7 +28110,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "polytarian.com", true }, { "polytekniskforening.dk", true }, { "pomar.club", false }, - { "pomardaserra.com", true }, { "pomelo-paradigm.com", true }, { "pomfeed.fr", true }, { "pommedepain.fr", true }, @@ -27611,6 +28157,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "pornhubhd.biz", true }, { "porniwi.com", true }, { "pornloupe.com", true }, + { "pornofilmovi.us", true }, { "pornomens.be", true }, { "pornspider.to", true }, { "porpcr.com", true }, @@ -27627,7 +28174,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "portalcarriers.com", true }, { "portalcentric.net", true }, { "portalkla.com.br", true }, - { "portalveneza.com.br", true }, { "portalzine.de", true }, { "portamiinpista.it", true }, { "porte.roma.it", true }, @@ -27648,6 +28194,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "pos.co.tz", true }, { "posalji.me", true }, { "posaunenchor-senden.de", true }, + { "posbank.co.uk", true }, { "poseidonwaterproofing.com", true }, { "poshcastles.co.uk", true }, { "poshlashes.se", true }, @@ -27662,11 +28209,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "post-darwinism.com", true }, { "post.com.ar", true }, { "post.io", true }, + { "post.we.bs", true }, { "postal.dk", true }, { "postal3.es", true }, { "postblue.info", true }, { "postbox.life", true }, { "postcode.nl", true }, + { "postcodewise.co.uk", true }, { "postdarwinian.com", true }, { "postdarwinism.com", true }, { "postdeck.de", true }, @@ -27693,6 +28242,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "potrillionaires.com", true }, { "potterscraftcider.com", true }, { "pottersheartministry.org", true }, + { "pottreid.com", true }, { "pottshome.co.uk", true }, { "potworowski.de", true }, { "potzwonen.nl", true }, @@ -27716,6 +28266,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "powerdent.net.br", true }, { "poweredbyiris.nl", true }, { "poweredbypurdy.com", true }, + { "powerfortunes.com", true }, { "powermatic7.com", true }, { "powermeter.at", true }, { "powermint.de", true }, @@ -27724,6 +28275,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "powerserg.org", true }, { "powersergdatasystems.com", true }, { "powersergholdings.com", true }, + { "powersergthisisthetunnelfuckyouscott.com", true }, { "powersergthisisthewebsitefuckyouscott.com", true }, { "powersergusercontent.com", true }, { "powertothebuilder.com", true }, @@ -27731,6 +28283,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "pozemedicale.org", true }, { "pozlife.net", true }, { "pozzitiv.ro", true }, + { "pp-server.com", true }, { "pp3345.net", true }, { "ppcrestaurants.com", true }, { "ppipe.net", true }, @@ -27739,9 +28292,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ppmathis.ch", true }, { "ppmathis.com", true }, { "ppmoon.com", true }, + { "ppoou.co.uk", true }, { "ppoozl.com", true }, { "ppro.com", true }, - { "ppsvcs2.com", true }, { "pptavmdata.org", true }, { "ppy.la", true }, { "ppy.sh", true }, @@ -27750,7 +28303,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "pr2studio.com", true }, { "prac.to", true }, { "pracowniatkanin.com", true }, - { "practicalprogrammer.tech", true }, { "practiceflow.nl", true }, { "practicepanther.com", true }, { "practo.com", true }, @@ -27765,6 +28317,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "prakhar.uk", true }, { "prakharprasad.com", true }, { "praktijkdevecht.nl", true }, + { "praktijkpassepartout.nl", true }, { "praxino.de", true }, { "praxis-dingeldey.de", true }, { "praxis-familienglueck.de", true }, @@ -27779,13 +28332,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "preciscx.com", true }, { "preciseassemblies.com", true }, { "precision.st", true }, + { "precisiondigital-llc.com", true }, { "precode.eu", true }, { "predoiu.ro", true }, { "prefix.eu", true }, { "pregono.com", true }, { "pregunteleakaren.gov", true }, { "preigu.de", true }, - { "preio.cn", true }, { "preis-alarm.info", true }, { "preis-alarm.org", true }, { "preloaded-hsts.badssl.com", true }, @@ -27806,6 +28359,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "premierheart.com", true }, { "premierjewelersjax.com", true }, { "premiership-predictors.co.uk", true }, + { "premiumcredit.am", true }, { "premiumweb.co.id", true }, { "premiumwebdesign.it", true }, { "prenatalgeboortekaartjes.nl", true }, @@ -27813,7 +28367,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "prepaid-voip.nl", true }, { "prepaidkredietkaart.be", true }, { "prepare-job-hunting.com", true }, + { "preposted.com", true }, { "presbee.com", true }, + { "presbvm.org", true }, { "prescotonline.co.uk", true }, { "present-m.com", true }, { "presentesdegrife.com.br", true }, @@ -27846,6 +28402,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "pretzelx.com", true }, { "prevenir.ch", true }, { "preview-it-now.com", true }, + { "priceremoval.net", true }, { "pricesniffer.co", true }, { "prideindomination.com", true }, { "prielwurmjaeger.de", true }, @@ -27854,10 +28411,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "primalinea.pro", true }, { "primates.com", true }, { "primewho.org", true }, + { "primoloyalty.com", true }, { "primorus.lt", true }, { "primotilesandbathrooms.co.uk", false }, { "princeagency.com", true }, - { "princesparktouch.com", true }, { "princessefoulard.com", true }, { "principalsexam.com", true }, { "principalship.net", true }, @@ -27872,7 +28429,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "prinice.org", true }, { "printeknologies.com", true }, { "printerleasing.be", true }, - { "printexpress.cloud", true }, { "printf.de", true }, { "printmet.com", true }, { "printus.de", true }, @@ -27948,6 +28504,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "pro-link.eu", true }, { "pro-mile.pl", true }, { "pro-netz.de", false }, + { "pro-taucher.com", true }, + { "pro-taucher.de", true }, { "pro-wiert.pl", true }, { "proadvanced.com", true }, { "proautorepairs.com.au", true }, @@ -27965,6 +28523,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "proclib.org", true }, { "procrastinatingengineer.co.uk", true }, { "procrastinationland.com", true }, + { "procreditbank-kos.com", true }, { "procreditbank.com.al", true }, { "proctorio.com", true }, { "prodct.info", true }, @@ -28016,6 +28575,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "progiscad.com", true }, { "programistka.com", true }, { "programlama.tk", true }, + { "programsareproofs.com", true }, { "programsupport300procent.com", true }, { "progreso.pl", true }, { "progress-linux.org", true }, @@ -28026,9 +28586,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "prohrcloud.com", true }, { "proimpact.it", true }, { "project.supply", true }, + { "project86fashion.com", true }, { "projectarmy.net", false }, { "projectblackbook.us", true }, - { "projectborealisgitlab.site", true }, + { "projectborealisgitlab.site", false }, { "projectcastle.tech", true }, { "projectforge.org", true }, { "projectlinuseasttn.org", true }, @@ -28042,6 +28603,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "prok.pw", true }, { "prolan.pw", true }, { "prolearningcentre.com", true }, + { "prolinos.de", true }, { "prometheanfire.net", true }, { "prometheanfire.org", true }, { "promisesaplus.com", true }, @@ -28054,12 +28616,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "promohulp.nl", true }, { "promolover.com", true }, { "promopony.com", true }, + { "promorder.ru", true }, { "promoscuola.net", true }, { "promoteiq.com", true }, { "promoterms.com.au", true }, { "promotioncentre.co.uk", true }, { "promozione.info", true }, - { "pronostic-king.fr", true }, { "pronto-intervento.net", true }, { "prontointerventoimmediato.it", true }, { "prontossl.com", true }, @@ -28085,13 +28647,15 @@ static const nsSTSPreload kSTSPreloadList[] = { { "proseandleprechauns.com", true }, { "prosharp.com.au", true }, { "prospanek.cz", true }, + { "prosperfit.com", true }, { "prosperontheweb.com", true }, { "prospo.co", true }, - { "prostohobby.ru", true }, { "prostoporno.sexy", true }, { "prostye-recepty.com", true }, { "prosurveillancegear.com", true }, - { "prot.ch", true }, + { "prot.ch", false }, + { "protech.ge", true }, + { "protectedreport.com", true }, { "protectem.de", true }, { "protectoraanimalesalicante.org", true }, { "protectr.de", true }, @@ -28135,7 +28699,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "proxybay.tv", true }, { "proxyportal.eu", true }, { "proxyportal.net", true }, - { "proymaganadera.com", true }, { "prpferrara.it", true }, { "prplz.io", true }, { "prpr.cloud", true }, @@ -28147,6 +28710,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "pruma.com.br", true }, { "prvikvadrat.hr", true }, { "prylarprylar.se", true }, + { "prynhawn.com", true }, + { "prynhawn.net", true }, + { "prynhawn.org", true }, { "pryspry.com", true }, { "prytkov.com", true }, { "przemas.pl", true }, @@ -28162,6 +28728,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "psbarrett.com", true }, { "psc.gov", true }, { "pschierl.com", true }, + { "pscp.tv", true }, { "pscr.gov", true }, { "psdreams.com", true }, { "psdsfn.com", true }, @@ -28198,12 +28765,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "psycho-lobby.com", true }, { "psycho.space", true }, { "psychoactive.com", true }, + { "psychoco.net", false }, { "psychologie-hofner.at", true }, { "psychotherapie-kp.de", true }, { "psydix.org", true }, { "psylab.cc", true }, - { "psylab.re", true }, - { "psylab.vip", true }, { "psytrance-pro.com", true }, { "pt-d.ru", true }, { "pt-server.de", true }, @@ -28264,10 +28830,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "pupboss.com", true }, { "puppet.pl", true }, { "puq.moe", true }, + { "puralps.ch", true }, { "puravida-estate.com", true }, { "pure-gmbh.com", true }, { "purecabo.com", true }, - { "pureessentialoil.biz", true }, { "purefkh.xyz", true }, { "pureitsolutionsllp.com", true }, { "purelunch.co.uk", true }, @@ -28291,9 +28857,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "purrfect-box.co.uk", true }, { "purrfectboudoir.com", true }, { "purrfectmembersclub.com", true }, + { "pursuedtirol.com", true }, { "puryearlaw.com", true }, { "pusatinkubatorbayi.com", true }, { "pushers.com.mx", true }, + { "pushphp.com", true }, { "pushrax.com", true }, { "pusichatka.ddns.net", true }, { "put.moe", true }, @@ -28344,6 +28912,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "pyspace.org", true }, { "python-hyper.org", true }, { "python.org", false }, + { "pyxo.net", true }, { "pyzlnar.com", true }, { "pzpittsburgh.com", true }, { "pzsearch.nl", true }, @@ -28383,6 +28952,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "qetesh.de", true }, { "qetic.co.jp", true }, { "qewc.com", true }, + { "qgblog.org", true }, { "qgustavor.tk", true }, { "qhse-professionals.nl", true }, { "qianalysis.com", true }, @@ -28398,7 +28968,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "qis.fr", true }, { "qitarabutrans.com", true }, { "qiuri.org", true }, - { "qiuxian.ddns.net", true }, { "qivonline.pt", true }, { "qiwi.be", true }, { "qixi.biz", true }, @@ -28407,6 +28976,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "qldconservation.org.au", true }, { "qldformulaford.org", true }, { "qledtech.com", false }, + { "qlix.pl", true }, { "qlrace.com", false }, { "qm-marzahnnordwest.de", true }, { "qnq.moe", true }, @@ -28419,6 +28989,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "qq-navi.com", true }, { "qq52o.me", true }, { "qqrss.com", true }, + { "qqvips.com", true }, { "qr-city.org", true }, { "qr.cl", true }, { "qrbird.com", true }, @@ -28429,13 +29000,15 @@ static const nsSTSPreload kSTSPreloadList[] = { { "qtacairsoft.com", true }, { "qtl.me", true }, { "qtn.net", true }, + { "qto.com", true }, { "qto.net", true }, + { "qto.org", true }, { "qtpass.org", true }, { "qtpower.co.uk", true }, { "qtpower.net", true }, { "qtpower.org", true }, { "qtvr.com", true }, - { "qtxh.net", false }, + { "qtxh.net", true }, { "quackerswaterproofing.com", true }, { "quaedam.org", true }, { "quaggan.co", true }, @@ -28444,6 +29017,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "quality-life.gr", true }, { "qualityedgarsolutions.com", true }, { "qualityhomesystems.com", true }, + { "qualityhvacservices.com", true }, { "qualityofcourse.com", true }, { "qualitypropertycare.co.uk", true }, { "qualpay.biz", true }, @@ -28458,13 +29032,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "quantumfurball.net", true }, { "quantumpair.net", true }, { "quantumwebs.co", true }, - { "quanwuji.com", true }, { "quanyin.eu.org", true }, { "quareal.ru", true }, { "quarkdose.de", true }, { "quarterfull.com", true }, { "quartix.com", true }, { "quartzclinical.com", true }, + { "quarus.net", true }, { "quasarelectronics.co.uk", true }, { "quasiproxy.com", true }, { "quasseldroid.info", true }, @@ -28474,6 +29048,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "qubyte.codes", true }, { "quchao.com", true }, { "queene.eu", true }, + { "queens.lgbt", true }, { "queensrdapartments.com.au", true }, { "queer.party", true }, { "queercinema.ch", true }, @@ -28516,15 +29091,16 @@ static const nsSTSPreload kSTSPreloadList[] = { { "quitarlasmanchasde.com", true }, { "quitimes.com", true }, { "quizogames.com", true }, - { "quizstore.net", true }, { "qul.link", true }, { "quli.nl", false }, { "qunzi.la", true }, { "quocdesign.ch", true }, { "quoteidiot.com", true }, { "quotev.com", true }, + { "quovadisaustria.com", true }, { "quppa.net", true }, { "quuz.org", true }, + { "qvg.company", true }, { "qvggroup.com", true }, { "qvi.st", true }, { "qvitoo.com", true }, @@ -28536,7 +29112,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "qweepi.de", false }, { "qwertee.com", true }, { "qwerty.work", true }, - { "qwertyatom100.me", true }, { "qwikdash.com", true }, { "qwq.moe", true }, { "qx.fi", true }, @@ -28545,6 +29120,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "r-ay.cn", true }, { "r-rwebdesign.com", true }, { "r-t-b.fr", true }, + { "r0t.co", true }, { "r0uzic.net", true }, { "r1ch.net", true }, { "r2d2pc.com", true }, @@ -28558,6 +29134,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "r7.com.au", true }, { "r7h.at", true }, { "r811.de", true }, + { "ra-joergensen.de", true }, { "ra-micro-koeln.de", true }, { "ra-schaal.de", false }, { "ra.co.ke", true }, @@ -28602,6 +29179,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "radicaloptimism.org", true }, { "radicalsub.com.br", true }, { "radins.com", true }, + { "radio-pulsar.eu", true }, { "radio-utopie.de", true }, { "radio1.ie", true }, { "radioafibra.com.br", true }, @@ -28613,12 +29191,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "radionicabg.com", true }, { "radiopolarniki.spb.ru", true }, { "radiormi.com", true }, + { "radiorsvp.com", false }, { "radiosendungen.com", true }, { "radis-adopt.com", true }, { "radiumtree.com", true }, + { "radom-pack.pl", true }, { "radondetectionandcontrol.com", true }, { "radreisetraumtreibstoff.de", true }, - { "radtke.bayern", true }, { "radyabkhodro.net", true }, { "radyn.com", true }, { "raeu.me", true }, @@ -28634,11 +29213,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "rage4.com", true }, { "raghavdua.in", true }, { "rahulpnath.com", true }, - { "raidensnakesden.co.uk", true }, - { "raidensnakesden.com", true }, - { "raidensnakesden.net", true }, { "raidstone.net", true }, - { "raiffeisen-kosovo.com", true }, { "rail-o-rama.nl", true }, { "rail24.nl", true }, { "rail360.nl", true }, @@ -28652,7 +29227,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "railvideo.net", true }, { "railvideo.nl", true }, { "railwaytech.net", true }, - { "railyardurgentcare.com", true }, { "raimixmotoparts.com.br", true }, { "rainbowbay.org", true }, { "rainbowinflatables.co.uk", true }, @@ -28670,10 +29244,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "rajivshah.co.uk", true }, { "rajyogarishikesh.com", true }, { "rak-business-service.com", true }, - { "rakugaki.cn", true }, { "rakugokai.net", true }, { "ralf-huebscher.de", true }, { "ralfs-zusizone.de", true }, + { "ralimtek.com", false }, { "rally-base.com", true }, { "rally-base.cz", true }, { "rally-base.eu", true }, @@ -28687,7 +29261,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "raltha.com", true }, { "ram-it.nl", true }, { "ram.nl", true }, - { "rambii.de", true }, { "rambo.codes", true }, { "ramitmittal.com", true }, { "rammstein-portugal.com", true }, @@ -28701,7 +29274,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "randomdysfunctions.com", true }, { "randomkoalafacts.com", true }, { "randomprecision.co.uk", true }, - { "randomquotesapp.com", true }, + { "ranfurlychambers.co.nz", true }, { "rangde.org", true }, { "rangercollege.edu", true }, { "rangsmo.se", true }, @@ -28709,7 +29282,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ranking-deli.jp", true }, { "ranktopay.com", true }, { "ranson.com.au", true }, - { "rantanda.com", true }, { "rante.com", true }, { "ranyeh.co", true }, { "ranyeh.com", true }, @@ -28721,6 +29293,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "raphael.li", true }, { "raphaeladdile.com", true }, { "raphaelcasazza.ch", true }, + { "raphaelmoura.ddns.net", true }, { "raphrfg.com", true }, { "rapidapp.io", true }, { "rapidhubs.com", true }, @@ -28737,18 +29310,20 @@ static const nsSTSPreload kSTSPreloadList[] = { { "rascalscastles.co.uk", true }, { "rascalscastlesdoncaster.co.uk", true }, { "rasebo.ro", true }, + { "raspberryultradrops.com", true }, { "raspii.tech", true }, - { "rastreie.net", true }, { "rasty.cz", true }, { "ratd.net", true }, { "ratebridge.com", true }, { "rathbonesonline.com", true }, { "rathgeb.org", true }, + { "ratinq.co", true }, { "rationalcreation.com", true }, { "rationalism.com", true }, { "rationalops.com", true }, { "rattenkot.io", true }, { "raulrivero.es", true }, + { "rault.io", true }, { "raum4224.de", true }, { "rauros.net", true }, { "rautelow.de", true }, @@ -28802,6 +29377,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "rcifsgapinsurance.co.uk", true }, { "rclsm.net", true }, { "rcmlinx.com", true }, + { "rcmpsplib.com", true }, { "rcmurphy.com", true }, { "rcnitrotalk.com", true }, { "rcorporation.be", true }, @@ -28855,14 +29431,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "reality0ne.com", false }, { "realitycrazy.com", true }, { "reallifeforums.com", true }, - { "realloc.me", true }, { "really-simple-plugins.com", true }, { "really-simple-ssl.com", true }, { "really.ai", true }, { "reallytrusted.com", true }, { "realme.govt.nz", true }, { "realmofespionage.xyz", true }, - { "realoteam.ddns.net", true }, { "realum.com", true }, { "realum.de", true }, { "realum.eu", true }, @@ -28876,7 +29450,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "reath.me", true }, { "reaven.nl", true }, { "rebane2001.com", true }, + { "rebeagle.com", true }, { "rebelessex.com", true }, + { "rebelonline.nl", true }, { "rebelrebel.com.au", true }, { "rebelz.se", true }, { "rebirthia.me", true }, @@ -28888,6 +29464,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "recapp.ch", true }, { "recaptcha-demo.appspot.com", true }, { "receiliart.com", true }, + { "receptionpoint.com", true }, { "receptionsbook.com", true }, { "recepty.eu", false }, { "recetasdecocinaideal.com", true }, @@ -28953,6 +29530,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "redelectrical.co.uk", true }, { "redessantaluzia.com.br", true }, { "redfox-infosec.de", true }, + { "redgatesoftware.co.uk", true }, { "redgoose.ca", true }, { "redhandedsecurity.com.au", true }, { "redheeler.com.br", true }, @@ -28967,7 +29545,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "redletter.link", true }, { "redlinelap.com", true }, { "redlink.de", true }, - { "redmind.se", true }, { "redmore.me", true }, { "redneragenturen.org", true }, { "rednsx.org", true }, @@ -28976,7 +29553,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "redshiftlabs.com.au", true }, { "redshoeswalking.net", true }, { "redsicom.com", true }, - { "redsquirrelcampsite.co.uk", true }, { "redstoner.com", true }, { "redteam-pentesting.de", true }, { "redwaterhost.com", true }, @@ -28989,11 +29565,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "reegle.com", true }, { "reepay.com", true }, { "rees-carter.net", true }, + { "reesmichael1.com", true }, { "reevaappliances.co.uk", true }, { "reevoo.com", true }, { "reevu.net", true }, { "reezer.org", true }, { "referdell.com", true }, + { "refficience.com", true }, { "refill-roboter.de", true }, { "refinansiering.no", true }, { "reflectivity.io", true }, @@ -29006,6 +29584,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "refresh-media.nl", true }, { "refreshliving.us", true }, { "refuelcollective.com", true }, + { "refuelcreative.com.au", true }, { "refundo.cz", true }, { "refundo.sk", true }, { "regain.us", true }, @@ -29024,7 +29603,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "regimecellulite.com", true }, { "regiobeveland.nl", true }, { "regionalbasementandcrawlspacerepair.com", true }, - { "regionalcoalition.org", true }, { "regiosalland.nl", true }, { "regiovertrieb.de", false }, { "regis.tech", true }, @@ -29042,6 +29620,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "regnr.info", true }, { "regolithmedia.com", true }, { "regraph.de", true }, + { "regresionavidaspasadas.com", true }, + { "regularflolloping.com", true }, { "regulations.gov", true }, { "reha-honpo.jp", true }, { "rehabili-shigoto.com", true }, @@ -29064,7 +29644,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "reimann.me", true }, { "reimers.de", true }, { "rein.kr", true }, - { "reinaertvandecruys.com", true }, { "reinaldudras.ee", true }, { "reinaldudrasfamily.ee", true }, { "reinencaressa.be", true }, @@ -29084,7 +29663,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "rejahrehim.com", true }, { "rejects.email", true }, { "rejsehuskelisten.dk", true }, - { "rejushiiplotter.ru", true }, { "rekisuta.com", true }, { "reklamjog.hu", true }, { "rekorsanat.com.tr", true }, @@ -29107,6 +29685,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "rem0te.net", true }, { "remaimodern.org", true }, { "remambo.jp", true }, + { "remax.at", true }, { "remedi.tokyo", true }, { "remedionaturales.com", true }, { "remedioparaherpes.com", true }, @@ -29117,6 +29696,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "rememberthemilk.com", false }, { "remi-saurel.com", true }, { "remilner.co.uk", true }, + { "remini.cz", true }, { "remirampin.com", true }, { "remissan.com", true }, { "remitatm.com", false }, @@ -29126,7 +29706,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "remoteutilities.com", true }, { "removalcellulite.com", true }, { "removedrepo.com", true }, - { "remrol.ru", true }, { "remszeitung.de", true }, { "renaissanceplasticsurgery.net", true }, { "renascentia.asia", true }, @@ -29159,7 +29738,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "rent-a-c.io", true }, { "rent-a-coder.de", true }, { "rentacaramerica.com", true }, - { "rentalmed.com.br", true }, { "rentasweb.gob.ar", true }, { "renthelper.us", true }, { "rentinsingapore.com.sg", true }, @@ -29175,6 +29753,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "replicaswiss.nl", true }, { "repology.org", true }, { "report-uri.com", true }, + { "report2psb.online", true }, { "reporting.gov", true }, { "reproduciblescience.org", true }, { "reproductive-revolution.com", true }, @@ -29191,6 +29770,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "repugnantconclusion.com", true }, { "reputationweaver.com", true }, { "reqrut.net", true }, + { "request-trent.com", true }, { "requestr.co.uk", true }, { "res-kc.com", true }, { "resama.eu", true }, @@ -29206,6 +29786,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "resfriatech.com.br", true }, { "residence-simoncelli.com", true }, { "residentiallocksmithsanantoniotx.com", true }, + { "resine.roma.it", true }, { "resist.ca", true }, { "resistav.com", true }, { "resolvefa.co.uk", true }, @@ -29226,7 +29807,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "responsive-shop.com", true }, { "responsivepaper.com", true }, { "respostas.com.br", true }, - { "ressl.ch", true }, { "restaurant-oregano.de", true }, { "restaurant-rosengarten.at", true }, { "restaurantguru.com", true }, @@ -29242,6 +29822,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "restrito.org", true }, { "resultsatretail.com", true }, { "resursedigitale.ro", true }, + { "retcor.net", true }, { "retefarmaciecostadamalfi.it", true }, { "retetenoi.net", true }, { "retetop95.it", true }, @@ -29250,7 +29831,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "retmig.dk", true }, { "reto.ch", true }, { "reto.com", true }, - { "reto.io", true }, { "retokromer.ch", true }, { "retractableawningssydney.com.au", true }, { "retro.rocks", true }, @@ -29260,6 +29840,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "retrocdn.net", true }, { "retrofitlab.com", true }, { "retroity.net", true }, + { "retrojar.top", true }, { "retronet.nl", true }, { "retroroundup.com", true }, { "retrotracks.net", true }, @@ -29268,7 +29849,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "reucon.com", true }, { "reulitz.de", true }, { "reuna.me", true }, - { "reussir-ma-fete.fr", true }, { "reussirsavie.info", true }, { "reuter-profishop.de", true }, { "reuter-shop.com", true }, @@ -29302,6 +29882,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "rex.tc", true }, { "rexdf.net", true }, { "rexskz.info", true }, + { "reyna.cc", true }, { "rezept-planer.de", true }, { "rezexpert.com", true }, { "rezosup.net", true }, @@ -29309,7 +29890,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "rezultant.ru", true }, { "rfeif.org", true }, { "rftoon.com", true }, - { "rfxanalyst.com", true }, { "rga.sh", true }, { "rgavmf.ru", true }, { "rgbinnovation.com", true }, @@ -29330,7 +29910,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "rhinoceroses.org", true }, { "rhnet.at", true }, { "rhodenmanorcattery.co.uk", true }, - { "rhodes.ml", true }, { "rhodri.io", true }, { "rhowell.io", true }, { "rhymeswithmogul.com", true }, @@ -29351,18 +29930,18 @@ static const nsSTSPreload kSTSPreloadList[] = { { "richardcrosby.co.uk", true }, { "richardharpur.com", true }, { "richardhering.de", true }, - { "richardhicks.us", true }, { "richardjgreen.net", true }, { "richardlangworth.com", true }, { "richardlugten.nl", true }, + { "richardramos.me", true }, { "richardrblocker.net", true }, + { "richardson.cam", true }, { "richardson.engineering", true }, { "richardson.pictures", true }, { "richardson.software", true }, { "richardson.systems", true }, { "richardwarrender.com", true }, { "richie.fi", true }, - { "richie.link", true }, { "richonrails.com", true }, { "ricketyspace.net", true }, { "ricki-z.com", true }, @@ -29377,6 +29956,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ricochet.im", true }, { "ricoydesign.com", true }, { "ricozienke.de", true }, + { "riddims.co", true }, { "ride-up.com", true }, { "rideyourdamn.bike", true }, { "ridgelandchurch.org", true }, @@ -29386,6 +29966,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "riesenweber.id.au", true }, { "riesheating.com", true }, { "riffreporter.de", true }, + { "rifkivalkry.net", true }, { "rift.pictures", true }, { "rigabeerbike.com", true }, { "rigabeerbike.lv", true }, @@ -29478,7 +30059,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "rmcbs.de", true }, { "rmeuropean.com", true }, { "rmf.io", true }, - { "rmit.me", true }, { "rmm-i.com", true }, { "rmmanfredi.com", true }, { "rmpsolution.de", true }, @@ -29494,15 +30074,15 @@ static const nsSTSPreload kSTSPreloadList[] = { { "rnt.cl", true }, { "ro.search.yahoo.com", false }, { "roaddoc.de", true }, - { "roadguard.nl", true }, + { "roadguard.nl", false }, { "roadtopgm.com", true }, { "roams.es", true }, { "roave.com", true }, - { "rob.uk.com", true }, { "rob006.net", true }, { "robandjanine.com", true }, { "robbertt.com", false }, { "robdavidson.network", true }, + { "robert-flynn.de", true }, { "robertattfield.com", true }, { "robertayamashita.com", true }, { "robertayamashita.com.br", true }, @@ -29533,7 +30113,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "robinsonyu.com", true }, { "robinwill.de", true }, { "robinwinslow.uk", true }, - { "robjager-fotografie.nl", true }, { "robocop.no", true }, { "robodeidentidad.gov", true }, { "robohash.org", true }, @@ -29554,6 +30133,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "robu.in", true }, { "robud.info", true }, { "robustac.com", true }, + { "roc.net.au", true }, + { "rochakhand-knitcraft.com.np", true }, { "rocka.me", true }, { "rockagogo.com", true }, { "rockbankland.com.au", true }, @@ -29564,6 +30145,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "rocketevents.com.au", true }, { "rocketgnomes.com", true }, { "rocketr.net", true }, + { "rocketsandtutus.com", true }, { "rockfax.com", true }, { "rockhounds.co.za", true }, { "rockinronniescastles.co.uk", true }, @@ -29584,13 +30166,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "rodinnebyvanie.eu", true }, { "rodinneodpoledne2018.cz", true }, { "rodolfo.gs", true }, - { "rodomonte.org", true }, { "rodrigocarvalho.blog.br", true }, { "rody-design.com", true }, { "rodzina-kupiec.eu.org", true }, { "roeckx.be", true }, { "roeitijd.nl", false }, - { "roelbazuin.com", true }, { "roeldevries.me", true }, { "roeleveld.nl", true }, { "roelhollander.eu", true }, @@ -29627,6 +30207,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "roksolana.be", true }, { "rokudenashi.de", true }, { "roland.io", true }, + { "rolandinsh.com", true }, { "rolandszabo.com", true }, { "roleplayhome.com", true }, { "roligprylar.se", true }, @@ -29639,6 +30220,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "roma-servizi.it", true }, { "romab.com", true }, { "roman-pavlik.cz", true }, + { "romancloud.com", true }, { "romande-entretien.ch", true }, { "romanmichel.de", true }, { "romano.guru", true }, @@ -29651,7 +30233,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "romanticsexshopguatemala.com", true }, { "romanticvillas.com.au", false }, { "romapa.com", true }, - { "romar-bos.nl", true }, { "romarin.es", true }, { "romaservicegroup.it", true }, { "romatrip.it", true }, @@ -29663,6 +30244,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "rondreis-amerika.be", true }, { "rondreis-schotland.nl", true }, { "roninf.ch", true }, + { "roninitconsulting.com", true }, { "ronniegane.kiwi", true }, { "ronnylindner.de", true }, { "ronomon.com", true }, @@ -29704,6 +30286,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "rootswitch.com", true }, { "rootusers.com", true }, { "ropd.info", true }, + { "roromendut.online", true }, { "roryneville.com", true }, { "rosabellas.co.uk", true }, { "rosalindturner.co.uk", true }, @@ -29725,6 +30308,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "rosetiger.life", true }, { "rosevillefacialplasticsurgery.com", true }, { "roslynpad.net", true }, + { "rosnertexte.at", true }, { "rosset.me", true }, { "rosset.net", true }, { "rossfrancis.co.uk", true }, @@ -29749,6 +30333,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "rounda.it", true }, { "roundcube.mayfirst.org", false }, { "roundrock-locksmith.com", true }, + { "roundtablekzn.co.za", true }, { "roussos.cc", true }, { "rout0r.org", true }, { "route-wird-berechnet.de", true }, @@ -29764,19 +30349,57 @@ static const nsSTSPreload kSTSPreloadList[] = { { "roxiesbouncycastlehire.co.uk", true }, { "roxtri.cz", true }, { "royal-rangers.de", true }, + { "royal806.com", true }, + { "royal810.com", true }, + { "royal811.com", true }, { "royal812.com", true }, + { "royal813.com", true }, + { "royal816.com", true }, + { "royal817.com", true }, { "royal818.com", true }, + { "royal830.com", true }, + { "royal833.com", true }, { "royal850.com", true }, + { "royal851.com", true }, + { "royal852.com", true }, { "royal853.com", true }, + { "royal855.com", true }, + { "royal856.com", true }, { "royal857.com", true }, { "royal859.com", true }, + { "royal86.com", true }, + { "royal861.com", true }, { "royal862.com", true }, { "royal863.com", true }, { "royal865.com", true }, { "royal867.com", true }, { "royal868.com", true }, + { "royal869.com", true }, { "royal871.com", true }, - { "royal876.com", true }, + { "royal872.com", true }, + { "royal873.com", true }, + { "royal875.com", true }, + { "royal877.com", true }, + { "royal879.com", true }, + { "royal88.com", true }, + { "royal88.tech", true }, + { "royal881.com", true }, + { "royal882.com", true }, + { "royal883.com", true }, + { "royal885.com", true }, + { "royal886.com", true }, + { "royal887.com", true }, + { "royal888888.com", true }, + { "royal889.com", true }, + { "royal890.com", true }, + { "royal891.com", true }, + { "royal892.com", true }, + { "royal893.com", true }, + { "royal894.com", true }, + { "royal895.com", true }, + { "royal896.com", true }, + { "royal898.com", true }, + { "royal899.com", true }, { "royalacademy.org.uk", true }, { "royalasianescorts.co.uk", true }, { "royalbluewa3.cc", true }, @@ -29787,10 +30410,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "royalpalacenogent.fr", true }, { "royalrangers.fi", true }, { "royalty-market.com", true }, + { "royalyule.com", true }, { "royceandsteph.com", true }, { "roycewilliams.net", true }, { "rozhodce.cz", true }, { "rpadovani.com", true }, + { "rpauto.ru", true }, { "rpgcampaign.website", true }, { "rpgmaker.es", true }, { "rpherbig.com", true }, @@ -29816,12 +30441,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "rsgcard.com", true }, { "rsingermd.com", true }, { "rsl.gd", true }, - { "rsldb.com", true }, { "rsm-intern.de", true }, { "rsm-liga.de", true }, { "rsmith.io", true }, { "rsmmail.com", true }, { "rsp-blogs.de", true }, + { "rsridentassist.com", true }, { "rss.sh", false }, { "rssr.se", true }, { "rsttraining.co.uk", true }, @@ -29851,6 +30476,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "rtzoeller.com", true }, { "ru-sprachstudio.ch", true }, { "ru.search.yahoo.com", false }, + { "rua.cx", true }, { "ruaneattorneys.com", true }, { "ruanmi.de", true }, { "rubberfurs.org", true }, @@ -29876,12 +30502,14 @@ static const nsSTSPreload kSTSPreloadList[] = { { "rudelune.fr", true }, { "ruderverein-gelsenkirchen.de", true }, { "rudewiki.com", true }, + { "rudhaulidirectory.com", true }, { "rudloff.pro", true }, { "rudnikas.com", true }, { "rudolph.life", true }, { "rudolphmarketing.com", true }, { "rudrastyh.com", true }, { "ruediger-voigt.eu", true }, + { "ruedigervoigt.de", true }, { "ruedirrenggli.ch", true }, { "rueduparticulier.tk", false }, { "rueegger.me", true }, @@ -29936,6 +30564,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "rusmolotok.ru", true }, { "russellupevents.co.uk", true }, { "russia.dating", true }, + { "russiaeconomy.org", true }, { "russianorthodoxchurch.co.uk", true }, { "russpuss.ru", true }, { "russt.me", true }, @@ -29946,6 +30575,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "rustyrambles.com", true }, { "rusxakep.com", true }, { "rutgerschimmel.nl", true }, + { "ruthmontenegro.com", true }, { "rutiger.com", true }, { "ruudkoot.nl", true }, { "ruwhof.net", true }, @@ -29956,6 +30586,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "rvender.cz", true }, { "rvfu98.com", true }, { "rvnoel.net", true }, + { "rvoigt.eu", true }, { "rvsa2bevestigingen.nl", true }, { "rvsa4bevestigingen.nl", true }, { "rvsbevestigingen.nl", true }, @@ -29968,7 +30599,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "rxbn.de", true }, { "rxbusiness.com", true }, { "rxcheck.com", true }, - { "rxgroup.io", true }, { "rxight.com", true }, { "ryan-design.com", true }, { "ryan-gehring.com", true }, @@ -29982,10 +30612,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ryansmithphotography.com", true }, { "ryazan-region.ru", true }, { "rychlikoderi.cz", true }, + { "rydermais.tk", true }, { "rynekpierwotny.pl", true }, { "ryois.me", true }, { "ryu22e.org", true }, { "ryuu.es", true }, + { "ryyule.com", true }, { "ryzex.de", true }, { "ryzhov.me", true }, { "rzentarzewski.net", true }, @@ -30011,6 +30643,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "s44.eu", true }, { "s4db.net", true }, { "s4media.org", true }, + { "s4q.me", true }, { "s4tips.com", true }, { "s4ur0n.com", true }, { "s5118.com", true }, @@ -30023,7 +30656,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "saabpartsdistribution.com", true }, { "saamhorigheidsfonds.nl", false }, { "saastopankki.fi", true }, - { "saba-piserver.info", true }, { "sabahattin-gucukoglu.com", true }, { "sabe.cz", true }, { "sabine-forschbach.de", true }, @@ -30033,7 +30665,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "sabtunes.com", true }, { "sacaentradas.com", true }, { "saccani.net", true }, - { "sachk.com", true }, { "sackers.com", true }, { "sackmesser.ch", true }, { "saclier.at", true }, @@ -30047,6 +30678,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "sadhawkict.org", true }, { "sadmansh.com", true }, { "sadou.kyoto.jp", true }, + { "sadsu.com", true }, { "saenforcement.agency", true }, { "saengsook.com", true }, { "saengsuk.com", true }, @@ -30064,12 +30696,14 @@ static const nsSTSPreload kSTSPreloadList[] = { { "safeex.com", true }, { "safegold.ca", true }, { "safegroup.pl", true }, + { "safeguardcommerce.com", true }, + { "safeguardhosting.ca", true }, { "safeinfra.nl", true }, { "safejourney.education", true }, { "safematix.com", true }, { "safeme.ga", true }, { "safeocs.gov", true }, - { "safer-networking.org", false }, + { "safer-networking.org", true }, { "saferpost.com", true }, { "safescan.com", true }, { "safestore.io", true }, @@ -30117,13 +30751,14 @@ static const nsSTSPreload kSTSPreloadList[] = { { "saiputra.com", true }, { "saitrance.com", true }, { "saitv.org", true }, - { "saiyasu-search.com", true }, { "sajamstudija.info", true }, { "sajdowski.de", true }, { "sakaki.anime.my", false }, { "sakostacloud.de", true }, { "sakura-paris.org", true }, + { "sakuracommunity.com", true }, { "sakuraflores.com.br", true }, + { "sakuraplay.com", true }, { "salamon-it.de", false }, { "salde.net", true }, { "sale4ru.ru", true }, @@ -30172,6 +30807,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "salutethefish.com", true }, { "salutethegrains.com", true }, { "salutethepig.com", true }, + { "salva.re", true }, { "salvagedfurnitureparlour.com", true }, { "sam-football.fr", true }, { "samanthasgeckos.com", true }, @@ -30189,16 +30825,18 @@ static const nsSTSPreload kSTSPreloadList[] = { { "samegoal.org", true }, { "samel.de", true }, { "samenwerkingsportaal.nl", true }, - { "samenwerkingsportaal.tk", true }, { "sameworks.com", true }, { "samgrayson.me", true }, { "samhuri.net", true }, { "samifar.in", true }, + { "samin.tk", true }, { "samip.fi", true }, + { "samitechnic.com", true }, { "samizdat.cz", true }, { "samkelleher.com", true }, { "saml-gateway.org", true }, - { "samm.com.au", true }, + { "samlivogarv.dk", true }, + { "sammamish--locksmith.com", true }, { "sammenlignakasser.dk", true }, { "sammyservers.com", true }, { "sammyservers.net", true }, @@ -30223,6 +30861,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "sana-store.sk", true }, { "sanalbayrak.com", true }, { "sanantoniolocksmithinc.com", true }, + { "sanantoniolocksmithtx.com", true }, { "sanasport.cz", true }, { "sanasport.sk", true }, { "sanatorii-sverdlovskoy-oblasti.ru", true }, @@ -30235,7 +30874,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "sanderdorigo.nl", true }, { "sanderkoenders.eu", true }, { "sanderkoenders.nl", true }, + { "sandervanderstap.nl", true }, { "sandervankasteel.nl", false }, + { "sandhaufen.tk", true }, { "sandiegotown.com", true }, { "sandmanintel.com", true }, { "sandmarc.cz", true }, @@ -30248,8 +30889,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "sandrolittke.de", true }, { "sandtears.com", true }, { "sandtonescorts.com", true }, + { "sandtonplumber24-7.co.za", true }, { "sandtonvipcompanions.com", true }, { "sandyrobsonhypnotherapy.co.uk", true }, + { "sanemind.eu", true }, { "sanepsychologen.nl", true }, { "sanex.ca", false }, { "sanglierhurlant.fr", true }, @@ -30309,6 +30952,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "sarumtechnologies.com", true }, { "sas-snowboarding.sk", true }, { "sasanika.org", true }, + { "sascha.io", true }, + { "sascha.is", true }, + { "saschaeggenberger.ch", true }, + { "saschaeggenberger.com", true }, { "sash.pw", true }, { "sashaokun.com", true }, { "sashascollections.com", true }, @@ -30334,9 +30981,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "saudeealimentos.com", true }, { "saudeintimadamulher.com.br", true }, { "saudenoclique.com.br", true }, - { "sauenytt.no", true }, { "sauer-systems.net", true }, - { "sauerbrey.eu", true }, { "sauerland-schnittgruen.de", true }, { "saulchristie.com", true }, { "saumon-de-france.com", true }, @@ -30404,6 +31049,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "sc5.jp", true }, { "scaarus.com", true }, { "scaffalature.roma.it", true }, + { "scaffoldhireeastrand.co.za", true }, + { "scaffoldhirefourways.co.za", true }, + { "scaffoldhirerandburg.co.za", true }, + { "scaffoldhiresandton.co.za", true }, { "scalacollege.nl", true }, { "scalaire.com", true }, { "scalaire.fr", true }, @@ -30420,6 +31069,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "scanpay.dk", true }, { "scarafaggio.it", true }, { "scatsbouncingcastles.ie", true }, + { "scbdh.org", true }, { "scelec.com.au", true }, { "scenastu.pl", true }, { "scene.mx", true }, @@ -30450,6 +31100,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "scherfke.de", true }, { "scheuchenstuel.at", true }, { "schier.info", true }, + { "schil.li", true }, { "schildbach.de", true }, { "schillers-friedberg.de", true }, { "schimmel-test.info", true }, @@ -30459,8 +31110,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "schlachter.ca", true }, { "schlaf.guru", true }, { "schlafguru.com", true }, - { "schlagenhauf.info", true }, - { "schlagma.de", false }, { "schlarp.com", true }, { "schlechtewitze.com", true }, { "schlick.wedding", true }, @@ -30476,7 +31125,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "schmidtplasticsurgery.com", true }, { "schmitt-max.com", true }, { "schmitz.link", true }, - { "schnapke.name", true }, { "schneeketten-ratgeber.de", true }, { "schnegg.name", true }, { "schneids.me", true }, @@ -30488,10 +31136,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "schoepski.de", true }, { "schoknecht.net", true }, { "schoknecht.one", true }, + { "schokofoto.de", true }, { "schokokeks.org", true }, { "scholarly.com.ph", true }, { "scholarly.ph", true }, - { "scholarnet.cn", false }, + { "scholarnet.cn", true }, { "scholierenvervoerzeeland.nl", true }, { "schollbox.de", false }, { "scholz-kallies.de", true }, @@ -30500,6 +31149,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "school-register.co.za", true }, { "school.in.th", true }, { "schoolbus.at", true }, + { "schoolcafe.com", true }, { "schoolotzyv.ru", true }, { "schoolsonice.nl", true }, { "schopenhauer-institut.de", true }, @@ -30513,11 +31163,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "schrauger.org", true }, { "schrauger.run", true }, { "schraugerrun.com", true }, - { "schreck-thomas.de", true }, { "schreibers.ca", true }, { "schreinerei-jahreis.de", true }, { "schrenkinzl.at", true }, - { "schritt4fit.de", true }, { "schrodingersscat.com", true }, { "schrodingersscat.org", true }, { "schroeder-immobilien-sundern.de", true }, @@ -30573,7 +31221,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "scienceminnesota.com", true }, { "sciencesolutions.eu", true }, { "sciencex.com", true }, + { "scientific.boston", true }, + { "scifi.fyi", true }, + { "scigov.xyz", true }, { "scijinks.gov", true }, + { "scilifebiosciences.com", true }, { "scimage.com", true }, { "scintilla.nl", true }, { "scis.com.ua", true }, @@ -30588,8 +31240,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "scootaloo.co.uk", true }, { "scooterservis.com", true }, { "scootfleet.com", true }, + { "scorobudem.ru", true }, { "scorocode.ru", true }, { "scorp13.com", true }, + { "scottgalvin.com", true }, { "scottgruber.me", true }, { "scottgthomas.com", true }, { "scotthelme.co.uk", true }, @@ -30614,7 +31268,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "scratchandscuffs.com", true }, { "scratchandscuffs.uk", true }, { "scrayos.net", true }, - { "scredible.com", true }, + { "scredible.com", false }, { "screen64.tk", true }, { "screenlight.tv", true }, { "screenmachine.com", true }, @@ -30628,6 +31282,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "scrod.me", true }, { "scroll.in", true }, { "scrumbleship.com", true }, + { "scrumpus.com", true }, { "scrumstack.co.uk", true }, { "scryfall.com", true }, { "scs-simulatoren.de", true }, @@ -30635,6 +31290,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "scswam.com", true }, { "sctiger.me", true }, { "sctiger.ml", true }, + { "sctm.at", true }, { "sctrainingllc.com", true }, { "scubadiving-phuket.com", true }, { "scubaland.hu", true }, @@ -30647,6 +31303,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "scwilliams.co.uk", true }, { "scwilliams.uk", true }, { "sd.af", true }, + { "sdayman.com", true }, { "sdcardrecovery.de", true }, { "sdg-tracker.org", true }, { "sdho.org", true }, @@ -30659,9 +31316,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "sdvigpress.org", true }, { "sdvx.net", true }, { "sdxcentral.com", true }, + { "se-theories.org", true }, { "se.com", true }, { "se.search.yahoo.com", false }, - { "sea-godzilla.com", false }, { "seac.me", true }, { "seacam-store.com", true }, { "seafood.co.nz", true }, @@ -30702,6 +31359,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "season.moe", true }, { "seasons.nu", false }, { "seatbeltpledge.com", true }, + { "seatshare.co.uk", true }, { "seattle-life.net", true }, { "seattlefabrication.com", true }, { "seattlemesh.net", true }, @@ -30744,6 +31402,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "secgui.de", true }, { "sech.me", true }, { "sechat.one", true }, + { "secinto.at", true }, { "secnews.gr", true }, { "secomo.org", true }, { "secondchancejobsforfelons.com", true }, @@ -30784,6 +31443,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "securethe.news", true }, { "securetheorem.com", true }, { "securetronic.ch", true }, + { "securetrustbank.com", true }, { "securi-tay.co.uk", true }, { "securify.nl", true }, { "securipy.com", true }, @@ -30795,11 +31455,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "security.love", true }, { "security201.co.uk", true }, { "security201.com", true }, - { "securitybrief.asia", true }, - { "securitybrief.co.nz", true }, - { "securitybrief.com.au", true }, - { "securitybrief.eu", true }, { "securitycamerasaustin.net", true }, + { "securitycamerascincinnati.com", true }, + { "securitycamerasjohnsoncity.com", true }, { "securityfest.com", true }, { "securityheaders.com", true }, { "securityheaders.io", true }, @@ -30814,7 +31472,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "securitystrata.com", true }, { "securitystreak.com", true }, { "securitytrails.com", true }, - { "securitywatch.co.nz", true }, { "securitywithnick.com", true }, { "securitywithoutborders.org", true }, { "securocloud.com", true }, @@ -30855,6 +31512,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "seibu-kikaku.co.jp", true }, { "seifried.org", true }, { "seikatu-navi.com", true }, + { "seiko-dojo.com", true }, { "seinfeldquote.com", true }, { "seirei.ne.jp", true }, { "seiryokuzai-ch.com", true }, @@ -30876,6 +31534,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "self-evident.org", true }, { "self-signed.com", true }, { "self-xss.info", true }, + { "self.nu", true }, { "selfassess.govt.nz", true }, { "selfdestruct.net", true }, { "selfici.com", true }, @@ -30890,18 +31549,20 @@ static const nsSTSPreload kSTSPreloadList[] = { { "sellme.biz", true }, { "sellmoretires.com", true }, { "sello.com", true }, + { "sellorbuy.uk", true }, + { "sellorbuy.us", true }, { "seltendoof.de", true }, { "semacode.com", true }, { "semaf.at", true }, { "semaflex.it", true }, { "semantica.cz", true }, { "semaphore-studios.com", true }, + { "semdynamics.com", true }, { "semenov.su", false }, { "semianalog.com", true }, { "seminariruum.ee", true }, { "semiocast.com", true }, { "semiread.com", true }, - { "semjonov.de", true }, { "semmlers.com", true }, { "semox.de", true }, { "semps-2fa.de", true }, @@ -30927,6 +31588,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "seniorem.eu", true }, { "seniors.singles", true }, { "senmendai-reform.com", true }, + { "sennase.net", true }, { "senorcontento.com", true }, { "sensebridge.com", true }, { "sensebridge.net", true }, @@ -30934,6 +31596,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "senshudo.tv", true }, { "sensoft-int.net", true }, { "sentandsecure.com", true }, + { "sentic.info", true }, { "sentidosdelatierra.org", true }, { "sentinel.gov", true }, { "sentinelproject.io", true }, @@ -30954,10 +31617,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "seoexperte.berlin", true }, { "seogeek.nl", true }, { "seohackers.fr", true }, + { "seohouston.com", true }, { "seoinc.com", true }, { "seoium.com", true }, { "seokay.com", true }, - { "seolaba.io", true }, { "seolib.org", true }, { "seomarketing.bg", true }, { "seon.me", true }, @@ -30969,6 +31632,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "seouniversity.org", true }, { "sepalandseed.com", true }, { "seppelec.com", true }, + { "seproco.com", true }, { "septakkordeon.de", true }, { "septentrionalist.org", true }, { "septfinance.ch", true }, @@ -30987,7 +31651,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "serf.io", true }, { "sergeemond.ca", true }, { "sergefonville.nl", true }, - { "sergeyreznikov.com", true }, { "sergije-stanic.me", true }, { "sergiosantoro.it", true }, { "sergiozygmunt.com", true }, @@ -31020,7 +31683,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "serverd.de", true }, { "serverexpose.com", true }, { "serverfrog.de", true }, - { "serverlog.net", true }, { "serveroffline.net", false }, { "serverpedia.de", true }, { "servers4all.co.uk", true }, @@ -31032,6 +31694,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "servethecity-karlsruhe.de", true }, { "servettorna.com", true }, { "servgate.jp", true }, + { "service-wueste-vodafone.tk", true }, { "servicebeaute.fr", true }, { "serviceboss.de", true }, { "servida.ch", true }, @@ -31075,17 +31738,17 @@ static const nsSTSPreload kSTSPreloadList[] = { { "sevsopr.ru", true }, { "sewafineseam.com", true }, { "sewinginsight.com", true }, + { "sewoo.co.uk", true }, { "sexaki.com", true }, { "sexdocka.nu", true }, { "sexmobil.de", true }, - { "sexplicit.co.uk", true }, { "sexservice.io", true }, { "sexshopnet.com.br", true }, { "sexy-store.nl", true }, { "seyfarth.de", true }, - { "seyr.it", true }, { "seyr.me", true }, { "sfa.sk", true }, + { "sfaparish.org", true }, { "sfcomercio.com.br", true }, { "sfdev.ovh", true }, { "sfg-nordholz.de", true }, @@ -31103,6 +31766,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "sglibellen.de", true }, { "sgroup-hitoduma.com", true }, { "sgroup-rec.com", true }, + { "sgs-systems.de", true }, { "sgs.camera", true }, { "sgsp.nl", true }, { "sgtcodfish.com", true }, @@ -31140,20 +31804,20 @@ static const nsSTSPreload kSTSPreloadList[] = { { "shaicoleman.com", true }, { "shainessim.com", true }, { "shakan.ch", true }, - { "shaken-kyoto.jp", true }, { "shaken110.com", true }, { "shakepeers.org", false }, { "shakerwebdesign.net", true }, { "shakes4u.com", true }, { "shakespearevet.com", true }, + { "shakingthehabitual.com", true }, { "shalazine.com", true }, { "shalott.org", true }, + { "shalyapin.by", true }, { "shamara.info", true }, { "shamariki.ru", true }, { "shan.io", false }, { "shan.si", true }, { "shanahanstrategy.com", true }, - { "shanekoster.net", true }, { "shanetully.com", true }, { "shanewadleigh.com", true }, { "shankangke.com", true }, @@ -31179,6 +31843,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "shariahlawcenter.org", true }, { "sharialawcenter.com", true }, { "sharialawcenter.org", true }, + { "sharisharpe.com", true }, { "shark5060.net", true }, { "sharkie.org.za", true }, { "sharperedge.pw", true }, @@ -31192,7 +31857,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "shaunharker.com", true }, { "shav.it", true }, { "shavegazette.com", true }, + { "shawnalucey.com", true }, { "shawnhogan.com", true }, + { "shawnow.com", true }, { "shawnwilkerson.com", true }, { "shazbots.org", true }, { "shazzlemd.com", true }, @@ -31201,6 +31868,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "shearcomfort.com", true }, { "sheaspire.com.tw", true }, { "sheehyinfinitioftysonsparts.com", true }, + { "sheekdeveloper.com", true }, + { "sheekmedia.com", true }, { "sheepfriends.com", true }, { "sheet.host", true }, { "shehaal.com", true }, @@ -31212,6 +31881,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "shellfire.de", true }, { "shellgame.io", true }, { "shelljuggler.com", false }, + { "shellot.com", true }, { "shellshock.eu", true }, { "shellvatore.us", true }, { "shemsconseils.ma", true }, @@ -31223,6 +31893,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "sherbers.de", true }, { "sherrikehoetherapy.com", true }, { "shft.cl", true }, + { "shgroup.xyz", true }, { "shgt.jp", true }, { "shh-listen.com", true }, { "shiawasedo.co.jp", true }, @@ -31253,7 +31924,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "shipard.com", true }, { "shipard.cz", true }, { "shipcloud.io", true }, + { "shiqi.ca", true }, + { "shiqisifu.cc", true }, { "shirakaba-cc.com", true }, + { "shirao.jp", true }, { "shirt2go.shop", true }, { "shirtsdelivered.com", true }, { "shirtsofholland.com", true }, @@ -31269,6 +31943,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "shitsta.in", true }, { "shivamber.com", true }, { "shivammaheshwari.com", true }, + { "shivatattvayoga.com", true }, { "shlmail.info", true }, { "shmibbles.me", true }, { "shmunky.co.uk", true }, @@ -31306,12 +31981,14 @@ static const nsSTSPreload kSTSPreloadList[] = { { "shopcoupons.ph", true }, { "shopcoupons.sg", true }, { "shophisway.com", true }, + { "shopify.com", true }, { "shopifycloud.com", true }, { "shopkini.com", true }, { "shoplandia.co", true }, { "shoppia.se", true }, { "shopping24.de", true }, { "shoppr.dk", true }, + { "shopregional.com.br", true }, { "shopsouthafrican.com", true }, { "shopstart.dk", true }, { "shoptec.sk", true }, @@ -31319,6 +31996,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "shorehamfort.co.uk", true }, { "short-biography.com", true }, { "short-term-plans.com", true }, + { "shortcut.pw", true }, { "shortdiary.me", true }, { "shorten.ninja", true }, { "shoshin-aikido.de", true }, @@ -31331,7 +32009,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "shovonhasan.com", true }, { "show-saratov.ru", false }, { "showbits.net", true }, - { "showdepiscinas.com.br", true }, { "showf.om", true }, { "showmax.com", true }, { "showmethemoney.ru", true }, @@ -31339,7 +32016,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "showroom.cam", true }, { "showroom.co.uk", true }, { "showroom.uk", true }, - { "showroom113.ru", true }, { "showsonar.com", true }, { "shredriteservices.com", true }, { "shreyansh26.me", true }, @@ -31347,7 +32023,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "shrinidhiclinic.in", true }, { "shrinkhub.com", true }, { "shrub.ca", true }, - { "shrug.ml", true }, { "shteiman.net", true }, { "shu-fu.net", true }, { "shuffleradio.nl", true }, @@ -31360,6 +32035,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "shuset.dk", true }, { "shushu.media", true }, { "shutter-shower.com", true }, + { "shuvo.rocks", true }, + { "shuvodeep.de", true }, { "shux.pro", true }, { "shwrm.ch", true }, { "shybynature.com", true }, @@ -31380,8 +32057,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "siciliapulizie.it", true }, { "sicken.eu", true }, { "sickfile.com", true }, - { "sicklepod.com", true }, { "siconnect.us", true }, + { "sicurled.com", true }, { "sidelka-tver.ru", true }, { "sidema.be", true }, { "sidemount-forum.com", true }, @@ -31395,11 +32072,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "sidnicio.us", true }, { "sidonge.com", true }, { "sidongkim.com", true }, - { "sidpod.ru", true }, { "siegemund-frankfurt.de", true }, { "siel.nl", true }, { "sielsystems.nl", true }, { "sientemendoza.com.ar", true }, + { "sierpinska.co", true }, + { "sierpinska.eu", true }, { "sieulog.com", true }, { "siewert-kau.de", true }, { "sift-tool.org", true }, @@ -31419,11 +32097,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "signal.org", true }, { "signalmaps.co.uk", true }, { "signaltransmitter.de", true }, + { "signdesk.com", true }, { "significados.com", true }, { "significados.com.br", true }, { "significantbanter.com", true }, { "signing-milter.org", true }, { "signix.net", true }, + { "signsdance.uk", true }, { "signtul.com", false }, { "sigsrv.net", true }, { "sigterm.no", true }, @@ -31437,7 +32117,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "silashes.ru", true }, { "silaslova-ekb.ru", true }, { "silent-clean.de", true }, - { "silent.live", false }, + { "silent-yachts.com", true }, { "silentkernel.fr", false }, { "silentundo.org", true }, { "silerfamily.net", true }, @@ -31513,7 +32193,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "silvergoldbull.mw", true }, { "silvergoldbull.my", true }, { "silvergoldbull.nz", true }, - { "silvergoldbull.ph", true }, { "silvergoldbull.pl", true }, { "silvergoldbull.pt", true }, { "silvergoldbull.qa", true }, @@ -31531,6 +32210,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "silvergoldbull.uy", true }, { "silvergoldbull.uz", true }, { "silvergoldbull.ws", true }, + { "silverkingalaska.com", true }, { "silverlinkz.net", true }, { "silverseen.com", true }, { "silverwind.io", true }, @@ -31539,6 +32219,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "silvobeat.com", true }, { "sim-karten.net", true }, { "sim-minaoshi.jp", true }, + { "sim-sim.appspot.com", true }, + { "sim4seed.org", true }, { "simam.de", true }, { "simark.ca", true }, { "simbeton.nl", true }, @@ -31584,7 +32266,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "simpip.com", true }, { "simple.com", false }, { "simpleclassiclife.com", true }, - { "simplecoding.click", true }, { "simplecontacts.com", true }, { "simplednscrypt.org", true }, { "simpleindianrecipes.com", true }, @@ -31622,6 +32303,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "sinceschool.com", true }, { "sinclairinat0r.com", true }, { "sinde.ru", true }, + { "sinefili.com", true }, { "sinergy.ch", true }, { "sinfulforums.net", true }, { "singaporemint.com", true }, @@ -31645,7 +32327,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "sinterama.biz", true }, { "sinuelovirtual.com.br", true }, { "sioeckes.hu", true }, - { "sipc.org", true }, { "siratalmustaqim.com", true }, { "siraweb.org", true }, { "sirbouncealotcastles.co.uk", true }, @@ -31663,7 +32344,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "sistel.es", true }, { "sistem-maklumat.com", true }, { "sistem-maklumat.com.my", true }, - { "sistemos.net", true }, { "sistemy48.ru", false }, { "sistimiki-anaparastasi.gr", true }, { "sistov.it", true }, @@ -31675,10 +32355,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "sitc.sk", true }, { "sitebuilderreport.com", true }, { "sitedrive.fi", true }, + { "sitefactory.com.br", true }, { "sitehoster.org", true }, { "sitenv.org", true }, { "siterencontre.me", true }, { "sites.google.com", true }, + { "sitesko.de", true }, { "sitesuccessful.com", true }, { "sitevandaag.nl", true }, { "sitischu.com", true }, @@ -31699,6 +32381,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "sjoorm.com", true }, { "sjsmith.id.au", true }, { "sjv4u.ch", true }, + { "sjzebs.com", true }, + { "sjzget.com", true }, + { "sjzybs.com", true }, { "sk-net.cz", true }, { "skala.io", true }, { "skalarwelle.eu", true }, @@ -31716,7 +32401,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "skepneklaw.com", true }, { "skepticalsports.com", true }, { "sketchmyroom.com", true }, - { "sketchywebsite.net", true }, { "skhaz.io", true }, { "skhire.co.uk", true }, { "skhoop.cz", true }, @@ -31727,8 +32411,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "skifttiljutlanderbank.dk", true }, { "skigebied.nl", true }, { "skigebiete-test.de", true }, + { "skill.moe", true }, { "skilletfood.com", true }, { "skillled.com", true }, + { "skillmoe.at", true }, + { "skillout.org", true }, { "skills2serve.org", true }, { "skills2services.com", true }, { "skillseo.com", true }, @@ -31765,18 +32452,20 @@ static const nsSTSPreload kSTSPreloadList[] = { { "skory.us", true }, { "skou.dk", false }, { "skram.de", true }, - { "skrimix.tk", false }, { "skryptersi.pl", true }, { "sksdrivingschool.com.au", true }, { "sktan.com", true }, { "skuldwyrm.no", true }, + { "skutry-levne.cz", true }, + { "skutry.cz", true }, { "skwile-cafe.com", true }, { "skwitko.com", true }, + { "sky-coach.com", true }, + { "sky-coach.nl", true }, { "sky-live.fr", true }, { "sky-universe.net", true }, { "skyanchor.com", true }, { "skybloom.io", true }, - { "skybound.link", true }, { "skycmd.net", true }, { "skyderby.ru", true }, { "skydragoness.com", true }, @@ -31788,6 +32477,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "skylineservers.com", true }, { "skyloisirs.ch", true }, { "skyminds.net", true }, + { "skyn3t.in", true }, { "skynet233.ch", true }, { "skynethk.com", true }, { "skynetnetwork.eu.org", true }, @@ -31813,7 +32503,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "slane.cn", false }, { "slangbellor.com", true }, { "slanterns.net", true }, - { "slapen17.nl", true }, { "slash32.co.uk", true }, { "slashcrypto.org", true }, { "slate.to", true }, @@ -31823,7 +32512,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "slaughterhouse.fr", true }, { "slavasveta.info", true }, { "slaws.io", true }, - { "sld08.com", true }, { "sleeping.town", true }, { "sleeplessbeastie.eu", true }, { "sleepmap.de", true }, @@ -31846,13 +32534,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "slimk1nd.nl", true }, { "slimspots.com", true }, { "slingo-sta.com", true }, - { "slingo.com", true }, { "slingooriginals.com", true }, { "slingoweb.com", true }, { "slink.hr", true }, { "slip-gaming.tk", true }, { "slneighbors.org", true }, - { "slo-net.net", true }, { "slo-tech.com", true }, { "sloancom.com", true }, { "slonep.net", true }, @@ -31864,7 +32550,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "slotfara.net", true }, { "sloths.org", true }, { "slotlist.info", true }, - { "slovenskycestovatel.sk", true }, { "slow.zone", true }, { "slowb.ro", true }, { "slowgames.xyz", true }, @@ -31889,7 +32574,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "smalldogbreeds.net", true }, { "smalle-voet.de", true }, { "smallhadroncollider.com", true }, - { "smallpath.me", true }, { "smalltalkconsulting.com", true }, { "smaltimento-rifiuti.org", true }, { "smaltimento.caserta.it", true }, @@ -31906,6 +32590,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "smart-shapes.co.uk", true }, { "smart-wohnen.net", true }, { "smart.gov", true }, + { "smartacademy.ge", true }, { "smartairkey.com", true }, { "smartandcom.ch", true }, { "smartandhappychild.ro", true }, @@ -31924,6 +32609,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "smartlogreturns.com", true }, { "smartlogstock.com", true }, { "smartlogtower.com", true }, + { "smartmarketingcoaching.com", true }, { "smartmeal.ru", true }, { "smartmessages.net", true }, { "smartmomsmartideas.com", true }, @@ -31931,6 +32617,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "smartphonechecker.co.uk", true }, { "smartpolicingplatform.com", true }, { "smartrade.tech", true }, + { "smartrecruit.ro", true }, { "smartservices.nl", true }, { "smartshiftme.com", true }, { "smartship.co.jp", true }, @@ -31940,7 +32627,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "smartwank.com", true }, { "smartwelve.com", true }, { "smartwoodczech.cz", true }, - { "smartwritingservice.com", true }, { "smartwurk.nl", false }, { "smash-gg.club", true }, { "smatch.com", true }, @@ -31965,6 +32651,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "smithandcanova.co.uk", false }, { "smithchow.com", true }, { "smithfieldbaptist.org", true }, + { "smkw.com", false }, { "smm.im", true }, { "smmlaba.io", true }, { "smokeandmirrors.agency", true }, @@ -32000,7 +32687,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "snackbesteld.nl", true }, { "snafu.cz", true }, { "snakafya.com", true }, - { "snake.dog", true }, { "snap.com", true }, { "snapappointments.com", true }, { "snapchat.com", true }, @@ -32008,7 +32694,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "snapserv.ch", true }, { "snapserv.net", true }, { "snaptier.co", true }, - { "snaptools.io", true }, { "snatch.com.ua", true }, { "snazel.co.uk", true }, { "snazzie.nl", true }, @@ -32031,8 +32716,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "snerith.com", true }, { "snfdata.com", false }, { "sngallery.co.uk", true }, + { "sngeo.com", true }, { "sniderman.eu.org", true }, - { "sniderman.pro", true }, { "sniderman.us", true }, { "sniep.net", true }, { "snight.co", true }, @@ -32042,9 +32727,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "snl.no", true }, { "snoerendevelopment.nl", true }, { "snopyta.com", true }, + { "snoringhq.com", true }, { "snote.io", true }, { "snoupon.com", true }, { "snow-online.com", true }, + { "snow-online.de", true }, { "snow.dog", true }, { "snowalerts.eu", true }, { "snowalerts.nl", true }, @@ -32055,9 +32742,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "snowhaze.com", true }, { "snowpak.com", true }, { "snowpaws.de", true }, - { "snowyluma.com", true }, + { "snowy.land", true }, { "snowyluma.me", true }, - { "snrat.com", true }, { "snrub.co", true }, { "snuff.porn", true }, { "snughealth.org.uk", true }, @@ -32116,10 +32802,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "softanka.com", true }, { "softart.club", true }, { "softballrampage.com", true }, + { "softbebe.com", true }, { "softcreatr.de", false }, { "softonic.com", true }, { "softplay4hire.co.uk", true }, - { "softplaynation.co.uk", true }, { "softprayog.in", true }, { "softrobot.se", true }, { "softtennis-zenei.com", true }, @@ -32164,6 +32850,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "soledadpenades.com", true }, { "solentbasketball.co.uk", true }, { "solentbubblesandbounce.co.uk", true }, + { "solepurposetest.com", true }, + { "soleria.eu", true }, { "solesoftware.de", true }, { "soleus.nu", false }, { "solfegiator.ch", true }, @@ -32176,6 +32864,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "solihulllionsclub.org.uk", true }, { "solipym.net", true }, { "solit.systems", true }, + { "solitairenetwork.com", true }, { "solmek.co.uk", true }, { "solmek.com", true }, { "solomisael.com", true }, @@ -32190,6 +32879,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "solve-it.se", true }, { "solved.tips", true }, { "solvemethod.com", true }, + { "solvingproblems.com.au", true }, { "solvops.com", true }, { "somaini.li", true }, { "somali-derp.com", true }, @@ -32198,6 +32888,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "somanao.com", true }, { "somcase.com.br", true }, { "somecrazy.com", true }, + { "somepills.com", true }, { "somersetscr.nhs.uk", true }, { "somersetwellbeing.nhs.uk", true }, { "sommefeldt.com", true }, @@ -32250,8 +32941,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "sorellecollection.com.au", true }, { "sorenstudios.com", true }, { "sorever.online", true }, - { "sorex.photo", true }, - { "sorincocorada.ro", true }, { "sorrowfulunfounded.com", true }, { "sortesim.com.br", true }, { "soruly.com", true }, @@ -32275,10 +32964,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "soukodou.jp", true }, { "soul-source.co.uk", true }, { "soulcrazy.org", true }, + { "soulike.tech", true }, { "soulmate.dating", true }, { "soulmating.de", true }, { "soulogic.com", true }, { "souly.cc", true }, + { "soumikghosh.com", true }, { "soumya92.me", true }, { "soundabout.nl", true }, { "soundedj.com.br", true }, @@ -32298,13 +32989,16 @@ static const nsSTSPreload kSTSPreloadList[] = { { "southambouncycastle.co.uk", true }, { "southamerican.dating", true }, { "southbankregister.com.au", true }, + { "southernlights.xyz", true }, { "southernmost.us", true }, + { "southernstructuralsolutions.com", true }, { "southernutahinfluencers.com", true }, { "southlakenissanparts.com", true }, { "southmelbourne.apartments", true }, { "southmorangtownhouses.com.au", true }, { "southside-crew.com", true }, { "southside-tuning-day.de", true }, + { "southsidebargaincenter.com", true }, { "southwaymotors.com", true }, { "southwestrda.org.uk", true }, { "souyidai.com", true }, @@ -32320,6 +33014,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "sp.com.pl", true }, { "sp8ce.co", true }, { "space-it.de", true }, + { "space-y.cf", true }, { "spacebaseapp.com", true }, { "spacedirectory.org", true }, { "spacedots.net", true }, @@ -32333,8 +33028,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "spahireleeds.co.uk", true }, { "spaid.xyz", false }, { "spakurort.eu", true }, + { "spaldingwall.com", true }, { "spamdrain.com", true }, { "spamwc.de", true }, + { "spanda.io", true }, { "spanjeflydrive.nl", true }, { "spanyolul.hu", true }, { "spar-ni.co.uk", true }, @@ -32369,7 +33066,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "specialtyalloys.ca", true }, { "speciesism.com", true }, { "spectrosoftware.de", true }, - { "spedition-transport-umzug.de", true }, { "speech-balloon.com", true }, { "speechdrop.net", true }, { "speechmate.com", true }, @@ -32391,6 +33087,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "spellcheckci.com", true }, { "spellchecker.net", true }, { "spenglerei-shop.de", true }, + { "sperec.fr", true }, { "sperohub.com", true }, { "sperrstun.de", true }, { "spesys-services.fr", true }, @@ -32414,7 +33111,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "spillersfamily.net", true }, { "spillmaker.no", false }, { "spilogkoder.dk", true }, - { "spinalien.net", true }, + { "spinalien.net", false }, + { "spinalo.se", true }, { "spindle.com.ph", true }, { "spindrift.com", true }, { "spingenie.com", true }, @@ -32439,7 +33137,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "splintermail.com", true }, { "splitdna.com", true }, { "splitreflection.com", true }, + { "splopp.com", true }, { "splunk.net", true }, + { "splunk.zone", true }, { "spodelime.com", true }, { "spoketwist.com", true }, { "spoluck.ca", true }, @@ -32463,7 +33163,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "sportakrobatik.at", true }, { "sportbetuwe.nl", true }, { "sporter.com", true }, - { "sportflash.info", true }, { "sportnesia.com", true }, { "sportovnidum.cz", true }, { "sportparks.com", true }, @@ -32472,6 +33171,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "sportsjaw.com", true }, { "sportsmansblog.com", true }, { "sportstraineradvisor.com", true }, + { "sportstreetstyle.com", true }, { "sporttown.it", true }, { "sportugalia.ru", true }, { "sportvereine.online", true }, @@ -32538,6 +33238,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "srbija-nekretnine.org", true }, { "src.fedoraproject.org", true }, { "srchub.org", true }, + { "srife.net", true }, { "srigc.com", true }, { "srihash.org", true }, { "srinivasan.io", true }, @@ -32564,7 +33265,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ssc8689.com", true }, { "ssc8689.net", true }, { "sscd.no", true }, - { "ssconn.com", true }, { "ssdax.com", false }, { "ssdservers.co.uk", true }, { "ssenberg.nl", true }, @@ -32604,6 +33304,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ssuiteoffice.com", true }, { "ssuitesoft.com", true }, { "st-antonius-kuenzell.de", true }, + { "st-innovationcup.com", true }, { "st-kilian-markt-erlbach.de", true }, { "st-news.de", true }, { "st-shakyo.jp", true }, @@ -32623,6 +33324,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "stadterneuerung-hwb.de", true }, { "stadtpapa.de", true }, { "stadtplan-ilmenau.de", true }, + { "staer.ro", true }, { "staff.direct", true }, { "staffordlabour.org.uk", true }, { "stage.wepay.com", false }, @@ -32639,12 +33341,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "staklim-malang.info", true }, { "stako.jp", true }, { "staktrace.com", true }, - { "stalder.work", true }, { "staljedevledder.nl", true }, { "stalker-shop.com", true }, { "stalkr.net", true }, - { "stamboommuller.nl", true }, - { "stamboomvanderwal.nl", true }, { "stameystreet.com", true }, { "stamkassa.nl", true }, { "stammtisch.domains", true }, @@ -32660,7 +33359,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "stanthonymaryclaret.org", true }, { "star-citizen.wiki", true }, { "star-clean.it", true }, - { "star-killer.net", true }, { "starcoachservices.ca", true }, { "starcomproj.com", true }, { "stardanceacademy.net", true }, @@ -32682,6 +33380,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "starmtech.fr", true }, { "starpeak.org", true }, { "starphotoboothsni.co.uk", true }, + { "starsam80.net", true }, + { "starsing.bid", true }, { "starskim.cn", true }, { "starstreak.net", false }, { "startaninflatablebusiness.com", true }, @@ -32726,6 +33426,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "stb-schefczyk.de", true }, { "stb-strzyzewski.de", true }, { "stbennett.org", true }, + { "stclementmatawan.org", true }, + { "stclementreligioused.org", true }, { "stcplasticsurgery.com", true }, { "stcu.org", false }, { "std-home-test.com", true }, @@ -32747,7 +33449,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "steborio.pw", true }, { "steckel.cc", true }, { "stedb.eu", true }, - { "stedbg.net", true }, { "steef389.eu", true }, { "steel-roses.de", true }, { "steelephys.com.au", true }, @@ -32763,7 +33464,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "stefanorossi.it", true }, { "stefanovski.io", true }, { "stefanvanburen.xyz", true }, - { "stefany.eu", true }, { "steffentreeservice.com", true }, { "stegmaier-immobilien.de", true }, { "steidlewirt.de", true }, @@ -32790,10 +33490,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "stephane-huc.net", false }, { "stephaniedeady.ie", true }, { "stephanieschreiber.com", true }, + { "stephansurgicalarts.com", true }, { "stephencreilly.com", true }, { "stephenhaunts.com", true }, { "stephenhorler.com.au", true }, { "stephenj.co.uk", true }, + { "stephenjvoiceovers.com", true }, { "stephenperreira.com", true }, { "stephenschrauger.com", true }, { "stephenschrauger.info", true }, @@ -32847,9 +33549,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "stevenz.xyz", true }, { "stevesdrivingschooltyneside.com", true }, { "stewartswines.com", true }, + { "stewpolley.com", true }, { "steyaert.be", false }, { "stforex.com", false }, { "stfw.info", true }, + { "stian.net", true }, { "stichtingliab.nl", true }, { "stichtingscholierenvervoerzeeland.nl", true }, { "stichtingsticky.nl", true }, @@ -32865,7 +33569,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "stift-kremsmuenster.at", true }, { "stiftemaskinen.no", true }, { "stigharder.com", true }, - { "stigviewer.com", true }, { "stijncrevits.be", true }, { "stijnodink.nl", true }, { "stikic.me", true }, @@ -32882,19 +33585,24 @@ static const nsSTSPreload kSTSPreloadList[] = { { "stintup.com", true }, { "stipsan.me", true }, { "stirblaut.de", true }, - { "stirling.co", true }, { "stirlingpoon.com", true }, { "stitchfiddle.com", true }, { "stitchinprogress.com", true }, { "stivesbouncycastlehire.co.uk", true }, { "stjohnin.com", true }, + { "stjohnsottsville.org", true }, + { "stjoseph-stcatherine.org", true }, + { "stjscatholicchurch.org", true }, + { "stjustin.org", true }, { "stln.ml", true }, { "stlu.de", true }, + { "stlukenh.org", true }, { "stlukesbrandon.org", true }, { "stm-net.de", true }, { "stma.is", true }, { "stmarthachurch.com", true }, { "stmaryextra.uk", true }, + { "stmichaellvt.com", true }, { "stmkza.net", true }, { "stmlearning.com", true }, { "stmsolutions.pl", true }, @@ -32907,7 +33615,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "stoebermehl.at", true }, { "stoffelnet.de", true }, { "stogiesandmash.com", true }, - { "stoinov.com", true }, { "stokvistrading.nl", true }, { "stolin.info", true }, { "stolina.de", false }, @@ -32919,15 +33626,15 @@ static const nsSTSPreload kSTSPreloadList[] = { { "stonedworms.de", true }, { "stonefusion.org.uk", true }, { "stonehammerhead.org", true }, - { "stonemain.eu", true }, { "stonewuu.com", true }, { "stony.com", true }, { "stonystratford.org", true }, { "stopbreakupnow.org", true }, { "stopbullying.gov", true }, - { "stopfraud.gov", true }, + { "stopfraud.gov", false }, { "stopthethyroidmadness.com", true }, { "storageideas.uk", true }, + { "storageshedsnc.com", true }, { "stordbatlag.no", true }, { "storedsafe.com", true }, { "storeit.co.uk", true }, @@ -32942,6 +33649,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "storysift.news", true }, { "storytea.top", true }, { "storytell.com", true }, + { "storytime.hu", true }, { "stouter.nl", true }, { "stoxford.com", true }, { "straatderzotten.nl", true }, @@ -32971,12 +33679,14 @@ static const nsSTSPreload kSTSPreloadList[] = { { "straubis.org", true }, { "strauser.com", true }, { "stravers.shoes", true }, + { "strawberry-laser.gr", true }, { "streamchan.org", true }, { "streamelements.com", true }, + { "streamkit.gg", true }, { "streamlineautogroup.com", true }, { "streampleasure.xyz", true }, - { "streams.dyndns.org", true }, { "street-medics.fr", true }, + { "street-smart-home.de", true }, { "street-tek.com", true }, { "streetdancecenter.com", true }, { "streetmarket.ru", true }, @@ -32986,6 +33696,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "streetview.wien", true }, { "strefapi.com", true }, { "streklhof.at", true }, + { "stremio.com", true }, { "strengthroots.com", true }, { "stretchmyan.us", true }, { "stretchpc.com", true }, @@ -33003,25 +33714,25 @@ static const nsSTSPreload kSTSPreloadList[] = { { "strm.hu", true }, { "strming.com", true }, { "strobeltobias.de", true }, - { "strobeto.de", true }, { "strobotti.com", true }, { "stroeerdigital.de", true }, { "stroginohelp.ru", true }, { "strom.family", true }, { "stromaci.sk", true }, { "stromberger.org", true }, + { "strommenhome.com", true }, { "stromzivota.sk", true }, { "strongpassword.club", true }, { "strongrandom.com", false }, { "strongsalpinesucculents.com", true }, { "strongtowerpc.com", true }, { "stroomacties.nl", true }, + { "stroseoflima.com", true }, { "strozik.de", true }, { "structurally.net", true }, { "structure.systems", true }, { "strugee.net", true }, { "strutta.me", true }, - { "struxureon.com", true }, { "strydom.me.uk", true }, { "stsolarenerji.com", true }, { "stt.wiki", true }, @@ -33082,7 +33793,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "studytale.com", true }, { "stuermer.me", true }, { "stuetzredli.ch", true }, - { "stuff-fibre.co.nz", true }, { "stuffi.fr", true }, { "stuffie.org", true }, { "stuka-art.de", true }, @@ -33111,7 +33821,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "styles.pm", true }, { "stylett.ru", true }, { "stylewish.me", true }, - { "styloeart.com", true }, { "stypr.com", true }, { "su1ph3r.io", true }, { "suaudeau.fr", true }, @@ -33157,6 +33866,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "sugarandcloth.com", true }, { "sugarbrother.com", true }, { "sugarfactory.cz", true }, + { "sugarlandkarate.net", true }, { "sugarmillmanagement.com", true }, { "sugarshin.net", true }, { "suggea.com", true }, @@ -33164,12 +33874,14 @@ static const nsSTSPreload kSTSPreloadList[] = { { "suisui.stream", true }, { "suited21.com", true }, { "suitesapp.com", true }, + { "sujal.com", true }, { "sujatadev.in", true }, { "sujoydhar.in", true }, { "suka.moe", true }, { "suke3.jp", true }, { "suki.moe", true }, { "suko.pe", true }, + { "sukoyakapp.com", true }, { "sukrie.net", true }, { "suksit.com", true }, { "sulek.eu", true }, @@ -33236,8 +33948,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "supermil.ch", true }, { "supern0va.net", true }, { "supernaut.info", true }, - { "supernt.lt", true }, - { "supersec.es", true }, { "supersole.net", true }, { "supersonnig-festival.de", true }, { "supersonnigfestival.de", true }, @@ -33249,10 +33959,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "supertechcrew.com", true }, { "supertutorial.com.br", true }, { "supervisionassist.com", true }, + { "superway.es", true }, { "supeuro.com", true }, { "supplementler.com", true }, { "supplies24.at", true }, { "supplies24.es", true }, + { "supplynation.org.au", true }, { "support.mayfirst.org", false }, { "supportdesk.nu", true }, { "supportericking.org", true }, @@ -33274,7 +33986,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "surgenet.nl", true }, { "surgeongeneral.gov", true }, { "surgicalassociateswny.com", true }, - { "surgiclinic.gr", true }, { "suroil.com", true }, { "surpreem.com", true }, { "surreyheathyc.org.uk", true }, @@ -33286,7 +33997,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "surveymill.co.uk", true }, { "survivalistplanet.com", true }, { "survivalmonkey.com", true }, - { "survivebox.fr", true }, { "susanbpilates.co", true }, { "susanbpilates.com", true }, { "susann-kerk.de", true }, @@ -33304,6 +34014,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "sustainoss.org", true }, { "sustsol.com", true }, { "sutas.market", true }, + { "suttacentral.net", true }, { "suurhelsinki.cf", true }, { "suuria.de", true }, { "suv4.net", true }, @@ -33324,7 +34035,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "svc-sitec.org", true }, { "svdb.co", false }, { "svdreamcatcher.com", true }, - { "sve-hosting.nl", true }, { "sveinerik.org", true }, { "svenbacia.me", true }, { "svendubbeld.nl", true }, @@ -33398,18 +34108,18 @@ static const nsSTSPreload kSTSPreloadList[] = { { "switcheo.rocks", true }, { "switzerland-family-office.com", true }, { "swordfeng.xyz", true }, + { "swqa.hu", true }, { "swuosa.org", false }, { "swvaux.com", true }, + { "swxtd.com", true }, { "swyn.net", true }, { "sx8.ovh", true }, { "sxistolithos.gr", true }, - { "sy-anduril.de", true }, { "sy24.ru", true }, { "syajvo.if.ua", true }, { "syamutodon.xyz", true }, { "syamuwatching.xyz", true }, { "sycamorememphis.org", true }, - { "sychov.pro", true }, { "sydney-sehen.com", true }, { "sydney.dating", true }, { "sydneyhelicopters.com.au", true }, @@ -33453,7 +34163,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "syncflare.com", true }, { "synchrolarity.com", true }, { "synchronyse.com", true }, - { "synchtu.be", true }, { "syncrise.co.jp", true }, { "syneart.com", true }, { "synecek11.cz", true }, @@ -33465,6 +34174,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "synony.me", true }, { "synotna.eu", true }, { "syntaxnightmare.com", true }, + { "syntheticgrassliving.com.au", true }, { "syntheticurinereview.com", true }, { "synthetik.com", true }, { "syoier.com", true }, @@ -33496,6 +34206,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "systemonthego.com", true }, { "systemreboot.net", true }, { "systemspace.link", true }, + { "systemweb.no", true }, { "systemzeit.info", true }, { "systoolbox.net", true }, { "sysystems.cz", true }, @@ -33518,6 +34229,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "szunia.com", true }, { "szybkiebieganie.pl", true }, { "szyndler.ch", true }, + { "szzsivf.com", true }, { "t-hawk.com", true }, { "t-net.org.hu", true }, { "t-shirts4less.nl", true }, @@ -33555,11 +34267,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "tachi.uk", true }, { "tacklinglife.com", true }, { "tacklog.com", true }, - { "tacomafia.net", false }, + { "tacomafia.net", true }, { "tacostea.net", true }, { "tacticalsquare.com", true }, { "taddiestales.com", true }, { "tadeo.ca", true }, + { "tadiranbatteries.de", true }, { "tadluedtke.com", true }, { "tadtadya.com", true }, { "tadu.de", true }, @@ -33588,7 +34301,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "tajper.pl", true }, { "take1give1.com", false }, { "takeitoffline.co.uk", true }, - { "takemoto-ped.com", true }, { "taken.pl", true }, { "takeshifujimoto.com", true }, { "takk.pl", true }, @@ -33602,6 +34314,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "talentcast.org", true }, { "talenthub.co.nz", true }, { "talentos.pt", true }, + { "talentwall.io", true }, { "taler.net", true }, { "talideon.com", false }, { "talk.google.com", true }, @@ -33612,7 +34325,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "talktech.com", true }, { "talktobot.com", true }, { "talktodarcy.com", true }, - { "talktwincities.com", true }, { "talkwithyourbaby.org", true }, { "tallcraft.com", true }, { "talldude.net", true }, @@ -33621,7 +34333,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "talon.rip", true }, { "talroo.com", true }, { "talun.de", true }, + { "tam-moon.com", true }, { "tamashimx.net", true }, + { "tamasszabo.net", true }, { "tambre.ee", true }, { "tamchunho.com", true }, { "tamindir.com", true }, @@ -33636,6 +34350,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "tandilmap.com.ar", true }, { "tandk.com.vn", true }, { "tandzorg.link", true }, + { "tangel.me", true }, { "tangemann.org", true }, { "tango-cats.de", true }, { "tango-ouest.com", true }, @@ -33649,11 +34364,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "tankski.co.uk", true }, { "tannenhof-moelln.de", true }, { "tannerryan.ca", true }, + { "tannerwilliamson.com", true }, { "tannerwj.com", true }, { "tantalos.nl", true }, { "tantei100.net", true }, { "tanto259.name", false }, { "tanyanama.com", true }, + { "tanz-kreativ.de", true }, { "tanz.info", true }, { "tanzhijun.com", true }, { "tanzo.io", true }, @@ -33667,6 +34384,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "tapsnapp.co", true }, { "taquilla.com", true }, { "taqun.club", true }, + { "tar-mag.com", true }, { "tarantul.org.ua", true }, { "tarasecurity.co.uk", true }, { "tarasecurity.com", true }, @@ -33694,6 +34412,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "taskutark.ee", true }, { "tasogarenoinori.net", true }, { "tass.nu", true }, + { "tastenewwines.com", true }, { "tastic.com", true }, { "tastycake.net", false }, { "tastystakes.com", true }, @@ -33710,6 +34429,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "tavsys.net", true }, { "tax-guard.com", true }, { "taxaroo.com", true }, + { "taxaudit.com", true }, { "taxi-24std.de", false }, { "taxi-chamonix.fr", true }, { "taxi-collectif.ch", true }, @@ -33733,7 +34453,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "tbfocus.com", true }, { "tbitc.ch", true }, { "tbonejs.org", true }, - { "tbpixel.com", true }, { "tbrindus.ca", true }, { "tbs-certificates.co.uk", true }, { "tbspace.de", true }, @@ -33743,6 +34462,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "tcacademy.co.uk", true }, { "tcb-a.org", true }, { "tcb-b.org", true }, + { "tccmb.com", true }, { "tcdw.net", true }, { "tcf.org", true }, { "tcgforum.pl", true }, @@ -33757,7 +34477,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "tcnapplications.com", true }, { "tcptun.com", true }, { "tcpweb.net", true }, - { "tcspartner.net", true }, { "tcvvip.com", true }, { "tcwis.com", true }, { "tdchrom.com", true }, @@ -33782,6 +34501,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "teahut.net", true }, { "team-azerty.com", true }, { "team-bbd.com", true }, + { "team-pancake.eu", true }, { "team.house", true }, { "team3482.com", true }, { "teambeam.at", true }, @@ -33826,6 +34546,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "techableme.com", true }, { "techace.jp", true }, { "techademy.nl", true }, + { "techamigo.in", true }, { "techarea.fr", true }, { "techbelife.com", true }, { "techbrown.com", true }, @@ -33834,10 +34555,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "techcultivation.de", false }, { "techcultivation.net", false }, { "techcultivation.org", false }, - { "techday.co.nz", true }, - { "techday.com", true }, - { "techday.com.au", true }, - { "techday.eu", true }, { "techdirt.com", true }, { "techdroid.eu", true }, { "techendeavors.com", true }, @@ -33854,6 +34571,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "technicalbrothers.cf", true }, { "technicallyeasy.net", true }, { "technicalsystemsprocessing.com", true }, + { "techniclab.net", true }, { "technifocal.com", true }, { "technik-boeckmann.de", true }, { "technikblase.fm", true }, @@ -33872,6 +34590,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "techosmarcelo.com.ar", true }, { "techpit.us", true }, { "techpivot.net", true }, + { "techpoint.org", true }, { "techshift.eu", true }, { "techshift.nl", true }, { "techshift.se", true }, @@ -33921,6 +34640,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "tehcrayz.com", true }, { "tehrabbitt.com", false }, { "tehrankey.ir", true }, + { "tehranperfume.com", true }, { "teixobactin.com", true }, { "tejarat98.com", true }, { "teknemodus.com.au", true }, @@ -33931,7 +34651,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "teknolit.com", true }, { "tekstschrijvers.net", true }, { "tektuts.com", true }, - { "tekuteku.jp", true }, { "telamon.eu", true }, { "telamon.fr", true }, { "tele-alarme.ch", true }, @@ -33947,7 +34666,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "telefoncek.si", true }, { "telefonkonferenz.ch", true }, { "telefonni-ustredna.cz", true }, - { "telefonogratuito.com", true }, { "telefonseelsorge-paderborn.de", true }, { "telefoon.nl", true }, { "telefoonabonnement.nl", true }, @@ -33965,12 +34683,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "tellusaboutus.com", true }, { "telly.site", true }, { "tellygames.com", true }, + { "tellyourtale.com", true }, { "teloo.pl", true }, { "telos-analytics.com", true }, - { "teltonica.com", true }, { "teltru.com", true }, { "tem.li", true }, { "tematicas.org", true }, + { "temdu.com", true }, { "temizmama.com", true }, { "temnacepel.cz", true }, { "temp.pm", true }, @@ -33979,7 +34698,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "template-parks.com", true }, { "templateinvaders.com", true }, { "templum.com.br", true }, - { "tempus-aquilae.de", true }, { "tenable.com.au", true }, { "tenbos.ch", true }, { "tendance-et-accessoires.com", true }, @@ -34009,14 +34727,18 @@ static const nsSTSPreload kSTSPreloadList[] = { { "tepitus.de", true }, { "teplofom.ru", true }, { "teplomash24.ru", true }, + { "tequilazor.com", true }, { "terabyte.services", true }, { "terabyteharddrive.net", true }, { "terabyteit.co.uk", true }, { "teracloud.at", true }, { "teranacreative.com", true }, { "teriiphotography.com", true }, + { "teriyakisecret.com", true }, { "terlindung.com", true }, { "termax.me", true }, + { "terminalvelocity.co.nz", true }, + { "terminsrakning.se", true }, { "termitemounds.org", true }, { "termitinitus.org", true }, { "termografiranje.si", true }, @@ -34046,12 +34768,14 @@ static const nsSTSPreload kSTSPreloadList[] = { { "tescolide.cz", true }, { "tescoludia.sk", true }, { "teskalabs.com", true }, + { "teslamagician.com", true }, { "tesoro.pr", true }, { "tessai.ga", true }, { "test-textbooks.com", true }, { "test.de", true }, { "test.support", true }, { "testadren.com", true }, + { "testeveonline.com", true }, { "testgeomed.ro", true }, { "testi.info", true }, { "testomato.com", true }, @@ -34158,10 +34882,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "the2f.de", true }, { "the3musketeers.biz", true }, { "theactuary.ninja", true }, + { "theadelaideshow.com.au", true }, { "theadultswiki.com", true }, { "thealexandertechnique.co.uk", true }, { "theankhlife.com", true }, { "theanticellulitediet.com", true }, + { "theaps.net", true }, { "theastrocoach.com", true }, { "thebakers.com.br", true }, { "thebakery2go.de", true }, @@ -34169,6 +34895,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "thebarrens.nu", true }, { "thebasebk.org", true }, { "thebcm.co.uk", true }, + { "thebeginningviolinist.com", true }, { "thebest.ch", true }, { "thebestfun.co.uk", true }, { "thebestpersonin.ml", true }, @@ -34183,6 +34910,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "thebit.link", true }, { "theblackknightsings.com", true }, { "theblondeabroad.com", true }, + { "theblueroofcottage.ca", true }, { "thebodyprinciple.com", true }, { "thebonerking.com", true }, { "thebouncedepartment.co.uk", true }, @@ -34199,7 +34927,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "thecellulitediet.com", true }, { "thecherryship.ch", true }, { "thechunk.net", true }, - { "theciderlink.com.au", true }, { "thecitywarehouse.clothing", true }, { "thecloudshelter.com", true }, { "thecoffeecamp.com", true }, @@ -34221,6 +34948,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "thedark1337.com", true }, { "thedebug.life", true }, { "thederminstitute.com", true }, + { "thediamondcenter.com", true }, { "thediaryofadam.com", true }, { "thedisc.nl", true }, { "thediscovine.com", true }, @@ -34237,14 +34965,17 @@ static const nsSTSPreload kSTSPreloadList[] = { { "theemasphere.com", true }, { "thefairieswantmedead.com", true }, { "thefanimatrix.net", true }, + { "thefashionpolos.com", true }, { "thefasterweb.com", true }, { "thefbstalker.com", true }, { "thefengshuioffice.com", true }, { "theferrarista.com", true }, + { "thefilmphotography.com", true }, { "theflowerbasketonline.com", true }, { "theflowershopdeddington.com", true }, { "theflyingbear.net", true }, { "thefnafarchive.org", true }, + { "theforkedspoon.com", true }, { "thefourthmoira.com", true }, { "thefrk.pw", true }, { "thefuckingtide.com", true }, @@ -34253,6 +34984,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "thegarrowcompany.com", true }, { "thegeekdiary.com", true }, { "thegioinano.com", true }, + { "thegospelforgeeks.org", true }, { "thegrape.ro", true }, { "thegreatpakistan.com", true }, { "thegreatplains.com", true }, @@ -34267,7 +34999,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "thehairrepublic.net", true }, { "thehairstandard.com", true }, { "thehaxbys.co.uk", true }, + { "thehiddenbay.fi", true }, { "thehiddenbay.info", true }, + { "thehiddenbay.ws", true }, { "thehivedesign.org", true }, { "thehomeicreate.com", true }, { "thehookup.be", true }, @@ -34284,12 +35018,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "theinitium.com", true }, { "theintercept.com", true }, { "theinternationalgeekconspiracy.eu", true }, - { "thej0lt.com", true }, { "thejacksoninstitute.com.au", true }, { "thekev.in", true }, { "thekeytobusiness.co.uk", true }, { "thekindplate.ca", true }, { "thekingofhate.com", true }, + { "thekovnerfoundation.org", true }, { "thelaimlife.com", true }, { "thelanscape.com", true }, { "thelastsurprise.com", true }, @@ -34308,7 +35042,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "themecraft.studio", true }, { "themefoxx.com", true }, { "themetacity.com", true }, - { "themilanlife.com", true }, + { "themigraineinstitute.com", true }, { "themillerslive.com", true }, { "themimitoof.fr", true }, { "themist.cz", true }, @@ -34322,6 +35056,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "themusicinnoise.net", true }, { "thenanfang.com", true }, { "thenarcissisticlife.com", true }, + { "theneatgadgets.com", true }, { "thenexwork.com", true }, { "thenib.com", true }, { "thenocman.com", true }, @@ -34375,6 +35110,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "therapysxm.com", true }, { "therealcost.gov", true }, { "thereaper.net.au", true }, + { "theregoesbrian.com", true }, { "thereisnocloud.fr", true }, { "therepublicofliverpool.com", true }, { "theresa-mayer.eu", true }, @@ -34384,12 +35120,14 @@ static const nsSTSPreload kSTSPreloadList[] = { { "thermity.com", true }, { "thermolamina.nl", true }, { "theroks.com", true }, + { "theropes.nyc", true }, { "theroyalmarinescharity.org.uk", true }, { "therugswarehouse.co.uk", true }, { "theruizes.com", true }, { "theruleslawyer.net", true }, { "therumfordcitizen.com", true }, { "thesalonthing.com", false }, + { "thesarogroup.com", true }, { "thesaturdaypaper.com.au", true }, { "thesaurus.net", true }, { "theschool.jp", true }, @@ -34407,6 +35145,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "thesharepointfarm.com", true }, { "theshield.in", true }, { "theshine.pl", true }, + { "theshopally.com", false }, { "thesignacademy.co.uk", true }, { "thesignalco.com.au", true }, { "thesimplifiers.com", true }, @@ -34434,7 +35173,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "thetenscrolls.com", true }, { "thethreepercent.marketing", true }, { "thetomharling.com", true }, - { "thetradinghall.com", true }, { "thetree.ro", true }, { "thetrendspotter.net", true }, { "thetuxkeeper.de", false }, @@ -34447,7 +35185,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "thewarrencenter.org", true }, { "thewaxhouse.academy", true }, { "thewaxhouse.de", true }, - { "thewaxhouse.shop", true }, { "thewebdexter.com", true }, { "thewebflash.com", true }, { "thewebsitedoctors.co.uk", true }, @@ -34465,6 +35202,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "thexfactorgames.com", true }, { "thexme.de", true }, { "theyachtteam.com", true }, + { "theyakshack.co.uk", true }, { "theyarnhookup.com", false }, { "theyear199x.org", true }, { "theyearinpictures.co.uk", true }, @@ -34473,7 +35211,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "thezillersathenshotel.com", true }, { "thiagohersan.com", true }, { "thibaultwalle.com", true }, - { "thienteakee.com", true }, { "thiepcuoidep.com", true }, { "thiepxinh.net", true }, { "thierry-daellenbach.com", true }, @@ -34486,8 +35223,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "thinegen.de", true }, { "thingies.site", true }, { "thingsimplied.com", true }, + { "thingsof.org", true }, { "think-asia.org", true }, { "think-positive-watches.de", true }, + { "thinkforwardmedia.com", true }, { "thinkheaddesign.com", true }, { "thinkindifferent.net", true }, { "thinkingandcomputing.com", true }, @@ -34541,7 +35280,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "thomasverhelst.be", true }, { "thomasvochten.com", true }, { "thomaswoo.com", true }, - { "thompsonfamily.cloud", true }, { "thomsonscleaning.co.uk", true }, { "thomspooren.nl", true }, { "thomwiggers.nl", true }, @@ -34554,9 +35292,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "thosci.com", true }, { "thotpublicidad.com", true }, { "thoughtlessleaders.online", true }, - { "thoughtsynth.com", true }, - { "thoughtsynth.net", true }, - { "thoughtsynth.org", true }, { "thouni.de", true }, { "thousandgreens.com", true }, { "thousandoakselectrical.com", true }, @@ -34565,7 +35300,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "thousandoakslighting.com", true }, { "thousandoaksoutdoorlighting.com", true }, { "thpay.com", true }, + { "threatcon.io", true }, { "threatmarket.com", true }, + { "threatnix.io", true }, { "threatworking.com", true }, { "threecrownsllp.com", true }, { "threedpro.me", true }, @@ -34593,7 +35330,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "thusoy.com", true }, { "thuthuatios.com", true }, { "thuviensoft.com", true }, - { "thuviensoft.net", true }, { "thw-bernburg.de", true }, { "thxandbye.de", true }, { "thycotic.ru", true }, @@ -34615,7 +35351,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ticketluck.com", true }, { "ticketmates.com.au", true }, { "ticketmaze.com", true }, - { "ticketpro.ca", true }, + { "ticketpro.ca", false }, { "ticketrunway.com", true }, { "ticketslover.com", true }, { "ticketsmate.com", true }, @@ -34653,7 +35389,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "tijo.ch", true }, { "tik.edu.ee", true }, { "tik.help", true }, - { "tiki-god.co.uk", true }, { "tildes.net", true }, { "tildesnyder.com", true }, { "tiledailyshop.com", true }, @@ -34677,7 +35412,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "timbishopartist.com", true }, { "timbrust.de", true }, { "timco.cloud", true }, - { "timdebruijn.nl", true }, { "timdeneau.com", true }, { "timdoug.com", true }, { "time.gov", true }, @@ -34698,6 +35432,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "timing.com.br", true }, { "timjk.de", true }, { "timmersgems.com", true }, + { "timmy.im", true }, { "timmyrs.de", true }, { "timnash.co.uk", true }, { "timonengelke.de", true }, @@ -34707,9 +35442,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "timsayedmd.com", true }, { "timtaubert.de", true }, { "timtelfer.com", true }, - { "timtj.ca", true }, { "timvivian.ca", true }, - { "timweb.ca", true }, + { "timysewyn.be", true }, { "tina.media", true }, { "tinastahlschmidt.de", true }, { "tindallriley.co.uk", true }, @@ -34738,7 +35472,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "tioat.net", true }, { "tipaki.gr", true }, { "tipbox.is", true }, - { "tipe.io", false }, + { "tipe.io", true }, { "tiplanet.org", true }, { "tipoftheday.tips", true }, { "tippytoad.com", true }, @@ -34761,7 +35495,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "tit.systems", true }, { "titandirect.co.uk", true }, { "titanous.com", true }, - { "titanpointe.org", true }, { "titansized.com", true }, { "titanwaterproofing.com.au", true }, { "titelseite.ch", true }, @@ -34772,6 +35505,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "tivido.nl", true }, { "tiwag.at", true }, { "tixeconsulting.com", true }, + { "tixify.com", true }, { "tjampoer.com", true }, { "tjenestetorvet.dk", true }, { "tjkcastles.uk", true }, @@ -34791,7 +35525,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "tkw01536.de", false }, { "tl.gg", true }, { "tlca.org", true }, - { "tlcnet.info", true }, { "tlehseasyads.com", true }, { "tleng.de", true }, { "tlo.xyz", true }, @@ -34811,9 +35544,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "tmberg.ml", true }, { "tmberg.tk", true }, { "tmc.com.mt", true }, + { "tmconnects.com", true }, { "tmcpromotions.co.uk", true }, { "tmcreationweb.com", true }, { "tmdb.biz", true }, + { "tmdc.ddns.net", true }, { "tmf.ru", true }, { "tmhr.moe", true }, { "tmi-products.eu", true }, @@ -34823,6 +35558,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "tmonitoring.com", true }, { "tmpraider.net", true }, { "tmpsantos.com.br", true }, + { "tmsdiesel.com", true }, { "tmtopup.com", true }, { "tn0.club", true }, { "tndentalwellness.com", true }, @@ -34860,9 +35596,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "tobiaswiese.com", true }, { "tobiemilford.com", true }, { "tobis-rundfluege.de", true }, - { "tobis-webservice.de", true }, { "tobischo.de", true }, - { "tobisworld.ch", true }, { "tobyalden.com", true }, { "tobyx.com", true }, { "tobyx.de", true }, @@ -34881,15 +35615,15 @@ static const nsSTSPreload kSTSPreloadList[] = { { "todocracy.com", true }, { "todoescine.com", true }, { "todoist.com", true }, - { "todokete.ga", true }, { "todon.fr", true }, + { "todoscheduler.de", true }, + { "todoscheduler.org", true }, { "toeglhofer.at", true }, { "toeightycountries.com", true }, { "toekomstperspectief.be", true }, { "toerclub-ing-arnhem.nl", true }, { "toetsplatform.be", true }, { "tofe.io", true }, - { "tofilmhub.com", true }, { "tofu.cf", true }, { "togech.jp", true }, { "togetter.com", true }, @@ -34904,6 +35638,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "tokens.net", true }, { "tokic.hr", true }, { "tokinoha.net", true }, + { "tokintu.com", true }, { "tokio.fi", true }, { "tokka.com", true }, { "tokke.dk", true }, @@ -34933,7 +35668,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "tomandmara.com", true }, { "tomarns.nl", true }, { "tomasjacik.cz", true }, - { "tomaskavalek.cz", true }, + { "tomaskavalek.cz", false }, { "tomaspatera.cz", true }, { "tomaspialek.cz", true }, { "tomasvecera.cz", true }, @@ -34941,11 +35676,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "tomatenaufdenaugen.de", true }, { "tomatis-nantes.com", true }, { "tomaw.net", true }, - { "tomaz.eu", true }, { "tombaker.me", true }, { "tomberek.info", true }, { "tombrossman.com", true }, - { "tomcort.com", true }, { "tomd.ai", true }, { "tomdudfield.com", true }, { "tomend.es", true }, @@ -34961,6 +35694,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "tomjonsson.se", true }, { "tomkunze.de", true }, { "tomkwok.com", true }, + { "tomli.blog", true }, { "tomlowenthal.com", true }, { "tomm.yt", true }, { "tommic.eu", true }, @@ -34989,6 +35723,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "tonage.de", true }, { "toncusters.nl", true }, { "tondles.com", true }, + { "tone.tw", true }, { "tonegidoarchief.nl", true }, { "toner24.at", true }, { "toner24.co.uk", true }, @@ -35030,6 +35765,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "tools.pro", true }, { "toolsense.io", true }, { "toom.io", true }, + { "toomy.ddns.net", true }, { "toonpool.com", true }, { "toonsburgh.com", true }, { "toool.nl", true }, @@ -35041,14 +35777,14 @@ static const nsSTSPreload kSTSPreloadList[] = { { "top-esb.com", true }, { "top-obaly.cz", true }, { "top-opakowania.pl", true }, - { "top-solar-info.de", true }, - { "top9.fr", true }, + { "top5hosting.co.uk", true }, { "topaxi.ch", true }, { "topaxi.codes", true }, { "topbigdeals.com", true }, { "topbounce.com", true }, { "topbouncycastles.co.uk", true }, { "topbrakes.com", true }, + { "topciderska-crkva.rs", true }, { "topclassfun.ie", true }, { "topdesk.net", true }, { "topdogsinflatables.co.uk", true }, @@ -35061,11 +35797,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "topicit.net", true }, { "topirishcasinos.com", true }, { "topjobs.ch", true }, + { "topkek.ml", true }, { "toplist.cz", true }, { "toplist.eu", true }, { "topnotepad.com", true }, { "topodin.com", true }, { "toponlinecasinosites.co.uk", true }, + { "toppointrea.com", true }, { "topprice.ua", true }, { "topsailtechnologies.com", true }, { "topservercccam.tv", true }, @@ -35075,6 +35813,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "toptexture.com", true }, { "toptheto.com", true }, { "topvertimai.lt", true }, + { "topwin.la", true }, { "topwindowcleaners.co.uk", true }, { "topworktops.co.uk", true }, { "toracon.org", true }, @@ -35104,9 +35843,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "torsten-schmitz.net", true }, { "torstensenf.de", true }, { "torte.roma.it", true }, + { "tortocan.com", true }, { "tortoises-turtles.com", true }, { "tortugan.com.br", true }, { "tosainu.com.br", true }, + { "tosamja.net", true }, + { "toscer.me", false }, { "toschool.com.br", true }, { "toshen.com", true }, { "toshkov.com", true }, @@ -35114,7 +35856,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "tosostav.cz", true }, { "tosteberg.se", true }, { "tostu.de", true }, - { "totaku.ru", true }, { "totalbeauty.co.uk", true }, { "totalbike.com.br", true }, { "totalcarcheck.co.uk", true }, @@ -35134,6 +35875,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "touch.facebook.com", false }, { "touch.mail.ru", true }, { "touchoflife.in", true }, + { "touchscreentills.com", true }, { "touchtable.nl", true }, { "touchweb.fr", true }, { "touchwoodtrees.com.au", true }, @@ -35161,6 +35903,15 @@ static const nsSTSPreload kSTSPreloadList[] = { { "toutart.ch", true }, { "toutenmusic.fr", true }, { "toutmonexam.fr", true }, + { "toutvendre.be", true }, + { "toutvendre.ch", true }, + { "toutvendre.cm", true }, + { "toutvendre.es", true }, + { "toutvendre.fr", true }, + { "toutvendre.lu", true }, + { "toutvendre.pics", true }, + { "toutvendre.uk", true }, + { "toutvendre.us", true }, { "tovare.com", true }, { "toverland-tickets.nl", true }, { "tovp.org", true }, @@ -35168,7 +35919,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "townandcountryus.com", true }, { "townhousedevelopments.com.au", true }, { "townhouseregister.com.au", true }, - { "townofbridgewater.ca", true }, { "towsonroofers.com", true }, { "towywebdesigns.uk", true }, { "tox21.gov", false }, @@ -35179,7 +35929,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "tp-kabushiki.com", true }, { "tp-kyouyufudousan.com", true }, { "tp-law.jp", true }, - { "tpansino.com", true }, { "tpbproxy.co", true }, { "tpci.biz", true }, { "tpidg.us", true }, @@ -35198,6 +35947,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "trace.moe", true }, { "traceheatinguk.co.uk", true }, { "tracelight.io", true }, + { "tracemyplace.com", true }, { "traceroute.guru", true }, { "traceroute.link", true }, { "traceroute.network", true }, @@ -35228,6 +35978,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "traditions.nl", true }, { "traditionskapperscollege.nl", true }, { "traditionsvivantesenimages.ch", true }, + { "tradiz.org", false }, { "trafarm.ro", true }, { "trafas.nl", true }, { "traffic.az", true }, @@ -35238,17 +35989,26 @@ static const nsSTSPreload kSTSPreloadList[] = { { "traffixdevices.com", true }, { "traficmusik.net", true }, { "tragmi.ch", true }, + { "trailcloud.ink", true }, { "trailerparty.com", true }, { "trailforks.com", true }, { "trainex.org", true }, { "trainhornforums.com", true }, { "trainiac.com.au", true }, { "trainings-handschuhe-test.de", true }, + { "trainline.at", true }, + { "trainline.cn", true }, + { "trainline.com.br", true }, + { "trainline.com.pt", true }, + { "trainline.cz", true }, { "trainline.de", true }, { "trainline.es", true }, { "trainline.eu", true }, { "trainline.fr", true }, { "trainline.it", true }, + { "trainline.nl", true }, + { "trainline.no", true }, + { "trainline.pl", true }, { "trainmagazine.be", true }, { "trainmagazine.de", true }, { "trainmagazine.nl", true }, @@ -35333,7 +36093,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "travel.co.za", true }, { "travel365.it", true }, { "travelarmenia.org", true }, - { "traveling-thailand.info", true }, + { "traveleets.com", true }, { "travelinsurance.co.nz", true }, { "travellers.dating", true }, { "travellovers.fr", true }, @@ -35341,6 +36101,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "travelogue.jp", true }, { "travelphoto.cc", true }, { "travelpricecheck.com", true }, + { "travelrefund.com", true }, { "travelshack.com", true }, { "travi.org", true }, { "travis.nl", true }, @@ -35370,11 +36131,15 @@ static const nsSTSPreload kSTSPreloadList[] = { { "tremlor.com", true }, { "tremolosoftware.com", true }, { "trendkraft.de", true }, + { "trendus.no", true }, { "trendykids.cz", true }, { "trenta.io", true }, + { "trentmaydew.com", true }, + { "tresor.it", true }, { "tresorit.com", true }, { "tresorsecurity.com", true }, { "tretail.net", true }, + { "tretkowski.de", true }, { "trevsanders.co.uk", true }, { "trezy.me", true }, { "trezy.net", true }, @@ -35406,6 +36171,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "trigardon-rg.de", true }, { "trik.es", false }, { "trillian.im", true }, + { "trilliumvacationrentals.ca", true }, { "triluxds.com", true }, { "trim-a-slab.com", true }, { "trimage.org", true }, @@ -35422,12 +36188,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "triple-mmm.de", true }, { "triplekeys.net", true }, { "tripolistars.com", true }, + { "tripp.xyz", true }, { "tripseats.com", true }, { "tripsinc.com", true }, { "trisect.eu", true }, { "trixexpressweb.nl", true }, { "triz.co.uk", true }, - { "trizone.com.au", true }, { "trkpuls.tk", true }, { "trockendock.ch", true }, { "troedel-trolle.de", true }, @@ -35446,13 +36212,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "tropicalserver.com", true }, { "trotec.com", true }, { "trotina.cz", true }, + { "trouble-free-employees.com", true }, { "trouweninoverijssel.nl", true }, { "trovaprezzi.it", true }, { "troyfawkes.com", true }, { "troyhunt.com", true }, { "troyhuntsucks.com", true }, { "troykelly.com", true }, - { "trpg.wiki", true }, { "trs.tn", true }, { "trtltravel.com", true }, { "trtruijens.com", true }, @@ -35467,6 +36233,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "trueinstincts.ca", true }, { "truekey.com", true }, { "truentumvet.it", true }, + { "trueproxy.net", true }, { "truerizm.ru", true }, { "truessl.shop", true }, { "truestaradvisors.com", true }, @@ -35488,7 +36255,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "trustcase.com", true }, { "trustednetworks.nl", true }, { "trustfield.ch", true }, - { "trustocean.com", true }, { "trustserv.de", true }, { "truthmessages.pw", true }, { "truvisory.com", true }, @@ -35504,7 +36270,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "tryndraze.com", true }, { "trynta.com", true }, { "trynta.net", true }, - { "tryretool.com", false }, + { "tryretool.com", true }, { "tryupdates.com", true }, { "trywesayyes.com", true }, { "trzepak.pl", true }, @@ -35519,6 +36285,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "tschuermans.be", true }, { "tscqmalawi.info", true }, { "tsedryk.ca", true }, + { "tsgkc1.com", true }, { "tsicons.com", true }, { "tsironis-olivenoel.de", true }, { "tslcontractors.co.uk", true }, @@ -35558,6 +36325,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "tu-immoprojekt.at", true }, { "tu6.pm", true }, { "tuang-tuang.com", true }, + { "tuasaude.com", true }, { "tubanten.nl", true }, { "tube.tools", true }, { "tubejack.nl", true }, @@ -35588,7 +36356,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "tuner.cloud", true }, { "tuning-werkstatt-nuernberg.de", true }, { "tuningblog.eu", false }, - { "tunity.be", true }, { "tunnelbear.com", true }, { "tunnelblick.net", true }, { "tunnelventilation.pro", true }, @@ -35601,6 +36368,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "tuppenceworth.ie", true }, { "turbobit.ch", true }, { "turdnagel.com", true }, + { "turf-experts.com", true }, { "turigum.com", true }, { "turkish.dating", true }, { "turl.pl", true }, @@ -35615,7 +36383,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "turtlepwr.com", true }, { "turunculevye.com", true }, { "tuscanyleather.it", true }, - { "tusi.co", true }, + { "tusi.co", false }, { "tusksol.com", true }, { "tutanota.com", true }, { "tuto-craft.com", true }, @@ -35666,9 +36434,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "tweaktown.com", true }, { "tweetfinity.com", true }, { "tweetfinityapp.com", true }, - { "twem.ddns.net", true }, { "twenty71.com", true }, { "twentymilliseconds.com", true }, + { "twilightcookies.ca", true }, { "twilleys.com", true }, { "twincitynissantxparts.com", true }, { "twinkseason.com", true }, @@ -35692,15 +36460,16 @@ static const nsSTSPreload kSTSPreloadList[] = { { "twofactorauth.org", true }, { "twohuo.com", true }, { "twojfaktum.pl", true }, - { "twolanedesign.com", true }, { "twopif.net", true }, { "tworaz.net", true }, { "twun.io", true }, + { "twuni.org", true }, { "txcap.org", true }, { "txdivorce.org", true }, { "txi.su", true }, { "txlrs.org", true }, { "txm.pl", true }, + { "txtecho.com", true }, { "tyche.io", true }, { "tycho.org", true }, { "tycom.cz", true }, @@ -35718,6 +36487,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "typecodes.com", true }, { "typehub.net", true }, { "typeof.pw", true }, + { "typeonejoe.com", true }, { "typeria.net", true }, { "typewolf.com", true }, { "typewritten.net", true }, @@ -35731,9 +36501,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "tyroremotes.nl", true }, { "tyroremotes.no", true }, { "tysox.de", true }, - { "tz56789.com", true }, { "tzermias.gr", true }, { "tzifas.com", true }, + { "u-martfoods.com", true }, { "u-metals.com", true }, { "u-tokyo.club", true }, { "u.nu", true }, @@ -35799,13 +36569,63 @@ static const nsSTSPreload kSTSPreloadList[] = { { "uedaviolin.com", true }, { "uel-thompson-okanagan.ca", true }, { "ueni.com", true }, + { "uevan.com", true }, { "uex.im", true }, { "ufanisi.mx", true }, { "ufindme.at", true }, { "ufplanets.com", true }, { "uggedal.com", true }, { "ugx-mods.com", true }, + { "uhappy1.com", true }, + { "uhappy11.com", true }, + { "uhappy2.com", true }, + { "uhappy21.com", true }, + { "uhappy22.com", true }, + { "uhappy23.com", true }, + { "uhappy24.com", true }, + { "uhappy25.com", true }, + { "uhappy26.com", true }, + { "uhappy27.com", true }, + { "uhappy28.com", true }, + { "uhappy29.com", true }, + { "uhappy3.com", true }, { "uhappy30.com", true }, + { "uhappy31.com", true }, + { "uhappy33.com", true }, + { "uhappy50.com", true }, + { "uhappy55.com", true }, + { "uhappy56.com", true }, + { "uhappy57.com", true }, + { "uhappy58.com", true }, + { "uhappy59.com", true }, + { "uhappy6.com", true }, + { "uhappy60.com", true }, + { "uhappy61.com", true }, + { "uhappy62.com", true }, + { "uhappy66.com", true }, + { "uhappy67.com", true }, + { "uhappy69.com", true }, + { "uhappy70.com", true }, + { "uhappy71.com", true }, + { "uhappy72.com", true }, + { "uhappy73.com", true }, + { "uhappy74.com", true }, + { "uhappy75.com", true }, + { "uhappy76.com", true }, + { "uhappy77.com", true }, + { "uhappy78.com", true }, + { "uhappy79.com", true }, + { "uhappy8.com", true }, + { "uhappy80.com", true }, + { "uhappy81.com", true }, + { "uhappy82.com", true }, + { "uhappy83.com", true }, + { "uhappy85.com", true }, + { "uhappy86.com", true }, + { "uhappy88.com", true }, + { "uhappy9.com", true }, + { "uhappy90.com", true }, + { "uhappy99.com", true }, { "uhasseltodin.be", true }, { "uhc.gg", true }, { "uhrenlux.de", true }, @@ -35853,12 +36673,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ultimatemafia.net", true }, { "ultraseopro.com", true }, { "ultrasite.tk", true }, - { "ultrasteam.net", true }, { "ultratech.software", true }, { "ultratechlp.com", true }, + { "ultrautoparts.com.au", true }, { "umanityracing.com", true }, { "umbricht.li", true }, - { "umbriel.fr", true }, { "umenlisam.com", true }, { "umisonoda.com", true }, { "umkmjogja.com", true }, @@ -35868,7 +36687,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "un-framed.co.za", true }, { "un-zero-un.fr", true }, { "un.fo", true }, - { "unapolegetic.co", true }, { "unapp.me", true }, { "unatco.noip.me", true }, { "unausa.com.br", true }, @@ -35879,6 +36697,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "unblocked.bet", true }, { "unblocked.bid", true }, { "unblocked.cam", true }, + { "unblocked.gdn", true }, { "unblocked.ink", true }, { "unblocked.lat", true }, { "unblocked.live", true }, @@ -35899,6 +36718,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "uncensoreddns.org", true }, { "undecidable.de", true }, { "undeductive.media", true }, + { "undef.in", true }, { "underbridgeleisure.co.uk", true }, { "undercovercondoms.co.uk", true }, { "underfloorheating-uk.co.uk", true }, @@ -35916,6 +36736,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "unfettered.net", false }, { "unfuddle.cn", true }, { "unga.dk", true }, + { "ungeek.eu", true }, + { "ungeek.fr", true }, { "ungegamere.dk", true }, { "unghie.com", true }, { "unicef-karten.at", true }, @@ -35948,10 +36770,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "uniformebateriasheliar.com.br", true }, { "unikoingold.com", true }, { "unila.edu.br", true }, + { "unimbalr.com", true }, { "uninet.cf", true }, { "uniojeda.ml", true }, { "unionplat.ru", true }, { "uniontestprep.com", true }, + { "unipig.de", true }, { "uniprimebr.com.br", false }, { "uniq.site", true }, { "unique-bouncy-castles.co.uk", true }, @@ -35961,6 +36785,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "unit7jazz.com", true }, { "unit7jazz.org", true }, { "unite-ka.de", true }, + { "uniteasia.org", true }, { "united-coders.com", true }, { "united-schools.net", true }, { "united.com", false }, @@ -35972,6 +36797,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "unityconsciousnessbooks.com", true }, { "univercite.ch", true }, { "univeril.com", false }, + { "univerpack.net", true }, { "universal-happiness.com", true }, { "universal.at", true }, { "universalcarremote.com", true }, @@ -35985,7 +36811,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "unixforum.org", true }, { "unixfox.eu", true }, { "unixtime.date", true }, - { "unknownbreakup.com", true }, { "unkrn.com", true }, { "unlax.com", true }, { "unleash.pw", true }, @@ -36002,7 +36827,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "unoccupyabq.org", true }, { "unp.me", true }, { "unpkg.com", true }, - { "unpossible.xyz", true }, { "unpr.dk", true }, { "unquote.li", true }, { "unrealircd.org", true }, @@ -36031,8 +36855,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "unworthy.ml", true }, { "unx.dk", true }, { "unxicdellum.cat", true }, - { "upaknship.com", true }, - { "upandclear.org", true }, { "upay.ru", true }, { "upbad.com", true }, { "upbeatrobot.com", true }, @@ -36051,15 +36873,17 @@ static const nsSTSPreload kSTSPreloadList[] = { { "uploadbeta.com", true }, { "uplr.it", true }, { "upnext.io", true }, + { "upnorthproperty.com", true }, { "upperbeaconsfield.org.au", true }, { "upperroommission.ca", true }, { "upplevelse.com", true }, { "upr-info.org", true }, { "upr.com.ua", true }, + { "uprint.it", true }, { "uprouteyou.com", true }, { "upsettunnel.com", true }, { "upsiteseo.com", true }, - { "uptakedigital.com.au", true }, + { "uptechbrasil.com.br", true }, { "uptimed.com", true }, { "uptimenotguaranteed.com", true }, { "uptodateinteriors.com", true }, @@ -36092,6 +36916,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "urbanietz-immobilien.de", true }, { "urbanmelbourne.info", true }, { "urbannewsservice.com", true }, + { "urbansparrow.in", true }, { "urbansurvival.com", true }, { "urbanwaters.gov", false }, { "urbanwildlifealliance.org", false }, @@ -36105,7 +36930,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "urinedrugtesthq.com", true }, { "uripura.de", true }, { "urist1011.ru", true }, - { "url.cab", true }, { "url.fi", true }, { "url.fm", true }, { "url.rw", true }, @@ -36130,6 +36954,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "usaestaonline.com", true }, { "usage.be", true }, { "usagexchange.com", true }, + { "usagm.gov", true }, { "usairlines.us", true }, { "usajobs.com", true }, { "usajobs.gov", true }, @@ -36143,7 +36968,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "usd.de", true }, { "usds.gov", true }, { "use.be", true }, - { "use.ci", true }, { "usebean.com", true }, { "usedoor.jp", true }, { "usedu.us", true }, @@ -36175,6 +36999,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ut-addicted.com", true }, { "utahfireinfo.gov", true }, { "utahlocal.net", true }, + { "utahtravelcenter.com", true }, { "utazas-nyaralas.info", true }, { "utcast-mate.com", true }, { "utdsgda.com", true }, @@ -36182,6 +37007,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "utepils.de", true }, { "utgifter.no", true }, { "utilia.tools", true }, + { "utilio.nl", true }, { "utilitarian.com", true }, { "utilitarian.net", true }, { "utilitarian.org", true }, @@ -36190,16 +37016,20 @@ static const nsSTSPreload kSTSPreloadList[] = { { "utilitarismo.com", true }, { "utilitronium.com", true }, { "utilityapi.com", true }, + { "utilityreport.eu", true }, { "utitreatment.com", true }, { "utonia.ch", true }, { "utopicestudios.com", true }, { "utox.io", true }, { "utterberry.io", true }, + { "utube.tw", true }, { "utugnn.ru", true }, { "utw.me", true }, { "utwente.io", true }, { "utzon.net", true }, + { "uuid.cf", true }, { "uuit.nl", true }, + { "uv.uy", true }, { "uvenuse.cz", true }, { "uvocorp.com", true }, { "uvolejniku.cz", true }, @@ -36208,7 +37038,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "uwac.co.uk", false }, { "uwekoetter.com", true }, { "uwelilienthal.de", true }, - { "uwimonacs.org.jm", true }, + { "uwsoftware.be", true }, { "uwvloereruit.nl", true }, { "uxp-it.nl", true }, { "uxteam.com", true }, @@ -36222,11 +37052,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "v-spin.cz", true }, { "v-tek.fi", true }, { "v-u-z.ru", true }, - { "v1sit0r.ru", true }, { "v2bv.net", true }, { "v2bv.win", true }, { "v2cn.win", true }, { "v2ex.com", true }, + { "v2ray6.com", true }, + { "v2ray66.com", true }, + { "v2ray666.com", true }, { "va-reitartikel.com", true }, { "va.gov", false }, { "vacationsbyvip.com", true }, @@ -36237,8 +37069,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "vaew.com", true }, { "vagabond.fr", true }, { "vagabondgal.com", true }, - { "vagaerg.com", true }, - { "vagaerg.net", true }, { "vagmour.eu", true }, { "vagpartsdb.com", true }, { "vagrantbits.com", true }, @@ -36298,6 +37128,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "valueseed.net", true }, { "vampyrium.net", false }, { "van11y.net", true }, + { "vanagamsanthai.com", true }, + { "vanagamseeds.com", true }, { "vanbinnenuit.nl", true }, { "vancityconcerts.com", true }, { "vancouvercosmeticsurgery.ca", true }, @@ -36307,6 +37139,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "vandeput.be", true }, { "vanderbiltcisa.org", true }, { "vanderkrieken.org", true }, + { "vanderkroon.nl", true }, { "vandermeer.frl", true }, { "vanderrijt.nl", false }, { "vanderziel.org", true }, @@ -36336,6 +37169,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "vapensiero.co.uk", true }, { "vaperolles.ch", true }, { "vapesense.co.uk", true }, + { "vapesupplies.com.au", true }, { "vaphone.co", true }, { "vapor.cloud", false }, { "vapordepot.jp", true }, @@ -36366,11 +37200,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "vasilikieleftheriou.com", true }, { "vaskulitis-info.de", true }, { "vasports.com.au", true }, - { "vastgoedcultuurfonds.nl", true }, { "vasyharan.com", true }, { "vat-eu.com", true }, { "vat.direct", true }, { "vatelecom.dk", true }, + { "vati.pw", true }, { "vats.im", true }, { "vatsalyagoel.com", true }, { "vatsim-uk.co.uk", true }, @@ -36379,10 +37213,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "vaud-fleurs.ch", true }, { "vaughanrisher.com", true }, { "vault21.net", true }, + { "vault81.de", true }, { "vaultproject.io", true }, { "vaur.fr", true }, { "vavel.com", true }, - { "vavouchers.com", true }, { "vawebsite.co", true }, { "vawlt.io", true }, { "vawltstorage.com", true }, @@ -36394,6 +37228,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "vbcdn.com", true }, { "vbestreviews.com", true }, { "vbh2o.com", true }, + { "vbql.me", true }, { "vbwinery.com", true }, { "vc.gg", true }, { "vcam.org", true }, @@ -36428,13 +37263,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "vectorwish.com", true }, { "vedma-praktik.com", true }, { "veg-leiden.nl", true }, - { "vega-rumia.com.pl", true }, { "vegalitarian.org", true }, { "vegane-proteine.com", true }, { "veganforum.org", true }, - { "vegangaymer.blog", true }, { "veganism.co.uk", true }, { "veganism.com", true }, + { "veganmasterrace.com", true }, { "vegepa.com", true }, { "vegetariantokyo.net", true }, { "veggie-treff.de", true }, @@ -36444,11 +37278,14 @@ static const nsSTSPreload kSTSPreloadList[] = { { "veit.zone", true }, { "veke.fi", true }, { "velen.io", true }, + { "veloroute.hamburg", true }, { "venalytics.com", true }, { "venclave.com", true }, { "vendermicasarapido.com.mx", true }, { "vendigital.com", true }, { "vendorconnect.nyc", true }, + { "vendreacheter.be", true }, + { "vendreacheter.net", true }, { "vendserve.eu", true }, { "venenum.org", true }, { "venev.name", true }, @@ -36479,6 +37316,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "vereinlandwege.de", true }, { "vereinscheck.de", true }, { "verfassungsklage.at", true }, + { "verge.capital", true }, { "vergeaccessories.com", true }, { "vergelijksimonly.nl", true }, { "vergessen.cn", true }, @@ -36488,8 +37326,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "verifiny.com", true }, { "verifyos.com", true }, { "verifyyourip.com", true }, - { "veriny.tf", true }, - { "veriomed.com", true }, { "veritafineviolins.com", true }, { "veritas-data.de", true }, { "verizonconnect.com", false }, @@ -36516,7 +37352,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "vers.one", true }, { "versagercloud.de", true }, { "versbesteld.nl", true }, - { "versbeton.nl", true }, { "versicherungen-werner-hahn.de", true }, { "versicherungskontor.net", true }, { "verspai.de", true }, @@ -36526,9 +37361,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "vertigo.name", false }, { "vertner.net", true }, { "vertrieb-strategie.de", true }, + { "verustracking.com", true }, { "verwayen.com", true }, { "very-kids.fr", true }, { "veryapt.com", true }, + { "veryimportantusers.com", true }, { "verymelon.de", true }, { "verymetal.nl", true }, { "verzekeringsacties.nl", true }, @@ -36537,7 +37374,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "veslosada.com", true }, { "vespacascadia.com", true }, { "vestingbar.nl", true }, + { "vestum.ru", true }, { "vetbits.com", true }, + { "veterinarian-hospital.com", true }, { "veterinario.roma.it", true }, { "veterinarioaltea.com", true }, { "vetforum.co", true }, @@ -36547,14 +37386,14 @@ static const nsSTSPreload kSTSPreloadList[] = { { "veverusak.cz", true }, { "vfdworld.com", true }, { "vfn-nrw.de", true }, - { "vforvendetta.science", true }, { "vgchat.us", true }, { "vgerak.com", true }, { "vgolos.zt.ua", true }, + { "vgorcum.com", true }, { "vgropp.de", true }, { "vh.net", true }, { "vhummel.nl", true }, - { "via-shire-krug.ru", true }, + { "vi.photo", true }, { "viacdn.org", true }, { "viafinance.cz", false }, { "viaggio-in-cina.it", true }, @@ -36590,7 +37429,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "victorhawk.com", true }, { "victoriaartist.ru", true }, { "victoriastudio.ru", true }, - { "victoriaville.ca", true }, { "victorjacobs.com", true }, { "victornet.de", true }, { "victornilsson.pw", true }, @@ -36603,9 +37441,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "vida.es", true }, { "vidadu.com", true }, { "vidbooster.com", true }, + { "vidcloud.xyz", true }, { "vide-greniers.org", false }, { "videogamesartwork.com", true }, { "videokaufmann.at", true }, + { "videoload.co", true }, { "videomail.io", true }, { "videosdiversosdatv.com", true }, { "videoseyredin.net", true }, @@ -36613,7 +37453,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "videosqr.com", true }, { "videov.tk", true }, { "vidister.de", true }, - { "vieaw.com", true }, + { "vidracariaespelhosbh.com.br", true }, { "vieclam24h.vn", false }, { "viekelis.lt", false }, { "viemeister.com", true }, @@ -36630,11 +37470,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "vietnamwomenveterans.org", true }, { "vieux.pro", true }, { "viewbook.com", true }, + { "viewey.com", true }, { "viewmyrecords.com", true }, { "viga.me", true }, { "vigenebio.com", true }, { "vigilantnow.com", true }, { "vigliano.ovh", true }, + { "vignoblesdeletat.ch", true }, { "vigo-krankenversicherung.de", true }, { "vigo-tarife.de", true }, { "vigour.us", true }, @@ -36669,6 +37511,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "villasoasissanur.com", true }, { "villehardouin.fr", true }, { "villek.fi", true }, + { "villekaaria.eu", true }, { "villenavedornon.fr", true }, { "villenvinkit.com", true }, { "villerez.fr", true }, @@ -36680,9 +37523,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "vinarstvimodryhrozen.cz", true }, { "vincentcox.com", false }, { "vincentpancol.com", true }, + { "vincible.space", true }, + { "vinciconps4.it", true }, { "vincitraining.com", true }, { "vineright.com", true }, { "vinetech.co.nz", true }, + { "vinihk.com", true }, { "vinilosdecorativos.net", true }, { "vinner.com.au", true }, { "vinnie.gq", true }, @@ -36693,6 +37539,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "vintagebandfestival.org", true }, { "vintagecaskandbarrel.com", true }, { "vintagejeeps.net", true }, + { "vintagemakeupguide.com", true }, { "vintageportgifts.co.uk", true }, { "vintagesouthernpicks.com", true }, { "vintagetrailerbuyers.com", true }, @@ -36701,7 +37548,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "vintock.com", true }, { "vinyculture.com", true }, { "vinzite.com", true }, - { "violetraven.co.uk", true }, { "violin4fun.nl", true }, { "vionicbeach.com", true }, { "vionicshoes.com", true }, @@ -36724,6 +37570,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "viralsouls.in", true }, { "viralsv.com", true }, { "virgopolymer.com", true }, + { "virial.de", true }, { "viridis-milites.cz", true }, { "virtit.fr", true }, { "virtualcloud.ddns.net", true }, @@ -36734,7 +37581,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "virtualsanity.com", true }, { "virtualvaults.com", true }, { "virtubox.net", true }, - { "virtusaero.com", true }, { "virvum.ch", true }, { "visaexpert.co.za", true }, { "visalist.io", true }, @@ -36757,10 +37603,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "visionexpresscareers.com", true }, { "visionless.me", false }, { "visionnissancanandaiguaparts.com", true }, - { "visistruct.com", true }, { "visit-montenegro.com", true }, { "visitcambridgeshirefens.org", true }, { "visitkangaroovalley.com.au", true }, + { "visitmaine.com", true }, { "visor.ph", true }, { "vistaalmar.es", true }, { "vistacampus.gov", true }, @@ -36812,7 +37658,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "vivoitaliankitchen.com", true }, { "vixrapedia.org", true }, { "viyf.org", true }, - { "viza.io", true }, { "vizards.cc", true }, { "vize.ai", false }, { "vizija-nepremicnine.si", true }, @@ -36850,10 +37695,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "vmc.co.id", true }, { "vmem.jp", false }, { "vmgirls.com", true }, + { "vmhydro.ru", false }, { "vmis.nl", true }, { "vmoagents.com", false }, { "vmoe.info", true }, { "vmug.pl", true }, + { "vmzone.de", true }, { "vn.search.yahoo.com", false }, { "vncg.org", true }, { "vnd.cloud", true }, @@ -36861,6 +37708,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "vnpem.org", true }, { "vnvisa.center", true }, { "vnvisa.ru", true }, + { "vocalik.com", true }, { "vocaloid.my", true }, { "vocalviews.com", true }, { "vocus.aero", true }, @@ -36870,21 +37718,28 @@ static const nsSTSPreload kSTSPreloadList[] = { { "vodpay.com", true }, { "vodpay.net", true }, { "vodpay.org", true }, + { "vogelbus.ch", true }, { "vogler.name", true }, + { "vogue.cz", true }, + { "voice-of-design.com", true }, { "voicu.ch", true }, { "void-zero.com", true }, + { "voidark.com", true }, { "voidcore.org", true }, + { "voidma.in", true }, { "voidpay.com", true }, { "voidpay.net", true }, { "voidpay.org", true }, { "voidptr.eu", true }, { "voids.org", true }, + { "voidx.top", true }, { "voidzehn.com", true }, { "voipsun.com", true }, { "vojtechpavelka.cz", true }, { "vokalsystem.com", true }, { "vokativy.cz", false }, { "vokeapp.com", true }, + { "vokurka.net", true }, { "volcanconcretos.com", true }, { "volcano-kazan.ru", true }, { "volcano-spb.ru", true }, @@ -36922,6 +37777,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "vorlicek.de", true }, { "vorlif.org", true }, { "vorodevops.com", true }, + { "vorte.ga", true }, { "vos-fleurs.ch", true }, { "vos-fleurs.com", true }, { "vosgym.jp", true }, @@ -36950,9 +37806,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "vpc-display.com", true }, { "vpn.black", true }, { "vpn.ht", true }, + { "vpnpro.com", true }, { "vpnservice.nl", true }, { "vpsboard.com", true }, { "vpsdream.dk", true }, + { "vpsou.com", false }, { "vpsport.ch", true }, { "vpsvz.net", true }, { "vrandopulo.ru", true }, @@ -36960,13 +37818,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "vrcholovka.cz", true }, { "vreaulafacultate.ro", true }, { "vreeman.com", true }, + { "vretmaskin.se", true }, { "vriesdonkow.be", true }, { "vrij-links.nl", true }, { "vrijgezellen-feest.com", true }, { "vrijgezellenfeestzwolle.com", true }, { "vrjetpackgame.com", true }, { "vroedvrouwella.be", true }, - { "vrsgames.com.mx", true }, { "vrsystem.com.br", true }, { "vrtouring.org", true }, { "vscale.io", true }, @@ -36987,8 +37845,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "vuilelakens.be", true }, { "vuljespaarpot.nl", true }, { "vullriede-multimedia.de", true }, - { "vulndetect.com", true }, - { "vulndetect.org", true }, + { "vulndetect.org", false }, { "vulnerability.ch", true }, { "vulners.com", true }, { "vulns.sexy", true }, @@ -37006,6 +37863,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "vvdbronckhorst.nl", true }, { "vvoip.org.uk", true }, { "vvw-8522.com", true }, + { "vvzero.com", true }, { "vw-touranclub.cz", true }, { "vwbusje.com", true }, { "vwfsrentacar.co.uk", true }, @@ -37017,10 +37875,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "vx.hn", true }, { "vxst.org", true }, { "vxstream-sandbox.com", true }, + { "vxz.me", true }, { "vybeministry.org", true }, { "vyber-odhadce.cz", true }, { "vyberodhadce.cz", true }, - { "vykup-car.ru", true }, { "vyplnto.cz", true }, { "vysko.cz", true }, { "vyskocil.eu", true }, @@ -37043,7 +37901,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "w5gfe.org", true }, { "w7k.de", true }, { "w84.it", true }, + { "w95.pw", true }, { "wa-stromerzeuger.de", true }, + { "wa.me", true }, { "waaw.tv", true }, { "wabatam.com", true }, { "wachter.biz", true }, @@ -37055,7 +37915,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "waf.ninja", true }, { "waf.sexy", true }, { "wafa4hw.com", true }, - { "wafairhaven.com.au", true }, { "wafelland.be", true }, { "waffle.at", false }, { "wafuton.com", true }, @@ -37077,6 +37936,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "wait.jp", true }, { "waiterwheels.com", true }, { "waits.io", true }, + { "wajtc.com", true }, { "wak.io", true }, { "waka-mono.com", true }, { "waka168.com", true }, @@ -37088,7 +37948,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "wakatime.com", true }, { "wakiminblog.com", true }, { "wala-floor.de", true }, - { "waldkinder-ilmenau.de", true }, { "waldvogel.family", true }, { "walent.in", true }, { "walentin.co", true }, @@ -37109,6 +37968,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "walletnames.com", true }, { "wallinger-online.at", true }, { "wallingford.cc", true }, + { "wallpapers.pub", true }, { "wallpaperup.com", true }, { "walls.de", true }, { "walls.io", true }, @@ -37123,8 +37983,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "walshbanks.com", true }, { "waltellis.com", true }, { "walter.lc", true }, + { "waltervictor.com", true }, { "waltzmanplasticsurgery.com", true }, { "walvi.nl", true }, + { "wan.pp.ua", false }, { "wanda.ch", true }, { "wandelreizen.eu", true }, { "wander.al", true }, @@ -37139,8 +38001,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "wangbangyu.ml", true }, { "wangbangyu.tk", true }, { "wangjun.me", true }, - { "wangqiliang.cn", false }, - { "wangqiliang.com", false }, + { "wangqiliang.cn", true }, + { "wangqiliang.com", true }, { "wangqiliang.org", true }, { "wangql.net", true }, { "wangqr.tk", true }, @@ -37151,11 +38013,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "wanlieyan.com", true }, { "wannaridecostarica.com", true }, { "wanybug.cf", true }, + { "wanybug.com", true }, { "wanybug.ga", true }, { "wanybug.gq", true }, { "wanybug.tk", true }, + { "wanzenbug.xyz", true }, { "waonui.io", true }, - { "wapgu.cc", true }, { "wardow.com", true }, { "warebouncycastles.co.uk", true }, { "warekit.io", true }, @@ -37165,7 +38028,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "warhaggis.com", true }, { "warmestwishes.ca", true }, { "warmservers.com", true }, - { "warnings.xyz", true }, { "warofelements.de", true }, { "warp-radio.com", true }, { "warp-radio.net", true }, @@ -37185,7 +38047,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "wasielewski.com.de", true }, { "wasil.org", true }, { "waslh.com", true }, - { "wasserburg.dk", true }, { "wasserspucker.de", true }, { "wassibauer.com", true }, { "wastrel.ch", true }, @@ -37230,6 +38091,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "wayohoo.net", true }, { "waytt.cf", true }, { "waze.com", true }, + { "wb256.com", true }, { "wbci.us", false }, { "wbg-vs.de", true }, { "wblinks.com", true }, @@ -37264,6 +38126,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "wearandcare.net", true }, { "weare1inspirit.com", true }, { "wearebfi.co.uk", true }, + { "wearedisneyland.com", true }, { "wearegenki.com", true }, { "wearehackerone.com", true }, { "wearepapermill.co", true }, @@ -37272,11 +38135,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "weaspireusa.com", true }, { "weather-and-climate.com", false }, { "weathermyway.rocks", true }, - { "web-advisor.co.uk", true }, + { "web-adminy.co.uk", true }, { "web-art.cz", true }, { "web-design.co.il", true }, { "web-dl.cc", true }, { "web-hotel.gr", true }, + { "web-jive.com", true }, { "web-kouza.com", true }, { "web-mail.info", true }, { "web-odyssey.com", true }, @@ -37287,6 +38151,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "web.bzh", true }, { "web.cc", false }, { "web.de", true }, + { "web1n.com", true }, { "web2033.com", true }, { "web2ldap.de", true }, { "web2screen.tv", true }, @@ -37305,7 +38170,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "webauthority.co.uk", true }, { "webbiz.co.uk", true }, { "webbson.net", false }, - { "webbx.se", true }, { "webcamtoy.com", true }, { "webcatchers.nl", true }, { "webcatechism.com", false }, @@ -37325,7 +38189,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "webdesignplayground.io", true }, { "webdesignsandiego.com", true }, { "webdevops.io", true }, - { "webdevxp.com", true }, { "webdl.org", true }, { "webdollarvpn.io", true }, { "webduck.nl", false }, @@ -37343,6 +38206,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "webfilings.appspot.com", true }, { "webfixers.nl", true }, { "webfox.com.br", true }, + { "webgap.io", true }, { "webgarten.ch", true }, { "webgears.com", true }, { "webharvest.gov", true }, @@ -37368,13 +38232,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "webmandesign.eu", true }, { "webmax.com.tr", true }, { "webmedpharmacy.co.uk", true }, - { "webmel.com", true }, { "webmetering.at", true }, { "webministeriet.net", true }, { "webmotelli.fi", true }, { "webnames.ca", true }, { "webnexty.com", true }, - { "webnoob.net", true }, { "webogram.org", false }, { "webpinoytambayan.net", true }, { "webpinoytv.info", true }, @@ -37396,7 +38258,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "websenat.de", true }, { "websharks.org", true }, { "website-engineering.co.za", true }, - { "websiteadvice.com.au", true }, { "websiteboost.nl", true }, { "websiteforlease.ca", true }, { "websiteout.ca", true }, @@ -37418,7 +38279,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "webtalis.nl", true }, { "webtasarim.pw", true }, { "webtheapp.com", true }, - { "webtobesocial.de", true }, { "webtorrent.io", true }, { "webtrh.cz", true }, { "webtropia.com", false }, @@ -37430,20 +38290,18 @@ static const nsSTSPreload kSTSPreloadList[] = { { "webwolf.co.za", true }, { "webworkshop.ltd", true }, { "webyazilimankara.com", true }, - { "webz.one", true }, - { "wecanvisit.com", true }, { "wechatify.com", true }, { "wecleanbins.com", true }, { "wecobble.com", true }, { "weddingalbumsdesign.com", true }, { "weddingfantasy.ru", true }, + { "weddingofficiantwilmington.com", true }, { "weddingsbynoon.co.uk", true }, { "weddywood.ru", false }, { "wedos.com", true }, { "weeblr.com", true }, { "weeblrpress.com", true }, { "weedcircles.com", true }, - { "weedlandia.org", true }, { "weedlife.com", true }, { "weednews.co", true }, { "weedupdate.com", true }, @@ -37456,6 +38314,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "weeklycenter.co.jp", true }, { "weeknummers.be", true }, { "weeknummers.nl", true }, + { "weekvandemediawijsheid.nl", true }, { "weemake.fr", true }, { "weemakers.fr", true }, { "weepycat.com", true }, @@ -37492,6 +38351,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "weissman.agency", true }, { "weiterbildung-vdz.de", true }, { "weitergedacht.eu", true }, + { "weixiaojun.org", true }, { "weizenspr.eu", true }, { "welcome-tahiti.com", true }, { "welcome-werkstatt.com", true }, @@ -37505,7 +38365,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "wellacapability.com", true }, { "wellbeing360.com.au", true }, { "wellcom.co.il", true }, - { "welldrake.com", true }, { "wellensteyn.ru", true }, { "weller.pm", true }, { "wellist.com", true }, @@ -37513,7 +38372,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "wellnesscheck.net", true }, { "wellsolveit.com", false }, { "welovecatsandkittens.com", true }, - { "welpo.me", true }, { "welsh.com.br", true }, { "welshccf.org.uk", true }, { "welteneroberer.de", true }, @@ -37533,6 +38391,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "wener.me", false }, { "wenger-shop.ch", true }, { "wenjs.me", true }, + { "wensing-und-koenig.de", true }, { "wepay.com", false }, { "wepay.in.th", true }, { "wepay.vn", true }, @@ -37549,6 +38408,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "werbik.at", true }, { "werehub.org", true }, { "wereldkoffie.eu", true }, + { "wereoutthere.nl", true }, { "werepairit.com.au", true }, { "werk-34.de", true }, { "werk32.net", false }, @@ -37571,7 +38431,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "wertheimer-burgrock.de", true }, { "wertpapiertreuhand.de", true }, { "werwolf-live.de", true }, - { "wes-dev.com", true }, { "wesecom.com", true }, { "wesell.asia", true }, { "weserv.nl", true }, @@ -37618,8 +38477,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "wexfordbouncycastles.ie", true }, { "wexilapp.com", true }, { "weyland-yutani.org", true }, - { "weyland.tech", true }, { "weynaphotography.com", true }, + { "wezartt.com", true }, { "wf-bigsky-master.appspot.com", true }, { "wf-demo-eu.appspot.com", true }, { "wf-demo-hrd.appspot.com", true }, @@ -37637,9 +38496,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "wg3k.us", false }, { "wgom.org", true }, { "wgplatform.co.uk", true }, + { "wgraphics.ru", true }, { "wgsi-friesland.nl", true }, { "wh-guide.de", true }, - { "whanau.org", true }, { "what-wood.servehttp.com", true }, { "whatagreatwebsite.net", true }, { "whatanime.ga", true }, @@ -37652,7 +38511,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "whatclinic.ru", true }, { "whateveraspidercan.com", true }, { "whatismycountry.com", true }, - { "whatismyip.net", true }, + { "whatismyip.net", false }, { "whatismyipaddress.ca", true }, { "whatisthe.cloud", true }, { "whatnext.limited", true }, @@ -37672,11 +38531,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "wheeler.kiwi.nz", true }, { "wheelwide.co.uk", true }, { "wheelwork.org", true }, - { "wheelwright.org", true }, { "wheezie.be", true }, { "when.fm", false }, { "where2trip.com", true }, { "whereiszakir.com", true }, + { "whexit.nl", true }, { "whey-protein.ch", true }, { "whiletrue.run", true }, { "whimtrip.fr", false }, @@ -37692,6 +38551,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "whistleb.com", true }, { "whistleblower.gov", true }, { "whitby-brewery.com", true }, + { "white-ibiza.com", true }, { "whitealps.at", true }, { "whitealps.be", true }, { "whitealps.ch", true }, @@ -37703,13 +38563,14 @@ static const nsSTSPreload kSTSPreloadList[] = { { "whitehathackers.com.br", true }, { "whitehouse.gov", true }, { "whitehousedrugpolicy.gov", true }, - { "whiteink.com", true }, + { "whiteink.com", false }, { "whitejaguars.com", true }, { "whitelabelcashback.nl", true }, { "whitelabeltickets.com", false }, { "whitepharmacy.co.uk", true }, { "whiteready.it", true }, { "whiterose.goip.de", true }, + { "whiteshadowimperium.com", true }, { "whitewebhosting.co.za", true }, { "whitewebhosting.com", true }, { "whitewinterwolf.com", true }, @@ -37735,6 +38596,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "wholelotofbounce.co.uk", false }, { "wholesalecbd.com", true }, { "wholesomeharvestbread.com", false }, + { "whonix.org", true }, { "whosyourdaddy.ml", true }, { "whoturgled.com", true }, { "whqtravel.org", false }, @@ -37784,6 +38646,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "wijnbesteld.nl", true }, { "wijnservices.nl", false }, { "wijzijnwolf.nl", true }, + { "wiki-play.ru", true }, { "wiki.python.org", true }, { "wikibooks.org", true }, { "wikibulz.com", true }, @@ -37827,15 +38690,18 @@ static const nsSTSPreload kSTSPreloadList[] = { { "willfarrell.ca", true }, { "willi-graf-gymnasium.de", true }, { "willi-graf-os.de", true }, + { "william.gg", true }, { "williamboulton.co.uk", true }, { "williamfeely.info", true }, { "williamjohngauthier.net", true }, - { "williamsonshore.com", true }, + { "williamscomposer.com", true }, + { "williamsflintlocks.com", true }, { "williamsportmortgages.com", true }, { "williamsroom.com", true }, { "williamtm.com", true }, { "willnorris.com", true }, { "willow.technology", true }, + { "willowbrook.co.uk", true }, { "willowdalechurch.ca", true }, { "willowtree.school", true }, { "wills.co.tt", true }, @@ -37900,7 +38766,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "wire.com", true }, { "wireframesoftware.com", true }, { "wireheading.com", true }, - { "wirelesswatch.com.au", true }, { "wireshark.org", true }, { "wiretime.de", true }, { "wirhabenspass.de", true }, @@ -37961,6 +38826,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "wlwlwx.com", true }, { "wm-access.com", true }, { "wm-access.de", true }, + { "wm-talk.net", true }, { "wmaccess.com", true }, { "wmaccess.de", true }, { "wmfusercontent.org", true }, @@ -37970,6 +38836,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "wo-ist-elvira.net", true }, { "wo2forum.nl", true }, { "woah.how", true }, + { "woaiuhd.com", true }, { "wobble.ninja", true }, { "wobblywotnotz.co.uk", true }, { "wochennummern.de", true }, @@ -38050,8 +38917,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "word-grabber.com", true }, { "wordcounter.net", true }, { "wordher.com", true }, - { "wordlessecho.com", true }, - { "wordpress-test.site", true }, { "wordpress.com", false }, { "wordsmart.it", true }, { "wordspy.com", true }, @@ -38066,7 +38931,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "workingclassmedia.com", true }, { "workinginsync.co.uk", true }, { "workingmachine.info", true }, - { "workissime.com", true }, { "workmart.mx", true }, { "workoptions.com", true }, { "workplaces.online", true }, @@ -38093,6 +38957,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "worldofvnc.net", true }, { "worldofwobble.co.uk", true }, { "worldpeacetechnology.com", true }, + { "worldrecipes.eu", true }, { "worldsgreatestazuredemo.com", true }, { "worldsoccerclips.com", true }, { "worldstone777.com", true }, @@ -38111,8 +38976,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "wouterslop.com", true }, { "wouterslop.eu", true }, { "wouterslop.nl", true }, + { "wow-foederation.de", true }, { "wow-screenshots.net", true }, - { "wow202y5.com", true }, { "wowaffixes.info", true }, { "wowbouncycastles.co.uk", true }, { "wowhelp.it", true }, @@ -38132,14 +38997,16 @@ static const nsSTSPreload kSTSPreloadList[] = { { "wpac.de", true }, { "wpandup.org", true }, { "wpcanban.com", true }, + { "wpccu.org", true }, { "wpcdn.bid", true }, { "wpcharged.nz", true }, + { "wpdesigner.ir", true }, { "wpdirecto.com", true }, { "wpdublin.com", true }, { "wpenhance.com", true }, { "wpexplorer.com", true }, - { "wpfast.net", true }, { "wpformation.com", true }, + { "wpgoblin.com", true }, { "wphostingblog.nl", true }, { "wpinter.com", true }, { "wpldn.uk", true }, @@ -38179,7 +39046,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "writemyessay.today", true }, { "writemyessays.com", true }, { "writemypaperhub.com", true }, - { "writemytermpapers.com", true }, { "writeoff.me", true }, { "writepride.com", true }, { "writepro.net", true }, @@ -38216,6 +39082,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "wtfismyip.com", true }, { "wtfnope.org", true }, { "wth.in", true }, + { "wtp.co.jp", true }, { "wtpdive.jp", true }, { "wtpmj.com", true }, { "wtw.io", true }, @@ -38259,7 +39126,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "wwv-8722.com", true }, { "www-33445.com", true }, { "www-49889.com", true }, - { "www-66136.com", true }, { "www-7570.com", true }, { "www-80036.com", true }, { "www-8522.am", true }, @@ -38331,18 +39197,20 @@ static const nsSTSPreload kSTSPreloadList[] = { { "www.wordpress.com", false }, { "www.zdnet.com", true }, { "www68277.com", true }, + { "wwww.is", true }, + { "wwww.me.uk", true }, { "wxcafe.net", true }, { "wxdisco.com", true }, { "wxforums.com", true }, { "wxh.jp", true }, { "wxster.com", true }, + { "wxzm.sx", true }, { "wyam.io", true }, { "wybar.uk", true }, { "wycrow.com", true }, { "wyday.com", true }, { "wygibanki.pl", true }, { "wygodnie.pl", true }, - { "wylog.ph", true }, { "wynterhill.co.uk", true }, { "wyo.cam", true }, { "wypemagazine.se", true }, @@ -38352,7 +39220,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "wyssmuller.ch", true }, { "wzfetish.com.br", true }, { "wzfou.com", true }, - { "wzrd.in", true }, { "wzyboy.org", true }, { "x-lan.be", true }, { "x-one.co.jp", true }, @@ -38364,7 +39231,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "x2d2.de", true }, { "x378.ch", true }, { "x509.io", true }, - { "x64architecture.com", true }, { "x7plus.com", true }, { "xa.search.yahoo.com", false }, { "xa1.uk", true }, @@ -38373,7 +39239,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "xants.de", true }, { "xatr0z.org", false }, { "xavier.is", true }, - { "xawen.net", true }, { "xbb.hk", true }, { "xbb.li", true }, { "xbertschy.com", true }, @@ -38411,6 +39276,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "xentox.com", true }, { "xerblade.com", true }, { "xerhost.de", true }, + { "xerkus.pro", true }, { "xerownia.eu", true }, { "xetown.com", true }, { "xf-liam.com", true }, @@ -38423,6 +39289,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "xgclan.com", true }, { "xgn.es", true }, { "xhadius.de", true }, + { "xhily.com", true }, { "xhmikosr.io", true }, { "xho.me", true }, { "xia.de", true }, @@ -38467,6 +39334,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "xjd.vision", true }, { "xjf6.com", true }, { "xjjeeps.com", true }, + { "xjoin.de", true }, { "xjpvictor.info", true }, { "xkblog.xyz", true }, { "xkcd.pw", true }, @@ -38479,15 +39347,14 @@ static const nsSTSPreload kSTSPreloadList[] = { { "xmedius.com", false }, { "xmedius.eu", true }, { "xmenrevolution.com", true }, - { "xmerak.com", true }, { "xmlbeam.org", true }, + { "xmlogin288.com", true }, { "xmpp.dk", true }, { "xmppwocky.net", true }, { "xmr.to", true }, { "xmtpro.com", true }, { "xmusic.live", true }, { "xmv.cz", false }, - { "xn-----8kcgbo2bmdgkdacthvjf.xn--p1ai", true }, { "xn----7sbfl2alf8a.xn--p1ai", true }, { "xn----8hcdn2ankm1bfq.com", true }, { "xn----zmcaltpp1mdh16i.com", true }, @@ -38508,6 +39375,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "xn--80adb4aeode.xn--p1ai", true }, { "xn--80adbevek3air0ee9b8d.com", true }, { "xn--80aejljbfwxn.xn--p1ai", true }, + { "xn--80anogxed.xn--p1ai", true }, { "xn--80azelb.xn--p1ai", true }, { "xn--8dry00a7se89ay98epsgxxq.com", true }, { "xn--90accgba6bldkcbb7a.xn--p1acf", true }, @@ -38547,9 +39415,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "xn--fp8h58f.ws", true }, { "xn--frankierknig-djb.de", true }, { "xn--fs5ak3f.com", true }, - { "xn--gfrr-7qa.li", true }, { "xn--gfrrli-yxa.ch", true }, - { "xn--hfk-allgu-schwaben-stb.de", true }, { "xn--hgbk4a00a.com", true }, { "xn--hllrigl-90a.at", true }, { "xn--i2ru8q2qg.com", true }, @@ -38578,7 +39444,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "xn--mgbbh2a9fub.xn--ngbc5azd", false }, { "xn--mgbmmp7eub.com", true }, { "xn--mgbpkc7fz3awhe.com", true }, - { "xn--mhsv04avtt1xi.com", false }, { "xn--mllers-wxa.info", true }, { "xn--myrepubic-wub.net", true }, { "xn--myrepublc-x5a.net", true }, @@ -38588,6 +39453,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "xn--nf1a578axkh.xn--fiqs8s", true }, { "xn--nrrdetval-v2ab.se", true }, { "xn--o38h.tk", true }, + { "xn--obt757c.com", true }, { "xn--p8j9a0d9c9a.xn--q9jyb4c", true }, { "xn--pbt947am3ab71g.com", true }, { "xn--pe-bka.ee", true }, @@ -38599,6 +39465,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "xn--r8jzaf7977b09e.com", true }, { "xn--rdiger-kuhlmann-zvb.de", true }, { "xn--reisebro-herrsching-bbc.de", true }, + { "xn--rlcus7b3d.xn--xkc2dl3a5ee0h", true }, { "xn--roselire-60a.ch", true }, { "xn--roselire-60a.com", true }, { "xn--rt-cja.ie", true }, @@ -38607,19 +39474,17 @@ static const nsSTSPreload kSTSPreloadList[] = { { "xn--s-1gaa.fi", true }, { "xn--seelenwchter-mcb.eu", true }, { "xn--spenijmazania-yhc.pl", true }, - { "xn--sz8h.ml", true }, { "xn--t-oha.lv", true }, { "xn--t8j4aa4nkg1h9bwcvud.com", true }, - { "xn--t8j4aa4nyhxa7duezbl49aqg5546e264d.net", true }, { "xn--t8j4aa4nzg3a5euoxcwee.xyz", true }, { "xn--tigreray-i1a.org", true }, + { "xn--trdler-xxa.xyz", true }, { "xn--u8jwd.ga", true }, { "xn--u9j0ia6hb7347cg8wavz0avb0e.com", true }, { "xn--u9jv84l7ea468b.com", true }, { "xn--v-wfa35g.ro", true }, { "xn--v6q426ishax2a.xyz", true }, { "xn--woistdermlleimer-rzb.de", true }, - { "xn--wq9h.ml", true }, { "xn--y-5ga.com", true }, { "xn--y8j148r.xn--q9jyb4c", true }, { "xn--y8ja6lb.xn--q9jyb4c", true }, @@ -38648,7 +39513,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "xpbytes.com", true }, { "xpd.se", true }, { "xperidia.com", true }, - { "xpjcunkuan.com", true }, { "xpletus.nl", true }, { "xplore-dna.net", true }, { "xpoc.pro", true }, @@ -38663,6 +39527,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "xroot.org", false }, { "xrwracing-france.com", true }, { "xs2a.no", true }, + { "xs74.com", true }, { "xsec.me", true }, { "xserownia.com.pl", true }, { "xserownia.eu", true }, @@ -38691,7 +39556,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "xuan-li88.com", true }, { "xuan-li88.net", true }, { "xuanmeishe.net", true }, - { "xuanmeishe.top", true }, { "xubo666.com", true }, { "xuc.me", true }, { "xuedianshang.com", true }, @@ -38700,6 +39564,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "xuntier.ch", true }, { "xviimusic.com", true }, { "xvt-blog.tk", true }, + { "xwalck.se", true }, { "xwaretech.info", true }, { "xx0r.eu", true }, { "xxffo.com", true }, @@ -38744,9 +39609,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "yanbao.xyz", true }, { "yandere.moe", true }, { "yangjingwen.cn", true }, - { "yangmaodang.org", true }, { "yanngraf.ch", true }, { "yanngraf.com", true }, + { "yannic.world", true }, { "yannick.cloud", true }, { "yannik-buerkle.de", true }, { "yannikbloscheck.com", true }, @@ -38773,6 +39638,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ybin.me", true }, { "ybresson.com", true }, { "ybsul.com", true }, + { "ybt520.com", true }, { "ybti.net", true }, { "ybzhao.com", true }, { "ych.art", true }, @@ -38823,9 +39689,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "yelp.se", true }, { "yemektarifleri.com", true }, { "yenibilgi.net", true }, - { "yenpape.com", true }, { "yep-pro.ch", true }, { "yephy.com", true }, + { "yeshu.org", true }, { "yesiammaisey.me", true }, { "yeswecan.co.bw", true }, { "yeswehack.com", true }, @@ -38845,7 +39711,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "yhfou.com", true }, { "yhndnzj.com", true }, { "yhong.me", true }, - { "yhrd.org", true }, { "yhwj.top", false }, { "yicknam.my", true }, { "yiffy.tips", false }, @@ -38855,12 +39720,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "yii2.cc", true }, { "yikeyong.com", true }, { "yimgo.fr", true }, - { "yin8888.tv", true }, { "yinfor.com", true }, { "yingatech.com", true }, { "yinglinda.love", true }, { "yinlei.org", true }, - { "yipingguo.com", true }, { "yiyuanzhong.com", true }, { "yiyueread.com", true }, { "yiz96.com", true }, @@ -38870,8 +39733,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ylinternal.com", true }, { "ymarion.de", true }, { "ymblaw.com", true }, + { "ymoah.nl", true }, { "ymtsonline.org", true }, { "ynnovasport.be", true }, + { "ynxfh.cn", true }, + { "yoast.com", true }, { "yobai-grouprec.jp", true }, { "yobai28.com", true }, { "yobbelwobbel.de", false }, @@ -38897,9 +39763,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "yoloboatrentals.com", true }, { "yolops.net", true }, { "yombo.net", true }, + { "yon.co.il", true }, { "yongbin.org", true }, { "yoonas.com", true }, { "yooooex.com", true }, + { "yoppoy.com", true }, { "yopuedo.co", true }, { "yoramvandevelde.net", true }, { "yorcom.nl", false }, @@ -38917,8 +39785,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "yotta-zetta.com", true }, { "yotubaiotona.net", true }, { "you.com.br", true }, + { "you2you.fr", true }, { "youareme.ca", true }, { "youc.ir", true }, + { "youcanmakeit.at", true }, { "youcruit.com", true }, { "youdungoofd.com", true }, { "youftp.tk", true }, @@ -38932,9 +39802,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "youked.com", true }, { "youkok2.com", true }, { "youlovehers.com", true }, - { "youmonit.me", true }, { "youms.de", true }, { "young-sheldon.com", true }, + { "youngdogs.org", true }, { "youngfree.cn", true }, { "youngpeopleunited.co.uk", true }, { "youngsook.com", true }, @@ -38943,7 +39813,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "your-erotic-stories.com", true }, { "your-out.com", true }, { "youracnepro.com", true }, - { "youran.me", true }, { "yourbonus.click", true }, { "yourciso.com", true }, { "yourcomputer.expert", true }, @@ -38956,6 +39825,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "yourmemorykeeper.co.uk", true }, { "yourneighborhub.com", true }, { "yourskin.nl", true }, + { "yourstake.org", true }, { "yourticketbooking.com", true }, { "yousei.ne.jp", true }, { "yout.com", true }, @@ -38966,13 +39836,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "youtube.com", true }, { "youtubedownloader.com", true }, { "youtuberis.lt", true }, - { "youyoulemon.com", true }, { "yoxall.me.uk", true }, { "yoyoost.duckdns.org", true }, { "ypart.eu", true }, { "ypid.de", true }, { "ypiresia.fr", false }, { "yplanapp.com", true }, + { "yqjf68.com", true }, { "yr166166.com", true }, { "yrjanheikki.com", true }, { "ys-shop.biz", true }, @@ -39050,24 +39920,21 @@ static const nsSTSPreload kSTSPreloadList[] = { { "yubikeyservices.eu", true }, { "yubiking.com", true }, { "yue.la", true }, + { "yue2.net", true }, { "yugasun.com", true }, - { "yuka.one", true }, { "yukari.cafe", true }, { "yukari.cloud", true }, { "yuki-nagato.com", true }, { "yuki-portfolio.com", true }, { "yuki.xyz", true }, - { "yukimochi.com", true }, - { "yukimochi.io", true }, - { "yukimochi.jp", true }, { "yukonconnector.com", true }, { "yukonlip.com", true }, { "yukontec.com", true }, { "yumeconcert.com", true }, { "yunity.org", true }, { "yunjishou.pro", true }, + { "yuntong.tw", true }, { "yunzhu.li", true }, - { "yuqi.me", true }, { "yuricarlenzoli.it", true }, { "yurikirin.me", true }, { "yurimoens.be", true }, @@ -39082,7 +39949,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "yutuo.net", true }, { "yuwei.org", true }, { "yuweiyang.xyz", true }, - { "yuxingxin.com", true }, { "yuxuan.org", true }, { "yuyo.com", true }, { "yuyu.io", true }, @@ -39123,6 +39989,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "zacarias.com.ar", true }, { "zacavi.com.br", true }, { "zacchaeus.co.uk", true }, + { "zacco.site", true }, { "zach.codes", true }, { "zacharopoulos.eu", true }, { "zacharopoulos.org", false }, @@ -39131,6 +39998,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "zacharyseguin.ca", true }, { "zachaysan.com", true }, { "zachborboa.com", true }, + { "zachgibbens.org", true }, + { "zachpeters.org", true }, { "zachschneider.ca", true }, { "zaclys.com", false }, { "zadroweb.com", true }, @@ -39139,7 +40008,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "zahe.me", true }, { "zahnaerzte-bohne.de", true }, { "zahnarzt-duempten.de", true }, + { "zahnarzt-hofer.de", true }, { "zahnarzt-kramer.ch", true }, + { "zahnarzt-muenich.de", true }, { "zajazd.biz", true }, { "zakariya.blog", true }, { "zakcutner.uk", true }, @@ -39226,6 +40097,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "zenchain.com", true }, { "zenevents.ro", true }, { "zenfusion.fr", true }, + { "zengdong.ren", true }, { "zenics.co.uk", true }, { "zenithmedia.ca", true }, { "zenk-security.com", true }, @@ -39237,7 +40109,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "zentask.io", true }, { "zenti.cloud", true }, { "zenvideocloud.com", true }, - { "zeparadox.com", true }, { "zephyrbk.com", true }, { "zephyrbookkeeping.com", true }, { "zephyretcoraline.com", true }, @@ -39252,7 +40123,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "zeropush.com", true }, { "zeroseteatacado.com.br", true }, { "zerossl.com", true }, + { "zerosync.com", true }, { "zerotoone.de", true }, + { "zerowastesavvy.com", true }, { "zertif.info", true }, { "zertitude.com", true }, { "zeryn.net", true }, @@ -39297,7 +40170,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "zhovner.com", true }, { "zhthings.com", true }, { "zhuihoude.com", true }, - { "zi.is", true }, { "ziegler-family.com", true }, { "ziegler-heizung-frankfurt.de", true }, { "zielonakarta.com", true }, @@ -39324,6 +40196,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "zinniamay.com", true }, { "zinoui.com", true }, { "ziondrive.com.br", true }, + { "zionnationalpark.net", true }, { "zionsvillelocksmiths.com", true }, { "zip.ch", true }, { "zipkey.de", true }, @@ -39398,6 +40271,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "zoola.io", true }, { "zoolaboo.de", true }, { "zoom.earth", true }, + { "zoomcar.pro", true }, { "zoomek.com", true }, { "zoomseoservices.com", false }, { "zooom.azurewebsites.net", true }, @@ -39414,16 +40288,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "zorgclustertool.nl", true }, { "zorig.ch", true }, { "zorium.org", true }, - { "zorki.nl", true }, { "zorntt.fr", true }, { "zotero.org", true }, { "zouk.info", true }, - { "zouyaoji.top", true }, { "zozo.com", true }, { "zozzle.co.uk", true }, { "zravypapir.cz", true }, { "zrhdwz.cn", true }, - { "zrkr.de", true }, { "zrniecka-pre-sny.sk", true }, { "zrnieckapresny.sk", true }, { "zrt.io", true }, @@ -39440,7 +40311,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "zuan-in.net", true }, { "zubel.it", false }, { "zubora.co", true }, - { "zubro.net", true }, { "zuefle.net", true }, { "zug-anwalt.de", true }, { "zug.fr", true }, diff --git a/toolkit/components/prompts/content/commonDialog.js b/toolkit/components/prompts/content/commonDialog.js index ef4686654..70b373d1f 100644 --- a/toolkit/components/prompts/content/commonDialog.js +++ b/toolkit/components/prompts/content/commonDialog.js @@ -50,8 +50,6 @@ function commonDialogOnLoad() { Dialog = new CommonDialog(args, ui); Dialog.onLoad(dialog); - // resize the window to the content - window.sizeToContent(); window.getAttention(); } diff --git a/toolkit/components/search/orginal/nsSearchService.js b/toolkit/components/search/orginal/nsSearchService.js index 56d378b39..8d81e1a27 100644 --- a/toolkit/components/search/orginal/nsSearchService.js +++ b/toolkit/components/search/orginal/nsSearchService.js @@ -2237,7 +2237,10 @@ Engine.prototype = { get lazySerializeTask() { if (!this._lazySerializeTask) { let task = function taskCallback() { - this._serializeToFile(); + // This check should be done by caller, but it is better to be safe than sorry. + if (!this._readOnly && this._file) { + this._serializeToFile(); + } }.bind(this); this._lazySerializeTask = new DeferredTask(task, LAZY_SERIALIZE_DELAY); } @@ -2245,6 +2248,17 @@ Engine.prototype = { return this._lazySerializeTask; }, + // This API is required by some search engine management extensions, so let's restore it. + // Old API was using a timer to do its work, but this can lead us too far. If extension is + // rely on such subtle internal details, that extension should be fixed, not browser. + _lazySerializeToFile: function SRCH_ENG_lazySerializeToFile() { + // This check should be done by caller, but it is better to be safe than sorry. + // Besides, we don't have to create a task for r/o or non-file engines. + if (!this._readOnly && this._file) { + this.lazySerializeTask.arm(); + } + }, + /** * Serializes the engine object to file. */ @@ -3058,6 +3072,10 @@ SearchService.prototype = { continue; } + // Write out serialized search engine files when rebuilding cache. + // Do it lazily, to: 1) reuse existing API; 2) make browser interface more responsive + engine._lazySerializeToFile(); + let cacheKey = parent.path; if (!cache.directories[cacheKey]) { let cacheEntry = {}; diff --git a/toolkit/content/browser-content.js b/toolkit/content/browser-content.js index 2276f8a0d..e1114672c 100644 --- a/toolkit/content/browser-content.js +++ b/toolkit/content/browser-content.js @@ -841,6 +841,35 @@ var FindBar = { fakeEvent[k] = event[k]; } } +#ifdef MC_PALEMOON + let findBarId = "FindToolbar"; + // The FindBar is in the chrome window's context, not in tabbrowser + // - see also bug 537013 + let chromeWin = null; + try { + chromeWin = content + .QueryInterface(Ci.nsIInterfaceRequestor) + .getInterface(Ci.nsIWebNavigation) + .QueryInterface(Ci.nsIDocShellTreeItem) + .rootTreeItem + .QueryInterface(Ci.nsIInterfaceRequestor) + .getInterface(Ci.nsIDOMWindow) + .QueryInterface(Ci.nsIDOMChromeWindow); + } catch (e) { + Cu.reportError( + "The FindBar - the chrome window's context was not detected:\n" + e); + } + if (chromeWin && chromeWin.document.getElementById(findBarId)) { + try { + chromeWin.document.getElementById(findBarId) + .browser = Services.wm.getMostRecentWindow("navigator:browser") + .gBrowser.mCurrentBrowser; + } catch (e) { + Cu.reportError( + "The FindBar - cannot set the property 'browser':\n" + e); + } + } +#endif // sendSyncMessage returns an array of the responses from all listeners let rv = sendSyncMessage("Findbar:Keypress", { diff --git a/toolkit/content/jar.mn b/toolkit/content/jar.mn index e1d432cb3..c11d3abed 100644 --- a/toolkit/content/jar.mn +++ b/toolkit/content/jar.mn @@ -39,7 +39,7 @@ toolkit.jar: content/global/plugins.html content/global/plugins.css content/global/browser-child.js - content/global/browser-content.js +* content/global/browser-content.js * content/global/buildconfig.html content/global/contentAreaUtils.js #ifndef MOZ_FENNEC diff --git a/toolkit/content/widgets/findbar.xml b/toolkit/content/widgets/findbar.xml index b92fb1d05..c312a6a25 100644 --- a/toolkit/content/widgets/findbar.xml +++ b/toolkit/content/widgets/findbar.xml @@ -282,6 +282,7 @@ return this._browser; ]]></getter> <setter><![CDATA[ + let prefsvc = this._prefsvc; if (this._browser) { if (this._browser.messageManager) { this._browser.messageManager.removeMessageListener("Findbar:Keypress", this); @@ -300,7 +301,9 @@ this._browser.messageManager.addMessageListener("Findbar:Mouseup", this); this._browser.finder.addResultListener(this); - this._findField.value = this._browser._lastSearchString; + if (prefsvc.getBoolPref("findbar.termPerTab") == true) { + this._findField.value = this._browser._lastSearchString; + } } return val; ]]></setter> diff --git a/toolkit/mozapps/extensions/internal/AddonUpdateChecker.jsm b/toolkit/mozapps/extensions/internal/AddonUpdateChecker.jsm index f927bc745..c06dca1d5 100644 --- a/toolkit/mozapps/extensions/internal/AddonUpdateChecker.jsm +++ b/toolkit/mozapps/extensions/internal/AddonUpdateChecker.jsm @@ -976,12 +976,13 @@ this.AddonUpdateChecker = { * down in-progress update requests */ checkForUpdates: function(aId, aUpdateKey, aUrl, aObserver) { - // Define an array of internally used IDs to NOT send to AUS such as the - // Default Theme. Please keep this list in sync with: - // toolkit/mozapps/extensions/AddonUpdateChecker.jsm + // Define an array of internally used IDs to NOT send to AUS. let internalIDS = [ - '{972ce4c6-7e08-4474-a285-3208198ce6fd}', - 'modern@themes.mozilla.org' + '{972ce4c6-7e08-4474-a285-3208198ce6fd}', // Global Default Theme + 'modern@themes.mozilla.org', // Modern Theme for Borealis/Suite-based Applications + 'xplatform@interlink.projects.binaryoutcast.com', // Pref-set default theme for Interlink + '{e2fda1a4-762b-4020-b5ad-a41df1933103}', // Lightning/Calendar Extension + '{a62ef8ec-5fdc-40c2-873c-223b8a6925cc}' // Provider for Google Calendar (gdata) Extension ]; // If the ID is not in the array then go ahead and query AUS diff --git a/widget/nsIdleService.cpp b/widget/nsIdleService.cpp index a1a2566df..f9904d39c 100644 --- a/widget/nsIdleService.cpp +++ b/widget/nsIdleService.cpp @@ -46,6 +46,10 @@ using namespace mozilla; // Number of seconds in a day. #define SECONDS_PER_DAY 86400 +// MAX_DELTA_SEC * 1000 should be less than UINT32_MAX to prevent overflow on +// converting from sec to msec +#define MAX_DELTA_SEC (SECONDS_PER_DAY * 10) + static PRLogModuleInfo *sLog = nullptr; #define LOG_TAG "GeckoIdleService" @@ -391,7 +395,7 @@ nsIdleService::GetInstance() nsIdleService::nsIdleService() : mCurrentlySetToTimeoutAt(TimeStamp()), mIdleObserverCount(0), - mDeltaToNextIdleSwitchInS(UINT32_MAX), + mDeltaToNextIdleSwitchInS(MAX_DELTA_SEC), mLastUserInteraction(TimeStamp::Now()) { if (sLog == nullptr) @@ -544,7 +548,7 @@ nsIdleService::ResetIdleTimeOut(uint32_t idleDeltaInMS) // Mark all idle services as non-idle, and calculate the next idle timeout. nsCOMArray<nsIObserver> notifyList; - mDeltaToNextIdleSwitchInS = UINT32_MAX; + mDeltaToNextIdleSwitchInS = MAX_DELTA_SEC; // Loop through all listeners, and find any that have detected idle. for (uint32_t i = 0; i < mArrayListeners.Length(); i++) { @@ -717,7 +721,7 @@ nsIdleService::IdleTimerCallback(void) } // We need to initialise the time to the next idle switch. - mDeltaToNextIdleSwitchInS = UINT32_MAX; + mDeltaToNextIdleSwitchInS = MAX_DELTA_SEC; // Create list of observers that should be notified. nsCOMArray<nsIObserver> notifyList; @@ -839,7 +843,7 @@ void nsIdleService::ReconfigureTimer(void) { // Check if either someone is idle, or someone will become idle. - if ((mIdleObserverCount == 0) && UINT32_MAX == mDeltaToNextIdleSwitchInS) { + if ((mIdleObserverCount == 0) && MAX_DELTA_SEC == mDeltaToNextIdleSwitchInS) { // If not, just let any existing timers run to completion // And bail out. MOZ_LOG(sLog, LogLevel::Debug, diff --git a/widget/windows/WinCompositorWidget.cpp b/widget/windows/WinCompositorWidget.cpp index f660bd019..99ce67573 100644 --- a/widget/windows/WinCompositorWidget.cpp +++ b/widget/windows/WinCompositorWidget.cpp @@ -22,6 +22,7 @@ using namespace mozilla::gfx; WinCompositorWidget::WinCompositorWidget(const CompositorWidgetInitData& aInitData) : mWidgetKey(aInitData.widgetKey()), mWnd(reinterpret_cast<HWND>(aInitData.hWnd())), + mTransparentSurfaceLock("mTransparentSurfaceLock"), mTransparencyMode(static_cast<nsTransparencyMode>(aInitData.transparencyMode())), mMemoryDC(nullptr), mCompositeDC(nullptr), @@ -39,6 +40,7 @@ WinCompositorWidget::WinCompositorWidget(const CompositorWidgetInitData& aInitDa void WinCompositorWidget::OnDestroyWindow() { + MutexAutoLock lock(mTransparentSurfaceLock); mTransparentSurface = nullptr; mMemoryDC = nullptr; } @@ -75,6 +77,8 @@ WinCompositorWidget::GetClientSize() already_AddRefed<gfx::DrawTarget> WinCompositorWidget::StartRemoteDrawing() { + MutexAutoLock lock(mTransparentSurfaceLock); + MOZ_ASSERT(!mCompositeDC); RefPtr<gfxASurface> surf; @@ -229,6 +233,7 @@ WinCompositorWidget::LeavePresentLock() RefPtr<gfxASurface> WinCompositorWidget::EnsureTransparentSurface() { + mTransparentSurfaceLock.AssertCurrentThreadOwns(); MOZ_ASSERT(mTransparencyMode == eTransparencyTransparent); IntSize size = GetClientSize().ToUnknownSize(); @@ -245,6 +250,7 @@ WinCompositorWidget::EnsureTransparentSurface() void WinCompositorWidget::CreateTransparentSurface(const gfx::IntSize& aSize) { + mTransparentSurfaceLock.AssertCurrentThreadOwns(); MOZ_ASSERT(!mTransparentSurface && !mMemoryDC); RefPtr<gfxWindowsSurface> surface = new gfxWindowsSurface(aSize, SurfaceFormat::A8R8G8B8_UINT32); mTransparentSurface = surface; @@ -254,6 +260,7 @@ WinCompositorWidget::CreateTransparentSurface(const gfx::IntSize& aSize) void WinCompositorWidget::UpdateTransparency(nsTransparencyMode aMode) { + MutexAutoLock lock(mTransparentSurfaceLock); if (mTransparencyMode == aMode) { return; } @@ -270,6 +277,7 @@ WinCompositorWidget::UpdateTransparency(nsTransparencyMode aMode) void WinCompositorWidget::ClearTransparentWindow() { + MutexAutoLock lock(mTransparentSurfaceLock); if (!mTransparentSurface) { return; } diff --git a/widget/windows/WinCompositorWidget.h b/widget/windows/WinCompositorWidget.h index 9661cab45..1689a8641 100644 --- a/widget/windows/WinCompositorWidget.h +++ b/widget/windows/WinCompositorWidget.h @@ -10,6 +10,7 @@ #include "gfxASurface.h" #include "mozilla/gfx/CriticalSection.h" #include "mozilla/gfx/Point.h" +#include "mozilla/Mutex.h" #include "nsIWidget.h" class nsWindow; @@ -83,6 +84,8 @@ public: return mWnd; } + mozilla::Mutex& GetTransparentSurfaceLock() { return mTransparentSurfaceLock; } + private: HDC GetWindowSurface(); void FreeWindowSurface(HDC dc); @@ -95,6 +98,7 @@ private: gfx::CriticalSection mPresentLock; // Transparency handling. + mozilla::Mutex mTransparentSurfaceLock; nsTransparencyMode mTransparencyMode; RefPtr<gfxASurface> mTransparentSurface; HDC mMemoryDC; diff --git a/widget/windows/nsWindowGfx.cpp b/widget/windows/nsWindowGfx.cpp index a88631f89..9b303a0f2 100644 --- a/widget/windows/nsWindowGfx.cpp +++ b/widget/windows/nsWindowGfx.cpp @@ -320,6 +320,8 @@ bool nsWindow::OnPaint(HDC aDC, uint32_t aNestingLevel) #if defined(MOZ_XUL) // don't support transparency for non-GDI rendering, for now if (eTransparencyTransparent == mTransparencyMode) { + // This mutex needs to be held when EnsureTransparentSurface is called. + MutexAutoLock lock(mBasicLayersSurface->GetTransparentSurfaceLock()); targetSurface = mBasicLayersSurface->EnsureTransparentSurface(); } #endif diff --git a/xpcom/components/ManifestParser.cpp b/xpcom/components/ManifestParser.cpp index 4dcfc8402..7188c0ec5 100644 --- a/xpcom/components/ManifestParser.cpp +++ b/xpcom/components/ManifestParser.cpp @@ -637,14 +637,6 @@ ParseManifest(NSLocationType aType, FileLocation& aFile, char* aBuf, continue; } -#ifndef MOZ_BINARY_EXTENSIONS - if (directive->apponly && NS_APP_LOCATION != aType) { - LogMessageWithContext(aFile, line, - "Only application manifests may use the '%s' directive.", token); - continue; - } -#endif - if (directive->componentonly && NS_SKIN_LOCATION == aType) { LogMessageWithContext(aFile, line, "Skin manifest not allowed to use '%s' directive.", diff --git a/xpcom/glue/Observer.h b/xpcom/glue/Observer.h index 958e5e4a9..cf9e507dd 100644 --- a/xpcom/glue/Observer.h +++ b/xpcom/glue/Observer.h @@ -7,7 +7,7 @@ #ifndef mozilla_Observer_h #define mozilla_Observer_h -#include "nsTArray.h" +#include "nsTObserverArray.h" namespace mozilla { @@ -48,7 +48,7 @@ public: */ void AddObserver(Observer<T>* aObserver) { - mObservers.AppendElement(aObserver); + mObservers.AppendElementUnlessExists(aObserver); } /** @@ -67,15 +67,15 @@ public: void Broadcast(const T& aParam) { - nsTArray<Observer<T>*> observersCopy(mObservers); - uint32_t size = observersCopy.Length(); - for (uint32_t i = 0; i < size; ++i) { - observersCopy[i]->Notify(aParam); + typename nsTObserverArray<Observer<T>*>::ForwardIterator iter(mObservers); + while (iter.HasMore()) { + Observer<T>* obs = iter.GetNext(); + obs->Notify(aParam); } } protected: - nsTArray<Observer<T>*> mObservers; + nsTObserverArray<Observer<T>*> mObservers; }; } // namespace mozilla |