├── Scheduler BAT └── run_AIO_python.bat ├── allowlist.txt ├── sandbox ├── testing_timezone.py └── TLDs_2024.txt ├── HISTORY.md ├── LICENSE ├── create_adguard_extension_list.py ├── README.md ├── create_list.py └── tracker_list_adguard_home.txt /Scheduler BAT/run_AIO_python.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | "C:\Users\Dean\AppData\Local\Programs\Python\Python312\python.exe" "C:\Users\Dean\Documents\Important\MEGASync\GitHub\CodeLibrary\Python\AdGuard-Home-AIO-List-main\create_list.py" 3 | REM pause -------------------------------------------------------------------------------- /allowlist.txt: -------------------------------------------------------------------------------- 1 | # Injustice 2 PC Game Server 2 | @@||wb-agora-hydra-file-storage-pachinko.s3.amazonaws.com^$important 3 | 4 | # Torrent Trackers 5 | @@||tracker.lilithraws.cf^$important 6 | @@||public-tracker.cf^$important 7 | 8 | # Official Windows 10, 11 ISO Download Source 9 | @@||vlscppe.microsoft.com^$important 10 | -------------------------------------------------------------------------------- /sandbox/testing_timezone.py: -------------------------------------------------------------------------------- 1 | """Module testing getting the current datetime for sydney, australia.""" 2 | 3 | # import time 4 | from datetime import datetime 5 | from pytz import timezone 6 | # import pytz 7 | 8 | #DATETIME = datetime.now() 9 | #TIMEZONE = "UTC" 10 | #DATETIME = DATETIME.now(timezone(TIMEZONE)) 11 | #DATETIME.strftime('%X') 12 | #print(DATETIME.now(timezone(TIMEZONE)).today()) 13 | 14 | # Shows all timezones 15 | #print('Timezones') 16 | #for timeZone in pytz.all_timezones: 17 | # print(timeZone) 18 | 19 | au_tz = timezone('Australia/Sydney') 20 | 21 | loc_dt = au_tz.localize(datetime.now()) 22 | 23 | # Convert localized date into Australia/Sydney timezone 24 | au_tz = timezone('Australia/Sydney') 25 | print(loc_dt.astimezone(au_tz)) 26 | -------------------------------------------------------------------------------- /HISTORY.md: -------------------------------------------------------------------------------- 1 | - Updated 2023-08-31 13:16:30 2 | - Updated 2023-08-31 13:23:14 3 | - Updated 2023-08-31 13:24:58 4 | - Updated 2023-08-31 13:34:50 5 | - Updated 2023-09-01 02:31:09 6 | - Updated 2023-09-02 00:51:59 7 | - Updated 2023-09-15 06:32:58 8 | - Updated 2023-09-21 07:49:18 9 | - Updated 2023-09-23 13:44:16 10 | - Updated 2023-09-23 22:54:29 11 | - Updated 2023-09-23 22:56:32 12 | - Updated 2023-09-24 03:19:57 13 | - Updated 2023-09-24 13:22:48 14 | - Updated 2023-09-25 01:44:24 15 | - Updated 2023-09-26 10:30:03 16 | - Updated 2023-09-27 08:18:31 17 | - Updated 2023-09-28 04:33:25 18 | - Updated 2023-09-29 05:52:27 19 | - Updated 2023-09-30 01:03:04 20 | - Updated 2023-09-30 11:13:17 21 | - Updated 2023-09-30 21:05:46 22 | - Updated 2023-10-02 03:03:35 23 | - Updated 2023-10-02 12:21:28 24 | - Updated 2023-10-03 03:16:18 25 | - Updated 2023-10-03 22:00:09 26 | - Updated 2023-10-04 14:23:56 27 | - Updated 2023-10-05 00:52:17 28 | - Updated 2023-10-05 07:39:04 29 | - Updated 2023-10-07 08:02:19 30 | - Updated 2023-10-09 12:37:45 31 | - Updated 2023-10-09 16:29:40 32 | - Updated 2023-10-10 02:37:19 33 | - Updated 2023-10-11 01:38:50 34 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2023 Dean 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /create_adguard_extension_list.py: -------------------------------------------------------------------------------- 1 | """Creates a consolidated blocklist for many source files.""" 2 | 3 | # Downloads adblocker rules, combines them to one list, 4 | # sorts all lines, makes lines unique, and then removes comment lines 5 | 6 | # FOR ADGUARD BROWSER EXTENSION OR A MODERN ADBLOCKER EXTENSION 7 | 8 | # Version: 0.1.23 9 | 10 | from time import gmtime, strftime 11 | from urllib.request import urlretrieve 12 | import glob 13 | import os 14 | 15 | NOW = strftime("%Y-%m-%d %H:%M:%S", gmtime()) 16 | 17 | URLS = [ 18 | # AdGuard Base Filter 19 | "https://raw.githubusercontent.com/AdguardTeam/FiltersRegistry/master/filters/filter_2_Base/filter.txt", 20 | # AdGuard URL Tracking filter 21 | "https://raw.githubusercontent.com/AdguardTeam/FiltersRegistry/master/filters/filter_17_TrackParam/filter.txt", 22 | # AdGuard Tracking Protection filter 23 | "https://raw.githubusercontent.com/AdguardTeam/FiltersRegistry/master/filters/filter_3_Spyware/filter.txt", 24 | # Fanboy's Enhanced Tracking List 25 | #"https://secure.fanboy.co.nz/enhancedstats.txt", 26 | # AdGuard Social media filter 27 | "https://raw.githubusercontent.com/AdguardTeam/FiltersRegistry/master/filters/filter_4_Social/filter.txt", 28 | # AdGuard Annoyances filter 29 | "https://raw.githubusercontent.com/AdguardTeam/FiltersRegistry/master/filters/filter_14_Annoyances/filter.txt", 30 | # AdGuard Mobile ads filter 31 | "https://raw.githubusercontent.com/AdguardTeam/FiltersRegistry/master/filters/filter_11_Mobile/filter.txt", 32 | # Fanboy's EasyList 33 | #"https://easylist.to/easylist/easylist.txt", 34 | # Fanboy's EasyPrivacy 35 | #"https://easylist.to/easylist/easyprivacy.txt", 36 | # Fanboy's EasyList Cookie List 37 | #"https://secure.fanboy.co.nz/fanboy-cookiemonster.txt", 38 | # Fanboy's Annoyance List 39 | #"https://secure.fanboy.co.nz/fanboy-annoyance.txt", 40 | # yourduskquibbles webannoyances ultralist 41 | "https://raw.githubusercontent.com/yourduskquibbles/webannoyances/master/ultralist.txt", 42 | # I don't care about cookies 43 | #"https://www.i-dont-care-about-cookies.eu/abp/", 44 | # Online Malicious URL Blocklist - urlhaus filter 45 | "https://malware-filter.gitlab.io/malware-filter/urlhaus-filter-ag.txt", 46 | # NoCoin filter 47 | "https://raw.githubusercontent.com/hoshsadiq/adblock-nocoin-list/master/nocoin.txt", 48 | # Scam Blocklist by DurableNapkin 49 | "https://raw.githubusercontent.com/durablenapkin/scamblocklist/master/adguard.txt", 50 | # Jarelllama's Scam Blocklist 51 | "https://raw.githubusercontent.com/jarelllama/Scam-Blocklist/main/lists/adblock/scams.txt" 52 | ] 53 | 54 | NOW = strftime("%Y-%m-%d %H:%M:%S", gmtime()) 55 | 56 | # Downloads the individual lists 57 | for URL in URLS: 58 | LIST_INDEX = URLS.index(URL) 59 | FILENAME = "downloaded_lists/blocklist" + str(LIST_INDEX) + ".txt" 60 | print(NOW+" - "+"Downloading: "+ FILENAME) 61 | urlretrieve(URL, FILENAME) 62 | NOW = strftime("%Y-%m-%d %H:%M:%S", gmtime()) 63 | 64 | # Merges lists into one file 65 | # Source: https://bobbyhadz.com/blog/merge-text-files-in-python#how-to-merge-text-files-in-python 66 | file_paths = glob.glob('downloaded_lists/*.txt') 67 | with open('adblocker_list.txt', 'w', encoding='utf-8') as output_file: 68 | for file_path in file_paths: 69 | with open(file_path, 'r', encoding='utf-8') as input_file: 70 | output_file.write(input_file.read() + '\n') 71 | 72 | NOW = strftime("%Y-%m-%d %H:%M:%S", gmtime()) 73 | 74 | # Removes individual text files 75 | I = 0 76 | while I < len(URLS): 77 | print(NOW+" - "+"Removing: downloaded_lists/blocklist"+str(I)+".txt") 78 | os.remove("downloaded_lists/blocklist"+str(I)+".txt") 79 | I = I + 1 80 | 81 | NOW = strftime("%Y-%m-%d %H:%M:%S", gmtime()) 82 | 83 | # Cleans adblocker_list.txt file 84 | print(NOW+" - "+"Cleaning adblocker_list.txt, please wait..") 85 | # Open the file 86 | UNIQUELINES = set(open('adblocker_list.txt', 'r', encoding='utf-8').readlines()) 87 | # Sort all lines in the set 88 | UNIQUELINES = sorted(UNIQUELINES) 89 | # Removes duplicates from from text file 90 | CLEANEDOUTPUT = open('adblocker_list.txt', 'w', encoding='utf-8').writelines(UNIQUELINES) 91 | 92 | NOW = strftime("%Y-%m-%d %H:%M:%S", gmtime()) 93 | 94 | # Removes all junk from aio_blocklist.txt file 95 | print(NOW+" - "+"Removing junk lines from adblocker_list.txt, please wait..") 96 | with open("adblocker_list.txt", "r", encoding='utf-8') as f: 97 | LINES = f.readlines() 98 | with open("adblocker_list_final.txt", "w", encoding='utf-8') as new_f: 99 | for line in LINES: 100 | if not line.startswith("!") and not line.startswith("#") and not line.startswith("["): 101 | new_f.write(line) 102 | os.remove("adblocker_list.txt") 103 | 104 | NOW = strftime("%Y-%m-%d %H:%M:%S", gmtime()) 105 | print(NOW+" - "+"Adblocker AIO list has been generated as: adblocker_list_final.txt") 106 | 107 | # Write to HISTORY.md file 108 | #with open("HISTORY.md", "a", encoding='utf-8') as HISTORYFILE: 109 | # HISTORYFILE.write("- Updated "+NOW+"\n") 110 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # AdGuard-Home-AIO-List 2 | 3 | An All-In-One AdGuard Home blocklist and allowlist generated locally on your PC using Python. 4 | 5 | Version: 0.3 6 | 7 | Updated (AEST): 2024-07-15 05:38:23PM 8 | 9 | ## ✨ What's New in 0.3 10 | - added fix to skip blocking subdomains 11 | - added color text output using the Python package named [__rich__](https://pypi.org/project/rich/) 12 | - added more lists 13 | - fixed datetime now to be local time 14 | - improved output 15 | 16 | ## ✨ What's New in 0.2 17 | - Added new must-have requirement of a Python package named [__requests__](https://pypi.org/project/requests/) 18 | - Added new lists 19 | - More cleanup of output rules 20 | 21 | ## 🔬 Repo Status 22 | 23 | - Written in **Python** it now has been updated for 2024 and have new lists added 24 | - Tested and working on Python for Windows Python 3.12.4 or later 25 | - Currently around **5.2 million unique rules** are included 26 | - The blocklist will make AdGuard Home's RAM usage increase to around **775MB** 27 | - Do not use these lists on older hardware with fewer than **4 CPU cores** or **IOT** devices 28 | - Be prepared to make your own whitelist additions within AdGuard Home, depending on your needs 29 | - I attempted and tested using **GitHub Codespaces** and **github LFS** but moved away from both due to annoying filesize restrictions 30 | 31 | ## ⛔ Included Blocklists 32 | 33 | - [1Hosts (Lite)](https://adguardteam.github.io/HostlistsRegistry/assets/filter_24.txt) 34 | - [AdAway Default Blocklist](https://adguardteam.github.io/HostlistsRegistry/assets/filter_2.txt) 35 | - [AdGuard DNS filter](https://adguardteam.github.io/HostlistsRegistry/assets/filter_1.txt) 36 | - [AdGuard Simplified Domain Names filter](https://adguardteam.github.io/AdGuardSDNSFilter/Filters/filter.txt) by AdGuard 37 | - [Anudeep's Blacklist](https://github.com/anudeepND/blacklist) - [RAW](https://raw.githubusercontent.com/anudeepND/blacklist/master/adservers.txt) by Anudeep 38 | - [Blocklist Project](https://github.com/blocklistproject/Lists) 39 | - [Abuse](https://blocklistproject.github.io/Lists/adguard/abuse-ags.txt) 40 | - [Crypto](https://blocklistproject.github.io/Lists/adguard/crypto-ags.txt) 41 | - [Drugs](https://blocklistproject.github.io/Lists/adguard/drugs-ags.txt) 42 | - [Fraud](https://blocklistproject.github.io/Lists/adguard/fraud-ags.txt) 43 | - [Malware](https://blocklistproject.github.io/Lists/adguard/malware-ags.txt) 44 | - [Phishing](https://blocklistproject.github.io/Lists/adguard/phishing-ags.txt) 45 | - [Ransom](https://blocklistproject.github.io/Lists/adguard/ransomware-ags.txt) 46 | - [Scam](https://blocklistproject.github.io/Lists/adguard/scam-ags.txt) 47 | - [Tracking](https://blocklistproject.github.io/Lists/adguard/tracking-ags.txt) 48 | - [Blocklists by sefinek](https://sefinek.net/blocklist-generator/adguard) - ✨ 0.2 49 | - [Dan Pollock's List](https://adguardteam.github.io/HostlistsRegistry/assets/filter_4.txt) 50 | - [Dandelion Sprout's Anti Push Notifications](https://adguardteam.github.io/HostlistsRegistry/assets/filter_39.txt) 51 | - [Dandelion Sprout's Anti-Malware List](https://adguardteam.github.io/HostlistsRegistry/assets/filter_12.txt) 52 | - [Deanoman - tracker_list_adguard_home](https://raw.githubusercontent.com/hl2guide/AdGuard-Home-AIO-List/main/tracker_list_adguard_home.txt) 53 | - [DurableNapkin's Scam Blocklist](https://adguardteam.github.io/HostlistsRegistry/assets/filter_10.txt) 54 | - [HaGeZi's Multi PRO - Extended protection](https://raw.githubusercontent.com/hagezi/dns-blocklists/main/adblock/pro.txt) 55 | - [HaGeZi's The World's Most Abused TLDs](https://github.com/hagezi/dns-blocklists) - [RAW](https://raw.githubusercontent.com/hagezi/dns-blocklists/main/adblock/spam-tlds.txt) by HaGeZi 56 | - [Malicious URL Blocklist (URLHaus)](https://adguardteam.github.io/HostlistsRegistry/assets/filter_11.txt) 57 | - [OISD Blocklist Small](https://adguardteam.github.io/HostlistsRegistry/assets/filter_5.txt) 58 | - [Peter Lowe's Blocklist](https://adguardteam.github.io/HostlistsRegistry/assets/filter_3.txt) 59 | - [Phishing Army](https://adguardteam.github.io/HostlistsRegistry/assets/filter_18.txt) 60 | - [Phishing URL Blocklist (PhishTank and OpenPhish)](https://adguardteam.github.io/HostlistsRegistry/assets/filter_30.txt) 61 | - [ShadowWhisperer's Malware List](https://adguardteam.github.io/HostlistsRegistry/assets/filter_42.txt) 62 | - [Stalkerware Indicators List](https://adguardteam.github.io/HostlistsRegistry/assets/filter_31.txt) 63 | - [Steven Black's List](https://adguardteam.github.io/HostlistsRegistry/assets/filter_33.txt) 64 | - [The Big List of Hacked Malware Web Sites](https://adguardteam.github.io/HostlistsRegistry/assets/filter_9.txt) 65 | - [WindowsSpyBlocker - Hosts spy rules](https://adguardteam.github.io/HostlistsRegistry/assets/filter_23.txt) 66 | - [borestad's blocklist-abuseipdb](https://raw.githubusercontent.com/borestad/blocklist-abuseipdb/main/abuseipdb-s100-60d.ipv4) 67 | - [ph00lt0's blocklist](https://raw.githubusercontent.com/ph00lt0/blocklists/master/blocklist.txt) 68 | - [romainmarcoux's malicious-ip](https://raw.githubusercontent.com/romainmarcoux/malicious-ip/main/full-40k.txt) 69 | - [stamparm's ipsum](https://raw.githubusercontent.com/stamparm/ipsum/master/levels/3.txt) 70 | - [uBlock₀ filters - Badware risks](https://adguardteam.github.io/HostlistsRegistry/assets/filter_50.txt) 71 | 72 | ## ⚒️ Setup 73 | 74 | 1. Install [Python](https://www.python.org) on your device 75 | 2. Install two required Python packages by running: 76 | 77 | ``` 78 | python -m pip install requests 79 | python -m pip install rich 80 | ``` 81 | 82 | - The python script `create_list.py` can be used to generate `aio_blocklist_final.txt` on a local machine that has Python 83 | - I have tested it on Windows 11, however it should work fine on other OSs too (as long as you have Python installed) 84 | 85 | 1. Download a ZIP of this repo and extract it to a suitable known folder 86 | 2. Create a new empty folder `downloaded_lists` within the `AdGuard-Home-AIO-List-main` folder 87 | 3. Edit `create_list.py` in a text editor and change line 20 to set `CURRENTWORKINGDIRECTORY` to a path where `AdGuard-Home-AIO-List-main` exists (save change) 88 | 4. Run the script `create_list.py` using `Python` 89 | 5. Once the script finishes add the full path of `aio_blocklist_final.txt` to AdGuard Home's `DNS blocklists` as a `custom list` 90 | 91 | ## Usage 92 | 93 | To regenerate the list simply run `create_list.py` when desired (as a scheduled task etc) 94 | 95 | # 📦 Archived Old Info 96 | 97 | The below is old info that shouldn't be needed anymore. 98 | 99 | ## ⭐ How to Add Blocklists to AdGuard Home 100 | 101 | - If you have a PC with at least 8GB of RAM adding these lists will be very useful 102 | - After adding and updating these lists RAM usage for AdGuard Home will go up to around 229MB 103 | 104 | 1. Log into __AdGuard Home__ 105 | 2. Using the top menu click `Filters` and then `DNS blocklists` 106 | 3. Click the green `Add blocklist` button 107 | 4. Click the `Choose from the list` button 108 | 5. Checkmark the following `General` blocklists: 109 | - 1Hosts (List) 110 | - AdGuard DNS filter 111 | - AdAway Default Blocklist 112 | - Dan Pollock's List 113 | - OISD Blocklist Small 114 | - Peter Lowe's Blocklist 115 | - Steven Black's List 116 | 7. Checkmark the following `Other` blocklists: 117 | - Dandelion Sprout's Anti Push Notifications 118 | - WindowsSpyBlocker 119 | 9. Checkmark all of the `Security` blocklists 120 | 10. Click the green `Save` button 121 | 122 | ## ⛔ How to Block Services 123 | 124 | 1. Log into __AdGuard Home__ 125 | 2. Using the top menu click `Filters` and then `Blocked services` 126 | 3. Click on the `Block all` button 127 | 4. Unblock (toggle off) services you actually use 128 | 5. Click the green `Save` button once done 129 | -------------------------------------------------------------------------------- /create_list.py: -------------------------------------------------------------------------------- 1 | """Creates a consolidated blocklist for many source files.""" 2 | 3 | # Downloads blocklists, combines them to one list, 4 | # sorts all lines, makes lines unique, and then removes comment lines 5 | 6 | # The final AIO list is: aio_blocklist_final.txt 7 | 8 | # FOR ADGUARD HOME ONLY 9 | 10 | # Tested and working on Python for Windows Python 3.12.4 or later. 11 | 12 | # Required Python Packages: 13 | # - "requests" is required to handle 403 errors (install that package first by running: python -m pip install requests) 14 | # - "rich" is required for colored text output 15 | 16 | # Version: 0.3 17 | # Date: 2024-07-15 05:33:16PM 18 | 19 | # Imports 20 | from time import gmtime, strftime 21 | from datetime import datetime, timezone 22 | from urllib.request import urlretrieve 23 | import requests 24 | from rich import print 25 | import glob 26 | import os 27 | # from tqdm import tqdm 28 | #from urllib.request import Request, urlopen 29 | #import requests 30 | #from random import seed 31 | 32 | #CURRENTWORKINGDIRECTORY = os.getcwd() + "\\" 33 | CURRENTWORKINGDIRECTORY = "C:\\Users\\Dean\\Documents\\Important\\MEGASync\\GitHub\\CodeLibrary\\Python\\AdGuard-Home-AIO-List-main\\" 34 | 35 | # NOW = strftime("%Y-%m-%d %H:%M:%S", gmtime()) 36 | 37 | URLS = [ 38 | # AdGuard Simplified Domain Names filter 39 | "https://adguardteam.github.io/AdGuardSDNSFilter/Filters/filter.txt", 40 | # 🔮 Most Abused TLDs 41 | "https://raw.githubusercontent.com/hagezi/dns-blocklists/main/adblock/spam-tlds.txt", 42 | # 1Hosts (Lite) 43 | "https://adguardteam.github.io/HostlistsRegistry/assets/filter_24.txt", 44 | # AdGuard DNS filter 45 | "https://adguardteam.github.io/HostlistsRegistry/assets/filter_1.txt", 46 | # OISD Blocklist Small 47 | "https://adguardteam.github.io/HostlistsRegistry/assets/filter_5.txt", 48 | # Phishing URL Blocklist (PhishTank and OpenPhish) 49 | "https://adguardteam.github.io/HostlistsRegistry/assets/filter_30.txt", 50 | # Scam Blocklist by DurableNapkin 51 | "https://adguardteam.github.io/HostlistsRegistry/assets/filter_10.txt", 52 | # The Big List of Hacked Malware Web Sites 53 | "https://adguardteam.github.io/HostlistsRegistry/assets/filter_9.txt", 54 | # Malicious URL Blocklist (URLHaus) 55 | "https://adguardteam.github.io/HostlistsRegistry/assets/filter_11.txt", 56 | # Phishing Army 57 | "https://adguardteam.github.io/HostlistsRegistry/assets/filter_18.txt", 58 | # ShadowWhisperer's Malware List 59 | "https://adguardteam.github.io/HostlistsRegistry/assets/filter_42.txt", 60 | # Stalkerware Indicators List 61 | "https://adguardteam.github.io/HostlistsRegistry/assets/filter_31.txt", 62 | # uBlock₀ filters - Badware risks 63 | "https://adguardteam.github.io/HostlistsRegistry/assets/filter_50.txt", 64 | # Steven Black's List 65 | "https://adguardteam.github.io/HostlistsRegistry/assets/filter_33.txt", 66 | # Peter Lowe's Blocklist 67 | "https://adguardteam.github.io/HostlistsRegistry/assets/filter_3.txt", 68 | # Dandelion Sprout's Anti Push Notifications 69 | "https://adguardteam.github.io/HostlistsRegistry/assets/filter_39.txt", 70 | # AdAway Default Blocklist 71 | "https://adguardteam.github.io/HostlistsRegistry/assets/filter_2.txt", 72 | # Dan Pollock's List 73 | "https://adguardteam.github.io/HostlistsRegistry/assets/filter_4.txt", 74 | # WindowsSpyBlocker - Hosts spy rules 75 | "https://adguardteam.github.io/HostlistsRegistry/assets/filter_23.txt", 76 | # Dandelion Sprout's Anti-Malware List 77 | "https://adguardteam.github.io/HostlistsRegistry/assets/filter_12.txt", 78 | # ph00lt0 / blocklist : https://github.com/ph00lt0/blocklist 79 | "https://raw.githubusercontent.com/ph00lt0/blocklists/master/blocklist.txt", 80 | # Deanoman - tracker_list_adguard_home 81 | "https://raw.githubusercontent.com/hl2guide/AdGuard-Home-AIO-List/main/tracker_list_adguard_home.txt", 82 | # blocklistproject ads-ags.txt : https://github.com/blocklistproject/Lists 83 | "https://blocklistproject.github.io/Lists/adguard/ads-ags.txt", 84 | # blocklistproject crypto-ags.txt : https://github.com/blocklistproject/Lists 85 | "https://blocklistproject.github.io/Lists/adguard/crypto-ags.txt", 86 | # blocklistproject drugs-ags.txt : https://github.com/blocklistproject/Lists 87 | "https://blocklistproject.github.io/Lists/adguard/drugs-ags.txt", 88 | # blocklistproject fraud-ags.txt : https://github.com/blocklistproject/Lists 89 | "https://blocklistproject.github.io/Lists/adguard/fraud-ags.txt", 90 | # blocklistproject phishing-ags.txt : https://github.com/blocklistproject/Lists 91 | "https://blocklistproject.github.io/Lists/adguard/phishing-ags.txt", 92 | # blocklistproject ransomware-ags.txt : https://github.com/blocklistproject/Lists 93 | "https://blocklistproject.github.io/Lists/adguard/ransomware-ags.txt", 94 | # blocklistproject scam-ags.txt : https://github.com/blocklistproject/Lists 95 | "https://blocklistproject.github.io/Lists/adguard/scam-ags.txt", 96 | # blocklistproject tracking-ags.txt : https://github.com/blocklistproject/Lists 97 | "https://blocklistproject.github.io/Lists/adguard/tracking-ags.txt", 98 | # Multi PRO - Extended protection : https://github.com/hagezi/dns-blocklists 99 | "https://raw.githubusercontent.com/hagezi/dns-blocklists/main/adblock/pro.txt", 100 | # Anudeep's Blacklist : https://github.com/anudeepND/blacklist 101 | "https://raw.githubusercontent.com/anudeepND/blacklist/master/adservers.txt", 102 | # romainmarcoux / malicious-ip : https://github.com/romainmarcoux/malicious-ip 103 | "https://raw.githubusercontent.com/romainmarcoux/malicious-ip/main/full-40k.txt", 104 | # borestad / blocklist-abuseipdb : https://github.com/borestad/blocklist-abuseipdb 105 | "https://raw.githubusercontent.com/borestad/blocklist-abuseipdb/main/abuseipdb-s100-60d.ipv4", 106 | # ipsum : https://github.com/stamparm/ipsum 107 | "https://raw.githubusercontent.com/stamparm/ipsum/master/levels/3.txt", 108 | # Sefinek-Blocklist-Collection (many lists) - https://sefinek.net/blocklist-generator/adguard 109 | "https://blocklist.sefinek.net/generated/v1/adguard/abuse/blocklistproject/hosts.fork.txt", 110 | "https://blocklist.sefinek.net/generated/v1/adguard/abuse/urlhaus.abuse.ch/hostfile.fork.txt", 111 | "https://blocklist.sefinek.net/generated/v1/adguard/ads/0Zinc/easylist.fork.txt", 112 | "https://blocklist.sefinek.net/generated/v1/adguard/ads/DandelionSprout.GameConsoleAdblockList.txt", 113 | "https://blocklist.sefinek.net/generated/v1/adguard/ads/FadeMind/UncheckyAds.fork.txt", 114 | #"https://blocklist.sefinek.net/generated/v1/adguard/ads/MajkiIT/SmartTV-ads.fork.txt", # Testing Samsung TV login issues 05.06.2024 115 | "https://blocklist.sefinek.net/generated/v1/adguard/ads/ShadowWhisperer/Ads.fork.txt", 116 | "https://blocklist.sefinek.net/generated/v1/adguard/ads/adaway/hosts.fork.txt", 117 | "https://blocklist.sefinek.net/generated/v1/adguard/ads/anudeepND/adservers.fork.txt", 118 | "https://blocklist.sefinek.net/generated/v1/adguard/ads/blocklistproject/hosts.fork.txt", 119 | "https://blocklist.sefinek.net/generated/v1/adguard/ads/blocklistproject/youtube.fork.txt", 120 | "https://blocklist.sefinek.net/generated/v1/adguard/ads/craiu/mobiletrackers.fork.txt", 121 | "https://blocklist.sefinek.net/generated/v1/adguard/ads/crazy-max/spy.fork.txt", 122 | "https://blocklist.sefinek.net/generated/v1/adguard/ads/disconnectme/simple-ad.fork.txt", 123 | "https://blocklist.sefinek.net/generated/v1/adguard/ads/firebog/AdguardDNS.fork.txt", 124 | "https://blocklist.sefinek.net/generated/v1/adguard/ads/firebog/Admiral.fork.txt", 125 | "https://blocklist.sefinek.net/generated/v1/adguard/ads/firebog/Easylist.fork.txt", 126 | "https://blocklist.sefinek.net/generated/v1/adguard/ads/firebog/Prigent-Ads.fork.txt", 127 | "https://blocklist.sefinek.net/generated/v1/adguard/ads/jerryn70/GoodbyeAds.fork.txt", 128 | "https://blocklist.sefinek.net/generated/v1/adguard/ads/r-a-y/AdguardMobileAds.fork.txt", 129 | "https://blocklist.sefinek.net/generated/v1/adguard/ads/sefinek.hosts.txt", 130 | "https://blocklist.sefinek.net/generated/v1/adguard/ads/yoyo/ads-trackers-etc.fork.txt", 131 | "https://blocklist.sefinek.net/generated/v1/adguard/amp/developerdan/amp-hosts-extended.fork.txt", 132 | "https://blocklist.sefinek.net/generated/v1/adguard/amp/ente-dev/google-amp-hosts.fork.txt", 133 | "https://blocklist.sefinek.net/generated/v1/adguard/anime/myanimelist.net.txt", 134 | "https://blocklist.sefinek.net/generated/v1/adguard/anime/shinden.pl.txt", 135 | "https://blocklist.sefinek.net/generated/v1/adguard/apps/whatsapp.txt", 136 | "https://blocklist.sefinek.net/generated/v1/adguard/crypto/cryptojacking/Snota418/Crypto-streams.fork.txt", 137 | "https://blocklist.sefinek.net/generated/v1/adguard/crypto/cryptojacking/firebog/Prigent/Crypto.fork.txt", 138 | "https://blocklist.sefinek.net/generated/v1/adguard/crypto/cryptojacking/hoshsadiq/adblock-nocoin-list.fork.txt", 139 | "https://blocklist.sefinek.net/generated/v1/adguard/crypto/cryptojacking/zerodot1/CoinBlockerLists-hosts.fork.txt", 140 | "https://blocklist.sefinek.net/generated/v1/adguard/crypto/sites/sefinek.hosts.txt", 141 | "https://blocklist.sefinek.net/generated/v1/adguard/dating-services/developerdan/extended.fork.txt", 142 | "https://blocklist.sefinek.net/generated/v1/adguard/dead-domains/jarelllama/dead-domains.fork.txt", 143 | "https://blocklist.sefinek.net/generated/v1/adguard/drugs/blocklistproject/drugs.fork.txt", 144 | "https://blocklist.sefinek.net/generated/v1/adguard/extensions/FadeMind/add-2o7Net.fork.txt", 145 | "https://blocklist.sefinek.net/generated/v1/adguard/extensions/MajkiIT/adguard-host.fork.txt", 146 | "https://blocklist.sefinek.net/generated/v1/adguard/extensions/MajkiIT/easy-privacy-host.fork.txt", 147 | "https://blocklist.sefinek.net/generated/v1/adguard/extensions/cbuijs/adult-domains-24733.fork.txt", 148 | "https://blocklist.sefinek.net/generated/v1/adguard/extensions/deathbybandaid/CountryCodesLists-France.fork.txt", 149 | "https://blocklist.sefinek.net/generated/v1/adguard/extensions/deathbybandaid/ParsedBlacklists-EasyList-Liste-FR.fork.txt", 150 | "https://blocklist.sefinek.net/generated/v1/adguard/extensions/deathbybandaid/ParsedBlacklists-EasyList.fork.txt", 151 | "https://blocklist.sefinek.net/generated/v1/adguard/extensions/hagezi/pro.fork.txt", 152 | "https://blocklist.sefinek.net/generated/v1/adguard/extensions/justdomains/adguarddns-justdomains.fork.txt", 153 | "https://blocklist.sefinek.net/generated/v1/adguard/extensions/oisd/big.fork.txt", 154 | "https://blocklist.sefinek.net/generated/v1/adguard/extensions/r-a-y/AdguardApps.fork.txt", 155 | "https://blocklist.sefinek.net/generated/v1/adguard/extensions/r-a-y/AdguardMobileSpyware.fork.txt", 156 | "https://blocklist.sefinek.net/generated/v1/adguard/fakenews/StevenBlack/hosts.fork.txt", 157 | "https://blocklist.sefinek.net/generated/v1/adguard/fakenews/marktron/hosts.fork.txt", 158 | "https://blocklist.sefinek.net/generated/v1/adguard/fraud/blocklistproject/hosts.fork.txt", 159 | "https://blocklist.sefinek.net/generated/v1/adguard/gambling/MajkiIT/gambling-hosts.fork.txt", 160 | "https://blocklist.sefinek.net/generated/v1/adguard/gambling/StevenBlack/hosts.fork.txt", 161 | "https://blocklist.sefinek.net/generated/v1/adguard/gambling/TrustPositif/gambling-indonesia.fork.txt", 162 | "https://blocklist.sefinek.net/generated/v1/adguard/gambling/blocklistproject/hosts.fork.txt", 163 | "https://blocklist.sefinek.net/generated/v1/adguard/gambling/sefinek.hosts.txt", 164 | "https://blocklist.sefinek.net/generated/v1/adguard/games/league-of-legends.txt", 165 | "https://blocklist.sefinek.net/generated/v1/adguard/games/valorant.txt", 166 | "https://blocklist.sefinek.net/generated/v1/adguard/hate-and-junk/developerdan/extended.fork.txt", 167 | "https://blocklist.sefinek.net/generated/v1/adguard/malicious/AssoEchap/stalkerware-indicators.fork.txt", 168 | "https://blocklist.sefinek.net/generated/v1/adguard/malicious/DandelionSprout-AntiMalwareHosts.fork.txt", 169 | "https://blocklist.sefinek.net/generated/v1/adguard/malicious/RPiList/Malware.fork.txt", 170 | "https://blocklist.sefinek.net/generated/v1/adguard/malicious/Spam404/main-blacklist.fork.txt", 171 | "https://blocklist.sefinek.net/generated/v1/adguard/malicious/bigdargon/hostsVN.fork.txt", 172 | "https://blocklist.sefinek.net/generated/v1/adguard/malicious/blocklistproject/malware.fork.txt", 173 | "https://blocklist.sefinek.net/generated/v1/adguard/malicious/digitalside/latestdomains.fork.txt", 174 | "https://blocklist.sefinek.net/generated/v1/adguard/malicious/disconnectme/simple-malvertising.fork.txt", 175 | "https://blocklist.sefinek.net/generated/v1/adguard/malicious/malware-filter/urlhaus-filter-hosts-online.fork.txt", 176 | "https://blocklist.sefinek.net/generated/v1/adguard/malicious/phishing.txt", 177 | "https://blocklist.sefinek.net/generated/v1/adguard/malicious/quidsup/notrack-malware.fork.txt", 178 | "https://blocklist.sefinek.net/generated/v1/adguard/malicious/reported-by-norton.txt", 179 | "https://blocklist.sefinek.net/generated/v1/adguard/malicious/sefinek.hosts1.txt", 180 | "https://blocklist.sefinek.net/generated/v1/adguard/malicious/sefinek.hosts2.txt", 181 | "https://blocklist.sefinek.net/generated/v1/adguard/malicious/suspicious.txt", 182 | "https://blocklist.sefinek.net/generated/v1/adguard/malicious/web-attacks.txt", 183 | "https://blocklist.sefinek.net/generated/v1/adguard/phishing/Dogino/Discord-Phishing-URLs-phishing.fork.txt", 184 | "https://blocklist.sefinek.net/generated/v1/adguard/phishing/RPiList/Phishing-Angriffe.fork.txt", 185 | "https://blocklist.sefinek.net/generated/v1/adguard/phishing/blocklistproject/phishing.fork.txt", 186 | "https://blocklist.sefinek.net/generated/v1/adguard/phishing/phishing.army/blocklist-extended.fork.txt", 187 | "https://blocklist.sefinek.net/generated/v1/adguard/porn/4skinSkywalker/hosts.fork.txt", 188 | "https://blocklist.sefinek.net/generated/v1/adguard/porn/Sinfonietta/pornography-hosts.fork.txt", 189 | "https://blocklist.sefinek.net/generated/v1/adguard/porn/StevenBlack/porn.fork.txt", 190 | "https://blocklist.sefinek.net/generated/v1/adguard/porn/blocklistproject/porn.fork.txt", 191 | "https://blocklist.sefinek.net/generated/v1/adguard/porn/chadmayfield/pi-blocklist-porn-all.fork.txt", 192 | "https://blocklist.sefinek.net/generated/v1/adguard/porn/oisd/nsfw.fork.txt", 193 | "https://blocklist.sefinek.net/generated/v1/adguard/porn/sefinek.hosts.txt", 194 | "https://blocklist.sefinek.net/generated/v1/adguard/ransomware/blocklistproject/ransomware.fork.txt", 195 | "https://blocklist.sefinek.net/generated/v1/adguard/redirect/blocklistproject/redirect.fork.txt", 196 | "https://blocklist.sefinek.net/generated/v1/adguard/scam/Dogino/Discord-Phishing-URLs-scam.fork.txt", 197 | "https://blocklist.sefinek.net/generated/v1/adguard/scam/blocklistproject/scam.fork.txt", 198 | "https://blocklist.sefinek.net/generated/v1/adguard/scam/durablenapkin/scamblocklist.fork.txt", 199 | "https://blocklist.sefinek.net/generated/v1/adguard/scam/jarelllama/scam.fork.txt", 200 | "https://blocklist.sefinek.net/generated/v1/adguard/sites/booth.pm.txt", 201 | "https://blocklist.sefinek.net/generated/v1/adguard/sites/gamebanana.txt", 202 | "https://blocklist.sefinek.net/generated/v1/adguard/sites/omegle.txt", 203 | "https://blocklist.sefinek.net/generated/v1/adguard/sites/patreon.txt", 204 | "https://blocklist.sefinek.net/generated/v1/adguard/sites/pinterest.txt", 205 | "https://blocklist.sefinek.net/generated/v1/adguard/sites/pixiv.txt", 206 | "https://blocklist.sefinek.net/generated/v1/adguard/sites/riotgames.txt", 207 | "https://blocklist.sefinek.net/generated/v1/adguard/social/facebook.txt", 208 | "https://blocklist.sefinek.net/generated/v1/adguard/social/instagram.txt", 209 | "https://blocklist.sefinek.net/generated/v1/adguard/social/snapchat.txt", 210 | "https://blocklist.sefinek.net/generated/v1/adguard/social/tiktok.txt", 211 | "https://blocklist.sefinek.net/generated/v1/adguard/social/twitter.txt", 212 | "https://blocklist.sefinek.net/generated/v1/adguard/spam/FadeMind/add-Spam.fork.txt", 213 | "https://blocklist.sefinek.net/generated/v1/adguard/spam/RPiList/spam-mails.fork.txt", 214 | "https://blocklist.sefinek.net/generated/v1/adguard/spam/stopforumspam/toxic-domains-whole.fork.txt", 215 | "https://blocklist.sefinek.net/generated/v1/adguard/suspicious/FadeMind/add-Risk.fork.txt", 216 | "https://blocklist.sefinek.net/generated/v1/adguard/suspicious/firebog/w3kbl.fork.txt", 217 | "https://blocklist.sefinek.net/generated/v1/adguard/test.txt", 218 | "https://blocklist.sefinek.net/generated/v1/adguard/tracking-and-telemetry/0Zinc/easyprivacy.fork.txt", 219 | "https://blocklist.sefinek.net/generated/v1/adguard/tracking-and-telemetry/MajkiIT/adguard-mobile-host.fork.txt", 220 | "https://blocklist.sefinek.net/generated/v1/adguard/tracking-and-telemetry/ente-dev/tv.fork.txt", 221 | "https://blocklist.sefinek.net/generated/v1/adguard/tracking-and-telemetry/frogeye/firstparty-trackers-hosts.txt", 222 | "https://blocklist.sefinek.net/generated/v1/adguard/tracking-and-telemetry/mitchellkrogza/INACTIVE.fork.txt", 223 | "https://blocklist.sefinek.net/generated/v1/adguard/tracking-and-telemetry/neodevpro/host.fork.txt", 224 | "https://blocklist.sefinek.net/generated/v1/adguard/tracking-and-telemetry/quidsup/trackers-hosts.fork.txt", 225 | "https://blocklist.sefinek.net/generated/v1/adguard/useless-websites/jarelllama/parked-domains.fork.txt", 226 | "https://blocklist.sefinek.net/generated/v1/adguard/useless-websites/sefinek.hosts.txt", 227 | "https://blocklist.sefinek.net/generated/v1/adguard/dating-services/ShadowWhisperer/dating.fork.txt", # Testing 0.3 228 | "https://blocklist.sefinek.net/generated/v1/adguard/dating-services/sefinek.hosts.txt", # Testing 0.3 229 | "https://blocklist.sefinek.net/generated/v1/adguard/malicious/ShadowWhisperer/malware.fork.txt", # Testing 0.3 230 | "https://blocklist.sefinek.net/generated/v1/adguard/scam/ShadowWhisperer/scam.fork.txt", # Testing 0.3 231 | "https://blocklist.sefinek.net/generated/v1/adguard/tracking-and-telemetry/ShadowWhisperer/tracking.fork.txt", # Testing 0.3 232 | 233 | #"https://hosts.anudeep.me/mirror/adservers.txt" 234 | # LostAd [TOO BIG] 235 | #"https://raw.githubusercontent.com/lennihein/LostAd/main/lostad_dns.txt", 236 | # ppfeufer / adguard-filter-list [TOO BIG] 237 | #"https://raw.githubusercontent.com/ppfeufer/adguard-filter-list/master/blocklist", 238 | # HaGeZi's Pro DNS Blocklist [TOO BIG] 239 | #"https://raw.githubusercontent.com/hagezi/dns-blocklists/main/adblock/pro.txt", 240 | # HaGeZi's The World's Most Abused TLDs 241 | #"https://raw.githubusercontent.com/hagezi/dns-blocklists/main/adblock/spam-tlds.txt", 242 | # HaGeZi's Gambling DNS Blocklist [TOO BIG] 243 | #"https://raw.githubusercontent.com/hagezi/dns-blocklists/main/adblock/gambling.txt", 244 | # Steven Black's List [INCLUDED ALREADY] 245 | #"https://adguardteam.github.io/HostlistsRegistry/assets/filter_33.txt", 246 | # OISD Blockist Big 247 | #"https://adguardteam.github.io/HostlistsRegistry/assets/filter_27.txt", 248 | # AdGuard Simplified Domain Names filter 249 | #"https://adguardteam.github.io/AdGuardSDNSFilter/Filters/filter.txt" 250 | ] 251 | 252 | UTC_DT = datetime.now(timezone.utc) # UTC time 253 | NOW = str(UTC_DT.astimezone()) # local time 254 | 255 | def refreshDateTimeToNow(): 256 | UTC_DT = datetime.now(timezone.utc) # UTC time 257 | NOW = str(UTC_DT.astimezone()) # local time 258 | return NOW 259 | 260 | NOW = refreshDateTimeToNow() 261 | 262 | #pbarCollection = tqdm(URLS) 263 | 264 | # Downloads the individual lists 265 | for URL in URLS: 266 | LIST_INDEX = URLS.index(URL) 267 | FILENAME = CURRENTWORKINGDIRECTORY + "downloaded_lists\\blocklist" + str(LIST_INDEX) + ".txt" 268 | #print(NOW+" - "+"Downloading: " + URL + " >> " + FILENAME) 269 | # urlretrieve(URL, FILENAME) 270 | # NOW = strftime("%Y-%m-%d %H:%M:%S", gmtime()) 271 | 272 | #pbarCollection.set_description("Downloading List " + str(LIST_INDEX)) 273 | #print("\n") 274 | 275 | # Uses a workaround for 403 errors by applying a better "User-Agent" header to the request 276 | if URL.startswith("https://blocklist.sefinek.net/"): 277 | print(NOW+" - "+"Downloading: " + URL) 278 | print("to: " + FILENAME) 279 | # print("\n") 280 | HEADERS = { 281 | 'User-Agent': 'Mozilla 5.0', 282 | } 283 | RESPONSE = requests.get(URL, headers=HEADERS) 284 | CONTENT = RESPONSE.text 285 | if RESPONSE.status_code == 200: 286 | with open(FILENAME, "w", encoding='utf8') as file: 287 | file.write(CONTENT) 288 | NOW = refreshDateTimeToNow() 289 | else: 290 | print(NOW+" - "+"Downloading: " + URL) 291 | print("to: " + FILENAME) 292 | #print("\n") 293 | urlretrieve(URL, FILENAME) 294 | NOW = refreshDateTimeToNow() 295 | # os.system('cls') 296 | 297 | # Merges lists into one file 298 | # Source: https://bobbyhadz.com/blog/merge-text-files-in-python#how-to-merge-text-files-in-python 299 | file_paths = glob.glob(CURRENTWORKINGDIRECTORY + 'downloaded_lists/*.txt') 300 | with open(CURRENTWORKINGDIRECTORY + 'aio_blocklist.txt', 'w', encoding='utf-8') as output_file: 301 | for file_path in file_paths: 302 | with open(file_path, 'r', encoding='utf-8') as input_file: 303 | output_file.write(input_file.read() + '\n') 304 | 305 | NOW = refreshDateTimeToNow() 306 | 307 | # Removes individual text files 308 | I = 0 309 | while I < len(URLS): 310 | print(NOW+" - "+"Removing: downloaded_lists/blocklist"+str(I)+".txt") 311 | os.remove(CURRENTWORKINGDIRECTORY + "downloaded_lists/blocklist"+str(I)+".txt") 312 | I = I + 1 313 | 314 | NOW = refreshDateTimeToNow() 315 | 316 | # Cleans aio_blocklist.txt file 317 | print(NOW+" - "+"Cleaning aio_blocklist.txt, please wait..") 318 | # Open the file 319 | UNIQUELINES = set(open(CURRENTWORKINGDIRECTORY + 'aio_blocklist.txt', 'r', encoding='utf-8').readlines()) 320 | # Sort all lines in the set 321 | UNIQUELINES = sorted(UNIQUELINES) 322 | # Removes duplicates from from text file 323 | CLEANEDOUTPUT = open(CURRENTWORKINGDIRECTORY + 'aio_blocklist.txt', 'w', encoding='utf-8').writelines(UNIQUELINES) 324 | 325 | NOW = refreshDateTimeToNow() 326 | 327 | # Removes all junk from aio_blocklist.txt file 328 | print(NOW+" - "+"Removing junk lines from aio_blocklist.txt, please wait..") 329 | with open(CURRENTWORKINGDIRECTORY + "aio_blocklist.txt", "r", encoding='utf-8') as f: 330 | LINES = f.readlines() 331 | with open(CURRENTWORKINGDIRECTORY + "aio_blocklist_final.txt", "w", encoding='utf-8') as new_f: 332 | for line in LINES: 333 | if not line.startswith("!") and not line.startswith("#") and not line.startswith("@@") \ 334 | and not line.startswith("$removeparam=") and not line.startswith("*") \ 335 | and not line.startswith("-") and not line.startswith(".") and not line.startswith("/"): 336 | # Removes line prefixes 337 | line = line.replace('0.0.0.0 ','') 338 | line = line.replace('127.0.0.1 ','') 339 | if line.endswith('^'): 340 | line = line.replace('^','^$important') 341 | if not line.startswith("/") and not line.startswith("||") and not line.startswith("*") \ 342 | and not line.startswith("-") and not line.startswith("."): 343 | line = '||' + line 344 | line = line.replace('||||','||') 345 | line = line.replace('^','^$important') 346 | if not (line == '') and not (line == ' ') and not (line == '||') and not (line == '##'): 347 | line = line.replace('^','^$important') 348 | line = line.replace('||||','||') 349 | line = line.replace('|||','||') 350 | line = line.replace('||','|') # Implemented a fix to skip subdomain blocking 351 | line = line.replace('$important$important','$important') 352 | new_f.write(line) 353 | os.remove(CURRENTWORKINGDIRECTORY + "aio_blocklist.txt") 354 | 355 | NOW = refreshDateTimeToNow() 356 | 357 | # Cleans aio_blocklist_final.txt file 358 | print(NOW+" - "+"Cleaning aio_blocklist_final.txt, please wait..") 359 | # Open the file 360 | UNIQUELINES = set(open(CURRENTWORKINGDIRECTORY + 'aio_blocklist_final.txt', 'r', encoding='utf-8').readlines()) 361 | # Sort all lines in the set 362 | UNIQUELINES = sorted(UNIQUELINES) 363 | # Remove invalid line = || 364 | #UNIQUELINES.remove("\|\|") 365 | # Removes duplicates from from text file 366 | CLEANEDOUTPUT = open(CURRENTWORKINGDIRECTORY + 'aio_blocklist_final.txt', 'w', encoding='utf-8').writelines(UNIQUELINES) 367 | 368 | NOW = refreshDateTimeToNow() 369 | print(NOW+" - "+"AIO list has been generated as: aio_blocklist_final.txt") 370 | 371 | # Writes to HISTORY.md file 372 | with open(CURRENTWORKINGDIRECTORY + "HISTORY.md", "a", encoding='utf-8') as HISTORYFILE: 373 | HISTORYFILE.write("- Updated "+NOW+"\n") 374 | 375 | NOW = refreshDateTimeToNow() 376 | # NOW = strftime("%Y-%m-%d %H:%M:%S", gmtime()) 377 | print(NOW+" - "+"Updated: HISTORY.md") 378 | 379 | # Version 0.3 changes: 380 | # - added fix to skip blocking subdomains 381 | # - added color text output using "rich" package 382 | # - added more lists 383 | # - fixed datetime now to be local time 384 | # - improved output 385 | # -------------------------------------------------------------------------------- /sandbox/TLDs_2024.txt: -------------------------------------------------------------------------------- 1 | ! Version 2024082500, Last Updated Sun Aug 25 07:07:01 2024 UTC 2 | ||*.AAA^$important 3 | ||*.AARP^$important 4 | ||*.ABB^$important 5 | ||*.ABBOTT^$important 6 | ||*.ABBVIE^$important 7 | ||*.ABC^$important 8 | ||*.ABLE^$important 9 | ||*.ABOGADO^$important 10 | ||*.ABUDHABI^$important 11 | ||*.AC^$important 12 | ||*.ACADEMY^$important 13 | ||*.ACCENTURE^$important 14 | ||*.ACCOUNTANT^$important 15 | ||*.ACCOUNTANTS^$important 16 | ||*.ACO^$important 17 | ||*.ACTOR^$important 18 | ||*.AD^$important 19 | ||*.ADS^$important 20 | ||*.ADULT^$important 21 | ||*.AE^$important 22 | ||*.AEG^$important 23 | ||*.AERO^$important 24 | ||*.AETNA^$important 25 | ||*.AF^$important 26 | ||*.AFL^$important 27 | ||*.AFRICA^$important 28 | ||*.AG^$important 29 | ||*.AGAKHAN^$important 30 | ||*.AGENCY^$important 31 | ||*.AI^$important 32 | ||*.AIG^$important 33 | ||*.AIRBUS^$important 34 | ||*.AIRFORCE^$important 35 | ||*.AIRTEL^$important 36 | ||*.AKDN^$important 37 | ||*.AL^$important 38 | ||*.ALIBABA^$important 39 | ||*.ALIPAY^$important 40 | ||*.ALLFINANZ^$important 41 | ||*.ALLSTATE^$important 42 | ||*.ALLY^$important 43 | ||*.ALSACE^$important 44 | ||*.ALSTOM^$important 45 | ||*.AM^$important 46 | ||*.AMAZON^$important 47 | ||*.AMERICANEXPRESS^$important 48 | ||*.AMERICANFAMILY^$important 49 | ||*.AMEX^$important 50 | ||*.AMFAM^$important 51 | ||*.AMICA^$important 52 | ||*.AMSTERDAM^$important 53 | ||*.ANALYTICS^$important 54 | ||*.ANDROID^$important 55 | ||*.ANQUAN^$important 56 | ||*.ANZ^$important 57 | ||*.AO^$important 58 | ||*.AOL^$important 59 | ||*.APARTMENTS^$important 60 | ||*.APP^$important 61 | ||*.APPLE^$important 62 | ||*.AQ^$important 63 | ||*.AQUARELLE^$important 64 | ||*.AR^$important 65 | ||*.ARAB^$important 66 | ||*.ARAMCO^$important 67 | ||*.ARCHI^$important 68 | ||*.ARMY^$important 69 | ||*.ARPA^$important 70 | ||*.ART^$important 71 | ||*.ARTE^$important 72 | ||*.AS^$important 73 | ||*.ASDA^$important 74 | ||*.ASIA^$important 75 | ||*.ASSOCIATES^$important 76 | ||*.AT^$important 77 | ||*.ATHLETA^$important 78 | ||*.ATTORNEY^$important 79 | ||*.AUCTION^$important 80 | ||*.AUDI^$important 81 | ||*.AUDIBLE^$important 82 | ||*.AUDIO^$important 83 | ||*.AUSPOST^$important 84 | ||*.AUTHOR^$important 85 | ||*.AUTO^$important 86 | ||*.AUTOS^$important 87 | ||*.AW^$important 88 | ||*.AWS^$important 89 | ||*.AX^$important 90 | ||*.AXA^$important 91 | ||*.AZ^$important 92 | ||*.AZURE^$important 93 | ||*.BA^$important 94 | ||*.BABY^$important 95 | ||*.BAIDU^$important 96 | ||*.BANAMEX^$important 97 | ||*.BAND^$important 98 | ||*.BANK^$important 99 | ||*.BAR^$important 100 | ||*.BARCELONA^$important 101 | ||*.BARCLAYCARD^$important 102 | ||*.BARCLAYS^$important 103 | ||*.BAREFOOT^$important 104 | ||*.BARGAINS^$important 105 | ||*.BASEBALL^$important 106 | ||*.BASKETBALL^$important 107 | ||*.BAUHAUS^$important 108 | ||*.BAYERN^$important 109 | ||*.BB^$important 110 | ||*.BBC^$important 111 | ||*.BBT^$important 112 | ||*.BBVA^$important 113 | ||*.BCG^$important 114 | ||*.BCN^$important 115 | ||*.BD^$important 116 | ||*.BE^$important 117 | ||*.BEATS^$important 118 | ||*.BEAUTY^$important 119 | ||*.BEER^$important 120 | ||*.BENTLEY^$important 121 | ||*.BERLIN^$important 122 | ||*.BEST^$important 123 | ||*.BESTBUY^$important 124 | ||*.BET^$important 125 | ||*.BF^$important 126 | ||*.BG^$important 127 | ||*.BH^$important 128 | ||*.BHARTI^$important 129 | ||*.BI^$important 130 | ||*.BIBLE^$important 131 | ||*.BID^$important 132 | ||*.BIKE^$important 133 | ||*.BING^$important 134 | ||*.BINGO^$important 135 | ||*.BIO^$important 136 | ||*.BIZ^$important 137 | ||*.BJ^$important 138 | ||*.BLACK^$important 139 | ||*.BLACKFRIDAY^$important 140 | ||*.BLOCKBUSTER^$important 141 | ||*.BLOG^$important 142 | ||*.BLOOMBERG^$important 143 | ||*.BLUE^$important 144 | ||*.BM^$important 145 | ||*.BMS^$important 146 | ||*.BMW^$important 147 | ||*.BN^$important 148 | ||*.BNPPARIBAS^$important 149 | ||*.BO^$important 150 | ||*.BOATS^$important 151 | ||*.BOEHRINGER^$important 152 | ||*.BOFA^$important 153 | ||*.BOM^$important 154 | ||*.BOND^$important 155 | ||*.BOO^$important 156 | ||*.BOOK^$important 157 | ||*.BOOKING^$important 158 | ||*.BOSCH^$important 159 | ||*.BOSTIK^$important 160 | ||*.BOSTON^$important 161 | ||*.BOT^$important 162 | ||*.BOUTIQUE^$important 163 | ||*.BOX^$important 164 | ||*.BR^$important 165 | ||*.BRADESCO^$important 166 | ||*.BRIDGESTONE^$important 167 | ||*.BROADWAY^$important 168 | ||*.BROKER^$important 169 | ||*.BROTHER^$important 170 | ||*.BRUSSELS^$important 171 | ||*.BS^$important 172 | ||*.BT^$important 173 | ||*.BUILD^$important 174 | ||*.BUILDERS^$important 175 | ||*.BUSINESS^$important 176 | ||*.BUY^$important 177 | ||*.BUZZ^$important 178 | ||*.BV^$important 179 | ||*.BW^$important 180 | ||*.BY^$important 181 | ||*.BZ^$important 182 | ||*.BZH^$important 183 | ||*.CA^$important 184 | ||*.CAB^$important 185 | ||*.CAFE^$important 186 | ||*.CAL^$important 187 | ||*.CALL^$important 188 | ||*.CALVINKLEIN^$important 189 | ||*.CAM^$important 190 | ||*.CAMERA^$important 191 | ||*.CAMP^$important 192 | ||*.CANON^$important 193 | ||*.CAPETOWN^$important 194 | ||*.CAPITAL^$important 195 | ||*.CAPITALONE^$important 196 | ||*.CAR^$important 197 | ||*.CARAVAN^$important 198 | ||*.CARDS^$important 199 | ||*.CARE^$important 200 | ||*.CAREER^$important 201 | ||*.CAREERS^$important 202 | ||*.CARS^$important 203 | ||*.CASA^$important 204 | ||*.CASE^$important 205 | ||*.CASH^$important 206 | ||*.CASINO^$important 207 | ||*.CAT^$important 208 | ||*.CATERING^$important 209 | ||*.CATHOLIC^$important 210 | ||*.CBA^$important 211 | ||*.CBN^$important 212 | ||*.CBRE^$important 213 | ||*.CC^$important 214 | ||*.CD^$important 215 | ||*.CENTER^$important 216 | ||*.CEO^$important 217 | ||*.CERN^$important 218 | ||*.CF^$important 219 | ||*.CFA^$important 220 | ||*.CFD^$important 221 | ||*.CG^$important 222 | ||*.CH^$important 223 | ||*.CHANEL^$important 224 | ||*.CHANNEL^$important 225 | ||*.CHARITY^$important 226 | ||*.CHASE^$important 227 | ||*.CHAT^$important 228 | ||*.CHEAP^$important 229 | ||*.CHINTAI^$important 230 | ||*.CHRISTMAS^$important 231 | ||*.CHROME^$important 232 | ||*.CHURCH^$important 233 | ||*.CI^$important 234 | ||*.CIPRIANI^$important 235 | ||*.CIRCLE^$important 236 | ||*.CISCO^$important 237 | ||*.CITADEL^$important 238 | ||*.CITI^$important 239 | ||*.CITIC^$important 240 | ||*.CITY^$important 241 | ||*.CK^$important 242 | ||*.CL^$important 243 | ||*.CLAIMS^$important 244 | ||*.CLEANING^$important 245 | ||*.CLICK^$important 246 | ||*.CLINIC^$important 247 | ||*.CLINIQUE^$important 248 | ||*.CLOTHING^$important 249 | ||*.CLOUD^$important 250 | ||*.CLUB^$important 251 | ||*.CLUBMED^$important 252 | ||*.CM^$important 253 | ||*.CN^$important 254 | ||*.CO^$important 255 | ||*.COACH^$important 256 | ||*.CODES^$important 257 | ||*.COFFEE^$important 258 | ||*.COLLEGE^$important 259 | ||*.COLOGNE^$important 260 | ||*.COMMBANK^$important 261 | ||*.COMMUNITY^$important 262 | ||*.COMPANY^$important 263 | ||*.COMPARE^$important 264 | ||*.COMPUTER^$important 265 | ||*.COMSEC^$important 266 | ||*.CONDOS^$important 267 | ||*.CONSTRUCTION^$important 268 | ||*.CONSULTING^$important 269 | ||*.CONTACT^$important 270 | ||*.CONTRACTORS^$important 271 | ||*.COOKING^$important 272 | ||*.COOL^$important 273 | ||*.COOP^$important 274 | ||*.CORSICA^$important 275 | ||*.COUNTRY^$important 276 | ||*.COUPON^$important 277 | ||*.COUPONS^$important 278 | ||*.COURSES^$important 279 | ||*.CPA^$important 280 | ||*.CR^$important 281 | ||*.CREDIT^$important 282 | ||*.CREDITCARD^$important 283 | ||*.CREDITUNION^$important 284 | ||*.CRICKET^$important 285 | ||*.CROWN^$important 286 | ||*.CRS^$important 287 | ||*.CRUISE^$important 288 | ||*.CRUISES^$important 289 | ||*.CU^$important 290 | ||*.CUISINELLA^$important 291 | ||*.CV^$important 292 | ||*.CW^$important 293 | ||*.CX^$important 294 | ||*.CY^$important 295 | ||*.CYMRU^$important 296 | ||*.CYOU^$important 297 | ||*.CZ^$important 298 | ||*.DABUR^$important 299 | ||*.DAD^$important 300 | ||*.DANCE^$important 301 | ||*.DATA^$important 302 | ||*.DATE^$important 303 | ||*.DATING^$important 304 | ||*.DATSUN^$important 305 | ||*.DAY^$important 306 | ||*.DCLK^$important 307 | ||*.DDS^$important 308 | ||*.DE^$important 309 | ||*.DEAL^$important 310 | ||*.DEALER^$important 311 | ||*.DEALS^$important 312 | ||*.DEGREE^$important 313 | ||*.DELIVERY^$important 314 | ||*.DELL^$important 315 | ||*.DELOITTE^$important 316 | ||*.DELTA^$important 317 | ||*.DEMOCRAT^$important 318 | ||*.DENTAL^$important 319 | ||*.DENTIST^$important 320 | ||*.DESI^$important 321 | ||*.DESIGN^$important 322 | ||*.DEV^$important 323 | ||*.DHL^$important 324 | ||*.DIAMONDS^$important 325 | ||*.DIET^$important 326 | ||*.DIGITAL^$important 327 | ||*.DIRECT^$important 328 | ||*.DIRECTORY^$important 329 | ||*.DISCOUNT^$important 330 | ||*.DISCOVER^$important 331 | ||*.DISH^$important 332 | ||*.DIY^$important 333 | ||*.DJ^$important 334 | ||*.DK^$important 335 | ||*.DM^$important 336 | ||*.DNP^$important 337 | ||*.DO^$important 338 | ||*.DOCS^$important 339 | ||*.DOCTOR^$important 340 | ||*.DOG^$important 341 | ||*.DOMAINS^$important 342 | ||*.DOT^$important 343 | ||*.DOWNLOAD^$important 344 | ||*.DRIVE^$important 345 | ||*.DTV^$important 346 | ||*.DUBAI^$important 347 | ||*.DUNLOP^$important 348 | ||*.DUPONT^$important 349 | ||*.DURBAN^$important 350 | ||*.DVAG^$important 351 | ||*.DVR^$important 352 | ||*.DZ^$important 353 | ||*.EARTH^$important 354 | ||*.EAT^$important 355 | ||*.EC^$important 356 | ||*.ECO^$important 357 | ||*.EDEKA^$important 358 | ||*.EDU^$important 359 | ||*.EDUCATION^$important 360 | ||*.EE^$important 361 | ||*.EG^$important 362 | ||*.EMAIL^$important 363 | ||*.EMERCK^$important 364 | ||*.ENERGY^$important 365 | ||*.ENGINEER^$important 366 | ||*.ENGINEERING^$important 367 | ||*.ENTERPRISES^$important 368 | ||*.EPSON^$important 369 | ||*.EQUIPMENT^$important 370 | ||*.ER^$important 371 | ||*.ERICSSON^$important 372 | ||*.ERNI^$important 373 | ||*.ES^$important 374 | ||*.ESQ^$important 375 | ||*.ESTATE^$important 376 | ||*.ET^$important 377 | ||*.EU^$important 378 | ||*.EUROVISION^$important 379 | ||*.EUS^$important 380 | ||*.EVENTS^$important 381 | ||*.EXCHANGE^$important 382 | ||*.EXPERT^$important 383 | ||*.EXPOSED^$important 384 | ||*.EXPRESS^$important 385 | ||*.EXTRASPACE^$important 386 | ||*.FAGE^$important 387 | ||*.FAIL^$important 388 | ||*.FAIRWINDS^$important 389 | ||*.FAITH^$important 390 | ||*.FAMILY^$important 391 | ||*.FAN^$important 392 | ||*.FANS^$important 393 | ||*.FARM^$important 394 | ||*.FARMERS^$important 395 | ||*.FASHION^$important 396 | ||*.FAST^$important 397 | ||*.FEDEX^$important 398 | ||*.FEEDBACK^$important 399 | ||*.FERRARI^$important 400 | ||*.FERRERO^$important 401 | ||*.FI^$important 402 | ||*.FIDELITY^$important 403 | ||*.FIDO^$important 404 | ||*.FILM^$important 405 | ||*.FINAL^$important 406 | ||*.FINANCE^$important 407 | ||*.FINANCIAL^$important 408 | ||*.FIRE^$important 409 | ||*.FIRESTONE^$important 410 | ||*.FIRMDALE^$important 411 | ||*.FISH^$important 412 | ||*.FISHING^$important 413 | ||*.FIT^$important 414 | ||*.FITNESS^$important 415 | ||*.FJ^$important 416 | ||*.FK^$important 417 | ||*.FLICKR^$important 418 | ||*.FLIGHTS^$important 419 | ||*.FLIR^$important 420 | ||*.FLORIST^$important 421 | ||*.FLOWERS^$important 422 | ||*.FLY^$important 423 | ||*.FM^$important 424 | ||*.FO^$important 425 | ||*.FOO^$important 426 | ||*.FOOD^$important 427 | ||*.FOOTBALL^$important 428 | ||*.FORD^$important 429 | ||*.FOREX^$important 430 | ||*.FORSALE^$important 431 | ||*.FORUM^$important 432 | ||*.FOUNDATION^$important 433 | ||*.FOX^$important 434 | ||*.FR^$important 435 | ||*.FREE^$important 436 | ||*.FRESENIUS^$important 437 | ||*.FRL^$important 438 | ||*.FROGANS^$important 439 | ||*.FRONTIER^$important 440 | ||*.FTR^$important 441 | ||*.FUJITSU^$important 442 | ||*.FUN^$important 443 | ||*.FUND^$important 444 | ||*.FURNITURE^$important 445 | ||*.FUTBOL^$important 446 | ||*.FYI^$important 447 | ||*.GA^$important 448 | ||*.GAL^$important 449 | ||*.GALLERY^$important 450 | ||*.GALLO^$important 451 | ||*.GALLUP^$important 452 | ||*.GAME^$important 453 | ||*.GAMES^$important 454 | ||*.GAP^$important 455 | ||*.GARDEN^$important 456 | ||*.GAY^$important 457 | ||*.GB^$important 458 | ||*.GBIZ^$important 459 | ||*.GD^$important 460 | ||*.GDN^$important 461 | ||*.GE^$important 462 | ||*.GEA^$important 463 | ||*.GENT^$important 464 | ||*.GENTING^$important 465 | ||*.GEORGE^$important 466 | ||*.GF^$important 467 | ||*.GG^$important 468 | ||*.GGEE^$important 469 | ||*.GH^$important 470 | ||*.GI^$important 471 | ||*.GIFT^$important 472 | ||*.GIFTS^$important 473 | ||*.GIVES^$important 474 | ||*.GIVING^$important 475 | ||*.GL^$important 476 | ||*.GLASS^$important 477 | ||*.GLE^$important 478 | ||*.GLOBAL^$important 479 | ||*.GLOBO^$important 480 | ||*.GM^$important 481 | ||*.GMAIL^$important 482 | ||*.GMBH^$important 483 | ||*.GMO^$important 484 | ||*.GMX^$important 485 | ||*.GN^$important 486 | ||*.GODADDY^$important 487 | ||*.GOLD^$important 488 | ||*.GOLDPOINT^$important 489 | ||*.GOLF^$important 490 | ||*.GOO^$important 491 | ||*.GOODYEAR^$important 492 | ||*.GOOG^$important 493 | ||*.GOOGLE^$important 494 | ||*.GOP^$important 495 | ||*.GOT^$important 496 | ||*.GOV^$important 497 | ||*.GP^$important 498 | ||*.GQ^$important 499 | ||*.GR^$important 500 | ||*.GRAINGER^$important 501 | ||*.GRAPHICS^$important 502 | ||*.GRATIS^$important 503 | ||*.GREEN^$important 504 | ||*.GRIPE^$important 505 | ||*.GROCERY^$important 506 | ||*.GROUP^$important 507 | ||*.GS^$important 508 | ||*.GT^$important 509 | ||*.GU^$important 510 | ||*.GUCCI^$important 511 | ||*.GUGE^$important 512 | ||*.GUIDE^$important 513 | ||*.GUITARS^$important 514 | ||*.GURU^$important 515 | ||*.GW^$important 516 | ||*.GY^$important 517 | ||*.HAIR^$important 518 | ||*.HAMBURG^$important 519 | ||*.HANGOUT^$important 520 | ||*.HAUS^$important 521 | ||*.HBO^$important 522 | ||*.HDFC^$important 523 | ||*.HDFCBANK^$important 524 | ||*.HEALTH^$important 525 | ||*.HEALTHCARE^$important 526 | ||*.HELP^$important 527 | ||*.HELSINKI^$important 528 | ||*.HERE^$important 529 | ||*.HERMES^$important 530 | ||*.HIPHOP^$important 531 | ||*.HISAMITSU^$important 532 | ||*.HITACHI^$important 533 | ||*.HIV^$important 534 | ||*.HK^$important 535 | ||*.HKT^$important 536 | ||*.HM^$important 537 | ||*.HN^$important 538 | ||*.HOCKEY^$important 539 | ||*.HOLDINGS^$important 540 | ||*.HOLIDAY^$important 541 | ||*.HOMEDEPOT^$important 542 | ||*.HOMEGOODS^$important 543 | ||*.HOMES^$important 544 | ||*.HOMESENSE^$important 545 | ||*.HONDA^$important 546 | ||*.HORSE^$important 547 | ||*.HOSPITAL^$important 548 | ||*.HOST^$important 549 | ||*.HOSTING^$important 550 | ||*.HOT^$important 551 | ||*.HOTELS^$important 552 | ||*.HOTMAIL^$important 553 | ||*.HOUSE^$important 554 | ||*.HOW^$important 555 | ||*.HR^$important 556 | ||*.HSBC^$important 557 | ||*.HT^$important 558 | ||*.HU^$important 559 | ||*.HUGHES^$important 560 | ||*.HYATT^$important 561 | ||*.HYUNDAI^$important 562 | ||*.IBM^$important 563 | ||*.ICBC^$important 564 | ||*.ICE^$important 565 | ||*.ICU^$important 566 | ||*.ID^$important 567 | ||*.IE^$important 568 | ||*.IEEE^$important 569 | ||*.IFM^$important 570 | ||*.IKANO^$important 571 | ||*.IL^$important 572 | ||*.IM^$important 573 | ||*.IMAMAT^$important 574 | ||*.IMDB^$important 575 | ||*.IMMO^$important 576 | ||*.IMMOBILIEN^$important 577 | ||*.IN^$important 578 | ||*.INC^$important 579 | ||*.INDUSTRIES^$important 580 | ||*.INFINITI^$important 581 | ||*.INFO^$important 582 | ||*.ING^$important 583 | ||*.INK^$important 584 | ||*.INSTITUTE^$important 585 | ||*.INSURANCE^$important 586 | ||*.INSURE^$important 587 | ||*.INT^$important 588 | ||*.INTERNATIONAL^$important 589 | ||*.INTUIT^$important 590 | ||*.INVESTMENTS^$important 591 | ||*.IO^$important 592 | ||*.IPIRANGA^$important 593 | ||*.IQ^$important 594 | ||*.IR^$important 595 | ||*.IRISH^$important 596 | ||*.IS^$important 597 | ||*.ISMAILI^$important 598 | ||*.IST^$important 599 | ||*.ISTANBUL^$important 600 | ||*.IT^$important 601 | ||*.ITAU^$important 602 | ||*.ITV^$important 603 | ||*.JAGUAR^$important 604 | ||*.JAVA^$important 605 | ||*.JCB^$important 606 | ||*.JE^$important 607 | ||*.JEEP^$important 608 | ||*.JETZT^$important 609 | ||*.JEWELRY^$important 610 | ||*.JIO^$important 611 | ||*.JLL^$important 612 | ||*.JM^$important 613 | ||*.JMP^$important 614 | ||*.JNJ^$important 615 | ||*.JO^$important 616 | ||*.JOBS^$important 617 | ||*.JOBURG^$important 618 | ||*.JOT^$important 619 | ||*.JOY^$important 620 | ||*.JP^$important 621 | ||*.JPMORGAN^$important 622 | ||*.JPRS^$important 623 | ||*.JUEGOS^$important 624 | ||*.JUNIPER^$important 625 | ||*.KAUFEN^$important 626 | ||*.KDDI^$important 627 | ||*.KE^$important 628 | ||*.KERRYHOTELS^$important 629 | ||*.KERRYLOGISTICS^$important 630 | ||*.KERRYPROPERTIES^$important 631 | ||*.KFH^$important 632 | ||*.KG^$important 633 | ||*.KH^$important 634 | ||*.KI^$important 635 | ||*.KIA^$important 636 | ||*.KIDS^$important 637 | ||*.KIM^$important 638 | ||*.KINDLE^$important 639 | ||*.KITCHEN^$important 640 | ||*.KIWI^$important 641 | ||*.KM^$important 642 | ||*.KN^$important 643 | ||*.KOELN^$important 644 | ||*.KOMATSU^$important 645 | ||*.KOSHER^$important 646 | ||*.KP^$important 647 | ||*.KPMG^$important 648 | ||*.KPN^$important 649 | ||*.KR^$important 650 | ||*.KRD^$important 651 | ||*.KRED^$important 652 | ||*.KUOKGROUP^$important 653 | ||*.KW^$important 654 | ||*.KY^$important 655 | ||*.KYOTO^$important 656 | ||*.KZ^$important 657 | ||*.LA^$important 658 | ||*.LACAIXA^$important 659 | ||*.LAMBORGHINI^$important 660 | ||*.LAMER^$important 661 | ||*.LANCASTER^$important 662 | ||*.LAND^$important 663 | ||*.LANDROVER^$important 664 | ||*.LANXESS^$important 665 | ||*.LASALLE^$important 666 | ||*.LAT^$important 667 | ||*.LATINO^$important 668 | ||*.LATROBE^$important 669 | ||*.LAW^$important 670 | ||*.LAWYER^$important 671 | ||*.LB^$important 672 | ||*.LC^$important 673 | ||*.LDS^$important 674 | ||*.LEASE^$important 675 | ||*.LECLERC^$important 676 | ||*.LEFRAK^$important 677 | ||*.LEGAL^$important 678 | ||*.LEGO^$important 679 | ||*.LEXUS^$important 680 | ||*.LGBT^$important 681 | ||*.LI^$important 682 | ||*.LIDL^$important 683 | ||*.LIFE^$important 684 | ||*.LIFEINSURANCE^$important 685 | ||*.LIFESTYLE^$important 686 | ||*.LIGHTING^$important 687 | ||*.LIKE^$important 688 | ||*.LILLY^$important 689 | ||*.LIMITED^$important 690 | ||*.LIMO^$important 691 | ||*.LINCOLN^$important 692 | ||*.LINK^$important 693 | ||*.LIPSY^$important 694 | ||*.LIVE^$important 695 | ||*.LIVING^$important 696 | ||*.LK^$important 697 | ||*.LLC^$important 698 | ||*.LLP^$important 699 | ||*.LOAN^$important 700 | ||*.LOANS^$important 701 | ||*.LOCKER^$important 702 | ||*.LOCUS^$important 703 | ||*.LOL^$important 704 | ||*.LONDON^$important 705 | ||*.LOTTE^$important 706 | ||*.LOTTO^$important 707 | ||*.LOVE^$important 708 | ||*.LPL^$important 709 | ||*.LPLFINANCIAL^$important 710 | ||*.LR^$important 711 | ||*.LS^$important 712 | ||*.LT^$important 713 | ||*.LTD^$important 714 | ||*.LTDA^$important 715 | ||*.LU^$important 716 | ||*.LUNDBECK^$important 717 | ||*.LUXE^$important 718 | ||*.LUXURY^$important 719 | ||*.LV^$important 720 | ||*.LY^$important 721 | ||*.MA^$important 722 | ||*.MADRID^$important 723 | ||*.MAIF^$important 724 | ||*.MAISON^$important 725 | ||*.MAKEUP^$important 726 | ||*.MAN^$important 727 | ||*.MANAGEMENT^$important 728 | ||*.MANGO^$important 729 | ||*.MAP^$important 730 | ||*.MARKET^$important 731 | ||*.MARKETING^$important 732 | ||*.MARKETS^$important 733 | ||*.MARRIOTT^$important 734 | ||*.MARSHALLS^$important 735 | ||*.MATTEL^$important 736 | ||*.MBA^$important 737 | ||*.MC^$important 738 | ||*.MCKINSEY^$important 739 | ||*.MD^$important 740 | ||*.ME^$important 741 | ||*.MED^$important 742 | ||*.MEDIA^$important 743 | ||*.MEET^$important 744 | ||*.MELBOURNE^$important 745 | ||*.MEME^$important 746 | ||*.MEMORIAL^$important 747 | ||*.MEN^$important 748 | ||*.MENU^$important 749 | ||*.MERCKMSD^$important 750 | ||*.MG^$important 751 | ||*.MH^$important 752 | ||*.MIAMI^$important 753 | ||*.MICROSOFT^$important 754 | ||*.MIL^$important 755 | ||*.MINI^$important 756 | ||*.MINT^$important 757 | ||*.MIT^$important 758 | ||*.MITSUBISHI^$important 759 | ||*.MK^$important 760 | ||*.ML^$important 761 | ||*.MLB^$important 762 | ||*.MLS^$important 763 | ||*.MM^$important 764 | ||*.MMA^$important 765 | ||*.MN^$important 766 | ||*.MO^$important 767 | ||*.MOBI^$important 768 | ||*.MOBILE^$important 769 | ||*.MODA^$important 770 | ||*.MOE^$important 771 | ||*.MOI^$important 772 | ||*.MOM^$important 773 | ||*.MONASH^$important 774 | ||*.MONEY^$important 775 | ||*.MONSTER^$important 776 | ||*.MORMON^$important 777 | ||*.MORTGAGE^$important 778 | ||*.MOSCOW^$important 779 | ||*.MOTO^$important 780 | ||*.MOTORCYCLES^$important 781 | ||*.MOV^$important 782 | ||*.MOVIE^$important 783 | ||*.MP^$important 784 | ||*.MQ^$important 785 | ||*.MR^$important 786 | ||*.MS^$important 787 | ||*.MSD^$important 788 | ||*.MT^$important 789 | ||*.MTN^$important 790 | ||*.MTR^$important 791 | ||*.MU^$important 792 | ||*.MUSEUM^$important 793 | ||*.MUSIC^$important 794 | ||*.MV^$important 795 | ||*.MW^$important 796 | ||*.MX^$important 797 | ||*.MY^$important 798 | ||*.MZ^$important 799 | ||*.NA^$important 800 | ||*.NAB^$important 801 | ||*.NAGOYA^$important 802 | ||*.NAME^$important 803 | ||*.NAVY^$important 804 | ||*.NBA^$important 805 | ||*.NC^$important 806 | ||*.NE^$important 807 | ||*.NEC^$important 808 | ||*.NETBANK^$important 809 | ||*.NETFLIX^$important 810 | ||*.NETWORK^$important 811 | ||*.NEUSTAR^$important 812 | ||*.NEW^$important 813 | ||*.NEWS^$important 814 | ||*.NEXT^$important 815 | ||*.NEXTDIRECT^$important 816 | ||*.NEXUS^$important 817 | ||*.NF^$important 818 | ||*.NFL^$important 819 | ||*.NG^$important 820 | ||*.NGO^$important 821 | ||*.NHK^$important 822 | ||*.NI^$important 823 | ||*.NICO^$important 824 | ||*.NIKE^$important 825 | ||*.NIKON^$important 826 | ||*.NINJA^$important 827 | ||*.NISSAN^$important 828 | ||*.NISSAY^$important 829 | ||*.NL^$important 830 | ||*.NO^$important 831 | ||*.NOKIA^$important 832 | ||*.NORTON^$important 833 | ||*.NOW^$important 834 | ||*.NOWRUZ^$important 835 | ||*.NOWTV^$important 836 | ||*.NP^$important 837 | ||*.NR^$important 838 | ||*.NRA^$important 839 | ||*.NRW^$important 840 | ||*.NTT^$important 841 | ||*.NU^$important 842 | ||*.NYC^$important 843 | ||*.NZ^$important 844 | ||*.OBI^$important 845 | ||*.OBSERVER^$important 846 | ||*.OFFICE^$important 847 | ||*.OKINAWA^$important 848 | ||*.OLAYAN^$important 849 | ||*.OLAYANGROUP^$important 850 | ||*.OLLO^$important 851 | ||*.OM^$important 852 | ||*.OMEGA^$important 853 | ||*.ONE^$important 854 | ||*.ONG^$important 855 | ||*.ONL^$important 856 | ||*.ONLINE^$important 857 | ||*.OOO^$important 858 | ||*.OPEN^$important 859 | ||*.ORACLE^$important 860 | ||*.ORANGE^$important 861 | ||*.ORG^$important 862 | ||*.ORGANIC^$important 863 | ||*.ORIGINS^$important 864 | ||*.OSAKA^$important 865 | ||*.OTSUKA^$important 866 | ||*.OTT^$important 867 | ||*.OVH^$important 868 | ||*.PA^$important 869 | ||*.PAGE^$important 870 | ||*.PANASONIC^$important 871 | ||*.PARIS^$important 872 | ||*.PARS^$important 873 | ||*.PARTNERS^$important 874 | ||*.PARTS^$important 875 | ||*.PARTY^$important 876 | ||*.PAY^$important 877 | ||*.PCCW^$important 878 | ||*.PE^$important 879 | ||*.PET^$important 880 | ||*.PF^$important 881 | ||*.PFIZER^$important 882 | ||*.PG^$important 883 | ||*.PH^$important 884 | ||*.PHARMACY^$important 885 | ||*.PHD^$important 886 | ||*.PHILIPS^$important 887 | ||*.PHONE^$important 888 | ||*.PHOTO^$important 889 | ||*.PHOTOGRAPHY^$important 890 | ||*.PHOTOS^$important 891 | ||*.PHYSIO^$important 892 | ||*.PICS^$important 893 | ||*.PICTET^$important 894 | ||*.PICTURES^$important 895 | ||*.PID^$important 896 | ||*.PIN^$important 897 | ||*.PING^$important 898 | ||*.PINK^$important 899 | ||*.PIONEER^$important 900 | ||*.PIZZA^$important 901 | ||*.PK^$important 902 | ||*.PL^$important 903 | ||*.PLACE^$important 904 | ||*.PLAY^$important 905 | ||*.PLAYSTATION^$important 906 | ||*.PLUMBING^$important 907 | ||*.PLUS^$important 908 | ||*.PM^$important 909 | ||*.PN^$important 910 | ||*.PNC^$important 911 | ||*.POHL^$important 912 | ||*.POKER^$important 913 | ||*.POLITIE^$important 914 | ||*.PORN^$important 915 | ||*.POST^$important 916 | ||*.PR^$important 917 | ||*.PRAMERICA^$important 918 | ||*.PRAXI^$important 919 | ||*.PRESS^$important 920 | ||*.PRIME^$important 921 | ||*.PRO^$important 922 | ||*.PROD^$important 923 | ||*.PRODUCTIONS^$important 924 | ||*.PROF^$important 925 | ||*.PROGRESSIVE^$important 926 | ||*.PROMO^$important 927 | ||*.PROPERTIES^$important 928 | ||*.PROPERTY^$important 929 | ||*.PROTECTION^$important 930 | ||*.PRU^$important 931 | ||*.PRUDENTIAL^$important 932 | ||*.PS^$important 933 | ||*.PT^$important 934 | ||*.PUB^$important 935 | ||*.PW^$important 936 | ||*.PWC^$important 937 | ||*.PY^$important 938 | ||*.QA^$important 939 | ||*.QPON^$important 940 | ||*.QUEBEC^$important 941 | ||*.QUEST^$important 942 | ||*.RACING^$important 943 | ||*.RADIO^$important 944 | ||*.RE^$important 945 | ||*.READ^$important 946 | ||*.REALESTATE^$important 947 | ||*.REALTOR^$important 948 | ||*.REALTY^$important 949 | ||*.RECIPES^$important 950 | ||*.RED^$important 951 | ||*.REDSTONE^$important 952 | ||*.REDUMBRELLA^$important 953 | ||*.REHAB^$important 954 | ||*.REISE^$important 955 | ||*.REISEN^$important 956 | ||*.REIT^$important 957 | ||*.RELIANCE^$important 958 | ||*.REN^$important 959 | ||*.RENT^$important 960 | ||*.RENTALS^$important 961 | ||*.REPAIR^$important 962 | ||*.REPORT^$important 963 | ||*.REPUBLICAN^$important 964 | ||*.REST^$important 965 | ||*.RESTAURANT^$important 966 | ||*.REVIEW^$important 967 | ||*.REVIEWS^$important 968 | ||*.REXROTH^$important 969 | ||*.RICH^$important 970 | ||*.RICHARDLI^$important 971 | ||*.RICOH^$important 972 | ||*.RIL^$important 973 | ||*.RIO^$important 974 | ||*.RIP^$important 975 | ||*.RO^$important 976 | ||*.ROCKS^$important 977 | ||*.RODEO^$important 978 | ||*.ROGERS^$important 979 | ||*.ROOM^$important 980 | ||*.RS^$important 981 | ||*.RSVP^$important 982 | ||*.RU^$important 983 | ||*.RUGBY^$important 984 | ||*.RUHR^$important 985 | ||*.RUN^$important 986 | ||*.RW^$important 987 | ||*.RWE^$important 988 | ||*.RYUKYU^$important 989 | ||*.SA^$important 990 | ||*.SAARLAND^$important 991 | ||*.SAFE^$important 992 | ||*.SAFETY^$important 993 | ||*.SAKURA^$important 994 | ||*.SALE^$important 995 | ||*.SALON^$important 996 | ||*.SAMSCLUB^$important 997 | ||*.SAMSUNG^$important 998 | ||*.SANDVIK^$important 999 | ||*.SANDVIKCOROMANT^$important 1000 | ||*.SANOFI^$important 1001 | ||*.SAP^$important 1002 | ||*.SARL^$important 1003 | ||*.SAS^$important 1004 | ||*.SAVE^$important 1005 | ||*.SAXO^$important 1006 | ||*.SB^$important 1007 | ||*.SBI^$important 1008 | ||*.SBS^$important 1009 | ||*.SC^$important 1010 | ||*.SCB^$important 1011 | ||*.SCHAEFFLER^$important 1012 | ||*.SCHMIDT^$important 1013 | ||*.SCHOLARSHIPS^$important 1014 | ||*.SCHOOL^$important 1015 | ||*.SCHULE^$important 1016 | ||*.SCHWARZ^$important 1017 | ||*.SCIENCE^$important 1018 | ||*.SCOT^$important 1019 | ||*.SD^$important 1020 | ||*.SE^$important 1021 | ||*.SEARCH^$important 1022 | ||*.SEAT^$important 1023 | ||*.SECURE^$important 1024 | ||*.SECURITY^$important 1025 | ||*.SEEK^$important 1026 | ||*.SELECT^$important 1027 | ||*.SENER^$important 1028 | ||*.SERVICES^$important 1029 | ||*.SEVEN^$important 1030 | ||*.SEW^$important 1031 | ||*.SEX^$important 1032 | ||*.SEXY^$important 1033 | ||*.SFR^$important 1034 | ||*.SG^$important 1035 | ||*.SH^$important 1036 | ||*.SHANGRILA^$important 1037 | ||*.SHARP^$important 1038 | ||*.SHELL^$important 1039 | ||*.SHIA^$important 1040 | ||*.SHIKSHA^$important 1041 | ||*.SHOES^$important 1042 | ||*.SHOP^$important 1043 | ||*.SHOPPING^$important 1044 | ||*.SHOUJI^$important 1045 | ||*.SHOW^$important 1046 | ||*.SI^$important 1047 | ||*.SILK^$important 1048 | ||*.SINA^$important 1049 | ||*.SINGLES^$important 1050 | ||*.SITE^$important 1051 | ||*.SJ^$important 1052 | ||*.SK^$important 1053 | ||*.SKI^$important 1054 | ||*.SKIN^$important 1055 | ||*.SKY^$important 1056 | ||*.SKYPE^$important 1057 | ||*.SL^$important 1058 | ||*.SLING^$important 1059 | ||*.SM^$important 1060 | ||*.SMART^$important 1061 | ||*.SMILE^$important 1062 | ||*.SN^$important 1063 | ||*.SNCF^$important 1064 | ||*.SO^$important 1065 | ||*.SOCCER^$important 1066 | ||*.SOCIAL^$important 1067 | ||*.SOFTBANK^$important 1068 | ||*.SOFTWARE^$important 1069 | ||*.SOHU^$important 1070 | ||*.SOLAR^$important 1071 | ||*.SOLUTIONS^$important 1072 | ||*.SONG^$important 1073 | ||*.SONY^$important 1074 | ||*.SOY^$important 1075 | ||*.SPA^$important 1076 | ||*.SPACE^$important 1077 | ||*.SPORT^$important 1078 | ||*.SPOT^$important 1079 | ||*.SR^$important 1080 | ||*.SRL^$important 1081 | ||*.SS^$important 1082 | ||*.ST^$important 1083 | ||*.STADA^$important 1084 | ||*.STAPLES^$important 1085 | ||*.STAR^$important 1086 | ||*.STATEBANK^$important 1087 | ||*.STATEFARM^$important 1088 | ||*.STC^$important 1089 | ||*.STCGROUP^$important 1090 | ||*.STOCKHOLM^$important 1091 | ||*.STORAGE^$important 1092 | ||*.STORE^$important 1093 | ||*.STREAM^$important 1094 | ||*.STUDIO^$important 1095 | ||*.STUDY^$important 1096 | ||*.STYLE^$important 1097 | ||*.SU^$important 1098 | ||*.SUCKS^$important 1099 | ||*.SUPPLIES^$important 1100 | ||*.SUPPLY^$important 1101 | ||*.SUPPORT^$important 1102 | ||*.SURF^$important 1103 | ||*.SURGERY^$important 1104 | ||*.SUZUKI^$important 1105 | ||*.SV^$important 1106 | ||*.SWATCH^$important 1107 | ||*.SWISS^$important 1108 | ||*.SX^$important 1109 | ||*.SY^$important 1110 | ||*.SYDNEY^$important 1111 | ||*.SYSTEMS^$important 1112 | ||*.SZ^$important 1113 | ||*.TAB^$important 1114 | ||*.TAIPEI^$important 1115 | ||*.TALK^$important 1116 | ||*.TAOBAO^$important 1117 | ||*.TARGET^$important 1118 | ||*.TATAMOTORS^$important 1119 | ||*.TATAR^$important 1120 | ||*.TATTOO^$important 1121 | ||*.TAX^$important 1122 | ||*.TAXI^$important 1123 | ||*.TC^$important 1124 | ||*.TCI^$important 1125 | ||*.TD^$important 1126 | ||*.TDK^$important 1127 | ||*.TEAM^$important 1128 | ||*.TECH^$important 1129 | ||*.TECHNOLOGY^$important 1130 | ||*.TEL^$important 1131 | ||*.TEMASEK^$important 1132 | ||*.TENNIS^$important 1133 | ||*.TEVA^$important 1134 | ||*.TF^$important 1135 | ||*.TG^$important 1136 | ||*.TH^$important 1137 | ||*.THD^$important 1138 | ||*.THEATER^$important 1139 | ||*.THEATRE^$important 1140 | ||*.TIAA^$important 1141 | ||*.TICKETS^$important 1142 | ||*.TIENDA^$important 1143 | ||*.TIPS^$important 1144 | ||*.TIRES^$important 1145 | ||*.TIROL^$important 1146 | ||*.TJ^$important 1147 | ||*.TJMAXX^$important 1148 | ||*.TJX^$important 1149 | ||*.TK^$important 1150 | ||*.TKMAXX^$important 1151 | ||*.TL^$important 1152 | ||*.TM^$important 1153 | ||*.TMALL^$important 1154 | ||*.TN^$important 1155 | ||*.TO^$important 1156 | ||*.TODAY^$important 1157 | ||*.TOKYO^$important 1158 | ||*.TOOLS^$important 1159 | ||*.TOP^$important 1160 | ||*.TORAY^$important 1161 | ||*.TOSHIBA^$important 1162 | ||*.TOTAL^$important 1163 | ||*.TOURS^$important 1164 | ||*.TOWN^$important 1165 | ||*.TOYOTA^$important 1166 | ||*.TOYS^$important 1167 | ||*.TR^$important 1168 | ||*.TRADE^$important 1169 | ||*.TRADING^$important 1170 | ||*.TRAINING^$important 1171 | ||*.TRAVEL^$important 1172 | ||*.TRAVELERS^$important 1173 | ||*.TRAVELERSINSURANCE^$important 1174 | ||*.TRUST^$important 1175 | ||*.TRV^$important 1176 | ||*.TT^$important 1177 | ||*.TUBE^$important 1178 | ||*.TUI^$important 1179 | ||*.TUNES^$important 1180 | ||*.TUSHU^$important 1181 | ||*.TV^$important 1182 | ||*.TVS^$important 1183 | ||*.TW^$important 1184 | ||*.TZ^$important 1185 | ||*.UA^$important 1186 | ||*.UBANK^$important 1187 | ||*.UBS^$important 1188 | ||*.UG^$important 1189 | ||*.UK^$important 1190 | ||*.UNICOM^$important 1191 | ||*.UNIVERSITY^$important 1192 | ||*.UNO^$important 1193 | ||*.UOL^$important 1194 | ||*.UPS^$important 1195 | ||*.US^$important 1196 | ||*.UY^$important 1197 | ||*.UZ^$important 1198 | ||*.VA^$important 1199 | ||*.VACATIONS^$important 1200 | ||*.VANA^$important 1201 | ||*.VANGUARD^$important 1202 | ||*.VC^$important 1203 | ||*.VE^$important 1204 | ||*.VEGAS^$important 1205 | ||*.VENTURES^$important 1206 | ||*.VERISIGN^$important 1207 | ||*.VERSICHERUNG^$important 1208 | ||*.VET^$important 1209 | ||*.VG^$important 1210 | ||*.VI^$important 1211 | ||*.VIAJES^$important 1212 | ||*.VIDEO^$important 1213 | ||*.VIG^$important 1214 | ||*.VIKING^$important 1215 | ||*.VILLAS^$important 1216 | ||*.VIN^$important 1217 | ||*.VIP^$important 1218 | ||*.VIRGIN^$important 1219 | ||*.VISA^$important 1220 | ||*.VISION^$important 1221 | ||*.VIVA^$important 1222 | ||*.VIVO^$important 1223 | ||*.VLAANDEREN^$important 1224 | ||*.VN^$important 1225 | ||*.VODKA^$important 1226 | ||*.VOLVO^$important 1227 | ||*.VOTE^$important 1228 | ||*.VOTING^$important 1229 | ||*.VOTO^$important 1230 | ||*.VOYAGE^$important 1231 | ||*.VU^$important 1232 | ||*.WALES^$important 1233 | ||*.WALMART^$important 1234 | ||*.WALTER^$important 1235 | ||*.WANG^$important 1236 | ||*.WANGGOU^$important 1237 | ||*.WATCH^$important 1238 | ||*.WATCHES^$important 1239 | ||*.WEATHER^$important 1240 | ||*.WEATHERCHANNEL^$important 1241 | ||*.WEBCAM^$important 1242 | ||*.WEBER^$important 1243 | ||*.WEBSITE^$important 1244 | ||*.WED^$important 1245 | ||*.WEDDING^$important 1246 | ||*.WEIBO^$important 1247 | ||*.WEIR^$important 1248 | ||*.WF^$important 1249 | ||*.WHOSWHO^$important 1250 | ||*.WIEN^$important 1251 | ||*.WIKI^$important 1252 | ||*.WILLIAMHILL^$important 1253 | ||*.WIN^$important 1254 | ||*.WINDOWS^$important 1255 | ||*.WINE^$important 1256 | ||*.WINNERS^$important 1257 | ||*.WME^$important 1258 | ||*.WOLTERSKLUWER^$important 1259 | ||*.WOODSIDE^$important 1260 | ||*.WORK^$important 1261 | ||*.WORKS^$important 1262 | ||*.WORLD^$important 1263 | ||*.WOW^$important 1264 | ||*.WS^$important 1265 | ||*.WTC^$important 1266 | ||*.WTF^$important 1267 | ||*.XBOX^$important 1268 | ||*.XEROX^$important 1269 | ||*.XIHUAN^$important 1270 | ||*.XIN^$important 1271 | ||*.XN--11B4C3D^$important 1272 | ||*.XN--1CK2E1B^$important 1273 | ||*.XN--1QQW23A^$important 1274 | ||*.XN--2SCRJ9C^$important 1275 | ||*.XN--30RR7Y^$important 1276 | ||*.XN--3BST00M^$important 1277 | ||*.XN--3DS443G^$important 1278 | ||*.XN--3E0B707E^$important 1279 | ||*.XN--3HCRJ9C^$important 1280 | ||*.XN--3PXU8K^$important 1281 | ||*.XN--42C2D9A^$important 1282 | ||*.XN--45BR5CYL^$important 1283 | ||*.XN--45BRJ9C^$important 1284 | ||*.XN--45Q11C^$important 1285 | ||*.XN--4DBRK0CE^$important 1286 | ||*.XN--4GBRIM^$important 1287 | ||*.XN--54B7FTA0CC^$important 1288 | ||*.XN--55QW42G^$important 1289 | ||*.XN--55QX5D^$important 1290 | ||*.XN--5SU34J936BGSG^$important 1291 | ||*.XN--5TZM5G^$important 1292 | ||*.XN--6FRZ82G^$important 1293 | ||*.XN--6QQ986B3XL^$important 1294 | ||*.XN--80ADXHKS^$important 1295 | ||*.XN--80AO21A^$important 1296 | ||*.XN--80AQECDR1A^$important 1297 | ||*.XN--80ASEHDB^$important 1298 | ||*.XN--80ASWG^$important 1299 | ||*.XN--8Y0A063A^$important 1300 | ||*.XN--90A3AC^$important 1301 | ||*.XN--90AE^$important 1302 | ||*.XN--90AIS^$important 1303 | ||*.XN--9DBQ2A^$important 1304 | ||*.XN--9ET52U^$important 1305 | ||*.XN--9KRT00A^$important 1306 | ||*.XN--B4W605FERD^$important 1307 | ||*.XN--BCK1B9A5DRE4C^$important 1308 | ||*.XN--C1AVG^$important 1309 | ||*.XN--C2BR7G^$important 1310 | ||*.XN--CCK2B3B^$important 1311 | ||*.XN--CCKWCXETD^$important 1312 | ||*.XN--CG4BKI^$important 1313 | ||*.XN--CLCHC0EA0B2G2A9GCD^$important 1314 | ||*.XN--CZR694B^$important 1315 | ||*.XN--CZRS0T^$important 1316 | ||*.XN--CZRU2D^$important 1317 | ||*.XN--D1ACJ3B^$important 1318 | ||*.XN--D1ALF^$important 1319 | ||*.XN--E1A4C^$important 1320 | ||*.XN--ECKVDTC9D^$important 1321 | ||*.XN--EFVY88H^$important 1322 | ||*.XN--FCT429K^$important 1323 | ||*.XN--FHBEI^$important 1324 | ||*.XN--FIQ228C5HS^$important 1325 | ||*.XN--FIQ64B^$important 1326 | ||*.XN--FIQS8S^$important 1327 | ||*.XN--FIQZ9S^$important 1328 | ||*.XN--FJQ720A^$important 1329 | ||*.XN--FLW351E^$important 1330 | ||*.XN--FPCRJ9C3D^$important 1331 | ||*.XN--FZC2C9E2C^$important 1332 | ||*.XN--FZYS8D69UVGM^$important 1333 | ||*.XN--G2XX48C^$important 1334 | ||*.XN--GCKR3F0F^$important 1335 | ||*.XN--GECRJ9C^$important 1336 | ||*.XN--GK3AT1E^$important 1337 | ||*.XN--H2BREG3EVE^$important 1338 | ||*.XN--H2BRJ9C^$important 1339 | ||*.XN--H2BRJ9C8C^$important 1340 | ||*.XN--HXT814E^$important 1341 | ||*.XN--I1B6B1A6A2E^$important 1342 | ||*.XN--IMR513N^$important 1343 | ||*.XN--IO0A7I^$important 1344 | ||*.XN--J1AEF^$important 1345 | ||*.XN--J1AMH^$important 1346 | ||*.XN--J6W193G^$important 1347 | ||*.XN--JLQ480N2RG^$important 1348 | ||*.XN--JVR189M^$important 1349 | ||*.XN--KCRX77D1X4A^$important 1350 | ||*.XN--KPRW13D^$important 1351 | ||*.XN--KPRY57D^$important 1352 | ||*.XN--KPUT3I^$important 1353 | ||*.XN--L1ACC^$important 1354 | ||*.XN--LGBBAT1AD8J^$important 1355 | ||*.XN--MGB9AWBF^$important 1356 | ||*.XN--MGBA3A3EJT^$important 1357 | ||*.XN--MGBA3A4F16A^$important 1358 | ||*.XN--MGBA7C0BBN0A^$important 1359 | ||*.XN--MGBAAM7A8H^$important 1360 | ||*.XN--MGBAB2BD^$important 1361 | ||*.XN--MGBAH1A3HJKRD^$important 1362 | ||*.XN--MGBAI9AZGQP6J^$important 1363 | ||*.XN--MGBAYH7GPA^$important 1364 | ||*.XN--MGBBH1A^$important 1365 | ||*.XN--MGBBH1A71E^$important 1366 | ||*.XN--MGBC0A9AZCG^$important 1367 | ||*.XN--MGBCA7DZDO^$important 1368 | ||*.XN--MGBCPQ6GPA1A^$important 1369 | ||*.XN--MGBERP4A5D4AR^$important 1370 | ||*.XN--MGBGU82A^$important 1371 | ||*.XN--MGBI4ECEXP^$important 1372 | ||*.XN--MGBPL2FH^$important 1373 | ||*.XN--MGBT3DHD^$important 1374 | ||*.XN--MGBTX2B^$important 1375 | ||*.XN--MGBX4CD0AB^$important 1376 | ||*.XN--MIX891F^$important 1377 | ||*.XN--MK1BU44C^$important 1378 | ||*.XN--MXTQ1M^$important 1379 | ||*.XN--NGBC5AZD^$important 1380 | ||*.XN--NGBE9E0A^$important 1381 | ||*.XN--NGBRX^$important 1382 | ||*.XN--NODE^$important 1383 | ||*.XN--NQV7F^$important 1384 | ||*.XN--NQV7FS00EMA^$important 1385 | ||*.XN--NYQY26A^$important 1386 | ||*.XN--O3CW4H^$important 1387 | ||*.XN--OGBPF8FL^$important 1388 | ||*.XN--OTU796D^$important 1389 | ||*.XN--P1ACF^$important 1390 | ||*.XN--P1AI^$important 1391 | ||*.XN--PGBS0DH^$important 1392 | ||*.XN--PSSY2U^$important 1393 | ||*.XN--Q7CE6A^$important 1394 | ||*.XN--Q9JYB4C^$important 1395 | ||*.XN--QCKA1PMC^$important 1396 | ||*.XN--QXA6A^$important 1397 | ||*.XN--QXAM^$important 1398 | ||*.XN--RHQV96G^$important 1399 | ||*.XN--ROVU88B^$important 1400 | ||*.XN--RVC1E0AM3E^$important 1401 | ||*.XN--S9BRJ9C^$important 1402 | ||*.XN--SES554G^$important 1403 | ||*.XN--T60B56A^$important 1404 | ||*.XN--TCKWE^$important 1405 | ||*.XN--TIQ49XQYJ^$important 1406 | ||*.XN--UNUP4Y^$important 1407 | ||*.XN--VERMGENSBERATER-CTB^$important 1408 | ||*.XN--VERMGENSBERATUNG-PWB^$important 1409 | ||*.XN--VHQUV^$important 1410 | ||*.XN--VUQ861B^$important 1411 | ||*.XN--W4R85EL8FHU5DNRA^$important 1412 | ||*.XN--W4RS40L^$important 1413 | ||*.XN--WGBH1C^$important 1414 | ||*.XN--WGBL6A^$important 1415 | ||*.XN--XHQ521B^$important 1416 | ||*.XN--XKC2AL3HYE2A^$important 1417 | ||*.XN--XKC2DL3A5EE0H^$important 1418 | ||*.XN--Y9A3AQ^$important 1419 | ||*.XN--YFRO4I67O^$important 1420 | ||*.XN--YGBI2AMMX^$important 1421 | ||*.XN--ZFR164B^$important 1422 | ||*.XXX^$important 1423 | ||*.XYZ^$important 1424 | ||*.YACHTS^$important 1425 | ||*.YAHOO^$important 1426 | ||*.YAMAXUN^$important 1427 | ||*.YANDEX^$important 1428 | ||*.YE^$important 1429 | ||*.YODOBASHI^$important 1430 | ||*.YOGA^$important 1431 | ||*.YOKOHAMA^$important 1432 | ||*.YOU^$important 1433 | ||*.YOUTUBE^$important 1434 | ||*.YT^$important 1435 | ||*.YUN^$important 1436 | ||*.ZA^$important 1437 | ||*.ZAPPOS^$important 1438 | ||*.ZARA^$important 1439 | ||*.ZERO^$important 1440 | ||*.ZIP^$important 1441 | ||*.ZM^$important 1442 | ||*.ZONE^$important 1443 | ||*.ZUERICH^$important 1444 | ||*.ZW^$important 1445 | -------------------------------------------------------------------------------- /tracker_list_adguard_home.txt: -------------------------------------------------------------------------------- 1 | ! Tracker List - Detected using Privacy Badger (2023-12-05 04:56:59PM) 2 | ||00d3ed994e.com^ 3 | ||01b4075d6c.com^ 4 | ||03a17e7986.com^ 5 | ||0cf.io^ 6 | ||1000fapvids.com^ 7 | ||126.net^ 8 | ||12ezo5v60.com^ 9 | ||163.com^ 10 | ||1rx.io^ 11 | ||2020mustang.com^ 12 | ||247-inc.net^ 13 | ||24smi.net^ 14 | ||2cnt.net^ 15 | ||2mdn.net^ 16 | ||2o7.net^ 17 | ||2trk.info^ 18 | ||2xclick.ru^ 19 | ||33across.com^ 20 | ||34710af267.com^ 21 | ||360.cn^ 22 | ||360yield.com^ 23 | ||3gl.net^ 24 | ||3lift.com^ 25 | ||4087aa0dc1.com^ 26 | ||4dex.io^ 27 | ||4dsply.com^ 28 | ||4strokemedia.com^ 29 | ||58.com^ 30 | ||58che.com^ 31 | ||6093eccf-6734-4877-ac8b-83d6d0e27b46.edge.permutive.app^ 32 | ||6sc.co^ 33 | ||6sense.com^ 34 | ||7abf0af03c.com^ 35 | ||7eer.net^ 36 | ||7gra.us^ 37 | ||7xbid.com^ 38 | ||8x8.com^ 39 | ||9nyup8ul7.com^ 40 | ||a-ads.com^ 41 | ||a-cast.jp^ 42 | ||a-mo.net^ 43 | ||a-mx.com^ 44 | ||a-mx.net^ 45 | ||a.ad.gt^ 46 | ||a.adtng.com^ 47 | ||a.labadena.com^ 48 | ||a.magsrv.com^ 49 | ||a.pub.network^ 50 | ||a.realsrv.com^ 51 | ||a49f4feabf.com^ 52 | ||a8.net^ 53 | ||aamapiv2.com^ 54 | ||aamsitecertifier.com^ 55 | ||abcsinsights.com^ 56 | ||abtasty.com^ 57 | ||accdab.net^ 58 | ||accesstrade.net^ 59 | ||acecounter.com^ 60 | ||aceplanet.co.kr^ 61 | ||acexedge.com^ 62 | ||acint.net^ 63 | ||acrosspf.com^ 64 | ||acstat.com^ 65 | ||actonsoftware.com^ 66 | ||acuityplatform.com^ 67 | ||ad-m.asia^ 68 | ||ad-plus.com.tr^ 69 | ||ad-score.com^ 70 | ||ad-srv.net^ 71 | ||ad-stir.com^ 72 | ||ad-survey.com^ 73 | ||ad-track.jp^ 74 | ||ad.gt^ 75 | ||ad4989.co.kr^ 76 | ||adalliance.io^ 77 | ||adalyser.com^ 78 | ||adaraanalytics.com^ 79 | ||adasiaholdings.com^ 80 | ||adbro.me^ 81 | ||adcell.com^ 82 | ||addthis.com^ 83 | ||adelement.com^ 84 | ||adentifi.com^ 85 | ||adform.net^ 86 | ||adfox.ru^ 87 | ||adfyier.com^ 88 | ||adgebra.co.in^ 89 | ||adgile.media^ 90 | ||adgrx.com^ 91 | ||adhaven.com^ 92 | ||adhese.com^ 93 | ||adhigh.net^ 94 | ||adingo.jp^ 95 | ||adipolo.com^ 96 | ||adition.com^ 97 | ||adkernel.com^ 98 | ||adleadevent.com^ 99 | ||adlightning.com^ 100 | ||adlook.me^ 101 | ||adlooxtracking.com^ 102 | ||adman.gr^ 103 | ||admanmedia.com^ 104 | ||admaru.com^ 105 | ||admatic.com.tr^ 106 | ||admatrix.jp^ 107 | ||admedo.com^ 108 | ||admicro.vn^ 109 | ||admixer.co.kr^ 110 | ||admixer.net^ 111 | ||admost.com^ 112 | ||adnetwork.agency^ 113 | ||adnuntius.com^ 114 | ||adnuntius.delivery^ 115 | ||adnxs-simple.com^ 116 | ||adnxs.com^ 117 | ||adnxs.net^ 118 | ||adnxtr.com^ 119 | ||adnz.co^ 120 | ||adobe.com^ 121 | ||adobedc.net^ 122 | ||adobetarget.data.adobedc.net^ 123 | ||adocean.pl^ 124 | ||adop.cc^ 125 | ||adotmob.com^ 126 | ||adpartner.pro^ 127 | ||adpicker.net^ 128 | ||adpies.com^ 129 | ||adpnut.com^ 130 | ||adpool.bet^ 131 | ||adprime.com^ 132 | ||adpushup.com^ 133 | ||adrecover.com^ 134 | ||adriver.ru^ 135 | ||adroll.com^ 136 | ||adrta.com^ 137 | ||ads.rubiconproject.com^ 138 | ||ads2550.bid^ 139 | ||adsafeprotected.com^ 140 | ||adscale.de^ 141 | ||adsco.re^ 142 | ||adservob.com^ 143 | ||adsinteractive.com^ 144 | ||adskeeper.co.uk^ 145 | ||adskeeper.com^ 146 | ||adspend.space^ 147 | ||adspsp.com^ 148 | ||adsrvr.org^ 149 | ||adstanding.com^ 150 | ||adstreamer.ru^ 151 | ||adswizz.com^ 152 | ||adtarget.com.tr^ 153 | ||adtarget.market^ 154 | ||adtarget.me^ 155 | ||adtclickblack.com^ 156 | ||adtdp.com^ 157 | ||adtelligent.com^ 158 | ||adthrive.com^ 159 | ||adtlgc.com^ 160 | ||adtng.com^ 161 | ||adtriba.com^ 162 | ||adtwister.me^ 163 | ||adup-tech.com^ 164 | ||advanced-web-analytics.com^ 165 | ||advangelists.com^ 166 | ||advanseads.com^ 167 | ||adventive.com^ 168 | ||adventori.com^ 169 | ||advertising.com^ 170 | ||adviad.com^ 171 | ||adx.com.ru^ 172 | ||adxadserv.com^ 173 | ||adxpremium.services^ 174 | ||adxserve.com^ 175 | ||adzerk.net^ 176 | ||adzone.io^ 177 | ||af-110.com^ 178 | ||affec.tv^ 179 | ||affinity.com^ 180 | ||afilio.com.br^ 181 | ||afp.ai^ 182 | ||agency2.ru^ 183 | ||aggle.net^ 184 | ||agilesrv.com^ 185 | ||agilone.com^ 186 | ||agkn.com^ 187 | ||agora.pl^ 188 | ||aibsgc.com^ 189 | ||aidata.io^ 190 | ||aimtell.com^ 191 | ||airpr.com^ 192 | ||airtory.com^ 193 | ||ais.co.th^ 194 | ||aiservice.vn^ 195 | ||aistekso.net^ 196 | ||aj1559.online^ 197 | ||aj1907.online^ 198 | ||akadigital.vn^ 199 | ||aklorswikk.com^ 200 | ||akstat.io^ 201 | ||albacross.com^ 202 | ||alcmpn.com^ 203 | ||aldisued.d3.sc.omtrdc.net^ 204 | ||alfasense.com^ 205 | ||alfasense.net^ 206 | ||aliapp.org^ 207 | ||almamedia.fi^ 208 | ||alocdn.com^ 209 | ||alphonso.tv^ 210 | ||alpixtrack.com^ 211 | ||altergeo.ru^ 212 | ||altitude-arena.com^ 213 | ||amazon-adsystem.com^ 214 | ||ambientdsp.com^ 215 | ||amcdn.vn^ 216 | ||amgs5.com^ 217 | ||amitydigital.io^ 218 | ||amntx1.net^ 219 | ||amplitude.com^ 220 | ||amspbs.com^ 221 | ||amung.us^ 222 | ||amx1.net^ 223 | ||analyt.ir^ 224 | ||analytics-egain.com^ 225 | ||analytics-sm.com^ 226 | ||analytics.tiktok.com^ 227 | ||analyze.ly^ 228 | ||andata.ru^ 229 | ||andbeyond.media^ 230 | ||aniview.com^ 231 | ||annocdn.com^ 232 | ||antena3.com^ 233 | ||anyclip.com^ 234 | ||ap3prod.com^ 235 | ||aparat.com^ 236 | ||apester.com^ 237 | ||app-us1.com^ 238 | ||app.link^ 239 | ||appdynamics.com^ 240 | ||appier.net^ 241 | ||appsci.io^ 242 | ||appsflyer.com^ 243 | ||aqkkoalfpz.com^ 244 | ||aralego.com^ 245 | ||aralego.net^ 246 | ||arc.io^ 247 | ||arcade.software^ 248 | ||ardslediana.com^ 249 | ||areyouwatchingthis.com^ 250 | ||argenx.com^ 251 | ||arrivalist.com^ 252 | ||askjdhaa.com^ 253 | ||asklocala.com^ 254 | ||askmiso.com^ 255 | ||aso1.net^ 256 | ||assertcom.de^ 257 | ||assets.pinterest.com^ 258 | ||assoc-fe.associates-amazon.com^ 259 | ||associates-amazon.com^ 260 | ||astutebot.com^ 261 | ||at-o.net^ 262 | ||atemda.com^ 263 | ||atgsvcs.com^ 264 | ||ati-host.net^ 265 | ||atp.fox^ 266 | ||atsptp.com^ 267 | ||attentivemobile.com^ 268 | ||audioeye.com^ 269 | ||audrte.com^ 270 | ||augailou.com^ 271 | ||auone.jp^ 272 | ||automizely-analytics.com^ 273 | ||avaamo.com^ 274 | ||avantisvideo.com^ 275 | ||avmws.com^ 276 | ||avplayer.com^ 277 | ||awin1.com^ 278 | ||axept.io^ 279 | ||axonix.com^ 280 | ||ayads.co^ 281 | ||azet.sk^ 282 | ||azure.com^ 283 | ||b0e8.com^ 284 | ||b2c.com^ 285 | ||b4dda3f4a1.com^ 286 | ||baidu.com^ 287 | ||baidustatic.com^ 288 | ||baithoph.net^ 289 | ||bam-x.com^ 290 | ||bambuser.com^ 291 | ||bambuser.net^ 292 | ||bannerflow.com^ 293 | ||bannerflow.net^ 294 | ||bannernow.com^ 295 | ||baqend.com^ 296 | ||bat.bing.com^ 297 | ||bauptost.net^ 298 | ||bbelements.com^ 299 | ||bbrdbr.com^ 300 | ||bdg.com^ 301 | ||beacon.riskified.com^ 302 | ||bedsberry.com^ 303 | ||beeline.ru^ 304 | ||behave.com^ 305 | ||belk.com^ 306 | ||beop.io^ 307 | ||besoccerapps.com^ 308 | ||bestreviews.com^ 309 | ||bestssp.com^ 310 | ||betrad.com^ 311 | ||betwayafrica.com^ 312 | ||betweendigital.com^ 313 | ||bezoarschrysid.com^ 314 | ||bfmio.com^ 315 | ||bg4nxu2u5t.com^ 316 | ||bidderstack.com^ 317 | ||bidgear.com^ 318 | ||bidmatic.io^ 319 | ||bidmyqps.xyz^ 320 | ||bidr.io^ 321 | ||bidstreamserver.com^ 322 | ||bidswitch.net^ 323 | ||bidsxchange.com^ 324 | ||bidsxplayer.com^ 325 | ||bidtheatre.com^ 326 | ||bidvol.com^ 327 | ||big7.com^ 328 | ||bilibili.com^ 329 | ||bing.com^ 330 | ||bitchute.com^ 331 | ||bitmovin.com^ 332 | ||bitrix.info^ 333 | ||bitrix24.ru^ 334 | ||bizbuysell.com^ 335 | ||bizible.com^ 336 | ||bizibly.com^ 337 | ||bl9.ir^ 338 | ||blackcrow.ai^ 339 | ||blg-1216lb.com^ 340 | ||blismedia.com^ 341 | ||bluebillywig.com^ 342 | ||bluecava.com^ 343 | ||blueconic.net^ 344 | ||bluecore.com^ 345 | ||bluehost.com^ 346 | ||bluekai.com^ 347 | ||bluevoox.com^ 348 | ||bnpmtoazgw.com^ 349 | ||bongacams.com^ 350 | ||book-secure.com^ 351 | ||booking.com^ 352 | ||boost-next.co.jp^ 353 | ||borderfree.com^ 354 | ||botfaqtor.ru^ 355 | ||botmaker.com^ 356 | ||bounceexchange.com^ 357 | ||bouncex.net^ 358 | ||bqstreamer.com^ 359 | ||braindw.com^ 360 | ||branch.io^ 361 | ||brand-display.com^ 362 | ||brandcdn.com^ 363 | ||brandlock.io^ 364 | ||brandmetrics.com^ 365 | ||brealtime.com^ 366 | ||bricks-co.com^ 367 | ||brightcove.net^ 368 | ||brilliantcollector.com^ 369 | ||broadstreetads.com^ 370 | ||browser-intake-datadoghq.com^ 371 | ||browser-intake-datadoghq.eu^ 372 | ||browser-intake-us5-datadoghq.com^ 373 | ||browsiprod.com^ 374 | ||brsrvr.com^ 375 | ||bs-dante.ru^ 376 | ||btcx.sbs^ 377 | ||btloader.com^ 378 | ||bttrack.com^ 379 | ||btttag.com^ 380 | ||bugherd.com^ 381 | ||bullionyield.com^ 382 | ||bumlam.com^ 383 | ||buqkrzbrucz.com^ 384 | ||buzzoola.com^ 385 | ||byside.com^ 386 | ||bytedance.com^ 387 | ||bzcclandlord.com^ 388 | ||c.adsco.re^ 389 | ||c.aps.amazon-adsystem.com^ 390 | ||c212.net^ 391 | ||c3tag.com^ 392 | ||c99.ai^ 393 | ||calltouch.ru^ 394 | ||cam4.com^ 395 | ||cameesse.net^ 396 | ||caprofitx.com^ 397 | ||captivate.fm^ 398 | ||capturehighered.net^ 399 | ||cariai.com^ 400 | ||carrotquest.app^ 401 | ||casalemedia.com^ 402 | ||ccgateway.net^ 403 | ||cchbdata.net^ 404 | ||ccsyncuuid.net^ 405 | ||cctv.com^ 406 | ||cdn-4.convertexperiments.com^ 407 | ||cdn-net.com^ 408 | ||cdn.appdynamics.com^ 409 | ||cdn.fuseplatform.net^ 410 | ||cdn.house^ 411 | ||cdn.onesignal.com^ 412 | ||cdn.parsely.com^ 413 | ||cdn.runative-syndicate.com^ 414 | ||cdn.scarabresearch.com^ 415 | ||cdn.speedcurve.com^ 416 | ||cdn.tapioni.com^ 417 | ||cdn.trafficbass.com^ 418 | ||cdn.tubecorp.com^ 419 | ||cdn.unblockia.com^ 420 | ||cdnwidget.com^ 421 | ||celtra.com^ 422 | ||channelexco.com^ 423 | ||channelvids.space^ 424 | ||chartbeat.net^ 425 | ||chase.com^ 426 | ||chatango.com^ 427 | ||chatbot.com^ 428 | ||chatplus.jp^ 429 | ||chatra.io^ 430 | ||chaturbate.com^ 431 | ||cheqzone.com^ 432 | ||chimpstatic.com^ 433 | ||chocolateplatform.com^ 434 | ||choozle.com^ 435 | ||chryvast.com^ 436 | ||citiservi.es^ 437 | ||citydsp.com^ 438 | ||civicscience.com^ 439 | ||ck-ie.com^ 440 | ||clarin.com^ 441 | ||clarity.ms^ 442 | ||clarium.io^ 443 | ||clean.gg^ 444 | ||cleanmediaads.com^ 445 | ||cleanmediaadserver.com^ 446 | ||clearbit.com^ 447 | ||clearbitjs.com^ 448 | ||clickagy.com^ 449 | ||clickcease.com^ 450 | ||clickcertain.com^ 451 | ||clickiocdn.com^ 452 | ||clickonometrics.pl^ 453 | ||clicktale.net^ 454 | ||clicktripz.com^ 455 | ||clientgear.com^ 456 | ||clinch.co^ 457 | ||clipcentric.com^ 458 | ||clmbtech.com^ 459 | ||clnmde.com^ 460 | ||cloudflareinsights.com^ 461 | ||cmcd1.com^ 462 | ||cnnd.vn^ 463 | ||cnt.my^ 464 | ||cnzz.com^ 465 | ||coccoc.com^ 466 | ||cognitivlabs.com^ 467 | ||cohesionapps.com^ 468 | ||collegenet.com^ 469 | ||colossusssp.com^ 470 | ||comagic.ru^ 471 | ||comeet.co^ 472 | ||commander1.com^ 473 | ||company-target.com^ 474 | ||conde.digital^ 475 | ||condenastdigital.com^ 476 | ||connect.facebook.net^ 477 | ||connectad.io^ 478 | ||connecto.io^ 479 | ||connexity.net^ 480 | ||connextra.com^ 481 | ||conrad.de^ 482 | ||conscent.in^ 483 | ||consentag.eu^ 484 | ||consentframework.com^ 485 | ||constantcontact.com^ 486 | ||contanuity.com^ 487 | ||contentdsp.com^ 488 | ||contentexchange.me^ 489 | ||contentinsights.com^ 490 | ||contentsfeed.com^ 491 | ||contentsquare.net^ 492 | ||contextual.media.net^ 493 | ||contextweb.com^ 494 | ||contineljs.com^ 495 | ||convertexperiments.com^ 496 | ||cookie-script.com^ 497 | ||cookiebot.com^ 498 | ||cookiepro.com^ 499 | ||cookieyes.com^ 500 | ||cootlogix.com^ 501 | ||copper6.com^ 502 | ||coremetrics.com^ 503 | ||coub.com^ 504 | ||counter.yadro.ru^ 505 | ||coupang.com^ 506 | ||coveo.com^ 507 | ||cpex.cz^ 508 | ||cpmstar.com^ 509 | ||cpx.to^ 510 | ||cquotient.com^ 511 | ||crazyegg.com^ 512 | ||createjs.com^ 513 | ||creative-serving.com^ 514 | ||creative.bbrdbr.com^ 515 | ||creative.xlivrdr.com^ 516 | ||creativecdn.com^ 517 | ||creativecommons.org^ 518 | ||cribnotes.jp^ 519 | ||criteo.com^ 520 | ||criteo.net^ 521 | ||crmentjg.com^ 522 | ||crsspxl.com^ 523 | ||crwdcntrl.net^ 524 | ||crypto.com^ 525 | ||ctnsnet.com^ 526 | ||ctrmi.cn^ 527 | ||cupidmedia.com^ 528 | ||curacao-egaming.com^ 529 | ||curalate.com^ 530 | ||customer.io^ 531 | ||cxense.com^ 532 | ||d-pl.us^ 533 | ||d2-apps.net^ 534 | ||d2c.ne.jp^ 535 | ||d41.co^ 536 | ||d613466cf9.com^ 537 | ||dable.io^ 538 | ||datacygnal.io^ 539 | ||datadoghq.com^ 540 | ||datadome.co^ 541 | ||datadrivenpromotion.com^ 542 | ||datago.ru^ 543 | ||dataroyal.io^ 544 | ||datasteam.io^ 545 | ||datawrkz.com^ 546 | ||daum.net^ 547 | ||dblks.net^ 548 | ||dc-tag.jp^ 549 | ||dc.services.visualstudio.com^ 550 | ||ddli.jp^ 551 | ||ddos-guard.net^ 552 | ||deadlinefunnel.com^ 553 | ||dealertrack.com^ 554 | ||debugbear.com^ 555 | ||decibelinsight.net^ 556 | ||decide.dev^ 557 | ||deep.bi^ 558 | ||deepintent.com^ 559 | ||defybrick.com^ 560 | ||deliverimp.com^ 561 | ||deliveryapis.com^ 562 | ||demand.supply^ 563 | ||demandbase.com^ 564 | ||demandscience.com^ 565 | ||demdex.net^ 566 | ||denakop.com^ 567 | ||deqwas.net^ 568 | ||desipearl.com^ 569 | ||devconops.com^ 570 | ||df-srv.de^ 571 | ||dialogtech.com^ 572 | ||dianomi.com^ 573 | ||digicert.com^ 574 | ||diginetica.net^ 575 | ||digitalcamp.co.kr^ 576 | ||digitalks.az^ 577 | ||digitaltarget.ru^ 578 | ||directadvert.ru^ 579 | ||discord.com^ 580 | ||discordapp.com^ 581 | ||discordapp.net^ 582 | ||disqus.com^ 583 | ||dmca.com^ 584 | ||dmm.co.jp^ 585 | ||dmm.com^ 586 | ||dmpprof.com^ 587 | ||dmpxs.com^ 588 | ||dmxleo.com^ 589 | ||dnacdn.net^ 590 | ||doceree.com^ 591 | ||docomo.ne.jp^ 592 | ||doppiocdn.com^ 593 | ||dotdashmdp.com^ 594 | ||dotmetrics.net^ 595 | ||dotmetrics.rocks^ 596 | ||dotomi.com^ 597 | ||doubleclick.net^ 598 | ||doublepimp.com^ 599 | ||doubleverify.com^ 600 | ||dpm.demdex.net^ 601 | ||dpmsrv.com^ 602 | ||dprof.site^ 603 | ||dropbox.com^ 604 | ||dropboxusercontent.com^ 605 | ||dscgirls.live^ 606 | ||dsspn.com^ 607 | ||dstillery.com^ 608 | ||dtscdn.com^ 609 | ||dtscout.com^ 610 | ||dtstmio.com^ 611 | ||dugout.com^ 612 | ||dxmdp.com^ 613 | ||dynamicyield.com^ 614 | ||dynatrace-managed.com^ 615 | ||dynatrace.com^ 616 | ||e-planning.net^ 617 | ||e-rasaneh.ir^ 618 | ||e-volution.ai^ 619 | ||e2ertt.com^ 620 | ||eacdn.com^ 621 | ||eadsrv.com^ 622 | ||ebis.ne.jp^ 623 | ||ecal.com^ 624 | ||eccmp.com^ 625 | ||ecdn.firstimpression.io^ 626 | ||ecdns.net^ 627 | ||edf.org^ 628 | ||edgio.net^ 629 | ||ediemidnightzombies.com^ 630 | ||edigitalsurvey.com^ 631 | ||editec-online.com^ 632 | ||ednplus.com^ 633 | ||eetech.com^ 634 | ||egain.cloud^ 635 | ||ekcs.us^ 636 | ||eloqua.com^ 637 | ||embed.spotify.com^ 638 | ||emjcd.com^ 639 | ||emxdgt.com^ 640 | ||engageya.com^ 641 | ||ensighten.com^ 642 | ||enzymic.co^ 643 | ||eqads.com^ 644 | ||ergadx.com^ 645 | ||escalated.io^ 646 | ||eskimi.com^ 647 | ||essayprofit.com^ 648 | ||etahub.com^ 649 | ||etargetnet.com^ 650 | ||ethecountryw.org^ 651 | ||etracker.de^ 652 | ||eulerian.net^ 653 | ||eum-appdynamics.com^ 654 | ||europafm.com^ 655 | ||everesttech.net^ 656 | ||evergage.com^ 657 | ||eviltracker.net^ 658 | ||ex.co^ 659 | ||exactag.com^ 660 | ||exdynsrv.com^ 661 | ||exelator.com^ 662 | ||exosrv.com^ 663 | ||exponea.com^ 664 | ||exponea.cz^ 665 | ||extole.com^ 666 | ||extremereach.io^ 667 | ||eyeota.net^ 668 | ||ezcgojaamg.com^ 669 | ||ezoic.net^ 670 | ||facebook.com^ 671 | ||facebook.net^ 672 | ||fam-ad.com^ 673 | ||fastcmp.com^ 674 | ||fastly-insights.com^ 675 | ||fatmedia.io^ 676 | ||fbot.me^ 677 | ||fca4efa968.com^ 678 | ||feathr.co^ 679 | ||feedad.com^ 680 | ||finpri.com^ 681 | ||fireworkanalytics.com^ 682 | ||firstimpression.io^ 683 | ||fitgirl-repacks-site.disqus.com^ 684 | ||five9.com^ 685 | ||fixidle.com^ 686 | ||fksnk.com^ 687 | ||flashnetic.com^ 688 | ||flashtalking.com^ 689 | ||flipboard.com^ 690 | ||flipdesk.jp^ 691 | ||flipp.com^ 692 | ||flixtrial.com^ 693 | ||flocktory.com^ 694 | ||flowplayer.com^ 695 | ||flowtype.press^ 696 | ||flux.jp^ 697 | ||fndrsp.net^ 698 | ||focas.jp^ 699 | ||foo.software^ 700 | ||forter.com^ 701 | ||fouanalytics.com^ 702 | ||fourtimessmelly.com^ 703 | ||fout.jp^ 704 | ||foxnews.com^ 705 | ||fpjs.io^ 706 | ||fpnpmcdn.net^ 707 | ||fpukxcinlf.com^ 708 | ||franecki.net^ 709 | ||frap.site^ 710 | ||freeskreen.com^ 711 | ||frequencyads.com^ 712 | ||frfetchme.com^ 713 | ||fronttoad.com^ 714 | ||frvr.com^ 715 | ||fskeab.com^ 716 | ||ftd.agency^ 717 | ||fullstory.com^ 718 | ||fullvids.online^ 719 | ||fullvids.space^ 720 | ||funkedigital.de^ 721 | ||fuseplatform.net^ 722 | ||futureplc.com^ 723 | ||fvcwqkkqmuv.com^ 724 | ||fwpixel.com^ 725 | ||fxmnba.com^ 726 | ||g--o.info^ 727 | ||g2.com^ 728 | ||g2crowd.com^ 729 | ||gaming-curacao.com^ 730 | ||gammaplatform.com^ 731 | ||gamoshi.io^ 732 | ||gartner.com^ 733 | ||gaug.es^ 734 | ||gbqofs.io^ 735 | ||gbss.io^ 736 | ||gcion.com^ 737 | ||gcprivacy.com^ 738 | ||gdeslon.ru^ 739 | ||gemini.media^ 740 | ||gemius.pl^ 741 | ||genieegroup.com^ 742 | ||genieesspv.jp^ 743 | ||geoedge.be^ 744 | ||get4click.ru^ 745 | ||getblue.io^ 746 | ||getclicky.com^ 747 | ||getdrip.com^ 748 | ||getkoala.com^ 749 | ||getletterpress.com^ 750 | ||getmetrical.com^ 751 | ||getnitropack.com^ 752 | ||getpublica.com^ 753 | ||getrockerbox.com^ 754 | ||getshogun.com^ 755 | ||getsitecontrol.com^ 756 | ||getsitectrl.com^ 757 | ||getsmartcontent.com^ 758 | ||gettopple.com^ 759 | ||getwarmly.com^ 760 | ||giraff.io^ 761 | ||gishejuy.com^ 762 | ||givemelink.cc^ 763 | ||glassboxdigital.io^ 764 | ||gldrdr.com^ 765 | ||gliacloud.com^ 766 | ||gloaphoo.net^ 767 | ||globalsign.com^ 768 | ||globalwebindex.net^ 769 | ||glomex.com^ 770 | ||gloriousbeef.com^ 771 | ||gml-grp.com^ 772 | ||gmossp-sp.jp^ 773 | ||gmxvmvptfm.com^ 774 | ||gnetwork.me^ 775 | ||gnezdo.ru^ 776 | ||gnpge.com^ 777 | ||go.xlirdr.com^ 778 | ||goadopt.io^ 779 | ||gobankingrates.com^ 780 | ||godpvqnszo.com^ 781 | ||godsave.lgbt^ 782 | ||google-analytics.com^ 783 | ||google.com^ 784 | ||google.com.au^ 785 | ||google.com.sg^ 786 | ||googleads.g.doubleclick.net^ 787 | ||googlesyndication.com^ 788 | ||goomaphy.com^ 789 | ||gorving.com^ 790 | ||grape.media^ 791 | ||graph.facebook.com^ 792 | ||gravito.net^ 793 | ||gridsumdissector.com^ 794 | ||groorsoa.net^ 795 | ||groovinads.com^ 796 | ||group-ib.com^ 797 | ||grow.me^ 798 | ||growingio.com^ 799 | ||grupoelcorteingles.es^ 800 | ||gsght.com^ 801 | ||gsjln04hd.com^ 802 | ||gsspat.jp^ 803 | ||gssprt.jp^ 804 | ||guidestar.org^ 805 | ||gumgum.com^ 806 | ||gunosy.com^ 807 | ||h-cdn.com^ 808 | ||h12-media.com^ 809 | ||hatena.ne.jp^ 810 | ||hbagency.ai^ 811 | ||hbrd.io^ 812 | ||hbx.media.net^ 813 | ||hcn.health^ 814 | ||hdtube.porn^ 815 | ||heapanalytics.com^ 816 | ||hellobar.com^ 817 | ||hellocdn1.net^ 818 | ||hentaigold.net^ 819 | ||herbgreencolumn.com^ 820 | ||hertz.com.au^ 821 | ||hexagon-analytics.com^ 822 | ||hhbypdoecp.com^ 823 | ||hhkld.com^ 824 | ||hicloud.com^ 825 | ||highcharts.com^ 826 | ||hightrafficcounter.com^ 827 | ||highwire.org^ 828 | ||hindustantimes.com^ 829 | ||hinet.net^ 830 | ||histats.com^ 831 | ||hit.ua^ 832 | ||hmgroup.com^ 833 | ||hmstats.com^ 834 | ||hockeystack.com^ 835 | ||hotjar.com^ 836 | ||hotjar.io^ 837 | ||hotpornfile.disqus.com^ 838 | ||hp.com^ 839 | ||hrzn-nxt.com^ 840 | ||hs-embed-reporting.com^ 841 | ||hs-sites-eu1.com^ 842 | ||hs-sites.com^ 843 | ||hsforms.com^ 844 | ||htdvt.com^ 845 | ||htplayground.com^ 846 | ||hubspot.com^ 847 | ||hubspot.net^ 848 | ||hubspotvideo.com^ 849 | ||hushly.com^ 850 | ||hybrid.ai^ 851 | ||hyros.com^ 852 | ||i-mobile.co.jp^ 853 | ||ib-ibi.com^ 854 | ||ibcstack.com^ 855 | ||ibeat-analytics.com^ 856 | ||id5-sync.com^ 857 | ||idealista.com^ 858 | ||idealmedia.io^ 859 | ||idio.co^ 860 | ||idsync.rlcdn.com^ 861 | ||iesnare.com^ 862 | ||iezxmddndn.com^ 863 | ||igaw.io^ 864 | ||igodigital.com^ 865 | ||iheart.com^ 866 | ||iliketomakingpics.com^ 867 | ||iloptrex.com^ 868 | ||im-apps.net^ 869 | ||imglib.info^ 870 | ||impact-ad.jp^ 871 | ||impact.com^ 872 | ||impactify.media^ 873 | ||impactserving.com^ 874 | ||imrworldwide.com^ 875 | ||imtwjwoasak.com^ 876 | ||in-smart.cn^ 877 | ||incrementxserv.com^ 878 | ||indapass.hu^ 879 | ||indexww.com^ 880 | ||indiatimes.com^ 881 | ||indoleads.com^ 882 | ||infinario.com^ 883 | ||influ2.com^ 884 | ||infogram.com^ 885 | ||infolinks.com^ 886 | ||informz.net^ 887 | ||infox.sg^ 888 | ||infusionsoft.app^ 889 | ||infusionsoft.com^ 890 | ||ingage.tech^ 891 | ||inmobi.com^ 892 | ||innity.com^ 893 | ||innocraft.cloud^ 894 | ||innogames.de^ 895 | ||innovid.com^ 896 | ||inpwrd.net^ 897 | ||insent.ai^ 898 | ||insightech.com^ 899 | ||insightexpressai.com^ 900 | ||inskinad.com^ 901 | ||inspectlet.com^ 902 | ||instana.io^ 903 | ||insticator.com^ 904 | ||instiengage.com^ 905 | ||instreamvideo.ru^ 906 | ||insurads.com^ 907 | ||intentiq.com^ 908 | ||intentsify.io^ 909 | ||interactive-circle.jp^ 910 | ||intergient.com^ 911 | ||interia.pl^ 912 | ||intoday.in^ 913 | ||intrack.ir^ 914 | ||investingchannel.com^ 915 | ||investis.com^ 916 | ||ioam.de^ 917 | ||iocnt.net^ 918 | ||iol.it^ 919 | ||iovation.com^ 920 | ||ip2c.net^ 921 | ||iperceptions.com^ 922 | ||ipify.org^ 923 | ||ipinyou.com^ 924 | ||iponweb.net^ 925 | ||ippen.space^ 926 | ||ipredictive.com^ 927 | ||iprom.net^ 928 | ||ipromote.com^ 929 | ||iqm.com^ 930 | ||iqzone.com^ 931 | ||irs03.com^ 932 | ||ispot.tv^ 933 | ||ist-track.com^ 934 | ||italia.it^ 935 | ||itsfogo.com^ 936 | ||itskiddien.club^ 937 | ||ivcbrasil.org.br^ 938 | ||iwanttodeliver.com^ 939 | ||izooto.com^ 940 | ||jads.co^ 941 | ||jebbit.com^ 942 | ||jivo.ru^ 943 | ||jivosite.com^ 944 | ||jivox.com^ 945 | ||jixie.io^ 946 | ||js-agent.newrelic.com^ 947 | ||js.adsrvr.org^ 948 | ||js.wpadmngr.com^ 949 | ||jsc.adskeeper.co.uk^ 950 | ||jsc.adskeeper.com^ 951 | ||jsc.mgid.com^ 952 | ||jsrdn.com^ 953 | ||juicer.cc^ 954 | ||juicyads.com^ 955 | ||justpremium.com^ 956 | ||jwplayer.com^ 957 | ||jwpltx.com^ 958 | ||k-analytix.com^ 959 | ||k5a.io^ 960 | ||kaipuyun.cn^ 961 | ||kaizenplatform.net^ 962 | ||kakao.com^ 963 | ||kaltura.com^ 964 | ||kampyle.com^ 965 | ||kanade-ad.net^ 966 | ||kaptcha.com^ 967 | ||kargo.com^ 968 | ||karte-edge.io^ 969 | ||karte.io^ 970 | ||kdmttk.com^ 971 | ||ketchcdn.com^ 972 | ||keywee.co^ 973 | ||kgfjrb711.com^ 974 | ||kimberlite.io^ 975 | ||kingpinkton.com^ 976 | ||kissmetrics.io^ 977 | ||klangoo.com^ 978 | ||klarnaevt.com^ 979 | ||klarnaservices.com^ 980 | ||klaviyo.com^ 981 | ||kleecks-stats.com^ 982 | ||kmsmep.com^ 983 | ||knet.cn^ 984 | ||knotch.it^ 985 | ||koddi.com^ 986 | ||krakenoptimize.com^ 987 | ||krushmedia.com^ 988 | ||krxd.net^ 989 | ||ktkjmp.com^ 990 | ||ktxlytics.io^ 991 | ||kuaishou.com^ 992 | ||kueezrtb.com^ 993 | ||kwai-pro.com^ 994 | ||kwanzoo.com^ 995 | ||kwtnhdrmbx.com^ 996 | ||l.getsitecontrol.com^ 997 | ||labadena.com^ 998 | ||ladsp.com^ 999 | ||laqwnrazvyjeb.top^ 1000 | ||lasexta.com^ 1001 | ||layer0.co^ 1002 | ||lby2kd27c.com^ 1003 | ||leadinfo.net^ 1004 | ||leadlab.click^ 1005 | ||leadplace.fr^ 1006 | ||leadspace.com^ 1007 | ||leadsrx.com^ 1008 | ||lemmatechnologies.com^ 1009 | ||letslinc.com^ 1010 | ||levelaccess.net^ 1011 | ||lfeeder.com^ 1012 | ||lhmos.com^ 1013 | ||liadm.com^ 1014 | ||licdn.com^ 1015 | ||lidsaich.net^ 1016 | ||lifesight.io^ 1017 | ||lightboxapi.azurewebsites.net^ 1018 | ||lijit.com^ 1019 | ||likr.com.tw^ 1020 | ||limurol.com^ 1021 | ||line-apps.com^ 1022 | ||line.me^ 1023 | ||linkedin.com^ 1024 | ||linkmake.in^ 1025 | ||linksynergy.com^ 1026 | ||liquidus.net^ 1027 | ||listrakbi.com^ 1028 | ||litix.io^ 1029 | ||littlecutecats.com^ 1030 | ||live.primis.tech^ 1031 | ||livechat-files.com^ 1032 | ||livedoor.com^ 1033 | ||livedoor.jp^ 1034 | ||livedoor.net^ 1035 | ||livejasmin.com^ 1036 | ||livetex.ru^ 1037 | ||lizebruisiaculi.info^ 1038 | ||lkqd.net^ 1039 | ||lmadps.jp^ 1040 | ||loadercdn.net^ 1041 | ||localnewslab.io^ 1042 | ||lockerdome.com^ 1043 | ||loggly.com^ 1044 | ||logly.co.jp^ 1045 | ||longingtrees.com^ 1046 | ||loopme.me^ 1047 | ||lotlinx.com^ 1048 | ||lovelydrum.com^ 1049 | ||lrqvmaverkqzn.top^ 1050 | ||lunamedia.live^ 1051 | ||lura.live^ 1052 | ||lwadm.com^ 1053 | ||lwonclbench.com^ 1054 | ||lytics.io^ 1055 | ||m.stripe.com^ 1056 | ||m0mentum.net^ 1057 | ||m6r.eu^ 1058 | ||macromill.com^ 1059 | ||magnetmail.net^ 1060 | ||magnitent.com^ 1061 | ||magsrv.com^ 1062 | ||mail.ru^ 1063 | ||maillist-manage.com^ 1064 | ||maillist-manage.eu^ 1065 | ||mapixl.com^ 1066 | ||marketingautomation.services^ 1067 | ||marketingcloudfx.com^ 1068 | ||marketiq.com^ 1069 | ||marketlinc.com^ 1070 | ||marktplaats.net^ 1071 | ||marsflag.com^ 1072 | ||mateti.net^ 1073 | ||matheranalytics.com^ 1074 | ||mathtag.com^ 1075 | ||matomo.cloud^ 1076 | ||maxfullad.com^ 1077 | ||maxmind.com^ 1078 | ||mbdippex.com^ 1079 | ||mbidadm.com^ 1080 | ||mc.yandex.ru^ 1081 | ||mczbf.com^ 1082 | ||mdhv.io^ 1083 | ||mdstrm.com^ 1084 | ||meba.kr^ 1085 | ||media.net^ 1086 | ||media6degrees.com^ 1087 | ||mediaad.org^ 1088 | ||mediacategory.com^ 1089 | ||mediacorp.sg^ 1090 | ||mediafuse.com^ 1091 | ||mediago.io^ 1092 | ||mediamathrdrt.com^ 1093 | ||mediaplex.com^ 1094 | ||mediarithmics.com^ 1095 | ||mediasquare.fr^ 1096 | ||mediatoday.ru^ 1097 | ||mediav.com^ 1098 | ||mediavine.com^ 1099 | ||mediawallahscript.com^ 1100 | ||mediaweaver.jp^ 1101 | ||medium.com^ 1102 | ||medtargetsystem.com^ 1103 | ||melia.com^ 1104 | ||memoinsights.com^ 1105 | ||mercadolibre.com^ 1106 | ||mercadopago.com^ 1107 | ||merchant-center-analytics.goog^ 1108 | ||meritpages.com^ 1109 | ||metadsp.co.uk^ 1110 | ||metricswpsh.com^ 1111 | ||mfadsrvr.com^ 1112 | ||mg2insights.com^ 1113 | ||mgid.com^ 1114 | ||mgln.ai^ 1115 | ||miaozhen.com^ 1116 | ||micpn.com^ 1117 | ||microad.jp^ 1118 | ||microadinc.com^ 1119 | ||microsoft.com^ 1120 | ||midserved.com^ 1121 | ||mindbox.ru^ 1122 | ||minutemediaservices.com^ 1123 | ||miqcommerce.com^ 1124 | ||mircheigeshoa.com^ 1125 | ||missena.io^ 1126 | ||mixi.media^ 1127 | ||mixpanel.com^ 1128 | ||mixpo.com^ 1129 | ||mktoresp.com^ 1130 | ||mktoweb.com^ 1131 | ||ml-api.io^ 1132 | ||ml314.com^ 1133 | ||mlsat02.de^ 1134 | ||mmstat.com^ 1135 | ||mnaspm.com^ 1136 | ||moatads.com^ 1137 | ||moatpixel.com^ 1138 | ||mobfox.com^ 1139 | ||mobkoi.com^ 1140 | ||mobon.net^ 1141 | ||mobwithad.com^ 1142 | ||moe.video^ 1143 | ||moengage.com^ 1144 | ||moleculeservices.net^ 1145 | ||monetate.net^ 1146 | ||money.hu^ 1147 | ||monsido.com^ 1148 | ||monu.delivery^ 1149 | ||mookie1.com^ 1150 | ||moorshoes.com^ 1151 | ||mopinion.com^ 1152 | ||mos.ru^ 1153 | ||motu-teamblue.services^ 1154 | ||mountain.com^ 1155 | ||moviead55.ru^ 1156 | ||mox.tv^ 1157 | ||mparticle.com^ 1158 | ||mpartner.digital^ 1159 | ||mpeasylink.com^ 1160 | ||mpio.io^ 1161 | ||mpod.ch^ 1162 | ||mrmserve.com^ 1163 | ||mts.ru^ 1164 | ||multstorage.com^ 1165 | ||mxptint.net^ 1166 | ||my.games^ 1167 | ||myaerotel.com^ 1168 | ||myfinance.com^ 1169 | ||mypurecloud.com.au^ 1170 | ||mypurecloud.de^ 1171 | ||najva.com^ 1172 | ||nakamasweb.com^ 1173 | ||nakanohito.jp^ 1174 | ||nanda.vn^ 1175 | ||narrativ.com^ 1176 | ||narrative.io^ 1177 | ||nate.com^ 1178 | ||nativendo.de^ 1179 | ||navchain.com^ 1180 | ||navdmp.com^ 1181 | ||naver.com^ 1182 | ||nbcuas.com^ 1183 | ||nc0.co^ 1184 | ||nebula-cdn.kampyle.com^ 1185 | ||netmng.com^ 1186 | ||networksolutions.com^ 1187 | ||new-programmatic.com^ 1188 | ||newrelic.com^ 1189 | ||news.google.com^ 1190 | ||newscgp.com^ 1191 | ||newsmaxwidget.com^ 1192 | ||newspassid.com^ 1193 | ||newsquestdigital.co.uk^ 1194 | ||newsradar.ro^ 1195 | ||newsroom.bi^ 1196 | ||nextdoor.com^ 1197 | ||nextmillmedia.com^ 1198 | ||nexx360.io^ 1199 | ||niceincontact.com^ 1200 | ||nielsen.com^ 1201 | ||ninthdecimal.com^ 1202 | ||nitropay.com^ 1203 | ||nmo-ep.nl^ 1204 | ||nmrodam.com^ 1205 | ||nodserving.com^ 1206 | ||nomorepecans.com^ 1207 | ||norstatsurveys.com^ 1208 | ||notifyvisitors.com^ 1209 | ||notix.io^ 1210 | ||nr-data.net^ 1211 | ||nrich.ai^ 1212 | ||ns1p.net^ 1213 | ||nsaudience.pl^ 1214 | ||ntmastsault.info^ 1215 | ||nuance.com^ 1216 | ||nui.media^ 1217 | ||nv7s.com^ 1218 | ||nwwais.com^ 1219 | ||nypost.com^ 1220 | ||nytrng.com^ 1221 | ||o1150082.ingest.sentry.io^ 1222 | ||o2u.jp^ 1223 | ||o333o.com^ 1224 | ||o418887.ingest.sentry.io^ 1225 | ||ocmhood.com^ 1226 | ||octopuspop.com^ 1227 | ||oddsserve.com^ 1228 | ||officeworks.com.au.ssl.sc.omtrdc.net^ 1229 | ||offshuppetchan.com^ 1230 | ||oftads360.com^ 1231 | ||oftheseveryh.org^ 1232 | ||ohmy.bid^ 1233 | ||ojrq.net^ 1234 | ||ok.ru^ 1235 | ||okkzimcaxw.com^ 1236 | ||omguk.com^ 1237 | ||omniconvert.com^ 1238 | ||omnitagjs.com^ 1239 | ||omnitrend.biz^ 1240 | ||omouswoma.info^ 1241 | ||omtrdc.net^ 1242 | ||onaudience.com^ 1243 | ||ondacero.es^ 1244 | ||onef.pro^ 1245 | ||oneindia.com^ 1246 | ||onelink.me^ 1247 | ||onesdata.com^ 1248 | ||onesignal.com^ 1249 | ||onet.pl^ 1250 | ||onetag-sys.com^ 1251 | ||onevision.com.tw^ 1252 | ||onezapp.com^ 1253 | ||online-metrix.net^ 1254 | ||onthe.io^ 1255 | ||opamarketplace.com^ 1256 | ||opecloud.com^ 1257 | ||open.spotify.com^ 1258 | ||openfpcdn.io^ 1259 | ||openx.net^ 1260 | ||opera.com^ 1261 | ||opinionstage.com^ 1262 | ||opoxv.com^ 1263 | ||optable.co^ 1264 | ||optidigital.com^ 1265 | ||optimizely.com^ 1266 | ||optimove.net^ 1267 | ||optnx.com^ 1268 | ||oracleinfinity.io^ 1269 | ||orangeclickmedia.com^ 1270 | ||orbsrv.com^ 1271 | ||osano.com^ 1272 | ||ossmightyenar.net^ 1273 | ||otm-r.com^ 1274 | ||otto.de^ 1275 | ||outbrain.com^ 1276 | ||outbrainimg.com^ 1277 | ||oval.id^ 1278 | ||owneriq.net^ 1279 | ||ownpage.fr^ 1280 | ||owox.com^ 1281 | ||owrkwilxbw.com^ 1282 | ||p.cpx.to^ 1283 | ||p.flipp.com^ 1284 | ||p.typekit.net^ 1285 | ||p2r14.com^ 1286 | ||p7cloud.net^ 1287 | ||pa-cd.com^ 1288 | ||pagead2.googlesyndication.com^ 1289 | ||pages02.net^ 1290 | ||pages03.net^ 1291 | ||pages05.net^ 1292 | ||pagesense.io^ 1293 | ||pangle-ads.com^ 1294 | ||pangleglobal.com^ 1295 | ||paradocs.ru^ 1296 | ||pardot.com^ 1297 | ||parsely.com^ 1298 | ||pathfactory.com^ 1299 | ||pbbl.co^ 1300 | ||pbstck.com^ 1301 | ||peer-39.com^ 1302 | ||pemsrv.com^ 1303 | ||percycle.com^ 1304 | ||performax.cz^ 1305 | ||permutive.app^ 1306 | ||permutive.com^ 1307 | ||personaclick.com^ 1308 | ||petametrics.com^ 1309 | ||pgammedia.com^ 1310 | ||pgs.io^ 1311 | ||phoenix-widget.com^ 1312 | ||photorank.me^ 1313 | ||phywi.org^ 1314 | ||pinterest.com^ 1315 | ||pippio.com^ 1316 | ||piwik.pro^ 1317 | ||pix.pub^ 1318 | ||pixad.com.tr^ 1319 | ||pixfuture.com^ 1320 | ||pixlee.co^ 1321 | ||pixlee.com^ 1322 | ||pixsrvcs.com^ 1323 | ||placed.com^ 1324 | ||planetvids.online^ 1325 | ||planetvids.space^ 1326 | ||platform.bidgear.com^ 1327 | ||platform.linkedin.com^ 1328 | ||platform.twitter.com^ 1329 | ||play.google.com^ 1330 | ||player.bilibili.com^ 1331 | ||player.captivate.fm^ 1332 | ||playground.xyz^ 1333 | ||playstream.media^ 1334 | ||playwire.com^ 1335 | ||pm-serv.co^ 1336 | ||pmweb.com.br^ 1337 | ||pnstat.com^ 1338 | ||podcasters.spotify.com^ 1339 | ||podscribe.com^ 1340 | ||pogothere.xyz^ 1341 | ||pointmediatracker.com^ 1342 | ||polskapress.pl^ 1343 | ||poool.fr^ 1344 | ||popin.cc^ 1345 | ||popt.in^ 1346 | ||poptok.com^ 1347 | ||pornhub.com^ 1348 | ||pornid.xxx^ 1349 | ||positive-ads.com^ 1350 | ||post-endpoint-zypaalk44a-an.a.run.app^ 1351 | ||postaffiliatepro.com^ 1352 | ||posthog.com^ 1353 | ||postrelease.com^ 1354 | ||potskolu.net^ 1355 | ||powerad.ai^ 1356 | ||poweredby.jads.co^ 1357 | ||prdredir.com^ 1358 | ||predatasrv.com^ 1359 | ||presage.io^ 1360 | ||prfct.co^ 1361 | ||primecaster.net^ 1362 | ||primis.tech^ 1363 | ||principledecliner.info^ 1364 | ||privacy-center.org^ 1365 | ||privacy-mgmt.com^ 1366 | ||privatedqualizebrui.info^ 1367 | ||pro-market.net^ 1368 | ||prod-dfm-proxy-connext.azurewebsites.net^ 1369 | ||prodmp.ru^ 1370 | ||professionalswebcheck.com^ 1371 | ||programattik.com^ 1372 | ||project1service.com^ 1373 | ||prometeo-media-service.com^ 1374 | ||proper.io^ 1375 | ||props.id^ 1376 | ||protecmedia.com^ 1377 | ||protoawegw.com^ 1378 | ||prsrvy.com^ 1379 | ||psplugin.com^ 1380 | ||pswec.com^ 1381 | ||pt.wmptcd.com^ 1382 | ||pub.network^ 1383 | ||pubguru.net^ 1384 | ||pubmaner5.com^ 1385 | ||pubmatic.com^ 1386 | ||pubmine.com^ 1387 | ||pubnation.com^ 1388 | ||pubtech.ai^ 1389 | ||pubwise.io^ 1390 | ||pulsembed.eu^ 1391 | ||punchmedia.ru^ 1392 | ||purechat.com^ 1393 | ||purpleads.io^ 1394 | ||push-sdk.com^ 1395 | ||push-sdk.net^ 1396 | ||pushnami.com^ 1397 | ||pushwoosh.com^ 1398 | ||pvdpix.com^ 1399 | ||px-cdn.net^ 1400 | ||px-cloud.net^ 1401 | ||pxaction.com^ 1402 | ||pxchk.net^ 1403 | ||pxf.io^ 1404 | ||pymx5.com^ 1405 | ||q2s15.com^ 1406 | ||qcloud.com^ 1407 | ||qiota.com^ 1408 | ||qiyukf.com^ 1409 | ||qlitics.com^ 1410 | ||qortex.ai^ 1411 | ||qq.com^ 1412 | ||qualtrics.com^ 1413 | ||quantcast.com^ 1414 | ||quantserve.com^ 1415 | ||quantumdex.io^ 1416 | ||quantumgraph.com^ 1417 | ||quantummetric.com^ 1418 | ||quiq-api.com^ 1419 | ||quora.com^ 1420 | ||quotidiano.net^ 1421 | ||qvdt3feo.com^ 1422 | ||qvig.net^ 1423 | ||qvol.tv^ 1424 | ||r-ad.ne.jp^ 1425 | ||r2b2.cz^ 1426 | ||r7.com^ 1427 | ||radioonlinehd.net^ 1428 | ||rahmalcwolf.com^ 1429 | ||rakuten.co.jp^ 1430 | ||rakuten.com^ 1431 | ||rambler.ru^ 1432 | ||raspcs.pl^ 1433 | ||rat.xxx^ 1434 | ||ravenjs.com^ 1435 | ||rbnt.org^ 1436 | ||rcvlink.com^ 1437 | ||rdcdn.com^ 1438 | ||rdstation.com.br^ 1439 | ||rdtk.io^ 1440 | ||reactful.com^ 1441 | ||realclick.co.kr^ 1442 | ||realestate.com.au^ 1443 | ||realsrv.com^ 1444 | ||realtor.com^ 1445 | ||reamaze.io^ 1446 | ||rebelmouse.io^ 1447 | ||reddit.com^ 1448 | ||redintelligence.net^ 1449 | ||reemo-ad.jp^ 1450 | ||referralrock.com^ 1451 | ||reichelcormier.bid^ 1452 | ||relaido.jp^ 1453 | ||relap.io^ 1454 | ||relay.cool^ 1455 | ||relevant-digital.com^ 1456 | ||remixd.com^ 1457 | ||rentracks.jp^ 1458 | ||requestmetrics.com^ 1459 | ||rerpartmentm.info^ 1460 | ||resetdigital.co^ 1461 | ||resetsrv.com^ 1462 | ||reson8.com^ 1463 | ||responservbzh.icu^ 1464 | ||responsiveads.com^ 1465 | ||retailrocket.ru^ 1466 | ||retargetly.com^ 1467 | ||revcontent.com^ 1468 | ||revid.my^ 1469 | ||revive-adserver.net^ 1470 | ||revjet.com^ 1471 | ||rezync.com^ 1472 | ||rfihub.com^ 1473 | ||riamiavid.com^ 1474 | ||richaudience.com^ 1475 | ||richrelevance.com^ 1476 | ||riotgames.com^ 1477 | ||riskified.com^ 1478 | ||rkdms.com^ 1479 | ||rkgwzfwjgk.com^ 1480 | ||rlcdn.com^ 1481 | ||rlets.com^ 1482 | ||rndskittytor.com^ 1483 | ||rnengage.com^ 1484 | ||robee.tech^ 1485 | ||roeye.com^ 1486 | ||roimediaconsultants.com^ 1487 | ||rokt.com^ 1488 | ||ropeanresu.com^ 1489 | ||route-fifty.com^ 1490 | ||roymorgan.com^ 1491 | ||rqtrk.eu^ 1492 | ||rsz.sk^ 1493 | ||rtb.mx^ 1494 | ||rtbsuperhub.com^ 1495 | ||rtbsystem.com^ 1496 | ||rtmark.net^ 1497 | ||rubiconproject.com^ 1498 | ||rudo.video^ 1499 | ||rumble.com^ 1500 | ||rumiview.com^ 1501 | ||run-syndicate.com^ 1502 | ||runative-syndicate.com^ 1503 | ||rutarget.ru^ 1504 | ||rutube.ru^ 1505 | ||rvapps.io^ 1506 | ||rxeosevsso.com^ 1507 | ||s-onetag.com^ 1508 | ||s.adroll.com^ 1509 | ||s4mdsp.com^ 1510 | ||s4p.jp^ 1511 | ||s7.addthis.com^ 1512 | ||saambaa.com^ 1513 | ||saasexch.com^ 1514 | ||sabavision.com^ 1515 | ||safeopt.com^ 1516 | ||sailplay.net^ 1517 | ||salecycle.com^ 1518 | ||salesforce-sites.com^ 1519 | ||salesforce.com^ 1520 | ||salesloft.com^ 1521 | ||salesmanago.com^ 1522 | ||salesmanago.pl^ 1523 | ||samba.tv^ 1524 | ||samplicio.us^ 1525 | ||sanjagh.com^ 1526 | ||sape.ru^ 1527 | ||sascdn.com^ 1528 | ||satisfycork.com^ 1529 | ||sberbank.ru^ 1530 | ||sbermarketing.ru^ 1531 | ||sc-static.net^ 1532 | ||scarabresearch.com^ 1533 | ||scatec.io^ 1534 | ||schwab.com^ 1535 | ||scissorsstatement.com^ 1536 | ||scorecardresearch.com^ 1537 | ||scorestream.com^ 1538 | ||scupio.com^ 1539 | ||sddan.com^ 1540 | ||sdk.apester.com^ 1541 | ||seadform.net^ 1542 | ||secure-ds.serving-sys.com^ 1543 | ||secure.adnxs.com^ 1544 | ||secureaddisplay.com^ 1545 | ||securedvisit.com^ 1546 | ||secureprivacy.ai^ 1547 | ||seedtag.com^ 1548 | ||seg.ad.gt^ 1549 | ||segment.com^ 1550 | ||segmentstream.com^ 1551 | ||segreencolumn.com^ 1552 | ||selectmedia.asia^ 1553 | ||semantiqo.com^ 1554 | ||semasio.net^ 1555 | ||sendtonews.com^ 1556 | ||sensic.net^ 1557 | ||sensorsdata.cn^ 1558 | ||sentry.io^ 1559 | ||seroundprince.com^ 1560 | ||servebom.com^ 1561 | ||servenobid.com^ 1562 | ||serverbid.com^ 1563 | ||serving-sys.com^ 1564 | ||setupad.net^ 1565 | ||sexad.net^ 1566 | ||sexfortokens.com^ 1567 | ||sexvid.xxx^ 1568 | ||seznam.cz^ 1569 | ||shabby-constant.com^ 1570 | ||shareaholic.com^ 1571 | ||sharechat.com^ 1572 | ||sharethis.com^ 1573 | ||sharethrough.com^ 1574 | ||sharethru.com^ 1575 | ||shb-sync.com^ 1576 | ||shinobi.jp^ 1577 | ||shinystat.com^ 1578 | ||shop.app^ 1579 | ||shop.pe^ 1580 | ||shopnetic.com^ 1581 | ||show.co^ 1582 | ||shukriya90.com^ 1583 | ||sibautomation.com^ 1584 | ||sided.co^ 1585 | ||sift.com^ 1586 | ||siftscience.com^ 1587 | ||sigmaaldrich.com^ 1588 | ||signalfx.com^ 1589 | ||signifyd.com^ 1590 | ||silktide.com^ 1591 | ||simpleanalyticscdn.com^ 1592 | ||simpli.fi^ 1593 | ||singular.net^ 1594 | ||sinoptik.ua^ 1595 | ||site.com^ 1596 | ||site24x7rum.com^ 1597 | ||site24x7rum.eu^ 1598 | ||siteimproveanalytics.io^ 1599 | ||sitescout.com^ 1600 | ||sjv.io^ 1601 | ||skcrtxr.com^ 1602 | ||skplanet.com^ 1603 | ||sleeknote.com^ 1604 | ||slgnt.eu^ 1605 | ||slgnt.us^ 1606 | ||smaato.net^ 1607 | ||smadex.com^ 1608 | ||smart-bdash.com^ 1609 | ||smart-id.ca^ 1610 | ||smartadserver.com^ 1611 | ||smartclip.net^ 1612 | ||smartlook.cloud^ 1613 | ||smartnews-ads.com^ 1614 | ||smartp.com^ 1615 | ||smartytech.io^ 1616 | ||smct.io^ 1617 | ||smi2.net^ 1618 | ||smi2.ru^ 1619 | ||smiirl.com^ 1620 | ||smilewanted.com^ 1621 | ||smn.rs^ 1622 | ||smrt.as^ 1623 | ||smrtb.com^ 1624 | ||snackly.co^ 1625 | ||snap.licdn.com^ 1626 | ||snapchat.com^ 1627 | ||snapwidget.com^ 1628 | ||snigelweb.com^ 1629 | ||snitcher.com^ 1630 | ||snplow.net^ 1631 | ||snrbox.com^ 1632 | ||snssdk.com^ 1633 | ||so.com^ 1634 | ||sobot.com^ 1635 | ||socdm.com^ 1636 | ||soflopxl.com^ 1637 | ||sojern.com^ 1638 | ||solta.io^ 1639 | ||sonobi.com^ 1640 | ||soumehoo.net^ 1641 | ||soundcloud.com^ 1642 | ||sp-trk.com^ 1643 | ||sparkloop.app^ 1644 | ||sparrow.ru^ 1645 | ||sparteo.com^ 1646 | ||speakol.com^ 1647 | ||speed-kit.de^ 1648 | ||speedcurve.com^ 1649 | ||speee-ad.jp^ 1650 | ||sphlabs.com^ 1651 | ||spiceworks.com^ 1652 | ||split.io^ 1653 | ||spolecznosci.net^ 1654 | ||sportradar.com^ 1655 | ||sportradarserving.com^ 1656 | ||spotify.com^ 1657 | ||spotim.market^ 1658 | ||sprig.com^ 1659 | ||springserve.com^ 1660 | ||sprocket.bz^ 1661 | ||sputniknews.com^ 1662 | ||srvsynd.com^ 1663 | ||ssindserving.com^ 1664 | ||stackadapt.com^ 1665 | ||stackla.com^ 1666 | ||stacksocial.com^ 1667 | ||stake.us^ 1668 | ||stat-rock.com^ 1669 | ||stat.media^ 1670 | ||statcounter.com^ 1671 | ||static.apester.com^ 1672 | ||static.cloudflareinsights.com^ 1673 | ||static.doubleclick.net^ 1674 | ||static.hotjar.com^ 1675 | ||stats.wp.com^ 1676 | ||statsigapi.net^ 1677 | ||steelhousemedia.com^ 1678 | ||steepto.com^ 1679 | ||stickyadstv.com^ 1680 | ||stoic-media.com^ 1681 | ||store4porn.com^ 1682 | ||storygize.net^ 1683 | ||streamable.com^ 1684 | ||streampsh.top^ 1685 | ||stripcash.com^ 1686 | ||stripchat.com^ 1687 | ||stripchat.global^ 1688 | ||stripchat.ooo^ 1689 | ||stripe.com^ 1690 | ||stripe.network^ 1691 | ||strp.chat^ 1692 | ||strpst.com^ 1693 | ||summerhamster.com^ 1694 | ||sumo.com^ 1695 | ||sumologic.com^ 1696 | ||sundaysky.com^ 1697 | ||sunmedia.tv^ 1698 | ||suntcontent.se^ 1699 | ||superchat.live^ 1700 | ||superchatlive.com^ 1701 | ||superpinkday.com^ 1702 | ||supplyframe.com^ 1703 | ||surfcountor.com^ 1704 | ||survicate.com^ 1705 | ||svk-native.ru^ 1706 | ||svtrd.com^ 1707 | ||swinburne.edu.au^ 1708 | ||syndication.realsrv.com^ 1709 | ||syndication.twitter.com^ 1710 | ||system-notify.app^ 1711 | ||syteapi.com^ 1712 | ||t-x.io^ 1713 | ||t.co^ 1714 | ||t.seedtag.com^ 1715 | ||t13.io^ 1716 | ||taboola.com^ 1717 | ||tagan.adlightning.com^ 1718 | ||tagboard.com^ 1719 | ||tagcommander.com^ 1720 | ||tagdelivery.com^ 1721 | ||tailtarget.com^ 1722 | ||takingbackjuly.com^ 1723 | ||tamedia.com.tw^ 1724 | ||tamedia.link^ 1725 | ||tamgrt.com^ 1726 | ||tangooserver.com^ 1727 | ||tapad.com^ 1728 | ||tapioni.com^ 1729 | ||tappx.com^ 1730 | ||taptapnetworks.com^ 1731 | ||tat3ayogh6.com^ 1732 | ||tavoos.net^ 1733 | ||taxel.jp^ 1734 | ||tctm.co^ 1735 | ||tda.link^ 1736 | ||teads.tv^ 1737 | ||tealiumiq.com^ 1738 | ||teamblue.services^ 1739 | ||techlab-cdn.com^ 1740 | ||technical-service.net^ 1741 | ||technolutions.net^ 1742 | ||technoratimedia.com^ 1743 | ||techpump.com^ 1744 | ||techtarget.com^ 1745 | ||telekom.de^ 1746 | ||tend-table.com^ 1747 | ||terminus.services^ 1748 | ||termly.io^ 1749 | ||tesseradigital.com^ 1750 | ||the-ozone-project.com^ 1751 | ||theadex.com^ 1752 | ||thebrighttag.com^ 1753 | ||thehut.net^ 1754 | ||thejobnetwork.com^ 1755 | ||thelead.tech^ 1756 | ||thepointyspritesclub.com^ 1757 | ||theweathernetwork.com^ 1758 | ||thisgreencolumn.com^ 1759 | ||thisisdax.com^ 1760 | ||threetruck.com^ 1761 | ||thrtle.com^ 1762 | ||thunderhead.com^ 1763 | ||tiktok.com^ 1764 | ||tiktokcdn-us.com^ 1765 | ||tiktokv.com^ 1766 | ||tiktokv.us^ 1767 | ||tingyun.com^ 1768 | ||tinkoff.ru^ 1769 | ||tinymce.com^ 1770 | ||tldw.me^ 1771 | ||tns-counter.ru^ 1772 | ||tns-cs.net^ 1773 | ||tns-ua.com^ 1774 | ||toast.com^ 1775 | ||tobsnssdk.com^ 1776 | ||tokopedia.com^ 1777 | ||tomi.ai^ 1778 | ||top100.ru^ 1779 | ||topsexmovs.com^ 1780 | ||tp88trk.com^ 1781 | ||tpmn.co.kr^ 1782 | ||track-mixer.ru^ 1783 | ||track-selectmedia.com^ 1784 | ||trackeame.com^ 1785 | ||trackedweb.net^ 1786 | ||trackersimulator.org^ 1787 | ||trackjs.com^ 1788 | ||trackpush.com^ 1789 | ||tracksing.com^ 1790 | ||trackwilltrk.com^ 1791 | ||tradedoubler.com^ 1792 | ||tradertimerz.media^ 1793 | ||tradingview-widget.com^ 1794 | ||trafficbass.com^ 1795 | ||trafficdok.com^ 1796 | ||trafficfactory.biz^ 1797 | ||trafficguard.ai^ 1798 | ||traffichaus.com^ 1799 | ||traffichunt.com^ 1800 | ||trafficjunky.com^ 1801 | ||trafficjunky.net^ 1802 | ||trafmag.com^ 1803 | ||transcend.io^ 1804 | ||travelaudience.com^ 1805 | ||traversedlp.com^ 1806 | ||treasuredata.com^ 1807 | ||tremorhub.com^ 1808 | ||trendedsegged.com^ 1809 | ||trendemon.com^ 1810 | ||trendmd.com^ 1811 | ||trex.media^ 1812 | ||tribalfusion.com^ 1813 | ||tribl.io^ 1814 | ||trinitymedia.ai^ 1815 | ||tripadvisor.com^ 1816 | ||trkn.us^ 1817 | ||truehits.in.th^ 1818 | ||truepush.com^ 1819 | ||trumarkmedia.com^ 1820 | ||truoptik.com^ 1821 | ||trustcommander.net^ 1822 | ||trustedsite.com^ 1823 | ||trustwave.com^ 1824 | ||truvidplayer.com^ 1825 | ||trvdp.com^ 1826 | ||trvl-px.com^ 1827 | ||trwl1.com^ 1828 | ||tsdtocl.com^ 1829 | ||tsyndicate.com^ 1830 | ||ttwstatic.com^ 1831 | ||tubecorp.com^ 1832 | ||tunefindforfans.com^ 1833 | ||turbotargeting.io^ 1834 | ||turn.com^ 1835 | ||tvpixel.com^ 1836 | ||tvspix.com^ 1837 | ||tvsquared.com^ 1838 | ||twinrdack.com^ 1839 | ||twinrdsrv.com^ 1840 | ||twinrdsyte.com^ 1841 | ||twitter.com^ 1842 | ||twrencesprin.info^ 1843 | ||tynt.com^ 1844 | ||typekit.net^ 1845 | ||u9axpzf50.com^ 1846 | ||ubembed.com^ 1847 | ||uciservice.com^ 1848 | ||udesk.cn^ 1849 | ||udmserve.net^ 1850 | ||uidsync.net^ 1851 | ||uk-script.dotmetrics.net^ 1852 | ||ulinq.asia^ 1853 | ||uma.media^ 1854 | ||umh.ua^ 1855 | ||unblockia.com^ 1856 | ||unbxdapi.com^ 1857 | ||uncn.jp^ 1858 | ||undertone.com^ 1859 | ||uni1id.com^ 1860 | ||unian.net^ 1861 | ||unrulymedia.com^ 1862 | ||unrulyvideo.com^ 1863 | ||uol.com.br^ 1864 | ||upravel.com^ 1865 | ||upremium.asia^ 1866 | ||upscore.com^ 1867 | ||uptrendsdata.com^ 1868 | ||urekamedia.com^ 1869 | ||us-central1-kube-ownlocal.cloudfunctions.net^ 1870 | ||usablenet.com^ 1871 | ||usage.trackjs.com^ 1872 | ||usbank.com^ 1873 | ||usbrowserspeed.com^ 1874 | ||useinsider.com^ 1875 | ||userback.io^ 1876 | ||usergram.info^ 1877 | ||userreport.com^ 1878 | ||uservoice.com^ 1879 | ||userway.org^ 1880 | ||usestoryteller.com^ 1881 | ||usjbwvtqwv.com^ 1882 | ||usonar.jp^ 1883 | ||utraff.com^ 1884 | ||uuidksinc.net^ 1885 | ||uxfeedback.ru^ 1886 | ||uxtweak.com^ 1887 | ||valuecommerce.com^ 1888 | ||vb17123filippaaniketos.pw^ 1889 | ||vdo.ai^ 1890 | ||vendemore.com^ 1891 | ||vercel-analytics.com^ 1892 | ||vercel-insights.com^ 1893 | ||vergic.com^ 1894 | ||veryn1ce.com^ 1895 | ||vfghe.com^ 1896 | ||viadata.store^ 1897 | ||viavideo.digital^ 1898 | ||vic-m.co^ 1899 | ||vidazoo.com^ 1900 | ||vidcrunch.com^ 1901 | ||videoamp.com^ 1902 | ||videobaba.xyz^ 1903 | ||videobyte.com^ 1904 | ||videonow.ru^ 1905 | ||videoscdn.online^ 1906 | ||videostep.com^ 1907 | ||vidgyor.com^ 1908 | ||vidio.com^ 1909 | ||vidoomy.com^ 1910 | ||vidora.com^ 1911 | ||vidver.to^ 1912 | ||vidverto.io^ 1913 | ||viewdeos.com^ 1914 | ||vihub.ru^ 1915 | ||vindicosuite.com^ 1916 | ||viously.com^ 1917 | ||viqeo.tv^ 1918 | ||viralize.tv^ 1919 | ||virgul.com^ 1920 | ||visilabs.net^ 1921 | ||visitor-analytics.io^ 1922 | ||visitorqueue.com^ 1923 | ||visualdna.com^ 1924 | ||visualstudio.com^ 1925 | ||visualwebsiteoptimizer.com^ 1926 | ||visx.net^ 1927 | ||vivaclix.com^ 1928 | ||vk-portal.net^ 1929 | ||vk.com^ 1930 | ||vlitag.com^ 1931 | ||vodunkand.com^ 1932 | ||vodus.com^ 1933 | ||vodus.my^ 1934 | ||volatilevessel.com^ 1935 | ||voxus.tv^ 1936 | ||vr-tb.com^ 1937 | ||vrtcal.com^ 1938 | ||vtex.com^ 1939 | ||vuukle.com^ 1940 | ||vuukle.net^ 1941 | ||vzew.net^ 1942 | ||w.soundcloud.com^ 1943 | ||w4m.rs^ 1944 | ||w55c.net^ 1945 | ||walkme.com^ 1946 | ||walls.io^ 1947 | ||wayfair.com^ 1948 | ||wb4.xyz^ 1949 | ||wcfbc.net^ 1950 | ||wdsvc.net^ 1951 | ||webantenna.info^ 1952 | ||webengage.co^ 1953 | ||webengage.com^ 1954 | ||webeyez.com^ 1955 | ||weborama.design^ 1956 | ||weborama.fr^ 1957 | ||webpush.jp^ 1958 | ||webstats1.com^ 1959 | ||webterren.com^ 1960 | ||webtracker.jp^ 1961 | ||webtrafficsource.com^ 1962 | ||webtrekk.net^ 1963 | ||webtrends-optimize.com^ 1964 | ||webvisor.org^ 1965 | ||webvitalize.io^ 1966 | ||weekli.de^ 1967 | ||weglot.com^ 1968 | ||wemass.io^ 1969 | ||whitearulo.com^ 1970 | ||whitesaas.com^ 1971 | ||whoursie.com^ 1972 | ||wi-fi.ru^ 1973 | ||widerplanet.com^ 1974 | ||wisepops.com^ 1975 | ||wishjus.com^ 1976 | ||wisokykulas.bid^ 1977 | ||wizaly.com^ 1978 | ||wknd.ai^ 1979 | ||wmcdp.io^ 1980 | ||wmptcd.com^ 1981 | ||woopra.com^ 1982 | ||woorank.com^ 1983 | ||worldshopping.jp^ 1984 | ||wp.com^ 1985 | ||wp.pl^ 1986 | ||wpadmngr.com^ 1987 | ||wpmudev.com^ 1988 | ||wrufer.com^ 1989 | ||wsod.com^ 1990 | ||wt-eu02.net^ 1991 | ||wuzbhjpvsf.com^ 1992 | ||www.aparat.com^ 1993 | ||www.bitchute.com^ 1994 | ||www.clarity.ms^ 1995 | ||www.facebook.com^ 1996 | ||www.iheart.com^ 1997 | ||www.rutube.ru^ 1998 | ||www.statcounter.com^ 1999 | ||www.tiktok.com^ 2000 | ||wysistat.com^ 2001 | ||x7r3mk6ldr.com^ 2002 | ||xad.com^ 2003 | ||xdiwbc.com^ 2004 | ||xg4ken.com^ 2005 | ||xham.live^ 2006 | ||xhamsterlive.com^ 2007 | ||xhlive.cam^ 2008 | ||xiti.com^ 2009 | ||xliirdr.com^ 2010 | ||xlirdr.com^ 2011 | ||xlivesex.com^ 2012 | ||xlivrdr.com^ 2013 | ||xlrdr.com^ 2014 | ||xlviiirdr.com^ 2015 | ||xlviirdr.com^ 2016 | ||xm.com^ 2017 | ||xplosion.de^ 2018 | ||xtremepush.com^ 2019 | ||xxxivjmp.com^ 2020 | ||xxxjmp.com^ 2021 | ||xxxviiijmp.com^ 2022 | ||xxxviijmp.com^ 2023 | ||xxxvjmp.com^ 2024 | ||yadro.ru^ 2025 | ||yahoo.co.jp^ 2026 | ||yahoo.com^ 2027 | ||yandex.az^ 2028 | ||yandex.by^ 2029 | ||yandex.com^ 2030 | ||yandex.com.tr^ 2031 | ||yandex.kz^ 2032 | ||yandex.md^ 2033 | ||yandex.net^ 2034 | ||yandex.ru^ 2035 | ||yandex.uz^ 2036 | ||ybs2ffs7v.com^ 2037 | ||yektanet.com^ 2038 | ||yext-pixel.com^ 2039 | ||yieldlab.net^ 2040 | ||yieldlift.com^ 2041 | ||yieldmo.com^ 2042 | ||yieldoptimizer.com^ 2043 | ||yomedia.vn^ 2044 | ||yottaa-network.net^ 2045 | ||youniverse.id^ 2046 | ||youradexchange.com^ 2047 | ||youvisit.com^ 2048 | ||yunaq.com^ 2049 | ||zaius.com^ 2050 | ||zalo.me^ 2051 | ||zatnoh.com^ 2052 | ||zblkqa.com^ 2053 | ||zdbb.net^ 2054 | ||zemanta.com^ 2055 | ||zenimpact.io^ 2056 | ||zeotap.com^ 2057 | ||zergnet.com^ 2058 | ||zeronaught.com^ 2059 | ||zg-api.com^ 2060 | ||zijieapi.com^ 2061 | ||zineone.com^ 2062 | ||zlinkd.com^ 2063 | ||zog.link^ 2064 | ||zoho.in^ 2065 | ||zoominfo.com^ 2066 | ||zprk.io^ 2067 | ||zucks.net^ 2068 | ||zzbmanavbljmj.top^ 2069 | ||zzjwblqbwlrzw.top^ 2070 | ||zzrqkvwmrkvll.top^ 2071 | ||zzyryrylwkwve.top^ --------------------------------------------------------------------------------