author | Carsten "Tomcat" Book <cbook@mozilla.com> |
Mon, 06 Mar 2017 17:10:38 +0100 | |
changeset 346088 | 940c4595cfeb766e3b25e8f6a0d8a9eaacac5aec |
parent 346087 | b36f1d98974f50ee6176cda988bc97dd25f94b1d (current diff) |
parent 346052 | 517c553ad64746c479456653ce11b04ab8e4977f (diff) |
child 346089 | 741f09f1b7f019567728e07cf75476b142225b61 |
push id | 31459 |
push user | cbook@mozilla.com |
push date | Tue, 07 Mar 2017 14:05:14 +0000 |
treeherder | mozilla-central@1fb56ba248d5 [default view] [failures only] |
perfherder | [talos] [build metrics] [platform microbench] (compared to previous push) |
milestone | 54.0a1 |
first release with | nightly linux32
nightly linux64
nightly mac
nightly win32
nightly win64
|
last release without | nightly linux32
nightly linux64
nightly mac
nightly win32
nightly win64
|
--- a/browser/base/content/browser-syncui.js +++ b/browser/base/content/browser-syncui.js @@ -1,14 +1,13 @@ /* 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/. */ Cu.import("resource://gre/modules/XPCOMUtils.jsm"); -Cu.import("resource://gre/modules/Services.jsm"); if (AppConstants.MOZ_SERVICES_CLOUDSYNC) { XPCOMUtils.defineLazyModuleGetter(this, "CloudSync", "resource://gre/modules/CloudSync.jsm"); } XPCOMUtils.defineLazyModuleGetter(this, "fxAccounts", "resource://gre/modules/FxAccounts.jsm"); @@ -36,16 +35,18 @@ var gSyncUI = { _unloaded: false, // The last sync start time. Used to calculate the leftover animation time // once syncing completes (bug 1239042). _syncStartTime: 0, _syncAnimationTimer: 0, init() { + Cu.import("resource://services-common/stringbundle.js"); + // Proceed to set up the UI if Sync has already started up. // Otherwise we'll do it when Sync is firing up. if (this.weaveService.ready) { this.initUI(); return; } // Sync isn't ready yet, but we can still update the UI with an initial @@ -218,19 +219,18 @@ var gSyncUI = { this.updateUI(); }, onLogout: function SUI_onLogout() { this.updateUI(); }, _getAppName() { - let brand = Services.strings.createBundle( - "chrome://branding/locale/brand.properties"); - return brand.GetStringFromName("brandShortName"); + let brand = new StringBundle("chrome://branding/locale/brand.properties"); + return brand.get("brandShortName"); }, // Commands // doSync forces a sync - it *does not* return a promise as it is called // via the various UI components. doSync() { this._needsSetup().then(needsSetup => { if (!needsSetup) { @@ -470,18 +470,19 @@ var gSyncUI = { Ci.nsIObserver, Ci.nsISupportsWeakReference ]) }; XPCOMUtils.defineLazyGetter(gSyncUI, "_stringBundle", function() { // XXXzpao these strings should probably be moved from /services to /browser... (bug 583381) // but for now just make it work - return Services.strings.createBundle( - "chrome://weave/locale/services/sync.properties"); + return Cc["@mozilla.org/intl/stringbundle;1"]. + getService(Ci.nsIStringBundleService). + createBundle("chrome://weave/locale/services/sync.properties"); }); XPCOMUtils.defineLazyGetter(gSyncUI, "log", function() { return Log.repository.getLogger("browserwindow.syncui"); }); XPCOMUtils.defineLazyGetter(gSyncUI, "weaveService", function() { return Components.classes["@mozilla.org/weave/service;1"]
--- a/browser/base/content/test/general/browser_misused_characters_in_strings.js +++ b/browser/base/content/test/general/browser_misused_characters_in_strings.js @@ -187,21 +187,19 @@ function* getAllTheFiles(extension) { add_task(function* checkAllTheProperties() { // This asynchronously produces a list of URLs (sadly, mostly sync on our // test infrastructure because it runs against jarfiles there, and // our zipreader APIs are all sync) let uris = yield getAllTheFiles(".properties"); ok(uris.length, `Found ${uris.length} .properties files to scan for misused characters`); for (let uri of uris) { - let bundle = Services.strings.createBundle(uri.spec); - let enumerator = bundle.getSimpleEnumeration(); - - while (enumerator.hasMoreElements()) { - let entity = enumerator.getNext().QueryInterface(Ci.nsIPropertyElement); + let bundle = new StringBundle(uri.spec); + let entities = bundle.getAll(); + for (let entity of entities) { testForErrors(uri.spec, entity.key, entity.value); } } }); var checkDTD = Task.async(function* (aURISpec) { let rawContents = yield fetchFile(aURISpec); // The regular expression below is adapted from:
--- a/browser/themes/shared/tabs.inc.css +++ b/browser/themes/shared/tabs.inc.css @@ -402,17 +402,17 @@ .tab-background-start[selected=true]:-moz-lwtheme::before, .tab-background-end[selected=true]:-moz-lwtheme::before, .tab-background-middle[selected=true]:-moz-lwtheme { background-color: transparent; } /* - * LightweightThemeListener will set the current lightweight theme's header + * LightweightThemeConsumer will set the current lightweight theme's header * image to the lwt-header-image variable, used in each of the following rulesets. */ /* Lightweight theme on tabs */ #tabbrowser-tabs:not([movingtab]) > .tabbrowser-tab > .tab-stack > .tab-background > .tab-background-start[selected=true]:-moz-lwtheme::before, #tabbrowser-tabs:not([movingtab]) > .tabbrowser-tab > .tab-stack > .tab-background > .tab-background-end[selected=true]:-moz-lwtheme::before { background-attachment: scroll, fixed; background-color: transparent;
--- a/layout/reftests/w3c-css/submitted/transforms/reftest.list +++ b/layout/reftests/w3c-css/submitted/transforms/reftest.list @@ -1,6 +1,6 @@ == transform-containing-block-dynamic-1a.html containing-block-dynamic-1-ref.html == transform-containing-block-dynamic-1b.html containing-block-dynamic-1-ref.html == perspective-containing-block-dynamic-1a.html containing-block-dynamic-1-ref.html == perspective-containing-block-dynamic-1b.html containing-block-dynamic-1-ref.html == perspective-zero.html reference/green.html -== perspective-zero-2.html perspective-zero-2-ref.html +fails-if(webrender) == perspective-zero-2.html perspective-zero-2-ref.html
--- a/security/manager/ssl/StaticHPKPins.h +++ b/security/manager/ssl/StaticHPKPins.h @@ -1152,9 +1152,9 @@ static const TransportSecurityPreload kP { "za.search.yahoo.com", false, true, false, -1, &kPinset_yahoo }, { "zh.search.yahoo.com", false, true, false, -1, &kPinset_yahoo }, }; // Pinning Preload List Length = 477; static const int32_t kUnknownId = -1; -static const PRTime kPreloadPKPinsExpirationTime = INT64_C(1497196478324000); +static const PRTime kPreloadPKPinsExpirationTime = INT64_C(1497280729530000);
--- a/security/manager/ssl/nsSTSPreloadList.errors +++ b/security/manager/ssl/nsSTSPreloadList.errors @@ -16,16 +16,17 @@ 10seos.com: did not receive HSTS header 10tacle.io: could not connect to host 123plons.nl: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /builds/slave/m-cen-l64-periodicupdate-00000/getHSTSPreloadList.js :: processStsHeader :: line 121" data: no] 123test.de: did not receive HSTS header 126ium.moe: could not connect to host 127011-networks.ch: did not receive HSTS header 12vpnchina.com: could not connect to host 16packets.com: could not connect to host 1a-jva.de: did not receive HSTS header +1e9.nl: could not connect to host 1p.ro: could not connect to host 1password.com: did not receive HSTS header 1xcess.com: did not receive HSTS header 1years.cc: did not receive HSTS header 206rc.net: max-age too low: 2592000 247loan.com: max-age too low: 0 24hourpaint.com: could not connect to host 25daysof.io: could not connect to host @@ -42,17 +43,17 @@ 301.website: could not connect to host 302.nyc: could not connect to host 33drugstore.com: did not receive HSTS header 360ds.co.in: could not connect to host 360gradus.com: did not receive HSTS header 365.or.jp: could not connect to host 3chit.cf: could not connect to host 3click-loan.com: could not connect to host 3sreporting.com: did not receive HSTS header -3yearloans.com: max-age too low: 0 +3yearloans.com: could not connect to host 404.sh: max-age too low: 0 42ms.org: could not connect to host 4455software.com: did not receive HSTS header 4679.space: could not connect to host 47ronin.com: did not receive HSTS header 4cclothing.com: could not connect to host 4elements.com: did not receive HSTS header 4eyes.ch: did not receive HSTS header @@ -87,17 +88,16 @@ abecodes.net: did not receive HSTS heade abeestrada.com: did not receive HSTS header abilitylist.org: did not receive HSTS header abioniere.de: could not connect to host abnarnro.com: could not connect to host abolitionistsociety.com: could not connect to host 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 :: /builds/slave/m-cen-l64-periodicupdate-00000/getHSTSPreloadList.js :: processStsHeader :: line 121" data: no] aboutyou-deals.de: did not receive HSTS header -abrilect.com: could not connect to host abtom.de: did not receive HSTS header abury.fr: did not receive HSTS header abury.me: did not receive HSTS header accelerole.com: did not receive HSTS header accountradar.com: could not connect to host accuenergy.com: max-age too low: 0 acg18.us: did not receive HSTS header acgaudio.com: could not connect to host @@ -185,29 +185,29 @@ alethearose.com: did not receive HSTS he alexandre.sh: did not receive HSTS header alexisabarca.com: did not receive HSTS header alexsergeyev.com: could not connect to host alfa24.pro: could not connect to host algarmatic-automatismos.pt: could not connect to host alittlebitcheeky.com: did not receive HSTS header aljaspod.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /builds/slave/m-cen-l64-periodicupdate-00000/getHSTSPreloadList.js :: processStsHeader :: line 121" data: no] alkami.com: did not receive HSTS header -all-subtitles.com: could not connect to host +all-subtitles.com: did not receive HSTS header all.tf: did not receive HSTS header alldaymonitoring.com: could not connect to host allforyou.at: could not connect to host allinnote.com: could not connect to host allmbw.com: could not connect to host allstarswithus.com: could not connect to host alpha.irccloud.com: could not connect to host alphabit-secure.com: could not connect to host alphabuild.io: did not receive HSTS header alphalabs.xyz: could not connect to host alt33c3.org: could not connect to host -alterbaum.net: did not receive HSTS header +alterbaum.net: could not connect to host altfire.ca: could not connect to host altmv.com: max-age too low: 7776000 amaforums.org: could not connect to host amandaonishi.com: could not connect to host amavis.org: did not receive HSTS header amazingfloridagulfhomes.com: could not connect to host ameho.me: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /builds/slave/m-cen-l64-periodicupdate-00000/getHSTSPreloadList.js :: processStsHeader :: line 121" data: no] american-truck-simulator.de: could not connect to host @@ -365,44 +365,45 @@ aurainfosec.com.au: could not connect to auraredeye.com: did not receive HSTS header auraredshield.com: did not receive HSTS header auroratownshipfd.org: could not connect to host ausnah.me: could not connect to host ausoptic.com.au: max-age too low: 2592000 auth.mail.ru: did not receive HSTS header authentication.io: could not connect to host authoritynutrition.com: did not receive HSTS header +autimatisering.nl: did not receive HSTS header auto-serwis.zgorzelec.pl: did not receive HSTS header auto4trade.nl: could not connect to host autodeploy.it: could not connect to host autoepc.ro: did not receive HSTS header autojuhos.sk: could not connect to host autokovrik-diskont.ru: did not receive HSTS header autotsum.com: could not connect to host autumnwindsagility.com: could not connect to host auverbox.ovh: could not connect to host auxetek.se: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /builds/slave/m-cen-l64-periodicupdate-00000/getHSTSPreloadList.js :: processStsHeader :: line 121" data: no] auxiliumincrementum.co.uk: could not connect to host +avdagic.net: could not connect to host avec-ou-sans-ordonnance.fr: could not connect to host avenelequinehospital.com.au: did not receive HSTS header avepol.cz: did not receive HSTS header avepol.eu: did not receive HSTS header aviacao.pt: did not receive HSTS header avinet.com: max-age too low: 0 avqueen.cn: did not receive HSTS header avus-automobile.com: did not receive HSTS header awg-mode.de: did not receive HSTS header axado.com.br: did not receive HSTS header axeny.com: did not receive HSTS header az.search.yahoo.com: did not receive HSTS header azprep.us: could not connect to host azuxul.fr: could not connect to host b3orion.com: max-age too low: 0 b64.club: could not connect to host -babelfisch.eu: could not connect to host baby-click.de: did not receive HSTS header babybic.hu: did not receive HSTS header babyhouse.xyz: could not connect to host babymasaze.cz: did not receive HSTS header babysaying.me: max-age too low: 6000 bacchanallia.com: could not connect to host back-bone.nl: did not receive HSTS header bacon-monitoring.org: could not connect to host @@ -449,17 +450,16 @@ beamitapp.com: could not connect to host beardydave.com: did not receive HSTS header beastowner.com: did not receive HSTS header beavers.io: could not connect to host bebesurdoue.com: could not connect to host bedabox.com: max-age too low: 0 bedeta.de: could not connect to host bedreid.dk: did not receive HSTS header bedrijvenadministratie.nl: did not receive HSTS header -beeksnetwork.nl: could not connect to host beholdthehurricane.com: could not connect to host beier.io: did not receive HSTS header belairsewvac.com: could not connect to host belics.com: did not receive HSTS header belliash.eu.org: did not receive HSTS header belltower.io: could not connect to host beneffy.com: did not receive HSTS header benk.press: could not connect to host @@ -524,17 +524,16 @@ bitsafe.systems: did not receive HSTS he bittmann.me: could not connect to host bitvigor.com: could not connect to host bityes.org: could not connect to host bivsi.com: could not connect to host bizcms.com: did not receive HSTS header bizon.sk: did not receive HSTS header black-armada.com.pl: could not connect to host black-armada.pl: could not connect to host -black-khat.com: could not connect to host blackburn.link: could not connect to host blacklane.com: did not receive HSTS header blackly.uk: max-age too low: 0 blackpayment.ru: could not connect to host blackscytheconsulting.com: could not connect to host blackunicorn.wtf: could not connect to host blakerandall.xyz: could not connect to host blantik.net: could not connect to host @@ -578,17 +577,16 @@ bookourdjs.com: [Exception... "Component boomerang.com: could not connect to host boomshelf.com: could not connect to host boomshelf.org: could not connect to host boosterlearnpro.com: did not receive HSTS header bootjp.me: did not receive HSTS header boringsecurity.net: could not connect to host boris.one: did not receive HSTS header borisbesemer.com: could not connect to host -borowski.pw: could not connect to host botox.bz: did not receive HSTS header bouwbedrijfpurmerend.nl: did not receive HSTS header bowlroll.net: max-age too low: 0 boxcryptor.com: did not receive HSTS header br3in.nl: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /builds/slave/m-cen-l64-periodicupdate-00000/getHSTSPreloadList.js :: processStsHeader :: line 121" data: no] braineet.com: did not receive HSTS header brainfork.ml: could not connect to host braintreegateway.com: did not receive HSTS header @@ -639,16 +637,17 @@ businesshosting.nl: did not receive HSTS businessloanstoday.com: max-age too low: 0 busold.ws: could not connect to host bustimes.org: could not connect to host butchersworkshop.com: did not receive HSTS header buttercoin.com: could not connect to host butterfieldstraining.com: did not receive HSTS header buybaby.eu: did not receive HSTS header buyfox.de: did not receive HSTS header +buzzconcert.com: could not connect to host bws16.de: did not receive HSTS header by4cqb.cn: could not connect to host bydisk.com: could not connect to host bypassed.press: could not connect to host bypassed.today: did not receive HSTS header bypassed.works: did not receive HSTS header bypassed.world: did not receive HSTS header bypro.xyz: could not connect to host @@ -667,17 +666,16 @@ caesreon.com: could not connect to host cafe-scientifique.org.ec: could not connect to host caim.cz: did not receive HSTS header cainhosting.com: did not receive HSTS header cajapopcorn.com: did not receive HSTS header cake.care: could not connect to host calendarr.com: did not receive HSTS header calgaryconstructionjobs.com: did not receive HSTS header calix.com: max-age too low: 0 -call.me: did not receive HSTS header calltrackingreports.com: could not connect to host calvin.me: max-age too low: 2592000 calvinallen.net: did not receive HSTS header calyxinstitute.org: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /builds/slave/m-cen-l64-periodicupdate-00000/getHSTSPreloadList.js :: processStsHeader :: line 121" data: no] camolist.com: could not connect to host canadiangamblingchoice.com: did not receive HSTS header cancelmyprofile.com: did not receive HSTS header candicontrols.com: did not receive HSTS header @@ -702,17 +700,17 @@ caringladies.org: could not connect to h carlandfaith.com: did not receive HSTS header carlolly.co.uk: could not connect to host carlosalves.info: could not connect to host carroarmato0.be: could not connect to host carsforbackpackers.com: could not connect to host casc.cz: did not receive HSTS header casedi.org: max-age too low: 0 cashlink.io: did not receive HSTS header -cashmojo.com: max-age too low: 0 +cashmojo.com: could not connect to host casinostest.com: did not receive HSTS header casioshop.eu: could not connect to host casovi.cf: could not connect to host catarsisvr.com: did not receive HSTS header catinmay.com: did not receive HSTS header catnapstudios.com: could not connect to host caveclan.org: did not receive HSTS header cavedroid.xyz: could not connect to host @@ -782,39 +780,38 @@ chrisandsarahinasia.com: did not receive chrisfaber.com: could not connect to host chriskyrouac.com: could not connect to host christiaandruif.nl: could not connect to host christianbargon.de: did not receive HSTS header christianbro.gq: could not connect to host christophercolumbusfoundation.gov: could not connect to host christophheich.me: could not connect to host chrisupjohn.com: could not connect to host +chromaryu.net: could not connect to host chrome-devtools-frontend.appspot.com: did not receive HSTS header (error ignored - included regardless) chrome.google.com: did not receive HSTS header (error ignored - included regardless) chroniclesofgeorge.com: did not receive HSTS header chrst.ph: could not connect to host chua.cf: could not connect to host chulado.com: did not receive HSTS header cidr.ml: could not connect to host cig-dem.com: could not connect to host cigarblogs.net: could not connect to host cigi.site: could not connect to host cim2b.de: could not connect to host cimalando.eu: could not connect to host -cinefilzonen.se: could not connect to host ciplanutrition.com: did not receive HSTS header circara.com: did not receive HSTS header ciscommerce.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /builds/slave/m-cen-l64-periodicupdate-00000/getHSTSPreloadList.js :: processStsHeader :: line 121" data: no] citiagent.cz: could not connect to host cityoflaurel.org: did not receive HSTS header clara-baumert.de: could not connect to host classicsandexotics.com: did not receive HSTS header classicspublishing.com: could not connect to host clcleaningco.com: could not connect to host -cldly.com: could not connect to host cleanexperts.co.uk: could not connect to host cleaningsquad.ca: could not connect to host cleanmta.com: could not connect to host clearc.tk: could not connect to host clemovementlaw.com: could not connect to host clerkendweller.uk: could not connect to host clickandgo.com: did not receive HSTS header clickandshoot.nl: did not receive HSTS header @@ -827,16 +824,17 @@ clip.mx: did not receive HSTS header cloud.wtf: could not connect to host cloudapi.vc: 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 cloudey.net: did not receive HSTS header cloudflare.com: did not receive HSTS header +cloudily.com: could not connect to host cloudimag.es: could not connect to host cloudlink.club: could not connect to host cloudns.com.au: could not connect to host cloudspotterapp.com: did not receive HSTS header cloudstoragemaus.com: could not connect to host cloudstorm.me: could not connect to host cloudwalk.io: did not receive HSTS header cloverleaf.net: max-age too low: 0 @@ -936,32 +934,33 @@ coursella.com: did not receive HSTS head covenantbank.net: could not connect to host coverduck.ru: could not connect to host cpuvinf.eu.org: could not connect to host cr.search.yahoo.com: did not receive HSTS header cracking.org: did not receive HSTS header craftbeerbarn.co.uk: could not connect to host craftedge.xyz: could not connect to host craftmine.cz: did not receive HSTS header +crapouill.es: could not connect to host 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 crazyhotseeds.com: did not receive HSTS header creativephysics.ml: could not connect to host creativeplayuk.com: did not receive HSTS header crendontech.com: could not connect to host crestoncottage.com: could not connect to host criticalaim.com: could not connect to host crizk.com: could not connect to host croome.no-ip.org: could not connect to host crosssec.com: did not receive HSTS header crow.tw: could not connect to host -crowd.supply: did not receive HSTS header +crowd.supply: could not connect to host crowdcurity.com: did not receive HSTS header crowdjuris.com: could not connect to host crtvmgmt.com: could not connect to host crudysql.com: could not connect to host crufad.org: did not receive HSTS header cruzr.xyz: could not connect to host crypt.guru: could not connect to host crypticshell.co.uk: could not connect to host @@ -1004,17 +1003,17 @@ cyanogenmod.xxx: could not connect to ho cyberpunk.ca: could not connect to host cybershambles.com: could not connect to host cycleluxembourg.lu: did not receive HSTS header cydia-search.io: could not connect to host cyphertite.com: could not connect to host dad256.tk: could not connect to host dadtheimpaler.com: could not connect to host dah5.com: did not receive HSTS header -dailystormerpodcasts.com: did not receive HSTS header +dailystormerpodcasts.com: could not connect to host daimadi.com: could not connect to host dakrib.net: could not connect to host daku.gdn: did not receive HSTS header dalfiume.it: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /builds/slave/m-cen-l64-periodicupdate-00000/getHSTSPreloadList.js :: processStsHeader :: line 121" data: no] dalingk.co: could not connect to host damedrogy.cz: could not connect to host damianuv-blog.cz: did not receive HSTS header daniel-steuer.de: could not connect to host @@ -1051,29 +1050,27 @@ datenreiter.gq: could not connect to hos datenreiter.ml: could not connect to host datenreiter.tk: could not connect to host datewon.net: did not receive HSTS header davidglidden.eu: could not connect to host davidgrudl.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /builds/slave/m-cen-l64-periodicupdate-00000/getHSTSPreloadList.js :: processStsHeader :: line 121" data: no] davidhunter.scot: did not receive HSTS header davidnoren.com: did not receive HSTS header davidreinhardt.de: could not connect to host -davidscherzer.at: could not connect to host daylightcompany.com: did not receive HSTS header daytonaseaside.com: did not receive HSTS header db.gy: could not connect to host dbx.ovh: could not connect to host dccode.gov: could not connect to host dcuofriends.net: could not connect to host dcurt.is: did not receive HSTS header ddatsh.com: could not connect to host dden.ca: could not connect to host dden.website: could not connect to host dden.xyz: could not connect to host -deadsoul.net: could not connect to host debank.tv: did not receive HSTS header debatch.se: could not connect to host debian-vhost.de: did not receive HSTS header debiton.dk: could not connect to host debtkit.co.uk: did not receive HSTS header decafu.co: could not connect to host decesus.com: could not connect to host decibelios.li: could not connect to host @@ -1084,17 +1081,16 @@ deepcovelabs.net: could not connect to h deepearth.uk: did not receive HSTS header deetzen.de: did not receive HSTS header defiler.tk: could not connect to host degroetenvanrosaline.nl: did not receive HSTS header deight.co: could not connect to host dekasan.ru: could not connect to host delayrefunds.co.uk: could not connect to host deliverance.co.uk: could not connect to host -deltaconcepts.de: did not receive HSTS header deltanet-production.de: max-age too low: 0 delvj.org: could not connect to host demdis.org: could not connect to host demilitarized.ninja: could not connect to host democracychronicles.com: did not receive HSTS header demotops.com: did not receive HSTS header dengchangdong.com: could not connect to host dengyong.org: could not connect to host @@ -1116,17 +1112,16 @@ despora.de: [Exception... "Component ret destinationbijoux.fr: could not connect to host destom.be: could not connect to host detector.exposed: could not connect to host detest.org: could not connect to host devcu.com: could not connect to host devcu.net: could not connect to host devincrow.me: could not connect to host devnsec.com: could not connect to host -devpsy.info: did not receive HSTS header devtub.com: did not receive HSTS header devuan.org: did not receive HSTS header dewin.io: could not connect to host dhpcs.com: did not receive HSTS header dhpiggott.net: did not receive HSTS header diablotine.rocks: could not connect to host diarbag.us: did not receive HSTS header diasp.cz: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /builds/slave/m-cen-l64-periodicupdate-00000/getHSTSPreloadList.js :: processStsHeader :: line 121" data: no] @@ -1136,45 +1131,46 @@ digidroom.be: did not receive HSTS heade digioccumss.ddns.net: could not connect to host digitalbank.kz: could not connect to host digitaldaddy.net: could not connect to host digitalriver.tk: could not connect to host digitalskillswap.com: could not connect to host dim.lighting: could not connect to host dinamoelektrik.com: max-age too low: 0 dinkum.online: could not connect to host +disclosure.io: did not receive HSTS header discoveringdocker.com: did not receive HSTS header discovery.lookout.com: did not receive HSTS header dislocated.de: did not receive HSTS header disowned.net: max-age too low: 0 dissimulo.me: could not connect to host dittvertshus.no: could not connect to host diva-ey.com: could not connect to host dizihocasi.com: could not connect to host dizorg.net: could not connect to host dj4et.de: could not connect to host djz4music.com: did not receive HSTS header dl.google.com: did not receive HSTS header (error ignored - included regardless) dlc.viasinc.com: could not connect to host dlemper.de: did not receive HSTS header dlscomputers.com.au: did not receive HSTS header dn42.eu: could not connect to host -dn42.us: did not receive HSTS header dns.google.com: did not receive HSTS header (error ignored - included regardless) dnsknowledge.com: did not receive HSTS header do-do.tk: could not connect to host do.search.yahoo.com: did not receive HSTS header dobet.in: could not connect to host docid.io: could not connect to host docket.news: could not connect to host docs.google.com: did not receive HSTS header (error ignored - included regardless) docset.io: could not connect to host docufiel.com: could not connect to host doeswindowssuckforeveryoneorjustme.com: could not connect to host dogbox.se: did not receive HSTS header +dogfi.sh: could not connect to host doggieholic.net: could not connect to host dohosting.ru: could not connect to host dokan.online: did not receive HSTS header doku-gilde.de: did not receive HSTS header dokuboard.com: could not connect to host dollarstore24.com: could not connect to host dollywiki.co.uk: could not connect to host dolphin-cloud.com: could not connect to host @@ -1233,16 +1229,17 @@ dymersion.com: did not receive HSTS head dynamic-innovations.net: could not connect to host dzimejl.sk: did not receive HSTS header dzlibs.io: could not connect to host dzndk.org: could not connect to host e-aut.net: did not receive HSTS header e-deca2.org: did not receive HSTS header e-sa.com: did not receive HSTS header e3amn2l.com: could not connect to host +eagleridgecampground.com: could not connect to host earga.sm: could not connect to host earlybirdsnacks.com: could not connect to host earthrise16.com: could not connect to host easez.net: did not receive HSTS header easychiller.org: could not connect to host easyhaul.com: could not connect to host eatlowcarb.de: did not receive HSTS header eauclairecommerce.com: could not connect to host @@ -1266,17 +1263,16 @@ ecorus.eu: did not receive HSTS header edcphenix.tk: could not connect to host edelsteincosmetic.com: did not receive HSTS header edissecurity.sk: did not receive HSTS header edix.ru: could not connect to host edk.com.tr: did not receive HSTS header edmodo.com: did not receive HSTS header edp-collaborative.com: max-age too low: 2500 eduvance.in: did not receive HSTS header -edwards.me.uk: could not connect to host effectiveosgi.com: could not connect to host efficienthealth.com: did not receive HSTS header effortlesshr.com: did not receive HSTS header egg-ortho.ch: did not receive HSTS header egit.co: could not connect to host eglek.com: did not receive HSTS header ego-world.org: could not connect to host ehito.ovh: could not connect to host @@ -1285,18 +1281,16 @@ eicfood.com: could not connect to host eidolonhost.com: did not receive HSTS header ekbanden.nl: could not connect to host elaintehtaat.fi: did not receive HSTS header elan-organics.com: did not receive HSTS header elanguest.pl: could not connect to host elanguest.ro: did not receive HSTS header elanguest.ru: did not receive HSTS header elbetech.net: could not connect to host -electricant.com: could not connect to host -electricant.nl: could not connect to host electricianforum.co.uk: did not receive HSTS header electromc.com: could not connect to host elektronring.com: could not connect to host elemenx.com: did not receive HSTS header elemprendedor.com.ve: could not connect to host elenag.ga: could not connect to host elenoon.ir: did not receive HSTS header elgacien.de: could not connect to host @@ -1373,17 +1367,17 @@ esoterikerforum.de: did not receive HSTS espra.com: could not connect to host esquonic.com: could not connect to host essexcosmeticdentists.co.uk: did not receive HSTS header essexghosthunters.co.uk: did not receive HSTS header estilosapeca.com: could not connect to host et-buchholz.de: could not connect to host etdonline.co.uk: could not connect to host eternitylove.us: could not connect to host -eth9.net: could not connect to host +eth9.net: max-age too low: 0 ethicalexploiting.com: could not connect to host etsysecure.com: could not connect to host etula.ga: could not connect to host etula.me: could not connect to host euanbaines.com: did not receive HSTS header eucl3d.com: did not receive HSTS header eulerpi.io: could not connect to host eupho.me: could not connect to host @@ -1451,17 +1445,16 @@ fatgeekflix.net: could not connect to ho fatherhood.gov: did not receive HSTS header fatlossguide.xyz: could not connect to host fatwin.pw: could not connect to host fayolle.info: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /builds/slave/m-cen-l64-periodicupdate-00000/getHSTSPreloadList.js :: processStsHeader :: line 121" data: no] fbox.li: could not connect to host fdj.im: could not connect to host feard.space: could not connect to host feastr.de: did not receive HSTS header -fedrtc.org: could not connect to host fedux.com.ar: could not connect to host feezmodo.com: max-age too low: 0 felisslovakia.sk: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /builds/slave/m-cen-l64-periodicupdate-00000/getHSTSPreloadList.js :: processStsHeader :: line 121" data: no] feliwyn.fr: did not receive HSTS header felixklein.at: could not connect to host feminists.co: could not connect to host fenteo.com: could not connect to host feragon.net: did not receive HSTS header @@ -1472,16 +1465,17 @@ festrip.com: could not connect to host fexmen.com: could not connect to host ffmradio.de: did not receive HSTS header fhdhelp.de: could not connect to host fhdhilft.de: could not connect to host fiftyshadesofluca.ml: could not connect to host fig.co: did not receive HSTS header fightr.co: could not connect to host fikt.space: could not connect to host +filebox.moe: could not connect to host filmipop.com: max-age too low: 0 finalgear.com: did not receive HSTS header financieringsportaal.nl: did not receive HSTS header finanzkontor.net: could not connect to host findtutorsnearme.com: did not receive HSTS header finfev.de: could not connect to host finiteheap.com: did not receive HSTS header finpt.com: could not connect to host @@ -1559,17 +1553,17 @@ frangor.info: did not receive HSTS heade frankwei.xyz: did not receive HSTS header franta.biz: did not receive HSTS header franta.email: did not receive HSTS header franzt.de: could not connect to host frasys.io: max-age too low: 7776000 fredvoyage.fr: did not receive HSTS header freeflow.tv: could not connect to host freemanning.de: could not connect to host -freematthale.net: did not receive HSTS header +freematthale.net: could not connect to host freemedforms.com: did not receive HSTS header freesoftwaredriver.com: did not receive HSTS header freesounding.com: could not connect to host freesounding.ru: could not connect to host freethought.org.au: could not connect to host freeutopia.org: did not receive HSTS header frenzel.dk: could not connect to host freqlabs.com: did not receive HSTS header @@ -1582,16 +1576,17 @@ frizo.com: did not receive HSTS header froggstack.de: could not connect to host frontisme.nl: could not connect to host frontmin.com: did not receive HSTS header frost-ci.xyz: could not connect to host fruitusers.com: could not connect to host frusky.de: did not receive HSTS header frusky.net: could not connect to host fspphoto.com: could not connect to host +fstfy.de: could not connect to host ftctele.com: did not receive HSTS header fuckbilibili.com: did not receive HSTS header fuckgfw233.org: could not connect to host fukushima-web.com: did not receive HSTS header fundacionhijosdelsol.org: could not connect to host funi4u.com: could not connect to host funkyweddingideas.com.au: could not connect to host funrun.com: did not receive HSTS header @@ -1612,26 +1607,24 @@ fzslm.me: did not receive HSTS header g01.in.ua: could not connect to host g2a.co: did not receive HSTS header g2g.com: did not receive HSTS header g4w.co: did not receive HSTS header (error ignored - included regardless) g5led.nl: could not connect to host gabber.scot: could not connect to host gaelleetarnaud.com: did not receive HSTS header gafachi.com: could not connect to host -gaiserik.com: did not receive HSTS header gakkainavi.jp: did not receive HSTS header gakkainavi4.com: could not connect to host gakkainavi4.net: did not receive HSTS header galardi.org: could not connect to host galenskap.eu: could not connect to host gallery44.org: did not receive HSTS header galoisvpn.xyz: could not connect to host game-files.net: did not receive HSTS header -game.yt: could not connect to host gamecave.de: could not connect to host gamechasm.com: could not connect to host gamefund.me: did not receive HSTS header gamehacks.me: could not connect to host gameink.net: max-age too low: 0 gamenected.com: could not connect to host gamenected.de: could not connect to host gameofpwnz.com: did not receive HSTS header @@ -1657,25 +1650,25 @@ gem-indonesia.net: could not connect to gendrin.com: could not connect to host genuu.com: could not connect to host genuxation.com: could not connect to host genyaa.com: could not connect to host genyhitch.com: did not receive HSTS header geofox.org: did not receive HSTS header georgesonarthurs.com.au: did not receive HSTS header gerencianet.com.br: did not receive HSTS header -gernert-server.de: could not connect to host gersting.net: could not connect to host gesiwista.net: 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 getbooks.co.il: did not receive HSTS header getcarefirst.com: did not receive HSTS header getcolor.com: did not receive HSTS header +getfestify.com: could not connect to host getfirepress.com: could not connect to host getgeek.dk: did not receive HSTS header getgeek.eu: did not receive HSTS header getgeek.fi: did not receive HSTS header getgeek.io: did not receive HSTS header getgeek.no: did not receive HSTS header getgeek.nu: did not receive HSTS header getgeek.se: did not receive HSTS header @@ -1718,28 +1711,27 @@ glentakahashi.com: max-age too low: 0 glitzmirror.com: could not connect to host global-adult-webcams.com: did not receive HSTS header globalado.com: could not connect to host globalexpert.co.nz: could not connect to host globalittech.com: could not connect to host globalmusic.ga: could not connect to host globalsites.nl: did not receive HSTS header gloomyvancouver.com: could not connect to host -glossopnorthendafc.co.uk: did not receive HSTS header glws.org: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /builds/slave/m-cen-l64-periodicupdate-00000/getHSTSPreloadList.js :: processStsHeader :: line 121" data: no] gm.search.yahoo.com: did not receive HSTS header gmail.com: did not receive HSTS header (error ignored - included regardless) gmantra.org: could not connect to host gmoes.at: max-age too low: 600000 gnom.me: could not connect to host go.ax: did not receive HSTS header go2sh.de: did not receive HSTS header goabonga.com: could not connect to host goaltree.ch: did not receive HSTS header -goarmy.eu: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /builds/slave/m-cen-l64-periodicupdate-00000/getHSTSPreloadList.js :: processStsHeader :: line 121" data: no] +goarmy.eu: could not connect to host goat.chat: did not receive HSTS header goat.xyz: could not connect to host goben.ch: could not connect to host goerner.me: did not receive HSTS header goge.site: could not connect to host gogenenglish.com: could not connect to host gogetssl.com: did not receive HSTS header goggs.eu: did not receive HSTS header @@ -1764,16 +1756,17 @@ gov.ax: could not connect to host govillemo.ca: did not receive HSTS header gozel.com.tr: did not receive HSTS header gparent.org: did not receive HSTS header gpsfix.cz: could not connect to host gpstuner.com: did not receive HSTS header grabi.ga: could not connect to host gracesofgrief.com: max-age too low: 86400 gradienthosting.co.uk: did not receive HSTS header +graffen.dk: did not receive HSTS header grandmascookieblog.com: did not receive HSTS header grantedby.me: could not connect to host graph.no: did not receive HSTS header graphsearchengine.com: could not connect to host gravito.nl: did not receive HSTS header gravity-net.de: could not connect to host graycell.net: could not connect to host grazetech.com: could not connect to host @@ -1802,17 +1795,16 @@ gtanda.tk: could not connect to host gtlfsonlinepay.com: did not receive HSTS header gtraxapp.com: could not connect to host gts-schulsoftware.de: did not receive HSTS header guava.studio: did not receive HSTS header gugga.dk: did not receive HSTS header guilde-vindicta.fr: did not receive HSTS header gulenet.com: could not connect to host gunnarhafdal.com: did not receive HSTS header -guoqiang.info: could not connect to host gurom.lv: could not connect to host gurusupe.com: could not connect to host guso.gq: could not connect to host gussi.is: did not receive HSTS header gvt2.com: could not connect to host (error ignored - included regardless) gvt3.com: could not connect to host (error ignored - included regardless) gw2reload.eu: could not connect to host gwijaya.com: could not connect to host @@ -1859,25 +1851,25 @@ happyfabric.me: did not receive HSTS hea happygastro.com: could not connect to host harabuhouse.com: did not receive HSTS header harbor-light.net: could not connect to host hardline.xyz: could not connect to host haribosupermix.com: could not connect to host harmonycosmetic.com: max-age too low: 300 harristony.com: could not connect to host hartmancpa.com: did not receive HSTS header +harvester.fr: could not connect to host harvestrenewal.org: did not receive HSTS header harz.cloud: could not connect to host has.vision: could not connect to host hash-list.com: could not connect to host hasilocke.de: did not receive HSTS header haste.ch: could not connect to host hastherebeenamassshooting.today: could not connect to host hatoko.net: could not connect to host -haucke.xyz: 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 haveeruexaminer.com: could not connect to host haxoff.com: could not connect to host haxx.hu: could not connect to host haydenhill.us: could not connect to host hazcod.com: could not connect to host @@ -1954,33 +1946,32 @@ hostisan.com: did not receive HSTS heade hotchillibox.com: max-age too low: 0 hotchoc.io: did not receive HSTS header houkago-step.com: did not receive HSTS header housemaadiah.org: did not receive HSTS header housingstudents.org.uk: could not connect to host howrandom.org: could not connect to host howtocuremysciatica.com: could not connect to host hr-intranet.com: did not receive HSTS header +hr98.tk: could not connect to host hsandbox.tech: max-age too low: 2592000 hsir.me: could not connect to host hsts.date: could not connect to host http418.xyz: could not connect to host httpstatuscode418.xyz: could not connect to host hu.search.yahoo.com: did not receive HSTS header huarongdao.com: max-age too low: 1 hugocollignon.fr: could not connect to host hugosleep.com.au: did not receive HSTS header humblefinances.com: could not connect to host humeurs.net: could not connect to host humpteedumptee.in: did not receive HSTS header huntshomeinspections.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /builds/slave/m-cen-l64-periodicupdate-00000/getHSTSPreloadList.js :: processStsHeader :: line 121" data: no] -huodongweb.com: could not connect to host hurricanelabs.com: did not receive HSTS header huskybutt.dog: could not connect to host -hvh.no: could not connect to host hycken.com: did not receive HSTS header hydra.ws: could not connect to host hydronium.cf: could not connect to host hydronium.ga: could not connect to host hydronium.me: could not connect to host hydronium.ml: could not connect to host hydronium.tk: could not connect to host hyper69.com: did not receive HSTS header @@ -1996,17 +1987,16 @@ ibarf.nl: did not receive HSTS header icebat.dyndns.org: could not connect to host iceloch.com: could not connect to host icewoman.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /builds/slave/m-cen-l64-periodicupdate-00000/getHSTSPreloadList.js :: processStsHeader :: line 121" data: no] icfl.com.br: could not connect to host ichnichtskaufmann.de: could not connect to host ichoosebtec.com: could not connect to host icloud.net: could not connect to host icodesign.me: could not connect to host -icpc2016.in.th: could not connect to host icreative.nl: did not receive HSTS header ictradar.com: could not connect to host ictual.com: max-age too low: 0 icusignature.com: did not receive HSTS header id-co.in: could not connect to host id-conf.com: did not receive HSTS header idacmedia.com: max-age too low: 5184000 idcrane.com: could not connect to host @@ -2031,17 +2021,16 @@ igule.net: could not connect to host ihrlotto.de: could not connect to host ihrnationalrat.ch: could not connect to host ihsbsd.me: could not connect to host ihsbsd.tk: could not connect to host ihuanmeng.com: did not receive HSTS header iirii.com: could not connect to host ikujii.com: max-age too low: 0 ikwilguidobellen.nl: did not receive HSTS header -ila.fi: could not connect to host ilbuongiorno.it: did not receive HSTS header ilikerainbows.co: could not connect to host ilikerainbows.co.uk: could not connect to host ilmconpm.de: did not receive HSTS header ilona.graphics: max-age too low: 3600 iluvscotland.co.uk: did not receive HSTS header imakepoems.net: could not connect to host imanolbarba.net: could not connect to host @@ -2105,18 +2094,19 @@ internetcensus.org: could not connect to interserved.com: did not receive HSTS header intex.es: max-age too low: 0 intim-uslugi-kazan.net: could not connect to host intimtoy.com.ua: could not connect to host intranetsec.fr: could not connect to host intrp.net: did not receive HSTS header inverselink-user-content.com: could not connect to host inverselink.com: could not connect to host +invictusmc.uk: did not receive HSTS header invite24.pro: could not connect to host -inwesttitle.com: could not connect to host +inwesttitle.com: max-age too low: 0 ionx.co.uk: did not receive HSTS header iop.intuit.com: max-age too low: 86400 iora.fr: could not connect to host iosmods.com: could not connect to host iostips.ru: could not connect to host iotsms.io: could not connect to host ip6.im: did not receive HSTS header ipmimagazine.com: did not receive HSTS header @@ -2147,25 +2137,23 @@ itechgeek.com: max-age too low: 0 ithakama.com: did not receive HSTS header ithakama.cz: did not receive HSTS header itos.asia: did not receive HSTS header itos.pl: did not receive HSTS header itriskltd.com: could not connect to host 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 itsecurityassurance.pw: could not connect to host itsg-faq.de: could not connect to host itshost.ru: could not connect to host ivancacic.com: did not receive HSTS header ivi-fertility.com: max-age too low: 0 ivi.es: max-age too low: 0 ivk.website: could not connect to host -ixec2.tk: could not connect to host izdiwho.com: could not connect to host izolight.ch: could not connect to host izoox.com: did not receive HSTS header izzzorgconcerten.nl: could not connect to host ja-publications.com: did not receive HSTS header jabbari.io: did not receive HSTS header jackalworks.com: could not connect to host jacobparry.ca: did not receive HSTS header @@ -2314,20 +2302,20 @@ kausch.at: did not receive HSTS header kavinvin.me: did not receive HSTS header kawaiiku.com: could not connect to host kawaiiku.de: could not connect to host kayon.cf: could not connect to host kcolford.com: did not receive HSTS header kd-plus.pp.ua: could not connect to host kdata.it: did not receive HSTS header kdm-online.de: did not receive HSTS header -kearney.io: could not connect to host keeley.gq: could not connect to host keeley.ml: could not connect to host keeleysam.me: could not connect to host +keepassa.co: could not connect to host keepclean.me: could not connect to host kellyandantony.com: could not connect to host kenderbeton-magyarorszag.hu: did not receive HSTS header kenderbetonmagyarorszag.hu: did not receive HSTS header kenderhaz-magyarorszag.hu: did not receive HSTS header kenderhazmagyarorszag.hu: did not receive HSTS header kerangalam.com: could not connect to host kerksanders.nl: did not receive HSTS header @@ -2371,16 +2359,17 @@ kleertjesvoordelig.nl: did not receive H kleinblogje.nl: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /builds/slave/m-cen-l64-periodicupdate-00000/getHSTSPreloadList.js :: processStsHeader :: line 121" data: no] kletterkater.com: did not receive HSTS header klicktojob.de: could not connect to host kmartin.io: did not receive HSTS header knccloud.com: could not connect to host knightsbridgegroup.org: could not connect to host knowledgesnap.com: did not receive HSTS header knowledgesnapsites.com: could not connect to host +kodexplorer.ml: could not connect to host kodokushi.fr: could not connect to host koen.io: did not receive HSTS header koenrouwhorst.nl: did not receive HSTS header kojipkgs.fedoraproject.org: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /builds/slave/m-cen-l64-periodicupdate-00000/getHSTSPreloadList.js :: processStsHeader :: line 121" data: no] kollabria.com: max-age too low: 0 kolozsvaricsuhe.hu: could not connect to host komikito.com: could not connect to host kompetenzwerft.de: did not receive HSTS header @@ -2392,34 +2381,32 @@ koordinate.net: could not connect to hos korni22.org: did not receive HSTS header korsanparti.org: could not connect to host kostuumstore.nl: did not receive HSTS header kostya.net: could not connect to host kotonehoko.net: could not connect to host kotovstyle.ru: could not connect to host kourpe.online: could not connect to host kr.search.yahoo.com: did not receive HSTS header -kramsj.uk: could not connect to host krayx.com: could not connect to host kreavis.com: did not receive HSTS header kredite.sale: could not connect to host kriegt.es: did not receive HSTS header -kriptosec.com: could not connect to host -kristikala.nl: could not connect to host kroetenfuchs.de: could not connect to host kropkait.pl: could not connect to host krouzkyliduska.cz: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /builds/slave/m-cen-l64-periodicupdate-00000/getHSTSPreloadList.js :: processStsHeader :: line 121" data: no] krunut.com: did not receive HSTS header krypteia.org: could not connect to host kryptomech.com: could not connect to host ksfh-mail.de: could not connect to host kstan.me: could not connect to host kswriter.com: could not connect to host kucom.it: did not receive HSTS header kueulangtahunanak.net: could not connect to host +kugelkiste.de: could not connect to host kummerlaender.eu: did not receive HSTS header kupelne-ptacek.sk: did not receive HSTS header kuppingercole.com: did not receive HSTS header kura.io: could not connect to host kurehun.org: could not connect to host kurtmclester.com: did not receive HSTS header kusaka-abacus.jp: max-age too low: 0 kweddingplanning.com: did not receive HSTS header @@ -2429,35 +2416,36 @@ kylapps.com: did not receive HSTS header kylinj.com: could not connect to host kyochon.fr: could not connect to host kz.search.yahoo.com: did not receive HSTS header kzjnet.com: could not connect to host l2guru.ru: could not connect to host labaia.info: could not connect to host labina.com.tr: did not receive HSTS header laboiteapc.fr: did not receive HSTS header -labordata.io: did not receive HSTS header +labordata.io: could not connect to host labrador-retrievers.com.au: did not receive HSTS header labs.directory: could not connect to host labs.moscow: did not receive HSTS header lachlankidson.net: did not receive HSTS header lacledeslan.ninja: could not connect to host lacocinadelila.com: did not receive HSTS header ladbroke.net: did not receive HSTS header laf.in.net: could not connect to host lagalerievirtuelle.fr: did not receive HSTS header lagoza.name: could not connect to host lambdafive.co.uk: could not connect to host lampl.info: did not receive HSTS header lancehoteis.com.br: could not connect to host landscape.canonical.com: max-age too low: 2592000 langenbach.rocks: could not connect to host langhun.me: did not receive HSTS header +lantian.pub: could not connect to host laobox.fr: could not connect to host -laozhu.me: did not receive HSTS header +laozhu.me: could not connect to host laserfuchs.de: did not receive HSTS header lashstuff.com: did not receive HSTS header lask.in: did not receive HSTS header latinred.com: could not connect to host latour-managedcare.ch: did not receive HSTS header latus.xyz: could not connect to host lausitzer-widerstand.de: did not receive HSTS header lavine.ch: did not receive HSTS header @@ -2521,16 +2509,18 @@ lianyexiuchang.in: could not connect to liaoshuma.com: could not connect to host libbitcoin.org: could not connect to host libertyrp.org: could not connect to host library.linode.com: did not receive HSTS header librechan.net: could not connect to host libscode.com: could not connect to host lidl-selection.at: could not connect to host lidow.eu: could not connect to host +liduan.com: could not connect to host +liduan.net: could not connect to host lifeguard.aecom.com: did not receive HSTS header lifeinitsownway.com: could not connect to host lifeskillsdirect.com: did not receive HSTS header lifestylehunter.co.uk: did not receive HSTS header lifetimemoneymachine.com: did not receive HSTS header lightarmory.com: could not connect to host lightpaste.com: could not connect to host lightworx.io: did not receive HSTS header @@ -2563,19 +2553,19 @@ livej.am: could not connect to host livi.co: 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 locktheirphone.com: could not connect to host locomotive.ca: did not receive HSTS header login.corp.google.com: max-age too low: 7776000 (error ignored - included regardless) loginseite.com: could not connect to host +lolidunno.com: could not connect to host lolmegafroi.de: could not connect to host lonal.com: could not connect to host -londoncalling.co: did not receive HSTS header londonlanguageexchange.com: could not connect to host look-at-my.site: could not connect to host lookout.com: did not receive HSTS header lookzook.com: did not receive HSTS header lostinsecurity.com: could not connect to host lostinweb.eu: could not connect to host lothai.re: did not receive HSTS header lotsencafe.de: did not receive HSTS header @@ -2647,32 +2637,34 @@ mahamed91.pw: could not connect to host mail-settings.google.com: did not receive HSTS header (error ignored - included regardless) mail.google.com: did not receive HSTS header (error ignored - included regardless) maildragon.com: could not connect to host mailhost.it: could not connect to host makeitdynamic.com: could not connect to host makerstuff.net: did not receive HSTS header malerversand.de: did not receive HSTS header malfait.nl: could not connect to host +maljaars-media.nl: could not connect to host malkaso.com.ua: could not connect to host maltes.website: could not connect to host malwre.io: could not connect to host mamaison.io: could not connect to host mamaxi.org: did not receive HSTS header mammothmail.com: could not connect to host mammothmail.net: could not connect to host mammothmail.org: could not connect to host managemynetsuite.com: could not connect to host maniadeprazer.com.br: could not connect to host manifestbin.com: did not receive HSTS header manningbrothers.com: did not receive HSTS header mannsolutions.co.uk: did not receive HSTS header mansion-note.com: did not receive HSTS header maomaofuli.vip: could not connect to host marchagen.nl: did not receive HSTS header +marcoececilia.it: could not connect to host marcofinke.de: could not connect to host marcontrol.com: did not receive HSTS header marcuskoh.com: did not receive HSTS header margaretrosefashions.co.uk: could not connect to host mariannematthew.com: could not connect to host marie-curie.fr: could not connect to host marie-elisabeth.dk: did not receive HSTS header mario.party: did not receive HSTS header @@ -2701,30 +2693,28 @@ matrip.de: could not connect to host matrix.ac: did not receive HSTS header matrixcheats.net: could not connect to host matsuz.com: could not connect to host mattberryman.com: did not receive HSTS header mattcoles.io: did not receive HSTS header mattfin.ch: could not connect to host matthewprenger.com: could not connect to host matthiassteen.be: max-age too low: 0 -mattia98.org: could not connect to host mattressinsider.com: max-age too low: 3153600 mattsvensson.com: did not receive HSTS header mattwb65.com: could not connect to host matty.digital: max-age too low: 3600 maultrom.ml: could not connect to host maur.cz: did not receive HSTS header mavisang.cf: could not connect to host mawe.red: could not connect to host maya.mg: could not connect to host mca2017.org: did not receive HSTS header mcc.re: could not connect to host mccarty.io: could not connect to host -mccrackon.com: could not connect to host mcdonalds.ru: did not receive HSTS header mcga.media: did not receive HSTS header mclab.su: could not connect to host mdewendt.de: could not connect to host mdfnet.se: did not receive HSTS header mdscomp.net: did not receive HSTS header mea.in.ua: could not connect to host meamod.com: did not receive HSTS header @@ -2768,17 +2758,16 @@ metebalci.com: did not receive HSTS head meteorapp.space: could not connect to host meteosky.net: could not connect to host metin2blog.de: did not receive HSTS header metis.pw: could not connect to host meuemail.pro: could not connect to host mexbt.com: could not connect to host mexicanbusinessweb.mx: did not receive HSTS header mexicansbook.ru: could not connect to host -meyercloud.de: could not connect to host mfcatalin.com: could not connect to host mfiles.pl: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /builds/slave/m-cen-l64-periodicupdate-00000/getHSTSPreloadList.js :: processStsHeader :: line 121" data: no] mh-bloemen.co.jp: could not connect to host mhdsyarif.com: did not receive HSTS header mhealthdemocamp.com: could not connect to host mhertel.com: did not receive HSTS header mhict.nl: max-age too low: 0 mht-travel.com: could not connect to host @@ -2807,21 +2796,23 @@ mikeburns.com: did not receive HSTS head mikeg.de: did not receive HSTS header mikeology.org: could not connect to host mikrom.cz: did not receive HSTS header miku.be: did not receive HSTS header miku.hatsune.my: max-age too low: 5184000 miluriel.de: did not receive HSTS header mindcraft.ga: could not connect to host mindoktor.se: did not receive HSTS header +mine.world: could not connect to host minecraftserverz.com: could not connect to host minecraftvoter.com: could not connect to host mineover.es: could not connect to host minikneet.nl: did not receive HSTS header minnesotadata.com: could not connect to host +minora.io: could not connect to host minoris.se: could not connect to host miragrow.com: could not connect to host mirindadomo.ru: did not receive HSTS header mironized.com: did not receive HSTS header mirrorx.com: did not receive HSTS header missrain.tw: could not connect to host mister.hosting: could not connect to host misterl.net: did not receive HSTS header @@ -2830,22 +2821,22 @@ mitsign.com: could not connect to host mittenhacks.com: could not connect to host mivcon.net: could not connect to host mixtape.moe: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /builds/slave/m-cen-l64-periodicupdate-00000/getHSTSPreloadList.js :: processStsHeader :: line 121" data: no] miyoshi-kikaku.co.jp: did not receive HSTS header miyoshi-kikaku.com: did not receive HSTS header mizd.at: could not connect to host mizi.name: could not connect to host mkes.com: did not receive HSTS header -mlcdn.co: could not connect to host mlpepilepsy.org: could not connect to host mmgazhomeloans.com: did not receive HSTS header mnemotiv.com: could not connect to host mnetworkingsolutions.co.uk: did not receive HSTS header moa.moe: could not connect to host +moar.so: could not connect to host mobaircon.com: could not connect to host mobifinans.ru: did not receive HSTS header mobilekey.co: could not connect to host mobilemedics.com: did not receive HSTS header mobilethreat.net: could not connect to host mobilethreatnetwork.net: could not connect to host mobilpass.no: could not connect to host mocloud.eu: could not connect to host @@ -2858,16 +2849,17 @@ moen.io: did not receive HSTS header mogry.net: did not receive HSTS header momozeit.de: could not connect to host mona.lu: did not receive HSTS header monarca.systems: could not connect to host monasterialis.eu: could not connect to host mondar.io: could not connect to host mondopoint.com: did not receive HSTS header moneytoday.com: max-age too low: 0 +monitaure.io: did not receive HSTS header monitman.com: could not connect to host monsieurbureau.com: could not connect to host montenero.pl: could not connect to host moon.lc: could not connect to host moov.is: could not connect to host moparisthebest.biz: could not connect to host moparisthebest.info: could not connect to host moparscape.org: did not receive HSTS header @@ -2901,18 +2893,18 @@ msno.no: did not receive HSTS header mszaki.com: did not receive HSTS header mt.me.uk: could not connect to host mt.search.yahoo.com: did not receive HSTS header mtcgf.com: did not receive HSTS header mtg-esport.de: could not connect to host mu.search.yahoo.com: did not receive HSTS header mudcrab.us: did not receive HSTS header mujadin.se: did not receive HSTS header -mumei.space: could not connect to host munich-rage.de: could not connect to host +munkiepus.com: did not receive HSTS header munuc.org: did not receive HSTS header munzee.com: did not receive HSTS header muriburi.land: could not connect to host muriburiland.com: could not connect to host murodese.org: could not connect to host murraycoin.org: could not connect to host murrayrun.com: could not connect to host musikkfondene.no: did not receive HSTS header @@ -2944,16 +2936,17 @@ mykreuzfahrt.de: could not connect to ho myni.io: could not connect to host mypagella.com: could not connect to host mypagella.eu: could not connect to host mypagella.it: could not connect to host mypension.ca: could not connect to host myphonebox.de: could not connect to host mysecretrewards.com: did not receive HSTS header mystery-science-theater-3000.de: did not receive HSTS header +mythslegendscollection.com: did not receive HSTS header myvirtualserver.com: max-age too low: 2592000 myzone.com: did not receive HSTS header n-soft.info: could not connect to host n0psled.nl: could not connect to host n2x.in: could not connect to host n4l.pw: could not connect to host nabru.co.uk: did not receive HSTS header nabytko.cz: could not connect to host @@ -2971,18 +2964,17 @@ nametaken-cloud.duckdns.org: could not c namorico.me: did not receive HSTS header nan.zone: could not connect to host nanogeneinc.com: could not connect to host nanto.eu: could not connect to host narada.com.ua: could not connect to host nashira.cz: did not receive HSTS header natalia-fadeeva.ru: could not connect to host natalia.io: could not connect to host -natalt.org: did not receive HSTS header -natanaelys.com: could not connect to host +natalt.org: could not connect to host nathanmfarrugia.com: did not receive HSTS header natural-progesterone.net: did not receive HSTS header naturesystems.cz: max-age too low: 0 natuurbehangnederland.nl: could not connect to host nav.jobs: could not connect to host naval.tf: could not connect to host navenlle.com: did not receive HSTS header navjobs.com: did not receive HSTS header @@ -3015,16 +3007,17 @@ netzbit.de: could not connect to host netzpolitik.org: did not receive HSTS header netztest.at: did not receive HSTS header neueonlinecasino2016.com: could not connect to host neuralgic.net: could not connect to host neutralox.com: did not receive HSTS header never-afk.de: did not receive HSTS header neveta.com: could not connect to host newcitygas.ca: could not connect to host +newgenerationplus.org: could not connect to host newhdmovies.io: did not receive HSTS header newkaliningrad.ru: did not receive HSTS header newlooknow.com: did not receive HSTS header newportpropertygroup.com: could not connect to host newtonwarp.com: could not connect to host nextcloud.org: could not connect to host nexth.de: could not connect to host nexth.net: could not connect to host @@ -3121,17 +3114,16 @@ nutleyeducationalfoundation.org: did not nutleyef.org: did not receive HSTS header nutritionculture.com: could not connect to host nutsandboltsmedia.com: did not receive HSTS header nuxer.fr: could not connect to host nwa.xyz: could not connect to host nwgh.org: max-age too low: 86400 nwork.media: could not connect to host nyantec.com: did not receive HSTS header -nyffo.com: could not connect to host nys-hk.com: could not connect to host nysepho.pw: could not connect to host nystart.no: did not receive HSTS header nz.search.yahoo.com: max-age too low: 172800 nzb.cat: max-age too low: 7776000 nzquakes.maori.nz: did not receive HSTS header o0o.one: did not receive HSTS header oasis.mobi: did not receive HSTS header @@ -3214,17 +3206,16 @@ orbiosales.com: could not connect to hos orbitcom.de: max-age too low: 0 orbograph-hrcm.com: could not connect to host ordereat.fr: could not connect to host orf-digitalsatkarte.at: could not connect to host organiplan.com: could not connect to host originpc.com: did not receive HSTS header orionfcu.com: did not receive HSTS header orleika.ml: could not connect to host -orrs.de: could not connect to host orthodoxy.lt: did not receive HSTS header osaiyuwu.com: could not connect to host oslfoundation.org: could not connect to host oslinux.net: did not receive HSTS header osp.cx: could not connect to host ossan-kobe-gourmet.com: did not receive HSTS header ossbinaries.com: could not connect to host osteammate.com: did not receive HSTS header @@ -3315,27 +3306,25 @@ payfreez.com: could not connect to host payments.google.com: did not receive HSTS header (error ignored - included regardless) payroll.ch: did not receive HSTS header pbapp.net: did not receive HSTS header pbprint.ru: max-age too low: 0 pc-nf.de: did not receive HSTS header pcfun.net: could not connect to host pchax.net: could not connect to host pchospital.cc: did not receive HSTS header -pdamsidoarjo.co.id: could not connect to host pdevio.com: could not connect to host pdf.yt: could not connect to host peakapp.nl: could not connect to host peerherrmann.de: could not connect to host peissen.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /builds/slave/m-cen-l64-periodicupdate-00000/getHSTSPreloadList.js :: processStsHeader :: line 121" data: no] pekkapikkarainen.fi: did not receive HSTS header pekkarik.ru: could not connect to host pemagrid.org: could not connect to host penguinclientsystem.com: did not receive HSTS header -pensacolawinterfest.org: could not connect to host pentandra.com: could not connect to host pentano.net: could not connect to host pepperhead.com: did not receive HSTS header pepperworldhotshop.de: did not receive HSTS header per-pedes.at: could not connect to host perfectionis.me: could not connect to host performous.org: could not connect to host perfumista.vn: did not receive HSTS header @@ -3344,17 +3333,17 @@ perplex.nl: did not receive HSTS header perroud.pro: could not connect to host personaldatabasen.no: could not connect to host personalinjurylist.com: did not receive HSTS header personalizedtouch.co: could not connect to host perthdevicelab.com: did not receive HSTS header pet-nsk.ru: could not connect to host petchart.net: could not connect to host petplum.com: did not receive HSTS header -petrachuk.ru: could not connect to host +petrachuk.ru: did not receive HSTS header petravdbos.nl: did not receive HSTS header petrolplus.ru: did not receive HSTS header petrovsky.pro: could not connect to host petsittersservices.com: could not connect to host pettsy.com: could not connect to host pewboards.com: could not connect to host pgpm.io: could not connect to host pharmgkb.org: could not connect to host @@ -3402,17 +3391,17 @@ planpharmacy.com: could not connect to h platform.lookout.com: could not connect to host play.google.com: did not receive HSTS header (error ignored - included regardless) playflick.com: did not receive HSTS header playkh.com: did not receive HSTS header playmaker.io: could not connect to host playmyplay.com: did not receive HSTS header playnation.io: could not connect to host pleier-it.de: did not receive HSTS header -pleier.it: did not receive HSTS header +pleier.it: could not connect to host plhdb.org: did not receive HSTS header plirt.ru: did not receive HSTS header plixer.com: did not receive HSTS header plogable.co: could not connect to host plombirator.kz: did not receive HSTS header plothost.com: did not receive HSTS header ploup.net: could not connect to host pluff.nl: could not connect to host @@ -3438,16 +3427,18 @@ pontualcomp.com: max-age too low: 259200 poolsandstuff.com: did not receive HSTS header poon.tech: could not connect to host porno-gif.ru: did not receive HSTS header portalplatform.net: did not receive HSTS header poshpak.com: max-age too low: 86400 postcodewise.co.uk: did not receive HSTS header postscheduler.org: could not connect to host posylka.de: did not receive HSTS header +potatofrom.space: could not connect to host +potatoheads.net: could not connect to host poussinooz.fr: could not connect to host povitria.net: could not connect to host power99press.com: did not receive HSTS header powerplannerapp.com: did not receive HSTS header powerxequality.com: could not connect to host ppr-truby.ru: could not connect to host ppy3.com: did not receive HSTS header pr.search.yahoo.com: did not receive HSTS header @@ -3473,25 +3464,26 @@ prodpad.com: did not receive HSTS header professionalboundaries.com: did not receive HSTS header profi-durchgangsmelder.de: did not receive HSTS header profpay.com: could not connect to host profundr.com: could not connect to host progblog.net: could not connect to host progg.no: could not connect to host progress-technologies.com: could not connect to host prohostonline.fi: could not connect to host +projectarmy.net: could not connect to host projectdp.net: could not connect to host projectmercury.space: could not connect to host promecon-gmbh.de: did not receive HSTS header prontocleaners.co.uk: could not connect to host prontolight.com: did not receive HSTS header prontomovers.co.uk: could not connect to host propactrading.com: could not connect to host prosocialmachines.com: could not connect to host -prosoft.sk: could not connect to host +prosoft.sk: did not receive HSTS header prosperident.com: did not receive HSTS header protoyou.de: did not receive HSTS header prowhisky.de: did not receive HSTS header proximato.com: could not connect to host proxybay.al: could not connect to host proxybay.club: could not connect to host proxybay.info: did not receive HSTS header proxybay.top: did not receive HSTS header @@ -3523,17 +3515,17 @@ qingpat.com: did not receive HSTS header qingxuan.info: max-age too low: 864000 qinxi1992.com: did not receive HSTS header qldconservation.org: could not connect to host qop.io: could not connect to host qorm.co.uk: did not receive HSTS header qrara.net: did not receive HSTS header qrlending.com: did not receive HSTS header quail.solutions: could not connect to host -quality1.com.br: could not connect to host +quality1.com.br: did not receive HSTS header quantacloud.ch: could not connect to host quantenteranik.eu: could not connect to host quantum-cloud.xyz: could not connect to host quantumcourse.org: did not receive HSTS header quebecmailbox.com: did not receive HSTS header queercoders.com: did not receive HSTS header questsandrewards.com: could not connect to host quli.nl: did not receive HSTS header @@ -3634,17 +3626,16 @@ revealdata.com: did not receive HSTS hea revello.org: did not receive HSTS header reverie.pw: could not connect to host reviews.anime.my: max-age too low: 5184000 revtut.net: did not receive HSTS header rewardstock.com: max-age too low: 0 rex.st: could not connect to host rhapsodhy.hu: could not connect to host rhdigital.pro: could not connect to host -rheocube.com: could not connect to host rhering.de: could not connect to host rhodri.io: could not connect to host richiemail.net: did not receive HSTS header richmondsunlight.com: did not receive HSTS header richsiciliano.com: could not connect to host rid-wan.com: could not connect to host rideworks.com: did not receive HSTS header riesenweber.id.au: did not receive HSTS header @@ -3668,17 +3659,17 @@ roadfeast.com: could not connect to host roan24.pl: did not receive HSTS header robertglastra.com: could not connect to host robigalia.org: did not receive HSTS header robteix.com: did not receive HSTS header robtex.net: did not receive HSTS header robtex.org: did not receive HSTS header rochman.id: could not connect to host rocksberg.net: could not connect to host -rockstarloan.com: max-age too low: 0 +rockstarloan.com: could not connect to host roddis.net: did not receive HSTS header rodney.id.au: did not receive HSTS header rodosto.com: did not receive HSTS header roeper.party: could not connect to host roesemann.email: could not connect to host rogerbastien.com: could not connect to host roguelikecenter.fr: did not receive HSTS header romans-place.me.uk: did not receive HSTS header @@ -3692,17 +3683,16 @@ rootservice.org: did not receive HSTS he rootwpn.com: could not connect to host rop.io: could not connect to host rossen.be: did not receive HSTS header rotterdamjazz.info: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /builds/slave/m-cen-l64-periodicupdate-00000/getHSTSPreloadList.js :: processStsHeader :: line 121" data: no] roundtheme.com: did not receive HSTS header rous.se: could not connect to host rout0r.org: did not receive HSTS header rouvray.org: could not connect to host -royalacademy.org.uk: could not connect to host royalpub.net: did not receive HSTS header rr.in.th: could not connect to host rrke.cc: did not receive HSTS header rsajeey.info: could not connect to host rsampaio.info: could not connect to host rsauget.fr: could not connect to host rsf.io: could not connect to host rsmaps.org: could not connect to host @@ -3874,17 +3864,16 @@ setuid0.kr: could not connect to host sexpay.net: could not connect to host seyahatsagliksigortalari.com: could not connect to host sfsltd.com: did not receive HSTS header shadoom.com: did not receive HSTS header shadowmorph.info: did not receive HSTS header shadowsocks.net: could not connect to host shakepeers.org: did not receive HSTS header shanesage.com: could not connect to host -shang-yu.cn: did not receive HSTS header shareimg.xyz: could not connect to host sharepass.pw: could not connect to host shauncrowley.co.uk: could not connect to host shaunwheelhou.se: could not connect to host shawnh.net: could not connect to host shellsec.pw: did not receive HSTS header shereallyheals.com: could not connect to host shibe.club: could not connect to host @@ -3902,16 +3891,17 @@ shoprose.ru: could not connect to host shops.neonisi.com: could not connect to host shortr.li: could not connect to host showkeeper.tv: did not receive HSTS header shu-kin.net: could not connect to host shukatsu-note.com: could not connect to host shv25.se: could not connect to host shwongacc.com: could not connect to host shyrydan.es: could not connect to host +si.to: could not connect to host siammedia.co: could not connect to host siciliadigitale.pro: could not connect to host siddhant.me: could not connect to host siebens.net: could not connect to host sifls.com: could not connect to host sig6.org: could not connect to host sigterm.no: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /builds/slave/m-cen-l64-periodicupdate-00000/getHSTSPreloadList.js :: processStsHeader :: line 121" data: no] silentcircle.com: did not receive HSTS header @@ -3928,30 +3918,30 @@ simod.org: could not connect to host simon.butcher.name: max-age too low: 2629743 simongong.net: did not receive HSTS header simpleai.net: max-age too low: 600 simplefraud.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /builds/slave/m-cen-l64-periodicupdate-00000/getHSTSPreloadList.js :: processStsHeader :: line 121" data: no] simplelearner.com: could not connect to host simplepractice.com: did not receive HSTS header simply-premium.com: max-age too low: 0 sin30.net: could not connect to host -sinatrafamily.com: did not receive HSTS header sincron.org: could not connect to host sinful.pw: could not connect to host sinfulforums.net: could not connect to host singul4rity.com: could not connect to host sinosky.org: could not connect to host siraweb.org: did not receive HSTS header siriad.com: could not connect to host sirius-lee.net: could not connect to host 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) sitesten.com: could not connect to host sixtwentyten.com: did not receive HSTS header +skhosting.eu: did not receive HSTS header ski-insurance.com.au: could not connect to host skidstresser.com: could not connect to host skile.ru: could not connect to host skillseo.com: could not connect to host skk.io: could not connect to host skoda-clever-lead.de: could not connect to host skoda-im-dialog.de: could not connect to host skotty.io: did not receive HSTS header @@ -4007,34 +3997,31 @@ soci.ml: did not receive HSTS header socialbillboard.com: could not connect to host socialdevelop.biz: max-age too low: 604800 socialhams.net: did not receive HSTS header socialhead.io: could not connect to host socialspirit.com.br: did not receive HSTS header sockeye.cc: could not connect to host socomponents.co.uk: did not receive HSTS header sodacore.com: could not connect to host -sodiao.cc: could not connect to host sogeek.me: did not receive HSTS header sol-3.de: did not receive HSTS header solidfuelappliancespares.co.uk: did not receive HSTS header solinter.com.br: did not receive HSTS header solit.systems: did not receive HSTS header soll-i.ch: did not receive HSTS header solsystems.ru: could not connect to host someshit.xyz: could not connect to host somethingnew.xyz: could not connect to host sonicrainboom.rocks: could not connect to host soobi.org: did not receive HSTS header soondy.com: did not receive HSTS header -sortaweird.net: could not connect to host sotor.de: did not receive HSTS header soulema.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /builds/slave/m-cen-l64-periodicupdate-00000/getHSTSPreloadList.js :: processStsHeader :: line 121" data: no] soulfulglamour.uk: could not connect to host -sour.is: did not receive HSTS header sourcelair.com: did not receive HSTS header southgale.condos: could not connect to host southside-crew.club: could not connect to host southworcestershiregpservices.co.uk: could not connect to host souyar.de: could not connect to host souyar.net: could not connect to host souyar.us: could not connect to host sovereignshare.com: could not connect to host @@ -4043,52 +4030,52 @@ spacehq.org: could not connect to host spaggel.nl: could not connect to host sparelib.com: max-age too low: 3650 spark.team: could not connect to host sparkbase.cn: could not connect to host sparklingsparklers.com: did not receive HSTS header sparsa.army: could not connect to host spartantheatre.org: max-age too low: 172800 spauted.com: could not connect to host -spaysy.com: could not connect to host spdysync.com: could not connect to host speculor.net: could not connect to host speed-mailer.com: could not connect to host speedcounter.net: did not receive HSTS header speedtest-russia.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /builds/slave/m-cen-l64-periodicupdate-00000/getHSTSPreloadList.js :: processStsHeader :: line 121" data: no] speedy.lt: max-age too low: 0 speedyprep.com: did not receive HSTS header speidel.com.tr: did not receive HSTS header spencerbaer.com: could not connect to host sperohub.io: could not connect to host spherenix.org: could not connect to host spicydog.tk: did not receive HSTS header spiegels.nl: could not connect to host -spielcasinos.com: could not connect to host spikeykc.me: did not receive HSTS header spillmaker.no: did not receive HSTS header spilsbury.io: could not connect to host spititout.it: could not connect to host spittersberger.recipes: did not receive HSTS header sponsortobias.com: did not receive HSTS header +sporttrampen.de: could not connect to host sportwette.eu: did not receive HSTS header spot-events.com: could not connect to host spotifyripper.tk: could not connect to host spotlightsrule.ddns.net: could not connect to host spr.id.au: did not receive HSTS header spreadsheets.google.com: did not receive HSTS header (error ignored - included regardless) sproutconnections.com: did not receive HSTS header sprybear.com: did not receive HSTS header square.gs: could not connect to host squatldf.org: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /builds/slave/m-cen-l64-periodicupdate-00000/getHSTSPreloadList.js :: processStsHeader :: line 121" data: no] sqzryang.com: did not receive HSTS header srevilak.net: did not receive HSTS header srna.sk: could not connect to host srrr.ca: could not connect to host ss.wtf: could not connect to host +ssl.md: could not connect to host ssl.panoramio.com: did not receive HSTS header ssl.rip: could not connect to host ssmato.me: could not connect to host ssnc.org: max-age too low: 300 sss3s.com: could not connect to host ssworld.ga: could not connect to host stabletoken.com: could not connect to host stadjerspasonline.nl: could not connect to host @@ -4171,16 +4158,17 @@ subtitle.rip: could not connect to host succ.in: could not connect to host sudo.li: did not receive HSTS header suian.or.jp: max-age too low: 86400 suite73.org: could not connect to host suksit.com: could not connect to host sumoatm.com: did not receive HSTS header sumoscout.de: did not receive HSTS header suncountrymarine.com: did not receive HSTS header +sunflyer.cn: did not receive HSTS header sunnyfruit.ru: did not receive HSTS header sunshinepress.org: could not connect to host supcro.com: could not connect to host superbabysitting.ch: could not connect to host superbike.tw: could not connect to host supereight.net: did not receive HSTS header superiorfloridavacation.com: did not receive HSTS header supersalescontest.nl: did not receive HSTS header @@ -4282,16 +4270,17 @@ telefonnummer.online: could not connect telefoonnummerinfo.nl: could not connect to host telescam.com: could not connect to host temehu.com: did not receive HSTS header tempcraft.net: could not connect to host tendertool.nl: could not connect to host tenni.xyz: could not connect to host tensei-slime.com: did not receive HSTS header tensionup.com: could not connect to host +tentins.com: could not connect to host teos.online: could not connect to host teriiphotography.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /builds/slave/m-cen-l64-periodicupdate-00000/getHSTSPreloadList.js :: processStsHeader :: line 121" data: no] terra.by: did not receive HSTS header terrax.berlin: could not connect to host terrax.info: could not connect to host testandroid.xyz: could not connect to host testbawks.com: did not receive HSTS header testnode.xyz: could not connect to host @@ -4305,48 +4294,45 @@ tf2stadium.com: did not receive HSTS hea tfcoms-sp-tracker-client.azurewebsites.net: could not connect to host tffans.com: could not connect to host tfl.lu: did not receive HSTS header tgr.re: could not connect to host thagki9.com: could not connect to host thai.land: could not connect to host thaihostcool.com: max-age too low: 0 thailandpropertylistings.com: did not receive HSTS header -thalgott.net: could not connect to host the-construct.com: could not connect to host the-sky-of-valkyries.com: could not connect to host theamateurs.net: did not receive HSTS header theater.cf: could not connect to host theberkshirescompany.com: did not receive HSTS header thebigfail.net: could not connect to host thebrotherswarde.com: could not connect to host thecapitalbank.com: did not receive HSTS header thecharlestonwaldorf.com: did not receive HSTS header theclementinebutchers.com: could not connect to host theclubjersey.com: did not receive HSTS header thecoffeehouse.xyz: could not connect to host thediaryofadam.com: did not receive HSTS header theendofzion.com: did not receive HSTS header theescapistswiki.com: could not connect to host theeyeopener.com: did not receive HSTS header -thefarbeyond.com: could not connect to host theflowerbasketonline.com: could not connect to host thefootballanalyst.com: could not connect to host thefrozenfire.com: did not receive HSTS header thegcccoin.com: did not receive HSTS header thego2swatking.com: could not connect to host thehiddenbay.eu: could not connect to host thehiddenbay.me: could not connect to host thehiddenbay.net: 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 theinvisibletrailer.com: could not connect to host themarble.co: could not connect to host -themecraft.studio: 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 :: /builds/slave/m-cen-l64-periodicupdate-00000/getHSTSPreloadList.js :: processStsHeader :: line 121" data: no] themicrocapital.com: could not connect to host themillerslive.com: could not connect to host themoderate.xyz: could not connect to host theodorejones.info: could not connect to host thepartywarehouse.co.uk: did not receive HSTS header thepiratebay.al: could not connect to host thepiratebay.tech: could not connect to host @@ -4403,16 +4389,17 @@ tipsyk.ru: could not connect to host tirex.media: did not receive HSTS header titanleaf.com: could not connect to host titouan.co: did not receive HSTS header tittelbach.at: did not receive HSTS header titties.ml: could not connect to host tjc.wiki: could not connect to host tkappertjedemetamorfose.nl: could not connect to host tkarstens.de: did not receive HSTS header +tlach.cz: did not receive HSTS header tlo.hosting: could not connect to host tlo.link: did not receive HSTS header tlo.network: could not connect to host tloxygen.com: did not receive HSTS header tls.li: could not connect to host tm-solutions.eu: did not receive HSTS header tmaward.net: could not connect to host tmitchell.io: could not connect to host @@ -4429,16 +4416,17 @@ todobazar.es: could not connect to host togelonlinecommunity.com: did not receive HSTS header tollmanz.com: did not receive HSTS header tomask.info: max-age too low: 86400 tomeara.net: could not connect to host tomharris.tech: did not receive HSTS header tomlankhorst.nl: did not receive HSTS header tommsy.com: did not receive HSTS header tommyads.com: could not connect to host +tonabor.ru: 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 :: /builds/slave/m-cen-l64-periodicupdate-00000/getHSTSPreloadList.js :: processStsHeader :: line 121" data: no] tonyfantjr.com: could not connect to host tonyw.xyz: could not connect to host toomanypillows.com: could not connect to host toool.org: did not receive HSTS header top-stage.net: could not connect to host topbargains.com.au: did not receive HSTS header topdeskdev.net: could not connect to host @@ -4512,40 +4500,43 @@ twinkseason.xyz: could not connect to ho twist.party: could not connect to host twogo.com: did not receive HSTS header twolinepassbrewing.com: could not connect to host tx041cap.org: did not receive HSTS header txclimbers.com: could not connect to host txf.pw: could not connect to host ty2u.com: did not receive HSTS header tylian.net: max-age too low: 0 +typingrevolution.com: did not receive HSTS header tyrelius.com: did not receive HSTS header tyroproducts.eu: did not receive HSTS header tzappa.net: could not connect to host u-blox.com: max-age too low: 0 ua.search.yahoo.com: did not receive HSTS header uadp.pw: did not receive HSTS header ubicloud.de: could not connect to host ubicv.com: could not connect to host ublox.com: did not receive HSTS header ubuntuhot.com: did not receive HSTS header +ucfirst.nl: could not connect to host uega.net: did not receive HSTS header ufgaming.com: did not receive HSTS header ufotable.uk: did not receive HSTS header ui8.net: max-age too low: 86400 ukas.com: did not receive HSTS header ukdropshipment.co.uk: did not receive HSTS header ukdropshipment.com: did not receive HSTS header ukrgadget.com: could not connect to host ulabox.cat: did not receive HSTS header ulabox.es: did not receive HSTS header ulmo.dk: could not connect to host ultros.io: did not receive HSTS header umidev.com: did not receive HSTS header umie.cc: did not receive HSTS header +unapp.me: did not receive HSTS header unbanthe.net: could not connect to host unblocked-networks.org: could not connect to host unblocked.host: could not connect to host unblocked.today: did not receive HSTS header unblocked.win: could not connect to host unblocked.works: did not receive HSTS header unblocked.world: did not receive HSTS header unccdesign.club: could not connect to host @@ -4597,33 +4588,36 @@ utumno.ch: could not connect to host utvbloggen.se: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /builds/slave/m-cen-l64-periodicupdate-00000/getHSTSPreloadList.js :: processStsHeader :: line 121" data: no] uvarov.pw: did not receive HSTS header uy.search.yahoo.com: did not receive HSTS header uz.search.yahoo.com: did not receive HSTS header uzmandroid.net: could not connect to host uzmandroid.top: could not connect to host v2.pw: did not receive HSTS header v4veedu.com: could not connect to host +v7.cl: could not connect to host vaddder.com: could not connect to host +valentin-sundermann.de: could not connect to host valethound.com: could not connect to host valis.sx: could not connect to host valkyrja.xyz: did not receive HSTS header valleyridgepta.org: could not connect to host -vallis.net: did not receive HSTS header +vallis.net: could not connect to host valmagus.com: could not connect to host vampirism.eu: could not connect to host vanacht.co.za: did not receive HSTS header vanderkley.it: could not connect to host vanderstraeten.dynv6.net: could not connect to host vanestack.com: could not connect to host vanetv.com: could not connect to host vanitas.xyz: could not connect to host vanitynailworkz.com: could not connect to host vansieleghem.com: could not connect to host vasanth.org: did not receive HSTS header +vavouchers.com: could not connect to host vbulletin-russia.com: could not connect to host vbulletinrussia.com: could not connect to host vcdove.com: did not receive HSTS header vcr.re: could not connect to host veblen.com: could not connect to host vechkasov.ru: did not receive HSTS header vehent.org: did not receive HSTS header vemokin.net: did not receive HSTS header @@ -4661,17 +4655,16 @@ vipnettikasinoklubi.com: did not receive virginiacrimeanalysisnetwork.org: did not receive HSTS header visiontree-beta.eu: could not connect to host visitbroadstairs.com: could not connect to host vissanum.com: did not receive HSTS header vistarait.com: did not receive HSTS header vitagenda.nl: could not connect to host vitalorange.com: did not receive HSTS header viva-french.com: did not receive HSTS header -vivocloud.com: did not receive HSTS header vlastimilburian.cz: did not receive HSTS header vlora.city: could not connect to host vm0.eu: did not receive HSTS header vmrdev.com: could not connect to host voceinveste.com: did not receive HSTS header vodpay.net: could not connect to host vodpay.org: could not connect to host voicesuk.co.uk: did not receive HSTS header @@ -4880,18 +4873,16 @@ xavierbarroso.com: could not connect to xcoop.me: could not connect to host xellos.ga: could not connect to host xellos.ml: could not connect to host xendo.net: could not connect to host xenesisziarovky.sk: could not connect to host xett.com: did not receive HSTS header xf-liam.com: did not receive HSTS header xfive.de: did not receive HSTS header -xfix.pw: could not connect to host -xia100.xyz: did not receive HSTS header xiaody.me: could not connect to host xiaolvmu.me: could not connect to host xiaoxiao.im: could not connect to host ximens.me: did not receive HSTS header xisa.it: could not connect to host xiyu.moe: could not connect to host xmppwocky.net: could not connect to host xn--3lqt7ir4md4tzwa.cn: did not receive HSTS header @@ -4917,25 +4908,24 @@ xn--neb-tma3u8u.xyz: could not connect t xn--seelenwchter-mcb.eu: could not connect to host xn--werner-schffer-fib.de: could not connect to host xn--yoamomisuasbcn-ynb.com: could not connect to host xnode.org: did not receive HSTS header xobox.me: could not connect to host xoffy.com: did not receive HSTS header xombra.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /builds/slave/m-cen-l64-periodicupdate-00000/getHSTSPreloadList.js :: processStsHeader :: line 121" data: no] xpi.fr: could not connect to host -xqin.net: could not connect to host xsmobile.de: could not connect to host 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 xuri.me: max-age too low: 2592000 xuwei.de: could not connect to host -xuyh0120.win: did not receive HSTS header +xuyh0120.win: could not connect to host xxbase.com: could not connect to host y-o-w.com: did not receive HSTS header y-s.pw: max-age too low: 0 yabrt.cn: could not connect to host yagi2.com: could not connect to host yalook.com: did not receive HSTS header yamamo10.com: could not connect to host yanwh.xyz: could not connect to host @@ -5000,17 +4990,16 @@ zehntner.ch: could not connect to host zelezny.uk: did not receive HSTS header zelfstandigemakelaars.net: could not connect to host zenpayroll.com: did not receive HSTS header zentraler-kreditausschuss.de: did not receive HSTS header zentralwolke.de: did not receive HSTS header zera.com.au: could not connect to host zeroday.sk: did not receive HSTS header zerolab.org: could not connect to host -zertif.info: could not connect to host zerudi.com: did not receive HSTS header zett4.me: could not connect to host zeytin.pro: could not connect to host zh.search.yahoo.com: did not receive HSTS header zhangsir.net: could not connect to host zhaojin97.cn: did not receive HSTS header zhendingresources.com: could not connect to host zinenapse.info: could not connect to host
--- a/security/manager/ssl/nsSTSPreloadList.inc +++ b/security/manager/ssl/nsSTSPreloadList.inc @@ -3,17 +3,17 @@ * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ /*****************************************************************************/ /* This is an automatically generated file. If you're not */ /* nsSiteSecurityService.cpp, you shouldn't be #including it. */ /*****************************************************************************/ #include <stdint.h> -const PRTime gPreloadListExpirationTime = INT64_C(1499615667191000); +const PRTime gPreloadListExpirationTime = INT64_C(1499699919810000); static const char kSTSHostTable[] = { /* "0.me.uk", true */ '0', '.', 'm', 'e', '.', 'u', 'k', '\0', /* "007-preisvergleich.de", true */ '0', '0', '7', '-', 'p', 'r', 'e', 'i', 's', 'v', 'e', 'r', 'g', 'l', 'e', 'i', 'c', 'h', '.', 'd', 'e', '\0', /* "0100dev.com", true */ '0', '1', '0', '0', 'd', 'e', 'v', '.', 'c', 'o', 'm', '\0', /* "0100dev.nl", true */ '0', '1', '0', '0', 'd', 'e', 'v', '.', 'n', 'l', '\0', /* "01electronica.com.ar", true */ '0', '1', 'e', 'l', 'e', 'c', 't', 'r', 'o', 'n', 'i', 'c', 'a', '.', 'c', 'o', 'm', '.', 'a', 'r', '\0', /* "01seguridad.com.ar", true */ '0', '1', 's', 'e', 'g', 'u', 'r', 'i', 'd', 'a', 'd', '.', 'c', 'o', 'm', '.', 'a', 'r', '\0', @@ -93,17 +93,16 @@ static const char kSTSHostTable[] = { /* "1a-diamantscheiben.de", true */ '1', 'a', '-', 'd', 'i', 'a', 'm', 'a', 'n', 't', 's', 'c', 'h', 'e', 'i', 'b', 'e', 'n', '.', 'd', 'e', '\0', /* "1a-vermessung.at", true */ '1', 'a', '-', 'v', 'e', 'r', 'm', 'e', 's', 's', 'u', 'n', 'g', '.', 'a', 't', '\0', /* "1a-werkstattgeraete.de", true */ '1', 'a', '-', 'w', 'e', 'r', 'k', 's', 't', 'a', 't', 't', 'g', 'e', 'r', 'a', 'e', 't', 'e', '.', 'd', 'e', '\0', /* "1atic.com", true */ '1', 'a', 't', 'i', 'c', '.', 'c', 'o', 'm', '\0', /* "1co-jp.net", true */ '1', 'c', 'o', '-', 'j', 'p', '.', 'n', 'e', 't', '\0', /* "1cover.co.nz", true */ '1', 'c', 'o', 'v', 'e', 'r', '.', 'c', 'o', '.', 'n', 'z', '\0', /* "1cover.com", true */ '1', 'c', 'o', 'v', 'e', 'r', '.', 'c', 'o', 'm', '\0', /* "1cover.com.au", true */ '1', 'c', 'o', 'v', 'e', 'r', '.', 'c', 'o', 'm', '.', 'a', 'u', '\0', - /* "1e9.nl", true */ '1', 'e', '9', '.', 'n', 'l', '\0', /* "1hourproofreading.com", true */ '1', 'h', 'o', 'u', 'r', 'p', 'r', 'o', 'o', 'f', 'r', 'e', 'a', 'd', 'i', 'n', 'g', '.', 'c', 'o', 'm', '\0', /* "1item.co.il", true */ '1', 'i', 't', 'e', 'm', '.', 'c', 'o', '.', 'i', 'l', '\0', /* "1js.de", true */ '1', 'j', 's', '.', 'd', 'e', '\0', /* "1k8b.com", true */ '1', 'k', '8', 'b', '.', 'c', 'o', 'm', '\0', /* "1kando.com", true */ '1', 'k', 'a', 'n', 'd', 'o', '.', 'c', 'o', 'm', '\0', /* "1km.ro", true */ '1', 'k', 'm', '.', 'r', 'o', '\0', /* "1on1on1.de", true */ '1', 'o', 'n', '1', 'o', 'n', '1', '.', 'd', 'e', '\0', /* "1on1on1.tv", true */ '1', 'o', 'n', '1', 'o', 'n', '1', '.', 't', 'v', '\0', @@ -306,16 +305,17 @@ static const char kSTSHostTable[] = { /* "abmgood.com", false */ 'a', 'b', 'm', 'g', 'o', 'o', 'd', '.', 'c', 'o', 'm', '\0', /* "abnerchou.me", true */ 'a', 'b', 'n', 'e', 'r', 'c', 'h', 'o', 'u', '.', 'm', 'e', '\0', /* "abolitionism.com", true */ 'a', 'b', 'o', 'l', 'i', 't', 'i', 'o', 'n', 'i', 's', 'm', '.', 'c', 'o', 'm', '\0', /* "abolitionist-society.com", true */ 'a', 'b', 'o', 'l', 'i', 't', 'i', 'o', 'n', 'i', 's', 't', '-', 's', 'o', 'c', 'i', 'e', 't', 'y', '.', 'c', 'o', 'm', '\0', /* "abolitionist.com", true */ 'a', 'b', 'o', 'l', 'i', 't', 'i', 'o', 'n', 'i', 's', 't', '.', 'c', 'o', 'm', '\0', /* "abou.to", false */ 'a', 'b', 'o', 'u', '.', 't', 'o', '\0', /* "about.ge", true */ 'a', 'b', 'o', 'u', 't', '.', 'g', 'e', '\0', /* "aboutassistedliving.org", true */ 'a', 'b', 'o', 'u', 't', 'a', 's', 's', 'i', 's', 't', 'e', 'd', 'l', 'i', 'v', 'i', 'n', 'g', '.', 'o', 'r', 'g', '\0', + /* "abrilect.com", true */ 'a', 'b', 'r', 'i', 'l', 'e', 'c', 't', '.', 'c', 'o', 'm', '\0', /* "abseits.org", true */ 'a', 'b', 's', 'e', 'i', 't', 's', '.', 'o', 'r', 'g', '\0', /* "absolem.cc", true */ 'a', 'b', 's', 'o', 'l', 'e', 'm', '.', 'c', 'c', '\0', /* "abstraction21.com", true */ 'a', 'b', 's', 't', 'r', 'a', 'c', 't', 'i', 'o', 'n', '2', '1', '.', 'c', 'o', 'm', '\0', /* "absynthe-inquisition.fr", true */ 'a', 'b', 's', 'y', 'n', 't', 'h', 'e', '-', 'i', 'n', 'q', 'u', 'i', 's', 'i', 't', 'i', 'o', 'n', '.', 'f', 'r', '\0', /* "abt.de", true */ 'a', 'b', 't', '.', 'd', 'e', '\0', /* "abthorpe.org", true */ 'a', 'b', 't', 'h', 'o', 'r', 'p', 'e', '.', 'o', 'r', 'g', '\0', /* "abulanov.com", true */ 'a', 'b', 'u', 'l', 'a', 'n', 'o', 'v', '.', 'c', 'o', 'm', '\0', /* "abuse.io", true */ 'a', 'b', 'u', 's', 'e', '.', 'i', 'o', '\0', @@ -1297,17 +1297,16 @@ static const char kSTSHostTable[] = { /* "aussiecable.org", true */ 'a', 'u', 's', 's', 'i', 'e', 'c', 'a', 'b', 'l', 'e', '.', 'o', 'r', 'g', '\0', /* "aussiehq.com.au", true */ 'a', 'u', 's', 's', 'i', 'e', 'h', 'q', '.', 'c', 'o', 'm', '.', 'a', 'u', '\0', /* "australian.dating", true */ 'a', 'u', 's', 't', 'r', 'a', 'l', 'i', 'a', 'n', '.', 'd', 'a', 't', 'i', 'n', 'g', '\0', /* "australiancattle.dog", true */ 'a', 'u', 's', 't', 'r', 'a', 'l', 'i', 'a', 'n', 'c', 'a', 't', 't', 'l', 'e', '.', 'd', 'o', 'g', '\0', /* "auszeit.bio", true */ 'a', 'u', 's', 'z', 'e', 'i', 't', '.', 'b', 'i', 'o', '\0', /* "auth.adult", true */ 'a', 'u', 't', 'h', '.', 'a', 'd', 'u', 'l', 't', '\0', /* "authint.com", true */ 'a', 'u', 't', 'h', 'i', 'n', 't', '.', 'c', 'o', 'm', '\0', /* "author24.ru", true */ 'a', 'u', 't', 'h', 'o', 'r', '2', '4', '.', 'r', 'u', '\0', - /* "autimatisering.nl", true */ 'a', 'u', 't', 'i', 'm', 'a', 't', 'i', 's', 'e', 'r', 'i', 'n', 'g', '.', 'n', 'l', '\0', /* "auto-anleitung.de", true */ 'a', 'u', 't', 'o', '-', 'a', 'n', 'l', 'e', 'i', 't', 'u', 'n', 'g', '.', 'd', 'e', '\0', /* "autoauctionsohio.com", true */ 'a', 'u', 't', 'o', 'a', 'u', 'c', 't', 'i', 'o', 'n', 's', 'o', 'h', 'i', 'o', '.', 'c', 'o', 'm', '\0', /* "autoauctionsvirginia.com", true */ 'a', 'u', 't', 'o', 'a', 'u', 'c', 't', 'i', 'o', 'n', 's', 'v', 'i', 'r', 'g', 'i', 'n', 'i', 'a', '.', 'c', 'o', 'm', '\0', /* "autodalmacija.com", true */ 'a', 'u', 't', 'o', 'd', 'a', 'l', 'm', 'a', 'c', 'i', 'j', 'a', '.', 'c', 'o', 'm', '\0', /* "autoeet.cz", true */ 'a', 'u', 't', 'o', 'e', 'e', 't', '.', 'c', 'z', '\0', /* "autoentrepreneurinfo.com", true */ 'a', 'u', 't', 'o', 'e', 'n', 't', 'r', 'e', 'p', 'r', 'e', 'n', 'e', 'u', 'r', 'i', 'n', 'f', 'o', '.', 'c', 'o', 'm', '\0', /* "autoledky.sk", true */ 'a', 'u', 't', 'o', 'l', 'e', 'd', 'k', 'y', '.', 's', 'k', '\0', /* "automacity.com", true */ 'a', 'u', 't', 'o', 'm', 'a', 'c', 'i', 't', 'y', '.', 'c', 'o', 'm', '\0', @@ -1329,17 +1328,16 @@ static const char kSTSHostTable[] = { /* "avadatravel.com", true */ 'a', 'v', 'a', 'd', 'a', 't', 'r', 'a', 'v', 'e', 'l', '.', 'c', 'o', 'm', '\0', /* "avalon-island.ru", true */ 'a', 'v', 'a', 'l', 'o', 'n', '-', 'i', 's', 'l', 'a', 'n', 'd', '.', 'r', 'u', '\0', /* "avanovum.de", true */ 'a', 'v', 'a', 'n', 'o', 'v', 'u', 'm', '.', 'd', 'e', '\0', /* "avantmfg.com", true */ 'a', 'v', 'a', 'n', 't', 'm', 'f', 'g', '.', 'c', 'o', 'm', '\0', /* "avaq.fr", true */ 'a', 'v', 'a', 'q', '.', 'f', 'r', '\0', /* "avarty.com", true */ 'a', 'v', 'a', 'r', 't', 'y', '.', 'c', 'o', 'm', '\0', /* "avarty.net", true */ 'a', 'v', 'a', 'r', 't', 'y', '.', 'n', 'e', 't', '\0', /* "avastantivirus.ro", true */ 'a', 'v', 'a', 's', 't', 'a', 'n', 't', 'i', 'v', 'i', 'r', 'u', 's', '.', 'r', 'o', '\0', - /* "avdagic.net", true */ 'a', 'v', 'd', 'a', 'g', 'i', 'c', '.', 'n', 'e', 't', '\0', /* "avdelivers.com", true */ 'a', 'v', 'd', 'e', 'l', 'i', 'v', 'e', 'r', 's', '.', 'c', 'o', 'm', '\0', /* "ave.zone", true */ 'a', 'v', 'e', '.', 'z', 'o', 'n', 'e', '\0', /* "avenueeyecare.com", true */ 'a', 'v', 'e', 'n', 'u', 'e', 'e', 'y', 'e', 'c', 'a', 'r', 'e', '.', 'c', 'o', 'm', '\0', /* "avg.club", true */ 'a', 'v', 'g', '.', 'c', 'l', 'u', 'b', '\0', /* "avi9526.pp.ua", true */ 'a', 'v', 'i', '9', '5', '2', '6', '.', 'p', 'p', '.', 'u', 'a', '\0', /* "aviationstrategy.aero", true */ 'a', 'v', 'i', 'a', 't', 'i', 'o', 'n', 's', 't', 'r', 'a', 't', 'e', 'g', 'y', '.', 'a', 'e', 'r', 'o', '\0', /* "aviodeals.com", true */ 'a', 'v', 'i', 'o', 'd', 'e', 'a', 'l', 's', '.', 'c', 'o', 'm', '\0', /* "avmemo.com", true */ 'a', 'v', 'm', 'e', 'm', 'o', '.', 'c', 'o', 'm', '\0', @@ -1399,16 +1397,17 @@ static const char kSTSHostTable[] = { /* "b2bmuzikbank.com", true */ 'b', '2', 'b', 'm', 'u', 'z', 'i', 'k', 'b', 'a', 'n', 'k', '.', 'c', 'o', 'm', '\0', /* "b303.me", true */ 'b', '3', '0', '3', '.', 'm', 'e', '\0', /* "b422edu.com", true */ 'b', '4', '2', '2', 'e', 'd', 'u', '.', 'c', 'o', 'm', '\0', /* "baalsworld.de", true */ 'b', 'a', 'a', 'l', 's', 'w', 'o', 'r', 'l', 'd', '.', 'd', 'e', '\0', /* "baas-becking.biology.utah.edu", true */ 'b', 'a', 'a', 's', '-', 'b', 'e', 'c', 'k', 'i', 'n', 'g', '.', 'b', 'i', 'o', 'l', 'o', 'g', 'y', '.', 'u', 't', 'a', 'h', '.', 'e', 'd', 'u', '\0', /* "babacasino.net", true */ 'b', 'a', 'b', 'a', 'c', 'a', 's', 'i', 'n', 'o', '.', 'n', 'e', 't', '\0', /* "babak.de", false */ 'b', 'a', 'b', 'a', 'k', '.', 'd', 'e', '\0', /* "babarkata.com", true */ 'b', 'a', 'b', 'a', 'r', 'k', 'a', 't', 'a', '.', 'c', 'o', 'm', '\0', + /* "babelfisch.eu", true */ 'b', 'a', 'b', 'e', 'l', 'f', 'i', 's', 'c', 'h', '.', 'e', 'u', '\0', /* "babettelandmesser.de", true */ 'b', 'a', 'b', 'e', 't', 't', 'e', 'l', 'a', 'n', 'd', 'm', 'e', 's', 's', 'e', 'r', '.', 'd', 'e', '\0', /* "babybee.ie", true */ 'b', 'a', 'b', 'y', 'b', 'e', 'e', '.', 'i', 'e', '\0', /* "babyboom.pl", true */ 'b', 'a', 'b', 'y', 'b', 'o', 'o', 'm', '.', 'p', 'l', '\0', /* "babycs.house", true */ 'b', 'a', 'b', 'y', 'c', 's', '.', 'h', 'o', 'u', 's', 'e', '\0', /* "babyfotograf-schweiz.ch", true */ 'b', 'a', 'b', 'y', 'f', 'o', 't', 'o', 'g', 'r', 'a', 'f', '-', 's', 'c', 'h', 'w', 'e', 'i', 'z', '.', 'c', 'h', '\0', /* "babypibu.com", true */ 'b', 'a', 'b', 'y', 'p', 'i', 'b', 'u', '.', 'c', 'o', 'm', '\0', /* "babystep.tv", true */ 'b', 'a', 'b', 'y', 's', 't', 'e', 'p', '.', 't', 'v', '\0', /* "bacgrouppublishing.com", true */ 'b', 'a', 'c', 'g', 'r', 'o', 'u', 'p', 'p', 'u', 'b', 'l', 'i', 's', 'h', 'i', 'n', 'g', '.', 'c', 'o', 'm', '\0', @@ -1602,16 +1601,17 @@ static const char kSTSHostTable[] = { /* "bedlingtonterrier.com.br", true */ 'b', 'e', 'd', 'l', 'i', 'n', 'g', 't', 'o', 'n', 't', 'e', 'r', 'r', 'i', 'e', 'r', '.', 'c', 'o', 'm', '.', 'b', 'r', '\0', /* "beehive42.com", true */ 'b', 'e', 'e', 'h', 'i', 'v', 'e', '4', '2', '.', 'c', 'o', 'm', '\0', /* "beehive42.eu", true */ 'b', 'e', 'e', 'h', 'i', 'v', 'e', '4', '2', '.', 'e', 'u', '\0', /* "beehive42.net", true */ 'b', 'e', 'e', 'h', 'i', 'v', 'e', '4', '2', '.', 'n', 'e', 't', '\0', /* "beehive42.nl", true */ 'b', 'e', 'e', 'h', 'i', 'v', 'e', '4', '2', '.', 'n', 'l', '\0', /* "beehive42.org", true */ 'b', 'e', 'e', 'h', 'i', 'v', 'e', '4', '2', '.', 'o', 'r', 'g', '\0', /* "beehosting.pro", true */ 'b', 'e', 'e', 'h', 'o', 's', 't', 'i', 'n', 'g', '.', 'p', 'r', 'o', '\0', /* "beekbier.nl", true */ 'b', 'e', 'e', 'k', 'b', 'i', 'e', 'r', '.', 'n', 'l', '\0', + /* "beeksnetwork.nl", true */ 'b', 'e', 'e', 'k', 's', 'n', 'e', 't', 'w', 'o', 'r', 'k', '.', 'n', 'l', '\0', /* "beepan.com", false */ 'b', 'e', 'e', 'p', 'a', 'n', '.', 'c', 'o', 'm', '\0', /* "beercandle.com", true */ 'b', 'e', 'e', 'r', 'c', 'a', 'n', 'd', 'l', 'e', '.', 'c', 'o', 'm', '\0', /* "beergazetteer.com", true */ 'b', 'e', 'e', 'r', 'g', 'a', 'z', 'e', 't', 't', 'e', 'e', 'r', '.', 'c', 'o', 'm', '\0', /* "beerians.com", true */ 'b', 'e', 'e', 'r', 'i', 'a', 'n', 's', '.', 'c', 'o', 'm', '\0', /* "beerradar.no", true */ 'b', 'e', 'e', 'r', 'r', 'a', 'd', 'a', 'r', '.', 'n', 'o', '\0', /* "beerradar.party", true */ 'b', 'e', 'e', 'r', 'r', 'a', 'd', 'a', 'r', '.', 'p', 'a', 'r', 't', 'y', '\0', /* "beersandco.ch", true */ 'b', 'e', 'e', 'r', 's', 'a', 'n', 'd', 'c', 'o', '.', 'c', 'h', '\0', /* "beetleroadstories.com", true */ 'b', 'e', 'e', 't', 'l', 'e', 'r', 'o', 'a', 'd', 's', 't', 'o', 'r', 'i', 'e', 's', '.', 'c', 'o', 'm', '\0', @@ -1962,16 +1962,17 @@ static const char kSTSHostTable[] = { /* "blablacar.nl", true */ 'b', 'l', 'a', 'b', 'l', 'a', 'c', 'a', 'r', '.', 'n', 'l', '\0', /* "blablacar.pl", true */ 'b', 'l', 'a', 'b', 'l', 'a', 'c', 'a', 'r', '.', 'p', 'l', '\0', /* "blablacar.pt", true */ 'b', 'l', 'a', 'b', 'l', 'a', 'c', 'a', 'r', '.', 'p', 't', '\0', /* "blablacar.ro", true */ 'b', 'l', 'a', 'b', 'l', 'a', 'c', 'a', 'r', '.', 'r', 'o', '\0', /* "blablacar.rs", true */ 'b', 'l', 'a', 'b', 'l', 'a', 'c', 'a', 'r', '.', 'r', 's', '\0', /* "blablacar.ru", true */ 'b', 'l', 'a', 'b', 'l', 'a', 'c', 'a', 'r', '.', 'r', 'u', '\0', /* "black-armada.com", true */ 'b', 'l', 'a', 'c', 'k', '-', 'a', 'r', 'm', 'a', 'd', 'a', '.', 'c', 'o', 'm', '\0', /* "black-gay-porn.biz", true */ 'b', 'l', 'a', 'c', 'k', '-', 'g', 'a', 'y', '-', 'p', 'o', 'r', 'n', '.', 'b', 'i', 'z', '\0', + /* "black-khat.com", true */ 'b', 'l', 'a', 'c', 'k', '-', 'k', 'h', 'a', 't', '.', 'c', 'o', 'm', '\0', /* "black-octopus.ru", true */ 'b', 'l', 'a', 'c', 'k', '-', 'o', 'c', 't', 'o', 'p', 'u', 's', '.', 'r', 'u', '\0', /* "black.dating", true */ 'b', 'l', 'a', 'c', 'k', '.', 'd', 'a', 't', 'i', 'n', 'g', '\0', /* "black.host", true */ 'b', 'l', 'a', 'c', 'k', '.', 'h', 'o', 's', 't', '\0', /* "blackbag.nl", true */ 'b', 'l', 'a', 'c', 'k', 'b', 'a', 'g', '.', 'n', 'l', '\0', /* "blackberrycentral.com", true */ 'b', 'l', 'a', 'c', 'k', 'b', 'e', 'r', 'r', 'y', 'c', 'e', 'n', 't', 'r', 'a', 'l', '.', 'c', 'o', 'm', '\0', /* "blackcat.ca", true */ 'b', 'l', 'a', 'c', 'k', 'c', 'a', 't', '.', 'c', 'a', '\0', /* "blackcatinformatics.ca", true */ 'b', 'l', 'a', 'c', 'k', 'c', 'a', 't', 'i', 'n', 'f', 'o', 'r', 'm', 'a', 't', 'i', 'c', 's', '.', 'c', 'a', '\0', /* "blackcatinformatics.com", true */ 'b', 'l', 'a', 'c', 'k', 'c', 'a', 't', 'i', 'n', 'f', 'o', 'r', 'm', 'a', 't', 'i', 'c', 's', '.', 'c', 'o', 'm', '\0', @@ -2122,16 +2123,17 @@ static const char kSTSHostTable[] = { /* "boomersurf.com", true */ 'b', 'o', 'o', 'm', 'e', 'r', 's', 'u', 'r', 'f', '.', 'c', 'o', 'm', '\0', /* "boonbox.com", true */ 'b', 'o', 'o', 'n', 'b', 'o', 'x', '.', 'c', 'o', 'm', '\0', /* "booth.in.th", true */ 'b', 'o', 'o', 't', 'h', '.', 'i', 'n', '.', 't', 'h', '\0', /* "borchers-media.de", true */ 'b', 'o', 'r', 'c', 'h', 'e', 'r', 's', '-', 'm', 'e', 'd', 'i', 'a', '.', 'd', 'e', '\0', /* "borderlinegroup.com", true */ 'b', 'o', 'r', 'd', 'e', 'r', 'l', 'i', 'n', 'e', 'g', 'r', 'o', 'u', 'p', '.', 'c', 'o', 'm', '\0', /* "boringsmith.com", true */ 'b', 'o', 'r', 'i', 'n', 'g', 's', 'm', 'i', 't', 'h', '.', 'c', 'o', 'm', '\0', /* "boris64.net", true */ 'b', 'o', 'r', 'i', 's', '6', '4', '.', 'n', 'e', 't', '\0', /* "bornandgrazed.com", true */ 'b', 'o', 'r', 'n', 'a', 'n', 'd', 'g', 'r', 'a', 'z', 'e', 'd', '.', 'c', 'o', 'm', '\0', + /* "borowski.pw", true */ 'b', 'o', 'r', 'o', 'w', 's', 'k', 'i', '.', 'p', 'w', '\0', /* "borrelioz.com", true */ 'b', 'o', 'r', 'r', 'e', 'l', 'i', 'o', 'z', '.', 'c', 'o', 'm', '\0', /* "borscheid-wenig.com", true */ 'b', 'o', 'r', 's', 'c', 'h', 'e', 'i', 'd', '-', 'w', 'e', 'n', 'i', 'g', '.', 'c', 'o', 'm', '\0', /* "borysek.net", true */ 'b', 'o', 'r', 'y', 's', 'e', 'k', '.', 'n', 'e', 't', '\0', /* "borzoi.com.br", true */ 'b', 'o', 'r', 'z', 'o', 'i', '.', 'c', 'o', 'm', '.', 'b', 'r', '\0', /* "boss.az", true */ 'b', 'o', 's', 's', '.', 'a', 'z', '\0', /* "bostadsportal.se", true */ 'b', 'o', 's', 't', 'a', 'd', 's', 'p', 'o', 'r', 't', 'a', 'l', '.', 's', 'e', '\0', /* "bosun.io", true */ 'b', 'o', 's', 'u', 'n', '.', 'i', 'o', '\0', /* "bottineauneighborhood.org", true */ 'b', 'o', 't', 't', 'i', 'n', 'e', 'a', 'u', 'n', 'e', 'i', 'g', 'h', 'b', 'o', 'r', 'h', 'o', 'o', 'd', '.', 'o', 'r', 'g', '\0', @@ -2392,17 +2394,16 @@ static const char kSTSHostTable[] = { /* "businessimmigration-eu.ru", true */ 'b', 'u', 's', 'i', 'n', 'e', 's', 's', 'i', 'm', 'm', 'i', 'g', 'r', 'a', 't', 'i', 'o', 'n', '-', 'e', 'u', '.', 'r', 'u', '\0', /* "businessloanconnection.org", true */ 'b', 'u', 's', 'i', 'n', 'e', 's', 's', 'l', 'o', 'a', 'n', 'c', 'o', 'n', 'n', 'e', 'c', 't', 'i', 'o', 'n', '.', 'o', 'r', 'g', '\0', /* "bustimes.org.uk", true */ 'b', 'u', 's', 't', 'i', 'm', 'e', 's', '.', 'o', 'r', 'g', '.', 'u', 'k', '\0', /* "buyaccessible.gov", true */ 'b', 'u', 'y', 'a', 'c', 'c', 'e', 's', 's', 'i', 'b', 'l', 'e', '.', 'g', 'o', 'v', '\0', /* "buyinginvestmentproperty.com", true */ 'b', 'u', 'y', 'i', 'n', 'g', 'i', 'n', 'v', 'e', 's', 't', 'm', 'e', 'n', 't', 'p', 'r', 'o', 'p', 'e', 'r', 't', 'y', '.', 'c', 'o', 'm', '\0', /* "buyshoe.org", true */ 'b', 'u', 'y', 's', 'h', 'o', 'e', '.', 'o', 'r', 'g', '\0', /* "buytheway.co.za", true */ 'b', 'u', 'y', 't', 'h', 'e', 'w', 'a', 'y', '.', 'c', 'o', '.', 'z', 'a', '\0', /* "buzz.tools", true */ 'b', 'u', 'z', 'z', '.', 't', 'o', 'o', 'l', 's', '\0', - /* "buzzconcert.com", true */ 'b', 'u', 'z', 'z', 'c', 'o', 'n', 'c', 'e', 'r', 't', '.', 'c', 'o', 'm', '\0', /* "buzzconf.io", true */ 'b', 'u', 'z', 'z', 'c', 'o', 'n', 'f', '.', 'i', 'o', '\0', /* "buzzdeck.com", true */ 'b', 'u', 'z', 'z', 'd', 'e', 'c', 'k', '.', 'c', 'o', 'm', '\0', /* "buzzprint.it", true */ 'b', 'u', 'z', 'z', 'p', 'r', 'i', 'n', 't', '.', 'i', 't', '\0', /* "bvalle.com", true */ 'b', 'v', 'a', 'l', 'l', 'e', '.', 'c', 'o', 'm', '\0', /* "bvexplained.co.uk", true */ 'b', 'v', 'e', 'x', 'p', 'l', 'a', 'i', 'n', 'e', 'd', '.', 'c', 'o', '.', 'u', 'k', '\0', /* "bvionline.eu", true */ 'b', 'v', 'i', 'o', 'n', 'l', 'i', 'n', 'e', '.', 'e', 'u', '\0', /* "bw.codes", true */ 'b', 'w', '.', 'c', 'o', 'd', 'e', 's', '\0', /* "bw81.xyz", true */ 'b', 'w', '8', '1', '.', 'x', 'y', 'z', '\0', @@ -2507,16 +2508,17 @@ static const char kSTSHostTable[] = { /* "calculator.tf", true */ 'c', 'a', 'l', 'c', 'u', 'l', 'a', 't', 'o', 'r', '.', 't', 'f', '\0', /* "calebmorris.com", false */ 'c', 'a', 'l', 'e', 'b', 'm', 'o', 'r', 'r', 'i', 's', '.', 'c', 'o', 'm', '\0', /* "calendarsnow.com", true */ 'c', 'a', 'l', 'e', 'n', 'd', 'a', 'r', 's', 'n', 'o', 'w', '.', 'c', 'o', 'm', '\0', /* "caletka.cz", true */ 'c', 'a', 'l', 'e', 't', 'k', 'a', '.', 'c', 'z', '\0', /* "calgoty.com", true */ 'c', 'a', 'l', 'g', 'o', 't', 'y', '.', 'c', 'o', 'm', '\0', /* "calibreapp.com", false */ 'c', 'a', 'l', 'i', 'b', 'r', 'e', 'a', 'p', 'p', '.', 'c', 'o', 'm', '\0', /* "calibso.net", true */ 'c', 'a', 'l', 'i', 'b', 's', 'o', '.', 'n', 'e', 't', '\0', /* "calixte-concept.fr", true */ 'c', 'a', 'l', 'i', 'x', 't', 'e', '-', 'c', 'o', 'n', 'c', 'e', 'p', 't', '.', 'f', 'r', '\0', + /* "call.me", false */ 'c', 'a', 'l', 'l', '.', 'm', 'e', '\0', /* "callabs.net", true */ 'c', 'a', 'l', 'l', 'a', 'b', 's', '.', 'n', 'e', 't', '\0', /* "callaction.co", true */ 'c', 'a', 'l', 'l', 'a', 'c', 't', 'i', 'o', 'n', '.', 'c', 'o', '\0', /* "callear.org", true */ 'c', 'a', 'l', 'l', 'e', 'a', 'r', '.', 'o', 'r', 'g', '\0', /* "callhub.io", true */ 'c', 'a', 'l', 'l', 'h', 'u', 'b', '.', 'i', 'o', '\0', /* "callision.com", true */ 'c', 'a', 'l', 'l', 'i', 's', 'i', 'o', 'n', '.', 'c', 'o', 'm', '\0', /* "callsigns.ca", true */ 'c', 'a', 'l', 'l', 's', 'i', 'g', 'n', 's', '.', 'c', 'a', '\0', /* "calomel.org", true */ 'c', 'a', 'l', 'o', 'm', 'e', 'l', '.', 'o', 'r', 'g', '\0', /* "calories.org", true */ 'c', 'a', 'l', 'o', 'r', 'i', 'e', 's', '.', 'o', 'r', 'g', '\0', @@ -2956,17 +2958,16 @@ static const char kSTSHostTable[] = { /* "christopherpritchard.co.uk", true */ 'c', 'h', 'r', 'i', 's', 't', 'o', 'p', 'h', 'e', 'r', 'p', 'r', 'i', 't', 'c', 'h', 'a', 'r', 'd', '.', 'c', 'o', '.', 'u', 'k', '\0', /* "christophersole.com", true */ 'c', 'h', 'r', 'i', 's', 't', 'o', 'p', 'h', 'e', 'r', 's', 'o', 'l', 'e', '.', 'c', 'o', 'm', '\0', /* "christophertruncer.com", true */ 'c', 'h', 'r', 'i', 's', 't', 'o', 'p', 'h', 'e', 'r', 't', 'r', 'u', 'n', 'c', 'e', 'r', '.', 'c', 'o', 'm', '\0', /* "christophkreileder.com", true */ 'c', 'h', 'r', 'i', 's', 't', 'o', 'p', 'h', 'k', 'r', 'e', 'i', 'l', 'e', 'd', 'e', 'r', '.', 'c', 'o', 'm', '\0', /* "chrisu3050.at", true */ 'c', 'h', 'r', 'i', 's', 'u', '3', '0', '5', '0', '.', 'a', 't', '\0', /* "chriswarrick.com", true */ 'c', 'h', 'r', 'i', 's', 'w', 'a', 'r', 'r', 'i', 'c', 'k', '.', 'c', 'o', 'm', '\0', /* "chriswbarry.com", true */ 'c', 'h', 'r', 'i', 's', 'w', 'b', 'a', 'r', 'r', 'y', '.', 'c', 'o', 'm', '\0', /* "chriswells.io", true */ 'c', 'h', 'r', 'i', 's', 'w', 'e', 'l', 'l', 's', '.', 'i', 'o', '\0', - /* "chromaryu.net", true */ 'c', 'h', 'r', 'o', 'm', 'a', 'r', 'y', 'u', '.', 'n', 'e', 't', '\0', /* "chromaxa.com", true */ 'c', 'h', 'r', 'o', 'm', 'a', 'x', 'a', '.', 'c', 'o', 'm', '\0', /* "chrome-devtools-frontend.appspot.com", true */ 'c', 'h', 'r', 'o', 'm', 'e', '-', 'd', 'e', 'v', 't', 'o', 'o', 'l', 's', '-', 'f', 'r', 'o', 'n', 't', 'e', 'n', 'd', '.', 'a', 'p', 'p', 's', 'p', 'o', 't', '.', 'c', 'o', 'm', '\0', /* "chrome.com", false */ 'c', 'h', 'r', 'o', 'm', 'e', '.', 'c', 'o', 'm', '\0', /* "chrome.google.com", true */ 'c', 'h', 'r', 'o', 'm', 'e', '.', 'g', 'o', 'o', 'g', 'l', 'e', '.', 'c', 'o', 'm', '\0', /* "chromebookchart.com", true */ 'c', 'h', 'r', 'o', 'm', 'e', 'b', 'o', 'o', 'k', 'c', 'h', 'a', 'r', 't', '.', 'c', 'o', 'm', '\0', /* "chromebooksforwork.com", true */ 'c', 'h', 'r', 'o', 'm', 'e', 'b', 'o', 'o', 'k', 's', 'f', 'o', 'r', 'w', 'o', 'r', 'k', '.', 'c', 'o', 'm', '\0', /* "chromiumbugs.appspot.com", true */ 'c', 'h', 'r', 'o', 'm', 'i', 'u', 'm', 'b', 'u', 'g', 's', '.', 'a', 'p', 'p', 's', 'p', 'o', 't', '.', 'c', 'o', 'm', '\0', /* "chromiumcodereview.appspot.com", false */ 'c', 'h', 'r', 'o', 'm', 'i', 'u', 'm', 'c', 'o', 'd', 'e', 'r', 'e', 'v', 'i', 'e', 'w', '.', 'a', 'p', 'p', 's', 'p', 'o', 't', '.', 'c', 'o', 'm', '\0', @@ -2988,16 +2989,17 @@ static const char kSTSHostTable[] = { /* "ciderclub.com", true */ 'c', 'i', 'd', 'e', 'r', 'c', 'l', 'u', 'b', '.', 'c', 'o', 'm', '\0', /* "cienbeaute-lidl.fr", true */ 'c', 'i', 'e', 'n', 'b', 'e', 'a', 'u', 't', 'e', '-', 'l', 'i', 'd', 'l', '.', 'f', 'r', '\0', /* "cieslar.io", true */ 'c', 'i', 'e', 's', 'l', 'a', 'r', '.', 'i', 'o', '\0', /* "cigarterminal.com", false */ 'c', 'i', 'g', 'a', 'r', 't', 'e', 'r', 'm', 'i', 'n', 'a', 'l', '.', 'c', 'o', 'm', '\0', /* "cigoteket.se", true */ 'c', 'i', 'g', 'o', 't', 'e', 'k', 'e', 't', '.', 's', 'e', '\0', /* "cimballa.com", true */ 'c', 'i', 'm', 'b', 'a', 'l', 'l', 'a', '.', 'c', 'o', 'm', '\0', /* "cinartelorgu.com", true */ 'c', 'i', 'n', 'a', 'r', 't', 'e', 'l', 'o', 'r', 'g', 'u', '.', 'c', 'o', 'm', '\0', /* "cine-music.de", true */ 'c', 'i', 'n', 'e', '-', 'm', 'u', 's', 'i', 'c', '.', 'd', 'e', '\0', + /* "cinefilzonen.se", true */ 'c', 'i', 'n', 'e', 'f', 'i', 'l', 'z', 'o', 'n', 'e', 'n', '.', 's', 'e', '\0', /* "cinema5.ru", true */ 'c', 'i', 'n', 'e', 'm', 'a', '5', '.', 'r', 'u', '\0', /* "cinemaclub.co", true */ 'c', 'i', 'n', 'e', 'm', 'a', 'c', 'l', 'u', 'b', '.', 'c', 'o', '\0', /* "cinnabon.com", true */ 'c', 'i', 'n', 'n', 'a', 'b', 'o', 'n', '.', 'c', 'o', 'm', '\0', /* "cinq-elements.com", true */ 'c', 'i', 'n', 'q', '-', 'e', 'l', 'e', 'm', 'e', 'n', 't', 's', '.', 'c', 'o', 'm', '\0', /* "cinsects.de", true */ 'c', 'i', 'n', 's', 'e', 'c', 't', 's', '.', 'd', 'e', '\0', /* "cintdirect.com", true */ 'c', 'i', 'n', 't', 'd', 'i', 'r', 'e', 'c', 't', '.', 'c', 'o', 'm', '\0', /* "cio.gov", true */ 'c', 'i', 'o', '.', 'g', 'o', 'v', '\0', /* "cioconference.co.nz", true */ 'c', 'i', 'o', 'c', 'o', 'n', 'f', 'e', 'r', 'e', 'n', 'c', 'e', '.', 'c', 'o', '.', 'n', 'z', '\0', @@ -3047,16 +3049,17 @@ static const char kSTSHostTable[] = { /* "classdojo.com", true */ 'c', 'l', 'a', 's', 's', 'd', 'o', 'j', 'o', '.', 'c', 'o', 'm', '\0', /* "classicalpilates.ca", true */ 'c', 'l', 'a', 's', 's', 'i', 'c', 'a', 'l', 'p', 'i', 'l', 'a', 't', 'e', 's', '.', 'c', 'a', '\0', /* "classicday.nl", true */ 'c', 'l', 'a', 's', 's', 'i', 'c', 'd', 'a', 'y', '.', 'n', 'l', '\0', /* "classicshop.ua", true */ 'c', 'l', 'a', 's', 's', 'i', 'c', 's', 'h', 'o', 'p', '.', 'u', 'a', '\0', /* "classifiedssa.co.za", true */ 'c', 'l', 'a', 's', 's', 'i', 'f', 'i', 'e', 'd', 's', 's', 'a', '.', 'c', 'o', '.', 'z', 'a', '\0', /* "classpoint.cz", true */ 'c', 'l', 'a', 's', 's', 'p', 'o', 'i', 'n', 't', '.', 'c', 'z', '\0', /* "claudio4.com", true */ 'c', 'l', 'a', 'u', 'd', 'i', 'o', '4', '.', 'c', 'o', 'm', '\0', /* "clawe.de", true */ 'c', 'l', 'a', 'w', 'e', '.', 'd', 'e', '\0', + /* "cldly.com", true */ 'c', 'l', 'd', 'l', 'y', '.', 'c', 'o', 'm', '\0', /* "clearkonjac.com", true */ 'c', 'l', 'e', 'a', 'r', 'k', 'o', 'n', 'j', 'a', 'c', '.', 'c', 'o', 'm', '\0', /* "clearsettle-admin.com", true */ 'c', 'l', 'e', 'a', 'r', 's', 'e', 't', 't', 'l', 'e', '-', 'a', 'd', 'm', 'i', 'n', '.', 'c', 'o', 'm', '\0', /* "clearviewwealthprojector.com.au", true */ 'c', 'l', 'e', 'a', 'r', 'v', 'i', 'e', 'w', 'w', 'e', 'a', 'l', 't', 'h', 'p', 'r', 'o', 'j', 'e', 'c', 't', 'o', 'r', '.', 'c', 'o', 'm', '.', 'a', 'u', '\0', /* "cles.jp", true */ 'c', 'l', 'e', 's', '.', 'j', 'p', '\0', /* "clevelandokla.com", true */ 'c', 'l', 'e', 'v', 'e', 'l', 'a', 'n', 'd', 'o', 'k', 'l', 'a', '.', 'c', 'o', 'm', '\0', /* "clevertarget.ru", true */ 'c', 'l', 'e', 'v', 'e', 'r', 't', 'a', 'r', 'g', 'e', 't', '.', 'r', 'u', '\0', /* "cleververmarkten.com", true */ 'c', 'l', 'e', 'v', 'e', 'r', 'v', 'e', 'r', 'm', 'a', 'r', 'k', 't', 'e', 'n', '.', 'c', 'o', 'm', '\0', /* "cleververmarkten.de", true */ 'c', 'l', 'e', 'v', 'e', 'r', 'v', 'e', 'r', 'm', 'a', 'r', 'k', 't', 'e', 'n', '.', 'd', 'e', '\0', @@ -3101,17 +3104,16 @@ static const char kSTSHostTable[] = { /* "cloud.gov", false */ 'c', 'l', 'o', 'u', 'd', '.', 'g', 'o', 'v', '\0', /* "cloudapps.digital", true */ 'c', 'l', 'o', 'u', 'd', 'a', 'p', 'p', 's', '.', 'd', 'i', 'g', 'i', 't', 'a', 'l', '\0', /* "cloudbased.info", true */ 'c', 'l', 'o', 'u', 'd', 'b', 'a', 's', 'e', 'd', '.', 'i', 'n', 'f', 'o', '\0', /* "cloudbasedsite.com", true */ 'c', 'l', 'o', 'u', 'd', 'b', 'a', 's', 'e', 'd', 's', 'i', 't', 'e', '.', 'c', 'o', 'm', '\0', /* "cloudbleed.info", true */ 'c', 'l', 'o', 'u', 'd', 'b', 'l', 'e', 'e', 'd', '.', 'i', 'n', 'f', 'o', '\0', /* "cloudcaprice.net", true */ 'c', 'l', 'o', 'u', 'd', 'c', 'a', 'p', 'r', 'i', 'c', 'e', '.', 'n', 'e', 't', '\0', /* "cloudflareonazure.com", true */ 'c', 'l', 'o', 'u', 'd', 'f', 'l', 'a', 'r', 'e', 'o', 'n', 'a', 'z', 'u', 'r', 'e', '.', 'c', 'o', 'm', '\0', /* "cloudia.org", true */ 'c', 'l', 'o', 'u', 'd', 'i', 'a', '.', 'o', 'r', 'g', '\0', - /* "cloudily.com", true */ 'c', 'l', 'o', 'u', 'd', 'i', 'l', 'y', '.', 'c', 'o', 'm', '\0', /* "cloudmigrator365.com", true */ 'c', 'l', 'o', 'u', 'd', 'm', 'i', 'g', 'r', 'a', 't', 'o', 'r', '3', '6', '5', '.', 'c', 'o', 'm', '\0', /* "cloudoptimizedsmb.com", true */ 'c', 'l', 'o', 'u', 'd', 'o', 'p', 't', 'i', 'm', 'i', 'z', 'e', 'd', 's', 'm', 'b', '.', 'c', 'o', 'm', '\0', /* "cloudoptimus.com", true */ 'c', 'l', 'o', 'u', 'd', 'o', 'p', 't', 'i', 'm', 'u', 's', '.', 'c', 'o', 'm', '\0', /* "cloudpagesforwork.com", true */ 'c', 'l', 'o', 'u', 'd', 'p', 'a', 'g', 'e', 's', 'f', 'o', 'r', 'w', 'o', 'r', 'k', '.', 'c', 'o', 'm', '\0', /* "cloudpebble.net", true */ 'c', 'l', 'o', 'u', 'd', 'p', 'e', 'b', 'b', 'l', 'e', '.', 'n', 'e', 't', '\0', /* "cloudpipes.com", true */ 'c', 'l', 'o', 'u', 'd', 'p', 'i', 'p', 'e', 's', '.', 'c', 'o', 'm', '\0', /* "clouds.webcam", true */ 'c', 'l', 'o', 'u', 'd', 's', '.', 'w', 'e', 'b', 'c', 'a', 'm', '\0', /* "cloudsecurityalliance.org", true */ 'c', 'l', 'o', 'u', 'd', 's', 'e', 'c', 'u', 'r', 'i', 't', 'y', 'a', 'l', 'l', 'i', 'a', 'n', 'c', 'e', '.', 'o', 'r', 'g', '\0', @@ -3465,17 +3467,16 @@ static const char kSTSHostTable[] = { /* "craigbates.co.uk", true */ 'c', 'r', 'a', 'i', 'g', 'b', 'a', 't', 'e', 's', '.', 'c', 'o', '.', 'u', 'k', '\0', /* "craigfrancis.co.uk", true */ 'c', 'r', 'a', 'i', 'g', 'f', 'r', 'a', 'n', 'c', 'i', 's', '.', 'c', 'o', '.', 'u', 'k', '\0', /* "craigrouse.com", true */ 'c', 'r', 'a', 'i', 'g', 'r', 'o', 'u', 's', 'e', '.', 'c', 'o', 'm', '\0', /* "craigwfox.com", true */ 'c', 'r', 'a', 'i', 'g', 'w', 'f', 'o', 'x', '.', 'c', 'o', 'm', '\0', /* "cralarm.de", true */ 'c', 'r', 'a', 'l', 'a', 'r', 'm', '.', 'd', 'e', '\0', /* "cranems.com.ua", true */ 'c', 'r', 'a', 'n', 'e', 'm', 's', '.', 'c', 'o', 'm', '.', 'u', 'a', '\0', /* "cranesafe.com", true */ 'c', 'r', 'a', 'n', 'e', 's', 'a', 'f', 'e', '.', 'c', 'o', 'm', '\0', /* "cranioschule.com", true */ 'c', 'r', 'a', 'n', 'i', 'o', 's', 'c', 'h', 'u', 'l', 'e', '.', 'c', 'o', 'm', '\0', - /* "crapouill.es", true */ 'c', 'r', 'a', 'p', 'o', 'u', 'i', 'l', 'l', '.', 'e', 's', '\0', /* "crashsec.com", true */ 'c', 'r', 'a', 's', 'h', 's', 'e', 'c', '.', 'c', 'o', 'm', '\0', /* "crazycraftland.de", true */ 'c', 'r', 'a', 'z', 'y', 'c', 'r', 'a', 'f', 't', 'l', 'a', 'n', 'd', '.', 'd', 'e', '\0', /* "crazycraftland.net", true */ 'c', 'r', 'a', 'z', 'y', 'c', 'r', 'a', 'f', 't', 'l', 'a', 'n', 'd', '.', 'n', 'e', 't', '\0', /* "crazydomains.ae", true */ 'c', 'r', 'a', 'z', 'y', 'd', 'o', 'm', 'a', 'i', 'n', 's', '.', 'a', 'e', '\0', /* "crazydomains.co.nz", true */ 'c', 'r', 'a', 'z', 'y', 'd', 'o', 'm', 'a', 'i', 'n', 's', '.', 'c', 'o', '.', 'n', 'z', '\0', /* "crazydomains.co.uk", true */ 'c', 'r', 'a', 'z', 'y', 'd', 'o', 'm', 'a', 'i', 'n', 's', '.', 'c', 'o', '.', 'u', 'k', '\0', /* "crazydomains.com.au", true */ 'c', 'r', 'a', 'z', 'y', 'd', 'o', 'm', 'a', 'i', 'n', 's', '.', 'c', 'o', 'm', '.', 'a', 'u', '\0', /* "crazydomains.in", true */ 'c', 'r', 'a', 'z', 'y', 'd', 'o', 'm', 'a', 'i', 'n', 's', '.', 'i', 'n', '\0', @@ -3859,17 +3860,17 @@ static const char kSTSHostTable[] = { /* "datadyne.technology", true */ 'd', 'a', 't', 'a', 'd', 'y', 'n', 'e', '.', 't', 'e', 'c', 'h', 'n', 'o', 'l', 'o', 'g', 'y', '\0', /* "dataisme.com", true */ 'd', 'a', 't', 'a', 'i', 's', 'm', 'e', '.', 'c', 'o', 'm', '\0', /* "datamatic.ru", true */ 'd', 'a', 't', 'a', 'm', 'a', 't', 'i', 'c', '.', 'r', 'u', '\0', /* "dataprotectionadvisors.com", true */ 'd', 'a', 't', 'a', 'p', 'r', 'o', 't', 'e', 'c', 't', 'i', 'o', 'n', 'a', 'd', 'v', 'i', 's', 'o', 'r', 's', '.', 'c', 'o', 'm', '\0', /* "datapun.ch", true */ 'd', 'a', 't', 'a', 'p', 'u', 'n', '.', 'c', 'h', '\0', /* "datascience.cafe", true */ 'd', 'a', 't', 'a', 's', 'c', 'i', 'e', 'n', 'c', 'e', '.', 'c', 'a', 'f', 'e', '\0', /* "datascomemorativas.com.br", true */ 'd', 'a', 't', 'a', 's', 'c', 'o', 'm', 'e', 'm', 'o', 'r', 'a', 't', 'i', 'v', 'a', 's', '.', 'c', 'o', 'm', '.', 'b', 'r', '\0', /* "datasharesystem.com", true */ 'd', 'a', 't', 'a', 's', 'h', 'a', 'r', 'e', 's', 'y', 's', 't', 'e', 'm', '.', 'c', 'o', 'm', '\0', - /* "dataskydd.net", false */ 'd', 'a', 't', 'a', 's', 'k', 'y', 'd', 'd', '.', 'n', 'e', 't', '\0', + /* "dataskydd.net", true */ 'd', 'a', 't', 'a', 's', 'k', 'y', 'd', 'd', '.', 'n', 'e', 't', '\0', /* "datasnitch.co.uk", true */ 'd', 'a', 't', 'a', 's', 'n', 'i', 't', 'c', 'h', '.', 'c', 'o', '.', 'u', 'k', '\0', /* "datastream.re", false */ 'd', 'a', 't', 'a', 's', 't', 'r', 'e', 'a', 'm', '.', 'r', 'e', '\0', /* "dataswamp.org", true */ 'd', 'a', 't', 'a', 's', 'w', 'a', 'm', 'p', '.', 'o', 'r', 'g', '\0', /* "datatekniikka.fi", false */ 'd', 'a', 't', 'a', 't', 'e', 'k', 'n', 'i', 'i', 'k', 'k', 'a', '.', 'f', 'i', '\0', /* "datateknologsektionen.se", true */ 'd', 'a', 't', 'a', 't', 'e', 'k', 'n', 'o', 'l', 'o', 'g', 's', 'e', 'k', 't', 'i', 'o', 'n', 'e', 'n', '.', 's', 'e', '\0', /* "datedeposit.com", true */ 'd', 'a', 't', 'e', 'd', 'e', 'p', 'o', 's', 'i', 't', '.', 'c', 'o', 'm', '\0', /* "datememe.com", true */ 'd', 'a', 't', 'e', 'm', 'e', 'm', 'e', '.', 'c', 'o', 'm', '\0', /* "datenlast.de", true */ 'd', 'a', 't', 'e', 'n', 'l', 'a', 's', 't', '.', 'd', 'e', '\0', @@ -3897,16 +3898,17 @@ static const char kSTSHostTable[] = { /* "davidgow.net", true */ 'd', 'a', 'v', 'i', 'd', 'g', 'o', 'w', '.', 'n', 'e', 't', '\0', /* "davidgreig.uk", true */ 'd', 'a', 'v', 'i', 'd', 'g', 'r', 'e', 'i', 'g', '.', 'u', 'k', '\0', /* "davidlillo.com", true */ 'd', 'a', 'v', 'i', 'd', 'l', 'i', 'l', 'l', 'o', '.', 'c', 'o', 'm', '\0', /* "davidlyness.com", true */ 'd', 'a', 'v', 'i', 'd', 'l', 'y', 'n', 'e', 's', 's', '.', 'c', 'o', 'm', '\0', /* "davidmcevoy.org.uk", true */ 'd', 'a', 'v', 'i', 'd', 'm', 'c', 'e', 'v', 'o', 'y', '.', 'o', 'r', 'g', '.', 'u', 'k', '\0', /* "davidmessenger.co.uk", true */ 'd', 'a', 'v', 'i', 'd', 'm', 'e', 's', 's', 'e', 'n', 'g', 'e', 'r', '.', 'c', 'o', '.', 'u', 'k', '\0', /* "davidnadaski.com", true */ 'd', 'a', 'v', 'i', 'd', 'n', 'a', 'd', 'a', 's', 'k', 'i', '.', 'c', 'o', 'm', '\0', /* "davidpearce.com", true */ 'd', 'a', 'v', 'i', 'd', 'p', 'e', 'a', 'r', 'c', 'e', '.', 'c', 'o', 'm', '\0', + /* "davidscherzer.at", true */ 'd', 'a', 'v', 'i', 'd', 's', 'c', 'h', 'e', 'r', 'z', 'e', 'r', '.', 'a', 't', '\0', /* "davimun.org", true */ 'd', 'a', 'v', 'i', 'm', 'u', 'n', '.', 'o', 'r', 'g', '\0', /* "davisroi.com", true */ 'd', 'a', 'v', 'i', 's', 'r', 'o', 'i', '.', 'c', 'o', 'm', '\0', /* "dawnson.is", true */ 'd', 'a', 'w', 'n', 's', 'o', 'n', '.', 'i', 's', '\0', /* "dawson-floridavilla.co.uk", true */ 'd', 'a', 'w', 's', 'o', 'n', '-', 'f', 'l', 'o', 'r', 'i', 'd', 'a', 'v', 'i', 'l', 'l', 'a', '.', 'c', 'o', '.', 'u', 'k', '\0', /* "daylightpirates.org", true */ 'd', 'a', 'y', 'l', 'i', 'g', 'h', 't', 'p', 'i', 'r', 'a', 't', 'e', 's', '.', 'o', 'r', 'g', '\0', /* "dayman.net", false */ 'd', 'a', 'y', 'm', 'a', 'n', '.', 'n', 'e', 't', '\0', /* "daysoftheyear.com", true */ 'd', 'a', 'y', 's', 'o', 'f', 't', 'h', 'e', 'y', 'e', 'a', 'r', '.', 'c', 'o', 'm', '\0', /* "db-sanity.com", true */ 'd', 'b', '-', 's', 'a', 'n', 'i', 't', 'y', '.', 'c', 'o', 'm', '\0', @@ -3938,16 +3940,17 @@ static const char kSTSHostTable[] = { /* "dds.mil", true */ 'd', 'd', 's', '.', 'm', 'i', 'l', '\0', /* "de-medici.nl", true */ 'd', 'e', '-', 'm', 'e', 'd', 'i', 'c', 'i', '.', 'n', 'l', '\0', /* "de-rwa.de", true */ 'd', 'e', '-', 'r', 'w', 'a', '.', 'd', 'e', '\0', /* "de-servers.de", true */ 'd', 'e', '-', 's', 'e', 'r', 'v', 'e', 'r', 's', '.', 'd', 'e', '\0', /* "de-spil.be", true */ 'd', 'e', '-', 's', 'p', 'i', 'l', '.', 'b', 'e', '\0', /* "de.search.yahoo.com", false */ 'd', 'e', '.', 's', 'e', 'a', 'r', 'c', 'h', '.', 'y', 'a', 'h', 'o', 'o', '.', 'c', 'o', 'm', '\0', /* "deadbeef.ninja", true */ 'd', 'e', 'a', 'd', 'b', 'e', 'e', 'f', '.', 'n', 'i', 'n', 'j', 'a', '\0', /* "deadmann.com", true */ 'd', 'e', 'a', 'd', 'm', 'a', 'n', 'n', '.', 'c', 'o', 'm', '\0', + /* "deadsoul.net", true */ 'd', 'e', 'a', 'd', 's', 'o', 'u', 'l', '.', 'n', 'e', 't', '\0', /* "deaf.dating", true */ 'd', 'e', 'a', 'f', '.', 'd', 'a', 't', 'i', 'n', 'g', '\0', /* "deaf.eu.org", true */ 'd', 'e', 'a', 'f', '.', 'e', 'u', '.', 'o', 'r', 'g', '\0', /* "deaktualisierung.org", true */ 'd', 'e', 'a', 'k', 't', 'u', 'a', 'l', 'i', 's', 'i', 'e', 'r', 'u', 'n', 'g', '.', 'o', 'r', 'g', '\0', /* "dealbanana.at", true */ 'd', 'e', 'a', 'l', 'b', 'a', 'n', 'a', 'n', 'a', '.', 'a', 't', '\0', /* "dealbanana.be", true */ 'd', 'e', 'a', 'l', 'b', 'a', 'n', 'a', 'n', 'a', '.', 'b', 'e', '\0', /* "dealbanana.co.uk", true */ 'd', 'e', 'a', 'l', 'b', 'a', 'n', 'a', 'n', 'a', '.', 'c', 'o', '.', 'u', 'k', '\0', /* "dealbanana.com", true */ 'd', 'e', 'a', 'l', 'b', 'a', 'n', 'a', 'n', 'a', '.', 'c', 'o', 'm', '\0', /* "dealbanana.de", true */ 'd', 'e', 'a', 'l', 'b', 'a', 'n', 'a', 'n', 'a', '.', 'd', 'e', '\0', @@ -4022,16 +4025,17 @@ static const char kSTSHostTable[] = { /* "delbrouck.ch", true */ 'd', 'e', 'l', 'b', 'r', 'o', 'u', 'c', 'k', '.', 'c', 'h', '\0', /* "delfic.org", true */ 'd', 'e', 'l', 'f', 'i', 'c', '.', 'o', 'r', 'g', '\0', /* "deliberatedigital.com", true */ 'd', 'e', 'l', 'i', 'b', 'e', 'r', 'a', 't', 'e', 'd', 'i', 'g', 'i', 't', 'a', 'l', '.', 'c', 'o', 'm', '\0', /* "deliciisanatoase.ro", true */ 'd', 'e', 'l', 'i', 'c', 'i', 'i', 's', 'a', 'n', 'a', 't', 'o', 'a', 's', 'e', '.', 'r', 'o', '\0', /* "deliciousmedia.co.uk", true */ 'd', 'e', 'l', 'i', 'c', 'i', 'o', 'u', 's', 'm', 'e', 'd', 'i', 'a', '.', 'c', 'o', '.', 'u', 'k', '\0', /* "delphine.dance", true */ 'd', 'e', 'l', 'p', 'h', 'i', 'n', 'e', '.', 'd', 'a', 'n', 'c', 'e', '\0', /* "delta-data.ch", true */ 'd', 'e', 'l', 't', 'a', '-', 'd', 'a', 't', 'a', '.', 'c', 'h', '\0', /* "delta-smart.ch", true */ 'd', 'e', 'l', 't', 'a', '-', 's', 'm', 'a', 'r', 't', '.', 'c', 'h', '\0', + /* "deltaconcepts.de", true */ 'd', 'e', 'l', 't', 'a', 'c', 'o', 'n', 'c', 'e', 'p', 't', 's', '.', 'd', 'e', '\0', /* "deltasmart.ch", true */ 'd', 'e', 'l', 't', 'a', 's', 'm', 'a', 'r', 't', '.', 'c', 'h', '\0', /* "deltava.org", true */ 'd', 'e', 'l', 't', 'a', 'v', 'a', '.', 'o', 'r', 'g', '\0', /* "demarle.ch", true */ 'd', 'e', 'm', 'a', 'r', 'l', 'e', '.', 'c', 'h', '\0', /* "dementiapraecox.de", true */ 'd', 'e', 'm', 'e', 'n', 't', 'i', 'a', 'p', 'r', 'a', 'e', 'c', 'o', 'x', '.', 'd', 'e', '\0', /* "demfloro.ru", true */ 'd', 'e', 'm', 'f', 'l', 'o', 'r', 'o', '.', 'r', 'u', '\0', /* "demo.swedbank.se", true */ 'd', 'e', 'm', 'o', '.', 's', 'w', 'e', 'd', 'b', 'a', 'n', 'k', '.', 's', 'e', '\0', /* "democracy.io", true */ 'd', 'e', 'm', 'o', 'c', 'r', 'a', 'c', 'y', '.', 'i', 'o', '\0', /* "demomanca.com", true */ 'd', 'e', 'm', 'o', 'm', 'a', 'n', 'c', 'a', '.', 'c', 'o', 'm', '\0', @@ -4145,16 +4149,17 @@ static const char kSTSHostTable[] = { /* "devlux.ch", true */ 'd', 'e', 'v', 'l', 'u', 'x', '.', 'c', 'h', '\0', /* "devmsg.com", true */ 'd', 'e', 'v', 'm', 's', 'g', '.', 'c', 'o', 'm', '\0', /* "devnull.team", true */ 'd', 'e', 'v', 'n', 'u', 'l', 'l', '.', 't', 'e', 'a', 'm', '\0', /* "devolution.ws", true */ 'd', 'e', 'v', 'o', 'l', 'u', 't', 'i', 'o', 'n', '.', 'w', 's', '\0', /* "devonsawatzky.ca", true */ 'd', 'e', 'v', 'o', 'n', 's', 'a', 'w', 'a', 't', 'z', 'k', 'y', '.', 'c', 'a', '\0', /* "devopps.me", true */ 'd', 'e', 'v', 'o', 'p', 'p', 's', '.', 'm', 'e', '\0', /* "devops-survey.com", true */ 'd', 'e', 'v', 'o', 'p', 's', '-', 's', 'u', 'r', 'v', 'e', 'y', '.', 'c', 'o', 'm', '\0', /* "devopsconnected.com", false */ 'd', 'e', 'v', 'o', 'p', 's', 'c', 'o', 'n', 'n', 'e', 'c', 't', 'e', 'd', '.', 'c', 'o', 'm', '\0', + /* "devpsy.info", true */ 'd', 'e', 'v', 'p', 's', 'y', '.', 'i', 'n', 'f', 'o', '\0', /* "devstaff.gr", true */ 'd', 'e', 'v', 's', 't', 'a', 'f', 'f', '.', 'g', 'r', '\0', /* "devyn.ca", true */ 'd', 'e', 'v', 'y', 'n', '.', 'c', 'a', '\0', /* "devzero.io", true */ 'd', 'e', 'v', 'z', 'e', 'r', 'o', '.', 'i', 'o', '\0', /* "dewalch.net", true */ 'd', 'e', 'w', 'a', 'l', 'c', 'h', '.', 'n', 'e', 't', '\0', /* "dewebwerf.nl", true */ 'd', 'e', 'w', 'e', 'b', 'w', 'e', 'r', 'f', '.', 'n', 'l', '\0', /* "dexalo.de", true */ 'd', 'e', 'x', 'a', 'l', 'o', '.', 'd', 'e', '\0', /* "dezeregio.nl", true */ 'd', 'e', 'z', 'e', 'r', 'e', 'g', 'i', 'o', '.', 'n', 'l', '\0', /* "dezmembrariromania.ro", true */ 'd', 'e', 'z', 'm', 'e', 'm', 'b', 'r', 'a', 'r', 'i', 'r', 'o', 'm', 'a', 'n', 'i', 'a', '.', 'r', 'o', '\0', @@ -4290,17 +4295,16 @@ static const char kSTSHostTable[] = { /* "directreal.sk", true */ 'd', 'i', 'r', 'e', 'c', 't', 'r', 'e', 'a', 'l', '.', 's', 'k', '\0', /* "direnv.net", true */ 'd', 'i', 'r', 'e', 'n', 'v', '.', 'n', 'e', 't', '\0', /* "dirips.com", true */ 'd', 'i', 'r', 'i', 'p', 's', '.', 'c', 'o', 'm', '\0', /* "dirk-weise.de", true */ 'd', 'i', 'r', 'k', '-', 'w', 'e', 'i', 's', 'e', '.', 'd', 'e', '\0', /* "dirkwolf.de", true */ 'd', 'i', 'r', 'k', 'w', 'o', 'l', 'f', '.', 'd', 'e', '\0', /* "disability.gov", true */ 'd', 'i', 's', 'a', 'b', 'i', 'l', 'i', 't', 'y', '.', 'g', 'o', 'v', '\0', /* "disabled.dating", true */ 'd', 'i', 's', 'a', 'b', 'l', 'e', 'd', '.', 'd', 'a', 't', 'i', 'n', 'g', '\0', /* "discipul.nl", true */ 'd', 'i', 's', 'c', 'i', 'p', 'u', 'l', '.', 'n', 'l', '\0', - /* "disclosure.io", true */ 'd', 'i', 's', 'c', 'l', 'o', 's', 'u', 'r', 'e', '.', 'i', 'o', '\0', /* "discofitta.com", true */ 'd', 'i', 's', 'c', 'o', 'f', 'i', 't', 't', 'a', '.', 'c', 'o', 'm', '\0', /* "disconformity.net", true */ 'd', 'i', 's', 'c', 'o', 'n', 'f', 'o', 'r', 'm', 'i', 't', 'y', '.', 'n', 'e', 't', '\0', /* "discordapp.com", true */ 'd', 'i', 's', 'c', 'o', 'r', 'd', 'a', 'p', 'p', '.', 'c', 'o', 'm', '\0', /* "discotek.club", true */ 'd', 'i', 's', 'c', 'o', 't', 'e', 'k', '.', 'c', 'l', 'u', 'b', '\0', /* "discoverhealthage.com", true */ 'd', 'i', 's', 'c', 'o', 'v', 'e', 'r', 'h', 'e', 'a', 'l', 't', 'h', 'a', 'g', 'e', '.', 'c', 'o', 'm', '\0', /* "discoveryrom.org", true */ 'd', 'i', 's', 'c', 'o', 'v', 'e', 'r', 'y', 'r', 'o', 'm', '.', 'o', 'r', 'g', '\0', /* "dise-online.de", true */ 'd', 'i', 's', 'e', '-', 'o', 'n', 'l', 'i', 'n', 'e', '.', 'd', 'e', '\0', /* "disinclined.org", true */ 'd', 'i', 's', 'i', 'n', 'c', 'l', 'i', 'n', 'e', 'd', '.', 'o', 'r', 'g', '\0', @@ -4357,16 +4361,17 @@ static const char kSTSHostTable[] = { /* "dmi.es", true */ 'd', 'm', 'i', '.', 'e', 's', '\0', /* "dmix.ca", true */ 'd', 'm', 'i', 'x', '.', 'c', 'a', '\0', /* "dmlogic.com", true */ 'd', 'm', 'l', 'o', 'g', 'i', 'c', '.', 'c', 'o', 'm', '\0', /* "dmtry.me", true */ 'd', 'm', 't', 'r', 'y', '.', 'm', 'e', '\0', /* "dmwall.cn", true */ 'd', 'm', 'w', 'a', 'l', 'l', '.', 'c', 'n', '\0', /* "dmxledlights.com", true */ 'd', 'm', 'x', 'l', 'e', 'd', 'l', 'i', 'g', 'h', 't', 's', '.', 'c', 'o', 'm', '\0', /* "dmz.ninja", true */ 'd', 'm', 'z', '.', 'n', 'i', 'n', 'j', 'a', '\0', /* "dn3s.me", true */ 'd', 'n', '3', 's', '.', 'm', 'e', '\0', + /* "dn42.us", true */ 'd', 'n', '4', '2', '.', 'u', 's', '\0', /* "dna.li", true */ 'd', 'n', 'a', '.', 'l', 'i', '\0', /* "dnc.org.nz", true */ 'd', 'n', 'c', '.', 'o', 'r', 'g', '.', 'n', 'z', '\0', /* "dndtools.net", true */ 'd', 'n', 'd', 't', 'o', 'o', 'l', 's', '.', 'n', 'e', 't', '\0', /* "dne.lu", true */ 'd', 'n', 'e', '.', 'l', 'u', '\0', /* "dnmaze.com", true */ 'd', 'n', 'm', 'a', 'z', 'e', '.', 'c', 'o', 'm', '\0', /* "dnmlab.it", true */ 'd', 'n', 'm', 'l', 'a', 'b', '.', 'i', 't', '\0', /* "dns-control.eu", true */ 'd', 'n', 's', '-', 'c', 'o', 'n', 't', 'r', 'o', 'l', '.', 'e', 'u', '\0', /* "dns-manager.info", true */ 'd', 'n', 's', '-', 'm', 'a', 'n', 'a', 'g', 'e', 'r', '.', 'i', 'n', 'f', 'o', '\0', @@ -4399,17 +4404,16 @@ static const char kSTSHostTable[] = { /* "doctorwho.cz", true */ 'd', 'o', 'c', 't', 'o', 'r', 'w', 'h', 'o', '.', 'c', 'z', '\0', /* "docucopies.com", true */ 'd', 'o', 'c', 'u', 'c', 'o', 'p', 'i', 'e', 's', '.', 'c', 'o', 'm', '\0', /* "doculus.io", true */ 'd', 'o', 'c', 'u', 'l', 'u', 's', '.', 'i', 'o', '\0', /* "docupet.com", true */ 'd', 'o', 'c', 'u', 'p', 'e', 't', '.', 'c', 'o', 'm', '\0', /* "doesmycodehavebugs.today", true */ 'd', 'o', 'e', 's', 'm', 'y', 'c', 'o', 'd', 'e', 'h', 'a', 'v', 'e', 'b', 'u', 'g', 's', '.', 't', 'o', 'd', 'a', 'y', '\0', /* "dogan.ch", false */ 'd', 'o', 'g', 'a', 'n', '.', 'c', 'h', '\0', /* "dogcratereview.info", true */ 'd', 'o', 'g', 'c', 'r', 'a', 't', 'e', 'r', 'e', 'v', 'i', 'e', 'w', '.', 'i', 'n', 'f', 'o', '\0', /* "dogespeed.ga", true */ 'd', 'o', 'g', 'e', 's', 'p', 'e', 'e', 'd', '.', 'g', 'a', '\0', - /* "dogfi.sh", true */ 'd', 'o', 'g', 'f', 'i', '.', 's', 'h', '\0', /* "doggroomingcourse.com", true */ 'd', 'o', 'g', 'g', 'r', 'o', 'o', 'm', 'i', 'n', 'g', 'c', 'o', 'u', 'r', 's', 'e', '.', 'c', 'o', 'm', '\0', /* "dogmap.jp", true */ 'd', 'o', 'g', 'm', 'a', 'p', '.', 'j', 'p', '\0', /* "dognlife.com", true */ 'd', 'o', 'g', 'n', 'l', 'i', 'f', 'e', '.', 'c', 'o', 'm', '\0', /* "dogoodbehappyllc.com", true */ 'd', 'o', 'g', 'o', 'o', 'd', 'b', 'e', 'h', 'a', 'p', 'p', 'y', 'l', 'l', 'c', '.', 'c', 'o', 'm', '\0', /* "dohanews.co", true */ 'd', 'o', 'h', 'a', 'n', 'e', 'w', 's', '.', 'c', 'o', '\0', /* "doked.io", true */ 'd', 'o', 'k', 'e', 'd', '.', 'i', 'o', '\0', /* "dokelio-idf.fr", true */ 'd', 'o', 'k', 'e', 'l', 'i', 'o', '-', 'i', 'd', 'f', '.', 'f', 'r', '\0', /* "dokuraum.de", true */ 'd', 'o', 'k', 'u', 'r', 'a', 'u', 'm', '.', 'd', 'e', '\0', @@ -4688,17 +4692,16 @@ static const char kSTSHostTable[] = { /* "e-typ.eu", true */ 'e', '-', 't', 'y', 'p', '.', 'e', 'u', '\0', /* "e.mail.ru", true */ 'e', '.', 'm', 'a', 'i', 'l', '.', 'r', 'u', '\0', /* "e30gruppe.com", true */ 'e', '3', '0', 'g', 'r', 'u', 'p', 'p', 'e', '.', 'c', 'o', 'm', '\0', /* "e3kids.com", true */ 'e', '3', 'k', 'i', 'd', 's', '.', 'c', 'o', 'm', '\0', /* "e5tv.hu", true */ 'e', '5', 't', 'v', '.', 'h', 'u', '\0', /* "e7d.io", true */ 'e', '7', 'd', '.', 'i', 'o', '\0', /* "eagle-aluminum.com", true */ 'e', 'a', 'g', 'l', 'e', '-', 'a', 'l', 'u', 'm', 'i', 'n', 'u', 'm', '.', 'c', 'o', 'm', '\0', /* "eagle-yard.de", true */ 'e', 'a', 'g', 'l', 'e', '-', 'y', 'a', 'r', 'd', '.', 'd', 'e', '\0', - /* "eagleridgecampground.com", true */ 'e', 'a', 'g', 'l', 'e', 'r', 'i', 'd', 'g', 'e', 'c', 'a', 'm', 'p', 'g', 'r', 'o', 'u', 'n', 'd', '.', 'c', 'o', 'm', '\0', /* "eaglesecurity.com", true */ 'e', 'a', 'g', 'l', 'e', 's', 'e', 'c', 'u', 'r', 'i', 't', 'y', '.', 'c', 'o', 'm', '\0', /* "eagletechz.com.br", true */ 'e', 'a', 'g', 'l', 'e', 't', 'e', 'c', 'h', 'z', '.', 'c', 'o', 'm', '.', 'b', 'r', '\0', /* "eagleyecs.com", true */ 'e', 'a', 'g', 'l', 'e', 'y', 'e', 'c', 's', '.', 'c', 'o', 'm', '\0', /* "ealev.de", true */ 'e', 'a', 'l', 'e', 'v', '.', 'd', 'e', '\0', /* "eam-gmbh.com", true */ 'e', 'a', 'm', '-', 'g', 'm', 'b', 'h', '.', 'c', 'o', 'm', '\0', /* "eames-clayton.us", true */ 'e', 'a', 'm', 'e', 's', '-', 'c', 'l', 'a', 'y', 't', 'o', 'n', '.', 'u', 's', '\0', /* "earmarks.gov", true */ 'e', 'a', 'r', 'm', 'a', 'r', 'k', 's', '.', 'g', 'o', 'v', '\0', /* "earth-people.org", true */ 'e', 'a', 'r', 't', 'h', '-', 'p', 'e', 'o', 'p', 'l', 'e', '.', 'o', 'r', 'g', '\0', @@ -4802,16 +4805,17 @@ static const char kSTSHostTable[] = { /* "educators.co.nz", true */ 'e', 'd', 'u', 'c', 'a', 't', 'o', 'r', 's', '.', 'c', 'o', '.', 'n', 'z', '\0', /* "educourse.ga", true */ 'e', 'd', 'u', 'c', 'o', 'u', 'r', 's', 'e', '.', 'g', 'a', '\0', /* "eduid.se", true */ 'e', 'd', 'u', 'i', 'd', '.', 's', 'e', '\0', /* "eduif.nl", false */ 'e', 'd', 'u', 'i', 'f', '.', 'n', 'l', '\0', /* "eduroam.no", true */ 'e', 'd', 'u', 'r', 'o', 'a', 'm', '.', 'n', 'o', '\0', /* "edusantorini.com", true */ 'e', 'd', 'u', 's', 'a', 'n', 't', 'o', 'r', 'i', 'n', 'i', '.', 'c', 'o', 'm', '\0', /* "edv-lehrgang.de", true */ 'e', 'd', 'v', '-', 'l', 'e', 'h', 'r', 'g', 'a', 'n', 'g', '.', 'd', 'e', '\0', /* "edvmesstec.de", true */ 'e', 'd', 'v', 'm', 'e', 's', 's', 't', 'e', 'c', '.', 'd', 'e', '\0', + /* "edwards.me.uk", true */ 'e', 'd', 'w', 'a', 'r', 'd', 's', '.', 'm', 'e', '.', 'u', 'k', '\0', /* "edwardsnowden.com", true */ 'e', 'd', 'w', 'a', 'r', 'd', 's', 'n', 'o', 'w', 'd', 'e', 'n', '.', 'c', 'o', 'm', '\0', /* "edxg.de", false */ 'e', 'd', 'x', 'g', '.', 'd', 'e', '\0', /* "edyou.eu", true */ 'e', 'd', 'y', 'o', 'u', '.', 'e', 'u', '\0', /* "edzilla.info", true */ 'e', 'd', 'z', 'i', 'l', 'l', 'a', '.', 'i', 'n', 'f', 'o', '\0', /* "ee-terminals.com", true */ 'e', 'e', '-', 't', 'e', 'r', 'm', 'i', 'n', 'a', 'l', 's', '.', 'c', 'o', 'm', '\0', /* "eeb98.com", true */ 'e', 'e', 'b', '9', '8', '.', 'c', 'o', 'm', '\0', /* "eelsden.net", true */ 'e', 'e', 'l', 's', 'd', 'e', 'n', '.', 'n', 'e', 't', '\0', /* "eelzak.nl", true */ 'e', 'e', 'l', 'z', 'a', 'k', '.', 'n', 'l', '\0', @@ -4893,16 +4897,18 @@ static const char kSTSHostTable[] = { /* "el-soul.com", true */ 'e', 'l', '-', 's', 'o', 'u', 'l', '.', 'c', 'o', 'm', '\0', /* "elaon.de", true */ 'e', 'l', 'a', 'o', 'n', '.', 'd', 'e', '\0', /* "elars.de", true */ 'e', 'l', 'a', 'r', 's', '.', 'd', 'e', '\0', /* "elastic7.uk", false */ 'e', 'l', 'a', 's', 't', 'i', 'c', '7', '.', 'u', 'k', '\0', /* "elaxy-online.de", true */ 'e', 'l', 'a', 'x', 'y', '-', 'o', 'n', 'l', 'i', 'n', 'e', '.', 'd', 'e', '\0', /* "elblein.de", true */ 'e', 'l', 'b', 'l', 'e', 'i', 'n', '.', 'd', 'e', '\0', /* "eldinhadzic.com", true */ 'e', 'l', 'd', 'i', 'n', 'h', 'a', 'd', 'z', 'i', 'c', '.', 'c', 'o', 'm', '\0', /* "elearningpilot.com", true */ 'e', 'l', 'e', 'a', 'r', 'n', 'i', 'n', 'g', 'p', 'i', 'l', 'o', 't', '.', 'c', 'o', 'm', '\0', + /* "electricant.com", true */ 'e', 'l', 'e', 'c', 't', 'r', 'i', 'c', 'a', 'n', 't', '.', 'c', 'o', 'm', '\0', + /* "electricant.nl", true */ 'e', 'l', 'e', 'c', 't', 'r', 'i', 'c', 'a', 'n', 't', '.', 'n', 'l', '\0', /* "electricoperaduo.com", true */ 'e', 'l', 'e', 'c', 't', 'r', 'i', 'c', 'o', 'p', 'e', 'r', 'a', 'd', 'u', 'o', '.', 'c', 'o', 'm', '\0', /* "electronic-ignition-system.com", true */ 'e', 'l', 'e', 'c', 't', 'r', 'o', 'n', 'i', 'c', '-', 'i', 'g', 'n', 'i', 't', 'i', 'o', 'n', '-', 's', 'y', 's', 't', 'e', 'm', '.', 'c', 'o', 'm', '\0', /* "electronicfasteners.com", true */ 'e', 'l', 'e', 'c', 't', 'r', 'o', 'n', 'i', 'c', 'f', 'a', 's', 't', 'e', 'n', 'e', 'r', 's', '.', 'c', 'o', 'm', '\0', /* "elefantevoador.com", true */ 'e', 'l', 'e', 'f', 'a', 'n', 't', 'e', 'v', 'o', 'a', 'd', 'o', 'r', '.', 'c', 'o', 'm', '\0', /* "eleicoes2014.com.br", true */ 'e', 'l', 'e', 'i', 'c', 'o', 'e', 's', '2', '0', '1', '4', '.', 'c', 'o', 'm', '.', 'b', 'r', '\0', /* "eleicoes2016.com.br", true */ 'e', 'l', 'e', 'i', 'c', 'o', 'e', 's', '2', '0', '1', '6', '.', 'c', 'o', 'm', '.', 'b', 'r', '\0', /* "elektro-collee.de", true */ 'e', 'l', 'e', 'k', 't', 'r', 'o', '-', 'c', 'o', 'l', 'l', 'e', 'e', '.', 'd', 'e', '\0', /* "elektro-diehm.de", true */ 'e', 'l', 'e', 'k', 't', 'r', 'o', '-', 'd', 'i', 'e', 'h', 'm', '.', 'd', 'e', '\0', @@ -5095,17 +5101,17 @@ static const char kSTSHostTable[] = { /* "epichouse.net", true */ 'e', 'p', 'i', 'c', 'h', 'o', 'u', 's', 'e', '.', 'n', 'e', 't', '\0', /* "epickitty.co.uk", true */ 'e', 'p', 'i', 'c', 'k', 'i', 't', 't', 'y', '.', 'c', 'o', '.', 'u', 'k', '\0', /* "epicpages.com", true */ 'e', 'p', 'i', 'c', 'p', 'a', 'g', 'e', 's', '.', 'c', 'o', 'm', '\0', /* "epicsecure.de", true */ 'e', 'p', 'i', 'c', 's', 'e', 'c', 'u', 'r', 'e', '.', 'd', 'e', '\0', /* "epicsoft.de", true */ 'e', 'p', 'i', 'c', 's', 'o', 'f', 't', '.', 'd', 'e', '\0', /* "epicwalnutcreek.com", true */ 'e', 'p', 'i', 'c', 'w', 'a', 'l', 'n', 'u', 't', 'c', 'r', 'e', 'e', 'k', '.', 'c', 'o', 'm', '\0', /* "epizentrum.work", true */ 'e', 'p', 'i', 'z', 'e', 'n', 't', 'r', 'u', 'm', '.', 'w', 'o', 'r', 'k', '\0', /* "epizentrum.works", true */ 'e', 'p', 'i', 'z', 'e', 'n', 't', 'r', 'u', 'm', '.', 'w', 'o', 'r', 'k', 's', '\0', - /* "epoch.com", false */ 'e', 'p', 'o', 'c', 'h', '.', 'c', 'o', 'm', '\0', + /* "epoch.com", true */ 'e', 'p', 'o', 'c', 'h', '.', 'c', 'o', 'm', '\0', /* "epostplus.li", true */ 'e', 'p', 'o', 's', 't', 'p', 'l', 'u', 's', '.', 'l', 'i', '\0', /* "eprofitacademy.com", true */ 'e', 'p', 'r', 'o', 'f', 'i', 't', 'a', 'c', 'a', 'd', 'e', 'm', 'y', '.', 'c', 'o', 'm', '\0', /* "epsilon.dk", true */ 'e', 'p', 's', 'i', 'l', 'o', 'n', '.', 'd', 'k', '\0', /* "epsorting.cz", true */ 'e', 'p', 's', 'o', 'r', 't', 'i', 'n', 'g', '.', 'c', 'z', '\0', /* "epublibre.org", true */ 'e', 'p', 'u', 'b', 'l', 'i', 'b', 'r', 'e', '.', 'o', 'r', 'g', '\0', /* "eq-serve.com", true */ 'e', 'q', '-', 's', 'e', 'r', 'v', 'e', '.', 'c', 'o', 'm', '\0', /* "eqim.me", true */ 'e', 'q', 'i', 'm', '.', 'm', 'e', '\0', /* "eqorg.com", true */ 'e', 'q', 'o', 'r', 'g', '.', 'c', 'o', 'm', '\0', @@ -5556,16 +5562,17 @@ static const char kSTSHostTable[] = { /* "federicomigliavacca.it", true */ 'f', 'e', 'd', 'e', 'r', 'i', 'c', 'o', 'm', 'i', 'g', 'l', 'i', 'a', 'v', 'a', 'c', 'c', 'a', '.', 'i', 't', '\0', /* "fedinvest.gov", true */ 'f', 'e', 'd', 'i', 'n', 'v', 'e', 's', 't', '.', 'g', 'o', 'v', '\0', /* "fedjobs.gov", true */ 'f', 'e', 'd', 'j', 'o', 'b', 's', '.', 'g', 'o', 'v', '\0', /* "fedo.moe", true */ 'f', 'e', 'd', 'o', '.', 'm', 'o', 'e', '\0', /* "fedorahosted.org", true */ 'f', 'e', 'd', 'o', 'r', 'a', 'h', 'o', 's', 't', 'e', 'd', '.', 'o', 'r', 'g', '\0', /* "fedoramagazine.org", true */ 'f', 'e', 'd', 'o', 'r', 'a', 'm', 'a', 'g', 'a', 'z', 'i', 'n', 'e', '.', 'o', 'r', 'g', '\0', /* "fedorapeople.org", true */ 'f', 'e', 'd', 'o', 'r', 'a', 'p', 'e', 'o', 'p', 'l', 'e', '.', 'o', 'r', 'g', '\0', /* "fedramp.gov", false */ 'f', 'e', 'd', 'r', 'a', 'm', 'p', '.', 'g', 'o', 'v', '\0', + /* "fedrtc.org", true */ 'f', 'e', 'd', 'r', 't', 'c', '.', 'o', 'r', 'g', '\0', /* "feedbin.com", false */ 'f', 'e', 'e', 'd', 'b', 'i', 'n', '.', 'c', 'o', 'm', '\0', /* "feedhq.org", true */ 'f', 'e', 'e', 'd', 'h', 'q', '.', 'o', 'r', 'g', '\0', /* "feedkovacs.hu", true */ 'f', 'e', 'e', 'd', 'k', 'o', 'v', 'a', 'c', 's', '.', 'h', 'u', '\0', /* "feedthebot.com", true */ 'f', 'e', 'e', 'd', 't', 'h', 'e', 'b', 'o', 't', '.', 'c', 'o', 'm', '\0', /* "feedthefuture.gov", true */ 'f', 'e', 'e', 'd', 't', 'h', 'e', 'f', 'u', 't', 'u', 'r', 'e', '.', 'g', 'o', 'v', '\0', /* "feel.aero", true */ 'f', 'e', 'e', 'l', '.', 'a', 'e', 'r', 'o', '\0', /* "feen.us", true */ 'f', 'e', 'e', 'n', '.', 'u', 's', '\0', /* "fefore.com", true */ 'f', 'e', 'f', 'o', 'r', 'e', '.', 'c', 'o', 'm', '\0', @@ -5640,17 +5647,16 @@ static const char kSTSHostTable[] = { /* "fight215.org", true */ 'f', 'i', 'g', 'h', 't', '2', '1', '5', '.', 'o', 'r', 'g', '\0', /* "figurasdelinguagem.com.br", true */ 'f', 'i', 'g', 'u', 'r', 'a', 's', 'd', 'e', 'l', 'i', 'n', 'g', 'u', 'a', 'g', 'e', 'm', '.', 'c', 'o', 'm', '.', 'b', 'r', '\0', /* "figuurzagers.nl", false */ 'f', 'i', 'g', 'u', 'u', 'r', 'z', 'a', 'g', 'e', 'r', 's', '.', 'n', 'l', '\0', /* "fiilr.com", true */ 'f', 'i', 'i', 'l', 'r', '.', 'c', 'o', 'm', '\0', /* "fiix.io", true */ 'f', 'i', 'i', 'x', '.', 'i', 'o', '\0', /* "fiken.no", true */ 'f', 'i', 'k', 'e', 'n', '.', 'n', 'o', '\0', /* "fiksel.info", true */ 'f', 'i', 'k', 's', 'e', 'l', '.', 'i', 'n', 'f', 'o', '\0', /* "file-pdf.it", true */ 'f', 'i', 'l', 'e', '-', 'p', 'd', 'f', '.', 'i', 't', '\0', - /* "filebox.moe", true */ 'f', 'i', 'l', 'e', 'b', 'o', 'x', '.', 'm', 'o', 'e', '\0', /* "filedir.com", false */ 'f', 'i', 'l', 'e', 'd', 'i', 'r', '.', 'c', 'o', 'm', '\0', /* "filemeal.com", true */ 'f', 'i', 'l', 'e', 'm', 'e', 'a', 'l', '.', 'c', 'o', 'm', '\0', /* "filesense.com", true */ 'f', 'i', 'l', 'e', 's', 'e', 'n', 's', 'e', '.', 'c', 'o', 'm', '\0', /* "filestar.io", true */ 'f', 'i', 'l', 'e', 's', 't', 'a', 'r', '.', 'i', 'o', '\0', /* "filey.co.uk", true */ 'f', 'i', 'l', 'e', 'y', '.', 'c', 'o', '.', 'u', 'k', '\0', /* "filhodohomem.com", true */ 'f', 'i', 'l', 'h', 'o', 'd', 'o', 'h', 'o', 'm', 'e', 'm', '.', 'c', 'o', 'm', '\0', /* "filhomes.ph", true */ 'f', 'i', 'l', 'h', 'o', 'm', 'e', 's', '.', 'p', 'h', '\0', /* "filip-prochazka.com", true */ 'f', 'i', 'l', 'i', 'p', '-', 'p', 'r', 'o', 'c', 'h', 'a', 'z', 'k', 'a', '.', 'c', 'o', 'm', '\0', @@ -6035,17 +6041,16 @@ static const char kSTSHostTable[] = { /* "fsapubs.gov", true */ 'f', 's', 'a', 'p', 'u', 'b', 's', '.', 'g', 'o', 'v', '\0', /* "fsbpaintrock.com", true */ 'f', 's', 'b', 'p', 'a', 'i', 'n', 't', 'r', 'o', 'c', 'k', '.', 'c', 'o', 'm', '\0', /* "fsbturton.com", true */ 'f', 's', 'b', 't', 'u', 'r', 't', 'o', 'n', '.', 'c', 'o', 'm', '\0', /* "fsf.moe", true */ 'f', 's', 'f', '.', 'm', 'o', 'e', '\0', /* "fsfi.is", true */ 'f', 's', 'f', 'i', '.', 'i', 's', '\0', /* "fsinf.at", true */ 'f', 's', 'i', 'n', 'f', '.', 'a', 't', '\0', /* "fsm2016.org", true */ 'f', 's', 'm', '2', '0', '1', '6', '.', 'o', 'r', 'g', '\0', /* "fsradio.eu", true */ 'f', 's', 'r', 'a', 'd', 'i', 'o', '.', 'e', 'u', '\0', - /* "fstfy.de", true */ 'f', 's', 't', 'f', 'y', '.', 'd', 'e', '\0', /* "ftang.de", true */ 'f', 't', 'a', 'n', 'g', '.', 'd', 'e', '\0', /* "ftc.gov", false */ 'f', 't', 'c', '.', 'g', 'o', 'v', '\0', /* "ftccomplaintassistant.gov", true */ 'f', 't', 'c', 'c', 'o', 'm', 'p', 'l', 'a', 'i', 'n', 't', 'a', 's', 's', 'i', 's', 't', 'a', 'n', 't', '.', 'g', 'o', 'v', '\0', /* "ftcefile.gov", true */ 'f', 't', 'c', 'e', 'f', 'i', 'l', 'e', '.', 'g', 'o', 'v', '\0', /* "fteproxy.org", true */ 'f', 't', 'e', 'p', 'r', 'o', 'x', 'y', '.', 'o', 'r', 'g', '\0', /* "ftpi.ml", true */ 'f', 't', 'p', 'i', '.', 'm', 'l', '\0', /* "ftrsecure.com", true */ 'f', 't', 'r', 's', 'e', 'c', 'u', 'r', 'e', '.', 'c', 'o', 'm', '\0', /* "fuchsy.com", true */ 'f', 'u', 'c', 'h', 's', 'y', '.', 'c', 'o', 'm', '\0', @@ -6134,16 +6139,17 @@ static const char kSTSHostTable[] = { /* "gadgethacks.com", true */ 'g', 'a', 'd', 'g', 'e', 't', 'h', 'a', 'c', 'k', 's', '.', 'c', 'o', 'm', '\0', /* "gaestehaus-monika.com", true */ 'g', 'a', 'e', 's', 't', 'e', 'h', 'a', 'u', 's', '-', 'm', 'o', 'n', 'i', 'k', 'a', '.', 'c', 'o', 'm', '\0', /* "gagniard.org", true */ 'g', 'a', 'g', 'n', 'i', 'a', 'r', 'd', '.', 'o', 'r', 'g', '\0', /* "gagor.pl", true */ 'g', 'a', 'g', 'o', 'r', '.', 'p', 'l', '\0', /* "gagstempel.de", true */ 'g', 'a', 'g', 's', 't', 'e', 'm', 'p', 'e', 'l', '.', 'd', 'e', '\0', /* "gaichanh.com", true */ 'g', 'a', 'i', 'c', 'h', 'a', 'n', 'h', '.', 'c', 'o', 'm', '\0', /* "gaichon.com", true */ 'g', 'a', 'i', 'c', 'h', 'o', 'n', '.', 'c', 'o', 'm', '\0', /* "gaireg.de", true */ 'g', 'a', 'i', 'r', 'e', 'g', '.', 'd', 'e', '\0', + /* "gaiserik.com", true */ 'g', 'a', 'i', 's', 'e', 'r', 'i', 'k', '.', 'c', 'o', 'm', '\0', /* "gaite.me", true */ 'g', 'a', 'i', 't', 'e', '.', 'm', 'e', '\0', /* "gakkainavi-epsilon.jp", true */ 'g', 'a', 'k', 'k', 'a', 'i', 'n', 'a', 'v', 'i', '-', 'e', 'p', 's', 'i', 'l', 'o', 'n', '.', 'j', 'p', '\0', /* "gakkainavi-epsilon.net", true */ 'g', 'a', 'k', 'k', 'a', 'i', 'n', 'a', 'v', 'i', '-', 'e', 'p', 's', 'i', 'l', 'o', 'n', '.', 'n', 'e', 't', '\0', /* "gakkainavi.net", true */ 'g', 'a', 'k', 'k', 'a', 'i', 'n', 'a', 'v', 'i', '.', 'n', 'e', 't', '\0', /* "gakkainavi4.jp", true */ 'g', 'a', 'k', 'k', 'a', 'i', 'n', 'a', 'v', 'i', '4', '.', 'j', 'p', '\0', /* "galactic-crew.org", true */ 'g', 'a', 'l', 'a', 'c', 't', 'i', 'c', '-', 'c', 'r', 'e', 'w', '.', 'o', 'r', 'g', '\0', /* "galena.io", true */ 'g', 'a', 'l', 'e', 'n', 'a', '.', 'i', 'o', '\0', /* "galgoafegao.com.br", true */ 'g', 'a', 'l', 'g', 'o', 'a', 'f', 'e', 'g', 'a', 'o', '.', 'c', 'o', 'm', '.', 'b', 'r', '\0', @@ -6155,16 +6161,17 @@ static const char kSTSHostTable[] = { /* "gamberorosso.menu", true */ 'g', 'a', 'm', 'b', 'e', 'r', 'o', 'r', 'o', 's', 's', 'o', '.', 'm', 'e', 'n', 'u', '\0', /* "gambetti.fr", true */ 'g', 'a', 'm', 'b', 'e', 't', 't', 'i', '.', 'f', 'r', '\0', /* "gambit.pro", true */ 'g', 'a', 'm', 'b', 'i', 't', '.', 'p', 'r', 'o', '\0', /* "gambitcloud.net", true */ 'g', 'a', 'm', 'b', 'i', 't', 'c', 'l', 'o', 'u', 'd', '.', 'n', 'e', 't', '\0', /* "gambitnash.co.uk", true */ 'g', 'a', 'm', 'b', 'i', 't', 'n', 'a', 's', 'h', '.', 'c', 'o', '.', 'u', 'k', '\0', /* "gambitnash.com", true */ 'g', 'a', 'm', 'b', 'i', 't', 'n', 'a', 's', 'h', '.', 'c', 'o', 'm', '\0', /* "gambitprint.com", true */ 'g', 'a', 'm', 'b', 'i', 't', 'p', 'r', 'i', 'n', 't', '.', 'c', 'o', 'm', '\0', /* "game-gentle.com", true */ 'g', 'a', 'm', 'e', '-', 'g', 'e', 'n', 't', 'l', 'e', '.', 'c', 'o', 'm', '\0', + /* "game.yt", true */ 'g', 'a', 'm', 'e', '.', 'y', 't', '\0', /* "game7.de", true */ 'g', 'a', 'm', 'e', '7', '.', 'd', 'e', '\0', /* "gamecard-shop.nl", true */ 'g', 'a', 'm', 'e', 'c', 'a', 'r', 'd', '-', 's', 'h', 'o', 'p', '.', 'n', 'l', '\0', /* "gameclue.jp", true */ 'g', 'a', 'm', 'e', 'c', 'l', 'u', 'e', '.', 'j', 'p', '\0', /* "gamecollector.be", true */ 'g', 'a', 'm', 'e', 'c', 'o', 'l', 'l', 'e', 'c', 't', 'o', 'r', '.', 'b', 'e', '\0', /* "gamedevelopers.pl", true */ 'g', 'a', 'm', 'e', 'd', 'e', 'v', 'e', 'l', 'o', 'p', 'e', 'r', 's', '.', 'p', 'l', '\0', /* "gamegix.com", true */ 'g', 'a', 'm', 'e', 'g', 'i', 'x', '.', 'c', 'o', 'm', '\0', /* "gameguardian.net", true */ 'g', 'a', 'm', 'e', 'g', 'u', 'a', 'r', 'd', 'i', 'a', 'n', '.', 'n', 'e', 't', '\0', /* "gameisbest.jp", true */ 'g', 'a', 'm', 'e', 'i', 's', 'b', 'e', 's', 't', '.', 'j', 'p', '\0', @@ -6312,16 +6319,17 @@ static const char kSTSHostTable[] = { /* "geoscan.aero", true */ 'g', 'e', 'o', 's', 'c', 'a', 'n', '.', 'a', 'e', 'r', 'o', '\0', /* "geosphereservices.com", true */ 'g', 'e', 'o', 's', 'p', 'h', 'e', 'r', 'e', 's', 'e', 'r', 'v', 'i', 'c', 'e', 's', '.', 'c', 'o', 'm', '\0', /* "geotab.com", true */ 'g', 'e', 'o', 't', 'a', 'b', '.', 'c', 'o', 'm', '\0', /* "geraintwhite.co.uk", true */ 'g', 'e', 'r', 'a', 'i', 'n', 't', 'w', 'h', 'i', 't', 'e', '.', 'c', 'o', '.', 'u', 'k', '\0', /* "gerardozamudio.mx", true */ 'g', 'e', 'r', 'a', 'r', 'd', 'o', 'z', 'a', 'm', 'u', 'd', 'i', 'o', '.', 'm', 'x', '\0', /* "gereon.ch", true */ 'g', 'e', 'r', 'e', 'o', 'n', '.', 'c', 'h', '\0', /* "germandarknes.net", true */ 'g', 'e', 'r', 'm', 'a', 'n', 'd', 'a', 'r', 'k', 'n', 'e', 's', '.', 'n', 'e', 't', '\0', /* "germansoldiers.net", true */ 'g', 'e', 'r', 'm', 'a', 'n', 's', 'o', 'l', 'd', 'i', 'e', 'r', 's', '.', 'n', 'e', 't', '\0', + /* "gernert-server.de", true */ 'g', 'e', 'r', 'n', 'e', 'r', 't', '-', 's', 'e', 'r', 'v', 'e', 'r', '.', 'd', 'e', '\0', /* "gerritcodereview.com", true */ 'g', 'e', 'r', 'r', 'i', 't', 'c', 'o', 'd', 'e', 'r', 'e', 'v', 'i', 'e', 'w', '.', 'c', 'o', 'm', '\0', /* "gers-authentique.com", true */ 'g', 'e', 'r', 's', '-', 'a', 'u', 't', 'h', 'e', 'n', 't', 'i', 'q', 'u', 'e', '.', 'c', 'o', 'm', '\0', /* "gerwinvanderkamp.nl", true */ 'g', 'e', 'r', 'w', 'i', 'n', 'v', 'a', 'n', 'd', 'e', 'r', 'k', 'a', 'm', 'p', '.', 'n', 'l', '\0', /* "ges-bo.de", true */ 'g', 'e', 's', '-', 'b', 'o', '.', 'd', 'e', '\0', /* "geschmacksache.online", true */ 'g', 'e', 's', 'c', 'h', 'm', 'a', 'c', 'k', 's', 'a', 'c', 'h', 'e', '.', 'o', 'n', 'l', 'i', 'n', 'e', '\0', /* "geschwinder.net", true */ 'g', 'e', 's', 'c', 'h', 'w', 'i', 'n', 'd', 'e', 'r', '.', 'n', 'e', 't', '\0', /* "gesunde-smoothies.de", true */ 'g', 'e', 's', 'u', 'n', 'd', 'e', '-', 's', 'm', 'o', 'o', 't', 'h', 'i', 'e', 's', '.', 'd', 'e', '\0', /* "get-asterisk.ru", true */ 'g', 'e', 't', '-', 'a', 's', 't', 'e', 'r', 'i', 's', 'k', '.', 'r', 'u', '\0', @@ -6332,17 +6340,16 @@ static const char kSTSHostTable[] = { /* "getbutterfly.com", true */ 'g', 'e', 't', 'b', 'u', 't', 't', 'e', 'r', 'f', 'l', 'y', '.', 'c', 'o', 'm', '\0', /* "getcarina.com", true */ 'g', 'e', 't', 'c', 'a', 'r', 'i', 'n', 'a', '.', 'c', 'o', 'm', '\0', /* "getcloak.com", false */ 'g', 'e', 't', 'c', 'l', 'o', 'a', 'k', '.', 'c', 'o', 'm', '\0', /* "getcolq.com", true */ 'g', 'e', 't', 'c', 'o', 'l', 'q', '.', 'c', 'o', 'm', '\0', /* "getdash.io", true */ 'g', 'e', 't', 'd', 'a', 's', 'h', '.', 'i', 'o', '\0', /* "getdigitized.net", true */ 'g', 'e', 't', 'd', 'i', 'g', 'i', 't', 'i', 'z', 'e', 'd', '.', 'n', 'e', 't', '\0', /* "geterp.ru", true */ 'g', 'e', 't', 'e', 'r', 'p', '.', 'r', 'u', '\0', /* "getfedora.org", true */ 'g', 'e', 't', 'f', 'e', 'd', 'o', 'r', 'a', '.', 'o', 'r', 'g', '\0', - /* "getfestify.com", true */ 'g', 'e', 't', 'f', 'e', 's', 't', 'i', 'f', 'y', '.', 'c', 'o', 'm', '\0', /* "getfittedstore.com", true */ 'g', 'e', 't', 'f', 'i', 't', 't', 'e', 'd', 's', 't', 'o', 'r', 'e', '.', 'c', 'o', 'm', '\0', /* "getflorence.co.uk", true */ 'g', 'e', 't', 'f', 'l', 'o', 'r', 'e', 'n', 'c', 'e', '.', 'c', 'o', '.', 'u', 'k', '\0', /* "gethttpsforfree.com", true */ 'g', 'e', 't', 'h', 't', 't', 'p', 's', 'f', 'o', 'r', 'f', 'r', 'e', 'e', '.', 'c', 'o', 'm', '\0', /* "geti2p.com", true */ 'g', 'e', 't', 'i', '2', 'p', '.', 'c', 'o', 'm', '\0', /* "getidmcc.com", true */ 'g', 'e', 't', 'i', 'd', 'm', 'c', 'c', '.', 'c', 'o', 'm', '\0', /* "getitpeople.com", true */ 'g', 'e', 't', 'i', 't', 'p', 'e', 'o', 'p', 'l', 'e', '.', 'c', 'o', 'm', '\0', /* "getmango.com", true */ 'g', 'e', 't', 'm', 'a', 'n', 'g', 'o', '.', 'c', 'o', 'm', '\0', /* "getmdl.io", true */ 'g', 'e', 't', 'm', 'd', 'l', '.', 'i', 'o', '\0', @@ -6450,16 +6457,17 @@ static const char kSTSHostTable[] = { /* "globalcomix.com", true */ 'g', 'l', 'o', 'b', 'a', 'l', 'c', 'o', 'm', 'i', 'x', '.', 'c', 'o', 'm', '\0', /* "globalgivingtime.com", true */ 'g', 'l', 'o', 'b', 'a', 'l', 'g', 'i', 'v', 'i', 'n', 'g', 't', 'i', 'm', 'e', '.', 'c', 'o', 'm', '\0', /* "globalhealth.gov", true */ 'g', 'l', 'o', 'b', 'a', 'l', 'h', 'e', 'a', 'l', 't', 'h', '.', 'g', 'o', 'v', '\0', /* "globalinstitutefortraining.org.au", true */ 'g', 'l', 'o', 'b', 'a', 'l', 'i', 'n', 's', 't', 'i', 't', 'u', 't', 'e', 'f', 'o', 'r', 't', 'r', 'a', 'i', 'n', 'i', 'n', 'g', '.', 'o', 'r', 'g', '.', 'a', 'u', '\0', /* "globalonetechnology.com", true */ 'g', 'l', 'o', 'b', 'a', 'l', 'o', 'n', 'e', 't', 'e', 'c', 'h', 'n', 'o', 'l', 'o', 'g', 'y', '.', 'c', 'o', 'm', '\0', /* "globalperspectivescanada.com", true */ 'g', 'l', 'o', 'b', 'a', 'l', 'p', 'e', 'r', 's', 'p', 'e', 'c', 't', 'i', 'v', 'e', 's', 'c', 'a', 'n', 'a', 'd', 'a', '.', 'c', 'o', 'm', '\0', /* "globalvisions-events.ch", true */ 'g', 'l', 'o', 'b', 'a', 'l', 'v', 'i', 's', 'i', 'o', 'n', 's', '-', 'e', 'v', 'e', 'n', 't', 's', '.', 'c', 'h', '\0', /* "globuli-info.de", true */ 'g', 'l', 'o', 'b', 'u', 'l', 'i', '-', 'i', 'n', 'f', 'o', '.', 'd', 'e', '\0', + /* "glossopnorthendafc.co.uk", true */ 'g', 'l', 'o', 's', 's', 'o', 'p', 'n', 'o', 'r', 't', 'h', 'e', 'n', 'd', 'a', 'f', 'c', '.', 'c', 'o', '.', 'u', 'k', '\0', /* "glotter.com", true */ 'g', 'l', 'o', 't', 't', 'e', 'r', '.', 'c', 'o', 'm', '\0', /* "glubbforum.de", true */ 'g', 'l', 'u', 'b', 'b', 'f', 'o', 'r', 'u', 'm', '.', 'd', 'e', '\0', /* "glueckskindter.de", true */ 'g', 'l', 'u', 'e', 'c', 'k', 's', 'k', 'i', 'n', 'd', 't', 'e', 'r', '.', 'd', 'e', '\0', /* "glyph.ws", true */ 'g', 'l', 'y', 'p', 'h', '.', 'w', 's', '\0', /* "gm-assicurazioni.it", true */ 'g', 'm', '-', 'a', 's', 's', 'i', 'c', 'u', 'r', 'a', 'z', 'i', 'o', 'n', 'i', '.', 'i', 't', '\0', /* "gmail.com", false */ 'g', 'm', 'a', 'i', 'l', '.', 'c', 'o', 'm', '\0', /* "gmbh-kiekin.de", true */ 'g', 'm', 'b', 'h', '-', 'k', 'i', 'e', 'k', 'i', 'n', '.', 'd', 'e', '\0', /* "gmcd.co", true */ 'g', 'm', 'c', 'd', '.', 'c', 'o', '\0', @@ -6578,17 +6586,16 @@ static const char kSTSHostTable[] = { /* "gracetini.com", true */ 'g', 'r', 'a', 'c', 'e', 't', 'i', 'n', 'i', '.', 'c', 'o', 'm', '\0', /* "grachtenpandverkopen.nl", true */ 'g', 'r', 'a', 'c', 'h', 't', 'e', 'n', 'p', 'a', 'n', 'd', 'v', 'e', 'r', 'k', 'o', 'p', 'e', 'n', '.', 'n', 'l', '\0', /* "graciousmay.com", true */ 'g', 'r', 'a', 'c', 'i', 'o', 'u', 's', 'm', 'a', 'y', '.', 'c', 'o', 'm', '\0', /* "grademymac.com", true */ 'g', 'r', 'a', 'd', 'e', 'm', 'y', 'm', 'a', 'c', '.', 'c', 'o', 'm', '\0', /* "grademypc.com", true */ 'g', 'r', 'a', 'd', 'e', 'm', 'y', 'p', 'c', '.', 'c', 'o', 'm', '\0', /* "gradients.com", true */ 'g', 'r', 'a', 'd', 'i', 'e', 'n', 't', 's', '.', 'c', 'o', 'm', '\0', /* "graf.re", true */ 'g', 'r', 'a', 'f', '.', 'r', 'e', '\0', /* "grafcaps.com", true */ 'g', 'r', 'a', 'f', 'c', 'a', 'p', 's', '.', 'c', 'o', 'm', '\0', - /* "graffen.dk", true */ 'g', 'r', 'a', 'f', 'f', 'e', 'n', '.', 'd', 'k', '\0', /* "grafitec.ru", true */ 'g', 'r', 'a', 'f', 'i', 't', 'e', 'c', '.', 'r', 'u', '\0', /* "grafmurr.de", true */ 'g', 'r', 'a', 'f', 'm', 'u', 'r', 'r', '.', 'd', 'e', '\0', /* "graingert.co.uk", true */ 'g', 'r', 'a', 'i', 'n', 'g', 'e', 'r', 't', '.', 'c', 'o', '.', 'u', 'k', '\0', /* "graliv.net", true */ 'g', 'r', 'a', 'l', 'i', 'v', '.', 'n', 'e', 't', '\0', /* "gramati.com.br", true */ 'g', 'r', 'a', 'm', 'a', 't', 'i', '.', 'c', 'o', 'm', '.', 'b', 'r', '\0', /* "grana.com", true */ 'g', 'r', 'a', 'n', 'a', '.', 'c', 'o', 'm', '\0', /* "granary-demo.appspot.com", true */ 'g', 'r', 'a', 'n', 'a', 'r', 'y', '-', 'd', 'e', 'm', 'o', '.', 'a', 'p', 'p', 's', 'p', 'o', 't', '.', 'c', 'o', 'm', '\0', /* "grandcapital.id", true */ 'g', 'r', 'a', 'n', 'd', 'c', 'a', 'p', 'i', 't', 'a', 'l', '.', 'i', 'd', '\0', @@ -6749,16 +6756,17 @@ static const char kSTSHostTable[] = { /* "guitarmarketing.com", false */ 'g', 'u', 'i', 't', 'a', 'r', 'm', 'a', 'r', 'k', 'e', 't', 'i', 'n', 'g', '.', 'c', 'o', 'm', '\0', /* "gulch.in.ua", false */ 'g', 'u', 'l', 'c', 'h', '.', 'i', 'n', '.', 'u', 'a', '\0', /* "gulenbase.no", true */ 'g', 'u', 'l', 'e', 'n', 'b', 'a', 's', 'e', '.', 'n', 'o', '\0', /* "gummibande.noip.me", true */ 'g', 'u', 'm', 'm', 'i', 'b', 'a', 'n', 'd', 'e', '.', 'n', 'o', 'i', 'p', '.', 'm', 'e', '\0', /* "gunhunter.com", true */ 'g', 'u', 'n', 'h', 'u', 'n', 't', 'e', 'r', '.', 'c', 'o', 'm', '\0', /* "gunnaro.com", true */ 'g', 'u', 'n', 'n', 'a', 'r', 'o', '.', 'c', 'o', 'm', '\0', /* "guntbert.net", true */ 'g', 'u', 'n', 't', 'b', 'e', 'r', 't', '.', 'n', 'e', 't', '\0', /* "gunwatch.co.uk", true */ 'g', 'u', 'n', 'w', 'a', 't', 'c', 'h', '.', 'c', 'o', '.', 'u', 'k', '\0', + /* "guoqiang.info", true */ 'g', 'u', 'o', 'q', 'i', 'a', 'n', 'g', '.', 'i', 'n', 'f', 'o', '\0', /* "guphi.net", true */ 'g', 'u', 'p', 'h', 'i', '.', 'n', 'e', 't', '\0', /* "gurkan.in", true */ 'g', 'u', 'r', 'k', 'a', 'n', '.', 'i', 'n', '\0', /* "gurmel.ru", true */ 'g', 'u', 'r', 'm', 'e', 'l', '.', 'r', 'u', '\0', /* "gurochan.ch", true */ 'g', 'u', 'r', 'o', 'c', 'h', 'a', 'n', '.', 'c', 'h', '\0', /* "guru-naradi.cz", true */ 'g', 'u', 'r', 'u', '-', 'n', 'a', 'r', 'a', 'd', 'i', '.', 'c', 'z', '\0', /* "gurueffect.com", true */ 'g', 'u', 'r', 'u', 'e', 'f', 'f', 'e', 'c', 't', '.', 'c', 'o', 'm', '\0', /* "gus.host", true */ 'g', 'u', 's', '.', 'h', 'o', 's', 't', '\0', /* "gus.moe", true */ 'g', 'u', 's', '.', 'm', 'o', 'e', '\0', @@ -6910,17 +6918,16 @@ static const char kSTSHostTable[] = { /* "harrisonsdirect.co.uk", true */ 'h', 'a', 'r', 'r', 'i', 's', 'o', 'n', 's', 'd', 'i', 'r', 'e', 'c', 't', '.', 'c', 'o', '.', 'u', 'k', '\0', /* "harrisonswebsites.com", true */ 'h', 'a', 'r', 'r', 'i', 's', 'o', 'n', 's', 'w', 'e', 'b', 's', 'i', 't', 'e', 's', '.', 'c', 'o', 'm', '\0', /* "harrysmallbones.co.uk", true */ 'h', 'a', 'r', 'r', 'y', 's', 'm', 'a', 'l', 'l', 'b', 'o', 'n', 'e', 's', '.', 'c', 'o', '.', 'u', 'k', '\0', /* "harschnitz.nl", true */ 'h', 'a', 'r', 's', 'c', 'h', 'n', 'i', 't', 'z', '.', 'n', 'l', '\0', /* "hartie95.de", true */ 'h', 'a', 'r', 't', 'i', 'e', '9', '5', '.', 'd', 'e', '\0', /* "hartlep.email", true */ 'h', 'a', 'r', 't', 'l', 'e', 'p', '.', 'e', 'm', 'a', 'i', 'l', '\0', /* "hartlep.eu", true */ 'h', 'a', 'r', 't', 'l', 'e', 'p', '.', 'e', 'u', '\0', /* "harvestapp.com", true */ 'h', 'a', 'r', 'v', 'e', 's', 't', 'a', 'p', 'p', '.', 'c', 'o', 'm', '\0', - /* "harvester.fr", true */ 'h', 'a', 'r', 'v', 'e', 's', 't', 'e', 'r', '.', 'f', 'r', '\0', /* "hasdf.de", true */ 'h', 'a', 's', 'd', 'f', '.', 'd', 'e', '\0', /* "haselsteiner.me", true */ 'h', 'a', 's', 'e', 'l', 's', 't', 'e', 'i', 'n', 'e', 'r', '.', 'm', 'e', '\0', /* "hash-archive.org", true */ 'h', 'a', 's', 'h', '-', 'a', 'r', 'c', 'h', 'i', 'v', 'e', '.', 'o', 'r', 'g', '\0', /* "hash.works", true */ 'h', 'a', 's', 'h', '.', 'w', 'o', 'r', 'k', 's', '\0', /* "hashiconf.com", true */ 'h', 'a', 's', 'h', 'i', 'c', 'o', 'n', 'f', '.', 'c', 'o', 'm', '\0', /* "hashiconf.eu", true */ 'h', 'a', 's', 'h', 'i', 'c', 'o', 'n', 'f', '.', 'e', 'u', '\0', /* "hashicorp.com", true */ 'h', 'a', 's', 'h', 'i', 'c', 'o', 'r', 'p', '.', 'c', 'o', 'm', '\0', /* "hashidays.com", true */ 'h', 'a', 's', 'h', 'i', 'd', 'a', 'y', 's', '.', 'c', 'o', 'm', '\0', @@ -6931,16 +6938,17 @@ static const char kSTSHostTable[] = { /* "hashru.nl", true */ 'h', 'a', 's', 'h', 'r', 'u', '.', 'n', 'l', '\0', /* "hashworks.net", true */ 'h', 'a', 's', 'h', 'w', 'o', 'r', 'k', 's', '.', 'n', 'e', 't', '\0', /* "hasinase.de", false */ 'h', 'a', 's', 'i', 'n', 'a', 's', 'e', '.', 'd', 'e', '\0', /* "haskovec.com", true */ 'h', 'a', 's', 'k', 'o', 'v', 'e', 'c', '.', 'c', 'o', 'm', '\0', /* "hasselbach-dellwig.de", true */ 'h', 'a', 's', 's', 'e', 'l', 'b', 'a', 'c', 'h', '-', 'd', 'e', 'l', 'l', 'w', 'i', 'g', '.', 'd', 'e', '\0', /* "hatcherlawgroupnm.com", true */ 'h', 'a', 't', 'c', 'h', 'e', 'r', 'l', 'a', 'w', 'g', 'r', 'o', 'u', 'p', 'n', 'm', '.', 'c', 'o', 'm', '\0', /* "hatethe.uk", true */ 'h', 'a', 't', 'e', 't', 'h', 'e', '.', 'u', 'k', '\0', /* "hatisenang.com", false */ 'h', 'a', 't', 'i', 's', 'e', 'n', 'a', 'n', 'g', '.', 'c', 'o', 'm', '\0', + /* "haucke.xyz", false */ 'h', 'a', 'u', 'c', 'k', 'e', '.', 'x', 'y', 'z', '\0', /* "hauntedfishtank.com", false */ 'h', 'a', 'u', 'n', 't', 'e', 'd', 'f', 'i', 's', 'h', 't', 'a', 'n', 'k', '.', 'c', 'o', 'm', '\0', /* "haus-garten-test.de", true */ 'h', 'a', 'u', 's', '-', 'g', 'a', 'r', 't', 'e', 'n', '-', 't', 'e', 's', 't', '.', 'd', 'e', '\0', /* "hausverbrauch.de", true */ 'h', 'a', 'u', 's', 'v', 'e', 'r', 'b', 'r', 'a', 'u', 'c', 'h', '.', 'd', 'e', '\0', /* "hautarztzentrum.ch", true */ 'h', 'a', 'u', 't', 'a', 'r', 'z', 't', 'z', 'e', 'n', 't', 'r', 'u', 'm', '.', 'c', 'h', '\0', /* "haveforeningen-enghaven.dk", true */ 'h', 'a', 'v', 'e', 'f', 'o', 'r', 'e', 'n', 'i', 'n', 'g', 'e', 'n', '-', 'e', 'n', 'g', 'h', 'a', 'v', 'e', 'n', '.', 'd', 'k', '\0', /* "havefunbiking.com", true */ 'h', 'a', 'v', 'e', 'f', 'u', 'n', 'b', 'i', 'k', 'i', 'n', 'g', '.', 'c', 'o', 'm', '\0', /* "haveibeenpwned.com", true */ 'h', 'a', 'v', 'e', 'i', 'b', 'e', 'e', 'n', 'p', 'w', 'n', 'e', 'd', '.', 'c', 'o', 'm', '\0', /* "havellab.de", true */ 'h', 'a', 'v', 'e', 'l', 'l', 'a', 'b', '.', 'd', 'e', '\0', @@ -7321,17 +7329,16 @@ static const char kSTSHostTable[] = { /* "howtogeek.com", true */ 'h', 'o', 'w', 't', 'o', 'g', 'e', 'e', 'k', '.', 'c', 'o', 'm', '\0', /* "hozana.si", false */ 'h', 'o', 'z', 'a', 'n', 'a', '.', 's', 'i', '\0', /* "hp-work.net", true */ 'h', 'p', '-', 'w', 'o', 'r', 'k', '.', 'n', 'e', 't', '\0', /* "hpac-portal.com", true */ 'h', 'p', 'a', 'c', '-', 'p', 'o', 'r', 't', 'a', 'l', '.', 'c', 'o', 'm', '\0', /* "hpbn.co", true */ 'h', 'p', 'b', 'n', '.', 'c', 'o', '\0', /* "hpisavageforum.com", true */ 'h', 'p', 'i', 's', 'a', 'v', 'a', 'g', 'e', 'f', 'o', 'r', 'u', 'm', '.', 'c', 'o', 'm', '\0', /* "hpkp-faq.de", true */ 'h', 'p', 'k', 'p', '-', 'f', 'a', 'q', '.', 'd', 'e', '\0', /* "hqhost.net", false */ 'h', 'q', 'h', 'o', 's', 't', '.', 'n', 'e', 't', '\0', - /* "hr98.tk", true */ 'h', 'r', '9', '8', '.', 't', 'k', '\0', /* "hrackydomino.cz", true */ 'h', 'r', 'a', 'c', 'k', 'y', 'd', 'o', 'm', 'i', 'n', 'o', '.', 'c', 'z', '\0', /* "hraesvelg.net", true */ 'h', 'r', 'a', 'e', 's', 'v', 'e', 'l', 'g', '.', 'n', 'e', 't', '\0', /* "hranicka.cz", true */ 'h', 'r', 'a', 'n', 'i', 'c', 'k', 'a', '.', 'c', 'z', '\0', /* "hrbatypes.cz", true */ 'h', 'r', 'b', 'a', 't', 'y', 'p', 'e', 's', '.', 'c', 'z', '\0', /* "hrdns.de", true */ 'h', 'r', 'd', 'n', 's', '.', 'd', 'e', '\0', /* "hreflang.info", true */ 'h', 'r', 'e', 'f', 'l', 'a', 'n', 'g', '.', 'i', 'n', 'f', 'o', '\0', /* "hrfhomelottery.com", true */ 'h', 'r', 'f', 'h', 'o', 'm', 'e', 'l', 'o', 't', 't', 'e', 'r', 'y', '.', 'c', 'o', 'm', '\0', /* "hrndz.io", true */ 'h', 'r', 'n', 'd', 'z', '.', 'i', 'o', '\0', @@ -7392,31 +7399,33 @@ static const char kSTSHostTable[] = { /* "huiser.nl", true */ 'h', 'u', 'i', 's', 'e', 'r', '.', 'n', 'l', '\0', /* "humankode.com", true */ 'h', 'u', 'm', 'a', 'n', 'k', 'o', 'd', 'e', '.', 'c', 'o', 'm', '\0', /* "hump.dk", true */ 'h', 'u', 'm', 'p', '.', 'd', 'k', '\0', /* "humpi.at", true */ 'h', 'u', 'm', 'p', 'i', '.', 'a', 't', '\0', /* "hund.io", true */ 'h', 'u', 'n', 'd', '.', 'i', 'o', '\0', /* "hundeformel.de", true */ 'h', 'u', 'n', 'd', 'e', 'f', 'o', 'r', 'm', 'e', 'l', '.', 'd', 'e', '\0', /* "hunger.im", true */ 'h', 'u', 'n', 'g', 'e', 'r', '.', 'i', 'm', '\0', /* "hunter.io", true */ 'h', 'u', 'n', 't', 'e', 'r', '.', 'i', 'o', '\0', + /* "huodongweb.com", true */ 'h', 'u', 'o', 'd', 'o', 'n', 'g', 'w', 'e', 'b', '.', 'c', 'o', 'm', '\0', /* "hup.blue", true */ 'h', 'u', 'p', '.', 'b', 'l', 'u', 'e', '\0', /* "hupp.se", true */ 'h', 'u', 'p', 'p', '.', 's', 'e', '\0', /* "hurd.is", true */ 'h', 'u', 'r', 'd', '.', 'i', 's', '\0', /* "huren.nl", true */ 'h', 'u', 'r', 'e', 'n', '.', 'n', 'l', '\0', /* "huroji.com", true */ 'h', 'u', 'r', 'o', 'j', 'i', '.', 'c', 'o', 'm', '\0', /* "husakbau.at", true */ 'h', 'u', 's', 'a', 'k', 'b', 'a', 'u', '.', 'a', 't', '\0', /* "hushfile.it", true */ 'h', 'u', 's', 'h', 'f', 'i', 'l', 'e', '.', 'i', 't', '\0', /* "husic.net", true */ 'h', 'u', 's', 'i', 'c', '.', 'n', 'e', 't', '\0', /* "husky.xyz", true */ 'h', 'u', 's', 'k', 'y', '.', 'x', 'y', 'z', '\0', /* "huskyinc.us", true */ 'h', 'u', 's', 'k', 'y', 'i', 'n', 'c', '.', 'u', 's', '\0', /* "hussam.eu.org", true */ 'h', 'u', 's', 's', 'a', 'm', '.', 'e', 'u', '.', 'o', 'r', 'g', '\0', /* "huutonauru.net", true */ 'h', 'u', 'u', 't', 'o', 'n', 'a', 'u', 'r', 'u', '.', 'n', 'e', 't', '\0', /* "huwcbjones.co.uk", true */ 'h', 'u', 'w', 'c', 'b', 'j', 'o', 'n', 'e', 's', '.', 'c', 'o', '.', 'u', 'k', '\0', /* "huwjones.me", true */ 'h', 'u', 'w', 'j', 'o', 'n', 'e', 's', '.', 'm', 'e', '\0', /* "huxley.net", true */ 'h', 'u', 'x', 'l', 'e', 'y', '.', 'n', 'e', 't', '\0', + /* "hvh.no", true */ 'h', 'v', 'h', '.', 'n', 'o', '\0', /* "hvtuananh.com", true */ 'h', 'v', 't', 'u', 'a', 'n', 'a', 'n', 'h', '.', 'c', 'o', 'm', '\0', /* "hwag-pb.de", true */ 'h', 'w', 'a', 'g', '-', 'p', 'b', '.', 'd', 'e', '\0', /* "hwcine.com", true */ 'h', 'w', 'c', 'i', 'n', 'e', '.', 'c', 'o', 'm', '\0', /* "hwinfo.com", true */ 'h', 'w', 'i', 'n', 'f', 'o', '.', 'c', 'o', 'm', '\0', /* "hx53.de", true */ 'h', 'x', '5', '3', '.', 'd', 'e', '\0', /* "hxying.com", true */ 'h', 'x', 'y', 'i', 'n', 'g', '.', 'c', 'o', 'm', '\0', /* "hybridworx.com", true */ 'h', 'y', 'b', 'r', 'i', 'd', 'w', 'o', 'r', 'x', '.', 'c', 'o', 'm', '\0', /* "hybridworx.de", true */ 'h', 'y', 'b', 'r', 'i', 'd', 'w', 'o', 'r', 'x', '.', 'd', 'e', '\0', @@ -7478,16 +7487,17 @@ static const char kSTSHostTable[] = { /* "ichbinkeinreh.de", true */ 'i', 'c', 'h', 'b', 'i', 'n', 'k', 'e', 'i', 'n', 'r', 'e', 'h', '.', 'd', 'e', '\0', /* "ichglaubesbackt.de", true */ 'i', 'c', 'h', 'g', 'l', 'a', 'u', 'b', 'e', 's', 'b', 'a', 'c', 'k', 't', '.', 'd', 'e', '\0', /* "ichronos.net", true */ 'i', 'c', 'h', 'r', 'o', 'n', 'o', 's', '.', 'n', 'e', 't', '\0', /* "icij.org", false */ 'i', 'c', 'i', 'j', '.', 'o', 'r', 'g', '\0', /* "icity.ly", true */ 'i', 'c', 'i', 't', 'y', '.', 'l', 'y', '\0', /* "icmp2018.org", true */ 'i', 'c', 'm', 'p', '2', '0', '1', '8', '.', 'o', 'r', 'g', '\0', /* "icntorrent.download", true */ 'i', 'c', 'n', 't', 'o', 'r', 'r', 'e', 'n', 't', '.', 'd', 'o', 'w', 'n', 'l', 'o', 'a', 'd', '\0', /* "icodeconnect.com", true */ 'i', 'c', 'o', 'd', 'e', 'c', 'o', 'n', 'n', 'e', 'c', 't', '.', 'c', 'o', 'm', '\0', + /* "icpc2016.in.th", true */ 'i', 'c', 'p', 'c', '2', '0', '1', '6', '.', 'i', 'n', '.', 't', 'h', '\0', /* "icq-project.net", true */ 'i', 'c', 'q', '-', 'p', 'r', 'o', 'j', 'e', 'c', 't', '.', 'n', 'e', 't', '\0', /* "ict-concept.nl", false */ 'i', 'c', 't', '-', 'c', 'o', 'n', 'c', 'e', 'p', 't', '.', 'n', 'l', '\0', /* "ict-radar.com", true */ 'i', 'c', 't', '-', 'r', 'a', 'd', 'a', 'r', '.', 'c', 'o', 'm', '\0', /* "ict-radar.nl", true */ 'i', 'c', 't', '-', 'r', 'a', 'd', 'a', 'r', '.', 'n', 'l', '\0', /* "ictinforensics.org", true */ 'i', 'c', 't', 'i', 'n', 'f', 'o', 'r', 'e', 'n', 's', 'i', 'c', 's', '.', 'o', 'r', 'g', '\0', /* "icymint.me", true */ 'i', 'c', 'y', 'm', 'i', 'n', 't', '.', 'm', 'e', '\0', /* "id-blog.ch", true */ 'i', 'd', '-', 'b', 'l', 'o', 'g', '.', 'c', 'h', '\0', /* "id.atlassian.com", true */ 'i', 'd', '.', 'a', 't', 'l', 'a', 's', 's', 'i', 'a', 'n', '.', 'c', 'o', 'm', '\0', @@ -7578,16 +7588,17 @@ static const char kSTSHostTable[] = { /* "iklive.org", false */ 'i', 'k', 'l', 'i', 'v', 'e', '.', 'o', 'r', 'g', '\0', /* "ikocik.sk", true */ 'i', 'k', 'o', 'c', 'i', 'k', '.', 's', 'k', '\0', /* "ikon.name", true */ 'i', 'k', 'o', 'n', '.', 'n', 'a', 'm', 'e', '\0', /* "ikulist.me", true */ 'i', 'k', 'u', 'l', 'i', 's', 't', '.', 'm', 'e', '\0', /* "ikvts.de", true */ 'i', 'k', 'v', 't', 's', '.', 'd', 'e', '\0', /* "ikwilthepiratebay.org", true */ 'i', 'k', 'w', 'i', 'l', 't', 'h', 'e', 'p', 'i', 'r', 'a', 't', 'e', 'b', 'a', 'y', '.', 'o', 'r', 'g', '\0', /* "ikzoekeengoedkopeauto.nl", true */ 'i', 'k', 'z', 'o', 'e', 'k', 'e', 'e', 'n', 'g', 'o', 'e', 'd', 'k', 'o', 'p', 'e', 'a', 'u', 't', 'o', '.', 'n', 'l', '\0', /* "ikzoekjeugdhulp.nl", true */ 'i', 'k', 'z', 'o', 'e', 'k', 'j', 'e', 'u', 'g', 'd', 'h', 'u', 'l', 'p', '.', 'n', 'l', '\0', + /* "ila.fi", true */ 'i', 'l', 'a', '.', 'f', 'i', '\0', /* "ilamparas.com", true */ 'i', 'l', 'a', 'm', 'p', 'a', 'r', 'a', 's', '.', 'c', 'o', 'm', '\0', /* "ilard.fr", true */ 'i', 'l', 'a', 'r', 'd', '.', 'f', 'r', '\0', /* "ile-kalorii.pl", true */ 'i', 'l', 'e', '-', 'k', 'a', 'l', 'o', 'r', 'i', 'i', '.', 'p', 'l', '\0', /* "ilgi.work", true */ 'i', 'l', 'g', 'i', '.', 'w', 'o', 'r', 'k', '\0', /* "ilhadocaranguejo.com.br", true */ 'i', 'l', 'h', 'a', 'd', 'o', 'c', 'a', 'r', 'a', 'n', 'g', 'u', 'e', 'j', 'o', '.', 'c', 'o', 'm', '.', 'b', 'r', '\0', /* "ilhansubasi.com", true */ 'i', 'l', 'h', 'a', 'n', 's', 'u', 'b', 'a', 's', 'i', '.', 'c', 'o', 'm', '\0', /* "illegalpornography.me", true */ 'i', 'l', 'l', 'e', 'g', 'a', 'l', 'p', 'o', 'r', 'n', 'o', 'g', 'r', 'a', 'p', 'h', 'y', '.', 'm', 'e', '\0', /* "illich.cz", true */ 'i', 'l', 'l', 'i', 'c', 'h', '.', 'c', 'z', '\0', @@ -7851,17 +7862,16 @@ static const char kSTSHostTable[] = { /* "intxt.net", true */ 'i', 'n', 't', 'x', 't', '.', 'n', 'e', 't', '\0', /* "inusasha.de", true */ 'i', 'n', 'u', 's', 'a', 's', 'h', 'a', '.', 'd', 'e', '\0', /* "inuyasha-petition.tk", true */ 'i', 'n', 'u', 'y', 'a', 's', 'h', 'a', '-', 'p', 'e', 't', 'i', 't', 'i', 'o', 'n', '.', 't', 'k', '\0', /* "invasion.com", true */ 'i', 'n', 'v', 'a', 's', 'i', 'o', 'n', '.', 'c', 'o', 'm', '\0', /* "invenio.software", true */ 'i', 'n', 'v', 'e', 'n', 'i', 'o', '.', 's', 'o', 'f', 't', 'w', 'a', 'r', 'e', '\0', /* "investor.gov", true */ 'i', 'n', 'v', 'e', 's', 't', 'o', 'r', '.', 'g', 'o', 'v', '\0', /* "investorforms.com", true */ 'i', 'n', 'v', 'e', 's', 't', 'o', 'r', 'f', 'o', 'r', 'm', 's', '.', 'c', 'o', 'm', '\0', /* "investpay.ru", true */ 'i', 'n', 'v', 'e', 's', 't', 'p', 'a', 'y', '.', 'r', 'u', '\0', - /* "invictusmc.uk", true */ 'i', 'n', 'v', 'i', 'c', 't', 'u', 's', 'm', 'c', '.', 'u', 'k', '\0', /* "inviosolutions.com", true */ 'i', 'n', 'v', 'i', 'o', 's', 'o', 'l', 'u', 't', 'i', 'o', 'n', 's', '.', 'c', 'o', 'm', '\0', /* "invis.net", true */ 'i', 'n', 'v', 'i', 's', '.', 'n', 'e', 't', '\0', /* "invisionita.com", true */ 'i', 'n', 'v', 'i', 's', 'i', 'o', 'n', 'i', 't', 'a', '.', 'c', 'o', 'm', '\0', /* "invisiverse.com", true */ 'i', 'n', 'v', 'i', 's', 'i', 'v', 'e', 'r', 's', 'e', '.', 'c', 'o', 'm', '\0', /* "invitescene.com", true */ 'i', 'n', 'v', 'i', 't', 'e', 's', 'c', 'e', 'n', 'e', '.', 'c', 'o', 'm', '\0', /* "invoiced.com", true */ 'i', 'n', 'v', 'o', 'i', 'c', 'e', 'd', '.', 'c', 'o', 'm', '\0', /* "invoicefinance.com", true */ 'i', 'n', 'v', 'o', 'i', 'c', 'e', 'f', 'i', 'n', 'a', 'n', 'c', 'e', '.', 'c', 'o', 'm', '\0', /* "invoicefinance.nl", true */ 'i', 'n', 'v', 'o', 'i', 'c', 'e', 'f', 'i', 'n', 'a', 'n', 'c', 'e', '.', 'n', 'l', '\0', @@ -8042,16 +8052,17 @@ static const char kSTSHostTable[] = { /* "itpol.dk", true */ 'i', 't', 'p', 'o', 'l', '.', 'd', 'k', '\0', /* "itpro.ua", true */ 'i', 't', 'p', 'r', 'o', '.', 'u', 'a', '\0', /* "itpros.ru", true */ 'i', 't', 'p', 'r', 'o', 's', '.', 'r', 'u', '\0', /* "its-gutachten.de", true */ 'i', 't', 's', '-', 'g', 'u', 't', 'a', 'c', 'h', 't', 'e', 'n', '.', 'd', 'e', '\0', /* "its-schindler.de", true */ 'i', 't', 's', '-', 's', 'c', 'h', 'i', 'n', 'd', 'l', 'e', 'r', '.', 'd', 'e', '\0', /* "its-v.de", true */ 'i', 't', 's', '-', 'v', '.', 'd', 'e', '\0', /* "its4living.com", true */ 'i', 't', 's', '4', 'l', 'i', 'v', 'i', 'n', 'g', '.', 'c', 'o', 'm', '\0', /* "itsanicedoor.co.uk", true */ 'i', 't', 's', 'a', 'n', 'i', 'c', 'e', 'd', 'o', 'o', 'r', '.', 'c', 'o', '.', 'u', 'k', '\0', + /* "itsatrap.nl", false */ 'i', 't', 's', 'a', 't', 'r', 'a', 'p', '.', 'n', 'l', '\0', /* "itsecguy.com", true */ 'i', 't', 's', 'e', 'c', 'g', 'u', 'y', '.', 'c', 'o', 'm', '\0', /* "itsgoingdown.org", true */ 'i', 't', 's', 'g', 'o', 'i', 'n', 'g', 'd', 'o', 'w', 'n', '.', 'o', 'r', 'g', '\0', /* "itskayla.com", false */ 'i', 't', 's', 'k', 'a', 'y', 'l', 'a', '.', 'c', 'o', 'm', '\0', /* "itsok.de", true */ 'i', 't', 's', 'o', 'k', '.', 'd', 'e', '\0', /* "itspawned.com", true */ 'i', 't', 's', 'p', 'a', 'w', 'n', 'e', 'd', '.', 'c', 'o', 'm', '\0', /* "itspersonaltraining.nl", true */ 'i', 't', 's', 'p', 'e', 'r', 's', 'o', 'n', 'a', 'l', 't', 'r', 'a', 'i', 'n', 'i', 'n', 'g', '.', 'n', 'l', '\0', /* "itsryan.com", false */ 'i', 't', 's', 'r', 'y', 'a', 'n', '.', 'c', 'o', 'm', '\0', /* "itsstefan.eu", true */ 'i', 't', 's', 's', 't', 'e', 'f', 'a', 'n', '.', 'e', 'u', '\0', @@ -8074,16 +8085,17 @@ static const char kSTSHostTable[] = { /* "iwalton.com", true */ 'i', 'w', 'a', 'l', 't', 'o', 'n', '.', 'c', 'o', 'm', '\0', /* "iwannarefill.com", true */ 'i', 'w', 'a', 'n', 'n', 'a', 'r', 'e', 'f', 'i', 'l', 'l', '.', 'c', 'o', 'm', '\0', /* "iwilcox.me.uk", true */ 'i', 'w', 'i', 'l', 'c', 'o', 'x', '.', 'm', 'e', '.', 'u', 'k', '\0', /* "iwizerunek.pl", true */ 'i', 'w', 'i', 'z', 'e', 'r', 'u', 'n', 'e', 'k', '.', 'p', 'l', '\0', /* "iww.me", true */ 'i', 'w', 'w', '.', 'm', 'e', '\0', /* "iww.mx", true */ 'i', 'w', 'w', '.', 'm', 'x', '\0', /* "ix8.ru", true */ 'i', 'x', '8', '.', 'r', 'u', '\0', /* "ixds.org", true */ 'i', 'x', 'd', 's', '.', 'o', 'r', 'g', '\0', + /* "ixec2.tk", true */ 'i', 'x', 'e', 'c', '2', '.', 't', 'k', '\0', /* "ixio.cz", true */ 'i', 'x', 'i', 'o', '.', 'c', 'z', '\0', /* "ixnext.de", true */ 'i', 'x', 'n', 'e', 'x', 't', '.', 'd', 'e', '\0', /* "ixquick-proxy.com", true */ 'i', 'x', 'q', 'u', 'i', 'c', 'k', '-', 'p', 'r', 'o', 'x', 'y', '.', 'c', 'o', 'm', '\0', /* "ixquick.co.uk", true */ 'i', 'x', 'q', 'u', 'i', 'c', 'k', '.', 'c', 'o', '.', 'u', 'k', '\0', /* "ixquick.com", true */ 'i', 'x', 'q', 'u', 'i', 'c', 'k', '.', 'c', 'o', 'm', '\0', /* "ixquick.de", true */ 'i', 'x', 'q', 'u', 'i', 'c', 'k', '.', 'd', 'e', '\0', /* "ixquick.eu", true */ 'i', 'x', 'q', 'u', 'i', 'c', 'k', '.', 'e', 'u', '\0', /* "ixquick.fr", true */ 'i', 'x', 'q', 'u', 'i', 'c', 'k', '.', 'f', 'r', '\0', @@ -8665,21 +8677,21 @@ static const char kSTSHostTable[] = { /* "kc5mpk.com", true */ 'k', 'c', '5', 'm', 'p', 'k', '.', 'c', 'o', 'm', '\0', /* "kcluster.io", true */ 'k', 'c', 'l', 'u', 's', 't', 'e', 'r', '.', 'i', 'o', '\0', /* "kcptun.com", true */ 'k', 'c', 'p', 't', 'u', 'n', '.', 'c', 'o', 'm', '\0', /* "kcsordparticipation.org", true */ 'k', 'c', 's', 'o', 'r', 'd', 'p', 'a', 'r', 't', 'i', 'c', 'i', 'p', 'a', 't', 'i', 'o', 'n', '.', 'o', 'r', 'g', '\0', /* "kdex.de", true */ 'k', 'd', 'e', 'x', '.', 'd', 'e', '\0', /* "kdyby.org", true */ 'k', 'd', 'y', 'b', 'y', '.', 'o', 'r', 'g', '\0', /* "ke7tlf.us", true */ 'k', 'e', '7', 't', 'l', 'f', '.', 'u', 's', '\0', /* "keaneokelley.com", true */ 'k', 'e', 'a', 'n', 'e', 'o', 'k', 'e', 'l', 'l', 'e', 'y', '.', 'c', 'o', 'm', '\0', + /* "kearney.io", true */ 'k', 'e', 'a', 'r', 'n', 'e', 'y', '.', 'i', 'o', '\0', /* "keaysmillwork.com", true */ 'k', 'e', 'a', 'y', 's', 'm', 'i', 'l', 'l', 'w', 'o', 'r', 'k', '.', 'c', 'o', 'm', '\0', /* "kedarastudios.com", true */ 'k', 'e', 'd', 'a', 'r', 'a', 's', 't', 'u', 'd', 'i', 'o', 's', '.', 'c', 'o', 'm', '\0', /* "keeleysam.com", true */ 'k', 'e', 'e', 'l', 'e', 'y', 's', 'a', 'm', '.', 'c', 'o', 'm', '\0', /* "keepa.com", true */ 'k', 'e', 'e', 'p', 'a', '.', 'c', 'o', 'm', '\0', - /* "keepassa.co", true */ 'k', 'e', 'e', 'p', 'a', 's', 's', 'a', '.', 'c', 'o', '\0', /* "keepcoalintheground.org", true */ 'k', 'e', 'e', 'p', 'c', 'o', 'a', 'l', 'i', 'n', 't', 'h', 'e', 'g', 'r', 'o', 'u', 'n', 'd', '.', 'o', 'r', 'g', '\0', /* "keeperapp.com", true */ 'k', 'e', 'e', 'p', 'e', 'r', 'a', 'p', 'p', '.', 'c', 'o', 'm', '\0', /* "keepersecurity.com", true */ 'k', 'e', 'e', 'p', 'e', 'r', 's', 'e', 'c', 'u', 'r', 'i', 't', 'y', '.', 'c', 'o', 'm', '\0', /* "keeweb.info", true */ 'k', 'e', 'e', 'w', 'e', 'b', '.', 'i', 'n', 'f', 'o', '\0', /* "kefaloniatoday.com", true */ 'k', 'e', 'f', 'a', 'l', 'o', 'n', 'i', 'a', 't', 'o', 'd', 'a', 'y', '.', 'c', 'o', 'm', '\0', /* "keganthorrez.com", true */ 'k', 'e', 'g', 'a', 'n', 't', 'h', 'o', 'r', 'r', 'e', 'z', '.', 'c', 'o', 'm', '\0', /* "kehlenbach.net", true */ 'k', 'e', 'h', 'l', 'e', 'n', 'b', 'a', 'c', 'h', '.', 'n', 'e', 't', '\0', /* "keifel.de", true */ 'k', 'e', 'i', 'f', 'e', 'l', '.', 'd', 'e', '\0', @@ -8914,17 +8926,16 @@ static const char kSTSHostTable[] = { /* "knthost.com", true */ 'k', 'n', 't', 'h', 'o', 's', 't', '.', 'c', 'o', 'm', '\0', /* "knutur.is", true */ 'k', 'n', 'u', 't', 'u', 'r', '.', 'i', 's', '\0', /* "knygos.lt", true */ 'k', 'n', 'y', 'g', 'o', 's', '.', 'l', 't', '\0', /* "ko-sys.com", true */ 'k', 'o', '-', 's', 'y', 's', '.', 'c', 'o', 'm', '\0', /* "kobezda.net", true */ 'k', 'o', 'b', 'e', 'z', 'd', 'a', '.', 'n', 'e', 't', '\0', /* "kodak-ism.com", true */ 'k', 'o', 'd', 'a', 'k', '-', 'i', 's', 'm', '.', 'c', 'o', 'm', '\0', /* "kodakit.com", true */ 'k', 'o', 'd', 'a', 'k', 'i', 't', '.', 'c', 'o', 'm', '\0', /* "kodden.com.br", true */ 'k', 'o', 'd', 'd', 'e', 'n', '.', 'c', 'o', 'm', '.', 'b', 'r', '\0', - /* "kodexplorer.ml", true */ 'k', 'o', 'd', 'e', 'x', 'p', 'l', 'o', 'r', 'e', 'r', '.', 'm', 'l', '\0', /* "kodiaklabs.org", true */ 'k', 'o', 'd', 'i', 'a', 'k', 'l', 'a', 'b', 's', '.', 'o', 'r', 'g', '\0', /* "koebbes.de", true */ 'k', 'o', 'e', 'b', 'b', 'e', 's', '.', 'd', 'e', '\0', /* "koelbli.ch", true */ 'k', 'o', 'e', 'l', 'b', 'l', 'i', '.', 'c', 'h', '\0', /* "koelnmafia.de", true */ 'k', 'o', 'e', 'l', 'n', 'm', 'a', 'f', 'i', 'a', '.', 'd', 'e', '\0', /* "koenigsbrunner-tafel.de", true */ 'k', 'o', 'e', 'n', 'i', 'g', 's', 'b', 'r', 'u', 'n', 'n', 'e', 'r', '-', 't', 'a', 'f', 'e', 'l', '.', 'd', 'e', '\0', /* "koenvdheuvel.me", false */ 'k', 'o', 'e', 'n', 'v', 'd', 'h', 'e', 'u', 'v', 'e', 'l', '.', 'm', 'e', '\0', /* "koerper-wie-seele.de", false */ 'k', 'o', 'e', 'r', 'p', 'e', 'r', '-', 'w', 'i', 'e', '-', 's', 'e', 'e', 'l', 'e', '.', 'd', 'e', '\0', /* "koerperimpuls.ch", true */ 'k', 'o', 'e', 'r', 'p', 'e', 'r', 'i', 'm', 'p', 'u', 'l', 's', '.', 'c', 'h', '\0', @@ -9011,16 +9022,17 @@ static const char kSTSHostTable[] = { /* "kraft.im", true */ 'k', 'r', 'a', 'f', 't', '.', 'i', 'm', '\0', /* "kraftfleisch.de", true */ 'k', 'r', 'a', 'f', 't', 'f', 'l', 'e', 'i', 's', 'c', 'h', '.', 'd', 'e', '\0', /* "kraga.sk", true */ 'k', 'r', 'a', 'g', 'a', '.', 's', 'k', '\0', /* "kraiwan.com", true */ 'k', 'r', 'a', 'i', 'w', 'a', 'n', '.', 'c', 'o', 'm', '\0', /* "kraiwon.com", true */ 'k', 'r', 'a', 'i', 'w', 'o', 'n', '.', 'c', 'o', 'm', '\0', /* "kraken.io", true */ 'k', 'r', 'a', 'k', 'e', 'n', '.', 'i', 'o', '\0', /* "kralik.io", true */ 'k', 'r', 'a', 'l', 'i', 'k', '.', 'i', 'o', '\0', /* "kralik.xyz", true */ 'k', 'r', 'a', 'l', 'i', 'k', '.', 'x', 'y', 'z', '\0', + /* "kramsj.uk", true */ 'k', 'r', 'a', 'm', 's', 'j', '.', 'u', 'k', '\0', /* "krang.org.uk", true */ 'k', 'r', 'a', 'n', 'g', '.', 'o', 'r', 'g', '.', 'u', 'k', '\0', /* "krasota.ru", false */ 'k', 'r', 'a', 's', 'o', 't', 'a', '.', 'r', 'u', '\0', /* "krasovsky.me", true */ 'k', 'r', 'a', 's', 'o', 'v', 's', 'k', 'y', '.', 'm', 'e', '\0', /* "kravelindo-adventure.com", false */ 'k', 'r', 'a', 'v', 'e', 'l', 'i', 'n', 'd', 'o', '-', 'a', 'd', 'v', 'e', 'n', 't', 'u', 'r', 'e', '.', 'c', 'o', 'm', '\0', /* "kraynik.com", true */ 'k', 'r', 'a', 'y', 'n', 'i', 'k', '.', 'c', 'o', 'm', '\0', /* "krc.link", true */ 'k', 'r', 'c', '.', 'l', 'i', 'n', 'k', '\0', /* "kream.io", true */ 'k', 'r', 'e', 'a', 'm', '.', 'i', 'o', '\0', /* "kreationnext.com", true */ 'k', 'r', 'e', 'a', 't', 'i', 'o', 'n', 'n', 'e', 'x', 't', '.', 'c', 'o', 'm', '\0', @@ -9030,18 +9042,20 @@ static const char kSTSHostTable[] = { /* "kredite24.de", true */ 'k', 'r', 'e', 'd', 'i', 't', 'e', '2', '4', '.', 'd', 'e', '\0', /* "kreditkacs.cz", true */ 'k', 'r', 'e', 'd', 'i', 't', 'k', 'a', 'c', 's', '.', 'c', 'z', '\0', /* "kreen.org", true */ 'k', 'r', 'e', 'e', 'n', '.', 'o', 'r', 'g', '\0', /* "krestanskydarek.cz", true */ 'k', 'r', 'e', 's', 't', 'a', 'n', 's', 'k', 'y', 'd', 'a', 'r', 'e', 'k', '.', 'c', 'z', '\0', /* "kretschmann.consulting", true */ 'k', 'r', 'e', 't', 's', 'c', 'h', 'm', 'a', 'n', 'n', '.', 'c', 'o', 'n', 's', 'u', 'l', 't', 'i', 'n', 'g', '\0', /* "kreuzpfadfinder.de", true */ 'k', 'r', 'e', 'u', 'z', 'p', 'f', 'a', 'd', 'f', 'i', 'n', 'd', 'e', 'r', '.', 'd', 'e', '\0', /* "kriechel.de", true */ 'k', 'r', 'i', 'e', 'c', 'h', 'e', 'l', '.', 'd', 'e', '\0', /* "kriegskindernothilfe.de", true */ 'k', 'r', 'i', 'e', 'g', 's', 'k', 'i', 'n', 'd', 'e', 'r', 'n', 'o', 't', 'h', 'i', 'l', 'f', 'e', '.', 'd', 'e', '\0', + /* "kriptosec.com", true */ 'k', 'r', 'i', 'p', 't', 'o', 's', 'e', 'c', '.', 'c', 'o', 'm', '\0', /* "krislamoureux.com", true */ 'k', 'r', 'i', 's', 'l', 'a', 'm', 'o', 'u', 'r', 'e', 'u', 'x', '.', 'c', 'o', 'm', '\0', /* "krisstarkey.co.uk", true */ 'k', 'r', 'i', 's', 's', 't', 'a', 'r', 'k', 'e', 'y', '.', 'c', 'o', '.', 'u', 'k', '\0', + /* "kristikala.nl", true */ 'k', 'r', 'i', 's', 't', 'i', 'k', 'a', 'l', 'a', '.', 'n', 'l', '\0', /* "kristinbailey.com", true */ 'k', 'r', 'i', 's', 't', 'i', 'n', 'b', 'a', 'i', 'l', 'e', 'y', '.', 'c', 'o', 'm', '\0', /* "kristjanrang.eu", true */ 'k', 'r', 'i', 's', 't', 'j', 'a', 'n', 'r', 'a', 'n', 'g', '.', 'e', 'u', '\0', /* "kristofferkoch.com", true */ 'k', 'r', 'i', 's', 't', 'o', 'f', 'f', 'e', 'r', 'k', 'o', 'c', 'h', '.', 'c', 'o', 'm', '\0', /* "krizek.cc", true */ 'k', 'r', 'i', 'z', 'e', 'k', '.', 'c', 'c', '\0', /* "krizevackapajdasija.hr", true */ 'k', 'r', 'i', 'z', 'e', 'v', 'a', 'c', 'k', 'a', 'p', 'a', 'j', 'd', 'a', 's', 'i', 'j', 'a', '.', 'h', 'r', '\0', /* "krizevci.info", true */ 'k', 'r', 'i', 'z', 'e', 'v', 'c', 'i', '.', 'i', 'n', 'f', 'o', '\0', /* "krk-media.pl", false */ 'k', 'r', 'k', '-', 'm', 'e', 'd', 'i', 'a', '.', 'p', 'l', '\0', /* "krmela.com", true */ 'k', 'r', 'm', 'e', 'l', 'a', '.', 'c', 'o', 'm', '\0', @@ -9073,17 +9087,16 @@ static const char kSTSHostTable[] = { /* "kubusadvocaten.nl", true */ 'k', 'u', 'b', 'u', 's', 'a', 'd', 'v', 'o', 'c', 'a', 't', 'e', 'n', '.', 'n', 'l', '\0', /* "kuchentraum.eu", true */ 'k', 'u', 'c', 'h', 'e', 'n', 't', 'r', 'a', 'u', 'm', '.', 'e', 'u', '\0', /* "kueche-co.de", true */ 'k', 'u', 'e', 'c', 'h', 'e', '-', 'c', 'o', '.', 'd', 'e', '\0', /* "kuehndel.org", true */ 'k', 'u', 'e', 'h', 'n', 'd', 'e', 'l', '.', 'o', 'r', 'g', '\0', /* "kuehnel-bs.de", true */ 'k', 'u', 'e', 'h', 'n', 'e', 'l', '-', 'b', 's', '.', 'd', 'e', '\0', /* "kuehnel.org", true */ 'k', 'u', 'e', 'h', 'n', 'e', 'l', '.', 'o', 'r', 'g', '\0', /* "kuemmerlin.eu", true */ 'k', 'u', 'e', 'm', 'm', 'e', 'r', 'l', 'i', 'n', '.', 'e', 'u', '\0', /* "kuemmling.eu", true */ 'k', 'u', 'e', 'm', 'm', 'l', 'i', 'n', 'g', '.', 'e', 'u', '\0', - /* "kugelkiste.de", true */ 'k', 'u', 'g', 'e', 'l', 'k', 'i', 's', 't', 'e', '.', 'd', 'e', '\0', /* "kujadin.de", true */ 'k', 'u', 'j', 'a', 'd', 'i', 'n', '.', 'd', 'e', '\0', /* "kukal.cz", true */ 'k', 'u', 'k', 'a', 'l', '.', 'c', 'z', '\0', /* "kuketz-blog.de", true */ 'k', 'u', 'k', 'e', 't', 'z', '-', 'b', 'l', 'o', 'g', '.', 'd', 'e', '\0', /* "kuketz-security.de", true */ 'k', 'u', 'k', 'e', 't', 'z', '-', 's', 'e', 'c', 'u', 'r', 'i', 't', 'y', '.', 'd', 'e', '\0', /* "kulde.net", true */ 'k', 'u', 'l', 'd', 'e', '.', 'n', 'e', 't', '\0', /* "kulivps.com", true */ 'k', 'u', 'l', 'i', 'v', 'p', 's', '.', 'c', 'o', 'm', '\0', /* "kultmobil.se", true */ 'k', 'u', 'l', 't', 'm', 'o', 'b', 'i', 'l', '.', 's', 'e', '\0', /* "kum.com", true */ 'k', 'u', 'm', '.', 'c', 'o', 'm', '\0', @@ -9214,17 +9227,16 @@ static const char kSTSHostTable[] = { /* "langguth.io", true */ 'l', 'a', 'n', 'g', 'g', 'u', 't', 'h', '.', 'i', 'o', '\0', /* "langkahteduh.com", true */ 'l', 'a', 'n', 'g', 'k', 'a', 'h', 't', 'e', 'd', 'u', 'h', '.', 'c', 'o', 'm', '\0', /* "langly.fr", true */ 'l', 'a', 'n', 'g', 'l', 'y', '.', 'f', 'r', '\0', /* "languageterminal.com", true */ 'l', 'a', 'n', 'g', 'u', 'a', 'g', 'e', 't', 'e', 'r', 'm', 'i', 'n', 'a', 'l', '.', 'c', 'o', 'm', '\0', /* "langworth.com", true */ 'l', 'a', 'n', 'g', 'w', 'o', 'r', 't', 'h', '.', 'c', 'o', 'm', '\0', /* "laniakean.com", true */ 'l', 'a', 'n', 'i', 'a', 'k', 'e', 'a', 'n', '.', 'c', 'o', 'm', '\0', /* "lansechensilu.com", true */ 'l', 'a', 'n', 's', 'e', 'c', 'h', 'e', 'n', 's', 'i', 'l', 'u', '.', 'c', 'o', 'm', '\0', /* "lansinoh.co.uk", true */ 'l', 'a', 'n', 's', 'i', 'n', 'o', 'h', '.', 'c', 'o', '.', 'u', 'k', '\0', - /* "lantian.pub", true */ 'l', 'a', 'n', 't', 'i', 'a', 'n', '.', 'p', 'u', 'b', '\0', /* "lanuovariviera.it", true */ 'l', 'a', 'n', 'u', 'o', 'v', 'a', 'r', 'i', 'v', 'i', 'e', 'r', 'a', '.', 'i', 't', '\0', /* "lanyang.tk", true */ 'l', 'a', 'n', 'y', 'a', 'n', 'g', '.', 't', 'k', '\0', /* "lanzainc.xyz", true */ 'l', 'a', 'n', 'z', 'a', 'i', 'n', 'c', '.', 'x', 'y', 'z', '\0', /* "laos.dating", true */ 'l', 'a', 'o', 's', '.', 'd', 'a', 't', 'i', 'n', 'g', '\0', /* "lapetition.be", true */ 'l', 'a', 'p', 'e', 't', 'i', 't', 'i', 'o', 'n', '.', 'b', 'e', '\0', /* "lapidge.net", true */ 'l', 'a', 'p', 'i', 'd', 'g', 'e', '.', 'n', 'e', 't', '\0', /* "laplaceduvillage.net", true */ 'l', 'a', 'p', 'l', 'a', 'c', 'e', 'd', 'u', 'v', 'i', 'l', 'l', 'a', 'g', 'e', '.', 'n', 'e', 't', '\0', /* "laplanetebleue.com", true */ 'l', 'a', 'p', 'l', 'a', 'n', 'e', 't', 'e', 'b', 'l', 'e', 'u', 'e', '.', 'c', 'o', 'm', '\0', @@ -9479,18 +9491,16 @@ static const char kSTSHostTable[] = { /* "lidavidm.me", true */ 'l', 'i', 'd', 'a', 'v', 'i', 'd', 'm', '.', 'm', 'e', '\0', /* "liderwalut.pl", false */ 'l', 'i', 'd', 'e', 'r', 'w', 'a', 'l', 'u', 't', '.', 'p', 'l', '\0', /* "lidl-gewinnspiel.de", true */ 'l', 'i', 'd', 'l', '-', 'g', 'e', 'w', 'i', 'n', 'n', 's', 'p', 'i', 'e', 'l', '.', 'd', 'e', '\0', /* "lidl-shop.be", true */ 'l', 'i', 'd', 'l', '-', 's', 'h', 'o', 'p', '.', 'b', 'e', '\0', /* "lidl-shop.nl", true */ 'l', 'i', 'd', 'l', '-', 's', 'h', 'o', 'p', '.', 'n', 'l', '\0', /* "lidl-tour.ro", true */ 'l', 'i', 'd', 'l', '-', 't', 'o', 'u', 'r', '.', 'r', 'o', '\0', /* "lidlovajogurteka.si", true */ 'l', 'i', 'd', 'l', 'o', 'v', 'a', 'j', 'o', 'g', 'u', 'r', 't', 'e', 'k', 'a', '.', 's', 'i', '\0', /* "lidong.me", true */ 'l', 'i', 'd', 'o', 'n', 'g', '.', 'm', 'e', '\0', - /* "liduan.com", true */ 'l', 'i', 'd', 'u', 'a', 'n', '.', 'c', 'o', 'm', '\0', - /* "liduan.net", true */ 'l', 'i', 'd', 'u', 'a', 'n', '.', 'n', 'e', 't', '\0', /* "liebel.org", true */ 'l', 'i', 'e', 'b', 'e', 'l', '.', 'o', 'r', 'g', '\0', /* "lifanov.com", true */ 'l', 'i', 'f', 'a', 'n', 'o', 'v', '.', 'c', 'o', 'm', '\0', /* "life-time.nl", true */ 'l', 'i', 'f', 'e', '-', 't', 'i', 'm', 'e', '.', 'n', 'l', '\0', /* "lifebetweenlives.com.au", true */ 'l', 'i', 'f', 'e', 'b', 'e', 't', 'w', 'e', 'e', 'n', 'l', 'i', 'v', 'e', 's', '.', 'c', 'o', 'm', '.', 'a', 'u', '\0', /* "lifecoach.tw", true */ 'l', 'i', 'f', 'e', 'c', 'o', 'a', 'c', 'h', '.', 't', 'w', '\0', /* "lifecoachproviders.com", true */ 'l', 'i', 'f', 'e', 'c', 'o', 'a', 'c', 'h', 'p', 'r', 'o', 'v', 'i', 'd', 'e', 'r', 's', '.', 'c', 'o', 'm', '\0', /* "lifekiss.ru", true */ 'l', 'i', 'f', 'e', 'k', 'i', 's', 's', '.', 'r', 'u', '\0', /* "lifenexto.com", true */ 'l', 'i', 'f', 'e', 'n', 'e', 'x', 't', 'o', '.', 'c', 'o', 'm', '\0', @@ -9708,24 +9718,24 @@ static const char kSTSHostTable[] = { /* "lojamagicalx.com", true */ 'l', 'o', 'j', 'a', 'm', 'a', 'g', 'i', 'c', 'a', 'l', 'x', '.', 'c', 'o', 'm', '\0', /* "lojix.com", true */ 'l', 'o', 'j', 'i', 'x', '.', 'c', 'o', 'm', '\0', /* "lojj.pt", true */ 'l', 'o', 'j', 'j', '.', 'p', 't', '\0', /* "lokaal.org", true */ 'l', 'o', 'k', 'a', 'a', 'l', '.', 'o', 'r', 'g', '\0', /* "loli.bz", true */ 'l', 'o', 'l', 'i', '.', 'b', 'z', '\0', /* "loli.pet", true */ 'l', 'o', 'l', 'i', '.', 'p', 'e', 't', '\0', /* "lolicon.eu", true */ 'l', 'o', 'l', 'i', 'c', 'o', 'n', '.', 'e', 'u', '\0', /* "lolicore.ch", true */ 'l', 'o', 'l', 'i', 'c', 'o', 'r', 'e', '.', 'c', 'h', '\0', - /* "lolidunno.com", true */ 'l', 'o', 'l', 'i', 'd', 'u', 'n', 'n', 'o', '.', 'c', 'o', 'm', '\0', /* "lolkot.ru", true */ 'l', 'o', 'l', 'k', 'o', 't', '.', 'r', 'u', '\0', /* "lolpatrol.de", true */ 'l', 'o', 'l', 'p', 'a', 't', 'r', 'o', 'l', '.', 'd', 'e', '\0', /* "lolpatrol.wtf", true */ 'l', 'o', 'l', 'p', 'a', 't', 'r', 'o', 'l', '.', 'w', 't', 'f', '\0', /* "lona.io", true */ 'l', 'o', 'n', 'a', '.', 'i', 'o', '\0', /* "lonasdigital.com", true */ 'l', 'o', 'n', 'a', 's', 'd', 'i', 'g', 'i', 't', 'a', 'l', '.', 'c', 'o', 'm', '\0', /* "london-transfers.com", true */ 'l', 'o', 'n', 'd', 'o', 'n', '-', 't', 'r', 'a', 'n', 's', 'f', 'e', 'r', 's', '.', 'c', 'o', 'm', '\0', /* "london.dating", true */ 'l', 'o', 'n', 'd', 'o', 'n', '.', 'd', 'a', 't', 'i', 'n', 'g', '\0', + /* "londoncalling.co", true */ 'l', 'o', 'n', 'd', 'o', 'n', 'c', 'a', 'l', 'l', 'i', 'n', 'g', '.', 'c', 'o', '\0', /* "lone-gunman.be", true */ 'l', 'o', 'n', 'e', '-', 'g', 'u', 'n', 'm', 'a', 'n', '.', 'b', 'e', '\0', /* "lonerwolf.com", true */ 'l', 'o', 'n', 'e', 'r', 'w', 'o', 'l', 'f', '.', 'c', 'o', 'm', '\0', /* "lonesomecosmonaut.com", true */ 'l', 'o', 'n', 'e', 's', 'o', 'm', 'e', 'c', 'o', 's', 'm', 'o', 'n', 'a', 'u', 't', '.', 'c', 'o', 'm', '\0', /* "longboarding-ulm.de", true */ 'l', 'o', 'n', 'g', 'b', 'o', 'a', 'r', 'd', 'i', 'n', 'g', '-', 'u', 'l', 'm', '.', 'd', 'e', '\0', /* "longhorn.id.au", true */ 'l', 'o', 'n', 'g', 'h', 'o', 'r', 'n', '.', 'i', 'd', '.', 'a', 'u', '\0', /* "longstride.net", true */ 'l', 'o', 'n', 'g', 's', 't', 'r', 'i', 'd', 'e', '.', 'n', 'e', 't', '\0', /* "look.co.il", true */ 'l', 'o', 'o', 'k', '.', 'c', 'o', '.', 'i', 'l', '\0', /* "lookasik.eu", true */ 'l', 'o', 'o', 'k', 'a', 's', 'i', 'k', '.', 'e', 'u', '\0', @@ -9996,17 +10006,16 @@ static const char kSTSHostTable[] = { /* "maldiverna.guide", true */ 'm', 'a', 'l', 'd', 'i', 'v', 'e', 'r', 'n', 'a', '.', 'g', 'u', 'i', 'd', 'e', '\0', /* "malena.com.ua", true */ 'm', 'a', 'l', 'e', 'n', 'a', '.', 'c', 'o', 'm', '.', 'u', 'a', '\0', /* "malesbdsm.com", true */ 'm', 'a', 'l', 'e', 's', 'b', 'd', 's', 'm', '.', 'c', 'o', 'm', '\0', /* "malibubeachrecoverycenter.com", true */ 'm', 'a', 'l', 'i', 'b', 'u', 'b', 'e', 'a', 'c', 'h', 'r', 'e', 'c', 'o', 'v', 'e', 'r', 'y', 'c', 'e', 'n', 't', 'e', 'r', '.', 'c', 'o', 'm', '\0', /* "malinator.net", false */ 'm', 'a', 'l', 'i', 'n', 'a', 't', 'o', 'r', '.', 'n', 'e', 't', '\0', /* "malinheadview.ie", true */ 'm', 'a', 'l', 'i', 'n', 'h', 'e', 'a', 'd', 'v', 'i', 'e', 'w', '.', 'i', 'e', '\0', /* "maliskovik.si", true */ 'm', 'a', 'l', 'i', 's', 'k', 'o', 'v', 'i', 'k', '.', 's', 'i', '\0', /* "maljaars-fotografie.nl", true */ 'm', 'a', 'l', 'j', 'a', 'a', 'r', 's', '-', 'f', 'o', 't', 'o', 'g', 'r', 'a', 'f', 'i', 'e', '.', 'n', 'l', '\0', - /* "maljaars-media.nl", true */ 'm', 'a', 'l', 'j', 'a', 'a', 'r', 's', '-', 'm', 'e', 'd', 'i', 'a', '.', 'n', 'l', '\0', /* "mall.cz", true */ 'm', 'a', 'l', 'l', '.', 'c', 'z', '\0', /* "mall.hr", true */ 'm', 'a', 'l', 'l', '.', 'h', 'r', '\0', /* "mall.hu", true */ 'm', 'a', 'l', 'l', '.', 'h', 'u', '\0', /* "mall.pl", true */ 'm', 'a', 'l', 'l', '.', 'p', 'l', '\0', /* "mall.sk", true */ 'm', 'a', 'l', 'l', '.', 's', 'k', '\0', /* "mallner.me", true */ 'm', 'a', 'l', 'l', 'n', 'e', 'r', '.', 'm', 'e', '\0', /* "malnex.de", true */ 'm', 'a', 'l', 'n', 'e', 'x', '.', 'd', 'e', '\0', /* "malware.watch", true */ 'm', 'a', 'l', 'w', 'a', 'r', 'e', '.', 'w', 'a', 't', 'c', 'h', '\0', @@ -10072,17 +10081,16 @@ static const char kSTSHostTable[] = { /* "marc-schlagenhauf.de", true */ 'm', 'a', 'r', 'c', '-', 's', 'c', 'h', 'l', 'a', 'g', 'e', 'n', 'h', 'a', 'u', 'f', '.', 'd', 'e', '\0', /* "marcdorka.de", true */ 'm', 'a', 'r', 'c', 'd', 'o', 'r', 'k', 'a', '.', 'd', 'e', '\0', /* "marcel-preuss.de", true */ 'm', 'a', 'r', 'c', 'e', 'l', '-', 'p', 'r', 'e', 'u', 's', 's', '.', 'd', 'e', '\0', /* "marcelmarnitz.com", true */ 'm', 'a', 'r', 'c', 'e', 'l', 'm', 'a', 'r', 'n', 'i', 't', 'z', '.', 'c', 'o', 'm', '\0', /* "marcelpreuss.de", true */ 'm', 'a', 'r', 'c', 'e', 'l', 'p', 'r', 'e', 'u', 's', 's', '.', 'd', 'e', '\0', /* "marcelsiegert.com", true */ 'm', 'a', 'r', 'c', 'e', 'l', 's', 'i', 'e', 'g', 'e', 'r', 't', '.', 'c', 'o', 'm', '\0', /* "marcgoertz.de", true */ 'm', 'a', 'r', 'c', 'g', 'o', 'e', 'r', 't', 'z', '.', 'd', 'e', '\0', /* "marco-polo-reisen.com", true */ 'm', 'a', 'r', 'c', 'o', '-', 'p', 'o', 'l', 'o', '-', 'r', 'e', 'i', 's', 'e', 'n', '.', 'c', 'o', 'm', '\0', - /* "marcoececilia.it", true */ 'm', 'a', 'r', 'c', 'o', 'e', 'c', 'e', 'c', 'i', 'l', 'i', 'a', '.', 'i', 't', '\0', /* "marcohager.de", true */ 'm', 'a', 'r', 'c', 'o', 'h', 'a', 'g', 'e', 'r', '.', 'd', 'e', '\0', /* "marcoherten.com", true */ 'm', 'a', 'r', 'c', 'o', 'h', 'e', 'r', 't', 'e', 'n', '.', 'c', 'o', 'm', '\0', /* "marcoslater.com", true */ 'm', 'a', 'r', 'c', 'o', 's', 'l', 'a', 't', 'e', 'r', '.', 'c', 'o', 'm', '\0', /* "marcosteixeira.tk", true */ 'm', 'a', 'r', 'c', 'o', 's', 't', 'e', 'i', 'x', 'e', 'i', 'r', 'a', '.', 't', 'k', '\0', /* "marcschlagenhauf.de", true */ 'm', 'a', 'r', 'c', 's', 'c', 'h', 'l', 'a', 'g', 'e', 'n', 'h', 'a', 'u', 'f', '.', 'd', 'e', '\0', /* "marcush.de", true */ 'm', 'a', 'r', 'c', 'u', 's', 'h', '.', 'd', 'e', '\0', /* "mardelcupon.com", true */ 'm', 'a', 'r', 'd', 'e', 'l', 'c', 'u', 'p', 'o', 'n', '.', 'c', 'o', 'm', '\0', /* "mareklecian.cz", true */ 'm', 'a', 'r', 'e', 'k', 'l', 'e', 'c', 'i', 'a', 'n', '.', 'c', 'z', '\0', @@ -10202,16 +10210,17 @@ static const char kSTSHostTable[] = { /* "matthewemes.com", true */ 'm', 'a', 't', 't', 'h', 'e', 'w', 'e', 'm', 'e', 's', '.', 'c', 'o', 'm', '\0', /* "matthewgrill.com", false */ 'm', 'a', 't', 't', 'h', 'e', 'w', 'g', 'r', 'i', 'l', 'l', '.', 'c', 'o', 'm', '\0', /* "matthewkenny.co.uk", true */ 'm', 'a', 't', 't', 'h', 'e', 'w', 'k', 'e', 'n', 'n', 'y', '.', 'c', 'o', '.', 'u', 'k', '\0', /* "matthewohare.com", true */ 'm', 'a', 't', 't', 'h', 'e', 'w', 'o', 'h', 'a', 'r', 'e', '.', 'c', 'o', 'm', '\0', /* "matthi.coffee", true */ 'm', 'a', 't', 't', 'h', 'i', '.', 'c', 'o', 'f', 'f', 'e', 'e', '\0', /* "matthias-muenzner.de", true */ 'm', 'a', 't', 't', 'h', 'i', 'a', 's', '-', 'm', 'u', 'e', 'n', 'z', 'n', 'e', 'r', '.', 'd', 'e', '\0', /* "matthiasadler.info", true */ 'm', 'a', 't', 't', 'h', 'i', 'a', 's', 'a', 'd', 'l', 'e', 'r', '.', 'i', 'n', 'f', 'o', '\0', /* "matthiasschwab.de", true */ 'm', 'a', 't', 't', 'h', 'i', 'a', 's', 's', 'c', 'h', 'w', 'a', 'b', '.', 'd', 'e', '\0', + /* "mattia98.org", true */ 'm', 'a', 't', 't', 'i', 'a', '9', '8', '.', 'o', 'r', 'g', '\0', /* "mattli.us", true */ 'm', 'a', 't', 't', 'l', 'i', '.', 'u', 's', '\0', /* "mattmccutchen.net", true */ 'm', 'a', 't', 't', 'm', 'c', 'c', 'u', 't', 'c', 'h', 'e', 'n', '.', 'n', 'e', 't', '\0', /* "mattwservices.co.uk", true */ 'm', 'a', 't', 't', 'w', 's', 'e', 'r', 'v', 'i', 'c', 'e', 's', '.', 'c', 'o', '.', 'u', 'k', '\0', /* "matze.co", true */ 'm', 'a', 't', 'z', 'e', '.', 'c', 'o', '\0', /* "maupiknik.com", true */ 'm', 'a', 'u', 'p', 'i', 'k', 'n', 'i', 'k', '.', 'c', 'o', 'm', '\0', /* "mauriciog.com.ar", true */ 'm', 'a', 'u', 'r', 'i', 'c', 'i', 'o', 'g', '.', 'c', 'o', 'm', '.', 'a', 'r', '\0', /* "mauricioghiorzi.com.ar", true */ 'm', 'a', 'u', 'r', 'i', 'c', 'i', 'o', 'g', 'h', 'i', 'o', 'r', 'z', 'i', '.', 'c', 'o', 'm', '.', 'a', 'r', '\0', /* "maurus-automation.de", true */ 'm', 'a', 'u', 'r', 'u', 's', '-', 'a', 'u', 't', 'o', 'm', 'a', 't', 'i', 'o', 'n', '.', 'd', 'e', '\0', @@ -10260,16 +10269,17 @@ static const char kSTSHostTable[] = { /* "mbsec.net", true */ 'm', 'b', 's', 'e', 'c', '.', 'n', 'e', 't', '\0', /* "mbweir.com", true */ 'm', 'b', 'w', 'e', 'i', 'r', '.', 'c', 'o', 'm', '\0', /* "mc-venture.net", false */ 'm', 'c', '-', 'v', 'e', 'n', 't', 'u', 'r', 'e', '.', 'n', 'e', 't', '\0', /* "mc81.com", true */ 'm', 'c', '8', '1', '.', 'c', 'o', 'm', '\0', /* "mcadmin.net", true */ 'm', 'c', 'a', 'd', 'm', 'i', 'n', '.', 'n', 'e', 't', '\0', /* "mcard.vn", true */ 'm', 'c', 'a', 'r', 'd', '.', 'v', 'n', '\0', /* "mcatnnlo.org", true */ 'm', 'c', 'a', 't', 'n', 'n', 'l', 'o', '.', 'o', 'r', 'g', '\0', /* "mcb-bank.com", true */ 'm', 'c', 'b', '-', 'b', 'a', 'n', 'k', '.', 'c', 'o', 'm', '\0', + /* "mccrackon.com", true */ 'm', 'c', 'c', 'r', 'a', 'c', 'k', 'o', 'n', '.', 'c', 'o', 'm', '\0', /* "mcdonalds.be", true */ 'm', 'c', 'd', 'o', 'n', 'a', 'l', 'd', 's', '.', 'b', 'e', '\0', /* "mcdonalds.design", true */ 'm', 'c', 'd', 'o', 'n', 'a', 'l', 'd', 's', '.', 'd', 'e', 's', 'i', 'g', 'n', '\0', /* "mcdonaldwhsl.com", false */ 'm', 'c', 'd', 'o', 'n', 'a', 'l', 'd', 'w', 'h', 's', 'l', '.', 'c', 'o', 'm', '\0', /* "mce.eu", true */ 'm', 'c', 'e', '.', 'e', 'u', '\0', /* "mce.nyc", true */ 'm', 'c', 'e', '.', 'n', 'y', 'c', '\0', /* "mce55.eu", true */ 'm', 'c', 'e', '5', '5', '.', 'e', 'u', '\0', /* "mcea-hld.jp", true */ 'm', 'c', 'e', 'a', '-', 'h', 'l', 'd', '.', 'j', 'p', '\0', /* "mceconferencecentre.eu", true */ 'm', 'c', 'e', 'c', 'o', 'n', 'f', 'e', 'r', 'e', 'n', 'c', 'e', 'c', 'e', 'n', 't', 'r', 'e', '.', 'e', 'u', '\0', @@ -10463,16 +10473,17 @@ static const char kSTSHostTable[] = { /* "metronaut.de", true */ 'm', 'e', 't', 'r', 'o', 'n', 'a', 'u', 't', '.', 'd', 'e', '\0', /* "metsasta.com", true */ 'm', 'e', 't', 's', 'a', 's', 't', 'a', '.', 'c', 'o', 'm', '\0', /* "metzgerei-birkenhof.de", true */ 'm', 'e', 't', 'z', 'g', 'e', 'r', 'e', 'i', '-', 'b', 'i', 'r', 'k', 'e', 'n', 'h', 'o', 'f', '.', 'd', 'e', '\0', /* "meusigno.com", true */ 'm', 'e', 'u', 's', 'i', 'g', 'n', 'o', '.', 'c', 'o', 'm', '\0', /* "mevs.cz", true */ 'm', 'e', 'v', 's', '.', 'c', 'z', '\0', /* "mexican.dating", true */ 'm', 'e', 'x', 'i', 'c', 'a', 'n', '.', 'd', 'a', 't', 'i', 'n', 'g', '\0', /* "mexior.nl", true */ 'm', 'e', 'x', 'i', 'o', 'r', '.', 'n', 'l', '\0', /* "meyeraviation.com", true */ 'm', 'e', 'y', 'e', 'r', 'a', 'v', 'i', 'a', 't', 'i', 'o', 'n', '.', 'c', 'o', 'm', '\0', + /* "meyercloud.de", true */ 'm', 'e', 'y', 'e', 'r', 'c', 'l', 'o', 'u', 'd', '.', 'd', 'e', '\0', /* "mfedderke.com", true */ 'm', 'f', 'e', 'd', 'd', 'e', 'r', 'k', 'e', '.', 'c', 'o', 'm', '\0', /* "mfxbe.de", true */ 'm', 'f', 'x', 'b', 'e', '.', 'd', 'e', '\0', /* "mgdigital.fr", true */ 'm', 'g', 'd', 'i', 'g', 'i', 't', 'a', 'l', '.', 'f', 'r', '\0', /* "mghiorzi.com.ar", true */ 'm', 'g', 'h', 'i', 'o', 'r', 'z', 'i', '.', 'c', 'o', 'm', '.', 'a', 'r', '\0', /* "mgrossklaus.de", true */ 'm', 'g', 'r', 'o', 's', 's', 'k', 'l', 'a', 'u', 's', '.', 'd', 'e', '\0', /* "mheistermann.de", true */ 'm', 'h', 'e', 'i', 's', 't', 'e', 'r', 'm', 'a', 'n', 'n', '.', 'd', 'e', '\0', /* "mhermans.nl", true */ 'm', 'h', 'e', 'r', 'm', 'a', 'n', 's', '.', 'n', 'l', '\0', /* "mhjuma.com", true */ 'm', 'h', 'j', 'u', 'm', 'a', '.', 'c', 'o', 'm', '\0', @@ -10579,17 +10590,16 @@ static const char kSTSHostTable[] = { /* "minami.xyz", true */ 'm', 'i', 'n', 'a', 'm', 'i', '.', 'x', 'y', 'z', '\0', /* "mind-box.ch", true */ 'm', 'i', 'n', 'd', '-', 'b', 'o', 'x', '.', 'c', 'h', '\0', /* "mind-hochschul-netzwerk.de", true */ 'm', 'i', 'n', 'd', '-', 'h', 'o', 'c', 'h', 's', 'c', 'h', 'u', 'l', '-', 'n', 'e', 't', 'z', 'w', 'e', 'r', 'k', '.', 'd', 'e', '\0', /* "mind-moves.es", true */ 'm', 'i', 'n', 'd', '-', 'm', 'o', 'v', 'e', 's', '.', 'e', 's', '\0', /* "mind.sh", true */ 'm', 'i', 'n', 'd', '.', 's', 'h', '\0', /* "mindbodycontinuum.com", true */ 'm', 'i', 'n', 'd', 'b', 'o', 'd', 'y', 'c', 'o', 'n', 't', 'i', 'n', 'u', 'u', 'm', '.', 'c', 'o', 'm', '\0', /* "mindcoding.ro", true */ 'm', 'i', 'n', 'd', 'c', 'o', 'd', 'i', 'n', 'g', '.', 'r', 'o', '\0', /* "mindwerks.net", true */ 'm', 'i', 'n', 'd', 'w', 'e', 'r', 'k', 's', '.', 'n', 'e', 't', '\0', - /* "mine.world", true */ 'm', 'i', 'n', 'e', '.', 'w', 'o', 'r', 'l', 'd', '\0', /* "minecraft-forum.cf", true */ 'm', 'i', 'n', 'e', 'c', 'r', 'a', 'f', 't', '-', 'f', 'o', 'r', 'u', 'm', '.', 'c', 'f', '\0', /* "minecraft-forum.ga", true */ 'm', 'i', 'n', 'e', 'c', 'r', 'a', 'f', 't', '-', 'f', 'o', 'r', 'u', 'm', '.', 'g', 'a', '\0', /* "minecraft-forum.gq", true */ 'm', 'i', 'n', 'e', 'c', 'r', 'a', 'f', 't', '-', 'f', 'o', 'r', 'u', 'm', '.', 'g', 'q', '\0', /* "minecraft-forum.ml", true */ 'm', 'i', 'n', 'e', 'c', 'r', 'a', 'f', 't', '-', 'f', 'o', 'r', 'u', 'm', '.', 'm', 'l', '\0', /* "minecraft-forums.cf", true */ 'm', 'i', 'n', 'e', 'c', 'r', 'a', 'f', 't', '-', 'f', 'o', 'r', 'u', 'm', 's', '.', 'c', 'f', '\0', /* "minecraft-forums.ga", true */ 'm', 'i', 'n', 'e', 'c', 'r', 'a', 'f', 't', '-', 'f', 'o', 'r', 'u', 'm', 's', '.', 'g', 'a', '\0', /* "minecraft-forums.gq", true */ 'm', 'i', 'n', 'e', 'c', 'r', 'a', 'f', 't', '-', 'f', 'o', 'r', 'u', 'm', 's', '.', 'g', 'q', '\0', /* "minecraftforum.de", true */ 'm', 'i', 'n', 'e', 'c', 'r', 'a', 'f', 't', 'f', 'o', 'r', 'u', 'm', '.', 'd', 'e', '\0', @@ -10616,17 +10626,16 @@ static const char kSTSHostTable[] = { /* "miniskipper.at", true */ 'm', 'i', 'n', 'i', 's', 'k', 'i', 'p', 'p', 'e', 'r', '.', 'a', 't', '\0', /* "minitruckin.net", true */ 'm', 'i', 'n', 'i', 't', 'r', 'u', 'c', 'k', 'i', 'n', '.', 'n', 'e', 't', '\0', /* "minitrucktalk.com", true */ 'm', 'i', 'n', 'i', 't', 'r', 'u', 'c', 'k', 't', 'a', 'l', 'k', '.', 'c', 'o', 'm', '\0', /* "minkondom.nu", true */ 'm', 'i', 'n', 'k', 'o', 'n', 'd', 'o', 'm', '.', 'n', 'u', '\0', /* "minnesotakinkyyouth.org", true */ 'm', 'i', 'n', 'n', 'e', 's', 'o', 't', 'a', 'k', 'i', 'n', 'k', 'y', 'y', 'o', 'u', 't', 'h', '.', 'o', 'r', 'g', '\0', /* "minnesotamathcorps.org", true */ 'm', 'i', 'n', 'n', 'e', 's', 'o', 't', 'a', 'm', 'a', 't', 'h', 'c', 'o', 'r', 'p', 's', '.', 'o', 'r', 'g', '\0', /* "minnesotareadingcorps.org", true */ 'm', 'i', 'n', 'n', 'e', 's', 'o', 't', 'a', 'r', 'e', 'a', 'd', 'i', 'n', 'g', 'c', 'o', 'r', 'p', 's', '.', 'o', 'r', 'g', '\0', /* "minobar.com", true */ 'm', 'i', 'n', 'o', 'b', 'a', 'r', '.', 'c', 'o', 'm', '\0', - /* "minora.io", true */ 'm', 'i', 'n', 'o', 'r', 'a', '.', 'i', 'o', '\0', /* "minpingvin.dk", true */ 'm', 'i', 'n', 'p', 'i', 'n', 'g', 'v', 'i', 'n', '.', 'd', 'k', '\0', /* "mintea-noua.ro", true */ 'm', 'i', 'n', 't', 'e', 'a', '-', 'n', 'o', 'u', 'a', '.', 'r', 'o', '\0', /* "mintrak2.com", true */ 'm', 'i', 'n', 't', 'r', 'a', 'k', '2', '.', 'c', 'o', 'm', '\0', /* "minux.info", true */ 'm', 'i', 'n', 'u', 'x', '.', 'i', 'n', 'f', 'o', '\0', /* "mipiaci.co.nz", true */ 'm', 'i', 'p', 'i', 'a', 'c', 'i', '.', 'c', 'o', '.', 'n', 'z', '\0', /* "mipiaci.com.au", true */ 'm', 'i', 'p', 'i', 'a', 'c', 'i', '.', 'c', 'o', 'm', '.', 'a', 'u', '\0', /* "mipla.ch", true */ 'm', 'i', 'p', 'l', 'a', '.', 'c', 'h', '\0', /* "miraheze.org", true */ 'm', 'i', 'r', 'a', 'h', 'e', 'z', 'e', '.', 'o', 'r', 'g', '\0', @@ -10683,16 +10692,17 @@ static const char kSTSHostTable[] = { /* "mkoppmann.at", true */ 'm', 'k', 'o', 'p', 'p', 'm', 'a', 'n', 'n', '.', 'a', 't', '\0', /* "mkp-deutschland.de", true */ 'm', 'k', 'p', '-', 'd', 'e', 'u', 't', 's', 'c', 'h', 'l', 'a', 'n', 'd', '.', 'd', 'e', '\0', /* "mkpef.org", true */ 'm', 'k', 'p', 'e', 'f', '.', 'o', 'r', 'g', '\0', /* "mkse.com", true */ 'm', 'k', 's', 'e', '.', 'c', 'o', 'm', '\0', /* "mktdigital.info", true */ 'm', 'k', 't', 'd', 'i', 'g', 'i', 't', 'a', 'l', '.', 'i', 'n', 'f', 'o', '\0', /* "mktemp.org", true */ 'm', 'k', 't', 'e', 'm', 'p', '.', 'o', 'r', 'g', '\0', /* "mkuznets.com", true */ 'm', 'k', 'u', 'z', 'n', 'e', 't', 's', '.', 'c', 'o', 'm', '\0', /* "mkw.st", true */ 'm', 'k', 'w', '.', 's', 't', '\0', + /* "mlcdn.co", true */ 'm', 'l', 'c', 'd', 'n', '.', 'c', 'o', '\0', /* "mlcnfriends.com", true */ 'm', 'l', 'c', 'n', 'f', 'r', 'i', 'e', 'n', 'd', 's', '.', 'c', 'o', 'm', '\0', /* "mlemay.com", true */ 'm', 'l', 'e', 'm', 'a', 'y', '.', 'c', 'o', 'm', '\0', /* "mlp.ee", true */ 'm', 'l', 'p', '.', 'e', 'e', '\0', /* "mlrslateroofing.com.au", true */ 'm', 'l', 'r', 's', 'l', 'a', 't', 'e', 'r', 'o', 'o', 'f', 'i', 'n', 'g', '.', 'c', 'o', 'm', '.', 'a', 'u', '\0', /* "mlsrv.de", true */ 'm', 'l', 's', 'r', 'v', '.', 'd', 'e', '\0', /* "mlvbphotography.com", true */ 'm', 'l', 'v', 'b', 'p', 'h', 'o', 't', 'o', 'g', 'r', 'a', 'p', 'h', 'y', '.', 'c', 'o', 'm', '\0', /* "mm13.at", true */ 'm', 'm', '1', '3', '.', 'a', 't', '\0', /* "mm404.com", true */ 'm', 'm', '4', '0', '4', '.', 'c', 'o', 'm', '\0', @@ -10707,17 +10717,16 @@ static const char kSTSHostTable[] = { /* "mncloud.de", true */ 'm', 'n', 'c', 'l', 'o', 'u', 'd', '.', 'd', 'e', '\0', /* "mnd.sc", true */ 'm', 'n', 'd', '.', 's', 'c', '\0', /* "mnedc.org", true */ 'm', 'n', 'e', 'd', 'c', '.', 'o', 'r', 'g', '\0', /* "mnium.de", true */ 'm', 'n', 'i', 'u', 'm', '.', 'd', 'e', '\0', /* "mnmt.no", true */ 'm', 'n', 'm', 't', '.', 'n', 'o', '\0', /* "mnsure.org", true */ 'm', 'n', 's', 'u', 'r', 'e', '.', 'o', 'r', 'g', '\0', /* "mnt-tech.fr", true */ 'm', 'n', 't', '-', 't', 'e', 'c', 'h', '.', 'f', 'r', '\0', /* "mnwt.nl", true */ 'm', 'n', 'w', 't', '.', 'n', 'l', '\0', - /* "moar.so", true */ 'm', 'o', 'a', 'r', '.', 's', 'o', '\0', /* "mobal.com", true */ 'm', 'o', 'b', 'a', 'l', '.', 'c', 'o', 'm', '\0', /* "mobeforlife.com", true */ 'm', 'o', 'b', 'e', 'f', 'o', 'r', 'l', 'i', 'f', 'e', '.', 'c', 'o', 'm', '\0', /* "mobidea.com", true */ 'm', 'o', 'b', 'i', 'd', 'e', 'a', '.', 'c', 'o', 'm', '\0', /* "mobilcom-debitel-empfehlen.de", true */ 'm', 'o', 'b', 'i', 'l', 'c', 'o', 'm', '-', 'd', 'e', 'b', 'i', 't', 'e', 'l', '-', 'e', 'm', 'p', 'f', 'e', 'h', 'l', 'e', 'n', '.', 'd', 'e', '\0', /* "mobilcom-debitel.de", true */ 'm', 'o', 'b', 'i', 'l', 'c', 'o', 'm', '-', 'd', 'e', 'b', 'i', 't', 'e', 'l', '.', 'd', 'e', '\0', /* "mobile.eti.br", true */ 'm', 'o', 'b', 'i', 'l', 'e', '.', 'e', 't', 'i', '.', 'b', 'r', '\0', /* "mobile.united.com", false */ 'm', 'o', 'b', 'i', 'l', 'e', '.', 'u', 'n', 'i', 't', 'e', 'd', '.', 'c', 'o', 'm', '\0', /* "mobile.usaa.com", false */ 'm', 'o', 'b', 'i', 'l', 'e', '.', 'u', 's', 'a', 'a', '.', 'c', 'o', 'm', '\0', @@ -10794,17 +10803,16 @@ static const char kSTSHostTable[] = { /* "moneromerchant.com", true */ 'm', 'o', 'n', 'e', 'r', 'o', 'm', 'e', 'r', 'c', 'h', 'a', 'n', 't', '.', 'c', 'o', 'm', '\0', /* "moneycrownmedia.com", true */ 'm', 'o', 'n', 'e', 'y', 'c', 'r', 'o', 'w', 'n', 'm', 'e', 'd', 'i', 'a', '.', 'c', 'o', 'm', '\0', /* "moneygo.se", true */ 'm', 'o', 'n', 'e', 'y', 'g', 'o', '.', 's', 'e', '\0', /* "moneyhouse.de", true */ 'm', 'o', 'n', 'e', 'y', 'h', 'o', 'u', 's', 'e', '.', 'd', 'e', '\0', /* "monika-sokol.de", true */ 'm', 'o', 'n', 'i', 'k', 'a', '-', 's', 'o', 'k', 'o', 'l', '.', 'd', 'e', '\0', /* "monique.io", true */ 'm', 'o', 'n', 'i', 'q', 'u', 'e', '.', 'i', 'o', '\0', /* "moniquedekermadec.com", true */ 'm', 'o', 'n', 'i', 'q', 'u', 'e', 'd', 'e', 'k', 'e', 'r', 'm', 'a', 'd', 'e', 'c', '.', 'c', 'o', 'm', '\0', /* "moniquemunhoz.com.br", true */ 'm', 'o', 'n', 'i', 'q', 'u', 'e', 'm', 'u', 'n', 'h', 'o', 'z', '.', 'c', 'o', 'm', '.', 'b', 'r', '\0', - /* "monitaure.io", true */ 'm', 'o', 'n', 'i', 't', 'a', 'u', 'r', 'e', '.', 'i', 'o', '\0', /* "monitman.solutions", true */ 'm', 'o', 'n', 'i', 't', 'm', 'a', 'n', '.', 's', 'o', 'l', 'u', 't', 'i', 'o', 'n', 's', '\0', /* "monitori.ng", true */ 'm', 'o', 'n', 'i', 't', 'o', 'r', 'i', '.', 'n', 'g', '\0', /* "monitzer.com", true */ 'm', 'o', 'n', 'i', 't', 'z', 'e', 'r', '.', 'c', 'o', 'm', '\0', /* "monix.io", true */ 'm', 'o', 'n', 'i', 'x', '.', 'i', 'o', '\0', /* "monkeydust.net", true */ 'm', 'o', 'n', 'k', 'e', 'y', 'd', 'u', 's', 't', '.', 'n', 'e', 't', '\0', /* "monkeyhill.us", true */ 'm', 'o', 'n', 'k', 'e', 'y', 'h', 'i', 'l', 'l', '.', 'u', 's', '\0', /* "monnyonle.hu", true */ 'm', 'o', 'n', 'n', 'y', 'o', 'n', 'l', 'e', '.', 'h', 'u', '\0', /* "monobank.no", true */ 'm', 'o', 'n', 'o', 'b', 'a', 'n', 'k', '.', 'n', 'o', '\0', @@ -10957,22 +10965,22 @@ static const char kSTSHostTable[] = { /* "multigamecard.com", true */ 'm', 'u', 'l', 't', 'i', 'g', 'a', 'm', 'e', 'c', 'a', 'r', 'd', '.', 'c', 'o', 'm', '\0', /* "multigeist.de", true */ 'm', 'u', 'l', 't', 'i', 'g', 'e', 'i', 's', 't', '.', 'd', 'e', '\0', /* "multimarques.com", true */ 'm', 'u', 'l', 't', 'i', 'm', 'a', 'r', 'q', 'u', 'e', 's', '.', 'c', 'o', 'm', '\0', /* "multiplayernow.com", true */ 'm', 'u', 'l', 't', 'i', 'p', 'l', 'a', 'y', 'e', 'r', 'n', 'o', 'w', '.', 'c', 'o', 'm', '\0', /* "multiplexcy.com", true */ 'm', 'u', 'l', 't', 'i', 'p', 'l', 'e', 'x', 'c', 'y', '.', 'c', 'o', 'm', '\0', /* "multitheftauto.com", true */ 'm', 'u', 'l', 't', 'i', 't', 'h', 'e', 'f', 't', 'a', 'u', 't', 'o', '.', 'c', 'o', 'm', '\0', /* "multiworldsoftware.com", true */ 'm', 'u', 'l', 't', 'i', 'w', 'o', 'r', 'l', 'd', 's', 'o', 'f', 't', 'w', 'a', 'r', 'e', '.', 'c', 'o', 'm', '\0', /* "multrier.fr", true */ 'm', 'u', 'l', 't', 'r', 'i', 'e', 'r', '.', 'f', 'r', '\0', + /* "mumei.space", true */ 'm', 'u', 'm', 'e', 'i', '.', 's', 'p', 'a', 'c', 'e', '\0', /* "mumolabs.com", true */ 'm', 'u', 'm', 'o', 'l', 'a', 'b', 's', '.', 'c', 'o', 'm', '\0', /* "mundodasmensagens.com", true */ 'm', 'u', 'n', 'd', 'o', 'd', 'a', 's', 'm', 'e', 'n', 's', 'a', 'g', 'e', 'n', 's', '.', 'c', 'o', 'm', '\0', /* "mundschenk.at", true */ 'm', 'u', 'n', 'd', 's', 'c', 'h', 'e', 'n', 'k', '.', 'a', 't', '\0', /* "munduch.cz", true */ 'm', 'u', 'n', 'd', 'u', 'c', 'h', '.', 'c', 'z', '\0', /* "munki.org", true */ 'm', 'u', 'n', 'k', 'i', '.', 'o', 'r', 'g', '\0', - /* "munkiepus.com", true */ 'm', 'u', 'n', 'k', 'i', 'e', 'p', 'u', 's', '.', 'c', 'o', 'm', '\0', /* "muonium.ch", true */ 'm', 'u', 'o', 'n', 'i', 'u', 'm', '.', 'c', 'h', '\0', /* "murakami-sah.com", true */ 'm', 'u', 'r', 'a', 'k', 'a', 'm', 'i', '-', 's', 'a', 'h', '.', 'c', 'o', 'm', '\0', /* "murdercube.com", true */ 'm', 'u', 'r', 'd', 'e', 'r', 'c', 'u', 'b', 'e', '.', 'c', 'o', 'm', '\0', /* "murfy.nz", true */ 'm', 'u', 'r', 'f', 'y', '.', 'n', 'z', '\0', /* "murgi.de", true */ 'm', 'u', 'r', 'g', 'i', '.', 'd', 'e', '\0', /* "murz.tv", true */ 'm', 'u', 'r', 'z', '.', 't', 'v', '\0', /* "muscleangels.com", true */ 'm', 'u', 's', 'c', 'l', 'e', 'a', 'n', 'g', 'e', 'l', 's', '.', 'c', 'o', 'm', '\0', /* "musehelix.com", true */ 'm', 'u', 's', 'e', 'h', 'e', 'l', 'i', 'x', '.', 'c', 'o', 'm', '\0', @@ -11116,17 +11124,16 @@ static const char kSTSHostTable[] = { /* "mystic-welten.de", true */ 'm', 'y', 's', 't', 'i', 'c', '-', 'w', 'e', 'l', 't', 'e', 'n', '.', 'd', 'e', '\0', /* "mystickphysick.com", true */ 'm', 'y', 's', 't', 'i', 'c', 'k', 'p', 'h', 'y', 's', 'i', 'c', 'k', '.', 'c', 'o', 'm', '\0', /* "mysticplumes.com", true */ 'm', 'y', 's', 't', 'i', 'c', 'p', 'l', 'u', 'm', 'e', 's', '.', 'c', 'o', 'm', '\0', /* "mystown.org", true */ 'm', 'y', 's', 't', 'o', 'w', 'n', '.', 'o', 'r', 'g', '\0', /* "mystudy.me", true */ 'm', 'y', 's', 't', 'u', 'd', 'y', '.', 'm', 'e', '\0', /* "mytc.fr", true */ 'm', 'y', 't', 'c', '.', 'f', 'r', '\0', /* "mythengay.ch", true */ 'm', 'y', 't', 'h', 'e', 'n', 'g', 'a', 'y', '.', 'c', 'h', '\0', /* "mythlogic.com", true */ 'm', 'y', 't', 'h', 'l', 'o', 'g', 'i', 'c', '.', 'c', 'o', 'm', '\0', - /* "mythslegendscollection.com", true */ 'm', 'y', 't', 'h', 's', 'l', 'e', 'g', 'e', 'n', 'd', 's', 'c', 'o', 'l', 'l', 'e', 'c', 't', 'i', 'o', 'n', '.', 'c', 'o', 'm', '\0', /* "mytraiteurs.com", true */ 'm', 'y', 't', 'r', 'a', 'i', 't', 'e', 'u', 'r', 's', '.', 'c', 'o', 'm', '\0', /* "mytripcar.co.uk", true */ 'm', 'y', 't', 'r', 'i', 'p', 'c', 'a', 'r', '.', 'c', 'o', '.', 'u', 'k', '\0', /* "mytripcar.com", true */ 'm', 'y', 't', 'r', 'i', 'p', 'c', 'a', 'r', '.', 'c', 'o', 'm', '\0', /* "mytripcar.de", true */ 'm', 'y', 't', 'r', 'i', 'p', 'c', 'a', 'r', '.', 'd', 'e', '\0', /* "mytripcar.es", true */ 'm', 'y', 't', 'r', 'i', 'p', 'c', 'a', 'r', '.', 'e', 's', '\0', /* "mytripcar.fr", true */ 'm', 'y', 't', 'r', 'i', 'p', 'c', 'a', 'r', '.', 'f', 'r', '\0', /* "mytty.net", true */ 'm', 'y', 't', 't', 'y', '.', 'n', 'e', 't', '\0', /* "mytweeps.com", true */ 'm', 'y', 't', 'w', 'e', 'e', 'p', 's', '.', 'c', 'o', 'm', '\0', @@ -11206,16 +11213,17 @@ static const char kSTSHostTable[] = { /* "nartuk.com.ua", false */ 'n', 'a', 'r', 't', 'u', 'k', '.', 'c', 'o', 'm', '.', 'u', 'a', '\0', /* "nasarawanewsonline.com", true */ 'n', 'a', 's', 'a', 'r', 'a', 'w', 'a', 'n', 'e', 'w', 's', 'o', 'n', 'l', 'i', 'n', 'e', '.', 'c', 'o', 'm', '\0', /* "nascher.org", false */ 'n', 'a', 's', 'c', 'h', 'e', 'r', '.', 'o', 'r', 'g', '\0', /* "nasreddine.xyz", false */ 'n', 'a', 's', 'r', 'e', 'd', 'd', 'i', 'n', 'e', '.', 'x', 'y', 'z', '\0', /* "nasrsolar.com", true */ 'n', 'a', 's', 'r', 's', 'o', 'l', 'a', 'r', '.', 'c', 'o', 'm', '\0', /* "nassi.me", true */ 'n', 'a', 's', 's', 'i', '.', 'm', 'e', '\0', /* "nastysclaw.com", true */ 'n', 'a', 's', 't', 'y', 's', 'c', 'l', 'a', 'w', '.', 'c', 'o', 'm', '\0', /* "natalieandjoshua.com", true */ 'n', 'a', 't', 'a', 'l', 'i', 'e', 'a', 'n', 'd', 'j', 'o', 's', 'h', 'u', 'a', '.', 'c', 'o', 'm', '\0', + /* "natanaelys.com", true */ 'n', 'a', 't', 'a', 'n', 'a', 'e', 'l', 'y', 's', '.', 'c', 'o', 'm', '\0', /* "natenom.com", true */ 'n', 'a', 't', 'e', 'n', 'o', 'm', '.', 'c', 'o', 'm', '\0', /* "natenom.de", true */ 'n', 'a', 't', 'e', 'n', 'o', 'm', '.', 'd', 'e', '\0', /* "natenom.name", true */ 'n', 'a', 't', 'e', 'n', 'o', 'm', '.', 'n', 'a', 'm', 'e', '\0', /* "nathan.io", true */ 'n', 'a', 't', 'h', 'a', 'n', '.', 'i', 'o', '\0', /* "nathankonopinski.com", true */ 'n', 'a', 't', 'h', 'a', 'n', 'k', 'o', 'n', 'o', 'p', 'i', 'n', 's', 'k', 'i', '.', 'c', 'o', 'm', '\0', /* "nathansmetana.com", true */ 'n', 'a', 't', 'h', 'a', 'n', 's', 'm', 'e', 't', 'a', 'n', 'a', '.', 'c', 'o', 'm', '\0', /* "nationalcentereg.org", true */ 'n', 'a', 't', 'i', 'o', 'n', 'a', 'l', 'c', 'e', 'n', 't', 'e', 'r', 'e', 'g', '.', 'o', 'r', 'g', '\0', /* "nationalcrimecheck.com.au", true */ 'n', 'a', 't', 'i', 'o', 'n', 'a', 'l', 'c', 'r', 'i', 'm', 'e', 'c', 'h', 'e', 'c', 'k', '.', 'c', 'o', 'm', '.', 'a', 'u', '\0', @@ -11414,17 +11422,16 @@ static const char kSTSHostTable[] = { /* "newbieboss.com", true */ 'n', 'e', 'w', 'b', 'i', 'e', 'b', 'o', 's', 's', '.', 'c', 'o', 'm', '\0', /* "newbietech.cn", true */ 'n', 'e', 'w', 'b', 'i', 'e', 't', 'e', 'c', 'h', '.', 'c', 'n', '\0', /* "newcityinfo.ch", true */ 'n', 'e', 'w', 'c', 'i', 't', 'y', 'i', 'n', 'f', 'o', '.', 'c', 'h', '\0', /* "newcityinfo.info", true */ 'n', 'e', 'w', 'c', 'i', 't', 'y', 'i', 'n', 'f', 'o', '.', 'i', 'n', 'f', 'o', '\0', /* "newcitystudio.ch", true */ 'n', 'e', 'w', 'c', 'i', 't', 'y', 's', 't', 'u', 'd', 'i', 'o', '.', 'c', 'h', '\0', /* "newday.host", true */ 'n', 'e', 'w', 'd', 'a', 'y', '.', 'h', 'o', 's', 't', '\0', /* "newedivideo.it", true */ 'n', 'e', 'w', 'e', 'd', 'i', 'v', 'i', 'd', 'e', 'o', '.', 'i', 't', '\0', /* "newfacialbeautycream.com", true */ 'n', 'e', 'w', 'f', 'a', 'c', 'i', 'a', 'l', 'b', 'e', 'a', 'u', 't', 'y', 'c', 'r', 'e', 'a', 'm', '.', 'c', 'o', 'm', '\0', - /* "newgenerationplus.org", true */ 'n', 'e', 'w', 'g', 'e', 'n', 'e', 'r', 'a', 't', 'i', 'o', 'n', 'p', 'l', 'u', 's', '.', 'o', 'r', 'g', '\0', /* "newind.info", true */ 'n', 'e', 'w', 'i', 'n', 'd', '.', 'i', 'n', 'f', 'o', '\0', /* "newline.online", true */ 'n', 'e', 'w', 'l', 'i', 'n', 'e', '.', 'o', 'n', 'l', 'i', 'n', 'e', '\0', /* "newmediaone.net", true */ 'n', 'e', 'w', 'm', 'e', 'd', 'i', 'a', 'o', 'n', 'e', '.', 'n', 'e', 't', '\0', /* "newmelalife.com", true */ 'n', 'e', 'w', 'm', 'e', 'l', 'a', 'l', 'i', 'f', 'e', '.', 'c', 'o', 'm', '\0', /* "newodesign.com", true */ 'n', 'e', 'w', 'o', 'd', 'e', 's', 'i', 'g', 'n', '.', 'c', 'o', 'm', '\0', /* "newpathintegratedtherapy.com", true */ 'n', 'e', 'w', 'p', 'a', 't', 'h', 'i', 'n', 't', 'e', 'g', 'r', 'a', 't', 'e', 'd', 't', 'h', 'e', 'r', 'a', 'p', 'y', '.', 'c', 'o', 'm', '\0', /* "newstarnootropics.com", true */ 'n', 'e', 'w', 's', 't', 'a', 'r', 'n', 'o', 'o', 't', 'r', 'o', 'p', 'i', 'c', 's', '.', 'c', 'o', 'm', '\0', /* "newstone-tech.com", true */ 'n', 'e', 'w', 's', 't', 'o', 'n', 'e', '-', 't', 'e', 'c', 'h', '.', 'c', 'o', 'm', '\0', @@ -11728,16 +11735,17 @@ static const char kSTSHostTable[] = { /* "nwerc.party", true */ 'n', 'w', 'e', 'r', 'c', '.', 'p', 'a', 'r', 't', 'y', '\0', /* "nwk1.com", true */ 'n', 'w', 'k', '1', '.', 'c', 'o', 'm', '\0', /* "nwra.com", true */ 'n', 'w', 'r', 'a', '.', 'c', 'o', 'm', '\0', /* "nwwc.dk", true */ 'n', 'w', 'w', 'c', '.', 'd', 'k', '\0', /* "nwwnetwork.net", true */ 'n', 'w', 'w', 'n', 'e', 't', 'w', 'o', 'r', 'k', '.', 'n', 'e', 't', '\0', /* "nyan.it", true */ 'n', 'y', 'a', 'n', '.', 'i', 't', '\0', /* "nyanpasu.tv", true */ 'n', 'y', 'a', 'n', 'p', 'a', 's', 'u', '.', 't', 'v', '\0', /* "nycroth.com", true */ 'n', 'y', 'c', 'r', 'o', 't', 'h', '.', 'c', 'o', 'm', '\0', + /* "nyffo.com", true */ 'n', 'y', 'f', 'f', 'o', '.', 'c', 'o', 'm', '\0', /* "nyiad.edu", true */ 'n', 'y', 'i', 'a', 'd', '.', 'e', 'd', 'u', '\0', /* "nyip.co.uk", true */ 'n', 'y', 'i', 'p', '.', 'c', 'o', '.', 'u', 'k', '\0', /* "nyip.edu", true */ 'n', 'y', 'i', 'p', '.', 'e', 'd', 'u', '\0', /* "nylonfeetporn.com", true */ 'n', 'y', 'l', 'o', 'n', 'f', 'e', 'e', 't', 'p', 'o', 'r', 'n', '.', 'c', 'o', 'm', '\0', /* "nymphetomania.net", true */ 'n', 'y', 'm', 'p', 'h', 'e', 't', 'o', 'm', 'a', 'n', 'i', 'a', '.', 'n', 'e', 't', '\0', /* "nynex.net", true */ 'n', 'y', 'n', 'e', 'x', '.', 'n', 'e', 't', '\0', /* "nyphox.net", true */ 'n', 'y', 'p', 'h', 'o', 'x', '.', 'n', 'e', 't', '\0', /* "nyronet.de", false */ 'n', 'y', 'r', 'o', 'n', 'e', 't', '.', 'd', 'e', '\0', @@ -12032,16 +12040,17 @@ static const char kSTSHostTable[] = { /* "orion-universe.com", true */ 'o', 'r', 'i', 'o', 'n', '-', 'u', 'n', 'i', 'v', 'e', 'r', 's', 'e', '.', 'c', 'o', 'm', '\0', /* "orioncustompcs.com", false */ 'o', 'r', 'i', 'o', 'n', 'c', 'u', 's', 't', 'o', 'm', 'p', 'c', 's', '.', 'c', 'o', 'm', '\0', /* "oriongames.eu", true */ 'o', 'r', 'i', 'o', 'n', 'g', 'a', 'm', 'e', 's', '.', 'e', 'u', '\0', /* "orionrebellion.com", true */ 'o', 'r', 'i', 'o', 'n', 'r', 'e', 'b', 'e', 'l', 'l', 'i', 'o', 'n', '.', 'c', 'o', 'm', '\0', /* "orkestar-krizevci.hr", true */ 'o', 'r', 'k', 'e', 's', 't', 'a', 'r', '-', 'k', 'r', 'i', 'z', 'e', 'v', 'c', 'i', '.', 'h', 'r', '\0', /* "orlives.de", true */ 'o', 'r', 'l', 'i', 'v', 'e', 's', '.', 'd', 'e', '\0', /* "oroweatorganic.com", true */ 'o', 'r', 'o', 'w', 'e', 'a', 't', 'o', 'r', 'g', 'a', 'n', 'i', 'c', '.', 'c', 'o', 'm', '\0', /* "orro.ro", true */ 'o', 'r', 'r', 'o', '.', 'r', 'o', '\0', + /* "orrs.de", true */ 'o', 'r', 'r', 's', '.', 'd', 'e', '\0', /* "ortlepp.eu", true */ 'o', 'r', 't', 'l', 'e', 'p', 'p', '.', 'e', 'u', '\0', /* "orwell1984.today", true */ 'o', 'r', 'w', 'e', 'l', 'l', '1', '9', '8', '4', '.', 't', 'o', 'd', 'a', 'y', '\0', /* "os-s.net", true */ 'o', 's', '-', 's', '.', 'n', 'e', 't', '\0', /* "osacrypt.studio", true */ 'o', 's', 'a', 'c', 'r', 'y', 'p', 't', '.', 's', 't', 'u', 'd', 'i', 'o', '\0', /* "osao.org", true */ 'o', 's', 'a', 'o', '.', 'o', 'r', 'g', '\0', /* "osborneinn.com", true */ 'o', 's', 'b', 'o', 'r', 'n', 'e', 'i', 'n', 'n', '.', 'c', 'o', 'm', '\0', /* "osburn.com", true */ 'o', 's', 'b', 'u', 'r', 'n', '.', 'c', 'o', 'm', '\0', /* "oscarvk.ch", true */ 'o', 's', 'c', 'a', 'r', 'v', 'k', '.', 'c', 'h', '\0', @@ -12324,16 +12333,17 @@ static const char kSTSHostTable[] = { /* "pciconcursos.com.br", true */ 'p', 'c', 'i', 'c', 'o', 'n', 'c', 'u', 'r', 's', 'o', 's', '.', 'c', 'o', 'm', '.', 'b', 'r', '\0', /* "pclaeuft.de", true */ 'p', 'c', 'l', 'a', 'e', 'u', 'f', 't', '.', 'd', 'e', '\0', /* "pclob.gov", true */ 'p', 'c', 'l', 'o', 'b', '.', 'g', 'o', 'v', '\0', /* "pcloud.com", true */ 'p', 'c', 'l', 'o', 'u', 'd', '.', 'c', 'o', 'm', '\0', /* "pcnotdienst-oldenburg-rastede.de", true */ 'p', 'c', 'n', 'o', 't', 'd', 'i', 'e', 'n', 's', 't', '-', 'o', 'l', 'd', 'e', 'n', 'b', 'u', 'r', 'g', '-', 'r', 'a', 's', 't', 'e', 'd', 'e', '.', 'd', 'e', '\0', /* "pctonic.net", true */ 'p', 'c', 't', 'o', 'n', 'i', 'c', '.', 'n', 'e', 't', '\0', /* "pctrouble.net", true */ 'p', 'c', 't', 'r', 'o', 'u', 'b', 'l', 'e', '.', 'n', 'e', 't', '\0', /* "pcxserver.com", true */ 'p', 'c', 'x', 's', 'e', 'r', 'v', 'e', 'r', '.', 'c', 'o', 'm', '\0', + /* "pdamsidoarjo.co.id", true */ 'p', 'd', 'a', 'm', 's', 'i', 'd', 'o', 'a', 'r', 'j', 'o', '.', 'c', 'o', '.', 'i', 'd', '\0', /* "pdfresizer.com", true */ 'p', 'd', 'f', 'r', 'e', 's', 'i', 'z', 'e', 'r', '.', 'c', 'o', 'm', '\0', /* "pe-bank.co.jp", true */ 'p', 'e', '-', 'b', 'a', 'n', 'k', '.', 'c', 'o', '.', 'j', 'p', '\0', /* "pe-kyousai.jp", true */ 'p', 'e', '-', 'k', 'y', 'o', 'u', 's', 'a', 'i', '.', 'j', 'p', '\0', /* "pe.search.yahoo.com", false */ 'p', 'e', '.', 's', 'e', 'a', 'r', 'c', 'h', '.', 'y', 'a', 'h', 'o', 'o', '.', 'c', 'o', 'm', '\0', /* "peaceandwool.com", true */ 'p', 'e', 'a', 'c', 'e', 'a', 'n', 'd', 'w', 'o', 'o', 'l', '.', 'c', 'o', 'm', '\0', /* "pear2pear.de", true */ 'p', 'e', 'a', 'r', '2', 'p', 'e', 'a', 'r', '.', 'd', 'e', '\0', /* "pebbles.net.in", true */ 'p', 'e', 'b', 'b', 'l', 'e', 's', '.', 'n', 'e', 't', '.', 'i', 'n', '\0', /* "pebblesdemo.com", true */ 'p', 'e', 'b', 'b', 'l', 'e', 's', 'd', 'e', 'm', 'o', '.', 'c', 'o', 'm', '\0', @@ -12379,16 +12389,17 @@ static const char kSTSHostTable[] = { /* "pencillab.cn", true */ 'p', 'e', 'n', 'c', 'i', 'l', 'l', 'a', 'b', '.', 'c', 'n', '\0', /* "penfold.fr", true */ 'p', 'e', 'n', 'f', 'o', 'l', 'd', '.', 'f', 'r', '\0', /* "pengi.me", true */ 'p', 'e', 'n', 'g', 'i', '.', 'm', 'e', '\0', /* "pengui.uk", true */ 'p', 'e', 'n', 'g', 'u', 'i', '.', 'u', 'k', '\0', /* "pennergold.net", true */ 'p', 'e', 'n', 'n', 'e', 'r', 'g', 'o', 'l', 'd', '.', 'n', 'e', 't', '\0', /* "pennyapp.io", true */ 'p', 'e', 'n', 'n', 'y', 'a', 'p', 'p', '.', 'i', 'o', '\0', /* "pennylane.me.uk", true */ 'p', 'e', 'n', 'n', 'y', 'l', 'a', 'n', 'e', '.', 'm', 'e', '.', 'u', 'k', '\0', /* "penrithapartments.com.au", true */ 'p', 'e', 'n', 'r', 'i', 't', 'h', 'a', 'p', 'a', 'r', 't', 'm', 'e', 'n', 't', 's', '.', 'c', 'o', 'm', '.', 'a', 'u', '\0', + /* "pensacolawinterfest.org", true */ 'p', 'e', 'n', 's', 'a', 'c', 'o', 'l', 'a', 'w', 'i', 'n', 't', 'e', 'r', 'f', 'e', 's', 't', '.', 'o', 'r', 'g', '\0', /* "pension-waldesruh.de", true */ 'p', 'e', 'n', 's', 'i', 'o', 'n', '-', 'w', 'a', 'l', 'd', 'e', 's', 'r', 'u', 'h', '.', 'd', 'e', '\0', /* "pensiunealido.ro", true */ 'p', 'e', 'n', 's', 'i', 'u', 'n', 'e', 'a', 'l', 'i', 'd', 'o', '.', 'r', 'o', '\0', /* "pentagram.me", false */ 'p', 'e', 'n', 't', 'a', 'g', 'r', 'a', 'm', '.', 'm', 'e', '\0', /* "pentest.blog", true */ 'p', 'e', 'n', 't', 'e', 's', 't', '.', 'b', 'l', 'o', 'g', '\0', /* "pentest.nl", true */ 'p', 'e', 'n', 't', 'e', 's', 't', '.', 'n', 'l', '\0', /* "pentesterlab.com", true */ 'p', 'e', 'n', 't', 'e', 's', 't', 'e', 'r', 'l', 'a', 'b', '.', 'c', 'o', 'm', '\0', /* "penz.media", true */ 'p', 'e', 'n', 'z', '.', 'm', 'e', 'd', 'i', 'a', '\0', /* "people-mozilla.org", true */ 'p', 'e', 'o', 'p', 'l', 'e', '-', 'm', 'o', 'z', 'i', 'l', 'l', 'a', '.', 'o', 'r', 'g', '\0', @@ -12801,18 +12812,16 @@ static const char kSTSHostTable[] = { /* "postbox.life", true */ 'p', 'o', 's', 't', 'b', 'o', 'x', '.', 'l', 'i', 'f', 'e', '\0', /* "postcodegarant.nl", true */ 'p', 'o', 's', 't', 'c', 'o', 'd', 'e', 'g', 'a', 'r', 'a', 'n', 't', '.', 'n', 'l', '\0', /* "posteo.de", false */ 'p', 'o', 's', 't', 'e', 'o', '.', 'd', 'e', '\0', /* "posterspy.com", true */ 'p', 'o', 's', 't', 'e', 'r', 's', 'p', 'y', '.', 'c', 'o', 'm', '\0', /* "postfinance.ch", true */ 'p', 'o', 's', 't', 'f', 'i', 'n', 'a', 'n', 'c', 'e', '.', 'c', 'h', '\0', /* "postmatescode.com", true */ 'p', 'o', 's', 't', 'm', 'a', 't', 'e', 's', 'c', 'o', 'd', 'e', '.', 'c', 'o', 'm', '\0', /* "postn.eu", true */ 'p', 'o', 's', 't', 'n', '.', 'e', 'u', '\0', /* "posttigo.com", true */ 'p', 'o', 's', 't', 't', 'i', 'g', 'o', '.', 'c', 'o', 'm', '\0', - /* "potatofrom.space", false */ 'p', 'o', 't', 'a', 't', 'o', 'f', 'r', 'o', 'm', '.', 's', 'p', 'a', 'c', 'e', '\0', - /* "potatoheads.net", true */ 'p', 'o', 't', 'a', 't', 'o', 'h', 'e', 'a', 'd', 's', '.', 'n', 'e', 't', '\0', /* "potbar.com", true */ 'p', 'o', 't', 'b', 'a', 'r', '.', 'c', 'o', 'm', '\0', /* "potbox.com", true */ 'p', 'o', 't', 'b', 'o', 'x', '.', 'c', 'o', 'm', '\0', /* "pothe.com", true */ 'p', 'o', 't', 'h', 'e', '.', 'c', 'o', 'm', '\0', /* "pothe.de", true */ 'p', 'o', 't', 'h', 'e', '.', 'd', 'e', '\0', /* "potlytics.com", true */ 'p', 'o', 't', 'l', 'y', 't', 'i', 'c', 's', '.', 'c', 'o', 'm', '\0', /* "potpourrifestival.de", true */ 'p', 'o', 't', 'p', 'o', 'u', 'r', 'r', 'i', 'f', 'e', 's', 't', 'i', 'v', 'a', 'l', '.', 'd', 'e', '\0', /* "potsky.com", true */ 'p', 'o', 't', 's', 'k', 'y', '.', 'c', 'o', 'm', '\0', /* "potterscraftcider.com", true */ 'p', 'o', 't', 't', 'e', 'r', 's', 'c', 'r', 'a', 'f', 't', 'c', 'i', 'd', 'e', 'r', '.', 'c', 'o', 'm', '\0', @@ -12950,17 +12959,16 @@ static const char kSTSHostTable[] = { /* "progress-linux.org", true */ 'p', 'r', 'o', 'g', 'r', 'e', 's', 's', '-', 'l', 'i', 'n', 'u', 'x', '.', 'o', 'r', 'g', '\0', /* "progressive.work", true */ 'p', 'r', 'o', 'g', 'r', 'e', 's', 's', 'i', 'v', 'e', '.', 'w', 'o', 'r', 'k', '\0', /* "progressivecfo.co.nz", true */ 'p', 'r', 'o', 'g', 'r', 'e', 's', 's', 'i', 'v', 'e', 'c', 'f', 'o', '.', 'c', 'o', '.', 'n', 'z', '\0', /* "progressiveplanning.com", true */ 'p', 'r', 'o', 'g', 'r', 'e', 's', 's', 'i', 'v', 'e', 'p', 'l', 'a', 'n', 'n', 'i', 'n', 'g', '.', 'c', 'o', 'm', '\0', /* "proitconsulting.com.au", true */ 'p', 'r', 'o', 'i', 't', 'c', 'o', 'n', 's', 'u', 'l', 't', 'i', 'n', 'g', '.', 'c', 'o', 'm', '.', 'a', 'u', '\0', /* "proj.org.cn", true */ 'p', 'r', 'o', 'j', '.', 'o', 'r', 'g', '.', 'c', 'n', '\0', /* "project-rune.tech", true */ 'p', 'r', 'o', 'j', 'e', 'c', 't', '-', 'r', 'u', 'n', 'e', '.', 't', 'e', 'c', 'h', '\0', /* "project-sparks.eu", true */ 'p', 'r', 'o', 'j', 'e', 'c', 't', '-', 's', 'p', 'a', 'r', 'k', 's', '.', 'e', 'u', '\0', - /* "projectarmy.net", true */ 'p', 'r', 'o', 'j', 'e', 'c', 't', 'a', 'r', 'm', 'y', '.', 'n', 'e', 't', '\0', /* "projectascension.io", true */ 'p', 'r', 'o', 'j', 'e', 'c', 't', 'a', 's', 'c', 'e', 'n', 's', 'i', 'o', 'n', '.', 'i', 'o', '\0', /* "projectbenson.com", false */ 'p', 'r', 'o', 'j', 'e', 'c', 't', 'b', 'e', 'n', 's', 'o', 'n', '.', 'c', 'o', 'm', '\0', /* "projectblackbook.us", true */ 'p', 'r', 'o', 'j', 'e', 'c', 't', 'b', 'l', 'a', 'c', 'k', 'b', 'o', 'o', 'k', '.', 'u', 's', '\0', /* "projectnom.com", true */ 'p', 'r', 'o', 'j', 'e', 'c', 't', 'n', 'o', 'm', '.', 'c', 'o', 'm', '\0', /* "projectsecretidentity.com", true */ 'p', 'r', 'o', 'j', 'e', 'c', 't', 's', 'e', 'c', 'r', 'e', 't', 'i', 'd', 'e', 'n', 't', 'i', 't', 'y', '.', 'c', 'o', 'm', '\0', /* "projectsecretidentity.org", true */ 'p', 'r', 'o', 'j', 'e', 'c', 't', 's', 'e', 'c', 'r', 'e', 't', 'i', 'd', 'e', 'n', 't', 'i', 't', 'y', '.', 'o', 'r', 'g', '\0', /* "projectte.ch", true */ 'p', 'r', 'o', 'j', 'e', 'c', 't', 't', 'e', '.', 'c', 'h', '\0', /* "projektik.cz", true */ 'p', 'r', 'o', 'j', 'e', 'k', 't', 'i', 'k', '.', 'c', 'z', '\0', @@ -13579,16 +13587,17 @@ static const char kSTSHostTable[] = { /* "rezosup.net", true */ 'r', 'e', 'z', 'o', 's', 'u', 'p', '.', 'n', 'e', 't', '\0', /* "rezosup.org", true */ 'r', 'e', 'z', 'o', 's', 'u', 'p', '.', 'o', 'r', 'g', '\0', /* "rezultant.ru", true */ 'r', 'e', 'z', 'u', 'l', 't', 'a', 'n', 't', '.', 'r', 'u', '\0', /* "rezun.cloud", true */ 'r', 'e', 'z', 'u', 'n', '.', 'c', 'l', 'o', 'u', 'd', '\0', /* "rgavmf.ru", true */ 'r', 'g', 'a', 'v', 'm', 'f', '.', 'r', 'u', '\0', /* "rgservers.com", true */ 'r', 'g', 's', 'e', 'r', 'v', 'e', 'r', 's', '.', 'c', 'o', 'm', '\0', /* "rhees.nl", true */ 'r', 'h', 'e', 'e', 's', '.', 'n', 'l', '\0', /* "rheinneckarmetal.com", true */ 'r', 'h', 'e', 'i', 'n', 'n', 'e', 'c', 'k', 'a', 'r', 'm', 'e', 't', 'a', 'l', '.', 'c', 'o', 'm', '\0', + /* "rheocube.com", true */ 'r', 'h', 'e', 'o', 'c', 'u', 'b', 'e', '.', 'c', 'o', 'm', '\0', /* "rheuma-online.de", true */ 'r', 'h', 'e', 'u', 'm', 'a', '-', 'o', 'n', 'l', 'i', 'n', 'e', '.', 'd', 'e', '\0', /* "rhinelander.ca", true */ 'r', 'h', 'i', 'n', 'e', 'l', 'a', 'n', 'd', 'e', 'r', '.', 'c', 'a', '\0', /* "rhodenmanorcattery.co.uk", true */ 'r', 'h', 'o', 'd', 'e', 'n', 'm', 'a', 'n', 'o', 'r', 'c', 'a', 't', 't', 'e', 'r', 'y', '.', 'c', 'o', '.', 'u', 'k', '\0', /* "rhodesianridgeback.com.br", true */ 'r', 'h', 'o', 'd', 'e', 's', 'i', 'a', 'n', 'r', 'i', 'd', 'g', 'e', 'b', 'a', 'c', 'k', '.', 'c', 'o', 'm', '.', 'b', 'r', '\0', /* "rhodosdreef.nl", true */ 'r', 'h', 'o', 'd', 'o', 's', 'd', 'r', 'e', 'e', 'f', '.', 'n', 'l', '\0', /* "rhymix.org", true */ 'r', 'h', 'y', 'm', 'i', 'x', '.', 'o', 'r', 'g', '\0', /* "rhynl.io", true */ 'r', 'h', 'y', 'n', 'l', '.', 'i', 'o', '\0', /* "riaucybersolution.net", true */ 'r', 'i', 'a', 'u', 'c', 'y', 'b', 'e', 'r', 's', 'o', 'l', 'u', 't', 'i', 'o', 'n', '.', 'n', 'e', 't', '\0', @@ -13795,16 +13804,17 @@ static const char kSTSHostTable[] = { /* "roughgrain.com", true */ 'r', 'o', 'u', 'g', 'h', 'g', 'r', 'a', 'i', 'n', '.', 'c', 'o', 'm', '\0', /* "roundcube.mayfirst.org", false */ 'r', 'o', 'u', 'n', 'd', 'c', 'u', 'b', 'e', '.', 'm', 'a', 'y', 'f', 'i', 'r', 's', 't', '.', 'o', 'r', 'g', '\0', /* "rowancasting.ie", true */ 'r', 'o', 'w', 'a', 'n', 'c', 'a', 's', 't', 'i', 'n', 'g', '.', 'i', 'e', '\0', /* "rowankaag.nl", true */ 'r', 'o', 'w', 'a', 'n', 'k', 'a', 'a', 'g', '.', 'n', 'l', '\0', /* "rowlog.com", true */ 'r', 'o', 'w', 'l', 'o', 'g', '.', 'c', 'o', 'm', '\0', /* "roxtri.cz", true */ 'r', 'o', 'x', 't', 'r', 'i', '.', 'c', 'z', '\0', /* "royal-mangal.ch", true */ 'r', 'o', 'y', 'a', 'l', '-', 'm', 'a', 'n', 'g', 'a', 'l', '.', 'c', 'h', '\0', /* "royal-rangers.de", true */ 'r', 'o', 'y', 'a', 'l', '-', 'r', 'a', 'n', 'g', 'e', 'r', 's', '.', 'd', 'e', '\0', + /* "royalacademy.org.uk", true */ 'r', 'o', 'y', 'a', 'l', 'a', 'c', 'a', 'd', 'e', 'm', 'y', '.', 'o', 'r', 'g', '.', 'u', 'k', '\0', /* "royalhop.co", true */ 'r', 'o', 'y', 'a', 'l', 'h', 'o', 'p', '.', 'c', 'o', '\0', /* "royalmarinesassociation.org.uk", true */ 'r', 'o', 'y', 'a', 'l', 'm', 'a', 'r', 'i', 'n', 'e', 's', 'a', 's', 's', 'o', 'c', 'i', 'a', 't', 'i', 'o', 'n', '.', 'o', 'r', 'g', '.', 'u', 'k', '\0', /* "royalpalacenogent.fr", true */ 'r', 'o', 'y', 'a', 'l', 'p', 'a', 'l', 'a', 'c', 'e', 'n', 'o', 'g', 'e', 'n', 't', '.', 'f', 'r', '\0', /* "royalsignaturecruise.com", true */ 'r', 'o', 'y', 'a', 'l', 's', 'i', 'g', 'n', 'a', 't', 'u', 'r', 'e', 'c', 'r', 'u', 'i', 's', 'e', '.', 'c', 'o', 'm', '\0', /* "royalvisiongroup.com", true */ 'r', 'o', 'y', 'a', 'l', 'v', 'i', 's', 'i', 'o', 'n', 'g', 'r', 'o', 'u', 'p', '.', 'c', 'o', 'm', '\0', /* "royzez.com", true */ 'r', 'o', 'y', 'z', 'e', 'z', '.', 'c', 'o', 'm', '\0', /* "rozalisbengal.ro", true */ 'r', 'o', 'z', 'a', 'l', 'i', 's', 'b', 'e', 'n', 'g', 'a', 'l', '.', 'r', 'o', '\0', /* "rozeapp.nl", true */ 'r', 'o', 'z', 'e', 'a', 'p', 'p', '.', 'n', 'l', '\0', @@ -14475,16 +14485,17 @@ static const char kSTSHostTable[] = { /* "shalott.org", true */ 's', 'h', 'a', 'l', 'o', 't', 't', '.', 'o', 'r', 'g', '\0', /* "shamara.info", true */ 's', 'h', 'a', 'm', 'a', 'r', 'a', '.', 'i', 'n', 'f', 'o', '\0', /* "shamariki.ru", true */ 's', 'h', 'a', 'm', 'a', 'r', 'i', 'k', 'i', '.', 'r', 'u', '\0', /* "shan.io", false */ 's', 'h', 'a', 'n', '.', 'i', 'o', '\0', /* "shanae.nl", true */ 's', 'h', 'a', 'n', 'a', 'e', '.', 'n', 'l', '\0', /* "shanekoster.net", true */ 's', 'h', 'a', 'n', 'e', 'k', 'o', 's', 't', 'e', 'r', '.', 'n', 'e', 't', '\0', /* "shanetully.com", true */ 's', 'h', 'a', 'n', 'e', 't', 'u', 'l', 'l', 'y', '.', 'c', 'o', 'm', '\0', /* "shanewadleigh.com", true */ 's', 'h', 'a', 'n', 'e', 'w', 'a', 'd', 'l', 'e', 'i', 'g', 'h', '.', 'c', 'o', 'm', '\0', + /* "shang-yu.cn", true */ 's', 'h', 'a', 'n', 'g', '-', 'y', 'u', '.', 'c', 'n', '\0', /* "shannoneichorn.com", true */ 's', 'h', 'a', 'n', 'n', 'o', 'n', 'e', 'i', 'c', 'h', 'o', 'r', 'n', '.', 'c', 'o', 'm', '\0', /* "shansing.cn", true */ 's', 'h', 'a', 'n', 's', 'i', 'n', 'g', '.', 'c', 'n', '\0', /* "shansing.com", true */ 's', 'h', 'a', 'n', 's', 'i', 'n', 'g', '.', 'c', 'o', 'm', '\0', /* "shansing.net", true */ 's', 'h', 'a', 'n', 's', 'i', 'n', 'g', '.', 'n', 'e', 't', '\0', /* "shansing.space", true */ 's', 'h', 'a', 'n', 's', 'i', 'n', 'g', '.', 's', 'p', 'a', 'c', 'e', '\0', /* "shaobin.wang", true */ 's', 'h', 'a', 'o', 'b', 'i', 'n', '.', 'w', 'a', 'n', 'g', '\0', /* "shapesedinburgh.co.uk", true */ 's', 'h', 'a', 'p', 'e', 's', 'e', 'd', 'i', 'n', 'b', 'u', 'r', 'g', 'h', '.', 'c', 'o', '.', 'u', 'k', '\0', /* "shardsoft.com", true */ 's', 'h', 'a', 'r', 'd', 's', 'o', 'f', 't', '.', 'c', 'o', 'm', '\0', @@ -14583,17 +14594,16 @@ static const char kSTSHostTable[] = { /* "shtorku.com", true */ 's', 'h', 't', 'o', 'r', 'k', 'u', '.', 'c', 'o', 'm', '\0', /* "shu-fu.net", true */ 's', 'h', 'u', '-', 'f', 'u', '.', 'n', 'e', 't', '\0', /* "shulan.moe", true */ 's', 'h', 'u', 'l', 'a', 'n', '.', 'm', 'o', 'e', '\0', /* "shurita.org", true */ 's', 'h', 'u', 'r', 'i', 't', 'a', '.', 'o', 'r', 'g', '\0', /* "shuro.de", true */ 's', 'h', 'u', 'r', 'o', '.', 'd', 'e', '\0', /* "shux.pro", true */ 's', 'h', 'u', 'x', '.', 'p', 'r', 'o', '\0', /* "shymeck.pw", true */ 's', 'h', 'y', 'm', 'e', 'c', 'k', '.', 'p', 'w', '\0', /* "si-benelux.nl", true */ 's', 'i', '-', 'b', 'e', 'n', 'e', 'l', 'u', 'x', '.', 'n', 'l', '\0', - /* "si.to", true */ 's', 'i', '.', 't', 'o', '\0', /* "siamojo.com", true */ 's', 'i', 'a', 'm', 'o', 'j', 'o', '.', 'c', 'o', 'm', '\0', /* "siamsnus.com", true */ 's', 'i', 'a', 'm', 's', 'n', 'u', 's', '.', 'c', 'o', 'm', '\0', /* "sibrenvasse.nl", true */ 's', 'i', 'b', 'r', 'e', 'n', 'v', 'a', 's', 's', 'e', '.', 'n', 'l', '\0', /* "sichere-kartenakzeptanz.de", false */ 's', 'i', 'c', 'h', 'e', 'r', 'e', '-', 'k', 'a', 'r', 't', 'e', 'n', 'a', 'k', 'z', 'e', 'p', 't', 'a', 'n', 'z', '.', 'd', 'e', '\0', /* "sicken.eu", true */ 's', 'i', 'c', 'k', 'e', 'n', '.', 'e', 'u', '\0', /* "sickfile.com", true */ 's', 'i', 'c', 'k', 'f', 'i', 'l', 'e', '.', 'c', 'o', 'm', '\0', /* "siconnect.us", true */ 's', 'i', 'c', 'o', 'n', 'n', 'e', 'c', 't', '.', 'u', 's', '\0', /* "sidepodcast.com", true */ 's', 'i', 'd', 'e', 'p', 'o', 'd', 'c', 'a', 's', 't', '.', 'c', 'o', 'm', '\0', @@ -14691,16 +14701,17 @@ static const char kSTSHostTable[] = { /* "simplystudio.com", true */ 's', 'i', 'm', 'p', 'l', 'y', 's', 't', 'u', 'd', 'i', 'o', '.', 'c', 'o', 'm', '\0', /* "simpte.com", true */ 's', 'i', 'm', 'p', 't', 'e', '.', 'c', 'o', 'm', '\0', /* "simpul.nl", true */ 's', 'i', 'm', 'p', 'u', 'l', '.', 'n', 'l', '\0', /* "sims4hub.ga", true */ 's', 'i', 'm', 's', '4', 'h', 'u', 'b', '.', 'g', 'a', '\0', /* "simsnieuws.nl", true */ 's', 'i', 'm', 's', 'n', 'i', 'e', 'u', 'w', 's', '.', 'n', 'l', '\0', /* "simukti.net", true */ 's', 'i', 'm', 'u', 'k', 't', 'i', '.', 'n', 'e', 't', '\0', /* "simumiehet.com", true */ 's', 'i', 'm', 'u', 'm', 'i', 'e', 'h', 'e', 't', '.', 'c', 'o', 'm', '\0', /* "simus.fr", true */ 's', 'i', 'm', 'u', 's', '.', 'f', 'r', '\0', + /* "sinatrafamily.com", true */ 's', 'i', 'n', 'a', 't', 'r', 'a', 'f', 'a', 'm', 'i', 'l', 'y', '.', 'c', 'o', 'm', '\0', /* "sinergy.ch", true */ 's', 'i', 'n', 'e', 'r', 'g', 'y', '.', 'c', 'h', '\0', /* "sinfield.com", true */ 's', 'i', 'n', 'f', 'i', 'e', 'l', 'd', '.', 'c', 'o', 'm', '\0', /* "singleuse.link", true */ 's', 'i', 'n', 'g', 'l', 'e', 'u', 's', 'e', '.', 'l', 'i', 'n', 'k', '\0', /* "singlu10.org", false */ 's', 'i', 'n', 'g', 'l', 'u', '1', '0', '.', 'o', 'r', 'g', '\0', /* "sinktank.de", true */ 's', 'i', 'n', 'k', 't', 'a', 'n', 'k', '.', 'd', 'e', '\0', /* "sinneserweiterung.de", true */ 's', 'i', 'n', 'n', 'e', 's', 'e', 'r', 'w', 'e', 'i', 't', 'e', 'r', 'u', 'n', 'g', '.', 'd', 'e', '\0', /* "sinnovate.de", true */ 's', 'i', 'n', 'n', 'o', 'v', 'a', 't', 'e', '.', 'd', 'e', '\0', /* "sinonimos.com.br", true */ 's', 'i', 'n', 'o', 'n', 'i', 'm', 'o', 's', '.', 'c', 'o', 'm', '.', 'b', 'r', '\0', @@ -14740,17 +14751,16 @@ static const char kSTSHostTable[] = { /* "skaraborgsassistans.com", false */ 's', 'k', 'a', 'r', 'a', 'b', 'o', 'r', 'g', 's', 'a', 's', 's', 'i', 's', 't', 'a', 'n', 's', '.', 'c', 'o', 'm', '\0', /* "skarrok.com", false */ 's', 'k', 'a', 'r', 'r', 'o', 'k', '.', 'c', 'o', 'm', '\0', /* "skatclub-beratzhausen.de", true */ 's', 'k', 'a', 't', 'c', 'l', 'u', 'b', '-', 'b', 'e', 'r', 'a', 't', 'z', 'h', 'a', 'u', 's', 'e', 'n', '.', 'd', 'e', '\0', /* "skatn.de", true */ 's', 'k', 'a', 't', 'n', '.', 'd', 'e', '\0', /* "skeeley.com", true */ 's', 'k', 'e', 'e', 'l', 'e', 'y', '.', 'c', 'o', 'm', '\0', /* "skepticalsports.com", true */ 's', 'k', 'e', 'p', 't', 'i', 'c', 'a', 'l', 's', 'p', 'o', 'r', 't', 's', '.', 'c', 'o', 'm', '\0', /* "sketchmyroom.com", true */ 's', 'k', 'e', 't', 'c', 'h', 'm', 'y', 'r', 'o', 'o', 'm', '.', 'c', 'o', 'm', '\0', /* "skhoop.cz", true */ 's', 'k', 'h', 'o', 'o', 'p', '.', 'c', 'z', '\0', - /* "skhosting.eu", true */ 's', 'k', 'h', 'o', 's', 't', 'i', 'n', 'g', '.', 'e', 'u', '\0', /* "skia.org", true */ 's', 'k', 'i', 'a', '.', 'o', 'r', 'g', '\0', /* "skifairview.com", true */ 's', 'k', 'i', 'f', 'a', 'i', 'r', 'v', 'i', 'e', 'w', '.', 'c', 'o', 'm', '\0', /* "skigebiete-test.de", true */ 's', 'k', 'i', 'g', 'e', 'b', 'i', 'e', 't', 'e', '-', 't', 'e', 's', 't', '.', 'd', 'e', '\0', /* "skilldetector.com", true */ 's', 'k', 'i', 'l', 'l', 'd', 'e', 't', 'e', 'c', 't', 'o', 'r', '.', 'c', 'o', 'm', '\0', /* "skilletfood.com", true */ 's', 'k', 'i', 'l', 'l', 'e', 't', 'f', 'o', 'o', 'd', '.', 'c', 'o', 'm', '\0', /* "skillproxy.com", true */ 's', 'k', 'i', 'l', 'l', 'p', 'r', 'o', 'x', 'y', '.', 'c', 'o', 'm', '\0', /* "skillproxy.net", true */ 's', 'k', 'i', 'l', 'l', 'p', 'r', 'o', 'x', 'y', '.', 'n', 'e', 't', '\0', /* "skillproxy.org", true */ 's', 'k', 'i', 'l', 'l', 'p', 'r', 'o', 'x', 'y', '.', 'o', 'r', 'g', '\0', @@ -14949,16 +14959,17 @@ static const char kSTSHostTable[] = { /* "socialworkout.net", true */ 's', 'o', 'c', 'i', 'a', 'l', 'w', 'o', 'r', 'k', 'o', 'u', 't', '.', 'n', 'e', 't', '\0', /* "socialworkout.org", true */ 's', 'o', 'c', 'i', 'a', 'l', 'w', 'o', 'r', 'k', 'o', 'u', 't', '.', 'o', 'r', 'g', '\0', /* "socialworkout.tv", true */ 's', 'o', 'c', 'i', 'a', 'l', 'w', 'o', 'r', 'k', 'o', 'u', 't', '.', 't', 'v', '\0', /* "societyhilldance.com", true */ 's', 'o', 'c', 'i', 'e', 't', 'y', 'h', 'i', 'l', 'l', 'd', 'a', 'n', 'c', 'e', '.', 'c', 'o', 'm', '\0', /* "socioambiental.org", true */ 's', 'o', 'c', 'i', 'o', 'a', 'm', 'b', 'i', 'e', 'n', 't', 'a', 'l', '.', 'o', 'r', 'g', '\0', /* "socketize.com", true */ 's', 'o', 'c', 'k', 'e', 't', 'i', 'z', 'e', '.', 'c', 'o', 'm', '\0', /* "sockeye.io", true */ 's', 'o', 'c', 'k', 'e', 'y', 'e', '.', 'i', 'o', '\0', /* "sodi.nl", true */ 's', 'o', 'd', 'i', '.', 'n', 'l', '\0', + /* "sodiao.cc", true */ 's', 'o', 'd', 'i', 'a', 'o', '.', 'c', 'c', '\0', /* "soe-server.com", true */ 's', 'o', 'e', '-', 's', 'e', 'r', 'v', 'e', 'r', '.', 'c', 'o', 'm', '\0', /* "sofabedshop.de", true */ 's', 'o', 'f', 'a', 'b', 'e', 'd', 's', 'h', 'o', 'p', '.', 'd', 'e', '\0', /* "sofort.com", true */ 's', 'o', 'f', 'o', 'r', 't', '.', 'c', 'o', 'm', '\0', /* "sofortueberweisung.de", true */ 's', 'o', 'f', 'o', 'r', 't', 'u', 'e', 'b', 'e', 'r', 'w', 'e', 'i', 's', 'u', 'n', 'g', '.', 'd', 'e', '\0', /* "softanka.com", true */ 's', 'o', 'f', 't', 'a', 'n', 'k', 'a', '.', 'c', 'o', 'm', '\0', /* "softballsavings.com", true */ 's', 'o', 'f', 't', 'b', 'a', 'l', 'l', 's', 'a', 'v', 'i', 'n', 'g', 's', '.', 'c', 'o', 'm', '\0', /* "software.rocks", true */ 's', 'o', 'f', 't', 'w', 'a', 'r', 'e', '.', 'r', 'o', 'c', 'k', 's', '\0', /* "softwarebetrieb.de", true */ 's', 'o', 'f', 't', 'w', 'a', 'r', 'e', 'b', 'e', 't', 'r', 'i', 'e', 'b', '.', 'd', 'e', '\0', @@ -15024,16 +15035,17 @@ static const char kSTSHostTable[] = { /* "soporte.cc", true */ 's', 'o', 'p', 'o', 'r', 't', 'e', '.', 'c', 'c', '\0', /* "sor.so", true */ 's', 'o', 'r', '.', 's', 'o', '\0', /* "sorcix.com", true */ 's', 'o', 'r', 'c', 'i', 'x', '.', 'c', 'o', 'm', '\0', /* "sorensen-online.com", true */ 's', 'o', 'r', 'e', 'n', 's', 'e', 'n', '-', 'o', 'n', 'l', 'i', 'n', 'e', '.', 'c', 'o', 'm', '\0', /* "sorenstudios.com", true */ 's', 'o', 'r', 'e', 'n', 's', 't', 'u', 'd', 'i', 'o', 's', '.', 'c', 'o', 'm', '\0', /* "sorex.photo", true */ 's', 'o', 'r', 'e', 'x', '.', 'p', 'h', 'o', 't', 'o', '\0', /* "sorincocorada.ro", true */ 's', 'o', 'r', 'i', 'n', 'c', 'o', 'c', 'o', 'r', 'a', 'd', 'a', '.', 'r', 'o', '\0', /* "sorn.service.gov.uk", true */ 's', 'o', 'r', 'n', '.', 's', 'e', 'r', 'v', 'i', 'c', 'e', '.', 'g', 'o', 'v', '.', 'u', 'k', '\0', + /* "sortaweird.net", false */ 's', 'o', 'r', 't', 'a', 'w', 'e', 'i', 'r', 'd', '.', 'n', 'e', 't', '\0', /* "soruly.com", true */ 's', 'o', 'r', 'u', 'l', 'y', '.', 'c', 'o', 'm', '\0', /* "sorz.org", true */ 's', 'o', 'r', 'z', '.', 'o', 'r', 'g', '\0', /* "sos.sk", false */ 's', 'o', 's', '.', 's', 'k', '\0', /* "sosaka.ml", true */ 's', 'o', 's', 'a', 'k', 'a', '.', 'm', 'l', '\0', /* "sosecu.red", true */ 's', 'o', 's', 'e', 'c', 'u', '.', 'r', 'e', 'd', '\0', /* "sostacancun.com", true */ 's', 'o', 's', 't', 'a', 'c', 'a', 'n', 'c', 'u', 'n', '.', 'c', 'o', 'm', '\0', /* "sotar.us", true */ 's', 'o', 't', 'a', 'r', '.', 'u', 's', '\0', /* "sotavasara.net", true */ 's', 'o', 't', 'a', 'v', 'a', 's', 'a', 'r', 'a', '.', 'n', 'e', 't', '\0', @@ -15049,16 +15061,17 @@ static const char kSTSHostTable[] = { /* "soumikghosh.com", true */ 's', 'o', 'u', 'm', 'i', 'k', 'g', 'h', 'o', 's', 'h', '.', 'c', 'o', 'm', '\0', /* "soundeo.com", true */ 's', 'o', 'u', 'n', 'd', 'e', 'o', '.', 'c', 'o', 'm', '\0', /* "soundeo.net", true */ 's', 'o', 'u', 'n', 'd', 'e', 'o', '.', 'n', 'e', 't', '\0', /* "soundforsound.co.uk", true */ 's', 'o', 'u', 'n', 'd', 'f', 'o', 'r', 's', 'o', 'u', 'n', 'd', '.', 'c', 'o', '.', 'u', 'k', '\0', /* "soundgasm.net", true */ 's', 'o', 'u', 'n', 'd', 'g', 'a', 's', 'm', '.', 'n', 'e', 't', '\0', /* "soundhunter.xyz", true */ 's', 'o', 'u', 'n', 'd', 'h', 'u', 'n', 't', 'e', 'r', '.', 'x', 'y', 'z', '\0', /* "soundtalks.be", true */ 's', 'o', 'u', 'n', 'd', 't', 'a', 'l', 'k', 's', '.', 'b', 'e', '\0', /* "soundtalks.com", true */ 's', 'o', 'u', 'n', 'd', 't', 'a', 'l', 'k', 's', '.', 'c', 'o', 'm', '\0', + /* "sour.is", true */ 's', 'o', 'u', 'r', '.', 'i', 's', '\0', /* "souravsaha.com", true */ 's', 'o', 'u', 'r', 'a', 'v', 's', 'a', 'h', 'a', '.', 'c', 'o', 'm', '\0', /* "sourcebox.be", true */ 's', 'o', 'u', 'r', 'c', 'e', 'b', 'o', 'x', '.', 'b', 'e', '\0', /* "sourcecode.love", true */ 's', 'o', 'u', 'r', 'c', 'e', 'c', 'o', 'd', 'e', '.', 'l', 'o', 'v', 'e', '\0', /* "sourcely.net", true */ 's', 'o', 'u', 'r', 'c', 'e', 'l', 'y', '.', 'n', 'e', 't', '\0', /* "sourceway.de", true */ 's', 'o', 'u', 'r', 'c', 'e', 'w', 'a', 'y', '.', 'd', 'e', '\0', /* "sourcitec.com", true */ 's', 'o', 'u', 'r', 'c', 'i', 't', 'e', 'c', '.', 'c', 'o', 'm', '\0', /* "sous-surveillance.net", true */ 's', 'o', 'u', 's', '-', 's', 'u', 'r', 'v', 'e', 'i', 'l', 'l', 'a', 'n', 'c', 'e', '.', 'n', 'e', 't', '\0', /* "southafrican.dating", true */ 's', 'o', 'u', 't', 'h', 'a', 'f', 'r', 'i', 'c', 'a', 'n', '.', 'd', 'a', 't', 'i', 'n', 'g', '\0', @@ -15092,16 +15105,17 @@ static const char kSTSHostTable[] = { /* "spamwc.de", true */ 's', 'p', 'a', 'm', 'w', 'c', '.', 'd', 'e', '\0', /* "sparkforautism.org", true */ 's', 'p', 'a', 'r', 'k', 'f', 'o', 'r', 'a', 'u', 't', 'i', 's', 'm', '.', 'o', 'r', 'g', '\0', /* "sparklebastard.com", true */ 's', 'p', 'a', 'r', 'k', 'l', 'e', 'b', 'a', 's', 't', 'a', 'r', 'd', '.', 'c', 'o', 'm', '\0', /* "sparta-trade.com", true */ 's', 'p', 'a', 'r', 't', 'a', '-', 't', 'r', 'a', 'd', 'e', '.', 'c', 'o', 'm', '\0', /* "spartaconsulting.fi", true */ 's', 'p', 'a', 'r', 't', 'a', 'c', 'o', 'n', 's', 'u', 'l', 't', 'i', 'n', 'g', '.', 'f', 'i', '\0', /* "spassstempel.de", true */ 's', 'p', 'a', 's', 's', 's', 't', 'e', 'm', 'p', 'e', 'l', '.', 'd', 'e', '\0', /* "spatzenwerkstatt.de", true */ 's', 'p', 'a', 't', 'z', 'e', 'n', 'w', 'e', 'r', 'k', 's', 't', 'a', 't', 't', '.', 'd', 'e', '\0', /* "spawn.cz", true */ 's', 'p', 'a', 'w', 'n', '.', 'c', 'z', '\0', + /* "spaysy.com", true */ 's', 'p', 'a', 'y', 's', 'y', '.', 'c', 'o', 'm', '\0', /* "spdf.net", true */ 's', 'p', 'd', 'f', '.', 'n', 'e', 't', '\0', /* "spectrosoftware.de", true */ 's', 'p', 'e', 'c', 't', 'r', 'o', 's', 'o', 'f', 't', 'w', 'a', 'r', 'e', '.', 'd', 'e', '\0', /* "spedplus.com.br", false */ 's', 'p', 'e', 'd', 'p', 'l', 'u', 's', '.', 'c', 'o', 'm', '.', 'b', 'r', '\0', /* "speeddate.it", false */ 's', 'p', 'e', 'e', 'd', 'd', 'a', 't', 'e', '.', 'i', 't', '\0', /* "speedmann.de", false */ 's', 'p', 'e', 'e', 'd', 'm', 'a', 'n', 'n', '.', 'd', 'e', '\0', /* "speeds.vip", true */ 's', 'p', 'e', 'e', 'd', 's', '.', 'v', 'i', 'p', '\0', /* "speich.net", true */ 's', 'p', 'e', 'i', 'c', 'h', '.', 'n', 'e', 't', '\0', /* "spenglerei-shop.de", true */ 's', 'p', 'e', 'n', 'g', 'l', 'e', 'r', 'e', 'i', '-', 's', 'h', 'o', 'p', '.', 'd', 'e', '\0', @@ -15110,16 +15124,17 @@ static const char kSTSHostTable[] = { /* "sperrstun.de", true */ 's', 'p', 'e', 'r', 'r', 's', 't', 'u', 'n', '.', 'd', 'e', '\0', /* "spesys-services.fr", true */ 's', 'p', 'e', 's', 'y', 's', '-', 's', 'e', 'r', 'v', 'i', 'c', 'e', 's', '.', 'f', 'r', '\0', /* "sphereblur.com", true */ 's', 'p', 'h', 'e', 'r', 'e', 'b', 'l', 'u', 'r', '.', 'c', 'o', 'm', '\0', /* "spibe.is", true */ 's', 'p', 'i', 'b', 'e', '.', 'i', 's', '\0', /* "spicydog.org", true */ 's', 'p', 'i', 'c', 'y', 'd', 'o', 'g', '.', 'o', 'r', 'g', '\0', /* "spicymatch.com", true */ 's', 'p', 'i', 'c', 'y', 'm', 'a', 't', 'c', 'h', '.', 'c', 'o', 'm', '\0', /* "spicywombat.com", true */ 's', 'p', 'i', 'c', 'y', 'w', 'o', 'm', 'b', 'a', 't', '.', 'c', 'o', 'm', '\0', /* "spideroak.com", true */ 's', 'p', 'i', 'd', 'e', 'r', 'o', 'a', 'k', '.', 'c', 'o', 'm', '\0', + /* "spielcasinos.com", true */ 's', 'p', 'i', 'e', 'l', 'c', 'a', 's', 'i', 'n', 'o', 's', '.', 'c', 'o', 'm', '\0', /* "spiet.nl", true */ 's', 'p', 'i', 'e', 't', '.', 'n', 'l', '\0', /* "spinalien.net", true */ 's', 'p', 'i', 'n', 'a', 'l', 'i', 'e', 'n', '.', 'n', 'e', 't', '\0', /* "spins.fedoraproject.org", true */ 's', 'p', 'i', 'n', 's', '.', 'f', 'e', 'd', 'o', 'r', 'a', 'p', 'r', 'o', 'j', 'e', 'c', 't', '.', 'o', 'r', 'g', '\0', /* "spirit-dev.net", true */ 's', 'p', 'i', 'r', 'i', 't', '-', 'd', 'e', 'v', '.', 'n', 'e', 't', '\0', /* "spiritbionic.ro", true */ 's', 'p', 'i', 'r', 'i', 't', 'b', 'i', 'o', 'n', 'i', 'c', '.', 'r', 'o', '\0', /* "spiritfanfics.com", true */ 's', 'p', 'i', 'r', 'i', 't', 'f', 'a', 'n', 'f', 'i', 'c', 's', '.', 'c', 'o', 'm', '\0', /* "spiritual.dating", true */ 's', 'p', 'i', 'r', 'i', 't', 'u', 'a', 'l', '.', 'd', 'a', 't', 'i', 'n', 'g', '\0', /* "spiritualife.net", true */ 's', 'p', 'i', 'r', 'i', 't', 'u', 'a', 'l', 'i', 'f', 'e', '.', 'n', 'e', 't', '\0', @@ -15147,17 +15162,16 @@ static const char kSTSHostTable[] = { /* "sporter.com", true */ 's', 'p', 'o', 'r', 't', 'e', 'r', '.', 'c', 'o', 'm', '\0', /* "sportflash.info", true */ 's', 'p', 'o', 'r', 't', 'f', 'l', 'a', 's', 'h', '.', 'i', 'n', 'f', 'o', '\0', /* "sporthit.ru", true */ 's', 'p', 'o', 'r', 't', 'h', 'i', 't', '.', 'r', 'u', '\0', /* "sportifik.com", true */ 's', 'p', 'o', 'r', 't', 'i', 'f', 'i', 'k', '.', 'c', 'o', 'm', '\0', /* "sports.dating", true */ 's', 'p', 'o', 'r', 't', 's', '.', 'd', 'a', 't', 'i', 'n', 'g', '\0', /* "sportsmanadvisor.com", true */ 's', 'p', 'o', 'r', 't', 's', 'm', 'a', 'n', 'a', 'd', 'v', 'i', 's', 'o', 'r', '.', 'c', 'o', 'm', '\0', /* "sportsmansblog.com", true */ 's', 'p', 'o', 'r', 't', 's', 'm', 'a', 'n', 's', 'b', 'l', 'o', 'g', '.', 'c', 'o', 'm', '\0', /* "sportstraineradvisor.com", true */ 's', 'p', 'o', 'r', 't', 's', 't', 'r', 'a', 'i', 'n', 'e', 'r', 'a', 'd', 'v', 'i', 's', 'o', 'r', '.', 'c', 'o', 'm', '\0', - /* "sporttrampen.de", false */ 's', 'p', 'o', 'r', 't', 't', 'r', 'a', 'm', 'p', 'e', 'n', '.', 'd', 'e', '\0', /* "spotlightsrule.com", true */ 's', 'p', 'o', 't', 'l', 'i', 'g', 'h', 't', 's', 'r', 'u', 'l', 'e', '.', 'c', 'o', 'm', '\0', /* "spotupload.com", true */ 's', 'p', 'o', 't', 'u', 'p', 'l', 'o', 'a', 'd', '.', 'c', 'o', 'm', '\0', /* "spreadsheets.google.com", true */ 's', 'p', 'r', 'e', 'a', 'd', 's', 'h', 'e', 'e', 't', 's', '.', 'g', 'o', 'o', 'g', 'l', 'e', '.', 'c', 'o', 'm', '\0', /* "spree.co.za", true */ 's', 'p', 'r', 'e', 'e', '.', 'c', 'o', '.', 'z', 'a', '\0', /* "spreed.me", true */ 's', 'p', 'r', 'e', 'e', 'd', '.', 'm', 'e', '\0', /* "spresso.me", true */ 's', 'p', 'r', 'e', 's', 's', 'o', '.', 'm', 'e', '\0', /* "spricknet.de", true */ 's', 'p', 'r', 'i', 'c', 'k', 'n', 'e', 't', '.', 'd', 'e', '\0', /* "sprigings.com", true */ 's', 'p', 'r', 'i', 'g', 'i', 'n', 'g', 's', '.', 'c', 'o', 'm', '\0', @@ -15210,17 +15224,16 @@ static const char kSTSHostTable[] = { /* "ssbkk.ru", true */ 's', 's', 'b', 'k', 'k', '.', 'r', 'u', '\0', /* "ssbrm.ch", true */ 's', 's', 'b', 'r', 'm', '.', 'c', 'h', '\0', /* "sscd.no", true */ 's', 's', 'c', 'd', '.', 'n', 'o', '\0', /* "ssdax.com", true */ 's', 's', 'd', 'a', 'x', '.', 'c', 'o', 'm', '\0', /* "ssky.cn", true */ 's', 's', 'k', 'y', '.', 'c', 'n', '\0', /* "ssl-zertifikate.de", true */ 's', 's', 'l', '-', 'z', 'e', 'r', 't', 'i', 'f', 'i', 'k', 'a', 't', 'e', '.', 'd', 'e', '\0', /* "ssl.do", true */ 's', 's', 'l', '.', 'd', 'o', '\0', /* "ssl.google-analytics.com", true */ 's', 's', 'l', '.', 'g', 'o', 'o', 'g', 'l', 'e', '-', 'a', 'n', 'a', 'l', 'y', 't', 'i', 'c', 's', '.', 'c', 'o', 'm', '\0', - /* "ssl.md", true */ 's', 's', 'l', '.', 'm', 'd', '\0', /* "ssl247.co.uk", true */ 's', 's', 'l', '2', '4', '7', '.', 'c', 'o', '.', 'u', 'k', '\0', /* "ssl247.com.mx", true */ 's', 's', 'l', '2', '4', '7', '.', 'c', 'o', 'm', '.', 'm', 'x', '\0', /* "ssl247.de", true */ 's', 's', 'l', '2', '4', '7', '.', 'd', 'e', '\0', /* "ssl247.dk", true */ 's', 's', 'l', '2', '4', '7', '.', 'd', 'k', '\0', /* "sslcertificaten.nl", true */ 's', 's', 'l', 'c', 'e', 'r', 't', 'i', 'f', 'i', 'c', 'a', 't', 'e', 'n', '.', 'n', 'l', '\0', /* "sslcheck.nl", true */ 's', 's', 'l', 'c', 'h', 'e', 'c', 'k', '.', 'n', 'l', '\0', /* "ssldecoder.org", true */ 's', 's', 'l', 'd', 'e', 'c', 'o', 'd', 'e', 'r', '.', 'o', 'r', 'g', '\0', /* "ssldev.net", true */ 's', 's', 'l', 'd', 'e', 'v', '.', 'n', 'e', 't', '\0', @@ -15508,17 +15521,16 @@ static const char kSTSHostTable[] = { /* "suki.moe", true */ 's', 'u', 'k', 'i', '.', 'm', 'o', 'e', '\0', /* "sulek.eu", true */ 's', 'u', 'l', 'e', 'k', '.', 'e', 'u', '\0', /* "summa.eu", true */ 's', 'u', 'm', 'm', 'a', '.', 'e', 'u', '\0', /* "summitbankofkc.com", true */ 's', 'u', 'm', 'm', 'i', 't', 'b', 'a', 'n', 'k', 'o', 'f', 'k', 'c', '.', 'c', 'o', 'm', '\0', /* "sumthing.com", true */ 's', 'u', 'm', 't', 'h', 'i', 'n', 'g', '.', 'c', 'o', 'm', '\0', /* "sunbritetv.com", true */ 's', 'u', 'n', 'b', 'r', 'i', 't', 'e', 't', 'v', '.', 'c', 'o', 'm', '\0', /* "sundayfundayjapan.com", true */ 's', 'u', 'n', 'd', 'a', 'y', 'f', 'u', 'n', 'd', 'a', 'y', 'j', 'a', 'p', 'a', 'n', '.', 'c', 'o', 'm', '\0', /* "suneilpatel.com", true */ 's', 'u', 'n', 'e', 'i', 'l', 'p', 'a', 't', 'e', 'l', '.', 'c', 'o', 'm', '\0', - /* "sunflyer.cn", false */ 's', 'u', 'n', 'f', 'l', 'y', 'e', 'r', '.', 'c', 'n', '\0', /* "sunfox.cz", true */ 's', 'u', 'n', 'f', 'o', 'x', '.', 'c', 'z', '\0', /* "sunfulong.me", true */ 's', 'u', 'n', 'f', 'u', 'l', 'o', 'n', 'g', '.', 'm', 'e', '\0', /* "sunjaydhama.com", true */ 's', 'u', 'n', 'j', 'a', 'y', 'd', 'h', 'a', 'm', 'a', '.', 'c', 'o', 'm', '\0', /* "sunsetwx.com", true */ 's', 'u', 'n', 's', 'e', 't', 'w', 'x', '.', 'c', 'o', 'm', '\0', /* "sunstar.bg", true */ 's', 'u', 'n', 's', 't', 'a', 'r', '.', 'b', 'g', '\0', /* "sunyanzi.tk", true */ 's', 'u', 'n', 'y', 'a', 'n', 'z', 'i', '.', 't', 'k', '\0', /* "suos.io", true */ 's', 'u', 'o', 's', '.', 'i', 'o', '\0', /* "supastuds.com", true */ 's', 'u', 'p', 'a', 's', 't', 'u', 'd', 's', '.', 'c', 'o', 'm', '\0', @@ -15926,17 +15938,16 @@ static const char kSTSHostTable[] = { /* "tenkofx.com", true */ 't', 'e', 'n', 'k', 'o', 'f', 'x', '.', 'c', 'o', 'm', '\0', /* "tennisadmin.com", true */ 't', 'e', 'n', 'n', 'i', 's', 'a', 'd', 'm', 'i', 'n', '.', 'c', 'o', 'm', '\0', /* "tenpolab.com", true */ 't', 'e', 'n', 'p', 'o', 'l', 'a', 'b', '.', 'c', 'o', 'm', '\0', /* "tenshoku-hanashi.com", true */ 't', 'e', 'n', 's', 'h', 'o', 'k', 'u', '-', 'h', 'a', 'n', 'a', 's', 'h', 'i', '.', 'c', 'o', 'm', '\0', /* "tent.io", true */ 't', 'e', 'n', 't', '.', 'i', 'o', '\0', /* "tenta.com", true */ 't', 'e', 'n', 't', 'a', '.', 'c', 'o', 'm', '\0', /* "tentabrowser.com", true */ 't', 'e', 'n', 't', 'a', 'b', 'r', 'o', 'w', 's', 'e', 'r', '.', 'c', 'o', 'm', '\0', /* "tentations-voyages.com", true */ 't', 'e', 'n', 't', 'a', 't', 'i', 'o', 'n', 's', '-', 'v', 'o', 'y', 'a', 'g', 'e', 's', '.', 'c', 'o', 'm', '\0', - /* "tentins.com", true */ 't', 'e', 'n', 't', 'i', 'n', 's', '.', 'c', 'o', 'm', '\0', /* "tenyx.de", true */ 't', 'e', 'n', 'y', 'x', '.', 'd', 'e', '\0', /* "teodio.cl", true */ 't', 'e', 'o', 'd', 'i', 'o', '.', 'c', 'l', '\0', /* "teoskanta.fi", true */ 't', 'e', 'o', 's', 'k', 'a', 'n', 't', 'a', '.', 'f', 'i', '\0', /* "tepid.org", true */ 't', 'e', 'p', 'i', 'd', '.', 'o', 'r', 'g', '\0', /* "tepitus.de", true */ 't', 'e', 'p', 'i', 't', 'u', 's', '.', 'd', 'e', '\0', /* "tequilazor.com", true */ 't', 'e', 'q', 'u', 'i', 'l', 'a', 'z', 'o', 'r', '.', 'c', 'o', 'm', '\0', /* "teracloud.at", true */ 't', 'e', 'r', 'a', 'c', 'l', 'o', 'u', 'd', '.', 'a', 't', '\0', /* "terrab.de", false */ 't', 'e', 'r', 'r', 'a', 'b', '.', 'd', 'e', '\0', @@ -15985,16 +15996,17 @@ static const char kSTSHostTable[] = { /* "thaedal.net", true */ 't', 'h', 'a', 'e', 'd', 'a', 'l', '.', 'n', 'e', 't', '\0', /* "thai.dating", true */ 't', 'h', 'a', 'i', '.', 'd', 'a', 't', 'i', 'n', 'g', '\0', /* "thaianthro.com", true */ 't', 'h', 'a', 'i', 'a', 'n', 't', 'h', 'r', 'o', '.', 'c', 'o', 'm', '\0', /* "thaicyberpoint.com", true */ 't', 'h', 'a', 'i', 'c', 'y', 'b', 'e', 'r', 'p', 'o', 'i', 'n', 't', '.', 'c', 'o', 'm', '\0', /* "thaihomecooking.com", true */ 't', 'h', 'a', 'i', 'h', 'o', 'm', 'e', 'c', 'o', 'o', 'k', 'i', 'n', 'g', '.', 'c', 'o', 'm', '\0', /* "thailandpropertylisting.com", true */ 't', 'h', 'a', 'i', 'l', 'a', 'n', 'd', 'p', 'r', 'o', 'p', 'e', 'r', 't', 'y', 'l', 'i', 's', 't', 'i', 'n', 'g', '.', 'c', 'o', 'm', '\0', /* "thairehabassociation.com", true */ 't', 'h', 'a', 'i', 'r', 'e', 'h', 'a', 'b', 'a', 's', 's', 'o', 'c', 'i', 'a', 't', 'i', 'o', 'n', '.', 'c', 'o', 'm', '\0', /* "thalan.fr", true */ 't', 'h', 'a', 'l', 'a', 'n', '.', 'f', 'r', '\0', + /* "thalgott.net", true */ 't', 'h', 'a', 'l', 'g', 'o', 't', 't', '.', 'n', 'e', 't', '\0', /* "thalhammer.it", true */ 't', 'h', 'a', 'l', 'h', 'a', 'm', 'm', 'e', 'r', '.', 'i', 't', '\0', /* "thalskarth.com", true */ 't', 'h', 'a', 'l', 's', 'k', 'a', 'r', 't', 'h', '.', 'c', 'o', 'm', '\0', /* "thamesfamilydentistry.com", true */ 't', 'h', 'a', 'm', 'e', 's', 'f', 'a', 'm', 'i', 'l', 'y', 'd', 'e', 'n', 't', 'i', 's', 't', 'r', 'y', '.', 'c', 'o', 'm', '\0', /* "thatgudstuff.com", true */ 't', 'h', 'a', 't', 'g', 'u', 'd', 's', 't', 'u', 'f', 'f', '.', 'c', 'o', 'm', '\0', /* "thatpodcast.io", true */ 't', 'h', 'a', 't', 'p', 'o', 'd', 'c', 'a', 's', 't', '.', 'i', 'o', '\0', /* "thca.ca", true */ 't', 'h', 'c', 'a', '.', 'c', 'a', '\0', /* "thcpbees.co.uk", true */ 't', 'h', 'c', 'p', 'b', 'e', 'e', 's', '.', 'c', 'o', '.', 'u', 'k', '\0', /* "the-delta.net.eu.org", true */ 't', 'h', 'e', '-', 'd', 'e', 'l', 't', 'a', '.', 'n', 'e', 't', '.', 'e', 'u', '.', 'o', 'r', 'g', '\0', @@ -16027,16 +16039,17 @@ static const char kSTSHostTable[] = { /* "thedevrycommonsbrasil.com", true */ 't', 'h', 'e', 'd', 'e', 'v', 'r', 'y', 'c', 'o', 'm', 'm', 'o', 'n', 's', 'b', 'r', 'a', 's', 'i', 'l', '.', 'c', 'o', 'm', '\0', /* "thedisc.nl", true */ 't', 'h', 'e', 'd', 'i', 's', 'c', '.', 'n', 'l', '\0', /* "thedocumentrefinery.com", true */ 't', 'h', 'e', 'd', 'o', 'c', 'u', 'm', 'e', 'n', 't', 'r', 'e', 'f', 'i', 'n', 'e', 'r', 'y', '.', 'c', 'o', 'm', '\0', /* "thedreamtravelgroup.co.uk", true */ 't', 'h', 'e', 'd', 'r', 'e', 'a', 'm', 't', 'r', 'a', 'v', 'e', 'l', 'g', 'r', 'o', 'u', 'p', '.', 'c', 'o', '.', 'u', 'k', '\0', /* "thedronechart.com", true */ 't', 'h', 'e', 'd', 'r', 'o', 'n', 'e', 'c', 'h', 'a', 'r', 't', '.', 'c', 'o', 'm', '\0', /* "thedrop.pw", true */ 't', 'h', 'e', 'd', 'r', 'o', 'p', '.', 'p', 'w', '\0', /* "thedutchmarketers.com", true */ 't', 'h', 'e', 'd', 'u', 't', 'c', 'h', 'm', 'a', 'r', 'k', 'e', 't', 'e', 'r', 's', '.', 'c', 'o', 'm', '\0', /* "thedystance.com", true */ 't', 'h', 'e', 'd', 'y', 's', 't', 'a', 'n', 'c', 'e', '.', 'c', 'o', 'm', '\0', + /* "thefarbeyond.com", true */ 't', 'h', 'e', 'f', 'a', 'r', 'b', 'e', 'y', 'o', 'n', 'd', '.', 'c', 'o', 'm', '\0', /* "theflyingbear.net", true */ 't', 'h', 'e', 'f', 'l', 'y', 'i', 'n', 'g', 'b', 'e', 'a', 'r', '.', 'n', 'e', 't', '\0', /* "thefox.co", true */ 't', 'h', 'e', 'f', 'o', 'x', '.', 'c', 'o', '\0', /* "thefox.com.fr", true */ 't', 'h', 'e', 'f', 'o', 'x', '.', 'c', 'o', 'm', '.', 'f', 'r', '\0', /* "thefreebirds.in", true */ 't', 'h', 'e', 'f', 'r', 'e', 'e', 'b', 'i', 'r', 'd', 's', '.', 'i', 'n', '\0', /* "thefutureharrills.com", true */ 't', 'h', 'e', 'f', 'u', 't', 'u', 'r', 'e', 'h', 'a', 'r', 'r', 'i', 'l', 'l', 's', '.', 'c', 'o', 'm', '\0', /* "thegamerscamp.com", true */ 't', 'h', 'e', 'g', 'a', 'm', 'e', 'r', 's', 'c', 'a', 'm', 'p', '.', 'c', 'o', 'm', '\0', /* "thegasshop.co.uk", true */ 't', 'h', 'e', 'g', 'a', 's', 's', 'h', 'o', 'p', '.', 'c', 'o', '.', 'u', 'k', '\0', /* "thegoldregister.co.uk", true */ 't', 'h', 'e', 'g', 'o', 'l', 'd', 'r', 'e', 'g', 'i', 's', 't', 'e', 'r', '.', 'c', 'o', '.', 'u', 'k', '\0', @@ -16064,16 +16077,17 @@ static const char kSTSHostTable[] = { /* "thelastsurprise.com", true */ 't', 'h', 'e', 'l', 'a', 's', 't', 's', 'u', 'r', 'p', 'r', 'i', 's', 'e', '.', 'c', 'o', 'm', '\0', /* "thelinuxspace.com", true */ 't', 'h', 'e', 'l', 'i', 'n', 'u', 'x', 's', 'p', 'a', 'c', 'e', '.', 'c', 'o', 'm', '\0', /* "thelittlecraft.com", true */ 't', 'h', 'e', 'l', 'i', 't', 't', 'l', 'e', 'c', 'r', 'a', 'f', 't', '.', 'c', 'o', 'm', '\0', /* "thelocals.ru", true */ 't', 'h', 'e', 'l', 'o', 'c', 'a', 'l', 's', '.', 'r', 'u', '\0', /* "themanufacturingmarketingagency.com", true */ 't', 'h', 'e', 'm', 'a', 'n', 'u', 'f', 'a', 'c', 't', 'u', 'r', 'i', 'n', 'g', 'm', 'a', 'r', 'k', 'e', 't', 'i', 'n', 'g', 'a', 'g', 'e', 'n', 'c', 'y', '.', 'c', 'o', 'm', '\0', /* "themarshallproject.org", true */ 't', 'h', 'e', 'm', 'a', 'r', 's', 'h', 'a', 'l', 'l', 'p', 'r', 'o', 'j', 'e', 'c', 't', '.', 'o', 'r', 'g', '\0', /* "themathematician.uk", true */ 't', 'h', 'e', 'm', 'a', 't', 'h', 'e', 'm', 'a', 't', 'i', 'c', 'i', 'a', 'n', '.', 'u', 'k', '\0', /* "themeaudit.com", true */ 't', 'h', 'e', 'm', 'e', 'a', 'u', 'd', 'i', 't', '.', 'c', 'o', 'm', '\0', + /* "themecraft.studio", true */ 't', 'h', 'e', 'm', 'e', 'c', 'r', 'a', 'f', 't', '.', 's', 't', 'u', 'd', 'i', 'o', '\0', /* "themilanlife.com", true */ 't', 'h', 'e', 'm', 'i', 'l', 'a', 'n', 'l', 'i', 'f', 'e', '.', 'c', 'o', 'm', '\0', /* "themoep.at", true */ 't', 'h', 'e', 'm', 'o', 'e', 'p', '.', 'a', 't', '\0', /* "themonthly.com.au", true */ 't', 'h', 'e', 'm', 'o', 'n', 't', 'h', 'l', 'y', '.', 'c', 'o', 'm', '.', 'a', 'u', '\0', /* "themostexpensiveworkofart.com", true */ 't', 'h', 'e', 'm', 'o', 's', 't', 'e', 'x', 'p', 'e', 'n', 's', 'i', 'v', 'e', 'w', 'o', 'r', 'k', 'o', 'f', 'a', 'r', 't', '.', 'c', 'o', 'm', '\0', /* "themusthaves.nl", true */ 't', 'h', 'e', 'm', 'u', 's', 't', 'h', 'a', 'v', 'e', 's', '.', 'n', 'l', '\0', /* "thenanfang.com", true */ 't', 'h', 'e', 'n', 'a', 'n', 'f', 'a', 'n', 'g', '.', 'c', 'o', 'm', '\0', /* "thenextstep.events", true */ 't', 'h', 'e', 'n', 'e', 'x', 't', 's', 't', 'e', 'p', '.', 'e', 'v', 'e', 'n', 't', 's', '\0', /* "thenexwork.com", true */ 't', 'h', 'e', 'n', 'e', 'x', 'w', 'o', 'r', 'k', '.', 'c', 'o', 'm', '\0', @@ -16282,17 +16296,16 @@ static const char kSTSHostTable[] = { /* "titiansgirlphotography.com", true */ 't', 'i', 't', 'i', 'a', 'n', 's', 'g', 'i', 'r', 'l', 'p', 'h', 'o', 't', 'o', 'g', 'r', 'a', 'p', 'h', 'y', '.', 'c', 'o', 'm', '\0', /* "tjc.host", true */ 't', 'j', 'c', '.', 'h', 'o', 's', 't', '\0', /* "tjeckien.guide", true */ 't', 'j', 'e', 'c', 'k', 'i', 'e', 'n', '.', 'g', 'u', 'i', 'd', 'e', '\0', /* "tjenestetorvet.dk", true */ 't', 'j', 'e', 'n', 'e', 's', 't', 'e', 't', 'o', 'r', 'v', 'e', 't', '.', 'd', 'k', '\0', /* "tjs.me", true */ 't', 'j', 's', '.', 'm', 'e', '\0', /* "tkat.ch", true */ 't', 'k', 'a', 't', '.', 'c', 'h', '\0', /* "tkn.tokyo", true */ 't', 'k', 'n', '.', 't', 'o', 'k', 'y', 'o', '\0', /* "tkonstantopoulos.tk", true */ 't', 'k', 'o', 'n', 's', 't', 'a', 'n', 't', 'o', 'p', 'o', 'u', 'l', 'o', 's', '.', 't', 'k', '\0', - /* "tlach.cz", true */ 't', 'l', 'a', 'c', 'h', '.', 'c', 'z', '\0', /* "tlcdn.net", true */ 't', 'l', 'c', 'd', 'n', '.', 'n', 'e', 't', '\0', /* "tlo.xyz", true */ 't', 'l', 'o', '.', 'x', 'y', 'z', '\0', /* "tls.builders", true */ 't', 'l', 's', '.', 'b', 'u', 'i', 'l', 'd', 'e', 'r', 's', '\0', /* "tls.care", true */ 't', 'l', 's', '.', 'c', 'a', 'r', 'e', '\0', /* "tls1914.org", true */ 't', 'l', 's', '1', '9', '1', '4', '.', 'o', 'r', 'g', '\0', /* "tlsbv.nl", true */ 't', 'l', 's', 'b', 'v', '.', 'n', 'l', '\0', /* "tlthings.net", true */ 't', 'l', 't', 'h', 'i', 'n', 'g', 's', '.', 'n', 'e', 't', '\0', /* "tm.id.au", true */ 't', 'm', '.', 'i', 'd', '.', 'a', 'u', '\0', @@ -16392,17 +16405,16 @@ static const char kSTSHostTable[] = { /* "tomo.gr", false */ 't', 'o', 'm', 'o', '.', 'g', 'r', '\0', /* "tomrei.com", true */ 't', 'o', 'm', 'r', 'e', 'i', '.', 'c', 'o', 'm', '\0', /* "tomrichards.net", true */ 't', 'o', 'm', 'r', 'i', 'c', 'h', 'a', 'r', 'd', 's', '.', 'n', 'e', 't', '\0', /* "tomssl.com", true */ 't', 'o', 'm', 's', 's', 'l', '.', 'c', 'o', 'm', '\0', /* "tomudding.nl", true */ 't', 'o', 'm', 'u', 'd', 'd', 'i', 'n', 'g', '.', 'n', 'l', '\0', /* "tomvote.com", true */ 't', 'o', 'm', 'v', 'o', 't', 'e', '.', 'c', 'o', 'm', '\0', /* "tomwiggers.nl", false */ 't', 'o', 'm', 'w', 'i', 'g', 'g', 'e', 'r', 's', '.', 'n', 'l', '\0', /* "tomwilson.io", true */ 't', 'o', 'm', 'w', 'i', 'l', 's', 'o', 'n', '.', 'i', 'o', '\0', - /* "tonabor.ru", true */ 't', 'o', 'n', 'a', 'b', 'o', 'r', '.', 'r', 'u', '\0', /* "tonage.de", true */ 't', 'o', 'n', 'a', 'g', 'e', '.', 'd', 'e', '\0', /* "toncusters.nl", true */ 't', 'o', 'n', 'c', 'u', 's', 't', 'e', 'r', 's', '.', 'n', 'l', '\0', /* "tonegidoarchief.nl", true */ 't', 'o', 'n', 'e', 'g', 'i', 'd', 'o', 'a', 'r', 'c', 'h', 'i', 'e', 'f', '.', 'n', 'l', '\0', /* "toner24.at", true */ 't', 'o', 'n', 'e', 'r', '2', '4', '.', 'a', 't', '\0', /* "toner24.co.uk", true */ 't', 'o', 'n', 'e', 'r', '2', '4', '.', 'c', 'o', '.', 'u', 'k', '\0', /* "toner24.es", true */ 't', 'o', 'n', 'e', 'r', '2', '4', '.', 'e', 's', '\0', /* "toner24.fr", true */ 't', 'o', 'n', 'e', 'r', '2', '4', '.', 'f', 'r', '\0', /* "toner24.it", true */ 't', 'o', 'n', 'e', 'r', '2', '4', '.', 'i', 't', '\0', @@ -16782,17 +16794,16 @@ static const char kSTSHostTable[] = { /* "typeblog.net", true */ 't', 'y', 'p', 'e', 'b', 'l', 'o', 'g', '.', 'n', 'e', 't', '\0', /* "typecodes.com", true */ 't', 'y', 'p', 'e', 'c', 'o', 'd', 'e', 's', '.', 'c', 'o', 'm', '\0', /* "typehub.net", true */ 't', 'y', 'p', 'e', 'h', 'u', 'b', '.', 'n', 'e', 't', '\0', /* "typeofweb.com", true */ 't', 'y', 'p', 'e', 'o', 'f', 'w', 'e', 'b', '.', 'c', 'o', 'm', '\0', /* "typeonejoe.com", true */ 't', 'y', 'p', 'e', 'o', 'n', 'e', 'j', 'o', 'e', '.', 'c', 'o', 'm', '\0', /* "typeria.net", true */ 't', 'y', 'p', 'e', 'r', 'i', 'a', '.', 'n', 'e', 't', '\0', /* "typewolf.com", true */ 't', 'y', 'p', 'e', 'w', 'o', 'l', 'f', '.', 'c', 'o', 'm', '\0', /* "typing.com", true */ 't', 'y', 'p', 'i', 'n', 'g', '.', 'c', 'o', 'm', '\0', - /* "typingrevolution.com", true */ 't', 'y', 'p', 'i', 'n', 'g', 'r', 'e', 'v', 'o', 'l', 'u', 't', 'i', 'o', 'n', '.', 'c', 'o', 'm', '\0', /* "typo3.com", true */ 't', 'y', 'p', 'o', '3', '.', 'c', 'o', 'm', '\0', /* "tysye.ca", true */ 't', 'y', 's', 'y', 'e', '.', 'c', 'a', '\0', /* "tzwe.com", true */ 't', 'z', 'w', 'e', '.', 'c', 'o', 'm', '\0', /* "u03.fr", true */ 'u', '0', '3', '.', 'f', 'r', '\0', /* "u5b.de", true */ 'u', '5', 'b', '.', 'd', 'e', '\0', /* "uae-company-service.com", true */ 'u', 'a', 'e', '-', 'c', 'o', 'm', 'p', 'a', 'n', 'y', '-', 's', 'e', 'r', 'v', 'i', 'c', 'e', '.', 'c', 'o', 'm', '\0', /* "uangteman.com", true */ 'u', 'a', 'n', 'g', 't', 'e', 'm', 'a', 'n', '.', 'c', 'o', 'm', '\0', /* "uasmi.com", true */ 'u', 'a', 's', 'm', 'i', '.', 'c', 'o', 'm', '\0', @@ -16805,17 +16816,16 @@ static const char kSTSHostTable[] = { /* "uberfunction.com", true */ 'u', 'b', 'e', 'r', 'f', 'u', 'n', 'c', 't', 'i', 'o', 'n', '.', 'c', 'o', 'm', '\0', /* "ubertt.org", true */ 'u', 'b', 'e', 'r', 't', 't', '.', 'o', 'r', 'g', '\0', /* "uberwald.de", true */ 'u', 'b', 'e', 'r', 'w', 'a', 'l', 'd', '.', 'd', 'e', '\0', /* "uberwald.ws", true */ 'u', 'b', 'e', 'r', 'w', 'a', 'l', 'd', '.', 'w', 's', '\0', /* "ubi.gg", true */ 'u', 'b', 'i', '.', 'g', 'g', '\0', /* "ublaboo.org", true */ 'u', 'b', 'l', 'a', 'b', 'o', 'o', '.', 'o', 'r', 'g', '\0', /* "uborcare.com", true */ 'u', 'b', 'o', 'r', 'c', 'a', 'r', 'e', '.', 'c', 'o', 'm', '\0', /* "ubtce.com", true */ 'u', 'b', 't', 'c', 'e', '.', 'c', 'o', 'm', '\0', - /* "ucfirst.nl", true */ 'u', 'c', 'f', 'i', 'r', 's', 't', '.', 'n', 'l', '\0', /* "ucrdatatool.gov", true */ 'u', 'c', 'r', 'd', 'a', 't', 'a', 't', 'o', 'o', 'l', '.', 'g', 'o', 'v', '\0', /* "uctarna.online", true */ 'u', 'c', 't', 'a', 'r', 'n', 'a', '.', 'o', 'n', 'l', 'i', 'n', 'e', '\0', /* "udbhav.me", true */ 'u', 'd', 'b', 'h', 'a', 'v', '.', 'm', 'e', '\0', /* "udo-luetkemeier.de", true */ 'u', 'd', 'o', '-', 'l', 'u', 'e', 't', 'k', 'e', 'm', 'e', 'i', 'e', 'r', '.', 'd', 'e', '\0', /* "udomain.net", true */ 'u', 'd', 'o', 'm', 'a', 'i', 'n', '.', 'n', 'e', 't', '\0', /* "udp.sh", true */ 'u', 'd', 'p', '.', 's', 'h', '\0', /* "udruga-point.hr", true */ 'u', 'd', 'r', 'u', 'g', 'a', '-', 'p', 'o', 'i', 'n', 't', '.', 'h', 'r', '\0', /* "ueberwachungspaket.at", true */ 'u', 'e', 'b', 'e', 'r', 'w', 'a', 'c', 'h', 'u', 'n', 'g', 's', 'p', 'a', 'k', 'e', 't', '.', 'a', 't', '\0', @@ -16857,17 +16867,16 @@ static const char kSTSHostTable[] = { /* "ultimate-memoryplus.com", true */ 'u', 'l', 't', 'i', 'm', 'a', 't', 'e', '-', 'm', 'e', 'm', 'o', 'r', 'y', 'p', 'l', 'u', 's', '.', 'c', 'o', 'm', '\0', /* "ultimate-neuroplus.com", true */ 'u', 'l', 't', 'i', 'm', 'a', 't', 'e', '-', 'n', 'e', 'u', 'r', 'o', 'p', 'l', 'u', 's', '.', 'c', 'o', 'm', '\0', /* "umassfive.coop", true */ 'u', 'm', 'a', 's', 's', 'f', 'i', 'v', 'e', '.', 'c', 'o', 'o', 'p', '\0', /* "umenlisam.com", true */ 'u', 'm', 'e', 'n', 'l', 'i', 's', 'a', 'm', '.', 'c', 'o', 'm', '\0', /* "umgardi.ca", true */ 'u', 'm', 'g', 'a', 'r', 'd', 'i', '.', 'c', 'a', '\0', /* "umisonoda.com", true */ 'u', 'm', 'i', 's', 'o', 'n', 'o', 'd', 'a', '.', 'c', 'o', 'm', '\0', /* "umwandeln-online.de", true */ 'u', 'm', 'w', 'a', 'n', 'd', 'e', 'l', 'n', '-', 'o', 'n', 'l', 'i', 'n', 'e', '.', 'd', 'e', '\0', /* "un-zero-un.fr", true */ 'u', 'n', '-', 'z', 'e', 'r', 'o', '-', 'u', 'n', '.', 'f', 'r', '\0', - /* "unapp.me", true */ 'u', 'n', 'a', 'p', 'p', '.', 'm', 'e', '\0', /* "unart.info", true */ 'u', 'n', 'a', 'r', 't', '.', 'i', 'n', 'f', 'o', '\0', /* "unblockall.xyz", true */ 'u', 'n', 'b', 'l', 'o', 'c', 'k', 'a', 'l', 'l', '.', 'x', 'y', 'z', '\0', /* "unblockat.tk", true */ 'u', 'n', 'b', 'l', 'o', 'c', 'k', 'a', 't', '.', 't', 'k', '\0', /* "unblocked.at", true */ 'u', 'n', 'b', 'l', 'o', 'c', 'k', 'e', 'd', '.', 'a', 't', '\0', /* "unblocked.date", true */ 'u', 'n', 'b', 'l', 'o', 'c', 'k', 'e', 'd', '.', 'd', 'a', 't', 'e', '\0', /* "unblocked.faith", true */ 'u', 'n', 'b', 'l', 'o', 'c', 'k', 'e', 'd', '.', 'f', 'a', 'i', 't', 'h', '\0', /* "unblocked.ink", true */ 'u', 'n', 'b', 'l', 'o', 'c', 'k', 'e', 'd', '.', 'i', 'n', 'k', '\0', /* "unblocked.live", true */ 'u', 'n', 'b', 'l', 'o', 'c', 'k', 'e', 'd', '.', 'l', 'i', 'v', 'e', '\0', @@ -17036,17 +17045,16 @@ static const char kSTSHostTable[] = { /* "uyym.com", true */ 'u', 'y', 'y', 'm', '.', 'c', 'o', 'm', '\0', /* "uzmandroid.com", true */ 'u', 'z', 'm', 'a', 'n', 'd', 'r', 'o', 'i', 'd', '.', 'c', 'o', 'm', '\0', /* "v-u-z.ru", true */ 'v', '-', 'u', '-', 'z', '.', 'r', 'u', '\0', /* "v0rtex.xyz", true */ 'v', '0', 'r', 't', 'e', 'x', '.', 'x', 'y', 'z', '\0', /* "v0tti.com", false */ 'v', '0', 't', 't', 'i', '.', 'c', 'o', 'm', '\0', /* "v2bv.win", true */ 'v', '2', 'b', 'v', '.', 'w', 'i', 'n', '\0', /* "v2ex.com", true */ 'v', '2', 'e', 'x', '.', 'c', 'o', 'm', '\0', /* "v2ex.us", true */ 'v', '2', 'e', 'x', '.', 'u', 's', '\0', - /* "v7.cl", true */ 'v', '7', '.', 'c', 'l', '\0', /* "va-reitartikel.com", true */ 'v', 'a', '-', 'r', 'e', 'i', 't', 'a', 'r', 't', 'i', 'k', 'e', 'l', '.', 'c', 'o', 'm', '\0', /* "vaaddress.co", true */ 'v', 'a', 'a', 'd', 'd', 'r', 'e', 's', 's', '.', 'c', 'o', '\0', /* "vaalmarketplace.co.za", true */ 'v', 'a', 'a', 'l', 'm', 'a', 'r', 'k', 'e', 't', 'p', 'l', 'a', 'c', 'e', '.', 'c', 'o', '.', 'z', 'a', '\0', /* "vacationality.com", true */ 'v', 'a', 'c', 'a', 't', 'i', 'o', 'n', 'a', 'l', 'i', 't', 'y', '.', 'c', 'o', 'm', '\0', /* "vaccines.gov", true */ 'v', 'a', 'c', 'c', 'i', 'n', 'e', 's', '.', 'g', 'o', 'v', '\0', /* "vaclavambroz.cz", true */ 'v', 'a', 'c', 'l', 'a', 'v', 'a', 'm', 'b', 'r', 'o', 'z', '.', 'c', 'z', '\0', /* "vadik.me", true */ 'v', 'a', 'd', 'i', 'k', '.', 'm', 'e', '\0', /* "vaelma.fi", true */ 'v', 'a', 'e', 'l', 'm', 'a', '.', 'f', 'i', '\0', @@ -17055,17 +17063,16 @@ static const char kSTSHostTable[] = { /* "vagmour.eu", true */ 'v', 'a', 'g', 'm', 'o', 'u', 'r', '.', 'e', 'u', '\0', /* "vagpartsdb.com", true */ 'v', 'a', 'g', 'p', 'a', 'r', 't', 's', 'd', 'b', '.', 'c', 'o', 'm', '\0', /* "vagrantup.com", true */ 'v', 'a', 'g', 'r', 'a', 'n', 't', 'u', 'p', '.', 'c', 'o', 'm', '\0', /* "vakantienet.nl", true */ 'v', 'a', 'k', 'a', 'n', 't', 'i', 'e', 'n', 'e', 't', '.', 'n', 'l', '\0', /* "vakuutuskanava.fi", true */ 'v', 'a', 'k', 'u', 'u', 't', 'u', 's', 'k', 'a', 'n', 'a', 'v', 'a', '.', 'f', 'i', '\0', /* "val-sec.com", true */ 'v', 'a', 'l', '-', 's', 'e', 'c', '.', 'c', 'o', 'm', '\0', /* "valasi.eu", true */ 'v', 'a', 'l', 'a', 's', 'i', '.', 'e', 'u', '\0', /* "valbonne-consulting.com", true */ 'v', 'a', 'l', 'b', 'o', 'n', 'n', 'e', '-', 'c', 'o', 'n', 's', 'u', 'l', 't', 'i', 'n', 'g', '.', 'c', 'o', 'm', '\0', - /* "valentin-sundermann.de", true */ 'v', 'a', 'l', 'e', 'n', 't', 'i', 'n', '-', 's', 'u', 'n', 'd', 'e', 'r', 'm', 'a', 'n', 'n', '.', 'd', 'e', '\0', /* "valeriansaliou.name", true */ 'v', 'a', 'l', 'e', 'r', 'i', 'a', 'n', 's', 'a', 'l', 'i', 'o', 'u', '.', 'n', 'a', 'm', 'e', '\0', /* "valhallamovement.com", true */ 'v', 'a', 'l', 'h', 'a', 'l', 'l', 'a', 'm', 'o', 'v', 'e', 'm', 'e', 'n', 't', '.', 'c', 'o', 'm', '\0', /* "validator.nu", true */ 'v', 'a', 'l', 'i', 'd', 'a', 't', 'o', 'r', '.', 'n', 'u', '\0', /* "validbrands.com", true */ 'v', 'a', 'l', 'i', 'd', 'b', 'r', 'a', 'n', 'd', 's', '.', 'c', 'o', 'm', '\0', /* "valitron.se", true */ 'v', 'a', 'l', 'i', 't', 'r', 'o', 'n', '.', 's', 'e', '\0', /* "valkohattu.fi", true */ 'v', 'a', 'l', 'k', 'o', 'h', 'a', 't', 't', 'u', '.', 'f', 'i', '\0', /* "vallei-veluwe.nl", true */ 'v', 'a', 'l', 'l', 'e', 'i', '-', 'v', 'e', 'l', 'u', 'w', 'e', '.', 'n', 'l', '\0', /* "valokuva-albumi.fi", true */ 'v', 'a', 'l', 'o', 'k', 'u', 'v', 'a', '-', 'a', 'l', 'b', 'u', 'm', 'i', '.', 'f', 'i', '\0', @@ -17108,17 +17115,16 @@ static const char kSTSHostTable[] = { /* "vasileruscior.ro", true */ 'v', 'a', 's', 'i', 'l', 'e', 'r', 'u', 's', 'c', 'i', 'o', 'r', '.', 'r', 'o', '\0', /* "vat-eu.com", true */ 'v', 'a', 't', '-', 'e', 'u', '.', 'c', 'o', 'm', '\0', /* "vattulainen.fi", true */ 'v', 'a', 't', 't', 'u', 'l', 'a', 'i', 'n', 'e', 'n', '.', 'f', 'i', '\0', /* "vault21.net", true */ 'v', 'a', 'u', 'l', 't', '2', '1', '.', 'n', 'e', 't', '\0', /* "vaultproject.io", true */ 'v', 'a', 'u', 'l', 't', 'p', 'r', 'o', 'j', 'e', 'c', 't', '.', 'i', 'o', '\0', /* "vaur.fr", true */ 'v', 'a', 'u', 'r', '.', 'f', 'r', '\0', /* "vavai.net", true */ 'v', 'a', 'v', 'a', 'i', '.', 'n', 'e', 't', '\0', /* "vavel.com", true */ 'v', 'a', 'v', 'e', 'l', '.', 'c', 'o', 'm', '\0', - /* "vavouchers.com", true */ 'v', 'a', 'v', 'o', 'u', 'c', 'h', 'e', 'r', 's', '.', 'c', 'o', 'm', '\0', /* "vazue.com", true */ 'v', 'a', 'z', 'u', 'e', '.', 'c', 'o', 'm', '\0', /* "vbazile.com", true */ 'v', 'b', 'a', 'z', 'i', 'l', 'e', '.', 'c', 'o', 'm', '\0', /* "vbest.net", true */ 'v', 'b', 'e', 's', 't', '.', 'n', 'e', 't', '\0', /* "vbh2o.com", true */ 'v', 'b', 'h', '2', 'o', '.', 'c', 'o', 'm', '\0', /* "vbhelp.org", true */ 'v', 'b', 'h', 'e', 'l', 'p', '.', 'o', 'r', 'g', '\0', /* "vcelin-na-doliku.cz", true */ 'v', 'c', 'e', 'l', 'i', 'n', '-', 'n', 'a', '-', 'd', 'o', 'l', 'i', 'k', 'u', '.', 'c', 'z', '\0', /* "vcf.gov", true */ 'v', 'c', 'f', '.', 'g', 'o', 'v', '\0', /* "vcientertainment.com", false */ 'v', 'c', 'i', 'e', 'n', 't', 'e', 'r', 't', 'a', 'i', 'n', 'm', 'e', 'n', 't', '.', 'c', 'o', 'm', '\0', @@ -17293,16 +17299,17 @@ static const char kSTSHostTable[] = { /* "vitkausk.as", true */ 'v', 'i', 't', 'k', 'a', 'u', 's', 'k', '.', 'a', 's', '\0', /* "vitrado.de", true */ 'v', 'i', 't', 'r', 'a', 'd', 'o', '.', 'd', 'e', '\0', /* "vitsoft.by", true */ 'v', 'i', 't', 's', 'o', 'f', 't', '.', 'b', 'y', '\0', /* "vitta.me", true */ 'v', 'i', 't', 't', 'a', '.', 'm', 'e', '\0', /* "vivaldi.club", true */ 'v', 'i', 'v', 'a', 'l', 'd', 'i', '.', 'c', 'l', 'u', 'b', '\0', /* "vivamusic.es", true */ 'v', 'i', 'v', 'a', 'm', 'u', 's', 'i', 'c', '.', 'e', 's', '\0', /* "vivatv.com.tw", true */ 'v', 'i', 'v', 'a', 't', 'v', '.', 'c', 'o', 'm', '.', 't', 'w', '\0', /* "vivendi.de", true */ 'v', 'i', 'v', 'e', 'n', 'd', 'i', '.', 'd', 'e', '\0', + /* "vivocloud.com", true */ 'v', 'i', 'v', 'o', 'c', 'l', 'o', 'u', 'd', '.', 'c', 'o', 'm', '\0', /* "vizeat.com", true */ 'v', 'i', 'z', 'e', 'a', 't', '.', 'c', 'o', 'm', '\0', /* "vizional.com", true */ 'v', 'i', 'z', 'i', 'o', 'n', 'a', 'l', '.', 'c', 'o', 'm', '\0', /* "vizzboard.com", true */ 'v', 'i', 'z', 'z', 'b', 'o', 'a', 'r', 'd', '.', 'c', 'o', 'm', '\0', /* "vjeff.com", true */ 'v', 'j', 'e', 'f', 'f', '.', 'c', 'o', 'm', '\0', /* "vkox.com", true */ 'v', 'k', 'o', 'x', '.', 'c', 'o', 'm', '\0', /* "vksportphoto.com", true */ 'v', 'k', 's', 'p', 'o', 'r', 't', 'p', 'h', 'o', 't', 'o', '.', 'c', 'o', 'm', '\0', /* "vldkn.net", true */ 'v', 'l', 'd', 'k', 'n', '.', 'n', 'e', 't', '\0', /* "vleij.com", true */ 'v', 'l', 'e', 'i', 'j', '.', 'c', 'o', 'm', '\0', @@ -18093,23 +18100,25 @@ static const char kSTSHostTable[] = { /* "xdd.io", true */ 'x', 'd', 'd', '.', 'i', 'o', '\0', /* "xdeftor.com", true */ 'x', 'd', 'e', 'f', 't', 'o', 'r', '.', 'c', 'o', 'm', '\0', /* "xecureit.com", true */ 'x', 'e', 'c', 'u', 'r', 'e', 'i', 't', '.', 'c', 'o', 'm', '\0', /* "xehoivn.vn", true */ 'x', 'e', 'h', 'o', 'i', 'v', 'n', '.', 'v', 'n', '\0', /* "xenophile.name", true */ 'x', 'e', 'n', 'o', 'p', 'h', 'i', 'l', 'e', '.', 'n', 'a', 'm', 'e', '\0', /* "xerblade.com", true */ 'x', 'e', 'r', 'b', 'l', 'a', 'd', 'e', '.', 'c', 'o', 'm', '\0', /* "xerhost.de", false */ 'x', 'e', 'r', 'h', 'o', 's', 't', '.', 'd', 'e', '\0', /* "xetown.com", true */ 'x', 'e', 't', 'o', 'w', 'n', '.', 'c', 'o', 'm', '\0', + /* "xfix.pw", true */ 'x', 'f', 'i', 'x', '.', 'p', 'w', '\0', /* "xfrag-networks.com", false */ 'x', 'f', 'r', 'a', 'g', '-', 'n', 'e', 't', 'w', 'o', 'r', 'k', 's', '.', 'c', 'o', 'm', '\0', /* "xg3n1us.de", true */ 'x', 'g', '3', 'n', '1', 'u', 's', '.', 'd', 'e', '\0', /* "xgclan.com", true */ 'x', 'g', 'c', 'l', 'a', 'n', '.', 'c', 'o', 'm', '\0', /* "xgn.es", true */ 'x', 'g', 'n', '.', 'e', 's', '\0', /* "xgusto.com", true */ 'x', 'g', 'u', 's', 't', 'o', '.', 'c', 'o', 'm', '\0', /* "xhadius.de", true */ 'x', 'h', 'a', 'd', 'i', 'u', 's', '.', 'd', 'e', '\0', /* "xho.me", true */ 'x', 'h', 'o', '.', 'm', 'e', '\0', + /* "xia100.xyz", true */ 'x', 'i', 'a', '1', '0', '0', '.', 'x', 'y', 'z', '\0', /* "xiamuzi.com", true */ 'x', 'i', 'a', 'm', 'u', 'z', 'i', '.', 'c', 'o', 'm', '\0', /* "xiangweiqing.co.uk", true */ 'x', 'i', 'a', 'n', 'g', 'w', 'e', 'i', 'q', 'i', 'n', 'g', '.', 'c', 'o', '.', 'u', 'k', '\0', /* "xiaofengsky.com", true */ 'x', 'i', 'a', 'o', 'f', 'e', 'n', 'g', 's', 'k', 'y', '.', 'c', 'o', 'm', '\0', /* "xiaoguo.net", true */ 'x', 'i', 'a', 'o', 'g', 'u', 'o', '.', 'n', 'e', 't', '\0', /* "xiaolan.me", true */ 'x', 'i', 'a', 'o', 'l', 'a', 'n', '.', 'm', 'e', '\0', /* "xiaolvmu.com", true */ 'x', 'i', 'a', 'o', 'l', 'v', 'm', 'u', '.', 'c', 'o', 'm', '\0', /* "xiazhanjian.com", true */ 'x', 'i', 'a', 'z', 'h', 'a', 'n', 'j', 'i', 'a', 'n', '.', 'c', 'o', 'm', '\0', /* "xichtsbuch.de", true */ 'x', 'i', 'c', 'h', 't', 's', 'b', 'u', 'c', 'h', '.', 'd', 'e', '\0', @@ -18203,32 +18212,33 @@ static const char kSTSHostTable[] = { /* "xp2.de", true */ 'x', 'p', '2', '.', 'd', 'e', '\0', /* "xpd.se", true */ 'x', 'p', 'd', '.', 's', 'e', '\0', /* "xpenology-fr.net", true */ 'x', 'p', 'e', 'n', 'o', 'l', 'o', 'g', 'y', '-', 'f', 'r', '.', 'n', 'e', 't', '\0', /* "xperiacodes.com", true */ 'x', 'p', 'e', 'r', 'i', 'a', 'c', 'o', 'd', 'e', 's', '.', 'c', 'o', 'm', '\0', /* "xperidia.com", true */ 'x', 'p', 'e', 'r', 'i', 'd', 'i', 'a', '.', 'c', 'o', 'm', '\0', /* "xpj.sx", true */ 'x', 'p', 'j', '.', 's', 'x', '\0', /* "xplore-dna.net", true */ 'x', 'p', 'l', 'o', 'r', 'e', '-', 'd', 'n', 'a', '.', 'n', 'e', 't', '\0', /* "xps2pdf.co.uk", true */ 'x', 'p', 's', '2', 'p', 'd', 'f', '.', 'c', 'o', '.', 'u', 'k', '\0', + /* "xqin.net", true */ 'x', 'q', 'i', 'n', '.', 'n', 'e', 't', '\0', /* "xrippedhd.com", true */ 'x', 'r', 'i', 'p', 'p', 'e', 'd', 'h', 'd', '.', 'c', 'o', 'm', '\0', /* "xrockx.de", true */ 'x', 'r', 'o', 'c', 'k', 'x', '.', 'd', 'e', '\0', /* "xroot.org", true */ 'x', 'r', 'o', 'o', 't', '.', 'o', 'r', 'g', '\0', /* "xscancun.com", true */ 'x', 's', 'c', 'a', 'n', 'c', 'u', 'n', '.', 'c', 'o', 'm', '\0', /* "xscapers.com", true */ 'x', 's', 'c', 'a', 'p', 'e', 'r', 's', '.', 'c', 'o', 'm', '\0', /* "xss.ht", true */ 'x', 's', 's', '.', 'h', 't', '\0', /* "xss.sk", true */ 'x', 's', 's', '.', 's', 'k', '\0', /* "xsyds.cn", true */ 'x', 's', 'y', 'd', 's', '.', 'c', 'n', '\0', /* "xsz.jp", true */ 'x', 's', 'z', '.', 'j', 'p', '\0', /* "xtarget.ru", true */ 'x', 't', 'a', 'r', 'g', 'e', 't', '.', 'r', 'u', '\0', /* "xtom.com", true */ 'x', 't', 'o', 'm', '.', 'c', 'o', 'm', '\0', /* "xtom.email", true */ 'x', 't', 'o', 'm', '.', 'e', 'm', 'a', 'i', 'l', '\0', /* "xtremegaming.it", true */ 'x', 't', 'r', 'e', 'm', 'e', 'g', 'a', 'm', 'i', 'n', 'g', '.', 'i', 't', '\0', /* "xtrim.ru", true */ 'x', 't', 'r', 'i', 'm', '.', 'r', 'u', '\0', /* "xtronics.com", true */ 'x', 't', 'r', 'o', 'n', 'i', 'c', 's', '.', 'c', 'o', 'm', '\0', - /* "xuc.me", true */ 'x', 'u', 'c', '.', 'm', 'e', '\0', + /* "xuc.me", false */ 'x', 'u', 'c', '.', 'm', 'e', '\0', /* "xuexb.com", true */ 'x', 'u', 'e', 'x', 'b', '.', 'c', 'o', 'm', '\0', /* "xunn.io", true */ 'x', 'u', 'n', 'n', '.', 'i', 'o', '\0', /* "xuntier.ch", true */ 'x', 'u', 'n', 't', 'i', 'e', 'r', '.', 'c', 'h', '\0', /* "xvt-blog.tk", true */ 'x', 'v', 't', '-', 'b', 'l', 'o', 'g', '.', 't', 'k', '\0', /* "xwalck.se", true */ 'x', 'w', 'a', 'l', 'c', 'k', '.', 's', 'e', '\0', /* "xwaretech.info", true */ 'x', 'w', 'a', 'r', 'e', 't', 'e', 'c', 'h', '.', 'i', 'n', 'f', 'o', '\0', /* "xxiz.com", true */ 'x', 'x', 'i', 'z', '.', 'c', 'o', 'm', '\0', /* "xxx3dbdsm.com", true */ 'x', 'x', 'x', '3', 'd', 'b', 'd', 's', 'm', '.', 'c', 'o', 'm', '\0', @@ -18461,16 +18471,17 @@ static const char kSTSHostTable[] = { /* "zer0-day.pw", true */ 'z', 'e', 'r', '0', '-', 'd', 'a', 'y', '.', 'p', 'w', '\0', /* "zer0.de", true */ 'z', 'e', 'r', '0', '.', 'd', 'e', '\0', /* "zerekin.net", true */ 'z', 'e', 'r', 'e', 'k', 'i', 'n', '.', 'n', 'e', 't', '\0', /* "zerocool.io", true */ 'z', 'e', 'r', 'o', 'c', 'o', 'o', 'l', '.', 'i', 'o', '\0', /* "zeroling.com", true */ 'z', 'e', 'r', 'o', 'l', 'i', 'n', 'g', '.', 'c', 'o', 'm', '\0', /* "zeronet.io", true */ 'z', 'e', 'r', 'o', 'n', 'e', 't', '.', 'i', 'o', '\0', /* "zeropush.com", true */ 'z', 'e', 'r', 'o', 'p', 'u', 's', 'h', '.', 'c', 'o', 'm', '\0', /* "zerossl.com", true */ 'z', 'e', 'r', 'o', 's', 's', 'l', '.', 'c', 'o', 'm', '\0', + /* "zertif.info", true */ 'z', 'e', 'r', 't', 'i', 'f', '.', 'i', 'n', 'f', 'o', '\0', /* "zespia.tw", false */ 'z', 'e', 's', 'p', 'i', 'a', '.', 't', 'w', '\0', /* "zeto365.pl", true */ 'z', 'e', 't', 'o', '3', '6', '5', '.', 'p', 'l', '\0', /* "zetorzeszow.pl", true */ 'z', 'e', 't', 'o', 'r', 'z', 'e', 's', 'z', 'o', 'w', '.', 'p', 'l', '\0', /* "zettaplan.ru", true */ 'z', 'e', 't', 't', 'a', 'p', 'l', 'a', 'n', '.', 'r', 'u', '\0', /* "zewtie.com", true */ 'z', 'e', 'w', 't', 'i', 'e', '.', 'c', 'o', 'm', '\0', /* "zfo.gg", true */ 'z', 'f', 'o', '.', 'g', 'g', '\0', /* "zgrep.org", true */ 'z', 'g', 'r', 'e', 'p', '.', 'o', 'r', 'g', '\0', /* "zh1.li", true */ 'z', 'h', '1', '.', 'l', 'i', '\0', @@ -18682,18499 +18693,18510 @@ static const nsSTSPreload kSTSPreloadLis { 982, true }, { 999, true }, { 1022, true }, { 1032, true }, { 1043, true }, { 1056, true }, { 1067, true }, { 1081, true }, - { 1088, true }, - { 1110, true }, + { 1103, true }, + { 1115, true }, { 1122, true }, - { 1129, true }, - { 1138, true }, + { 1131, true }, + { 1142, true }, { 1149, true }, - { 1156, true }, - { 1167, true }, - { 1178, true }, - { 1191, true }, + { 1160, true }, + { 1171, true }, + { 1184, true }, + { 1194, true }, { 1201, true }, { 1208, true }, - { 1215, true }, + { 1219, true }, { 1226, true }, - { 1233, true }, - { 1245, true }, - { 1262, true }, - { 1280, true }, - { 1294, true }, - { 1306, true }, - { 1317, true }, - { 1326, true }, - { 1332, true }, - { 1346, true }, - { 1361, true }, - { 1369, true }, - { 1378, true }, - { 1386, true }, - { 1397, true }, - { 1407, true }, - { 1425, true }, - { 1443, true }, - { 1452, true }, - { 1460, true }, - { 1468, false }, - { 1479, true }, - { 1497, true }, - { 1508, true }, - { 1520, true }, - { 1534, true }, - { 1542, true }, - { 1555, true }, - { 1565, false }, - { 1578, true }, - { 1587, true }, - { 1601, true }, - { 1610, true }, - { 1631, true }, - { 1651, true }, - { 1660, true }, - { 1672, true }, - { 1682, true }, - { 1697, true }, - { 1705, true }, - { 1718, true }, - { 1735, false }, - { 1747, true }, - { 1755, true }, + { 1238, true }, + { 1255, true }, + { 1273, true }, + { 1287, true }, + { 1299, true }, + { 1310, true }, + { 1319, true }, + { 1325, true }, + { 1339, true }, + { 1354, true }, + { 1362, true }, + { 1371, true }, + { 1379, true }, + { 1390, true }, + { 1400, true }, + { 1418, true }, + { 1436, true }, + { 1445, true }, + { 1453, true }, + { 1461, false }, + { 1472, true }, + { 1490, true }, + { 1501, true }, + { 1513, true }, + { 1527, true }, + { 1535, true }, + { 1548, true }, + { 1558, false }, + { 1571, true }, + { 1580, true }, + { 1594, true }, + { 1603, true }, + { 1624, true }, + { 1644, true }, + { 1653, true }, + { 1665, true }, + { 1675, true }, + { 1690, true }, + { 1698, true }, + { 1711, true }, + { 1728, false }, + { 1740, true }, + { 1748, true }, + { 1759, true }, { 1766, true }, - { 1773, true }, - { 1782, true }, - { 1791, true }, - { 1804, true }, - { 1813, true }, - { 1832, true }, - { 1843, true }, - { 1862, true }, - { 1881, true }, - { 1893, true }, - { 1907, true }, - { 1919, false }, - { 1930, true }, - { 1939, false }, - { 1950, true }, - { 1965, true }, - { 1978, true }, - { 1986, true }, - { 2000, true }, - { 2015, true }, - { 2027, true }, - { 2040, true }, - { 2055, true }, - { 2064, true }, - { 2074, true }, - { 2088, true }, - { 2102, true }, - { 2111, true }, - { 2125, true }, + { 1775, true }, + { 1784, true }, + { 1797, true }, + { 1806, true }, + { 1825, true }, + { 1836, true }, + { 1855, true }, + { 1874, true }, + { 1886, true }, + { 1900, true }, + { 1912, false }, + { 1923, true }, + { 1932, false }, + { 1943, true }, + { 1958, true }, + { 1971, true }, + { 1979, true }, + { 1993, true }, + { 2008, true }, + { 2020, true }, + { 2033, true }, + { 2048, true }, + { 2057, true }, + { 2067, true }, + { 2081, true }, + { 2095, true }, + { 2104, true }, + { 2118, true }, + { 2126, true }, { 2133, true }, - { 2140, true }, - { 2152, true }, - { 2163, true }, - { 2176, true }, - { 2185, true }, - { 2197, true }, - { 2214, true }, - { 2225, true }, - { 2236, true }, - { 2246, true }, - { 2257, true }, - { 2268, true }, - { 2281, true }, - { 2289, true }, - { 2300, false }, - { 2313, true }, - { 2321, true }, - { 2333, true }, - { 2348, true }, - { 2367, true }, + { 2145, true }, + { 2156, true }, + { 2169, true }, + { 2178, true }, + { 2190, true }, + { 2207, true }, + { 2218, true }, + { 2229, true }, + { 2239, true }, + { 2250, true }, + { 2261, true }, + { 2274, true }, + { 2282, true }, + { 2293, false }, + { 2306, true }, + { 2314, true }, + { 2326, true }, + { 2341, true }, + { 2360, true }, + { 2371, true }, { 2378, true }, - { 2385, true }, - { 2395, true }, - { 2401, true }, - { 2410, true }, - { 2423, true }, - { 2437, true }, - { 2449, true }, - { 2458, true }, - { 2471, true }, - { 2481, true }, - { 2491, false }, - { 2498, true }, - { 2509, true }, - { 2521, true }, - { 2529, true }, + { 2388, true }, + { 2394, true }, + { 2403, true }, + { 2416, true }, + { 2430, true }, + { 2442, true }, + { 2451, true }, + { 2464, true }, + { 2474, true }, + { 2484, false }, + { 2491, true }, + { 2502, true }, + { 2514, true }, + { 2522, true }, + { 2535, true }, { 2542, true }, - { 2549, true }, - { 2558, true }, - { 2568, true }, - { 2587, true }, - { 2599, true }, - { 2608, true }, - { 2629, true }, - { 2653, true }, - { 2668, true }, - { 2676, true }, - { 2687, true }, - { 2693, true }, - { 2706, true }, - { 2718, true }, - { 2730, true }, - { 2738, true }, - { 2754, true }, - { 2764, true }, + { 2551, true }, + { 2561, true }, + { 2580, true }, + { 2592, true }, + { 2601, true }, + { 2622, true }, + { 2646, true }, + { 2661, true }, + { 2669, true }, + { 2680, true }, + { 2686, true }, + { 2699, true }, + { 2711, true }, + { 2723, true }, + { 2731, true }, + { 2747, true }, + { 2757, true }, + { 2774, true }, { 2781, true }, - { 2788, true }, - { 2797, true }, - { 2818, true }, - { 2831, false }, - { 2844, true }, - { 2854, true }, - { 2907, true }, - { 2919, true }, - { 2928, true }, - { 2937, true }, - { 2947, true }, - { 2957, true }, - { 2968, true }, + { 2790, true }, + { 2811, true }, + { 2824, false }, + { 2837, true }, + { 2847, true }, + { 2900, true }, + { 2912, true }, + { 2921, true }, + { 2930, true }, + { 2940, true }, + { 2950, true }, + { 2961, true }, + { 2969, true }, { 2976, true }, - { 2983, true }, - { 2995, true }, - { 3004, true }, - { 3026, true }, - { 3042, true }, - { 3066, true }, - { 3076, true }, - { 3087, true }, - { 3106, true }, - { 3117, true }, - { 3131, true }, - { 3145, true }, - { 3155, true }, - { 3166, true }, - { 3175, true }, - { 3188, true }, - { 3203, true }, - { 3218, true }, - { 3226, true }, - { 3236, true }, - { 3253, true }, - { 3268, true }, - { 3283, true }, - { 3298, true }, - { 3310, true }, - { 3326, true }, + { 2988, true }, + { 2997, true }, + { 3019, true }, + { 3035, true }, + { 3059, true }, + { 3069, true }, + { 3080, true }, + { 3099, true }, + { 3110, true }, + { 3124, true }, + { 3138, true }, + { 3148, true }, + { 3159, true }, + { 3168, true }, + { 3181, true }, + { 3196, true }, + { 3211, true }, + { 3219, true }, + { 3229, true }, + { 3246, true }, + { 3261, true }, + { 3276, true }, + { 3291, true }, + { 3303, true }, + { 3319, true }, + { 3329, true }, { 3336, true }, - { 3343, true }, - { 3354, true }, - { 3369, true }, - { 3379, true }, - { 3407, true }, - { 3421, true }, - { 3441, true }, - { 3460, true }, - { 3470, true }, - { 3481, true }, - { 3499, true }, - { 3510, true }, - { 3524, true }, - { 3537, true }, - { 3549, true }, - { 3571, true }, - { 3587, true }, - { 3598, false }, - { 3614, false }, - { 3626, true }, - { 3639, true }, - { 3656, true }, - { 3681, true }, - { 3698, false }, - { 3706, true }, - { 3715, true }, - { 3739, true }, - { 3751, true }, - { 3762, true }, - { 3780, true }, - { 3804, true }, - { 3811, true }, - { 3824, true }, - { 3837, true }, - { 3846, true }, - { 3863, true }, - { 3882, true }, - { 3894, true }, - { 3913, true }, - { 3936, true }, - { 3959, true }, - { 3973, true }, - { 3981, true }, - { 4005, true }, - { 4021, true }, - { 4034, true }, - { 4051, true }, - { 4071, true }, - { 4084, true }, - { 4102, true }, - { 4117, true }, - { 4138, true }, - { 4158, true }, - { 4183, true }, - { 4195, true }, - { 4206, true }, - { 4225, true }, - { 4244, true }, - { 4254, false }, - { 4261, true }, - { 4282, true }, - { 4294, true }, - { 4311, true }, - { 4324, true }, - { 4340, true }, - { 4361, true }, - { 4373, true }, - { 4384, true }, - { 4397, false }, - { 4406, true }, - { 4422, false }, - { 4432, true }, - { 4447, true }, - { 4464, true }, - { 4475, true }, - { 4489, true }, - { 4502, true }, - { 4518, true }, - { 4529, true }, - { 4541, true }, - { 4553, true }, - { 4574, false }, - { 4584, true }, - { 4599, true }, - { 4613, false }, - { 4626, true }, - { 4635, true }, - { 4650, true }, - { 4666, true }, - { 4680, true }, - { 4692, true }, - { 4707, true }, - { 4720, true }, - { 4732, true }, - { 4744, true }, - { 4756, true }, - { 4768, true }, - { 4780, true }, - { 4788, true }, - { 4799, true }, - { 4816, true }, - { 4830, true }, - { 4846, true }, - { 4860, true }, - { 4873, true }, - { 4890, true }, - { 4906, true }, - { 4921, true }, - { 4936, true }, - { 4954, true }, - { 4963, true }, - { 4976, true }, - { 4991, true }, - { 5012, true }, - { 5021, true }, - { 5031, true }, - { 5056, true }, - { 5067, true }, - { 5079, true }, - { 5098, true }, - { 5110, true }, - { 5129, true }, - { 5148, true }, - { 5167, true }, - { 5178, true }, - { 5190, true }, - { 5205, true }, - { 5216, true }, - { 5229, true }, - { 5241, true }, - { 5254, true }, - { 5268, true }, - { 5283, true }, - { 5305, true }, - { 5328, true }, - { 5338, true }, - { 5360, true }, - { 5369, true }, - { 5382, true }, - { 5396, true }, - { 5408, true }, - { 5421, true }, - { 5448, true }, - { 5474, true }, - { 5485, true }, - { 5498, true }, - { 5509, true }, - { 5533, true }, - { 5550, true }, - { 5578, true }, - { 5590, true }, - { 5601, true }, - { 5610, true }, - { 5620, true }, - { 5634, true }, - { 5653, true }, - { 5663, true }, - { 5680, true }, - { 5692, true }, - { 5706, true }, - { 5714, false }, - { 5735, true }, - { 5753, true }, - { 5774, true }, - { 5785, true }, - { 5798, true }, - { 5809, true }, - { 5818, true }, - { 5834, true }, - { 5850, true }, - { 5869, true }, - { 5890, true }, - { 5904, true }, - { 5923, true }, - { 5936, true }, - { 5947, true }, - { 5967, true }, - { 5985, true }, - { 6003, false }, - { 6022, true }, - { 6036, true }, - { 6057, true }, - { 6077, true }, - { 6093, true }, - { 6103, true }, - { 6116, true }, - { 6129, true }, - { 6143, true }, - { 6157, true }, - { 6167, true }, - { 6177, true }, - { 6187, true }, - { 6197, true }, - { 6207, true }, - { 6217, true }, - { 6234, true }, - { 6244, false }, - { 6252, true }, - { 6263, true }, - { 6274, true }, - { 6286, true }, - { 6297, true }, - { 6309, true }, - { 6320, true }, - { 6338, true }, - { 6347, true }, - { 6367, true }, - { 6378, true }, - { 6395, true }, - { 6419, true }, - { 6433, true }, - { 6452, true }, - { 6474, true }, - { 6484, true }, - { 6496, true }, - { 6512, true }, - { 6523, true }, - { 6531, true }, - { 6545, true }, - { 6561, true }, - { 6576, true }, - { 6585, true }, - { 6600, true }, - { 6608, true }, - { 6617, true }, - { 6634, false }, - { 6646, true }, - { 6655, true }, - { 6674, true }, - { 6691, true }, - { 6699, false }, - { 6715, true }, - { 6733, true }, - { 6744, true }, - { 6757, true }, - { 6765, true }, - { 6779, false }, - { 6793, true }, - { 6805, true }, - { 6815, true }, - { 6827, true }, - { 6839, true }, - { 6853, true }, - { 6866, true }, - { 6878, true }, - { 6894, true }, - { 6904, true }, - { 6914, true }, - { 6922, true }, - { 6932, true }, - { 6946, true }, - { 6959, true }, - { 6967, true }, - { 6979, true }, - { 6991, true }, - { 7015, true }, - { 7034, true }, - { 7053, true }, - { 7062, true }, - { 7076, true }, - { 7086, true }, - { 7119, true }, - { 7129, true }, - { 7143, true }, - { 7150, true }, - { 7162, true }, - { 7175, true }, - { 7186, true }, - { 7203, true }, - { 7214, true }, - { 7230, true }, - { 7239, true }, - { 7246, true }, - { 7260, true }, - { 7268, true }, - { 7279, true }, - { 7297, true }, - { 7312, true }, - { 7327, true }, - { 7344, true }, - { 7357, true }, - { 7367, true }, - { 7378, true }, - { 7393, true }, - { 7416, true }, - { 7427, true }, - { 7439, true }, - { 7450, true }, - { 7470, true }, - { 7481, true }, - { 7492, true }, - { 7503, true }, - { 7514, true }, - { 7525, true }, - { 7538, true }, - { 7556, true }, - { 7568, true }, - { 7585, true }, - { 7594, true }, - { 7608, true }, - { 7619, true }, - { 7630, true }, - { 7647, true }, - { 7663, true }, - { 7674, true }, - { 7682, false }, - { 7708, false }, - { 7719, true }, - { 7737, false }, - { 7754, true }, - { 7764, true }, - { 7775, true }, - { 7788, true }, - { 7800, true }, - { 7809, true }, - { 7826, true }, - { 7833, true }, - { 7857, true }, - { 7873, true }, - { 7893, true }, - { 7918, true }, - { 7943, true }, - { 7968, true }, - { 7980, true }, - { 7990, true }, - { 8002, true }, - { 8011, true }, - { 8023, true }, - { 8050, true }, - { 8078, true }, - { 8091, false }, - { 8100, true }, - { 8116, true }, - { 8132, true }, - { 8144, true }, - { 8158, true }, - { 8178, true }, - { 8193, true }, - { 8214, true }, - { 8225, true }, - { 8235, true }, - { 8246, true }, - { 8258, true }, - { 8270, true }, - { 8279, true }, - { 8291, true }, - { 8310, true }, - { 8323, true }, - { 8334, true }, - { 8343, true }, - { 8361, true }, - { 8375, true }, - { 8389, true }, - { 8405, true }, - { 8421, true }, - { 8441, true }, - { 8462, true }, - { 8476, true }, - { 8489, true }, - { 8504, true }, - { 8514, true }, - { 8532, true }, - { 8547, true }, - { 8565, true }, - { 8575, true }, - { 8590, true }, - { 8608, true }, - { 8622, true }, - { 8636, true }, - { 8650, true }, - { 8662, true }, - { 8677, true }, - { 8691, true }, - { 8706, true }, - { 8716, true }, - { 8730, true }, - { 8739, true }, - { 8754, true }, - { 8768, true }, - { 8782, true }, - { 8798, true }, - { 8810, true }, - { 8823, false }, - { 8838, true }, - { 8850, true }, - { 8864, true }, - { 8874, true }, - { 8889, true }, - { 8903, true }, - { 8917, true }, - { 8939, true }, - { 8951, true }, - { 8974, true }, - { 8995, true }, - { 9007, true }, - { 9019, true }, - { 9032, true }, - { 9043, true }, - { 9058, true }, - { 9069, false }, - { 9085, true }, - { 9103, true }, - { 9114, true }, - { 9126, true }, - { 9139, true }, - { 9159, true }, - { 9172, true }, - { 9185, true }, - { 9209, true }, - { 9227, true }, - { 9244, true }, - { 9268, true }, - { 9292, true }, - { 9311, true }, - { 9327, true }, - { 9341, true }, - { 9350, true }, - { 9363, true }, - { 9380, true }, - { 9401, true }, - { 9417, true }, - { 9438, true }, - { 9454, true }, - { 9473, true }, - { 9486, true }, - { 9507, true }, - { 9527, true }, - { 9547, true }, - { 9563, true }, - { 9576, false }, - { 9589, true }, - { 9601, true }, - { 9611, true }, - { 9624, true }, - { 9638, true }, - { 9654, true }, - { 9668, true }, - { 9684, true }, - { 9696, true }, - { 9710, true }, - { 9727, true }, - { 9738, true }, - { 9757, true }, - { 9770, true }, - { 9784, true }, - { 9792, true }, - { 9805, true }, - { 9818, true }, - { 9833, true }, - { 9850, true }, - { 9869, true }, - { 9881, true }, - { 9895, true }, - { 9917, true }, - { 9931, true }, - { 9943, true }, - { 9955, true }, - { 9969, true }, - { 9997, true }, - { 10012, true }, - { 10024, true }, - { 10035, true }, - { 10046, true }, - { 10060, true }, - { 10072, true }, - { 10080, true }, - { 10091, true }, - { 10099, true }, - { 10107, true }, - { 10115, true }, - { 10123, true }, - { 10136, true }, - { 10143, true }, - { 10153, true }, - { 10166, true }, - { 10178, true }, - { 10191, true }, - { 10211, true }, - { 10223, true }, - { 10235, true }, - { 10253, true }, - { 10268, true }, - { 10281, true }, - { 10290, true }, - { 10303, true }, - { 10315, true }, - { 10329, true }, - { 10342, true }, - { 10353, true }, - { 10363, true }, - { 10374, true }, - { 10384, true }, - { 10395, true }, - { 10404, true }, - { 10420, true }, - { 10436, true }, - { 10464, true }, - { 10483, true }, - { 10498, true }, - { 10518, true }, - { 10530, true }, - { 10542, true }, - { 10555, true }, - { 10564, true }, - { 10573, true }, - { 10583, true }, - { 10602, true }, - { 10613, true }, - { 10628, true }, - { 10648, true }, - { 10666, true }, - { 10677, true }, - { 10687, true }, - { 10714, true }, - { 10731, true }, - { 10742, true }, - { 10752, true }, - { 10766, true }, - { 10783, true }, - { 10792, true }, - { 10803, true }, - { 10823, true }, - { 10842, true }, - { 10853, true }, - { 10864, true }, - { 10882, true }, - { 10908, false }, - { 10919, true }, - { 10938, true }, - { 10956, true }, - { 10974, true }, - { 10996, true }, - { 11018, true }, - { 11032, true }, - { 11047, true }, - { 11061, true }, - { 11075, true }, - { 11090, true }, - { 11111, true }, - { 11121, true }, - { 11136, true }, - { 11147, true }, - { 11168, true }, - { 11186, true }, - { 11197, true }, - { 11215, true }, - { 11228, true }, - { 11236, true }, - { 11253, true }, - { 11266, true }, - { 11281, true }, - { 11293, true }, - { 11307, true }, - { 11326, true }, - { 11344, true }, - { 11366, true }, - { 11381, true }, - { 11398, true }, - { 11420, true }, - { 11435, true }, - { 11452, true }, - { 11473, true }, - { 11489, true }, - { 11516, true }, - { 11532, true }, - { 11549, true }, - { 11566, true }, - { 11581, true }, - { 11596, true }, - { 11610, true }, - { 11627, true }, - { 11644, true }, - { 11656, true }, - { 11674, true }, - { 11691, true }, - { 11705, true }, - { 11722, true }, - { 11740, true }, - { 11755, true }, - { 11767, true }, - { 11783, true }, - { 11797, true }, - { 11810, true }, - { 11827, true }, - { 11847, true }, - { 11867, true }, - { 11882, true }, - { 11893, true }, - { 11904, true }, - { 11915, true }, - { 11931, true }, - { 11946, true }, - { 11957, true }, - { 11974, true }, - { 11990, true }, - { 12001, true }, - { 12012, true }, - { 12024, true }, - { 12037, true }, - { 12056, true }, - { 12067, true }, - { 12080, true }, - { 12094, true }, - { 12112, false }, - { 12125, false }, - { 12134, true }, - { 12156, true }, - { 12173, true }, - { 12190, true }, - { 12202, true }, - { 12222, true }, - { 12233, true }, - { 12244, true }, - { 12262, true }, - { 12294, true }, - { 12321, true }, - { 12333, true }, - { 12343, true }, - { 12361, true }, - { 12376, true }, - { 12388, true }, - { 12400, true }, - { 12420, true }, - { 12439, true }, - { 12459, true }, - { 12482, false }, - { 12506, true }, - { 12518, true }, - { 12529, true }, - { 12541, true }, - { 12553, true }, - { 12569, true }, - { 12586, true }, - { 12605, true }, - { 12619, true }, - { 12630, true }, - { 12646, true }, - { 12665, true }, - { 12678, true }, - { 12688, true }, - { 12698, true }, - { 12711, true }, - { 12723, false }, - { 12747, true }, - { 12766, true }, - { 12780, true }, - { 12796, true }, - { 12812, true }, - { 12824, true }, - { 12835, true }, - { 12851, true }, - { 12868, true }, - { 12882, true }, - { 12897, true }, - { 12912, true }, - { 12923, true }, - { 12941, true }, - { 12957, true }, - { 12978, true }, - { 12992, true }, - { 13007, true }, - { 13020, true }, - { 13037, false }, - { 13044, true }, - { 13057, true }, - { 13070, true }, - { 13086, true }, - { 13097, true }, - { 13109, true }, - { 13120, true }, - { 13127, true }, - { 13139, true }, - { 13147, false }, - { 13158, true }, - { 13169, true }, - { 13179, true }, - { 13192, false }, - { 13200, true }, - { 13210, true }, - { 13217, true }, - { 13231, false }, - { 13245, true }, - { 13261, true }, - { 13280, true }, - { 13305, true }, - { 13314, true }, - { 13325, true }, - { 13333, true }, - { 13363, true }, - { 13386, true }, - { 13399, true }, - { 13418, true }, - { 13430, true }, - { 13443, false }, - { 13462, true }, - { 13478, false }, - { 13494, true }, - { 13510, false }, - { 13525, false }, - { 13538, true }, - { 13554, true }, - { 13566, true }, - { 13585, true }, - { 13606, true }, - { 13619, true }, - { 13628, true }, - { 13641, true }, - { 13655, true }, - { 13665, true }, - { 13676, true }, - { 13687, true }, - { 13699, true }, - { 13715, true }, - { 13732, false }, - { 13749, true }, - { 13771, true }, - { 13797, true }, - { 13810, true }, - { 13819, true }, - { 13833, true }, - { 13852, true }, - { 13873, true }, - { 13885, true }, - { 13899, true }, - { 13923, true }, - { 13932, true }, - { 13945, true }, - { 13958, true }, - { 13972, true }, - { 13988, true }, - { 14005, true }, - { 14016, true }, - { 14025, true }, - { 14038, true }, - { 14051, true }, - { 14063, true }, - { 14084, false }, - { 14102, true }, - { 14125, true }, - { 14152, true }, - { 14171, true }, - { 14183, true }, - { 14203, true }, - { 14214, true }, - { 14231, true }, - { 14243, true }, - { 14257, true }, - { 14265, true }, - { 14282, true }, - { 14295, true }, - { 14307, true }, - { 14320, true }, - { 14336, true }, - { 14348, true }, - { 14366, true }, - { 14378, true }, - { 14401, true }, - { 14414, true }, - { 14430, true }, - { 14444, true }, + { 3347, true }, + { 3362, true }, + { 3372, true }, + { 3400, true }, + { 3414, true }, + { 3434, true }, + { 3453, true }, + { 3463, true }, + { 3474, true }, + { 3492, true }, + { 3503, true }, + { 3517, true }, + { 3530, true }, + { 3542, true }, + { 3564, true }, + { 3580, true }, + { 3591, false }, + { 3607, false }, + { 3619, true }, + { 3632, true }, + { 3649, true }, + { 3674, true }, + { 3691, false }, + { 3699, true }, + { 3708, true }, + { 3732, true }, + { 3745, true }, + { 3757, true }, + { 3768, true }, + { 3786, true }, + { 3810, true }, + { 3817, true }, + { 3830, true }, + { 3843, true }, + { 3852, true }, + { 3869, true }, + { 3888, true }, + { 3900, true }, + { 3919, true }, + { 3942, true }, + { 3965, true }, + { 3979, true }, + { 3987, true }, + { 4011, true }, + { 4027, true }, + { 4040, true }, + { 4057, true }, + { 4077, true }, + { 4090, true }, + { 4108, true }, + { 4123, true }, + { 4144, true }, + { 4164, true }, + { 4189, true }, + { 4201, true }, + { 4212, true }, + { 4231, true }, + { 4250, true }, + { 4260, false }, + { 4267, true }, + { 4288, true }, + { 4300, true }, + { 4317, true }, + { 4330, true }, + { 4346, true }, + { 4367, true }, + { 4379, true }, + { 4390, true }, + { 4403, false }, + { 4412, true }, + { 4428, false }, + { 4438, true }, + { 4453, true }, + { 4470, true }, + { 4481, true }, + { 4495, true }, + { 4508, true }, + { 4524, true }, + { 4535, true }, + { 4547, true }, + { 4559, true }, + { 4580, false }, + { 4590, true }, + { 4605, true }, + { 4619, false }, + { 4632, true }, + { 4641, true }, + { 4656, true }, + { 4672, true }, + { 4686, true }, + { 4698, true }, + { 4713, true }, + { 4726, true }, + { 4738, true }, + { 4750, true }, + { 4762, true }, + { 4774, true }, + { 4786, true }, + { 4794, true }, + { 4805, true }, + { 4822, true }, + { 4836, true }, + { 4852, true }, + { 4866, true }, + { 4879, true }, + { 4896, true }, + { 4912, true }, + { 4927, true }, + { 4942, true }, + { 4960, true }, + { 4969, true }, + { 4982, true }, + { 4997, true }, + { 5018, true }, + { 5027, true }, + { 5037, true }, + { 5062, true }, + { 5073, true }, + { 5085, true }, + { 5104, true }, + { 5116, true }, + { 5135, true }, + { 5154, true }, + { 5173, true }, + { 5184, true }, + { 5196, true }, + { 5211, true }, + { 5222, true }, + { 5235, true }, + { 5247, true }, + { 5260, true }, + { 5274, true }, + { 5289, true }, + { 5311, true }, + { 5334, true }, + { 5344, true }, + { 5366, true }, + { 5375, true }, + { 5388, true }, + { 5402, true }, + { 5414, true }, + { 5427, true }, + { 5454, true }, + { 5480, true }, + { 5491, true }, + { 5504, true }, + { 5515, true }, + { 5539, true }, + { 5556, true }, + { 5584, true }, + { 5596, true }, + { 5607, true }, + { 5616, true }, + { 5626, true }, + { 5640, true }, + { 5659, true }, + { 5669, true }, + { 5686, true }, + { 5698, true }, + { 5712, true }, + { 5720, false }, + { 5741, true }, + { 5759, true }, + { 5780, true }, + { 5791, true }, + { 5804, true }, + { 5815, true }, + { 5824, true }, + { 5840, true }, + { 5856, true }, + { 5875, true }, + { 5896, true }, + { 5910, true }, + { 5929, true }, + { 5942, true }, + { 5953, true }, + { 5973, true }, + { 5991, true }, + { 6009, false }, + { 6028, true }, + { 6042, true }, + { 6063, true }, + { 6083, true }, + { 6099, true }, + { 6109, true }, + { 6122, true }, + { 6135, true }, + { 6149, true }, + { 6163, true }, + { 6173, true }, + { 6183, true }, + { 6193, true }, + { 6203, true }, + { 6213, true }, + { 6223, true }, + { 6240, true }, + { 6250, false }, + { 6258, true }, + { 6269, true }, + { 6280, true }, + { 6292, true }, + { 6303, true }, + { 6315, true }, + { 6326, true }, + { 6344, true }, + { 6353, true }, + { 6373, true }, + { 6384, true }, + { 6401, true }, + { 6425, true }, + { 6439, true }, + { 6458, true }, + { 6480, true }, + { 6490, true }, + { 6502, true }, + { 6518, true }, + { 6529, true }, + { 6537, true }, + { 6551, true }, + { 6567, true }, + { 6582, true }, + { 6591, true }, + { 6606, true }, + { 6614, true }, + { 6623, true }, + { 6640, false }, + { 6652, true }, + { 6661, true }, + { 6680, true }, + { 6697, true }, + { 6705, false }, + { 6721, true }, + { 6739, true }, + { 6750, true }, + { 6763, true }, + { 6771, true }, + { 6785, false }, + { 6799, true }, + { 6811, true }, + { 6821, true }, + { 6833, true }, + { 6845, true }, + { 6859, true }, + { 6872, true }, + { 6884, true }, + { 6900, true }, + { 6910, true }, + { 6920, true }, + { 6928, true }, + { 6938, true }, + { 6952, true }, + { 6965, true }, + { 6973, true }, + { 6985, true }, + { 6997, true }, + { 7021, true }, + { 7040, true }, + { 7059, true }, + { 7068, true }, + { 7082, true }, + { 7092, true }, + { 7125, true }, + { 7135, true }, + { 7149, true }, + { 7156, true }, + { 7168, true }, + { 7181, true }, + { 7192, true }, + { 7209, true }, + { 7220, true }, + { 7236, true }, + { 7245, true }, + { 7252, true }, + { 7266, true }, + { 7274, true }, + { 7285, true }, + { 7303, true }, + { 7318, true }, + { 7333, true }, + { 7350, true }, + { 7363, true }, + { 7373, true }, + { 7384, true }, + { 7399, true }, + { 7422, true }, + { 7433, true }, + { 7445, true }, + { 7456, true }, + { 7476, true }, + { 7487, true }, + { 7498, true }, + { 7509, true }, + { 7520, true }, + { 7531, true }, + { 7544, true }, + { 7562, true }, + { 7574, true }, + { 7591, true }, + { 7600, true }, + { 7614, true }, + { 7625, true }, + { 7636, true }, + { 7653, true }, + { 7669, true }, + { 7680, true }, + { 7688, false }, + { 7714, false }, + { 7725, true }, + { 7743, false }, + { 7760, true }, + { 7770, true }, + { 7781, true }, + { 7794, true }, + { 7806, true }, + { 7815, true }, + { 7832, true }, + { 7839, true }, + { 7863, true }, + { 7879, true }, + { 7899, true }, + { 7924, true }, + { 7949, true }, + { 7974, true }, + { 7986, true }, + { 7996, true }, + { 8008, true }, + { 8017, true }, + { 8029, true }, + { 8056, true }, + { 8084, true }, + { 8097, false }, + { 8106, true }, + { 8122, true }, + { 8138, true }, + { 8150, true }, + { 8164, true }, + { 8184, true }, + { 8199, true }, + { 8220, true }, + { 8231, true }, + { 8241, true }, + { 8252, true }, + { 8264, true }, + { 8276, true }, + { 8285, true }, + { 8297, true }, + { 8316, true }, + { 8329, true }, + { 8340, true }, + { 8349, true }, + { 8367, true }, + { 8381, true }, + { 8395, true }, + { 8411, true }, + { 8427, true }, + { 8447, true }, + { 8468, true }, + { 8482, true }, + { 8495, true }, + { 8510, true }, + { 8520, true }, + { 8538, true }, + { 8553, true }, + { 8571, true }, + { 8581, true }, + { 8596, true }, + { 8614, true }, + { 8628, true }, + { 8642, true }, + { 8656, true }, + { 8668, true }, + { 8683, true }, + { 8697, true }, + { 8712, true }, + { 8722, true }, + { 8736, true }, + { 8745, true }, + { 8760, true }, + { 8774, true }, + { 8788, true }, + { 8804, true }, + { 8816, true }, + { 8829, false }, + { 8844, true }, + { 8856, true }, + { 8870, true }, + { 8880, true }, + { 8895, true }, + { 8909, true }, + { 8923, true }, + { 8945, true }, + { 8957, true }, + { 8980, true }, + { 9001, true }, + { 9013, true }, + { 9025, true }, + { 9038, true }, + { 9049, true }, + { 9064, true }, + { 9075, false }, + { 9091, true }, + { 9109, true }, + { 9120, true }, + { 9132, true }, + { 9145, true }, + { 9165, true }, + { 9178, true }, + { 9191, true }, + { 9215, true }, + { 9233, true }, + { 9250, true }, + { 9274, true }, + { 9298, true }, + { 9317, true }, + { 9333, true }, + { 9347, true }, + { 9356, true }, + { 9369, true }, + { 9386, true }, + { 9407, true }, + { 9423, true }, + { 9444, true }, + { 9460, true }, + { 9479, true }, + { 9492, true }, + { 9513, true }, + { 9533, true }, + { 9553, true }, + { 9569, true }, + { 9582, false }, + { 9595, true }, + { 9607, true }, + { 9617, true }, + { 9630, true }, + { 9644, true }, + { 9660, true }, + { 9674, true }, + { 9690, true }, + { 9702, true }, + { 9716, true }, + { 9733, true }, + { 9744, true }, + { 9763, true }, + { 9776, true }, + { 9790, true }, + { 9798, true }, + { 9811, true }, + { 9824, true }, + { 9839, true }, + { 9856, true }, + { 9875, true }, + { 9887, true }, + { 9901, true }, + { 9923, true }, + { 9937, true }, + { 9949, true }, + { 9961, true }, + { 9975, true }, + { 10003, true }, + { 10018, true }, + { 10030, true }, + { 10041, true }, + { 10052, true }, + { 10066, true }, + { 10078, true }, + { 10086, true }, + { 10097, true }, + { 10105, true }, + { 10113, true }, + { 10121, true }, + { 10129, true }, + { 10142, true }, + { 10149, true }, + { 10159, true }, + { 10172, true }, + { 10184, true }, + { 10197, true }, + { 10217, true }, + { 10229, true }, + { 10241, true }, + { 10259, true }, + { 10274, true }, + { 10287, true }, + { 10296, true }, + { 10309, true }, + { 10321, true }, + { 10335, true }, + { 10348, true }, + { 10359, true }, + { 10369, true }, + { 10380, true }, + { 10390, true }, + { 10401, true }, + { 10410, true }, + { 10426, true }, + { 10442, true }, + { 10470, true }, + { 10489, true }, + { 10504, true }, + { 10524, true }, + { 10536, true }, + { 10548, true }, + { 10561, true }, + { 10570, true }, + { 10579, true }, + { 10589, true }, + { 10608, true }, + { 10619, true }, + { 10634, true }, + { 10654, true }, + { 10672, true }, + { 10683, true }, + { 10693, true }, + { 10720, true }, + { 10737, true }, + { 10748, true }, + { 10758, true }, + { 10772, true }, + { 10789, true }, + { 10798, true }, + { 10809, true }, + { 10829, true }, + { 10848, true }, + { 10859, true }, + { 10870, true }, + { 10888, true }, + { 10914, false }, + { 10925, true }, + { 10944, true }, + { 10962, true }, + { 10980, true }, + { 11002, true }, + { 11024, true }, + { 11038, true }, + { 11053, true }, + { 11067, true }, + { 11081, true }, + { 11096, true }, + { 11117, true }, + { 11127, true }, + { 11142, true }, + { 11153, true }, + { 11174, true }, + { 11192, true }, + { 11203, true }, + { 11221, true }, + { 11234, true }, + { 11242, true }, + { 11259, true }, + { 11272, true }, + { 11287, true }, + { 11299, true }, + { 11313, true }, + { 11332, true }, + { 11350, true }, + { 11372, true }, + { 11387, true }, + { 11404, true }, + { 11426, true }, + { 11441, true }, + { 11458, true }, + { 11479, true }, + { 11495, true }, + { 11522, true }, + { 11538, true }, + { 11555, true }, + { 11572, true }, + { 11587, true }, + { 11602, true }, + { 11616, true }, + { 11633, true }, + { 11650, true }, + { 11662, true }, + { 11680, true }, + { 11697, true }, + { 11711, true }, + { 11728, true }, + { 11746, true }, + { 11761, true }, + { 11773, true }, + { 11789, true }, + { 11803, true }, + { 11816, true }, + { 11833, true }, + { 11853, true }, + { 11873, true }, + { 11888, true }, + { 11899, true }, + { 11910, true }, + { 11921, true }, + { 11937, true }, + { 11952, true }, + { 11963, true }, + { 11980, true }, + { 11996, true }, + { 12007, true }, + { 12018, true }, + { 12030, true }, + { 12043, true }, + { 12062, true }, + { 12073, true }, + { 12086, true }, + { 12100, true }, + { 12118, false }, + { 12131, false }, + { 12140, true }, + { 12162, true }, + { 12179, true }, + { 12196, true }, + { 12208, true }, + { 12228, true }, + { 12239, true }, + { 12250, true }, + { 12268, true }, + { 12300, true }, + { 12327, true }, + { 12339, true }, + { 12349, true }, + { 12367, true }, + { 12382, true }, + { 12394, true }, + { 12406, true }, + { 12426, true }, + { 12445, true }, + { 12465, true }, + { 12488, false }, + { 12512, true }, + { 12524, true }, + { 12535, true }, + { 12547, true }, + { 12559, true }, + { 12575, true }, + { 12592, true }, + { 12611, true }, + { 12625, true }, + { 12636, true }, + { 12652, true }, + { 12671, true }, + { 12684, true }, + { 12694, true }, + { 12704, true }, + { 12717, true }, + { 12729, false }, + { 12753, true }, + { 12772, true }, + { 12786, true }, + { 12802, true }, + { 12818, true }, + { 12830, true }, + { 12841, true }, + { 12857, true }, + { 12874, true }, + { 12888, true }, + { 12903, true }, + { 12918, true }, + { 12929, true }, + { 12947, true }, + { 12963, true }, + { 12984, true }, + { 12998, true }, + { 13013, true }, + { 13026, true }, + { 13043, false }, + { 13050, true }, + { 13063, true }, + { 13076, true }, + { 13092, true }, + { 13103, true }, + { 13115, true }, + { 13126, true }, + { 13133, true }, + { 13145, true }, + { 13153, false }, + { 13164, true }, + { 13175, true }, + { 13185, true }, + { 13198, false }, + { 13206, true }, + { 13216, true }, + { 13223, true }, + { 13237, false }, + { 13251, true }, + { 13267, true }, + { 13286, true }, + { 13311, true }, + { 13320, true }, + { 13331, true }, + { 13339, true }, + { 13369, true }, + { 13392, true }, + { 13405, true }, + { 13424, true }, + { 13436, true }, + { 13449, false }, + { 13468, true }, + { 13484, false }, + { 13500, true }, + { 13516, false }, + { 13531, false }, + { 13544, true }, + { 13560, true }, + { 13572, true }, + { 13591, true }, + { 13612, true }, + { 13625, true }, + { 13634, true }, + { 13647, true }, + { 13661, true }, + { 13671, true }, + { 13682, true }, + { 13693, true }, + { 13705, true }, + { 13721, true }, + { 13738, false }, + { 13755, true }, + { 13777, true }, + { 13803, true }, + { 13816, true }, + { 13825, true }, + { 13839, true }, + { 13858, true }, + { 13879, true }, + { 13891, true }, + { 13905, true }, + { 13929, true }, + { 13938, true }, + { 13951, true }, + { 13964, true }, + { 13978, true }, + { 13994, true }, + { 14011, true }, + { 14022, true }, + { 14031, true }, + { 14044, true }, + { 14057, true }, + { 14069, true }, + { 14090, false }, + { 14108, true }, + { 14131, true }, + { 14158, true }, + { 14177, true }, + { 14189, true }, + { 14209, true }, + { 14220, true }, + { 14237, true }, + { 14249, true }, + { 14263, true }, + { 14271, true }, + { 14288, true }, + { 14301, true }, + { 14313, true }, + { 14326, true }, + { 14342, true }, + { 14354, true }, + { 14372, true }, + { 14384, true }, + { 14407, true }, + { 14420, true }, + { 14436, true }, { 14450, true }, - { 14462, true }, - { 14472, true }, - { 14488, true }, - { 14500, true }, - { 14511, true }, - { 14521, true }, - { 14538, true }, - { 14557, true }, - { 14569, true }, - { 14581, true }, - { 14594, true }, - { 14620, true }, - { 14636, true }, - { 14649, true }, - { 14663, true }, - { 14673, true }, - { 14689, true }, - { 14708, true }, - { 14732, true }, - { 14760, true }, - { 14773, true }, - { 14787, true }, - { 14798, true }, - { 14811, true }, - { 14820, true }, - { 14833, true }, - { 14845, true }, - { 14859, true }, - { 14875, true }, - { 14891, true }, - { 14911, true }, - { 14925, true }, - { 14933, true }, - { 14947, true }, - { 14965, true }, - { 14985, true }, - { 15007, true }, - { 15019, true }, - { 15034, true }, - { 15050, true }, - { 15064, false }, - { 15077, true }, - { 15092, true }, - { 15105, true }, - { 15123, true }, - { 15137, true }, - { 15146, true }, - { 15158, true }, - { 15176, true }, - { 15196, false }, - { 15211, true }, - { 15224, true }, - { 15237, true }, - { 15247, true }, - { 15261, true }, - { 15287, true }, - { 15297, true }, - { 15311, true }, - { 15323, true }, - { 15341, true }, - { 15359, false }, - { 15375, true }, - { 15385, true }, - { 15397, true }, - { 15408, true }, - { 15421, true }, - { 15437, true }, - { 15445, true }, - { 15467, true }, - { 15482, true }, - { 15493, true }, - { 15503, true }, - { 15525, true }, - { 15540, true }, - { 15559, true }, - { 15572, true }, - { 15590, false }, - { 15605, true }, - { 15625, true }, - { 15636, true }, - { 15648, true }, - { 15661, true }, - { 15681, true }, - { 15693, false }, - { 15707, true }, - { 15717, true }, - { 15730, true }, - { 15745, true }, - { 15763, true }, - { 15777, true }, - { 15790, true }, - { 15803, true }, - { 15815, true }, - { 15829, true }, - { 15849, true }, - { 15862, true }, - { 15876, true }, - { 15889, true }, - { 15901, true }, - { 15919, true }, - { 15931, true }, - { 15942, true }, - { 15953, true }, - { 15966, true }, - { 15979, true }, - { 15994, true }, - { 16005, true }, - { 16016, true }, - { 16031, true }, - { 16042, true }, - { 16052, true }, - { 16064, true }, - { 16085, true }, - { 16096, true }, - { 16105, true }, - { 16112, true }, - { 16126, true }, - { 16136, true }, - { 16149, true }, - { 16162, true }, - { 16174, true }, - { 16191, true }, - { 16202, true }, - { 16216, true }, - { 16226, true }, - { 16244, true }, - { 16254, true }, - { 16266, true }, - { 16280, true }, - { 16297, true }, - { 16311, true }, - { 16321, true }, - { 16337, true }, - { 16348, true }, - { 16372, true }, - { 16389, true }, - { 16406, true }, - { 16418, true }, - { 16434, true }, - { 16456, true }, - { 16482, true }, - { 16497, true }, - { 16510, true }, - { 16528, true }, - { 16539, true }, - { 16549, true }, - { 16559, true }, - { 16578, true }, - { 16598, true }, - { 16610, true }, - { 16624, true }, - { 16649, true }, - { 16671, true }, - { 16683, true }, - { 16701, true }, - { 16713, true }, - { 16726, true }, - { 16746, true }, - { 16774, true }, - { 16783, true }, - { 16793, true }, - { 16801, true }, - { 16813, true }, - { 16822, false }, - { 16842, true }, - { 16849, true }, - { 16865, true }, - { 16881, true }, - { 16896, true }, - { 16906, true }, - { 16924, true }, - { 16939, true }, - { 16966, true }, - { 16983, true }, - { 17001, true }, - { 17009, true }, - { 17023, true }, - { 17034, true }, - { 17043, true }, - { 17070, true }, - { 17078, true }, - { 17088, true }, - { 17104, true }, - { 17116, true }, - { 17131, true }, - { 17143, true }, - { 17158, true }, - { 17173, true }, - { 17185, true }, - { 17208, true }, - { 17229, true }, - { 17249, true }, - { 17266, true }, - { 17284, true }, - { 17298, true }, - { 17310, true }, - { 17324, true }, - { 17334, true }, - { 17348, true }, - { 17358, true }, - { 17373, true }, - { 17388, true }, - { 17399, true }, - { 17412, true }, - { 17424, true }, - { 17437, true }, - { 17449, true }, - { 17457, true }, - { 17470, true }, - { 17491, true }, - { 17512, true }, - { 17533, true }, - { 17547, true }, - { 17563, true }, - { 17575, true }, - { 17587, true }, - { 17599, true }, - { 17611, true }, - { 17624, true }, - { 17634, true }, - { 17643, true }, - { 17653, true }, - { 17668, true }, - { 17679, true }, - { 17694, true }, - { 17707, true }, - { 17726, true }, - { 17738, true }, - { 17754, true }, - { 17766, true }, - { 17782, true }, - { 17801, true }, - { 17820, true }, - { 17833, true }, - { 17844, true }, - { 17855, true }, - { 17873, true }, - { 17903, true }, - { 17926, true }, - { 17939, false }, - { 17947, true }, - { 17959, true }, - { 17976, true }, - { 17986, true }, - { 17996, true }, - { 18010, true }, - { 18026, true }, - { 18037, true }, - { 18066, true }, - { 18082, true }, - { 18098, true }, - { 18116, true }, - { 18137, true }, - { 18149, true }, - { 18160, true }, - { 18172, true }, - { 18184, true }, - { 18202, true }, - { 18220, true }, - { 18241, true }, - { 18266, true }, - { 18284, true }, - { 18295, true }, - { 18320, true }, - { 18333, true }, - { 18348, true }, - { 18365, true }, - { 18393, true }, - { 18416, true }, - { 18431, true }, - { 18444, true }, - { 18457, true }, - { 18470, true }, - { 18483, true }, - { 18496, true }, - { 18509, true }, - { 18538, true }, - { 18544, true }, - { 18560, true }, + { 14456, true }, + { 14468, true }, + { 14478, true }, + { 14494, true }, + { 14506, true }, + { 14517, true }, + { 14527, true }, + { 14544, true }, + { 14563, true }, + { 14575, true }, + { 14587, true }, + { 14600, true }, + { 14626, true }, + { 14642, true }, + { 14655, true }, + { 14669, true }, + { 14679, true }, + { 14695, true }, + { 14714, true }, + { 14738, true }, + { 14766, true }, + { 14779, true }, + { 14793, true }, + { 14804, true }, + { 14817, true }, + { 14826, true }, + { 14839, true }, + { 14851, true }, + { 14865, true }, + { 14881, true }, + { 14897, true }, + { 14917, true }, + { 14931, true }, + { 14939, true }, + { 14953, true }, + { 14971, true }, + { 14991, true }, + { 15013, true }, + { 15025, true }, + { 15040, true }, + { 15056, true }, + { 15070, false }, + { 15083, true }, + { 15098, true }, + { 15111, true }, + { 15129, true }, + { 15143, true }, + { 15152, true }, + { 15164, true }, + { 15182, true }, + { 15202, false }, + { 15217, true }, + { 15230, true }, + { 15243, true }, + { 15253, true }, + { 15267, true }, + { 15293, true }, + { 15303, true }, + { 15317, true }, + { 15329, true }, + { 15347, true }, + { 15365, false }, + { 15381, true }, + { 15391, true }, + { 15403, true }, + { 15414, true }, + { 15427, true }, + { 15443, true }, + { 15451, true }, + { 15473, true }, + { 15488, true }, + { 15499, true }, + { 15509, true }, + { 15531, true }, + { 15546, true }, + { 15565, true }, + { 15578, true }, + { 15596, false }, + { 15611, true }, + { 15631, true }, + { 15642, true }, + { 15654, true }, + { 15667, true }, + { 15687, true }, + { 15699, false }, + { 15713, true }, + { 15723, true }, + { 15736, true }, + { 15751, true }, + { 15769, true }, + { 15783, true }, + { 15796, true }, + { 15809, true }, + { 15821, true }, + { 15835, true }, + { 15855, true }, + { 15868, true }, + { 15882, true }, + { 15895, true }, + { 15907, true }, + { 15925, true }, + { 15937, true }, + { 15948, true }, + { 15959, true }, + { 15972, true }, + { 15985, true }, + { 16000, true }, + { 16011, true }, + { 16022, true }, + { 16037, true }, + { 16048, true }, + { 16058, true }, + { 16070, true }, + { 16091, true }, + { 16102, true }, + { 16111, true }, + { 16118, true }, + { 16132, true }, + { 16142, true }, + { 16155, true }, + { 16168, true }, + { 16180, true }, + { 16197, true }, + { 16208, true }, + { 16222, true }, + { 16232, true }, + { 16250, true }, + { 16260, true }, + { 16272, true }, + { 16286, true }, + { 16303, true }, + { 16317, true }, + { 16327, true }, + { 16343, true }, + { 16354, true }, + { 16378, true }, + { 16395, true }, + { 16412, true }, + { 16424, true }, + { 16440, true }, + { 16462, true }, + { 16488, true }, + { 16503, true }, + { 16516, true }, + { 16534, true }, + { 16545, true }, + { 16555, true }, + { 16565, true }, + { 16584, true }, + { 16604, true }, + { 16616, true }, + { 16630, true }, + { 16655, true }, + { 16677, true }, + { 16689, true }, + { 16707, true }, + { 16719, true }, + { 16732, true }, + { 16752, true }, + { 16780, true }, + { 16789, true }, + { 16799, true }, + { 16807, true }, + { 16819, true }, + { 16828, false }, + { 16848, true }, + { 16855, true }, + { 16871, true }, + { 16887, true }, + { 16902, true }, + { 16912, true }, + { 16930, true }, + { 16945, true }, + { 16972, true }, + { 16989, true }, + { 17007, true }, + { 17015, true }, + { 17029, true }, + { 17040, true }, + { 17049, true }, + { 17076, true }, + { 17084, true }, + { 17094, true }, + { 17110, true }, + { 17122, true }, + { 17137, true }, + { 17149, true }, + { 17164, true }, + { 17179, true }, + { 17191, true }, + { 17214, true }, + { 17235, true }, + { 17255, true }, + { 17272, true }, + { 17290, true }, + { 17304, true }, + { 17316, true }, + { 17330, true }, + { 17340, true }, + { 17354, true }, + { 17364, true }, + { 17379, true }, + { 17394, true }, + { 17405, true }, + { 17418, true }, + { 17430, true }, + { 17443, true }, + { 17455, true }, + { 17463, true }, + { 17476, true }, + { 17497, true }, + { 17518, true }, + { 17539, true }, + { 17553, true }, + { 17569, true }, + { 17581, true }, + { 17593, true }, + { 17605, true }, + { 17617, true }, + { 17630, true }, + { 17640, true }, + { 17649, true }, + { 17659, true }, + { 17674, true }, + { 17685, true }, + { 17700, true }, + { 17713, true }, + { 17732, true }, + { 17744, true }, + { 17760, true }, + { 17772, true }, + { 17788, true }, + { 17807, true }, + { 17826, true }, + { 17839, true }, + { 17850, true }, + { 17861, true }, + { 17879, true }, + { 17909, true }, + { 17932, true }, + { 17945, false }, + { 17953, true }, + { 17965, true }, + { 17982, true }, + { 17992, true }, + { 18002, true }, + { 18016, true }, + { 18032, true }, + { 18043, true }, + { 18072, true }, + { 18088, true }, + { 18104, true }, + { 18122, true }, + { 18143, true }, + { 18155, true }, + { 18166, true }, + { 18178, true }, + { 18190, true }, + { 18208, true }, + { 18229, true }, + { 18254, true }, + { 18272, true }, + { 18283, true }, + { 18308, true }, + { 18321, true }, + { 18336, true }, + { 18353, true }, + { 18381, true }, + { 18404, true }, + { 18419, true }, + { 18432, true }, + { 18445, true }, + { 18458, true }, + { 18471, true }, + { 18484, true }, + { 18497, true }, + { 18526, true }, + { 18532, true }, + { 18548, true }, + { 18558, true }, { 18570, true }, - { 18582, true }, - { 18598, true }, + { 18586, true }, + { 18603, true }, { 18615, true }, - { 18627, true }, - { 18640, true }, - { 18648, true }, - { 18659, true }, - { 18670, true }, - { 18688, true }, + { 18628, true }, + { 18636, true }, + { 18647, true }, + { 18658, true }, + { 18676, true }, + { 18691, true }, { 18700, true }, - { 18715, true }, - { 18724, true }, - { 18742, true }, - { 18751, true }, - { 18765, true }, - { 18787, true }, - { 18801, true }, - { 18812, true }, - { 18820, true }, - { 18830, true }, - { 18842, true }, - { 18850, true }, - { 18860, true }, - { 18875, true }, - { 18883, true }, - { 18893, true }, - { 18918, true }, - { 18934, true }, + { 18718, true }, + { 18727, true }, + { 18741, true }, + { 18763, true }, + { 18777, true }, + { 18788, true }, + { 18796, true }, + { 18806, true }, + { 18818, true }, + { 18826, true }, + { 18836, true }, + { 18851, true }, + { 18859, true }, + { 18869, true }, + { 18894, true }, + { 18910, true }, + { 18920, true }, { 18944, true }, + { 18951, true }, { 18968, true }, - { 18975, true }, - { 18992, true }, - { 19000, true }, - { 19009, true }, - { 19020, true }, - { 19027, true }, - { 19039, true }, - { 19050, true }, - { 19061, true }, - { 19073, true }, - { 19085, false }, - { 19094, true }, - { 19110, true }, - { 19123, true }, - { 19132, true }, + { 18976, true }, + { 18985, true }, + { 18996, true }, + { 19003, true }, + { 19015, true }, + { 19026, true }, + { 19037, true }, + { 19049, true }, + { 19061, false }, + { 19070, true }, + { 19086, true }, + { 19099, true }, + { 19108, true }, + { 19129, true }, + { 19138, true }, { 19153, true }, - { 19162, true }, - { 19177, true }, - { 19187, true }, - { 19199, true }, - { 19217, false }, - { 19233, true }, - { 19245, true }, - { 19256, true }, - { 19266, true }, - { 19276, true }, - { 19286, true }, - { 19298, true }, - { 19311, true }, + { 19163, true }, + { 19175, true }, + { 19193, false }, + { 19209, true }, + { 19221, true }, + { 19232, true }, + { 19242, true }, + { 19252, true }, + { 19262, true }, + { 19274, true }, + { 19287, true }, + { 19300, true }, + { 19310, true }, { 19324, true }, { 19334, true }, - { 19348, true }, - { 19358, true }, + { 19342, true }, + { 19354, true }, { 19366, true }, - { 19378, true }, - { 19390, true }, - { 19403, true }, - { 19419, true }, - { 19435, true }, - { 19446, false }, - { 19456, true }, - { 19473, true }, - { 19481, true }, - { 19493, true }, - { 19507, true }, + { 19379, true }, + { 19395, true }, + { 19411, true }, + { 19422, false }, + { 19432, true }, + { 19449, true }, + { 19457, true }, + { 19469, true }, + { 19483, true }, + { 19513, true }, + { 19528, false }, { 19537, true }, - { 19552, false }, - { 19561, true }, - { 19575, true }, - { 19596, true }, - { 19607, true }, - { 19619, true }, - { 19632, true }, - { 19656, true }, - { 19669, true }, - { 19681, true }, - { 19704, true }, - { 19715, true }, - { 19747, true }, - { 19767, true }, - { 19785, true }, - { 19803, true }, - { 19818, true }, - { 19833, true }, - { 19848, true }, + { 19551, true }, + { 19565, true }, + { 19586, true }, + { 19597, true }, + { 19609, true }, + { 19622, true }, + { 19646, true }, + { 19659, true }, + { 19671, true }, + { 19694, true }, + { 19705, true }, + { 19737, true }, + { 19757, true }, + { 19775, true }, + { 19793, true }, + { 19808, true }, + { 19823, true }, + { 19838, true }, + { 19862, true }, { 19872, true }, { 19882, true }, { 19892, true }, - { 19902, true }, - { 19913, true }, - { 19938, true }, - { 19967, true }, + { 19903, true }, + { 19928, true }, + { 19957, true }, + { 19970, true }, { 19980, true }, - { 19990, true }, - { 19998, true }, - { 20007, true }, - { 20021, false }, - { 20038, true }, - { 20050, true }, - { 20065, true }, - { 20072, true }, - { 20085, true }, - { 20097, true }, - { 20121, true }, - { 20135, true }, - { 20143, true }, - { 20167, true }, - { 20182, true }, - { 20191, true }, - { 20204, true }, - { 20216, true }, + { 19988, true }, + { 19997, true }, + { 20011, false }, + { 20028, true }, + { 20040, true }, + { 20055, true }, + { 20062, true }, + { 20075, true }, + { 20087, true }, + { 20111, true }, + { 20125, true }, + { 20133, true }, + { 20157, true }, + { 20172, true }, + { 20181, true }, + { 20194, true }, + { 20206, true }, + { 20217, true }, { 20227, true }, - { 20237, true }, - { 20252, true }, - { 20269, true }, - { 20282, true }, + { 20242, true }, + { 20259, true }, + { 20272, true }, + { 20288, true }, { 20298, true }, - { 20308, true }, - { 20321, true }, - { 20335, true }, - { 20349, true }, - { 20361, true }, - { 20381, true }, - { 20396, true }, - { 20412, true }, - { 20426, true }, - { 20441, true }, - { 20454, true }, - { 20470, true }, - { 20482, true }, - { 20494, true }, - { 20506, true }, - { 20517, true }, - { 20528, true }, - { 20539, true }, - { 20562, true }, - { 20577, true }, - { 20592, false }, - { 20607, false }, - { 20623, true }, - { 20645, true }, - { 20663, true }, - { 20680, true }, - { 20698, true }, - { 20709, true }, - { 20722, true }, - { 20739, true }, - { 20766, true }, - { 20782, true }, - { 20802, true }, - { 20817, true }, - { 20832, true }, - { 20846, true }, - { 20857, true }, - { 20880, true }, - { 20892, true }, - { 20905, true }, - { 20918, true }, - { 20932, true }, - { 20945, true }, - { 20963, true }, - { 20981, true }, - { 20999, true }, + { 20311, true }, + { 20325, true }, + { 20339, true }, + { 20351, true }, + { 20371, true }, + { 20386, true }, + { 20402, true }, + { 20416, true }, + { 20431, true }, + { 20444, true }, + { 20460, true }, + { 20472, true }, + { 20484, true }, + { 20496, true }, + { 20507, true }, + { 20518, true }, + { 20529, true }, + { 20552, true }, + { 20567, true }, + { 20582, false }, + { 20597, false }, + { 20613, true }, + { 20635, true }, + { 20653, true }, + { 20670, true }, + { 20688, true }, + { 20699, true }, + { 20712, true }, + { 20729, true }, + { 20756, true }, + { 20772, true }, + { 20792, true }, + { 20807, true }, + { 20822, true }, + { 20836, true }, + { 20847, true }, + { 20870, true }, + { 20882, true }, + { 20895, true }, + { 20908, true }, + { 20922, true }, + { 20935, true }, + { 20953, true }, + { 20971, true }, + { 20989, true }, + { 21006, true }, { 21016, true }, - { 21026, true }, - { 21039, true }, - { 21048, true }, - { 21063, true }, - { 21074, false }, - { 21084, true }, - { 21095, true }, - { 21109, true }, - { 21122, true }, + { 21029, true }, + { 21038, true }, + { 21053, true }, + { 21064, false }, + { 21074, true }, + { 21085, true }, + { 21099, true }, + { 21112, true }, + { 21121, true }, { 21131, true }, - { 21141, true }, - { 21154, true }, - { 21168, true }, + { 21144, true }, + { 21158, true }, + { 21169, true }, { 21179, true }, - { 21189, true }, - { 21207, true }, - { 21227, true }, - { 21240, true }, - { 21261, true }, - { 21278, true }, - { 21298, true }, - { 21317, true }, - { 21332, true }, - { 21345, true }, - { 21365, true }, - { 21383, true }, - { 21394, true }, - { 21407, true }, + { 21197, true }, + { 21217, true }, + { 21230, true }, + { 21251, true }, + { 21268, true }, + { 21288, true }, + { 21307, true }, + { 21322, true }, + { 21335, true }, + { 21355, true }, + { 21373, true }, + { 21384, true }, + { 21397, true }, + { 21412, true }, { 21422, true }, - { 21432, true }, - { 21445, true }, - { 21456, true }, - { 21467, true }, - { 21481, true }, - { 21497, true }, - { 21521, true }, - { 21547, true }, + { 21435, true }, + { 21446, true }, + { 21457, true }, + { 21471, true }, + { 21487, true }, + { 21511, true }, + { 21537, true }, + { 21545, true }, { 21555, true }, - { 21565, true }, - { 21587, true }, - { 21598, true }, - { 21609, true }, - { 21621, true }, - { 21648, true }, - { 21660, true }, - { 21672, true }, - { 21681, true }, - { 21690, true }, - { 21699, true }, - { 21718, true }, - { 21733, true }, - { 21744, true }, + { 21577, true }, + { 21588, true }, + { 21599, true }, + { 21611, true }, + { 21638, true }, + { 21650, true }, + { 21662, true }, + { 21671, true }, + { 21680, true }, + { 21689, true }, + { 21708, true }, + { 21723, true }, + { 21734, true }, + { 21743, true }, { 21753, true }, - { 21763, true }, - { 21775, true }, + { 21765, true }, + { 21774, true }, { 21784, true }, - { 21794, true }, - { 21812, true }, - { 21823, true }, - { 21835, true }, - { 21846, true }, - { 21864, true }, - { 21883, true }, - { 21896, true }, + { 21802, true }, + { 21813, true }, + { 21825, true }, + { 21836, true }, + { 21854, true }, + { 21873, true }, + { 21886, true }, + { 21899, true }, { 21909, true }, - { 21919, true }, + { 21923, true }, { 21933, true }, { 21943, true }, { 21953, true }, - { 21963, true }, - { 21976, true }, - { 21986, false }, - { 21997, true }, + { 21966, true }, + { 21976, false }, + { 21987, true }, + { 22005, true }, { 22015, true }, - { 22025, true }, - { 22032, true }, - { 22044, true }, - { 22065, true }, - { 22081, true }, - { 22094, true }, - { 22107, true }, - { 22124, true }, - { 22136, true }, - { 22149, false }, - { 22163, true }, - { 22176, true }, - { 22187, true }, - { 22198, true }, - { 22210, true }, - { 22224, true }, - { 22242, true }, - { 22254, true }, - { 22271, true }, - { 22284, true }, - { 22295, true }, - { 22304, true }, - { 22322, true }, - { 22339, true }, - { 22350, true }, - { 22361, true }, - { 22386, true }, - { 22400, true }, - { 22413, true }, - { 22427, true }, - { 22440, true }, - { 22454, true }, - { 22469, true }, - { 22481, false }, - { 22492, true }, - { 22507, true }, - { 22525, true }, - { 22538, true }, - { 22551, true }, - { 22567, true }, - { 22581, true }, - { 22603, true }, - { 22615, true }, - { 22628, true }, - { 22643, true }, - { 22655, true }, - { 22671, true }, - { 22684, true }, - { 22709, true }, - { 22721, true }, - { 22731, true }, - { 22759, true }, - { 22774, true }, - { 22790, true }, - { 22801, true }, - { 22812, true }, - { 22822, true }, - { 22835, true }, - { 22845, false }, - { 22859, true }, - { 22868, true }, - { 22880, true }, - { 22894, false }, - { 22913, true }, - { 22940, true }, - { 22961, true }, - { 22977, true }, - { 22988, true }, - { 23006, true }, - { 23021, true }, - { 23032, true }, - { 23047, false }, - { 23062, true }, - { 23072, true }, - { 23083, true }, - { 23097, true }, - { 23119, true }, - { 23132, true }, - { 23147, true }, - { 23162, true }, - { 23181, true }, - { 23202, true }, - { 23212, true }, - { 23226, true }, - { 23239, true }, - { 23254, true }, - { 23275, true }, - { 23295, true }, - { 23316, true }, - { 23334, true }, - { 23346, true }, - { 23364, true }, - { 23385, true }, - { 23405, true }, - { 23423, true }, - { 23437, true }, - { 23456, false }, - { 23470, true }, - { 23480, true }, - { 23491, true }, - { 23501, true }, - { 23516, true }, - { 23529, true }, - { 23544, true }, - { 23558, true }, - { 23571, true }, - { 23584, true }, - { 23598, true }, - { 23615, true }, - { 23631, true }, - { 23641, true }, - { 23654, true }, - { 23671, true }, - { 23680, true }, - { 23694, true }, - { 23714, true }, - { 23732, true }, - { 23752, true }, - { 23766, true }, - { 23782, true }, - { 23791, true }, - { 23801, true }, - { 23809, true }, - { 23818, true }, - { 23827, true }, - { 23844, true }, - { 23857, true }, - { 23867, true }, - { 23877, true }, - { 23887, true }, - { 23905, true }, - { 23924, true }, - { 23948, true }, - { 23968, true }, - { 23983, true }, - { 23998, true }, - { 24031, true }, - { 24049, true }, - { 24077, true }, - { 24093, true }, - { 24111, true }, - { 24134, true }, - { 24156, true }, - { 24182, true }, - { 24200, true }, - { 24222, true }, - { 24236, true }, - { 24256, true }, - { 24269, true }, - { 24281, true }, - { 24293, true }, - { 24307, true }, - { 24321, true }, - { 24339, true }, - { 24354, true }, - { 24366, true }, - { 24385, true }, - { 24407, true }, - { 24424, true }, - { 24439, true }, - { 24460, true }, - { 24478, true }, - { 24492, true }, - { 24511, true }, - { 24532, true }, - { 24549, true }, - { 24563, true }, - { 24577, true }, - { 24598, true }, - { 24611, true }, - { 24627, true }, - { 24640, true }, - { 24659, true }, - { 24676, true }, - { 24694, true }, - { 24712, true }, - { 24721, true }, - { 24737, true }, - { 24744, true }, - { 24760, true }, - { 24779, true }, - { 24797, true }, - { 24813, true }, - { 24827, true }, - { 24839, true }, - { 24850, true }, - { 24864, true }, - { 24874, true }, - { 24885, true }, - { 24894, false }, - { 24903, true }, - { 24917, true }, - { 24931, true }, - { 24943, true }, - { 24958, true }, - { 24966, true }, - { 24978, true }, - { 24993, true }, - { 25007, true }, - { 25020, true }, - { 25031, true }, - { 25039, true }, - { 25062, true }, - { 25074, true }, - { 25089, true }, - { 25105, true }, - { 25114, true }, - { 25129, true }, - { 25145, true }, - { 25158, true }, - { 25173, true }, - { 25186, true }, - { 25197, true }, - { 25207, true }, - { 25219, true }, - { 25239, true }, - { 25252, true }, - { 25271, true }, - { 25281, true }, - { 25289, true }, - { 25299, true }, - { 25320, true }, - { 25332, true }, - { 25347, true }, - { 25362, true }, - { 25377, true }, - { 25392, true }, - { 25402, true }, - { 25417, true }, - { 25433, true }, - { 25452, true }, - { 25473, true }, - { 25482, true }, - { 25511, true }, - { 25524, true }, - { 25544, true }, - { 25559, true }, - { 25570, true }, - { 25583, true }, - { 25598, true }, - { 25617, true }, - { 25632, true }, - { 25647, true }, - { 25657, true }, - { 25667, true }, - { 25682, true }, - { 25704, true }, - { 25719, true }, - { 25732, true }, - { 25759, true }, - { 25773, true }, - { 25785, true }, - { 25800, true }, - { 25814, true }, - { 25824, true }, - { 25845, true }, - { 25853, true }, - { 25870, true }, - { 25892, true }, - { 25910, false }, - { 25929, true }, - { 25943, true }, - { 25955, true }, - { 25970, true }, - { 25987, true }, - { 26002, true }, - { 26013, true }, - { 26023, true }, - { 26039, true }, - { 26057, true }, - { 26069, true }, - { 26081, true }, - { 26111, true }, - { 26125, false }, - { 26138, true }, - { 26155, true }, - { 26173, true }, - { 26186, true }, - { 26198, true }, - { 26221, true }, - { 26240, true }, - { 26253, true }, - { 26261, true }, - { 26273, false }, - { 26284, true }, - { 26302, true }, - { 26326, true }, - { 26346, true }, - { 26358, true }, - { 26379, true }, - { 26390, true }, - { 26402, true }, - { 26419, true }, - { 26437, true }, - { 26450, true }, - { 26466, true }, - { 26476, true }, - { 26490, true }, - { 26507, true }, - { 26518, true }, - { 26527, true }, - { 26539, true }, - { 26550, true }, - { 26560, true }, - { 26574, true }, - { 26587, true }, - { 26601, true }, - { 26619, true }, - { 26638, true }, - { 26656, true }, - { 26669, true }, - { 26680, true }, - { 26694, true }, - { 26706, true }, - { 26717, true }, - { 26728, true }, - { 26741, true }, - { 26753, true }, - { 26764, true }, - { 26783, true }, - { 26799, true }, - { 26813, true }, - { 26828, true }, - { 26853, true }, - { 26865, true }, - { 26880, true }, - { 26889, true }, - { 26904, true }, - { 26918, true }, - { 26931, true }, - { 26943, true }, - { 26955, true }, - { 26969, true }, - { 26980, true }, - { 26994, true }, - { 27005, true }, - { 27016, true }, - { 27026, true }, - { 27040, true }, - { 27050, true }, - { 27063, true }, - { 27074, true }, - { 27085, true }, - { 27096, true }, - { 27111, true }, - { 27124, true }, - { 27138, true }, - { 27150, true }, - { 27164, true }, - { 27176, true }, - { 27189, true }, - { 27214, true }, - { 27231, true }, - { 27242, true }, - { 27253, true }, - { 27272, true }, - { 27288, true }, - { 27298, true }, - { 27312, true }, - { 27323, true }, - { 27335, true }, - { 27350, true }, - { 27369, true }, - { 27386, true }, - { 27394, true }, - { 27412, false }, - { 27420, true }, - { 27435, true }, - { 27448, true }, - { 27460, true }, - { 27472, true }, - { 27486, true }, - { 27499, true }, - { 27512, true }, - { 27528, true }, - { 27542, true }, - { 27559, true }, - { 27576, true }, - { 27589, true }, - { 27602, true }, - { 27615, true }, - { 27628, true }, - { 27641, true }, - { 27654, true }, - { 27667, true }, - { 27680, true }, - { 27693, true }, - { 27706, true }, - { 27719, true }, - { 27732, true }, - { 27745, true }, - { 27758, true }, - { 27775, true }, - { 27794, true }, - { 27811, true }, - { 27824, true }, - { 27835, true }, - { 27847, true }, - { 27869, true }, - { 27881, true }, - { 27904, true }, - { 27928, true }, - { 27946, true }, - { 27959, true }, - { 27978, true }, - { 27994, true }, + { 22022, true }, + { 22034, true }, + { 22055, true }, + { 22071, true }, + { 22084, true }, + { 22097, true }, + { 22114, true }, + { 22126, true }, + { 22139, false }, + { 22153, true }, + { 22166, true }, + { 22177, true }, + { 22188, true }, + { 22200, true }, + { 22214, true }, + { 22232, true }, + { 22244, true }, + { 22261, true }, + { 22274, true }, + { 22285, true }, + { 22294, true }, + { 22312, true }, + { 22329, true }, + { 22340, true }, + { 22351, true }, + { 22376, true }, + { 22390, true }, + { 22403, true }, + { 22417, true }, + { 22430, true }, + { 22444, true }, + { 22459, true }, + { 22471, true }, + { 22487, false }, + { 22498, true }, + { 22513, true }, + { 22531, true }, + { 22544, true }, + { 22557, true }, + { 22573, true }, + { 22587, true }, + { 22609, true }, + { 22621, true }, + { 22634, true }, + { 22649, true }, + { 22661, true }, + { 22677, true }, + { 22690, true }, + { 22715, true }, + { 22727, true }, + { 22737, true }, + { 22765, true }, + { 22780, true }, + { 22796, true }, + { 22807, true }, + { 22818, true }, + { 22828, true }, + { 22841, true }, + { 22851, false }, + { 22865, true }, + { 22874, true }, + { 22886, true }, + { 22900, false }, + { 22919, true }, + { 22946, true }, + { 22967, true }, + { 22983, true }, + { 22994, true }, + { 23012, true }, + { 23027, true }, + { 23038, true }, + { 23053, false }, + { 23068, true }, + { 23078, true }, + { 23089, true }, + { 23103, true }, + { 23125, true }, + { 23138, true }, + { 23153, true }, + { 23168, true }, + { 23187, true }, + { 23208, true }, + { 23218, true }, + { 23232, true }, + { 23245, true }, + { 23260, true }, + { 23281, true }, + { 23301, true }, + { 23322, true }, + { 23340, true }, + { 23352, true }, + { 23370, true }, + { 23391, true }, + { 23411, true }, + { 23429, true }, + { 23443, true }, + { 23462, false }, + { 23476, true }, + { 23486, true }, + { 23497, true }, + { 23507, true }, + { 23522, true }, + { 23535, true }, + { 23550, true }, + { 23564, true }, + { 23577, true }, + { 23590, true }, + { 23604, true }, + { 23621, true }, + { 23637, true }, + { 23647, true }, + { 23660, true }, + { 23677, true }, + { 23686, true }, + { 23700, true }, + { 23720, true }, + { 23738, true }, + { 23758, true }, + { 23772, true }, + { 23788, true }, + { 23797, true }, + { 23807, true }, + { 23815, true }, + { 23824, true }, + { 23833, true }, + { 23850, true }, + { 23863, true }, + { 23873, true }, + { 23883, true }, + { 23893, true }, + { 23911, true }, + { 23930, true }, + { 23954, true }, + { 23974, true }, + { 23989, true }, + { 24004, true }, + { 24037, true }, + { 24055, true }, + { 24083, true }, + { 24099, true }, + { 24117, true }, + { 24140, true }, + { 24162, true }, + { 24188, true }, + { 24206, true }, + { 24228, true }, + { 24242, true }, + { 24262, true }, + { 24275, true }, + { 24287, true }, + { 24299, true }, + { 24313, true }, + { 24327, true }, + { 24345, true }, + { 24360, true }, + { 24372, true }, + { 24391, true }, + { 24413, true }, + { 24430, true }, + { 24445, true }, + { 24466, true }, + { 24484, true }, + { 24498, true }, + { 24517, true }, + { 24538, true }, + { 24555, true }, + { 24569, true }, + { 24583, true }, + { 24604, true }, + { 24617, true }, + { 24633, true }, + { 24646, true }, + { 24665, true }, + { 24682, true }, + { 24700, true }, + { 24718, true }, + { 24727, true }, + { 24743, true }, + { 24750, true }, + { 24766, true }, + { 24785, true }, + { 24803, true }, + { 24819, true }, + { 24833, true }, + { 24845, true }, + { 24856, true }, + { 24870, true }, + { 24880, true }, + { 24891, true }, + { 24900, false }, + { 24909, true }, + { 24923, true }, + { 24937, true }, + { 24949, true }, + { 24964, true }, + { 24972, true }, + { 24984, true }, + { 24999, true }, + { 25013, true }, + { 25026, true }, + { 25037, true }, + { 25045, true }, + { 25068, true }, + { 25080, true }, + { 25095, true }, + { 25111, true }, + { 25120, true }, + { 25135, true }, + { 25151, true }, + { 25164, true }, + { 25179, true }, + { 25192, true }, + { 25203, true }, + { 25213, true }, + { 25225, true }, + { 25245, true }, + { 25258, true }, + { 25277, true }, + { 25287, true }, + { 25295, true }, + { 25305, true }, + { 25326, true }, + { 25338, true }, + { 25353, true }, + { 25368, true }, + { 25383, true }, + { 25398, true }, + { 25408, true }, + { 25423, true }, + { 25439, true }, + { 25458, true }, + { 25479, true }, + { 25488, true }, + { 25517, true }, + { 25530, true }, + { 25550, true }, + { 25565, true }, + { 25576, true }, + { 25589, true }, + { 25604, true }, + { 25623, true }, + { 25638, true }, + { 25653, true }, + { 25663, true }, + { 25673, true }, + { 25688, true }, + { 25710, true }, + { 25725, true }, + { 25738, true }, + { 25765, true }, + { 25779, true }, + { 25791, true }, + { 25806, true }, + { 25820, true }, + { 25830, true }, + { 25851, true }, + { 25859, true }, + { 25876, true }, + { 25898, true }, + { 25916, false }, + { 25935, true }, + { 25949, true }, + { 25961, true }, + { 25976, true }, + { 25993, true }, + { 26008, true }, + { 26019, true }, + { 26029, true }, + { 26045, true }, + { 26063, true }, + { 26075, true }, + { 26087, true }, + { 26117, true }, + { 26131, false }, + { 26144, true }, + { 26161, true }, + { 26179, true }, + { 26192, true }, + { 26204, true }, + { 26227, true }, + { 26246, true }, + { 26259, true }, + { 26267, true }, + { 26279, false }, + { 26290, true }, + { 26308, true }, + { 26332, true }, + { 26352, true }, + { 26364, true }, + { 26385, true }, + { 26396, true }, + { 26408, true }, + { 26425, true }, + { 26443, true }, + { 26456, true }, + { 26472, true }, + { 26482, true }, + { 26496, true }, + { 26513, true }, + { 26524, true }, + { 26533, true }, + { 26545, true }, + { 26556, true }, + { 26566, true }, + { 26580, true }, + { 26593, true }, + { 26607, true }, + { 26625, true }, + { 26644, true }, + { 26662, true }, + { 26675, true }, + { 26686, true }, + { 26700, true }, + { 26712, true }, + { 26723, true }, + { 26734, true }, + { 26747, true }, + { 26759, true }, + { 26770, true }, + { 26789, true }, + { 26805, true }, + { 26819, true }, + { 26834, true }, + { 26859, true }, + { 26871, true }, + { 26886, true }, + { 26895, true }, + { 26910, true }, + { 26924, true }, + { 26937, true }, + { 26949, true }, + { 26961, true }, + { 26975, true }, + { 26986, true }, + { 27000, true }, + { 27011, true }, + { 27022, true }, + { 27032, true }, + { 27046, true }, + { 27056, true }, + { 27069, true }, + { 27080, true }, + { 27091, true }, + { 27102, true }, + { 27117, true }, + { 27130, true }, + { 27144, true }, + { 27156, true }, + { 27170, true }, + { 27182, true }, + { 27195, true }, + { 27220, true }, + { 27237, true }, + { 27248, true }, + { 27259, true }, + { 27278, true }, + { 27294, true }, + { 27304, true }, + { 27318, true }, + { 27329, true }, + { 27341, true }, + { 27356, true }, + { 27375, true }, + { 27392, true }, + { 27400, true }, + { 27418, false }, + { 27426, true }, + { 27441, true }, + { 27454, true }, + { 27466, true }, + { 27478, true }, + { 27492, true }, + { 27505, true }, + { 27518, true }, + { 27534, true }, + { 27548, true }, + { 27565, true }, + { 27582, true }, + { 27595, true }, + { 27608, true }, + { 27621, true }, + { 27634, true }, + { 27647, true }, + { 27660, true }, + { 27673, true }, + { 27686, true }, + { 27699, true }, + { 27712, true }, + { 27725, true }, + { 27738, true }, + { 27751, true }, + { 27764, true }, + { 27781, true }, + { 27800, true }, + { 27815, true }, + { 27832, true }, + { 27845, true }, + { 27856, true }, + { 27868, true }, + { 27890, true }, + { 27902, true }, + { 27925, true }, + { 27949, true }, + { 27967, true }, + { 27980, true }, + { 27999, true }, { 28015, true }, - { 28026, true }, - { 28042, true }, - { 28055, true }, - { 28070, true }, - { 28088, true }, - { 28104, true }, - { 28120, true }, - { 28130, true }, - { 28144, true }, - { 28159, true }, - { 28178, true }, - { 28195, true }, - { 28206, true }, - { 28222, true }, - { 28234, true }, - { 28250, true }, - { 28260, true }, + { 28036, true }, + { 28047, true }, + { 28063, true }, + { 28076, true }, + { 28091, true }, + { 28109, true }, + { 28125, true }, + { 28141, true }, + { 28151, true }, + { 28165, true }, + { 28180, true }, + { 28199, true }, + { 28216, true }, + { 28227, true }, + { 28243, true }, + { 28255, true }, + { 28271, true }, { 28281, true }, - { 28295, true }, - { 28311, true }, - { 28333, true }, - { 28345, true }, - { 28356, true }, - { 28371, true }, - { 28382, true }, - { 28397, true }, - { 28412, true }, - { 28424, true }, - { 28443, true }, - { 28456, true }, - { 28470, true }, - { 28492, true }, - { 28511, true }, - { 28531, true }, - { 28545, true }, - { 28553, true }, + { 28302, true }, + { 28316, true }, + { 28332, true }, + { 28354, true }, + { 28366, true }, + { 28377, true }, + { 28392, true }, + { 28403, true }, + { 28418, true }, + { 28433, true }, + { 28445, true }, + { 28464, true }, + { 28477, true }, + { 28491, true }, + { 28513, true }, + { 28532, true }, + { 28552, true }, { 28566, true }, - { 28580, true }, - { 28591, true }, - { 28604, true }, - { 28619, true }, - { 28635, true }, - { 28650, true }, - { 28662, true }, - { 28676, true }, - { 28688, true }, - { 28700, true }, - { 28717, false }, - { 28733, false }, - { 28753, true }, - { 28766, true }, - { 28778, true }, - { 28791, true }, - { 28808, true }, - { 28824, true }, - { 28849, true }, - { 28862, true }, - { 28875, true }, - { 28886, true }, - { 28895, true }, - { 28904, true }, - { 28913, true }, - { 28929, true }, - { 28943, true }, - { 28959, true }, - { 28970, true }, - { 28983, true }, - { 28998, true }, - { 29012, true }, - { 29024, true }, - { 29036, true }, - { 29060, true }, - { 29073, true }, - { 29087, true }, - { 29100, true }, + { 28574, true }, + { 28587, true }, + { 28601, true }, + { 28612, true }, + { 28625, true }, + { 28640, true }, + { 28656, true }, + { 28671, true }, + { 28683, true }, + { 28697, true }, + { 28709, true }, + { 28721, true }, + { 28738, false }, + { 28754, false }, + { 28774, true }, + { 28787, true }, + { 28799, true }, + { 28812, true }, + { 28829, true }, + { 28845, true }, + { 28870, true }, + { 28883, true }, + { 28896, true }, + { 28907, true }, + { 28916, true }, + { 28925, true }, + { 28934, true }, + { 28950, true }, + { 28964, true }, + { 28980, true }, + { 28991, true }, + { 29004, true }, + { 29019, true }, + { 29033, true }, + { 29045, true }, + { 29057, true }, + { 29081, true }, + { 29094, true }, + { 29108, true }, { 29121, true }, - { 29141, true }, - { 29155, true }, - { 29170, true }, - { 29179, true }, - { 29190, true }, + { 29142, true }, + { 29162, true }, + { 29176, true }, + { 29191, true }, { 29200, true }, - { 29210, true }, - { 29224, true }, - { 29241, true }, - { 29259, true }, - { 29284, true }, - { 29306, true }, - { 29319, true }, - { 29332, true }, - { 29343, true }, - { 29351, true }, - { 29370, true }, - { 29380, true }, - { 29393, true }, - { 29410, true }, - { 29423, true }, - { 29436, true }, - { 29454, true }, - { 29471, true }, - { 29487, true }, - { 29499, true }, - { 29511, true }, - { 29522, true }, - { 29536, true }, - { 29560, true }, - { 29575, true }, - { 29593, true }, - { 29608, true }, - { 29630, true }, - { 29640, true }, - { 29656, true }, - { 29667, true }, + { 29211, true }, + { 29221, true }, + { 29231, true }, + { 29245, true }, + { 29262, true }, + { 29280, true }, + { 29305, true }, + { 29327, true }, + { 29340, true }, + { 29353, true }, + { 29364, true }, + { 29372, true }, + { 29391, true }, + { 29401, true }, + { 29414, true }, + { 29431, true }, + { 29444, true }, + { 29457, true }, + { 29475, true }, + { 29492, true }, + { 29508, true }, + { 29520, true }, + { 29532, true }, + { 29543, true }, + { 29557, true }, + { 29581, true }, + { 29596, true }, + { 29614, true }, + { 29629, true }, + { 29651, true }, + { 29661, true }, + { 29677, true }, { 29688, true }, - { 29701, true }, - { 29721, true }, - { 29732, true }, - { 29751, true }, - { 29763, true }, - { 29771, false }, - { 29783, true }, - { 29798, true }, - { 29815, true }, - { 29827, true }, - { 29846, true }, - { 29860, true }, - { 29888, true }, - { 29903, true }, - { 29918, true }, - { 29933, true }, - { 29948, true }, - { 29958, true }, - { 29968, true }, - { 29980, true }, - { 29990, false }, - { 29999, true }, - { 30013, true }, - { 30025, true }, - { 30033, true }, - { 30048, true }, - { 30060, true }, - { 30072, true }, - { 30090, true }, - { 30110, true }, - { 30126, true }, - { 30138, true }, - { 30156, true }, - { 30170, true }, - { 30190, true }, - { 30202, true }, - { 30216, true }, - { 30224, true }, - { 30241, true }, - { 30250, true }, - { 30276, true }, - { 30286, true }, - { 30298, true }, - { 30320, false }, - { 30334, true }, - { 30350, true }, + { 29709, true }, + { 29722, true }, + { 29742, true }, + { 29753, true }, + { 29772, true }, + { 29784, true }, + { 29792, false }, + { 29804, true }, + { 29819, true }, + { 29836, true }, + { 29848, true }, + { 29867, true }, + { 29881, true }, + { 29909, true }, + { 29924, true }, + { 29939, true }, + { 29954, true }, + { 29969, true }, + { 29979, true }, + { 29989, true }, + { 30001, true }, + { 30011, false }, + { 30020, true }, + { 30034, true }, + { 30046, true }, + { 30054, true }, + { 30069, true }, + { 30081, true }, + { 30093, true }, + { 30111, true }, + { 30131, true }, + { 30147, true }, + { 30159, true }, + { 30177, true }, + { 30189, true }, + { 30203, true }, + { 30223, true }, + { 30235, true }, + { 30249, true }, + { 30257, true }, + { 30274, true }, + { 30283, true }, + { 30309, true }, + { 30319, true }, + { 30331, true }, + { 30353, false }, { 30367, true }, - { 30379, true }, - { 30397, false }, - { 30419, false }, - { 30444, false }, - { 30468, true }, - { 30480, true }, - { 30490, true }, - { 30503, true }, + { 30383, true }, + { 30400, true }, + { 30412, true }, + { 30430, false }, + { 30452, false }, + { 30477, false }, + { 30501, true }, { 30513, true }, { 30523, true }, - { 30533, true }, - { 30543, true }, - { 30553, true }, - { 30563, true }, - { 30573, true }, - { 30587, true }, - { 30605, true }, + { 30536, true }, + { 30546, true }, + { 30556, true }, + { 30566, true }, + { 30576, true }, + { 30586, true }, + { 30596, true }, + { 30606, true }, { 30620, true }, - { 30634, true }, - { 30652, true }, - { 30664, true }, - { 30676, true }, - { 30687, true }, - { 30701, true }, - { 30716, true }, - { 30730, true }, - { 30737, true }, - { 30751, false }, - { 30771, true }, - { 30792, true }, - { 30811, true }, - { 30826, true }, - { 30838, true }, - { 30863, true }, - { 30880, true }, - { 30891, true }, - { 30906, true }, - { 30917, true }, - { 30931, true }, - { 30943, true }, - { 30956, false }, - { 30969, true }, - { 30986, true }, + { 30638, true }, + { 30653, true }, + { 30667, true }, + { 30685, true }, + { 30697, true }, + { 30709, true }, + { 30720, true }, + { 30734, true }, + { 30749, true }, + { 30763, true }, + { 30770, true }, + { 30784, false }, + { 30804, true }, + { 30825, true }, + { 30844, true }, + { 30859, true }, + { 30871, true }, + { 30896, true }, + { 30913, true }, + { 30924, true }, + { 30939, true }, + { 30950, true }, + { 30964, true }, + { 30976, true }, + { 30989, false }, { 31002, true }, - { 31015, true }, - { 31027, true }, - { 31042, true }, - { 31052, true }, - { 31077, true }, - { 31091, true }, - { 31107, true }, - { 31121, true }, - { 31138, true }, - { 31157, true }, - { 31167, true }, - { 31187, true }, - { 31199, true }, - { 31215, true }, - { 31243, false }, - { 31255, true }, - { 31268, true }, - { 31282, true }, - { 31299, true }, - { 31316, true }, - { 31325, true }, - { 31335, true }, - { 31352, true }, - { 31361, true }, + { 31019, true }, + { 31035, true }, + { 31048, true }, + { 31060, true }, + { 31075, true }, + { 31085, true }, + { 31110, true }, + { 31124, true }, + { 31140, true }, + { 31154, true }, + { 31171, true }, + { 31190, true }, + { 31200, true }, + { 31220, true }, + { 31232, true }, + { 31248, true }, + { 31276, false }, + { 31288, true }, + { 31301, true }, + { 31315, true }, + { 31332, true }, + { 31349, true }, + { 31358, true }, { 31368, true }, - { 31378, true }, - { 31393, true }, - { 31404, false }, - { 31420, true }, - { 31437, true }, - { 31451, true }, - { 31461, true }, - { 31471, true }, - { 31491, true }, - { 31511, true }, - { 31522, true }, - { 31537, true }, - { 31556, true }, - { 31574, true }, + { 31385, true }, + { 31394, true }, + { 31401, true }, + { 31411, true }, + { 31426, true }, + { 31437, false }, + { 31453, true }, + { 31470, true }, + { 31484, true }, + { 31494, true }, + { 31504, true }, + { 31524, true }, + { 31544, true }, + { 31555, true }, + { 31570, true }, { 31589, true }, - { 31602, true }, - { 31617, true }, - { 31633, true }, - { 31659, true }, - { 31676, true }, - { 31693, true }, - { 31706, true }, - { 31714, true }, - { 31737, true }, - { 31751, true }, - { 31763, true }, - { 31773, true }, - { 31798, true }, - { 31815, false }, - { 31836, false }, - { 31858, false }, - { 31877, false }, - { 31895, true }, - { 31911, true }, - { 31935, true }, - { 31963, true }, - { 31974, true }, - { 31989, true }, - { 32013, true }, - { 32032, true }, - { 32055, true }, - { 32073, true }, - { 32097, true }, - { 32111, true }, - { 32122, true }, + { 31607, true }, + { 31622, true }, + { 31635, true }, + { 31650, true }, + { 31666, true }, + { 31692, true }, + { 31709, true }, + { 31726, true }, + { 31739, true }, + { 31747, true }, + { 31770, true }, + { 31784, true }, + { 31796, true }, + { 31806, true }, + { 31831, true }, + { 31848, false }, + { 31869, false }, + { 31891, false }, + { 31910, false }, + { 31928, true }, + { 31944, true }, + { 31968, true }, + { 31996, true }, + { 32007, true }, + { 32022, true }, + { 32046, true }, + { 32065, true }, + { 32088, true }, + { 32106, true }, + { 32130, true }, { 32144, true }, - { 32162, true }, + { 32155, true }, { 32177, true }, - { 32192, true }, - { 32205, true }, - { 32218, true }, - { 32233, true }, - { 32248, true }, - { 32263, true }, - { 32290, true }, - { 32302, true }, - { 32317, true }, - { 32336, true }, - { 32354, true }, - { 32362, true }, - { 32370, true }, - { 32379, true }, - { 32391, true }, + { 32195, true }, + { 32210, true }, + { 32225, true }, + { 32238, true }, + { 32251, true }, + { 32266, true }, + { 32281, true }, + { 32296, true }, + { 32323, true }, + { 32335, true }, + { 32350, true }, + { 32369, true }, + { 32387, true }, + { 32395, true }, { 32403, true }, - { 32417, true }, - { 32435, true }, - { 32453, true }, + { 32412, true }, + { 32424, true }, + { 32436, true }, + { 32450, true }, { 32468, true }, - { 32483, true }, - { 32492, true }, - { 32508, true }, + { 32486, true }, + { 32501, true }, + { 32516, true }, { 32525, true }, - { 32534, true }, - { 32545, true }, + { 32541, true }, { 32558, true }, - { 32570, true }, - { 32580, true }, - { 32593, false }, - { 32607, true }, - { 32623, true }, - { 32635, true }, - { 32645, true }, - { 32661, false }, + { 32567, true }, + { 32578, true }, + { 32591, true }, + { 32603, true }, + { 32613, true }, + { 32626, false }, + { 32640, true }, + { 32656, true }, { 32668, true }, { 32678, true }, - { 32692, true }, - { 32707, true }, - { 32715, true }, - { 32728, true }, - { 32736, true }, - { 32746, true }, - { 32764, true }, - { 32782, true }, - { 32793, true }, - { 32806, true }, - { 32819, true }, - { 32836, true }, - { 32850, true }, - { 32859, true }, - { 32874, true }, - { 32903, true }, - { 32920, true }, - { 32938, true }, - { 32948, true }, - { 32962, true }, - { 32974, true }, - { 32985, true }, - { 33012, true }, - { 33032, true }, - { 33049, true }, - { 33063, true }, - { 33085, true }, - { 33110, true }, - { 33123, true }, - { 33136, true }, - { 33153, true }, - { 33171, true }, + { 32694, false }, + { 32701, true }, + { 32711, true }, + { 32725, true }, + { 32740, true }, + { 32748, true }, + { 32761, true }, + { 32769, true }, + { 32779, true }, + { 32797, true }, + { 32815, true }, + { 32826, true }, + { 32839, true }, + { 32852, true }, + { 32869, true }, + { 32883, true }, + { 32892, true }, + { 32907, true }, + { 32936, true }, + { 32953, true }, + { 32971, true }, + { 32981, true }, + { 32995, true }, + { 33007, true }, + { 33018, true }, + { 33045, true }, + { 33065, true }, + { 33082, true }, + { 33096, true }, + { 33118, true }, + { 33143, true }, + { 33156, true }, + { 33169, true }, { 33186, true }, - { 33201, true }, - { 33212, true }, - { 33222, true }, - { 33243, true }, - { 33253, false }, - { 33272, true }, - { 33284, true }, - { 33299, true }, - { 33328, true }, - { 33346, true }, - { 33364, true }, - { 33382, true }, - { 33403, true }, - { 33417, true }, - { 33431, true }, - { 33439, true }, - { 33449, true }, - { 33462, true }, - { 33474, true }, - { 33486, true }, - { 33502, true }, - { 33516, true }, - { 33538, true }, - { 33557, true }, - { 33570, true }, - { 33583, true }, - { 33602, true }, - { 33617, true }, + { 33204, true }, + { 33219, true }, + { 33234, true }, + { 33245, true }, + { 33255, true }, + { 33276, true }, + { 33286, false }, + { 33305, true }, + { 33317, true }, + { 33332, true }, + { 33361, true }, + { 33379, true }, + { 33397, true }, + { 33415, true }, + { 33436, true }, + { 33450, true }, + { 33464, true }, + { 33472, true }, + { 33482, true }, + { 33495, true }, + { 33507, true }, + { 33519, true }, + { 33535, true }, + { 33549, true }, + { 33571, true }, + { 33590, true }, + { 33603, true }, + { 33616, true }, { 33635, true }, - { 33646, true }, - { 33659, false }, - { 33669, true }, - { 33691, true }, - { 33705, true }, - { 33728, true }, - { 33744, true }, - { 33759, true }, - { 33775, true }, + { 33650, true }, + { 33668, true }, + { 33679, true }, + { 33692, false }, + { 33702, true }, + { 33724, true }, + { 33738, true }, + { 33761, true }, + { 33777, true }, { 33792, true }, - { 33803, false }, - { 33811, true }, - { 33824, true }, - { 33839, true }, - { 33855, true }, - { 33875, true }, - { 33889, true }, - { 33897, true }, - { 33912, true }, - { 33925, true }, - { 33937, true }, - { 33948, true }, - { 33961, true }, - { 33981, false }, - { 34003, true }, - { 34027, true }, - { 34054, true }, - { 34074, true }, - { 34097, true }, - { 34115, true }, + { 33808, true }, + { 33825, true }, + { 33836, false }, + { 33844, true }, + { 33857, true }, + { 33872, true }, + { 33888, true }, + { 33908, true }, + { 33922, true }, + { 33930, true }, + { 33945, true }, + { 33958, true }, + { 33970, true }, + { 33981, true }, + { 33994, true }, + { 34014, false }, + { 34036, true }, + { 34060, true }, + { 34087, true }, + { 34107, true }, { 34130, true }, - { 34157, true }, - { 34183, true }, - { 34210, true }, - { 34226, true }, - { 34244, true }, - { 34273, true }, - { 34285, true }, - { 34301, true }, - { 34312, true }, - { 34328, true }, - { 34340, true }, - { 34353, true }, - { 34366, true }, - { 34377, true }, - { 34395, true }, - { 34408, true }, - { 34417, true }, - { 34426, true }, + { 34148, true }, + { 34163, true }, + { 34190, true }, + { 34216, true }, + { 34243, true }, + { 34259, true }, + { 34277, true }, + { 34306, true }, + { 34318, true }, + { 34334, true }, + { 34345, true }, + { 34357, true }, + { 34370, true }, + { 34383, true }, + { 34394, true }, + { 34412, true }, + { 34425, true }, + { 34434, true }, { 34443, true }, - { 34456, true }, - { 34465, true }, + { 34460, true }, + { 34473, true }, { 34482, true }, - { 34490, true }, - { 34498, true }, + { 34499, true }, { 34507, true }, - { 34516, true }, - { 34540, true }, - { 34550, true }, - { 34560, true }, - { 34569, true }, - { 34582, true }, - { 34595, true }, - { 34607, true }, - { 34621, true }, - { 34635, true }, - { 34653, true }, - { 34668, true }, - { 34682, true }, - { 34694, true }, - { 34710, true }, - { 34723, true }, - { 34738, true }, - { 34750, true }, - { 34765, true }, - { 34779, true }, - { 34788, true }, - { 34797, true }, - { 34811, true }, - { 34820, true }, - { 34834, true }, - { 34844, true }, - { 34857, true }, - { 34872, true }, - { 34885, true }, - { 34895, true }, - { 34905, true }, - { 34918, true }, - { 34933, true }, - { 34948, true }, - { 34962, true }, - { 34977, true }, - { 34996, true }, - { 35012, true }, - { 35026, true }, - { 35042, true }, - { 35057, true }, - { 35068, true }, - { 35082, true }, - { 35092, true }, - { 35103, true }, - { 35119, true }, - { 35131, true }, - { 35147, true }, - { 35161, true }, - { 35166, true }, - { 35177, true }, - { 35185, true }, - { 35193, true }, - { 35200, true }, - { 35206, true }, - { 35216, true }, - { 35225, true }, - { 35235, true }, - { 35264, true }, - { 35279, false }, - { 35299, true }, - { 35309, true }, - { 35322, true }, - { 35340, true }, - { 35360, true }, - { 35376, true }, - { 35388, true }, - { 35400, true }, - { 35413, true }, - { 35424, true }, - { 35435, true }, - { 35447, true }, - { 35458, true }, - { 35472, true }, - { 35490, true }, - { 35503, true }, - { 35519, true }, - { 35539, true }, - { 35549, true }, - { 35569, true }, - { 35577, true }, - { 35588, false }, - { 35598, true }, - { 35610, true }, - { 35619, true }, - { 35633, true }, - { 35647, true }, - { 35666, true }, - { 35674, true }, - { 35698, true }, - { 35717, true }, - { 35731, false }, - { 35747, true }, + { 34515, true }, + { 34524, true }, + { 34533, true }, + { 34557, true }, + { 34567, true }, + { 34577, true }, + { 34586, true }, + { 34599, true }, + { 34612, true }, + { 34624, true }, + { 34638, true }, + { 34652, true }, + { 34670, true }, + { 34685, true }, + { 34699, true }, + { 34711, true }, + { 34727, true }, + { 34740, true }, + { 34755, true }, + { 34767, true }, + { 34782, true }, + { 34796, true }, + { 34805, true }, + { 34814, true }, + { 34828, true }, + { 34837, true }, + { 34851, true }, + { 34861, true }, + { 34874, true }, + { 34889, true }, + { 34902, true }, + { 34912, true }, + { 34922, true }, + { 34935, true }, + { 34950, true }, + { 34965, true }, + { 34979, true }, + { 34994, true }, + { 35013, true }, + { 35029, true }, + { 35043, true }, + { 35059, true }, + { 35074, true }, + { 35085, true }, + { 35099, true }, + { 35109, true }, + { 35120, true }, + { 35136, true }, + { 35148, true }, + { 35164, true }, + { 35178, true }, + { 35183, true }, + { 35194, true }, + { 35202, true }, + { 35210, true }, + { 35217, true }, + { 35223, true }, + { 35233, true }, + { 35242, true }, + { 35252, true }, + { 35281, true }, + { 35296, false }, + { 35316, true }, + { 35326, true }, + { 35339, true }, + { 35357, true }, + { 35377, true }, + { 35393, true }, + { 35405, true }, + { 35417, true }, + { 35430, true }, + { 35441, true }, + { 35452, true }, + { 35464, true }, + { 35475, true }, + { 35489, true }, + { 35507, true }, + { 35520, true }, + { 35536, true }, + { 35556, true }, + { 35566, true }, + { 35586, true }, + { 35594, true }, + { 35605, false }, + { 35615, true }, + { 35627, true }, + { 35636, true }, + { 35650, true }, + { 35664, true }, + { 35683, true }, + { 35691, true }, + { 35715, true }, + { 35734, true }, + { 35748, false }, { 35764, true }, - { 35775, true }, - { 35787, false }, - { 35802, true }, - { 35814, true }, - { 35833, true }, - { 35845, true }, - { 35859, true }, - { 35871, true }, - { 35882, true }, + { 35781, true }, + { 35792, true }, + { 35804, false }, + { 35819, true }, + { 35831, true }, + { 35850, false }, + { 35858, true }, + { 35870, true }, + { 35884, true }, { 35896, true }, - { 35909, true }, + { 35907, true }, { 35921, true }, { 35934, true }, - { 35954, true }, - { 35964, true }, - { 35983, true }, - { 36001, true }, - { 36013, true }, - { 36024, true }, - { 36036, true }, - { 36053, true }, - { 36076, true }, - { 36099, true }, - { 36110, true }, - { 36122, true }, - { 36137, true }, - { 36148, true }, - { 36164, true }, - { 36180, true }, - { 36198, false }, - { 36221, true }, - { 36241, true }, - { 36256, true }, - { 36270, true }, - { 36285, true }, - { 36308, true }, - { 36327, true }, - { 36342, true }, - { 36360, true }, - { 36377, true }, - { 36403, true }, - { 36422, true }, - { 36438, true }, - { 36452, true }, - { 36473, true }, - { 36489, true }, + { 35946, true }, + { 35959, true }, + { 35979, true }, + { 35989, true }, + { 36008, true }, + { 36026, true }, + { 36038, true }, + { 36049, true }, + { 36061, true }, + { 36078, true }, + { 36101, true }, + { 36124, true }, + { 36135, true }, + { 36147, true }, + { 36162, true }, + { 36173, true }, + { 36189, true }, + { 36205, true }, + { 36223, false }, + { 36246, true }, + { 36266, true }, + { 36281, true }, + { 36295, true }, + { 36310, true }, + { 36333, true }, + { 36352, true }, + { 36367, true }, + { 36385, true }, + { 36402, true }, + { 36428, true }, + { 36447, true }, + { 36463, true }, + { 36477, true }, + { 36498, true }, { 36514, true }, - { 36532, true }, - { 36558, true }, - { 36572, true }, - { 36590, true }, - { 36599, true }, - { 36611, true }, - { 36624, false }, - { 36635, true }, - { 36648, true }, + { 36539, true }, + { 36557, true }, + { 36583, true }, + { 36597, true }, + { 36615, true }, + { 36624, true }, + { 36636, true }, + { 36649, false }, { 36660, true }, - { 36680, true }, - { 36695, true }, - { 36718, true }, - { 36730, true }, - { 36742, true }, - { 36757, true }, - { 36770, true }, - { 36784, true }, - { 36794, true }, - { 36807, true }, - { 36815, true }, - { 36822, true }, + { 36673, true }, + { 36685, true }, + { 36705, true }, + { 36720, true }, + { 36743, true }, + { 36755, true }, + { 36767, true }, + { 36782, true }, + { 36795, true }, + { 36809, true }, + { 36819, true }, + { 36832, true }, + { 36840, true }, { 36847, true }, - { 36873, true }, - { 36885, true }, - { 36906, true }, - { 36918, true }, - { 36933, true }, - { 36949, true }, - { 36975, true }, - { 36987, true }, - { 37009, true }, - { 37023, true }, - { 37043, true }, - { 37055, true }, - { 37065, true }, - { 37078, true }, - { 37086, true }, - { 37100, true }, - { 37124, true }, - { 37138, true }, - { 37162, true }, - { 37173, true }, - { 37190, true }, - { 37203, true }, - { 37212, true }, - { 37227, true }, - { 37249, true }, - { 37272, true }, - { 37296, true }, - { 37319, true }, - { 37332, true }, - { 37350, false }, - { 37381, false }, - { 37396, true }, - { 37409, true }, - { 37429, true }, - { 37444, true }, - { 37460, true }, - { 37471, true }, - { 37487, true }, - { 37498, true }, + { 36872, true }, + { 36898, true }, + { 36910, true }, + { 36931, true }, + { 36943, true }, + { 36958, true }, + { 36974, true }, + { 37000, true }, + { 37012, true }, + { 37034, true }, + { 37048, true }, + { 37068, true }, + { 37080, true }, + { 37090, true }, + { 37103, true }, + { 37111, true }, + { 37125, true }, + { 37149, true }, + { 37163, true }, + { 37187, true }, + { 37198, true }, + { 37215, true }, + { 37228, true }, + { 37237, true }, + { 37252, true }, + { 37274, true }, + { 37297, true }, + { 37321, true }, + { 37344, true }, + { 37357, true }, + { 37375, false }, + { 37406, false }, + { 37421, true }, + { 37434, true }, + { 37454, true }, + { 37469, true }, + { 37485, true }, + { 37496, true }, { 37512, true }, - { 37522, false }, - { 37535, true }, - { 37552, true }, - { 37571, true }, - { 37585, true }, - { 37599, true }, - { 37611, true }, - { 37630, true }, - { 37643, true }, - { 37660, true }, - { 37669, true }, - { 37689, true }, - { 37711, true }, - { 37724, true }, - { 37745, true }, - { 37756, true }, - { 37767, true }, - { 37779, true }, - { 37791, true }, - { 37802, true }, - { 37820, true }, - { 37834, true }, + { 37523, true }, + { 37537, true }, + { 37547, false }, + { 37560, true }, + { 37577, true }, + { 37596, true }, + { 37610, true }, + { 37624, true }, + { 37636, true }, + { 37655, true }, + { 37668, true }, + { 37685, true }, + { 37694, true }, + { 37714, true }, + { 37736, true }, + { 37749, true }, + { 37770, true }, + { 37781, true }, + { 37792, true }, + { 37804, true }, + { 37816, true }, + { 37827, true }, { 37845, true }, - { 37861, true }, - { 37878, true }, - { 37887, true }, - { 37902, true }, - { 37916, true }, - { 37937, true }, - { 37954, true }, - { 37971, true }, - { 37987, true }, - { 38000, true }, - { 38013, true }, + { 37859, true }, + { 37870, true }, + { 37886, true }, + { 37903, true }, + { 37912, true }, + { 37927, true }, + { 37941, true }, + { 37962, true }, + { 37979, true }, + { 37996, true }, + { 38012, true }, { 38025, true }, { 38038, true }, - { 38051, true }, - { 38064, true }, - { 38087, true }, - { 38102, true }, - { 38114, true }, - { 38133, true }, - { 38152, true }, - { 38167, true }, - { 38183, true }, - { 38204, true }, - { 38222, true }, - { 38233, true }, - { 38241, false }, - { 38264, true }, - { 38281, true }, - { 38298, true }, - { 38311, true }, - { 38328, true }, - { 38339, true }, - { 38351, false }, - { 38361, true }, - { 38377, false }, - { 38388, true }, - { 38419, true }, - { 38456, true }, - { 38471, true }, - { 38480, true }, - { 38493, true }, - { 38527, true }, - { 38537, true }, - { 38555, true }, - { 38573, true }, - { 38584, true }, - { 38594, true }, - { 38605, true }, - { 38614, true }, - { 38626, true }, - { 38652, true }, - { 38669, true }, - { 38678, true }, + { 38050, true }, + { 38063, true }, + { 38076, true }, + { 38089, true }, + { 38112, true }, + { 38127, true }, + { 38139, true }, + { 38158, true }, + { 38177, true }, + { 38192, true }, + { 38208, true }, + { 38229, true }, + { 38247, true }, + { 38258, true }, + { 38266, false }, + { 38289, true }, + { 38306, true }, + { 38323, true }, + { 38336, true }, + { 38353, true }, + { 38364, true }, + { 38376, false }, + { 38386, true }, + { 38402, false }, + { 38413, true }, + { 38444, true }, + { 38481, true }, + { 38496, true }, + { 38505, true }, + { 38518, true }, + { 38552, true }, + { 38562, true }, + { 38580, true }, + { 38598, true }, + { 38609, true }, + { 38619, true }, + { 38630, true }, + { 38639, true }, + { 38651, true }, + { 38677, true }, { 38694, true }, - { 38704, true }, - { 38712, false }, - { 38720, true }, - { 38731, true }, - { 38741, true }, - { 38755, true }, - { 38768, true }, - { 38785, true }, - { 38795, true }, + { 38703, true }, + { 38719, true }, + { 38729, true }, + { 38737, false }, + { 38745, true }, + { 38756, true }, + { 38766, true }, + { 38780, true }, + { 38793, true }, { 38810, true }, - { 38824, true }, - { 38838, true }, - { 38851, true }, - { 38862, true }, - { 38872, true }, - { 38880, true }, - { 38894, true }, - { 38915, true }, - { 38929, true }, - { 38945, true }, - { 38952, true }, - { 38962, true }, - { 38977, false }, + { 38820, true }, + { 38835, true }, + { 38849, true }, + { 38863, true }, + { 38876, true }, + { 38887, true }, + { 38897, true }, + { 38905, true }, + { 38919, true }, + { 38940, true }, + { 38954, true }, + { 38970, true }, + { 38977, true }, { 38987, true }, - { 38998, true }, - { 39017, false }, - { 39030, true }, - { 39050, true }, - { 39066, true }, - { 39084, true }, - { 39100, true }, - { 39111, true }, - { 39129, true }, - { 39139, true }, - { 39161, true }, - { 39181, false }, - { 39198, true }, - { 39210, true }, - { 39222, true }, - { 39236, true }, - { 39252, true }, - { 39268, true }, - { 39284, true }, - { 39303, true }, - { 39320, true }, - { 39335, true }, - { 39354, true }, - { 39369, true }, - { 39384, true }, - { 39405, true }, - { 39423, true }, - { 39442, true }, - { 39455, true }, - { 39468, true }, - { 39482, true }, - { 39496, true }, + { 39002, false }, + { 39012, true }, + { 39023, true }, + { 39042, false }, + { 39055, true }, + { 39075, true }, + { 39091, true }, + { 39109, true }, + { 39125, true }, + { 39136, true }, + { 39154, true }, + { 39164, true }, + { 39186, true }, + { 39206, false }, + { 39223, true }, + { 39235, true }, + { 39247, true }, + { 39261, true }, + { 39277, true }, + { 39293, true }, + { 39309, true }, + { 39328, true }, + { 39345, true }, + { 39360, true }, + { 39379, true }, + { 39394, true }, + { 39409, true }, + { 39430, true }, + { 39448, true }, + { 39467, true }, + { 39480, true }, + { 39493, true }, { 39507, true }, - { 39520, true }, - { 39539, true }, - { 39557, true }, - { 39571, true }, - { 39588, true }, - { 39603, true }, - { 39617, true }, - { 39631, true }, - { 39644, true }, - { 39655, true }, - { 39665, true }, - { 39682, true }, - { 39698, true }, - { 39714, true }, - { 39729, true }, + { 39521, true }, + { 39532, true }, + { 39545, true }, + { 39564, true }, + { 39582, true }, + { 39596, true }, + { 39613, true }, + { 39628, true }, + { 39642, true }, + { 39656, true }, + { 39669, true }, + { 39680, true }, + { 39690, true }, + { 39707, true }, + { 39723, true }, { 39739, true }, { 39754, true }, - { 39766, true }, - { 39777, true }, - { 39789, false }, - { 39797, true }, - { 39818, true }, - { 39826, true }, - { 39837, true }, - { 39850, true }, - { 39858, true }, - { 39866, true }, - { 39884, true }, - { 39898, true }, - { 39912, true }, - { 39920, true }, - { 39928, true }, - { 39938, true }, - { 39952, true }, - { 39972, true }, - { 39980, true }, - { 39989, false }, - { 40009, true }, - { 40027, true }, - { 40054, true }, - { 40065, true }, - { 40083, true }, - { 40101, true }, - { 40121, true }, - { 40133, true }, - { 40145, true }, - { 40161, true }, - { 40175, true }, - { 40192, true }, - { 40209, true }, - { 40227, true }, - { 40246, true }, - { 40267, true }, - { 40277, true }, - { 40290, true }, - { 40307, true }, - { 40320, true }, - { 40334, true }, - { 40347, true }, - { 40361, true }, - { 40380, true }, - { 40390, true }, - { 40410, true }, - { 40419, true }, - { 40439, true }, - { 40456, true }, - { 40476, true }, - { 40490, true }, - { 40510, true }, - { 40528, true }, - { 40548, true }, - { 40583, true }, - { 40597, true }, - { 40615, true }, - { 40625, true }, - { 40655, true }, - { 40670, true }, - { 40682, true }, + { 39764, true }, + { 39779, true }, + { 39791, true }, + { 39802, true }, + { 39814, false }, + { 39822, true }, + { 39843, true }, + { 39851, true }, + { 39862, true }, + { 39875, true }, + { 39883, true }, + { 39891, true }, + { 39909, true }, + { 39923, true }, + { 39937, true }, + { 39945, true }, + { 39953, true }, + { 39963, true }, + { 39977, true }, + { 39997, true }, + { 40005, true }, + { 40014, false }, + { 40034, true }, + { 40052, true }, + { 40079, true }, + { 40090, true }, + { 40108, true }, + { 40126, true }, + { 40146, true }, + { 40158, true }, + { 40170, true }, + { 40186, true }, + { 40200, true }, + { 40217, true }, + { 40234, true }, + { 40252, true }, + { 40271, true }, + { 40292, true }, + { 40302, true }, + { 40315, true }, + { 40332, true }, + { 40345, true }, + { 40359, true }, + { 40372, true }, + { 40386, true }, + { 40405, true }, + { 40415, true }, + { 40435, true }, + { 40444, true }, + { 40464, true }, + { 40481, true }, + { 40501, true }, + { 40515, true }, + { 40535, true }, + { 40553, true }, + { 40573, true }, + { 40608, true }, + { 40622, true }, + { 40640, true }, + { 40650, true }, + { 40680, true }, { 40695, true }, - { 40711, true }, - { 40724, true }, - { 40753, true }, - { 40767, true }, - { 40782, true }, - { 40802, true }, - { 40816, true }, - { 40830, true }, - { 40847, true }, - { 40864, true }, - { 40875, true }, - { 40891, true }, - { 40906, true }, - { 40916, false }, - { 40927, true }, - { 40935, true }, - { 40943, true }, - { 40964, true }, - { 40985, true }, - { 41006, false }, - { 41022, true }, - { 41035, true }, - { 41050, true }, - { 41062, false }, - { 41083, true }, - { 41103, true }, - { 41125, true }, - { 41139, true }, - { 41157, true }, - { 41177, true }, - { 41193, true }, - { 41207, true }, - { 41223, true }, - { 41241, true }, - { 41256, true }, - { 41267, true }, - { 41278, true }, - { 41291, true }, - { 41304, true }, - { 41318, true }, - { 41333, true }, - { 41350, true }, - { 41365, true }, - { 41384, true }, - { 41400, true }, - { 41412, true }, - { 41422, true }, - { 41433, false }, - { 41455, true }, - { 41463, true }, - { 41479, true }, - { 41494, true }, + { 40707, true }, + { 40720, true }, + { 40736, true }, + { 40749, true }, + { 40778, true }, + { 40792, true }, + { 40807, true }, + { 40827, true }, + { 40841, true }, + { 40855, true }, + { 40872, true }, + { 40889, true }, + { 40900, true }, + { 40916, true }, + { 40931, true }, + { 40941, false }, + { 40952, true }, + { 40960, true }, + { 40968, true }, + { 40989, true }, + { 41010, true }, + { 41031, false }, + { 41047, true }, + { 41060, true }, + { 41075, true }, + { 41087, false }, + { 41108, true }, + { 41128, true }, + { 41150, true }, + { 41164, true }, + { 41182, true }, + { 41202, true }, + { 41218, true }, + { 41232, true }, + { 41248, true }, + { 41266, true }, + { 41281, true }, + { 41292, true }, + { 41303, true }, + { 41316, true }, + { 41329, true }, + { 41343, true }, + { 41358, true }, + { 41375, true }, + { 41390, true }, + { 41409, true }, + { 41425, true }, + { 41437, true }, + { 41447, true }, + { 41458, false }, + { 41480, true }, + { 41488, true }, { 41504, true }, - { 41521, true }, - { 41535, true }, - { 41550, true }, - { 41568, true }, - { 41580, true }, - { 41591, true }, - { 41617, true }, - { 41641, true }, - { 41657, true }, + { 41519, true }, + { 41529, true }, + { 41546, true }, + { 41560, true }, + { 41575, true }, + { 41593, true }, + { 41605, true }, + { 41616, true }, + { 41642, true }, { 41666, true }, { 41682, true }, - { 41697, true }, - { 41718, true }, - { 41727, true }, - { 41742, true }, - { 41755, false }, - { 41765, true }, - { 41784, true }, - { 41798, true }, - { 41818, true }, - { 41833, true }, - { 41842, true }, - { 41860, true }, - { 41882, false }, - { 41904, true }, - { 41913, true }, - { 41932, true }, - { 41944, false }, - { 41960, true }, - { 41984, false }, - { 41998, true }, - { 42014, true }, - { 42033, true }, - { 42045, true }, - { 42060, true }, - { 42078, true }, - { 42093, true }, - { 42105, true }, - { 42123, true }, - { 42143, true }, - { 42165, true }, - { 42183, true }, - { 42193, true }, - { 42204, true }, - { 42221, true }, - { 42236, true }, - { 42253, true }, - { 42268, true }, - { 42285, false }, - { 42301, true }, - { 42315, true }, - { 42329, true }, - { 42348, true }, - { 42365, true }, - { 42382, true }, - { 42401, true }, - { 42416, true }, - { 42443, true }, - { 42463, true }, - { 42485, true }, - { 42506, true }, - { 42529, true }, - { 42549, true }, - { 42567, true }, - { 42585, true }, - { 42604, true }, - { 42626, true }, - { 42645, true }, - { 42665, true }, - { 42682, true }, - { 42709, true }, - { 42729, true }, - { 42752, true }, - { 42775, true }, - { 42789, true }, - { 42806, true }, - { 42822, true }, - { 42836, true }, - { 42850, true }, - { 42863, true }, - { 42900, false }, - { 42911, true }, - { 42929, true }, - { 42949, true }, - { 42972, true }, - { 42997, false }, - { 43028, true }, - { 43042, true }, - { 43056, true }, + { 41691, true }, + { 41707, true }, + { 41722, true }, + { 41743, true }, + { 41752, true }, + { 41767, true }, + { 41780, false }, + { 41790, true }, + { 41809, true }, + { 41823, true }, + { 41843, true }, + { 41858, true }, + { 41867, true }, + { 41885, true }, + { 41907, false }, + { 41929, true }, + { 41938, true }, + { 41957, true }, + { 41969, false }, + { 41985, true }, + { 42009, false }, + { 42023, true }, + { 42039, true }, + { 42058, true }, + { 42070, true }, + { 42085, true }, + { 42103, true }, + { 42118, true }, + { 42130, true }, + { 42148, true }, + { 42168, true }, + { 42190, true }, + { 42208, true }, + { 42218, true }, + { 42229, true }, + { 42246, true }, + { 42261, true }, + { 42278, true }, + { 42293, true }, + { 42310, false }, + { 42326, true }, + { 42340, true }, + { 42354, true }, + { 42373, true }, + { 42390, true }, + { 42407, true }, + { 42426, true }, + { 42441, true }, + { 42468, true }, + { 42488, true }, + { 42510, true }, + { 42531, true }, + { 42554, true }, + { 42574, true }, + { 42592, true }, + { 42610, true }, + { 42629, true }, + { 42651, true }, + { 42670, true }, + { 42690, true }, + { 42707, true }, + { 42734, true }, + { 42754, true }, + { 42777, true }, + { 42800, true }, + { 42814, true }, + { 42831, true }, + { 42847, true }, + { 42861, true }, + { 42874, true }, + { 42911, false }, + { 42922, true }, + { 42940, true }, + { 42960, true }, + { 42983, true }, + { 43008, false }, + { 43039, true }, + { 43053, true }, { 43067, true }, { 43078, true }, - { 43090, true }, - { 43106, true }, - { 43118, true }, - { 43127, true }, - { 43139, true }, - { 43156, true }, - { 43166, true }, - { 43180, true }, - { 43198, false }, - { 43206, true }, + { 43089, true }, + { 43101, true }, + { 43117, true }, + { 43129, true }, + { 43138, true }, + { 43150, true }, + { 43167, true }, + { 43177, true }, + { 43191, true }, + { 43209, false }, { 43217, true }, - { 43231, true }, - { 43250, true }, - { 43261, false }, - { 43279, true }, - { 43292, true }, - { 43305, true }, - { 43322, true }, - { 43336, true }, + { 43228, true }, + { 43242, true }, + { 43261, true }, + { 43272, false }, + { 43290, true }, + { 43303, true }, + { 43316, true }, + { 43333, true }, { 43347, true }, - { 43361, true }, + { 43363, true }, { 43374, true }, - { 43392, true }, - { 43404, true }, + { 43388, true }, + { 43401, true }, { 43419, true }, - { 43427,